From c17b0ec7c15831ae8f9b7421ac426f73bbcad3b3 Mon Sep 17 00:00:00 2001 From: Andrea Boido Date: Wed, 13 May 2026 15:29:35 +0100 Subject: [PATCH] fix: support anonymous pointer-to-member declarator (C::*) in type-id contexts (#355) --- grammar.js | 11 + src/grammar.json | 48 + src/node-types.json | 8 + src/parser.c | 1212088 +++++++++++++++++-------------- src/tree_sitter/array.h | 192 +- src/tree_sitter/parser.h | 1 + test/corpus/declarations.txt | 60 + 7 files changed, 647147 insertions(+), 565261 deletions(-) diff --git a/grammar.js b/grammar.js index ffbaf0f1..5d88bddd 100644 --- a/grammar.js +++ b/grammar.js @@ -80,6 +80,8 @@ module.exports = grammar(C, { [$.template_function, $.template_type, $.expression], [$.template_function, $.template_type, $.qualified_identifier], [$.template_function, $.template_type, $.qualified_identifier, $.qualified_type_identifier], + [$._type_declarator, $.sized_type_specifier], + [$._type_declarator, $.type_specifier], [$.template_type, $.qualified_type_identifier], [$.qualified_type_identifier, $.qualified_identifier], [$.comma_expression, $.initializer_list], @@ -702,6 +704,7 @@ module.exports = grammar(C, { _abstract_declarator: ($, original) => choice( original, $.abstract_reference_declarator, + alias($.abstract_qualified_identifier, $.qualified_identifier), ), reference_declarator: $ => prec.dynamic(1, prec.right(seq(choice('&', '&&'), $._declarator))), @@ -1431,6 +1434,14 @@ module.exports = grammar(C, { )), ), + abstract_qualified_identifier: $ => seq( + $._scope_resolution, + field('name', choice( + alias($.abstract_qualified_identifier, $.qualified_identifier), + $.abstract_pointer_declarator, + )), + ), + qualified_type_identifier: $ => seq( $._scope_resolution, field('name', choice( diff --git a/src/grammar.json b/src/grammar.json index a091cbff..b9c39a47 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -3967,6 +3967,15 @@ { "type": "SYMBOL", "name": "abstract_reference_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "abstract_qualified_identifier" + }, + "named": true, + "value": "qualified_identifier" } ] }, @@ -17556,6 +17565,37 @@ } ] }, + "abstract_qualified_identifier": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_scope_resolution" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "abstract_qualified_identifier" + }, + "named": true, + "value": "qualified_identifier" + }, + { + "type": "SYMBOL", + "name": "abstract_pointer_declarator" + } + ] + } + } + ] + }, "qualified_type_identifier": { "type": "SEQ", "members": [ @@ -18248,6 +18288,14 @@ "qualified_identifier", "qualified_type_identifier" ], + [ + "_type_declarator", + "sized_type_specifier" + ], + [ + "_type_declarator", + "type_specifier" + ], [ "template_type", "qualified_type_identifier" diff --git a/src/node-types.json b/src/node-types.json index 3b108232..41b1101d 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -22,6 +22,10 @@ { "type": "abstract_reference_declarator", "named": true + }, + { + "type": "qualified_identifier", + "named": true } ] }, @@ -6184,6 +6188,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "abstract_pointer_declarator", + "named": true + }, { "type": "dependent_name", "named": true diff --git a/src/parser.c b/src/parser.c index a19b69eb..aeb16675 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* Automatically @generated by tree-sitter */ +/* Automatically generated by tree-sitter v0.25.3 */ #include "tree_sitter/parser.h" @@ -15,9 +15,9 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 11734 -#define LARGE_STATE_COUNT 3826 -#define SYMBOL_COUNT 570 +#define STATE_COUNT 13062 +#define LARGE_STATE_COUNT 4178 +#define SYMBOL_COUNT 571 #define ALIAS_COUNT 5 #define TOKEN_COUNT 225 #define EXTERNAL_TOKEN_COUNT 2 @@ -536,72 +536,73 @@ enum ts_symbol_identifiers { sym__scope_resolution = 506, sym_qualified_field_identifier = 507, sym_qualified_identifier = 508, - sym_qualified_type_identifier = 509, - sym_qualified_operator_cast_identifier = 510, - sym__assignment_expression_lhs = 511, - sym_reflect_expression = 512, - sym_splice_specifier = 513, - sym__splice_specialization_specifier = 514, - sym_splice_type_specifier = 515, - sym_splice_expression = 516, - sym_expansion_statement = 517, - sym_operator_name = 518, - sym_user_defined_literal = 519, - aux_sym_translation_unit_repeat1 = 520, - aux_sym_preproc_params_repeat1 = 521, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 522, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 523, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 524, - aux_sym_preproc_argument_list_repeat1 = 525, - aux_sym_declaration_repeat1 = 526, - aux_sym_type_definition_repeat1 = 527, - aux_sym__type_definition_type_repeat1 = 528, - aux_sym__type_definition_declarators_repeat1 = 529, - aux_sym__declaration_specifiers_repeat1 = 530, - aux_sym_attribute_declaration_repeat1 = 531, - aux_sym_attribute_declaration_repeat2 = 532, - aux_sym_declaration_list_repeat1 = 533, - aux_sym_attributed_declarator_repeat1 = 534, - aux_sym_pointer_declarator_repeat1 = 535, - aux_sym_array_declarator_repeat1 = 536, - aux_sym_sized_type_specifier_repeat1 = 537, - aux_sym_enumerator_list_repeat1 = 538, - aux_sym_field_declaration_repeat1 = 539, - aux_sym_parameter_list_repeat1 = 540, - aux_sym_case_statement_repeat1 = 541, - aux_sym_generic_expression_repeat1 = 542, - aux_sym_gnu_asm_expression_repeat1 = 543, - aux_sym_gnu_asm_output_operand_list_repeat1 = 544, - aux_sym_gnu_asm_input_operand_list_repeat1 = 545, - aux_sym_gnu_asm_clobber_list_repeat1 = 546, - aux_sym_gnu_asm_goto_list_repeat1 = 547, - aux_sym_argument_list_repeat1 = 548, - aux_sym_initializer_list_repeat1 = 549, - aux_sym_initializer_pair_repeat1 = 550, - aux_sym_char_literal_repeat1 = 551, - aux_sym_concatenated_string_repeat1 = 552, - aux_sym_string_literal_repeat1 = 553, - aux_sym__class_declaration_repeat1 = 554, - aux_sym_base_class_clause_repeat1 = 555, - aux_sym_module_name_repeat1 = 556, - aux_sym_template_parameter_list_repeat1 = 557, - aux_sym_field_initializer_list_repeat1 = 558, - aux_sym_operator_cast_definition_repeat1 = 559, - aux_sym_constructor_try_statement_repeat1 = 560, - aux_sym_structured_binding_declarator_repeat1 = 561, - aux_sym__function_postfix_repeat1 = 562, - aux_sym_throw_specifier_repeat1 = 563, - aux_sym_template_argument_list_repeat1 = 564, - aux_sym_subscript_argument_list_repeat1 = 565, - aux_sym_requirement_seq_repeat1 = 566, - aux_sym_requires_parameter_list_repeat1 = 567, - aux_sym_lambda_declarator_repeat1 = 568, - aux_sym_lambda_capture_specifier_repeat1 = 569, - alias_sym_field_identifier = 570, - alias_sym_namespace_identifier = 571, - alias_sym_simple_requirement = 572, - alias_sym_statement_identifier = 573, - alias_sym_type_identifier = 574, + sym_abstract_qualified_identifier = 509, + sym_qualified_type_identifier = 510, + sym_qualified_operator_cast_identifier = 511, + sym__assignment_expression_lhs = 512, + sym_reflect_expression = 513, + sym_splice_specifier = 514, + sym__splice_specialization_specifier = 515, + sym_splice_type_specifier = 516, + sym_splice_expression = 517, + sym_expansion_statement = 518, + sym_operator_name = 519, + sym_user_defined_literal = 520, + aux_sym_translation_unit_repeat1 = 521, + aux_sym_preproc_params_repeat1 = 522, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 523, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 524, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 525, + aux_sym_preproc_argument_list_repeat1 = 526, + aux_sym_declaration_repeat1 = 527, + aux_sym_type_definition_repeat1 = 528, + aux_sym__type_definition_type_repeat1 = 529, + aux_sym__type_definition_declarators_repeat1 = 530, + aux_sym__declaration_specifiers_repeat1 = 531, + aux_sym_attribute_declaration_repeat1 = 532, + aux_sym_attribute_declaration_repeat2 = 533, + aux_sym_declaration_list_repeat1 = 534, + aux_sym_attributed_declarator_repeat1 = 535, + aux_sym_pointer_declarator_repeat1 = 536, + aux_sym_array_declarator_repeat1 = 537, + aux_sym_sized_type_specifier_repeat1 = 538, + aux_sym_enumerator_list_repeat1 = 539, + aux_sym_field_declaration_repeat1 = 540, + aux_sym_parameter_list_repeat1 = 541, + aux_sym_case_statement_repeat1 = 542, + aux_sym_generic_expression_repeat1 = 543, + aux_sym_gnu_asm_expression_repeat1 = 544, + aux_sym_gnu_asm_output_operand_list_repeat1 = 545, + aux_sym_gnu_asm_input_operand_list_repeat1 = 546, + aux_sym_gnu_asm_clobber_list_repeat1 = 547, + aux_sym_gnu_asm_goto_list_repeat1 = 548, + aux_sym_argument_list_repeat1 = 549, + aux_sym_initializer_list_repeat1 = 550, + aux_sym_initializer_pair_repeat1 = 551, + aux_sym_char_literal_repeat1 = 552, + aux_sym_concatenated_string_repeat1 = 553, + aux_sym_string_literal_repeat1 = 554, + aux_sym__class_declaration_repeat1 = 555, + aux_sym_base_class_clause_repeat1 = 556, + aux_sym_module_name_repeat1 = 557, + aux_sym_template_parameter_list_repeat1 = 558, + aux_sym_field_initializer_list_repeat1 = 559, + aux_sym_operator_cast_definition_repeat1 = 560, + aux_sym_constructor_try_statement_repeat1 = 561, + aux_sym_structured_binding_declarator_repeat1 = 562, + aux_sym__function_postfix_repeat1 = 563, + aux_sym_throw_specifier_repeat1 = 564, + aux_sym_template_argument_list_repeat1 = 565, + aux_sym_subscript_argument_list_repeat1 = 566, + aux_sym_requirement_seq_repeat1 = 567, + aux_sym_requires_parameter_list_repeat1 = 568, + aux_sym_lambda_declarator_repeat1 = 569, + aux_sym_lambda_capture_specifier_repeat1 = 570, + alias_sym_field_identifier = 571, + alias_sym_namespace_identifier = 572, + alias_sym_simple_requirement = 573, + alias_sym_statement_identifier = 574, + alias_sym_type_identifier = 575, }; static const char * const ts_symbol_names[] = { @@ -1114,6 +1115,7 @@ static const char * const ts_symbol_names[] = { [sym__scope_resolution] = "_scope_resolution", [sym_qualified_field_identifier] = "qualified_identifier", [sym_qualified_identifier] = "qualified_identifier", + [sym_abstract_qualified_identifier] = "qualified_identifier", [sym_qualified_type_identifier] = "qualified_identifier", [sym_qualified_operator_cast_identifier] = "qualified_identifier", [sym__assignment_expression_lhs] = "assignment_expression", @@ -1692,6 +1694,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__scope_resolution] = sym__scope_resolution, [sym_qualified_field_identifier] = sym_qualified_identifier, [sym_qualified_identifier] = sym_qualified_identifier, + [sym_abstract_qualified_identifier] = sym_qualified_identifier, [sym_qualified_type_identifier] = sym_qualified_identifier, [sym_qualified_operator_cast_identifier] = sym_qualified_identifier, [sym__assignment_expression_lhs] = sym_assignment_expression, @@ -3804,6 +3807,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_abstract_qualified_identifier] = { + .visible = true, + .named = true, + }, [sym_qualified_type_identifier] = { .visible = true, .named = true, @@ -5203,140 +5210,140 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [16] = 16, [17] = 17, [18] = 18, - [19] = 18, - [20] = 13, - [21] = 21, + [19] = 19, + [20] = 14, + [21] = 18, [22] = 18, [23] = 13, - [24] = 21, - [25] = 25, + [24] = 19, + [25] = 14, [26] = 18, [27] = 13, - [28] = 21, - [29] = 25, - [30] = 21, - [31] = 25, - [32] = 25, + [28] = 19, + [29] = 14, + [30] = 13, + [31] = 19, + [32] = 32, [33] = 33, [34] = 34, [35] = 35, [36] = 34, - [37] = 33, + [37] = 35, [38] = 38, - [39] = 34, - [40] = 40, - [41] = 41, - [42] = 41, - [43] = 41, - [44] = 35, - [45] = 33, - [46] = 35, + [39] = 35, + [40] = 38, + [41] = 38, + [42] = 42, + [43] = 43, + [44] = 34, + [45] = 43, + [46] = 46, [47] = 47, - [48] = 48, + [48] = 43, [49] = 49, [50] = 50, [51] = 51, [52] = 49, - [53] = 53, + [53] = 51, [54] = 54, - [55] = 51, + [55] = 55, [56] = 56, [57] = 57, [58] = 56, [59] = 59, - [60] = 57, + [60] = 60, [61] = 61, - [62] = 62, - [63] = 53, + [62] = 57, + [63] = 51, [64] = 54, - [65] = 51, + [65] = 55, [66] = 56, [67] = 57, - [68] = 51, - [69] = 69, + [68] = 68, + [69] = 60, [70] = 61, - [71] = 62, + [71] = 55, [72] = 49, - [73] = 53, - [74] = 51, + [73] = 51, + [74] = 55, [75] = 56, - [76] = 57, - [77] = 61, - [78] = 54, - [79] = 51, - [80] = 62, - [81] = 62, - [82] = 53, + [76] = 54, + [77] = 60, + [78] = 61, + [79] = 60, + [80] = 51, + [81] = 55, + [82] = 61, [83] = 51, - [84] = 53, + [84] = 55, [85] = 51, - [86] = 53, + [86] = 55, [87] = 51, - [88] = 53, + [88] = 55, [89] = 51, - [90] = 53, + [90] = 55, [91] = 51, - [92] = 53, + [92] = 55, [93] = 51, - [94] = 53, + [94] = 55, [95] = 51, - [96] = 53, + [96] = 55, [97] = 51, - [98] = 53, - [99] = 53, - [100] = 53, + [98] = 55, + [99] = 51, + [100] = 55, [101] = 51, - [102] = 53, + [102] = 55, [103] = 51, - [104] = 53, + [104] = 55, [105] = 51, - [106] = 53, + [106] = 55, [107] = 51, - [108] = 53, + [108] = 55, [109] = 51, - [110] = 53, - [111] = 61, + [110] = 55, + [111] = 57, [112] = 112, - [113] = 50, - [114] = 114, - [115] = 112, - [116] = 116, - [117] = 112, - [118] = 112, - [119] = 119, + [113] = 113, + [114] = 50, + [115] = 113, + [116] = 113, + [117] = 117, + [118] = 118, + [119] = 113, [120] = 50, [121] = 121, [122] = 122, [123] = 123, [124] = 124, [125] = 125, - [126] = 125, - [127] = 121, - [128] = 123, - [129] = 122, - [130] = 124, + [126] = 122, + [127] = 123, + [128] = 121, + [129] = 124, + [130] = 125, [131] = 124, [132] = 122, - [133] = 125, + [133] = 123, [134] = 121, - [135] = 123, - [136] = 123, - [137] = 122, - [138] = 124, - [139] = 121, - [140] = 125, + [135] = 125, + [136] = 125, + [137] = 123, + [138] = 122, + [139] = 124, + [140] = 121, [141] = 141, - [142] = 121, - [143] = 125, - [144] = 144, - [145] = 144, - [146] = 144, - [147] = 144, - [148] = 144, - [149] = 144, - [150] = 123, - [151] = 122, - [152] = 124, + [142] = 142, + [143] = 121, + [144] = 142, + [145] = 142, + [146] = 122, + [147] = 123, + [148] = 142, + [149] = 125, + [150] = 142, + [151] = 124, + [152] = 142, [153] = 153, [154] = 153, [155] = 153, @@ -5344,13 +5351,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [157] = 153, [158] = 153, [159] = 159, - [160] = 160, - [161] = 159, + [160] = 159, + [161] = 161, [162] = 162, [163] = 159, - [164] = 159, - [165] = 160, - [166] = 160, + [164] = 161, + [165] = 161, + [166] = 159, [167] = 159, [168] = 159, [169] = 169, @@ -5365,248 +5372,248 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [178] = 178, [179] = 179, [180] = 180, - [181] = 181, - [182] = 181, - [183] = 179, - [184] = 181, - [185] = 180, + [181] = 180, + [182] = 180, + [183] = 183, + [184] = 183, + [185] = 183, [186] = 180, - [187] = 180, - [188] = 181, + [187] = 183, + [188] = 179, [189] = 189, [190] = 190, [191] = 191, - [192] = 192, + [192] = 179, [193] = 193, - [194] = 191, - [195] = 195, - [196] = 189, - [197] = 191, - [198] = 192, - [199] = 180, - [200] = 195, - [201] = 201, + [194] = 194, + [195] = 193, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 199, + [200] = 191, + [201] = 193, [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, + [203] = 191, + [204] = 194, + [205] = 194, + [206] = 197, + [207] = 196, + [208] = 189, + [209] = 198, + [210] = 191, + [211] = 194, + [212] = 196, + [213] = 197, + [214] = 198, [215] = 193, - [216] = 204, - [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, - [232] = 191, - [233] = 192, - [234] = 192, - [235] = 195, - [236] = 201, - [237] = 189, - [238] = 180, - [239] = 201, - [240] = 223, - [241] = 223, - [242] = 223, - [243] = 223, - [244] = 190, + [216] = 199, + [217] = 193, + [218] = 190, + [219] = 194, + [220] = 197, + [221] = 196, + [222] = 197, + [223] = 198, + [224] = 198, + [225] = 199, + [226] = 189, + [227] = 191, + [228] = 180, + [229] = 193, + [230] = 196, + [231] = 197, + [232] = 198, + [233] = 199, + [234] = 189, + [235] = 194, + [236] = 199, + [237] = 199, + [238] = 196, + [239] = 189, + [240] = 191, + [241] = 190, + [242] = 190, + [243] = 190, + [244] = 180, [245] = 245, [246] = 246, [247] = 246, [248] = 245, - [249] = 246, - [250] = 246, - [251] = 245, - [252] = 245, - [253] = 246, - [254] = 245, - [255] = 179, + [249] = 245, + [250] = 245, + [251] = 179, + [252] = 246, + [253] = 245, + [254] = 246, + [255] = 245, [256] = 246, [257] = 246, - [258] = 246, - [259] = 246, - [260] = 245, + [258] = 245, + [259] = 245, + [260] = 246, [261] = 245, - [262] = 246, - [263] = 245, - [264] = 246, + [262] = 245, + [263] = 246, + [264] = 245, [265] = 245, [266] = 246, [267] = 245, - [268] = 245, + [268] = 246, [269] = 245, - [270] = 245, + [270] = 246, [271] = 246, - [272] = 245, + [272] = 246, [273] = 246, - [274] = 246, - [275] = 245, + [274] = 245, + [275] = 246, [276] = 246, [277] = 245, [278] = 179, [279] = 179, [280] = 179, [281] = 179, - [282] = 179, - [283] = 283, - [284] = 283, - [285] = 285, - [286] = 283, - [287] = 283, + [282] = 282, + [283] = 282, + [284] = 282, + [285] = 282, + [286] = 286, + [287] = 179, [288] = 288, [289] = 289, [290] = 290, [291] = 291, [292] = 292, [293] = 293, - [294] = 294, - [295] = 293, - [296] = 293, - [297] = 293, - [298] = 293, - [299] = 293, - [300] = 293, - [301] = 293, - [302] = 293, - [303] = 293, - [304] = 293, - [305] = 293, - [306] = 293, - [307] = 293, - [308] = 308, + [294] = 290, + [295] = 286, + [296] = 296, + [297] = 297, + [298] = 297, + [299] = 299, + [300] = 300, + [301] = 296, + [302] = 297, + [303] = 297, + [304] = 304, + [305] = 297, + [306] = 297, + [307] = 297, + [308] = 297, [309] = 309, - [310] = 310, - [311] = 293, - [312] = 312, - [313] = 293, - [314] = 314, - [315] = 288, - [316] = 293, - [317] = 317, - [318] = 293, - [319] = 293, - [320] = 293, - [321] = 293, - [322] = 285, - [323] = 294, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 332, - [333] = 283, + [310] = 297, + [311] = 297, + [312] = 297, + [313] = 297, + [314] = 297, + [315] = 315, + [316] = 297, + [317] = 297, + [318] = 297, + [319] = 297, + [320] = 297, + [321] = 297, + [322] = 297, + [323] = 297, + [324] = 297, + [325] = 297, + [326] = 297, + [327] = 297, + [328] = 297, + [329] = 297, + [330] = 297, + [331] = 297, + [332] = 297, + [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, + [343] = 343, [344] = 344, [345] = 345, - [346] = 336, - [347] = 337, - [348] = 327, - [349] = 349, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 282, [350] = 350, [351] = 351, [352] = 352, [353] = 353, [354] = 354, [355] = 355, - [356] = 336, + [356] = 356, [357] = 357, [358] = 358, [359] = 359, - [360] = 283, - [361] = 361, + [360] = 360, + [361] = 282, [362] = 362, [363] = 363, - [364] = 337, + [364] = 364, [365] = 365, - [366] = 366, - [367] = 367, + [366] = 365, + [367] = 352, [368] = 368, [369] = 369, [370] = 370, [371] = 371, [372] = 372, [373] = 373, - [374] = 374, - [375] = 375, + [374] = 368, + [375] = 365, [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, + [377] = 352, + [378] = 368, + [379] = 348, [380] = 380, [381] = 381, - [382] = 283, + [382] = 382, [383] = 383, [384] = 384, - [385] = 385, - [386] = 283, - [387] = 283, - [388] = 283, - [389] = 389, + [385] = 282, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 282, [390] = 390, [391] = 391, - [392] = 391, - [393] = 391, - [394] = 391, + [392] = 392, + [393] = 282, + [394] = 394, [395] = 395, - [396] = 289, - [397] = 289, - [398] = 290, - [399] = 391, - [400] = 391, - [401] = 391, - [402] = 391, + [396] = 282, + [397] = 397, + [398] = 348, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 402, [403] = 403, [404] = 404, [405] = 405, - [406] = 406, + [406] = 403, [407] = 407, - [408] = 408, - [409] = 409, - [410] = 290, + [408] = 403, + [409] = 403, + [410] = 410, [411] = 411, - [412] = 412, - [413] = 413, + [412] = 403, + [413] = 403, [414] = 414, - [415] = 391, - [416] = 416, - [417] = 417, + [415] = 403, + [416] = 289, + [417] = 403, [418] = 418, [419] = 419, - [420] = 420, + [420] = 403, [421] = 421, - [422] = 422, + [422] = 288, [423] = 423, [424] = 424, [425] = 425, @@ -5617,13 +5624,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [430] = 430, [431] = 431, [432] = 432, - [433] = 391, + [433] = 433, [434] = 434, [435] = 435, [436] = 436, [437] = 437, [438] = 438, - [439] = 439, + [439] = 289, [440] = 440, [441] = 441, [442] = 442, @@ -5644,7 +5651,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [457] = 457, [458] = 458, [459] = 459, - [460] = 460, + [460] = 403, [461] = 461, [462] = 462, [463] = 463, @@ -5656,11268 +5663,12596 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [469] = 469, [470] = 470, [471] = 471, - [472] = 472, + [472] = 288, [473] = 473, [474] = 474, - [475] = 391, - [476] = 395, + [475] = 475, + [476] = 476, [477] = 477, - [478] = 391, - [479] = 479, - [480] = 480, + [478] = 478, + [479] = 403, + [480] = 411, [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, - [511] = 511, - [512] = 391, - [513] = 436, - [514] = 514, - [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, + [484] = 403, + [485] = 403, + [486] = 463, + [487] = 487, + [488] = 488, + [489] = 411, + [490] = 490, + [491] = 491, + [492] = 492, + [493] = 411, + [494] = 411, + [495] = 411, + [496] = 411, + [497] = 411, + [498] = 411, + [499] = 411, + [500] = 411, + [501] = 411, + [502] = 411, + [503] = 411, + [504] = 411, + [505] = 411, + [506] = 411, + [507] = 411, + [508] = 411, + [509] = 411, + [510] = 411, + [511] = 411, + [512] = 411, + [513] = 411, + [514] = 411, + [515] = 411, + [516] = 411, + [517] = 411, + [518] = 411, + [519] = 411, + [520] = 411, + [521] = 411, + [522] = 411, + [523] = 411, + [524] = 411, + [525] = 411, + [526] = 411, + [527] = 411, [528] = 528, [529] = 529, - [530] = 312, - [531] = 292, + [530] = 530, + [531] = 403, [532] = 532, [533] = 533, - [534] = 285, + [534] = 534, [535] = 535, [536] = 536, [537] = 537, - [538] = 538, - [539] = 291, - [540] = 540, + [538] = 403, + [539] = 539, + [540] = 403, [541] = 541, [542] = 542, - [543] = 317, - [544] = 544, - [545] = 310, - [546] = 546, + [543] = 288, + [544] = 289, + [545] = 292, + [546] = 291, [547] = 547, - [548] = 312, - [549] = 310, - [550] = 550, + [548] = 304, + [549] = 549, + [550] = 292, [551] = 551, [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, - [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, + [556] = 556, + [557] = 309, + [558] = 291, + [559] = 286, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 304, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 315, + [569] = 315, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 290, + [577] = 309, + [578] = 578, + [579] = 362, + [580] = 382, + [581] = 383, + [582] = 384, + [583] = 344, + [584] = 351, + [585] = 388, + [586] = 369, + [587] = 372, + [588] = 335, + [589] = 345, + [590] = 391, + [591] = 354, + [592] = 333, + [593] = 376, + [594] = 381, + [595] = 363, + [596] = 392, + [597] = 343, + [598] = 344, + [599] = 371, + [600] = 338, + [601] = 345, + [602] = 350, + [603] = 357, + [604] = 382, + [605] = 383, + [606] = 346, + [607] = 369, + [608] = 337, + [609] = 333, + [610] = 353, + [611] = 350, + [612] = 351, [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, - [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, + [614] = 354, + [615] = 370, + [616] = 390, + [617] = 387, + [618] = 339, + [619] = 380, + [620] = 384, + [621] = 347, + [622] = 286, + [623] = 397, + [624] = 380, + [625] = 397, + [626] = 334, + [627] = 342, + [628] = 292, + [629] = 336, + [630] = 360, + [631] = 364, + [632] = 346, + [633] = 394, + [634] = 336, + [635] = 395, + [636] = 364, + [637] = 343, + [638] = 290, + [639] = 309, + [640] = 390, + [641] = 372, + [642] = 339, + [643] = 388, + [644] = 360, + [645] = 335, + [646] = 386, + [647] = 340, + [648] = 391, + [649] = 342, + [650] = 392, + [651] = 371, + [652] = 315, + [653] = 337, + [654] = 394, + [655] = 363, + [656] = 395, + [657] = 347, + [658] = 341, + [659] = 291, + [660] = 381, + [661] = 357, + [662] = 370, + [663] = 386, + [664] = 387, + [665] = 362, + [666] = 334, + [667] = 179, + [668] = 353, + [669] = 338, + [670] = 376, + [671] = 304, + [672] = 529, + [673] = 465, + [674] = 467, + [675] = 468, + [676] = 470, + [677] = 471, + [678] = 350, + [679] = 351, + [680] = 353, + [681] = 354, + [682] = 473, + [683] = 474, + [684] = 475, + [685] = 476, + [686] = 477, + [687] = 481, + [688] = 482, + [689] = 483, + [690] = 487, + [691] = 488, + [692] = 532, + [693] = 534, + [694] = 535, + [695] = 536, + [696] = 537, + [697] = 539, + [698] = 360, + [699] = 541, + [700] = 399, + [701] = 401, + [702] = 410, + [703] = 400, + [704] = 425, + [705] = 464, + [706] = 469, + [707] = 357, + [708] = 404, + [709] = 453, + [710] = 418, + [711] = 340, + [712] = 421, + [713] = 426, + [714] = 427, + [715] = 429, + [716] = 430, + [717] = 433, + [718] = 434, + [719] = 436, + [720] = 447, + [721] = 454, + [722] = 456, + [723] = 457, + [724] = 458, + [725] = 459, + [726] = 461, [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, + [728] = 466, + [729] = 364, + [730] = 478, + [731] = 376, + [732] = 339, + [733] = 490, + [734] = 491, + [735] = 492, + [736] = 347, + [737] = 528, + [738] = 530, + [739] = 450, + [740] = 179, + [741] = 402, + [742] = 407, + [743] = 405, + [744] = 452, + [745] = 437, + [746] = 440, + [747] = 441, + [748] = 451, + [749] = 455, + [750] = 381, + [751] = 382, + [752] = 383, + [753] = 384, + [754] = 533, + [755] = 414, + [756] = 386, + [757] = 387, + [758] = 390, + [759] = 391, + [760] = 392, + [761] = 394, + [762] = 395, + [763] = 369, + [764] = 372, + [765] = 335, + [766] = 362, + [767] = 370, + [768] = 371, + [769] = 418, + [770] = 388, + [771] = 340, + [772] = 363, + [773] = 342, + [774] = 380, + [775] = 397, + [776] = 334, + [777] = 336, + [778] = 337, + [779] = 338, + [780] = 340, + [781] = 419, + [782] = 341, + [783] = 434, + [784] = 423, + [785] = 343, + [786] = 424, + [787] = 344, + [788] = 428, + [789] = 345, + [790] = 432, + [791] = 435, + [792] = 346, + [793] = 438, + [794] = 442, + [795] = 443, + [796] = 444, + [797] = 445, + [798] = 446, + [799] = 333, + [800] = 448, + [801] = 449, + [802] = 542, + [803] = 431, + [804] = 465, + [805] = 458, + [806] = 474, + [807] = 475, + [808] = 476, + [809] = 477, + [810] = 478, + [811] = 459, + [812] = 461, + [813] = 462, + [814] = 482, + [815] = 483, + [816] = 487, + [817] = 488, + [818] = 490, + [819] = 491, + [820] = 492, + [821] = 528, + [822] = 529, + [823] = 530, + [824] = 468, + [825] = 532, + [826] = 533, + [827] = 537, + [828] = 539, + [829] = 470, + [830] = 471, + [831] = 541, + [832] = 399, + [833] = 450, + [834] = 401, + [835] = 452, + [836] = 410, + [837] = 400, + [838] = 402, + [839] = 407, + [840] = 414, + [841] = 405, + [842] = 179, + [843] = 534, + [844] = 535, + [845] = 536, + [846] = 449, + [847] = 431, + [848] = 437, + [849] = 425, + [850] = 464, + [851] = 469, + [852] = 404, + [853] = 418, + [854] = 421, + [855] = 440, + [856] = 441, + [857] = 453, + [858] = 542, + [859] = 423, + [860] = 454, + [861] = 424, + [862] = 426, + [863] = 427, + [864] = 428, + [865] = 429, + [866] = 430, + [867] = 432, + [868] = 433, + [869] = 434, + [870] = 435, + [871] = 451, + [872] = 436, + [873] = 455, + [874] = 438, + [875] = 467, + [876] = 419, + [877] = 442, + [878] = 443, + [879] = 444, + [880] = 445, + [881] = 446, + [882] = 447, + [883] = 466, + [884] = 456, + [885] = 473, + [886] = 457, + [887] = 448, + [888] = 481, + [889] = 562, + [890] = 528, + [891] = 529, + [892] = 530, + [893] = 551, + [894] = 552, + [895] = 467, + [896] = 896, + [897] = 553, + [898] = 567, + [899] = 424, + [900] = 532, + [901] = 896, + [902] = 533, + [903] = 440, + [904] = 442, + [905] = 441, + [906] = 471, + [907] = 431, + [908] = 537, + [909] = 909, + [910] = 570, + [911] = 539, + [912] = 426, + [913] = 913, + [914] = 570, + [915] = 443, + [916] = 444, + [917] = 445, + [918] = 427, + [919] = 896, + [920] = 446, + [921] = 554, + [922] = 555, + [923] = 556, + [924] = 909, + [925] = 447, + [926] = 541, + [927] = 896, + [928] = 399, + [929] = 450, + [930] = 401, + [931] = 428, + [932] = 909, + [933] = 549, + [934] = 572, + [935] = 573, + [936] = 896, + [937] = 574, + [938] = 429, + [939] = 410, + [940] = 400, + [941] = 909, + [942] = 437, + [943] = 896, + [944] = 448, + [945] = 402, + [946] = 407, + [947] = 547, + [948] = 909, + [949] = 430, + [950] = 474, + [951] = 909, + [952] = 896, + [953] = 575, + [954] = 449, + [955] = 909, + [956] = 414, + [957] = 475, + [958] = 476, + [959] = 896, + [960] = 542, + [961] = 909, + [962] = 549, + [963] = 561, + [964] = 896, + [965] = 562, + [966] = 571, + [967] = 909, + [968] = 561, + [969] = 896, + [970] = 909, + [971] = 971, + [972] = 896, + [973] = 909, + [974] = 560, + [975] = 896, + [976] = 909, + [977] = 432, + [978] = 896, + [979] = 491, + [980] = 492, + [981] = 452, + [982] = 453, + [983] = 896, + [984] = 433, + [985] = 909, + [986] = 405, + [987] = 896, + [988] = 454, + [989] = 909, + [990] = 456, + [991] = 457, + [992] = 896, + [993] = 458, + [994] = 909, + [995] = 468, + [996] = 551, + [997] = 552, + [998] = 553, + [999] = 459, + [1000] = 461, + [1001] = 462, + [1002] = 572, + [1003] = 419, + [1004] = 438, + [1005] = 567, + [1006] = 473, + [1007] = 573, + [1008] = 896, + [1009] = 534, + [1010] = 574, + [1011] = 554, + [1012] = 555, + [1013] = 556, + [1014] = 909, + [1015] = 535, + [1016] = 536, + [1017] = 477, + [1018] = 571, + [1019] = 425, + [1020] = 464, + [1021] = 469, + [1022] = 578, + [1023] = 547, + [1024] = 478, + [1025] = 451, + [1026] = 465, + [1027] = 421, + [1028] = 404, + [1029] = 455, + [1030] = 560, + [1031] = 466, + [1032] = 563, + [1033] = 481, + [1034] = 578, [1035] = 436, - [1036] = 436, - [1037] = 1037, - [1038] = 1037, - [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, - [1068] = 1040, - [1069] = 1039, - [1070] = 1040, - [1071] = 1048, - [1072] = 1041, - [1073] = 1061, - [1074] = 1048, - [1075] = 1075, + [1036] = 575, + [1037] = 470, + [1038] = 896, + [1039] = 563, + [1040] = 482, + [1041] = 483, + [1042] = 423, + [1043] = 566, + [1044] = 487, + [1045] = 435, + [1046] = 488, + [1047] = 565, + [1048] = 490, + [1049] = 909, + [1050] = 565, + [1051] = 566, + [1052] = 909, + [1053] = 179, + [1054] = 179, + [1055] = 179, + [1056] = 179, + [1057] = 1057, + [1058] = 463, + [1059] = 463, + [1060] = 463, + [1061] = 463, + [1062] = 463, + [1063] = 463, + [1064] = 463, + [1065] = 463, + [1066] = 463, + [1067] = 463, + [1068] = 463, + [1069] = 463, + [1070] = 463, + [1071] = 463, + [1072] = 463, + [1073] = 463, + [1074] = 1074, + [1075] = 1074, [1076] = 1076, - [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, + [1077] = 1077, + [1078] = 1078, + [1079] = 1079, + [1080] = 1080, + [1081] = 1081, + [1082] = 1082, + [1083] = 1076, + [1084] = 1077, + [1085] = 1085, + [1086] = 1086, + [1087] = 1079, + [1088] = 1082, + [1089] = 1089, [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, - [1111] = 1111, - [1112] = 1112, - [1113] = 1111, - [1114] = 1114, - [1115] = 1115, - [1116] = 289, - [1117] = 1117, - [1118] = 290, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1121, - [1123] = 1123, - [1124] = 1124, - [1125] = 1119, - [1126] = 1119, - [1127] = 1127, - [1128] = 1124, - [1129] = 1129, - [1130] = 1129, - [1131] = 1123, - [1132] = 1121, - [1133] = 1121, - [1134] = 1123, - [1135] = 1124, - [1136] = 1129, - [1137] = 1121, - [1138] = 1121, - [1139] = 1123, - [1140] = 1124, - [1141] = 1119, - [1142] = 1121, - [1143] = 1129, - [1144] = 1121, - [1145] = 1123, - [1146] = 1123, - [1147] = 1124, - [1148] = 1124, - [1149] = 1123, - [1150] = 1123, - [1151] = 1119, - [1152] = 1121, - [1153] = 1124, - [1154] = 1123, - [1155] = 1121, - [1156] = 1123, - [1157] = 1124, + [1091] = 1076, + [1092] = 1080, + [1093] = 1080, + [1094] = 1077, + [1095] = 1085, + [1096] = 1080, + [1097] = 1076, + [1098] = 1077, + [1099] = 1085, + [1100] = 1079, + [1101] = 1082, + [1102] = 1080, + [1103] = 1080, + [1104] = 1079, + [1105] = 1079, + [1106] = 1076, + [1107] = 1077, + [1108] = 1080, + [1109] = 1076, + [1110] = 1077, + [1111] = 1079, + [1112] = 1085, + [1113] = 1076, + [1114] = 1077, + [1115] = 1085, + [1116] = 1080, + [1117] = 1076, + [1118] = 1077, + [1119] = 1079, + [1120] = 1076, + [1121] = 1077, + [1122] = 1080, + [1123] = 1082, + [1124] = 1080, + [1125] = 1079, + [1126] = 1079, + [1127] = 1076, + [1128] = 1077, + [1129] = 1079, + [1130] = 1082, + [1131] = 1131, + [1132] = 1131, + [1133] = 1131, + [1134] = 1131, + [1135] = 1131, + [1136] = 1131, + [1137] = 1131, + [1138] = 463, + [1139] = 463, + [1140] = 1140, + [1141] = 1140, + [1142] = 1140, + [1143] = 1140, + [1144] = 463, + [1145] = 1140, + [1146] = 1140, + [1147] = 1140, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1150, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 288, + [1157] = 289, [1158] = 1158, - [1159] = 1123, - [1160] = 1121, - [1161] = 1119, - [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, - [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, - [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, - [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, - [1267] = 1267, - [1268] = 1268, - [1269] = 1268, - [1270] = 1270, - [1271] = 1271, - [1272] = 1272, - [1273] = 1268, - [1274] = 1270, - [1275] = 1275, - [1276] = 1268, - [1277] = 1270, - [1278] = 1278, - [1279] = 1268, - [1280] = 1270, - [1281] = 1275, - [1282] = 1268, - [1283] = 1272, - [1284] = 1275, - [1285] = 1270, - [1286] = 1272, - [1287] = 1270, - [1288] = 1270, - [1289] = 1270, - [1290] = 1270, - [1291] = 1272, - [1292] = 1270, - [1293] = 1268, - [1294] = 1272, - [1295] = 1268, - [1296] = 1127, - [1297] = 1268, - [1298] = 1270, - [1299] = 1299, - [1300] = 1300, - [1301] = 1301, - [1302] = 1302, - [1303] = 1301, + [1159] = 1159, + [1160] = 1160, + [1161] = 1158, + [1162] = 1162, + [1163] = 1163, + [1164] = 1155, + [1165] = 1163, + [1166] = 1162, + [1167] = 1158, + [1168] = 1163, + [1169] = 1162, + [1170] = 1162, + [1171] = 1162, + [1172] = 1163, + [1173] = 1162, + [1174] = 1162, + [1175] = 1158, + [1176] = 1162, + [1177] = 1162, + [1178] = 1162, + [1179] = 1158, + [1180] = 1162, + [1181] = 1160, + [1182] = 1158, + [1183] = 1162, + [1184] = 1162, + [1185] = 1155, + [1186] = 1163, + [1187] = 1158, + [1188] = 1155, + [1189] = 1163, + [1190] = 1190, + [1191] = 1160, + [1192] = 1158, + [1193] = 1163, + [1194] = 1158, + [1195] = 1162, + [1196] = 1163, + [1197] = 1155, + [1198] = 1158, + [1199] = 1158, + [1200] = 1162, + [1201] = 1162, + [1202] = 1158, + [1203] = 1158, + [1204] = 1158, + [1205] = 1155, + [1206] = 1158, + [1207] = 1158, + [1208] = 1160, + [1209] = 1209, + [1210] = 1210, + [1211] = 1149, + [1212] = 1209, + [1213] = 1210, + [1214] = 1214, + [1215] = 1215, + [1216] = 1216, + [1217] = 1209, + [1218] = 1210, + [1219] = 1215, + [1220] = 1215, + [1221] = 1215, + [1222] = 1209, + [1223] = 1215, + [1224] = 1215, + [1225] = 304, + [1226] = 309, + [1227] = 1215, + [1228] = 1216, + [1229] = 1209, + [1230] = 1209, + [1231] = 1210, + [1232] = 290, + [1233] = 1215, + [1234] = 1209, + [1235] = 1209, + [1236] = 1216, + [1237] = 315, + [1238] = 1210, + [1239] = 1216, + [1240] = 1215, + [1241] = 286, + [1242] = 1209, + [1243] = 1216, + [1244] = 1214, + [1245] = 1216, + [1246] = 1210, + [1247] = 1210, + [1248] = 1214, + [1249] = 1216, + [1250] = 1148, + [1251] = 1210, + [1252] = 1215, + [1253] = 1253, + [1254] = 1209, + [1255] = 1215, + [1256] = 1216, + [1257] = 1209, + [1258] = 334, + [1259] = 383, + [1260] = 1260, + [1261] = 350, + [1262] = 342, + [1263] = 343, + [1264] = 397, + [1265] = 364, + [1266] = 372, + [1267] = 363, + [1268] = 370, + [1269] = 351, + [1270] = 388, + [1271] = 357, + [1272] = 339, + [1273] = 371, + [1274] = 380, + [1275] = 382, + [1276] = 362, + [1277] = 354, + [1278] = 394, + [1279] = 395, + [1280] = 335, + [1281] = 347, + [1282] = 344, + [1283] = 369, + [1284] = 360, + [1285] = 338, + [1286] = 1286, + [1287] = 1152, + [1288] = 345, + [1289] = 346, + [1290] = 1290, + [1291] = 376, + [1292] = 391, + [1293] = 392, + [1294] = 336, + [1295] = 333, + [1296] = 386, + [1297] = 387, + [1298] = 384, + [1299] = 341, + [1300] = 381, + [1301] = 353, + [1302] = 390, + [1303] = 337, [1304] = 1304, - [1305] = 1301, + [1305] = 1305, [1306] = 1306, [1307] = 1307, - [1308] = 1127, + [1308] = 1307, [1309] = 1309, [1310] = 1310, [1311] = 1311, [1312] = 1312, - [1313] = 1301, - [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, - [1327] = 1316, - [1328] = 1316, - [1329] = 1329, - [1330] = 1330, - [1331] = 1316, - [1332] = 1332, - [1333] = 1318, - [1334] = 1317, - [1335] = 1335, - [1336] = 1316, - [1337] = 1337, - [1338] = 1338, - [1339] = 1339, + [1313] = 1313, + [1314] = 1311, + [1315] = 1311, + [1316] = 1309, + [1317] = 1313, + [1318] = 1311, + [1319] = 1309, + [1320] = 1311, + [1321] = 1309, + [1322] = 1309, + [1323] = 1309, + [1324] = 1309, + [1325] = 1325, + [1326] = 1309, + [1327] = 1309, + [1328] = 1313, + [1329] = 1325, + [1330] = 1313, + [1331] = 1325, + [1332] = 1313, + [1333] = 1313, + [1334] = 1313, + [1335] = 1313, + [1336] = 1313, + [1337] = 1313, + [1338] = 1313, + [1339] = 1190, [1340] = 1340, [1341] = 1341, - [1342] = 1318, - [1343] = 1317, - [1344] = 1316, - [1345] = 1318, - [1346] = 1317, - [1347] = 1316, - [1348] = 1348, - [1349] = 1317, - [1350] = 1316, - [1351] = 1317, - [1352] = 1317, - [1353] = 1353, + [1342] = 1342, + [1343] = 1343, + [1344] = 1344, + [1345] = 1190, + [1346] = 1346, + [1347] = 1347, + [1348] = 1346, + [1349] = 1346, + [1350] = 1305, + [1351] = 1346, + [1352] = 1352, + [1353] = 1304, [1354] = 1354, - [1355] = 1317, - [1356] = 1317, + [1355] = 1355, + [1356] = 1356, [1357] = 1357, [1358] = 1358, - [1359] = 1317, - [1360] = 1316, + [1359] = 1359, + [1360] = 1360, [1361] = 1361, - [1362] = 1362, + [1362] = 1359, [1363] = 1363, - [1364] = 1317, - [1365] = 1317, - [1366] = 1317, - [1367] = 1318, - [1368] = 1318, - [1369] = 1316, - [1370] = 1317, - [1371] = 1317, - [1372] = 1316, - [1373] = 1373, - [1374] = 1374, - [1375] = 1375, + [1364] = 1359, + [1365] = 1363, + [1366] = 1363, + [1367] = 1360, + [1368] = 1359, + [1369] = 1363, + [1370] = 1360, + [1371] = 1360, + [1372] = 1372, + [1373] = 1363, + [1374] = 1363, + [1375] = 1359, [1376] = 1376, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, + [1377] = 1360, + [1378] = 1359, + [1379] = 1359, [1380] = 1380, [1381] = 1381, [1382] = 1382, - [1383] = 1383, + [1383] = 1359, [1384] = 1384, - [1385] = 1385, + [1385] = 1363, [1386] = 1386, - [1387] = 1387, + [1387] = 1363, [1388] = 1388, [1389] = 1389, - [1390] = 1390, - [1391] = 1391, - [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 1395, + [1390] = 1359, + [1391] = 1360, + [1392] = 1359, + [1393] = 1360, + [1394] = 1363, + [1395] = 1359, [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, - [1413] = 1413, + [1397] = 1363, + [1398] = 1398, + [1399] = 1363, + [1400] = 1363, + [1401] = 1359, + [1402] = 1363, + [1403] = 1359, + [1404] = 1404, + [1405] = 1359, + [1406] = 1363, + [1407] = 1407, + [1408] = 1408, + [1409] = 1359, + [1410] = 1360, + [1411] = 1363, + [1412] = 1363, + [1413] = 1359, [1414] = 1414, - [1415] = 1379, - [1416] = 1381, - [1417] = 1382, - [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, - [1444] = 1444, - [1445] = 1399, - [1446] = 1391, - [1447] = 1403, - [1448] = 1375, - [1449] = 1376, - [1450] = 1412, - [1451] = 1379, - [1452] = 1452, + [1415] = 1415, + [1416] = 1416, + [1417] = 1417, + [1418] = 1418, + [1419] = 1419, + [1420] = 1420, + [1421] = 1421, + [1422] = 1419, + [1423] = 1418, + [1424] = 1419, + [1425] = 1420, + [1426] = 1420, + [1427] = 1427, + [1428] = 1428, + [1429] = 1421, + [1430] = 1430, + [1431] = 1431, + [1432] = 1432, + [1433] = 1433, + [1434] = 1434, + [1435] = 1427, + [1436] = 1418, + [1437] = 1430, + [1438] = 1431, + [1439] = 1428, + [1440] = 1440, + [1441] = 1441, + [1442] = 1432, + [1443] = 1427, + [1444] = 1428, + [1445] = 1430, + [1446] = 1431, + [1447] = 1447, + [1448] = 1433, + [1449] = 1449, + [1450] = 1418, + [1451] = 1447, + [1452] = 1449, [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, + [1456] = 1456, + [1457] = 1430, + [1458] = 1427, + [1459] = 1431, + [1460] = 1460, + [1461] = 1461, + [1462] = 1462, + [1463] = 1427, + [1464] = 1428, + [1465] = 1465, + [1466] = 1430, + [1467] = 1431, + [1468] = 1455, + [1469] = 1469, + [1470] = 1433, + [1471] = 1418, + [1472] = 1456, + [1473] = 1473, + [1474] = 1474, + [1475] = 1418, + [1476] = 1432, + [1477] = 1460, + [1478] = 1478, + [1479] = 1461, + [1480] = 1433, + [1481] = 1481, + [1482] = 1427, + [1483] = 1428, + [1484] = 1484, + [1485] = 1430, + [1486] = 1431, + [1487] = 1433, + [1488] = 1488, + [1489] = 1418, + [1490] = 1490, + [1491] = 1462, + [1492] = 1469, + [1493] = 1473, + [1494] = 1427, + [1495] = 1428, + [1496] = 1430, + [1497] = 1431, + [1498] = 1433, + [1499] = 1418, + [1500] = 1474, + [1501] = 1478, [1502] = 1502, - [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, - [1526] = 1526, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, + [1503] = 1428, + [1504] = 1418, + [1505] = 1431, + [1506] = 1433, + [1507] = 1418, + [1508] = 1428, + [1509] = 1418, + [1510] = 1510, + [1511] = 1511, + [1512] = 1427, + [1513] = 1418, + [1514] = 1481, + [1515] = 1428, + [1516] = 1427, + [1517] = 1430, + [1518] = 1431, + [1519] = 1432, + [1520] = 1428, + [1521] = 1521, + [1522] = 1484, + [1523] = 1418, + [1524] = 1416, + [1525] = 1440, + [1526] = 1490, + [1527] = 1433, + [1528] = 1434, + [1529] = 1502, + [1530] = 1510, + [1531] = 1511, + [1532] = 1440, [1533] = 1533, - [1534] = 1534, + [1534] = 1417, [1535] = 1535, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1528, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1544, - [1545] = 1545, - [1546] = 1546, - [1547] = 1538, - [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, - [1575] = 1575, - [1576] = 1542, - [1577] = 1544, + [1536] = 1440, + [1537] = 1521, + [1538] = 1440, + [1539] = 1419, + [1540] = 1430, + [1541] = 1440, + [1542] = 1417, + [1543] = 1418, + [1544] = 1440, + [1545] = 1420, + [1546] = 1440, + [1547] = 1419, + [1548] = 1440, + [1549] = 1420, + [1550] = 1440, + [1551] = 1431, + [1552] = 1440, + [1553] = 1440, + [1554] = 1440, + [1555] = 1440, + [1556] = 1440, + [1557] = 1440, + [1558] = 1440, + [1559] = 1440, + [1560] = 1433, + [1561] = 1561, + [1562] = 1434, + [1563] = 1533, + [1564] = 1432, + [1565] = 1418, + [1566] = 1561, + [1567] = 1434, + [1568] = 1568, + [1569] = 1535, + [1570] = 1568, + [1571] = 1571, + [1572] = 1433, + [1573] = 1434, + [1574] = 1488, + [1575] = 1418, + [1576] = 1571, + [1577] = 1430, [1578] = 1578, - [1579] = 1532, - [1580] = 1536, - [1581] = 1581, - [1582] = 1533, - [1583] = 1529, - [1584] = 1532, - [1585] = 1533, + [1579] = 1579, + [1580] = 1580, + [1581] = 1579, + [1582] = 1582, + [1583] = 1583, + [1584] = 1584, + [1585] = 1585, [1586] = 1586, - [1587] = 1540, - [1588] = 1536, - [1589] = 1536, - [1590] = 1538, - [1591] = 1528, - [1592] = 1575, - [1593] = 1538, + [1587] = 1587, + [1588] = 1588, + [1589] = 1589, + [1590] = 1590, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, [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, - [1607] = 1528, - [1608] = 1531, - [1609] = 1534, + [1595] = 1595, + [1596] = 1596, + [1597] = 1583, + [1598] = 1578, + [1599] = 1582, + [1600] = 1584, + [1601] = 1601, + [1602] = 1582, + [1603] = 1603, + [1604] = 1582, + [1605] = 1584, + [1606] = 1578, + [1607] = 1607, + [1608] = 1608, + [1609] = 1579, [1610] = 1610, - [1611] = 1544, - [1612] = 1535, - [1613] = 1613, - [1614] = 1614, - [1615] = 1537, - [1616] = 1538, - [1617] = 1545, - [1618] = 1546, - [1619] = 1548, - [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, - [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, - [1676] = 1545, - [1677] = 1546, - [1678] = 1548, - [1679] = 1549, - [1680] = 1538, - [1681] = 1528, - [1682] = 1544, - [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, + [1611] = 1585, + [1612] = 1612, + [1613] = 1596, + [1614] = 1582, + [1615] = 1584, + [1616] = 1583, + [1617] = 1617, + [1618] = 1586, + [1619] = 1596, + [1620] = 1583, + [1621] = 1578, + [1622] = 1608, + [1623] = 1582, + [1624] = 1584, + [1625] = 1587, + [1626] = 1588, + [1627] = 1589, + [1628] = 1586, + [1629] = 1587, + [1630] = 1588, + [1631] = 1589, + [1632] = 1590, + [1633] = 1591, + [1634] = 1592, + [1635] = 1593, + [1636] = 1594, + [1637] = 1595, + [1638] = 1607, + [1639] = 1583, + [1640] = 1578, + [1641] = 1590, + [1642] = 1591, + [1643] = 1586, + [1644] = 1587, + [1645] = 1588, + [1646] = 1589, + [1647] = 1590, + [1648] = 1591, + [1649] = 1592, + [1650] = 1593, + [1651] = 1594, + [1652] = 1595, + [1653] = 1608, + [1654] = 1608, + [1655] = 1607, + [1656] = 1592, + [1657] = 1593, + [1658] = 1594, + [1659] = 1595, + [1660] = 1579, + [1661] = 1579, + [1662] = 1586, + [1663] = 1587, + [1664] = 1588, + [1665] = 1589, + [1666] = 1590, + [1667] = 1591, + [1668] = 1592, + [1669] = 1593, + [1670] = 1583, + [1671] = 1586, + [1672] = 1587, + [1673] = 1588, + [1674] = 1589, + [1675] = 1590, + [1676] = 1591, + [1677] = 1592, + [1678] = 1593, + [1679] = 1594, + [1680] = 1595, + [1681] = 1582, + [1682] = 1584, + [1683] = 1594, + [1684] = 1610, + [1685] = 1595, + [1686] = 1612, + [1687] = 1607, + [1688] = 1596, + [1689] = 1607, + [1690] = 1582, + [1691] = 1584, + [1692] = 1578, + [1693] = 1583, + [1694] = 1586, + [1695] = 1587, + [1696] = 1588, + [1697] = 1589, + [1698] = 1590, + [1699] = 1591, + [1700] = 1592, + [1701] = 1593, + [1702] = 1594, + [1703] = 1595, + [1704] = 1610, + [1705] = 1612, + [1706] = 1607, + [1707] = 1596, + [1708] = 1708, + [1709] = 1610, + [1710] = 1579, [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, + [1713] = 1713, + [1714] = 1608, + [1715] = 1584, + [1716] = 1612, + [1717] = 1583, + [1718] = 1586, + [1719] = 1587, + [1720] = 1588, + [1721] = 1589, + [1722] = 1590, + [1723] = 1591, + [1724] = 1592, + [1725] = 1593, + [1726] = 1594, + [1727] = 1595, + [1728] = 1610, + [1729] = 1612, + [1730] = 1730, + [1731] = 1608, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, + [1737] = 1583, + [1738] = 1586, + [1739] = 1587, + [1740] = 1588, + [1741] = 1589, + [1742] = 1590, + [1743] = 1591, + [1744] = 1592, + [1745] = 1593, + [1746] = 1594, + [1747] = 1595, + [1748] = 1610, + [1749] = 1612, [1750] = 1750, - [1751] = 1575, - [1752] = 1578, - [1753] = 1575, - [1754] = 1578, - [1755] = 1545, + [1751] = 1608, + [1752] = 1608, + [1753] = 1753, + [1754] = 1579, + [1755] = 1755, [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, + [1757] = 1583, + [1758] = 1586, + [1759] = 1587, + [1760] = 1588, + [1761] = 1589, + [1762] = 1590, + [1763] = 1591, + [1764] = 1592, + [1765] = 1593, + [1766] = 1594, + [1767] = 1595, + [1768] = 1610, + [1769] = 1612, + [1770] = 1610, + [1771] = 1585, + [1772] = 1579, + [1773] = 1579, + [1774] = 1774, + [1775] = 1582, + [1776] = 1584, + [1777] = 1610, + [1778] = 1612, + [1779] = 1612, + [1780] = 1578, + [1781] = 1578, + [1782] = 1782, + [1783] = 1783, + [1784] = 1582, + [1785] = 1607, + [1786] = 1584, + [1787] = 1787, [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, - [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, + [1789] = 1612, + [1790] = 1790, + [1791] = 1791, + [1792] = 1782, + [1793] = 1608, + [1794] = 1596, + [1795] = 1583, + [1796] = 1610, + [1797] = 1612, + [1798] = 1578, + [1799] = 1799, + [1800] = 1610, + [1801] = 1612, + [1802] = 1582, + [1803] = 1584, + [1804] = 1607, + [1805] = 1610, + [1806] = 1579, + [1807] = 1612, + [1808] = 1808, + [1809] = 1582, + [1810] = 1584, + [1811] = 1583, + [1812] = 1578, + [1813] = 1607, + [1814] = 1578, + [1815] = 1610, + [1816] = 1808, + [1817] = 1612, + [1818] = 1582, + [1819] = 1713, + [1820] = 1584, + [1821] = 1736, + [1822] = 1596, + [1823] = 1583, + [1824] = 1578, + [1825] = 1617, + [1826] = 1586, + [1827] = 1587, + [1828] = 1588, + [1829] = 1589, + [1830] = 1590, + [1831] = 1591, + [1832] = 1592, + [1833] = 1593, + [1834] = 1594, + [1835] = 1595, + [1836] = 1586, + [1837] = 1607, + [1838] = 1708, + [1839] = 1730, + [1840] = 1733, + [1841] = 1608, [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, + [1843] = 1587, + [1844] = 1579, + [1845] = 1588, + [1846] = 1846, + [1847] = 1583, + [1848] = 1586, + [1849] = 1587, + [1850] = 1588, + [1851] = 1589, + [1852] = 1590, + [1853] = 1591, + [1854] = 1592, + [1855] = 1593, + [1856] = 1594, + [1857] = 1595, + [1858] = 1582, + [1859] = 1584, + [1860] = 1578, + [1861] = 1607, + [1862] = 1589, + [1863] = 1608, + [1864] = 1579, + [1865] = 1590, + [1866] = 1808, + [1867] = 1713, + [1868] = 1736, + [1869] = 1591, + [1870] = 1592, + [1871] = 1593, + [1872] = 1708, + [1873] = 1730, + [1874] = 1733, + [1875] = 1756, + [1876] = 1594, + [1877] = 1595, + [1878] = 1846, + [1879] = 1808, + [1880] = 1713, + [1881] = 1736, + [1882] = 1608, + [1883] = 1708, + [1884] = 1730, + [1885] = 1733, + [1886] = 1756, + [1887] = 1846, + [1888] = 1808, + [1889] = 1713, + [1890] = 1736, + [1891] = 1607, + [1892] = 1708, + [1893] = 1730, + [1894] = 1733, + [1895] = 1756, + [1896] = 1846, + [1897] = 1736, + [1898] = 1898, + [1899] = 1708, + [1900] = 1730, + [1901] = 1733, + [1902] = 1756, + [1903] = 1846, + [1904] = 1736, + [1905] = 1708, + [1906] = 1730, + [1907] = 1733, + [1908] = 1756, + [1909] = 1909, + [1910] = 1846, + [1911] = 1736, + [1912] = 1733, + [1913] = 1846, + [1914] = 1736, + [1915] = 1736, + [1916] = 1736, + [1917] = 1917, + [1918] = 1736, + [1919] = 1919, + [1920] = 1736, + [1921] = 1736, + [1922] = 1736, + [1923] = 1608, + [1924] = 1736, + [1925] = 1736, + [1926] = 1736, + [1927] = 1736, + [1928] = 1736, + [1929] = 1736, + [1930] = 1736, + [1931] = 1736, + [1932] = 1736, + [1933] = 1586, + [1934] = 1579, + [1935] = 1587, + [1936] = 1588, + [1937] = 1589, + [1938] = 1601, + [1939] = 1590, + [1940] = 1610, + [1941] = 1612, + [1942] = 1591, + [1943] = 1601, + [1944] = 1592, + [1945] = 1601, [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, - [1960] = 1960, - [1961] = 1960, - [1962] = 1960, - [1963] = 1963, - [1964] = 1964, - [1965] = 1965, - [1966] = 1966, - [1967] = 1967, - [1968] = 1968, - [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, - [2001] = 2001, - [2002] = 1958, - [2003] = 1963, - [2004] = 2004, - [2005] = 1970, + [1947] = 1601, + [1948] = 1601, + [1949] = 1601, + [1950] = 1596, + [1951] = 1583, + [1952] = 1578, + [1953] = 1790, + [1954] = 1586, + [1955] = 1587, + [1956] = 1588, + [1957] = 1589, + [1958] = 1590, + [1959] = 1591, + [1960] = 1592, + [1961] = 1593, + [1962] = 1594, + [1963] = 1595, + [1964] = 1607, + [1965] = 1593, + [1966] = 1608, + [1967] = 1594, + [1968] = 1579, + [1969] = 1583, + [1970] = 1586, + [1971] = 1587, + [1972] = 1588, + [1973] = 1589, + [1974] = 1590, + [1975] = 1591, + [1976] = 1592, + [1977] = 1593, + [1978] = 1594, + [1979] = 1595, + [1980] = 1582, + [1981] = 1584, + [1982] = 1578, + [1983] = 1578, + [1984] = 1607, + [1985] = 1595, + [1986] = 1608, + [1987] = 1579, + [1988] = 1607, + [1989] = 1783, + [1990] = 1607, + [1991] = 1608, + [1992] = 1610, + [1993] = 1612, + [1994] = 1579, + [1995] = 1582, + [1996] = 1584, + [1997] = 1712, + [1998] = 1712, + [1999] = 1712, + [2000] = 1712, + [2001] = 1712, + [2002] = 1712, + [2003] = 1712, + [2004] = 1846, + [2005] = 1305, [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, - [2045] = 2045, - [2046] = 1969, - [2047] = 2047, + [2007] = 1304, + [2008] = 2008, + [2009] = 2009, + [2010] = 2010, + [2011] = 2011, + [2012] = 2012, + [2013] = 1305, + [2014] = 1304, + [2015] = 2015, + [2016] = 2015, + [2017] = 1304, + [2018] = 2015, + [2019] = 2015, + [2020] = 2015, + [2021] = 2015, + [2022] = 1305, + [2023] = 2015, + [2024] = 2015, + [2025] = 2015, + [2026] = 1305, + [2027] = 2015, + [2028] = 1304, + [2029] = 2006, + [2030] = 1305, + [2031] = 1304, + [2032] = 2008, + [2033] = 2011, + [2034] = 2012, + [2035] = 2010, + [2036] = 2009, + [2037] = 1304, + [2038] = 1304, + [2039] = 1305, + [2040] = 1305, + [2041] = 1305, + [2042] = 1305, + [2043] = 2043, + [2044] = 1304, + [2045] = 1304, + [2046] = 2046, + [2047] = 2043, [2048] = 2048, [2049] = 2049, - [2050] = 1963, - [2051] = 2045, - [2052] = 1127, + [2050] = 2050, + [2051] = 2051, + [2052] = 2052, [2053] = 2053, [2054] = 2054, - [2055] = 1964, - [2056] = 1994, - [2057] = 1967, - [2058] = 2058, - [2059] = 2047, - [2060] = 1996, - [2061] = 1970, - [2062] = 1994, - [2063] = 2063, - [2064] = 1996, - [2065] = 1965, - [2066] = 1968, - [2067] = 1966, - [2068] = 1994, - [2069] = 1946, - [2070] = 2070, - [2071] = 2071, - [2072] = 1946, - [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, - [2090] = 2090, - [2091] = 1969, - [2092] = 1994, - [2093] = 2076, - [2094] = 2094, - [2095] = 2071, - [2096] = 1965, - [2097] = 1964, - [2098] = 1966, - [2099] = 1996, - [2100] = 1967, - [2101] = 2101, - [2102] = 2102, - [2103] = 2103, - [2104] = 2049, - [2105] = 2105, - [2106] = 1984, - [2107] = 2102, + [2055] = 2055, + [2056] = 2055, + [2057] = 2055, + [2058] = 2055, + [2059] = 2053, + [2060] = 1305, + [2061] = 1304, + [2062] = 1521, + [2063] = 1521, + [2064] = 1190, + [2065] = 2052, + [2066] = 2049, + [2067] = 2010, + [2068] = 1521, + [2069] = 2069, + [2070] = 2006, + [2071] = 1190, + [2072] = 2012, + [2073] = 1190, + [2074] = 1521, + [2075] = 1521, + [2076] = 1521, + [2077] = 2051, + [2078] = 2048, + [2079] = 2079, + [2080] = 2046, + [2081] = 1521, + [2082] = 2008, + [2083] = 2050, + [2084] = 2009, + [2085] = 1521, + [2086] = 2054, + [2087] = 2011, + [2088] = 2009, + [2089] = 2006, + [2090] = 2008, + [2091] = 2012, + [2092] = 414, + [2093] = 533, + [2094] = 2011, + [2095] = 2095, + [2096] = 2096, + [2097] = 2097, + [2098] = 2098, + [2099] = 2096, + [2100] = 2010, + [2101] = 2096, + [2102] = 2096, + [2103] = 1190, + [2104] = 1190, + [2105] = 2010, + [2106] = 2011, + [2107] = 1521, [2108] = 2108, - [2109] = 2109, - [2110] = 1996, - [2111] = 2109, - [2112] = 2112, - [2113] = 2105, - [2114] = 2114, - [2115] = 1994, - [2116] = 2109, - [2117] = 1996, - [2118] = 2118, - [2119] = 2119, - [2120] = 2078, - [2121] = 2121, - [2122] = 2121, - [2123] = 2109, - [2124] = 2103, - [2125] = 2101, - [2126] = 2126, - [2127] = 1994, - [2128] = 2126, - [2129] = 2129, - [2130] = 1963, - [2131] = 1963, - [2132] = 1958, - [2133] = 2133, - [2134] = 2134, - [2135] = 2135, + [2109] = 2006, + [2110] = 1190, + [2111] = 2011, + [2112] = 2009, + [2113] = 2113, + [2114] = 2008, + [2115] = 2009, + [2116] = 1521, + [2117] = 2008, + [2118] = 2012, + [2119] = 2006, + [2120] = 2012, + [2121] = 2010, + [2122] = 2122, + [2123] = 2123, + [2124] = 1304, + [2125] = 2125, + [2126] = 2012, + [2127] = 1190, + [2128] = 2010, + [2129] = 2006, + [2130] = 1190, + [2131] = 2009, + [2132] = 2132, + [2133] = 2011, + [2134] = 1190, + [2135] = 2008, [2136] = 2136, - [2137] = 2137, - [2138] = 2074, - [2139] = 2139, - [2140] = 2140, - [2141] = 2133, - [2142] = 2049, - [2143] = 2135, - [2144] = 2144, - [2145] = 1984, - [2146] = 2146, - [2147] = 2147, - [2148] = 2108, - [2149] = 2133, - [2150] = 2135, - [2151] = 2151, - [2152] = 2133, - [2153] = 2076, - [2154] = 2135, - [2155] = 2071, - [2156] = 2133, - [2157] = 2135, - [2158] = 2158, - [2159] = 2133, - [2160] = 2135, - [2161] = 2161, + [2137] = 1305, + [2138] = 2008, + [2139] = 2043, + [2140] = 1190, + [2141] = 2008, + [2142] = 1190, + [2143] = 1190, + [2144] = 1305, + [2145] = 1304, + [2146] = 2011, + [2147] = 2012, + [2148] = 2009, + [2149] = 2010, + [2150] = 2012, + [2151] = 2011, + [2152] = 2009, + [2153] = 2153, + [2154] = 1190, + [2155] = 2155, + [2156] = 2156, + [2157] = 2157, + [2158] = 2006, + [2159] = 2159, + [2160] = 2010, + [2161] = 2006, [2162] = 2162, - [2163] = 2074, - [2164] = 1984, - [2165] = 2165, - [2166] = 2135, - [2167] = 1958, - [2168] = 2133, + [2163] = 2163, + [2164] = 1190, + [2165] = 2132, + [2166] = 2166, + [2167] = 2167, + [2168] = 2168, [2169] = 2169, [2170] = 2170, - [2171] = 2171, + [2171] = 1190, [2172] = 2172, - [2173] = 2049, - [2174] = 2053, + [2173] = 2173, + [2174] = 1190, [2175] = 2175, - [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 2071, - [2180] = 2076, - [2181] = 2181, - [2182] = 1996, - [2183] = 2183, - [2184] = 2184, - [2185] = 2185, - [2186] = 2186, - [2187] = 2162, - [2188] = 2071, - [2189] = 2189, - [2190] = 2190, + [2176] = 2006, + [2177] = 2046, + [2178] = 2052, + [2179] = 2054, + [2180] = 2180, + [2181] = 2053, + [2182] = 1190, + [2183] = 2050, + [2184] = 2097, + [2185] = 2012, + [2186] = 2009, + [2187] = 2187, + [2188] = 2188, + [2189] = 2008, + [2190] = 2049, [2191] = 2191, - [2192] = 2192, - [2193] = 2193, + [2192] = 2051, + [2193] = 2010, [2194] = 2194, - [2195] = 2195, - [2196] = 2196, - [2197] = 2197, - [2198] = 2198, + [2195] = 2006, + [2196] = 2008, + [2197] = 2010, + [2198] = 2011, [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2202, - [2203] = 2063, - [2204] = 2204, - [2205] = 2205, - [2206] = 1963, - [2207] = 2207, - [2208] = 2208, + [2200] = 2009, + [2201] = 2043, + [2202] = 2012, + [2203] = 2048, + [2204] = 2011, + [2205] = 1304, + [2206] = 2206, + [2207] = 1305, + [2208] = 2053, [2209] = 2209, - [2210] = 2076, - [2211] = 2211, - [2212] = 2037, + [2210] = 1304, + [2211] = 1305, + [2212] = 2212, [2213] = 2213, - [2214] = 2214, - [2215] = 2215, + [2214] = 2006, + [2215] = 2008, [2216] = 2216, [2217] = 2217, - [2218] = 2218, - [2219] = 2219, - [2220] = 2220, - [2221] = 2221, - [2222] = 2222, - [2223] = 2223, - [2224] = 1994, + [2218] = 1305, + [2219] = 1304, + [2220] = 2097, + [2221] = 2010, + [2222] = 2012, + [2223] = 2011, + [2224] = 2009, [2225] = 2225, - [2226] = 2226, - [2227] = 2227, + [2226] = 2046, + [2227] = 2052, [2228] = 2228, [2229] = 2229, [2230] = 2230, - [2231] = 1963, + [2231] = 2097, [2232] = 2232, [2233] = 2233, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 2239, - [2240] = 2105, - [2241] = 2121, - [2242] = 2103, - [2243] = 2101, - [2244] = 2126, - [2245] = 2102, - [2246] = 2105, + [2234] = 2054, + [2235] = 2050, + [2236] = 2049, + [2237] = 2051, + [2238] = 2048, + [2239] = 2046, + [2240] = 2052, + [2241] = 2054, + [2242] = 2049, + [2243] = 2243, + [2244] = 2244, + [2245] = 1305, + [2246] = 1304, [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, + [2248] = 2053, + [2249] = 2249, + [2250] = 1305, + [2251] = 2251, + [2252] = 2232, + [2253] = 2253, + [2254] = 2153, + [2255] = 2225, + [2256] = 2051, + [2257] = 2048, + [2258] = 2258, + [2259] = 1304, + [2260] = 2156, + [2261] = 2261, + [2262] = 2050, + [2263] = 2079, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, + [2267] = 2267, [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, - [2290] = 2290, + [2269] = 1521, + [2270] = 1304, + [2271] = 2271, + [2272] = 2272, + [2273] = 2273, + [2274] = 2274, + [2275] = 2125, + [2276] = 2276, + [2277] = 2069, + [2278] = 1521, + [2279] = 2268, + [2280] = 2264, + [2281] = 2281, + [2282] = 2282, + [2283] = 2283, + [2284] = 2284, + [2285] = 1521, + [2286] = 2286, + [2287] = 1305, + [2288] = 2288, + [2289] = 1521, + [2290] = 2272, [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, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, + [2295] = 2295, + [2296] = 2079, + [2297] = 2297, + [2298] = 2298, + [2299] = 2299, + [2300] = 2300, + [2301] = 2301, + [2302] = 2302, + [2303] = 2303, + [2304] = 2304, + [2305] = 2305, + [2306] = 2306, + [2307] = 2307, + [2308] = 2153, [2309] = 2309, - [2310] = 2291, - [2311] = 2309, - [2312] = 2291, + [2310] = 2310, + [2311] = 2311, + [2312] = 2132, [2313] = 2313, - [2314] = 2290, - [2315] = 2268, - [2316] = 1984, + [2314] = 2314, + [2315] = 2315, + [2316] = 2316, [2317] = 2317, [2318] = 2318, - [2319] = 2290, - [2320] = 2006, - [2321] = 2309, - [2322] = 2309, + [2319] = 2319, + [2320] = 2320, + [2321] = 2321, + [2322] = 2322, [2323] = 2323, - [2324] = 2290, - [2325] = 2001, - [2326] = 2016, - [2327] = 2103, - [2328] = 2101, - [2329] = 2126, - [2330] = 2105, - [2331] = 2102, - [2332] = 2121, - [2333] = 2001, - [2334] = 2103, - [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, - [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, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, + [2331] = 2331, + [2332] = 2332, + [2333] = 2333, + [2334] = 2334, + [2335] = 2335, + [2336] = 2233, + [2337] = 2069, + [2338] = 2079, + [2339] = 2339, + [2340] = 2069, + [2341] = 2341, + [2342] = 2097, + [2343] = 2156, + [2344] = 2344, + [2345] = 2345, + [2346] = 2346, + [2347] = 1304, + [2348] = 1305, + [2349] = 2349, + [2350] = 2011, + [2351] = 2009, + [2352] = 1305, + [2353] = 2010, + [2354] = 2006, + [2355] = 2156, + [2356] = 2098, + [2357] = 2097, + [2358] = 2349, + [2359] = 2349, + [2360] = 1304, + [2361] = 2349, + [2362] = 2008, + [2363] = 2153, + [2364] = 2097, + [2365] = 2012, + [2366] = 2366, + [2367] = 2098, + [2368] = 2009, + [2369] = 2264, + [2370] = 2370, + [2371] = 2011, + [2372] = 2079, + [2373] = 2008, + [2374] = 2366, + [2375] = 2123, + [2376] = 2098, + [2377] = 2366, + [2378] = 2225, + [2379] = 2366, + [2380] = 2012, + [2381] = 2136, + [2382] = 2370, + [2383] = 2370, + [2384] = 2366, + [2385] = 2366, + [2386] = 2010, + [2387] = 2370, + [2388] = 2366, + [2389] = 2069, + [2390] = 2069, + [2391] = 2079, + [2392] = 2370, + [2393] = 2132, + [2394] = 2053, + [2395] = 2006, + [2396] = 2370, + [2397] = 2225, + [2398] = 2053, + [2399] = 2370, + [2400] = 2335, + [2401] = 2162, + [2402] = 2163, + [2403] = 2199, + [2404] = 2079, + [2405] = 2166, + [2406] = 2172, + [2407] = 2153, + [2408] = 2123, + [2409] = 2132, + [2410] = 2167, + [2411] = 2136, + [2412] = 2169, + [2413] = 2173, + [2414] = 2155, + [2415] = 2156, + [2416] = 2069, + [2417] = 2157, + [2418] = 2097, + [2419] = 2136, + [2420] = 2132, + [2421] = 2122, + [2422] = 2123, + [2423] = 2159, + [2424] = 2168, + [2425] = 2108, + [2426] = 2132, + [2427] = 2170, + [2428] = 2010, + [2429] = 2170, + [2430] = 1521, + [2431] = 2012, + [2432] = 2006, + [2433] = 2008, + [2434] = 2108, + [2435] = 2163, + [2436] = 2206, + [2437] = 2010, + [2438] = 2006, + [2439] = 2009, + [2440] = 2440, + [2441] = 1521, + [2442] = 2153, + [2443] = 2199, + [2444] = 1521, + [2445] = 2445, + [2446] = 2097, [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, - [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, - [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, - [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, - [2757] = 2757, - [2758] = 515, - [2759] = 2161, - [2760] = 2165, - [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, - [2777] = 2777, - [2778] = 2778, - [2779] = 2647, - [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, - [2842] = 2842, - [2843] = 2087, - [2844] = 2844, - [2845] = 481, - [2846] = 1963, - [2847] = 2171, - [2848] = 2172, + [2448] = 2159, + [2449] = 1521, + [2450] = 2132, + [2451] = 2199, + [2452] = 2153, + [2453] = 2011, + [2454] = 2155, + [2455] = 2167, + [2456] = 2157, + [2457] = 1521, + [2458] = 2156, + [2459] = 2159, + [2460] = 1521, + [2461] = 2169, + [2462] = 2172, + [2463] = 2155, + [2464] = 2009, + [2465] = 2079, + [2466] = 2212, + [2467] = 2168, + [2468] = 2170, + [2469] = 2008, + [2470] = 2098, + [2471] = 2440, + [2472] = 2166, + [2473] = 2156, + [2474] = 2122, + [2475] = 2132, + [2476] = 2168, + [2477] = 2447, + [2478] = 2478, + [2479] = 2157, + [2480] = 2172, + [2481] = 2478, + [2482] = 2167, + [2483] = 2122, + [2484] = 2162, + [2485] = 2169, + [2486] = 2012, + [2487] = 2166, + [2488] = 2163, + [2489] = 2069, + [2490] = 2173, + [2491] = 2108, + [2492] = 2162, + [2493] = 2011, + [2494] = 2173, + [2495] = 2495, + [2496] = 2006, + [2497] = 2098, + [2498] = 2043, + [2499] = 2499, + [2500] = 2136, + [2501] = 2217, + [2502] = 2043, + [2503] = 2136, + [2504] = 2123, + [2505] = 2206, + [2506] = 2097, + [2507] = 2212, + [2508] = 2132, + [2509] = 2206, + [2510] = 2212, + [2511] = 2499, + [2512] = 2188, + [2513] = 2499, + [2514] = 2175, + [2515] = 2499, + [2516] = 2499, + [2517] = 2499, + [2518] = 2499, + [2519] = 2499, + [2520] = 2499, + [2521] = 2008, + [2522] = 2011, + [2523] = 2009, + [2524] = 2012, + [2525] = 2010, + [2526] = 2194, + [2527] = 2157, + [2528] = 2159, + [2529] = 2168, + [2530] = 2166, + [2531] = 2162, + [2532] = 2163, + [2533] = 2225, + [2534] = 2108, + [2535] = 2253, + [2536] = 2122, + [2537] = 2053, + [2538] = 2188, + [2539] = 2175, + [2540] = 2187, + [2541] = 2108, + [2542] = 2132, + [2543] = 2217, + [2544] = 2251, + [2545] = 2225, + [2546] = 2136, + [2547] = 2216, + [2548] = 2180, + [2549] = 2153, + [2550] = 2550, + [2551] = 2188, + [2552] = 2156, + [2553] = 2053, + [2554] = 2217, + [2555] = 2097, + [2556] = 2097, + [2557] = 2175, + [2558] = 2122, + [2559] = 2199, + [2560] = 2011, + [2561] = 2009, + [2562] = 2213, + [2563] = 2010, + [2564] = 2006, + [2565] = 2011, + [2566] = 2009, + [2567] = 2012, + [2568] = 2010, + [2569] = 2006, + [2570] = 2008, + [2571] = 2008, + [2572] = 2054, + [2573] = 2209, + [2574] = 2050, + [2575] = 2049, + [2576] = 2051, + [2577] = 2048, + [2578] = 2046, + [2579] = 2052, + [2580] = 2169, + [2581] = 2170, + [2582] = 2069, + [2583] = 2191, + [2584] = 2172, + [2585] = 2173, + [2586] = 2167, + [2587] = 2155, + [2588] = 2243, + [2589] = 2244, + [2590] = 2247, + [2591] = 2079, + [2592] = 2249, + [2593] = 2012, + [2594] = 2051, + [2595] = 2209, + [2596] = 2194, + [2597] = 2180, + [2598] = 2216, + [2599] = 2213, + [2600] = 2206, + [2601] = 2243, + [2602] = 2244, + [2603] = 2249, + [2604] = 2253, + [2605] = 2212, + [2606] = 2247, + [2607] = 2079, + [2608] = 2191, + [2609] = 2187, + [2610] = 2281, + [2611] = 2069, + [2612] = 2264, + [2613] = 2251, + [2614] = 2097, + [2615] = 2216, + [2616] = 2213, + [2617] = 2191, + [2618] = 2054, + [2619] = 2050, + [2620] = 2049, + [2621] = 2048, + [2622] = 2046, + [2623] = 2052, + [2624] = 2069, + [2625] = 2243, + [2626] = 2244, + [2627] = 2247, + [2628] = 2079, + [2629] = 2249, + [2630] = 2187, + [2631] = 2251, + [2632] = 2054, + [2633] = 2050, + [2634] = 2049, + [2635] = 2051, + [2636] = 2048, + [2637] = 2046, + [2638] = 2052, + [2639] = 2225, + [2640] = 2225, + [2641] = 2194, + [2642] = 2180, + [2643] = 2123, + [2644] = 2011, + [2645] = 2009, + [2646] = 2012, + [2647] = 2010, + [2648] = 2006, + [2649] = 2153, + [2650] = 2008, + [2651] = 2132, + [2652] = 2156, + [2653] = 2136, + [2654] = 2097, + [2655] = 2264, + [2656] = 2273, + [2657] = 2209, + [2658] = 2125, + [2659] = 2253, + [2660] = 2264, + [2661] = 2291, + [2662] = 2097, + [2663] = 2168, + [2664] = 2265, + [2665] = 2284, + [2666] = 2167, + [2667] = 2155, + [2668] = 2232, + [2669] = 2157, + [2670] = 2097, + [2671] = 2159, + [2672] = 2273, + [2673] = 2673, + [2674] = 2175, + [2675] = 2132, + [2676] = 2261, + [2677] = 2286, + [2678] = 2678, + [2679] = 2274, + [2680] = 2153, + [2681] = 2097, + [2682] = 2276, + [2683] = 2230, + [2684] = 2188, + [2685] = 2273, + [2686] = 2281, + [2687] = 2166, + [2688] = 2043, + [2689] = 2258, + [2690] = 2335, + [2691] = 2217, + [2692] = 2169, + [2693] = 2191, + [2694] = 2170, + [2695] = 2233, + [2696] = 2264, + [2697] = 2172, + [2698] = 2173, + [2699] = 2156, + [2700] = 2281, + [2701] = 2162, + [2702] = 2702, + [2703] = 2125, + [2704] = 2125, + [2705] = 2097, + [2706] = 2163, + [2707] = 2266, + [2708] = 2267, + [2709] = 2232, + [2710] = 2043, + [2711] = 2097, + [2712] = 2283, + [2713] = 2271, + [2714] = 2282, + [2715] = 2288, + [2716] = 2292, + [2717] = 2717, + [2718] = 2266, + [2719] = 2267, + [2720] = 2283, + [2721] = 2271, + [2722] = 2079, + [2723] = 2288, + [2724] = 2291, + [2725] = 2232, + [2726] = 2274, + [2727] = 2276, + [2728] = 2282, + [2729] = 2284, + [2730] = 2286, + [2731] = 2315, + [2732] = 2292, + [2733] = 2265, + [2734] = 2132, + [2735] = 2735, + [2736] = 2268, + [2737] = 2010, + [2738] = 2188, + [2739] = 2069, + [2740] = 2006, + [2741] = 2266, + [2742] = 2267, + [2743] = 2233, + [2744] = 2323, + [2745] = 2253, + [2746] = 2283, + [2747] = 2271, + [2748] = 2232, + [2749] = 2288, + [2750] = 2291, + [2751] = 2054, + [2752] = 2268, + [2753] = 2050, + [2754] = 2049, + [2755] = 2051, + [2756] = 2272, + [2757] = 2048, + [2758] = 2046, + [2759] = 2052, + [2760] = 2097, + [2761] = 2243, + [2762] = 2153, + [2763] = 2156, + [2764] = 2272, + [2765] = 2233, + [2766] = 2225, + [2767] = 2274, + [2768] = 2244, + [2769] = 2276, + [2770] = 2282, + [2771] = 2053, + [2772] = 2284, + [2773] = 2232, + [2774] = 2097, + [2775] = 2232, + [2776] = 2232, + [2777] = 2298, + [2778] = 2286, + [2779] = 2232, + [2780] = 2153, + [2781] = 2209, + [2782] = 2156, + [2783] = 2225, + [2784] = 2053, + [2785] = 2053, + [2786] = 2249, + [2787] = 2717, + [2788] = 2292, + [2789] = 2265, + [2790] = 2335, + [2791] = 2791, + [2792] = 2216, + [2793] = 2012, + [2794] = 2011, + [2795] = 2009, + [2796] = 2261, + [2797] = 2717, + [2798] = 2213, + [2799] = 2191, + [2800] = 2175, + [2801] = 2801, + [2802] = 2097, + [2803] = 2199, + [2804] = 2261, + [2805] = 2012, + [2806] = 2010, + [2807] = 2807, + [2808] = 2230, + [2809] = 2801, + [2810] = 2717, + [2811] = 2228, + [2812] = 2801, + [2813] = 2717, + [2814] = 2801, + [2815] = 2717, + [2816] = 2717, + [2817] = 2187, + [2818] = 2229, + [2819] = 2194, + [2820] = 2180, + [2821] = 2251, + [2822] = 2230, + [2823] = 2006, + [2824] = 2258, + [2825] = 2008, + [2826] = 2258, + [2827] = 2194, + [2828] = 2136, + [2829] = 2180, + [2830] = 2011, + [2831] = 2009, + [2832] = 2344, + [2833] = 2008, + [2834] = 2294, + [2835] = 2247, + [2836] = 2225, + [2837] = 2323, + [2838] = 2268, + [2839] = 2344, + [2840] = 2268, + [2841] = 2344, + [2842] = 2272, + [2843] = 2272, + [2844] = 2294, + [2845] = 2323, + [2846] = 292, + [2847] = 2298, + [2848] = 2187, [2849] = 2849, - [2850] = 2850, - [2851] = 2851, - [2852] = 2076, - [2853] = 1994, - [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, - [2877] = 2877, - [2878] = 2878, - [2879] = 432, - [2880] = 2880, - [2881] = 366, - [2882] = 2134, - [2883] = 2734, + [2850] = 291, + [2851] = 2132, + [2852] = 2228, + [2853] = 2229, + [2854] = 2335, + [2855] = 2335, + [2856] = 2856, + [2857] = 2156, + [2858] = 2209, + [2859] = 2153, + [2860] = 2228, + [2861] = 2229, + [2862] = 288, + [2863] = 2132, + [2864] = 2315, + [2865] = 2053, + [2866] = 2156, + [2867] = 2043, + [2868] = 2264, + [2869] = 2294, + [2870] = 2153, + [2871] = 2871, + [2872] = 2206, + [2873] = 2212, + [2874] = 2298, + [2875] = 2136, + [2876] = 2281, + [2877] = 2125, + [2878] = 2156, + [2879] = 2272, + [2880] = 2315, + [2881] = 2136, + [2882] = 2882, + [2883] = 289, [2884] = 2884, - [2885] = 2134, - [2886] = 2137, - [2887] = 2193, - [2888] = 367, - [2889] = 2889, - [2890] = 2890, - [2891] = 2137, - [2892] = 368, - [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, - [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, - [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, - [2994] = 2994, - [2995] = 2541, - [2996] = 1958, - [2997] = 2221, - [2998] = 1963, - [2999] = 1963, - [3000] = 3000, - [3001] = 2235, - [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, - [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, - [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, + [2885] = 2153, + [2886] = 2268, + [2887] = 2097, + [2888] = 2272, + [2889] = 2268, + [2890] = 2273, + [2891] = 2272, + [2892] = 2268, + [2893] = 2272, + [2894] = 2268, + [2895] = 2156, + [2896] = 2329, + [2897] = 2326, + [2898] = 2333, + [2899] = 2284, + [2900] = 2309, + [2901] = 2334, + [2902] = 2153, + [2903] = 2288, + [2904] = 2156, + [2905] = 2320, + [2906] = 2286, + [2907] = 2300, + [2908] = 2330, + [2909] = 2291, + [2910] = 2266, + [2911] = 2318, + [2912] = 2341, + [2913] = 2233, + [2914] = 2316, + [2915] = 2156, + [2916] = 2228, + [2917] = 2153, + [2918] = 2301, + [2919] = 2043, + [2920] = 2317, + [2921] = 2232, + [2922] = 2922, + [2923] = 2292, + [2924] = 2097, + [2925] = 2925, + [2926] = 2229, + [2927] = 2328, + [2928] = 2339, + [2929] = 2345, + [2930] = 2217, + [2931] = 2043, + [2932] = 2321, + [2933] = 2230, + [2934] = 2331, + [2935] = 2271, + [2936] = 2299, + [2937] = 2302, + [2938] = 2216, + [2939] = 2304, + [2940] = 2306, + [2941] = 2314, + [2942] = 2319, + [2943] = 2313, + [2944] = 2232, + [2945] = 2213, + [2946] = 2265, + [2947] = 2311, + [2948] = 2322, + [2949] = 2332, + [2950] = 2153, + [2951] = 2303, + [2952] = 2335, + [2953] = 2327, + [2954] = 2261, + [2955] = 2153, + [2956] = 2233, + [2957] = 2324, + [2958] = 2258, + [2959] = 2325, + [2960] = 2156, + [2961] = 2283, + [2962] = 2307, + [2963] = 2293, + [2964] = 2276, + [2965] = 2043, + [2966] = 2346, + [2967] = 2295, + [2968] = 2297, + [2969] = 2305, + [2970] = 2267, + [2971] = 2282, + [2972] = 2310, + [2973] = 2274, + [2974] = 2324, + [2975] = 340, + [2976] = 2233, + [2977] = 2274, + [2978] = 2156, + [2979] = 2328, + [2980] = 2339, + [2981] = 2345, + [2982] = 2228, + [2983] = 2229, + [2984] = 2299, + [2985] = 2302, + [2986] = 2304, + [2987] = 2306, + [2988] = 2314, + [2989] = 2319, + [2990] = 2053, + [2991] = 2332, + [2992] = 2136, + [2993] = 2307, + [2994] = 2293, + [2995] = 2295, + [2996] = 2297, + [2997] = 2305, + [2998] = 2310, + [2999] = 2313, + [3000] = 2300, + [3001] = 2303, + [3002] = 2282, + [3003] = 2309, + [3004] = 2311, + [3005] = 2316, + [3006] = 2317, + [3007] = 2318, + [3008] = 2320, + [3009] = 2321, + [3010] = 2322, + [3011] = 2324, + [3012] = 2325, + [3013] = 2326, + [3014] = 2327, + [3015] = 2329, + [3016] = 2330, + [3017] = 2333, + [3018] = 2334, + [3019] = 2053, + [3020] = 2268, + [3021] = 2272, + [3022] = 2153, + [3023] = 2284, + [3024] = 2286, + [3025] = 2132, + [3026] = 2331, + [3027] = 2156, + [3028] = 2346, + [3029] = 2261, + [3030] = 290, + [3031] = 2043, + [3032] = 2251, + [3033] = 286, + [3034] = 2328, + [3035] = 2339, + [3036] = 2345, + [3037] = 2225, + [3038] = 2882, + [3039] = 2299, + [3040] = 2302, + [3041] = 2304, + [3042] = 2306, + [3043] = 2314, + [3044] = 2319, + [3045] = 2332, + [3046] = 2307, + [3047] = 2293, + [3048] = 2295, + [3049] = 2297, + [3050] = 2305, + [3051] = 2310, + [3052] = 2313, + [3053] = 2230, + [3054] = 2300, + [3055] = 2303, + [3056] = 2153, + [3057] = 2309, + [3058] = 2311, + [3059] = 2316, + [3060] = 2317, + [3061] = 2318, + [3062] = 2225, + [3063] = 2321, + [3064] = 2322, + [3065] = 2325, + [3066] = 2326, + [3067] = 2327, + [3068] = 2329, + [3069] = 2330, + [3070] = 2333, + [3071] = 2334, + [3072] = 2043, + [3073] = 2233, + [3074] = 2341, + [3075] = 2153, + [3076] = 2043, + [3077] = 3077, + [3078] = 2156, + [3079] = 309, + [3080] = 2301, + [3081] = 2292, + [3082] = 2043, + [3083] = 2233, + [3084] = 2043, + [3085] = 2268, + [3086] = 2272, + [3087] = 2265, + [3088] = 3088, + [3089] = 2153, + [3090] = 2156, + [3091] = 2053, + [3092] = 2871, + [3093] = 340, + [3094] = 2335, + [3095] = 2253, + [3096] = 2882, + [3097] = 2871, + [3098] = 2054, + [3099] = 2341, + [3100] = 2335, + [3101] = 2301, + [3102] = 2050, + [3103] = 2049, + [3104] = 2051, + [3105] = 3105, + [3106] = 3106, + [3107] = 2258, + [3108] = 2048, + [3109] = 2046, + [3110] = 2052, + [3111] = 2225, + [3112] = 2344, + [3113] = 2882, + [3114] = 2871, + [3115] = 2294, + [3116] = 2266, + [3117] = 2267, + [3118] = 2097, + [3119] = 2243, + [3120] = 2244, + [3121] = 2247, + [3122] = 2249, + [3123] = 2298, + [3124] = 2315, + [3125] = 2283, + [3126] = 2271, + [3127] = 2323, + [3128] = 3077, + [3129] = 2288, + [3130] = 2291, + [3131] = 3077, + [3132] = 3077, + [3133] = 3077, + [3134] = 3077, + [3135] = 3077, + [3136] = 2331, + [3137] = 2346, + [3138] = 2320, + [3139] = 2327, + [3140] = 2281, + [3141] = 3141, + [3142] = 3142, + [3143] = 418, + [3144] = 421, + [3145] = 3145, + [3146] = 3146, + [3147] = 3147, + [3148] = 2323, + [3149] = 2324, + [3150] = 3150, + [3151] = 2325, [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, + [3153] = 2320, + [3154] = 3154, + [3155] = 2326, + [3156] = 3156, + [3157] = 2276, + [3158] = 3158, + [3159] = 3159, + [3160] = 2053, + [3161] = 3161, + [3162] = 426, + [3163] = 3163, + [3164] = 3164, + [3165] = 529, + [3166] = 427, + [3167] = 3167, + [3168] = 428, + [3169] = 429, [3170] = 3170, - [3171] = 2074, + [3171] = 3171, [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, - [3601] = 3601, - [3602] = 2049, - [3603] = 3603, - [3604] = 3604, - [3605] = 2162, - [3606] = 2049, - [3607] = 1970, - [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, - [3626] = 3626, - [3627] = 3038, + [3173] = 3173, + [3174] = 2225, + [3175] = 430, + [3176] = 3176, + [3177] = 3177, + [3178] = 530, + [3179] = 2329, + [3180] = 2330, + [3181] = 482, + [3182] = 2053, + [3183] = 3183, + [3184] = 353, + [3185] = 483, + [3186] = 2053, + [3187] = 354, + [3188] = 3188, + [3189] = 357, + [3190] = 466, + [3191] = 2315, + [3192] = 2321, + [3193] = 381, + [3194] = 382, + [3195] = 383, + [3196] = 384, + [3197] = 386, + [3198] = 387, + [3199] = 2053, + [3200] = 2053, + [3201] = 2225, + [3202] = 533, + [3203] = 3203, + [3204] = 2243, + [3205] = 2244, + [3206] = 369, + [3207] = 2249, + [3208] = 2322, + [3209] = 372, + [3210] = 335, + [3211] = 487, + [3212] = 362, + [3213] = 3213, + [3214] = 414, + [3215] = 2079, + [3216] = 2309, + [3217] = 450, + [3218] = 371, + [3219] = 433, + [3220] = 401, + [3221] = 434, + [3222] = 488, + [3223] = 478, + [3224] = 3224, + [3225] = 2311, + [3226] = 2334, + [3227] = 440, + [3228] = 3228, + [3229] = 436, + [3230] = 2335, + [3231] = 2303, + [3232] = 490, + [3233] = 2339, + [3234] = 2345, + [3235] = 491, + [3236] = 451, + [3237] = 410, + [3238] = 492, + [3239] = 2273, + [3240] = 2043, + [3241] = 3203, + [3242] = 400, + [3243] = 402, + [3244] = 447, + [3245] = 2069, + [3246] = 2264, + [3247] = 455, + [3248] = 3248, + [3249] = 441, + [3250] = 2299, + [3251] = 2302, + [3252] = 2304, + [3253] = 2306, + [3254] = 2314, + [3255] = 2319, + [3256] = 452, + [3257] = 407, + [3258] = 2054, + [3259] = 453, + [3260] = 2332, + [3261] = 3261, + [3262] = 3262, + [3263] = 3263, + [3264] = 3264, + [3265] = 2233, + [3266] = 2125, + [3267] = 3267, + [3268] = 2050, + [3269] = 2049, + [3270] = 2051, + [3271] = 3203, + [3272] = 431, + [3273] = 3273, + [3274] = 437, + [3275] = 2048, + [3276] = 2046, + [3277] = 2052, + [3278] = 3278, + [3279] = 2344, + [3280] = 454, + [3281] = 3281, + [3282] = 2307, + [3283] = 2293, + [3284] = 3284, + [3285] = 3285, + [3286] = 2294, + [3287] = 2295, + [3288] = 2297, + [3289] = 2305, + [3290] = 2253, + [3291] = 2316, + [3292] = 456, + [3293] = 3293, + [3294] = 2310, + [3295] = 2317, + [3296] = 2313, + [3297] = 405, + [3298] = 3298, + [3299] = 3299, + [3300] = 528, + [3301] = 457, + [3302] = 2153, + [3303] = 2156, + [3304] = 2318, + [3305] = 458, + [3306] = 459, + [3307] = 461, + [3308] = 462, + [3309] = 2298, + [3310] = 2300, + [3311] = 2335, + [3312] = 2333, + [3313] = 3313, + [3314] = 2328, + [3315] = 3105, + [3316] = 2079, + [3317] = 292, + [3318] = 2478, + [3319] = 2053, + [3320] = 2440, + [3321] = 2447, + [3322] = 2478, + [3323] = 291, + [3324] = 2097, + [3325] = 2233, + [3326] = 288, + [3327] = 289, + [3328] = 288, + [3329] = 3105, + [3330] = 2247, + [3331] = 289, + [3332] = 3105, + [3333] = 3106, + [3334] = 2447, + [3335] = 3106, + [3336] = 2328, + [3337] = 2339, + [3338] = 2345, + [3339] = 2069, + [3340] = 2299, + [3341] = 2302, + [3342] = 2304, + [3343] = 2306, + [3344] = 2314, + [3345] = 3106, + [3346] = 2319, + [3347] = 2332, + [3348] = 2069, + [3349] = 2331, + [3350] = 2346, + [3351] = 2307, + [3352] = 2293, + [3353] = 2295, + [3354] = 2331, + [3355] = 2297, + [3356] = 2305, + [3357] = 2346, + [3358] = 2310, + [3359] = 2313, + [3360] = 2079, + [3361] = 3361, + [3362] = 3362, + [3363] = 2300, + [3364] = 292, + [3365] = 2303, + [3366] = 2440, + [3367] = 2309, + [3368] = 2311, + [3369] = 2153, + [3370] = 2316, + [3371] = 2317, + [3372] = 291, + [3373] = 2318, + [3374] = 2320, + [3375] = 2321, + [3376] = 2322, + [3377] = 2341, + [3378] = 2324, + [3379] = 2325, + [3380] = 2301, + [3381] = 2326, + [3382] = 2327, + [3383] = 2329, + [3384] = 2330, + [3385] = 2156, + [3386] = 2333, + [3387] = 2334, + [3388] = 2132, + [3389] = 2217, + [3390] = 2447, + [3391] = 2440, + [3392] = 2053, + [3393] = 2097, + [3394] = 2199, + [3395] = 2440, + [3396] = 2249, + [3397] = 2335, + [3398] = 2440, + [3399] = 2447, + [3400] = 2478, + [3401] = 2050, + [3402] = 2049, + [3403] = 2440, + [3404] = 3404, + [3405] = 2882, + [3406] = 2871, + [3407] = 286, + [3408] = 3408, + [3409] = 3409, + [3410] = 2447, + [3411] = 3411, + [3412] = 2249, + [3413] = 3413, + [3414] = 3414, + [3415] = 3415, + [3416] = 2478, + [3417] = 3417, + [3418] = 3418, + [3419] = 3419, + [3420] = 2281, + [3421] = 2051, + [3422] = 2048, + [3423] = 2046, + [3424] = 2052, + [3425] = 2447, + [3426] = 2440, + [3427] = 2447, + [3428] = 2478, + [3429] = 2243, + [3430] = 2244, + [3431] = 2440, + [3432] = 3432, + [3433] = 2478, + [3434] = 2301, + [3435] = 2447, + [3436] = 3436, + [3437] = 3437, + [3438] = 2123, + [3439] = 3432, + [3440] = 3440, + [3441] = 2478, + [3442] = 2478, + [3443] = 2273, + [3444] = 3444, + [3445] = 3445, + [3446] = 2244, + [3447] = 2735, + [3448] = 3437, + [3449] = 3449, + [3450] = 3411, + [3451] = 3451, + [3452] = 2253, + [3453] = 2247, + [3454] = 3454, + [3455] = 2156, + [3456] = 2153, + [3457] = 3457, + [3458] = 2125, + [3459] = 3449, + [3460] = 3460, + [3461] = 3461, + [3462] = 3444, + [3463] = 3463, + [3464] = 290, + [3465] = 2243, + [3466] = 3466, + [3467] = 3467, + [3468] = 3468, + [3469] = 2225, + [3470] = 2228, + [3471] = 2253, + [3472] = 2341, + [3473] = 2054, + [3474] = 2229, + [3475] = 3475, + [3476] = 2098, + [3477] = 286, + [3478] = 3478, + [3479] = 340, + [3480] = 3480, + [3481] = 309, + [3482] = 286, + [3483] = 340, + [3484] = 3484, + [3485] = 2108, + [3486] = 2281, + [3487] = 3487, + [3488] = 3488, + [3489] = 3489, + [3490] = 2225, + [3491] = 3491, + [3492] = 2132, + [3493] = 290, + [3494] = 2136, + [3495] = 2273, + [3496] = 2251, + [3497] = 3497, + [3498] = 3488, + [3499] = 290, + [3500] = 3500, + [3501] = 3501, + [3502] = 3502, + [3503] = 3503, + [3504] = 340, + [3505] = 3475, + [3506] = 3506, + [3507] = 340, + [3508] = 2079, + [3509] = 3509, + [3510] = 3484, + [3511] = 2098, + [3512] = 3512, + [3513] = 309, + [3514] = 2069, + [3515] = 3515, + [3516] = 3516, + [3517] = 2247, + [3518] = 3518, + [3519] = 3491, + [3520] = 3261, + [3521] = 455, + [3522] = 2155, + [3523] = 2157, + [3524] = 3264, + [3525] = 3267, + [3526] = 3278, + [3527] = 3281, + [3528] = 3284, + [3529] = 3156, + [3530] = 3285, + [3531] = 3293, + [3532] = 2159, + [3533] = 2168, + [3534] = 2217, + [3535] = 3141, + [3536] = 3142, + [3537] = 3145, + [3538] = 3146, + [3539] = 3147, + [3540] = 530, + [3541] = 3541, + [3542] = 3154, + [3543] = 3159, + [3544] = 490, + [3545] = 3161, + [3546] = 3167, + [3547] = 400, + [3548] = 528, + [3549] = 402, + [3550] = 407, + [3551] = 2136, + [3552] = 433, + [3553] = 440, + [3554] = 440, + [3555] = 434, + [3556] = 2123, + [3557] = 3156, + [3558] = 2225, + [3559] = 3158, + [3560] = 3163, + [3561] = 3164, + [3562] = 3170, + [3563] = 3171, + [3564] = 3172, + [3565] = 3173, + [3566] = 447, + [3567] = 369, + [3568] = 2447, + [3569] = 3105, + [3570] = 382, + [3571] = 451, + [3572] = 3572, + [3573] = 2123, + [3574] = 426, + [3575] = 452, + [3576] = 3313, + [3577] = 3177, + [3578] = 3228, + [3579] = 3152, + [3580] = 3213, + [3581] = 3273, + [3582] = 3299, + [3583] = 2191, + [3584] = 455, + [3585] = 3248, + [3586] = 483, + [3587] = 3263, + [3588] = 3264, + [3589] = 3267, + [3590] = 3278, + [3591] = 3281, + [3592] = 3284, + [3593] = 3285, + [3594] = 3293, + [3595] = 3141, + [3596] = 3142, + [3597] = 3145, + [3598] = 3146, + [3599] = 3147, + [3600] = 3154, + [3601] = 3159, + [3602] = 3106, + [3603] = 3161, + [3604] = 3167, + [3605] = 401, + [3606] = 2478, + [3607] = 418, + [3608] = 427, + [3609] = 453, + [3610] = 405, + [3611] = 383, + [3612] = 421, + [3613] = 2136, + [3614] = 426, + [3615] = 427, + [3616] = 3616, + [3617] = 353, + [3618] = 372, + [3619] = 429, + [3620] = 441, + [3621] = 430, + [3622] = 433, + [3623] = 434, + [3624] = 454, + [3625] = 436, + [3626] = 353, + [3627] = 354, [3628] = 3628, - [3629] = 2538, - [3630] = 3027, - [3631] = 2309, - [3632] = 2565, - [3633] = 1966, - [3634] = 2291, - [3635] = 1967, - [3636] = 2957, - [3637] = 3637, - [3638] = 3638, - [3639] = 3599, - [3640] = 3640, - [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, - [3669] = 3669, - [3670] = 2983, - [3671] = 3671, - [3672] = 3004, - [3673] = 3673, - [3674] = 3674, - [3675] = 3675, - [3676] = 2147, - [3677] = 2851, - [3678] = 3678, - [3679] = 3679, - [3680] = 3002, - [3681] = 3681, - [3682] = 2268, - [3683] = 1114, - [3684] = 2073, - [3685] = 3685, - [3686] = 3686, - [3687] = 3687, - [3688] = 3688, - [3689] = 3657, - [3690] = 3690, - [3691] = 2006, - [3692] = 2309, - [3693] = 3693, - [3694] = 3694, - [3695] = 3599, - [3696] = 3696, - [3697] = 2799, - [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, - [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, + [3629] = 335, + [3630] = 2153, + [3631] = 447, + [3632] = 354, + [3633] = 2264, + [3634] = 3158, + [3635] = 384, + [3636] = 3172, + [3637] = 454, + [3638] = 456, + [3639] = 457, + [3640] = 458, + [3641] = 459, + [3642] = 461, + [3643] = 462, + [3644] = 2132, + [3645] = 2069, + [3646] = 357, + [3647] = 2079, + [3648] = 466, + [3649] = 3649, + [3650] = 2170, + [3651] = 3163, + [3652] = 357, + [3653] = 441, + [3654] = 371, + [3655] = 487, + [3656] = 2169, + [3657] = 2440, + [3658] = 410, + [3659] = 2166, + [3660] = 478, + [3661] = 2156, + [3662] = 2447, + [3663] = 2251, + [3664] = 428, + [3665] = 431, + [3666] = 2478, + [3667] = 3150, + [3668] = 437, + [3669] = 490, + [3670] = 2172, + [3671] = 491, + [3672] = 492, + [3673] = 429, + [3674] = 3188, + [3675] = 528, + [3676] = 3173, + [3677] = 529, + [3678] = 530, + [3679] = 2173, + [3680] = 386, + [3681] = 387, + [3682] = 533, + [3683] = 436, + [3684] = 2735, + [3685] = 529, + [3686] = 3313, + [3687] = 450, + [3688] = 421, + [3689] = 3177, + [3690] = 3228, + [3691] = 451, + [3692] = 402, + [3693] = 407, + [3694] = 3152, + [3695] = 362, + [3696] = 414, + [3697] = 3213, + [3698] = 3273, + [3699] = 405, + [3700] = 3299, + [3701] = 2125, + [3702] = 381, + [3703] = 382, + [3704] = 383, + [3705] = 2281, + [3706] = 384, + [3707] = 456, + [3708] = 2228, + [3709] = 2440, + [3710] = 2162, + [3711] = 457, + [3712] = 458, + [3713] = 2163, + [3714] = 2132, + [3715] = 386, + [3716] = 387, + [3717] = 533, + [3718] = 459, + [3719] = 461, + [3720] = 452, + [3721] = 462, + [3722] = 2251, + [3723] = 2273, + [3724] = 381, + [3725] = 450, + [3726] = 491, + [3727] = 3727, + [3728] = 401, + [3729] = 488, + [3730] = 369, + [3731] = 410, + [3732] = 418, + [3733] = 466, + [3734] = 430, + [3735] = 431, + [3736] = 437, + [3737] = 400, + [3738] = 428, + [3739] = 372, + [3740] = 335, + [3741] = 482, + [3742] = 362, + [3743] = 414, + [3744] = 453, + [3745] = 371, + [3746] = 3649, + [3747] = 492, + [3748] = 3248, + [3749] = 3261, + [3750] = 2167, + [3751] = 3150, + [3752] = 3263, + [3753] = 478, + [3754] = 3164, + [3755] = 2108, + [3756] = 3188, + [3757] = 482, + [3758] = 3170, + [3759] = 483, + [3760] = 3171, + [3761] = 487, + [3762] = 488, + [3763] = 2132, + [3764] = 2166, + [3765] = 3765, + [3766] = 2322, + [3767] = 3767, [3768] = 3768, - [3769] = 3769, - [3770] = 2076, - [3771] = 2074, - [3772] = 3772, - [3773] = 2071, - [3774] = 2103, - [3775] = 2101, - [3776] = 2126, - [3777] = 2105, - [3778] = 2102, - [3779] = 3779, - [3780] = 3780, - [3781] = 3781, - [3782] = 3782, - [3783] = 3331, - [3784] = 2026, + [3769] = 2156, + [3770] = 2856, + [3771] = 2122, + [3772] = 2199, + [3773] = 2108, + [3774] = 2849, + [3775] = 2122, + [3776] = 2232, + [3777] = 2157, + [3778] = 3778, + [3779] = 2232, + [3780] = 2172, + [3781] = 2167, + [3782] = 1149, + [3783] = 2735, + [3784] = 2167, [3785] = 3785, - [3786] = 2026, - [3787] = 3685, - [3788] = 3685, - [3789] = 3686, - [3790] = 2147, - [3791] = 3791, - [3792] = 3792, - [3793] = 2119, - [3794] = 3794, - [3795] = 3795, - [3796] = 2118, - [3797] = 2108, - [3798] = 3798, - [3799] = 2071, - [3800] = 2049, - [3801] = 2121, - [3802] = 2162, - [3803] = 2112, + [3786] = 2155, + [3787] = 2157, + [3788] = 2159, + [3789] = 2169, + [3790] = 2132, + [3791] = 2199, + [3792] = 2884, + [3793] = 1148, + [3794] = 3778, + [3795] = 2169, + [3796] = 2170, + [3797] = 1305, + [3798] = 1304, + [3799] = 2170, + [3800] = 2155, + [3801] = 2162, + [3802] = 3785, + [3803] = 2173, [3804] = 3804, - [3805] = 3805, - [3806] = 2851, - [3807] = 2762, - [3808] = 2170, + [3805] = 2163, + [3806] = 3806, + [3807] = 2172, + [3808] = 3778, [3809] = 3809, - [3810] = 3686, - [3811] = 2757, - [3812] = 2799, - [3813] = 3779, - [3814] = 3814, - [3815] = 3815, - [3816] = 3779, - [3817] = 3817, - [3818] = 2118, - [3819] = 2087, - [3820] = 3820, - [3821] = 2323, - [3822] = 3685, - [3823] = 2037, - [3824] = 2076, - [3825] = 3686, - [3826] = 3826, - [3827] = 3827, - [3828] = 3828, - [3829] = 2161, - [3830] = 2161, - [3831] = 3763, - [3832] = 2136, - [3833] = 3833, - [3834] = 3674, - [3835] = 2139, - [3836] = 2165, + [3810] = 2232, + [3811] = 2173, + [3812] = 2345, + [3813] = 2153, + [3814] = 2166, + [3815] = 2159, + [3816] = 2232, + [3817] = 2162, + [3818] = 2199, + [3819] = 2735, + [3820] = 2125, + [3821] = 2163, + [3822] = 2108, + [3823] = 2168, + [3824] = 2132, + [3825] = 3825, + [3826] = 2229, + [3827] = 2168, + [3828] = 2213, + [3829] = 2050, + [3830] = 2049, + [3831] = 2051, + [3832] = 2048, + [3833] = 2046, + [3834] = 2052, + [3835] = 2216, + [3836] = 3836, [3837] = 3837, - [3838] = 2762, - [3839] = 2139, - [3840] = 3840, - [3841] = 3841, - [3842] = 2137, - [3843] = 3331, - [3844] = 3844, + [3838] = 2299, + [3839] = 2302, + [3840] = 2304, + [3841] = 2306, + [3842] = 2314, + [3843] = 3843, + [3844] = 2856, [3845] = 3845, - [3846] = 2229, - [3847] = 3847, - [3848] = 3848, + [3846] = 3846, + [3847] = 2319, + [3848] = 2281, [3849] = 3849, [3850] = 3850, [3851] = 3851, - [3852] = 3852, + [3852] = 3468, [3853] = 3853, - [3854] = 3854, - [3855] = 2140, - [3856] = 3856, - [3857] = 3857, - [3858] = 2565, - [3859] = 3859, - [3860] = 2006, - [3861] = 2181, - [3862] = 2171, - [3863] = 2172, - [3864] = 3864, - [3865] = 2144, - [3866] = 3866, - [3867] = 2851, - [3868] = 2762, - [3869] = 3869, - [3870] = 2146, - [3871] = 2757, - [3872] = 2799, - [3873] = 2134, + [3854] = 2332, + [3855] = 3855, + [3856] = 3415, + [3857] = 2043, + [3858] = 3858, + [3859] = 3445, + [3860] = 3451, + [3861] = 3454, + [3862] = 3862, + [3863] = 2344, + [3864] = 2307, + [3865] = 2293, + [3866] = 2294, + [3867] = 2295, + [3868] = 2297, + [3869] = 2305, + [3870] = 2310, + [3871] = 2313, + [3872] = 2108, + [3873] = 2335, [3874] = 3874, [3875] = 3875, - [3876] = 3876, - [3877] = 2047, + [3876] = 3417, + [3877] = 3418, [3878] = 3878, - [3879] = 2556, + [3879] = 3879, [3880] = 3880, [3881] = 3881, [3882] = 3882, - [3883] = 3880, - [3884] = 2134, - [3885] = 2197, - [3886] = 2045, - [3887] = 3887, - [3888] = 3888, + [3883] = 3436, + [3884] = 3884, + [3885] = 3885, + [3886] = 3886, + [3887] = 3460, + [3888] = 2108, [3889] = 3889, [3890] = 3890, [3891] = 3891, - [3892] = 3892, - [3893] = 3331, + [3892] = 1305, + [3893] = 1304, [3894] = 3894, [3895] = 3895, [3896] = 3896, - [3897] = 2538, - [3898] = 3898, - [3899] = 3899, - [3900] = 3900, - [3901] = 2171, - [3902] = 2225, - [3903] = 3903, - [3904] = 3891, - [3905] = 2172, - [3906] = 3906, + [3897] = 2268, + [3898] = 2272, + [3899] = 2298, + [3900] = 2300, + [3901] = 2303, + [3902] = 2276, + [3903] = 2309, + [3904] = 2311, + [3905] = 3905, + [3906] = 2315, [3907] = 3907, - [3908] = 3908, - [3909] = 3674, - [3910] = 3910, - [3911] = 3911, - [3912] = 3912, + [3908] = 2316, + [3909] = 2318, + [3910] = 2320, + [3911] = 3855, + [3912] = 2321, [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, - [3926] = 3926, - [3927] = 2136, - [3928] = 3928, - [3929] = 3896, - [3930] = 3930, - [3931] = 3931, - [3932] = 3674, - [3933] = 3933, - [3934] = 2129, - [3935] = 2158, - [3936] = 2140, + [3914] = 3413, + [3915] = 3409, + [3916] = 3916, + [3917] = 3414, + [3918] = 3457, + [3919] = 3404, + [3920] = 3920, + [3921] = 2323, + [3922] = 2324, + [3923] = 2325, + [3924] = 2326, + [3925] = 2327, + [3926] = 2329, + [3927] = 2330, + [3928] = 2328, + [3929] = 3929, + [3930] = 3855, + [3931] = 3224, + [3932] = 3461, + [3933] = 2735, + [3934] = 2333, + [3935] = 2253, + [3936] = 2334, [3937] = 3937, [3938] = 3938, - [3939] = 3939, - [3940] = 2757, - [3941] = 3941, - [3942] = 2144, - [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, - [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, + [3939] = 2339, + [3940] = 2191, + [3941] = 3298, + [3942] = 2206, + [3943] = 3855, + [3944] = 3855, + [3945] = 2212, + [3946] = 2225, + [3947] = 2735, + [3948] = 3176, + [3949] = 2273, + [3950] = 2884, + [3951] = 2206, + [3952] = 2136, + [3953] = 3953, + [3954] = 3183, + [3955] = 2243, + [3956] = 2244, + [3957] = 2268, + [3958] = 3958, + [3959] = 2249, + [3960] = 290, + [3961] = 2212, + [3962] = 2849, + [3963] = 3855, + [3964] = 2272, + [3965] = 3965, + [3966] = 2268, + [3967] = 2272, + [3968] = 1149, + [3969] = 2247, + [3970] = 2125, + [3971] = 3916, + [3972] = 3972, + [3973] = 1148, + [3974] = 2268, + [3975] = 3975, + [3976] = 3853, + [3977] = 3977, + [3978] = 286, + [3979] = 2272, + [3980] = 3980, + [3981] = 3981, + [3982] = 3982, + [3983] = 2054, + [3984] = 2317, + [3985] = 2213, + [3986] = 3765, + [3987] = 2735, + [3988] = 2282, + [3989] = 2335, + [3990] = 2856, + [3991] = 3767, + [3992] = 3992, + [3993] = 2284, + [3994] = 3994, + [3995] = 2225, + [3996] = 2286, + [3997] = 2345, + [3998] = 3998, + [3999] = 2188, + [4000] = 2123, + [4001] = 4001, + [4002] = 2322, + [4003] = 2097, + [4004] = 4004, + [4005] = 2735, + [4006] = 2123, + [4007] = 2856, + [4008] = 2217, + [4009] = 2849, + [4010] = 2266, + [4011] = 2267, + [4012] = 2291, + [4013] = 2175, + [4014] = 2735, + [4015] = 2216, + [4016] = 2053, [4017] = 4017, - [4018] = 3852, - [4019] = 2175, - [4020] = 2757, - [4021] = 2239, - [4022] = 2103, - [4023] = 2101, + [4018] = 2217, + [4019] = 3649, + [4020] = 3765, + [4021] = 2292, + [4022] = 2265, + [4023] = 2225, [4024] = 4024, - [4025] = 2799, - [4026] = 2047, - [4027] = 3931, - [4028] = 2105, - [4029] = 2075, - [4030] = 2219, + [4025] = 3767, + [4026] = 2188, + [4027] = 2136, + [4028] = 2735, + [4029] = 2884, + [4030] = 2271, [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, + [4032] = 2884, + [4033] = 2228, + [4034] = 3765, + [4035] = 2735, + [4036] = 2229, + [4037] = 2288, + [4038] = 2175, + [4039] = 2274, + [4040] = 2097, + [4041] = 3767, + [4042] = 2053, + [4043] = 2283, + [4044] = 2735, + [4045] = 4045, + [4046] = 2849, + [4047] = 2054, + [4048] = 4048, + [4049] = 2216, + [4050] = 2295, + [4051] = 2297, + [4052] = 4052, + [4053] = 2213, + [4054] = 2266, + [4055] = 2209, + [4056] = 2305, + [4057] = 2292, + [4058] = 4058, + [4059] = 4059, + [4060] = 2251, + [4061] = 2079, + [4062] = 4062, + [4063] = 4063, + [4064] = 4064, + [4065] = 4065, + [4066] = 4066, + [4067] = 2251, + [4068] = 2054, + [4069] = 2050, + [4070] = 2049, + [4071] = 4071, + [4072] = 4072, + [4073] = 2051, + [4074] = 2048, + [4075] = 2046, + [4076] = 2243, + [4077] = 2244, + [4078] = 2052, + [4079] = 2156, + [4080] = 2249, + [4081] = 4081, + [4082] = 2050, + [4083] = 2049, + [4084] = 2216, + [4085] = 2051, + [4086] = 2048, + [4087] = 2046, + [4088] = 2052, + [4089] = 2328, + [4090] = 2339, + [4091] = 2213, + [4092] = 2267, + [4093] = 2187, + [4094] = 2153, + [4095] = 4095, + [4096] = 1305, + [4097] = 1304, + [4098] = 2265, + [4099] = 2187, + [4100] = 4100, + [4101] = 3649, + [4102] = 2288, + [4103] = 2243, + [4104] = 2244, + [4105] = 2079, + [4106] = 2247, + [4107] = 2249, + [4108] = 4108, + [4109] = 2271, + [4110] = 2298, + [4111] = 2300, + [4112] = 2303, + [4113] = 2247, + [4114] = 2293, + [4115] = 2276, + [4116] = 2309, + [4117] = 2311, + [4118] = 2315, + [4119] = 2225, + [4120] = 2317, + [4121] = 2310, + [4122] = 2291, + [4123] = 2191, + [4124] = 2194, + [4125] = 2318, + [4126] = 4126, + [4127] = 2180, + [4128] = 2320, + [4129] = 2225, + [4130] = 2321, + [4131] = 2069, + [4132] = 2299, + [4133] = 2302, + [4134] = 2304, + [4135] = 2306, + [4136] = 2274, + [4137] = 2069, + [4138] = 2314, + [4139] = 2313, + [4140] = 2209, + [4141] = 2282, + [4142] = 2319, + [4143] = 2283, + [4144] = 2233, + [4145] = 2332, + [4146] = 2284, + [4147] = 2286, + [4148] = 2323, + [4149] = 2324, + [4150] = 2325, + [4151] = 2326, + [4152] = 2327, + [4153] = 3224, + [4154] = 2329, + [4155] = 2330, + [4156] = 3298, + [4157] = 2194, + [4158] = 2180, + [4159] = 2253, + [4160] = 2264, + [4161] = 2233, + [4162] = 2132, [4163] = 4163, - [4164] = 2851, - [4165] = 4165, + [4164] = 2187, + [4165] = 3176, [4166] = 4166, - [4167] = 3018, - [4168] = 2762, - [4169] = 4169, - [4170] = 4153, - [4171] = 3065, - [4172] = 4172, - [4173] = 4173, - [4174] = 2757, - [4175] = 2799, - [4176] = 4151, - [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, + [4167] = 4167, + [4168] = 2253, + [4169] = 3183, + [4170] = 4170, + [4171] = 4171, + [4172] = 2294, + [4173] = 2333, + [4174] = 2334, + [4175] = 2344, + [4176] = 2307, + [4177] = 2316, + [4178] = 4178, + [4179] = 4179, + [4180] = 4180, + [4181] = 2295, + [4182] = 2273, + [4183] = 2297, + [4184] = 2305, + [4185] = 2264, + [4186] = 4186, + [4187] = 4187, + [4188] = 4188, + [4189] = 4189, + [4190] = 3885, + [4191] = 4191, + [4192] = 4192, + [4193] = 4193, + [4194] = 4194, + [4195] = 2169, + [4196] = 2125, + [4197] = 2293, + [4198] = 2170, + [4199] = 4199, + [4200] = 4200, + [4201] = 4201, + [4202] = 4202, + [4203] = 2335, + [4204] = 3183, + [4205] = 2172, + [4206] = 2097, + [4207] = 2173, + [4208] = 3886, + [4209] = 3224, + [4210] = 3298, + [4211] = 2345, + [4212] = 2167, + [4213] = 2155, + [4214] = 4214, + [4215] = 4215, + [4216] = 2307, + [4217] = 2322, + [4218] = 4218, + [4219] = 2157, + [4220] = 2125, + [4221] = 4221, + [4222] = 4222, + [4223] = 2159, + [4224] = 2097, + [4225] = 4225, + [4226] = 4226, + [4227] = 2168, + [4228] = 4228, + [4229] = 2167, + [4230] = 2155, + [4231] = 2157, + [4232] = 2159, + [4233] = 2168, + [4234] = 2166, + [4235] = 3176, + [4236] = 2170, + [4237] = 2329, + [4238] = 2162, + [4239] = 2163, + [4240] = 2332, + [4241] = 4241, + [4242] = 2324, + [4243] = 3992, + [4244] = 2849, + [4245] = 4245, + [4246] = 4246, + [4247] = 2325, + [4248] = 2264, + [4249] = 2310, + [4250] = 4250, + [4251] = 3878, + [4252] = 4252, + [4253] = 2313, + [4254] = 2166, + [4255] = 2314, + [4256] = 4256, + [4257] = 2294, + [4258] = 3176, + [4259] = 2319, + [4260] = 2856, + [4261] = 3992, + [4262] = 4262, + [4263] = 2191, + [4264] = 3994, + [4265] = 3879, + [4266] = 3880, + [4267] = 4267, + [4268] = 4268, + [4269] = 3298, + [4270] = 4270, + [4271] = 4271, + [4272] = 2298, + [4273] = 2300, + [4274] = 2303, + [4275] = 4275, + [4276] = 3183, + [4277] = 2169, + [4278] = 2333, + [4279] = 2327, + [4280] = 2335, + [4281] = 3649, + [4282] = 2276, + [4283] = 2309, + [4284] = 2311, + [4285] = 4285, + [4286] = 4286, + [4287] = 2328, + [4288] = 4288, + [4289] = 2884, + [4290] = 2162, + [4291] = 2163, + [4292] = 4292, + [4293] = 4293, + [4294] = 2315, + [4295] = 3881, + [4296] = 4296, + [4297] = 4297, + [4298] = 2316, + [4299] = 2317, + [4300] = 4300, + [4301] = 2318, + [4302] = 4302, + [4303] = 2212, + [4304] = 2320, + [4305] = 2334, + [4306] = 3994, + [4307] = 4307, + [4308] = 4308, + [4309] = 2273, + [4310] = 4310, + [4311] = 3992, + [4312] = 2217, + [4313] = 2172, + [4314] = 3994, + [4315] = 4315, + [4316] = 2281, + [4317] = 4317, + [4318] = 3649, + [4319] = 2173, + [4320] = 4320, + [4321] = 2330, + [4322] = 3882, + [4323] = 2299, + [4324] = 2302, + [4325] = 3224, + [4326] = 2323, + [4327] = 2304, + [4328] = 2281, + [4329] = 4329, + [4330] = 4330, + [4331] = 4331, + [4332] = 4332, + [4333] = 2306, + [4334] = 4334, + [4335] = 2206, [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, + [4337] = 3884, + [4338] = 2326, + [4339] = 4339, + [4340] = 4340, + [4341] = 2228, + [4342] = 2229, + [4343] = 4343, + [4344] = 4344, + [4345] = 2321, + [4346] = 2339, + [4347] = 4071, + [4348] = 2344, + [4349] = 2225, + [4350] = 2232, + [4351] = 2251, + [4352] = 2258, + [4353] = 2292, + [4354] = 2265, + [4355] = 3262, + [4356] = 3224, + [4357] = 2274, + [4358] = 4315, + [4359] = 2153, + [4360] = 4340, + [4361] = 2266, + [4362] = 2225, + [4363] = 3298, + [4364] = 3176, + [4365] = 4365, + [4366] = 2267, + [4367] = 2233, + [4368] = 2156, + [4369] = 2276, + [4370] = 3176, + [4371] = 2282, + [4372] = 1305, + [4373] = 2288, + [4374] = 3183, + [4375] = 2232, + [4376] = 2230, + [4377] = 1304, + [4378] = 2284, + [4379] = 2217, + [4380] = 2291, + [4381] = 3176, + [4382] = 4382, + [4383] = 4332, + [4384] = 4343, + [4385] = 3298, + [4386] = 3183, + [4387] = 2286, + [4388] = 2232, + [4389] = 4191, + [4390] = 2230, + [4391] = 2261, + [4392] = 3224, + [4393] = 3183, + [4394] = 4394, + [4395] = 2232, + [4396] = 2054, + [4397] = 4397, + [4398] = 2292, [4399] = 4399, - [4400] = 4400, - [4401] = 4401, - [4402] = 4402, - [4403] = 4403, - [4404] = 4404, - [4405] = 2195, - [4406] = 4406, - [4407] = 4407, - [4408] = 1964, - [4409] = 1966, - [4410] = 1967, - [4411] = 4411, - [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, - [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, - [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, - [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, - [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, - [5008] = 4964, - [5009] = 4976, - [5010] = 4964, - [5011] = 4976, - [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, - [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, - [6183] = 6038, - [6184] = 3763, - [6185] = 6038, - [6186] = 3763, - [6187] = 2070, - [6188] = 3657, - [6189] = 3880, - [6190] = 3622, - [6191] = 3891, - [6192] = 3895, - [6193] = 2903, - [6194] = 6194, - [6195] = 1996, - [6196] = 1994, - [6197] = 371, - [6198] = 6198, - [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, - [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, - [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, - [6378] = 6378, - [6379] = 2317, - [6380] = 6380, - [6381] = 2318, - [6382] = 6378, - [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, + [4400] = 2283, + [4401] = 2271, + [4402] = 2271, + [4403] = 2288, + [4404] = 2291, + [4405] = 2266, + [4406] = 2267, + [4407] = 2050, + [4408] = 2049, + [4409] = 2051, + [4410] = 3224, + [4411] = 2283, + [4412] = 2206, + [4413] = 2212, + [4414] = 1305, + [4415] = 1304, + [4416] = 3298, + [4417] = 1305, + [4418] = 1304, + [4419] = 2233, + [4420] = 4336, + [4421] = 2097, + [4422] = 2048, + [4423] = 2046, + [4424] = 4424, + [4425] = 2274, + [4426] = 2232, + [4427] = 2276, + [4428] = 2153, + [4429] = 2052, + [4430] = 2261, + [4431] = 3765, + [4432] = 2282, + [4433] = 2108, + [4434] = 2258, + [4435] = 3767, + [4436] = 2156, + [4437] = 2232, + [4438] = 4302, + [4439] = 2335, + [4440] = 4071, + [4441] = 2225, + [4442] = 2053, + [4443] = 2284, + [4444] = 2286, + [4445] = 2217, + [4446] = 2097, + [4447] = 2265, + [4448] = 1304, + [4449] = 3183, + [4450] = 2268, + [4451] = 2272, + [4452] = 3262, + [4453] = 3183, + [4454] = 2048, + [4455] = 2123, + [4456] = 2298, + [4457] = 2849, + [4458] = 2310, + [4459] = 2320, + [4460] = 2321, + [4461] = 2322, + [4462] = 1305, + [4463] = 1304, + [4464] = 2199, + [4465] = 2272, + [4466] = 2335, + [4467] = 2053, + [4468] = 2132, + [4469] = 2323, + [4470] = 2049, + [4471] = 2440, + [4472] = 2046, + [4473] = 2447, + [4474] = 2478, + [4475] = 2243, + [4476] = 2244, + [4477] = 1305, + [4478] = 2249, + [4479] = 4071, + [4480] = 2294, + [4481] = 2253, + [4482] = 2324, + [4483] = 2233, + [4484] = 2052, + [4485] = 2051, + [4486] = 2268, + [4487] = 2323, + [4488] = 3176, + [4489] = 2884, + [4490] = 2325, + [4491] = 2272, + [4492] = 2328, + [4493] = 2339, + [4494] = 2440, + [4495] = 2345, + [4496] = 2108, + [4497] = 2326, + [4498] = 2206, + [4499] = 2293, + [4500] = 2344, + [4501] = 2272, + [4502] = 2327, + [4503] = 2050, + [4504] = 2313, + [4505] = 2305, + [4506] = 2054, + [4507] = 2329, + [4508] = 2294, + [4509] = 2330, + [4510] = 2272, + [4511] = 2447, + [4512] = 2264, + [4513] = 2299, + [4514] = 3176, + [4515] = 2333, + [4516] = 2334, + [4517] = 2302, + [4518] = 2440, + [4519] = 2447, + [4520] = 2304, + [4521] = 2478, + [4522] = 2300, + [4523] = 2309, + [4524] = 2191, + [4525] = 3262, + [4526] = 2311, + [4527] = 2298, + [4528] = 2315, + [4529] = 2316, + [4530] = 3224, + [4531] = 2295, + [4532] = 3298, + [4533] = 2268, + [4534] = 3361, + [4535] = 3362, + [4536] = 2478, + [4537] = 2297, + [4538] = 2212, + [4539] = 2272, + [4540] = 2317, + [4541] = 2306, + [4542] = 2228, + [4543] = 2314, + [4544] = 2229, + [4545] = 2335, + [4546] = 3649, + [4547] = 2268, + [4548] = 2315, + [4549] = 2319, + [4550] = 2187, + [4551] = 2268, + [4552] = 2268, + [4553] = 2332, + [4554] = 2440, + [4555] = 2136, + [4556] = 2303, + [4557] = 2307, + [4558] = 2447, + [4559] = 3224, + [4560] = 2478, + [4561] = 3298, + [4562] = 2217, + [4563] = 2108, + [4564] = 2856, + [4565] = 2132, + [4566] = 2217, + [4567] = 2318, + [4568] = 2344, + [4569] = 2136, + [4570] = 4570, + [4571] = 2052, + [4572] = 4572, + [4573] = 4573, + [4574] = 4071, + [4575] = 2048, + [4576] = 3463, + [4577] = 3440, + [4578] = 3361, + [4579] = 3362, + [4580] = 2273, + [4581] = 1305, + [4582] = 3176, + [4583] = 4583, + [4584] = 1304, + [4585] = 4585, + [4586] = 2049, + [4587] = 4585, + [4588] = 2156, + [4589] = 4583, + [4590] = 1304, + [4591] = 4591, + [4592] = 2243, + [4593] = 4573, + [4594] = 4591, + [4595] = 4572, + [4596] = 2244, + [4597] = 2156, + [4598] = 2046, + [4599] = 3361, + [4600] = 2249, + [4601] = 2052, + [4602] = 2253, + [4603] = 3183, + [4604] = 2051, + [4605] = 3362, + [4606] = 2153, + [4607] = 4071, + [4608] = 2050, + [4609] = 2054, + [4610] = 2049, + [4611] = 4611, + [4612] = 2247, + [4613] = 4573, + [4614] = 3484, + [4615] = 3488, + [4616] = 3491, + [4617] = 3475, + [4618] = 4071, + [4619] = 3484, + [4620] = 3488, + [4621] = 3491, + [4622] = 3475, + [4623] = 4572, + [4624] = 4585, + [4625] = 4573, + [4626] = 4583, + [4627] = 2054, + [4628] = 4591, + [4629] = 4572, + [4630] = 4583, + [4631] = 2253, + [4632] = 2225, + [4633] = 4633, + [4634] = 2153, + [4635] = 347, + [4636] = 4585, + [4637] = 4583, + [4638] = 4591, + [4639] = 3994, + [4640] = 4573, + [4641] = 4591, + [4642] = 2217, + [4643] = 4583, + [4644] = 4591, + [4645] = 2281, + [4646] = 1305, + [4647] = 3408, + [4648] = 4591, + [4649] = 4583, + [4650] = 4591, + [4651] = 4651, + [4652] = 1304, + [4653] = 342, + [4654] = 4654, + [4655] = 4572, + [4656] = 3419, + [4657] = 2054, + [4658] = 2050, + [4659] = 2049, + [4660] = 2051, + [4661] = 4573, + [4662] = 2123, + [4663] = 2048, + [4664] = 2046, + [4665] = 2052, + [4666] = 3224, + [4667] = 2199, + [4668] = 2051, + [4669] = 3466, + [4670] = 4573, + [4671] = 4572, + [4672] = 2206, + [4673] = 2243, + [4674] = 2212, + [4675] = 4573, + [4676] = 2244, + [4677] = 2048, + [4678] = 2247, + [4679] = 3467, + [4680] = 3298, + [4681] = 2249, + [4682] = 2123, + [4683] = 3992, + [4684] = 4583, + [4685] = 2335, + [4686] = 2251, + [4687] = 4572, + [4688] = 1305, + [4689] = 4572, + [4690] = 4071, + [4691] = 2050, + [4692] = 2046, + [4693] = 2243, + [4694] = 2244, + [4695] = 2249, + [4696] = 2253, + [4697] = 2199, + [4698] = 2321, + [4699] = 2325, + [4700] = 2301, + [4701] = 2295, + [4702] = 2125, + [4703] = 2159, + [4704] = 2329, + [4705] = 2251, + [4706] = 2330, + [4707] = 3408, + [4708] = 2319, + [4709] = 2346, + [4710] = 2341, + [4711] = 3408, + [4712] = 2332, + [4713] = 2297, + [4714] = 2225, + [4715] = 3419, + [4716] = 2309, + [4717] = 3224, + [4718] = 2311, + [4719] = 2304, + [4720] = 3467, + [4721] = 2306, + [4722] = 3463, + [4723] = 2310, + [4724] = 2163, + [4725] = 2008, + [4726] = 3419, + [4727] = 1305, + [4728] = 1304, + [4729] = 2313, + [4730] = 2247, + [4731] = 1305, + [4732] = 2169, + [4733] = 3463, + [4734] = 3484, + [4735] = 1304, + [4736] = 3298, + [4737] = 2011, + [4738] = 2009, + [4739] = 2305, + [4740] = 2302, + [4741] = 2316, + [4742] = 2012, + [4743] = 2299, + [4744] = 2341, + [4745] = 2331, + [4746] = 2346, + [4747] = 3183, + [4748] = 2341, + [4749] = 2307, + [4750] = 2301, + [4751] = 2166, + [4752] = 2233, + [4753] = 2331, + [4754] = 2327, + [4755] = 2010, + [4756] = 2162, + [4757] = 2300, + [4758] = 2324, + [4759] = 3491, + [4760] = 2293, + [4761] = 3467, + [4762] = 2317, + [4763] = 2006, + [4764] = 2281, + [4765] = 2168, + [4766] = 2328, + [4767] = 3262, + [4768] = 3484, + [4769] = 2217, + [4770] = 2225, + [4771] = 2339, + [4772] = 2157, + [4773] = 2334, + [4774] = 2345, + [4775] = 2156, + [4776] = 3488, + [4777] = 2264, + [4778] = 2172, + [4779] = 2173, + [4780] = 3491, + [4781] = 3176, + [4782] = 2167, + [4783] = 2251, + [4784] = 2153, + [4785] = 2303, + [4786] = 2318, + [4787] = 2225, + [4788] = 3475, + [4789] = 2153, + [4790] = 3466, + [4791] = 2326, + [4792] = 2320, + [4793] = 2155, + [4794] = 2314, + [4795] = 2108, + [4796] = 3475, + [4797] = 2247, + [4798] = 2301, + [4799] = 4799, + [4800] = 2251, + [4801] = 2333, + [4802] = 2156, + [4803] = 3440, + [4804] = 3466, + [4805] = 2322, + [4806] = 3488, + [4807] = 3440, + [4808] = 2273, + [4809] = 2170, + [4810] = 3176, + [4811] = 2264, + [4812] = 3437, + [4813] = 3432, + [4814] = 3444, + [4815] = 3449, + [4816] = 3411, + [4817] = 2169, + [4818] = 2053, + [4819] = 2170, + [4820] = 2172, + [4821] = 2173, + [4822] = 2167, + [4823] = 2155, + [4824] = 2157, + [4825] = 2159, + [4826] = 2168, + [4827] = 2166, + [4828] = 2162, + [4829] = 2163, + [4830] = 2199, + [4831] = 2273, + [4832] = 2281, + [4833] = 2125, + [4834] = 2054, + [4835] = 2050, + [4836] = 2049, + [4837] = 2051, + [4838] = 2048, + [4839] = 2046, + [4840] = 2052, + [4841] = 3484, + [4842] = 3488, + [4843] = 3491, + [4844] = 3475, + [4845] = 3484, + [4846] = 3488, + [4847] = 3491, + [4848] = 3475, + [4849] = 2225, + [4850] = 2335, + [4851] = 2053, + [4852] = 1521, + [4853] = 1521, + [4854] = 4854, + [4855] = 3183, + [4856] = 2053, + [4857] = 2225, + [4858] = 2273, + [4859] = 2125, + [4860] = 4065, + [4861] = 2008, + [4862] = 3444, + [4863] = 2011, + [4864] = 2009, + [4865] = 2012, + [4866] = 2212, + [4867] = 2010, + [4868] = 2006, + [4869] = 2264, + [4870] = 2123, + [4871] = 4065, + [4872] = 3449, + [4873] = 1305, + [4874] = 2281, + [4875] = 1304, + [4876] = 2169, + [4877] = 2170, + [4878] = 2172, + [4879] = 2173, + [4880] = 2054, + [4881] = 3484, + [4882] = 2167, + [4883] = 2155, + [4884] = 2157, + [4885] = 2159, + [4886] = 2168, + [4887] = 2166, + [4888] = 3411, + [4889] = 2050, + [4890] = 2049, + [4891] = 2051, + [4892] = 3488, + [4893] = 2162, + [4894] = 2163, + [4895] = 3361, + [4896] = 2233, + [4897] = 2048, + [4898] = 2046, + [4899] = 2052, + [4900] = 3491, + [4901] = 3475, + [4902] = 3362, + [4903] = 2243, + [4904] = 2244, + [4905] = 2249, + [4906] = 2253, + [4907] = 4907, + [4908] = 2225, + [4909] = 3224, + [4910] = 3298, + [4911] = 3484, + [4912] = 3437, + [4913] = 2206, + [4914] = 3488, + [4915] = 4071, + [4916] = 3491, + [4917] = 3475, + [4918] = 2335, + [4919] = 3432, + [4920] = 3262, + [4921] = 4921, + [4922] = 1305, + [4923] = 1304, + [4924] = 3437, + [4925] = 4925, + [4926] = 4926, + [4927] = 2251, + [4928] = 4926, + [4929] = 3515, + [4930] = 3432, + [4931] = 4931, + [4932] = 3444, + [4933] = 3449, + [4934] = 3411, + [4935] = 3437, + [4936] = 4936, + [4937] = 4937, + [4938] = 4938, + [4939] = 4939, + [4940] = 4940, + [4941] = 4941, + [4942] = 4942, + [4943] = 4943, + [4944] = 4944, + [4945] = 4945, + [4946] = 4946, + [4947] = 4947, + [4948] = 4948, + [4949] = 4949, + [4950] = 3497, + [4951] = 3408, + [4952] = 3419, + [4953] = 4925, + [4954] = 4926, + [4955] = 3432, + [4956] = 4956, + [4957] = 4957, + [4958] = 3509, + [4959] = 4949, + [4960] = 3444, + [4961] = 3449, + [4962] = 2225, + [4963] = 3480, + [4964] = 2050, + [4965] = 2049, + [4966] = 3466, + [4967] = 3440, + [4968] = 3411, + [4969] = 2206, + [4970] = 4925, + [4971] = 2051, + [4972] = 4949, + [4973] = 4926, + [4974] = 3463, + [4975] = 3878, + [4976] = 3879, + [4977] = 2048, + [4978] = 3881, + [4979] = 3882, + [4980] = 3884, + [4981] = 3885, + [4982] = 3886, + [4983] = 2212, + [4984] = 4949, + [4985] = 3437, + [4986] = 2225, + [4987] = 2052, + [4988] = 4925, + [4989] = 4926, + [4990] = 2046, + [4991] = 3432, + [4992] = 3361, + [4993] = 4949, + [4994] = 3362, + [4995] = 2206, + [4996] = 4925, + [4997] = 4926, + [4998] = 3444, + [4999] = 3449, + [5000] = 2212, + [5001] = 4949, + [5002] = 3411, + [5003] = 1305, + [5004] = 1304, + [5005] = 4925, + [5006] = 4926, + [5007] = 2125, + [5008] = 1305, + [5009] = 1304, + [5010] = 2247, + [5011] = 2054, + [5012] = 2053, + [5013] = 5013, + [5014] = 5014, + [5015] = 5015, + [5016] = 2191, + [5017] = 3437, + [5018] = 4925, + [5019] = 3432, + [5020] = 3444, + [5021] = 3449, + [5022] = 4949, + [5023] = 3467, + [5024] = 3411, + [5025] = 3880, + [5026] = 2228, + [5027] = 2447, + [5028] = 2009, + [5029] = 2478, + [5030] = 2012, + [5031] = 2010, + [5032] = 3480, + [5033] = 2440, + [5034] = 2273, + [5035] = 2447, + [5036] = 2478, + [5037] = 2006, + [5038] = 5038, + [5039] = 2281, + [5040] = 2169, + [5041] = 2440, + [5042] = 2440, + [5043] = 2447, + [5044] = 2447, + [5045] = 2191, + [5046] = 3480, + [5047] = 2478, + [5048] = 5038, + [5049] = 3488, + [5050] = 3484, + [5051] = 2170, + [5052] = 3879, + [5053] = 3515, + [5054] = 3509, + [5055] = 2172, + [5056] = 3488, + [5057] = 2173, + [5058] = 3497, + [5059] = 2447, + [5060] = 2478, + [5061] = 5038, + [5062] = 3880, + [5063] = 5038, + [5064] = 2478, + [5065] = 2331, + [5066] = 3467, + [5067] = 2440, + [5068] = 5068, + [5069] = 2341, + [5070] = 3497, + [5071] = 3881, + [5072] = 4065, + [5073] = 2216, + [5074] = 2301, + [5075] = 5075, + [5076] = 2447, + [5077] = 4065, + [5078] = 3515, + [5079] = 3882, + [5080] = 2125, + [5081] = 2346, + [5082] = 5038, + [5083] = 3491, + [5084] = 3509, + [5085] = 3628, + [5086] = 5068, + [5087] = 2213, + [5088] = 3884, + [5089] = 3484, + [5090] = 3541, + [5091] = 3408, + [5092] = 3419, + [5093] = 2167, + [5094] = 3885, + [5095] = 1305, + [5096] = 1304, + [5097] = 5075, + [5098] = 3491, + [5099] = 3886, + [5100] = 2155, + [5101] = 3466, + [5102] = 3440, + [5103] = 3463, + [5104] = 2157, + [5105] = 1521, + [5106] = 2159, + [5107] = 2191, + [5108] = 2168, + [5109] = 3878, + [5110] = 3475, + [5111] = 3475, + [5112] = 5038, + [5113] = 1521, + [5114] = 2166, + [5115] = 2008, + [5116] = 5038, + [5117] = 2011, + [5118] = 2440, + [5119] = 2264, + [5120] = 2162, + [5121] = 2163, + [5122] = 2440, + [5123] = 2478, + [5124] = 2266, + [5125] = 4945, + [5126] = 1305, + [5127] = 5127, + [5128] = 1304, + [5129] = 4946, + [5130] = 3444, + [5131] = 2216, + [5132] = 3432, + [5133] = 4957, + [5134] = 4947, + [5135] = 3432, + [5136] = 3628, + [5137] = 3862, + [5138] = 3444, + [5139] = 3449, + [5140] = 3411, + [5141] = 3411, + [5142] = 1152, + [5143] = 5143, + [5144] = 3515, + [5145] = 4921, + [5146] = 2213, + [5147] = 5127, + [5148] = 3541, + [5149] = 4948, + [5150] = 5143, + [5151] = 3628, + [5152] = 4854, + [5153] = 3541, + [5154] = 4330, + [5155] = 4936, + [5156] = 5127, + [5157] = 3509, + [5158] = 4937, + [5159] = 2206, + [5160] = 5127, + [5161] = 3804, + [5162] = 5013, + [5163] = 2229, + [5164] = 3858, + [5165] = 4938, + [5166] = 4939, + [5167] = 4940, + [5168] = 4941, + [5169] = 2267, + [5170] = 4956, + [5171] = 4942, + [5172] = 5172, + [5173] = 4943, + [5174] = 4944, + [5175] = 5127, + [5176] = 5014, + [5177] = 2212, + [5178] = 5015, + [5179] = 2043, + [5180] = 5180, + [5181] = 3449, + [5182] = 5127, + [5183] = 3825, + [5184] = 3875, + [5185] = 1149, + [5186] = 1521, + [5187] = 2283, + [5188] = 2271, + [5189] = 5127, + [5190] = 2288, + [5191] = 2291, + [5192] = 5127, + [5193] = 1521, + [5194] = 3878, + [5195] = 2043, + [5196] = 3480, + [5197] = 1521, + [5198] = 5143, + [5199] = 3882, + [5200] = 3884, + [5201] = 3879, + [5202] = 5127, + [5203] = 3880, + [5204] = 2228, + [5205] = 3885, + [5206] = 1149, + [5207] = 1148, + [5208] = 2274, + [5209] = 3881, + [5210] = 2282, + [5211] = 2284, + [5212] = 2286, + [5213] = 5172, + [5214] = 3886, + [5215] = 1521, + [5216] = 3878, + [5217] = 5217, + [5218] = 3437, + [5219] = 5219, + [5220] = 5217, + [5221] = 3497, + [5222] = 3879, + [5223] = 2292, + [5224] = 5172, + [5225] = 2265, + [5226] = 5217, + [5227] = 2228, + [5228] = 5172, + [5229] = 3880, + [5230] = 5217, + [5231] = 3806, + [5232] = 1148, + [5233] = 1521, + [5234] = 5217, + [5235] = 5217, + [5236] = 3809, + [5237] = 5217, + [5238] = 3881, + [5239] = 2216, + [5240] = 3882, + [5241] = 3884, + [5242] = 3885, + [5243] = 2213, + [5244] = 3886, + [5245] = 1521, + [5246] = 3890, + [5247] = 5219, + [5248] = 3437, + [5249] = 5143, + [5250] = 5219, + [5251] = 3895, + [5252] = 5252, + [5253] = 5253, + [5254] = 2006, + [5255] = 5255, + [5256] = 5256, + [5257] = 5253, + [5258] = 5258, + [5259] = 5259, + [5260] = 2054, + [5261] = 3895, + [5262] = 1148, + [5263] = 3874, + [5264] = 3461, + [5265] = 3895, + [5266] = 2187, + [5267] = 4948, + [5268] = 3413, + [5269] = 3890, + [5270] = 3409, + [5271] = 4799, + [5272] = 3515, + [5273] = 3916, + [5274] = 3414, + [5275] = 1521, + [5276] = 5256, + [5277] = 5277, + [5278] = 3541, + [5279] = 5258, + [5280] = 5258, + [5281] = 1521, + [5282] = 3418, + [5283] = 2274, + [5284] = 3457, + [5285] = 3862, + [5286] = 3981, + [5287] = 3982, + [5288] = 3468, + [5289] = 3853, + [5290] = 3825, + [5291] = 3404, + [5292] = 5292, + [5293] = 5258, + [5294] = 5294, + [5295] = 2108, + [5296] = 2288, + [5297] = 5297, + [5298] = 2344, + [5299] = 2006, + [5300] = 5256, + [5301] = 2291, + [5302] = 2294, + [5303] = 2282, + [5304] = 5258, + [5305] = 2284, + [5306] = 5256, + [5307] = 2286, + [5308] = 2050, + [5309] = 3858, + [5310] = 2049, + [5311] = 2051, + [5312] = 3878, + [5313] = 4938, + [5314] = 4946, + [5315] = 4939, + [5316] = 4936, + [5317] = 2247, + [5318] = 2191, + [5319] = 5258, + [5320] = 5320, + [5321] = 2011, + [5322] = 2009, + [5323] = 5258, + [5324] = 5258, + [5325] = 3415, + [5326] = 1149, + [5327] = 4940, + [5328] = 2292, + [5329] = 2010, + [5330] = 3894, + [5331] = 2265, + [5332] = 2011, + [5333] = 5258, + [5334] = 3958, + [5335] = 3890, + [5336] = 2009, + [5337] = 2229, + [5338] = 5258, + [5339] = 3977, + [5340] = 3980, + [5341] = 3836, + [5342] = 3889, + [5343] = 3809, + [5344] = 3879, + [5345] = 5258, + [5346] = 3862, + [5347] = 5258, + [5348] = 3880, + [5349] = 5258, + [5350] = 5258, + [5351] = 2298, + [5352] = 3825, + [5353] = 3881, + [5354] = 5258, + [5355] = 2276, + [5356] = 5258, + [5357] = 4947, + [5358] = 2315, + [5359] = 5258, + [5360] = 3809, + [5361] = 4941, + [5362] = 5256, + [5363] = 3509, + [5364] = 2048, + [5365] = 3804, + [5366] = 5292, + [5367] = 2283, + [5368] = 3849, + [5369] = 3649, + [5370] = 3649, + [5371] = 5371, + [5372] = 4942, + [5373] = 3882, + [5374] = 5259, + [5375] = 3804, + [5376] = 2266, + [5377] = 3875, + [5378] = 2267, + [5379] = 3929, + [5380] = 3937, + [5381] = 3938, + [5382] = 3953, + [5383] = 5258, + [5384] = 3480, + [5385] = 5385, + [5386] = 2012, + [5387] = 2008, + [5388] = 1521, + [5389] = 2011, + [5390] = 2009, + [5391] = 2012, + [5392] = 2010, + [5393] = 2006, + [5394] = 1521, + [5395] = 3862, + [5396] = 2323, + [5397] = 5371, + [5398] = 2046, + [5399] = 2053, + [5400] = 5258, + [5401] = 2052, + [5402] = 5258, + [5403] = 5258, + [5404] = 2012, + [5405] = 5258, + [5406] = 3497, + [5407] = 1148, + [5408] = 2010, + [5409] = 3445, + [5410] = 5292, + [5411] = 3451, + [5412] = 3454, + [5413] = 5371, + [5414] = 5258, + [5415] = 2225, + [5416] = 2229, + [5417] = 5259, + [5418] = 2266, + [5419] = 5258, + [5420] = 2267, + [5421] = 4943, + [5422] = 4956, + [5423] = 5292, + [5424] = 5371, + [5425] = 3884, + [5426] = 3975, + [5427] = 5259, + [5428] = 3806, + [5429] = 3896, + [5430] = 3885, + [5431] = 3858, + [5432] = 3628, + [5433] = 4957, + [5434] = 5292, + [5435] = 3837, + [5436] = 5371, + [5437] = 4921, + [5438] = 3843, + [5439] = 3845, + [5440] = 5259, + [5441] = 3846, + [5442] = 5292, + [5443] = 5371, + [5444] = 4944, + [5445] = 5259, + [5446] = 3886, + [5447] = 5292, + [5448] = 5371, + [5449] = 5013, + [5450] = 3850, + [5451] = 5259, + [5452] = 5014, + [5453] = 3895, + [5454] = 3891, + [5455] = 5292, + [5456] = 5371, + [5457] = 5259, + [5458] = 4024, + [5459] = 3905, + [5460] = 3907, + [5461] = 5371, + [5462] = 5259, + [5463] = 2283, + [5464] = 2271, + [5465] = 4945, + [5466] = 2008, + [5467] = 2288, + [5468] = 2291, + [5469] = 3875, + [5470] = 3436, + [5471] = 5015, + [5472] = 290, + [5473] = 3875, + [5474] = 2271, + [5475] = 2274, + [5476] = 2008, + [5477] = 5255, + [5478] = 5277, + [5479] = 2282, + [5480] = 2284, + [5481] = 2286, + [5482] = 4937, + [5483] = 3913, + [5484] = 5255, + [5485] = 5277, + [5486] = 3460, + [5487] = 5255, + [5488] = 5277, + [5489] = 1521, + [5490] = 5255, + [5491] = 2292, + [5492] = 5277, + [5493] = 5255, + [5494] = 5277, + [5495] = 5255, + [5496] = 5277, + [5497] = 2265, + [5498] = 5255, + [5499] = 5277, + [5500] = 5255, + [5501] = 5277, + [5502] = 5502, + [5503] = 5297, + [5504] = 1521, + [5505] = 3920, + [5506] = 3806, + [5507] = 5502, + [5508] = 2043, + [5509] = 3858, + [5510] = 5256, + [5511] = 3972, + [5512] = 5297, + [5513] = 5256, + [5514] = 5502, + [5515] = 1149, + [5516] = 286, + [5517] = 5297, + [5518] = 5502, + [5519] = 5297, + [5520] = 5502, + [5521] = 5297, + [5522] = 5502, + [5523] = 5297, + [5524] = 5502, + [5525] = 5297, + [5526] = 5502, + [5527] = 5258, + [5528] = 3417, + [5529] = 3890, + [5530] = 2264, + [5531] = 2053, + [5532] = 5068, + [5533] = 4948, + [5534] = 2225, + [5535] = 4072, + [5536] = 3874, + [5537] = 5014, + [5538] = 3417, + [5539] = 3418, + [5540] = 3468, + [5541] = 5541, + [5542] = 3853, + [5543] = 3415, + [5544] = 4065, + [5545] = 4065, + [5546] = 3445, + [5547] = 3451, + [5548] = 3454, + [5549] = 3415, + [5550] = 5550, + [5551] = 4939, + [5552] = 4946, + [5553] = 4940, + [5554] = 3436, + [5555] = 5075, + [5556] = 3460, + [5557] = 3417, + [5558] = 3418, + [5559] = 3878, + [5560] = 3436, + [5561] = 3879, + [5562] = 3880, + [5563] = 3460, + [5564] = 3881, + [5565] = 3436, + [5566] = 3460, + [5567] = 3882, + [5568] = 3884, + [5569] = 5569, + [5570] = 3885, + [5571] = 3886, + [5572] = 3975, + [5573] = 290, + [5574] = 3837, + [5575] = 3843, + [5576] = 3845, + [5577] = 3846, + [5578] = 4941, + [5579] = 3879, + [5580] = 4942, + [5581] = 3415, + [5582] = 3880, + [5583] = 4065, + [5584] = 3413, + [5585] = 3409, + [5586] = 3916, + [5587] = 3414, + [5588] = 3457, + [5589] = 3404, + [5590] = 3541, + [5591] = 3896, + [5592] = 1148, + [5593] = 3461, + [5594] = 3850, + [5595] = 5595, + [5596] = 3468, + [5597] = 290, + [5598] = 4947, + [5599] = 286, + [5600] = 3414, + [5601] = 4045, + [5602] = 4024, + [5603] = 5015, + [5604] = 3998, + [5605] = 3881, + [5606] = 3891, + [5607] = 3445, + [5608] = 3905, + [5609] = 3929, + [5610] = 2225, + [5611] = 3907, + [5612] = 2008, + [5613] = 3461, + [5614] = 5595, + [5615] = 3457, + [5616] = 3404, + [5617] = 2011, + [5618] = 2009, + [5619] = 4330, + [5620] = 3937, + [5621] = 5595, + [5622] = 3451, + [5623] = 3454, + [5624] = 2012, + [5625] = 3938, + [5626] = 4943, + [5627] = 2010, + [5628] = 2006, + [5629] = 4167, + [5630] = 4945, + [5631] = 3953, + [5632] = 4170, + [5633] = 3409, + [5634] = 4956, + [5635] = 2043, + [5636] = 3913, + [5637] = 2043, + [5638] = 5595, + [5639] = 1149, + [5640] = 3409, + [5641] = 4944, + [5642] = 2345, + [5643] = 3916, + [5644] = 4065, + [5645] = 2008, + [5646] = 2011, + [5647] = 2009, + [5648] = 2012, + [5649] = 2010, + [5650] = 2006, + [5651] = 3920, + [5652] = 5595, + [5653] = 4062, + [5654] = 4063, + [5655] = 3972, + [5656] = 4957, + [5657] = 3849, + [5658] = 5595, + [5659] = 2884, + [5660] = 4048, + [5661] = 2228, + [5662] = 3853, + [5663] = 4921, + [5664] = 3183, + [5665] = 5595, + [5666] = 4017, + [5667] = 4937, + [5668] = 3972, + [5669] = 5595, + [5670] = 4024, + [5671] = 4059, + [5672] = 290, + [5673] = 4938, + [5674] = 3981, + [5675] = 4126, + [5676] = 5595, + [5677] = 3982, + [5678] = 5595, + [5679] = 3981, + [5680] = 3982, + [5681] = 3882, + [5682] = 3884, + [5683] = 5595, + [5684] = 4024, + [5685] = 5595, + [5686] = 5595, + [5687] = 2344, + [5688] = 5595, + [5689] = 5595, + [5690] = 5595, + [5691] = 5595, + [5692] = 5595, + [5693] = 5595, + [5694] = 5595, + [5695] = 5595, + [5696] = 5595, + [5697] = 5595, + [5698] = 5595, + [5699] = 2216, + [5700] = 5595, + [5701] = 5595, + [5702] = 5595, + [5703] = 2322, + [5704] = 2294, + [5705] = 3457, + [5706] = 3404, + [5707] = 5595, + [5708] = 3874, + [5709] = 3413, + [5710] = 3894, + [5711] = 286, + [5712] = 2849, + [5713] = 3894, + [5714] = 5595, + [5715] = 3958, + [5716] = 3885, + [5717] = 1521, + [5718] = 3468, + [5719] = 3958, + [5720] = 2225, + [5721] = 3977, + [5722] = 3980, + [5723] = 3836, + [5724] = 1521, + [5725] = 3889, + [5726] = 3977, + [5727] = 3980, + [5728] = 3836, + [5729] = 3889, + [5730] = 5595, + [5731] = 2298, + [5732] = 3920, + [5733] = 2276, + [5734] = 3896, + [5735] = 5595, + [5736] = 5595, + [5737] = 5595, + [5738] = 5595, + [5739] = 2315, + [5740] = 3417, + [5741] = 3886, + [5742] = 5595, + [5743] = 4936, + [5744] = 5595, + [5745] = 2856, + [5746] = 3849, + [5747] = 2213, + [5748] = 3929, + [5749] = 2344, + [5750] = 3445, + [5751] = 3451, + [5752] = 3418, + [5753] = 2294, + [5754] = 3937, + [5755] = 3461, + [5756] = 3938, + [5757] = 3953, + [5758] = 2323, + [5759] = 2298, + [5760] = 2276, + [5761] = 3878, + [5762] = 2315, + [5763] = 3176, + [5764] = 4126, + [5765] = 5595, + [5766] = 2323, + [5767] = 4399, + [5768] = 3454, + [5769] = 5550, + [5770] = 3628, + [5771] = 3975, + [5772] = 4065, + [5773] = 3837, + [5774] = 3843, + [5775] = 3845, + [5776] = 286, + [5777] = 3846, + [5778] = 3850, + [5779] = 3891, + [5780] = 3905, + [5781] = 3907, + [5782] = 3913, + [5783] = 3413, + [5784] = 3414, + [5785] = 5013, + [5786] = 3512, + [5787] = 2243, + [5788] = 2244, + [5789] = 4941, + [5790] = 4017, + [5791] = 1149, + [5792] = 3850, + [5793] = 3891, + [5794] = 2249, + [5795] = 2253, + [5796] = 1521, + [5797] = 3503, + [5798] = 4310, + [5799] = 4065, + [5800] = 3881, + [5801] = 2008, + [5802] = 2053, + [5803] = 5803, + [5804] = 1521, + [5805] = 3905, + [5806] = 4947, + [5807] = 3825, + [5808] = 3977, + [5809] = 3907, + [5810] = 3980, + [5811] = 2011, + [5812] = 2009, + [5813] = 5813, + [5814] = 2108, + [5815] = 5815, + [5816] = 2328, + [5817] = 2012, + [5818] = 2339, + [5819] = 2010, + [5820] = 3886, + [5821] = 5821, + [5822] = 2006, + [5823] = 4167, + [5824] = 4062, + [5825] = 4063, + [5826] = 4170, + [5827] = 4956, + [5828] = 3836, + [5829] = 4065, + [5830] = 2233, + [5831] = 3889, + [5832] = 2217, + [5833] = 3809, + [5834] = 4936, + [5835] = 2008, + [5836] = 4108, + [5837] = 2299, + [5838] = 2302, + [5839] = 2304, + [5840] = 2306, + [5841] = 4292, + [5842] = 2314, + [5843] = 2266, + [5844] = 5813, + [5845] = 5845, + [5846] = 2054, + [5847] = 2319, + [5848] = 5815, + [5849] = 2012, + [5850] = 5014, + [5851] = 1521, + [5852] = 5821, + [5853] = 2006, + [5854] = 2050, + [5855] = 2049, + [5856] = 2051, + [5857] = 3806, + [5858] = 2267, + [5859] = 2048, + [5860] = 5068, + [5861] = 2046, + [5862] = 2052, + [5863] = 3518, + [5864] = 2332, + [5865] = 4062, + [5866] = 4063, + [5867] = 2011, + [5868] = 2009, + [5869] = 5813, + [5870] = 5815, + [5871] = 2345, + [5872] = 4957, + [5873] = 2010, + [5874] = 5821, + [5875] = 4048, + [5876] = 2229, + [5877] = 3998, + [5878] = 4058, + [5879] = 4320, + [5880] = 4921, + [5881] = 2307, + [5882] = 2293, + [5883] = 1521, + [5884] = 2295, + [5885] = 2297, + [5886] = 2305, + [5887] = 1521, + [5888] = 2310, + [5889] = 2011, + [5890] = 2009, + [5891] = 5813, + [5892] = 5892, + [5893] = 2313, + [5894] = 5815, + [5895] = 2012, + [5896] = 2010, + [5897] = 5821, + [5898] = 2006, + [5899] = 3176, + [5900] = 5900, + [5901] = 4946, + [5902] = 2292, + [5903] = 5815, + [5904] = 4246, + [5905] = 4302, + [5906] = 3806, + [5907] = 3878, + [5908] = 3958, + [5909] = 4315, + [5910] = 4332, + [5911] = 4937, + [5912] = 4336, + [5913] = 3998, + [5914] = 5815, + [5915] = 3879, + [5916] = 4936, + [5917] = 5815, + [5918] = 4340, + [5919] = 4943, + [5920] = 2225, + [5921] = 4031, + [5922] = 4065, + [5923] = 4343, + [5924] = 5924, + [5925] = 4166, + [5926] = 2283, + [5927] = 2300, + [5928] = 2303, + [5929] = 2309, + [5930] = 2311, + [5931] = 5924, + [5932] = 4957, + [5933] = 3880, + [5934] = 3506, + [5935] = 4126, + [5936] = 2316, + [5937] = 4048, + [5938] = 2317, + [5939] = 2318, + [5940] = 4947, + [5941] = 2320, + [5942] = 3298, + [5943] = 5813, + [5944] = 2271, + [5945] = 5815, + [5946] = 2321, + [5947] = 3849, + [5948] = 5075, + [5949] = 2288, + [5950] = 2291, + [5951] = 5015, + [5952] = 4937, + [5953] = 5803, + [5954] = 1521, + [5955] = 4045, + [5956] = 5821, + [5957] = 5013, + [5958] = 4059, + [5959] = 4938, + [5960] = 4939, + [5961] = 3929, + [5962] = 3937, + [5963] = 4940, + [5964] = 4941, + [5965] = 2265, + [5966] = 4942, + [5967] = 4943, + [5968] = 4944, + [5969] = 4956, + [5970] = 4957, + [5971] = 4921, + [5972] = 3500, + [5973] = 4330, + [5974] = 5014, + [5975] = 4936, + [5976] = 4937, + [5977] = 5013, + [5978] = 4938, + [5979] = 4939, + [5980] = 4940, + [5981] = 4941, + [5982] = 4942, + [5983] = 4943, + [5984] = 4944, + [5985] = 5014, + [5986] = 5015, + [5987] = 5015, + [5988] = 4945, + [5989] = 4946, + [5990] = 3938, + [5991] = 4947, + [5992] = 4948, + [5993] = 3183, + [5994] = 3882, + [5995] = 3953, + [5996] = 3884, + [5997] = 2053, + [5998] = 3882, + [5999] = 3879, + [6000] = 3884, + [6001] = 4065, + [6002] = 2225, + [6003] = 4191, + [6004] = 2324, + [6005] = 2325, + [6006] = 5821, + [6007] = 4072, + [6008] = 6008, + [6009] = 2326, + [6010] = 2345, + [6011] = 2327, + [6012] = 2329, + [6013] = 3880, + [6014] = 5803, + [6015] = 2330, + [6016] = 4854, + [6017] = 4170, + [6018] = 4921, + [6019] = 3502, + [6020] = 3885, + [6021] = 3516, + [6022] = 3501, + [6023] = 3972, + [6024] = 3489, + [6025] = 5803, + [6026] = 3478, + [6027] = 3804, + [6028] = 5815, + [6029] = 4052, + [6030] = 3224, + [6031] = 5803, + [6032] = 2008, + [6033] = 2043, + [6034] = 5803, + [6035] = 3878, + [6036] = 2333, + [6037] = 4065, + [6038] = 5803, + [6039] = 2334, + [6040] = 4292, + [6041] = 5803, + [6042] = 2322, + [6043] = 4948, + [6044] = 2274, + [6045] = 5821, + [6046] = 2225, + [6047] = 3885, + [6048] = 3487, + [6049] = 1148, + [6050] = 5813, + [6051] = 5900, + [6052] = 4045, + [6053] = 5924, + [6054] = 4940, + [6055] = 3975, + [6056] = 5815, + [6057] = 2282, + [6058] = 2284, + [6059] = 4944, + [6060] = 3981, + [6061] = 3982, + [6062] = 4942, + [6063] = 4246, + [6064] = 2322, + [6065] = 4167, + [6066] = 4956, + [6067] = 4062, + [6068] = 4063, + [6069] = 4957, + [6070] = 4048, + [6071] = 4921, + [6072] = 4936, + [6073] = 4937, + [6074] = 5013, + [6075] = 4059, + [6076] = 4938, + [6077] = 4939, + [6078] = 4940, + [6079] = 4941, + [6080] = 4942, + [6081] = 4943, + [6082] = 4944, + [6083] = 5014, + [6084] = 5015, + [6085] = 4072, + [6086] = 4945, + [6087] = 4946, + [6088] = 4947, + [6089] = 4948, + [6090] = 4072, + [6091] = 3825, + [6092] = 2286, + [6093] = 5813, + [6094] = 3837, + [6095] = 3843, + [6096] = 3845, + [6097] = 5815, + [6098] = 4170, + [6099] = 5013, + [6100] = 4059, + [6101] = 5821, + [6102] = 4946, + [6103] = 3846, + [6104] = 5813, + [6105] = 4310, + [6106] = 4167, + [6107] = 3809, + [6108] = 3886, + [6109] = 3894, + [6110] = 4945, + [6111] = 4938, + [6112] = 4945, + [6113] = 3881, + [6114] = 3804, + [6115] = 4017, + [6116] = 4956, + [6117] = 4939, + [6118] = 4948, + [6119] = 4296, + [6120] = 4320, + [6121] = 2053, + [6122] = 4052, + [6123] = 3982, + [6124] = 1521, + [6125] = 4308, + [6126] = 4108, + [6127] = 4189, + [6128] = 3907, + [6129] = 4262, + [6130] = 2233, + [6131] = 4285, + [6132] = 5068, + [6133] = 4095, + [6134] = 2849, + [6135] = 3913, + [6136] = 290, + [6137] = 4052, + [6138] = 3853, + [6139] = 4058, + [6140] = 3891, + [6141] = 4293, + [6142] = 4339, + [6143] = 4250, + [6144] = 4320, + [6145] = 3502, + [6146] = 4065, + [6147] = 4270, + [6148] = 3503, + [6149] = 3929, + [6150] = 2328, + [6151] = 2123, + [6152] = 2339, + [6153] = 4064, + [6154] = 2012, + [6155] = 2006, + [6156] = 3457, + [6157] = 4066, + [6158] = 4215, + [6159] = 2012, + [6160] = 2328, + [6161] = 2006, + [6162] = 4292, + [6163] = 2339, + [6164] = 4166, + [6165] = 3937, + [6166] = 4065, + [6167] = 4193, + [6168] = 5075, + [6169] = 3487, + [6170] = 4271, + [6171] = 3938, + [6172] = 2008, + [6173] = 2300, + [6174] = 2303, + [6175] = 4171, + [6176] = 2011, + [6177] = 4179, + [6178] = 4065, + [6179] = 3953, + [6180] = 3977, + [6181] = 2009, + [6182] = 2299, + [6183] = 2302, + [6184] = 2344, + [6185] = 4163, + [6186] = 4221, + [6187] = 4194, + [6188] = 6188, + [6189] = 2304, + [6190] = 4222, + [6191] = 2306, + [6192] = 2309, + [6193] = 2314, + [6194] = 3874, + [6195] = 4178, + [6196] = 2319, + [6197] = 3516, + [6198] = 3501, + [6199] = 5068, + [6200] = 3980, + [6201] = 6201, + [6202] = 3489, + [6203] = 4017, + [6204] = 2311, + [6205] = 2332, + [6206] = 3836, + [6207] = 4246, + [6208] = 2307, + [6209] = 3889, + [6210] = 2316, + [6211] = 2317, + [6212] = 4065, + [6213] = 3500, + [6214] = 2123, + [6215] = 3502, + [6216] = 4329, + [6217] = 3503, + [6218] = 2318, + [6219] = 4218, + [6220] = 2320, + [6221] = 2293, + [6222] = 3478, + [6223] = 3460, + [6224] = 3850, + [6225] = 3894, + [6226] = 2298, + [6227] = 4081, + [6228] = 2225, + [6229] = 3975, + [6230] = 2321, + [6231] = 4187, + [6232] = 3506, + [6233] = 4267, + [6234] = 4180, + [6235] = 2323, + [6236] = 3413, + [6237] = 4245, + [6238] = 4065, + [6239] = 4065, + [6240] = 4331, + [6241] = 3506, + [6242] = 4108, + [6243] = 4241, + [6244] = 2307, + [6245] = 2293, + [6246] = 2331, + [6247] = 2346, + [6248] = 3404, + [6249] = 4191, + [6250] = 2295, + [6251] = 2297, + [6252] = 2305, + [6253] = 4126, + [6254] = 4330, + [6255] = 3920, + [6256] = 2010, + [6257] = 2310, + [6258] = 2313, + [6259] = 3417, + [6260] = 2054, + [6261] = 3409, + [6262] = 2856, + [6263] = 2276, + [6264] = 6264, + [6265] = 2324, + [6266] = 2315, + [6267] = 4275, + [6268] = 2300, + [6269] = 2303, + [6270] = 3972, + [6271] = 2233, + [6272] = 2309, + [6273] = 2856, + [6274] = 2311, + [6275] = 3512, + [6276] = 3418, + [6277] = 3487, + [6278] = 2316, + [6279] = 3920, + [6280] = 2317, + [6281] = 2318, + [6282] = 2884, + [6283] = 2320, + [6284] = 2050, + [6285] = 2049, + [6286] = 2051, + [6287] = 2321, + [6288] = 3896, + [6289] = 4100, + [6290] = 2325, + [6291] = 3896, + [6292] = 4256, + [6293] = 4297, + [6294] = 2295, + [6295] = 5075, + [6296] = 286, + [6297] = 4031, + [6298] = 3913, + [6299] = 4225, + [6300] = 4201, + [6301] = 4226, + [6302] = 4058, + [6303] = 4202, + [6304] = 2297, + [6305] = 2305, + [6306] = 3649, + [6307] = 4334, + [6308] = 2310, + [6309] = 4186, + [6310] = 4031, + [6311] = 4307, + [6312] = 4268, + [6313] = 4126, + [6314] = 2313, + [6315] = 4320, + [6316] = 3958, + [6317] = 4192, + [6318] = 3518, + [6319] = 2299, + [6320] = 3468, + [6321] = 3461, + [6322] = 2324, + [6323] = 3436, + [6324] = 2325, + [6325] = 2326, + [6326] = 2327, + [6327] = 2329, + [6328] = 3837, + [6329] = 2326, + [6330] = 2330, + [6331] = 4065, + [6332] = 2327, + [6333] = 4310, + [6334] = 3916, + [6335] = 3905, + [6336] = 2217, + [6337] = 4300, + [6338] = 2329, + [6339] = 2302, + [6340] = 2304, + [6341] = 2306, + [6342] = 2330, + [6343] = 2048, + [6344] = 3415, + [6345] = 4302, + [6346] = 2046, + [6347] = 4315, + [6348] = 4332, + [6349] = 4336, + [6350] = 2052, + [6351] = 4340, + [6352] = 4343, + [6353] = 4344, + [6354] = 4330, + [6355] = 2333, + [6356] = 2334, + [6357] = 2314, + [6358] = 3981, + [6359] = 4317, + [6360] = 3512, + [6361] = 3445, + [6362] = 3451, + [6363] = 3454, + [6364] = 4288, + [6365] = 2247, + [6366] = 4166, + [6367] = 3516, + [6368] = 3501, + [6369] = 3489, + [6370] = 3478, + [6371] = 2849, + [6372] = 4252, + [6373] = 3518, + [6374] = 2319, + [6375] = 4228, + [6376] = 3843, + [6377] = 4188, + [6378] = 3845, + [6379] = 2333, + [6380] = 2334, + [6381] = 3846, + [6382] = 4286, + [6383] = 4199, + [6384] = 2199, + [6385] = 3874, + [6386] = 2884, + [6387] = 3500, + [6388] = 4065, + [6389] = 3414, + [6390] = 2332, + [6391] = 4200, + [6392] = 3849, + [6393] = 4214, + [6394] = 2294, + [6395] = 4300, + [6396] = 4226, + [6397] = 4063, + [6398] = 4192, + [6399] = 4191, + [6400] = 4100, + [6401] = 4059, + [6402] = 4938, + [6403] = 4939, + [6404] = 4940, + [6405] = 4171, + [6406] = 4941, [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, - [6564] = 6564, - [6565] = 6564, - [6566] = 6566, - [6567] = 2247, - [6568] = 3678, - [6569] = 3678, - [6570] = 1967, - [6571] = 3655, - [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, - [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, - [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, - [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, - [6927] = 6927, - [6928] = 6928, + [6408] = 4310, + [6409] = 4317, + [6410] = 4246, + [6411] = 4948, + [6412] = 4218, + [6413] = 4271, + [6414] = 4064, + [6415] = 4186, + [6416] = 4066, + [6417] = 4081, + [6418] = 4228, + [6419] = 4059, + [6420] = 4187, + [6421] = 4192, + [6422] = 4262, + [6423] = 4163, + [6424] = 5015, + [6425] = 4228, + [6426] = 2008, + [6427] = 4288, + [6428] = 4275, + [6429] = 4292, + [6430] = 6430, + [6431] = 4947, + [6432] = 4221, + [6433] = 4225, + [6434] = 4179, + [6435] = 4180, + [6436] = 4017, + [6437] = 3437, + [6438] = 4285, + [6439] = 4048, + [6440] = 4286, + [6441] = 4292, + [6442] = 2122, + [6443] = 4252, + [6444] = 4317, + [6445] = 4241, + [6446] = 3878, + [6447] = 4937, + [6448] = 4194, + [6449] = 2053, + [6450] = 4302, + [6451] = 4315, + [6452] = 4221, + [6453] = 4300, + [6454] = 4225, + [6455] = 4052, + [6456] = 4252, + [6457] = 4268, + [6458] = 4332, + [6459] = 2122, + [6460] = 4296, + [6461] = 4336, + [6462] = 6462, + [6463] = 4946, + [6464] = 3432, + [6465] = 4945, + [6466] = 4064, + [6467] = 4066, + [6468] = 4081, + [6469] = 4095, + [6470] = 4340, + [6471] = 3881, + [6472] = 4262, + [6473] = 4267, + [6474] = 4163, + [6475] = 4343, + [6476] = 2273, + [6477] = 2012, + [6478] = 4166, + [6479] = 4297, + [6480] = 4285, + [6481] = 4344, + [6482] = 4293, + [6483] = 2011, + [6484] = 4286, + [6485] = 4189, + [6486] = 4193, + [6487] = 3886, + [6488] = 4108, + [6489] = 6489, + [6490] = 4334, + [6491] = 3879, + [6492] = 3437, + [6493] = 4268, + [6494] = 4942, + [6495] = 4245, + [6496] = 3432, + [6497] = 3444, + [6498] = 3176, + [6499] = 4201, + [6500] = 4943, + [6501] = 4202, + [6502] = 3449, + [6503] = 4193, + [6504] = 3411, + [6505] = 2125, + [6506] = 2233, + [6507] = 4245, + [6508] = 4065, + [6509] = 4329, + [6510] = 4331, + [6511] = 4187, + [6512] = 4250, + [6513] = 4302, + [6514] = 6407, + [6515] = 4214, + [6516] = 4215, + [6517] = 4307, + [6518] = 4186, + [6519] = 4270, + [6520] = 4344, + [6521] = 4222, + [6522] = 4178, + [6523] = 4226, + [6524] = 4308, + [6525] = 4339, + [6526] = 6526, + [6527] = 3882, + [6528] = 4188, + [6529] = 4199, + [6530] = 4315, + [6531] = 4332, + [6532] = 4200, + [6533] = 4218, + [6534] = 4330, + [6535] = 4194, + [6536] = 4167, + [6537] = 4189, + [6538] = 3880, + [6539] = 4334, + [6540] = 4275, + [6541] = 4343, + [6542] = 4193, + [6543] = 4944, + [6544] = 3449, + [6545] = 2345, + [6546] = 4270, + [6547] = 3411, + [6548] = 3884, + [6549] = 4250, + [6550] = 4072, + [6551] = 4179, + [6552] = 2010, + [6553] = 4167, + [6554] = 6407, + [6555] = 4956, + [6556] = 4288, + [6557] = 4180, + [6558] = 4330, + [6559] = 4100, + [6560] = 4296, + [6561] = 4336, + [6562] = 4330, + [6563] = 4062, + [6564] = 4063, + [6565] = 3183, + [6566] = 4200, + [6567] = 4310, + [6568] = 4275, + [6569] = 4329, + [6570] = 4271, + [6571] = 2199, + [6572] = 4241, + [6573] = 2225, + [6574] = 3885, + [6575] = 4331, + [6576] = 4191, + [6577] = 4293, + [6578] = 4957, + [6579] = 4334, + [6580] = 4048, + [6581] = 4071, + [6582] = 4267, + [6583] = 4201, + [6584] = 4921, + [6585] = 2053, + [6586] = 4171, + [6587] = 4339, + [6588] = 4202, + [6589] = 4340, + [6590] = 4241, + [6591] = 4256, + [6592] = 4330, + [6593] = 5013, + [6594] = 4246, + [6595] = 3224, + [6596] = 2009, + [6597] = 4330, + [6598] = 3298, + [6599] = 4330, + [6600] = 2251, + [6601] = 4297, + [6602] = 4214, + [6603] = 4072, + [6604] = 2006, + [6605] = 4936, + [6606] = 2281, + [6607] = 4062, + [6608] = 2322, + [6609] = 4188, + [6610] = 4199, + [6611] = 4215, + [6612] = 4222, + [6613] = 4095, + [6614] = 4307, + [6615] = 4308, + [6616] = 4256, + [6617] = 4178, + [6618] = 5014, + [6619] = 3444, + [6620] = 2341, + [6621] = 4339, + [6622] = 2233, + [6623] = 2167, + [6624] = 2155, + [6625] = 2172, + [6626] = 2173, + [6627] = 2157, + [6628] = 2159, + [6629] = 2157, + [6630] = 3488, + [6631] = 2159, + [6632] = 3491, + [6633] = 2168, + [6634] = 6634, + [6635] = 4108, + [6636] = 3475, + [6637] = 2333, + [6638] = 2169, + [6639] = 2329, + [6640] = 2324, + [6641] = 2170, + [6642] = 2167, + [6643] = 2332, + [6644] = 2155, + [6645] = 4307, + [6646] = 2168, + [6647] = 4178, + [6648] = 2166, + [6649] = 2162, + [6650] = 2163, + [6651] = 2334, + [6652] = 2330, + [6653] = 3484, + [6654] = 3488, + [6655] = 3491, + [6656] = 3475, + [6657] = 6657, + [6658] = 2325, + [6659] = 4187, + [6660] = 2172, + [6661] = 3484, + [6662] = 3488, + [6663] = 3491, + [6664] = 4296, + [6665] = 2132, + [6666] = 3176, + [6667] = 2166, + [6668] = 3491, + [6669] = 2012, + [6670] = 4186, + [6671] = 3475, + [6672] = 2328, + [6673] = 2339, + [6674] = 4071, + [6675] = 2307, + [6676] = 2293, + [6677] = 4225, + [6678] = 2043, + [6679] = 4293, + [6680] = 2295, + [6681] = 2297, + [6682] = 4329, + [6683] = 4270, + [6684] = 2305, + [6685] = 2310, + [6686] = 2300, + [6687] = 2301, + [6688] = 2313, + [6689] = 3475, + [6690] = 2303, + [6691] = 4228, + [6692] = 2191, + [6693] = 2319, + [6694] = 4317, + [6695] = 4331, + [6696] = 2225, + [6697] = 4245, + [6698] = 4252, + [6699] = 5068, + [6700] = 4166, + [6701] = 6701, + [6702] = 3649, + [6703] = 6657, + [6704] = 4192, + [6705] = 3183, + [6706] = 4226, + [6707] = 3488, + [6708] = 4267, + [6709] = 2309, + [6710] = 2311, + [6711] = 2316, + [6712] = 2317, + [6713] = 6657, + [6714] = 5075, + [6715] = 2251, + [6716] = 2012, + [6717] = 4194, + [6718] = 3224, + [6719] = 2006, + [6720] = 3298, + [6721] = 2169, + [6722] = 4268, + [6723] = 2318, + [6724] = 2162, + [6725] = 4179, + [6726] = 2163, + [6727] = 2327, + [6728] = 6728, + [6729] = 4214, + [6730] = 3484, + [6731] = 4215, + [6732] = 4297, + [6733] = 4221, + [6734] = 4200, + [6735] = 2170, + [6736] = 4180, + [6737] = 4250, + [6738] = 4201, + [6739] = 4300, + [6740] = 2012, + [6741] = 4052, + [6742] = 2320, + [6743] = 2326, + [6744] = 2006, + [6745] = 4202, + [6746] = 2173, + [6747] = 2299, + [6748] = 2006, + [6749] = 4854, + [6750] = 4222, + [6751] = 2302, + [6752] = 2321, + [6753] = 4218, + [6754] = 4189, + [6755] = 2304, + [6756] = 3649, + [6757] = 2306, + [6758] = 3484, + [6759] = 2314, + [6760] = 4308, + [6761] = 4179, + [6762] = 4200, + [6763] = 2012, + [6764] = 4214, + [6765] = 3224, + [6766] = 2006, + [6767] = 3444, + [6768] = 4245, + [6769] = 3449, + [6770] = 4267, + [6771] = 3298, + [6772] = 4221, + [6773] = 3183, + [6774] = 2008, + [6775] = 4186, + [6776] = 3176, + [6777] = 4222, + [6778] = 4178, + [6779] = 3411, + [6780] = 4331, + [6781] = 3298, + [6782] = 2053, + [6783] = 4225, + [6784] = 4252, + [6785] = 4189, + [6786] = 4296, + [6787] = 3183, + [6788] = 4329, + [6789] = 3176, + [6790] = 4226, + [6791] = 4275, + [6792] = 4307, + [6793] = 4215, + [6794] = 2011, + [6795] = 2009, + [6796] = 4187, + [6797] = 2206, + [6798] = 4192, + [6799] = 4228, + [6800] = 4334, + [6801] = 3224, + [6802] = 4293, + [6803] = 4201, + [6804] = 4194, + [6805] = 4297, + [6806] = 2212, + [6807] = 4180, + [6808] = 4202, + [6809] = 4193, + [6810] = 4308, + [6811] = 4300, + [6812] = 4317, + [6813] = 4250, + [6814] = 2010, + [6815] = 4241, + [6816] = 3437, + [6817] = 4268, + [6818] = 4071, + [6819] = 3432, + [6820] = 3437, + [6821] = 3444, + [6822] = 3449, + [6823] = 3411, + [6824] = 4270, + [6825] = 3432, + [6826] = 4339, + [6827] = 4218, + [6828] = 3176, + [6829] = 2108, + [6830] = 2217, + [6831] = 2212, + [6832] = 2194, + [6833] = 3262, + [6834] = 3298, + [6835] = 2191, + [6836] = 3183, + [6837] = 2098, + [6838] = 2011, + [6839] = 6839, + [6840] = 2006, + [6841] = 2009, + [6842] = 3176, + [6843] = 2010, + [6844] = 3262, + [6845] = 2228, + [6846] = 6634, + [6847] = 2108, + [6848] = 2012, + [6849] = 2194, + [6850] = 6634, + [6851] = 2008, + [6852] = 3224, + [6853] = 3183, + [6854] = 2180, + [6855] = 3224, + [6856] = 6634, + [6857] = 2180, + [6858] = 2206, + [6859] = 2217, + [6860] = 3298, + [6861] = 2054, + [6862] = 2253, + [6863] = 3880, + [6864] = 3916, + [6865] = 2213, + [6866] = 3361, + [6867] = 4071, + [6868] = 2243, + [6869] = 3881, + [6870] = 3885, + [6871] = 3879, + [6872] = 2213, + [6873] = 2123, + [6874] = 3488, + [6875] = 4071, + [6876] = 3880, + [6877] = 3882, + [6878] = 2244, + [6879] = 2050, + [6880] = 4071, + [6881] = 3886, + [6882] = 3884, + [6883] = 3362, + [6884] = 3885, + [6885] = 2229, + [6886] = 3853, + [6887] = 2249, + [6888] = 2199, + [6889] = 2046, + [6890] = 3878, + [6891] = 2049, + [6892] = 3886, + [6893] = 2097, + [6894] = 2069, + [6895] = 3484, + [6896] = 2216, + [6897] = 2048, + [6898] = 3884, + [6899] = 3488, + [6900] = 3882, + [6901] = 2216, + [6902] = 3878, + [6903] = 3491, + [6904] = 2052, + [6905] = 3475, + [6906] = 2123, + [6907] = 2079, + [6908] = 3475, + [6909] = 2051, + [6910] = 4071, + [6911] = 3484, + [6912] = 3881, + [6913] = 2108, + [6914] = 3362, + [6915] = 2043, + [6916] = 3879, + [6917] = 3361, + [6918] = 3491, + [6919] = 2199, + [6920] = 2251, + [6921] = 414, + [6922] = 2251, + [6923] = 6923, + [6924] = 3408, + [6925] = 384, + [6926] = 2344, + [6927] = 386, + [6928] = 2298, [6929] = 6929, [6930] = 6930, - [6931] = 6931, - [6932] = 6932, - [6933] = 6930, - [6934] = 6934, + [6931] = 2288, + [6932] = 2274, + [6933] = 6923, + [6934] = 354, [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, - [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, - [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, - [7013] = 6937, - [7014] = 7014, - [7015] = 6939, - [7016] = 6944, - [7017] = 7017, - [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, - [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, - [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, + [6936] = 6923, + [6937] = 6935, + [6938] = 6839, + [6939] = 2291, + [6940] = 3467, + [6941] = 2276, + [6942] = 6839, + [6943] = 3419, + [6944] = 2283, + [6945] = 6930, + [6946] = 6930, + [6947] = 6923, + [6948] = 357, + [6949] = 3408, + [6950] = 353, + [6951] = 2097, + [6952] = 342, + [6953] = 347, + [6954] = 6929, + [6955] = 3463, + [6956] = 387, + [6957] = 2282, + [6958] = 2315, + [6959] = 6929, + [6960] = 2247, + [6961] = 2284, + [6962] = 3466, + [6963] = 3440, + [6964] = 2286, + [6965] = 6923, + [6966] = 381, + [6967] = 533, + [6968] = 3466, + [6969] = 6929, + [6970] = 3440, + [6971] = 2266, + [6972] = 2267, + [6973] = 2283, + [6974] = 2271, + [6975] = 383, + [6976] = 2288, + [6977] = 2291, + [6978] = 369, + [6979] = 2225, + [6980] = 6839, + [6981] = 2274, + [6982] = 372, + [6983] = 2282, + [6984] = 2284, + [6985] = 2286, + [6986] = 335, + [6987] = 2266, + [6988] = 2292, + [6989] = 2265, + [6990] = 6930, + [6991] = 2267, + [6992] = 6935, + [6993] = 2095, + [6994] = 371, + [6995] = 2323, + [6996] = 3467, + [6997] = 6930, + [6998] = 3463, + [6999] = 2271, + [7000] = 2292, + [7001] = 362, + [7002] = 6923, + [7003] = 3419, + [7004] = 2265, + [7005] = 2225, + [7006] = 6923, + [7007] = 6929, + [7008] = 6930, + [7009] = 6935, + [7010] = 6935, + [7011] = 2122, + [7012] = 6929, + [7013] = 382, + [7014] = 6930, + [7015] = 6935, + [7016] = 2199, + [7017] = 2294, + [7018] = 6935, + [7019] = 6929, + [7020] = 3475, + [7021] = 3491, + [7022] = 3491, + [7023] = 3488, + [7024] = 2170, + [7025] = 3916, + [7026] = 6634, + [7027] = 3488, + [7028] = 2163, + [7029] = 2159, + [7030] = 2168, + [7031] = 2157, + [7032] = 2166, + [7033] = 3475, + [7034] = 2169, + [7035] = 2123, + [7036] = 2281, + [7037] = 3484, + [7038] = 2273, + [7039] = 2170, + [7040] = 2168, + [7041] = 2264, + [7042] = 3484, + [7043] = 2159, + [7044] = 3488, + [7045] = 3475, + [7046] = 2172, + [7047] = 2322, + [7048] = 3853, + [7049] = 3484, + [7050] = 3491, + [7051] = 7051, + [7052] = 2173, + [7053] = 2167, + [7054] = 2097, + [7055] = 2132, + [7056] = 2108, + [7057] = 2155, + [7058] = 2157, + [7059] = 2172, + [7060] = 2173, + [7061] = 2167, + [7062] = 2264, + [7063] = 2169, + [7064] = 2125, + [7065] = 3484, + [7066] = 2155, + [7067] = 2345, + [7068] = 2162, + [7069] = 3488, + [7070] = 3491, + [7071] = 2162, + [7072] = 2163, + [7073] = 2166, + [7074] = 3475, + [7075] = 4947, + [7076] = 3444, + [7077] = 2313, + [7078] = 7078, + [7079] = 3437, + [7080] = 2153, + [7081] = 4945, + [7082] = 7082, + [7083] = 5013, + [7084] = 2300, + [7085] = 4942, + [7086] = 3411, + [7087] = 2321, + [7088] = 3885, + [7089] = 3444, + [7090] = 3878, + [7091] = 3882, + [7092] = 3884, + [7093] = 2206, + [7094] = 2303, + [7095] = 2309, + [7096] = 3432, + [7097] = 3885, + [7098] = 2206, + [7099] = 4946, + [7100] = 3886, + [7101] = 3879, + [7102] = 3880, + [7103] = 3878, + [7104] = 3881, + [7105] = 2311, + [7106] = 3432, + [7107] = 2310, + [7108] = 3886, + [7109] = 2299, + [7110] = 2302, + [7111] = 4938, + [7112] = 4944, + [7113] = 7113, + [7114] = 3437, + [7115] = 4948, + [7116] = 3879, + [7117] = 3444, + [7118] = 2304, + [7119] = 3884, + [7120] = 3880, + [7121] = 3411, + [7122] = 2136, + [7123] = 2306, + [7124] = 2314, + [7125] = 2316, + [7126] = 2319, + [7127] = 2043, + [7128] = 3437, + [7129] = 2317, + [7130] = 4941, + [7131] = 7131, + [7132] = 2324, + [7133] = 3449, + [7134] = 2325, + [7135] = 3449, + [7136] = 4937, + [7137] = 7082, + [7138] = 2326, + [7139] = 7139, + [7140] = 2318, + [7141] = 2212, + [7142] = 3882, + [7143] = 3449, + [7144] = 3449, + [7145] = 2332, + [7146] = 3882, + [7147] = 3881, + [7148] = 2307, + [7149] = 2327, + [7150] = 4956, + [7151] = 3884, + [7152] = 3885, + [7153] = 3886, + [7154] = 2305, + [7155] = 2156, + [7156] = 3878, + [7157] = 4957, + [7158] = 7158, + [7159] = 3437, + [7160] = 4921, + [7161] = 2097, + [7162] = 2188, + [7163] = 2329, + [7164] = 2330, + [7165] = 5014, + [7166] = 4939, + [7167] = 7158, + [7168] = 4936, + [7169] = 4943, + [7170] = 2212, + [7171] = 7113, + [7172] = 3879, + [7173] = 3880, + [7174] = 7174, + [7175] = 3432, + [7176] = 3881, + [7177] = 3411, + [7178] = 7139, + [7179] = 2132, + [7180] = 2293, + [7181] = 2175, + [7182] = 3411, + [7183] = 7183, + [7184] = 2320, + [7185] = 2295, + [7186] = 2328, + [7187] = 2339, + [7188] = 2297, + [7189] = 2333, + [7190] = 4940, + [7191] = 5015, + [7192] = 2334, + [7193] = 3432, + [7194] = 3444, + [7195] = 7195, [7196] = 7196, - [7197] = 7197, - [7198] = 7198, - [7199] = 3849, - [7200] = 7198, - [7201] = 7196, - [7202] = 7197, - [7203] = 7198, - [7204] = 7197, - [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, - [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, + [7197] = 2166, + [7198] = 2261, + [7199] = 2191, + [7200] = 7200, + [7201] = 3480, + [7202] = 2173, + [7203] = 5075, + [7204] = 2191, + [7205] = 2167, + [7206] = 2172, + [7207] = 2258, + [7208] = 2108, + [7209] = 7209, + [7210] = 2169, + [7211] = 7200, + [7212] = 2168, + [7213] = 7213, + [7214] = 2194, + [7215] = 2180, + [7216] = 2163, + [7217] = 5068, + [7218] = 7200, + [7219] = 2157, + [7220] = 7200, + [7221] = 3515, + [7222] = 7196, + [7223] = 3509, + [7224] = 6839, + [7225] = 2206, + [7226] = 2132, + [7227] = 7200, + [7228] = 7228, + [7229] = 7196, + [7230] = 2209, + [7231] = 3509, + [7232] = 7195, + [7233] = 3515, + [7234] = 3497, + [7235] = 7200, + [7236] = 7213, + [7237] = 7213, + [7238] = 2230, + [7239] = 2159, + [7240] = 7213, + [7241] = 7200, + [7242] = 2212, + [7243] = 2162, + [7244] = 2199, + [7245] = 3480, + [7246] = 5068, + [7247] = 2191, + [7248] = 7213, + [7249] = 3497, + [7250] = 5075, + [7251] = 2123, + [7252] = 2170, + [7253] = 2155, + [7254] = 7254, + [7255] = 2153, + [7256] = 2156, + [7257] = 3413, + [7258] = 3409, + [7259] = 3414, + [7260] = 3457, + [7261] = 3541, + [7262] = 3404, + [7263] = 3461, + [7264] = 4945, + [7265] = 7265, + [7266] = 2123, + [7267] = 4936, + [7268] = 290, + [7269] = 3882, + [7270] = 3884, + [7271] = 3885, + [7272] = 3886, + [7273] = 3878, + [7274] = 3879, + [7275] = 3880, + [7276] = 4946, + [7277] = 3881, + [7278] = 286, + [7279] = 3882, + [7280] = 3884, + [7281] = 3885, + [7282] = 3886, + [7283] = 2206, + [7284] = 2212, + [7285] = 4947, + [7286] = 4957, + [7287] = 2217, + [7288] = 7288, + [7289] = 4921, + [7290] = 4937, + [7291] = 4948, + [7292] = 2335, + [7293] = 7254, + [7294] = 2213, + [7295] = 3878, + [7296] = 3879, + [7297] = 3880, + [7298] = 3881, + [7299] = 3541, + [7300] = 4956, + [7301] = 2228, + [7302] = 2216, + [7303] = 2213, + [7304] = 2053, + [7305] = 7265, + [7306] = 5013, + [7307] = 4938, + [7308] = 4939, + [7309] = 4940, + [7310] = 4941, + [7311] = 4942, + [7312] = 4943, + [7313] = 4944, + [7314] = 5014, + [7315] = 3468, + [7316] = 7254, + [7317] = 5015, + [7318] = 7254, + [7319] = 7254, + [7320] = 3415, + [7321] = 7254, + [7322] = 7254, + [7323] = 3445, + [7324] = 3451, + [7325] = 3454, + [7326] = 3417, + [7327] = 3418, + [7328] = 3436, + [7329] = 3460, + [7330] = 3628, + [7331] = 2216, + [7332] = 3628, + [7333] = 3878, + [7334] = 2335, + [7335] = 3825, + [7336] = 1149, + [7337] = 4936, + [7338] = 3809, + [7339] = 2251, + [7340] = 3882, + [7341] = 3884, + [7342] = 3885, + [7343] = 3886, + [7344] = 4937, + [7345] = 2225, + [7346] = 1149, + [7347] = 3804, + [7348] = 5013, + [7349] = 1148, + [7350] = 4938, + [7351] = 4939, + [7352] = 4940, + [7353] = 4941, + [7354] = 7354, + [7355] = 2233, + [7356] = 4942, + [7357] = 4943, + [7358] = 4944, + [7359] = 5014, + [7360] = 7360, + [7361] = 3879, + [7362] = 3880, + [7363] = 3881, + [7364] = 5015, + [7365] = 2229, + [7366] = 2266, + [7367] = 2267, + [7368] = 2283, + [7369] = 2271, + [7370] = 2288, + [7371] = 2291, + [7372] = 2153, + [7373] = 2265, + [7374] = 2282, + [7375] = 2284, + [7376] = 2286, + [7377] = 2292, + [7378] = 2265, + [7379] = 3806, + [7380] = 3825, + [7381] = 3809, + [7382] = 4956, + [7383] = 4957, + [7384] = 4921, + [7385] = 3804, + [7386] = 7386, + [7387] = 3806, + [7388] = 2156, + [7389] = 4945, + [7390] = 4946, + [7391] = 1148, + [7392] = 4947, + [7393] = 3825, + [7394] = 4948, + [7395] = 2264, + [7396] = 7396, + [7397] = 3809, + [7398] = 3804, + [7399] = 3806, + [7400] = 2266, + [7401] = 2267, + [7402] = 2283, + [7403] = 2271, + [7404] = 2288, + [7405] = 2291, + [7406] = 2274, + [7407] = 2282, + [7408] = 2284, + [7409] = 2286, + [7410] = 2292, + [7411] = 2274, + [7412] = 2249, + [7413] = 7413, + [7414] = 7414, + [7415] = 3977, + [7416] = 3980, + [7417] = 3836, + [7418] = 3889, [7419] = 7419, - [7420] = 7399, - [7421] = 7400, - [7422] = 7400, - [7423] = 7410, - [7424] = 7410, - [7425] = 7405, - [7426] = 7400, - [7427] = 7410, + [7420] = 3418, + [7421] = 2232, + [7422] = 7422, + [7423] = 2050, + [7424] = 3436, + [7425] = 3849, + [7426] = 7426, + [7427] = 7422, [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, - [7506] = 7506, - [7507] = 7507, - [7508] = 2121, - [7509] = 2291, - [7510] = 7510, - [7511] = 2047, - [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, - [7539] = 7506, - [7540] = 4278, - [7541] = 7526, - [7542] = 7507, - [7543] = 7519, - [7544] = 7510, - [7545] = 7530, - [7546] = 7506, - [7547] = 7526, - [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, - [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, + [7429] = 3460, + [7430] = 7413, + [7431] = 3894, + [7432] = 3929, + [7433] = 3937, + [7434] = 3938, + [7435] = 3953, + [7436] = 7419, + [7437] = 7437, + [7438] = 2049, + [7439] = 3975, + [7440] = 7422, + [7441] = 7428, + [7442] = 7413, + [7443] = 3837, + [7444] = 3843, + [7445] = 3845, + [7446] = 5075, + [7447] = 2232, + [7448] = 3846, + [7449] = 2048, + [7450] = 7419, + [7451] = 7422, + [7452] = 7428, + [7453] = 3413, + [7454] = 3409, + [7455] = 3850, + [7456] = 3891, + [7457] = 3905, + [7458] = 2344, + [7459] = 7422, + [7460] = 7428, + [7461] = 3414, + [7462] = 7413, + [7463] = 3457, + [7464] = 3958, + [7465] = 2294, + [7466] = 3404, + [7467] = 7428, + [7468] = 3907, + [7469] = 3461, + [7470] = 7419, + [7471] = 2298, + [7472] = 7422, + [7473] = 3896, + [7474] = 2276, + [7475] = 7428, + [7476] = 2315, + [7477] = 7413, + [7478] = 7426, + [7479] = 7422, + [7480] = 7413, + [7481] = 2323, + [7482] = 7413, + [7483] = 7419, + [7484] = 7413, + [7485] = 7413, + [7486] = 7486, + [7487] = 7413, + [7488] = 7413, + [7489] = 7413, + [7490] = 3920, + [7491] = 7413, + [7492] = 7413, + [7493] = 7413, + [7494] = 7413, + [7495] = 7413, + [7496] = 7413, + [7497] = 7413, + [7498] = 7413, + [7499] = 7413, + [7500] = 7413, + [7501] = 7413, + [7502] = 7413, + [7503] = 7413, + [7504] = 3905, + [7505] = 7413, + [7506] = 7413, + [7507] = 2225, + [7508] = 7419, + [7509] = 3468, + [7510] = 3853, + [7511] = 3913, + [7512] = 3977, + [7513] = 3874, + [7514] = 3415, + [7515] = 5068, + [7516] = 3896, + [7517] = 3972, + [7518] = 3972, + [7519] = 3980, + [7520] = 2228, + [7521] = 2229, + [7522] = 290, + [7523] = 3836, + [7524] = 3874, + [7525] = 3913, + [7526] = 3916, + [7527] = 3913, + [7528] = 3889, + [7529] = 286, + [7530] = 7413, + [7531] = 2216, + [7532] = 7422, + [7533] = 7428, + [7534] = 3920, + [7535] = 7426, + [7536] = 7536, + [7537] = 7413, + [7538] = 3853, + [7539] = 2046, + [7540] = 2213, + [7541] = 7419, + [7542] = 2052, + [7543] = 3849, + [7544] = 3916, + [7545] = 3920, + [7546] = 3929, + [7547] = 3981, + [7548] = 3937, + [7549] = 3938, + [7550] = 3953, + [7551] = 3445, + [7552] = 7426, + [7553] = 7553, + [7554] = 3874, + [7555] = 3981, + [7556] = 3975, + [7557] = 3837, + [7558] = 2225, + [7559] = 2243, + [7560] = 2244, + [7561] = 2247, + [7562] = 2051, + [7563] = 3843, + [7564] = 2253, + [7565] = 3845, + [7566] = 3896, + [7567] = 3982, + [7568] = 3846, + [7569] = 7419, + [7570] = 3451, + [7571] = 3454, + [7572] = 3894, + [7573] = 3850, + [7574] = 3907, + [7575] = 3982, + [7576] = 3958, + [7577] = 3891, + [7578] = 3417, + [7579] = 7579, + [7580] = 7422, + [7581] = 7428, + [7582] = 7582, + [7583] = 2054, + [7584] = 7413, + [7585] = 4945, + [7586] = 7586, + [7587] = 7587, + [7588] = 7588, + [7589] = 5900, + [7590] = 7174, + [7591] = 4946, + [7592] = 7592, + [7593] = 7593, + [7594] = 7594, + [7595] = 7595, + [7596] = 7596, + [7597] = 2335, + [7598] = 7598, + [7599] = 7599, + [7600] = 7600, + [7601] = 7601, + [7602] = 4947, + [7603] = 7592, + [7604] = 4936, + [7605] = 7605, + [7606] = 4937, + [7607] = 7592, + [7608] = 5013, + [7609] = 4059, + [7610] = 4938, + [7611] = 4939, + [7612] = 7599, + [7613] = 4940, + [7614] = 4941, + [7615] = 4942, + [7616] = 4943, + [7617] = 7600, + [7618] = 4944, + [7619] = 5014, + [7620] = 5015, + [7621] = 3882, + [7622] = 3884, + [7623] = 3882, + [7624] = 7592, + [7625] = 3884, + [7626] = 4072, + [7627] = 7627, + [7628] = 7628, + [7629] = 4017, + [7630] = 4945, + [7631] = 7599, + [7632] = 4946, + [7633] = 7592, + [7634] = 3885, + [7635] = 4947, + [7636] = 7636, + [7637] = 7637, + [7638] = 7638, + [7639] = 7639, + [7640] = 7599, + [7641] = 4948, + [7642] = 7592, + [7643] = 3886, + [7644] = 2053, + [7645] = 4948, + [7646] = 3885, + [7647] = 2345, + [7648] = 7648, + [7649] = 7649, + [7650] = 2206, + [7651] = 7651, + [7652] = 2212, + [7653] = 7592, + [7654] = 7600, + [7655] = 3886, + [7656] = 7656, + [7657] = 2217, + [7658] = 3878, + [7659] = 7592, + [7660] = 2322, + [7661] = 3879, + [7662] = 3880, + [7663] = 7592, + [7664] = 4167, + [7665] = 4956, + [7666] = 3881, + [7667] = 4062, + [7668] = 4063, + [7669] = 4957, + [7670] = 4048, + [7671] = 4921, + [7672] = 7672, + [7673] = 7673, + [7674] = 3878, + [7675] = 2212, + [7676] = 7676, + [7677] = 7599, + [7678] = 7601, + [7679] = 4936, + [7680] = 4937, + [7681] = 7636, + [7682] = 5013, + [7683] = 4938, + [7684] = 4939, + [7685] = 4940, + [7686] = 4941, + [7687] = 4942, + [7688] = 4943, + [7689] = 4944, + [7690] = 5014, + [7691] = 7592, + [7692] = 5015, + [7693] = 4945, + [7694] = 4946, + [7695] = 4947, + [7696] = 4948, + [7697] = 7697, + [7698] = 4167, + [7699] = 3880, + [7700] = 4956, + [7701] = 7701, + [7702] = 2266, + [7703] = 4062, + [7704] = 2267, + [7705] = 4063, + [7706] = 7600, + [7707] = 7592, + [7708] = 2283, + [7709] = 2271, + [7710] = 2288, + [7711] = 2291, + [7712] = 4957, + [7713] = 4048, + [7714] = 2274, + [7715] = 7592, + [7716] = 7636, + [7717] = 7592, + [7718] = 2282, + [7719] = 2284, + [7720] = 2286, + [7721] = 4921, + [7722] = 2292, + [7723] = 2265, + [7724] = 7636, + [7725] = 3881, + [7726] = 7636, + [7727] = 7636, + [7728] = 4017, + [7729] = 7636, + [7730] = 7599, + [7731] = 2206, + [7732] = 2217, + [7733] = 4936, + [7734] = 4937, + [7735] = 4956, + [7736] = 4957, + [7737] = 4921, + [7738] = 4936, + [7739] = 4937, + [7740] = 5013, + [7741] = 4059, + [7742] = 4938, + [7743] = 4939, + [7744] = 4940, + [7745] = 4941, + [7746] = 4942, + [7747] = 4943, + [7748] = 4944, + [7749] = 5014, + [7750] = 7592, + [7751] = 5015, + [7752] = 7553, + [7753] = 4072, + [7754] = 4945, + [7755] = 4946, + [7756] = 4947, + [7757] = 4948, + [7758] = 7758, + [7759] = 5013, + [7760] = 4059, + [7761] = 4938, + [7762] = 4939, + [7763] = 4940, + [7764] = 4941, + [7765] = 4942, + [7766] = 4943, + [7767] = 4944, + [7768] = 5014, + [7769] = 7648, + [7770] = 2273, + [7771] = 2281, + [7772] = 5015, + [7773] = 7649, + [7774] = 4167, + [7775] = 4956, + [7776] = 4062, + [7777] = 4063, + [7778] = 4957, + [7779] = 4048, + [7780] = 4072, + [7781] = 4921, + [7782] = 2125, + [7783] = 2053, + [7784] = 7599, + [7785] = 7785, + [7786] = 7600, + [7787] = 7787, + [7788] = 7592, + [7789] = 7592, + [7790] = 3879, + [7791] = 7791, + [7792] = 7792, + [7793] = 7793, + [7794] = 7794, + [7795] = 7795, + [7796] = 7796, + [7797] = 7797, + [7798] = 7798, + [7799] = 7799, + [7800] = 7800, + [7801] = 7801, + [7802] = 7802, + [7803] = 7803, + [7804] = 7802, + [7805] = 7792, [7806] = 7806, - [7807] = 7807, - [7808] = 7805, + [7807] = 7794, + [7808] = 7808, [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, - [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, - [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, - [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, - [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, - [7957] = 7910, - [7958] = 7908, - [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, - [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, - [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, + [7810] = 7795, + [7811] = 7811, + [7812] = 7812, + [7813] = 7813, + [7814] = 7814, + [7815] = 7815, + [7816] = 7816, + [7817] = 7796, + [7818] = 7797, + [7819] = 2217, + [7820] = 7820, + [7821] = 7798, + [7822] = 7800, + [7823] = 7801, + [7824] = 7792, + [7825] = 7794, + [7826] = 7796, + [7827] = 7827, + [7828] = 7802, + [7829] = 7803, + [7830] = 7806, + [7831] = 7809, + [7832] = 7820, + [7833] = 7812, + [7834] = 7809, + [7835] = 7815, + [7836] = 7798, + [7837] = 7816, + [7838] = 7812, + [7839] = 7820, + [7840] = 7798, + [7841] = 7800, + [7842] = 7801, + [7843] = 7792, + [7844] = 2328, + [7845] = 7794, + [7846] = 2339, + [7847] = 5068, + [7848] = 7796, + [7849] = 2225, + [7850] = 7850, + [7851] = 7791, + [7852] = 2299, + [7853] = 2302, + [7854] = 2304, + [7855] = 2306, + [7856] = 7802, + [7857] = 2314, + [7858] = 2319, + [7859] = 7803, + [7860] = 2332, + [7861] = 7861, + [7862] = 7806, + [7863] = 2251, + [7864] = 7809, + [7865] = 7812, + [7866] = 2307, + [7867] = 2293, + [7868] = 7868, + [7869] = 7869, + [7870] = 7850, + [7871] = 2295, + [7872] = 2297, + [7873] = 7816, + [7874] = 2305, + [7875] = 2310, + [7876] = 2313, + [7877] = 7798, + [7878] = 7800, + [7879] = 7792, + [7880] = 7794, + [7881] = 7796, + [7882] = 7802, + [7883] = 2300, + [7884] = 2303, + [7885] = 7803, + [7886] = 7812, + [7887] = 7806, + [7888] = 2309, + [7889] = 2311, + [7890] = 2316, + [7891] = 2317, + [7892] = 2318, + [7893] = 2320, + [7894] = 7809, + [7895] = 7812, + [7896] = 2321, + [7897] = 7816, + [7898] = 2324, + [7899] = 7800, + [7900] = 2325, + [7901] = 7792, + [7902] = 2326, + [7903] = 7794, + [7904] = 2327, + [7905] = 7802, + [7906] = 2329, + [7907] = 7796, + [7908] = 2330, + [7909] = 7802, + [7910] = 7803, + [7911] = 2333, + [7912] = 2334, + [7913] = 7806, + [7914] = 7809, + [7915] = 7812, + [7916] = 7816, + [7917] = 7792, + [7918] = 7794, + [7919] = 4166, + [7920] = 7796, + [7921] = 7921, + [7922] = 7806, + [7923] = 7809, + [7924] = 7812, + [7925] = 7925, + [7926] = 7806, + [7927] = 7809, + [7928] = 7812, + [7929] = 7803, + [7930] = 7806, + [7931] = 7809, + [7932] = 7812, + [7933] = 7806, + [7934] = 7809, + [7935] = 7812, + [7936] = 7850, + [7937] = 7811, + [7938] = 7806, + [7939] = 7809, + [7940] = 7812, + [7941] = 7850, + [7942] = 7806, + [7943] = 7803, + [7944] = 7809, + [7945] = 7809, + [7946] = 7812, + [7947] = 7806, + [7948] = 7809, + [7949] = 7812, + [7950] = 7806, + [7951] = 7809, + [7952] = 7952, + [7953] = 7812, + [7954] = 7806, + [7955] = 7809, + [7956] = 7802, + [7957] = 7806, + [7958] = 7809, + [7959] = 7806, + [7960] = 7809, + [7961] = 2232, + [7962] = 7962, + [7963] = 7806, + [7964] = 7809, + [7965] = 7806, + [7966] = 7809, + [7967] = 7806, + [7968] = 7809, + [7969] = 4052, + [7970] = 7809, + [7971] = 7809, + [7972] = 7809, + [7973] = 4108, + [7974] = 7809, + [7975] = 7809, + [7976] = 7808, + [7977] = 7809, + [7978] = 7809, + [7979] = 7809, + [7980] = 7809, + [7981] = 7809, + [7982] = 7809, + [7983] = 7921, + [7984] = 7809, + [7985] = 7809, + [7986] = 7802, + [7987] = 7987, + [7988] = 7814, + [7989] = 7989, + [7990] = 7803, + [7991] = 7991, + [7992] = 7803, + [7993] = 7800, + [7994] = 7994, + [7995] = 7806, + [7996] = 7868, + [7997] = 7809, + [7998] = 7815, + [7999] = 7812, + [8000] = 7868, + [8001] = 7850, + [8002] = 7815, + [8003] = 7816, + [8004] = 7791, + [8005] = 7850, + [8006] = 8006, + [8007] = 5068, + [8008] = 4166, + [8009] = 7806, + [8010] = 7812, + [8011] = 8011, + [8012] = 7811, + [8013] = 8013, + [8014] = 2328, + [8015] = 2339, + [8016] = 2345, + [8017] = 7820, + [8018] = 8018, + [8019] = 7798, + [8020] = 7800, + [8021] = 2299, + [8022] = 2302, + [8023] = 7801, + [8024] = 2304, + [8025] = 2306, + [8026] = 2314, + [8027] = 2319, + [8028] = 2332, + [8029] = 2233, + [8030] = 7801, + [8031] = 7792, + [8032] = 7791, + [8033] = 2344, + [8034] = 7794, + [8035] = 2307, + [8036] = 2293, + [8037] = 7795, + [8038] = 2294, + [8039] = 2295, + [8040] = 2297, + [8041] = 2305, + [8042] = 7796, + [8043] = 7797, + [8044] = 2310, + [8045] = 2313, + [8046] = 7809, + [8047] = 7952, + [8048] = 7808, + [8049] = 7792, + [8050] = 7794, + [8051] = 2298, + [8052] = 2300, + [8053] = 2303, + [8054] = 7814, + [8055] = 7816, + [8056] = 2276, + [8057] = 2309, + [8058] = 7868, + [8059] = 2311, + [8060] = 2315, + [8061] = 2316, + [8062] = 2317, + [8063] = 7850, + [8064] = 5075, + [8065] = 2318, + [8066] = 7791, + [8067] = 2320, + [8068] = 2321, + [8069] = 2322, + [8070] = 2323, + [8071] = 2324, + [8072] = 2325, + [8073] = 2326, + [8074] = 2327, + [8075] = 7791, + [8076] = 2329, + [8077] = 2330, + [8078] = 7815, + [8079] = 2251, + [8080] = 2333, + [8081] = 2334, + [8082] = 7806, + [8083] = 7868, + [8084] = 4052, + [8085] = 7802, + [8086] = 2225, + [8087] = 7796, + [8088] = 7815, + [8089] = 4108, + [8090] = 2232, + [8091] = 8091, + [8092] = 7816, + [8093] = 7952, + [8094] = 7820, + [8095] = 7803, + [8096] = 7798, + [8097] = 7816, + [8098] = 7800, + [8099] = 7801, + [8100] = 7792, + [8101] = 7811, + [8102] = 7794, + [8103] = 7795, + [8104] = 7952, + [8105] = 7808, + [8106] = 7814, + [8107] = 7806, + [8108] = 5075, + [8109] = 7868, + [8110] = 7797, + [8111] = 7791, + [8112] = 8112, + [8113] = 7809, + [8114] = 2233, + [8115] = 7802, + [8116] = 7801, + [8117] = 7868, + [8118] = 7812, + [8119] = 7796, + [8120] = 7815, + [8121] = 7797, [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, - [8151] = 8151, - [8152] = 8152, - [8153] = 8153, - [8154] = 8154, - [8155] = 8155, - [8156] = 8156, - [8157] = 8157, - [8158] = 8158, - [8159] = 8159, - [8160] = 8152, + [8123] = 2233, + [8124] = 7795, + [8125] = 7820, + [8126] = 7803, + [8127] = 7816, + [8128] = 7811, + [8129] = 7820, + [8130] = 7798, + [8131] = 7952, + [8132] = 7808, + [8133] = 7814, + [8134] = 7806, + [8135] = 7921, + [8136] = 7800, + [8137] = 7921, + [8138] = 7921, + [8139] = 7921, + [8140] = 7921, + [8141] = 7921, + [8142] = 7809, + [8143] = 8143, + [8144] = 8144, + [8145] = 8145, + [8146] = 8146, + [8147] = 8144, + [8148] = 8145, + [8149] = 8146, + [8150] = 8144, + [8151] = 8145, + [8152] = 4200, + [8153] = 8146, + [8154] = 8144, + [8155] = 8145, + [8156] = 4178, + [8157] = 4308, + [8158] = 4201, + [8159] = 4202, + [8160] = 8143, [8161] = 8161, - [8162] = 8154, - [8163] = 8163, - [8164] = 8164, - [8165] = 8154, - [8166] = 8154, - [8167] = 8167, - [8168] = 8168, - [8169] = 8157, - [8170] = 8170, - [8171] = 8154, - [8172] = 8172, - [8173] = 8173, - [8174] = 3674, - [8175] = 8157, - [8176] = 8176, - [8177] = 8163, - [8178] = 8156, - [8179] = 8179, - [8180] = 8180, - [8181] = 8181, - [8182] = 8182, - [8183] = 8161, - [8184] = 3674, - [8185] = 8185, - [8186] = 8182, + [8162] = 8146, + [8163] = 4214, + [8164] = 8144, + [8165] = 8145, + [8166] = 4339, + [8167] = 8146, + [8168] = 8146, + [8169] = 8144, + [8170] = 8145, + [8171] = 4214, + [8172] = 4215, + [8173] = 4317, + [8174] = 8144, + [8175] = 4241, + [8176] = 8146, + [8177] = 8144, + [8178] = 4221, + [8179] = 8145, + [8180] = 4252, + [8181] = 4189, + [8182] = 4268, + [8183] = 2232, + [8184] = 4296, + [8185] = 8161, + [8186] = 2232, [8187] = 8187, - [8188] = 8188, - [8189] = 8157, - [8190] = 8190, - [8191] = 8191, - [8192] = 8192, + [8188] = 8145, + [8189] = 4329, + [8190] = 4331, + [8191] = 4307, + [8192] = 4194, [8193] = 8193, - [8194] = 8154, + [8194] = 8194, [8195] = 8195, - [8196] = 8157, - [8197] = 8154, + [8196] = 8187, + [8197] = 8197, [8198] = 8198, [8199] = 8199, - [8200] = 8167, - [8201] = 8201, - [8202] = 8202, - [8203] = 8192, - [8204] = 8204, - [8205] = 8190, - [8206] = 8206, - [8207] = 4551, - [8208] = 8157, - [8209] = 8209, - [8210] = 8210, - [8211] = 8211, - [8212] = 8212, - [8213] = 8157, - [8214] = 8157, - [8215] = 8180, - [8216] = 8191, - [8217] = 8172, - [8218] = 3674, - [8219] = 8219, - [8220] = 8182, - [8221] = 8221, - [8222] = 2049, - [8223] = 8181, - [8224] = 8151, - [8225] = 8154, - [8226] = 8226, - [8227] = 8187, - [8228] = 8180, - [8229] = 8181, - [8230] = 8230, - [8231] = 8231, - [8232] = 8232, - [8233] = 8154, - [8234] = 8209, - [8235] = 8161, - [8236] = 8181, - [8237] = 8168, - [8238] = 8181, - [8239] = 8157, - [8240] = 8182, - [8241] = 8241, - [8242] = 3608, - [8243] = 3611, - [8244] = 8244, - [8245] = 8245, - [8246] = 8246, - [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, - [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, - [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, - [8359] = 8359, - [8360] = 8248, - [8361] = 4551, - [8362] = 3603, - [8363] = 3687, - [8364] = 3604, - [8365] = 8249, - [8366] = 8245, - [8367] = 8367, - [8368] = 3911, - [8369] = 2957, - [8370] = 2960, - [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, - [8451] = 8451, - [8452] = 8451, - [8453] = 8451, - [8454] = 8451, - [8455] = 3896, - [8456] = 8451, - [8457] = 8457, - [8458] = 8458, - [8459] = 8451, - [8460] = 2538, - [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, + [8200] = 4226, + [8201] = 4339, + [8202] = 4218, + [8203] = 2272, + [8204] = 8146, + [8205] = 4215, + [8206] = 8144, + [8207] = 4245, + [8208] = 4250, + [8209] = 4222, + [8210] = 4194, + [8211] = 2268, + [8212] = 4275, + [8213] = 4267, + [8214] = 2335, + [8215] = 4201, + [8216] = 8145, + [8217] = 4297, + [8218] = 4178, + [8219] = 4225, + [8220] = 4202, + [8221] = 4179, + [8222] = 2268, + [8223] = 4180, + [8224] = 8146, + [8225] = 4226, + [8226] = 4307, + [8227] = 4308, + [8228] = 8144, + [8229] = 8145, + [8230] = 4300, + [8231] = 4218, + [8232] = 2335, + [8233] = 2232, + [8234] = 4334, + [8235] = 8146, + [8236] = 8144, + [8237] = 8145, + [8238] = 8146, + [8239] = 8146, + [8240] = 8144, + [8241] = 8145, + [8242] = 8193, + [8243] = 8194, + [8244] = 8195, + [8245] = 8144, + [8246] = 4267, + [8247] = 8145, + [8248] = 8197, + [8249] = 8198, + [8250] = 8199, + [8251] = 2232, + [8252] = 4187, + [8253] = 8146, + [8254] = 8144, + [8255] = 4192, + [8256] = 8144, + [8257] = 8145, + [8258] = 8258, + [8259] = 8146, + [8260] = 8144, + [8261] = 8145, + [8262] = 8193, + [8263] = 8146, + [8264] = 8195, + [8265] = 8197, + [8266] = 8198, + [8267] = 8199, + [8268] = 4228, + [8269] = 4293, + [8270] = 4329, + [8271] = 8146, + [8272] = 4331, + [8273] = 4293, + [8274] = 4334, + [8275] = 8193, + [8276] = 8194, + [8277] = 8195, + [8278] = 8197, + [8279] = 8198, + [8280] = 8199, + [8281] = 8144, + [8282] = 4270, + [8283] = 8193, + [8284] = 8194, + [8285] = 8195, + [8286] = 8197, + [8287] = 8198, + [8288] = 8199, + [8289] = 4222, + [8290] = 8145, + [8291] = 4186, + [8292] = 8193, + [8293] = 8193, + [8294] = 8194, + [8295] = 8195, + [8296] = 8197, + [8297] = 8198, + [8298] = 8199, + [8299] = 8146, + [8300] = 4189, + [8301] = 4193, + [8302] = 8144, + [8303] = 2272, + [8304] = 4200, + [8305] = 8145, + [8306] = 4241, + [8307] = 4221, + [8308] = 4225, + [8309] = 4252, + [8310] = 4268, + [8311] = 2199, + [8312] = 8146, + [8313] = 8144, + [8314] = 8145, + [8315] = 8145, + [8316] = 4187, + [8317] = 8197, + [8318] = 8198, + [8319] = 8194, + [8320] = 8146, + [8321] = 4296, + [8322] = 8144, + [8323] = 8145, + [8324] = 2232, + [8325] = 2232, + [8326] = 8146, + [8327] = 8144, + [8328] = 8145, + [8329] = 4192, + [8330] = 2335, + [8331] = 8187, + [8332] = 8199, + [8333] = 4228, + [8334] = 8161, + [8335] = 4193, + [8336] = 4270, + [8337] = 8146, + [8338] = 8146, + [8339] = 4179, + [8340] = 4245, + [8341] = 4180, + [8342] = 8195, + [8343] = 8144, + [8344] = 4250, + [8345] = 8145, + [8346] = 4317, + [8347] = 4275, + [8348] = 8144, + [8349] = 8143, + [8350] = 8145, + [8351] = 8146, + [8352] = 8144, + [8353] = 8145, + [8354] = 4186, + [8355] = 8355, + [8356] = 8146, + [8357] = 8144, + [8358] = 8145, + [8359] = 4297, + [8360] = 8146, + [8361] = 4300, + [8362] = 8194, + [8363] = 8363, + [8364] = 8364, + [8365] = 8365, + [8366] = 8365, + [8367] = 8364, + [8368] = 8368, + [8369] = 8369, + [8370] = 8363, + [8371] = 8364, + [8372] = 8365, + [8373] = 2225, + [8374] = 8374, + [8375] = 8365, + [8376] = 8364, + [8377] = 8365, + [8378] = 8374, + [8379] = 2232, + [8380] = 8380, + [8381] = 8364, + [8382] = 8380, + [8383] = 8363, + [8384] = 8365, + [8385] = 8365, + [8386] = 8386, + [8387] = 8387, + [8388] = 8364, + [8389] = 8365, + [8390] = 8365, + [8391] = 8369, + [8392] = 8364, + [8393] = 8365, + [8394] = 8368, + [8395] = 8395, + [8396] = 8363, + [8397] = 8365, + [8398] = 8369, + [8399] = 8365, + [8400] = 8363, + [8401] = 2232, + [8402] = 8369, + [8403] = 8365, + [8404] = 8363, + [8405] = 8364, + [8406] = 8364, + [8407] = 8364, + [8408] = 8365, + [8409] = 8364, + [8410] = 8369, + [8411] = 2232, + [8412] = 8365, + [8413] = 2232, + [8414] = 8365, + [8415] = 8363, + [8416] = 8365, + [8417] = 2335, + [8418] = 8364, + [8419] = 8364, + [8420] = 8369, + [8421] = 8364, + [8422] = 8380, + [8423] = 8363, + [8424] = 8369, + [8425] = 2232, + [8426] = 8365, + [8427] = 2251, + [8428] = 8365, + [8429] = 8364, + [8430] = 8363, + [8431] = 8364, + [8432] = 8365, + [8433] = 8365, + [8434] = 8364, + [8435] = 8380, + [8436] = 8364, + [8437] = 8369, + [8438] = 8365, + [8439] = 8380, + [8440] = 8380, + [8441] = 8380, + [8442] = 8365, + [8443] = 2335, + [8444] = 8364, + [8445] = 8363, + [8446] = 8380, + [8447] = 8363, + [8448] = 8448, + [8449] = 8374, + [8450] = 8363, + [8451] = 8369, + [8452] = 8386, + [8453] = 8364, + [8454] = 8364, + [8455] = 8380, + [8456] = 8365, + [8457] = 8363, + [8458] = 8395, + [8459] = 8363, + [8460] = 8364, + [8461] = 8364, + [8462] = 8363, + [8463] = 8369, + [8464] = 8380, + [8465] = 8364, + [8466] = 2232, + [8467] = 8380, + [8468] = 8364, + [8469] = 8369, + [8470] = 8365, + [8471] = 8365, + [8472] = 2335, + [8473] = 8473, [8474] = 8474, - [8475] = 8451, - [8476] = 2556, - [8477] = 4149, - [8478] = 8451, - [8479] = 8451, - [8480] = 3896, + [8475] = 8475, + [8476] = 8474, + [8477] = 8477, + [8478] = 8478, + [8479] = 8474, + [8480] = 8475, [8481] = 8481, - [8482] = 4159, - [8483] = 8451, - [8484] = 8451, - [8485] = 4160, - [8486] = 8451, - [8487] = 4157, - [8488] = 8451, - [8489] = 8451, + [8482] = 8478, + [8483] = 8481, + [8484] = 8475, + [8485] = 2335, + [8486] = 8475, + [8487] = 2232, + [8488] = 2335, + [8489] = 8474, [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, + [8491] = 2187, + [8492] = 8481, + [8493] = 8478, + [8494] = 8494, + [8495] = 8481, + [8496] = 8496, + [8497] = 2232, + [8498] = 8496, + [8499] = 8481, + [8500] = 8478, + [8501] = 8475, + [8502] = 2268, + [8503] = 8478, + [8504] = 8473, + [8505] = 8496, + [8506] = 8478, + [8507] = 2272, [8508] = 8508, - [8509] = 3603, - [8510] = 3891, - [8511] = 3071, - [8512] = 3895, - [8513] = 3029, - [8514] = 8514, - [8515] = 3880, - [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, - [8534] = 8534, - [8535] = 8516, - [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, - [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, - [8599] = 8599, - [8600] = 8525, - [8601] = 3688, - [8602] = 3852, - [8603] = 8603, - [8604] = 3891, - [8605] = 8605, - [8606] = 3895, - [8607] = 3896, - [8608] = 8603, - [8609] = 3896, - [8610] = 8603, - [8611] = 8611, - [8612] = 8612, - [8613] = 8613, - [8614] = 8603, - [8615] = 8615, - [8616] = 8611, - [8617] = 8617, - [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, - [8658] = 8658, - [8659] = 3895, - [8660] = 8660, - [8661] = 3880, - [8662] = 3895, - [8663] = 8611, - [8664] = 8664, - [8665] = 3880, - [8666] = 3880, - [8667] = 3891, - [8668] = 3895, - [8669] = 3896, - [8670] = 3880, - [8671] = 8671, - [8672] = 2757, - [8673] = 8673, + [8509] = 8481, + [8510] = 2272, + [8511] = 8474, + [8512] = 8473, + [8513] = 8478, + [8514] = 8475, + [8515] = 8478, + [8516] = 8481, + [8517] = 2268, + [8518] = 8473, + [8519] = 8475, + [8520] = 8496, + [8521] = 8521, + [8522] = 2272, + [8523] = 2272, + [8524] = 2268, + [8525] = 2108, + [8526] = 2232, + [8527] = 2232, + [8528] = 2272, + [8529] = 2268, + [8530] = 2268, + [8531] = 2335, + [8532] = 2272, + [8533] = 2123, + [8534] = 2272, + [8535] = 2268, + [8536] = 2335, + [8537] = 2232, + [8538] = 2272, + [8539] = 2069, + [8540] = 2232, + [8541] = 2206, + [8542] = 2079, + [8543] = 2268, + [8544] = 2268, + [8545] = 2212, + [8546] = 2232, + [8547] = 2232, + [8548] = 2272, + [8549] = 2268, + [8550] = 2268, + [8551] = 2268, + [8552] = 2232, + [8553] = 2268, + [8554] = 2268, + [8555] = 2272, + [8556] = 2272, + [8557] = 2272, + [8558] = 2268, + [8559] = 2335, + [8560] = 2272, + [8561] = 2272, + [8562] = 2440, + [8563] = 2447, + [8564] = 2440, + [8565] = 2478, + [8566] = 2335, + [8567] = 2268, + [8568] = 2268, + [8569] = 2447, + [8570] = 2478, + [8571] = 2272, + [8572] = 2335, + [8573] = 2216, + [8574] = 2335, + [8575] = 2272, + [8576] = 2213, + [8577] = 8577, + [8578] = 2272, + [8579] = 2163, + [8580] = 2166, + [8581] = 2268, + [8582] = 2168, + [8583] = 2162, + [8584] = 2272, + [8585] = 2170, + [8586] = 2155, + [8587] = 2079, + [8588] = 2268, + [8589] = 2159, + [8590] = 8577, + [8591] = 2172, + [8592] = 2157, + [8593] = 8577, + [8594] = 2136, + [8595] = 8577, + [8596] = 2173, + [8597] = 2272, + [8598] = 2272, + [8599] = 2268, + [8600] = 8577, + [8601] = 2272, + [8602] = 2069, + [8603] = 2169, + [8604] = 2268, + [8605] = 2335, + [8606] = 2167, + [8607] = 2268, + [8608] = 8577, + [8609] = 8577, + [8610] = 2268, + [8611] = 2272, + [8612] = 8577, + [8613] = 8577, + [8614] = 8614, + [8615] = 2282, + [8616] = 8616, + [8617] = 2268, + [8618] = 2447, + [8619] = 2272, + [8620] = 2335, + [8621] = 2292, + [8622] = 2265, + [8623] = 2266, + [8624] = 2267, + [8625] = 2478, + [8626] = 8626, + [8627] = 8627, + [8628] = 2283, + [8629] = 2286, + [8630] = 2271, + [8631] = 2288, + [8632] = 2291, + [8633] = 2341, + [8634] = 2301, + [8635] = 2440, + [8636] = 2447, + [8637] = 2478, + [8638] = 2440, + [8639] = 2274, + [8640] = 2284, + [8641] = 2478, + [8642] = 2447, + [8643] = 2478, + [8644] = 2478, + [8645] = 2440, + [8646] = 2447, + [8647] = 2440, + [8648] = 2440, + [8649] = 2478, + [8650] = 2447, + [8651] = 2447, + [8652] = 2478, + [8653] = 2478, + [8654] = 2447, + [8655] = 2440, + [8656] = 2440, + [8657] = 2440, + [8658] = 2447, + [8659] = 2440, + [8660] = 2440, + [8661] = 2447, + [8662] = 2478, + [8663] = 8663, + [8664] = 2478, + [8665] = 8665, + [8666] = 8663, + [8667] = 8665, + [8668] = 8668, + [8669] = 8669, + [8670] = 8663, + [8671] = 8665, + [8672] = 8663, + [8673] = 8668, [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, - [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, - [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, - [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, - [8792] = 8792, - [8793] = 8773, - [8794] = 8548, - [8795] = 8773, - [8796] = 8766, - [8797] = 8797, - [8798] = 2078, - [8799] = 8766, - [8800] = 4157, - [8801] = 8771, - [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, - [8836] = 8836, - [8837] = 8837, - [8838] = 4166, - [8839] = 8839, - [8840] = 8840, - [8841] = 4159, - [8842] = 8842, - [8843] = 3896, - [8844] = 8844, - [8845] = 3891, - [8846] = 4160, - [8847] = 8847, - [8848] = 2075, - [8849] = 4165, - [8850] = 8850, - [8851] = 3880, - [8852] = 4163, - [8853] = 3895, - [8854] = 3805, - [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, + [8675] = 2136, + [8676] = 8676, + [8677] = 8665, + [8678] = 8663, + [8679] = 8669, + [8680] = 8669, + [8681] = 8663, + [8682] = 8665, + [8683] = 2447, + [8684] = 2478, + [8685] = 8669, + [8686] = 8665, + [8687] = 2440, + [8688] = 2447, + [8689] = 8689, + [8690] = 2478, + [8691] = 8669, + [8692] = 2440, + [8693] = 8669, + [8694] = 8676, + [8695] = 8663, + [8696] = 8665, + [8697] = 2440, + [8698] = 2447, + [8699] = 8663, + [8700] = 8663, + [8701] = 8665, + [8702] = 8665, + [8703] = 8669, + [8704] = 2478, + [8705] = 8676, + [8706] = 8663, + [8707] = 8676, + [8708] = 8665, + [8709] = 8676, + [8710] = 8669, + [8711] = 2440, + [8712] = 8676, + [8713] = 2447, + [8714] = 8669, + [8715] = 8676, + [8716] = 8676, + [8717] = 2478, + [8718] = 8676, + [8719] = 8669, + [8720] = 8669, + [8721] = 8663, + [8722] = 8676, + [8723] = 8663, + [8724] = 8665, + [8725] = 8669, + [8726] = 8663, + [8727] = 8665, + [8728] = 8669, + [8729] = 8669, + [8730] = 8663, + [8731] = 8665, + [8732] = 2447, + [8733] = 8668, + [8734] = 8663, + [8735] = 8663, + [8736] = 8665, + [8737] = 8665, + [8738] = 8669, + [8739] = 2191, + [8740] = 8669, + [8741] = 8665, + [8742] = 8742, + [8743] = 8742, + [8744] = 8744, + [8745] = 8745, + [8746] = 8746, + [8747] = 8745, + [8748] = 8748, + [8749] = 8742, + [8750] = 8744, + [8751] = 8748, + [8752] = 8746, + [8753] = 8753, + [8754] = 8748, + [8755] = 8742, + [8756] = 8744, + [8757] = 8745, + [8758] = 8746, + [8759] = 8748, + [8760] = 8748, + [8761] = 8748, + [8762] = 8742, + [8763] = 8744, + [8764] = 8745, + [8765] = 8746, + [8766] = 8748, + [8767] = 8742, + [8768] = 8744, + [8769] = 8744, + [8770] = 8745, + [8771] = 8746, + [8772] = 8746, + [8773] = 8742, + [8774] = 8753, + [8775] = 8748, + [8776] = 8742, + [8777] = 8748, + [8778] = 8744, + [8779] = 8745, + [8780] = 8746, + [8781] = 8781, + [8782] = 8745, + [8783] = 8748, + [8784] = 8742, + [8785] = 8746, + [8786] = 8744, + [8787] = 8745, + [8788] = 8746, + [8789] = 8746, + [8790] = 8742, + [8791] = 8748, + [8792] = 8748, + [8793] = 8742, + [8794] = 8744, + [8795] = 8745, + [8796] = 8746, + [8797] = 8748, + [8798] = 8742, + [8799] = 8744, + [8800] = 8745, + [8801] = 8746, + [8802] = 8745, + [8803] = 8748, + [8804] = 8742, + [8805] = 8744, + [8806] = 8745, + [8807] = 8746, + [8808] = 8748, + [8809] = 8742, + [8810] = 8744, + [8811] = 8745, + [8812] = 8753, + [8813] = 8746, + [8814] = 8744, + [8815] = 8744, + [8816] = 8745, + [8817] = 8746, + [8818] = 8748, + [8819] = 8742, + [8820] = 8748, + [8821] = 8742, + [8822] = 8744, + [8823] = 8781, + [8824] = 8744, + [8825] = 8745, + [8826] = 8745, + [8827] = 8746, + [8828] = 8744, + [8829] = 8746, + [8830] = 8753, + [8831] = 2217, + [8832] = 8745, + [8833] = 8742, + [8834] = 2440, + [8835] = 2447, + [8836] = 2478, + [8837] = 8746, + [8838] = 8744, + [8839] = 2440, + [8840] = 2447, + [8841] = 2478, + [8842] = 8745, + [8843] = 8748, + [8844] = 8742, + [8845] = 8748, + [8846] = 8742, + [8847] = 8748, + [8848] = 8742, + [8849] = 8744, + [8850] = 8745, + [8851] = 8781, + [8852] = 8744, + [8853] = 8745, + [8854] = 8746, + [8855] = 8753, + [8856] = 8748, + [8857] = 8742, + [8858] = 8744, + [8859] = 8745, + [8860] = 8746, + [8861] = 8748, + [8862] = 8742, + [8863] = 8746, + [8864] = 8781, + [8865] = 2251, + [8866] = 8781, + [8867] = 8748, + [8868] = 2225, + [8869] = 8742, + [8870] = 8744, + [8871] = 8748, + [8872] = 8872, + [8873] = 8742, + [8874] = 8744, + [8875] = 8745, + [8876] = 8746, + [8877] = 8748, + [8878] = 8742, + [8879] = 8746, + [8880] = 8744, + [8881] = 8745, + [8882] = 8746, + [8883] = 8744, + [8884] = 8745, + [8885] = 8746, + [8886] = 8745, + [8887] = 8887, [8888] = 8888, - [8889] = 8868, + [8889] = 8887, [8890] = 8890, - [8891] = 4165, - [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, - [8908] = 8908, - [8909] = 4149, - [8910] = 8860, - [8911] = 8860, - [8912] = 8860, - [8913] = 8882, - [8914] = 4162, - [8915] = 4163, - [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, - [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, + [8891] = 8888, + [8892] = 8888, + [8893] = 3509, + [8894] = 8890, + [8895] = 8890, + [8896] = 8888, + [8897] = 8887, + [8898] = 8887, + [8899] = 8888, + [8900] = 8888, + [8901] = 8887, + [8902] = 8887, + [8903] = 8890, + [8904] = 8888, + [8905] = 8888, + [8906] = 8890, + [8907] = 8888, + [8908] = 2478, + [8909] = 8888, + [8910] = 8888, + [8911] = 2447, + [8912] = 8888, + [8913] = 8888, + [8914] = 2440, + [8915] = 2447, + [8916] = 2478, + [8917] = 8917, + [8918] = 8888, + [8919] = 8887, + [8920] = 8888, + [8921] = 8888, + [8922] = 8887, + [8923] = 8887, + [8924] = 8888, + [8925] = 8890, + [8926] = 8890, + [8927] = 2447, + [8928] = 8890, + [8929] = 8888, + [8930] = 8888, + [8931] = 3361, + [8932] = 8887, + [8933] = 8888, + [8934] = 8888, + [8935] = 2478, + [8936] = 2440, + [8937] = 8888, + [8938] = 8888, + [8939] = 8887, + [8940] = 8890, + [8941] = 3362, + [8942] = 8890, + [8943] = 8888, + [8944] = 2264, + [8945] = 8890, + [8946] = 8888, + [8947] = 8887, + [8948] = 2447, + [8949] = 8949, + [8950] = 8887, + [8951] = 8890, + [8952] = 8890, + [8953] = 2440, + [8954] = 2440, + [8955] = 8890, + [8956] = 8888, + [8957] = 8887, + [8958] = 2447, + [8959] = 8890, + [8960] = 8888, + [8961] = 2478, + [8962] = 2478, + [8963] = 2440, + [8964] = 2447, + [8965] = 2478, + [8966] = 8887, + [8967] = 8890, + [8968] = 2440, + [8969] = 8887, + [8970] = 2273, + [8971] = 2253, + [8972] = 8972, + [8973] = 2125, + [8974] = 2440, [8975] = 8975, - [8976] = 2175, - [8977] = 2239, - [8978] = 2219, - [8979] = 2220, - [8980] = 2994, - [8981] = 8981, - [8982] = 8975, - [8983] = 8983, - [8984] = 4149, - [8985] = 8985, - [8986] = 8985, - [8987] = 4166, - [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, - [9004] = 9004, - [9005] = 8990, - [9006] = 4159, + [8976] = 8972, + [8977] = 2244, + [8978] = 2281, + [8979] = 2249, + [8980] = 3509, + [8981] = 2447, + [8982] = 8972, + [8983] = 2478, + [8984] = 8984, + [8985] = 8975, + [8986] = 2243, + [8987] = 8975, + [8988] = 8975, + [8989] = 8975, + [8990] = 3414, + [8991] = 8991, + [8992] = 8991, + [8993] = 3916, + [8994] = 8994, + [8995] = 8991, + [8996] = 286, + [8997] = 8997, + [8998] = 8998, + [8999] = 8998, + [9000] = 3444, + [9001] = 3457, + [9002] = 8991, + [9003] = 8998, + [9004] = 4194, + [9005] = 3404, + [9006] = 3497, [9007] = 9007, - [9008] = 9008, - [9009] = 9009, - [9010] = 9010, - [9011] = 9011, - [9012] = 8618, - [9013] = 9013, - [9014] = 9013, - [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, - [9032] = 9032, - [9033] = 8612, - [9034] = 9034, - [9035] = 9035, - [9036] = 9025, - [9037] = 4163, - [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, + [9008] = 3437, + [9009] = 3432, + [9010] = 8991, + [9011] = 3413, + [9012] = 8998, + [9013] = 8998, + [9014] = 3515, + [9015] = 8998, + [9016] = 3468, + [9017] = 3415, + [9018] = 8998, + [9019] = 3437, + [9020] = 3853, + [9021] = 8998, + [9022] = 3461, + [9023] = 3445, + [9024] = 3451, + [9025] = 3454, + [9026] = 3411, + [9027] = 3449, + [9028] = 3417, + [9029] = 8998, + [9030] = 3262, + [9031] = 3418, + [9032] = 3480, + [9033] = 8991, + [9034] = 3444, + [9035] = 3409, + [9036] = 290, + [9037] = 8991, + [9038] = 3449, + [9039] = 3432, + [9040] = 8998, + [9041] = 8991, + [9042] = 3436, + [9043] = 8991, + [9044] = 8991, + [9045] = 3460, + [9046] = 9046, + [9047] = 8998, + [9048] = 4293, + [9049] = 8998, + [9050] = 3411, + [9051] = 8991, + [9052] = 8991, + [9053] = 3491, + [9054] = 9054, + [9055] = 1149, + [9056] = 3484, + [9057] = 3488, + [9058] = 3491, + [9059] = 3475, + [9060] = 1148, + [9061] = 4317, + [9062] = 3475, + [9063] = 3488, [9064] = 9064, - [9065] = 9013, - [9066] = 9066, + [9065] = 2264, + [9066] = 3484, [9067] = 9067, - [9068] = 4163, - [9069] = 9025, - [9070] = 9010, - [9071] = 9071, - [9072] = 9072, - [9073] = 4165, - [9074] = 9055, - [9075] = 9055, + [9068] = 9068, + [9069] = 9069, + [9070] = 9070, + [9071] = 9069, + [9072] = 9069, + [9073] = 9070, + [9074] = 9074, + [9075] = 9069, [9076] = 9076, - [9077] = 9055, - [9078] = 9011, - [9079] = 8617, - [9080] = 4165, - [9081] = 9081, - [9082] = 9081, - [9083] = 4149, - [9084] = 9084, + [9077] = 3484, + [9078] = 3488, + [9079] = 3491, + [9080] = 3475, + [9081] = 9070, + [9082] = 9076, + [9083] = 9054, + [9084] = 9069, [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, - [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, - [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, + [9086] = 9069, + [9087] = 2217, + [9088] = 9069, + [9089] = 9069, + [9090] = 9070, + [9091] = 9069, + [9092] = 9069, + [9093] = 9068, + [9094] = 9070, + [9095] = 9069, + [9096] = 3484, + [9097] = 2251, + [9098] = 3467, + [9099] = 3541, + [9100] = 3488, + [9101] = 3491, + [9102] = 9076, + [9103] = 3475, + [9104] = 9070, + [9105] = 9069, + [9106] = 9069, + [9107] = 9069, + [9108] = 3628, + [9109] = 2225, + [9110] = 9070, + [9111] = 9069, + [9112] = 9068, + [9113] = 9069, + [9114] = 3419, + [9115] = 3466, + [9116] = 9069, + [9117] = 9069, + [9118] = 3463, + [9119] = 3440, + [9120] = 9069, + [9121] = 9070, + [9122] = 3408, + [9123] = 9074, + [9124] = 9069, + [9125] = 9085, + [9126] = 9069, + [9127] = 9076, + [9128] = 9069, + [9129] = 9070, + [9130] = 9076, + [9131] = 9069, + [9132] = 9074, + [9133] = 9070, + [9134] = 9070, + [9135] = 9069, + [9136] = 9070, + [9137] = 9076, + [9138] = 9076, + [9139] = 9085, + [9140] = 9069, + [9141] = 9141, + [9142] = 9142, + [9143] = 9143, + [9144] = 9144, + [9145] = 9145, + [9146] = 9146, + [9147] = 9147, + [9148] = 9143, + [9149] = 9143, [9150] = 9150, - [9151] = 9151, + [9151] = 9147, [9152] = 9152, - [9153] = 9090, - [9154] = 4157, - [9155] = 9155, + [9153] = 9153, + [9154] = 9143, + [9155] = 9150, [9156] = 9156, [9157] = 9157, - [9158] = 9116, - [9159] = 9116, - [9160] = 9093, - [9161] = 2268, - [9162] = 9162, + [9158] = 9158, + [9159] = 9159, + [9160] = 9160, + [9161] = 9161, + [9162] = 9147, [9163] = 9163, - [9164] = 9164, + [9164] = 9143, [9165] = 9165, [9166] = 9163, - [9167] = 9167, + [9167] = 9143, [9168] = 9168, [9169] = 9169, - [9170] = 9163, - [9171] = 9163, - [9172] = 9172, + [9170] = 9170, + [9171] = 9142, + [9172] = 9147, [9173] = 9173, [9174] = 9174, [9175] = 9175, - [9176] = 9174, + [9176] = 9176, [9177] = 9177, [9178] = 9178, - [9179] = 9163, - [9180] = 9163, + [9179] = 9179, + [9180] = 9180, [9181] = 9181, - [9182] = 9182, + [9182] = 9147, [9183] = 9183, - [9184] = 4157, - [9185] = 9181, - [9186] = 9165, + [9184] = 9184, + [9185] = 9185, + [9186] = 9143, [9187] = 9187, [9188] = 9188, - [9189] = 9189, - [9190] = 9163, + [9189] = 9143, + [9190] = 9161, [9191] = 9191, - [9192] = 9192, - [9193] = 9188, + [9192] = 9142, + [9193] = 9193, [9194] = 9194, - [9195] = 9195, - [9196] = 9163, - [9197] = 9182, - [9198] = 3779, - [9199] = 9199, - [9200] = 4165, - [9201] = 9201, + [9195] = 9156, + [9196] = 9161, + [9197] = 9150, + [9198] = 9198, + [9199] = 5075, + [9200] = 9163, + [9201] = 9147, [9202] = 9202, - [9203] = 9163, - [9204] = 9194, - [9205] = 9199, - [9206] = 9163, - [9207] = 9163, - [9208] = 9163, - [9209] = 9194, - [9210] = 9167, - [9211] = 9167, + [9203] = 9150, + [9204] = 9204, + [9205] = 9205, + [9206] = 9206, + [9207] = 9175, + [9208] = 9176, + [9209] = 9177, + [9210] = 9178, + [9211] = 9211, [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, - [9242] = 9181, - [9243] = 9165, - [9244] = 9167, - [9245] = 9163, - [9246] = 9163, - [9247] = 9163, - [9248] = 9177, - [9249] = 9163, - [9250] = 4159, - [9251] = 4160, + [9213] = 9142, + [9214] = 9147, + [9215] = 9179, + [9216] = 9180, + [9217] = 9181, + [9218] = 9183, + [9219] = 9150, + [9220] = 9147, + [9221] = 9143, + [9222] = 9184, + [9223] = 9223, + [9224] = 2225, + [9225] = 9147, + [9226] = 9185, + [9227] = 9227, + [9228] = 9227, + [9229] = 3837, + [9230] = 9230, + [9231] = 9230, + [9232] = 9230, + [9233] = 9230, + [9234] = 9230, + [9235] = 9230, + [9236] = 3858, + [9237] = 9230, + [9238] = 9238, + [9239] = 9239, + [9240] = 9230, + [9241] = 9241, + [9242] = 3484, + [9243] = 3488, + [9244] = 3491, + [9245] = 3475, + [9246] = 9230, + [9247] = 3895, + [9248] = 9248, + [9249] = 9249, + [9250] = 3843, + [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, - [9272] = 9272, - [9273] = 9273, - [9274] = 9274, - [9275] = 9275, + [9253] = 3905, + [9254] = 9254, + [9255] = 9255, + [9256] = 9254, + [9257] = 2253, + [9258] = 3845, + [9259] = 3846, + [9260] = 3894, + [9261] = 9261, + [9262] = 9262, + [9263] = 3907, + [9264] = 9248, + [9265] = 9152, + [9266] = 4126, + [9267] = 9248, + [9268] = 9230, + [9269] = 2225, + [9270] = 3850, + [9271] = 2217, + [9272] = 9241, + [9273] = 9230, + [9274] = 3975, + [9275] = 9241, [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, + [9277] = 9248, + [9278] = 9278, + [9279] = 9249, + [9280] = 3484, + [9281] = 9255, + [9282] = 9254, + [9283] = 3488, + [9284] = 9230, + [9285] = 3491, + [9286] = 5075, + [9287] = 3475, + [9288] = 3875, + [9289] = 9230, + [9290] = 9249, + [9291] = 9291, + [9292] = 9255, + [9293] = 3958, + [9294] = 9223, + [9295] = 2273, [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, - [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, - [9370] = 9370, - [9371] = 9305, - [9372] = 9273, - [9373] = 9373, - [9374] = 8241, - [9375] = 9305, + [9297] = 9230, + [9298] = 9255, + [9299] = 3929, + [9300] = 2243, + [9301] = 2244, + [9302] = 2249, + [9303] = 9303, + [9304] = 3937, + [9305] = 3938, + [9306] = 9306, + [9307] = 3953, + [9308] = 3890, + [9309] = 9309, + [9310] = 3977, + [9311] = 9248, + [9312] = 9230, + [9313] = 3980, + [9314] = 9230, + [9315] = 3836, + [9316] = 3889, + [9317] = 2251, + [9318] = 9198, + [9319] = 2125, + [9320] = 9157, + [9321] = 9321, + [9322] = 9168, + [9323] = 9202, + [9324] = 9211, + [9325] = 9144, + [9326] = 9159, + [9327] = 9193, + [9328] = 9165, + [9329] = 9205, + [9330] = 9212, + [9331] = 9331, + [9332] = 9169, + [9333] = 9230, + [9334] = 9230, + [9335] = 3849, + [9336] = 9336, + [9337] = 9249, + [9338] = 9338, + [9339] = 9278, + [9340] = 9230, + [9341] = 3862, + [9342] = 9230, + [9343] = 9343, + [9344] = 9160, + [9345] = 9146, + [9346] = 9248, + [9347] = 9230, + [9348] = 3981, + [9349] = 3982, + [9350] = 9350, + [9351] = 9255, + [9352] = 9173, + [9353] = 9350, + [9354] = 9354, + [9355] = 9174, + [9356] = 2054, + [9357] = 9357, + [9358] = 2281, + [9359] = 9230, + [9360] = 9360, + [9361] = 2050, + [9362] = 2049, + [9363] = 2051, + [9364] = 9230, + [9365] = 2048, + [9366] = 2046, + [9367] = 2052, + [9368] = 3891, + [9369] = 9248, + [9370] = 9230, + [9371] = 9230, + [9372] = 3972, + [9373] = 9230, + [9374] = 9374, + [9375] = 3460, [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, - [9414] = 9414, - [9415] = 9273, - [9416] = 9280, - [9417] = 3779, - [9418] = 9275, + [9377] = 3444, + [9378] = 3457, + [9379] = 3411, + [9380] = 3404, + [9381] = 9381, + [9382] = 9382, + [9383] = 4246, + [9384] = 3418, + [9385] = 9381, + [9386] = 9382, + [9387] = 3444, + [9388] = 3541, + [9389] = 3449, + [9390] = 3916, + [9391] = 3628, + [9392] = 3411, + [9393] = 3878, + [9394] = 3882, + [9395] = 3884, + [9396] = 3879, + [9397] = 3880, + [9398] = 3885, + [9399] = 3881, + [9400] = 3886, + [9401] = 9374, + [9402] = 290, + [9403] = 3437, + [9404] = 9374, + [9405] = 9381, + [9406] = 9381, + [9407] = 3461, + [9408] = 3858, + [9409] = 9381, + [9410] = 3437, + [9411] = 9382, + [9412] = 3432, + [9413] = 2247, + [9414] = 3445, + [9415] = 9381, + [9416] = 3451, + [9417] = 3454, + [9418] = 9382, [9419] = 9419, - [9420] = 9420, - [9421] = 9421, - [9422] = 9422, - [9423] = 9423, + [9420] = 9381, + [9421] = 3895, + [9422] = 9382, + [9423] = 286, [9424] = 9424, - [9425] = 9419, + [9425] = 9425, [9426] = 9426, - [9427] = 9427, - [9428] = 9428, - [9429] = 9429, - [9430] = 9423, - [9431] = 9431, - [9432] = 9424, - [9433] = 9433, - [9434] = 9434, - [9435] = 9435, - [9436] = 9422, - [9437] = 9423, - [9438] = 9421, - [9439] = 9439, - [9440] = 9420, - [9441] = 9441, - [9442] = 9442, - [9443] = 9424, - [9444] = 9444, - [9445] = 9445, - [9446] = 9429, - [9447] = 9439, - [9448] = 9448, - [9449] = 9423, - [9450] = 9450, - [9451] = 9424, - [9452] = 9424, - [9453] = 9423, - [9454] = 3779, - [9455] = 9455, - [9456] = 9420, - [9457] = 9420, - [9458] = 9429, - [9459] = 9420, - [9460] = 9460, + [9427] = 3417, + [9428] = 3853, + [9429] = 4024, + [9430] = 3890, + [9431] = 9382, + [9432] = 9432, + [9433] = 4065, + [9434] = 3875, + [9435] = 3862, + [9436] = 3413, + [9437] = 3449, + [9438] = 3432, + [9439] = 3436, + [9440] = 3409, + [9441] = 9374, + [9442] = 3414, + [9443] = 4292, + [9444] = 3468, + [9445] = 3415, + [9446] = 9374, + [9447] = 3484, + [9448] = 3484, + [9449] = 3488, + [9450] = 3491, + [9451] = 3475, + [9452] = 9452, + [9453] = 9453, + [9454] = 9452, + [9455] = 2884, + [9456] = 9452, + [9457] = 9452, + [9458] = 3475, + [9459] = 9459, + [9460] = 9452, [9461] = 9461, - [9462] = 9462, - [9463] = 9423, - [9464] = 9429, - [9465] = 9424, - [9466] = 9466, - [9467] = 9439, - [9468] = 9424, - [9469] = 9420, - [9470] = 9426, - [9471] = 9420, - [9472] = 9434, - [9473] = 9439, + [9462] = 9452, + [9463] = 9452, + [9464] = 3484, + [9465] = 3488, + [9466] = 3488, + [9467] = 3491, + [9468] = 3475, + [9469] = 9452, + [9470] = 9452, + [9471] = 3475, + [9472] = 9452, + [9473] = 3884, [9474] = 9474, - [9475] = 9420, - [9476] = 9476, - [9477] = 9477, - [9478] = 9419, - [9479] = 9426, - [9480] = 9480, - [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, - [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, + [9475] = 3488, + [9476] = 2849, + [9477] = 3879, + [9478] = 9452, + [9479] = 3880, + [9480] = 9452, + [9481] = 2053, + [9482] = 3488, + [9483] = 2217, + [9484] = 9452, + [9485] = 9452, + [9486] = 9452, + [9487] = 3475, + [9488] = 3885, + [9489] = 3881, + [9490] = 9452, + [9491] = 9491, + [9492] = 3484, + [9493] = 9452, + [9494] = 2217, + [9495] = 2251, + [9496] = 3491, + [9497] = 9452, + [9498] = 3878, + [9499] = 2225, + [9500] = 3484, + [9501] = 3882, + [9502] = 4310, + [9503] = 9503, + [9504] = 9504, + [9505] = 9452, + [9506] = 9506, + [9507] = 4024, + [9508] = 9452, + [9509] = 9452, + [9510] = 3886, + [9511] = 2856, + [9512] = 3491, + [9513] = 9452, + [9514] = 9453, + [9515] = 9452, + [9516] = 9452, + [9517] = 3491, + [9518] = 3484, + [9519] = 3488, + [9520] = 3475, + [9521] = 9452, + [9522] = 3491, + [9523] = 9452, + [9524] = 4336, + [9525] = 9525, + [9526] = 9525, + [9527] = 3437, + [9528] = 9525, + [9529] = 3518, + [9530] = 9525, + [9531] = 9525, + [9532] = 9532, [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, - [9565] = 9466, - [9566] = 8241, - [9567] = 9423, - [9568] = 9439, - [9569] = 9460, - [9570] = 9423, - [9571] = 9429, - [9572] = 9423, - [9573] = 9466, - [9574] = 9428, + [9534] = 3488, + [9535] = 3432, + [9536] = 9536, + [9537] = 3491, + [9538] = 9525, + [9539] = 3929, + [9540] = 3937, + [9541] = 3938, + [9542] = 3491, + [9543] = 3444, + [9544] = 9525, + [9545] = 9545, + [9546] = 3444, + [9547] = 9533, + [9548] = 3449, + [9549] = 3475, + [9550] = 9525, + [9551] = 3411, + [9552] = 3953, + [9553] = 9553, + [9554] = 9525, + [9555] = 9555, + [9556] = 3981, + [9557] = 3891, + [9558] = 9558, + [9559] = 9525, + [9560] = 9533, + [9561] = 9525, + [9562] = 3837, + [9563] = 9545, + [9564] = 3516, + [9565] = 9525, + [9566] = 3843, + [9567] = 3484, + [9568] = 3845, + [9569] = 9525, + [9570] = 6526, + [9571] = 3488, + [9572] = 3846, + [9573] = 9525, + [9574] = 3488, [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, - [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, - [9656] = 9420, - [9657] = 9657, - [9658] = 9420, - [9659] = 9421, - [9660] = 9427, - [9661] = 9661, - [9662] = 9662, - [9663] = 9663, - [9664] = 9664, - [9665] = 9665, - [9666] = 9666, - [9667] = 3890, - [9668] = 3854, - [9669] = 312, + [9576] = 3982, + [9577] = 3491, + [9578] = 3475, + [9579] = 3501, + [9580] = 9525, + [9581] = 9581, + [9582] = 9533, + [9583] = 9525, + [9584] = 9545, + [9585] = 9585, + [9586] = 9525, + [9587] = 9533, + [9588] = 4302, + [9589] = 4315, + [9590] = 4332, + [9591] = 9525, + [9592] = 9545, + [9593] = 3484, + [9594] = 4340, + [9595] = 4343, + [9596] = 9596, + [9597] = 3484, + [9598] = 9525, + [9599] = 9533, + [9600] = 9525, + [9601] = 3437, + [9602] = 9545, + [9603] = 9525, + [9604] = 9604, + [9605] = 9525, + [9606] = 9525, + [9607] = 9607, + [9608] = 9525, + [9609] = 9545, + [9610] = 3972, + [9611] = 3849, + [9612] = 9612, + [9613] = 9533, + [9614] = 9525, + [9615] = 3500, + [9616] = 3502, + [9617] = 3503, + [9618] = 3489, + [9619] = 9525, + [9620] = 9620, + [9621] = 3907, + [9622] = 9622, + [9623] = 9525, + [9624] = 9624, + [9625] = 9525, + [9626] = 3977, + [9627] = 9627, + [9628] = 9525, + [9629] = 9629, + [9630] = 3980, + [9631] = 3836, + [9632] = 9525, + [9633] = 3889, + [9634] = 3478, + [9635] = 3487, + [9636] = 3916, + [9637] = 9525, + [9638] = 9525, + [9639] = 3432, + [9640] = 9525, + [9641] = 9525, + [9642] = 4191, + [9643] = 3512, + [9644] = 3850, + [9645] = 9525, + [9646] = 9525, + [9647] = 9525, + [9648] = 3853, + [9649] = 9649, + [9650] = 3894, + [9651] = 9525, + [9652] = 9652, + [9653] = 9525, + [9654] = 9525, + [9655] = 3449, + [9656] = 3506, + [9657] = 9545, + [9658] = 3905, + [9659] = 9659, + [9660] = 3411, + [9661] = 3475, + [9662] = 3958, + [9663] = 3975, + [9664] = 3484, + [9665] = 3488, + [9666] = 3491, + [9667] = 3475, + [9668] = 9668, + [9669] = 9525, [9670] = 9670, - [9671] = 3866, + [9671] = 9671, [9672] = 9672, - [9673] = 9673, - [9674] = 9674, - [9675] = 3881, + [9673] = 3491, + [9674] = 9671, + [9675] = 3475, [9676] = 9676, - [9677] = 9677, - [9678] = 9678, + [9677] = 3649, + [9678] = 3484, [9679] = 9679, - [9680] = 9680, - [9681] = 9681, - [9682] = 9682, - [9683] = 9676, - [9684] = 9677, + [9680] = 3484, + [9681] = 3488, + [9682] = 3491, + [9683] = 3475, + [9684] = 9684, [9685] = 9685, [9686] = 9686, - [9687] = 9674, + [9687] = 9687, [9688] = 9688, - [9689] = 9664, - [9690] = 9665, - [9691] = 9666, + [9689] = 3491, + [9690] = 3475, + [9691] = 9672, [9692] = 9692, - [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, - [9707] = 9707, - [9708] = 9678, - [9709] = 9709, - [9710] = 9679, + [9693] = 3484, + [9694] = 3488, + [9695] = 3491, + [9696] = 3475, + [9697] = 3484, + [9698] = 9672, + [9699] = 3488, + [9700] = 3491, + [9701] = 3475, + [9702] = 9671, + [9703] = 9671, + [9704] = 9672, + [9705] = 9671, + [9706] = 9671, + [9707] = 9688, + [9708] = 9671, + [9709] = 3878, + [9710] = 3488, [9711] = 9711, - [9712] = 9678, - [9713] = 9679, - [9714] = 9685, - [9715] = 9715, + [9712] = 9688, + [9713] = 9713, + [9714] = 3879, + [9715] = 9672, [9716] = 9716, - [9717] = 9676, - [9718] = 9677, + [9717] = 3488, + [9718] = 3484, [9719] = 9719, - [9720] = 9674, - [9721] = 9664, - [9722] = 9665, - [9723] = 9666, - [9724] = 9692, - [9725] = 9725, + [9720] = 9688, + [9721] = 9672, + [9722] = 3475, + [9723] = 9688, + [9724] = 9239, + [9725] = 9688, [9726] = 9726, [9727] = 9727, - [9728] = 9728, - [9729] = 9726, - [9730] = 9692, - [9731] = 9726, - [9732] = 9728, - [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, + [9728] = 3488, + [9729] = 9262, + [9730] = 9688, + [9731] = 9672, + [9732] = 3882, + [9733] = 3880, + [9734] = 3881, + [9735] = 3886, + [9736] = 3885, + [9737] = 9688, + [9738] = 9688, + [9739] = 3491, + [9740] = 9672, + [9741] = 9672, + [9742] = 9742, + [9743] = 3484, + [9744] = 3884, + [9745] = 9745, + [9746] = 9745, + [9747] = 9747, + [9748] = 9745, [9749] = 9749, - [9750] = 9686, - [9751] = 9728, - [9752] = 9752, - [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, - [9792] = 9792, - [9793] = 9672, - [9794] = 9674, - [9795] = 9664, - [9796] = 9665, - [9797] = 9666, - [9798] = 9798, - [9799] = 9799, - [9800] = 9664, - [9801] = 9665, - [9802] = 9666, - [9803] = 9674, - [9804] = 9664, - [9805] = 9665, - [9806] = 9666, - [9807] = 9807, - [9808] = 9792, - [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, - [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, - [9838] = 9838, - [9839] = 9839, - [9840] = 9840, - [9841] = 9841, - [9842] = 9842, - [9843] = 9809, - [9844] = 9810, - [9845] = 9662, - [9846] = 9688, - [9847] = 9776, - [9848] = 9816, - [9849] = 9814, - [9850] = 9850, - [9851] = 9851, - [9852] = 9852, - [9853] = 9853, - [9854] = 9853, - [9855] = 9685, - [9856] = 9856, - [9857] = 9857, + [9750] = 9750, + [9751] = 9750, + [9752] = 3916, + [9753] = 9747, + [9754] = 9747, + [9755] = 9745, + [9756] = 9756, + [9757] = 9745, + [9758] = 9745, + [9759] = 9745, + [9760] = 9745, + [9761] = 9745, + [9762] = 9747, + [9763] = 9745, + [9764] = 9575, + [9765] = 3488, + [9766] = 3432, + [9767] = 3484, + [9768] = 9768, + [9769] = 9745, + [9770] = 9770, + [9771] = 3437, + [9772] = 3488, + [9773] = 3491, + [9774] = 3432, + [9775] = 3491, + [9776] = 9612, + [9777] = 3444, + [9778] = 9756, + [9779] = 9581, + [9780] = 9745, + [9781] = 3449, + [9782] = 3444, + [9783] = 3475, + [9784] = 3411, + [9785] = 9749, + [9786] = 3484, + [9787] = 3449, + [9788] = 3475, + [9789] = 9745, + [9790] = 9745, + [9791] = 9770, + [9792] = 9747, + [9793] = 9749, + [9794] = 9750, + [9795] = 9745, + [9796] = 3411, + [9797] = 9747, + [9798] = 9756, + [9799] = 3298, + [9800] = 3916, + [9801] = 9756, + [9802] = 3176, + [9803] = 9745, + [9804] = 9804, + [9805] = 9745, + [9806] = 3183, + [9807] = 9749, + [9808] = 9770, + [9809] = 9749, + [9810] = 4065, + [9811] = 9745, + [9812] = 9745, + [9813] = 3437, + [9814] = 9745, + [9815] = 9745, + [9816] = 9745, + [9817] = 9745, + [9818] = 9745, + [9819] = 3224, + [9820] = 9756, + [9821] = 9747, + [9822] = 9745, + [9823] = 9750, + [9824] = 9770, + [9825] = 3853, + [9826] = 9756, + [9827] = 9770, + [9828] = 9804, + [9829] = 9745, + [9830] = 9745, + [9831] = 9749, + [9832] = 9745, + [9833] = 9745, + [9834] = 9756, + [9835] = 9749, + [9836] = 9745, + [9837] = 9745, + [9838] = 9750, + [9839] = 9770, + [9840] = 9745, + [9841] = 9750, + [9842] = 9596, + [9843] = 9620, + [9844] = 9745, + [9845] = 9750, + [9846] = 9745, + [9847] = 3853, + [9848] = 9848, + [9849] = 9848, + [9850] = 9848, + [9851] = 3885, + [9852] = 3885, + [9853] = 9596, + [9854] = 9848, + [9855] = 3879, + [9856] = 3878, + [9857] = 3881, [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, - [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, + [9859] = 9858, + [9860] = 9848, + [9861] = 3884, + [9862] = 3885, + [9863] = 3882, + [9864] = 9858, + [9865] = 2108, + [9866] = 9866, + [9867] = 3886, + [9868] = 2123, + [9869] = 9848, + [9870] = 9848, + [9871] = 9871, + [9872] = 9239, + [9873] = 9858, + [9874] = 9874, + [9875] = 9848, + [9876] = 2217, + [9877] = 9848, + [9878] = 9620, + [9879] = 9866, + [9880] = 9866, + [9881] = 3878, + [9882] = 3880, + [9883] = 9866, + [9884] = 3881, + [9885] = 9885, + [9886] = 9858, + [9887] = 9848, + [9888] = 3886, + [9889] = 9858, + [9890] = 9612, + [9891] = 9891, + [9892] = 9892, + [9893] = 9858, + [9894] = 9848, + [9895] = 6526, + [9896] = 3881, + [9897] = 9874, + [9898] = 3878, + [9899] = 9858, + [9900] = 9858, + [9901] = 3882, + [9902] = 9874, + [9903] = 9581, + [9904] = 9874, + [9905] = 3884, + [9906] = 9848, + [9907] = 3882, + [9908] = 9858, + [9909] = 3884, + [9910] = 9848, + [9911] = 9848, + [9912] = 9858, + [9913] = 3879, + [9914] = 9858, + [9915] = 9858, + [9916] = 3880, + [9917] = 3879, + [9918] = 9575, + [9919] = 9858, + [9920] = 9848, + [9921] = 9262, + [9922] = 3886, + [9923] = 9858, + [9924] = 9848, + [9925] = 9858, + [9926] = 9858, + [9927] = 9848, + [9928] = 9858, + [9929] = 9848, + [9930] = 3880, + [9931] = 9612, + [9932] = 4095, + [9933] = 9933, + [9934] = 9581, + [9935] = 3884, + [9936] = 9575, + [9937] = 9937, [9938] = 9938, - [9939] = 9665, - [9940] = 9776, - [9941] = 9666, - [9942] = 9816, - [9943] = 9943, - [9944] = 9814, - [9945] = 9945, - [9946] = 9946, - [9947] = 9850, - [9948] = 9674, - [9949] = 9678, - [9950] = 9679, - [9951] = 9830, + [9939] = 3881, + [9940] = 3879, + [9941] = 9620, + [9942] = 4065, + [9943] = 3882, + [9944] = 3884, + [9945] = 3880, + [9946] = 3878, + [9947] = 9947, + [9948] = 3879, + [9949] = 9949, + [9950] = 9950, + [9951] = 2199, [9952] = 9952, - [9953] = 9833, - [9954] = 9954, - [9955] = 9838, - [9956] = 9686, + [9953] = 3475, + [9954] = 3878, + [9955] = 9955, + [9956] = 9956, [9957] = 9957, - [9958] = 9958, - [9959] = 9711, - [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, + [9958] = 3885, + [9959] = 9596, + [9960] = 3488, + [9961] = 9961, + [9962] = 3881, + [9963] = 3882, + [9964] = 3885, + [9965] = 3886, + [9966] = 3886, + [9967] = 9967, + [9968] = 3491, + [9969] = 3880, + [9970] = 3484, + [9971] = 9971, + [9972] = 9971, + [9973] = 9971, + [9974] = 3882, + [9975] = 9975, + [9976] = 9976, + [9977] = 9977, + [9978] = 3884, + [9979] = 9979, + [9980] = 3884, + [9981] = 2046, + [9982] = 2052, + [9983] = 2225, + [9984] = 9971, + [9985] = 9985, + [9986] = 9986, + [9987] = 9977, + [9988] = 9971, + [9989] = 3878, + [9990] = 9990, + [9991] = 9991, + [9992] = 3879, + [9993] = 3880, + [9994] = 9971, + [9995] = 3881, + [9996] = 9971, + [9997] = 9997, + [9998] = 9998, + [9999] = 9971, + [10000] = 9612, + [10001] = 9971, + [10002] = 10002, + [10003] = 10003, + [10004] = 10004, + [10005] = 9977, + [10006] = 10006, + [10007] = 2054, + [10008] = 10008, + [10009] = 9581, [10010] = 10010, - [10011] = 9711, - [10012] = 10012, + [10011] = 10011, + [10012] = 10002, [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, - [10026] = 10026, - [10027] = 9694, - [10028] = 9719, - [10029] = 10029, - [10030] = 10030, + [10014] = 3885, + [10015] = 3886, + [10016] = 9977, + [10017] = 9971, + [10018] = 10018, + [10019] = 2048, + [10020] = 10002, + [10021] = 9620, + [10022] = 3879, + [10023] = 9977, + [10024] = 10024, + [10025] = 9977, + [10026] = 9971, + [10027] = 3880, + [10028] = 3881, + [10029] = 9991, + [10030] = 9991, [10031] = 10031, - [10032] = 9938, - [10033] = 10033, - [10034] = 10034, - [10035] = 9833, - [10036] = 10036, - [10037] = 9938, - [10038] = 9836, - [10039] = 9853, - [10040] = 9678, - [10041] = 9679, + [10032] = 10002, + [10033] = 2050, + [10034] = 3885, + [10035] = 10002, + [10036] = 2251, + [10037] = 10002, + [10038] = 3886, + [10039] = 10039, + [10040] = 3885, + [10041] = 10041, [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, - [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, - [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, + [10043] = 3878, + [10044] = 9971, + [10045] = 2049, + [10046] = 2051, + [10047] = 3879, + [10048] = 9971, + [10049] = 3882, + [10050] = 9971, + [10051] = 10002, + [10052] = 3884, + [10053] = 9971, + [10054] = 3882, + [10055] = 3878, + [10056] = 9991, + [10057] = 9575, + [10058] = 3881, + [10059] = 9977, + [10060] = 3880, + [10061] = 9971, + [10062] = 3886, + [10063] = 9596, + [10064] = 2157, + [10065] = 3878, + [10066] = 10066, + [10067] = 10066, + [10068] = 2163, + [10069] = 10069, + [10070] = 2159, + [10071] = 3882, + [10072] = 3885, + [10073] = 3886, + [10074] = 10074, + [10075] = 3879, + [10076] = 2155, + [10077] = 3880, + [10078] = 2168, + [10079] = 3444, + [10080] = 2162, + [10081] = 2169, + [10082] = 2170, + [10083] = 2251, + [10084] = 2172, + [10085] = 3881, + [10086] = 2166, + [10087] = 10087, + [10088] = 10088, + [10089] = 2173, + [10090] = 3411, + [10091] = 3882, + [10092] = 3884, + [10093] = 3884, + [10094] = 3885, + [10095] = 2217, + [10096] = 3886, + [10097] = 3449, + [10098] = 10098, + [10099] = 2167, + [10100] = 3432, + [10101] = 3437, + [10102] = 9581, + [10103] = 3879, + [10104] = 10104, + [10105] = 9620, + [10106] = 3885, + [10107] = 10107, + [10108] = 3880, + [10109] = 10107, + [10110] = 10110, + [10111] = 3878, + [10112] = 9612, + [10113] = 3884, + [10114] = 10104, + [10115] = 2212, + [10116] = 10104, + [10117] = 9575, + [10118] = 10118, + [10119] = 10110, + [10120] = 3886, + [10121] = 10121, + [10122] = 9596, + [10123] = 10104, + [10124] = 3882, + [10125] = 10107, + [10126] = 3881, + [10127] = 2206, + [10128] = 10110, + [10129] = 10110, + [10130] = 10107, + [10131] = 10131, + [10132] = 10132, [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, + [10134] = 10134, + [10135] = 9684, + [10136] = 10131, + [10137] = 10134, + [10138] = 3886, + [10139] = 10134, + [10140] = 10131, + [10141] = 10131, + [10142] = 2209, + [10143] = 3882, + [10144] = 3882, + [10145] = 10145, + [10146] = 3884, + [10147] = 10147, + [10148] = 9727, + [10149] = 3884, [10150] = 10150, - [10151] = 9814, - [10152] = 10152, - [10153] = 3913, - [10154] = 9682, - [10155] = 9792, + [10151] = 10151, + [10152] = 3882, + [10153] = 9676, + [10154] = 3886, + [10155] = 10147, [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, - [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, - [10185] = 10185, - [10186] = 9823, - [10187] = 9715, - [10188] = 9810, + [10157] = 3884, + [10158] = 10131, + [10159] = 10159, + [10160] = 10134, + [10161] = 3885, + [10162] = 3885, + [10163] = 10131, + [10164] = 10131, + [10165] = 10156, + [10166] = 10166, + [10167] = 10134, + [10168] = 10156, + [10169] = 10145, + [10170] = 10170, + [10171] = 10171, + [10172] = 10131, + [10173] = 10131, + [10174] = 10147, + [10175] = 10175, + [10176] = 10176, + [10177] = 9711, + [10178] = 10178, + [10179] = 10179, + [10180] = 10131, + [10181] = 10181, + [10182] = 10176, + [10183] = 3885, + [10184] = 10145, + [10185] = 10134, + [10186] = 10186, + [10187] = 10147, + [10188] = 10156, [10189] = 10189, - [10190] = 9777, - [10191] = 9807, - [10192] = 9686, - [10193] = 9678, - [10194] = 9679, - [10195] = 9836, + [10190] = 10176, + [10191] = 10191, + [10192] = 10131, + [10193] = 10193, + [10194] = 10194, + [10195] = 3886, [10196] = 10196, - [10197] = 9694, - [10198] = 10198, - [10199] = 10199, - [10200] = 9815, + [10197] = 10176, + [10198] = 10134, + [10199] = 10145, + [10200] = 10200, [10201] = 10201, - [10202] = 9676, - [10203] = 9677, - [10204] = 10204, - [10205] = 9674, - [10206] = 3876, - [10207] = 10207, + [10202] = 10202, + [10203] = 10203, + [10204] = 9686, + [10205] = 10205, + [10206] = 10206, + [10207] = 10206, [10208] = 10208, [10209] = 10209, [10210] = 10210, - [10211] = 10211, - [10212] = 10212, + [10211] = 10205, + [10212] = 10210, [10213] = 10213, - [10214] = 10214, - [10215] = 10215, - [10216] = 10216, - [10217] = 10217, + [10214] = 3881, + [10215] = 10210, + [10216] = 10213, + [10217] = 10213, [10218] = 10218, - [10219] = 10219, - [10220] = 10220, - [10221] = 10221, + [10219] = 3879, + [10220] = 10209, + [10221] = 10206, [10222] = 10222, [10223] = 10223, - [10224] = 10222, - [10225] = 10225, + [10224] = 10224, + [10225] = 10222, [10226] = 10226, - [10227] = 10226, + [10227] = 10222, [10228] = 10228, - [10229] = 10229, - [10230] = 10230, - [10231] = 10231, - [10232] = 10232, - [10233] = 10233, - [10234] = 10226, - [10235] = 10235, - [10236] = 10216, - [10237] = 10237, - [10238] = 10215, - [10239] = 10228, - [10240] = 10209, - [10241] = 10241, - [10242] = 10241, - [10243] = 10208, - [10244] = 10244, - [10245] = 10245, - [10246] = 10246, + [10229] = 3884, + [10230] = 10224, + [10231] = 10209, + [10232] = 10209, + [10233] = 10206, + [10234] = 10218, + [10235] = 3886, + [10236] = 10210, + [10237] = 3882, + [10238] = 10222, + [10239] = 10213, + [10240] = 10205, + [10241] = 2216, + [10242] = 10208, + [10243] = 10209, + [10244] = 10226, + [10245] = 10206, + [10246] = 2191, [10247] = 10247, - [10248] = 10230, - [10249] = 10245, - [10250] = 10250, - [10251] = 10251, - [10252] = 10252, - [10253] = 10228, - [10254] = 10211, - [10255] = 10255, + [10248] = 10206, + [10249] = 10249, + [10250] = 10222, + [10251] = 10222, + [10252] = 3880, + [10253] = 10218, + [10254] = 10254, + [10255] = 3878, [10256] = 10256, - [10257] = 10214, - [10258] = 10258, - [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, - [10273] = 10273, - [10274] = 10226, - [10275] = 10237, - [10276] = 10216, - [10277] = 10255, - [10278] = 10217, - [10279] = 10252, - [10280] = 10280, - [10281] = 10244, - [10282] = 10233, - [10283] = 10283, - [10284] = 10235, - [10285] = 10285, - [10286] = 10280, - [10287] = 10215, + [10257] = 10257, + [10258] = 10209, + [10259] = 10206, + [10260] = 10226, + [10261] = 10261, + [10262] = 10208, + [10263] = 10226, + [10264] = 10213, + [10265] = 10208, + [10266] = 10206, + [10267] = 3885, + [10268] = 2213, + [10269] = 10269, + [10270] = 10270, + [10271] = 10213, + [10272] = 10272, + [10273] = 10206, + [10274] = 10218, + [10275] = 10208, + [10276] = 10276, + [10277] = 10209, + [10278] = 10222, + [10279] = 10213, + [10280] = 10222, + [10281] = 10213, + [10282] = 10222, + [10283] = 10226, + [10284] = 10205, + [10285] = 10213, + [10286] = 10286, + [10287] = 10287, [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, + [10290] = 10290, + [10291] = 10291, + [10292] = 10292, + [10293] = 4065, + [10294] = 10292, + [10295] = 10295, + [10296] = 10292, + [10297] = 10292, + [10298] = 10295, + [10299] = 10292, + [10300] = 10300, + [10301] = 10301, + [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, + [10304] = 10304, + [10305] = 10292, + [10306] = 10292, + [10307] = 10307, + [10308] = 10292, + [10309] = 10309, + [10310] = 10292, + [10311] = 10292, + [10312] = 10312, + [10313] = 10313, + [10314] = 10292, + [10315] = 10292, + [10316] = 10316, + [10317] = 10317, + [10318] = 10292, + [10319] = 10290, + [10320] = 10292, + [10321] = 10292, + [10322] = 10322, + [10323] = 4065, + [10324] = 10292, + [10325] = 10292, + [10326] = 10316, + [10327] = 10292, + [10328] = 10292, + [10329] = 10292, + [10330] = 10292, + [10331] = 10292, + [10332] = 10317, + [10333] = 10292, + [10334] = 10292, + [10335] = 10292, + [10336] = 10290, + [10337] = 10292, + [10338] = 10338, + [10339] = 10292, + [10340] = 10292, + [10341] = 10295, + [10342] = 10287, + [10343] = 10343, + [10344] = 10292, + [10345] = 9885, + [10346] = 9871, + [10347] = 10295, + [10348] = 10348, + [10349] = 3882, + [10350] = 3878, + [10351] = 3884, + [10352] = 10352, [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, + [10354] = 3885, + [10355] = 10355, + [10356] = 3886, + [10357] = 10357, + [10358] = 10358, + [10359] = 10359, + [10360] = 10360, + [10361] = 10290, + [10362] = 10292, + [10363] = 10295, + [10364] = 3879, + [10365] = 3880, + [10366] = 10292, + [10367] = 10286, + [10368] = 10312, + [10369] = 10313, + [10370] = 10370, + [10371] = 10371, + [10372] = 10290, + [10373] = 10290, + [10374] = 3881, + [10375] = 10292, + [10376] = 10295, + [10377] = 10295, + [10378] = 10301, + [10379] = 10303, + [10380] = 10304, + [10381] = 10286, + [10382] = 10312, + [10383] = 10313, + [10384] = 10316, + [10385] = 10317, + [10386] = 10301, + [10387] = 10303, + [10388] = 10290, + [10389] = 10304, + [10390] = 10287, + [10391] = 10292, + [10392] = 10287, + [10393] = 10287, + [10394] = 10287, + [10395] = 10395, [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, - [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, - [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, - [10494] = 10216, - [10495] = 10245, - [10496] = 10496, - [10497] = 10459, - [10498] = 10365, - [10499] = 10251, - [10500] = 10314, - [10501] = 10218, - [10502] = 10502, - [10503] = 10219, - [10504] = 10209, - [10505] = 10245, + [10397] = 10397, + [10398] = 10398, + [10399] = 10399, + [10400] = 10396, + [10401] = 10401, + [10402] = 10402, + [10403] = 10403, + [10404] = 10402, + [10405] = 10402, + [10406] = 10397, + [10407] = 10403, + [10408] = 10401, + [10409] = 10402, + [10410] = 10401, + [10411] = 10402, + [10412] = 10412, + [10413] = 10402, + [10414] = 10414, + [10415] = 10402, + [10416] = 10416, + [10417] = 10399, + [10418] = 10402, + [10419] = 10402, + [10420] = 10420, + [10421] = 10421, + [10422] = 10402, + [10423] = 10423, + [10424] = 10424, + [10425] = 10402, + [10426] = 10398, + [10427] = 10396, + [10428] = 10397, + [10429] = 10399, + [10430] = 10402, + [10431] = 10431, + [10432] = 10402, + [10433] = 10401, + [10434] = 10402, + [10435] = 10402, + [10436] = 3916, + [10437] = 10402, + [10438] = 10438, + [10439] = 10402, + [10440] = 10402, + [10441] = 10402, + [10442] = 10397, + [10443] = 10443, + [10444] = 10402, + [10445] = 10412, + [10446] = 10399, + [10447] = 10447, + [10448] = 10402, + [10449] = 10399, + [10450] = 3509, + [10451] = 10403, + [10452] = 10398, + [10453] = 10401, + [10454] = 10420, + [10455] = 10420, + [10456] = 10397, + [10457] = 10398, + [10458] = 10396, + [10459] = 9262, + [10460] = 10403, + [10461] = 10397, + [10462] = 10416, + [10463] = 10401, + [10464] = 10402, + [10465] = 10402, + [10466] = 10403, + [10467] = 10416, + [10468] = 10403, + [10469] = 10469, + [10470] = 10402, + [10471] = 10412, + [10472] = 10399, + [10473] = 10402, + [10474] = 10403, + [10475] = 10420, + [10476] = 10402, + [10477] = 10412, + [10478] = 10398, + [10479] = 10396, + [10480] = 10402, + [10481] = 10420, + [10482] = 10402, + [10483] = 10398, + [10484] = 10396, + [10485] = 10485, + [10486] = 10412, + [10487] = 10402, + [10488] = 10397, + [10489] = 10401, + [10490] = 10447, + [10491] = 10412, + [10492] = 10492, + [10493] = 4065, + [10494] = 10412, + [10495] = 10402, + [10496] = 10399, + [10497] = 10412, + [10498] = 10397, + [10499] = 10412, + [10500] = 10412, + [10501] = 10402, + [10502] = 10412, + [10503] = 10401, + [10504] = 10412, + [10505] = 10412, [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, + [10507] = 10420, + [10508] = 10403, + [10509] = 10420, + [10510] = 2266, + [10511] = 2267, + [10512] = 2283, + [10513] = 2271, + [10514] = 2288, + [10515] = 2291, + [10516] = 2274, + [10517] = 2282, + [10518] = 2284, + [10519] = 2286, + [10520] = 10420, [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, - [10537] = 10537, - [10538] = 10235, - [10539] = 10232, - [10540] = 10235, - [10541] = 10209, - [10542] = 10280, - [10543] = 10288, - [10544] = 10215, - [10545] = 10228, - [10546] = 10365, + [10522] = 2292, + [10523] = 2265, + [10524] = 10398, + [10525] = 10398, + [10526] = 10396, + [10527] = 10396, + [10528] = 10402, + [10529] = 10397, + [10530] = 10401, + [10531] = 10397, + [10532] = 10402, + [10533] = 4065, + [10534] = 10399, + [10535] = 10402, + [10536] = 10399, + [10537] = 4045, + [10538] = 10398, + [10539] = 3853, + [10540] = 10396, + [10541] = 10541, + [10542] = 10403, + [10543] = 10543, + [10544] = 10447, + [10545] = 10420, + [10546] = 10420, [10547] = 10547, - [10548] = 10256, - [10549] = 10225, - [10550] = 10365, + [10548] = 10547, + [10549] = 10549, + [10550] = 10550, [10551] = 10551, - [10552] = 10241, - [10553] = 10251, - [10554] = 10221, - [10555] = 10244, + [10552] = 10552, + [10553] = 10553, + [10554] = 10554, + [10555] = 10555, [10556] = 10556, - [10557] = 10207, + [10557] = 10550, [10558] = 10558, - [10559] = 10255, + [10559] = 10559, [10560] = 10560, - [10561] = 10207, - [10562] = 10562, - [10563] = 10252, + [10561] = 10561, + [10562] = 10552, + [10563] = 10555, [10564] = 10564, - [10565] = 10207, - [10566] = 10230, - [10567] = 10280, - [10568] = 10288, + [10565] = 10556, + [10566] = 10556, + [10567] = 10567, + [10568] = 10551, [10569] = 10569, - [10570] = 10335, - [10571] = 10365, - [10572] = 10216, - [10573] = 10280, - [10574] = 10288, - [10575] = 10228, + [10570] = 10555, + [10571] = 10556, + [10572] = 10556, + [10573] = 10561, + [10574] = 10561, + [10575] = 10547, [10576] = 10576, - [10577] = 10521, - [10578] = 10578, + [10577] = 10547, + [10578] = 10554, [10579] = 10579, - [10580] = 10219, - [10581] = 10581, + [10580] = 10580, + [10581] = 10547, [10582] = 10582, - [10583] = 10231, - [10584] = 10521, - [10585] = 10250, + [10583] = 10583, + [10584] = 10584, + [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, + [10587] = 10560, + [10588] = 10588, + [10589] = 10556, + [10590] = 10590, + [10591] = 10588, + [10592] = 10556, + [10593] = 10593, + [10594] = 10561, + [10595] = 10554, + [10596] = 10552, + [10597] = 10561, + [10598] = 10598, + [10599] = 10599, + [10600] = 10600, + [10601] = 10555, + [10602] = 10585, + [10603] = 10547, + [10604] = 10604, + [10605] = 10605, + [10606] = 10564, + [10607] = 10555, + [10608] = 10608, + [10609] = 10556, + [10610] = 10564, + [10611] = 10556, + [10612] = 10585, + [10613] = 10561, + [10614] = 10561, + [10615] = 10556, + [10616] = 10561, + [10617] = 10560, + [10618] = 10585, + [10619] = 9262, [10620] = 10620, - [10621] = 10252, - [10622] = 10235, - [10623] = 10280, - [10624] = 10288, - [10625] = 10210, - [10626] = 10241, - [10627] = 10627, - [10628] = 10628, + [10621] = 10561, + [10622] = 10551, + [10623] = 10564, + [10624] = 10547, + [10625] = 10553, + [10626] = 10564, + [10627] = 10559, + [10628] = 10547, [10629] = 10629, - [10630] = 10630, - [10631] = 10631, - [10632] = 10632, - [10633] = 10633, - [10634] = 10634, + [10630] = 10629, + [10631] = 10550, + [10632] = 10564, + [10633] = 10559, + [10634] = 10554, [10635] = 10635, - [10636] = 10636, - [10637] = 10637, - [10638] = 10638, - [10639] = 10639, - [10640] = 10640, - [10641] = 10641, - [10642] = 10642, - [10643] = 10643, - [10644] = 10641, - [10645] = 10645, - [10646] = 10642, - [10647] = 10647, - [10648] = 10648, - [10649] = 10649, - [10650] = 10650, - [10651] = 10651, - [10652] = 10652, - [10653] = 10653, - [10654] = 10654, - [10655] = 10655, - [10656] = 10656, - [10657] = 10657, - [10658] = 10658, - [10659] = 10636, + [10636] = 10547, + [10637] = 10560, + [10638] = 4065, + [10639] = 10593, + [10640] = 10555, + [10641] = 10556, + [10642] = 10556, + [10643] = 10550, + [10644] = 10644, + [10645] = 10561, + [10646] = 10554, + [10647] = 10555, + [10648] = 10588, + [10649] = 10553, + [10650] = 10559, + [10651] = 10547, + [10652] = 10629, + [10653] = 10547, + [10654] = 10551, + [10655] = 10556, + [10656] = 10554, + [10657] = 10555, + [10658] = 10556, + [10659] = 10561, [10660] = 10660, - [10661] = 10661, - [10662] = 10662, - [10663] = 10663, + [10661] = 10553, + [10662] = 10588, + [10663] = 10547, [10664] = 10664, [10665] = 10665, - [10666] = 10666, - [10667] = 10667, - [10668] = 10668, - [10669] = 10669, - [10670] = 10628, - [10671] = 10642, - [10672] = 10672, - [10673] = 10673, - [10674] = 10674, - [10675] = 10675, - [10676] = 10676, - [10677] = 10677, - [10678] = 10639, - [10679] = 10662, - [10680] = 10680, - [10681] = 10635, - [10682] = 10682, - [10683] = 10683, + [10666] = 10629, + [10667] = 10556, + [10668] = 10564, + [10669] = 10552, + [10670] = 10556, + [10671] = 10560, + [10672] = 10553, + [10673] = 10550, + [10674] = 10552, + [10675] = 10559, + [10676] = 10629, + [10677] = 10555, + [10678] = 10561, + [10679] = 10561, + [10680] = 10561, + [10681] = 10553, + [10682] = 10561, + [10683] = 10585, [10684] = 10684, - [10685] = 10685, - [10686] = 10686, + [10685] = 10588, + [10686] = 10629, [10687] = 10687, - [10688] = 10688, - [10689] = 10689, - [10690] = 10690, - [10691] = 10691, - [10692] = 10692, - [10693] = 10693, - [10694] = 10694, - [10695] = 10695, - [10696] = 10642, - [10697] = 10647, - [10698] = 10698, - [10699] = 10665, - [10700] = 10700, + [10688] = 10588, + [10689] = 10551, + [10690] = 10555, + [10691] = 10556, + [10692] = 10551, + [10693] = 10553, + [10694] = 10585, + [10695] = 10550, + [10696] = 10559, + [10697] = 10556, + [10698] = 10553, + [10699] = 10547, + [10700] = 10554, [10701] = 10701, - [10702] = 10702, - [10703] = 10703, - [10704] = 10674, - [10705] = 10705, - [10706] = 10706, - [10707] = 10707, - [10708] = 10708, - [10709] = 10709, - [10710] = 10710, - [10711] = 10674, - [10712] = 10674, - [10713] = 10668, - [10714] = 10714, - [10715] = 10649, - [10716] = 10716, - [10717] = 10656, - [10718] = 10718, - [10719] = 10719, - [10720] = 10720, - [10721] = 10640, - [10722] = 10722, - [10723] = 10689, - [10724] = 10660, - [10725] = 10725, - [10726] = 10726, - [10727] = 10651, - [10728] = 10688, - [10729] = 10729, - [10730] = 10730, - [10731] = 10731, - [10732] = 10732, - [10733] = 10664, - [10734] = 10734, + [10702] = 10564, + [10703] = 10550, + [10704] = 10559, + [10705] = 10547, + [10706] = 10556, + [10707] = 10555, + [10708] = 10547, + [10709] = 10564, + [10710] = 10559, + [10711] = 10555, + [10712] = 10556, + [10713] = 10713, + [10714] = 10554, + [10715] = 10556, + [10716] = 10560, + [10717] = 10547, + [10718] = 10564, + [10719] = 10555, + [10720] = 10564, + [10721] = 10555, + [10722] = 10561, + [10723] = 10556, + [10724] = 10559, + [10725] = 10556, + [10726] = 10547, + [10727] = 10599, + [10728] = 10561, + [10729] = 10556, + [10730] = 10635, + [10731] = 10593, + [10732] = 10561, + [10733] = 10556, + [10734] = 10560, [10735] = 10735, - [10736] = 10736, - [10737] = 10635, + [10736] = 10556, + [10737] = 10569, [10738] = 10738, - [10739] = 10628, - [10740] = 10667, - [10741] = 10741, - [10742] = 10742, - [10743] = 10743, - [10744] = 10744, - [10745] = 10745, - [10746] = 10661, - [10747] = 10747, - [10748] = 10748, - [10749] = 10630, - [10750] = 10750, - [10751] = 10751, - [10752] = 10752, - [10753] = 10753, - [10754] = 10754, - [10755] = 10734, - [10756] = 10652, - [10757] = 10658, - [10758] = 10758, - [10759] = 10706, - [10760] = 10667, - [10761] = 10709, - [10762] = 10762, - [10763] = 10730, - [10764] = 10691, - [10765] = 10765, - [10766] = 10766, - [10767] = 10700, - [10768] = 10768, - [10769] = 10695, - [10770] = 10628, - [10771] = 10771, - [10772] = 10772, - [10773] = 2757, - [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, - [10789] = 10789, - [10790] = 10654, - [10791] = 10791, - [10792] = 10792, - [10793] = 10662, - [10794] = 10653, - [10795] = 10795, + [10739] = 10547, + [10740] = 10740, + [10741] = 10561, + [10742] = 10564, + [10743] = 10585, + [10744] = 10735, + [10745] = 10564, + [10746] = 10551, + [10747] = 10561, + [10748] = 10564, + [10749] = 10559, + [10750] = 10588, + [10751] = 10556, + [10752] = 10547, + [10753] = 10555, + [10754] = 10564, + [10755] = 10555, + [10756] = 10735, + [10757] = 10547, + [10758] = 10599, + [10759] = 10635, + [10760] = 10569, + [10761] = 10599, + [10762] = 10569, + [10763] = 10556, + [10764] = 10599, + [10765] = 10569, + [10766] = 10556, + [10767] = 10599, + [10768] = 10569, + [10769] = 10561, + [10770] = 10599, + [10771] = 10569, + [10772] = 10599, + [10773] = 10569, + [10774] = 10551, + [10775] = 10564, + [10776] = 10599, + [10777] = 10553, + [10778] = 10559, + [10779] = 10564, + [10780] = 10547, + [10781] = 10561, + [10782] = 10555, + [10783] = 10559, + [10784] = 10552, + [10785] = 10555, + [10786] = 10551, + [10787] = 10787, + [10788] = 10550, + [10789] = 10564, + [10790] = 10790, + [10791] = 10559, + [10792] = 10564, + [10793] = 10559, + [10794] = 10547, + [10795] = 10547, [10796] = 10796, - [10797] = 10653, - [10798] = 10665, - [10799] = 10643, - [10800] = 10641, - [10801] = 10645, - [10802] = 10642, - [10803] = 8155, - [10804] = 10675, - [10805] = 10676, - [10806] = 10668, - [10807] = 10636, - [10808] = 10648, - [10809] = 10809, - [10810] = 10685, - [10811] = 10686, - [10812] = 10766, - [10813] = 10765, - [10814] = 10689, - [10815] = 10719, + [10797] = 10550, + [10798] = 10550, + [10799] = 10554, + [10800] = 10735, + [10801] = 10564, + [10802] = 10555, + [10803] = 10555, + [10804] = 10569, + [10805] = 10629, + [10806] = 10556, + [10807] = 10550, + [10808] = 10561, + [10809] = 10555, + [10810] = 10810, + [10811] = 10564, + [10812] = 10812, + [10813] = 10813, + [10814] = 10814, + [10815] = 10815, [10816] = 10816, [10817] = 10817, - [10818] = 10692, - [10819] = 10654, - [10820] = 10734, + [10818] = 10818, + [10819] = 10819, + [10820] = 10820, [10821] = 10821, - [10822] = 10627, - [10823] = 10720, - [10824] = 10640, - [10825] = 10725, + [10822] = 10822, + [10823] = 10823, + [10824] = 10824, + [10825] = 10825, [10826] = 10826, - [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, - [10844] = 10844, - [10845] = 10660, - [10846] = 10635, - [10847] = 10847, - [10848] = 10695, - [10849] = 10695, - [10850] = 10850, + [10827] = 10814, + [10828] = 10819, + [10829] = 10815, + [10830] = 10816, + [10831] = 10817, + [10832] = 10820, + [10833] = 10833, + [10834] = 10825, + [10835] = 10821, + [10836] = 10836, + [10837] = 10837, + [10838] = 10838, + [10839] = 10839, + [10840] = 10821, + [10841] = 10814, + [10842] = 10839, + [10843] = 10815, + [10844] = 10816, + [10845] = 10817, + [10846] = 10815, + [10847] = 10816, + [10848] = 10817, + [10849] = 10849, + [10850] = 10815, [10851] = 10851, - [10852] = 10784, - [10853] = 10853, - [10854] = 10636, - [10855] = 10628, - [10856] = 10856, + [10852] = 10852, + [10853] = 10812, + [10854] = 10854, + [10855] = 10855, + [10856] = 10816, [10857] = 10857, [10858] = 10858, - [10859] = 10705, - [10860] = 10734, - [10861] = 10861, - [10862] = 10664, + [10859] = 10817, + [10860] = 10860, + [10861] = 10851, + [10862] = 10852, [10863] = 10863, - [10864] = 10645, - [10865] = 10692, - [10866] = 10648, - [10867] = 10867, + [10864] = 10814, + [10865] = 10815, + [10866] = 10816, + [10867] = 10817, [10868] = 10868, - [10869] = 10634, - [10870] = 10654, - [10871] = 10772, - [10872] = 9202, - [10873] = 10774, - [10874] = 10851, - [10875] = 10653, - [10876] = 10680, + [10869] = 10869, + [10870] = 10870, + [10871] = 10871, + [10872] = 10872, + [10873] = 10873, + [10874] = 10823, + [10875] = 10812, + [10876] = 10814, [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, - [10893] = 10893, - [10894] = 10894, - [10895] = 10649, + [10878] = 10815, + [10879] = 10816, + [10880] = 10817, + [10881] = 10881, + [10882] = 10882, + [10883] = 10819, + [10884] = 10822, + [10885] = 10885, + [10886] = 10886, + [10887] = 10814, + [10888] = 10870, + [10889] = 10871, + [10890] = 10814, + [10891] = 10851, + [10892] = 10815, + [10893] = 10816, + [10894] = 10817, + [10895] = 10895, [10896] = 10896, [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, - [10913] = 10913, - [10914] = 10914, - [10915] = 10661, - [10916] = 10628, - [10917] = 10662, - [10918] = 10661, - [10919] = 10662, - [10920] = 10665, - [10921] = 10668, - [10922] = 10665, - [10923] = 10645, - [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, + [10898] = 10886, + [10899] = 10899, + [10900] = 10900, + [10901] = 10901, + [10902] = 10852, + [10903] = 10854, + [10904] = 10904, + [10905] = 10855, + [10906] = 10814, + [10907] = 10815, + [10908] = 10816, + [10909] = 10817, + [10910] = 10858, + [10911] = 10895, + [10912] = 10863, + [10913] = 10868, + [10914] = 10838, + [10915] = 10821, + [10916] = 10854, + [10917] = 10822, + [10918] = 10896, + [10919] = 10814, + [10920] = 10815, + [10921] = 10816, + [10922] = 10817, + [10923] = 10923, + [10924] = 10924, + [10925] = 10925, + [10926] = 10899, + [10927] = 10927, + [10928] = 10928, + [10929] = 10839, + [10930] = 10814, + [10931] = 10815, + [10932] = 10816, + [10933] = 10817, + [10934] = 10132, + [10935] = 10860, + [10936] = 10820, [10937] = 10937, - [10938] = 10750, - [10939] = 10832, - [10940] = 10664, - [10941] = 10675, - [10942] = 10691, - [10943] = 10774, - [10944] = 10731, - [10945] = 10714, - [10946] = 10685, - [10947] = 10686, - [10948] = 10948, - [10949] = 10725, - [10950] = 10732, - [10951] = 10877, + [10938] = 10821, + [10939] = 10839, + [10940] = 10815, + [10941] = 10814, + [10942] = 10815, + [10943] = 10816, + [10944] = 10817, + [10945] = 10826, + [10946] = 10839, + [10947] = 10816, + [10948] = 10817, + [10949] = 10924, + [10950] = 10872, + [10951] = 10851, [10952] = 10952, - [10953] = 10816, - [10954] = 10664, - [10955] = 10664, - [10956] = 10853, - [10957] = 10743, - [10958] = 10666, - [10959] = 10897, - [10960] = 10635, - [10961] = 10961, - [10962] = 10653, - [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, + [10953] = 10852, + [10954] = 10814, + [10955] = 10815, + [10956] = 10816, + [10957] = 10817, + [10958] = 10812, + [10959] = 10854, + [10960] = 10960, + [10961] = 10860, + [10962] = 10924, + [10963] = 10925, + [10964] = 10964, + [10965] = 10965, + [10966] = 10814, + [10967] = 10815, + [10968] = 10816, + [10969] = 10817, + [10970] = 10970, + [10971] = 10814, + [10972] = 10815, + [10973] = 10816, + [10974] = 10817, + [10975] = 10900, + [10976] = 10860, + [10977] = 10814, + [10978] = 10815, + [10979] = 10816, + [10980] = 10817, [10981] = 10981, - [10982] = 10982, - [10983] = 10653, - [10984] = 10654, - [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, + [10982] = 10815, + [10983] = 10881, + [10984] = 10814, + [10985] = 10815, + [10986] = 10816, + [10987] = 10817, + [10988] = 10882, + [10989] = 10819, + [10990] = 10822, + [10991] = 10814, + [10992] = 10815, + [10993] = 10816, + [10994] = 10817, + [10995] = 10870, + [10996] = 10871, + [10997] = 10814, + [10998] = 10815, + [10999] = 10816, + [11000] = 10817, + [11001] = 10895, + [11002] = 10814, + [11003] = 10815, + [11004] = 10816, + [11005] = 10817, + [11006] = 10885, [11007] = 11007, - [11008] = 10743, + [11008] = 10838, [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, + [11010] = 10816, + [11011] = 11011, + [11012] = 10817, + [11013] = 10823, + [11014] = 10901, + [11015] = 11015, + [11016] = 10869, + [11017] = 10925, + [11018] = 10924, + [11019] = 10925, + [11020] = 10964, + [11021] = 11021, + [11022] = 11022, + [11023] = 11023, + [11024] = 11021, + [11025] = 11022, [11026] = 11026, - [11027] = 8230, - [11028] = 10642, - [11029] = 10675, - [11030] = 10982, - [11031] = 10686, - [11032] = 10716, - [11033] = 10647, - [11034] = 10730, - [11035] = 10651, - [11036] = 10674, - [11037] = 10893, - [11038] = 11038, - [11039] = 11039, - [11040] = 10674, - [11041] = 10714, - [11042] = 10628, - [11043] = 10661, - [11044] = 10674, - [11045] = 11045, - [11046] = 10648, - [11047] = 10654, - [11048] = 11048, - [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, + [11027] = 11023, + [11028] = 11028, + [11029] = 11029, + [11030] = 11030, + [11031] = 10860, + [11032] = 11029, + [11033] = 11033, + [11034] = 10895, + [11035] = 11035, + [11036] = 11029, + [11037] = 10826, + [11038] = 10924, + [11039] = 10925, + [11040] = 10826, + [11041] = 4226, + [11042] = 11028, + [11043] = 11015, + [11044] = 10924, + [11045] = 10925, + [11046] = 10881, + [11047] = 10881, + [11048] = 10863, + [11049] = 10868, + [11050] = 10872, + [11051] = 10882, + [11052] = 304, + [11053] = 10869, + [11054] = 11054, + [11055] = 10815, + [11056] = 10819, + [11057] = 10885, + [11058] = 10822, + [11059] = 11059, + [11060] = 10814, + [11061] = 11061, + [11062] = 10886, + [11063] = 10899, + [11064] = 10900, + [11065] = 10901, + [11066] = 10885, [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, - [11086] = 11086, - [11087] = 10651, - [11088] = 10775, - [11089] = 11089, - [11090] = 10654, - [11091] = 10686, - [11092] = 11092, - [11093] = 11093, - [11094] = 11094, - [11095] = 10654, - [11096] = 10686, - [11097] = 10665, + [11068] = 10823, + [11069] = 10826, + [11070] = 11070, + [11071] = 11071, + [11072] = 10814, + [11073] = 11073, + [11074] = 10863, + [11075] = 10868, + [11076] = 10820, + [11077] = 11077, + [11078] = 10870, + [11079] = 10896, + [11080] = 11080, + [11081] = 11081, + [11082] = 10825, + [11083] = 11083, + [11084] = 10821, + [11085] = 10839, + [11086] = 10815, + [11087] = 10816, + [11088] = 10817, + [11089] = 10851, + [11090] = 10852, + [11091] = 10812, + [11092] = 10871, + [11093] = 10854, + [11094] = 10855, + [11095] = 10860, + [11096] = 11067, + [11097] = 11097, [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, + [11099] = 11099, + [11100] = 11100, + [11101] = 10863, + [11102] = 10868, + [11103] = 11103, + [11104] = 10872, + [11105] = 10882, + [11106] = 10814, + [11107] = 10964, + [11108] = 11108, + [11109] = 10881, + [11110] = 10882, + [11111] = 10819, + [11112] = 10822, + [11113] = 10952, [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, - [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, - [11153] = 11153, - [11154] = 10695, - [11155] = 10853, - [11156] = 10893, - [11157] = 11157, - [11158] = 10772, - [11159] = 10731, - [11160] = 10719, - [11161] = 10720, - [11162] = 10640, + [11115] = 11115, + [11116] = 10870, + [11117] = 10871, + [11118] = 10869, + [11119] = 11119, + [11120] = 10895, + [11121] = 10896, + [11122] = 11122, + [11123] = 10895, + [11124] = 11124, + [11125] = 10816, + [11126] = 11126, + [11127] = 4300, + [11128] = 10885, + [11129] = 10814, + [11130] = 11130, + [11131] = 10952, + [11132] = 10815, + [11133] = 10851, + [11134] = 10833, + [11135] = 11035, + [11136] = 10852, + [11137] = 10816, + [11138] = 11138, + [11139] = 10817, + [11140] = 11140, + [11141] = 10886, + [11142] = 10899, + [11143] = 10900, + [11144] = 11144, + [11145] = 10901, + [11146] = 10886, + [11147] = 10896, + [11148] = 10899, + [11149] = 10838, + [11150] = 10823, + [11151] = 11015, + [11152] = 11067, + [11153] = 10900, + [11154] = 10924, + [11155] = 10925, + [11156] = 10817, + [11157] = 11140, + [11158] = 10901, + [11159] = 11140, + [11160] = 11035, + [11161] = 11029, + [11162] = 10826, [11163] = 11163, - [11164] = 10664, - [11165] = 10775, - [11166] = 11166, - [11167] = 10635, - [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, + [11164] = 11164, + [11165] = 11067, + [11166] = 11029, + [11167] = 10863, + [11168] = 10868, + [11169] = 10872, + [11170] = 10812, + [11171] = 10869, + [11172] = 10814, + [11173] = 11173, + [11174] = 11174, + [11175] = 10885, + [11176] = 11176, + [11177] = 10814, + [11178] = 10823, + [11179] = 10886, + [11180] = 11015, + [11181] = 10899, + [11182] = 10900, + [11183] = 10825, + [11184] = 10901, + [11185] = 11185, + [11186] = 11067, [11187] = 11187, - [11188] = 10861, - [11189] = 10986, - [11190] = 10653, - [11191] = 10687, - [11192] = 10999, - [11193] = 10636, - [11194] = 10771, - [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, + [11188] = 10924, + [11189] = 10925, + [11190] = 11190, + [11191] = 4065, + [11192] = 11035, + [11193] = 11193, + [11194] = 11194, + [11195] = 10820, + [11196] = 11196, + [11197] = 11197, + [11198] = 10833, + [11199] = 10825, + [11200] = 10820, + [11201] = 10825, + [11202] = 10863, + [11203] = 10821, + [11204] = 10839, + [11205] = 10815, + [11206] = 10816, + [11207] = 10817, + [11208] = 10851, + [11209] = 10852, + [11210] = 10812, + [11211] = 11211, + [11212] = 10854, + [11213] = 10855, [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, - [11235] = 11235, - [11236] = 11236, - [11237] = 11237, - [11238] = 10742, - [11239] = 10695, - [11240] = 11240, - [11241] = 11168, - [11242] = 10747, - [11243] = 10656, - [11244] = 10772, - [11245] = 10667, - [11246] = 10635, - [11247] = 11247, - [11248] = 11248, - [11249] = 11249, - [11250] = 10700, - [11251] = 11251, - [11252] = 11039, - [11253] = 10707, - [11254] = 11254, - [11255] = 10688, - [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, - [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, + [11215] = 11015, + [11216] = 10860, + [11217] = 11140, + [11218] = 11021, + [11219] = 11035, + [11220] = 10863, + [11221] = 10881, + [11222] = 10882, + [11223] = 10819, + [11224] = 10822, + [11225] = 10821, + [11226] = 10839, + [11227] = 10815, + [11228] = 10870, + [11229] = 10871, + [11230] = 10816, + [11231] = 10895, + [11232] = 10896, + [11233] = 10817, + [11234] = 10863, + [11235] = 11015, + [11236] = 11030, + [11237] = 10868, + [11238] = 11021, + [11239] = 11022, + [11240] = 10868, + [11241] = 11035, + [11242] = 11023, + [11243] = 10851, + [11244] = 10852, + [11245] = 10812, + [11246] = 10854, + [11247] = 10855, + [11248] = 10858, + [11249] = 4179, + [11250] = 10872, + [11251] = 10868, + [11252] = 11015, + [11253] = 4180, + [11254] = 11035, + [11255] = 10814, + [11256] = 10860, + [11257] = 10924, + [11258] = 10925, + [11259] = 10964, + [11260] = 11015, + [11261] = 11028, + [11262] = 10815, + [11263] = 11015, + [11264] = 10816, + [11265] = 10817, + [11266] = 11029, + [11267] = 11015, + [11268] = 10854, + [11269] = 10826, + [11270] = 11015, + [11271] = 11015, + [11272] = 11272, + [11273] = 11015, + [11274] = 11015, + [11275] = 10869, + [11276] = 11276, + [11277] = 11277, + [11278] = 11029, + [11279] = 11279, + [11280] = 10863, + [11281] = 10868, + [11282] = 10872, + [11283] = 10872, + [11284] = 11284, + [11285] = 10869, + [11286] = 10870, + [11287] = 10885, + [11288] = 10924, + [11289] = 10925, + [11290] = 10814, + [11291] = 10871, + [11292] = 10881, + [11293] = 10886, + [11294] = 10899, + [11295] = 10900, + [11296] = 10882, + [11297] = 10901, + [11298] = 11067, + [11299] = 11299, + [11300] = 11030, + [11301] = 10819, + [11302] = 11302, + [11303] = 10822, + [11304] = 10863, + [11305] = 10868, + [11306] = 10885, + [11307] = 10820, + [11308] = 11308, + [11309] = 10825, + [11310] = 10821, + [11311] = 10839, + [11312] = 10815, + [11313] = 10816, + [11314] = 10817, + [11315] = 10851, + [11316] = 10852, + [11317] = 10812, + [11318] = 11318, + [11319] = 10854, + [11320] = 10855, + [11321] = 10860, + [11322] = 10814, + [11323] = 11323, + [11324] = 10814, + [11325] = 10870, + [11326] = 10871, + [11327] = 10881, + [11328] = 10882, + [11329] = 10819, + [11330] = 10822, + [11331] = 10870, + [11332] = 10871, + [11333] = 10895, + [11334] = 10896, + [11335] = 10815, + [11336] = 10816, + [11337] = 10817, + [11338] = 10895, + [11339] = 4201, + [11340] = 4202, + [11341] = 10896, [11342] = 11342, - [11343] = 11132, - [11344] = 11344, - [11345] = 11345, - [11346] = 11141, - [11347] = 10633, - [11348] = 11348, - [11349] = 10729, - [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, + [11343] = 11022, + [11344] = 10820, + [11345] = 10881, + [11346] = 11023, + [11347] = 11347, + [11348] = 10886, + [11349] = 11349, + [11350] = 10899, + [11351] = 11351, + [11352] = 10833, + [11353] = 10900, + [11354] = 11354, + [11355] = 11355, + [11356] = 10924, + [11357] = 10925, + [11358] = 10882, + [11359] = 10924, + [11360] = 10825, + [11361] = 10925, + [11362] = 10901, + [11363] = 11363, + [11364] = 11364, + [11365] = 11029, [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, + [11367] = 4214, + [11368] = 10924, + [11369] = 10826, + [11370] = 4215, + [11371] = 10925, + [11372] = 4222, + [11373] = 4178, + [11374] = 10863, + [11375] = 10868, + [11376] = 10863, + [11377] = 10872, + [11378] = 10868, + [11379] = 11067, + [11380] = 10869, + [11381] = 10855, + [11382] = 10885, + [11383] = 10820, + [11384] = 11384, + [11385] = 10814, + [11386] = 315, + [11387] = 10826, + [11388] = 10886, + [11389] = 10899, + [11390] = 10900, + [11391] = 10858, + [11392] = 10901, + [11393] = 11393, + [11394] = 11394, [11395] = 11395, - [11396] = 10747, - [11397] = 10988, - [11398] = 11205, - [11399] = 10747, - [11400] = 11098, - [11401] = 11094, - [11402] = 10894, - [11403] = 10661, - [11404] = 11132, - [11405] = 10664, - [11406] = 10633, + [11396] = 11396, + [11397] = 11397, + [11398] = 11398, + [11399] = 11399, + [11400] = 11400, + [11401] = 11401, + [11402] = 11402, + [11403] = 11403, + [11404] = 11404, + [11405] = 11405, + [11406] = 11395, [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, + [11408] = 11408, + [11409] = 11409, + [11410] = 11410, + [11411] = 11402, + [11412] = 11412, + [11413] = 11413, + [11414] = 11397, + [11415] = 11415, + [11416] = 11415, + [11417] = 11408, + [11418] = 11418, + [11419] = 11419, + [11420] = 11397, [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, + [11422] = 11422, + [11423] = 11423, + [11424] = 11424, + [11425] = 11418, + [11426] = 11426, + [11427] = 11412, + [11428] = 11428, + [11429] = 11403, + [11430] = 11430, + [11431] = 11399, + [11432] = 11400, + [11433] = 11433, + [11434] = 11397, + [11435] = 11399, + [11436] = 11436, + [11437] = 11398, + [11438] = 11424, + [11439] = 11439, + [11440] = 11426, + [11441] = 11441, + [11442] = 11419, + [11443] = 11443, + [11444] = 11397, + [11445] = 11399, + [11446] = 11446, + [11447] = 11447, + [11448] = 11403, + [11449] = 11415, + [11450] = 11415, + [11451] = 11451, + [11452] = 11452, + [11453] = 11453, + [11454] = 11422, + [11455] = 11455, + [11456] = 11423, + [11457] = 11457, + [11458] = 11423, + [11459] = 11424, + [11460] = 11419, + [11461] = 11461, + [11462] = 11462, + [11463] = 11463, + [11464] = 11398, + [11465] = 11423, + [11466] = 11415, + [11467] = 11418, + [11468] = 11418, + [11469] = 11397, + [11470] = 11470, + [11471] = 11399, + [11472] = 11453, + [11473] = 11473, + [11474] = 11474, + [11475] = 11475, + [11476] = 11398, + [11477] = 11407, + [11478] = 11407, + [11479] = 11402, [11480] = 11480, - [11481] = 10725, - [11482] = 11129, - [11483] = 11344, - [11484] = 11321, - [11485] = 11007, - [11486] = 10752, - [11487] = 10719, - [11488] = 10653, - [11489] = 10642, - [11490] = 10635, - [11491] = 10660, - [11492] = 11492, - [11493] = 10706, - [11494] = 10660, - [11495] = 11495, - [11496] = 11496, + [11481] = 11402, + [11482] = 11482, + [11483] = 11461, + [11484] = 11419, + [11485] = 11457, + [11486] = 11401, + [11487] = 11462, + [11488] = 11407, + [11489] = 11489, + [11490] = 11400, + [11491] = 11491, + [11492] = 11396, + [11493] = 11493, + [11494] = 11436, + [11495] = 11397, + [11496] = 11399, [11497] = 11497, - [11498] = 10682, - [11499] = 10991, - [11500] = 10766, - [11501] = 11501, - [11502] = 10775, + [11498] = 11498, + [11499] = 11402, + [11500] = 11423, + [11501] = 11422, + [11502] = 11433, [11503] = 11503, [11504] = 11504, - [11505] = 10662, - [11506] = 10747, - [11507] = 11507, - [11508] = 10643, - [11509] = 10664, - [11510] = 10630, - [11511] = 10682, - [11512] = 10747, + [11505] = 11423, + [11506] = 11506, + [11507] = 11423, + [11508] = 11419, + [11509] = 11509, + [11510] = 11403, + [11511] = 11424, + [11512] = 11512, [11513] = 11513, - [11514] = 10641, + [11514] = 11398, [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, - [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, - [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, + [11516] = 11461, + [11517] = 11423, + [11518] = 11457, + [11519] = 11397, + [11520] = 11399, + [11521] = 11521, + [11522] = 11453, + [11523] = 11523, + [11524] = 11407, + [11525] = 11403, + [11526] = 11402, + [11527] = 11403, + [11528] = 11398, + [11529] = 11529, + [11530] = 11461, + [11531] = 11408, + [11532] = 11426, + [11533] = 11533, + [11534] = 11404, + [11535] = 11413, + [11536] = 11423, + [11537] = 11537, + [11538] = 11491, + [11539] = 11539, + [11540] = 11509, + [11541] = 11457, + [11542] = 11542, + [11543] = 11397, + [11544] = 11544, + [11545] = 11473, + [11546] = 11399, + [11547] = 11547, + [11548] = 11422, + [11549] = 11423, + [11550] = 11413, + [11551] = 11419, + [11552] = 11405, + [11553] = 11395, + [11554] = 11404, + [11555] = 11408, + [11556] = 11430, + [11557] = 11410, + [11558] = 11424, + [11559] = 11403, + [11560] = 11457, + [11561] = 11415, + [11562] = 11418, + [11563] = 11418, + [11564] = 11428, + [11565] = 11430, + [11566] = 11419, + [11567] = 11422, + [11568] = 11436, + [11569] = 11423, + [11570] = 11424, + [11571] = 11461, + [11572] = 11572, + [11573] = 11462, + [11574] = 11574, + [11575] = 11446, + [11576] = 11423, + [11577] = 11400, + [11578] = 11433, + [11579] = 11407, + [11580] = 11580, + [11581] = 11581, + [11582] = 11423, + [11583] = 11475, + [11584] = 11398, + [11585] = 11402, + [11586] = 11547, + [11587] = 11397, + [11588] = 11399, + [11589] = 11407, + [11590] = 11403, + [11591] = 11591, + [11592] = 11592, + [11593] = 11544, + [11594] = 11473, + [11595] = 11547, + [11596] = 11402, + [11597] = 11491, + [11598] = 11413, + [11599] = 11398, + [11600] = 11399, + [11601] = 11405, + [11602] = 11395, + [11603] = 11408, + [11604] = 11407, + [11605] = 11461, + [11606] = 11462, + [11607] = 11607, + [11608] = 11402, + [11609] = 11401, + [11610] = 11423, + [11611] = 11453, + [11612] = 11523, + [11613] = 11475, + [11614] = 11428, + [11615] = 11430, + [11616] = 11407, + [11617] = 11617, + [11618] = 11436, + [11619] = 11453, + [11620] = 11403, + [11621] = 11407, + [11622] = 11446, + [11623] = 11402, + [11624] = 11401, + [11625] = 11403, + [11626] = 11407, + [11627] = 11544, + [11628] = 11547, + [11629] = 11491, + [11630] = 11400, + [11631] = 11396, + [11632] = 11405, + [11633] = 11402, + [11634] = 11489, + [11635] = 11415, + [11636] = 11423, + [11637] = 11419, + [11638] = 11461, + [11639] = 11401, + [11640] = 11433, + [11641] = 11428, + [11642] = 11430, + [11643] = 11423, + [11644] = 11436, + [11645] = 11426, + [11646] = 11402, + [11647] = 11446, + [11648] = 11403, + [11649] = 11413, + [11650] = 11415, + [11651] = 11423, + [11652] = 11489, + [11653] = 11489, + [11654] = 11547, + [11655] = 11423, + [11656] = 11405, + [11657] = 11401, + [11658] = 11523, + [11659] = 11659, + [11660] = 11398, + [11661] = 11423, + [11662] = 11461, + [11663] = 11430, + [11664] = 11506, + [11665] = 11436, + [11666] = 11426, + [11667] = 11446, + [11668] = 11668, + [11669] = 11506, + [11670] = 11491, + [11671] = 11398, + [11672] = 11491, + [11673] = 11426, + [11674] = 11547, + [11675] = 11675, + [11676] = 11509, + [11677] = 11397, + [11678] = 11395, + [11679] = 11399, + [11680] = 11405, + [11681] = 11489, [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, + [11683] = 11683, + [11684] = 11491, + [11685] = 11430, + [11686] = 11462, + [11687] = 11436, + [11688] = 11424, + [11689] = 11509, + [11690] = 11461, + [11691] = 11396, + [11692] = 11413, + [11693] = 11423, + [11694] = 11547, + [11695] = 11461, + [11696] = 11696, + [11697] = 11405, + [11698] = 11407, + [11699] = 11462, + [11700] = 11430, + [11701] = 11403, + [11702] = 11473, + [11703] = 11402, + [11704] = 11407, + [11705] = 11397, + [11706] = 11399, + [11707] = 11405, + [11708] = 11398, + [11709] = 11491, + [11710] = 11405, + [11711] = 11415, + [11712] = 11544, + [11713] = 11506, + [11714] = 11509, + [11715] = 11405, + [11716] = 11418, + [11717] = 11426, + [11718] = 11405, + [11719] = 11719, + [11720] = 11405, + [11721] = 11721, + [11722] = 11722, + [11723] = 11405, + [11724] = 11419, + [11725] = 11405, + [11726] = 11405, + [11727] = 11422, + [11728] = 11423, + [11729] = 11424, + [11730] = 11405, + [11731] = 11398, + [11732] = 11405, + [11733] = 11405, + [11734] = 11405, + [11735] = 11405, + [11736] = 11446, + [11737] = 11405, + [11738] = 11405, + [11739] = 11400, + [11740] = 11491, + [11741] = 11405, + [11742] = 11433, + [11743] = 11405, + [11744] = 11396, + [11745] = 11405, + [11746] = 11746, + [11747] = 11405, + [11748] = 11405, + [11749] = 11407, + [11750] = 11402, + [11751] = 11398, + [11752] = 11523, + [11753] = 11397, + [11754] = 11397, + [11755] = 11399, + [11756] = 11395, + [11757] = 11399, + [11758] = 11402, + [11759] = 11397, + [11760] = 11403, + [11761] = 11761, + [11762] = 11396, + [11763] = 11399, + [11764] = 11397, + [11765] = 11765, + [11766] = 11461, + [11767] = 11462, + [11768] = 11419, + [11769] = 11769, + [11770] = 11423, + [11771] = 11403, + [11772] = 11399, + [11773] = 11398, + [11774] = 11407, + [11775] = 11402, + [11776] = 11419, + [11777] = 11403, + [11778] = 11404, + [11779] = 11401, + [11780] = 11412, + [11781] = 11401, + [11782] = 11491, + [11783] = 11396, + [11784] = 11397, + [11785] = 11399, + [11786] = 11407, + [11787] = 11787, + [11788] = 11403, + [11789] = 11397, + [11790] = 11399, + [11791] = 11402, + [11792] = 11408, + [11793] = 11461, + [11794] = 11794, + [11795] = 11407, + [11796] = 11473, + [11797] = 11402, + [11798] = 11404, + [11799] = 11509, + [11800] = 11491, + [11801] = 11509, + [11802] = 11398, + [11803] = 11769, + [11804] = 11804, + [11805] = 11410, + [11806] = 11403, + [11807] = 11412, + [11808] = 11453, + [11809] = 11509, + [11810] = 11422, + [11811] = 11397, + [11812] = 11399, + [11813] = 11475, + [11814] = 11402, + [11815] = 11403, + [11816] = 11407, + [11817] = 11403, + [11818] = 11405, + [11819] = 11457, + [11820] = 11428, + [11821] = 11403, + [11822] = 11415, + [11823] = 11415, + [11824] = 11433, + [11825] = 11419, + [11826] = 11423, + [11827] = 11424, + [11828] = 11591, + [11829] = 11402, + [11830] = 11544, + [11831] = 11403, + [11832] = 11397, + [11833] = 11399, + [11834] = 11402, + [11835] = 11769, + [11836] = 11423, + [11837] = 11473, + [11838] = 11423, + [11839] = 11769, + [11840] = 11840, + [11841] = 11841, + [11842] = 11769, + [11843] = 11398, + [11844] = 11769, + [11845] = 11769, + [11846] = 11398, + [11847] = 11769, + [11848] = 11397, + [11849] = 11399, + [11850] = 11769, + [11851] = 11769, + [11852] = 11769, + [11853] = 11769, + [11854] = 11769, + [11855] = 11769, + [11856] = 11769, + [11857] = 11769, + [11858] = 11769, + [11859] = 11769, + [11860] = 11769, + [11861] = 11769, + [11862] = 11769, + [11863] = 11547, + [11864] = 11864, + [11865] = 11413, + [11866] = 11866, + [11867] = 11867, + [11868] = 11398, + [11869] = 11400, + [11870] = 11509, + [11871] = 11491, + [11872] = 11872, + [11873] = 11873, + [11874] = 11874, + [11875] = 11875, + [11876] = 11876, + [11877] = 11877, + [11878] = 11878, + [11879] = 11879, + [11880] = 11880, + [11881] = 11881, + [11882] = 11873, + [11883] = 11883, + [11884] = 11884, + [11885] = 11885, + [11886] = 11886, + [11887] = 11887, + [11888] = 11888, + [11889] = 11872, + [11890] = 11890, + [11891] = 11876, + [11892] = 11892, + [11893] = 11893, + [11894] = 11894, + [11895] = 11895, + [11896] = 11896, + [11897] = 11897, + [11898] = 11898, + [11899] = 11899, + [11900] = 11877, + [11901] = 11901, + [11902] = 11902, + [11903] = 11903, + [11904] = 11904, + [11905] = 11905, + [11906] = 11901, + [11907] = 11878, + [11908] = 11908, + [11909] = 11909, + [11910] = 11879, + [11911] = 11911, + [11912] = 11898, + [11913] = 11913, + [11914] = 11914, + [11915] = 11902, + [11916] = 11916, + [11917] = 11917, + [11918] = 11918, + [11919] = 11919, + [11920] = 11920, + [11921] = 11921, + [11922] = 11922, + [11923] = 11923, + [11924] = 11924, + [11925] = 11925, + [11926] = 11926, + [11927] = 11898, + [11928] = 11899, + [11929] = 11929, + [11930] = 11930, + [11931] = 11913, + [11932] = 11932, + [11933] = 11909, + [11934] = 11902, + [11935] = 11935, + [11936] = 11935, + [11937] = 11937, + [11938] = 11913, + [11939] = 11929, + [11940] = 11901, + [11941] = 11908, + [11942] = 11942, + [11943] = 11943, + [11944] = 11944, + [11945] = 11887, + [11946] = 11946, + [11947] = 11890, + [11948] = 11948, + [11949] = 11902, + [11950] = 11937, + [11951] = 11951, + [11952] = 11890, + [11953] = 11953, + [11954] = 11954, + [11955] = 11890, + [11956] = 11956, + [11957] = 11953, + [11958] = 11903, + [11959] = 11904, + [11960] = 11960, + [11961] = 11961, + [11962] = 11880, + [11963] = 11963, + [11964] = 11964, + [11965] = 11960, + [11966] = 11880, + [11967] = 11967, + [11968] = 11968, + [11969] = 11969, + [11970] = 11970, + [11971] = 11897, + [11972] = 11956, + [11973] = 11973, + [11974] = 11923, + [11975] = 11878, + [11976] = 11873, + [11977] = 11876, + [11978] = 11925, + [11979] = 11877, + [11980] = 11980, + [11981] = 11981, + [11982] = 11901, + [11983] = 11983, + [11984] = 11951, + [11985] = 11985, + [11986] = 11986, + [11987] = 11987, + [11988] = 11981, + [11989] = 11989, + [11990] = 11886, + [11991] = 11991, + [11992] = 11992, + [11993] = 11993, + [11994] = 11981, + [11995] = 11909, + [11996] = 11937, + [11997] = 11997, + [11998] = 11880, + [11999] = 11920, + [12000] = 11875, + [12001] = 11968, + [12002] = 12002, + [12003] = 11902, + [12004] = 11902, + [12005] = 11880, + [12006] = 12006, + [12007] = 11951, + [12008] = 11967, + [12009] = 12009, + [12010] = 11884, + [12011] = 11885, + [12012] = 11886, + [12013] = 11913, + [12014] = 11872, + [12015] = 11951, + [12016] = 11913, + [12017] = 11937, + [12018] = 12018, + [12019] = 11895, + [12020] = 11918, + [12021] = 11981, + [12022] = 11894, + [12023] = 12023, + [12024] = 12024, + [12025] = 11926, + [12026] = 12026, + [12027] = 11937, + [12028] = 11937, + [12029] = 11935, + [12030] = 12030, + [12031] = 12031, + [12032] = 12032, + [12033] = 12031, + [12034] = 11916, + [12035] = 11918, + [12036] = 11943, + [12037] = 12037, + [12038] = 12038, + [12039] = 12039, + [12040] = 11960, + [12041] = 11898, + [12042] = 11899, + [12043] = 12039, + [12044] = 11935, + [12045] = 12045, + [12046] = 12038, + [12047] = 12031, + [12048] = 11960, + [12049] = 12049, + [12050] = 11902, + [12051] = 11960, + [12052] = 12052, + [12053] = 11879, + [12054] = 12054, + [12055] = 12038, + [12056] = 11954, + [12057] = 12057, + [12058] = 12057, + [12059] = 12059, + [12060] = 12031, + [12061] = 11946, + [12062] = 11964, + [12063] = 11929, + [12064] = 12037, + [12065] = 11960, + [12066] = 11937, + [12067] = 12067, + [12068] = 11956, + [12069] = 11919, + [12070] = 11983, + [12071] = 12071, + [12072] = 12072, + [12073] = 12073, + [12074] = 12074, + [12075] = 11943, + [12076] = 11960, + [12077] = 11981, + [12078] = 12078, + [12079] = 12079, + [12080] = 12080, + [12081] = 12081, + [12082] = 12057, + [12083] = 12080, + [12084] = 12084, + [12085] = 11873, + [12086] = 11920, + [12087] = 12087, + [12088] = 11901, + [12089] = 12037, + [12090] = 11937, + [12091] = 12038, + [12092] = 11983, + [12093] = 12093, + [12094] = 11960, + [12095] = 11886, + [12096] = 12096, + [12097] = 11872, + [12098] = 11902, + [12099] = 12099, + [12100] = 11880, + [12101] = 11895, + [12102] = 11875, + [12103] = 11902, + [12104] = 12104, + [12105] = 11875, + [12106] = 11913, + [12107] = 12107, + [12108] = 11902, + [12109] = 11884, + [12110] = 11919, + [12111] = 11937, + [12112] = 12112, + [12113] = 12084, + [12114] = 12114, + [12115] = 11916, + [12116] = 11925, + [12117] = 11880, + [12118] = 12118, + [12119] = 12104, + [12120] = 11898, + [12121] = 11899, + [12122] = 11885, + [12123] = 11886, + [12124] = 12084, + [12125] = 11954, + [12126] = 9160, + [12127] = 12127, + [12128] = 11937, + [12129] = 11887, + [12130] = 12130, + [12131] = 11902, + [12132] = 12132, + [12133] = 11956, + [12134] = 11880, + [12135] = 12135, + [12136] = 12136, + [12137] = 11902, + [12138] = 12072, + [12139] = 11902, + [12140] = 11918, + [12141] = 12141, + [12142] = 11926, + [12143] = 11920, + [12144] = 11913, + [12145] = 12145, + [12146] = 12146, + [12147] = 12147, + [12148] = 12148, + [12149] = 11920, + [12150] = 12026, + [12151] = 12038, + [12152] = 11986, + [12153] = 11914, + [12154] = 11960, + [12155] = 11953, + [12156] = 11886, + [12157] = 12157, + [12158] = 11872, + [12159] = 11876, + [12160] = 12160, + [12161] = 11935, + [12162] = 11895, + [12163] = 11877, + [12164] = 11902, + [12165] = 12165, + [12166] = 11909, + [12167] = 11913, + [12168] = 11913, + [12169] = 12169, + [12170] = 12031, + [12171] = 12049, + [12172] = 11872, + [12173] = 11902, + [12174] = 11916, + [12175] = 12175, + [12176] = 12176, + [12177] = 12177, + [12178] = 11935, + [12179] = 11898, + [12180] = 11899, + [12181] = 12181, + [12182] = 12182, + [12183] = 11954, + [12184] = 12184, + [12185] = 12185, + [12186] = 12186, + [12187] = 12187, + [12188] = 12188, + [12189] = 11968, + [12190] = 11887, + [12191] = 11956, + [12192] = 11897, + [12193] = 12193, + [12194] = 11919, + [12195] = 11904, + [12196] = 11881, + [12197] = 12197, + [12198] = 11926, + [12199] = 11964, + [12200] = 11887, + [12201] = 12087, + [12202] = 11993, + [12203] = 12203, + [12204] = 11951, + [12205] = 11913, + [12206] = 11918, + [12207] = 11920, + [12208] = 12208, + [12209] = 11878, + [12210] = 11890, + [12211] = 12211, + [12212] = 11886, + [12213] = 11903, + [12214] = 11872, + [12215] = 9223, + [12216] = 11904, + [12217] = 11901, + [12218] = 11895, + [12219] = 11951, + [12220] = 12220, + [12221] = 12221, + [12222] = 11951, + [12223] = 11895, + [12224] = 12224, + [12225] = 12225, + [12226] = 12226, + [12227] = 12039, + [12228] = 12072, + [12229] = 11916, + [12230] = 11983, + [12231] = 12107, + [12232] = 12232, + [12233] = 11924, + [12234] = 11898, + [12235] = 11899, + [12236] = 12236, + [12237] = 12237, + [12238] = 11902, + [12239] = 12239, + [12240] = 12099, + [12241] = 12187, + [12242] = 11956, + [12243] = 12243, + [12244] = 12081, + [12245] = 11913, + [12246] = 11993, + [12247] = 10395, + [12248] = 12187, + [12249] = 12039, + [12250] = 12250, + [12251] = 11875, + [12252] = 11920, + [12253] = 11954, + [12254] = 11909, + [12255] = 11886, + [12256] = 11895, + [12257] = 11872, + [12258] = 12221, + [12259] = 11895, + [12260] = 12260, + [12261] = 11937, + [12262] = 12104, + [12263] = 11916, + [12264] = 11887, + [12265] = 11899, + [12266] = 11937, + [12267] = 11961, + [12268] = 11951, + [12269] = 12269, + [12270] = 11878, + [12271] = 11902, + [12272] = 11913, + [12273] = 12273, + [12274] = 12274, + [12275] = 9169, + [12276] = 11920, + [12277] = 11968, + [12278] = 11932, + [12279] = 11911, + [12280] = 11872, + [12281] = 11895, + [12282] = 11960, + [12283] = 11967, + [12284] = 11921, + [12285] = 11899, + [12286] = 11880, + [12287] = 11935, + [12288] = 12099, + [12289] = 12289, + [12290] = 11913, + [12291] = 11937, + [12292] = 11872, + [12293] = 11895, + [12294] = 12187, + [12295] = 12187, + [12296] = 11899, + [12297] = 11904, + [12298] = 11925, + [12299] = 12299, + [12300] = 11880, + [12301] = 11913, + [12302] = 11887, + [12303] = 11872, + [12304] = 11895, + [12305] = 11899, + [12306] = 11932, + [12307] = 12057, + [12308] = 12118, + [12309] = 12104, + [12310] = 11913, + [12311] = 12311, + [12312] = 11872, + [12313] = 11895, + [12314] = 11899, + [12315] = 11916, + [12316] = 11951, + [12317] = 12078, + [12318] = 11932, + [12319] = 12084, + [12320] = 11909, + [12321] = 11872, + [12322] = 11895, + [12323] = 11899, + [12324] = 11902, + [12325] = 12325, + [12326] = 11935, + [12327] = 12327, + [12328] = 12274, + [12329] = 11872, + [12330] = 11895, + [12331] = 11899, + [12332] = 12332, + [12333] = 12333, + [12334] = 11913, + [12335] = 11911, + [12336] = 11872, + [12337] = 11895, + [12338] = 11899, + [12339] = 11897, + [12340] = 11960, + [12341] = 11960, + [12342] = 12186, + [12343] = 12187, + [12344] = 11895, + [12345] = 11899, + [12346] = 12112, + [12347] = 11905, + [12348] = 12348, + [12349] = 11983, + [12350] = 11872, + [12351] = 11895, + [12352] = 11899, + [12353] = 11901, + [12354] = 12104, + [12355] = 11935, + [12356] = 3176, + [12357] = 11872, + [12358] = 11895, + [12359] = 11899, + [12360] = 11894, + [12361] = 12361, + [12362] = 11968, + [12363] = 11895, + [12364] = 11899, + [12365] = 12365, + [12366] = 12366, + [12367] = 12367, + [12368] = 11895, + [12369] = 11899, + [12370] = 11914, + [12371] = 11880, + [12372] = 11935, + [12373] = 11895, + [12374] = 11899, + [12375] = 11902, + [12376] = 12376, + [12377] = 12377, + [12378] = 11919, + [12379] = 12379, + [12380] = 11943, + [12381] = 12381, + [12382] = 12382, + [12383] = 12383, + [12384] = 12384, + [12385] = 11968, + [12386] = 11901, + [12387] = 12182, + [12388] = 12388, + [12389] = 12072, + [12390] = 12390, + [12391] = 11921, + [12392] = 11902, + [12393] = 11937, + [12394] = 12107, + [12395] = 11885, + [12396] = 12078, + [12397] = 12072, + [12398] = 12398, + [12399] = 11913, + [12400] = 11932, + [12401] = 12099, + [12402] = 12402, + [12403] = 11884, + [12404] = 12311, + [12405] = 11935, + [12406] = 12211, + [12407] = 12376, + [12408] = 12226, + [12409] = 12409, + [12410] = 12099, + [12411] = 12411, + [12412] = 12377, + [12413] = 12104, + [12414] = 11960, + [12415] = 11885, + [12416] = 11887, + [12417] = 12002, + [12418] = 11946, + [12419] = 12419, + [12420] = 9146, + [12421] = 11878, + [12422] = 12422, + [12423] = 11887, + [12424] = 12208, + [12425] = 11946, + [12426] = 11913, + [12427] = 12181, + [12428] = 11948, + [12429] = 11913, + [12430] = 11902, + [12431] = 11983, + [12432] = 12432, + [12433] = 12433, + [12434] = 11951, + [12435] = 12026, + [12436] = 12436, + [12437] = 11943, + [12438] = 12038, + [12439] = 11875, + [12440] = 11913, + [12441] = 12037, + [12442] = 12442, + [12443] = 12443, + [12444] = 11903, + [12445] = 12193, + [12446] = 12446, + [12447] = 12447, + [12448] = 11961, + [12449] = 12449, + [12450] = 12450, + [12451] = 11960, + [12452] = 11880, + [12453] = 11973, + [12454] = 12454, + [12455] = 12096, + [12456] = 12052, + [12457] = 11873, + [12458] = 11876, + [12459] = 11877, + [12460] = 12460, + [12461] = 11887, + [12462] = 11901, + [12463] = 12463, + [12464] = 12127, + [12465] = 11901, + [12466] = 11961, + [12467] = 11878, + [12468] = 12141, + [12469] = 11901, + [12470] = 11878, + [12471] = 11951, + [12472] = 12472, + [12473] = 12436, + [12474] = 11887, + [12475] = 12475, + [12476] = 11946, + [12477] = 11909, + [12478] = 11902, + [12479] = 11937, + [12480] = 11890, + [12481] = 12402, + [12482] = 12482, + [12483] = 12182, + [12484] = 11890, + [12485] = 11902, + [12486] = 11913, + [12487] = 12193, + [12488] = 11917, + [12489] = 12489, + [12490] = 12221, + [12491] = 12081, + [12492] = 11897, + [12493] = 11913, + [12494] = 11923, + [12495] = 12495, + [12496] = 11997, + [12497] = 11935, + [12498] = 11981, + [12499] = 12499, + [12500] = 12037, + [12501] = 12450, + [12502] = 12502, + [12503] = 12503, + [12504] = 11960, + [12505] = 12289, + [12506] = 11937, + [12507] = 11881, + [12508] = 12031, + [12509] = 12509, + [12510] = 12327, + [12511] = 12037, + [12512] = 11951, + [12513] = 12513, + [12514] = 12514, + [12515] = 12515, + [12516] = 12516, + [12517] = 12517, + [12518] = 12186, + [12519] = 12519, + [12520] = 12520, + [12521] = 12521, + [12522] = 12522, + [12523] = 12523, + [12524] = 12524, + [12525] = 12525, + [12526] = 12526, + [12527] = 12527, + [12528] = 12528, + [12529] = 12529, + [12530] = 12530, + [12531] = 12531, + [12532] = 12532, + [12533] = 11908, + [12534] = 11880, + [12535] = 12422, + [12536] = 12038, + [12537] = 11960, + [12538] = 11960, + [12539] = 11913, + [12540] = 12289, + [12541] = 11913, + [12542] = 11884, + [12543] = 11880, + [12544] = 12544, + [12545] = 11890, + [12546] = 11903, + [12547] = 12547, + [12548] = 12080, + [12549] = 11913, + [12550] = 12550, + [12551] = 11935, + [12552] = 11904, + [12553] = 12072, + [12554] = 12037, + [12555] = 12555, + [12556] = 12556, + [12557] = 11878, + [12558] = 12096, + [12559] = 12559, + [12560] = 12560, + [12561] = 11902, + [12562] = 11903, + [12563] = 12087, + [12564] = 12141, + [12565] = 12104, + [12566] = 12566, + [12567] = 11887, + [12568] = 11887, + [12569] = 12087, + [12570] = 11961, + [12571] = 12107, + [12572] = 12572, + [12573] = 12311, + [12574] = 12376, + [12575] = 12226, + [12576] = 12409, + [12577] = 3183, + [12578] = 12411, + [12579] = 12579, + [12580] = 11951, + [12581] = 11951, + [12582] = 12422, + [12583] = 11983, + [12584] = 12208, + [12585] = 12585, + [12586] = 12099, + [12587] = 12181, + [12588] = 11948, + [12589] = 12377, + [12590] = 12432, + [12591] = 12433, + [12592] = 11943, + [12593] = 11932, + [12594] = 11875, + [12595] = 11946, + [12596] = 12450, + [12597] = 11913, + [12598] = 11960, + [12599] = 12079, + [12600] = 12084, + [12601] = 12402, + [12602] = 11904, + [12603] = 11917, + [12604] = 11925, + [12605] = 11880, + [12606] = 12449, + [12607] = 12311, + [12608] = 12376, + [12609] = 12409, + [12610] = 12325, + [12611] = 12411, + [12612] = 11919, + [12613] = 11983, + [12614] = 11925, + [12615] = 12422, + [12616] = 11880, + [12617] = 12208, + [12618] = 12079, + [12619] = 12181, + [12620] = 12620, + [12621] = 12432, + [12622] = 12433, + [12623] = 11937, + [12624] = 12450, + [12625] = 12104, + [12626] = 12495, + [12627] = 11894, + [12628] = 12402, + [12629] = 11917, + [12630] = 12630, + [12631] = 12311, + [12632] = 12376, + [12633] = 12409, + [12634] = 11902, + [12635] = 12411, + [12636] = 12084, + [12637] = 12107, + [12638] = 12422, + [12639] = 12208, + [12640] = 12118, + [12641] = 12181, + [12642] = 12642, + [12643] = 12432, + [12644] = 12433, + [12645] = 12645, + [12646] = 12450, + [12647] = 11913, + [12648] = 11960, + [12649] = 12402, + [12650] = 11917, + [12651] = 12651, + [12652] = 12311, + [12653] = 12376, + [12654] = 12409, + [12655] = 12176, + [12656] = 12411, + [12657] = 12657, + [12658] = 12658, + [12659] = 12208, + [12660] = 12185, + [12661] = 12181, + [12662] = 12662, + [12663] = 12432, + [12664] = 12433, + [12665] = 12665, + [12666] = 12450, + [12667] = 11880, + [12668] = 12668, + [12669] = 12402, + [12670] = 11917, + [12671] = 12671, + [12672] = 12311, + [12673] = 12376, + [12674] = 12409, + [12675] = 12104, + [12676] = 12411, + [12677] = 12182, + [12678] = 12678, + [12679] = 12208, + [12680] = 11913, + [12681] = 12181, + [12682] = 11899, + [12683] = 12432, + [12684] = 12433, + [12685] = 12289, + [12686] = 12450, + [12687] = 12327, + [12688] = 11919, + [12689] = 12402, + [12690] = 11917, + [12691] = 11973, + [12692] = 12311, + [12693] = 12376, + [12694] = 12409, + [12695] = 11997, + [12696] = 12411, + [12697] = 11913, + [12698] = 12208, + [12699] = 12084, + [12700] = 12181, + [12701] = 12433, + [12702] = 12186, + [12703] = 12450, + [12704] = 12182, + [12705] = 12402, + [12706] = 11917, + [12707] = 11967, + [12708] = 12311, + [12709] = 12376, + [12710] = 11981, + [12711] = 12411, + [12712] = 11875, + [12713] = 12072, + [12714] = 12181, + [12715] = 12433, + [12716] = 12087, + [12717] = 12402, + [12718] = 12311, + [12719] = 12376, + [12720] = 12411, + [12721] = 12181, + [12722] = 12433, + [12723] = 12402, + [12724] = 12311, + [12725] = 12376, + [12726] = 12411, + [12727] = 12181, + [12728] = 12433, + [12729] = 12402, + [12730] = 12311, + [12731] = 12376, + [12732] = 12411, + [12733] = 12181, + [12734] = 12433, + [12735] = 12402, + [12736] = 12311, + [12737] = 12376, + [12738] = 12411, + [12739] = 12181, + [12740] = 12433, + [12741] = 12402, + [12742] = 12311, + [12743] = 12376, + [12744] = 12411, + [12745] = 12181, + [12746] = 12433, + [12747] = 12402, + [12748] = 12311, + [12749] = 12376, + [12750] = 12411, + [12751] = 12181, + [12752] = 12433, + [12753] = 12402, + [12754] = 12311, + [12755] = 12376, + [12756] = 12411, + [12757] = 12181, + [12758] = 12433, + [12759] = 12402, + [12760] = 12311, + [12761] = 12376, + [12762] = 12411, + [12763] = 12181, + [12764] = 12433, + [12765] = 12402, + [12766] = 12311, + [12767] = 12376, + [12768] = 12411, + [12769] = 12181, + [12770] = 12433, + [12771] = 12402, + [12772] = 12311, + [12773] = 12376, + [12774] = 12433, + [12775] = 12402, + [12776] = 12311, + [12777] = 12376, + [12778] = 12433, + [12779] = 12402, + [12780] = 12311, + [12781] = 12376, + [12782] = 12433, + [12783] = 12402, + [12784] = 12311, + [12785] = 12376, + [12786] = 12311, + [12787] = 12376, + [12788] = 12311, + [12789] = 12376, + [12790] = 12311, + [12791] = 12376, + [12792] = 12311, + [12793] = 12376, + [12794] = 12311, + [12795] = 12376, + [12796] = 12311, + [12797] = 12376, + [12798] = 12376, + [12799] = 12376, + [12800] = 12376, + [12801] = 12376, + [12802] = 12376, + [12803] = 12376, + [12804] = 12376, + [12805] = 12376, + [12806] = 12376, + [12807] = 12376, + [12808] = 12808, + [12809] = 12809, + [12810] = 12226, + [12811] = 12811, + [12812] = 12524, + [12813] = 12084, + [12814] = 11913, + [12815] = 12135, + [12816] = 12002, + [12817] = 12084, + [12818] = 12087, + [12819] = 11932, + [12820] = 12039, + [12821] = 11954, + [12822] = 11929, + [12823] = 12823, + [12824] = 12824, + [12825] = 12489, + [12826] = 12826, + [12827] = 11948, + [12828] = 11913, + [12829] = 12327, + [12830] = 12830, + [12831] = 12831, + [12832] = 11903, + [12833] = 12833, + [12834] = 12432, + [12835] = 12835, + [12836] = 12836, + [12837] = 12837, + [12838] = 11913, + [12839] = 11873, + [12840] = 12840, + [12841] = 12193, + [12842] = 11878, + [12843] = 11890, + [12844] = 11903, + [12845] = 11904, + [12846] = 11913, + [12847] = 11878, + [12848] = 12848, + [12849] = 11878, + [12850] = 12449, + [12851] = 11887, + [12852] = 11878, + [12853] = 12250, + [12854] = 11951, + [12855] = 11913, + [12856] = 11890, + [12857] = 11872, + [12858] = 11890, + [12859] = 11913, + [12860] = 11903, + [12861] = 11930, + [12862] = 11954, + [12863] = 12489, + [12864] = 11904, + [12865] = 12135, + [12866] = 12866, + [12867] = 11929, + [12868] = 12868, + [12869] = 11943, + [12870] = 12052, + [12871] = 11903, + [12872] = 11916, + [12873] = 11953, + [12874] = 11964, + [12875] = 11953, + [12876] = 11937, + [12877] = 11935, + [12878] = 12176, + [12879] = 12433, + [12880] = 11904, + [12881] = 12325, + [12882] = 11951, + [12883] = 11914, + [12884] = 11876, + [12885] = 11877, + [12886] = 12039, + [12887] = 11918, + [12888] = 12031, + [12889] = 12049, + [12890] = 12811, + [12891] = 12409, + [12892] = 12892, + [12893] = 11904, + [12894] = 11897, + [12895] = 11885, + [12896] = 11956, + [12897] = 11925, + [12898] = 12898, + [12899] = 12039, + [12900] = 11878, + [12901] = 11880, + [12902] = 12243, + [12903] = 12903, + [12904] = 11873, + [12905] = 12127, + [12906] = 11876, + [12907] = 11901, + [12908] = 11877, + [12909] = 11960, + [12910] = 11981, + [12911] = 11878, + [12912] = 12912, + [12913] = 12913, + [12914] = 11902, + [12915] = 12915, + [12916] = 12226, + [12917] = 12811, + [12918] = 12524, + [12919] = 11880, + [12920] = 12107, + [12921] = 11902, + [12922] = 11948, + [12923] = 11887, + [12924] = 12449, + [12925] = 12250, + [12926] = 11964, + [12927] = 12927, + [12928] = 12185, + [12929] = 12929, + [12930] = 12226, + [12931] = 12811, + [12932] = 12524, + [12933] = 11960, + [12934] = 11880, + [12935] = 12495, + [12936] = 11948, + [12937] = 12449, + [12938] = 12250, + [12939] = 11913, + [12940] = 11981, + [12941] = 11932, + [12942] = 12811, + [12943] = 12524, + [12944] = 12944, + [12945] = 11902, + [12946] = 12946, + [12947] = 12449, + [12948] = 12250, + [12949] = 12949, + [12950] = 11897, + [12951] = 12811, + [12952] = 12524, + [12953] = 11923, + [12954] = 11913, + [12955] = 11935, + [12956] = 12449, + [12957] = 12250, + [12958] = 12958, + [12959] = 12811, + [12960] = 12524, + [12961] = 12187, + [12962] = 12107, + [12963] = 12449, + [12964] = 12250, + [12965] = 11986, + [12966] = 11880, + [12967] = 12112, + [12968] = 12449, + [12969] = 12250, + [12970] = 12970, + [12971] = 11935, + [12972] = 12250, + [12973] = 12087, + [12974] = 12250, + [12975] = 12026, + [12976] = 12250, + [12977] = 12002, + [12978] = 12250, + [12979] = 12979, + [12980] = 12250, + [12981] = 12665, + [12982] = 12250, + [12983] = 12243, + [12984] = 12250, + [12985] = 11946, + [12986] = 12250, + [12987] = 11986, + [12988] = 12250, + [12989] = 12411, + [12990] = 12250, + [12991] = 12037, + [12992] = 12250, + [12993] = 11983, + [12994] = 12250, + [12995] = 12112, + [12996] = 12250, + [12997] = 11887, + [12998] = 11946, + [12999] = 11905, + [13000] = 13000, + [13001] = 12566, + [13002] = 11935, + [13003] = 11951, + [13004] = 12585, + [13005] = 11878, + [13006] = 13006, + [13007] = 12193, + [13008] = 11968, + [13009] = 11913, + [13010] = 12868, + [13011] = 11951, + [13012] = 11901, + [13013] = 11920, + [13014] = 11884, + [13015] = 11901, + [13016] = 12566, + [13017] = 12868, + [13018] = 11935, + [13019] = 12566, + [13020] = 12868, + [13021] = 12585, + [13022] = 12566, + [13023] = 12868, + [13024] = 13024, + [13025] = 12566, + [13026] = 12868, + [13027] = 11956, + [13028] = 12566, + [13029] = 12868, + [13030] = 11901, + [13031] = 12566, + [13032] = 12868, + [13033] = 11926, + [13034] = 12868, + [13035] = 12868, + [13036] = 12868, + [13037] = 12868, + [13038] = 12868, + [13039] = 12868, + [13040] = 12868, + [13041] = 12868, + [13042] = 12868, + [13043] = 12868, + [13044] = 12868, + [13045] = 12868, + [13046] = 12868, + [13047] = 12099, + [13048] = 12057, + [13049] = 13049, + [13050] = 11901, + [13051] = 11908, + [13052] = 13052, + [13053] = 13053, + [13054] = 12958, + [13055] = 12958, + [13056] = 12958, + [13057] = 12958, + [13058] = 12958, + [13059] = 12958, + [13060] = 12958, + [13061] = 11903, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -16931,13 +18266,13 @@ static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { }; static const TSMapSlice ts_supertype_map_slices[] = { - [sym__abstract_declarator] = {.index = 0, .length = 5}, - [sym__declarator] = {.index = 5, .length = 12}, - [sym__field_declarator] = {.index = 17, .length = 20}, - [sym__type_declarator] = {.index = 37, .length = 19}, - [sym_expression] = {.index = 56, .length = 41}, - [sym_statement] = {.index = 97, .length = 22}, - [sym_type_specifier] = {.index = 119, .length = 16}, + [sym__abstract_declarator] = {.index = 0, .length = 10}, + [sym__declarator] = {.index = 10, .length = 12}, + [sym__field_declarator] = {.index = 22, .length = 20}, + [sym__type_declarator] = {.index = 42, .length = 19}, + [sym_expression] = {.index = 61, .length = 41}, + [sym_statement] = {.index = 102, .length = 22}, + [sym_type_specifier] = {.index = 124, .length = 17}, }; static const TSSymbol ts_supertype_map_entries[] = { @@ -16946,8 +18281,13 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_abstract_function_declarator, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, + sym_abstract_qualified_identifier, sym_abstract_reference_declarator, - [5] = + sym_qualified_field_identifier, + sym_qualified_identifier, + sym_qualified_operator_cast_identifier, + sym_qualified_type_identifier, + [10] = sym_array_declarator, sym_attributed_declarator, sym_destructor_name, @@ -16960,7 +18300,7 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_reference_declarator, sym_structured_binding_declarator, sym_template_function, - [17] = + [22] = alias_sym_field_identifier, sym_array_declarator, sym_array_field_declarator, @@ -16981,7 +18321,7 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_reference_type_declarator, sym_template_method, sym_variadic_reference_declarator, - [37] = + [42] = alias_sym_type_identifier, sym_array_declarator, sym_array_field_declarator, @@ -17001,7 +18341,7 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_reference_field_declarator, sym_reference_type_declarator, sym_variadic_reference_declarator, - [56] = + [61] = sym_alignof_expression, sym_assignment_expression, sym_binary_expression, @@ -17043,7 +18383,7 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_unary_expression, sym_update_expression, sym_user_defined_literal, - [97] = + [102] = sym_attributed_statement, sym_break_statement, sym_case_statement, @@ -17066,8 +18406,9 @@ static const TSSymbol ts_supertype_map_entries[] = { sym_throw_statement, sym_try_statement, sym_while_statement, - [119] = + [124] = alias_sym_type_identifier, + sym_abstract_qualified_identifier, sym_class_specifier, sym_decltype, sym_dependent_type, @@ -17283,7481 +18624,7911 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(439); + if (eof) ADVANCE(467); ADVANCE_MAP( - '!', 506, - '"', 632, - '#', 385, - '%', 530, - '&', 542, - '\'', 623, - '(', 443, - ')', 446, - '*', 526, - '+', 520, - ',', 445, - '-', 509, - '.', 597, - '/', 528, - '0', 605, - ':', 563, - ';', 560, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 573, + '!', 534, + '"', 660, + '#', 413, + '%', 558, + '&', 570, + '\'', 651, + '(', 471, + ')', 474, + '*', 554, + '+', 548, + ',', 473, + '-', 537, + '.', 625, + '/', 556, + '0', 633, + ':', 591, + ';', 588, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 601, '\\', 2, - ']', 577, - '^', 538, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 534, - '}', 569, - '~', 507, + ']', 605, + '^', 566, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 562, + '}', 597, + '~', 535, ); 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); + lookahead == ' ') SKIP(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 1: - if (lookahead == '\n') SKIP(225); + if (lookahead == '\n') SKIP(243); END_STATE(); case 2: - if (lookahead == '\n') SKIP(225); + if (lookahead == '\n') SKIP(243); if (lookahead == '\r') SKIP(1); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 3: - if (lookahead == '\n') SKIP(236); + if (lookahead == '\n') SKIP(254); END_STATE(); case 4: - if (lookahead == '\n') SKIP(236); + if (lookahead == '\n') SKIP(254); if (lookahead == '\r') SKIP(3); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 5: - if (lookahead == '\n') SKIP(235); + if (lookahead == '\n') SKIP(253); END_STATE(); case 6: - if (lookahead == '\n') SKIP(235); + if (lookahead == '\n') SKIP(253); if (lookahead == '\r') SKIP(5); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 7: - if (lookahead == '\n') SKIP(238); + if (lookahead == '\n') SKIP(256); END_STATE(); case 8: - if (lookahead == '\n') SKIP(238); + if (lookahead == '\n') SKIP(256); if (lookahead == '\r') SKIP(7); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 9: - if (lookahead == '\n') SKIP(237); + if (lookahead == '\n') SKIP(255); END_STATE(); case 10: - if (lookahead == '\n') SKIP(237); + if (lookahead == '\n') SKIP(255); if (lookahead == '\r') SKIP(9); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 11: - if (lookahead == '\n') SKIP(239); + if (lookahead == '\n') SKIP(257); END_STATE(); case 12: - if (lookahead == '\n') SKIP(239); + if (lookahead == '\n') SKIP(257); if (lookahead == '\r') SKIP(11); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 13: - if (lookahead == '\n') SKIP(240); + if (lookahead == '\n') SKIP(258); END_STATE(); case 14: - if (lookahead == '\n') SKIP(240); + if (lookahead == '\n') SKIP(258); if (lookahead == '\r') SKIP(13); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 15: - if (lookahead == '\n') SKIP(228); + if (lookahead == '\n') SKIP(246); END_STATE(); case 16: - if (lookahead == '\n') SKIP(228); + if (lookahead == '\n') SKIP(246); if (lookahead == '\r') SKIP(15); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 17: - if (lookahead == '\n') SKIP(229); + if (lookahead == '\n') SKIP(247); END_STATE(); case 18: - if (lookahead == '\n') SKIP(229); + if (lookahead == '\n') SKIP(247); if (lookahead == '\r') SKIP(17); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 19: - if (lookahead == '\n') SKIP(230); + if (lookahead == '\n') SKIP(248); END_STATE(); case 20: - if (lookahead == '\n') SKIP(230); + if (lookahead == '\n') SKIP(248); if (lookahead == '\r') SKIP(19); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 21: - if (lookahead == '\n') SKIP(285); + if (lookahead == '\n') SKIP(309); END_STATE(); case 22: - if (lookahead == '\n') SKIP(285); + if (lookahead == '\n') SKIP(309); if (lookahead == '\r') SKIP(21); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 23: - if (lookahead == '\n') SKIP(333); + if (lookahead == '\n') SKIP(362); END_STATE(); case 24: - if (lookahead == '\n') SKIP(333); + if (lookahead == '\n') SKIP(362); if (lookahead == '\r') SKIP(23); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 25: - if (lookahead == '\n') SKIP(286); + if (lookahead == '\n') SKIP(310); END_STATE(); case 26: - if (lookahead == '\n') SKIP(286); + if (lookahead == '\n') SKIP(310); if (lookahead == '\r') SKIP(25); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 27: - if (lookahead == '\n') SKIP(233); + if (lookahead == '\n') SKIP(251); END_STATE(); case 28: - if (lookahead == '\n') SKIP(233); + if (lookahead == '\n') SKIP(251); if (lookahead == '\r') SKIP(27); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 29: - if (lookahead == '\n') SKIP(253); + if (lookahead == '\n') SKIP(273); END_STATE(); case 30: - if (lookahead == '\n') SKIP(253); + if (lookahead == '\n') SKIP(273); if (lookahead == '\r') SKIP(29); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 31: - if (lookahead == '\n') SKIP(241); + if (lookahead == '\n') SKIP(259); END_STATE(); case 32: - if (lookahead == '\n') SKIP(241); + if (lookahead == '\n') SKIP(259); if (lookahead == '\r') SKIP(31); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 33: - if (lookahead == '\n') SKIP(248); + if (lookahead == '\n') SKIP(288); END_STATE(); case 34: - if (lookahead == '\n') SKIP(248); + if (lookahead == '\n') SKIP(288); if (lookahead == '\r') SKIP(33); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 35: - if (lookahead == '\n') SKIP(266); + if (lookahead == '\n') SKIP(267); END_STATE(); case 36: - if (lookahead == '\n') SKIP(266); + if (lookahead == '\n') SKIP(267); if (lookahead == '\r') SKIP(35); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 37: - if (lookahead == '\n') SKIP(265); + if (lookahead == '\n') SKIP(291); END_STATE(); case 38: - if (lookahead == '\n') SKIP(265); + if (lookahead == '\n') SKIP(291); if (lookahead == '\r') SKIP(37); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 39: - if (lookahead == '\n') SKIP(289); + if (lookahead == '\n') SKIP(287); END_STATE(); case 40: - if (lookahead == '\n') SKIP(289); + if (lookahead == '\n') SKIP(287); if (lookahead == '\r') SKIP(39); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 41: - if (lookahead == '\n') SKIP(298); + if (lookahead == '\n') SKIP(328); END_STATE(); case 42: - if (lookahead == '\n') SKIP(298); + if (lookahead == '\n') SKIP(328); if (lookahead == '\r') SKIP(41); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 43: - if (lookahead == '\n') SKIP(270); + if (lookahead == '\n') SKIP(321); END_STATE(); case 44: - if (lookahead == '\n') SKIP(270); + if (lookahead == '\n') SKIP(321); if (lookahead == '\r') SKIP(43); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 45: - if (lookahead == '\n') SKIP(243); + if (lookahead == '\n') SKIP(322); END_STATE(); case 46: - if (lookahead == '\n') SKIP(243); + if (lookahead == '\n') SKIP(322); if (lookahead == '\r') SKIP(45); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 47: - if (lookahead == '\n') SKIP(287); + if (lookahead == '\n') SKIP(313); END_STATE(); case 48: - if (lookahead == '\n') SKIP(287); + if (lookahead == '\n') SKIP(313); if (lookahead == '\r') SKIP(47); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 49: - if (lookahead == '\n') SKIP(249); + if (lookahead == '\n') SKIP(261); END_STATE(); case 50: - if (lookahead == '\n') SKIP(249); + if (lookahead == '\n') SKIP(261); if (lookahead == '\r') SKIP(49); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 51: - if (lookahead == '\n') SKIP(272); + if (lookahead == '\n') SKIP(342); END_STATE(); case 52: - if (lookahead == '\n') SKIP(272); + if (lookahead == '\n') SKIP(342); if (lookahead == '\r') SKIP(51); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 53: - if (lookahead == '\n') SKIP(315); + if (lookahead == '\n') SKIP(324); END_STATE(); case 54: - if (lookahead == '\n') SKIP(315); + if (lookahead == '\n') SKIP(324); if (lookahead == '\r') SKIP(53); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 55: - if (lookahead == '\n') SKIP(255); + if (lookahead == '\n') SKIP(289); END_STATE(); case 56: - if (lookahead == '\n') SKIP(255); + if (lookahead == '\n') SKIP(289); if (lookahead == '\r') SKIP(55); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 57: - if (lookahead == '\n') SKIP(256); + if (lookahead == '\n') SKIP(299); END_STATE(); case 58: - if (lookahead == '\n') SKIP(256); + if (lookahead == '\n') SKIP(299); if (lookahead == '\r') SKIP(57); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 59: - if (lookahead == '\n') SKIP(269); + if (lookahead == '\n') SKIP(268); END_STATE(); case 60: - if (lookahead == '\n') SKIP(269); + if (lookahead == '\n') SKIP(268); if (lookahead == '\r') SKIP(59); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 61: - if (lookahead == '\n') SKIP(301); + if (lookahead == '\n') SKIP(275); END_STATE(); case 62: - if (lookahead == '\n') SKIP(301); + if (lookahead == '\n') SKIP(275); if (lookahead == '\r') SKIP(61); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 63: - if (lookahead == '\n') SKIP(292); + if (lookahead == '\n') SKIP(277); END_STATE(); case 64: - if (lookahead == '\n') SKIP(292); + if (lookahead == '\n') SKIP(277); if (lookahead == '\r') SKIP(63); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 65: - if (lookahead == '\n') SKIP(316); + if (lookahead == '\n') SKIP(346); END_STATE(); case 66: - if (lookahead == '\n') SKIP(316); + if (lookahead == '\n') SKIP(346); if (lookahead == '\r') SKIP(65); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 67: - if (lookahead == '\n') SKIP(309); + if (lookahead == '\n') SKIP(312); END_STATE(); case 68: - if (lookahead == '\n') SKIP(309); + if (lookahead == '\n') SKIP(312); if (lookahead == '\r') SKIP(67); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 69: - if (lookahead == '\n') SKIP(324); + if (lookahead == '\n') SKIP(325); END_STATE(); case 70: - if (lookahead == '\n') SKIP(324); + if (lookahead == '\n') SKIP(325); if (lookahead == '\r') SKIP(69); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 71: - if (lookahead == '\n') SKIP(305); + if (lookahead == '\n') SKIP(326); END_STATE(); case 72: - if (lookahead == '\n') SKIP(305); + if (lookahead == '\n') SKIP(326); if (lookahead == '\r') SKIP(71); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 73: - if (lookahead == '\n') SKIP(291); + if (lookahead == '\n') SKIP(343); END_STATE(); case 74: - if (lookahead == '\n') SKIP(291); + if (lookahead == '\n') SKIP(343); if (lookahead == '\r') SKIP(73); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 75: - if (lookahead == '\n') SKIP(303); + if (lookahead == '\n') SKIP(350); END_STATE(); case 76: - if (lookahead == '\n') SKIP(303); + if (lookahead == '\n') SKIP(350); if (lookahead == '\r') SKIP(75); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 77: - if (lookahead == '\n') SKIP(244); + if (lookahead == '\n') SKIP(316); END_STATE(); case 78: - if (lookahead == '\n') SKIP(244); + if (lookahead == '\n') SKIP(316); if (lookahead == '\r') SKIP(77); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 79: - if (lookahead == '\n') SKIP(334); + if (lookahead == '\n') SKIP(332); END_STATE(); case 80: - if (lookahead == '\n') SKIP(334); + if (lookahead == '\n') SKIP(332); if (lookahead == '\r') SKIP(79); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 81: - if (lookahead == '\n') SKIP(314); + if (lookahead == '\n') SKIP(336); END_STATE(); case 82: - if (lookahead == '\n') SKIP(314); + if (lookahead == '\n') SKIP(336); if (lookahead == '\r') SKIP(81); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 83: - if (lookahead == '\n') SKIP(254); + if (lookahead == '\n') SKIP(263); END_STATE(); case 84: - if (lookahead == '\n') SKIP(254); + if (lookahead == '\n') SKIP(263); if (lookahead == '\r') SKIP(83); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 85: - if (lookahead == '\n') SKIP(251); + if (lookahead == '\n') SKIP(363); END_STATE(); case 86: - if (lookahead == '\n') SKIP(251); + if (lookahead == '\n') SKIP(363); if (lookahead == '\r') SKIP(85); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 87: - if (lookahead == '\n') SKIP(335); + if (lookahead == '\n') SKIP(367); END_STATE(); case 88: - if (lookahead == '\n') SKIP(335); + if (lookahead == '\n') SKIP(367); if (lookahead == '\r') SKIP(87); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 89: - if (lookahead == '\n') SKIP(259); + if (lookahead == '\n') SKIP(341); END_STATE(); case 90: - if (lookahead == '\n') SKIP(259); + if (lookahead == '\n') SKIP(341); if (lookahead == '\r') SKIP(89); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 91: - if (lookahead == '\n') SKIP(257); + if (lookahead == '\n') SKIP(365); END_STATE(); case 92: - if (lookahead == '\n') SKIP(257); + if (lookahead == '\n') SKIP(365); if (lookahead == '\r') SKIP(91); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 93: - if (lookahead == '\n') SKIP(336); + if (lookahead == '\n') SKIP(274); END_STATE(); case 94: - if (lookahead == '\n') SKIP(336); + if (lookahead == '\n') SKIP(274); if (lookahead == '\r') SKIP(93); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 95: - if (lookahead == '\n') SKIP(267); + if (lookahead == '\n') SKIP(271); END_STATE(); case 96: - if (lookahead == '\n') SKIP(267); + if (lookahead == '\n') SKIP(271); if (lookahead == '\r') SKIP(95); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 97: - if (lookahead == '\n') SKIP(275); + if (lookahead == '\n') SKIP(281); END_STATE(); case 98: - if (lookahead == '\n') SKIP(275); + if (lookahead == '\n') SKIP(281); if (lookahead == '\r') SKIP(97); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 99: - if (lookahead == '\n') SKIP(297); + if (lookahead == '\n') SKIP(279); END_STATE(); case 100: - if (lookahead == '\n') SKIP(297); + if (lookahead == '\n') SKIP(279); if (lookahead == '\r') SKIP(99); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 101: - if (lookahead == '\n') SKIP(339); + if (lookahead == '\n') SKIP(297); END_STATE(); case 102: - if (lookahead == '\n') SKIP(339); + if (lookahead == '\n') SKIP(297); if (lookahead == '\r') SKIP(101); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 103: - if (lookahead == '\n') SKIP(288); + if (lookahead == '\n') SKIP(298); END_STATE(); case 104: - if (lookahead == '\n') SKIP(288); + if (lookahead == '\n') SKIP(298); if (lookahead == '\r') SKIP(103); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 105: - if (lookahead == '\n') SKIP(328); + if (lookahead == '\n') SKIP(323); END_STATE(); case 106: - if (lookahead == '\n') SKIP(328); + if (lookahead == '\n') SKIP(323); if (lookahead == '\r') SKIP(105); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 107: - if (lookahead == '\n') SKIP(300); + if (lookahead == '\n') SKIP(327); END_STATE(); case 108: - if (lookahead == '\n') SKIP(300); + if (lookahead == '\n') SKIP(327); if (lookahead == '\r') SKIP(107); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 109: - if (lookahead == '\n') SKIP(299); + if (lookahead == '\n') SKIP(357); END_STATE(); case 110: - if (lookahead == '\n') SKIP(299); + if (lookahead == '\n') SKIP(357); if (lookahead == '\r') SKIP(109); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 111: - if (lookahead == '\n') SKIP(340); + if (lookahead == '\n') SKIP(330); END_STATE(); case 112: - if (lookahead == '\n') SKIP(340); + if (lookahead == '\n') SKIP(330); if (lookahead == '\r') SKIP(111); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 113: - if (lookahead == '\n') SKIP(338); + if (lookahead == '\n') SKIP(366); END_STATE(); case 114: - if (lookahead == '\n') SKIP(338); + if (lookahead == '\n') SKIP(366); if (lookahead == '\r') SKIP(113); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 115: - if (lookahead == '\n') SKIP(234); + if (lookahead == '\n') SKIP(368); END_STATE(); case 116: - if (lookahead == '\n') SKIP(234); + if (lookahead == '\n') SKIP(368); if (lookahead == '\r') SKIP(115); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 117: - if (lookahead == '\n') SKIP(296); + if (lookahead == '\n') SKIP(252); END_STATE(); case 118: - if (lookahead == '\n') SKIP(296); + if (lookahead == '\n') SKIP(252); if (lookahead == '\r') SKIP(117); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 119: - if (lookahead == '\n') SKIP(304); + if (lookahead == '\n') SKIP(320); END_STATE(); case 120: - if (lookahead == '\n') SKIP(304); + if (lookahead == '\n') SKIP(320); if (lookahead == '\r') SKIP(119); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 121: - if (lookahead == '\n') SKIP(307); + if (lookahead == '\n') SKIP(331); END_STATE(); case 122: - if (lookahead == '\n') SKIP(307); + if (lookahead == '\n') SKIP(331); if (lookahead == '\r') SKIP(121); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 123: - if (lookahead == '\n') SKIP(341); + if (lookahead == '\n') SKIP(338); END_STATE(); case 124: - if (lookahead == '\n') SKIP(341); + if (lookahead == '\n') SKIP(338); if (lookahead == '\r') SKIP(123); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 125: - if (lookahead == '\n') SKIP(337); + if (lookahead == '\n') SKIP(340); END_STATE(); case 126: - if (lookahead == '\n') SKIP(337); + if (lookahead == '\n') SKIP(340); if (lookahead == '\r') SKIP(125); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 127: - if (lookahead == '\n') SKIP(313); + if (lookahead == '\n') SKIP(376); END_STATE(); case 128: - if (lookahead == '\n') SKIP(313); + if (lookahead == '\n') SKIP(376); if (lookahead == '\r') SKIP(127); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 129: - if (lookahead == '\n') SKIP(342); + if (lookahead == '\n') SKIP(369); END_STATE(); case 130: - if (lookahead == '\n') SKIP(342); + if (lookahead == '\n') SKIP(369); if (lookahead == '\r') SKIP(129); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 131: - if (lookahead == '\n') SKIP(348); + if (lookahead == '\n') SKIP(370); END_STATE(); case 132: - if (lookahead == '\n') SKIP(348); + if (lookahead == '\n') SKIP(370); if (lookahead == '\r') SKIP(131); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 133: - if (lookahead == '\n') SKIP(343); + if (lookahead == '\n') SKIP(260); END_STATE(); case 134: - if (lookahead == '\n') SKIP(343); + if (lookahead == '\n') SKIP(260); if (lookahead == '\r') SKIP(133); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 135: - if (lookahead == '\n') SKIP(242); + if (lookahead == '\n') SKIP(137); END_STATE(); case 136: - if (lookahead == '\n') SKIP(242); + if (lookahead == '\n') SKIP(137); if (lookahead == '\r') SKIP(135); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); END_STATE(); case 137: - if (lookahead == '\n') SKIP(139); + ADVANCE_MAP( + '\n', 476, + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 546, + '-', 536, + '/', 555, + '<', 583, + '=', 401, + '>', 574, + ); + if (lookahead == '\\') SKIP(136); + if (lookahead == '^') ADVANCE(564); + if (lookahead == '|') ADVANCE(563); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(137); END_STATE(); case 138: - if (lookahead == '\n') SKIP(139); - if (lookahead == '\r') SKIP(137); + if (lookahead == '\n') SKIP(375); END_STATE(); case 139: - ADVANCE_MAP( - '\n', 448, - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 518, - '-', 508, - '/', 527, - '<', 555, - '=', 373, - '>', 546, - ); - if (lookahead == '\\') SKIP(138); - if (lookahead == '^') ADVANCE(536); - if (lookahead == '|') ADVANCE(535); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(139); + if (lookahead == '\n') SKIP(375); + if (lookahead == '\r') SKIP(138); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 140: - if (lookahead == '\n') SKIP(347); + if (lookahead == '\n') SKIP(374); END_STATE(); case 141: - if (lookahead == '\n') SKIP(347); + if (lookahead == '\n') SKIP(374); if (lookahead == '\r') SKIP(140); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 142: - if (lookahead == '\n') SKIP(329); + if (lookahead == '\n') SKIP(358); END_STATE(); case 143: - if (lookahead == '\n') SKIP(329); + if (lookahead == '\n') SKIP(358); if (lookahead == '\r') SKIP(142); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 144: - if (lookahead == '\n') SKIP(330); + if (lookahead == '\n') SKIP(359); END_STATE(); case 145: - if (lookahead == '\n') SKIP(330); + if (lookahead == '\n') SKIP(359); if (lookahead == '\r') SKIP(144); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 146: - if (lookahead == '\n') SKIP(331); - if (lookahead == '"') ADVANCE(632); - if (lookahead == '/') ADVANCE(633); + if (lookahead == '\n') SKIP(360); + if (lookahead == '"') ADVANCE(660); + if (lookahead == '/') ADVANCE(661); if (lookahead == '\\') ADVANCE(147); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(636); - if (lookahead != 0) ADVANCE(637); + lookahead == ' ') ADVANCE(664); + if (lookahead != 0) ADVANCE(665); END_STATE(); case 147: - if (lookahead == '\n') ADVANCE(639); - if (lookahead == '\r') ADVANCE(638); - if (lookahead == 'U') ADVANCE(435); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == 'x') ADVANCE(421); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(641); - if (lookahead != 0) ADVANCE(638); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(666); + if (lookahead == 'U') ADVANCE(463); + if (lookahead == 'u') ADVANCE(455); + if (lookahead == 'x') ADVANCE(449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(666); END_STATE(); case 148: - if (lookahead == '\n') SKIP(344); - if (lookahead == '\'') ADVANCE(623); - if (lookahead == '/') ADVANCE(626); - if (lookahead == '\\') ADVANCE(625); + if (lookahead == '\n') SKIP(371); + if (lookahead == '\'') ADVANCE(651); + if (lookahead == '/') ADVANCE(654); + if (lookahead == '\\') ADVANCE(653); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(627); - if (lookahead != 0) ADVANCE(624); + lookahead == ' ') ADVANCE(655); + if (lookahead != 0) ADVANCE(652); END_STATE(); case 149: - if (lookahead == '\n') ADVANCE(441); + if (lookahead == '\n') ADVANCE(469); if (lookahead == '\r') ADVANCE(153); - if (lookahead == '(') ADVANCE(443); - if (lookahead == '/') ADVANCE(469); - if (lookahead == '\\') ADVANCE(464); + if (lookahead == '(') ADVANCE(471); + if (lookahead == '/') ADVANCE(497); + if (lookahead == '\\') ADVANCE(492); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(361); - if (lookahead != 0) ADVANCE(471); + lookahead == ' ') SKIP(389); + if (lookahead != 0) ADVANCE(499); END_STATE(); case 150: - if (lookahead == '\n') ADVANCE(441); + if (lookahead == '\n') ADVANCE(469); if (lookahead == '\r') ADVANCE(153); - if (lookahead == '/') ADVANCE(469); - if (lookahead == '\\') ADVANCE(464); + if (lookahead == '/') ADVANCE(497); + if (lookahead == '\\') ADVANCE(492); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(361); - if (lookahead != 0) ADVANCE(471); + lookahead == ' ') SKIP(389); + if (lookahead != 0) ADVANCE(499); END_STATE(); case 151: - if (lookahead == '\n') ADVANCE(441); + if (lookahead == '\n') ADVANCE(469); if (lookahead == '\r') ADVANCE(152); - if (lookahead == '(') ADVANCE(504); - if (lookahead == '/') ADVANCE(352); + if (lookahead == '(') ADVANCE(532); + if (lookahead == '/') ADVANCE(380); if (lookahead == '\\') SKIP(155); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(377); END_STATE(); case 152: - if (lookahead == '\n') ADVANCE(441); - if (lookahead == '(') ADVANCE(504); - if (lookahead == '/') ADVANCE(352); + if (lookahead == '\n') ADVANCE(469); + if (lookahead == '(') ADVANCE(532); + if (lookahead == '/') ADVANCE(380); if (lookahead == '\\') SKIP(155); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(349); + lookahead == ' ') SKIP(377); END_STATE(); case 153: - if (lookahead == '\n') ADVANCE(441); - if (lookahead == '/') ADVANCE(469); - if (lookahead == '\\') ADVANCE(464); + if (lookahead == '\n') ADVANCE(469); + if (lookahead == '/') ADVANCE(497); + if (lookahead == '\\') ADVANCE(492); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(361); - if (lookahead != 0) ADVANCE(471); + lookahead == ' ') SKIP(389); + if (lookahead != 0) ADVANCE(499); END_STATE(); case 154: - if (lookahead == '\n') SKIP(349); + if (lookahead == '\n') SKIP(377); END_STATE(); case 155: - if (lookahead == '\n') SKIP(349); + if (lookahead == '\n') SKIP(377); if (lookahead == '\r') SKIP(154); END_STATE(); case 156: - if (lookahead == '\n') SKIP(226); + if (lookahead == '\n') SKIP(244); END_STATE(); case 157: - if (lookahead == '\n') SKIP(226); + if (lookahead == '\n') SKIP(244); if (lookahead == '\r') SKIP(156); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 158: - if (lookahead == '\n') SKIP(231); + if (lookahead == '\n') SKIP(249); END_STATE(); case 159: - if (lookahead == '\n') SKIP(231); + if (lookahead == '\n') SKIP(249); if (lookahead == '\r') SKIP(158); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 160: - if (lookahead == '\n') SKIP(232); + if (lookahead == '\n') SKIP(250); END_STATE(); case 161: - if (lookahead == '\n') SKIP(232); + if (lookahead == '\n') SKIP(250); if (lookahead == '\r') SKIP(160); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 162: - if (lookahead == '\n') SKIP(290); + if (lookahead == '\n') SKIP(292); END_STATE(); case 163: - if (lookahead == '\n') SKIP(290); + if (lookahead == '\n') SKIP(292); if (lookahead == '\r') SKIP(162); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 164: - if (lookahead == '\n') SKIP(271); + if (lookahead == '\n') SKIP(348); END_STATE(); case 165: - if (lookahead == '\n') SKIP(271); + if (lookahead == '\n') SKIP(348); if (lookahead == '\r') SKIP(164); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 166: - if (lookahead == '\n') SKIP(250); + if (lookahead == '\n') SKIP(311); END_STATE(); case 167: - if (lookahead == '\n') SKIP(250); + if (lookahead == '\n') SKIP(311); if (lookahead == '\r') SKIP(166); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 168: - if (lookahead == '\n') SKIP(281); + if (lookahead == '\n') SKIP(314); END_STATE(); case 169: - if (lookahead == '\n') SKIP(281); + if (lookahead == '\n') SKIP(314); if (lookahead == '\r') SKIP(168); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 170: - if (lookahead == '\n') SKIP(302); + if (lookahead == '\n') SKIP(262); END_STATE(); case 171: - if (lookahead == '\n') SKIP(302); + if (lookahead == '\n') SKIP(262); if (lookahead == '\r') SKIP(170); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 172: - if (lookahead == '\n') SKIP(325); + if (lookahead == '\n') SKIP(293); END_STATE(); case 173: - if (lookahead == '\n') SKIP(325); + if (lookahead == '\n') SKIP(293); if (lookahead == '\r') SKIP(172); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 174: - if (lookahead == '\n') SKIP(311); + if (lookahead == '\n') SKIP(269); END_STATE(); case 175: - if (lookahead == '\n') SKIP(311); + if (lookahead == '\n') SKIP(269); if (lookahead == '\r') SKIP(174); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 176: - if (lookahead == '\n') SKIP(321); + if (lookahead == '\n') SKIP(276); END_STATE(); case 177: - if (lookahead == '\n') SKIP(321); + if (lookahead == '\n') SKIP(276); if (lookahead == '\r') SKIP(176); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 178: - if (lookahead == '\n') SKIP(246); + if (lookahead == '\n') SKIP(278); END_STATE(); case 179: - if (lookahead == '\n') SKIP(246); + if (lookahead == '\n') SKIP(278); if (lookahead == '\r') SKIP(178); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 180: - if (lookahead == '\n') SKIP(263); + if (lookahead == '\n') SKIP(344); END_STATE(); case 181: - if (lookahead == '\n') SKIP(263); + if (lookahead == '\n') SKIP(344); if (lookahead == '\r') SKIP(180); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 182: - if (lookahead == '\n') SKIP(261); + if (lookahead == '\n') SKIP(345); END_STATE(); case 183: - if (lookahead == '\n') SKIP(261); + if (lookahead == '\n') SKIP(345); if (lookahead == '\r') SKIP(182); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 184: - if (lookahead == '\n') SKIP(276); + if (lookahead == '\n') SKIP(334); END_STATE(); case 185: - if (lookahead == '\n') SKIP(276); + if (lookahead == '\n') SKIP(334); if (lookahead == '\r') SKIP(184); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 186: - if (lookahead == '\n') SKIP(274); + if (lookahead == '\n') SKIP(351); END_STATE(); case 187: - if (lookahead == '\n') SKIP(274); + if (lookahead == '\n') SKIP(351); if (lookahead == '\r') SKIP(186); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 188: - if (lookahead == '\n') SKIP(318); + if (lookahead == '\n') SKIP(354); END_STATE(); case 189: - if (lookahead == '\n') SKIP(318); + if (lookahead == '\n') SKIP(354); if (lookahead == '\r') SKIP(188); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 190: - if (lookahead == '\n') SKIP(317); + if (lookahead == '\n') SKIP(265); END_STATE(); case 191: - if (lookahead == '\n') SKIP(317); + if (lookahead == '\n') SKIP(265); if (lookahead == '\r') SKIP(190); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 192: - if (lookahead == '\n') SKIP(294); + if (lookahead == '\n') SKIP(285); END_STATE(); case 193: - if (lookahead == '\n') SKIP(294); + if (lookahead == '\n') SKIP(285); if (lookahead == '\r') SKIP(192); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 194: - if (lookahead == '\n') SKIP(308); + if (lookahead == '\n') SKIP(283); END_STATE(); case 195: - if (lookahead == '\n') SKIP(308); + if (lookahead == '\n') SKIP(283); if (lookahead == '\r') SKIP(194); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 196: - if (lookahead == '\n') SKIP(227); + if (lookahead == '\n') SKIP(296); END_STATE(); case 197: - if (lookahead == '\n') SKIP(227); + if (lookahead == '\n') SKIP(296); if (lookahead == '\r') SKIP(196); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 198: - if (lookahead == '\n') SKIP(279); + if (lookahead == '\n') SKIP(308); END_STATE(); case 199: - if (lookahead == '\n') SKIP(279); + if (lookahead == '\n') SKIP(308); if (lookahead == '\r') SKIP(198); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 200: - if (lookahead == '\n') SKIP(319); + if (lookahead == '\n') SKIP(329); END_STATE(); case 201: - if (lookahead == '\n') SKIP(319); + if (lookahead == '\n') SKIP(329); if (lookahead == '\r') SKIP(200); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 202: - if (lookahead == '\n') SKIP(312); + if (lookahead == '\n') SKIP(318); END_STATE(); case 203: - if (lookahead == '\n') SKIP(312); + if (lookahead == '\n') SKIP(318); if (lookahead == '\r') SKIP(202); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 204: - if (lookahead == '\n') SKIP(284); + if (lookahead == '\n') SKIP(339); END_STATE(); case 205: - if (lookahead == '\n') SKIP(284); + if (lookahead == '\n') SKIP(339); if (lookahead == '\r') SKIP(204); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 206: - if (lookahead == '\n') SKIP(295); + if (lookahead == '\n') SKIP(245); END_STATE(); case 207: - if (lookahead == '\n') SKIP(295); + if (lookahead == '\n') SKIP(245); if (lookahead == '\r') SKIP(206); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 208: - if (lookahead == '\n') SKIP(323); + if (lookahead == '\n') SKIP(302); END_STATE(); case 209: - if (lookahead == '\n') SKIP(323); + if (lookahead == '\n') SKIP(302); if (lookahead == '\r') SKIP(208); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 210: - if (lookahead == '\n') SKIP(268); + if (lookahead == '\n') SKIP(315); END_STATE(); case 211: - if (lookahead == '\n') SKIP(268); + if (lookahead == '\n') SKIP(315); if (lookahead == '\r') SKIP(210); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 212: - if (lookahead == '\n') SKIP(320); + if (lookahead == '\n') SKIP(300); END_STATE(); case 213: - if (lookahead == '\n') SKIP(320); + if (lookahead == '\n') SKIP(300); if (lookahead == '\r') SKIP(212); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 214: - if (lookahead == '\n') SKIP(327); + if (lookahead == '\n') SKIP(270); END_STATE(); case 215: - if (lookahead == '\n') SKIP(327); + if (lookahead == '\n') SKIP(270); if (lookahead == '\r') SKIP(214); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 216: - if (lookahead == '\n') SKIP(280); + if (lookahead == '\n') SKIP(335); END_STATE(); case 217: - if (lookahead == '\n') SKIP(280); + if (lookahead == '\n') SKIP(335); if (lookahead == '\r') SKIP(216); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 218: - if (lookahead == '\n') SKIP(277); + if (lookahead == '\n') SKIP(307); END_STATE(); case 219: - if (lookahead == '\n') SKIP(277); + if (lookahead == '\n') SKIP(307); if (lookahead == '\r') SKIP(218); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 220: - if (lookahead == '\n') SKIP(278); + if (lookahead == '\n') SKIP(347); END_STATE(); case 221: - if (lookahead == '\n') SKIP(278); + if (lookahead == '\n') SKIP(347); if (lookahead == '\r') SKIP(220); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 222: - if (lookahead == '\n') SKIP(282); + if (lookahead == '\n') SKIP(319); END_STATE(); case 223: - if (lookahead == '\n') SKIP(282); + if (lookahead == '\n') SKIP(319); if (lookahead == '\r') SKIP(222); - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 224: - if (lookahead == '\r') ADVANCE(747); - if (lookahead == '\\') ADVANCE(741); - if (lookahead != 0) ADVANCE(746); + if (lookahead == '\n') SKIP(356); END_STATE(); case 225: - ADVANCE_MAP( - '!', 506, - '"', 632, - '#', 385, - '%', 530, - '&', 542, - '\'', 623, - '(', 504, - ')', 446, - '*', 526, - '+', 520, - ',', 445, - '-', 509, - '.', 597, - '/', 528, - '0', 605, - ':', 563, - ';', 560, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 573, - '\\', 2, - ']', 577, - '^', 538, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 534, - '}', 569, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(356); + if (lookahead == '\r') SKIP(224); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 226: - ADVANCE_MAP( - '!', 506, - '"', 632, - '#', 394, - '%', 530, - '&', 542, - '\'', 623, - '(', 504, - ')', 446, - '*', 526, - '+', 520, - ',', 445, - '-', 510, - '.', 597, - '/', 528, - '0', 605, - ':', 563, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 571, - '\\', 157, - ']', 383, - '^', 538, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 534, - '}', 569, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(290); END_STATE(); case 227: - ADVANCE_MAP( - '!', 506, - '"', 632, - '#', 394, - '%', 529, - '&', 541, - '\'', 623, - '(', 504, - ')', 446, - '*', 525, - '+', 521, - ',', 445, - '-', 511, - '.', 597, - '/', 527, - '0', 605, - ':', 563, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 571, - '\\', 197, - ']', 577, - '^', 539, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 535, - '}', 569, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(290); + if (lookahead == '\r') SKIP(226); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 228: - ADVANCE_MAP( - '!', 506, - '"', 632, - '%', 530, - '&', 542, - '\'', 623, - '(', 504, - ')', 446, - '*', 526, - '+', 520, - ',', 445, - '-', 509, - '.', 597, - '/', 528, - '0', 605, - ':', 368, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 571, - '\\', 16, - '^', 538, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 534, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(303); END_STATE(); case 229: - ADVANCE_MAP( - '!', 506, - '"', 632, - '%', 530, - '&', 542, - '\'', 623, - '(', 504, - '*', 526, - '+', 520, - ',', 445, - '-', 510, - '.', 597, - '/', 528, - '0', 605, - ':', 368, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 571, - '\\', 18, - '^', 538, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 534, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(303); + if (lookahead == '\r') SKIP(228); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 230: - ADVANCE_MAP( - '!', 506, - '"', 632, - '%', 530, - '&', 542, - '\'', 623, - '(', 504, - '*', 526, - '+', 520, - ',', 445, - '-', 510, - '.', 597, - '/', 528, - '0', 605, - ':', 368, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 571, - '\\', 20, - ']', 577, - '^', 538, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 534, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(353); END_STATE(); case 231: - ADVANCE_MAP( - '!', 506, - '"', 632, - '%', 529, - '&', 541, - '\'', 623, - '(', 504, - '*', 525, - '+', 521, - ',', 445, - '-', 511, - '.', 597, - '/', 527, - '0', 605, - ':', 368, - '<', 554, - '=', 373, - '>', 748, - '?', 582, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 571, - '\\', 159, - '^', 539, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 535, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(353); + if (lookahead == '\r') SKIP(230); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 232: - ADVANCE_MAP( - '!', 506, - '"', 632, - '%', 529, - '&', 541, - '\'', 623, - '(', 504, - '*', 525, - '+', 521, - ',', 445, - '-', 511, - '.', 597, - '/', 527, - '0', 605, - ':', 368, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 571, - '\\', 161, - ']', 383, - '^', 539, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 535, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(349); END_STATE(); case 233: - ADVANCE_MAP( - '!', 506, - '"', 332, - '%', 530, - '&', 542, - '(', 350, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '/', 528, - ':', 368, - '<', 552, - '=', 579, - '>', 547, - '[', 370, - '\\', 28, - '^', 537, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '|', 534, - '~', 507, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(233); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (lookahead == '\n') SKIP(349); + if (lookahead == '\r') SKIP(232); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 234: - ADVANCE_MAP( - '!', 506, - '"', 332, - '%', 530, - '&', 542, - '(', 350, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '[', 382, - '\\', 116, - '^', 537, - '|', 534, - '~', 507, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(234); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (lookahead == '\n') SKIP(294); END_STATE(); case 235: - ADVANCE_MAP( - '!', 505, - '"', 632, - '#', 385, - '&', 541, - '\'', 623, - '(', 504, - '*', 525, - '+', 521, - ',', 445, - '-', 512, - '.', 414, - '/', 352, - '0', 605, - ':', 368, - ';', 560, - '<', 371, - '>', 545, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 572, - '\\', 6, - ']', 383, - '^', 384, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 533, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(294); + if (lookahead == '\r') SKIP(234); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 236: - ADVANCE_MAP( - '!', 505, - '"', 632, - '#', 389, - '%', 529, - '&', 541, - '\'', 623, - '(', 504, - ')', 446, - '*', 525, - '+', 521, - ',', 445, - '-', 512, - '.', 599, - '/', 527, - '0', 605, - ':', 368, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 572, - '\\', 4, - ']', 577, - '^', 384, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 408, - '}', 569, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(304); END_STATE(); case 237: - ADVANCE_MAP( - '!', 505, - '"', 632, - '#', 393, - '&', 540, - '\'', 623, - '(', 504, - ')', 446, - '*', 525, - '+', 521, - '-', 512, - '.', 358, - '/', 352, - '0', 605, - ':', 368, - ';', 560, - '>', 376, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 572, - '\\', 10, - '^', 384, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(304); + if (lookahead == '\r') SKIP(236); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 238: - ADVANCE_MAP( - '!', 505, - '"', 632, - '#', 387, - '&', 541, - '\'', 623, - '(', 504, - '*', 525, - '+', 521, - ',', 445, - '-', 512, - '.', 414, - '/', 352, - '0', 605, - ':', 368, - ';', 560, - '>', 374, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 572, - '\\', 8, - '^', 384, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(301); END_STATE(); case 239: - ADVANCE_MAP( - '!', 505, - '"', 632, - '&', 541, - '\'', 623, - '(', 504, - '*', 525, - '+', 521, - '-', 512, - '.', 358, - '/', 352, - '0', 605, - ':', 368, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 571, - '\\', 12, - '^', 384, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(301); + if (lookahead == '\r') SKIP(238); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 240: - ADVANCE_MAP( - '!', 505, - '"', 632, - '&', 540, - '\'', 623, - '(', 504, - ')', 446, - '*', 525, - '+', 521, - ',', 445, - '-', 512, - '.', 599, - '/', 352, - '0', 605, - ':', 562, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 571, - '\\', 14, - ']', 577, - '^', 384, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '}', 569, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(305); END_STATE(); case 241: - ADVANCE_MAP( - '!', 505, - '"', 632, - '&', 540, - '\'', 623, - '(', 504, - '*', 525, - '+', 521, - '-', 511, - '.', 414, - '/', 352, - '0', 605, - ':', 368, - '<', 551, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 572, - '\\', 32, - '^', 384, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '~', 507, - ); - 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 (lookahead == '\n') SKIP(305); + if (lookahead == '\r') SKIP(240); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 242: - ADVANCE_MAP( - '!', 505, - '\'', 623, - '(', 504, - ')', 446, - '+', 523, - '-', 516, - '.', 414, - '/', 352, - '0', 605, - 'L', 667, - 'U', 668, - '\\', 136, - 'u', 669, - '~', 507, - ); - 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 (lookahead == '\r') ADVANCE(775); + if (lookahead == '\\') ADVANCE(769); + if (lookahead != 0) ADVANCE(774); END_STATE(); case 243: ADVANCE_MAP( - '!', 372, - '"', 632, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 563, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 46, - ']', 383, - '^', 537, - 'u', 657, - '{', 568, - '|', 534, - '}', 569, + '!', 534, + '"', 660, + '#', 413, + '%', 558, + '&', 570, + '\'', 651, + '(', 532, + ')', 474, + '*', 554, + '+', 548, + ',', 473, + '-', 537, + '.', 625, + '/', 556, + '0', 633, + ':', 591, + ';', 588, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 601, + '\\', 2, + ']', 605, + '^', 566, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 562, + '}', 597, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(243); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 244: ADVANCE_MAP( - '!', 372, - '"', 632, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 564, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 78, - ']', 383, - '^', 537, - 'u', 657, - '|', 534, - '}', 569, + '!', 534, + '"', 660, + '#', 422, + '%', 558, + '&', 570, + '\'', 651, + '(', 532, + ')', 474, + '*', 554, + '+', 548, + ',', 473, + '-', 538, + '.', 625, + '/', 556, + '0', 633, + ':', 591, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 599, + '\\', 157, + ']', 411, + '^', 566, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 562, + '}', 597, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 245: ADVANCE_MAP( - '!', 372, - '"', 632, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 564, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 762, - 'R', 763, - 'U', 764, - '[', 570, - '\\', 78, - ']', 383, - '^', 537, - 'u', 765, - '|', 534, - '}', 569, + '!', 534, + '"', 660, + '#', 422, + '%', 557, + '&', 569, + '\'', 651, + '(', 532, + ')', 474, + '*', 553, + '+', 549, + ',', 473, + '-', 539, + '.', 625, + '/', 555, + '0', 633, + ':', 591, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 599, + '\\', 207, + ']', 605, + '^', 567, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 563, + '}', 597, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - 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); + lookahead == ' ') SKIP(245); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 246: ADVANCE_MAP( - '!', 372, - '"', 632, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 564, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 179, - ']', 383, - '^', 536, - 'u', 657, - '|', 535, - '}', 569, + '!', 534, + '"', 660, + '%', 558, + '&', 570, + '\'', 651, + '(', 532, + ')', 474, + '*', 554, + '+', 548, + ',', 473, + '-', 537, + '.', 625, + '/', 556, + '0', 633, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 599, + '\\', 16, + '^', 566, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 562, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(246); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 247: ADVANCE_MAP( - '!', 372, - '"', 632, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 564, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - 'L', 762, - 'R', 763, - 'U', 764, - '[', 570, - '\\', 179, - ']', 383, - '^', 536, - 'u', 765, - '|', 535, - '}', 569, + '!', 534, + '"', 660, + '%', 558, + '&', 570, + '\'', 651, + '(', 532, + '*', 554, + '+', 548, + ',', 473, + '-', 538, + '.', 625, + '/', 556, + '0', 633, + ':', 396, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 599, + '\\', 18, + '^', 566, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 562, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - 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); + lookahead == ' ') SKIP(247); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 248: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - ':', 368, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 572, - '\\', 34, - '^', 537, - 'u', 657, - '{', 568, - '|', 534, - '~', 507, + '!', 534, + '"', 660, + '%', 558, + '&', 570, + '\'', 651, + '(', 532, + '*', 554, + '+', 548, + ',', 473, + '-', 538, + '.', 625, + '/', 556, + '0', 633, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 599, + '\\', 20, + ']', 605, + '^', 566, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 562, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(248); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 249: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - ':', 368, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 574, - '\\', 50, - '^', 537, - 'u', 657, - '{', 568, - '|', 534, + '!', 534, + '"', 660, + '%', 557, + '&', 569, + '\'', 651, + '(', 532, + '*', 553, + '+', 549, + ',', 473, + '-', 539, + '.', 625, + '/', 555, + '0', 633, + ':', 396, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 599, + '\\', 159, + '^', 567, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 563, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(249); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 250: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - ':', 368, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 167, - '^', 537, - 'u', 657, - '{', 568, - '|', 534, + '!', 534, + '"', 660, + '%', 557, + '&', 569, + '\'', 651, + '(', 532, + '*', 553, + '+', 549, + ',', 473, + '-', 539, + '.', 625, + '/', 555, + '0', 633, + ':', 396, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 599, + '\\', 161, + ']', 411, + '^', 567, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 563, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 251: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 86, - '^', 537, - 'u', 657, - '|', 534, + '!', 534, + '"', 361, + '%', 558, + '&', 570, + '(', 378, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '[', 398, + '\\', 28, + '^', 565, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '|', 562, + '~', 535, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 252: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 762, - 'R', 763, - 'U', 764, - '[', 570, - '\\', 86, - '^', 537, - 'u', 765, - '|', 534, + '!', 534, + '"', 361, + '%', 558, + '&', 570, + '(', 378, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '[', 410, + '\\', 118, + '^', 565, + '|', 562, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(251); - 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(252); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 253: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 562, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 572, - '\\', 30, - '^', 537, - 'u', 657, - '{', 568, - '|', 534, - '}', 569, - '~', 507, + '!', 533, + '"', 660, + '#', 413, + '&', 569, + '\'', 651, + '(', 532, + '*', 553, + '+', 549, + ',', 473, + '-', 540, + '.', 442, + '/', 380, + '0', 633, + ':', 396, + ';', 588, + '<', 399, + '>', 573, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 600, + '\\', 6, + ']', 411, + '^', 412, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 561, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(253); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 254: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 368, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 574, - '\\', 84, - '^', 537, - 'u', 657, - '{', 568, - '|', 534, - '}', 569, + '!', 533, + '"', 660, + '#', 417, + '%', 557, + '&', 569, + '\'', 651, + '(', 532, + ')', 474, + '*', 553, + '+', 549, + ',', 473, + '-', 540, + '.', 627, + '/', 555, + '0', 633, + ':', 396, + ';', 588, + '<', 579, + '=', 606, + '>', 776, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 600, + '\\', 4, + ']', 605, + '^', 412, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 436, + '}', 597, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(254); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 255: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 368, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 56, - '^', 537, - 'u', 657, - '{', 568, - '|', 534, + '!', 533, + '"', 660, + '#', 421, + '&', 568, + '\'', 651, + '(', 532, + ')', 474, + '*', 553, + '+', 549, + '-', 540, + '.', 386, + '/', 380, + '0', 633, + ':', 396, + ';', 588, + '>', 404, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 600, + '\\', 10, + '^', 412, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(255); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 256: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 368, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 58, - ']', 577, - '^', 537, - 'u', 657, - '{', 568, - '|', 534, + '!', 533, + '"', 660, + '#', 415, + '&', 569, + '\'', 651, + '(', 532, + '*', 553, + '+', 549, + ',', 473, + '-', 540, + '.', 442, + '/', 380, + '0', 633, + ':', 396, + ';', 588, + '>', 402, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 600, + '\\', 8, + '^', 412, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(256); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 257: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 92, - '^', 537, - 'u', 657, - '|', 534, + '!', 533, + '"', 660, + '&', 569, + '\'', 651, + '(', 532, + '*', 553, + '+', 549, + '-', 540, + '.', 386, + '/', 380, + '0', 633, + ':', 396, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 599, + '\\', 12, + '^', 412, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(257); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 258: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - 'L', 762, - 'R', 763, - 'U', 764, - '[', 570, - '\\', 92, - '^', 537, - 'u', 765, - '|', 534, + '!', 533, + '"', 660, + '&', 568, + '\'', 651, + '(', 532, + ')', 474, + '*', 553, + '+', 549, + ',', 473, + '-', 540, + '.', 627, + '/', 380, + '0', 633, + ':', 590, + ';', 588, + '<', 579, + '=', 606, + '>', 776, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 599, + '\\', 14, + ']', 605, + '^', 412, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '}', 597, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(257); - 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(258); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 259: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 90, - ']', 577, - '^', 537, - 'u', 657, - '|', 534, + '!', 533, + '"', 660, + '&', 568, + '\'', 651, + '(', 532, + '*', 553, + '+', 549, + '-', 539, + '.', 442, + '/', 380, + '0', 633, + ':', 396, + '<', 579, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 600, + '\\', 32, + '^', 412, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(259); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 260: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - 'L', 762, - 'R', 763, - 'U', 764, - '[', 570, - '\\', 90, - ']', 577, - '^', 537, - 'u', 765, - '|', 534, + '!', 533, + '\'', 651, + '(', 532, + ')', 474, + '+', 551, + '-', 544, + '.', 442, + '/', 380, + '0', 633, + 'L', 695, + 'U', 696, + '\\', 134, + 'u', 697, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - 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); + lookahead == ' ') SKIP(260); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 261: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 748, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 183, - '^', 536, - 'u', 657, - '|', 535, + '!', 400, + '"', 660, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 591, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 599, + '\\', 50, + ']', 411, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 262: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 748, - '?', 582, - 'L', 762, - 'R', 763, - 'U', 764, - '[', 570, - '\\', 183, - '^', 536, - 'u', 765, - '|', 535, + '!', 400, + '"', 660, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 591, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 171, + ']', 411, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, + '}', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(261); - 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(262); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 263: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - 'L', 650, - 'R', 652, - 'U', 654, - '[', 570, - '\\', 181, - ']', 577, - '^', 536, - 'u', 657, - '|', 535, + '!', 400, + '"', 660, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 592, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 84, + ']', 411, + '^', 565, + 'u', 685, + '|', 562, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 264: ADVANCE_MAP( - '!', 372, - '"', 632, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - 'L', 762, - 'R', 763, - 'U', 764, - '[', 570, - '\\', 181, - ']', 577, - '^', 536, - 'u', 765, - '|', 535, + '!', 400, + '"', 660, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 592, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 790, + 'R', 791, + 'U', 792, + '[', 598, + '\\', 84, + ']', 411, + '^', 565, + 'u', 793, + '|', 562, + '}', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || 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); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 265: ADVANCE_MAP( - '!', 372, - '#', 405, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 562, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 572, - '\\', 38, - ']', 577, - '^', 537, - '{', 568, - '|', 534, - '}', 569, - '~', 507, + '!', 400, + '"', 660, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 592, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 191, + ']', 411, + '^', 564, + 'u', 685, + '|', 563, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 266: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '0', 749, - ':', 564, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 574, - '\\', 36, - ']', 383, - '^', 537, - '{', 568, - '|', 534, - '}', 569, + '!', 400, + '"', 660, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 592, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + 'L', 790, + 'R', 791, + 'U', 792, + '[', 598, + '\\', 191, + ']', 411, + '^', 564, + 'u', 793, + '|', 563, + '}', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(266); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(265); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 267: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 563, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 571, - '\\', 96, - ']', 577, - '^', 537, - '|', 534, - '}', 569, - '~', 507, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 600, + '\\', 36, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, + '~', 535, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 268: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 563, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 211, - ']', 383, - '^', 537, - '{', 568, - '|', 534, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 599, + '\\', 60, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 269: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 562, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 60, - ']', 577, - '^', 537, - '{', 568, - '|', 534, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 602, + '\\', 175, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 270: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 564, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 574, - '\\', 44, - ']', 577, - '^', 537, - '{', 568, - '|', 534, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 215, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 271: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 564, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 165, - ']', 383, - '^', 537, - '{', 568, - '|', 534, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 96, + '^', 565, + 'u', 685, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 272: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 564, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 52, - ']', 383, - '^', 537, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '{', 568, - '|', 534, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 790, + 'R', 791, + 'U', 792, + '[', 598, + '\\', 96, + '^', 565, + 'u', 793, + '|', 562, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(272); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(271); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 273: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 564, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 187, - ']', 383, - '^', 537, - '|', 534, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 590, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 600, + '\\', 30, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, + '}', 597, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - 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); + lookahead == ' ') SKIP(273); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 274: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 564, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 187, - ']', 383, - '^', 537, - '|', 534, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 396, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 602, + '\\', 94, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 275: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 564, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 576, - '\\', 98, - ']', 383, - '^', 537, - '|', 534, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 599, + '\\', 62, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 276: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 563, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 571, - '\\', 185, - ']', 577, - '^', 536, - '|', 535, - '}', 569, - '~', 507, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 177, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 277: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 563, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 219, - ']', 577, - '^', 536, - '{', 568, - '|', 535, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 599, + '\\', 64, + ']', 605, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 278: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 563, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 221, - ']', 383, - '^', 536, - '{', 568, - '|', 535, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 179, + ']', 605, + '^', 565, + 'u', 685, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 279: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 564, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 574, - '\\', 199, - ']', 383, - '^', 536, - '{', 568, - '|', 535, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 100, + '^', 565, + 'u', 685, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 280: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 564, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 217, - ']', 383, - '^', 536, - '{', 568, - '|', 535, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + 'L', 790, + 'R', 791, + 'U', 792, + '[', 598, + '\\', 100, + '^', 565, + 'u', 793, + '|', 562, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(280); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(279); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 281: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 564, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 169, - ']', 383, - '^', 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, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 98, + ']', 605, + '^', 565, + 'u', 685, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 282: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 564, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 223, - ']', 577, - '^', 536, - '{', 568, - '|', 535, - '}', 569, + '!', 400, + '"', 660, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + 'L', 790, + 'R', 791, + 'U', 792, + '[', 598, + '\\', 98, + ']', 605, + '^', 565, + 'u', 793, + '|', 562, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(282); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(281); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 283: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 564, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 205, - ']', 383, - '^', 536, - '|', 535, - '}', 569, + '!', 400, + '"', 660, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 195, + '^', 564, + 'u', 685, + '|', 563, ); if (('\t' <= lookahead && lookahead <= '\r') || - 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); + lookahead == ' ') SKIP(283); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 284: ADVANCE_MAP( - '!', 372, - '#', 394, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 564, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 205, - ']', 383, - '^', 536, - '|', 535, - '}', 569, + '!', 400, + '"', 660, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + 'L', 790, + 'R', 791, + 'U', 792, + '[', 598, + '\\', 195, + '^', 564, + 'u', 793, + '|', 563, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(284); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(283); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 285: ADVANCE_MAP( - '!', 372, - '#', 386, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 368, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 572, - '\\', 22, - ']', 383, - '^', 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, - '~', 507, + '!', 400, + '"', 660, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + 'L', 678, + 'R', 680, + 'U', 682, + '[', 598, + '\\', 193, + ']', 605, + '^', 564, + 'u', 685, + '|', 563, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 286: ADVANCE_MAP( - '!', 372, - '#', 388, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 518, - ',', 445, - '-', 508, - '/', 527, - ':', 368, - ';', 560, - '<', 555, - '=', 373, - '>', 546, - '[', 572, - '\\', 26, - '^', 536, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '|', 535, - '~', 507, + '!', 400, + '"', 660, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + 'L', 790, + 'R', 791, + 'U', 792, + '[', 598, + '\\', 193, + ']', 605, + '^', 564, + 'u', 793, + '|', 563, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(286); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(285); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 287: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - ':', 368, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 572, - '\\', 48, - '^', 537, - '{', 568, - '|', 534, - '~', 507, + '!', 400, + '#', 433, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + ':', 590, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 599, + '\\', 40, + ']', 605, + '^', 565, + '{', 596, + '|', 562, + '}', 597, + '~', 535, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 288: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - ':', 368, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 571, - '\\', 104, - '^', 537, - '|', 534, - '~', 507, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '0', 777, + ':', 591, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 599, + '\\', 34, + ']', 411, + '^', 565, + '{', 596, + '|', 562, + '}', 597, + '~', 535, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 289: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - ':', 562, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 574, - '\\', 40, - '^', 537, - '{', 568, - '|', 534, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 591, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 599, + '\\', 56, + ']', 411, + '^', 565, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 562, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 290: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - ':', 562, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 163, - '^', 537, - '{', 568, - '|', 534, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 591, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 227, + ']', 411, + '^', 565, + '{', 596, + '|', 562, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 291: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - ':', 561, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 74, - '^', 537, - '{', 568, - '|', 534, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 592, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 602, + '\\', 38, + ']', 411, + '^', 565, + '{', 596, + '|', 562, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 292: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 64, - '^', 537, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '{', 568, - '|', 534, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 592, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 602, + '\\', 163, + ']', 605, + '^', 565, + '{', 596, + '|', 562, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 293: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 193, - '^', 537, - '|', 534, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 592, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 173, + ']', 411, + '^', 565, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 562, + '}', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(294); - 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(293); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 294: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 193, - '^', 537, - '|', 534, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 592, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 235, + ']', 411, + '^', 565, + '{', 596, + '|', 562, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 295: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 576, - '\\', 207, - '^', 537, - '|', 534, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 592, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 197, + ']', 411, + '^', 565, + '|', 562, + '}', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(295); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(296); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 296: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 513, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 575, - '\\', 118, - '^', 537, - '|', 534, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 592, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 197, + ']', 411, + '^', 565, + '|', 562, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 297: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 562, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 574, - '\\', 100, - '^', 537, - '{', 568, - '|', 534, - '}', 569, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 592, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 604, + '\\', 102, + ']', 411, + '^', 565, + '|', 562, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 298: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - ')', 446, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 561, - ';', 560, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - '[', 574, - '\\', 42, - ']', 577, - '^', 537, - '{', 568, - '|', 534, + '!', 400, + '#', 422, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 590, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 104, + ']', 605, + '^', 565, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 299: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 368, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - '[', 571, - '\\', 110, - '^', 537, - '|', 534, - '~', 507, + '!', 400, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 591, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 599, + '\\', 58, + ']', 411, + '^', 564, + '{', 596, + '|', 563, + '}', 597, + '~', 535, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 300: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 368, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 571, - '\\', 108, - ']', 383, - '^', 537, - '|', 534, - '~', 507, + '!', 400, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 591, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 599, + '\\', 213, + ']', 411, + '^', 564, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 563, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 301: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 562, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - '[', 570, - '\\', 62, - '^', 537, - '{', 568, - '|', 534, + '!', 400, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 591, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 239, + ']', 411, + '^', 564, + '{', 596, + '|', 563, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 302: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 561, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - '[', 570, - '\\', 171, - '^', 537, - '{', 568, - '|', 534, + '!', 400, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 592, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 602, + '\\', 209, + ']', 411, + '^', 564, + '{', 596, + '|', 563, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 303: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ':', 561, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 76, - ']', 577, - '^', 537, - '{', 568, - '|', 534, + '!', 400, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 592, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 229, + ']', 411, + '^', 564, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 563, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 304: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - ';', 560, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 575, - '\\', 120, - '^', 537, - '|', 534, - '}', 569, + '!', 400, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 592, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 237, + ']', 411, + '^', 564, + '{', 596, + '|', 563, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 305: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - '[', 570, - '\\', 72, - '^', 537, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '{', 568, - '|', 534, + '!', 400, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 592, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 241, + ']', 605, + '^', 564, + '{', 596, + '|', 563, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 306: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - '[', 570, - '\\', 122, - '^', 537, - '|', 534, + '!', 400, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 592, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 219, + ']', 411, + '^', 564, + '|', 563, + '}', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(307); - 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 (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 307: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - '[', 570, - '\\', 122, - '^', 537, - '|', 534, + '!', 400, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 592, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 219, + ']', 411, + '^', 564, + '|', 563, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 308: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - '[', 576, - '\\', 195, - '^', 537, - '|', 534, + '!', 400, + '#', 422, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 590, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 199, + ']', 605, + '^', 564, + '{', 596, + '|', 563, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 309: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 68, - ']', 577, - '^', 537, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '{', 568, - '|', 534, + '!', 400, + '#', 414, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 396, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 600, + '\\', 22, + ']', 411, + '^', 564, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 563, + '~', 535, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 310: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 175, - ']', 577, - '^', 537, - '|', 534, + '!', 400, + '#', 416, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 546, + ',', 473, + '-', 536, + '/', 555, + ':', 396, + ';', 588, + '<', 583, + '=', 401, + '>', 574, + '[', 600, + '\\', 26, + '^', 564, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '|', 563, + '~', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - 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); + lookahead == ' ') SKIP(310); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 311: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 570, - '\\', 175, - ']', 577, - '^', 537, - '|', 534, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + ':', 396, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 600, + '\\', 167, + '^', 565, + '{', 596, + '|', 562, + '~', 535, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 312: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '(', 504, - '*', 526, - '+', 522, - ',', 445, - '-', 514, - '.', 596, - '/', 528, - '<', 552, - '=', 579, - '>', 547, - '?', 582, - '[', 576, - '\\', 203, - ']', 577, - '^', 537, - '|', 534, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 599, + '\\', 68, + '^', 565, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 313: ADVANCE_MAP( - '!', 372, - '%', 530, - '&', 542, - '*', 526, - '+', 524, - ',', 445, - '-', 517, - '.', 351, - '/', 528, - '<', 553, - '=', 579, - '>', 547, - '\\', 128, - '^', 537, - '|', 534, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 602, + '\\', 48, + '^', 565, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 314: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 563, - ';', 560, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 82, - ']', 383, - '^', 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, - '}', 569, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + ':', 590, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 169, + '^', 565, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 315: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 562, - ';', 560, - '<', 554, - '=', 579, - '>', 546, - '?', 582, - '[', 572, - '\\', 54, - ']', 577, - '^', 536, - '{', 568, - '|', 535, - '}', 569, - '~', 507, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + ':', 589, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 211, + '^', 565, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 316: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 368, - ';', 560, - '<', 554, - '=', 373, - '>', 748, - '?', 582, - '[', 574, - '\\', 66, - '^', 536, - '|', 535, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 78, + '^', 565, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 317: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 368, - '<', 554, - '=', 373, - '>', 748, - '?', 582, - '[', 571, - '\\', 191, - '^', 536, - '|', 535, - '~', 507, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 203, + '^', 565, + '|', 562, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(317); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(318); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 318: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 368, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 571, - '\\', 189, - ']', 383, - '^', 536, - '|', 535, - '~', 507, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 203, + '^', 565, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 319: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 562, - '<', 554, - '=', 373, - '>', 748, - '?', 582, - '[', 570, - '\\', 201, - '^', 536, - '{', 568, - '|', 535, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 604, + '\\', 223, + '^', 565, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 320: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - ':', 561, - '<', 554, - '=', 373, - '>', 748, - '?', 582, - '[', 570, - '\\', 213, - '^', 536, - '{', 568, - '|', 535, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 541, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 603, + '\\', 120, + '^', 565, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 321: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 748, - '?', 582, - '[', 570, - '\\', 177, - '^', 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, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 590, + ';', 588, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + '[', 599, + '\\', 44, + '^', 565, + '{', 596, + '|', 562, + '~', 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 322: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 748, - '?', 582, - '[', 570, - '\\', 209, - '^', 536, - '|', 535, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 590, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 600, + '\\', 46, + '^', 565, + '{', 596, + '|', 562, + '}', 597, + '~', 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 323: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 748, - '?', 582, - '[', 570, - '\\', 209, - '^', 536, - '|', 535, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 590, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 602, + '\\', 106, + '^', 565, + '{', 596, + '|', 562, + '}', 597, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(323); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 324: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 574, - '\\', 70, - ']', 577, - '^', 536, - '|', 535, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + ')', 474, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 589, + ';', 588, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + '[', 602, + '\\', 54, + ']', 605, + '^', 565, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 325: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 173, - ']', 577, - '^', 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, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + '[', 599, + '\\', 70, + '^', 565, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 326: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 215, - ']', 577, - '^', 536, - '|', 535, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 396, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 599, + '\\', 72, + ']', 605, + '^', 565, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 562, ); if (('\t' <= lookahead && lookahead <= '\r') || - 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); + lookahead == ' ') SKIP(326); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 327: ADVANCE_MAP( - '!', 372, - '%', 529, - '&', 541, - '(', 504, - '*', 525, - '+', 519, - ',', 445, - '-', 515, - '.', 596, - '/', 527, - '<', 554, - '=', 373, - '>', 546, - '?', 582, - '[', 570, - '\\', 215, - ']', 577, - '^', 536, - '|', 535, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 590, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + '[', 598, + '\\', 108, + '^', 565, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 328: ADVANCE_MAP( - '"', 632, - '&', 541, - '(', 504, - '*', 525, - '/', 352, - ':', 368, - 'L', 651, - 'U', 655, - '[', 572, - '\\', 106, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 658, - 'v', 718, - '~', 507, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 590, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 599, + '\\', 42, + ']', 605, + '^', 565, + '{', 596, + '|', 562, + '~', 535, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 329: ADVANCE_MAP( - '"', 632, - ')', 446, - ',', 445, - '/', 352, - ':', 561, - 'L', 650, - 'R', 652, - 'U', 654, - '\\', 143, - 'u', 657, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 589, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + '[', 598, + '\\', 201, + '^', 565, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 330: ADVANCE_MAP( - '"', 632, - '/', 352, - ':', 561, - '<', 378, - 'L', 651, - 'U', 655, - '\\', 145, - 'u', 659, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ':', 589, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 112, + ']', 605, + '^', 565, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 331: - if (lookahead == '"') ADVANCE(632); - if (lookahead == '/') ADVANCE(352); - if (lookahead == '\\') ADVANCE(147); + ADVANCE_MAP( + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + ';', 588, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 603, + '\\', 122, + '^', 565, + '|', 562, + '}', 597, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(331); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 332: - if (lookahead == '"') ADVANCE(761); + ADVANCE_MAP( + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + '[', 598, + '\\', 80, + '^', 565, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 562, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(332); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 333: ADVANCE_MAP( - '#', 390, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - '+', 518, - ',', 445, - '-', 508, - '.', 357, - '/', 352, - ':', 562, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - '[', 572, - '\\', 24, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '{', 568, - '|', 408, - '}', 569, - '~', 507, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + '[', 598, + '\\', 185, + '^', 565, + '|', 562, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(333); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(334); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 334: ADVANCE_MAP( - '#', 394, - '&', 541, - '(', 504, - ')', 446, - '*', 525, - ',', 445, - '.', 357, - '/', 352, - ':', 562, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - '[', 571, - '\\', 80, - '{', 568, - '~', 507, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + '[', 598, + '\\', 185, + '^', 565, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 335: ADVANCE_MAP( - '&', 541, - '(', 504, - ')', 446, - '*', 525, - ',', 445, - '-', 377, - '.', 357, - '/', 352, - ':', 562, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - '[', 572, - '\\', 88, - '{', 568, - '|', 408, - '~', 507, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + '[', 604, + '\\', 217, + '^', 565, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 336: ADVANCE_MAP( - '&', 541, - '(', 504, - ')', 446, - '*', 525, - ',', 445, - '-', 377, - '.', 357, - '/', 352, - ':', 562, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - '[', 574, - '\\', 94, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '{', 568, - '|', 408, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 82, + ']', 605, + '^', 565, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 337: ADVANCE_MAP( - '&', 541, - '(', 504, - ')', 446, - '*', 525, - ',', 445, - '-', 377, - '.', 357, - '/', 352, - ':', 562, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - '[', 570, - '\\', 126, - '{', 568, - '|', 408, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 124, + ']', 605, + '^', 565, + '|', 562, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(337); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(338); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 338: ADVANCE_MAP( - '&', 541, - '(', 504, - ')', 446, - '*', 525, - ',', 445, - '-', 377, - '.', 357, - '/', 352, - ':', 561, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - '[', 574, - '\\', 114, - ']', 577, - '{', 568, - '|', 408, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 598, + '\\', 124, + ']', 605, + '^', 565, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 339: ADVANCE_MAP( - '&', 541, - '(', 504, - ')', 446, - '*', 525, - ',', 445, - '-', 377, - '.', 357, - '/', 352, - ':', 561, - ';', 560, - '=', 578, - '>', 748, - '[', 574, - '\\', 102, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '{', 568, + '!', 400, + '%', 558, + '&', 570, + '(', 532, + '*', 554, + '+', 550, + ',', 473, + '-', 542, + '.', 624, + '/', 556, + '<', 580, + '=', 607, + '>', 575, + '?', 610, + '[', 604, + '\\', 205, + ']', 605, + '^', 565, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 340: ADVANCE_MAP( - '&', 541, - '(', 504, - ')', 446, - '*', 525, - ',', 445, - '-', 377, - '/', 352, - ':', 562, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - '[', 574, - '\\', 112, - '{', 568, - '|', 408, + '!', 400, + '%', 558, + '&', 570, + '*', 554, + '+', 552, + ',', 473, + '-', 545, + '.', 379, + '/', 556, + '<', 581, + '=', 607, + '>', 575, + '\\', 126, + '^', 565, + '|', 562, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 341: ADVANCE_MAP( - '&', 541, - '(', 504, - ')', 446, - '*', 525, - ',', 445, - '.', 598, - '/', 352, - ':', 561, - ';', 560, - '=', 578, - '>', 748, - '[', 570, - '\\', 124, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '{', 568, + '!', 400, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 591, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 90, + ']', 411, + '^', 564, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 563, + '}', 597, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 342: ADVANCE_MAP( - '&', 541, - '(', 504, - ')', 446, - '*', 525, - ',', 445, - '.', 357, - '/', 352, - ':', 561, - ';', 560, - '=', 578, - '>', 748, - '[', 570, - '\\', 130, - '{', 568, - '|', 408, + '!', 400, + '%', 557, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 590, + ';', 588, + '<', 582, + '=', 607, + '>', 574, + '?', 610, + '[', 600, + '\\', 52, + ']', 605, + '^', 564, + '{', 596, + '|', 563, + '}', 597, + '~', 535, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 343: ADVANCE_MAP( - '&', 540, - '*', 525, - '.', 357, - '/', 352, - ':', 368, - '=', 578, - '[', 369, - '\\', 134, - ']', 577, + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 396, + ';', 588, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 602, + '\\', 74, + ']', 605, + '^', 564, + '|', 563, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 344: - if (lookahead == '\'') ADVANCE(623); - if (lookahead == '/') ADVANCE(352); - if (lookahead == '\\') ADVANCE(147); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 396, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + '[', 599, + '\\', 181, + '^', 564, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 563, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(344); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 345: - if (lookahead == '\'') ADVANCE(419); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(409); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(345); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 396, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 599, + '\\', 183, + ']', 605, + '^', 564, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 563, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(345); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 346: - if (lookahead == '\'') ADVANCE(415); - if (lookahead == '.') ADVANCE(612); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(409); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(346); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 590, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + '[', 599, + '\\', 66, + '^', 564, + '{', 596, + '|', 563, + '~', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(346); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 347: ADVANCE_MAP( - '(', 504, - ')', 446, - ',', 445, - '/', 352, - ':', 561, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - '[', 575, - '\\', 141, - ']', 577, - '{', 568, + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 590, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + '[', 598, + '\\', 221, + '^', 564, + '{', 596, + '|', 563, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 348: ADVANCE_MAP( - '(', 504, - '/', 352, - ':', 368, - 'F', 675, - 'T', 679, - '[', 571, - '\\', 132, - 'f', 685, - 't', 726, - '{', 568, + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 590, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 599, + '\\', 165, + ']', 605, + '^', 564, + '{', 596, + '|', 563, + '~', 535, ); 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, 687, lookahead)) ADVANCE(766); END_STATE(); case 349: - if (lookahead == '(') ADVANCE(504); - if (lookahead == '/') ADVANCE(352); - if (lookahead == '\\') SKIP(155); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + ':', 589, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + '[', 598, + '\\', 233, + '^', 564, + '{', 596, + '|', 563, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(349); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 350: - if (lookahead == ')') ADVANCE(759); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + '[', 602, + '\\', 76, + '^', 564, + '|', 563, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(350); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 351: - if (lookahead == '*') ADVANCE(600); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + '[', 598, + '\\', 187, + '^', 564, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 563, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(351); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 352: - if (lookahead == '*') ADVANCE(355); - if (lookahead == '/') ADVANCE(746); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + '[', 598, + '\\', 231, + '^', 564, + '|', 563, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(353); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 353: - if (lookahead == '*') ADVANCE(755); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 776, + '?', 610, + '[', 598, + '\\', 231, + '^', 564, + '|', 563, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(353); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 354: - if (lookahead == '*') ADVANCE(354); - if (lookahead == '/') ADVANCE(739); - if (lookahead != 0) ADVANCE(355); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 189, + ']', 605, + '^', 564, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 563, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(354); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 355: - if (lookahead == '*') ADVANCE(354); - if (lookahead != 0) ADVANCE(355); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 225, + ']', 605, + '^', 564, + '|', 563, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(356); + if (('A' <= lookahead && lookahead <= '_') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 356: - if (lookahead == '*') ADVANCE(354); - if (lookahead != 0) ADVANCE(462); + ADVANCE_MAP( + '!', 400, + '%', 557, + '&', 569, + '(', 532, + '*', 553, + '+', 547, + ',', 473, + '-', 543, + '.', 624, + '/', 555, + '<', 582, + '=', 401, + '>', 574, + '?', 610, + '[', 598, + '\\', 225, + ']', 605, + '^', 564, + '|', 563, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(356); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 357: - if (lookahead == '.') ADVANCE(359); + ADVANCE_MAP( + '"', 660, + '&', 569, + '(', 532, + '*', 553, + '/', 380, + ':', 396, + 'L', 679, + 'U', 683, + '[', 600, + '\\', 110, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 686, + 'v', 746, + '~', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(357); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 358: - if (lookahead == '.') ADVANCE(359); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); + ADVANCE_MAP( + '"', 660, + ')', 474, + ',', 473, + '/', 380, + ':', 589, + 'L', 678, + 'R', 680, + 'U', 682, + '\\', 143, + 'u', 685, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(358); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 359: - if (lookahead == '.') ADVANCE(444); + ADVANCE_MAP( + '"', 660, + '/', 380, + ':', 589, + '<', 406, + 'L', 679, + 'U', 683, + '\\', 145, + 'u', 687, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(359); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 360: - if (lookahead == '.') ADVANCE(419); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(610); + if (lookahead == '"') ADVANCE(660); + if (lookahead == '/') ADVANCE(380); + if (lookahead == '\\') ADVANCE(147); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(360); END_STATE(); case 361: - if (lookahead == '/') ADVANCE(469); - if (lookahead == '\\') ADVANCE(464); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(361); - if (lookahead != 0) ADVANCE(471); + if (lookahead == '"') ADVANCE(789); END_STATE(); case 362: - if (lookahead == '1') ADVANCE(366); + ADVANCE_MAP( + '#', 418, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + '+', 546, + ',', 473, + '-', 405, + '.', 385, + '/', 380, + ':', 590, + ';', 588, + '<', 579, + '=', 606, + '>', 776, + '[', 600, + '\\', 24, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + '|', 436, + '}', 597, + '~', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(362); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 363: - if (lookahead == '2') ADVANCE(603); + ADVANCE_MAP( + '#', 422, + '&', 569, + '(', 532, + ')', 474, + '*', 553, + ',', 473, + '.', 385, + '/', 380, + ':', 590, + ';', 588, + '<', 579, + '=', 606, + '>', 776, + '[', 599, + '\\', 86, + '{', 596, + '|', 436, + '~', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(363); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 364: - if (lookahead == '2') ADVANCE(367); - if (lookahead == '6') ADVANCE(603); + if (lookahead == '&') ADVANCE(560); END_STATE(); case 365: - if (lookahead == '4') ADVANCE(603); + ADVANCE_MAP( + '&', 569, + '(', 532, + ')', 474, + '*', 553, + ',', 473, + '-', 405, + '.', 385, + '/', 380, + ':', 590, + ';', 588, + '<', 579, + '=', 606, + '>', 776, + '[', 600, + '\\', 92, + '{', 596, + '|', 436, + '~', 535, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(365); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 366: - if (lookahead == '6') ADVANCE(603); + ADVANCE_MAP( + '&', 569, + '(', 532, + ')', 474, + '*', 553, + ',', 473, + '-', 405, + '.', 385, + '/', 380, + ':', 589, + ';', 588, + '<', 579, + '=', 606, + '>', 776, + '[', 602, + '\\', 114, + ']', 605, + '{', 596, + '|', 436, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(366); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 367: - if (lookahead == '8') ADVANCE(603); + ADVANCE_MAP( + '&', 569, + '(', 532, + ')', 474, + '*', 553, + ',', 473, + '/', 380, + ':', 396, + ';', 588, + '=', 606, + '>', 776, + '[', 599, + '\\', 88, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 741, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 'u', 734, + 'v', 746, + '{', 596, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(367); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 368: - if (lookahead == ':') ADVANCE(565); + ADVANCE_MAP( + '&', 569, + '(', 532, + ')', 474, + '*', 553, + ',', 473, + '/', 380, + ':', 590, + ';', 588, + '<', 579, + '=', 606, + '>', 776, + '[', 602, + '\\', 116, + '{', 596, + '|', 436, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(368); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 369: - if (lookahead == ':') ADVANCE(757); + ADVANCE_MAP( + '&', 568, + '*', 553, + '.', 385, + '/', 380, + ':', 396, + '=', 606, + '[', 397, + '\\', 130, + ']', 605, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(369); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 370: - if (lookahead == ':') ADVANCE(757); - if (lookahead == '[') ADVANCE(566); - if (lookahead == ']') ADVANCE(760); + ADVANCE_MAP( + '&', 364, + '(', 532, + ')', 474, + ',', 473, + '-', 405, + '.', 626, + '/', 380, + ':', 590, + ';', 588, + '<', 579, + '=', 606, + '>', 776, + '[', 598, + '\\', 132, + '{', 596, + '|', 436, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(370); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 371: - if (lookahead == '<') ADVANCE(556); - if (lookahead == '=') ADVANCE(549); + if (lookahead == '\'') ADVANCE(651); + if (lookahead == '/') ADVANCE(380); + if (lookahead == '\\') ADVANCE(147); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(371); END_STATE(); case 372: - if (lookahead == '=') ADVANCE(544); + if (lookahead == '\'') ADVANCE(447); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(437); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(372); END_STATE(); case 373: - if (lookahead == '=') ADVANCE(543); + if (lookahead == '\'') ADVANCE(443); + if (lookahead == '.') ADVANCE(640); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(373); END_STATE(); case 374: - if (lookahead == '=') ADVANCE(548); - if (lookahead == '>') ADVANCE(558); + ADVANCE_MAP( + '(', 532, + ')', 474, + ',', 473, + '.', 385, + '/', 380, + ':', 589, + ';', 588, + '=', 606, + '>', 776, + '[', 598, + '\\', 141, + '{', 596, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(374); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 375: - if (lookahead == '=') ADVANCE(589); + ADVANCE_MAP( + '(', 532, + ')', 474, + ',', 473, + '/', 380, + ':', 589, + ';', 588, + '<', 579, + '=', 606, + '>', 776, + '[', 603, + '\\', 139, + ']', 605, + '{', 596, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(375); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 376: - if (lookahead == '>') ADVANCE(375); + ADVANCE_MAP( + '(', 532, + '/', 380, + ':', 396, + 'F', 703, + 'T', 707, + '[', 599, + '\\', 128, + 'f', 713, + 't', 754, + '{', 596, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(376); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); case 377: - if (lookahead == '>') ADVANCE(601); + if (lookahead == '(') ADVANCE(532); + if (lookahead == '/') ADVANCE(380); + if (lookahead == '\\') SKIP(155); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(377); END_STATE(); case 378: - if (lookahead == '>') ADVANCE(645); - if (lookahead == '\\') ADVANCE(379); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(378); + if (lookahead == ')') ADVANCE(787); END_STATE(); case 379: - if (lookahead == '>') ADVANCE(646); - if (lookahead == '\\') ADVANCE(379); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(378); + if (lookahead == '*') ADVANCE(628); END_STATE(); case 380: - if (lookahead == 'F') ADVANCE(362); + if (lookahead == '*') ADVANCE(383); + if (lookahead == '/') ADVANCE(774); END_STATE(); case 381: - if (lookahead == 'U') ADVANCE(434); - if (lookahead == 'u') ADVANCE(426); + if (lookahead == '*') ADVANCE(783); END_STATE(); case 382: - if (lookahead == ']') ADVANCE(760); + if (lookahead == '*') ADVANCE(382); + if (lookahead == '/') ADVANCE(767); + if (lookahead != 0) ADVANCE(383); END_STATE(); case 383: - if (lookahead == ']') ADVANCE(567); + if (lookahead == '*') ADVANCE(382); + if (lookahead != 0) ADVANCE(383); END_STATE(); case 384: - if (lookahead == '^') ADVANCE(756); + if (lookahead == '*') ADVANCE(382); + if (lookahead != 0) ADVANCE(490); END_STATE(); case 385: - if (lookahead == 'd') ADVANCE(478); - if (lookahead == 'e') ADVANCE(498); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(385); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + if (lookahead == '.') ADVANCE(387); END_STATE(); case 386: - if (lookahead == 'd') ADVANCE(478); - if (lookahead == 'e') ADVANCE(498); - if (lookahead == 'i') ADVANCE(487); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(386); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + if (lookahead == '.') ADVANCE(387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(632); END_STATE(); case 387: - if (lookahead == 'd') ADVANCE(478); - if (lookahead == 'e') ADVANCE(500); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(387); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + if (lookahead == '.') ADVANCE(472); END_STATE(); case 388: - if (lookahead == 'd') ADVANCE(478); - if (lookahead == 'e') ADVANCE(500); - if (lookahead == 'i') ADVANCE(487); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(388); + if (lookahead == '.') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(638); END_STATE(); case 389: - if (lookahead == 'd') ADVANCE(478); - if (lookahead == 'i') ADVANCE(486); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(389); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + if (lookahead == '/') ADVANCE(497); + if (lookahead == '\\') ADVANCE(492); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(389); + if (lookahead != 0) ADVANCE(499); END_STATE(); case 390: - if (lookahead == 'd') ADVANCE(478); - if (lookahead == 'i') ADVANCE(487); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(390); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + if (lookahead == '1') ADVANCE(394); END_STATE(); case 391: - if (lookahead == 'd') ADVANCE(403); + if (lookahead == '2') ADVANCE(631); END_STATE(); case 392: - if (lookahead == 'd') ADVANCE(397); + if (lookahead == '2') ADVANCE(395); + if (lookahead == '6') ADVANCE(631); END_STATE(); case 393: - if (lookahead == 'e') ADVANCE(407); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(393); + if (lookahead == '4') ADVANCE(631); END_STATE(); case 394: - if (lookahead == 'e') ADVANCE(406); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(394); + if (lookahead == '6') ADVANCE(631); END_STATE(); case 395: - if (lookahead == 'e') ADVANCE(453); + if (lookahead == '8') ADVANCE(631); END_STATE(); case 396: - if (lookahead == 'e') ADVANCE(401); + if (lookahead == ':') ADVANCE(593); END_STATE(); case 397: - if (lookahead == 'e') ADVANCE(402); + if (lookahead == ':') ADVANCE(785); END_STATE(); case 398: - if (lookahead == 'f') ADVANCE(362); + if (lookahead == ':') ADVANCE(785); + if (lookahead == '[') ADVANCE(594); + if (lookahead == ']') ADVANCE(788); END_STATE(); case 399: - if (lookahead == 'f') ADVANCE(449); + if (lookahead == '<') ADVANCE(584); + if (lookahead == '=') ADVANCE(577); END_STATE(); case 400: - if (lookahead == 'f') ADVANCE(455); + if (lookahead == '=') ADVANCE(572); END_STATE(); case 401: - if (lookahead == 'f') ADVANCE(457); + if (lookahead == '=') ADVANCE(571); END_STATE(); case 402: - if (lookahead == 'f') ADVANCE(459); + if (lookahead == '=') ADVANCE(576); + if (lookahead == '>') ADVANCE(586); END_STATE(); case 403: - if (lookahead == 'i') ADVANCE(399); + if (lookahead == '=') ADVANCE(617); END_STATE(); case 404: - if (lookahead == 'i') ADVANCE(400); - if (lookahead == 's') ADVANCE(395); + if (lookahead == '>') ADVANCE(403); END_STATE(); case 405: - if (lookahead == 'i') ADVANCE(487); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(405); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + if (lookahead == '>') ADVANCE(629); END_STATE(); case 406: - if (lookahead == 'l') ADVANCE(404); - if (lookahead == 'n') ADVANCE(391); + if (lookahead == '>') ADVANCE(673); + if (lookahead == '\\') ADVANCE(407); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(406); END_STATE(); case 407: - if (lookahead == 'n') ADVANCE(391); + if (lookahead == '>') ADVANCE(674); + if (lookahead == '\\') ADVANCE(407); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(406); END_STATE(); case 408: - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'F') ADVANCE(390); END_STATE(); case 409: - if (lookahead == '+' || - lookahead == '-') ADVANCE(416); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(609); + if (lookahead == 'U') ADVANCE(462); + if (lookahead == 'u') ADVANCE(454); END_STATE(); case 410: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(409); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(345); + if (lookahead == ']') ADVANCE(788); END_STATE(); case 411: - if (lookahead == '0' || - lookahead == '1') ADVANCE(607); + if (lookahead == ']') ADVANCE(595); END_STATE(); case 412: - if (lookahead == '8' || - lookahead == '9') ADVANCE(346); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(606); + if (lookahead == '^') ADVANCE(784); END_STATE(); case 413: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (lookahead == 'd') ADVANCE(506); + if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'i') ADVANCE(514); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(413); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); case 414: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); + if (lookahead == 'd') ADVANCE(506); + if (lookahead == 'e') ADVANCE(526); + if (lookahead == 'i') ADVANCE(515); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(414); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); case 415: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(346); + if (lookahead == 'd') ADVANCE(506); + if (lookahead == 'e') ADVANCE(528); + if (lookahead == 'i') ADVANCE(514); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(415); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); case 416: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(609); + if (lookahead == 'd') ADVANCE(506); + if (lookahead == 'e') ADVANCE(528); + if (lookahead == 'i') ADVANCE(515); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); case 417: + if (lookahead == 'd') ADVANCE(506); + if (lookahead == 'i') ADVANCE(514); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(738); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); case 418: + if (lookahead == 'd') ADVANCE(506); + if (lookahead == 'i') ADVANCE(515); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(610); + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); case 419: + if (lookahead == 'd') ADVANCE(431); + END_STATE(); + case 420: + if (lookahead == 'd') ADVANCE(425); + END_STATE(); + case 421: + if (lookahead == 'e') ADVANCE(435); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(421); + END_STATE(); + case 422: + if (lookahead == 'e') ADVANCE(434); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(422); + END_STATE(); + case 423: + if (lookahead == 'e') ADVANCE(481); + END_STATE(); + case 424: + if (lookahead == 'e') ADVANCE(429); + END_STATE(); + case 425: + if (lookahead == 'e') ADVANCE(430); + END_STATE(); + case 426: + if (lookahead == 'f') ADVANCE(390); + END_STATE(); + case 427: + if (lookahead == 'f') ADVANCE(477); + END_STATE(); + case 428: + if (lookahead == 'f') ADVANCE(483); + END_STATE(); + case 429: + if (lookahead == 'f') ADVANCE(485); + END_STATE(); + case 430: + if (lookahead == 'f') ADVANCE(487); + END_STATE(); + case 431: + if (lookahead == 'i') ADVANCE(427); + END_STATE(); + case 432: + if (lookahead == 'i') ADVANCE(428); + if (lookahead == 's') ADVANCE(423); + END_STATE(); + case 433: + if (lookahead == 'i') ADVANCE(515); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(433); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); + END_STATE(); + case 434: + if (lookahead == 'l') ADVANCE(432); + if (lookahead == 'n') ADVANCE(419); + END_STATE(); + case 435: + if (lookahead == 'n') ADVANCE(419); + END_STATE(); + case 436: + if (lookahead == '|') ADVANCE(559); + END_STATE(); + case 437: + if (lookahead == '+' || + lookahead == '-') ADVANCE(444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(637); + END_STATE(); + case 438: + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(345); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(372); END_STATE(); - case 420: + case 439: + if (lookahead == '0' || + lookahead == '1') ADVANCE(635); + END_STATE(); + case 440: + if (lookahead == '8' || + lookahead == '9') ADVANCE(373); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(634); + END_STATE(); + case 441: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(636); + END_STATE(); + case 442: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(632); + END_STATE(); + case 443: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(373); + END_STATE(); + case 444: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(637); + END_STATE(); + case 445: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(766); + END_STATE(); + case 446: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(638); END_STATE(); - case 421: + case 447: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(644); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(372); END_STATE(); - case 422: + case 448: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(417); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(666); END_STATE(); - case 423: + case 449: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(420); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(672); END_STATE(); - case 424: + case 450: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(422); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(445); END_STATE(); - case 425: + case 451: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(423); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(448); END_STATE(); - case 426: + case 452: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(424); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(450); END_STATE(); - case 427: + case 453: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(425); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(451); END_STATE(); - case 428: + case 454: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(426); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(452); END_STATE(); - case 429: + case 455: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(427); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(453); END_STATE(); - case 430: + case 456: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(428); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(454); END_STATE(); - case 431: + case 457: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(429); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(455); END_STATE(); - case 432: + case 458: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(430); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(456); END_STATE(); - case 433: + case 459: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(431); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(457); END_STATE(); - case 434: + case 460: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(432); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(458); END_STATE(); - case 435: + case 461: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(433); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(459); END_STATE(); - case 436: + case 462: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(460); + END_STATE(); + case 463: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(461); + END_STATE(); + case 464: if (lookahead != 0 && - lookahead != '*') ADVANCE(471); + lookahead != '*') ADVANCE(499); END_STATE(); - case 437: - if (eof) ADVANCE(439); + case 465: + if (eof) ADVANCE(467); ADVANCE_MAP( - '!', 506, - '"', 632, - '#', 385, - '%', 530, - '&', 542, - '\'', 623, - '(', 504, - ')', 446, - '*', 526, - '+', 520, - ',', 445, - '-', 509, - '.', 597, - '/', 528, - '0', 605, - ':', 563, - ';', 560, - '<', 552, - '=', 579, - '>', 748, - '?', 582, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 573, + '!', 534, + '"', 660, + '#', 413, + '%', 558, + '&', 570, + '\'', 651, + '(', 532, + ')', 474, + '*', 554, + '+', 548, + ',', 473, + '-', 537, + '.', 625, + '/', 556, + '0', 633, + ':', 591, + ';', 588, + '<', 580, + '=', 607, + '>', 776, + '?', 610, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 601, '\\', 2, - ']', 577, - '^', 538, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 534, - '}', 569, - '~', 507, + ']', 605, + '^', 566, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 562, + '}', 597, + '~', 535, ); 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); + lookahead == ' ') SKIP(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); - case 438: - if (eof) ADVANCE(439); + case 466: + if (eof) ADVANCE(467); ADVANCE_MAP( - '!', 505, - '"', 632, - '#', 389, - '%', 529, - '&', 541, - '\'', 623, - '(', 504, - ')', 446, - '*', 525, - '+', 521, - ',', 445, - '-', 512, - '.', 599, - '/', 527, - '0', 605, - ':', 368, - ';', 560, - '<', 551, - '=', 578, - '>', 748, - 'F', 675, - 'L', 649, - 'R', 652, - 'T', 679, - 'U', 653, - '[', 572, + '!', 533, + '"', 660, + '#', 417, + '%', 557, + '&', 569, + '\'', 651, + '(', 532, + ')', 474, + '*', 553, + '+', 549, + ',', 473, + '-', 540, + '.', 627, + '/', 555, + '0', 633, + ':', 396, + ';', 588, + '<', 579, + '=', 606, + '>', 776, + 'F', 703, + 'L', 677, + 'R', 680, + 'T', 707, + 'U', 681, + '[', 600, '\\', 4, - ']', 577, - '^', 384, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 684, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 't', 726, - 'u', 656, - 'v', 718, - '{', 568, - '|', 408, - '}', 569, - '~', 507, + ']', 605, + '^', 412, + 'b', 749, + 'c', 728, + 'd', 745, + 'f', 712, + 'i', 742, + 'm', 714, + 'n', 762, + 'p', 759, + 's', 729, + 't', 754, + 'u', 684, + 'v', 746, + '{', 596, + '|', 436, + '}', 597, + '~', 535, ); 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); + lookahead == ' ') SKIP(466); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); + if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(766); END_STATE(); - case 439: + case 467: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 440: + case 468: ACCEPT_TOKEN(aux_sym_preproc_include_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 441: + case 469: ACCEPT_TOKEN(aux_sym_preproc_include_token2); END_STATE(); - case 442: + case 470: ACCEPT_TOKEN(aux_sym_preproc_def_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 443: + case 471: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 444: + case 472: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 445: + case 473: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 446: + case 474: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 447: + case 475: ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'n') ADVANCE(476); + if (lookahead == 'd') ADVANCE(510); + if (lookahead == 'n') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 448: + case 476: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(448); + if (lookahead == '\n') ADVANCE(476); END_STATE(); - case 449: + case 477: ACCEPT_TOKEN(aux_sym_preproc_if_token2); END_STATE(); - case 450: + case 478: ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 451: + case 479: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 452: + case 480: ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 453: + case 481: ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); - case 454: + case 482: ACCEPT_TOKEN(aux_sym_preproc_else_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 455: + case 483: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(396); - if (lookahead == 'n') ADVANCE(392); + if (lookahead == 'd') ADVANCE(424); + if (lookahead == 'n') ADVANCE(420); END_STATE(); - case 456: + case 484: ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(484); - if (lookahead == 'n') ADVANCE(477); + if (lookahead == 'd') ADVANCE(512); + if (lookahead == 'n') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 457: + case 485: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); END_STATE(); - case 458: + case 486: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 459: + case 487: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); END_STATE(); - case 460: + case 488: ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 461: + case 489: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(355); - if (lookahead == '*') ADVANCE(461); - if (lookahead == '/') ADVANCE(739); - if (lookahead == '\\') ADVANCE(467); - if (lookahead != 0) ADVANCE(462); + if (lookahead == '\n') ADVANCE(383); + if (lookahead == '*') ADVANCE(489); + if (lookahead == '/') ADVANCE(767); + if (lookahead == '\\') ADVANCE(495); + if (lookahead != 0) ADVANCE(490); END_STATE(); - case 462: + case 490: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(355); - if (lookahead == '*') ADVANCE(461); - if (lookahead == '/') ADVANCE(356); - if (lookahead == '\\') ADVANCE(467); - if (lookahead != 0) ADVANCE(462); + if (lookahead == '\n') ADVANCE(383); + if (lookahead == '*') ADVANCE(489); + if (lookahead == '/') ADVANCE(384); + if (lookahead == '\\') ADVANCE(495); + if (lookahead != 0) ADVANCE(490); END_STATE(); - case 463: + case 491: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(746); - if (lookahead == '\r') ADVANCE(740); - if (lookahead == '/') ADVANCE(743); - if (lookahead == '\\') ADVANCE(742); - if (lookahead != 0) ADVANCE(744); + if (lookahead == '\n') ADVANCE(774); + if (lookahead == '\r') ADVANCE(768); + if (lookahead == '/') ADVANCE(771); + if (lookahead == '\\') ADVANCE(770); + if (lookahead != 0) ADVANCE(772); END_STATE(); - case 464: + case 492: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(361); - if (lookahead == '\r') ADVANCE(465); - if (lookahead == '/') ADVANCE(436); - if (lookahead == '\\') ADVANCE(466); - if (lookahead != 0) ADVANCE(471); + if (lookahead == '\n') SKIP(389); + if (lookahead == '\r') ADVANCE(493); + if (lookahead == '/') ADVANCE(464); + if (lookahead == '\\') ADVANCE(494); + if (lookahead != 0) ADVANCE(499); END_STATE(); - case 465: + case 493: 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 == '\n') SKIP(389); + if (lookahead == '/') ADVANCE(464); + if (lookahead == '\\') ADVANCE(494); + if (lookahead != 0) ADVANCE(499); END_STATE(); - case 466: + case 494: 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 == '\r') ADVANCE(500); + if (lookahead == '/') ADVANCE(464); + if (lookahead == '\\') ADVANCE(494); + if (lookahead != 0) ADVANCE(499); END_STATE(); - case 467: + case 495: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(470); - if (lookahead == '*') ADVANCE(461); - if (lookahead == '/') ADVANCE(356); - if (lookahead == '\\') ADVANCE(467); - if (lookahead != 0) ADVANCE(462); + if (lookahead == '\r') ADVANCE(498); + if (lookahead == '*') ADVANCE(489); + if (lookahead == '/') ADVANCE(384); + if (lookahead == '\\') ADVANCE(495); + if (lookahead != 0) ADVANCE(490); END_STATE(); - case 468: + case 496: 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 == '\r') ADVANCE(773); + if (lookahead == '/') ADVANCE(771); + if (lookahead == '\\') ADVANCE(770); + if (lookahead != 0) ADVANCE(772); END_STATE(); - case 469: + case 497: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(462); - if (lookahead == '/') ADVANCE(743); - if (lookahead == '\\') ADVANCE(466); + if (lookahead == '*') ADVANCE(490); + if (lookahead == '/') ADVANCE(771); + if (lookahead == '\\') ADVANCE(494); if (lookahead != 0 && - lookahead != '\n') ADVANCE(471); + lookahead != '\n') ADVANCE(499); END_STATE(); - case 470: + case 498: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(461); - if (lookahead == '/') ADVANCE(356); - if (lookahead == '\\') ADVANCE(467); - if (lookahead != 0) ADVANCE(462); + if (lookahead == '*') ADVANCE(489); + if (lookahead == '/') ADVANCE(384); + if (lookahead == '\\') ADVANCE(495); + if (lookahead != 0) ADVANCE(490); END_STATE(); - case 471: + case 499: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(436); - if (lookahead == '\\') ADVANCE(466); + if (lookahead == '/') ADVANCE(464); + if (lookahead == '\\') ADVANCE(494); if (lookahead != 0 && - lookahead != '\n') ADVANCE(471); + lookahead != '\n') ADVANCE(499); END_STATE(); - case 472: + case 500: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(436); - if (lookahead == '\\') ADVANCE(466); - if (lookahead != 0) ADVANCE(471); + if (lookahead == '/') ADVANCE(464); + if (lookahead == '\\') ADVANCE(494); + if (lookahead != 0) ADVANCE(499); END_STATE(); - case 473: + case 501: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(499); + if (lookahead == 'c') ADVANCE(527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 474: + case 502: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(497); + if (lookahead == 'd') ADVANCE(525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 475: + case 503: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(481); + if (lookahead == 'd') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 476: + case 504: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(483); + if (lookahead == 'd') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 477: + case 505: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(485); + if (lookahead == 'd') ADVANCE(513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 478: + case 506: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(488); + if (lookahead == 'e') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 479: + case 507: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(454); + if (lookahead == 'e') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 480: + case 508: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(442); + if (lookahead == 'e') ADVANCE(470); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 481: + case 509: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(440); + if (lookahead == 'e') ADVANCE(468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 482: + case 510: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(491); + if (lookahead == 'e') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 483: + case 511: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(492); + if (lookahead == 'e') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 484: + case 512: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(493); + if (lookahead == 'e') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 485: + case 513: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(494); + if (lookahead == 'e') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 486: + case 514: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(447); - if (lookahead == 'n') ADVANCE(473); + if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'n') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 487: + case 515: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(447); + if (lookahead == 'f') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 488: + case 516: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(495); + if (lookahead == 'f') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 489: + case 517: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(456); + if (lookahead == 'f') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 490: + case 518: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(450); + if (lookahead == 'f') ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 491: + case 519: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(451); + if (lookahead == 'f') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 492: + case 520: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(452); + if (lookahead == 'f') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 493: + case 521: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(458); + if (lookahead == 'f') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 494: + case 522: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(460); + if (lookahead == 'f') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 495: + case 523: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(501); + if (lookahead == 'i') ADVANCE(529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 496: + case 524: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(489); - if (lookahead == 's') ADVANCE(479); + if (lookahead == 'i') ADVANCE(517); + if (lookahead == 's') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 497: + case 525: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(490); + if (lookahead == 'i') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 498: + case 526: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(496); - if (lookahead == 'n') ADVANCE(474); + if (lookahead == 'l') ADVANCE(524); + if (lookahead == 'n') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 499: + case 527: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(502); + if (lookahead == 'l') ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 500: + case 528: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(474); + if (lookahead == 'n') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 501: + case 529: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(480); + if (lookahead == 'n') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 502: + case 530: ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(475); + if (lookahead == 'u') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 503: + case 531: ACCEPT_TOKEN(sym_preproc_directive); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(503); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(531); END_STATE(); - case 504: + case 532: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 505: + case 533: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 506: + case 534: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(544); + if (lookahead == '=') ADVANCE(572); END_STATE(); - case 507: + case 535: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 508: + case 536: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 509: + case 537: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(594); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '0') ADVANCE(605); - if (lookahead == '=') ADVANCE(587); - if (lookahead == '>') ADVANCE(602); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (lookahead == '-') ADVANCE(622); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '0') ADVANCE(633); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '>') ADVANCE(630); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); END_STATE(); - case 510: + case 538: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(594); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '0') ADVANCE(605); - if (lookahead == '=') ADVANCE(587); - if (lookahead == '>') ADVANCE(601); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (lookahead == '-') ADVANCE(622); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '0') ADVANCE(633); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '>') ADVANCE(629); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); END_STATE(); - case 511: + case 539: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(594); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '0') ADVANCE(605); - if (lookahead == '>') ADVANCE(601); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (lookahead == '-') ADVANCE(622); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '0') ADVANCE(633); + if (lookahead == '>') ADVANCE(629); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); END_STATE(); - case 512: + case 540: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(594); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '0') ADVANCE(605); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (lookahead == '-') ADVANCE(622); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '0') ADVANCE(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); END_STATE(); - case 513: + case 541: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(594); - if (lookahead == '=') ADVANCE(587); - if (lookahead == '>') ADVANCE(602); + if (lookahead == '-') ADVANCE(622); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '>') ADVANCE(630); END_STATE(); - case 514: + case 542: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(594); - if (lookahead == '=') ADVANCE(587); - if (lookahead == '>') ADVANCE(601); + if (lookahead == '-') ADVANCE(622); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '>') ADVANCE(629); END_STATE(); - case 515: + case 543: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(594); - if (lookahead == '>') ADVANCE(601); + if (lookahead == '-') ADVANCE(622); + if (lookahead == '>') ADVANCE(629); END_STATE(); - case 516: + case 544: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '0') ADVANCE(605); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '0') ADVANCE(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); END_STATE(); - case 517: + case 545: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(587); - if (lookahead == '>') ADVANCE(353); + if (lookahead == '=') ADVANCE(615); + if (lookahead == '>') ADVANCE(381); END_STATE(); - case 518: + case 546: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 519: + case 547: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(595); + if (lookahead == '+') ADVANCE(623); END_STATE(); - case 520: + case 548: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '0') ADVANCE(605); - if (lookahead == '=') ADVANCE(586); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (lookahead == '+') ADVANCE(623); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '0') ADVANCE(633); + if (lookahead == '=') ADVANCE(614); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); END_STATE(); - case 521: + case 549: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '0') ADVANCE(605); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (lookahead == '+') ADVANCE(623); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '0') ADVANCE(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); END_STATE(); - case 522: + case 550: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(595); - if (lookahead == '=') ADVANCE(586); + if (lookahead == '+') ADVANCE(623); + if (lookahead == '=') ADVANCE(614); END_STATE(); - case 523: + case 551: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(414); - if (lookahead == '0') ADVANCE(605); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (lookahead == '.') ADVANCE(442); + if (lookahead == '0') ADVANCE(633); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(636); END_STATE(); - case 524: + case 552: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(586); + if (lookahead == '=') ADVANCE(614); END_STATE(); - case 525: + case 553: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 526: + case 554: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(583); + if (lookahead == '=') ADVANCE(611); END_STATE(); - case 527: + case 555: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(355); - if (lookahead == '/') ADVANCE(746); + if (lookahead == '*') ADVANCE(383); + if (lookahead == '/') ADVANCE(774); END_STATE(); - case 528: + case 556: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(355); - if (lookahead == '/') ADVANCE(746); - if (lookahead == '=') ADVANCE(584); + if (lookahead == '*') ADVANCE(383); + if (lookahead == '/') ADVANCE(774); + if (lookahead == '=') ADVANCE(612); END_STATE(); - case 529: + case 557: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 530: + case 558: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(585); + if (lookahead == '=') ADVANCE(613); END_STATE(); - case 531: + case 559: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 532: + case 560: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 533: + case 561: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 534: + case 562: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(592); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '=') ADVANCE(620); + if (lookahead == '|') ADVANCE(559); END_STATE(); - case 535: + case 563: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(559); END_STATE(); - case 536: + case 564: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 537: + case 565: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(591); + if (lookahead == '=') ADVANCE(619); END_STATE(); - case 538: + case 566: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(591); - if (lookahead == '^') ADVANCE(756); + if (lookahead == '=') ADVANCE(619); + if (lookahead == '^') ADVANCE(784); END_STATE(); - case 539: + case 567: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(756); + if (lookahead == '^') ADVANCE(784); END_STATE(); - case 540: + case 568: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 541: + case 569: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(532); + if (lookahead == '&') ADVANCE(560); END_STATE(); - case 542: + case 570: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(532); - if (lookahead == '=') ADVANCE(590); + if (lookahead == '&') ADVANCE(560); + if (lookahead == '=') ADVANCE(618); END_STATE(); - case 543: + case 571: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 544: + case 572: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 545: + case 573: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 546: + case 574: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(548); - if (lookahead == '>') ADVANCE(558); + if (lookahead == '=') ADVANCE(576); + if (lookahead == '>') ADVANCE(586); END_STATE(); - case 547: + case 575: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(548); - if (lookahead == '>') ADVANCE(559); + if (lookahead == '=') ADVANCE(576); + if (lookahead == '>') ADVANCE(587); END_STATE(); - case 548: + case 576: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 549: + case 577: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 550: + case 578: ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == '>') ADVANCE(593); + if (lookahead == '>') ADVANCE(621); END_STATE(); - case 551: + case 579: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 552: + case 580: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(550); + if (lookahead == '<') ADVANCE(585); + if (lookahead == '=') ADVANCE(578); END_STATE(); - case 553: + case 581: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(557); - if (lookahead == '=') ADVANCE(549); + if (lookahead == '<') ADVANCE(585); + if (lookahead == '=') ADVANCE(577); END_STATE(); - case 554: + case 582: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(556); - if (lookahead == '=') ADVANCE(550); + if (lookahead == '<') ADVANCE(584); + if (lookahead == '=') ADVANCE(578); END_STATE(); - case 555: + case 583: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(556); - if (lookahead == '=') ADVANCE(549); + if (lookahead == '<') ADVANCE(584); + if (lookahead == '=') ADVANCE(577); END_STATE(); - case 556: + case 584: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 557: + case 585: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(588); + if (lookahead == '=') ADVANCE(616); END_STATE(); - case 558: + case 586: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 559: + case 587: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(589); + if (lookahead == '=') ADVANCE(617); END_STATE(); - case 560: + case 588: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 561: + case 589: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 562: + case 590: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(565); + if (lookahead == ':') ADVANCE(593); END_STATE(); - case 563: + case 591: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(565); - if (lookahead == ']') ADVANCE(758); + if (lookahead == ':') ADVANCE(593); + if (lookahead == ']') ADVANCE(786); END_STATE(); - case 564: + case 592: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ']') ADVANCE(758); + if (lookahead == ']') ADVANCE(786); END_STATE(); - case 565: + case 593: ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); - case 566: + case 594: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); - case 567: + case 595: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 568: + case 596: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 569: + case 597: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 570: + case 598: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 571: + case 599: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ':') ADVANCE(757); + if (lookahead == ':') ADVANCE(785); END_STATE(); - case 572: + case 600: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ':') ADVANCE(757); - if (lookahead == '[') ADVANCE(566); + if (lookahead == ':') ADVANCE(785); + if (lookahead == '[') ADVANCE(594); END_STATE(); - case 573: + case 601: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ':') ADVANCE(757); - if (lookahead == '[') ADVANCE(566); - if (lookahead == ']') ADVANCE(760); + if (lookahead == ':') ADVANCE(785); + if (lookahead == '[') ADVANCE(594); + if (lookahead == ']') ADVANCE(788); END_STATE(); - case 574: + case 602: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(566); + if (lookahead == '[') ADVANCE(594); END_STATE(); - case 575: + case 603: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(566); - if (lookahead == ']') ADVANCE(760); + if (lookahead == '[') ADVANCE(594); + if (lookahead == ']') ADVANCE(788); END_STATE(); - case 576: + case 604: ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == ']') ADVANCE(760); + if (lookahead == ']') ADVANCE(788); END_STATE(); - case 577: + case 605: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 578: + case 606: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 579: + case 607: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(543); + if (lookahead == '=') ADVANCE(571); END_STATE(); - case 580: + case 608: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(674); - if (lookahead == '3') ADVANCE(672); - if (lookahead == '6') ADVANCE(673); - 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 (lookahead == '1') ADVANCE(702); + if (lookahead == '3') ADVANCE(700); + if (lookahead == '6') ADVANCE(701); + if (lookahead == '8') ADVANCE(711); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'p') ADVANCE(760); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 581: + case 609: ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 582: + case 610: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 583: + case 611: ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); - case 584: + case 612: ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); - case 585: + case 613: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); - case 586: + case 614: ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); - case 587: + case 615: ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); - case 588: + case 616: ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); - case 589: + case 617: ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); - case 590: + case 618: ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); - case 591: + case 619: ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); - case 592: + case 620: ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); - case 593: + case 621: ACCEPT_TOKEN(anon_sym_LT_EQ_GT); END_STATE(); - case 594: + case 622: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 595: + case 623: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 596: + case 624: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '.') ADVANCE(359); + if (lookahead == '*') ADVANCE(628); + if (lookahead == '.') ADVANCE(387); END_STATE(); - case 597: + case 625: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '.') ADVANCE(359); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); + if (lookahead == '*') ADVANCE(628); + if (lookahead == '.') ADVANCE(387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(632); END_STATE(); - case 598: + case 626: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(359); + if (lookahead == '.') ADVANCE(387); END_STATE(); - case 599: + case 627: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(359); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); + if (lookahead == '.') ADVANCE(387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(632); END_STATE(); - case 600: + case 628: ACCEPT_TOKEN(anon_sym_DOT_STAR); END_STATE(); - case 601: + case 629: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 602: + case 630: ACCEPT_TOKEN(anon_sym_DASH_GT); - if (lookahead == '*') ADVANCE(755); + if (lookahead == '*') ADVANCE(783); END_STATE(); - case 603: + case 631: ACCEPT_TOKEN(sym_number_literal); END_STATE(); - case 604: + case 632: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 414, - 'B', 380, - 'b', 398, - 'E', 409, - 'e', 409, - 'F', 611, - 'f', 611, - 'L', 603, - 'l', 603, + '\'', 442, + 'B', 408, + 'b', 426, + 'E', 437, + 'e', 437, + 'F', 639, + 'f', 639, + 'L', 631, + 'l', 631, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(632); END_STATE(); - case 605: + case 633: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 412, - '.', 612, - 'L', 613, - 'l', 616, - 'B', 411, - 'b', 411, - 'E', 409, - 'e', 409, - 'U', 615, - 'u', 615, - 'X', 360, - 'x', 360, - 'Z', 618, - 'z', 618, - '8', 346, - '9', 346, + '\'', 440, + '.', 640, + 'L', 641, + 'l', 644, + 'B', 439, + 'b', 439, + 'E', 437, + 'e', 437, + 'U', 643, + 'u', 643, + 'X', 388, + 'x', 388, + 'Z', 646, + 'z', 646, + '8', 373, + '9', 373, ); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(606); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(634); END_STATE(); - case 606: + case 634: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 412, - '.', 612, - 'L', 613, - 'l', 616, - 'E', 409, - 'e', 409, - 'U', 615, - 'u', 615, - 'Z', 618, - 'z', 618, - '8', 346, - '9', 346, + '\'', 440, + '.', 640, + 'L', 641, + 'l', 644, + 'E', 437, + 'e', 437, + 'U', 643, + 'u', 643, + 'Z', 646, + 'z', 646, + '8', 373, + '9', 373, ); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(606); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(634); END_STATE(); - case 607: + case 635: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 411, - 'L', 613, - 'l', 616, - 'U', 615, - 'u', 615, - 'Z', 618, - 'z', 618, - '0', 607, - '1', 607, + '\'', 439, + 'L', 641, + 'l', 644, + 'U', 643, + 'u', 643, + 'Z', 646, + 'z', 646, + '0', 635, + '1', 635, ); END_STATE(); - case 608: + case 636: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 413, - '.', 612, - 'L', 613, - 'l', 616, - 'E', 409, - 'e', 409, - 'U', 615, - 'u', 615, - 'Z', 618, - 'z', 618, + '\'', 441, + '.', 640, + 'L', 641, + 'l', 644, + 'E', 437, + 'e', 437, + 'U', 643, + 'u', 643, + 'Z', 646, + 'z', 646, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(608); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(636); END_STATE(); - case 609: + case 637: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(416); - if (lookahead == 'B') ADVANCE(380); - if (lookahead == 'b') ADVANCE(398); + if (lookahead == '\'') ADVANCE(444); + if (lookahead == 'B') ADVANCE(408); + if (lookahead == 'b') ADVANCE(426); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(611); + lookahead == 'f') ADVANCE(639); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(603); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(609); + lookahead == 'l') ADVANCE(631); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(637); END_STATE(); - case 610: + case 638: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - '\'', 418, - '.', 410, - 'L', 613, - 'l', 616, - 'P', 409, - 'p', 409, - 'U', 615, - 'u', 615, - 'Z', 618, - 'z', 618, + '\'', 446, + '.', 438, + 'L', 641, + 'l', 644, + 'P', 437, + 'p', 437, + 'U', 643, + 'u', 643, + 'Z', 646, + 'z', 646, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(610); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(638); END_STATE(); - case 611: + case 639: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '1') ADVANCE(364); - if (lookahead == '3') ADVANCE(363); - if (lookahead == '6') ADVANCE(365); + if (lookahead == '1') ADVANCE(392); + if (lookahead == '3') ADVANCE(391); + if (lookahead == '6') ADVANCE(393); END_STATE(); - case 612: + case 640: ACCEPT_TOKEN(sym_number_literal); ADVANCE_MAP( - 'B', 380, - 'b', 398, - 'E', 409, - 'e', 409, - 'F', 611, - 'f', 611, - 'L', 603, - 'l', 603, + 'B', 408, + 'b', 426, + 'E', 437, + 'e', 437, + 'F', 639, + 'f', 639, + 'L', 631, + 'l', 631, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(604); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(632); END_STATE(); - case 613: + case 641: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'L') ADVANCE(618); + if (lookahead == 'L') ADVANCE(646); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(603); + lookahead == 'u') ADVANCE(631); END_STATE(); - case 614: + case 642: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'L') ADVANCE(603); + if (lookahead == 'L') ADVANCE(631); END_STATE(); - case 615: + case 643: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'L') ADVANCE(614); - if (lookahead == 'l') ADVANCE(617); + if (lookahead == 'L') ADVANCE(642); + if (lookahead == 'l') ADVANCE(645); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(603); + lookahead == 'z') ADVANCE(631); END_STATE(); - case 616: + case 644: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'l') ADVANCE(618); + if (lookahead == 'l') ADVANCE(646); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(603); + lookahead == 'u') ADVANCE(631); END_STATE(); - case 617: + case 645: ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'l') ADVANCE(603); + if (lookahead == 'l') ADVANCE(631); END_STATE(); - case 618: + case 646: ACCEPT_TOKEN(sym_number_literal); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(603); + lookahead == 'u') ADVANCE(631); END_STATE(); - case 619: + case 647: ACCEPT_TOKEN(anon_sym_L_SQUOTE); END_STATE(); - case 620: + case 648: ACCEPT_TOKEN(anon_sym_u_SQUOTE); END_STATE(); - case 621: + case 649: ACCEPT_TOKEN(anon_sym_U_SQUOTE); END_STATE(); - case 622: + case 650: ACCEPT_TOKEN(anon_sym_u8_SQUOTE); END_STATE(); - case 623: + case 651: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 624: + case 652: ACCEPT_TOKEN(aux_sym_char_literal_token1); END_STATE(); - case 625: + case 653: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(639); - if (lookahead == '\r') ADVANCE(638); - if (lookahead == 'U') ADVANCE(435); - if (lookahead == 'u') ADVANCE(427); - if (lookahead == 'x') ADVANCE(421); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(641); - if (lookahead != 0) ADVANCE(638); + if (lookahead == '\n') ADVANCE(667); + if (lookahead == '\r') ADVANCE(666); + if (lookahead == 'U') ADVANCE(463); + if (lookahead == 'u') ADVANCE(455); + if (lookahead == 'x') ADVANCE(449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(669); + if (lookahead != 0) ADVANCE(666); END_STATE(); - case 626: + case 654: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(355); - if (lookahead == '/') ADVANCE(746); + if (lookahead == '*') ADVANCE(383); + if (lookahead == '/') ADVANCE(774); END_STATE(); - case 627: + case 655: ACCEPT_TOKEN(aux_sym_char_literal_token1); if (lookahead == '\\') ADVANCE(147); END_STATE(); - case 628: + case 656: ACCEPT_TOKEN(anon_sym_L_DQUOTE); END_STATE(); - case 629: + case 657: ACCEPT_TOKEN(anon_sym_u_DQUOTE); END_STATE(); - case 630: + case 658: ACCEPT_TOKEN(anon_sym_U_DQUOTE); END_STATE(); - case 631: + case 659: ACCEPT_TOKEN(anon_sym_u8_DQUOTE); END_STATE(); - case 632: + case 660: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 633: + case 661: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(635); - if (lookahead == '/') ADVANCE(637); + if (lookahead == '*') ADVANCE(663); + if (lookahead == '/') ADVANCE(665); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(637); + lookahead != '\\') ADVANCE(665); END_STATE(); - case 634: + case 662: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(634); - if (lookahead == '/') ADVANCE(637); + if (lookahead == '*') ADVANCE(662); + if (lookahead == '/') ADVANCE(665); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(635); + lookahead != '\\') ADVANCE(663); END_STATE(); - case 635: + case 663: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(634); + if (lookahead == '*') ADVANCE(662); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(635); + lookahead != '\\') ADVANCE(663); END_STATE(); - case 636: + case 664: ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(633); + if (lookahead == '/') ADVANCE(661); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(636); + lookahead == ' ') ADVANCE(664); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(637); + lookahead != '\\') ADVANCE(665); END_STATE(); - case 637: + case 665: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(637); + lookahead != '\\') ADVANCE(665); END_STATE(); - case 638: + case 666: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 639: + case 667: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\\') ADVANCE(147); END_STATE(); - case 640: + case 668: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(638); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(666); END_STATE(); - case 641: + case 669: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(640); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); END_STATE(); - case 642: + case 670: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(638); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(666); END_STATE(); - case 643: + case 671: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(642); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(670); END_STATE(); - case 644: + case 672: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(643); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(671); END_STATE(); - case 645: + case 673: ACCEPT_TOKEN(sym_system_lib_string); END_STATE(); - case 646: + case 674: ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(645); - if (lookahead == '\\') ADVANCE(379); + if (lookahead == '>') ADVANCE(673); + if (lookahead == '\\') ADVANCE(407); if (lookahead != 0 && - lookahead != '\n') 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); - END_STATE(); - case 648: - ACCEPT_TOKEN(sym_false); - if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); - END_STATE(); - case 649: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(628); - 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); - 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); - 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); - 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); - END_STATE(); - case 653: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(630); - 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); - 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); - 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); - END_STATE(); - case 656: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(629); - if (lookahead == '\'') ADVANCE(620); - if (lookahead == '8') ADVANCE(662); - 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); - END_STATE(); - case 657: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(629); - 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); - END_STATE(); - case 658: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(629); - 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); - 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); - 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); - 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); - END_STATE(); - case 662: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(631); - 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); - 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); - 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); - 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); - 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); - 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); - 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); - 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); - 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); - END_STATE(); - case 671: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '1') ADVANCE(674); - if (lookahead == '3') ADVANCE(672); - if (lookahead == '6') ADVANCE(673); - 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); - 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); - 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); - 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); + lookahead != '\n') ADVANCE(406); 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); + ACCEPT_TOKEN(sym_true); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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); + ACCEPT_TOKEN(sym_false); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(656); + if (lookahead == '\'') ADVANCE(647); + if (lookahead == 'R') ADVANCE(688); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(656); + if (lookahead == 'R') ADVANCE(688); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(656); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(778); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(658); + if (lookahead == '\'') ADVANCE(649); + if (lookahead == 'R') ADVANCE(689); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(658); + if (lookahead == 'R') ADVANCE(689); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(658); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(657); + if (lookahead == '\'') ADVANCE(648); + if (lookahead == '8') ADVANCE(690); + if (lookahead == 'R') ADVANCE(693); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'i') ADVANCE(744); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(657); + if (lookahead == '8') ADVANCE(691); + if (lookahead == 'R') ADVANCE(693); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(657); + if (lookahead == '8') ADVANCE(692); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'i') ADVANCE(744); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(657); + if (lookahead == '8') ADVANCE(692); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(779); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(781); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(659); + if (lookahead == '\'') ADVANCE(650); + if (lookahead == 'R') ADVANCE(694); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(659); + if (lookahead == 'R') ADVANCE(694); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(659); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(780); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '"') ADVANCE(782); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\'') ADVANCE(647); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\'') ADVANCE(649); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\'') ADVANCE(648); + if (lookahead == '8') ADVANCE(698); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\'') ADVANCE(650); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '1') ADVANCE(702); + if (lookahead == '3') ADVANCE(700); + if (lookahead == '6') ADVANCE(701); + if (lookahead == '8') ADVANCE(711); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'p') ADVANCE(760); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '2') ADVANCE(711); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '4') ADVANCE(711); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '6') ADVANCE(711); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == 'A') ADVANCE(706); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == 'E') ADVANCE(675); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == 'E') ADVANCE(676); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == 'L') ADVANCE(708); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == 'R') ADVANCE(709); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == 'S') ADVANCE(705); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == 'U') ADVANCE(704); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == '_') ADVANCE(717); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == '_') ADVANCE(757); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'a') ADVANCE(735); + if (lookahead == 'l') ADVANCE(747); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'a') ADVANCE(735); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'a') ADVANCE(764); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'a') ADVANCE(751); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'a') ADVANCE(757); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'a') ADVANCE(739); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'b') ADVANCE(740); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'd') ADVANCE(609); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'd') ADVANCE(731); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'e') ADVANCE(675); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'e') ADVANCE(609); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'e') ADVANCE(676); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'e') ADVANCE(711); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'f') ADVANCE(711); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'f') ADVANCE(725); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'g') ADVANCE(743); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'h') ADVANCE(715); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'i') ADVANCE(765); + if (lookahead == 's') ADVANCE(730); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'i') ADVANCE(765); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'i') ADVANCE(726); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'i') ADVANCE(727); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'i') ADVANCE(719); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'i') ADVANCE(744); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'l') ADVANCE(755); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'l') ADVANCE(609); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'l') ADVANCE(750); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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 (lookahead == '\\') ADVANCE(409); + if (lookahead == 'l') ADVANCE(737); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); case 739: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'l') ADVANCE(732); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); case 740: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(746); - if (lookahead == '/') ADVANCE(743); - if (lookahead == '\\') ADVANCE(468); - if (lookahead != 0) ADVANCE(744); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'l') ADVANCE(722); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); case 741: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\r') ADVANCE(747); - if (lookahead == '\\') ADVANCE(741); - if (lookahead != 0) ADVANCE(746); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'l') ADVANCE(747); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); 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); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'n') ADVANCE(756); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); case 743: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'n') ADVANCE(711); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 744: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'n') ADVANCE(758); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 745: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'o') ADVANCE(761); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 746: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'o') ADVANCE(733); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 747: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'o') ADVANCE(716); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 748: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'o') ADVANCE(736); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 749: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'o') ADVANCE(748); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 750: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'p') ADVANCE(760); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 751: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'r') ADVANCE(608); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 752: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'r') ADVANCE(720); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 753: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'r') ADVANCE(711); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 754: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'r') ADVANCE(763); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 755: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 's') ADVANCE(723); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 756: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 't') ADVANCE(608); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 757: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 't') ADVANCE(609); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 758: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 't') ADVANCE(699); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 759: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 't') ADVANCE(752); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 760: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 't') ADVANCE(753); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 761: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'u') ADVANCE(718); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 762: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'u') ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 763: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'u') ADVANCE(721); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 764: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'x') ADVANCE(710); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 765: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (lookahead == 'z') ADVANCE(724); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 766: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(409); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); + END_STATE(); + case 767: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 768: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(774); + if (lookahead == '/') ADVANCE(771); + if (lookahead == '\\') ADVANCE(496); + if (lookahead != 0) ADVANCE(772); + END_STATE(); + case 769: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\r') ADVANCE(775); + if (lookahead == '\\') ADVANCE(769); + if (lookahead != 0) ADVANCE(774); + END_STATE(); + case 770: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(746); - if (lookahead == '\\') ADVANCE(463); + if (lookahead == '\r') ADVANCE(773); + if (lookahead == '/') ADVANCE(771); + if (lookahead == '\\') ADVANCE(770); + if (lookahead != 0) ADVANCE(772); + END_STATE(); + case 771: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '*') ADVANCE(774); + if (lookahead == '\\') ADVANCE(491); if (lookahead != 0 && - lookahead != '\n') ADVANCE(744); + lookahead != '\n') ADVANCE(772); END_STATE(); - case 744: + case 772: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(743); - if (lookahead == '\\') ADVANCE(468); + if (lookahead == '/') ADVANCE(771); + if (lookahead == '\\') ADVANCE(496); if (lookahead != 0 && - lookahead != '\n') ADVANCE(744); + lookahead != '\n') ADVANCE(772); END_STATE(); - case 745: + case 773: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(743); - if (lookahead == '\\') ADVANCE(468); - if (lookahead != 0) ADVANCE(744); + if (lookahead == '/') ADVANCE(771); + if (lookahead == '\\') ADVANCE(496); + if (lookahead != 0) ADVANCE(772); END_STATE(); - case 746: + case 774: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(224); + if (lookahead == '\\') ADVANCE(242); if (lookahead != 0 && - lookahead != '\n') ADVANCE(746); + lookahead != '\n') ADVANCE(774); END_STATE(); - case 747: + case 775: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(224); - if (lookahead != 0) ADVANCE(746); + if (lookahead == '\\') ADVANCE(242); + if (lookahead != 0) ADVANCE(774); END_STATE(); - case 748: + case 776: ACCEPT_TOKEN(anon_sym_GT2); END_STATE(); - case 749: + case 777: ACCEPT_TOKEN(aux_sym_pure_virtual_clause_token1); END_STATE(); - case 750: + case 778: ACCEPT_TOKEN(anon_sym_R_DQUOTE); END_STATE(); - case 751: + case 779: ACCEPT_TOKEN(anon_sym_LR_DQUOTE); END_STATE(); - case 752: + case 780: ACCEPT_TOKEN(anon_sym_uR_DQUOTE); END_STATE(); - case 753: + case 781: ACCEPT_TOKEN(anon_sym_UR_DQUOTE); END_STATE(); - case 754: + case 782: ACCEPT_TOKEN(anon_sym_u8R_DQUOTE); END_STATE(); - case 755: + case 783: ACCEPT_TOKEN(anon_sym_DASH_GT_STAR); END_STATE(); - case 756: + case 784: ACCEPT_TOKEN(anon_sym_CARET_CARET); END_STATE(); - case 757: + case 785: ACCEPT_TOKEN(anon_sym_LBRACK_COLON); END_STATE(); - case 758: + case 786: ACCEPT_TOKEN(anon_sym_COLON_RBRACK); END_STATE(); - case 759: + case 787: ACCEPT_TOKEN(anon_sym_LPAREN_RPAREN); END_STATE(); - case 760: + case 788: ACCEPT_TOKEN(anon_sym_LBRACK_RBRACK); END_STATE(); - case 761: + case 789: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); - case 762: + case 790: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(628); - if (lookahead == 'R') ADVANCE(766); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '"') ADVANCE(656); + if (lookahead == 'R') ADVANCE(794); + if (lookahead == '\\') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 763: + case 791: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(750); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '"') ADVANCE(778); + if (lookahead == '\\') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 764: + case 792: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(630); - if (lookahead == 'R') ADVANCE(767); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '"') ADVANCE(658); + if (lookahead == 'R') ADVANCE(795); + if (lookahead == '\\') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 765: + case 793: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(629); - if (lookahead == '8') ADVANCE(768); - if (lookahead == 'R') ADVANCE(769); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '"') ADVANCE(657); + if (lookahead == '8') ADVANCE(796); + if (lookahead == 'R') ADVANCE(797); + if (lookahead == '\\') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 766: + case 794: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(751); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '"') ADVANCE(779); + if (lookahead == '\\') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 767: + case 795: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(753); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '"') ADVANCE(781); + if (lookahead == '\\') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 768: + case 796: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(631); - if (lookahead == 'R') ADVANCE(770); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '"') ADVANCE(659); + if (lookahead == 'R') ADVANCE(798); + if (lookahead == '\\') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 769: + case 797: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(752); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '"') ADVANCE(780); + if (lookahead == '\\') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 770: + case 798: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '"') ADVANCE(754); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '"') ADVANCE(782); + if (lookahead == '\\') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); - case 771: + case 799: ACCEPT_TOKEN(sym_literal_suffix); - if (lookahead == '\\') ADVANCE(381); + if (lookahead == '\\') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(799); + if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(766); END_STATE(); default: return false; @@ -26728,11739 +28499,13067 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 438}, - [2] = {.lex_state = 438}, - [3] = {.lex_state = 438}, - [4] = {.lex_state = 438}, - [5] = {.lex_state = 438}, - [6] = {.lex_state = 438}, - [7] = {.lex_state = 438}, - [8] = {.lex_state = 438}, - [9] = {.lex_state = 438}, - [10] = {.lex_state = 438}, - [11] = {.lex_state = 438}, - [12] = {.lex_state = 438}, - [13] = {.lex_state = 235}, - [14] = {.lex_state = 235}, - [15] = {.lex_state = 235}, - [16] = {.lex_state = 235}, - [17] = {.lex_state = 235}, - [18] = {.lex_state = 235}, - [19] = {.lex_state = 235}, - [20] = {.lex_state = 235}, - [21] = {.lex_state = 235}, - [22] = {.lex_state = 235}, - [23] = {.lex_state = 235}, - [24] = {.lex_state = 235}, - [25] = {.lex_state = 235}, - [26] = {.lex_state = 235}, - [27] = {.lex_state = 235}, - [28] = {.lex_state = 235}, - [29] = {.lex_state = 235}, - [30] = {.lex_state = 235}, - [31] = {.lex_state = 235}, - [32] = {.lex_state = 235}, - [33] = {.lex_state = 235}, - [34] = {.lex_state = 235}, - [35] = {.lex_state = 235}, - [36] = {.lex_state = 235}, - [37] = {.lex_state = 235}, - [38] = {.lex_state = 235}, - [39] = {.lex_state = 235}, - [40] = {.lex_state = 235}, - [41] = {.lex_state = 235}, - [42] = {.lex_state = 235}, - [43] = {.lex_state = 235}, - [44] = {.lex_state = 235}, - [45] = {.lex_state = 235}, - [46] = {.lex_state = 235}, - [47] = {.lex_state = 235}, - [48] = {.lex_state = 235}, - [49] = {.lex_state = 235}, - [50] = {.lex_state = 235}, - [51] = {.lex_state = 438}, - [52] = {.lex_state = 238}, - [53] = {.lex_state = 438}, - [54] = {.lex_state = 438}, - [55] = {.lex_state = 438}, - [56] = {.lex_state = 438}, - [57] = {.lex_state = 438}, - [58] = {.lex_state = 438}, - [59] = {.lex_state = 238}, - [60] = {.lex_state = 438}, - [61] = {.lex_state = 438}, - [62] = {.lex_state = 438}, - [63] = {.lex_state = 438}, - [64] = {.lex_state = 438}, - [65] = {.lex_state = 438}, - [66] = {.lex_state = 438}, - [67] = {.lex_state = 438}, - [68] = {.lex_state = 438}, - [69] = {.lex_state = 238}, - [70] = {.lex_state = 438}, - [71] = {.lex_state = 438}, - [72] = {.lex_state = 438}, - [73] = {.lex_state = 438}, - [74] = {.lex_state = 438}, - [75] = {.lex_state = 438}, - [76] = {.lex_state = 438}, - [77] = {.lex_state = 438}, - [78] = {.lex_state = 438}, - [79] = {.lex_state = 438}, - [80] = {.lex_state = 438}, - [81] = {.lex_state = 438}, - [82] = {.lex_state = 438}, - [83] = {.lex_state = 438}, - [84] = {.lex_state = 438}, - [85] = {.lex_state = 438}, - [86] = {.lex_state = 438}, - [87] = {.lex_state = 438}, - [88] = {.lex_state = 438}, - [89] = {.lex_state = 438}, - [90] = {.lex_state = 438}, - [91] = {.lex_state = 438}, - [92] = {.lex_state = 438}, - [93] = {.lex_state = 438}, - [94] = {.lex_state = 438}, - [95] = {.lex_state = 438}, - [96] = {.lex_state = 438}, - [97] = {.lex_state = 438}, - [98] = {.lex_state = 438}, - [99] = {.lex_state = 438}, - [100] = {.lex_state = 438}, - [101] = {.lex_state = 438}, - [102] = {.lex_state = 438}, - [103] = {.lex_state = 438}, - [104] = {.lex_state = 438}, - [105] = {.lex_state = 438}, - [106] = {.lex_state = 438}, - [107] = {.lex_state = 438}, - [108] = {.lex_state = 438}, - [109] = {.lex_state = 438}, - [110] = {.lex_state = 438}, - [111] = {.lex_state = 438}, - [112] = {.lex_state = 438}, - [113] = {.lex_state = 438}, - [114] = {.lex_state = 438}, - [115] = {.lex_state = 438}, - [116] = {.lex_state = 238}, - [117] = {.lex_state = 438}, - [118] = {.lex_state = 438}, - [119] = {.lex_state = 238}, - [120] = {.lex_state = 238}, - [121] = {.lex_state = 235}, - [122] = {.lex_state = 235}, - [123] = {.lex_state = 235}, - [124] = {.lex_state = 235}, - [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}, - [136] = {.lex_state = 438}, - [137] = {.lex_state = 438}, - [138] = {.lex_state = 438}, - [139] = {.lex_state = 438}, - [140] = {.lex_state = 438}, - [141] = {.lex_state = 237}, - [142] = {.lex_state = 237}, - [143] = {.lex_state = 237}, - [144] = {.lex_state = 237}, - [145] = {.lex_state = 237}, - [146] = {.lex_state = 237}, - [147] = {.lex_state = 237}, - [148] = {.lex_state = 237}, - [149] = {.lex_state = 237}, - [150] = {.lex_state = 237}, - [151] = {.lex_state = 237}, - [152] = {.lex_state = 237}, - [153] = {.lex_state = 237}, - [154] = {.lex_state = 237}, - [155] = {.lex_state = 237}, - [156] = {.lex_state = 237}, - [157] = {.lex_state = 237}, - [158] = {.lex_state = 237}, - [159] = {.lex_state = 237}, - [160] = {.lex_state = 239}, - [161] = {.lex_state = 237}, - [162] = {.lex_state = 237}, - [163] = {.lex_state = 237}, - [164] = {.lex_state = 237}, - [165] = {.lex_state = 239}, - [166] = {.lex_state = 239}, - [167] = {.lex_state = 237}, - [168] = {.lex_state = 237}, - [169] = {.lex_state = 237}, - [170] = {.lex_state = 237}, - [171] = {.lex_state = 237}, - [172] = {.lex_state = 237}, - [173] = {.lex_state = 237}, - [174] = {.lex_state = 237}, - [175] = {.lex_state = 237}, - [176] = {.lex_state = 237}, - [177] = {.lex_state = 237}, - [178] = {.lex_state = 237}, - [179] = {.lex_state = 226}, - [180] = {.lex_state = 237}, - [181] = {.lex_state = 237}, - [182] = {.lex_state = 237}, - [183] = {.lex_state = 226}, - [184] = {.lex_state = 237}, - [185] = {.lex_state = 237}, - [186] = {.lex_state = 237}, - [187] = {.lex_state = 237}, - [188] = {.lex_state = 237}, - [189] = {.lex_state = 237}, - [190] = {.lex_state = 237}, - [191] = {.lex_state = 237}, - [192] = {.lex_state = 237}, - [193] = {.lex_state = 237}, - [194] = {.lex_state = 237}, - [195] = {.lex_state = 237}, - [196] = {.lex_state = 237}, - [197] = {.lex_state = 237}, - [198] = {.lex_state = 237}, - [199] = {.lex_state = 237}, - [200] = {.lex_state = 237}, - [201] = {.lex_state = 237}, - [202] = {.lex_state = 237}, - [203] = {.lex_state = 237}, - [204] = {.lex_state = 237}, - [205] = {.lex_state = 237}, - [206] = {.lex_state = 237}, - [207] = {.lex_state = 237}, - [208] = {.lex_state = 237}, - [209] = {.lex_state = 226}, - [210] = {.lex_state = 237}, - [211] = {.lex_state = 237}, - [212] = {.lex_state = 237}, - [213] = {.lex_state = 237}, - [214] = {.lex_state = 237}, - [215] = {.lex_state = 237}, - [216] = {.lex_state = 237}, - [217] = {.lex_state = 237}, - [218] = {.lex_state = 237}, - [219] = {.lex_state = 237}, - [220] = {.lex_state = 237}, - [221] = {.lex_state = 237}, - [222] = {.lex_state = 237}, - [223] = {.lex_state = 237}, - [224] = {.lex_state = 237}, - [225] = {.lex_state = 237}, - [226] = {.lex_state = 237}, - [227] = {.lex_state = 237}, - [228] = {.lex_state = 237}, - [229] = {.lex_state = 237}, - [230] = {.lex_state = 237}, - [231] = {.lex_state = 237}, - [232] = {.lex_state = 237}, - [233] = {.lex_state = 237}, - [234] = {.lex_state = 237}, - [235] = {.lex_state = 237}, - [236] = {.lex_state = 237}, - [237] = {.lex_state = 237}, - [238] = {.lex_state = 237}, - [239] = {.lex_state = 237}, - [240] = {.lex_state = 237}, - [241] = {.lex_state = 237}, - [242] = {.lex_state = 237}, - [243] = {.lex_state = 237}, - [244] = {.lex_state = 237}, - [245] = {.lex_state = 240}, - [246] = {.lex_state = 240}, - [247] = {.lex_state = 240}, - [248] = {.lex_state = 240}, - [249] = {.lex_state = 240}, - [250] = {.lex_state = 240}, - [251] = {.lex_state = 240}, - [252] = {.lex_state = 240}, - [253] = {.lex_state = 240}, - [254] = {.lex_state = 240}, - [255] = {.lex_state = 228}, - [256] = {.lex_state = 240}, - [257] = {.lex_state = 240}, - [258] = {.lex_state = 240}, - [259] = {.lex_state = 240}, - [260] = {.lex_state = 240}, - [261] = {.lex_state = 240}, - [262] = {.lex_state = 240}, - [263] = {.lex_state = 240}, - [264] = {.lex_state = 240}, - [265] = {.lex_state = 240}, - [266] = {.lex_state = 240}, - [267] = {.lex_state = 240}, - [268] = {.lex_state = 240}, - [269] = {.lex_state = 240}, - [270] = {.lex_state = 240}, - [271] = {.lex_state = 240}, - [272] = {.lex_state = 240}, - [273] = {.lex_state = 240}, - [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}, - [283] = {.lex_state = 438}, - [284] = {.lex_state = 438}, - [285] = {.lex_state = 438}, - [286] = {.lex_state = 438}, - [287] = {.lex_state = 438}, - [288] = {.lex_state = 438}, - [289] = {.lex_state = 235}, - [290] = {.lex_state = 235}, - [291] = {.lex_state = 235}, - [292] = {.lex_state = 235}, - [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}, - [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}, - [311] = {.lex_state = 240}, - [312] = {.lex_state = 235}, - [313] = {.lex_state = 240}, - [314] = {.lex_state = 237}, - [315] = {.lex_state = 235}, - [316] = {.lex_state = 240}, - [317] = {.lex_state = 235}, - [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}, - [325] = {.lex_state = 235}, - [326] = {.lex_state = 235}, - [327] = {.lex_state = 285}, - [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}, - [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}, - [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}, - [356] = {.lex_state = 285}, - [357] = {.lex_state = 235}, - [358] = {.lex_state = 235}, - [359] = {.lex_state = 235}, - [360] = {.lex_state = 237}, - [361] = {.lex_state = 235}, - [362] = {.lex_state = 235}, - [363] = {.lex_state = 235}, - [364] = {.lex_state = 285}, - [365] = {.lex_state = 235}, - [366] = {.lex_state = 235}, - [367] = {.lex_state = 235}, - [368] = {.lex_state = 235}, - [369] = {.lex_state = 235}, - [370] = {.lex_state = 235}, - [371] = {.lex_state = 235}, - [372] = {.lex_state = 235}, - [373] = {.lex_state = 235}, - [374] = {.lex_state = 235}, - [375] = {.lex_state = 235}, - [376] = {.lex_state = 235}, - [377] = {.lex_state = 235}, - [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}, - [386] = {.lex_state = 237}, - [387] = {.lex_state = 237}, - [388] = {.lex_state = 237}, - [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}, - [403] = {.lex_state = 235}, - [404] = {.lex_state = 235}, - [405] = {.lex_state = 235}, - [406] = {.lex_state = 235}, - [407] = {.lex_state = 235}, - [408] = {.lex_state = 235}, - [409] = {.lex_state = 235}, - [410] = {.lex_state = 238}, - [411] = {.lex_state = 235}, - [412] = {.lex_state = 235}, - [413] = {.lex_state = 235}, - [414] = {.lex_state = 235}, - [415] = {.lex_state = 240}, - [416] = {.lex_state = 235}, - [417] = {.lex_state = 235}, - [418] = {.lex_state = 235}, - [419] = {.lex_state = 235}, - [420] = {.lex_state = 235}, - [421] = {.lex_state = 235}, - [422] = {.lex_state = 235}, - [423] = {.lex_state = 235}, - [424] = {.lex_state = 235}, - [425] = {.lex_state = 235}, - [426] = {.lex_state = 235}, - [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}, - [434] = {.lex_state = 235}, - [435] = {.lex_state = 235}, - [436] = {.lex_state = 237}, - [437] = {.lex_state = 235}, - [438] = {.lex_state = 235}, - [439] = {.lex_state = 235}, - [440] = {.lex_state = 235}, - [441] = {.lex_state = 235}, - [442] = {.lex_state = 235}, - [443] = {.lex_state = 235}, - [444] = {.lex_state = 235}, - [445] = {.lex_state = 235}, - [446] = {.lex_state = 235}, - [447] = {.lex_state = 235}, - [448] = {.lex_state = 235}, - [449] = {.lex_state = 235}, - [450] = {.lex_state = 235}, - [451] = {.lex_state = 235}, - [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}, - [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}, - [468] = {.lex_state = 235}, - [469] = {.lex_state = 235}, - [470] = {.lex_state = 235}, - [471] = {.lex_state = 235}, - [472] = {.lex_state = 235}, - [473] = {.lex_state = 235}, - [474] = {.lex_state = 235}, - [475] = {.lex_state = 240}, - [476] = {.lex_state = 240}, - [477] = {.lex_state = 235}, - [478] = {.lex_state = 240}, - [479] = {.lex_state = 235}, - [480] = {.lex_state = 235}, - [481] = {.lex_state = 235}, - [482] = {.lex_state = 240}, - [483] = {.lex_state = 235}, - [484] = {.lex_state = 235}, - [485] = {.lex_state = 240}, - [486] = {.lex_state = 240}, - [487] = {.lex_state = 240}, - [488] = {.lex_state = 240}, - [489] = {.lex_state = 240}, - [490] = {.lex_state = 240}, - [491] = {.lex_state = 240}, - [492] = {.lex_state = 240}, - [493] = {.lex_state = 240}, - [494] = {.lex_state = 240}, - [495] = {.lex_state = 240}, - [496] = {.lex_state = 240}, - [497] = {.lex_state = 240}, - [498] = {.lex_state = 240}, - [499] = {.lex_state = 240}, - [500] = {.lex_state = 240}, - [501] = {.lex_state = 240}, - [502] = {.lex_state = 240}, - [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}, - [511] = {.lex_state = 235}, - [512] = {.lex_state = 240}, - [513] = {.lex_state = 237}, - [514] = {.lex_state = 235}, - [515] = {.lex_state = 235}, - [516] = {.lex_state = 240}, - [517] = {.lex_state = 240}, - [518] = {.lex_state = 240}, - [519] = {.lex_state = 235}, - [520] = {.lex_state = 438}, - [521] = {.lex_state = 438}, - [522] = {.lex_state = 238}, - [523] = {.lex_state = 238}, - [524] = {.lex_state = 438}, - [525] = {.lex_state = 238}, - [526] = {.lex_state = 235}, - [527] = {.lex_state = 235}, - [528] = {.lex_state = 235}, - [529] = {.lex_state = 235}, - [530] = {.lex_state = 238}, - [531] = {.lex_state = 438}, - [532] = {.lex_state = 235}, - [533] = {.lex_state = 235}, - [534] = {.lex_state = 238}, - [535] = {.lex_state = 235}, - [536] = {.lex_state = 235}, - [537] = {.lex_state = 235}, - [538] = {.lex_state = 235}, - [539] = {.lex_state = 438}, - [540] = {.lex_state = 235}, - [541] = {.lex_state = 235}, - [542] = {.lex_state = 235}, - [543] = {.lex_state = 238}, - [544] = {.lex_state = 235}, - [545] = {.lex_state = 438}, - [546] = {.lex_state = 235}, - [547] = {.lex_state = 235}, - [548] = {.lex_state = 438}, - [549] = {.lex_state = 238}, - [550] = {.lex_state = 235}, - [551] = {.lex_state = 235}, - [552] = {.lex_state = 235}, - [553] = {.lex_state = 235}, - [554] = {.lex_state = 235}, - [555] = {.lex_state = 285}, - [556] = {.lex_state = 438}, - [557] = {.lex_state = 438}, - [558] = {.lex_state = 238}, - [559] = {.lex_state = 438}, - [560] = {.lex_state = 438}, - [561] = {.lex_state = 438}, - [562] = {.lex_state = 438}, - [563] = {.lex_state = 438}, - [564] = {.lex_state = 438}, - [565] = {.lex_state = 438}, - [566] = {.lex_state = 438}, - [567] = {.lex_state = 238}, - [568] = {.lex_state = 438}, - [569] = {.lex_state = 238}, - [570] = {.lex_state = 238}, - [571] = {.lex_state = 438}, - [572] = {.lex_state = 438}, - [573] = {.lex_state = 238}, - [574] = {.lex_state = 438}, - [575] = {.lex_state = 438}, - [576] = {.lex_state = 238}, - [577] = {.lex_state = 438}, - [578] = {.lex_state = 438}, - [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}, - [586] = {.lex_state = 438}, - [587] = {.lex_state = 238}, - [588] = {.lex_state = 238}, - [589] = {.lex_state = 438}, - [590] = {.lex_state = 438}, - [591] = {.lex_state = 238}, - [592] = {.lex_state = 238}, - [593] = {.lex_state = 238}, - [594] = {.lex_state = 438}, - [595] = {.lex_state = 238}, - [596] = {.lex_state = 438}, - [597] = {.lex_state = 438}, - [598] = {.lex_state = 438}, - [599] = {.lex_state = 238}, - [600] = {.lex_state = 238}, - [601] = {.lex_state = 438}, - [602] = {.lex_state = 238}, - [603] = {.lex_state = 438}, - [604] = {.lex_state = 238}, - [605] = {.lex_state = 438}, - [606] = {.lex_state = 238}, - [607] = {.lex_state = 438}, - [608] = {.lex_state = 438}, - [609] = {.lex_state = 438}, - [610] = {.lex_state = 238}, - [611] = {.lex_state = 438}, - [612] = {.lex_state = 238}, - [613] = {.lex_state = 438}, - [614] = {.lex_state = 438}, - [615] = {.lex_state = 438}, - [616] = {.lex_state = 238}, - [617] = {.lex_state = 438}, - [618] = {.lex_state = 438}, - [619] = {.lex_state = 238}, - [620] = {.lex_state = 238}, - [621] = {.lex_state = 238}, - [622] = {.lex_state = 438}, - [623] = {.lex_state = 238}, - [624] = {.lex_state = 238}, - [625] = {.lex_state = 438}, - [626] = {.lex_state = 438}, - [627] = {.lex_state = 438}, - [628] = {.lex_state = 238}, - [629] = {.lex_state = 438}, - [630] = {.lex_state = 238}, - [631] = {.lex_state = 238}, - [632] = {.lex_state = 438}, - [633] = {.lex_state = 438}, - [634] = {.lex_state = 238}, - [635] = {.lex_state = 438}, - [636] = {.lex_state = 438}, - [637] = {.lex_state = 238}, - [638] = {.lex_state = 438}, - [639] = {.lex_state = 438}, - [640] = {.lex_state = 238}, - [641] = {.lex_state = 238}, - [642] = {.lex_state = 238}, - [643] = {.lex_state = 238}, - [644] = {.lex_state = 238}, - [645] = {.lex_state = 227}, - [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}, - [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}, - [663] = {.lex_state = 238}, - [664] = {.lex_state = 238}, - [665] = {.lex_state = 238}, - [666] = {.lex_state = 438}, - [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}, - [674] = {.lex_state = 438}, - [675] = {.lex_state = 438}, - [676] = {.lex_state = 438}, - [677] = {.lex_state = 438}, - [678] = {.lex_state = 238}, - [679] = {.lex_state = 238}, - [680] = {.lex_state = 238}, - [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}, - [688] = {.lex_state = 238}, - [689] = {.lex_state = 238}, - [690] = {.lex_state = 238}, - [691] = {.lex_state = 238}, - [692] = {.lex_state = 238}, - [693] = {.lex_state = 238}, - [694] = {.lex_state = 438}, - [695] = {.lex_state = 238}, - [696] = {.lex_state = 238}, - [697] = {.lex_state = 238}, - [698] = {.lex_state = 238}, - [699] = {.lex_state = 238}, - [700] = {.lex_state = 238}, - [701] = {.lex_state = 238}, - [702] = {.lex_state = 238}, - [703] = {.lex_state = 238}, - [704] = {.lex_state = 438}, - [705] = {.lex_state = 238}, - [706] = {.lex_state = 438}, - [707] = {.lex_state = 438}, - [708] = {.lex_state = 238}, - [709] = {.lex_state = 238}, - [710] = {.lex_state = 238}, - [711] = {.lex_state = 238}, - [712] = {.lex_state = 238}, - [713] = {.lex_state = 238}, - [714] = {.lex_state = 238}, - [715] = {.lex_state = 238}, - [716] = {.lex_state = 438}, - [717] = {.lex_state = 238}, - [718] = {.lex_state = 238}, - [719] = {.lex_state = 238}, - [720] = {.lex_state = 238}, - [721] = {.lex_state = 238}, - [722] = {.lex_state = 238}, - [723] = {.lex_state = 238}, - [724] = {.lex_state = 238}, - [725] = {.lex_state = 238}, - [726] = {.lex_state = 438}, - [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}, - [734] = {.lex_state = 238}, - [735] = {.lex_state = 238}, - [736] = {.lex_state = 238}, - [737] = {.lex_state = 238}, - [738] = {.lex_state = 238}, - [739] = {.lex_state = 238}, - [740] = {.lex_state = 238}, - [741] = {.lex_state = 238}, - [742] = {.lex_state = 238}, - [743] = {.lex_state = 238}, - [744] = {.lex_state = 438}, - [745] = {.lex_state = 438}, - [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}, - [760] = {.lex_state = 438}, - [761] = {.lex_state = 438}, - [762] = {.lex_state = 438}, - [763] = {.lex_state = 438}, - [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}, - [773] = {.lex_state = 438}, - [774] = {.lex_state = 438}, - [775] = {.lex_state = 438}, - [776] = {.lex_state = 438}, - [777] = {.lex_state = 438}, - [778] = {.lex_state = 438}, - [779] = {.lex_state = 438}, - [780] = {.lex_state = 238}, - [781] = {.lex_state = 438}, - [782] = {.lex_state = 438}, - [783] = {.lex_state = 438}, - [784] = {.lex_state = 438}, - [785] = {.lex_state = 438}, - [786] = {.lex_state = 438}, - [787] = {.lex_state = 438}, - [788] = {.lex_state = 438}, - [789] = {.lex_state = 438}, - [790] = {.lex_state = 438}, - [791] = {.lex_state = 438}, - [792] = {.lex_state = 438}, - [793] = {.lex_state = 438}, - [794] = {.lex_state = 438}, - [795] = {.lex_state = 438}, - [796] = {.lex_state = 438}, - [797] = {.lex_state = 438}, - [798] = {.lex_state = 438}, - [799] = {.lex_state = 438}, - [800] = {.lex_state = 438}, - [801] = {.lex_state = 438}, - [802] = {.lex_state = 438}, - [803] = {.lex_state = 438}, - [804] = {.lex_state = 438}, - [805] = {.lex_state = 438}, - [806] = {.lex_state = 438}, - [807] = {.lex_state = 438}, - [808] = {.lex_state = 438}, - [809] = {.lex_state = 438}, - [810] = {.lex_state = 438}, - [811] = {.lex_state = 438}, - [812] = {.lex_state = 438}, - [813] = {.lex_state = 438}, - [814] = {.lex_state = 438}, - [815] = {.lex_state = 438}, - [816] = {.lex_state = 438}, - [817] = {.lex_state = 438}, - [818] = {.lex_state = 438}, - [819] = {.lex_state = 438}, - [820] = {.lex_state = 438}, - [821] = {.lex_state = 438}, - [822] = {.lex_state = 438}, - [823] = {.lex_state = 438}, - [824] = {.lex_state = 438}, - [825] = {.lex_state = 438}, - [826] = {.lex_state = 438}, - [827] = {.lex_state = 438}, - [828] = {.lex_state = 438}, - [829] = {.lex_state = 438}, - [830] = {.lex_state = 438}, - [831] = {.lex_state = 438}, - [832] = {.lex_state = 438}, - [833] = {.lex_state = 227}, - [834] = {.lex_state = 438}, - [835] = {.lex_state = 438}, - [836] = {.lex_state = 438}, - [837] = {.lex_state = 438}, - [838] = {.lex_state = 438}, - [839] = {.lex_state = 438}, - [840] = {.lex_state = 438}, - [841] = {.lex_state = 438}, - [842] = {.lex_state = 438}, - [843] = {.lex_state = 438}, - [844] = {.lex_state = 438}, - [845] = {.lex_state = 438}, - [846] = {.lex_state = 438}, - [847] = {.lex_state = 438}, - [848] = {.lex_state = 438}, - [849] = {.lex_state = 438}, - [850] = {.lex_state = 438}, - [851] = {.lex_state = 438}, - [852] = {.lex_state = 438}, - [853] = {.lex_state = 438}, - [854] = {.lex_state = 438}, - [855] = {.lex_state = 438}, - [856] = {.lex_state = 438}, - [857] = {.lex_state = 438}, - [858] = {.lex_state = 438}, - [859] = {.lex_state = 438}, - [860] = {.lex_state = 438}, - [861] = {.lex_state = 438}, - [862] = {.lex_state = 438}, - [863] = {.lex_state = 438}, - [864] = {.lex_state = 438}, - [865] = {.lex_state = 438}, - [866] = {.lex_state = 438}, - [867] = {.lex_state = 438}, - [868] = {.lex_state = 438}, - [869] = {.lex_state = 438}, - [870] = {.lex_state = 333}, - [871] = {.lex_state = 438}, - [872] = {.lex_state = 333}, - [873] = {.lex_state = 438}, - [874] = {.lex_state = 438}, - [875] = {.lex_state = 438}, - [876] = {.lex_state = 438}, - [877] = {.lex_state = 438}, - [878] = {.lex_state = 438}, - [879] = {.lex_state = 438}, - [880] = {.lex_state = 438}, - [881] = {.lex_state = 438}, - [882] = {.lex_state = 438}, - [883] = {.lex_state = 438}, - [884] = {.lex_state = 333}, - [885] = {.lex_state = 438}, - [886] = {.lex_state = 333}, - [887] = {.lex_state = 438}, - [888] = {.lex_state = 438}, - [889] = {.lex_state = 438}, - [890] = {.lex_state = 438}, - [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}, - [898] = {.lex_state = 438}, - [899] = {.lex_state = 438}, - [900] = {.lex_state = 438}, - [901] = {.lex_state = 438}, - [902] = {.lex_state = 438}, - [903] = {.lex_state = 438}, - [904] = {.lex_state = 438}, - [905] = {.lex_state = 438}, - [906] = {.lex_state = 238}, - [907] = {.lex_state = 238}, - [908] = {.lex_state = 333}, - [909] = {.lex_state = 438}, - [910] = {.lex_state = 438}, - [911] = {.lex_state = 438}, - [912] = {.lex_state = 438}, - [913] = {.lex_state = 438}, - [914] = {.lex_state = 333}, - [915] = {.lex_state = 438}, - [916] = {.lex_state = 238}, - [917] = {.lex_state = 438}, - [918] = {.lex_state = 438}, - [919] = {.lex_state = 438}, - [920] = {.lex_state = 438}, - [921] = {.lex_state = 438}, - [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}, - [930] = {.lex_state = 438}, - [931] = {.lex_state = 238}, - [932] = {.lex_state = 333}, - [933] = {.lex_state = 438}, - [934] = {.lex_state = 438}, - [935] = {.lex_state = 333}, - [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}, - [946] = {.lex_state = 438}, - [947] = {.lex_state = 333}, - [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}, - [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}, - [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}, - [970] = {.lex_state = 438}, - [971] = {.lex_state = 438}, - [972] = {.lex_state = 438}, - [973] = {.lex_state = 438}, - [974] = {.lex_state = 333}, - [975] = {.lex_state = 438}, - [976] = {.lex_state = 438}, - [977] = {.lex_state = 438}, - [978] = {.lex_state = 438}, - [979] = {.lex_state = 438}, - [980] = {.lex_state = 438}, - [981] = {.lex_state = 438}, - [982] = {.lex_state = 438}, - [983] = {.lex_state = 438}, - [984] = {.lex_state = 438}, - [985] = {.lex_state = 238}, - [986] = {.lex_state = 238}, - [987] = {.lex_state = 238}, - [988] = {.lex_state = 438}, - [989] = {.lex_state = 286}, - [990] = {.lex_state = 438}, - [991] = {.lex_state = 438}, - [992] = {.lex_state = 438}, - [993] = {.lex_state = 438}, - [994] = {.lex_state = 438}, - [995] = {.lex_state = 438}, - [996] = {.lex_state = 438}, - [997] = {.lex_state = 438}, - [998] = {.lex_state = 438}, - [999] = {.lex_state = 238}, - [1000] = {.lex_state = 238}, - [1001] = {.lex_state = 238}, - [1002] = {.lex_state = 438}, - [1003] = {.lex_state = 438}, - [1004] = {.lex_state = 438}, - [1005] = {.lex_state = 438}, - [1006] = {.lex_state = 438}, - [1007] = {.lex_state = 438}, - [1008] = {.lex_state = 438}, - [1009] = {.lex_state = 238}, - [1010] = {.lex_state = 438}, - [1011] = {.lex_state = 438}, - [1012] = {.lex_state = 238}, - [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}, - [1021] = {.lex_state = 240}, - [1022] = {.lex_state = 240}, - [1023] = {.lex_state = 240}, - [1024] = {.lex_state = 240}, - [1025] = {.lex_state = 240}, - [1026] = {.lex_state = 240}, - [1027] = {.lex_state = 240}, - [1028] = {.lex_state = 240}, - [1029] = {.lex_state = 240}, - [1030] = {.lex_state = 240}, - [1031] = {.lex_state = 240}, - [1032] = {.lex_state = 240}, - [1033] = {.lex_state = 240}, - [1034] = {.lex_state = 240}, - [1035] = {.lex_state = 240}, - [1036] = {.lex_state = 240}, - [1037] = {.lex_state = 233}, - [1038] = {.lex_state = 233}, - [1039] = {.lex_state = 240}, - [1040] = {.lex_state = 240}, - [1041] = {.lex_state = 240}, - [1042] = {.lex_state = 240}, - [1043] = {.lex_state = 240}, - [1044] = {.lex_state = 240}, - [1045] = {.lex_state = 240}, - [1046] = {.lex_state = 240}, - [1047] = {.lex_state = 240}, - [1048] = {.lex_state = 240}, - [1049] = {.lex_state = 240}, - [1050] = {.lex_state = 240}, - [1051] = {.lex_state = 240}, - [1052] = {.lex_state = 240}, - [1053] = {.lex_state = 240}, - [1054] = {.lex_state = 240}, - [1055] = {.lex_state = 240}, - [1056] = {.lex_state = 240}, - [1057] = {.lex_state = 240}, - [1058] = {.lex_state = 240}, - [1059] = {.lex_state = 240}, - [1060] = {.lex_state = 240}, - [1061] = {.lex_state = 240}, - [1062] = {.lex_state = 240}, - [1063] = {.lex_state = 240}, - [1064] = {.lex_state = 240}, - [1065] = {.lex_state = 240}, - [1066] = {.lex_state = 240}, - [1067] = {.lex_state = 240}, - [1068] = {.lex_state = 240}, - [1069] = {.lex_state = 240}, - [1070] = {.lex_state = 240}, - [1071] = {.lex_state = 240}, - [1072] = {.lex_state = 240}, - [1073] = {.lex_state = 240}, - [1074] = {.lex_state = 240}, - [1075] = {.lex_state = 240}, - [1076] = {.lex_state = 240}, - [1077] = {.lex_state = 240}, - [1078] = {.lex_state = 240}, - [1079] = {.lex_state = 240}, - [1080] = {.lex_state = 240}, - [1081] = {.lex_state = 240}, - [1082] = {.lex_state = 240}, - [1083] = {.lex_state = 240}, - [1084] = {.lex_state = 240}, - [1085] = {.lex_state = 240}, - [1086] = {.lex_state = 240}, - [1087] = {.lex_state = 240}, - [1088] = {.lex_state = 240}, - [1089] = {.lex_state = 240}, - [1090] = {.lex_state = 240}, - [1091] = {.lex_state = 240}, - [1092] = {.lex_state = 240}, - [1093] = {.lex_state = 240}, - [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}, - [1101] = {.lex_state = 239}, - [1102] = {.lex_state = 239}, - [1103] = {.lex_state = 285}, - [1104] = {.lex_state = 240}, - [1105] = {.lex_state = 285}, - [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}, - [1114] = {.lex_state = 438}, - [1115] = {.lex_state = 438}, - [1116] = {.lex_state = 237}, - [1117] = {.lex_state = 285}, - [1118] = {.lex_state = 237}, - [1119] = {.lex_state = 253}, - [1120] = {.lex_state = 253}, - [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}, - [1131] = {.lex_state = 241}, - [1132] = {.lex_state = 241}, - [1133] = {.lex_state = 241}, - [1134] = {.lex_state = 241}, - [1135] = {.lex_state = 240}, - [1136] = {.lex_state = 253}, - [1137] = {.lex_state = 241}, - [1138] = {.lex_state = 241}, - [1139] = {.lex_state = 241}, - [1140] = {.lex_state = 240}, - [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}, - [1148] = {.lex_state = 240}, - [1149] = {.lex_state = 241}, - [1150] = {.lex_state = 241}, - [1151] = {.lex_state = 253}, - [1152] = {.lex_state = 241}, - [1153] = {.lex_state = 240}, - [1154] = {.lex_state = 241}, - [1155] = {.lex_state = 241}, - [1156] = {.lex_state = 241}, - [1157] = {.lex_state = 240}, - [1158] = {.lex_state = 240}, - [1159] = {.lex_state = 241}, - [1160] = {.lex_state = 241}, - [1161] = {.lex_state = 253}, - [1162] = {.lex_state = 241}, - [1163] = {.lex_state = 241}, - [1164] = {.lex_state = 241}, - [1165] = {.lex_state = 241}, - [1166] = {.lex_state = 241}, - [1167] = {.lex_state = 241}, - [1168] = {.lex_state = 241}, - [1169] = {.lex_state = 241}, - [1170] = {.lex_state = 241}, - [1171] = {.lex_state = 241}, - [1172] = {.lex_state = 240}, - [1173] = {.lex_state = 240}, - [1174] = {.lex_state = 237}, - [1175] = {.lex_state = 240}, - [1176] = {.lex_state = 240}, - [1177] = {.lex_state = 240}, - [1178] = {.lex_state = 240}, - [1179] = {.lex_state = 240}, - [1180] = {.lex_state = 237}, - [1181] = {.lex_state = 240}, - [1182] = {.lex_state = 240}, - [1183] = {.lex_state = 240}, - [1184] = {.lex_state = 240}, - [1185] = {.lex_state = 240}, - [1186] = {.lex_state = 240}, - [1187] = {.lex_state = 240}, - [1188] = {.lex_state = 240}, - [1189] = {.lex_state = 240}, - [1190] = {.lex_state = 240}, - [1191] = {.lex_state = 240}, - [1192] = {.lex_state = 240}, - [1193] = {.lex_state = 240}, - [1194] = {.lex_state = 240}, - [1195] = {.lex_state = 240}, - [1196] = {.lex_state = 240}, - [1197] = {.lex_state = 240}, - [1198] = {.lex_state = 237}, - [1199] = {.lex_state = 240}, - [1200] = {.lex_state = 237}, - [1201] = {.lex_state = 240}, - [1202] = {.lex_state = 240}, - [1203] = {.lex_state = 240}, - [1204] = {.lex_state = 253}, - [1205] = {.lex_state = 237}, - [1206] = {.lex_state = 240}, - [1207] = {.lex_state = 253}, - [1208] = {.lex_state = 240}, - [1209] = {.lex_state = 240}, - [1210] = {.lex_state = 240}, - [1211] = {.lex_state = 240}, - [1212] = {.lex_state = 253}, - [1213] = {.lex_state = 240}, - [1214] = {.lex_state = 240}, - [1215] = {.lex_state = 237}, - [1216] = {.lex_state = 237}, - [1217] = {.lex_state = 240}, - [1218] = {.lex_state = 240}, - [1219] = {.lex_state = 240}, - [1220] = {.lex_state = 240}, - [1221] = {.lex_state = 237}, - [1222] = {.lex_state = 237}, - [1223] = {.lex_state = 237}, - [1224] = {.lex_state = 237}, - [1225] = {.lex_state = 237}, - [1226] = {.lex_state = 237}, - [1227] = {.lex_state = 237}, - [1228] = {.lex_state = 237}, - [1229] = {.lex_state = 237}, - [1230] = {.lex_state = 237}, - [1231] = {.lex_state = 237}, - [1232] = {.lex_state = 237}, - [1233] = {.lex_state = 237}, - [1234] = {.lex_state = 237}, - [1235] = {.lex_state = 237}, - [1236] = {.lex_state = 240}, - [1237] = {.lex_state = 237}, - [1238] = {.lex_state = 237}, - [1239] = {.lex_state = 237}, - [1240] = {.lex_state = 237}, - [1241] = {.lex_state = 237}, - [1242] = {.lex_state = 237}, - [1243] = {.lex_state = 237}, - [1244] = {.lex_state = 237}, - [1245] = {.lex_state = 237}, - [1246] = {.lex_state = 237}, - [1247] = {.lex_state = 237}, - [1248] = {.lex_state = 240}, - [1249] = {.lex_state = 237}, - [1250] = {.lex_state = 237}, - [1251] = {.lex_state = 237}, - [1252] = {.lex_state = 237}, - [1253] = {.lex_state = 237}, - [1254] = {.lex_state = 237}, - [1255] = {.lex_state = 237}, - [1256] = {.lex_state = 237}, - [1257] = {.lex_state = 237}, - [1258] = {.lex_state = 237}, - [1259] = {.lex_state = 237}, - [1260] = {.lex_state = 237}, - [1261] = {.lex_state = 237}, - [1262] = {.lex_state = 240}, - [1263] = {.lex_state = 237}, - [1264] = {.lex_state = 237}, - [1265] = {.lex_state = 237}, - [1266] = {.lex_state = 237}, - [1267] = {.lex_state = 285}, - [1268] = {.lex_state = 240}, - [1269] = {.lex_state = 240}, - [1270] = {.lex_state = 240}, - [1271] = {.lex_state = 240}, - [1272] = {.lex_state = 240}, - [1273] = {.lex_state = 240}, - [1274] = {.lex_state = 240}, - [1275] = {.lex_state = 240}, - [1276] = {.lex_state = 240}, - [1277] = {.lex_state = 240}, - [1278] = {.lex_state = 240}, - [1279] = {.lex_state = 240}, - [1280] = {.lex_state = 240}, - [1281] = {.lex_state = 240}, - [1282] = {.lex_state = 240}, - [1283] = {.lex_state = 240}, - [1284] = {.lex_state = 240}, - [1285] = {.lex_state = 240}, - [1286] = {.lex_state = 240}, - [1287] = {.lex_state = 240}, - [1288] = {.lex_state = 240}, - [1289] = {.lex_state = 240}, - [1290] = {.lex_state = 240}, - [1291] = {.lex_state = 240}, - [1292] = {.lex_state = 240}, - [1293] = {.lex_state = 240}, - [1294] = {.lex_state = 240}, - [1295] = {.lex_state = 240}, - [1296] = {.lex_state = 248}, - [1297] = {.lex_state = 240}, - [1298] = {.lex_state = 240}, - [1299] = {.lex_state = 240}, - [1300] = {.lex_state = 240}, - [1301] = {.lex_state = 240}, - [1302] = {.lex_state = 240}, - [1303] = {.lex_state = 240}, - [1304] = {.lex_state = 240}, - [1305] = {.lex_state = 240}, - [1306] = {.lex_state = 240}, - [1307] = {.lex_state = 240}, - [1308] = {.lex_state = 253}, - [1309] = {.lex_state = 240}, - [1310] = {.lex_state = 240}, - [1311] = {.lex_state = 240}, - [1312] = {.lex_state = 240}, - [1313] = {.lex_state = 240}, - [1314] = {.lex_state = 240}, - [1315] = {.lex_state = 240}, - [1316] = {.lex_state = 240}, - [1317] = {.lex_state = 240}, - [1318] = {.lex_state = 240}, - [1319] = {.lex_state = 240}, - [1320] = {.lex_state = 240}, - [1321] = {.lex_state = 240}, - [1322] = {.lex_state = 240}, - [1323] = {.lex_state = 240}, - [1324] = {.lex_state = 240}, - [1325] = {.lex_state = 240}, - [1326] = {.lex_state = 240}, - [1327] = {.lex_state = 240}, - [1328] = {.lex_state = 240}, - [1329] = {.lex_state = 240}, - [1330] = {.lex_state = 240}, - [1331] = {.lex_state = 240}, - [1332] = {.lex_state = 240}, - [1333] = {.lex_state = 240}, - [1334] = {.lex_state = 240}, - [1335] = {.lex_state = 240}, - [1336] = {.lex_state = 240}, - [1337] = {.lex_state = 240}, - [1338] = {.lex_state = 240}, - [1339] = {.lex_state = 240}, - [1340] = {.lex_state = 240}, - [1341] = {.lex_state = 240}, - [1342] = {.lex_state = 240}, - [1343] = {.lex_state = 240}, - [1344] = {.lex_state = 240}, - [1345] = {.lex_state = 240}, - [1346] = {.lex_state = 240}, - [1347] = {.lex_state = 240}, - [1348] = {.lex_state = 240}, - [1349] = {.lex_state = 240}, - [1350] = {.lex_state = 240}, - [1351] = {.lex_state = 240}, - [1352] = {.lex_state = 240}, - [1353] = {.lex_state = 240}, - [1354] = {.lex_state = 240}, - [1355] = {.lex_state = 240}, - [1356] = {.lex_state = 240}, - [1357] = {.lex_state = 240}, - [1358] = {.lex_state = 240}, - [1359] = {.lex_state = 240}, - [1360] = {.lex_state = 240}, - [1361] = {.lex_state = 240}, - [1362] = {.lex_state = 240}, - [1363] = {.lex_state = 240}, - [1364] = {.lex_state = 240}, - [1365] = {.lex_state = 240}, - [1366] = {.lex_state = 240}, - [1367] = {.lex_state = 240}, - [1368] = {.lex_state = 240}, - [1369] = {.lex_state = 240}, - [1370] = {.lex_state = 240}, - [1371] = {.lex_state = 240}, - [1372] = {.lex_state = 240}, - [1373] = {.lex_state = 240}, - [1374] = {.lex_state = 240}, - [1375] = {.lex_state = 240}, - [1376] = {.lex_state = 240}, - [1377] = {.lex_state = 240}, - [1378] = {.lex_state = 240}, - [1379] = {.lex_state = 240}, - [1380] = {.lex_state = 240}, - [1381] = {.lex_state = 240}, - [1382] = {.lex_state = 240}, - [1383] = {.lex_state = 240}, - [1384] = {.lex_state = 240}, - [1385] = {.lex_state = 240}, - [1386] = {.lex_state = 240}, - [1387] = {.lex_state = 240}, - [1388] = {.lex_state = 240}, - [1389] = {.lex_state = 240}, - [1390] = {.lex_state = 240}, - [1391] = {.lex_state = 240}, - [1392] = {.lex_state = 240}, - [1393] = {.lex_state = 240}, - [1394] = {.lex_state = 240}, - [1395] = {.lex_state = 240}, - [1396] = {.lex_state = 240}, - [1397] = {.lex_state = 240}, - [1398] = {.lex_state = 240}, - [1399] = {.lex_state = 240}, - [1400] = {.lex_state = 240}, - [1401] = {.lex_state = 240}, - [1402] = {.lex_state = 240}, - [1403] = {.lex_state = 240}, - [1404] = {.lex_state = 240}, - [1405] = {.lex_state = 240}, - [1406] = {.lex_state = 240}, - [1407] = {.lex_state = 240}, - [1408] = {.lex_state = 240}, - [1409] = {.lex_state = 240}, - [1410] = {.lex_state = 240}, - [1411] = {.lex_state = 240}, - [1412] = {.lex_state = 240}, - [1413] = {.lex_state = 240}, - [1414] = {.lex_state = 240}, - [1415] = {.lex_state = 240}, - [1416] = {.lex_state = 240}, - [1417] = {.lex_state = 240}, - [1418] = {.lex_state = 240}, - [1419] = {.lex_state = 240}, - [1420] = {.lex_state = 240}, - [1421] = {.lex_state = 240}, - [1422] = {.lex_state = 240}, - [1423] = {.lex_state = 240}, - [1424] = {.lex_state = 240}, - [1425] = {.lex_state = 240}, - [1426] = {.lex_state = 240}, - [1427] = {.lex_state = 240}, - [1428] = {.lex_state = 240}, - [1429] = {.lex_state = 240}, - [1430] = {.lex_state = 240}, - [1431] = {.lex_state = 240}, - [1432] = {.lex_state = 240}, - [1433] = {.lex_state = 240}, - [1434] = {.lex_state = 240}, - [1435] = {.lex_state = 240}, - [1436] = {.lex_state = 240}, - [1437] = {.lex_state = 240}, - [1438] = {.lex_state = 240}, - [1439] = {.lex_state = 240}, - [1440] = {.lex_state = 240}, - [1441] = {.lex_state = 240}, - [1442] = {.lex_state = 240}, - [1443] = {.lex_state = 240}, - [1444] = {.lex_state = 240}, - [1445] = {.lex_state = 240}, - [1446] = {.lex_state = 240}, - [1447] = {.lex_state = 240}, - [1448] = {.lex_state = 240}, - [1449] = {.lex_state = 240}, - [1450] = {.lex_state = 240}, - [1451] = {.lex_state = 240}, - [1452] = {.lex_state = 240}, - [1453] = {.lex_state = 240}, - [1454] = {.lex_state = 240}, - [1455] = {.lex_state = 240}, - [1456] = {.lex_state = 240}, - [1457] = {.lex_state = 240}, - [1458] = {.lex_state = 240}, - [1459] = {.lex_state = 240}, - [1460] = {.lex_state = 240}, - [1461] = {.lex_state = 240}, - [1462] = {.lex_state = 240}, - [1463] = {.lex_state = 240}, - [1464] = {.lex_state = 240}, - [1465] = {.lex_state = 240}, - [1466] = {.lex_state = 240}, - [1467] = {.lex_state = 240}, - [1468] = {.lex_state = 240}, - [1469] = {.lex_state = 240}, - [1470] = {.lex_state = 240}, - [1471] = {.lex_state = 240}, - [1472] = {.lex_state = 240}, - [1473] = {.lex_state = 240}, - [1474] = {.lex_state = 240}, - [1475] = {.lex_state = 240}, - [1476] = {.lex_state = 240}, - [1477] = {.lex_state = 240}, - [1478] = {.lex_state = 240}, - [1479] = {.lex_state = 240}, - [1480] = {.lex_state = 240}, - [1481] = {.lex_state = 240}, - [1482] = {.lex_state = 240}, - [1483] = {.lex_state = 240}, - [1484] = {.lex_state = 240}, - [1485] = {.lex_state = 240}, - [1486] = {.lex_state = 240}, - [1487] = {.lex_state = 240}, - [1488] = {.lex_state = 240}, - [1489] = {.lex_state = 240}, - [1490] = {.lex_state = 240}, - [1491] = {.lex_state = 240}, - [1492] = {.lex_state = 240}, - [1493] = {.lex_state = 240}, - [1494] = {.lex_state = 240}, - [1495] = {.lex_state = 240}, - [1496] = {.lex_state = 240}, - [1497] = {.lex_state = 240}, - [1498] = {.lex_state = 240}, - [1499] = {.lex_state = 240}, - [1500] = {.lex_state = 240}, - [1501] = {.lex_state = 240}, - [1502] = {.lex_state = 240}, - [1503] = {.lex_state = 240}, - [1504] = {.lex_state = 240}, - [1505] = {.lex_state = 240}, - [1506] = {.lex_state = 240}, - [1507] = {.lex_state = 240}, - [1508] = {.lex_state = 240}, - [1509] = {.lex_state = 240}, - [1510] = {.lex_state = 240}, - [1511] = {.lex_state = 240}, - [1512] = {.lex_state = 240}, - [1513] = {.lex_state = 240}, - [1514] = {.lex_state = 240}, - [1515] = {.lex_state = 240}, - [1516] = {.lex_state = 240}, - [1517] = {.lex_state = 240}, - [1518] = {.lex_state = 240}, - [1519] = {.lex_state = 240}, - [1520] = {.lex_state = 240}, - [1521] = {.lex_state = 240}, - [1522] = {.lex_state = 240}, - [1523] = {.lex_state = 240}, - [1524] = {.lex_state = 240}, - [1525] = {.lex_state = 240}, - [1526] = {.lex_state = 240}, - [1527] = {.lex_state = 240}, - [1528] = {.lex_state = 240}, - [1529] = {.lex_state = 240}, - [1530] = {.lex_state = 240}, - [1531] = {.lex_state = 240}, - [1532] = {.lex_state = 240}, - [1533] = {.lex_state = 240}, - [1534] = {.lex_state = 240}, - [1535] = {.lex_state = 240}, - [1536] = {.lex_state = 240}, - [1537] = {.lex_state = 240}, - [1538] = {.lex_state = 240}, - [1539] = {.lex_state = 240}, - [1540] = {.lex_state = 240}, - [1541] = {.lex_state = 240}, - [1542] = {.lex_state = 240}, - [1543] = {.lex_state = 240}, - [1544] = {.lex_state = 240}, - [1545] = {.lex_state = 240}, - [1546] = {.lex_state = 240}, - [1547] = {.lex_state = 240}, - [1548] = {.lex_state = 240}, - [1549] = {.lex_state = 240}, - [1550] = {.lex_state = 240}, - [1551] = {.lex_state = 240}, - [1552] = {.lex_state = 240}, - [1553] = {.lex_state = 240}, - [1554] = {.lex_state = 240}, - [1555] = {.lex_state = 240}, - [1556] = {.lex_state = 240}, - [1557] = {.lex_state = 240}, - [1558] = {.lex_state = 240}, - [1559] = {.lex_state = 240}, - [1560] = {.lex_state = 240}, - [1561] = {.lex_state = 240}, - [1562] = {.lex_state = 240}, - [1563] = {.lex_state = 240}, - [1564] = {.lex_state = 240}, - [1565] = {.lex_state = 240}, - [1566] = {.lex_state = 240}, - [1567] = {.lex_state = 240}, - [1568] = {.lex_state = 240}, - [1569] = {.lex_state = 240}, - [1570] = {.lex_state = 240}, - [1571] = {.lex_state = 240}, - [1572] = {.lex_state = 240}, - [1573] = {.lex_state = 240}, - [1574] = {.lex_state = 240}, - [1575] = {.lex_state = 240}, - [1576] = {.lex_state = 240}, - [1577] = {.lex_state = 240}, - [1578] = {.lex_state = 240}, - [1579] = {.lex_state = 240}, - [1580] = {.lex_state = 240}, - [1581] = {.lex_state = 240}, - [1582] = {.lex_state = 240}, - [1583] = {.lex_state = 240}, - [1584] = {.lex_state = 240}, - [1585] = {.lex_state = 240}, - [1586] = {.lex_state = 240}, - [1587] = {.lex_state = 240}, - [1588] = {.lex_state = 240}, - [1589] = {.lex_state = 240}, - [1590] = {.lex_state = 240}, - [1591] = {.lex_state = 240}, - [1592] = {.lex_state = 240}, - [1593] = {.lex_state = 240}, - [1594] = {.lex_state = 240}, - [1595] = {.lex_state = 240}, - [1596] = {.lex_state = 240}, - [1597] = {.lex_state = 240}, - [1598] = {.lex_state = 240}, - [1599] = {.lex_state = 240}, - [1600] = {.lex_state = 240}, - [1601] = {.lex_state = 240}, - [1602] = {.lex_state = 240}, - [1603] = {.lex_state = 240}, - [1604] = {.lex_state = 240}, - [1605] = {.lex_state = 240}, - [1606] = {.lex_state = 240}, - [1607] = {.lex_state = 240}, - [1608] = {.lex_state = 240}, - [1609] = {.lex_state = 240}, - [1610] = {.lex_state = 240}, - [1611] = {.lex_state = 240}, - [1612] = {.lex_state = 240}, - [1613] = {.lex_state = 240}, - [1614] = {.lex_state = 240}, - [1615] = {.lex_state = 240}, - [1616] = {.lex_state = 240}, - [1617] = {.lex_state = 240}, - [1618] = {.lex_state = 240}, - [1619] = {.lex_state = 240}, - [1620] = {.lex_state = 240}, - [1621] = {.lex_state = 240}, - [1622] = {.lex_state = 240}, - [1623] = {.lex_state = 240}, - [1624] = {.lex_state = 240}, - [1625] = {.lex_state = 240}, - [1626] = {.lex_state = 240}, - [1627] = {.lex_state = 240}, - [1628] = {.lex_state = 240}, - [1629] = {.lex_state = 240}, - [1630] = {.lex_state = 240}, - [1631] = {.lex_state = 240}, - [1632] = {.lex_state = 240}, - [1633] = {.lex_state = 240}, - [1634] = {.lex_state = 240}, - [1635] = {.lex_state = 240}, - [1636] = {.lex_state = 240}, - [1637] = {.lex_state = 240}, - [1638] = {.lex_state = 240}, - [1639] = {.lex_state = 240}, - [1640] = {.lex_state = 240}, - [1641] = {.lex_state = 240}, - [1642] = {.lex_state = 240}, - [1643] = {.lex_state = 240}, - [1644] = {.lex_state = 240}, - [1645] = {.lex_state = 240}, - [1646] = {.lex_state = 240}, - [1647] = {.lex_state = 240}, - [1648] = {.lex_state = 240}, - [1649] = {.lex_state = 240}, - [1650] = {.lex_state = 240}, - [1651] = {.lex_state = 240}, - [1652] = {.lex_state = 240}, - [1653] = {.lex_state = 240}, - [1654] = {.lex_state = 240}, - [1655] = {.lex_state = 240}, - [1656] = {.lex_state = 240}, - [1657] = {.lex_state = 240}, - [1658] = {.lex_state = 240}, - [1659] = {.lex_state = 240}, - [1660] = {.lex_state = 240}, - [1661] = {.lex_state = 240}, - [1662] = {.lex_state = 240}, - [1663] = {.lex_state = 240}, - [1664] = {.lex_state = 240}, - [1665] = {.lex_state = 240}, - [1666] = {.lex_state = 240}, - [1667] = {.lex_state = 240}, - [1668] = {.lex_state = 240}, - [1669] = {.lex_state = 240}, - [1670] = {.lex_state = 240}, - [1671] = {.lex_state = 240}, - [1672] = {.lex_state = 240}, - [1673] = {.lex_state = 240}, - [1674] = {.lex_state = 240}, - [1675] = {.lex_state = 240}, - [1676] = {.lex_state = 240}, - [1677] = {.lex_state = 240}, - [1678] = {.lex_state = 240}, - [1679] = {.lex_state = 240}, - [1680] = {.lex_state = 240}, - [1681] = {.lex_state = 240}, - [1682] = {.lex_state = 240}, - [1683] = {.lex_state = 240}, - [1684] = {.lex_state = 240}, - [1685] = {.lex_state = 240}, - [1686] = {.lex_state = 240}, - [1687] = {.lex_state = 240}, - [1688] = {.lex_state = 240}, - [1689] = {.lex_state = 240}, - [1690] = {.lex_state = 240}, - [1691] = {.lex_state = 240}, - [1692] = {.lex_state = 240}, - [1693] = {.lex_state = 240}, - [1694] = {.lex_state = 240}, - [1695] = {.lex_state = 240}, - [1696] = {.lex_state = 240}, - [1697] = {.lex_state = 240}, - [1698] = {.lex_state = 240}, - [1699] = {.lex_state = 240}, - [1700] = {.lex_state = 240}, - [1701] = {.lex_state = 240}, - [1702] = {.lex_state = 240}, - [1703] = {.lex_state = 240}, - [1704] = {.lex_state = 240}, - [1705] = {.lex_state = 240}, - [1706] = {.lex_state = 240}, - [1707] = {.lex_state = 240}, - [1708] = {.lex_state = 240}, - [1709] = {.lex_state = 240}, - [1710] = {.lex_state = 240}, - [1711] = {.lex_state = 240}, - [1712] = {.lex_state = 240}, - [1713] = {.lex_state = 240}, - [1714] = {.lex_state = 240}, - [1715] = {.lex_state = 240}, - [1716] = {.lex_state = 240}, - [1717] = {.lex_state = 240}, - [1718] = {.lex_state = 240}, - [1719] = {.lex_state = 240}, - [1720] = {.lex_state = 240}, - [1721] = {.lex_state = 240}, - [1722] = {.lex_state = 240}, - [1723] = {.lex_state = 240}, - [1724] = {.lex_state = 240}, - [1725] = {.lex_state = 240}, - [1726] = {.lex_state = 240}, - [1727] = {.lex_state = 240}, - [1728] = {.lex_state = 240}, - [1729] = {.lex_state = 240}, - [1730] = {.lex_state = 240}, - [1731] = {.lex_state = 240}, - [1732] = {.lex_state = 240}, - [1733] = {.lex_state = 240}, - [1734] = {.lex_state = 240}, - [1735] = {.lex_state = 240}, - [1736] = {.lex_state = 240}, - [1737] = {.lex_state = 240}, - [1738] = {.lex_state = 240}, - [1739] = {.lex_state = 240}, - [1740] = {.lex_state = 240}, - [1741] = {.lex_state = 240}, - [1742] = {.lex_state = 240}, - [1743] = {.lex_state = 240}, - [1744] = {.lex_state = 240}, - [1745] = {.lex_state = 240}, - [1746] = {.lex_state = 240}, - [1747] = {.lex_state = 240}, - [1748] = {.lex_state = 240}, - [1749] = {.lex_state = 240}, - [1750] = {.lex_state = 240}, - [1751] = {.lex_state = 240}, - [1752] = {.lex_state = 240}, - [1753] = {.lex_state = 240}, - [1754] = {.lex_state = 240}, - [1755] = {.lex_state = 240}, - [1756] = {.lex_state = 240}, - [1757] = {.lex_state = 240}, - [1758] = {.lex_state = 240}, - [1759] = {.lex_state = 240}, - [1760] = {.lex_state = 240}, - [1761] = {.lex_state = 240}, - [1762] = {.lex_state = 240}, - [1763] = {.lex_state = 240}, - [1764] = {.lex_state = 240}, - [1765] = {.lex_state = 240}, - [1766] = {.lex_state = 240}, - [1767] = {.lex_state = 240}, - [1768] = {.lex_state = 240}, - [1769] = {.lex_state = 240}, - [1770] = {.lex_state = 240}, - [1771] = {.lex_state = 240}, - [1772] = {.lex_state = 240}, - [1773] = {.lex_state = 240}, - [1774] = {.lex_state = 240}, - [1775] = {.lex_state = 240}, - [1776] = {.lex_state = 240}, - [1777] = {.lex_state = 240}, - [1778] = {.lex_state = 240}, - [1779] = {.lex_state = 240}, - [1780] = {.lex_state = 240}, - [1781] = {.lex_state = 240}, - [1782] = {.lex_state = 240}, - [1783] = {.lex_state = 240}, - [1784] = {.lex_state = 240}, - [1785] = {.lex_state = 240}, - [1786] = {.lex_state = 240}, - [1787] = {.lex_state = 240}, - [1788] = {.lex_state = 240}, - [1789] = {.lex_state = 240}, - [1790] = {.lex_state = 240}, - [1791] = {.lex_state = 240}, - [1792] = {.lex_state = 240}, - [1793] = {.lex_state = 240}, - [1794] = {.lex_state = 240}, - [1795] = {.lex_state = 240}, - [1796] = {.lex_state = 240}, - [1797] = {.lex_state = 240}, - [1798] = {.lex_state = 240}, - [1799] = {.lex_state = 240}, - [1800] = {.lex_state = 240}, - [1801] = {.lex_state = 240}, - [1802] = {.lex_state = 240}, - [1803] = {.lex_state = 240}, - [1804] = {.lex_state = 240}, - [1805] = {.lex_state = 240}, - [1806] = {.lex_state = 240}, - [1807] = {.lex_state = 240}, - [1808] = {.lex_state = 240}, - [1809] = {.lex_state = 240}, - [1810] = {.lex_state = 240}, - [1811] = {.lex_state = 240}, - [1812] = {.lex_state = 240}, - [1813] = {.lex_state = 240}, - [1814] = {.lex_state = 240}, - [1815] = {.lex_state = 240}, - [1816] = {.lex_state = 240}, - [1817] = {.lex_state = 240}, - [1818] = {.lex_state = 240}, - [1819] = {.lex_state = 240}, - [1820] = {.lex_state = 240}, - [1821] = {.lex_state = 240}, - [1822] = {.lex_state = 240}, - [1823] = {.lex_state = 240}, - [1824] = {.lex_state = 240}, - [1825] = {.lex_state = 240}, - [1826] = {.lex_state = 240}, - [1827] = {.lex_state = 240}, - [1828] = {.lex_state = 240}, - [1829] = {.lex_state = 240}, - [1830] = {.lex_state = 240}, - [1831] = {.lex_state = 240}, - [1832] = {.lex_state = 240}, - [1833] = {.lex_state = 240}, - [1834] = {.lex_state = 240}, - [1835] = {.lex_state = 240}, - [1836] = {.lex_state = 240}, - [1837] = {.lex_state = 240}, - [1838] = {.lex_state = 240}, - [1839] = {.lex_state = 240}, - [1840] = {.lex_state = 240}, - [1841] = {.lex_state = 240}, - [1842] = {.lex_state = 240}, - [1843] = {.lex_state = 240}, - [1844] = {.lex_state = 240}, - [1845] = {.lex_state = 240}, - [1846] = {.lex_state = 240}, - [1847] = {.lex_state = 240}, - [1848] = {.lex_state = 240}, - [1849] = {.lex_state = 240}, - [1850] = {.lex_state = 240}, - [1851] = {.lex_state = 240}, - [1852] = {.lex_state = 240}, - [1853] = {.lex_state = 240}, - [1854] = {.lex_state = 240}, - [1855] = {.lex_state = 240}, - [1856] = {.lex_state = 240}, - [1857] = {.lex_state = 240}, - [1858] = {.lex_state = 240}, - [1859] = {.lex_state = 240}, - [1860] = {.lex_state = 240}, - [1861] = {.lex_state = 240}, - [1862] = {.lex_state = 240}, - [1863] = {.lex_state = 240}, - [1864] = {.lex_state = 240}, - [1865] = {.lex_state = 240}, - [1866] = {.lex_state = 240}, - [1867] = {.lex_state = 240}, - [1868] = {.lex_state = 240}, - [1869] = {.lex_state = 240}, - [1870] = {.lex_state = 240}, - [1871] = {.lex_state = 240}, - [1872] = {.lex_state = 240}, - [1873] = {.lex_state = 240}, - [1874] = {.lex_state = 240}, - [1875] = {.lex_state = 240}, - [1876] = {.lex_state = 240}, - [1877] = {.lex_state = 240}, - [1878] = {.lex_state = 240}, - [1879] = {.lex_state = 240}, - [1880] = {.lex_state = 240}, - [1881] = {.lex_state = 240}, - [1882] = {.lex_state = 240}, - [1883] = {.lex_state = 240}, - [1884] = {.lex_state = 240}, - [1885] = {.lex_state = 240}, - [1886] = {.lex_state = 240}, - [1887] = {.lex_state = 240}, - [1888] = {.lex_state = 240}, - [1889] = {.lex_state = 240}, - [1890] = {.lex_state = 240}, - [1891] = {.lex_state = 240}, - [1892] = {.lex_state = 240}, - [1893] = {.lex_state = 240}, - [1894] = {.lex_state = 240}, - [1895] = {.lex_state = 240}, - [1896] = {.lex_state = 240}, - [1897] = {.lex_state = 240}, - [1898] = {.lex_state = 240}, - [1899] = {.lex_state = 240}, - [1900] = {.lex_state = 240}, - [1901] = {.lex_state = 240}, - [1902] = {.lex_state = 240}, - [1903] = {.lex_state = 240}, - [1904] = {.lex_state = 240}, - [1905] = {.lex_state = 240}, - [1906] = {.lex_state = 240}, - [1907] = {.lex_state = 240}, - [1908] = {.lex_state = 240}, - [1909] = {.lex_state = 240}, - [1910] = {.lex_state = 240}, - [1911] = {.lex_state = 240}, - [1912] = {.lex_state = 240}, - [1913] = {.lex_state = 240}, - [1914] = {.lex_state = 240}, - [1915] = {.lex_state = 240}, - [1916] = {.lex_state = 240}, - [1917] = {.lex_state = 240}, - [1918] = {.lex_state = 240}, - [1919] = {.lex_state = 240}, - [1920] = {.lex_state = 240}, - [1921] = {.lex_state = 240}, - [1922] = {.lex_state = 240}, - [1923] = {.lex_state = 240}, - [1924] = {.lex_state = 240}, - [1925] = {.lex_state = 240}, - [1926] = {.lex_state = 240}, - [1927] = {.lex_state = 240}, - [1928] = {.lex_state = 240}, - [1929] = {.lex_state = 240}, - [1930] = {.lex_state = 240}, - [1931] = {.lex_state = 240}, - [1932] = {.lex_state = 240}, - [1933] = {.lex_state = 240}, - [1934] = {.lex_state = 240}, - [1935] = {.lex_state = 240}, - [1936] = {.lex_state = 240}, - [1937] = {.lex_state = 240}, - [1938] = {.lex_state = 240}, - [1939] = {.lex_state = 240}, - [1940] = {.lex_state = 240}, - [1941] = {.lex_state = 240}, - [1942] = {.lex_state = 240}, - [1943] = {.lex_state = 240}, - [1944] = {.lex_state = 285}, - [1945] = {.lex_state = 285}, - [1946] = {.lex_state = 266}, - [1947] = {.lex_state = 266}, - [1948] = {.lex_state = 285}, - [1949] = {.lex_state = 285}, - [1950] = {.lex_state = 285}, - [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}, - [1959] = {.lex_state = 265}, - [1960] = {.lex_state = 333}, - [1961] = {.lex_state = 333}, - [1962] = {.lex_state = 333}, - [1963] = {.lex_state = 265}, - [1964] = {.lex_state = 265}, - [1965] = {.lex_state = 265}, - [1966] = {.lex_state = 265}, - [1967] = {.lex_state = 265}, - [1968] = {.lex_state = 265}, - [1969] = {.lex_state = 265}, - [1970] = {.lex_state = 265}, - [1971] = {.lex_state = 333}, - [1972] = {.lex_state = 289}, - [1973] = {.lex_state = 265}, - [1974] = {.lex_state = 289}, - [1975] = {.lex_state = 298}, - [1976] = {.lex_state = 266}, - [1977] = {.lex_state = 270}, - [1978] = {.lex_state = 270}, - [1979] = {.lex_state = 266}, - [1980] = {.lex_state = 298}, - [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}, - [1989] = {.lex_state = 289}, - [1990] = {.lex_state = 243}, - [1991] = {.lex_state = 289}, - [1992] = {.lex_state = 243}, - [1993] = {.lex_state = 243}, - [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}, - [2005] = {.lex_state = 287}, - [2006] = {.lex_state = 272}, - [2007] = {.lex_state = 287}, - [2008] = {.lex_state = 287}, - [2009] = {.lex_state = 287}, - [2010] = {.lex_state = 315}, - [2011] = {.lex_state = 315}, - [2012] = {.lex_state = 287}, + [1] = {.lex_state = 466}, + [2] = {.lex_state = 466}, + [3] = {.lex_state = 466}, + [4] = {.lex_state = 466}, + [5] = {.lex_state = 466}, + [6] = {.lex_state = 466}, + [7] = {.lex_state = 466}, + [8] = {.lex_state = 466}, + [9] = {.lex_state = 466}, + [10] = {.lex_state = 466}, + [11] = {.lex_state = 466}, + [12] = {.lex_state = 466}, + [13] = {.lex_state = 253}, + [14] = {.lex_state = 253}, + [15] = {.lex_state = 253}, + [16] = {.lex_state = 253}, + [17] = {.lex_state = 253}, + [18] = {.lex_state = 253}, + [19] = {.lex_state = 253}, + [20] = {.lex_state = 253}, + [21] = {.lex_state = 253}, + [22] = {.lex_state = 253}, + [23] = {.lex_state = 253}, + [24] = {.lex_state = 253}, + [25] = {.lex_state = 253}, + [26] = {.lex_state = 253}, + [27] = {.lex_state = 253}, + [28] = {.lex_state = 253}, + [29] = {.lex_state = 253}, + [30] = {.lex_state = 253}, + [31] = {.lex_state = 253}, + [32] = {.lex_state = 253}, + [33] = {.lex_state = 253}, + [34] = {.lex_state = 253}, + [35] = {.lex_state = 253}, + [36] = {.lex_state = 253}, + [37] = {.lex_state = 253}, + [38] = {.lex_state = 253}, + [39] = {.lex_state = 253}, + [40] = {.lex_state = 253}, + [41] = {.lex_state = 253}, + [42] = {.lex_state = 253}, + [43] = {.lex_state = 253}, + [44] = {.lex_state = 253}, + [45] = {.lex_state = 253}, + [46] = {.lex_state = 253}, + [47] = {.lex_state = 253}, + [48] = {.lex_state = 253}, + [49] = {.lex_state = 253}, + [50] = {.lex_state = 253}, + [51] = {.lex_state = 466}, + [52] = {.lex_state = 256}, + [53] = {.lex_state = 466}, + [54] = {.lex_state = 466}, + [55] = {.lex_state = 466}, + [56] = {.lex_state = 466}, + [57] = {.lex_state = 466}, + [58] = {.lex_state = 466}, + [59] = {.lex_state = 256}, + [60] = {.lex_state = 466}, + [61] = {.lex_state = 466}, + [62] = {.lex_state = 466}, + [63] = {.lex_state = 466}, + [64] = {.lex_state = 466}, + [65] = {.lex_state = 466}, + [66] = {.lex_state = 466}, + [67] = {.lex_state = 466}, + [68] = {.lex_state = 256}, + [69] = {.lex_state = 466}, + [70] = {.lex_state = 466}, + [71] = {.lex_state = 466}, + [72] = {.lex_state = 466}, + [73] = {.lex_state = 466}, + [74] = {.lex_state = 466}, + [75] = {.lex_state = 466}, + [76] = {.lex_state = 466}, + [77] = {.lex_state = 466}, + [78] = {.lex_state = 466}, + [79] = {.lex_state = 466}, + [80] = {.lex_state = 466}, + [81] = {.lex_state = 466}, + [82] = {.lex_state = 466}, + [83] = {.lex_state = 466}, + [84] = {.lex_state = 466}, + [85] = {.lex_state = 466}, + [86] = {.lex_state = 466}, + [87] = {.lex_state = 466}, + [88] = {.lex_state = 466}, + [89] = {.lex_state = 466}, + [90] = {.lex_state = 466}, + [91] = {.lex_state = 466}, + [92] = {.lex_state = 466}, + [93] = {.lex_state = 466}, + [94] = {.lex_state = 466}, + [95] = {.lex_state = 466}, + [96] = {.lex_state = 466}, + [97] = {.lex_state = 466}, + [98] = {.lex_state = 466}, + [99] = {.lex_state = 466}, + [100] = {.lex_state = 466}, + [101] = {.lex_state = 466}, + [102] = {.lex_state = 466}, + [103] = {.lex_state = 466}, + [104] = {.lex_state = 466}, + [105] = {.lex_state = 466}, + [106] = {.lex_state = 466}, + [107] = {.lex_state = 466}, + [108] = {.lex_state = 466}, + [109] = {.lex_state = 466}, + [110] = {.lex_state = 466}, + [111] = {.lex_state = 466}, + [112] = {.lex_state = 466}, + [113] = {.lex_state = 466}, + [114] = {.lex_state = 466}, + [115] = {.lex_state = 466}, + [116] = {.lex_state = 466}, + [117] = {.lex_state = 256}, + [118] = {.lex_state = 256}, + [119] = {.lex_state = 466}, + [120] = {.lex_state = 256}, + [121] = {.lex_state = 253}, + [122] = {.lex_state = 253}, + [123] = {.lex_state = 253}, + [124] = {.lex_state = 253}, + [125] = {.lex_state = 253}, + [126] = {.lex_state = 256}, + [127] = {.lex_state = 256}, + [128] = {.lex_state = 466}, + [129] = {.lex_state = 466}, + [130] = {.lex_state = 256}, + [131] = {.lex_state = 256}, + [132] = {.lex_state = 466}, + [133] = {.lex_state = 466}, + [134] = {.lex_state = 256}, + [135] = {.lex_state = 466}, + [136] = {.lex_state = 466}, + [137] = {.lex_state = 466}, + [138] = {.lex_state = 466}, + [139] = {.lex_state = 466}, + [140] = {.lex_state = 466}, + [141] = {.lex_state = 255}, + [142] = {.lex_state = 255}, + [143] = {.lex_state = 255}, + [144] = {.lex_state = 255}, + [145] = {.lex_state = 255}, + [146] = {.lex_state = 255}, + [147] = {.lex_state = 255}, + [148] = {.lex_state = 255}, + [149] = {.lex_state = 255}, + [150] = {.lex_state = 255}, + [151] = {.lex_state = 255}, + [152] = {.lex_state = 255}, + [153] = {.lex_state = 255}, + [154] = {.lex_state = 255}, + [155] = {.lex_state = 255}, + [156] = {.lex_state = 255}, + [157] = {.lex_state = 255}, + [158] = {.lex_state = 255}, + [159] = {.lex_state = 255}, + [160] = {.lex_state = 255}, + [161] = {.lex_state = 257}, + [162] = {.lex_state = 255}, + [163] = {.lex_state = 255}, + [164] = {.lex_state = 257}, + [165] = {.lex_state = 257}, + [166] = {.lex_state = 255}, + [167] = {.lex_state = 255}, + [168] = {.lex_state = 255}, + [169] = {.lex_state = 255}, + [170] = {.lex_state = 255}, + [171] = {.lex_state = 255}, + [172] = {.lex_state = 255}, + [173] = {.lex_state = 255}, + [174] = {.lex_state = 255}, + [175] = {.lex_state = 255}, + [176] = {.lex_state = 255}, + [177] = {.lex_state = 255}, + [178] = {.lex_state = 255}, + [179] = {.lex_state = 244}, + [180] = {.lex_state = 255}, + [181] = {.lex_state = 255}, + [182] = {.lex_state = 255}, + [183] = {.lex_state = 255}, + [184] = {.lex_state = 255}, + [185] = {.lex_state = 255}, + [186] = {.lex_state = 255}, + [187] = {.lex_state = 255}, + [188] = {.lex_state = 244}, + [189] = {.lex_state = 255}, + [190] = {.lex_state = 255}, + [191] = {.lex_state = 255}, + [192] = {.lex_state = 244}, + [193] = {.lex_state = 255}, + [194] = {.lex_state = 255}, + [195] = {.lex_state = 255}, + [196] = {.lex_state = 255}, + [197] = {.lex_state = 255}, + [198] = {.lex_state = 255}, + [199] = {.lex_state = 255}, + [200] = {.lex_state = 255}, + [201] = {.lex_state = 255}, + [202] = {.lex_state = 255}, + [203] = {.lex_state = 255}, + [204] = {.lex_state = 255}, + [205] = {.lex_state = 255}, + [206] = {.lex_state = 255}, + [207] = {.lex_state = 255}, + [208] = {.lex_state = 255}, + [209] = {.lex_state = 255}, + [210] = {.lex_state = 255}, + [211] = {.lex_state = 255}, + [212] = {.lex_state = 255}, + [213] = {.lex_state = 255}, + [214] = {.lex_state = 255}, + [215] = {.lex_state = 255}, + [216] = {.lex_state = 255}, + [217] = {.lex_state = 255}, + [218] = {.lex_state = 255}, + [219] = {.lex_state = 255}, + [220] = {.lex_state = 255}, + [221] = {.lex_state = 255}, + [222] = {.lex_state = 255}, + [223] = {.lex_state = 255}, + [224] = {.lex_state = 255}, + [225] = {.lex_state = 255}, + [226] = {.lex_state = 255}, + [227] = {.lex_state = 255}, + [228] = {.lex_state = 255}, + [229] = {.lex_state = 255}, + [230] = {.lex_state = 255}, + [231] = {.lex_state = 255}, + [232] = {.lex_state = 255}, + [233] = {.lex_state = 255}, + [234] = {.lex_state = 255}, + [235] = {.lex_state = 255}, + [236] = {.lex_state = 255}, + [237] = {.lex_state = 255}, + [238] = {.lex_state = 255}, + [239] = {.lex_state = 255}, + [240] = {.lex_state = 255}, + [241] = {.lex_state = 255}, + [242] = {.lex_state = 255}, + [243] = {.lex_state = 255}, + [244] = {.lex_state = 255}, + [245] = {.lex_state = 258}, + [246] = {.lex_state = 258}, + [247] = {.lex_state = 258}, + [248] = {.lex_state = 258}, + [249] = {.lex_state = 258}, + [250] = {.lex_state = 258}, + [251] = {.lex_state = 246}, + [252] = {.lex_state = 258}, + [253] = {.lex_state = 258}, + [254] = {.lex_state = 258}, + [255] = {.lex_state = 258}, + [256] = {.lex_state = 258}, + [257] = {.lex_state = 258}, + [258] = {.lex_state = 258}, + [259] = {.lex_state = 258}, + [260] = {.lex_state = 258}, + [261] = {.lex_state = 258}, + [262] = {.lex_state = 258}, + [263] = {.lex_state = 258}, + [264] = {.lex_state = 258}, + [265] = {.lex_state = 258}, + [266] = {.lex_state = 258}, + [267] = {.lex_state = 258}, + [268] = {.lex_state = 258}, + [269] = {.lex_state = 258}, + [270] = {.lex_state = 258}, + [271] = {.lex_state = 258}, + [272] = {.lex_state = 258}, + [273] = {.lex_state = 258}, + [274] = {.lex_state = 258}, + [275] = {.lex_state = 258}, + [276] = {.lex_state = 258}, + [277] = {.lex_state = 258}, + [278] = {.lex_state = 247}, + [279] = {.lex_state = 244}, + [280] = {.lex_state = 248}, + [281] = {.lex_state = 244}, + [282] = {.lex_state = 466}, + [283] = {.lex_state = 466}, + [284] = {.lex_state = 466}, + [285] = {.lex_state = 466}, + [286] = {.lex_state = 466}, + [287] = {.lex_state = 246}, + [288] = {.lex_state = 253}, + [289] = {.lex_state = 253}, + [290] = {.lex_state = 466}, + [291] = {.lex_state = 253}, + [292] = {.lex_state = 253}, + [293] = {.lex_state = 255}, + [294] = {.lex_state = 253}, + [295] = {.lex_state = 253}, + [296] = {.lex_state = 257}, + [297] = {.lex_state = 258}, + [298] = {.lex_state = 258}, + [299] = {.lex_state = 255}, + [300] = {.lex_state = 255}, + [301] = {.lex_state = 257}, + [302] = {.lex_state = 258}, + [303] = {.lex_state = 258}, + [304] = {.lex_state = 253}, + [305] = {.lex_state = 258}, + [306] = {.lex_state = 258}, + [307] = {.lex_state = 258}, + [308] = {.lex_state = 258}, + [309] = {.lex_state = 253}, + [310] = {.lex_state = 258}, + [311] = {.lex_state = 258}, + [312] = {.lex_state = 258}, + [313] = {.lex_state = 258}, + [314] = {.lex_state = 258}, + [315] = {.lex_state = 253}, + [316] = {.lex_state = 258}, + [317] = {.lex_state = 258}, + [318] = {.lex_state = 258}, + [319] = {.lex_state = 258}, + [320] = {.lex_state = 258}, + [321] = {.lex_state = 258}, + [322] = {.lex_state = 258}, + [323] = {.lex_state = 258}, + [324] = {.lex_state = 258}, + [325] = {.lex_state = 258}, + [326] = {.lex_state = 258}, + [327] = {.lex_state = 258}, + [328] = {.lex_state = 258}, + [329] = {.lex_state = 258}, + [330] = {.lex_state = 258}, + [331] = {.lex_state = 258}, + [332] = {.lex_state = 258}, + [333] = {.lex_state = 253}, + [334] = {.lex_state = 253}, + [335] = {.lex_state = 253}, + [336] = {.lex_state = 253}, + [337] = {.lex_state = 253}, + [338] = {.lex_state = 253}, + [339] = {.lex_state = 253}, + [340] = {.lex_state = 253}, + [341] = {.lex_state = 253}, + [342] = {.lex_state = 253}, + [343] = {.lex_state = 253}, + [344] = {.lex_state = 253}, + [345] = {.lex_state = 253}, + [346] = {.lex_state = 253}, + [347] = {.lex_state = 253}, + [348] = {.lex_state = 309}, + [349] = {.lex_state = 255}, + [350] = {.lex_state = 253}, + [351] = {.lex_state = 253}, + [352] = {.lex_state = 309}, + [353] = {.lex_state = 253}, + [354] = {.lex_state = 253}, + [355] = {.lex_state = 309}, + [356] = {.lex_state = 309}, + [357] = {.lex_state = 253}, + [358] = {.lex_state = 309}, + [359] = {.lex_state = 309}, + [360] = {.lex_state = 253}, + [361] = {.lex_state = 255}, + [362] = {.lex_state = 253}, + [363] = {.lex_state = 253}, + [364] = {.lex_state = 253}, + [365] = {.lex_state = 309}, + [366] = {.lex_state = 309}, + [367] = {.lex_state = 309}, + [368] = {.lex_state = 309}, + [369] = {.lex_state = 253}, + [370] = {.lex_state = 253}, + [371] = {.lex_state = 253}, + [372] = {.lex_state = 253}, + [373] = {.lex_state = 258}, + [374] = {.lex_state = 309}, + [375] = {.lex_state = 309}, + [376] = {.lex_state = 253}, + [377] = {.lex_state = 309}, + [378] = {.lex_state = 309}, + [379] = {.lex_state = 309}, + [380] = {.lex_state = 253}, + [381] = {.lex_state = 253}, + [382] = {.lex_state = 253}, + [383] = {.lex_state = 253}, + [384] = {.lex_state = 253}, + [385] = {.lex_state = 255}, + [386] = {.lex_state = 253}, + [387] = {.lex_state = 253}, + [388] = {.lex_state = 253}, + [389] = {.lex_state = 255}, + [390] = {.lex_state = 253}, + [391] = {.lex_state = 253}, + [392] = {.lex_state = 253}, + [393] = {.lex_state = 255}, + [394] = {.lex_state = 253}, + [395] = {.lex_state = 253}, + [396] = {.lex_state = 255}, + [397] = {.lex_state = 253}, + [398] = {.lex_state = 309}, + [399] = {.lex_state = 253}, + [400] = {.lex_state = 253}, + [401] = {.lex_state = 253}, + [402] = {.lex_state = 253}, + [403] = {.lex_state = 258}, + [404] = {.lex_state = 253}, + [405] = {.lex_state = 253}, + [406] = {.lex_state = 258}, + [407] = {.lex_state = 253}, + [408] = {.lex_state = 258}, + [409] = {.lex_state = 258}, + [410] = {.lex_state = 253}, + [411] = {.lex_state = 258}, + [412] = {.lex_state = 258}, + [413] = {.lex_state = 258}, + [414] = {.lex_state = 253}, + [415] = {.lex_state = 258}, + [416] = {.lex_state = 466}, + [417] = {.lex_state = 258}, + [418] = {.lex_state = 253}, + [419] = {.lex_state = 253}, + [420] = {.lex_state = 258}, + [421] = {.lex_state = 253}, + [422] = {.lex_state = 256}, + [423] = {.lex_state = 253}, + [424] = {.lex_state = 253}, + [425] = {.lex_state = 253}, + [426] = {.lex_state = 253}, + [427] = {.lex_state = 253}, + [428] = {.lex_state = 253}, + [429] = {.lex_state = 253}, + [430] = {.lex_state = 253}, + [431] = {.lex_state = 253}, + [432] = {.lex_state = 253}, + [433] = {.lex_state = 253}, + [434] = {.lex_state = 253}, + [435] = {.lex_state = 253}, + [436] = {.lex_state = 253}, + [437] = {.lex_state = 253}, + [438] = {.lex_state = 253}, + [439] = {.lex_state = 256}, + [440] = {.lex_state = 253}, + [441] = {.lex_state = 253}, + [442] = {.lex_state = 253}, + [443] = {.lex_state = 253}, + [444] = {.lex_state = 253}, + [445] = {.lex_state = 253}, + [446] = {.lex_state = 253}, + [447] = {.lex_state = 253}, + [448] = {.lex_state = 253}, + [449] = {.lex_state = 253}, + [450] = {.lex_state = 253}, + [451] = {.lex_state = 253}, + [452] = {.lex_state = 253}, + [453] = {.lex_state = 253}, + [454] = {.lex_state = 253}, + [455] = {.lex_state = 253}, + [456] = {.lex_state = 253}, + [457] = {.lex_state = 253}, + [458] = {.lex_state = 253}, + [459] = {.lex_state = 253}, + [460] = {.lex_state = 258}, + [461] = {.lex_state = 253}, + [462] = {.lex_state = 253}, + [463] = {.lex_state = 255}, + [464] = {.lex_state = 253}, + [465] = {.lex_state = 253}, + [466] = {.lex_state = 253}, + [467] = {.lex_state = 253}, + [468] = {.lex_state = 253}, + [469] = {.lex_state = 253}, + [470] = {.lex_state = 253}, + [471] = {.lex_state = 253}, + [472] = {.lex_state = 466}, + [473] = {.lex_state = 253}, + [474] = {.lex_state = 253}, + [475] = {.lex_state = 253}, + [476] = {.lex_state = 253}, + [477] = {.lex_state = 253}, + [478] = {.lex_state = 253}, + [479] = {.lex_state = 258}, + [480] = {.lex_state = 258}, + [481] = {.lex_state = 253}, + [482] = {.lex_state = 253}, + [483] = {.lex_state = 253}, + [484] = {.lex_state = 258}, + [485] = {.lex_state = 258}, + [486] = {.lex_state = 255}, + [487] = {.lex_state = 253}, + [488] = {.lex_state = 253}, + [489] = {.lex_state = 258}, + [490] = {.lex_state = 253}, + [491] = {.lex_state = 253}, + [492] = {.lex_state = 253}, + [493] = {.lex_state = 258}, + [494] = {.lex_state = 258}, + [495] = {.lex_state = 258}, + [496] = {.lex_state = 258}, + [497] = {.lex_state = 258}, + [498] = {.lex_state = 258}, + [499] = {.lex_state = 258}, + [500] = {.lex_state = 258}, + [501] = {.lex_state = 258}, + [502] = {.lex_state = 258}, + [503] = {.lex_state = 258}, + [504] = {.lex_state = 258}, + [505] = {.lex_state = 258}, + [506] = {.lex_state = 258}, + [507] = {.lex_state = 258}, + [508] = {.lex_state = 258}, + [509] = {.lex_state = 258}, + [510] = {.lex_state = 258}, + [511] = {.lex_state = 258}, + [512] = {.lex_state = 258}, + [513] = {.lex_state = 258}, + [514] = {.lex_state = 258}, + [515] = {.lex_state = 258}, + [516] = {.lex_state = 258}, + [517] = {.lex_state = 258}, + [518] = {.lex_state = 258}, + [519] = {.lex_state = 258}, + [520] = {.lex_state = 258}, + [521] = {.lex_state = 258}, + [522] = {.lex_state = 258}, + [523] = {.lex_state = 258}, + [524] = {.lex_state = 258}, + [525] = {.lex_state = 258}, + [526] = {.lex_state = 258}, + [527] = {.lex_state = 258}, + [528] = {.lex_state = 253}, + [529] = {.lex_state = 253}, + [530] = {.lex_state = 253}, + [531] = {.lex_state = 258}, + [532] = {.lex_state = 253}, + [533] = {.lex_state = 253}, + [534] = {.lex_state = 253}, + [535] = {.lex_state = 253}, + [536] = {.lex_state = 253}, + [537] = {.lex_state = 253}, + [538] = {.lex_state = 258}, + [539] = {.lex_state = 253}, + [540] = {.lex_state = 258}, + [541] = {.lex_state = 253}, + [542] = {.lex_state = 253}, + [543] = {.lex_state = 466}, + [544] = {.lex_state = 466}, + [545] = {.lex_state = 256}, + [546] = {.lex_state = 256}, + [547] = {.lex_state = 253}, + [548] = {.lex_state = 256}, + [549] = {.lex_state = 253}, + [550] = {.lex_state = 466}, + [551] = {.lex_state = 253}, + [552] = {.lex_state = 253}, + [553] = {.lex_state = 253}, + [554] = {.lex_state = 253}, + [555] = {.lex_state = 253}, + [556] = {.lex_state = 253}, + [557] = {.lex_state = 466}, + [558] = {.lex_state = 466}, + [559] = {.lex_state = 256}, + [560] = {.lex_state = 253}, + [561] = {.lex_state = 253}, + [562] = {.lex_state = 253}, + [563] = {.lex_state = 253}, + [564] = {.lex_state = 466}, + [565] = {.lex_state = 253}, + [566] = {.lex_state = 253}, + [567] = {.lex_state = 253}, + [568] = {.lex_state = 466}, + [569] = {.lex_state = 256}, + [570] = {.lex_state = 253}, + [571] = {.lex_state = 253}, + [572] = {.lex_state = 253}, + [573] = {.lex_state = 253}, + [574] = {.lex_state = 253}, + [575] = {.lex_state = 309}, + [576] = {.lex_state = 256}, + [577] = {.lex_state = 256}, + [578] = {.lex_state = 253}, + [579] = {.lex_state = 466}, + [580] = {.lex_state = 256}, + [581] = {.lex_state = 256}, + [582] = {.lex_state = 256}, + [583] = {.lex_state = 466}, + [584] = {.lex_state = 466}, + [585] = {.lex_state = 256}, + [586] = {.lex_state = 256}, + [587] = {.lex_state = 256}, + [588] = {.lex_state = 256}, + [589] = {.lex_state = 466}, + [590] = {.lex_state = 466}, + [591] = {.lex_state = 466}, + [592] = {.lex_state = 466}, + [593] = {.lex_state = 466}, + [594] = {.lex_state = 466}, + [595] = {.lex_state = 256}, + [596] = {.lex_state = 466}, + [597] = {.lex_state = 256}, + [598] = {.lex_state = 256}, + [599] = {.lex_state = 256}, + [600] = {.lex_state = 466}, + [601] = {.lex_state = 256}, + [602] = {.lex_state = 466}, + [603] = {.lex_state = 466}, + [604] = {.lex_state = 466}, + [605] = {.lex_state = 466}, + [606] = {.lex_state = 256}, + [607] = {.lex_state = 466}, + [608] = {.lex_state = 466}, + [609] = {.lex_state = 256}, + [610] = {.lex_state = 256}, + [611] = {.lex_state = 256}, + [612] = {.lex_state = 256}, + [613] = {.lex_state = 466}, + [614] = {.lex_state = 256}, + [615] = {.lex_state = 466}, + [616] = {.lex_state = 466}, + [617] = {.lex_state = 466}, + [618] = {.lex_state = 466}, + [619] = {.lex_state = 256}, + [620] = {.lex_state = 466}, + [621] = {.lex_state = 466}, + [622] = {.lex_state = 466}, + [623] = {.lex_state = 466}, + [624] = {.lex_state = 466}, + [625] = {.lex_state = 256}, + [626] = {.lex_state = 256}, + [627] = {.lex_state = 466}, + [628] = {.lex_state = 466}, + [629] = {.lex_state = 256}, + [630] = {.lex_state = 256}, + [631] = {.lex_state = 256}, + [632] = {.lex_state = 466}, + [633] = {.lex_state = 466}, + [634] = {.lex_state = 466}, + [635] = {.lex_state = 466}, + [636] = {.lex_state = 466}, + [637] = {.lex_state = 466}, + [638] = {.lex_state = 466}, + [639] = {.lex_state = 466}, + [640] = {.lex_state = 256}, + [641] = {.lex_state = 466}, + [642] = {.lex_state = 256}, + [643] = {.lex_state = 466}, + [644] = {.lex_state = 466}, + [645] = {.lex_state = 466}, + [646] = {.lex_state = 466}, + [647] = {.lex_state = 256}, + [648] = {.lex_state = 256}, + [649] = {.lex_state = 256}, + [650] = {.lex_state = 256}, + [651] = {.lex_state = 466}, + [652] = {.lex_state = 466}, + [653] = {.lex_state = 256}, + [654] = {.lex_state = 256}, + [655] = {.lex_state = 466}, + [656] = {.lex_state = 256}, + [657] = {.lex_state = 256}, + [658] = {.lex_state = 256}, + [659] = {.lex_state = 466}, + [660] = {.lex_state = 256}, + [661] = {.lex_state = 256}, + [662] = {.lex_state = 256}, + [663] = {.lex_state = 256}, + [664] = {.lex_state = 256}, + [665] = {.lex_state = 256}, + [666] = {.lex_state = 466}, + [667] = {.lex_state = 245}, + [668] = {.lex_state = 466}, + [669] = {.lex_state = 256}, + [670] = {.lex_state = 256}, + [671] = {.lex_state = 466}, + [672] = {.lex_state = 256}, + [673] = {.lex_state = 256}, + [674] = {.lex_state = 256}, + [675] = {.lex_state = 256}, + [676] = {.lex_state = 256}, + [677] = {.lex_state = 256}, + [678] = {.lex_state = 466}, + [679] = {.lex_state = 466}, + [680] = {.lex_state = 466}, + [681] = {.lex_state = 466}, + [682] = {.lex_state = 256}, + [683] = {.lex_state = 256}, + [684] = {.lex_state = 256}, + [685] = {.lex_state = 256}, + [686] = {.lex_state = 256}, + [687] = {.lex_state = 256}, + [688] = {.lex_state = 256}, + [689] = {.lex_state = 256}, + [690] = {.lex_state = 256}, + [691] = {.lex_state = 256}, + [692] = {.lex_state = 256}, + [693] = {.lex_state = 256}, + [694] = {.lex_state = 256}, + [695] = {.lex_state = 256}, + [696] = {.lex_state = 256}, + [697] = {.lex_state = 256}, + [698] = {.lex_state = 466}, + [699] = {.lex_state = 256}, + [700] = {.lex_state = 256}, + [701] = {.lex_state = 256}, + [702] = {.lex_state = 256}, + [703] = {.lex_state = 256}, + [704] = {.lex_state = 256}, + [705] = {.lex_state = 256}, + [706] = {.lex_state = 256}, + [707] = {.lex_state = 466}, + [708] = {.lex_state = 256}, + [709] = {.lex_state = 256}, + [710] = {.lex_state = 256}, + [711] = {.lex_state = 466}, + [712] = {.lex_state = 256}, + [713] = {.lex_state = 256}, + [714] = {.lex_state = 256}, + [715] = {.lex_state = 256}, + [716] = {.lex_state = 256}, + [717] = {.lex_state = 256}, + [718] = {.lex_state = 256}, + [719] = {.lex_state = 256}, + [720] = {.lex_state = 256}, + [721] = {.lex_state = 256}, + [722] = {.lex_state = 256}, + [723] = {.lex_state = 256}, + [724] = {.lex_state = 256}, + [725] = {.lex_state = 256}, + [726] = {.lex_state = 256}, + [727] = {.lex_state = 256}, + [728] = {.lex_state = 256}, + [729] = {.lex_state = 466}, + [730] = {.lex_state = 256}, + [731] = {.lex_state = 466}, + [732] = {.lex_state = 466}, + [733] = {.lex_state = 256}, + [734] = {.lex_state = 256}, + [735] = {.lex_state = 256}, + [736] = {.lex_state = 466}, + [737] = {.lex_state = 256}, + [738] = {.lex_state = 256}, + [739] = {.lex_state = 256}, + [740] = {.lex_state = 245}, + [741] = {.lex_state = 256}, + [742] = {.lex_state = 256}, + [743] = {.lex_state = 256}, + [744] = {.lex_state = 256}, + [745] = {.lex_state = 256}, + [746] = {.lex_state = 256}, + [747] = {.lex_state = 256}, + [748] = {.lex_state = 256}, + [749] = {.lex_state = 256}, + [750] = {.lex_state = 466}, + [751] = {.lex_state = 466}, + [752] = {.lex_state = 466}, + [753] = {.lex_state = 466}, + [754] = {.lex_state = 256}, + [755] = {.lex_state = 256}, + [756] = {.lex_state = 466}, + [757] = {.lex_state = 466}, + [758] = {.lex_state = 466}, + [759] = {.lex_state = 466}, + [760] = {.lex_state = 466}, + [761] = {.lex_state = 466}, + [762] = {.lex_state = 466}, + [763] = {.lex_state = 466}, + [764] = {.lex_state = 466}, + [765] = {.lex_state = 466}, + [766] = {.lex_state = 466}, + [767] = {.lex_state = 466}, + [768] = {.lex_state = 466}, + [769] = {.lex_state = 466}, + [770] = {.lex_state = 466}, + [771] = {.lex_state = 466}, + [772] = {.lex_state = 466}, + [773] = {.lex_state = 466}, + [774] = {.lex_state = 466}, + [775] = {.lex_state = 466}, + [776] = {.lex_state = 466}, + [777] = {.lex_state = 466}, + [778] = {.lex_state = 466}, + [779] = {.lex_state = 466}, + [780] = {.lex_state = 466}, + [781] = {.lex_state = 256}, + [782] = {.lex_state = 466}, + [783] = {.lex_state = 466}, + [784] = {.lex_state = 256}, + [785] = {.lex_state = 466}, + [786] = {.lex_state = 256}, + [787] = {.lex_state = 466}, + [788] = {.lex_state = 256}, + [789] = {.lex_state = 466}, + [790] = {.lex_state = 256}, + [791] = {.lex_state = 256}, + [792] = {.lex_state = 466}, + [793] = {.lex_state = 256}, + [794] = {.lex_state = 256}, + [795] = {.lex_state = 256}, + [796] = {.lex_state = 256}, + [797] = {.lex_state = 256}, + [798] = {.lex_state = 256}, + [799] = {.lex_state = 466}, + [800] = {.lex_state = 256}, + [801] = {.lex_state = 256}, + [802] = {.lex_state = 256}, + [803] = {.lex_state = 256}, + [804] = {.lex_state = 466}, + [805] = {.lex_state = 466}, + [806] = {.lex_state = 466}, + [807] = {.lex_state = 466}, + [808] = {.lex_state = 466}, + [809] = {.lex_state = 466}, + [810] = {.lex_state = 466}, + [811] = {.lex_state = 466}, + [812] = {.lex_state = 466}, + [813] = {.lex_state = 466}, + [814] = {.lex_state = 466}, + [815] = {.lex_state = 466}, + [816] = {.lex_state = 466}, + [817] = {.lex_state = 466}, + [818] = {.lex_state = 466}, + [819] = {.lex_state = 466}, + [820] = {.lex_state = 466}, + [821] = {.lex_state = 466}, + [822] = {.lex_state = 466}, + [823] = {.lex_state = 466}, + [824] = {.lex_state = 466}, + [825] = {.lex_state = 466}, + [826] = {.lex_state = 466}, + [827] = {.lex_state = 466}, + [828] = {.lex_state = 466}, + [829] = {.lex_state = 466}, + [830] = {.lex_state = 466}, + [831] = {.lex_state = 466}, + [832] = {.lex_state = 466}, + [833] = {.lex_state = 466}, + [834] = {.lex_state = 466}, + [835] = {.lex_state = 466}, + [836] = {.lex_state = 466}, + [837] = {.lex_state = 466}, + [838] = {.lex_state = 466}, + [839] = {.lex_state = 466}, + [840] = {.lex_state = 466}, + [841] = {.lex_state = 466}, + [842] = {.lex_state = 245}, + [843] = {.lex_state = 466}, + [844] = {.lex_state = 466}, + [845] = {.lex_state = 466}, + [846] = {.lex_state = 466}, + [847] = {.lex_state = 466}, + [848] = {.lex_state = 466}, + [849] = {.lex_state = 466}, + [850] = {.lex_state = 466}, + [851] = {.lex_state = 466}, + [852] = {.lex_state = 466}, + [853] = {.lex_state = 466}, + [854] = {.lex_state = 466}, + [855] = {.lex_state = 466}, + [856] = {.lex_state = 466}, + [857] = {.lex_state = 466}, + [858] = {.lex_state = 466}, + [859] = {.lex_state = 466}, + [860] = {.lex_state = 466}, + [861] = {.lex_state = 466}, + [862] = {.lex_state = 466}, + [863] = {.lex_state = 466}, + [864] = {.lex_state = 466}, + [865] = {.lex_state = 466}, + [866] = {.lex_state = 466}, + [867] = {.lex_state = 466}, + [868] = {.lex_state = 466}, + [869] = {.lex_state = 466}, + [870] = {.lex_state = 466}, + [871] = {.lex_state = 466}, + [872] = {.lex_state = 466}, + [873] = {.lex_state = 466}, + [874] = {.lex_state = 466}, + [875] = {.lex_state = 466}, + [876] = {.lex_state = 466}, + [877] = {.lex_state = 466}, + [878] = {.lex_state = 466}, + [879] = {.lex_state = 466}, + [880] = {.lex_state = 466}, + [881] = {.lex_state = 466}, + [882] = {.lex_state = 466}, + [883] = {.lex_state = 466}, + [884] = {.lex_state = 466}, + [885] = {.lex_state = 466}, + [886] = {.lex_state = 466}, + [887] = {.lex_state = 466}, + [888] = {.lex_state = 466}, + [889] = {.lex_state = 466}, + [890] = {.lex_state = 466}, + [891] = {.lex_state = 466}, + [892] = {.lex_state = 466}, + [893] = {.lex_state = 466}, + [894] = {.lex_state = 466}, + [895] = {.lex_state = 466}, + [896] = {.lex_state = 362}, + [897] = {.lex_state = 466}, + [898] = {.lex_state = 256}, + [899] = {.lex_state = 466}, + [900] = {.lex_state = 466}, + [901] = {.lex_state = 362}, + [902] = {.lex_state = 466}, + [903] = {.lex_state = 466}, + [904] = {.lex_state = 466}, + [905] = {.lex_state = 466}, + [906] = {.lex_state = 466}, + [907] = {.lex_state = 466}, + [908] = {.lex_state = 466}, + [909] = {.lex_state = 362}, + [910] = {.lex_state = 256}, + [911] = {.lex_state = 466}, + [912] = {.lex_state = 466}, + [913] = {.lex_state = 310}, + [914] = {.lex_state = 466}, + [915] = {.lex_state = 466}, + [916] = {.lex_state = 466}, + [917] = {.lex_state = 466}, + [918] = {.lex_state = 466}, + [919] = {.lex_state = 362}, + [920] = {.lex_state = 466}, + [921] = {.lex_state = 466}, + [922] = {.lex_state = 466}, + [923] = {.lex_state = 466}, + [924] = {.lex_state = 362}, + [925] = {.lex_state = 466}, + [926] = {.lex_state = 466}, + [927] = {.lex_state = 362}, + [928] = {.lex_state = 466}, + [929] = {.lex_state = 466}, + [930] = {.lex_state = 466}, + [931] = {.lex_state = 466}, + [932] = {.lex_state = 362}, + [933] = {.lex_state = 466}, + [934] = {.lex_state = 256}, + [935] = {.lex_state = 256}, + [936] = {.lex_state = 362}, + [937] = {.lex_state = 256}, + [938] = {.lex_state = 466}, + [939] = {.lex_state = 466}, + [940] = {.lex_state = 466}, + [941] = {.lex_state = 362}, + [942] = {.lex_state = 466}, + [943] = {.lex_state = 362}, + [944] = {.lex_state = 466}, + [945] = {.lex_state = 466}, + [946] = {.lex_state = 466}, + [947] = {.lex_state = 466}, + [948] = {.lex_state = 362}, + [949] = {.lex_state = 466}, + [950] = {.lex_state = 466}, + [951] = {.lex_state = 362}, + [952] = {.lex_state = 362}, + [953] = {.lex_state = 310}, + [954] = {.lex_state = 466}, + [955] = {.lex_state = 362}, + [956] = {.lex_state = 466}, + [957] = {.lex_state = 466}, + [958] = {.lex_state = 466}, + [959] = {.lex_state = 362}, + [960] = {.lex_state = 466}, + [961] = {.lex_state = 362}, + [962] = {.lex_state = 256}, + [963] = {.lex_state = 256}, + [964] = {.lex_state = 362}, + [965] = {.lex_state = 256}, + [966] = {.lex_state = 256}, + [967] = {.lex_state = 362}, + [968] = {.lex_state = 466}, + [969] = {.lex_state = 362}, + [970] = {.lex_state = 362}, + [971] = {.lex_state = 310}, + [972] = {.lex_state = 362}, + [973] = {.lex_state = 362}, + [974] = {.lex_state = 466}, + [975] = {.lex_state = 362}, + [976] = {.lex_state = 362}, + [977] = {.lex_state = 466}, + [978] = {.lex_state = 362}, + [979] = {.lex_state = 466}, + [980] = {.lex_state = 466}, + [981] = {.lex_state = 466}, + [982] = {.lex_state = 466}, + [983] = {.lex_state = 362}, + [984] = {.lex_state = 466}, + [985] = {.lex_state = 362}, + [986] = {.lex_state = 466}, + [987] = {.lex_state = 362}, + [988] = {.lex_state = 466}, + [989] = {.lex_state = 362}, + [990] = {.lex_state = 466}, + [991] = {.lex_state = 466}, + [992] = {.lex_state = 362}, + [993] = {.lex_state = 466}, + [994] = {.lex_state = 362}, + [995] = {.lex_state = 466}, + [996] = {.lex_state = 256}, + [997] = {.lex_state = 256}, + [998] = {.lex_state = 256}, + [999] = {.lex_state = 466}, + [1000] = {.lex_state = 466}, + [1001] = {.lex_state = 466}, + [1002] = {.lex_state = 466}, + [1003] = {.lex_state = 466}, + [1004] = {.lex_state = 466}, + [1005] = {.lex_state = 466}, + [1006] = {.lex_state = 466}, + [1007] = {.lex_state = 466}, + [1008] = {.lex_state = 362}, + [1009] = {.lex_state = 466}, + [1010] = {.lex_state = 466}, + [1011] = {.lex_state = 256}, + [1012] = {.lex_state = 256}, + [1013] = {.lex_state = 256}, + [1014] = {.lex_state = 362}, + [1015] = {.lex_state = 466}, + [1016] = {.lex_state = 466}, + [1017] = {.lex_state = 466}, + [1018] = {.lex_state = 466}, + [1019] = {.lex_state = 466}, + [1020] = {.lex_state = 466}, + [1021] = {.lex_state = 466}, + [1022] = {.lex_state = 466}, + [1023] = {.lex_state = 256}, + [1024] = {.lex_state = 466}, + [1025] = {.lex_state = 466}, + [1026] = {.lex_state = 466}, + [1027] = {.lex_state = 466}, + [1028] = {.lex_state = 466}, + [1029] = {.lex_state = 466}, + [1030] = {.lex_state = 256}, + [1031] = {.lex_state = 466}, + [1032] = {.lex_state = 256}, + [1033] = {.lex_state = 466}, + [1034] = {.lex_state = 256}, + [1035] = {.lex_state = 466}, + [1036] = {.lex_state = 362}, + [1037] = {.lex_state = 466}, + [1038] = {.lex_state = 362}, + [1039] = {.lex_state = 466}, + [1040] = {.lex_state = 466}, + [1041] = {.lex_state = 466}, + [1042] = {.lex_state = 466}, + [1043] = {.lex_state = 466}, + [1044] = {.lex_state = 466}, + [1045] = {.lex_state = 466}, + [1046] = {.lex_state = 466}, + [1047] = {.lex_state = 256}, + [1048] = {.lex_state = 466}, + [1049] = {.lex_state = 362}, + [1050] = {.lex_state = 466}, + [1051] = {.lex_state = 256}, + [1052] = {.lex_state = 362}, + [1053] = {.lex_state = 245}, + [1054] = {.lex_state = 245}, + [1055] = {.lex_state = 249}, + [1056] = {.lex_state = 250}, + [1057] = {.lex_state = 245}, + [1058] = {.lex_state = 258}, + [1059] = {.lex_state = 258}, + [1060] = {.lex_state = 258}, + [1061] = {.lex_state = 258}, + [1062] = {.lex_state = 258}, + [1063] = {.lex_state = 258}, + [1064] = {.lex_state = 258}, + [1065] = {.lex_state = 258}, + [1066] = {.lex_state = 258}, + [1067] = {.lex_state = 258}, + [1068] = {.lex_state = 258}, + [1069] = {.lex_state = 258}, + [1070] = {.lex_state = 258}, + [1071] = {.lex_state = 258}, + [1072] = {.lex_state = 258}, + [1073] = {.lex_state = 258}, + [1074] = {.lex_state = 251}, + [1075] = {.lex_state = 251}, + [1076] = {.lex_state = 258}, + [1077] = {.lex_state = 258}, + [1078] = {.lex_state = 258}, + [1079] = {.lex_state = 258}, + [1080] = {.lex_state = 258}, + [1081] = {.lex_state = 258}, + [1082] = {.lex_state = 258}, + [1083] = {.lex_state = 258}, + [1084] = {.lex_state = 258}, + [1085] = {.lex_state = 258}, + [1086] = {.lex_state = 258}, + [1087] = {.lex_state = 258}, + [1088] = {.lex_state = 258}, + [1089] = {.lex_state = 258}, + [1090] = {.lex_state = 258}, + [1091] = {.lex_state = 258}, + [1092] = {.lex_state = 258}, + [1093] = {.lex_state = 258}, + [1094] = {.lex_state = 258}, + [1095] = {.lex_state = 258}, + [1096] = {.lex_state = 258}, + [1097] = {.lex_state = 258}, + [1098] = {.lex_state = 258}, + [1099] = {.lex_state = 258}, + [1100] = {.lex_state = 258}, + [1101] = {.lex_state = 258}, + [1102] = {.lex_state = 258}, + [1103] = {.lex_state = 258}, + [1104] = {.lex_state = 258}, + [1105] = {.lex_state = 258}, + [1106] = {.lex_state = 258}, + [1107] = {.lex_state = 258}, + [1108] = {.lex_state = 258}, + [1109] = {.lex_state = 258}, + [1110] = {.lex_state = 258}, + [1111] = {.lex_state = 258}, + [1112] = {.lex_state = 258}, + [1113] = {.lex_state = 258}, + [1114] = {.lex_state = 258}, + [1115] = {.lex_state = 258}, + [1116] = {.lex_state = 258}, + [1117] = {.lex_state = 258}, + [1118] = {.lex_state = 258}, + [1119] = {.lex_state = 258}, + [1120] = {.lex_state = 258}, + [1121] = {.lex_state = 258}, + [1122] = {.lex_state = 258}, + [1123] = {.lex_state = 258}, + [1124] = {.lex_state = 258}, + [1125] = {.lex_state = 258}, + [1126] = {.lex_state = 258}, + [1127] = {.lex_state = 258}, + [1128] = {.lex_state = 258}, + [1129] = {.lex_state = 258}, + [1130] = {.lex_state = 258}, + [1131] = {.lex_state = 309}, + [1132] = {.lex_state = 309}, + [1133] = {.lex_state = 309}, + [1134] = {.lex_state = 309}, + [1135] = {.lex_state = 309}, + [1136] = {.lex_state = 309}, + [1137] = {.lex_state = 309}, + [1138] = {.lex_state = 257}, + [1139] = {.lex_state = 257}, + [1140] = {.lex_state = 309}, + [1141] = {.lex_state = 309}, + [1142] = {.lex_state = 309}, + [1143] = {.lex_state = 309}, + [1144] = {.lex_state = 258}, + [1145] = {.lex_state = 309}, + [1146] = {.lex_state = 309}, + [1147] = {.lex_state = 309}, + [1148] = {.lex_state = 466}, + [1149] = {.lex_state = 466}, + [1150] = {.lex_state = 257}, + [1151] = {.lex_state = 257}, + [1152] = {.lex_state = 466}, + [1153] = {.lex_state = 309}, + [1154] = {.lex_state = 273}, + [1155] = {.lex_state = 273}, + [1156] = {.lex_state = 255}, + [1157] = {.lex_state = 255}, + [1158] = {.lex_state = 259}, + [1159] = {.lex_state = 258}, + [1160] = {.lex_state = 273}, + [1161] = {.lex_state = 259}, + [1162] = {.lex_state = 259}, + [1163] = {.lex_state = 258}, + [1164] = {.lex_state = 273}, + [1165] = {.lex_state = 258}, + [1166] = {.lex_state = 259}, + [1167] = {.lex_state = 259}, + [1168] = {.lex_state = 258}, + [1169] = {.lex_state = 259}, + [1170] = {.lex_state = 259}, + [1171] = {.lex_state = 259}, + [1172] = {.lex_state = 258}, + [1173] = {.lex_state = 259}, + [1174] = {.lex_state = 259}, + [1175] = {.lex_state = 259}, + [1176] = {.lex_state = 259}, + [1177] = {.lex_state = 259}, + [1178] = {.lex_state = 259}, + [1179] = {.lex_state = 259}, + [1180] = {.lex_state = 259}, + [1181] = {.lex_state = 273}, + [1182] = {.lex_state = 259}, + [1183] = {.lex_state = 259}, + [1184] = {.lex_state = 259}, + [1185] = {.lex_state = 273}, + [1186] = {.lex_state = 258}, + [1187] = {.lex_state = 259}, + [1188] = {.lex_state = 273}, + [1189] = {.lex_state = 258}, + [1190] = {.lex_state = 273}, + [1191] = {.lex_state = 273}, + [1192] = {.lex_state = 259}, + [1193] = {.lex_state = 258}, + [1194] = {.lex_state = 259}, + [1195] = {.lex_state = 259}, + [1196] = {.lex_state = 258}, + [1197] = {.lex_state = 273}, + [1198] = {.lex_state = 259}, + [1199] = {.lex_state = 259}, + [1200] = {.lex_state = 259}, + [1201] = {.lex_state = 259}, + [1202] = {.lex_state = 259}, + [1203] = {.lex_state = 259}, + [1204] = {.lex_state = 259}, + [1205] = {.lex_state = 273}, + [1206] = {.lex_state = 259}, + [1207] = {.lex_state = 259}, + [1208] = {.lex_state = 273}, + [1209] = {.lex_state = 258}, + [1210] = {.lex_state = 258}, + [1211] = {.lex_state = 255}, + [1212] = {.lex_state = 258}, + [1213] = {.lex_state = 258}, + [1214] = {.lex_state = 273}, + [1215] = {.lex_state = 258}, + [1216] = {.lex_state = 258}, + [1217] = {.lex_state = 258}, + [1218] = {.lex_state = 258}, + [1219] = {.lex_state = 258}, + [1220] = {.lex_state = 258}, + [1221] = {.lex_state = 258}, + [1222] = {.lex_state = 258}, + [1223] = {.lex_state = 258}, + [1224] = {.lex_state = 258}, + [1225] = {.lex_state = 255}, + [1226] = {.lex_state = 255}, + [1227] = {.lex_state = 258}, + [1228] = {.lex_state = 258}, + [1229] = {.lex_state = 258}, + [1230] = {.lex_state = 258}, + [1231] = {.lex_state = 258}, + [1232] = {.lex_state = 255}, + [1233] = {.lex_state = 258}, + [1234] = {.lex_state = 258}, + [1235] = {.lex_state = 258}, + [1236] = {.lex_state = 258}, + [1237] = {.lex_state = 255}, + [1238] = {.lex_state = 258}, + [1239] = {.lex_state = 258}, + [1240] = {.lex_state = 258}, + [1241] = {.lex_state = 255}, + [1242] = {.lex_state = 258}, + [1243] = {.lex_state = 258}, + [1244] = {.lex_state = 273}, + [1245] = {.lex_state = 258}, + [1246] = {.lex_state = 258}, + [1247] = {.lex_state = 258}, + [1248] = {.lex_state = 273}, + [1249] = {.lex_state = 258}, + [1250] = {.lex_state = 255}, + [1251] = {.lex_state = 258}, + [1252] = {.lex_state = 258}, + [1253] = {.lex_state = 258}, + [1254] = {.lex_state = 258}, + [1255] = {.lex_state = 258}, + [1256] = {.lex_state = 258}, + [1257] = {.lex_state = 258}, + [1258] = {.lex_state = 255}, + [1259] = {.lex_state = 255}, + [1260] = {.lex_state = 258}, + [1261] = {.lex_state = 255}, + [1262] = {.lex_state = 255}, + [1263] = {.lex_state = 255}, + [1264] = {.lex_state = 255}, + [1265] = {.lex_state = 255}, + [1266] = {.lex_state = 255}, + [1267] = {.lex_state = 255}, + [1268] = {.lex_state = 255}, + [1269] = {.lex_state = 255}, + [1270] = {.lex_state = 255}, + [1271] = {.lex_state = 255}, + [1272] = {.lex_state = 255}, + [1273] = {.lex_state = 255}, + [1274] = {.lex_state = 255}, + [1275] = {.lex_state = 255}, + [1276] = {.lex_state = 255}, + [1277] = {.lex_state = 255}, + [1278] = {.lex_state = 255}, + [1279] = {.lex_state = 255}, + [1280] = {.lex_state = 255}, + [1281] = {.lex_state = 255}, + [1282] = {.lex_state = 255}, + [1283] = {.lex_state = 255}, + [1284] = {.lex_state = 255}, + [1285] = {.lex_state = 255}, + [1286] = {.lex_state = 258}, + [1287] = {.lex_state = 255}, + [1288] = {.lex_state = 255}, + [1289] = {.lex_state = 255}, + [1290] = {.lex_state = 258}, + [1291] = {.lex_state = 255}, + [1292] = {.lex_state = 255}, + [1293] = {.lex_state = 255}, + [1294] = {.lex_state = 255}, + [1295] = {.lex_state = 255}, + [1296] = {.lex_state = 255}, + [1297] = {.lex_state = 255}, + [1298] = {.lex_state = 255}, + [1299] = {.lex_state = 255}, + [1300] = {.lex_state = 255}, + [1301] = {.lex_state = 255}, + [1302] = {.lex_state = 255}, + [1303] = {.lex_state = 255}, + [1304] = {.lex_state = 288}, + [1305] = {.lex_state = 288}, + [1306] = {.lex_state = 309}, + [1307] = {.lex_state = 309}, + [1308] = {.lex_state = 309}, + [1309] = {.lex_state = 258}, + [1310] = {.lex_state = 258}, + [1311] = {.lex_state = 258}, + [1312] = {.lex_state = 258}, + [1313] = {.lex_state = 258}, + [1314] = {.lex_state = 258}, + [1315] = {.lex_state = 258}, + [1316] = {.lex_state = 258}, + [1317] = {.lex_state = 258}, + [1318] = {.lex_state = 258}, + [1319] = {.lex_state = 258}, + [1320] = {.lex_state = 258}, + [1321] = {.lex_state = 258}, + [1322] = {.lex_state = 258}, + [1323] = {.lex_state = 258}, + [1324] = {.lex_state = 258}, + [1325] = {.lex_state = 258}, + [1326] = {.lex_state = 258}, + [1327] = {.lex_state = 258}, + [1328] = {.lex_state = 258}, + [1329] = {.lex_state = 258}, + [1330] = {.lex_state = 258}, + [1331] = {.lex_state = 258}, + [1332] = {.lex_state = 258}, + [1333] = {.lex_state = 258}, + [1334] = {.lex_state = 258}, + [1335] = {.lex_state = 258}, + [1336] = {.lex_state = 258}, + [1337] = {.lex_state = 258}, + [1338] = {.lex_state = 258}, + [1339] = {.lex_state = 267}, + [1340] = {.lex_state = 258}, + [1341] = {.lex_state = 258}, + [1342] = {.lex_state = 258}, + [1343] = {.lex_state = 258}, + [1344] = {.lex_state = 258}, + [1345] = {.lex_state = 273}, + [1346] = {.lex_state = 258}, + [1347] = {.lex_state = 258}, + [1348] = {.lex_state = 258}, + [1349] = {.lex_state = 258}, + [1350] = {.lex_state = 288}, + [1351] = {.lex_state = 258}, + [1352] = {.lex_state = 258}, + [1353] = {.lex_state = 288}, + [1354] = {.lex_state = 258}, + [1355] = {.lex_state = 258}, + [1356] = {.lex_state = 258}, + [1357] = {.lex_state = 258}, + [1358] = {.lex_state = 258}, + [1359] = {.lex_state = 258}, + [1360] = {.lex_state = 258}, + [1361] = {.lex_state = 258}, + [1362] = {.lex_state = 258}, + [1363] = {.lex_state = 258}, + [1364] = {.lex_state = 258}, + [1365] = {.lex_state = 258}, + [1366] = {.lex_state = 258}, + [1367] = {.lex_state = 258}, + [1368] = {.lex_state = 258}, + [1369] = {.lex_state = 258}, + [1370] = {.lex_state = 258}, + [1371] = {.lex_state = 258}, + [1372] = {.lex_state = 258}, + [1373] = {.lex_state = 258}, + [1374] = {.lex_state = 258}, + [1375] = {.lex_state = 258}, + [1376] = {.lex_state = 258}, + [1377] = {.lex_state = 258}, + [1378] = {.lex_state = 258}, + [1379] = {.lex_state = 258}, + [1380] = {.lex_state = 258}, + [1381] = {.lex_state = 258}, + [1382] = {.lex_state = 258}, + [1383] = {.lex_state = 258}, + [1384] = {.lex_state = 258}, + [1385] = {.lex_state = 258}, + [1386] = {.lex_state = 258}, + [1387] = {.lex_state = 258}, + [1388] = {.lex_state = 258}, + [1389] = {.lex_state = 258}, + [1390] = {.lex_state = 258}, + [1391] = {.lex_state = 258}, + [1392] = {.lex_state = 258}, + [1393] = {.lex_state = 258}, + [1394] = {.lex_state = 258}, + [1395] = {.lex_state = 258}, + [1396] = {.lex_state = 258}, + [1397] = {.lex_state = 258}, + [1398] = {.lex_state = 258}, + [1399] = {.lex_state = 258}, + [1400] = {.lex_state = 258}, + [1401] = {.lex_state = 258}, + [1402] = {.lex_state = 258}, + [1403] = {.lex_state = 258}, + [1404] = {.lex_state = 258}, + [1405] = {.lex_state = 258}, + [1406] = {.lex_state = 258}, + [1407] = {.lex_state = 258}, + [1408] = {.lex_state = 258}, + [1409] = {.lex_state = 258}, + [1410] = {.lex_state = 258}, + [1411] = {.lex_state = 258}, + [1412] = {.lex_state = 258}, + [1413] = {.lex_state = 258}, + [1414] = {.lex_state = 258}, + [1415] = {.lex_state = 258}, + [1416] = {.lex_state = 258}, + [1417] = {.lex_state = 258}, + [1418] = {.lex_state = 258}, + [1419] = {.lex_state = 258}, + [1420] = {.lex_state = 258}, + [1421] = {.lex_state = 258}, + [1422] = {.lex_state = 258}, + [1423] = {.lex_state = 258}, + [1424] = {.lex_state = 258}, + [1425] = {.lex_state = 258}, + [1426] = {.lex_state = 258}, + [1427] = {.lex_state = 258}, + [1428] = {.lex_state = 258}, + [1429] = {.lex_state = 258}, + [1430] = {.lex_state = 258}, + [1431] = {.lex_state = 258}, + [1432] = {.lex_state = 258}, + [1433] = {.lex_state = 258}, + [1434] = {.lex_state = 258}, + [1435] = {.lex_state = 258}, + [1436] = {.lex_state = 258}, + [1437] = {.lex_state = 258}, + [1438] = {.lex_state = 258}, + [1439] = {.lex_state = 258}, + [1440] = {.lex_state = 258}, + [1441] = {.lex_state = 258}, + [1442] = {.lex_state = 258}, + [1443] = {.lex_state = 258}, + [1444] = {.lex_state = 258}, + [1445] = {.lex_state = 258}, + [1446] = {.lex_state = 258}, + [1447] = {.lex_state = 258}, + [1448] = {.lex_state = 258}, + [1449] = {.lex_state = 258}, + [1450] = {.lex_state = 258}, + [1451] = {.lex_state = 258}, + [1452] = {.lex_state = 258}, + [1453] = {.lex_state = 258}, + [1454] = {.lex_state = 258}, + [1455] = {.lex_state = 258}, + [1456] = {.lex_state = 258}, + [1457] = {.lex_state = 258}, + [1458] = {.lex_state = 258}, + [1459] = {.lex_state = 258}, + [1460] = {.lex_state = 258}, + [1461] = {.lex_state = 258}, + [1462] = {.lex_state = 258}, + [1463] = {.lex_state = 258}, + [1464] = {.lex_state = 258}, + [1465] = {.lex_state = 258}, + [1466] = {.lex_state = 258}, + [1467] = {.lex_state = 258}, + [1468] = {.lex_state = 258}, + [1469] = {.lex_state = 258}, + [1470] = {.lex_state = 258}, + [1471] = {.lex_state = 258}, + [1472] = {.lex_state = 258}, + [1473] = {.lex_state = 258}, + [1474] = {.lex_state = 258}, + [1475] = {.lex_state = 258}, + [1476] = {.lex_state = 258}, + [1477] = {.lex_state = 258}, + [1478] = {.lex_state = 258}, + [1479] = {.lex_state = 258}, + [1480] = {.lex_state = 258}, + [1481] = {.lex_state = 258}, + [1482] = {.lex_state = 258}, + [1483] = {.lex_state = 258}, + [1484] = {.lex_state = 258}, + [1485] = {.lex_state = 258}, + [1486] = {.lex_state = 258}, + [1487] = {.lex_state = 258}, + [1488] = {.lex_state = 258}, + [1489] = {.lex_state = 258}, + [1490] = {.lex_state = 258}, + [1491] = {.lex_state = 258}, + [1492] = {.lex_state = 258}, + [1493] = {.lex_state = 258}, + [1494] = {.lex_state = 258}, + [1495] = {.lex_state = 258}, + [1496] = {.lex_state = 258}, + [1497] = {.lex_state = 258}, + [1498] = {.lex_state = 258}, + [1499] = {.lex_state = 258}, + [1500] = {.lex_state = 258}, + [1501] = {.lex_state = 258}, + [1502] = {.lex_state = 258}, + [1503] = {.lex_state = 258}, + [1504] = {.lex_state = 258}, + [1505] = {.lex_state = 258}, + [1506] = {.lex_state = 258}, + [1507] = {.lex_state = 258}, + [1508] = {.lex_state = 258}, + [1509] = {.lex_state = 258}, + [1510] = {.lex_state = 258}, + [1511] = {.lex_state = 258}, + [1512] = {.lex_state = 258}, + [1513] = {.lex_state = 258}, + [1514] = {.lex_state = 258}, + [1515] = {.lex_state = 258}, + [1516] = {.lex_state = 258}, + [1517] = {.lex_state = 258}, + [1518] = {.lex_state = 258}, + [1519] = {.lex_state = 258}, + [1520] = {.lex_state = 258}, + [1521] = {.lex_state = 291}, + [1522] = {.lex_state = 258}, + [1523] = {.lex_state = 258}, + [1524] = {.lex_state = 258}, + [1525] = {.lex_state = 258}, + [1526] = {.lex_state = 258}, + [1527] = {.lex_state = 258}, + [1528] = {.lex_state = 258}, + [1529] = {.lex_state = 258}, + [1530] = {.lex_state = 258}, + [1531] = {.lex_state = 258}, + [1532] = {.lex_state = 258}, + [1533] = {.lex_state = 258}, + [1534] = {.lex_state = 258}, + [1535] = {.lex_state = 258}, + [1536] = {.lex_state = 258}, + [1537] = {.lex_state = 291}, + [1538] = {.lex_state = 258}, + [1539] = {.lex_state = 258}, + [1540] = {.lex_state = 258}, + [1541] = {.lex_state = 258}, + [1542] = {.lex_state = 258}, + [1543] = {.lex_state = 258}, + [1544] = {.lex_state = 258}, + [1545] = {.lex_state = 258}, + [1546] = {.lex_state = 258}, + [1547] = {.lex_state = 258}, + [1548] = {.lex_state = 258}, + [1549] = {.lex_state = 258}, + [1550] = {.lex_state = 258}, + [1551] = {.lex_state = 258}, + [1552] = {.lex_state = 258}, + [1553] = {.lex_state = 258}, + [1554] = {.lex_state = 258}, + [1555] = {.lex_state = 258}, + [1556] = {.lex_state = 258}, + [1557] = {.lex_state = 258}, + [1558] = {.lex_state = 258}, + [1559] = {.lex_state = 258}, + [1560] = {.lex_state = 258}, + [1561] = {.lex_state = 258}, + [1562] = {.lex_state = 258}, + [1563] = {.lex_state = 258}, + [1564] = {.lex_state = 258}, + [1565] = {.lex_state = 258}, + [1566] = {.lex_state = 258}, + [1567] = {.lex_state = 258}, + [1568] = {.lex_state = 258}, + [1569] = {.lex_state = 258}, + [1570] = {.lex_state = 258}, + [1571] = {.lex_state = 258}, + [1572] = {.lex_state = 258}, + [1573] = {.lex_state = 258}, + [1574] = {.lex_state = 258}, + [1575] = {.lex_state = 258}, + [1576] = {.lex_state = 258}, + [1577] = {.lex_state = 258}, + [1578] = {.lex_state = 258}, + [1579] = {.lex_state = 258}, + [1580] = {.lex_state = 258}, + [1581] = {.lex_state = 258}, + [1582] = {.lex_state = 258}, + [1583] = {.lex_state = 258}, + [1584] = {.lex_state = 258}, + [1585] = {.lex_state = 258}, + [1586] = {.lex_state = 258}, + [1587] = {.lex_state = 258}, + [1588] = {.lex_state = 258}, + [1589] = {.lex_state = 258}, + [1590] = {.lex_state = 258}, + [1591] = {.lex_state = 258}, + [1592] = {.lex_state = 258}, + [1593] = {.lex_state = 258}, + [1594] = {.lex_state = 258}, + [1595] = {.lex_state = 258}, + [1596] = {.lex_state = 258}, + [1597] = {.lex_state = 258}, + [1598] = {.lex_state = 258}, + [1599] = {.lex_state = 258}, + [1600] = {.lex_state = 258}, + [1601] = {.lex_state = 258}, + [1602] = {.lex_state = 258}, + [1603] = {.lex_state = 258}, + [1604] = {.lex_state = 258}, + [1605] = {.lex_state = 258}, + [1606] = {.lex_state = 258}, + [1607] = {.lex_state = 258}, + [1608] = {.lex_state = 258}, + [1609] = {.lex_state = 258}, + [1610] = {.lex_state = 258}, + [1611] = {.lex_state = 258}, + [1612] = {.lex_state = 258}, + [1613] = {.lex_state = 258}, + [1614] = {.lex_state = 258}, + [1615] = {.lex_state = 258}, + [1616] = {.lex_state = 258}, + [1617] = {.lex_state = 258}, + [1618] = {.lex_state = 258}, + [1619] = {.lex_state = 258}, + [1620] = {.lex_state = 258}, + [1621] = {.lex_state = 258}, + [1622] = {.lex_state = 258}, + [1623] = {.lex_state = 258}, + [1624] = {.lex_state = 258}, + [1625] = {.lex_state = 258}, + [1626] = {.lex_state = 258}, + [1627] = {.lex_state = 258}, + [1628] = {.lex_state = 258}, + [1629] = {.lex_state = 258}, + [1630] = {.lex_state = 258}, + [1631] = {.lex_state = 258}, + [1632] = {.lex_state = 258}, + [1633] = {.lex_state = 258}, + [1634] = {.lex_state = 258}, + [1635] = {.lex_state = 258}, + [1636] = {.lex_state = 258}, + [1637] = {.lex_state = 258}, + [1638] = {.lex_state = 258}, + [1639] = {.lex_state = 258}, + [1640] = {.lex_state = 258}, + [1641] = {.lex_state = 258}, + [1642] = {.lex_state = 258}, + [1643] = {.lex_state = 258}, + [1644] = {.lex_state = 258}, + [1645] = {.lex_state = 258}, + [1646] = {.lex_state = 258}, + [1647] = {.lex_state = 258}, + [1648] = {.lex_state = 258}, + [1649] = {.lex_state = 258}, + [1650] = {.lex_state = 258}, + [1651] = {.lex_state = 258}, + [1652] = {.lex_state = 258}, + [1653] = {.lex_state = 258}, + [1654] = {.lex_state = 258}, + [1655] = {.lex_state = 258}, + [1656] = {.lex_state = 258}, + [1657] = {.lex_state = 258}, + [1658] = {.lex_state = 258}, + [1659] = {.lex_state = 258}, + [1660] = {.lex_state = 258}, + [1661] = {.lex_state = 258}, + [1662] = {.lex_state = 258}, + [1663] = {.lex_state = 258}, + [1664] = {.lex_state = 258}, + [1665] = {.lex_state = 258}, + [1666] = {.lex_state = 258}, + [1667] = {.lex_state = 258}, + [1668] = {.lex_state = 258}, + [1669] = {.lex_state = 258}, + [1670] = {.lex_state = 258}, + [1671] = {.lex_state = 258}, + [1672] = {.lex_state = 258}, + [1673] = {.lex_state = 258}, + [1674] = {.lex_state = 258}, + [1675] = {.lex_state = 258}, + [1676] = {.lex_state = 258}, + [1677] = {.lex_state = 258}, + [1678] = {.lex_state = 258}, + [1679] = {.lex_state = 258}, + [1680] = {.lex_state = 258}, + [1681] = {.lex_state = 258}, + [1682] = {.lex_state = 258}, + [1683] = {.lex_state = 258}, + [1684] = {.lex_state = 258}, + [1685] = {.lex_state = 258}, + [1686] = {.lex_state = 258}, + [1687] = {.lex_state = 258}, + [1688] = {.lex_state = 258}, + [1689] = {.lex_state = 258}, + [1690] = {.lex_state = 258}, + [1691] = {.lex_state = 258}, + [1692] = {.lex_state = 258}, + [1693] = {.lex_state = 258}, + [1694] = {.lex_state = 258}, + [1695] = {.lex_state = 258}, + [1696] = {.lex_state = 258}, + [1697] = {.lex_state = 258}, + [1698] = {.lex_state = 258}, + [1699] = {.lex_state = 258}, + [1700] = {.lex_state = 258}, + [1701] = {.lex_state = 258}, + [1702] = {.lex_state = 258}, + [1703] = {.lex_state = 258}, + [1704] = {.lex_state = 258}, + [1705] = {.lex_state = 258}, + [1706] = {.lex_state = 258}, + [1707] = {.lex_state = 258}, + [1708] = {.lex_state = 258}, + [1709] = {.lex_state = 258}, + [1710] = {.lex_state = 258}, + [1711] = {.lex_state = 258}, + [1712] = {.lex_state = 258}, + [1713] = {.lex_state = 258}, + [1714] = {.lex_state = 258}, + [1715] = {.lex_state = 258}, + [1716] = {.lex_state = 258}, + [1717] = {.lex_state = 258}, + [1718] = {.lex_state = 258}, + [1719] = {.lex_state = 258}, + [1720] = {.lex_state = 258}, + [1721] = {.lex_state = 258}, + [1722] = {.lex_state = 258}, + [1723] = {.lex_state = 258}, + [1724] = {.lex_state = 258}, + [1725] = {.lex_state = 258}, + [1726] = {.lex_state = 258}, + [1727] = {.lex_state = 258}, + [1728] = {.lex_state = 258}, + [1729] = {.lex_state = 258}, + [1730] = {.lex_state = 258}, + [1731] = {.lex_state = 258}, + [1732] = {.lex_state = 258}, + [1733] = {.lex_state = 258}, + [1734] = {.lex_state = 258}, + [1735] = {.lex_state = 258}, + [1736] = {.lex_state = 258}, + [1737] = {.lex_state = 258}, + [1738] = {.lex_state = 258}, + [1739] = {.lex_state = 258}, + [1740] = {.lex_state = 258}, + [1741] = {.lex_state = 258}, + [1742] = {.lex_state = 258}, + [1743] = {.lex_state = 258}, + [1744] = {.lex_state = 258}, + [1745] = {.lex_state = 258}, + [1746] = {.lex_state = 258}, + [1747] = {.lex_state = 258}, + [1748] = {.lex_state = 258}, + [1749] = {.lex_state = 258}, + [1750] = {.lex_state = 258}, + [1751] = {.lex_state = 258}, + [1752] = {.lex_state = 258}, + [1753] = {.lex_state = 258}, + [1754] = {.lex_state = 258}, + [1755] = {.lex_state = 258}, + [1756] = {.lex_state = 258}, + [1757] = {.lex_state = 258}, + [1758] = {.lex_state = 258}, + [1759] = {.lex_state = 258}, + [1760] = {.lex_state = 258}, + [1761] = {.lex_state = 258}, + [1762] = {.lex_state = 258}, + [1763] = {.lex_state = 258}, + [1764] = {.lex_state = 258}, + [1765] = {.lex_state = 258}, + [1766] = {.lex_state = 258}, + [1767] = {.lex_state = 258}, + [1768] = {.lex_state = 258}, + [1769] = {.lex_state = 258}, + [1770] = {.lex_state = 258}, + [1771] = {.lex_state = 258}, + [1772] = {.lex_state = 258}, + [1773] = {.lex_state = 258}, + [1774] = {.lex_state = 258}, + [1775] = {.lex_state = 258}, + [1776] = {.lex_state = 258}, + [1777] = {.lex_state = 258}, + [1778] = {.lex_state = 258}, + [1779] = {.lex_state = 258}, + [1780] = {.lex_state = 258}, + [1781] = {.lex_state = 258}, + [1782] = {.lex_state = 258}, + [1783] = {.lex_state = 258}, + [1784] = {.lex_state = 258}, + [1785] = {.lex_state = 258}, + [1786] = {.lex_state = 258}, + [1787] = {.lex_state = 258}, + [1788] = {.lex_state = 258}, + [1789] = {.lex_state = 258}, + [1790] = {.lex_state = 258}, + [1791] = {.lex_state = 258}, + [1792] = {.lex_state = 258}, + [1793] = {.lex_state = 258}, + [1794] = {.lex_state = 258}, + [1795] = {.lex_state = 258}, + [1796] = {.lex_state = 258}, + [1797] = {.lex_state = 258}, + [1798] = {.lex_state = 258}, + [1799] = {.lex_state = 258}, + [1800] = {.lex_state = 258}, + [1801] = {.lex_state = 258}, + [1802] = {.lex_state = 258}, + [1803] = {.lex_state = 258}, + [1804] = {.lex_state = 258}, + [1805] = {.lex_state = 258}, + [1806] = {.lex_state = 258}, + [1807] = {.lex_state = 258}, + [1808] = {.lex_state = 258}, + [1809] = {.lex_state = 258}, + [1810] = {.lex_state = 258}, + [1811] = {.lex_state = 258}, + [1812] = {.lex_state = 258}, + [1813] = {.lex_state = 258}, + [1814] = {.lex_state = 258}, + [1815] = {.lex_state = 258}, + [1816] = {.lex_state = 258}, + [1817] = {.lex_state = 258}, + [1818] = {.lex_state = 258}, + [1819] = {.lex_state = 258}, + [1820] = {.lex_state = 258}, + [1821] = {.lex_state = 258}, + [1822] = {.lex_state = 258}, + [1823] = {.lex_state = 258}, + [1824] = {.lex_state = 258}, + [1825] = {.lex_state = 258}, + [1826] = {.lex_state = 258}, + [1827] = {.lex_state = 258}, + [1828] = {.lex_state = 258}, + [1829] = {.lex_state = 258}, + [1830] = {.lex_state = 258}, + [1831] = {.lex_state = 258}, + [1832] = {.lex_state = 258}, + [1833] = {.lex_state = 258}, + [1834] = {.lex_state = 258}, + [1835] = {.lex_state = 258}, + [1836] = {.lex_state = 258}, + [1837] = {.lex_state = 258}, + [1838] = {.lex_state = 258}, + [1839] = {.lex_state = 258}, + [1840] = {.lex_state = 258}, + [1841] = {.lex_state = 258}, + [1842] = {.lex_state = 258}, + [1843] = {.lex_state = 258}, + [1844] = {.lex_state = 258}, + [1845] = {.lex_state = 258}, + [1846] = {.lex_state = 258}, + [1847] = {.lex_state = 258}, + [1848] = {.lex_state = 258}, + [1849] = {.lex_state = 258}, + [1850] = {.lex_state = 258}, + [1851] = {.lex_state = 258}, + [1852] = {.lex_state = 258}, + [1853] = {.lex_state = 258}, + [1854] = {.lex_state = 258}, + [1855] = {.lex_state = 258}, + [1856] = {.lex_state = 258}, + [1857] = {.lex_state = 258}, + [1858] = {.lex_state = 258}, + [1859] = {.lex_state = 258}, + [1860] = {.lex_state = 258}, + [1861] = {.lex_state = 258}, + [1862] = {.lex_state = 258}, + [1863] = {.lex_state = 258}, + [1864] = {.lex_state = 258}, + [1865] = {.lex_state = 258}, + [1866] = {.lex_state = 258}, + [1867] = {.lex_state = 258}, + [1868] = {.lex_state = 258}, + [1869] = {.lex_state = 258}, + [1870] = {.lex_state = 258}, + [1871] = {.lex_state = 258}, + [1872] = {.lex_state = 258}, + [1873] = {.lex_state = 258}, + [1874] = {.lex_state = 258}, + [1875] = {.lex_state = 258}, + [1876] = {.lex_state = 258}, + [1877] = {.lex_state = 258}, + [1878] = {.lex_state = 258}, + [1879] = {.lex_state = 258}, + [1880] = {.lex_state = 258}, + [1881] = {.lex_state = 258}, + [1882] = {.lex_state = 258}, + [1883] = {.lex_state = 258}, + [1884] = {.lex_state = 258}, + [1885] = {.lex_state = 258}, + [1886] = {.lex_state = 258}, + [1887] = {.lex_state = 258}, + [1888] = {.lex_state = 258}, + [1889] = {.lex_state = 258}, + [1890] = {.lex_state = 258}, + [1891] = {.lex_state = 258}, + [1892] = {.lex_state = 258}, + [1893] = {.lex_state = 258}, + [1894] = {.lex_state = 258}, + [1895] = {.lex_state = 258}, + [1896] = {.lex_state = 258}, + [1897] = {.lex_state = 258}, + [1898] = {.lex_state = 258}, + [1899] = {.lex_state = 258}, + [1900] = {.lex_state = 258}, + [1901] = {.lex_state = 258}, + [1902] = {.lex_state = 258}, + [1903] = {.lex_state = 258}, + [1904] = {.lex_state = 258}, + [1905] = {.lex_state = 258}, + [1906] = {.lex_state = 258}, + [1907] = {.lex_state = 258}, + [1908] = {.lex_state = 258}, + [1909] = {.lex_state = 258}, + [1910] = {.lex_state = 258}, + [1911] = {.lex_state = 258}, + [1912] = {.lex_state = 258}, + [1913] = {.lex_state = 258}, + [1914] = {.lex_state = 258}, + [1915] = {.lex_state = 258}, + [1916] = {.lex_state = 258}, + [1917] = {.lex_state = 258}, + [1918] = {.lex_state = 258}, + [1919] = {.lex_state = 258}, + [1920] = {.lex_state = 258}, + [1921] = {.lex_state = 258}, + [1922] = {.lex_state = 258}, + [1923] = {.lex_state = 258}, + [1924] = {.lex_state = 258}, + [1925] = {.lex_state = 258}, + [1926] = {.lex_state = 258}, + [1927] = {.lex_state = 258}, + [1928] = {.lex_state = 258}, + [1929] = {.lex_state = 258}, + [1930] = {.lex_state = 258}, + [1931] = {.lex_state = 258}, + [1932] = {.lex_state = 258}, + [1933] = {.lex_state = 258}, + [1934] = {.lex_state = 258}, + [1935] = {.lex_state = 258}, + [1936] = {.lex_state = 258}, + [1937] = {.lex_state = 258}, + [1938] = {.lex_state = 258}, + [1939] = {.lex_state = 258}, + [1940] = {.lex_state = 258}, + [1941] = {.lex_state = 258}, + [1942] = {.lex_state = 258}, + [1943] = {.lex_state = 258}, + [1944] = {.lex_state = 258}, + [1945] = {.lex_state = 258}, + [1946] = {.lex_state = 258}, + [1947] = {.lex_state = 258}, + [1948] = {.lex_state = 258}, + [1949] = {.lex_state = 258}, + [1950] = {.lex_state = 258}, + [1951] = {.lex_state = 258}, + [1952] = {.lex_state = 258}, + [1953] = {.lex_state = 258}, + [1954] = {.lex_state = 258}, + [1955] = {.lex_state = 258}, + [1956] = {.lex_state = 258}, + [1957] = {.lex_state = 258}, + [1958] = {.lex_state = 258}, + [1959] = {.lex_state = 258}, + [1960] = {.lex_state = 258}, + [1961] = {.lex_state = 258}, + [1962] = {.lex_state = 258}, + [1963] = {.lex_state = 258}, + [1964] = {.lex_state = 258}, + [1965] = {.lex_state = 258}, + [1966] = {.lex_state = 258}, + [1967] = {.lex_state = 258}, + [1968] = {.lex_state = 258}, + [1969] = {.lex_state = 258}, + [1970] = {.lex_state = 258}, + [1971] = {.lex_state = 258}, + [1972] = {.lex_state = 258}, + [1973] = {.lex_state = 258}, + [1974] = {.lex_state = 258}, + [1975] = {.lex_state = 258}, + [1976] = {.lex_state = 258}, + [1977] = {.lex_state = 258}, + [1978] = {.lex_state = 258}, + [1979] = {.lex_state = 258}, + [1980] = {.lex_state = 258}, + [1981] = {.lex_state = 258}, + [1982] = {.lex_state = 258}, + [1983] = {.lex_state = 258}, + [1984] = {.lex_state = 258}, + [1985] = {.lex_state = 258}, + [1986] = {.lex_state = 258}, + [1987] = {.lex_state = 258}, + [1988] = {.lex_state = 258}, + [1989] = {.lex_state = 258}, + [1990] = {.lex_state = 258}, + [1991] = {.lex_state = 258}, + [1992] = {.lex_state = 258}, + [1993] = {.lex_state = 258}, + [1994] = {.lex_state = 258}, + [1995] = {.lex_state = 258}, + [1996] = {.lex_state = 258}, + [1997] = {.lex_state = 258}, + [1998] = {.lex_state = 258}, + [1999] = {.lex_state = 258}, + [2000] = {.lex_state = 258}, + [2001] = {.lex_state = 258}, + [2002] = {.lex_state = 258}, + [2003] = {.lex_state = 258}, + [2004] = {.lex_state = 258}, + [2005] = {.lex_state = 288}, + [2006] = {.lex_state = 288}, + [2007] = {.lex_state = 288}, + [2008] = {.lex_state = 288}, + [2009] = {.lex_state = 288}, + [2010] = {.lex_state = 288}, + [2011] = {.lex_state = 288}, + [2012] = {.lex_state = 288}, [2013] = {.lex_state = 287}, [2014] = {.lex_state = 287}, - [2015] = {.lex_state = 315}, - [2016] = {.lex_state = 266}, - [2017] = {.lex_state = 266}, - [2018] = {.lex_state = 243}, - [2019] = {.lex_state = 315}, - [2020] = {.lex_state = 315}, - [2021] = {.lex_state = 315}, - [2022] = {.lex_state = 315}, - [2023] = {.lex_state = 271}, - [2024] = {.lex_state = 271}, - [2025] = {.lex_state = 271}, - [2026] = {.lex_state = 266}, - [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}, - [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}, - [2049] = {.lex_state = 287}, - [2050] = {.lex_state = 287}, - [2051] = {.lex_state = 272}, - [2052] = {.lex_state = 243}, - [2053] = {.lex_state = 315}, - [2054] = {.lex_state = 266}, - [2055] = {.lex_state = 287}, - [2056] = {.lex_state = 269}, - [2057] = {.lex_state = 287}, - [2058] = {.lex_state = 266}, - [2059] = {.lex_state = 266}, - [2060] = {.lex_state = 301}, + [2015] = {.lex_state = 309}, + [2016] = {.lex_state = 309}, + [2017] = {.lex_state = 328}, + [2018] = {.lex_state = 309}, + [2019] = {.lex_state = 309}, + [2020] = {.lex_state = 309}, + [2021] = {.lex_state = 309}, + [2022] = {.lex_state = 328}, + [2023] = {.lex_state = 309}, + [2024] = {.lex_state = 309}, + [2025] = {.lex_state = 309}, + [2026] = {.lex_state = 321}, + [2027] = {.lex_state = 309}, + [2028] = {.lex_state = 321}, + [2029] = {.lex_state = 288}, + [2030] = {.lex_state = 288}, + [2031] = {.lex_state = 288}, + [2032] = {.lex_state = 288}, + [2033] = {.lex_state = 288}, + [2034] = {.lex_state = 288}, + [2035] = {.lex_state = 288}, + [2036] = {.lex_state = 288}, + [2037] = {.lex_state = 287}, + [2038] = {.lex_state = 287}, + [2039] = {.lex_state = 287}, + [2040] = {.lex_state = 287}, + [2041] = {.lex_state = 321}, + [2042] = {.lex_state = 328}, + [2043] = {.lex_state = 322}, + [2044] = {.lex_state = 328}, + [2045] = {.lex_state = 321}, + [2046] = {.lex_state = 322}, + [2047] = {.lex_state = 322}, + [2048] = {.lex_state = 322}, + [2049] = {.lex_state = 322}, + [2050] = {.lex_state = 322}, + [2051] = {.lex_state = 322}, + [2052] = {.lex_state = 322}, + [2053] = {.lex_state = 322}, + [2054] = {.lex_state = 322}, + [2055] = {.lex_state = 362}, + [2056] = {.lex_state = 362}, + [2057] = {.lex_state = 362}, + [2058] = {.lex_state = 362}, + [2059] = {.lex_state = 322}, + [2060] = {.lex_state = 287}, [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}, - [2073] = {.lex_state = 268}, - [2074] = {.lex_state = 287}, - [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}, - [2086] = {.lex_state = 268}, - [2087] = {.lex_state = 271}, - [2088] = {.lex_state = 268}, - [2089] = {.lex_state = 268}, - [2090] = {.lex_state = 268}, - [2091] = {.lex_state = 268}, - [2092] = {.lex_state = 290}, - [2093] = {.lex_state = 272}, - [2094] = {.lex_state = 268}, - [2095] = {.lex_state = 272}, - [2096] = {.lex_state = 268}, - [2097] = {.lex_state = 268}, - [2098] = {.lex_state = 268}, - [2099] = {.lex_state = 290}, - [2100] = {.lex_state = 268}, - [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}, - [2109] = {.lex_state = 285}, - [2110] = {.lex_state = 269}, - [2111] = {.lex_state = 285}, - [2112] = {.lex_state = 268}, - [2113] = {.lex_state = 271}, - [2114] = {.lex_state = 271}, - [2115] = {.lex_state = 269}, - [2116] = {.lex_state = 285}, - [2117] = {.lex_state = 301}, - [2118] = {.lex_state = 271}, - [2119] = {.lex_state = 271}, - [2120] = {.lex_state = 269}, - [2121] = {.lex_state = 271}, - [2122] = {.lex_state = 271}, - [2123] = {.lex_state = 285}, - [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}, - [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}, - [2141] = {.lex_state = 285}, - [2142] = {.lex_state = 315}, - [2143] = {.lex_state = 285}, - [2144] = {.lex_state = 271}, - [2145] = {.lex_state = 298}, - [2146] = {.lex_state = 268}, - [2147] = {.lex_state = 268}, - [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}, - [2161] = {.lex_state = 271}, - [2162] = {.lex_state = 272}, - [2163] = {.lex_state = 268}, - [2164] = {.lex_state = 270}, - [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}, - [2172] = {.lex_state = 271}, - [2173] = {.lex_state = 315}, - [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}, - [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}, - [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}, - [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}, - [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}, - [2226] = {.lex_state = 271}, - [2227] = {.lex_state = 271}, - [2228] = {.lex_state = 271}, - [2229] = {.lex_state = 271}, - [2230] = {.lex_state = 271}, - [2231] = {.lex_state = 268}, - [2232] = {.lex_state = 271}, - [2233] = {.lex_state = 271}, - [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}, - [2241] = {.lex_state = 271}, - [2242] = {.lex_state = 271}, - [2243] = {.lex_state = 271}, - [2244] = {.lex_state = 271}, - [2245] = {.lex_state = 271}, - [2246] = {.lex_state = 271}, - [2247] = {.lex_state = 266}, - [2248] = {.lex_state = 266}, - [2249] = {.lex_state = 316}, - [2250] = {.lex_state = 271}, - [2251] = {.lex_state = 268}, - [2252] = {.lex_state = 333}, - [2253] = {.lex_state = 271}, - [2254] = {.lex_state = 271}, - [2255] = {.lex_state = 289}, - [2256] = {.lex_state = 271}, - [2257] = {.lex_state = 266}, - [2258] = {.lex_state = 309}, - [2259] = {.lex_state = 271}, - [2260] = {.lex_state = 271}, - [2261] = {.lex_state = 271}, - [2262] = {.lex_state = 271}, - [2263] = {.lex_state = 309}, - [2264] = {.lex_state = 266}, - [2265] = {.lex_state = 271}, - [2266] = {.lex_state = 271}, - [2267] = {.lex_state = 324}, - [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}, - [2282] = {.lex_state = 271}, - [2283] = {.lex_state = 305}, - [2284] = {.lex_state = 271}, - [2285] = {.lex_state = 305}, - [2286] = {.lex_state = 271}, - [2287] = {.lex_state = 271}, - [2288] = {.lex_state = 271}, - [2289] = {.lex_state = 290}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, + [2062] = {.lex_state = 313}, + [2063] = {.lex_state = 313}, + [2064] = {.lex_state = 261}, + [2065] = {.lex_state = 342}, + [2066] = {.lex_state = 342}, + [2067] = {.lex_state = 288}, + [2068] = {.lex_state = 324}, + [2069] = {.lex_state = 289}, + [2070] = {.lex_state = 288}, + [2071] = {.lex_state = 261}, + [2072] = {.lex_state = 288}, + [2073] = {.lex_state = 261}, + [2074] = {.lex_state = 291}, + [2075] = {.lex_state = 324}, + [2076] = {.lex_state = 292}, + [2077] = {.lex_state = 342}, + [2078] = {.lex_state = 342}, + [2079] = {.lex_state = 289}, + [2080] = {.lex_state = 342}, + [2081] = {.lex_state = 291}, + [2082] = {.lex_state = 288}, + [2083] = {.lex_state = 342}, + [2084] = {.lex_state = 288}, + [2085] = {.lex_state = 292}, + [2086] = {.lex_state = 342}, + [2087] = {.lex_state = 288}, + [2088] = {.lex_state = 287}, + [2089] = {.lex_state = 287}, + [2090] = {.lex_state = 287}, + [2091] = {.lex_state = 287}, + [2092] = {.lex_state = 255}, + [2093] = {.lex_state = 255}, + [2094] = {.lex_state = 287}, + [2095] = {.lex_state = 255}, + [2096] = {.lex_state = 309}, + [2097] = {.lex_state = 289}, + [2098] = {.lex_state = 291}, + [2099] = {.lex_state = 309}, + [2100] = {.lex_state = 287}, + [2101] = {.lex_state = 309}, + [2102] = {.lex_state = 309}, + [2103] = {.lex_state = 261}, + [2104] = {.lex_state = 261}, + [2105] = {.lex_state = 328}, + [2106] = {.lex_state = 321}, + [2107] = {.lex_state = 313}, + [2108] = {.lex_state = 288}, + [2109] = {.lex_state = 328}, + [2110] = {.lex_state = 261}, + [2111] = {.lex_state = 328}, + [2112] = {.lex_state = 328}, + [2113] = {.lex_state = 267}, + [2114] = {.lex_state = 321}, + [2115] = {.lex_state = 321}, + [2116] = {.lex_state = 313}, + [2117] = {.lex_state = 328}, + [2118] = {.lex_state = 321}, + [2119] = {.lex_state = 321}, + [2120] = {.lex_state = 328}, + [2121] = {.lex_state = 321}, + [2122] = {.lex_state = 288}, + [2123] = {.lex_state = 288}, + [2124] = {.lex_state = 299}, + [2125] = {.lex_state = 342}, + [2126] = {.lex_state = 288}, + [2127] = {.lex_state = 268}, + [2128] = {.lex_state = 288}, + [2129] = {.lex_state = 288}, + [2130] = {.lex_state = 268}, + [2131] = {.lex_state = 288}, + [2132] = {.lex_state = 289}, + [2133] = {.lex_state = 288}, + [2134] = {.lex_state = 268}, + [2135] = {.lex_state = 288}, + [2136] = {.lex_state = 289}, + [2137] = {.lex_state = 299}, + [2138] = {.lex_state = 287}, + [2139] = {.lex_state = 311}, + [2140] = {.lex_state = 275}, + [2141] = {.lex_state = 287}, + [2142] = {.lex_state = 261}, + [2143] = {.lex_state = 277}, + [2144] = {.lex_state = 299}, + [2145] = {.lex_state = 299}, + [2146] = {.lex_state = 287}, + [2147] = {.lex_state = 287}, + [2148] = {.lex_state = 287}, + [2149] = {.lex_state = 287}, + [2150] = {.lex_state = 287}, + [2151] = {.lex_state = 287}, + [2152] = {.lex_state = 287}, + [2153] = {.lex_state = 289}, + [2154] = {.lex_state = 277}, + [2155] = {.lex_state = 288}, + [2156] = {.lex_state = 289}, + [2157] = {.lex_state = 288}, + [2158] = {.lex_state = 287}, + [2159] = {.lex_state = 288}, + [2160] = {.lex_state = 287}, + [2161] = {.lex_state = 287}, + [2162] = {.lex_state = 288}, + [2163] = {.lex_state = 288}, + [2164] = {.lex_state = 261}, + [2165] = {.lex_state = 288}, + [2166] = {.lex_state = 288}, + [2167] = {.lex_state = 288}, + [2168] = {.lex_state = 288}, + [2169] = {.lex_state = 288}, + [2170] = {.lex_state = 288}, + [2171] = {.lex_state = 275}, + [2172] = {.lex_state = 288}, + [2173] = {.lex_state = 288}, + [2174] = {.lex_state = 275}, + [2175] = {.lex_state = 291}, + [2176] = {.lex_state = 321}, + [2177] = {.lex_state = 311}, + [2178] = {.lex_state = 311}, + [2179] = {.lex_state = 311}, + [2180] = {.lex_state = 288}, + [2181] = {.lex_state = 311}, + [2182] = {.lex_state = 261}, + [2183] = {.lex_state = 311}, + [2184] = {.lex_state = 291}, + [2185] = {.lex_state = 328}, + [2186] = {.lex_state = 328}, + [2187] = {.lex_state = 288}, + [2188] = {.lex_state = 291}, + [2189] = {.lex_state = 321}, + [2190] = {.lex_state = 311}, + [2191] = {.lex_state = 288}, + [2192] = {.lex_state = 311}, + [2193] = {.lex_state = 328}, + [2194] = {.lex_state = 288}, + [2195] = {.lex_state = 328}, + [2196] = {.lex_state = 328}, + [2197] = {.lex_state = 321}, + [2198] = {.lex_state = 328}, + [2199] = {.lex_state = 288}, + [2200] = {.lex_state = 321}, + [2201] = {.lex_state = 322}, + [2202] = {.lex_state = 321}, + [2203] = {.lex_state = 311}, + [2204] = {.lex_state = 321}, + [2205] = {.lex_state = 299}, + [2206] = {.lex_state = 288}, + [2207] = {.lex_state = 299}, + [2208] = {.lex_state = 322}, + [2209] = {.lex_state = 291}, + [2210] = {.lex_state = 299}, + [2211] = {.lex_state = 299}, + [2212] = {.lex_state = 288}, + [2213] = {.lex_state = 288}, + [2214] = {.lex_state = 287}, + [2215] = {.lex_state = 287}, + [2216] = {.lex_state = 288}, + [2217] = {.lex_state = 288}, + [2218] = {.lex_state = 299}, + [2219] = {.lex_state = 299}, + [2220] = {.lex_state = 288}, + [2221] = {.lex_state = 287}, + [2222] = {.lex_state = 287}, + [2223] = {.lex_state = 287}, + [2224] = {.lex_state = 287}, + [2225] = {.lex_state = 311}, + [2226] = {.lex_state = 288}, + [2227] = {.lex_state = 288}, + [2228] = {.lex_state = 288}, + [2229] = {.lex_state = 288}, + [2230] = {.lex_state = 291}, + [2231] = {.lex_state = 293}, + [2232] = {.lex_state = 291}, + [2233] = {.lex_state = 291}, + [2234] = {.lex_state = 311}, + [2235] = {.lex_state = 311}, + [2236] = {.lex_state = 311}, + [2237] = {.lex_state = 311}, + [2238] = {.lex_state = 311}, + [2239] = {.lex_state = 311}, + [2240] = {.lex_state = 311}, + [2241] = {.lex_state = 288}, + [2242] = {.lex_state = 288}, + [2243] = {.lex_state = 288}, + [2244] = {.lex_state = 288}, + [2245] = {.lex_state = 348}, + [2246] = {.lex_state = 348}, + [2247] = {.lex_state = 288}, + [2248] = {.lex_state = 311}, + [2249] = {.lex_state = 288}, + [2250] = {.lex_state = 346}, + [2251] = {.lex_state = 288}, + [2252] = {.lex_state = 291}, + [2253] = {.lex_state = 288}, + [2254] = {.lex_state = 291}, + [2255] = {.lex_state = 288}, + [2256] = {.lex_state = 288}, + [2257] = {.lex_state = 288}, + [2258] = {.lex_state = 291}, + [2259] = {.lex_state = 346}, + [2260] = {.lex_state = 291}, + [2261] = {.lex_state = 291}, + [2262] = {.lex_state = 288}, + [2263] = {.lex_state = 312}, + [2264] = {.lex_state = 288}, + [2265] = {.lex_state = 288}, + [2266] = {.lex_state = 288}, + [2267] = {.lex_state = 288}, + [2268] = {.lex_state = 291}, + [2269] = {.lex_state = 302}, + [2270] = {.lex_state = 299}, + [2271] = {.lex_state = 288}, + [2272] = {.lex_state = 291}, + [2273] = {.lex_state = 288}, + [2274] = {.lex_state = 288}, + [2275] = {.lex_state = 288}, + [2276] = {.lex_state = 288}, + [2277] = {.lex_state = 312}, + [2278] = {.lex_state = 302}, + [2279] = {.lex_state = 291}, + [2280] = {.lex_state = 311}, + [2281] = {.lex_state = 288}, + [2282] = {.lex_state = 288}, + [2283] = {.lex_state = 288}, + [2284] = {.lex_state = 288}, + [2285] = {.lex_state = 302}, + [2286] = {.lex_state = 288}, + [2287] = {.lex_state = 299}, + [2288] = {.lex_state = 288}, + [2289] = {.lex_state = 302}, + [2290] = {.lex_state = 291}, + [2291] = {.lex_state = 288}, + [2292] = {.lex_state = 288}, + [2293] = {.lex_state = 288}, + [2294] = {.lex_state = 288}, + [2295] = {.lex_state = 288}, + [2296] = {.lex_state = 325}, + [2297] = {.lex_state = 288}, + [2298] = {.lex_state = 288}, + [2299] = {.lex_state = 288}, + [2300] = {.lex_state = 288}, + [2301] = {.lex_state = 288}, + [2302] = {.lex_state = 288}, + [2303] = {.lex_state = 288}, + [2304] = {.lex_state = 288}, + [2305] = {.lex_state = 288}, + [2306] = {.lex_state = 288}, + [2307] = {.lex_state = 288}, + [2308] = {.lex_state = 288}, + [2309] = {.lex_state = 288}, + [2310] = {.lex_state = 288}, + [2311] = {.lex_state = 288}, + [2312] = {.lex_state = 293}, + [2313] = {.lex_state = 288}, + [2314] = {.lex_state = 288}, + [2315] = {.lex_state = 288}, + [2316] = {.lex_state = 288}, + [2317] = {.lex_state = 288}, + [2318] = {.lex_state = 288}, + [2319] = {.lex_state = 288}, + [2320] = {.lex_state = 288}, + [2321] = {.lex_state = 288}, + [2322] = {.lex_state = 288}, + [2323] = {.lex_state = 288}, + [2324] = {.lex_state = 288}, + [2325] = {.lex_state = 288}, + [2326] = {.lex_state = 288}, + [2327] = {.lex_state = 288}, + [2328] = {.lex_state = 288}, + [2329] = {.lex_state = 288}, + [2330] = {.lex_state = 288}, + [2331] = {.lex_state = 288}, + [2332] = {.lex_state = 288}, + [2333] = {.lex_state = 288}, + [2334] = {.lex_state = 288}, + [2335] = {.lex_state = 288}, + [2336] = {.lex_state = 288}, + [2337] = {.lex_state = 326}, + [2338] = {.lex_state = 326}, + [2339] = {.lex_state = 288}, + [2340] = {.lex_state = 325}, + [2341] = {.lex_state = 288}, + [2342] = {.lex_state = 312}, + [2343] = {.lex_state = 288}, + [2344] = {.lex_state = 288}, + [2345] = {.lex_state = 288}, + [2346] = {.lex_state = 288}, + [2347] = {.lex_state = 346}, + [2348] = {.lex_state = 346}, + [2349] = {.lex_state = 309}, + [2350] = {.lex_state = 299}, + [2351] = {.lex_state = 299}, + [2352] = {.lex_state = 348}, + [2353] = {.lex_state = 299}, + [2354] = {.lex_state = 299}, + [2355] = {.lex_state = 293}, + [2356] = {.lex_state = 313}, + [2357] = {.lex_state = 325}, + [2358] = {.lex_state = 309}, + [2359] = {.lex_state = 309}, + [2360] = {.lex_state = 348}, + [2361] = {.lex_state = 309}, + [2362] = {.lex_state = 299}, + [2363] = {.lex_state = 293}, + [2364] = {.lex_state = 326}, + [2365] = {.lex_state = 299}, + [2366] = {.lex_state = 309}, + [2367] = {.lex_state = 324}, + [2368] = {.lex_state = 299}, + [2369] = {.lex_state = 342}, + [2370] = {.lex_state = 309}, + [2371] = {.lex_state = 299}, + [2372] = {.lex_state = 293}, + [2373] = {.lex_state = 299}, [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}, - [2381] = {.lex_state = 271}, - [2382] = {.lex_state = 271}, - [2383] = {.lex_state = 305}, - [2384] = {.lex_state = 271}, + [2375] = {.lex_state = 287}, + [2376] = {.lex_state = 292}, + [2377] = {.lex_state = 309}, + [2378] = {.lex_state = 342}, + [2379] = {.lex_state = 309}, + [2380] = {.lex_state = 299}, + [2381] = {.lex_state = 312}, + [2382] = {.lex_state = 309}, + [2383] = {.lex_state = 309}, + [2384] = {.lex_state = 309}, [2385] = {.lex_state = 309}, - [2386] = {.lex_state = 309}, + [2386] = {.lex_state = 299}, [2387] = {.lex_state = 309}, - [2388] = {.lex_state = 270}, - [2389] = {.lex_state = 291}, - [2390] = {.lex_state = 309}, - [2391] = {.lex_state = 290}, - [2392] = {.lex_state = 289}, - [2393] = {.lex_state = 289}, - [2394] = {.lex_state = 289}, - [2395] = {.lex_state = 290}, - [2396] = {.lex_state = 290}, - [2397] = {.lex_state = 305}, - [2398] = {.lex_state = 289}, - [2399] = {.lex_state = 289}, - [2400] = {.lex_state = 290}, - [2401] = {.lex_state = 290}, - [2402] = {.lex_state = 285}, - [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}, - [2411] = {.lex_state = 290}, - [2412] = {.lex_state = 289}, - [2413] = {.lex_state = 290}, - [2414] = {.lex_state = 290}, - [2415] = {.lex_state = 290}, - [2416] = {.lex_state = 289}, - [2417] = {.lex_state = 290}, - [2418] = {.lex_state = 290}, - [2419] = {.lex_state = 290}, - [2420] = {.lex_state = 289}, - [2421] = {.lex_state = 289}, - [2422] = {.lex_state = 290}, - [2423] = {.lex_state = 305}, - [2424] = {.lex_state = 290}, - [2425] = {.lex_state = 290}, - [2426] = {.lex_state = 290}, - [2427] = {.lex_state = 290}, - [2428] = {.lex_state = 290}, - [2429] = {.lex_state = 290}, - [2430] = {.lex_state = 290}, - [2431] = {.lex_state = 290}, - [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}, - [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}, - [2466] = {.lex_state = 290}, - [2467] = {.lex_state = 270}, - [2468] = {.lex_state = 289}, - [2469] = {.lex_state = 315}, - [2470] = {.lex_state = 289}, - [2471] = {.lex_state = 298}, - [2472] = {.lex_state = 269}, - [2473] = {.lex_state = 240}, - [2474] = {.lex_state = 301}, - [2475] = {.lex_state = 303}, - [2476] = {.lex_state = 301}, - [2477] = {.lex_state = 290}, - [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}, - [2507] = {.lex_state = 301}, - [2508] = {.lex_state = 301}, - [2509] = {.lex_state = 269}, - [2510] = {.lex_state = 266}, - [2511] = {.lex_state = 269}, - [2512] = {.lex_state = 301}, - [2513] = {.lex_state = 298}, - [2514] = {.lex_state = 270}, - [2515] = {.lex_state = 315}, - [2516] = {.lex_state = 290}, - [2517] = {.lex_state = 301}, - [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}, - [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}, - [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}, - [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}, - [2580] = {.lex_state = 269}, - [2581] = {.lex_state = 270}, - [2582] = {.lex_state = 269}, - [2583] = {.lex_state = 269}, - [2584] = {.lex_state = 280}, - [2585] = {.lex_state = 301}, - [2586] = {.lex_state = 280}, - [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}, - [2602] = {.lex_state = 289}, - [2603] = {.lex_state = 290}, - [2604] = {.lex_state = 290}, - [2605] = {.lex_state = 269}, - [2606] = {.lex_state = 291}, - [2607] = {.lex_state = 281}, - [2608] = {.lex_state = 290}, - [2609] = {.lex_state = 301}, - [2610] = {.lex_state = 290}, - [2611] = {.lex_state = 289}, - [2612] = {.lex_state = 289}, - [2613] = {.lex_state = 290}, - [2614] = {.lex_state = 290}, - [2615] = {.lex_state = 290}, - [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}, - [2623] = {.lex_state = 289}, - [2624] = {.lex_state = 290}, - [2625] = {.lex_state = 302}, - [2626] = {.lex_state = 290}, - [2627] = {.lex_state = 285}, - [2628] = {.lex_state = 290}, - [2629] = {.lex_state = 290}, - [2630] = {.lex_state = 290}, - [2631] = {.lex_state = 290}, - [2632] = {.lex_state = 290}, - [2633] = {.lex_state = 303}, - [2634] = {.lex_state = 290}, - [2635] = {.lex_state = 289}, - [2636] = {.lex_state = 289}, - [2637] = {.lex_state = 269}, - [2638] = {.lex_state = 301}, - [2639] = {.lex_state = 290}, - [2640] = {.lex_state = 290}, - [2641] = {.lex_state = 289}, - [2642] = {.lex_state = 290}, - [2643] = {.lex_state = 290}, - [2644] = {.lex_state = 290}, - [2645] = {.lex_state = 290}, - [2646] = {.lex_state = 334}, - [2647] = {.lex_state = 334}, - [2648] = {.lex_state = 290}, - [2649] = {.lex_state = 290}, - [2650] = {.lex_state = 315}, - [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}, - [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}, - [2704] = {.lex_state = 290}, - [2705] = {.lex_state = 285}, - [2706] = {.lex_state = 285}, - [2707] = {.lex_state = 285}, - [2708] = {.lex_state = 285}, - [2709] = {.lex_state = 301}, - [2710] = {.lex_state = 285}, - [2711] = {.lex_state = 285}, - [2712] = {.lex_state = 269}, - [2713] = {.lex_state = 285}, - [2714] = {.lex_state = 285}, - [2715] = {.lex_state = 290}, - [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}, - [2725] = {.lex_state = 301}, - [2726] = {.lex_state = 281}, - [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}, - [2734] = {.lex_state = 285}, - [2735] = {.lex_state = 285}, - [2736] = {.lex_state = 314}, - [2737] = {.lex_state = 290}, - [2738] = {.lex_state = 285}, - [2739] = {.lex_state = 285}, - [2740] = {.lex_state = 285}, - [2741] = {.lex_state = 285}, - [2742] = {.lex_state = 290}, - [2743] = {.lex_state = 285}, - [2744] = {.lex_state = 285}, - [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}, - [2758] = {.lex_state = 285}, - [2759] = {.lex_state = 269}, - [2760] = {.lex_state = 269}, - [2761] = {.lex_state = 285}, - [2762] = {.lex_state = 245}, - [2763] = {.lex_state = 285}, - [2764] = {.lex_state = 285}, - [2765] = {.lex_state = 285}, - [2766] = {.lex_state = 285}, - [2767] = {.lex_state = 285}, - [2768] = {.lex_state = 285}, - [2769] = {.lex_state = 285}, - [2770] = {.lex_state = 334}, - [2771] = {.lex_state = 285}, - [2772] = {.lex_state = 285}, - [2773] = {.lex_state = 285}, - [2774] = {.lex_state = 301}, - [2775] = {.lex_state = 334}, - [2776] = {.lex_state = 280}, - [2777] = {.lex_state = 285}, - [2778] = {.lex_state = 285}, - [2779] = {.lex_state = 334}, - [2780] = {.lex_state = 285}, - [2781] = {.lex_state = 301}, - [2782] = {.lex_state = 290}, - [2783] = {.lex_state = 285}, - [2784] = {.lex_state = 280}, - [2785] = {.lex_state = 285}, - [2786] = {.lex_state = 280}, - [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}, - [2798] = {.lex_state = 285}, - [2799] = {.lex_state = 245}, - [2800] = {.lex_state = 301}, - [2801] = {.lex_state = 289}, - [2802] = {.lex_state = 285}, - [2803] = {.lex_state = 266}, - [2804] = {.lex_state = 314}, - [2805] = {.lex_state = 314}, - [2806] = {.lex_state = 285}, - [2807] = {.lex_state = 334}, - [2808] = {.lex_state = 285}, - [2809] = {.lex_state = 285}, - [2810] = {.lex_state = 285}, - [2811] = {.lex_state = 291}, - [2812] = {.lex_state = 314}, - [2813] = {.lex_state = 314}, - [2814] = {.lex_state = 314}, - [2815] = {.lex_state = 285}, - [2816] = {.lex_state = 285}, - [2817] = {.lex_state = 314}, - [2818] = {.lex_state = 281}, - [2819] = {.lex_state = 285}, - [2820] = {.lex_state = 301}, - [2821] = {.lex_state = 285}, - [2822] = {.lex_state = 285}, - [2823] = {.lex_state = 290}, - [2824] = {.lex_state = 301}, - [2825] = {.lex_state = 301}, - [2826] = {.lex_state = 301}, - [2827] = {.lex_state = 290}, - [2828] = {.lex_state = 290}, - [2829] = {.lex_state = 285}, - [2830] = {.lex_state = 334}, - [2831] = {.lex_state = 285}, - [2832] = {.lex_state = 285}, - [2833] = {.lex_state = 290}, - [2834] = {.lex_state = 301}, - [2835] = {.lex_state = 285}, - [2836] = {.lex_state = 285}, - [2837] = {.lex_state = 285}, - [2838] = {.lex_state = 285}, - [2839] = {.lex_state = 285}, - [2840] = {.lex_state = 285}, - [2841] = {.lex_state = 285}, - [2842] = {.lex_state = 285}, - [2843] = {.lex_state = 269}, - [2844] = {.lex_state = 285}, - [2845] = {.lex_state = 285}, - [2846] = {.lex_state = 289}, - [2847] = {.lex_state = 269}, - [2848] = {.lex_state = 269}, - [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}, - [2856] = {.lex_state = 285}, - [2857] = {.lex_state = 285}, - [2858] = {.lex_state = 301}, - [2859] = {.lex_state = 285}, - [2860] = {.lex_state = 285}, - [2861] = {.lex_state = 285}, - [2862] = {.lex_state = 285}, - [2863] = {.lex_state = 285}, - [2864] = {.lex_state = 285}, - [2865] = {.lex_state = 285}, - [2866] = {.lex_state = 285}, - [2867] = {.lex_state = 285}, - [2868] = {.lex_state = 285}, - [2869] = {.lex_state = 285}, - [2870] = {.lex_state = 285}, - [2871] = {.lex_state = 285}, - [2872] = {.lex_state = 285}, - [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}, - [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}, - [2890] = {.lex_state = 285}, - [2891] = {.lex_state = 269}, - [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}, - [2899] = {.lex_state = 290}, - [2900] = {.lex_state = 289}, - [2901] = {.lex_state = 290}, - [2902] = {.lex_state = 266}, - [2903] = {.lex_state = 266}, - [2904] = {.lex_state = 333}, - [2905] = {.lex_state = 269}, - [2906] = {.lex_state = 286}, - [2907] = {.lex_state = 269}, - [2908] = {.lex_state = 289}, - [2909] = {.lex_state = 289}, - [2910] = {.lex_state = 286}, - [2911] = {.lex_state = 269}, - [2912] = {.lex_state = 286}, - [2913] = {.lex_state = 269}, - [2914] = {.lex_state = 269}, - [2915] = {.lex_state = 269}, - [2916] = {.lex_state = 290}, - [2917] = {.lex_state = 301}, - [2918] = {.lex_state = 289}, - [2919] = {.lex_state = 290}, - [2920] = {.lex_state = 281}, - [2921] = {.lex_state = 290}, - [2922] = {.lex_state = 333}, - [2923] = {.lex_state = 281}, - [2924] = {.lex_state = 286}, - [2925] = {.lex_state = 290}, - [2926] = {.lex_state = 333}, - [2927] = {.lex_state = 301}, - [2928] = {.lex_state = 290}, - [2929] = {.lex_state = 290}, - [2930] = {.lex_state = 290}, - [2931] = {.lex_state = 290}, - [2932] = {.lex_state = 290}, - [2933] = {.lex_state = 290}, - [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}, - [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}, - [2953] = {.lex_state = 270}, - [2954] = {.lex_state = 277}, - [2955] = {.lex_state = 285}, - [2956] = {.lex_state = 266}, - [2957] = {.lex_state = 285}, - [2958] = {.lex_state = 266}, - [2959] = {.lex_state = 290}, - [2960] = {.lex_state = 285}, - [2961] = {.lex_state = 270}, - [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}, - [2971] = {.lex_state = 280}, - [2972] = {.lex_state = 269}, - [2973] = {.lex_state = 271}, - [2974] = {.lex_state = 280}, - [2975] = {.lex_state = 298}, - [2976] = {.lex_state = 285}, - [2977] = {.lex_state = 271}, - [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}, - [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}, - [2998] = {.lex_state = 290}, - [2999] = {.lex_state = 290}, - [3000] = {.lex_state = 266}, - [3001] = {.lex_state = 290}, - [3002] = {.lex_state = 285}, - [3003] = {.lex_state = 290}, - [3004] = {.lex_state = 285}, - [3005] = {.lex_state = 290}, - [3006] = {.lex_state = 285}, - [3007] = {.lex_state = 290}, - [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}, - [3023] = {.lex_state = 290}, - [3024] = {.lex_state = 285}, - [3025] = {.lex_state = 290}, - [3026] = {.lex_state = 290}, - [3027] = {.lex_state = 285}, - [3028] = {.lex_state = 314}, - [3029] = {.lex_state = 271}, - [3030] = {.lex_state = 290}, - [3031] = {.lex_state = 290}, - [3032] = {.lex_state = 277}, - [3033] = {.lex_state = 290}, - [3034] = {.lex_state = 285}, - [3035] = {.lex_state = 290}, - [3036] = {.lex_state = 290}, - [3037] = {.lex_state = 290}, - [3038] = {.lex_state = 285}, - [3039] = {.lex_state = 290}, - [3040] = {.lex_state = 290}, - [3041] = {.lex_state = 290}, - [3042] = {.lex_state = 290}, - [3043] = {.lex_state = 266}, - [3044] = {.lex_state = 266}, - [3045] = {.lex_state = 290}, - [3046] = {.lex_state = 290}, - [3047] = {.lex_state = 290}, - [3048] = {.lex_state = 290}, - [3049] = {.lex_state = 290}, - [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}, - [3066] = {.lex_state = 290}, - [3067] = {.lex_state = 290}, - [3068] = {.lex_state = 285}, - [3069] = {.lex_state = 290}, - [3070] = {.lex_state = 298}, - [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}, - [3087] = {.lex_state = 269}, - [3088] = {.lex_state = 301}, - [3089] = {.lex_state = 301}, - [3090] = {.lex_state = 301}, - [3091] = {.lex_state = 281}, - [3092] = {.lex_state = 290}, - [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}, - [3102] = {.lex_state = 269}, - [3103] = {.lex_state = 281}, - [3104] = {.lex_state = 269}, - [3105] = {.lex_state = 281}, - [3106] = {.lex_state = 269}, - [3107] = {.lex_state = 269}, - [3108] = {.lex_state = 281}, - [3109] = {.lex_state = 281}, - [3110] = {.lex_state = 269}, - [3111] = {.lex_state = 270}, - [3112] = {.lex_state = 301}, - [3113] = {.lex_state = 301}, - [3114] = {.lex_state = 290}, - [3115] = {.lex_state = 290}, - [3116] = {.lex_state = 281}, - [3117] = {.lex_state = 281}, - [3118] = {.lex_state = 286}, - [3119] = {.lex_state = 269}, - [3120] = {.lex_state = 290}, - [3121] = {.lex_state = 269}, - [3122] = {.lex_state = 301}, - [3123] = {.lex_state = 301}, - [3124] = {.lex_state = 270}, - [3125] = {.lex_state = 266}, - [3126] = {.lex_state = 281}, - [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}, - [3137] = {.lex_state = 269}, - [3138] = {.lex_state = 333}, - [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}, - [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}, - [3179] = {.lex_state = 301}, - [3180] = {.lex_state = 270}, - [3181] = {.lex_state = 301}, - [3182] = {.lex_state = 333}, - [3183] = {.lex_state = 301}, - [3184] = {.lex_state = 269}, - [3185] = {.lex_state = 281}, - [3186] = {.lex_state = 281}, - [3187] = {.lex_state = 281}, - [3188] = {.lex_state = 269}, - [3189] = {.lex_state = 269}, - [3190] = {.lex_state = 281}, - [3191] = {.lex_state = 281}, - [3192] = {.lex_state = 281}, - [3193] = {.lex_state = 301}, - [3194] = {.lex_state = 269}, - [3195] = {.lex_state = 269}, - [3196] = {.lex_state = 269}, - [3197] = {.lex_state = 281}, - [3198] = {.lex_state = 270}, - [3199] = {.lex_state = 281}, - [3200] = {.lex_state = 286}, - [3201] = {.lex_state = 281}, - [3202] = {.lex_state = 269}, - [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}, - [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}, - [3225] = {.lex_state = 281}, - [3226] = {.lex_state = 301}, - [3227] = {.lex_state = 269}, - [3228] = {.lex_state = 269}, - [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}, - [3248] = {.lex_state = 333}, - [3249] = {.lex_state = 286}, - [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}, - [3260] = {.lex_state = 286}, - [3261] = {.lex_state = 286}, - [3262] = {.lex_state = 286}, - [3263] = {.lex_state = 286}, - [3264] = {.lex_state = 286}, - [3265] = {.lex_state = 286}, - [3266] = {.lex_state = 286}, - [3267] = {.lex_state = 286}, - [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}, - [3276] = {.lex_state = 286}, - [3277] = {.lex_state = 286}, - [3278] = {.lex_state = 286}, - [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}, - [3288] = {.lex_state = 286}, - [3289] = {.lex_state = 277}, - [3290] = {.lex_state = 277}, - [3291] = {.lex_state = 286}, - [3292] = {.lex_state = 286}, - [3293] = {.lex_state = 286}, - [3294] = {.lex_state = 286}, - [3295] = {.lex_state = 277}, - [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}, - [3304] = {.lex_state = 286}, - [3305] = {.lex_state = 286}, - [3306] = {.lex_state = 286}, - [3307] = {.lex_state = 286}, - [3308] = {.lex_state = 286}, - [3309] = {.lex_state = 286}, - [3310] = {.lex_state = 277}, - [3311] = {.lex_state = 286}, - [3312] = {.lex_state = 286}, - [3313] = {.lex_state = 286}, - [3314] = {.lex_state = 286}, - [3315] = {.lex_state = 286}, - [3316] = {.lex_state = 286}, - [3317] = {.lex_state = 286}, - [3318] = {.lex_state = 286}, - [3319] = {.lex_state = 277}, - [3320] = {.lex_state = 277}, - [3321] = {.lex_state = 286}, - [3322] = {.lex_state = 286}, - [3323] = {.lex_state = 286}, - [3324] = {.lex_state = 286}, - [3325] = {.lex_state = 286}, - [3326] = {.lex_state = 286}, - [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}, - [3338] = {.lex_state = 286}, - [3339] = {.lex_state = 286}, - [3340] = {.lex_state = 285}, - [3341] = {.lex_state = 333}, - [3342] = {.lex_state = 333}, - [3343] = {.lex_state = 333}, - [3344] = {.lex_state = 333}, - [3345] = {.lex_state = 333}, - [3346] = {.lex_state = 333}, - [3347] = {.lex_state = 333}, - [3348] = {.lex_state = 333}, - [3349] = {.lex_state = 333}, - [3350] = {.lex_state = 333}, - [3351] = {.lex_state = 289}, - [3352] = {.lex_state = 289}, - [3353] = {.lex_state = 289}, - [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}, - [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}, - [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}, - [3380] = {.lex_state = 333}, - [3381] = {.lex_state = 301}, - [3382] = {.lex_state = 289}, - [3383] = {.lex_state = 289}, - [3384] = {.lex_state = 289}, - [3385] = {.lex_state = 333}, - [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}, - [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}, - [3402] = {.lex_state = 333}, - [3403] = {.lex_state = 333}, - [3404] = {.lex_state = 333}, - [3405] = {.lex_state = 333}, - [3406] = {.lex_state = 333}, - [3407] = {.lex_state = 333}, - [3408] = {.lex_state = 333}, - [3409] = {.lex_state = 333}, - [3410] = {.lex_state = 333}, - [3411] = {.lex_state = 286}, - [3412] = {.lex_state = 333}, - [3413] = {.lex_state = 333}, - [3414] = {.lex_state = 333}, - [3415] = {.lex_state = 333}, - [3416] = {.lex_state = 333}, - [3417] = {.lex_state = 333}, - [3418] = {.lex_state = 333}, - [3419] = {.lex_state = 333}, - [3420] = {.lex_state = 333}, - [3421] = {.lex_state = 333}, - [3422] = {.lex_state = 333}, - [3423] = {.lex_state = 333}, - [3424] = {.lex_state = 333}, - [3425] = {.lex_state = 333}, - [3426] = {.lex_state = 333}, - [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}, - [3435] = {.lex_state = 333}, - [3436] = {.lex_state = 245}, - [3437] = {.lex_state = 333}, - [3438] = {.lex_state = 333}, - [3439] = {.lex_state = 333}, - [3440] = {.lex_state = 333}, - [3441] = {.lex_state = 271}, - [3442] = {.lex_state = 333}, - [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}, - [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}, - [3459] = {.lex_state = 333}, - [3460] = {.lex_state = 333}, - [3461] = {.lex_state = 333}, - [3462] = {.lex_state = 286}, - [3463] = {.lex_state = 286}, - [3464] = {.lex_state = 286}, - [3465] = {.lex_state = 286}, - [3466] = {.lex_state = 286}, - [3467] = {.lex_state = 286}, - [3468] = {.lex_state = 286}, - [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}, - [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}, - [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}, - [3509] = {.lex_state = 277}, - [3510] = {.lex_state = 277}, - [3511] = {.lex_state = 280}, - [3512] = {.lex_state = 280}, - [3513] = {.lex_state = 280}, - [3514] = {.lex_state = 280}, - [3515] = {.lex_state = 280}, - [3516] = {.lex_state = 249}, - [3517] = {.lex_state = 271}, - [3518] = {.lex_state = 280}, - [3519] = {.lex_state = 280}, - [3520] = {.lex_state = 280}, - [3521] = {.lex_state = 280}, - [3522] = {.lex_state = 280}, - [3523] = {.lex_state = 280}, - [3524] = {.lex_state = 280}, - [3525] = {.lex_state = 249}, - [3526] = {.lex_state = 280}, - [3527] = {.lex_state = 290}, - [3528] = {.lex_state = 290}, - [3529] = {.lex_state = 290}, - [3530] = {.lex_state = 290}, - [3531] = {.lex_state = 290}, - [3532] = {.lex_state = 290}, - [3533] = {.lex_state = 290}, - [3534] = {.lex_state = 290}, - [3535] = {.lex_state = 290}, - [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}, - [3545] = {.lex_state = 290}, - [3546] = {.lex_state = 290}, - [3547] = {.lex_state = 290}, - [3548] = {.lex_state = 271}, - [3549] = {.lex_state = 290}, - [3550] = {.lex_state = 290}, - [3551] = {.lex_state = 280}, - [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}, - [3562] = {.lex_state = 290}, - [3563] = {.lex_state = 290}, - [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}, - [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}, - [3583] = {.lex_state = 280}, - [3584] = {.lex_state = 280}, - [3585] = {.lex_state = 280}, - [3586] = {.lex_state = 243}, - [3587] = {.lex_state = 280}, - [3588] = {.lex_state = 280}, - [3589] = {.lex_state = 245}, - [3590] = {.lex_state = 280}, - [3591] = {.lex_state = 254}, - [3592] = {.lex_state = 254}, - [3593] = {.lex_state = 290}, - [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}, - [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}, - [3608] = {.lex_state = 271}, - [3609] = {.lex_state = 280}, - [3610] = {.lex_state = 285}, - [3611] = {.lex_state = 271}, - [3612] = {.lex_state = 285}, - [3613] = {.lex_state = 285}, - [3614] = {.lex_state = 285}, - [3615] = {.lex_state = 271}, - [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}, - [3624] = {.lex_state = 285}, - [3625] = {.lex_state = 271}, - [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}, - [3636] = {.lex_state = 271}, - [3637] = {.lex_state = 271}, - [3638] = {.lex_state = 271}, - [3639] = {.lex_state = 243}, - [3640] = {.lex_state = 271}, - [3641] = {.lex_state = 271}, - [3642] = {.lex_state = 243}, - [3643] = {.lex_state = 250}, - [3644] = {.lex_state = 282}, - [3645] = {.lex_state = 271}, - [3646] = {.lex_state = 279}, - [3647] = {.lex_state = 271}, - [3648] = {.lex_state = 271}, - [3649] = {.lex_state = 279}, - [3650] = {.lex_state = 271}, - [3651] = {.lex_state = 271}, - [3652] = {.lex_state = 271}, - [3653] = {.lex_state = 271}, - [3654] = {.lex_state = 285}, - [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}, - [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}, - [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}, - [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}, - [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}, - [3728] = {.lex_state = 277}, - [3729] = {.lex_state = 277}, - [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}, - [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}, - [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}, - [3792] = {.lex_state = 271}, - [3793] = {.lex_state = 280}, - [3794] = {.lex_state = 271}, - [3795] = {.lex_state = 271}, - [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}, - [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}, - [3820] = {.lex_state = 271}, - [3821] = {.lex_state = 280}, - [3822] = {.lex_state = 334}, - [3823] = {.lex_state = 321}, - [3824] = {.lex_state = 333}, - [3825] = {.lex_state = 334}, - [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}, - [3833] = {.lex_state = 271}, - [3834] = {.lex_state = 271}, - [3835] = {.lex_state = 280}, - [3836] = {.lex_state = 280}, - [3837] = {.lex_state = 271}, - [3838] = {.lex_state = 252}, - [3839] = {.lex_state = 280}, - [3840] = {.lex_state = 271}, - [3841] = {.lex_state = 271}, - [3842] = {.lex_state = 280}, - [3843] = {.lex_state = 258}, - [3844] = {.lex_state = 271}, - [3845] = {.lex_state = 271}, - [3846] = {.lex_state = 277}, - [3847] = {.lex_state = 271}, - [3848] = {.lex_state = 271}, - [3849] = {.lex_state = 271}, - [3850] = {.lex_state = 271}, - [3851] = {.lex_state = 271}, - [3852] = {.lex_state = 271}, - [3853] = {.lex_state = 271}, - [3854] = {.lex_state = 271}, - [3855] = {.lex_state = 280}, - [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}, - [3864] = {.lex_state = 271}, - [3865] = {.lex_state = 280}, - [3866] = {.lex_state = 271}, - [3867] = {.lex_state = 245}, - [3868] = {.lex_state = 245}, - [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}, - [3878] = {.lex_state = 271}, - [3879] = {.lex_state = 252}, - [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}, - [3894] = {.lex_state = 271}, - [3895] = {.lex_state = 271}, - [3896] = {.lex_state = 271}, - [3897] = {.lex_state = 252}, - [3898] = {.lex_state = 271}, - [3899] = {.lex_state = 271}, - [3900] = {.lex_state = 271}, - [3901] = {.lex_state = 280}, - [3902] = {.lex_state = 277}, - [3903] = {.lex_state = 271}, - [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}, - [3911] = {.lex_state = 271}, - [3912] = {.lex_state = 271}, - [3913] = {.lex_state = 271}, - [3914] = {.lex_state = 271}, - [3915] = {.lex_state = 271}, - [3916] = {.lex_state = 280}, - [3917] = {.lex_state = 280}, - [3918] = {.lex_state = 271}, - [3919] = {.lex_state = 271}, - [3920] = {.lex_state = 271}, - [3921] = {.lex_state = 271}, - [3922] = {.lex_state = 271}, - [3923] = {.lex_state = 271}, - [3924] = {.lex_state = 271}, - [3925] = {.lex_state = 271}, - [3926] = {.lex_state = 271}, - [3927] = {.lex_state = 280}, - [3928] = {.lex_state = 271}, - [3929] = {.lex_state = 271}, - [3930] = {.lex_state = 271}, - [3931] = {.lex_state = 271}, - [3932] = {.lex_state = 271}, - [3933] = {.lex_state = 271}, - [3934] = {.lex_state = 280}, - [3935] = {.lex_state = 280}, - [3936] = {.lex_state = 280}, - [3937] = {.lex_state = 271}, - [3938] = {.lex_state = 271}, - [3939] = {.lex_state = 271}, - [3940] = {.lex_state = 252}, - [3941] = {.lex_state = 271}, - [3942] = {.lex_state = 280}, - [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}, - [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}, + [2388] = {.lex_state = 309}, + [2389] = {.lex_state = 312}, + [2390] = {.lex_state = 293}, + [2391] = {.lex_state = 312}, + [2392] = {.lex_state = 309}, + [2393] = {.lex_state = 312}, + [2394] = {.lex_state = 342}, + [2395] = {.lex_state = 299}, + [2396] = {.lex_state = 309}, + [2397] = {.lex_state = 342}, + [2398] = {.lex_state = 342}, + [2399] = {.lex_state = 309}, + [2400] = {.lex_state = 288}, + [2401] = {.lex_state = 287}, + [2402] = {.lex_state = 287}, + [2403] = {.lex_state = 287}, + [2404] = {.lex_state = 293}, + [2405] = {.lex_state = 287}, + [2406] = {.lex_state = 287}, + [2407] = {.lex_state = 312}, + [2408] = {.lex_state = 321}, + [2409] = {.lex_state = 287}, + [2410] = {.lex_state = 287}, + [2411] = {.lex_state = 325}, + [2412] = {.lex_state = 287}, + [2413] = {.lex_state = 287}, + [2414] = {.lex_state = 287}, + [2415] = {.lex_state = 312}, + [2416] = {.lex_state = 293}, + [2417] = {.lex_state = 287}, + [2418] = {.lex_state = 312}, + [2419] = {.lex_state = 326}, + [2420] = {.lex_state = 325}, + [2421] = {.lex_state = 287}, + [2422] = {.lex_state = 328}, + [2423] = {.lex_state = 287}, + [2424] = {.lex_state = 287}, + [2425] = {.lex_state = 287}, + [2426] = {.lex_state = 326}, + [2427] = {.lex_state = 287}, + [2428] = {.lex_state = 299}, + [2429] = {.lex_state = 321}, + [2430] = {.lex_state = 302}, + [2431] = {.lex_state = 299}, + [2432] = {.lex_state = 299}, + [2433] = {.lex_state = 299}, + [2434] = {.lex_state = 328}, + [2435] = {.lex_state = 328}, + [2436] = {.lex_state = 287}, + [2437] = {.lex_state = 299}, + [2438] = {.lex_state = 299}, + [2439] = {.lex_state = 299}, + [2440] = {.lex_state = 291}, + [2441] = {.lex_state = 343}, + [2442] = {.lex_state = 325}, + [2443] = {.lex_state = 328}, + [2444] = {.lex_state = 350}, + [2445] = {.lex_state = 362}, + [2446] = {.lex_state = 300}, + [2447] = {.lex_state = 291}, + [2448] = {.lex_state = 328}, + [2449] = {.lex_state = 350}, + [2450] = {.lex_state = 328}, + [2451] = {.lex_state = 321}, + [2452] = {.lex_state = 326}, + [2453] = {.lex_state = 299}, + [2454] = {.lex_state = 321}, + [2455] = {.lex_state = 328}, + [2456] = {.lex_state = 321}, + [2457] = {.lex_state = 302}, + [2458] = {.lex_state = 326}, + [2459] = {.lex_state = 321}, + [2460] = {.lex_state = 343}, + [2461] = {.lex_state = 328}, + [2462] = {.lex_state = 321}, + [2463] = {.lex_state = 328}, + [2464] = {.lex_state = 299}, + [2465] = {.lex_state = 300}, + [2466] = {.lex_state = 287}, + [2467] = {.lex_state = 321}, + [2468] = {.lex_state = 328}, + [2469] = {.lex_state = 299}, + [2470] = {.lex_state = 313}, + [2471] = {.lex_state = 291}, + [2472] = {.lex_state = 321}, + [2473] = {.lex_state = 325}, + [2474] = {.lex_state = 321}, + [2475] = {.lex_state = 321}, + [2476] = {.lex_state = 328}, + [2477] = {.lex_state = 291}, + [2478] = {.lex_state = 291}, + [2479] = {.lex_state = 328}, + [2480] = {.lex_state = 328}, + [2481] = {.lex_state = 291}, + [2482] = {.lex_state = 321}, + [2483] = {.lex_state = 328}, + [2484] = {.lex_state = 321}, + [2485] = {.lex_state = 321}, + [2486] = {.lex_state = 299}, + [2487] = {.lex_state = 328}, + [2488] = {.lex_state = 321}, + [2489] = {.lex_state = 300}, + [2490] = {.lex_state = 328}, + [2491] = {.lex_state = 321}, + [2492] = {.lex_state = 328}, + [2493] = {.lex_state = 299}, + [2494] = {.lex_state = 321}, + [2495] = {.lex_state = 309}, + [2496] = {.lex_state = 299}, + [2497] = {.lex_state = 302}, + [2498] = {.lex_state = 288}, + [2499] = {.lex_state = 309}, + [2500] = {.lex_state = 293}, + [2501] = {.lex_state = 287}, + [2502] = {.lex_state = 288}, + [2503] = {.lex_state = 312}, + [2504] = {.lex_state = 287}, + [2505] = {.lex_state = 321}, + [2506] = {.lex_state = 313}, + [2507] = {.lex_state = 321}, + [2508] = {.lex_state = 312}, + [2509] = {.lex_state = 328}, + [2510] = {.lex_state = 328}, + [2511] = {.lex_state = 309}, + [2512] = {.lex_state = 313}, + [2513] = {.lex_state = 309}, + [2514] = {.lex_state = 313}, + [2515] = {.lex_state = 309}, + [2516] = {.lex_state = 309}, + [2517] = {.lex_state = 309}, + [2518] = {.lex_state = 309}, + [2519] = {.lex_state = 309}, + [2520] = {.lex_state = 309}, + [2521] = {.lex_state = 299}, + [2522] = {.lex_state = 299}, + [2523] = {.lex_state = 299}, + [2524] = {.lex_state = 299}, + [2525] = {.lex_state = 299}, + [2526] = {.lex_state = 287}, + [2527] = {.lex_state = 287}, + [2528] = {.lex_state = 287}, + [2529] = {.lex_state = 287}, + [2530] = {.lex_state = 287}, + [2531] = {.lex_state = 287}, + [2532] = {.lex_state = 287}, + [2533] = {.lex_state = 288}, + [2534] = {.lex_state = 299}, + [2535] = {.lex_state = 287}, + [2536] = {.lex_state = 287}, + [2537] = {.lex_state = 288}, + [2538] = {.lex_state = 324}, + [2539] = {.lex_state = 324}, + [2540] = {.lex_state = 287}, + [2541] = {.lex_state = 287}, + [2542] = {.lex_state = 287}, + [2543] = {.lex_state = 321}, + [2544] = {.lex_state = 287}, + [2545] = {.lex_state = 287}, + [2546] = {.lex_state = 293}, + [2547] = {.lex_state = 287}, + [2548] = {.lex_state = 287}, + [2549] = {.lex_state = 312}, + [2550] = {.lex_state = 309}, + [2551] = {.lex_state = 292}, + [2552] = {.lex_state = 312}, + [2553] = {.lex_state = 288}, + [2554] = {.lex_state = 328}, + [2555] = {.lex_state = 324}, + [2556] = {.lex_state = 292}, + [2557] = {.lex_state = 292}, + [2558] = {.lex_state = 299}, + [2559] = {.lex_state = 287}, + [2560] = {.lex_state = 346}, + [2561] = {.lex_state = 346}, + [2562] = {.lex_state = 287}, + [2563] = {.lex_state = 346}, + [2564] = {.lex_state = 346}, + [2565] = {.lex_state = 348}, + [2566] = {.lex_state = 348}, + [2567] = {.lex_state = 348}, + [2568] = {.lex_state = 348}, + [2569] = {.lex_state = 348}, + [2570] = {.lex_state = 346}, + [2571] = {.lex_state = 348}, + [2572] = {.lex_state = 287}, + [2573] = {.lex_state = 313}, + [2574] = {.lex_state = 287}, + [2575] = {.lex_state = 287}, + [2576] = {.lex_state = 287}, + [2577] = {.lex_state = 287}, + [2578] = {.lex_state = 287}, + [2579] = {.lex_state = 287}, + [2580] = {.lex_state = 287}, + [2581] = {.lex_state = 287}, + [2582] = {.lex_state = 316}, + [2583] = {.lex_state = 287}, + [2584] = {.lex_state = 287}, + [2585] = {.lex_state = 287}, + [2586] = {.lex_state = 287}, + [2587] = {.lex_state = 287}, + [2588] = {.lex_state = 287}, + [2589] = {.lex_state = 287}, + [2590] = {.lex_state = 287}, + [2591] = {.lex_state = 316}, + [2592] = {.lex_state = 287}, + [2593] = {.lex_state = 346}, + [2594] = {.lex_state = 321}, + [2595] = {.lex_state = 292}, + [2596] = {.lex_state = 328}, + [2597] = {.lex_state = 328}, + [2598] = {.lex_state = 321}, + [2599] = {.lex_state = 321}, + [2600] = {.lex_state = 287}, + [2601] = {.lex_state = 321}, + [2602] = {.lex_state = 321}, + [2603] = {.lex_state = 321}, + [2604] = {.lex_state = 321}, + [2605] = {.lex_state = 287}, + [2606] = {.lex_state = 321}, + [2607] = {.lex_state = 332}, + [2608] = {.lex_state = 321}, + [2609] = {.lex_state = 321}, + [2610] = {.lex_state = 287}, + [2611] = {.lex_state = 332}, + [2612] = {.lex_state = 287}, + [2613] = {.lex_state = 321}, + [2614] = {.lex_state = 316}, + [2615] = {.lex_state = 328}, + [2616] = {.lex_state = 328}, + [2617] = {.lex_state = 328}, + [2618] = {.lex_state = 321}, + [2619] = {.lex_state = 321}, + [2620] = {.lex_state = 321}, + [2621] = {.lex_state = 321}, + [2622] = {.lex_state = 321}, + [2623] = {.lex_state = 321}, + [2624] = {.lex_state = 336}, + [2625] = {.lex_state = 328}, + [2626] = {.lex_state = 328}, + [2627] = {.lex_state = 328}, + [2628] = {.lex_state = 336}, + [2629] = {.lex_state = 328}, + [2630] = {.lex_state = 328}, + [2631] = {.lex_state = 328}, + [2632] = {.lex_state = 328}, + [2633] = {.lex_state = 328}, + [2634] = {.lex_state = 328}, + [2635] = {.lex_state = 328}, + [2636] = {.lex_state = 328}, + [2637] = {.lex_state = 328}, + [2638] = {.lex_state = 328}, + [2639] = {.lex_state = 321}, + [2640] = {.lex_state = 328}, + [2641] = {.lex_state = 321}, + [2642] = {.lex_state = 321}, + [2643] = {.lex_state = 299}, + [2644] = {.lex_state = 299}, + [2645] = {.lex_state = 299}, + [2646] = {.lex_state = 299}, + [2647] = {.lex_state = 299}, + [2648] = {.lex_state = 299}, + [2649] = {.lex_state = 300}, + [2650] = {.lex_state = 299}, + [2651] = {.lex_state = 300}, + [2652] = {.lex_state = 300}, + [2653] = {.lex_state = 300}, + [2654] = {.lex_state = 299}, + [2655] = {.lex_state = 362}, + [2656] = {.lex_state = 287}, + [2657] = {.lex_state = 324}, + [2658] = {.lex_state = 287}, + [2659] = {.lex_state = 328}, + [2660] = {.lex_state = 328}, + [2661] = {.lex_state = 287}, + [2662] = {.lex_state = 313}, + [2663] = {.lex_state = 299}, + [2664] = {.lex_state = 287}, + [2665] = {.lex_state = 287}, + [2666] = {.lex_state = 299}, + [2667] = {.lex_state = 299}, + [2668] = {.lex_state = 313}, + [2669] = {.lex_state = 299}, + [2670] = {.lex_state = 336}, + [2671] = {.lex_state = 299}, + [2672] = {.lex_state = 321}, + [2673] = {.lex_state = 309}, + [2674] = {.lex_state = 313}, + [2675] = {.lex_state = 299}, + [2676] = {.lex_state = 313}, + [2677] = {.lex_state = 287}, + [2678] = {.lex_state = 255}, + [2679] = {.lex_state = 287}, + [2680] = {.lex_state = 313}, + [2681] = {.lex_state = 287}, + [2682] = {.lex_state = 287}, + [2683] = {.lex_state = 313}, + [2684] = {.lex_state = 313}, + [2685] = {.lex_state = 328}, + [2686] = {.lex_state = 328}, + [2687] = {.lex_state = 299}, + [2688] = {.lex_state = 288}, + [2689] = {.lex_state = 313}, + [2690] = {.lex_state = 288}, + [2691] = {.lex_state = 287}, + [2692] = {.lex_state = 299}, + [2693] = {.lex_state = 299}, + [2694] = {.lex_state = 299}, + [2695] = {.lex_state = 313}, + [2696] = {.lex_state = 321}, + [2697] = {.lex_state = 299}, + [2698] = {.lex_state = 299}, + [2699] = {.lex_state = 313}, + [2700] = {.lex_state = 321}, + [2701] = {.lex_state = 299}, + [2702] = {.lex_state = 255}, + [2703] = {.lex_state = 321}, + [2704] = {.lex_state = 328}, + [2705] = {.lex_state = 332}, + [2706] = {.lex_state = 299}, + [2707] = {.lex_state = 287}, + [2708] = {.lex_state = 287}, + [2709] = {.lex_state = 313}, + [2710] = {.lex_state = 288}, + [2711] = {.lex_state = 362}, + [2712] = {.lex_state = 287}, + [2713] = {.lex_state = 287}, + [2714] = {.lex_state = 287}, + [2715] = {.lex_state = 287}, + [2716] = {.lex_state = 287}, + [2717] = {.lex_state = 342}, + [2718] = {.lex_state = 328}, + [2719] = {.lex_state = 328}, + [2720] = {.lex_state = 328}, + [2721] = {.lex_state = 328}, + [2722] = {.lex_state = 316}, + [2723] = {.lex_state = 328}, + [2724] = {.lex_state = 328}, + [2725] = {.lex_state = 324}, + [2726] = {.lex_state = 328}, + [2727] = {.lex_state = 328}, + [2728] = {.lex_state = 328}, + [2729] = {.lex_state = 328}, + [2730] = {.lex_state = 328}, + [2731] = {.lex_state = 287}, + [2732] = {.lex_state = 328}, + [2733] = {.lex_state = 328}, + [2734] = {.lex_state = 316}, + [2735] = {.lex_state = 262}, + [2736] = {.lex_state = 313}, + [2737] = {.lex_state = 346}, + [2738] = {.lex_state = 302}, + [2739] = {.lex_state = 316}, + [2740] = {.lex_state = 346}, + [2741] = {.lex_state = 321}, + [2742] = {.lex_state = 321}, + [2743] = {.lex_state = 324}, + [2744] = {.lex_state = 287}, + [2745] = {.lex_state = 287}, + [2746] = {.lex_state = 321}, + [2747] = {.lex_state = 321}, + [2748] = {.lex_state = 292}, + [2749] = {.lex_state = 321}, + [2750] = {.lex_state = 321}, + [2751] = {.lex_state = 287}, + [2752] = {.lex_state = 313}, + [2753] = {.lex_state = 287}, + [2754] = {.lex_state = 287}, + [2755] = {.lex_state = 287}, + [2756] = {.lex_state = 313}, + [2757] = {.lex_state = 287}, + [2758] = {.lex_state = 287}, + [2759] = {.lex_state = 287}, + [2760] = {.lex_state = 321}, + [2761] = {.lex_state = 287}, + [2762] = {.lex_state = 324}, + [2763] = {.lex_state = 324}, + [2764] = {.lex_state = 313}, + [2765] = {.lex_state = 292}, + [2766] = {.lex_state = 342}, + [2767] = {.lex_state = 321}, + [2768] = {.lex_state = 287}, + [2769] = {.lex_state = 321}, + [2770] = {.lex_state = 321}, + [2771] = {.lex_state = 342}, + [2772] = {.lex_state = 321}, + [2773] = {.lex_state = 291}, + [2774] = {.lex_state = 328}, + [2775] = {.lex_state = 324}, + [2776] = {.lex_state = 292}, + [2777] = {.lex_state = 287}, + [2778] = {.lex_state = 321}, + [2779] = {.lex_state = 291}, + [2780] = {.lex_state = 292}, + [2781] = {.lex_state = 313}, + [2782] = {.lex_state = 292}, + [2783] = {.lex_state = 288}, + [2784] = {.lex_state = 288}, + [2785] = {.lex_state = 288}, + [2786] = {.lex_state = 287}, + [2787] = {.lex_state = 342}, + [2788] = {.lex_state = 321}, + [2789] = {.lex_state = 321}, + [2790] = {.lex_state = 287}, + [2791] = {.lex_state = 258}, + [2792] = {.lex_state = 287}, + [2793] = {.lex_state = 346}, + [2794] = {.lex_state = 348}, + [2795] = {.lex_state = 348}, + [2796] = {.lex_state = 292}, + [2797] = {.lex_state = 342}, + [2798] = {.lex_state = 287}, + [2799] = {.lex_state = 287}, + [2800] = {.lex_state = 302}, + [2801] = {.lex_state = 342}, + [2802] = {.lex_state = 302}, + [2803] = {.lex_state = 299}, + [2804] = {.lex_state = 324}, + [2805] = {.lex_state = 348}, + [2806] = {.lex_state = 348}, + [2807] = {.lex_state = 309}, + [2808] = {.lex_state = 292}, + [2809] = {.lex_state = 342}, + [2810] = {.lex_state = 342}, + [2811] = {.lex_state = 287}, + [2812] = {.lex_state = 342}, + [2813] = {.lex_state = 342}, + [2814] = {.lex_state = 342}, + [2815] = {.lex_state = 342}, + [2816] = {.lex_state = 342}, + [2817] = {.lex_state = 287}, + [2818] = {.lex_state = 287}, + [2819] = {.lex_state = 287}, + [2820] = {.lex_state = 287}, + [2821] = {.lex_state = 287}, + [2822] = {.lex_state = 324}, + [2823] = {.lex_state = 348}, + [2824] = {.lex_state = 324}, + [2825] = {.lex_state = 346}, + [2826] = {.lex_state = 292}, + [2827] = {.lex_state = 299}, + [2828] = {.lex_state = 316}, + [2829] = {.lex_state = 299}, + [2830] = {.lex_state = 346}, + [2831] = {.lex_state = 346}, + [2832] = {.lex_state = 287}, + [2833] = {.lex_state = 348}, + [2834] = {.lex_state = 287}, + [2835] = {.lex_state = 287}, + [2836] = {.lex_state = 287}, + [2837] = {.lex_state = 328}, + [2838] = {.lex_state = 324}, + [2839] = {.lex_state = 321}, + [2840] = {.lex_state = 291}, + [2841] = {.lex_state = 328}, + [2842] = {.lex_state = 291}, + [2843] = {.lex_state = 292}, + [2844] = {.lex_state = 321}, + [2845] = {.lex_state = 321}, + [2846] = {.lex_state = 309}, + [2847] = {.lex_state = 328}, + [2848] = {.lex_state = 299}, + [2849] = {.lex_state = 264}, + [2850] = {.lex_state = 309}, + [2851] = {.lex_state = 332}, + [2852] = {.lex_state = 328}, + [2853] = {.lex_state = 328}, + [2854] = {.lex_state = 321}, + [2855] = {.lex_state = 328}, + [2856] = {.lex_state = 264}, + [2857] = {.lex_state = 316}, + [2858] = {.lex_state = 302}, + [2859] = {.lex_state = 299}, + [2860] = {.lex_state = 321}, + [2861] = {.lex_state = 321}, + [2862] = {.lex_state = 309}, + [2863] = {.lex_state = 336}, + [2864] = {.lex_state = 328}, + [2865] = {.lex_state = 311}, + [2866] = {.lex_state = 362}, + [2867] = {.lex_state = 311}, + [2868] = {.lex_state = 287}, + [2869] = {.lex_state = 328}, + [2870] = {.lex_state = 362}, + [2871] = {.lex_state = 363}, + [2872] = {.lex_state = 299}, + [2873] = {.lex_state = 299}, + [2874] = {.lex_state = 321}, + [2875] = {.lex_state = 336}, + [2876] = {.lex_state = 287}, + [2877] = {.lex_state = 287}, + [2878] = {.lex_state = 299}, + [2879] = {.lex_state = 324}, + [2880] = {.lex_state = 321}, + [2881] = {.lex_state = 332}, + [2882] = {.lex_state = 363}, + [2883] = {.lex_state = 309}, + [2884] = {.lex_state = 264}, + [2885] = {.lex_state = 316}, + [2886] = {.lex_state = 291}, + [2887] = {.lex_state = 316}, + [2888] = {.lex_state = 291}, + [2889] = {.lex_state = 324}, + [2890] = {.lex_state = 287}, + [2891] = {.lex_state = 324}, + [2892] = {.lex_state = 292}, + [2893] = {.lex_state = 292}, + [2894] = {.lex_state = 292}, + [2895] = {.lex_state = 287}, + [2896] = {.lex_state = 287}, + [2897] = {.lex_state = 287}, + [2898] = {.lex_state = 287}, + [2899] = {.lex_state = 287}, + [2900] = {.lex_state = 287}, + [2901] = {.lex_state = 287}, + [2902] = {.lex_state = 313}, + [2903] = {.lex_state = 287}, + [2904] = {.lex_state = 313}, + [2905] = {.lex_state = 287}, + [2906] = {.lex_state = 287}, + [2907] = {.lex_state = 287}, + [2908] = {.lex_state = 287}, + [2909] = {.lex_state = 287}, + [2910] = {.lex_state = 287}, + [2911] = {.lex_state = 287}, + [2912] = {.lex_state = 287}, + [2913] = {.lex_state = 313}, + [2914] = {.lex_state = 287}, + [2915] = {.lex_state = 332}, + [2916] = {.lex_state = 299}, + [2917] = {.lex_state = 287}, + [2918] = {.lex_state = 287}, + [2919] = {.lex_state = 287}, + [2920] = {.lex_state = 287}, + [2921] = {.lex_state = 313}, + [2922] = {.lex_state = 309}, + [2923] = {.lex_state = 287}, + [2924] = {.lex_state = 287}, + [2925] = {.lex_state = 342}, + [2926] = {.lex_state = 299}, + [2927] = {.lex_state = 287}, + [2928] = {.lex_state = 287}, + [2929] = {.lex_state = 287}, + [2930] = {.lex_state = 299}, + [2931] = {.lex_state = 287}, + [2932] = {.lex_state = 287}, + [2933] = {.lex_state = 313}, + [2934] = {.lex_state = 287}, + [2935] = {.lex_state = 287}, + [2936] = {.lex_state = 287}, + [2937] = {.lex_state = 287}, + [2938] = {.lex_state = 299}, + [2939] = {.lex_state = 287}, + [2940] = {.lex_state = 287}, + [2941] = {.lex_state = 287}, + [2942] = {.lex_state = 287}, + [2943] = {.lex_state = 287}, + [2944] = {.lex_state = 313}, + [2945] = {.lex_state = 299}, + [2946] = {.lex_state = 287}, + [2947] = {.lex_state = 287}, + [2948] = {.lex_state = 287}, + [2949] = {.lex_state = 287}, + [2950] = {.lex_state = 332}, + [2951] = {.lex_state = 287}, + [2952] = {.lex_state = 288}, + [2953] = {.lex_state = 287}, + [2954] = {.lex_state = 313}, + [2955] = {.lex_state = 336}, + [2956] = {.lex_state = 287}, + [2957] = {.lex_state = 287}, + [2958] = {.lex_state = 313}, + [2959] = {.lex_state = 287}, + [2960] = {.lex_state = 336}, + [2961] = {.lex_state = 287}, + [2962] = {.lex_state = 287}, + [2963] = {.lex_state = 287}, + [2964] = {.lex_state = 287}, + [2965] = {.lex_state = 287}, + [2966] = {.lex_state = 287}, + [2967] = {.lex_state = 287}, + [2968] = {.lex_state = 287}, + [2969] = {.lex_state = 287}, + [2970] = {.lex_state = 287}, + [2971] = {.lex_state = 287}, + [2972] = {.lex_state = 287}, + [2973] = {.lex_state = 287}, + [2974] = {.lex_state = 328}, + [2975] = {.lex_state = 309}, + [2976] = {.lex_state = 302}, + [2977] = {.lex_state = 299}, + [2978] = {.lex_state = 258}, + [2979] = {.lex_state = 321}, + [2980] = {.lex_state = 321}, + [2981] = {.lex_state = 321}, + [2982] = {.lex_state = 287}, + [2983] = {.lex_state = 287}, + [2984] = {.lex_state = 321}, + [2985] = {.lex_state = 321}, + [2986] = {.lex_state = 321}, + [2987] = {.lex_state = 321}, + [2988] = {.lex_state = 321}, + [2989] = {.lex_state = 321}, + [2990] = {.lex_state = 287}, + [2991] = {.lex_state = 321}, + [2992] = {.lex_state = 316}, + [2993] = {.lex_state = 321}, + [2994] = {.lex_state = 321}, + [2995] = {.lex_state = 321}, + [2996] = {.lex_state = 321}, + [2997] = {.lex_state = 321}, + [2998] = {.lex_state = 321}, + [2999] = {.lex_state = 321}, + [3000] = {.lex_state = 321}, + [3001] = {.lex_state = 321}, + [3002] = {.lex_state = 299}, + [3003] = {.lex_state = 321}, + [3004] = {.lex_state = 321}, + [3005] = {.lex_state = 321}, + [3006] = {.lex_state = 321}, + [3007] = {.lex_state = 321}, + [3008] = {.lex_state = 321}, + [3009] = {.lex_state = 321}, + [3010] = {.lex_state = 321}, + [3011] = {.lex_state = 321}, + [3012] = {.lex_state = 321}, + [3013] = {.lex_state = 321}, + [3014] = {.lex_state = 321}, + [3015] = {.lex_state = 321}, + [3016] = {.lex_state = 321}, + [3017] = {.lex_state = 321}, + [3018] = {.lex_state = 321}, + [3019] = {.lex_state = 287}, + [3020] = {.lex_state = 313}, + [3021] = {.lex_state = 313}, + [3022] = {.lex_state = 302}, + [3023] = {.lex_state = 299}, + [3024] = {.lex_state = 299}, + [3025] = {.lex_state = 316}, + [3026] = {.lex_state = 321}, + [3027] = {.lex_state = 302}, + [3028] = {.lex_state = 321}, + [3029] = {.lex_state = 302}, + [3030] = {.lex_state = 309}, + [3031] = {.lex_state = 321}, + [3032] = {.lex_state = 299}, + [3033] = {.lex_state = 309}, + [3034] = {.lex_state = 328}, + [3035] = {.lex_state = 328}, + [3036] = {.lex_state = 328}, + [3037] = {.lex_state = 299}, + [3038] = {.lex_state = 346}, + [3039] = {.lex_state = 328}, + [3040] = {.lex_state = 328}, + [3041] = {.lex_state = 328}, + [3042] = {.lex_state = 328}, + [3043] = {.lex_state = 328}, + [3044] = {.lex_state = 328}, + [3045] = {.lex_state = 328}, + [3046] = {.lex_state = 328}, + [3047] = {.lex_state = 328}, + [3048] = {.lex_state = 328}, + [3049] = {.lex_state = 328}, + [3050] = {.lex_state = 328}, + [3051] = {.lex_state = 328}, + [3052] = {.lex_state = 328}, + [3053] = {.lex_state = 302}, + [3054] = {.lex_state = 328}, + [3055] = {.lex_state = 328}, + [3056] = {.lex_state = 258}, + [3057] = {.lex_state = 328}, + [3058] = {.lex_state = 328}, + [3059] = {.lex_state = 328}, + [3060] = {.lex_state = 328}, + [3061] = {.lex_state = 328}, + [3062] = {.lex_state = 287}, + [3063] = {.lex_state = 328}, + [3064] = {.lex_state = 328}, + [3065] = {.lex_state = 328}, + [3066] = {.lex_state = 328}, + [3067] = {.lex_state = 328}, + [3068] = {.lex_state = 328}, + [3069] = {.lex_state = 328}, + [3070] = {.lex_state = 328}, + [3071] = {.lex_state = 328}, + [3072] = {.lex_state = 321}, + [3073] = {.lex_state = 321}, + [3074] = {.lex_state = 321}, + [3075] = {.lex_state = 321}, + [3076] = {.lex_state = 321}, + [3077] = {.lex_state = 309}, + [3078] = {.lex_state = 321}, + [3079] = {.lex_state = 309}, + [3080] = {.lex_state = 321}, + [3081] = {.lex_state = 299}, + [3082] = {.lex_state = 328}, + [3083] = {.lex_state = 328}, + [3084] = {.lex_state = 328}, + [3085] = {.lex_state = 313}, + [3086] = {.lex_state = 313}, + [3087] = {.lex_state = 299}, + [3088] = {.lex_state = 309}, + [3089] = {.lex_state = 328}, + [3090] = {.lex_state = 328}, + [3091] = {.lex_state = 287}, + [3092] = {.lex_state = 346}, + [3093] = {.lex_state = 309}, + [3094] = {.lex_state = 287}, + [3095] = {.lex_state = 299}, + [3096] = {.lex_state = 299}, + [3097] = {.lex_state = 299}, + [3098] = {.lex_state = 299}, + [3099] = {.lex_state = 328}, + [3100] = {.lex_state = 287}, + [3101] = {.lex_state = 328}, + [3102] = {.lex_state = 299}, + [3103] = {.lex_state = 299}, + [3104] = {.lex_state = 299}, + [3105] = {.lex_state = 367}, + [3106] = {.lex_state = 367}, + [3107] = {.lex_state = 302}, + [3108] = {.lex_state = 299}, + [3109] = {.lex_state = 299}, + [3110] = {.lex_state = 299}, + [3111] = {.lex_state = 287}, + [3112] = {.lex_state = 287}, + [3113] = {.lex_state = 299}, + [3114] = {.lex_state = 299}, + [3115] = {.lex_state = 287}, + [3116] = {.lex_state = 299}, + [3117] = {.lex_state = 299}, + [3118] = {.lex_state = 303}, + [3119] = {.lex_state = 299}, + [3120] = {.lex_state = 299}, + [3121] = {.lex_state = 299}, + [3122] = {.lex_state = 299}, + [3123] = {.lex_state = 287}, + [3124] = {.lex_state = 287}, + [3125] = {.lex_state = 299}, + [3126] = {.lex_state = 299}, + [3127] = {.lex_state = 287}, + [3128] = {.lex_state = 309}, + [3129] = {.lex_state = 299}, + [3130] = {.lex_state = 299}, + [3131] = {.lex_state = 309}, + [3132] = {.lex_state = 309}, + [3133] = {.lex_state = 309}, + [3134] = {.lex_state = 309}, + [3135] = {.lex_state = 309}, + [3136] = {.lex_state = 328}, + [3137] = {.lex_state = 328}, + [3138] = {.lex_state = 328}, + [3139] = {.lex_state = 299}, + [3140] = {.lex_state = 299}, + [3141] = {.lex_state = 309}, + [3142] = {.lex_state = 309}, + [3143] = {.lex_state = 309}, + [3144] = {.lex_state = 309}, + [3145] = {.lex_state = 309}, + [3146] = {.lex_state = 309}, + [3147] = {.lex_state = 309}, + [3148] = {.lex_state = 299}, + [3149] = {.lex_state = 299}, + [3150] = {.lex_state = 309}, + [3151] = {.lex_state = 299}, + [3152] = {.lex_state = 309}, + [3153] = {.lex_state = 299}, + [3154] = {.lex_state = 309}, + [3155] = {.lex_state = 299}, + [3156] = {.lex_state = 309}, + [3157] = {.lex_state = 299}, + [3158] = {.lex_state = 309}, + [3159] = {.lex_state = 309}, + [3160] = {.lex_state = 321}, + [3161] = {.lex_state = 309}, + [3162] = {.lex_state = 309}, + [3163] = {.lex_state = 309}, + [3164] = {.lex_state = 309}, + [3165] = {.lex_state = 309}, + [3166] = {.lex_state = 309}, + [3167] = {.lex_state = 309}, + [3168] = {.lex_state = 309}, + [3169] = {.lex_state = 309}, + [3170] = {.lex_state = 309}, + [3171] = {.lex_state = 309}, + [3172] = {.lex_state = 309}, + [3173] = {.lex_state = 309}, + [3174] = {.lex_state = 321}, + [3175] = {.lex_state = 309}, + [3176] = {.lex_state = 264}, + [3177] = {.lex_state = 309}, + [3178] = {.lex_state = 309}, + [3179] = {.lex_state = 299}, + [3180] = {.lex_state = 299}, + [3181] = {.lex_state = 309}, + [3182] = {.lex_state = 321}, + [3183] = {.lex_state = 264}, + [3184] = {.lex_state = 309}, + [3185] = {.lex_state = 309}, + [3186] = {.lex_state = 321}, + [3187] = {.lex_state = 309}, + [3188] = {.lex_state = 309}, + [3189] = {.lex_state = 309}, + [3190] = {.lex_state = 309}, + [3191] = {.lex_state = 299}, + [3192] = {.lex_state = 299}, + [3193] = {.lex_state = 309}, + [3194] = {.lex_state = 309}, + [3195] = {.lex_state = 309}, + [3196] = {.lex_state = 309}, + [3197] = {.lex_state = 309}, + [3198] = {.lex_state = 309}, + [3199] = {.lex_state = 328}, + [3200] = {.lex_state = 328}, + [3201] = {.lex_state = 328}, + [3202] = {.lex_state = 309}, + [3203] = {.lex_state = 309}, + [3204] = {.lex_state = 341}, + [3205] = {.lex_state = 341}, + [3206] = {.lex_state = 309}, + [3207] = {.lex_state = 341}, + [3208] = {.lex_state = 299}, + [3209] = {.lex_state = 309}, + [3210] = {.lex_state = 309}, + [3211] = {.lex_state = 309}, + [3212] = {.lex_state = 309}, + [3213] = {.lex_state = 309}, + [3214] = {.lex_state = 309}, + [3215] = {.lex_state = 362}, + [3216] = {.lex_state = 299}, + [3217] = {.lex_state = 309}, + [3218] = {.lex_state = 309}, + [3219] = {.lex_state = 309}, + [3220] = {.lex_state = 309}, + [3221] = {.lex_state = 309}, + [3222] = {.lex_state = 309}, + [3223] = {.lex_state = 309}, + [3224] = {.lex_state = 264}, + [3225] = {.lex_state = 299}, + [3226] = {.lex_state = 299}, + [3227] = {.lex_state = 309}, + [3228] = {.lex_state = 309}, + [3229] = {.lex_state = 309}, + [3230] = {.lex_state = 321}, + [3231] = {.lex_state = 299}, + [3232] = {.lex_state = 309}, + [3233] = {.lex_state = 299}, + [3234] = {.lex_state = 299}, + [3235] = {.lex_state = 309}, + [3236] = {.lex_state = 309}, + [3237] = {.lex_state = 309}, + [3238] = {.lex_state = 309}, + [3239] = {.lex_state = 299}, + [3240] = {.lex_state = 288}, + [3241] = {.lex_state = 309}, + [3242] = {.lex_state = 309}, + [3243] = {.lex_state = 309}, + [3244] = {.lex_state = 309}, + [3245] = {.lex_state = 362}, + [3246] = {.lex_state = 299}, + [3247] = {.lex_state = 309}, + [3248] = {.lex_state = 309}, + [3249] = {.lex_state = 309}, + [3250] = {.lex_state = 299}, + [3251] = {.lex_state = 299}, + [3252] = {.lex_state = 299}, + [3253] = {.lex_state = 299}, + [3254] = {.lex_state = 299}, + [3255] = {.lex_state = 299}, + [3256] = {.lex_state = 309}, + [3257] = {.lex_state = 309}, + [3258] = {.lex_state = 341}, + [3259] = {.lex_state = 309}, + [3260] = {.lex_state = 299}, + [3261] = {.lex_state = 309}, + [3262] = {.lex_state = 291}, + [3263] = {.lex_state = 309}, + [3264] = {.lex_state = 309}, + [3265] = {.lex_state = 299}, + [3266] = {.lex_state = 299}, + [3267] = {.lex_state = 309}, + [3268] = {.lex_state = 341}, + [3269] = {.lex_state = 341}, + [3270] = {.lex_state = 341}, + [3271] = {.lex_state = 309}, + [3272] = {.lex_state = 309}, + [3273] = {.lex_state = 309}, + [3274] = {.lex_state = 309}, + [3275] = {.lex_state = 341}, + [3276] = {.lex_state = 341}, + [3277] = {.lex_state = 341}, + [3278] = {.lex_state = 309}, + [3279] = {.lex_state = 299}, + [3280] = {.lex_state = 309}, + [3281] = {.lex_state = 309}, + [3282] = {.lex_state = 299}, + [3283] = {.lex_state = 299}, + [3284] = {.lex_state = 309}, + [3285] = {.lex_state = 309}, + [3286] = {.lex_state = 299}, + [3287] = {.lex_state = 299}, + [3288] = {.lex_state = 299}, + [3289] = {.lex_state = 299}, + [3290] = {.lex_state = 341}, + [3291] = {.lex_state = 299}, + [3292] = {.lex_state = 309}, + [3293] = {.lex_state = 309}, + [3294] = {.lex_state = 299}, + [3295] = {.lex_state = 299}, + [3296] = {.lex_state = 299}, + [3297] = {.lex_state = 309}, + [3298] = {.lex_state = 264}, + [3299] = {.lex_state = 309}, + [3300] = {.lex_state = 309}, + [3301] = {.lex_state = 309}, + [3302] = {.lex_state = 316}, + [3303] = {.lex_state = 316}, + [3304] = {.lex_state = 299}, + [3305] = {.lex_state = 309}, + [3306] = {.lex_state = 309}, + [3307] = {.lex_state = 309}, + [3308] = {.lex_state = 309}, + [3309] = {.lex_state = 299}, + [3310] = {.lex_state = 299}, + [3311] = {.lex_state = 328}, + [3312] = {.lex_state = 299}, + [3313] = {.lex_state = 309}, + [3314] = {.lex_state = 299}, + [3315] = {.lex_state = 300}, + [3316] = {.lex_state = 345}, + [3317] = {.lex_state = 310}, + [3318] = {.lex_state = 313}, + [3319] = {.lex_state = 288}, + [3320] = {.lex_state = 313}, + [3321] = {.lex_state = 313}, + [3322] = {.lex_state = 313}, + [3323] = {.lex_state = 310}, + [3324] = {.lex_state = 344}, + [3325] = {.lex_state = 287}, + [3326] = {.lex_state = 310}, + [3327] = {.lex_state = 310}, + [3328] = {.lex_state = 362}, + [3329] = {.lex_state = 367}, + [3330] = {.lex_state = 303}, + [3331] = {.lex_state = 362}, + [3332] = {.lex_state = 300}, + [3333] = {.lex_state = 300}, + [3334] = {.lex_state = 313}, + [3335] = {.lex_state = 300}, + [3336] = {.lex_state = 287}, + [3337] = {.lex_state = 287}, + [3338] = {.lex_state = 287}, + [3339] = {.lex_state = 344}, + [3340] = {.lex_state = 287}, + [3341] = {.lex_state = 287}, + [3342] = {.lex_state = 287}, + [3343] = {.lex_state = 287}, + [3344] = {.lex_state = 287}, + [3345] = {.lex_state = 367}, + [3346] = {.lex_state = 287}, + [3347] = {.lex_state = 287}, + [3348] = {.lex_state = 345}, + [3349] = {.lex_state = 299}, + [3350] = {.lex_state = 299}, + [3351] = {.lex_state = 287}, + [3352] = {.lex_state = 287}, + [3353] = {.lex_state = 287}, + [3354] = {.lex_state = 287}, + [3355] = {.lex_state = 287}, + [3356] = {.lex_state = 287}, + [3357] = {.lex_state = 287}, + [3358] = {.lex_state = 287}, + [3359] = {.lex_state = 287}, + [3360] = {.lex_state = 344}, + [3361] = {.lex_state = 291}, + [3362] = {.lex_state = 291}, + [3363] = {.lex_state = 287}, + [3364] = {.lex_state = 362}, + [3365] = {.lex_state = 287}, + [3366] = {.lex_state = 313}, + [3367] = {.lex_state = 287}, + [3368] = {.lex_state = 287}, + [3369] = {.lex_state = 287}, + [3370] = {.lex_state = 287}, + [3371] = {.lex_state = 287}, + [3372] = {.lex_state = 362}, + [3373] = {.lex_state = 287}, + [3374] = {.lex_state = 287}, + [3375] = {.lex_state = 287}, + [3376] = {.lex_state = 287}, + [3377] = {.lex_state = 287}, + [3378] = {.lex_state = 287}, + [3379] = {.lex_state = 287}, + [3380] = {.lex_state = 287}, + [3381] = {.lex_state = 287}, + [3382] = {.lex_state = 287}, + [3383] = {.lex_state = 287}, + [3384] = {.lex_state = 287}, + [3385] = {.lex_state = 287}, + [3386] = {.lex_state = 287}, + [3387] = {.lex_state = 287}, + [3388] = {.lex_state = 303}, + [3389] = {.lex_state = 290}, + [3390] = {.lex_state = 292}, + [3391] = {.lex_state = 292}, + [3392] = {.lex_state = 287}, + [3393] = {.lex_state = 345}, + [3394] = {.lex_state = 294}, + [3395] = {.lex_state = 324}, + [3396] = {.lex_state = 290}, + [3397] = {.lex_state = 287}, + [3398] = {.lex_state = 291}, + [3399] = {.lex_state = 291}, + [3400] = {.lex_state = 291}, + [3401] = {.lex_state = 290}, + [3402] = {.lex_state = 290}, + [3403] = {.lex_state = 324}, + [3404] = {.lex_state = 309}, + [3405] = {.lex_state = 299}, + [3406] = {.lex_state = 299}, + [3407] = {.lex_state = 309}, + [3408] = {.lex_state = 291}, + [3409] = {.lex_state = 309}, + [3410] = {.lex_state = 324}, + [3411] = {.lex_state = 294}, + [3412] = {.lex_state = 365}, + [3413] = {.lex_state = 309}, + [3414] = {.lex_state = 309}, + [3415] = {.lex_state = 309}, + [3416] = {.lex_state = 324}, + [3417] = {.lex_state = 309}, + [3418] = {.lex_state = 309}, + [3419] = {.lex_state = 291}, + [3420] = {.lex_state = 341}, + [3421] = {.lex_state = 290}, + [3422] = {.lex_state = 290}, + [3423] = {.lex_state = 290}, + [3424] = {.lex_state = 290}, + [3425] = {.lex_state = 324}, + [3426] = {.lex_state = 292}, + [3427] = {.lex_state = 292}, + [3428] = {.lex_state = 292}, + [3429] = {.lex_state = 290}, + [3430] = {.lex_state = 290}, + [3431] = {.lex_state = 291}, + [3432] = {.lex_state = 294}, + [3433] = {.lex_state = 324}, + [3434] = {.lex_state = 299}, + [3435] = {.lex_state = 291}, + [3436] = {.lex_state = 309}, + [3437] = {.lex_state = 294}, + [3438] = {.lex_state = 365}, + [3439] = {.lex_state = 294}, + [3440] = {.lex_state = 291}, + [3441] = {.lex_state = 291}, + [3442] = {.lex_state = 292}, + [3443] = {.lex_state = 341}, + [3444] = {.lex_state = 294}, + [3445] = {.lex_state = 309}, + [3446] = {.lex_state = 365}, + [3447] = {.lex_state = 262}, + [3448] = {.lex_state = 294}, + [3449] = {.lex_state = 294}, + [3450] = {.lex_state = 294}, + [3451] = {.lex_state = 309}, + [3452] = {.lex_state = 365}, + [3453] = {.lex_state = 365}, + [3454] = {.lex_state = 309}, + [3455] = {.lex_state = 303}, + [3456] = {.lex_state = 303}, + [3457] = {.lex_state = 309}, + [3458] = {.lex_state = 341}, + [3459] = {.lex_state = 294}, + [3460] = {.lex_state = 309}, + [3461] = {.lex_state = 309}, + [3462] = {.lex_state = 294}, + [3463] = {.lex_state = 291}, + [3464] = {.lex_state = 309}, + [3465] = {.lex_state = 365}, + [3466] = {.lex_state = 291}, + [3467] = {.lex_state = 291}, + [3468] = {.lex_state = 309}, + [3469] = {.lex_state = 287}, + [3470] = {.lex_state = 341}, + [3471] = {.lex_state = 290}, + [3472] = {.lex_state = 299}, + [3473] = {.lex_state = 290}, + [3474] = {.lex_state = 303}, + [3475] = {.lex_state = 294}, + [3476] = {.lex_state = 343}, + [3477] = {.lex_state = 362}, + [3478] = {.lex_state = 292}, + [3479] = {.lex_state = 310}, + [3480] = {.lex_state = 291}, + [3481] = {.lex_state = 310}, + [3482] = {.lex_state = 310}, + [3483] = {.lex_state = 362}, + [3484] = {.lex_state = 294}, + [3485] = {.lex_state = 365}, + [3486] = {.lex_state = 365}, + [3487] = {.lex_state = 292}, + [3488] = {.lex_state = 294}, + [3489] = {.lex_state = 292}, + [3490] = {.lex_state = 290}, + [3491] = {.lex_state = 294}, + [3492] = {.lex_state = 362}, + [3493] = {.lex_state = 310}, + [3494] = {.lex_state = 362}, + [3495] = {.lex_state = 365}, + [3496] = {.lex_state = 290}, + [3497] = {.lex_state = 291}, + [3498] = {.lex_state = 294}, + [3499] = {.lex_state = 362}, + [3500] = {.lex_state = 292}, + [3501] = {.lex_state = 292}, + [3502] = {.lex_state = 292}, + [3503] = {.lex_state = 292}, + [3504] = {.lex_state = 310}, + [3505] = {.lex_state = 294}, + [3506] = {.lex_state = 292}, + [3507] = {.lex_state = 362}, + [3508] = {.lex_state = 303}, + [3509] = {.lex_state = 291}, + [3510] = {.lex_state = 294}, + [3511] = {.lex_state = 350}, + [3512] = {.lex_state = 292}, + [3513] = {.lex_state = 362}, + [3514] = {.lex_state = 303}, + [3515] = {.lex_state = 291}, + [3516] = {.lex_state = 292}, + [3517] = {.lex_state = 294}, + [3518] = {.lex_state = 292}, + [3519] = {.lex_state = 294}, + [3520] = {.lex_state = 310}, + [3521] = {.lex_state = 362}, + [3522] = {.lex_state = 365}, + [3523] = {.lex_state = 365}, + [3524] = {.lex_state = 362}, + [3525] = {.lex_state = 362}, + [3526] = {.lex_state = 362}, + [3527] = {.lex_state = 362}, + [3528] = {.lex_state = 362}, + [3529] = {.lex_state = 362}, + [3530] = {.lex_state = 362}, + [3531] = {.lex_state = 362}, + [3532] = {.lex_state = 365}, + [3533] = {.lex_state = 365}, + [3534] = {.lex_state = 362}, + [3535] = {.lex_state = 362}, + [3536] = {.lex_state = 362}, + [3537] = {.lex_state = 362}, + [3538] = {.lex_state = 362}, + [3539] = {.lex_state = 362}, + [3540] = {.lex_state = 310}, + [3541] = {.lex_state = 294}, + [3542] = {.lex_state = 362}, + [3543] = {.lex_state = 362}, + [3544] = {.lex_state = 310}, + [3545] = {.lex_state = 362}, + [3546] = {.lex_state = 362}, + [3547] = {.lex_state = 362}, + [3548] = {.lex_state = 310}, + [3549] = {.lex_state = 310}, + [3550] = {.lex_state = 310}, + [3551] = {.lex_state = 344}, + [3552] = {.lex_state = 310}, + [3553] = {.lex_state = 310}, + [3554] = {.lex_state = 362}, + [3555] = {.lex_state = 310}, + [3556] = {.lex_state = 348}, + [3557] = {.lex_state = 310}, + [3558] = {.lex_state = 362}, + [3559] = {.lex_state = 310}, + [3560] = {.lex_state = 310}, + [3561] = {.lex_state = 310}, + [3562] = {.lex_state = 310}, + [3563] = {.lex_state = 310}, + [3564] = {.lex_state = 310}, + [3565] = {.lex_state = 310}, + [3566] = {.lex_state = 310}, + [3567] = {.lex_state = 362}, + [3568] = {.lex_state = 313}, + [3569] = {.lex_state = 300}, + [3570] = {.lex_state = 362}, + [3571] = {.lex_state = 310}, + [3572] = {.lex_state = 309}, + [3573] = {.lex_state = 346}, + [3574] = {.lex_state = 310}, + [3575] = {.lex_state = 310}, + [3576] = {.lex_state = 310}, + [3577] = {.lex_state = 310}, + [3578] = {.lex_state = 310}, + [3579] = {.lex_state = 310}, + [3580] = {.lex_state = 310}, + [3581] = {.lex_state = 310}, + [3582] = {.lex_state = 310}, + [3583] = {.lex_state = 365}, + [3584] = {.lex_state = 310}, + [3585] = {.lex_state = 310}, + [3586] = {.lex_state = 362}, + [3587] = {.lex_state = 310}, + [3588] = {.lex_state = 310}, + [3589] = {.lex_state = 310}, + [3590] = {.lex_state = 310}, + [3591] = {.lex_state = 310}, + [3592] = {.lex_state = 310}, + [3593] = {.lex_state = 310}, + [3594] = {.lex_state = 310}, + [3595] = {.lex_state = 310}, + [3596] = {.lex_state = 310}, + [3597] = {.lex_state = 310}, + [3598] = {.lex_state = 310}, + [3599] = {.lex_state = 310}, + [3600] = {.lex_state = 310}, + [3601] = {.lex_state = 310}, + [3602] = {.lex_state = 300}, + [3603] = {.lex_state = 310}, + [3604] = {.lex_state = 310}, + [3605] = {.lex_state = 362}, + [3606] = {.lex_state = 313}, + [3607] = {.lex_state = 362}, + [3608] = {.lex_state = 310}, + [3609] = {.lex_state = 310}, + [3610] = {.lex_state = 310}, + [3611] = {.lex_state = 362}, + [3612] = {.lex_state = 362}, + [3613] = {.lex_state = 345}, + [3614] = {.lex_state = 362}, + [3615] = {.lex_state = 362}, + [3616] = {.lex_state = 309}, + [3617] = {.lex_state = 362}, + [3618] = {.lex_state = 362}, + [3619] = {.lex_state = 362}, + [3620] = {.lex_state = 310}, + [3621] = {.lex_state = 362}, + [3622] = {.lex_state = 362}, + [3623] = {.lex_state = 362}, + [3624] = {.lex_state = 310}, + [3625] = {.lex_state = 362}, + [3626] = {.lex_state = 310}, + [3627] = {.lex_state = 310}, + [3628] = {.lex_state = 294}, + [3629] = {.lex_state = 362}, + [3630] = {.lex_state = 344}, + [3631] = {.lex_state = 362}, + [3632] = {.lex_state = 362}, + [3633] = {.lex_state = 290}, + [3634] = {.lex_state = 362}, + [3635] = {.lex_state = 362}, + [3636] = {.lex_state = 362}, + [3637] = {.lex_state = 362}, + [3638] = {.lex_state = 362}, + [3639] = {.lex_state = 362}, + [3640] = {.lex_state = 362}, + [3641] = {.lex_state = 362}, + [3642] = {.lex_state = 362}, + [3643] = {.lex_state = 362}, + [3644] = {.lex_state = 344}, + [3645] = {.lex_state = 303}, + [3646] = {.lex_state = 362}, + [3647] = {.lex_state = 303}, + [3648] = {.lex_state = 362}, + [3649] = {.lex_state = 264}, + [3650] = {.lex_state = 365}, + [3651] = {.lex_state = 362}, + [3652] = {.lex_state = 310}, + [3653] = {.lex_state = 362}, + [3654] = {.lex_state = 362}, + [3655] = {.lex_state = 362}, + [3656] = {.lex_state = 365}, + [3657] = {.lex_state = 313}, + [3658] = {.lex_state = 362}, + [3659] = {.lex_state = 365}, + [3660] = {.lex_state = 362}, + [3661] = {.lex_state = 344}, + [3662] = {.lex_state = 313}, + [3663] = {.lex_state = 365}, + [3664] = {.lex_state = 310}, + [3665] = {.lex_state = 362}, + [3666] = {.lex_state = 313}, + [3667] = {.lex_state = 362}, + [3668] = {.lex_state = 362}, + [3669] = {.lex_state = 362}, + [3670] = {.lex_state = 365}, + [3671] = {.lex_state = 362}, + [3672] = {.lex_state = 362}, + [3673] = {.lex_state = 310}, + [3674] = {.lex_state = 362}, + [3675] = {.lex_state = 362}, + [3676] = {.lex_state = 362}, + [3677] = {.lex_state = 362}, + [3678] = {.lex_state = 362}, + [3679] = {.lex_state = 365}, + [3680] = {.lex_state = 362}, + [3681] = {.lex_state = 362}, + [3682] = {.lex_state = 362}, + [3683] = {.lex_state = 310}, + [3684] = {.lex_state = 262}, + [3685] = {.lex_state = 310}, + [3686] = {.lex_state = 362}, + [3687] = {.lex_state = 362}, + [3688] = {.lex_state = 310}, + [3689] = {.lex_state = 362}, + [3690] = {.lex_state = 362}, + [3691] = {.lex_state = 362}, + [3692] = {.lex_state = 362}, + [3693] = {.lex_state = 362}, + [3694] = {.lex_state = 362}, + [3695] = {.lex_state = 362}, + [3696] = {.lex_state = 362}, + [3697] = {.lex_state = 362}, + [3698] = {.lex_state = 362}, + [3699] = {.lex_state = 362}, + [3700] = {.lex_state = 362}, + [3701] = {.lex_state = 290}, + [3702] = {.lex_state = 310}, + [3703] = {.lex_state = 310}, + [3704] = {.lex_state = 310}, + [3705] = {.lex_state = 290}, + [3706] = {.lex_state = 310}, + [3707] = {.lex_state = 310}, + [3708] = {.lex_state = 290}, + [3709] = {.lex_state = 313}, + [3710] = {.lex_state = 365}, + [3711] = {.lex_state = 310}, + [3712] = {.lex_state = 310}, + [3713] = {.lex_state = 365}, + [3714] = {.lex_state = 365}, + [3715] = {.lex_state = 310}, + [3716] = {.lex_state = 310}, + [3717] = {.lex_state = 310}, + [3718] = {.lex_state = 310}, + [3719] = {.lex_state = 310}, + [3720] = {.lex_state = 362}, + [3721] = {.lex_state = 310}, + [3722] = {.lex_state = 362}, + [3723] = {.lex_state = 290}, + [3724] = {.lex_state = 362}, + [3725] = {.lex_state = 310}, + [3726] = {.lex_state = 310}, + [3727] = {.lex_state = 309}, + [3728] = {.lex_state = 310}, + [3729] = {.lex_state = 362}, + [3730] = {.lex_state = 310}, + [3731] = {.lex_state = 310}, + [3732] = {.lex_state = 310}, + [3733] = {.lex_state = 310}, + [3734] = {.lex_state = 310}, + [3735] = {.lex_state = 310}, + [3736] = {.lex_state = 310}, + [3737] = {.lex_state = 310}, + [3738] = {.lex_state = 362}, + [3739] = {.lex_state = 310}, + [3740] = {.lex_state = 310}, + [3741] = {.lex_state = 362}, + [3742] = {.lex_state = 310}, + [3743] = {.lex_state = 310}, + [3744] = {.lex_state = 362}, + [3745] = {.lex_state = 310}, + [3746] = {.lex_state = 264}, + [3747] = {.lex_state = 310}, + [3748] = {.lex_state = 362}, + [3749] = {.lex_state = 362}, + [3750] = {.lex_state = 365}, + [3751] = {.lex_state = 310}, + [3752] = {.lex_state = 362}, + [3753] = {.lex_state = 310}, + [3754] = {.lex_state = 362}, + [3755] = {.lex_state = 290}, + [3756] = {.lex_state = 310}, + [3757] = {.lex_state = 310}, + [3758] = {.lex_state = 362}, + [3759] = {.lex_state = 310}, + [3760] = {.lex_state = 362}, + [3761] = {.lex_state = 310}, + [3762] = {.lex_state = 310}, + [3763] = {.lex_state = 345}, + [3764] = {.lex_state = 348}, + [3765] = {.lex_state = 363}, + [3766] = {.lex_state = 341}, + [3767] = {.lex_state = 363}, + [3768] = {.lex_state = 262}, + [3769] = {.lex_state = 345}, + [3770] = {.lex_state = 264}, + [3771] = {.lex_state = 346}, + [3772] = {.lex_state = 346}, + [3773] = {.lex_state = 348}, + [3774] = {.lex_state = 264}, + [3775] = {.lex_state = 348}, + [3776] = {.lex_state = 302}, + [3777] = {.lex_state = 348}, + [3778] = {.lex_state = 274}, + [3779] = {.lex_state = 302}, + [3780] = {.lex_state = 346}, + [3781] = {.lex_state = 348}, + [3782] = {.lex_state = 291}, + [3783] = {.lex_state = 262}, + [3784] = {.lex_state = 346}, + [3785] = {.lex_state = 274}, + [3786] = {.lex_state = 346}, + [3787] = {.lex_state = 346}, + [3788] = {.lex_state = 346}, + [3789] = {.lex_state = 348}, + [3790] = {.lex_state = 346}, + [3791] = {.lex_state = 365}, + [3792] = {.lex_state = 264}, + [3793] = {.lex_state = 291}, + [3794] = {.lex_state = 269}, + [3795] = {.lex_state = 346}, + [3796] = {.lex_state = 348}, + [3797] = {.lex_state = 365}, + [3798] = {.lex_state = 365}, + [3799] = {.lex_state = 346}, + [3800] = {.lex_state = 348}, + [3801] = {.lex_state = 348}, + [3802] = {.lex_state = 269}, + [3803] = {.lex_state = 346}, + [3804] = {.lex_state = 294}, + [3805] = {.lex_state = 348}, + [3806] = {.lex_state = 294}, + [3807] = {.lex_state = 348}, + [3808] = {.lex_state = 274}, + [3809] = {.lex_state = 294}, + [3810] = {.lex_state = 302}, + [3811] = {.lex_state = 348}, + [3812] = {.lex_state = 341}, + [3813] = {.lex_state = 345}, + [3814] = {.lex_state = 346}, + [3815] = {.lex_state = 348}, + [3816] = {.lex_state = 302}, + [3817] = {.lex_state = 346}, + [3818] = {.lex_state = 348}, + [3819] = {.lex_state = 262}, + [3820] = {.lex_state = 258}, + [3821] = {.lex_state = 346}, + [3822] = {.lex_state = 346}, + [3823] = {.lex_state = 348}, + [3824] = {.lex_state = 348}, + [3825] = {.lex_state = 294}, + [3826] = {.lex_state = 294}, + [3827] = {.lex_state = 346}, + [3828] = {.lex_state = 294}, + [3829] = {.lex_state = 309}, + [3830] = {.lex_state = 309}, + [3831] = {.lex_state = 309}, + [3832] = {.lex_state = 309}, + [3833] = {.lex_state = 309}, + [3834] = {.lex_state = 309}, + [3835] = {.lex_state = 294}, + [3836] = {.lex_state = 294}, + [3837] = {.lex_state = 294}, + [3838] = {.lex_state = 303}, + [3839] = {.lex_state = 303}, + [3840] = {.lex_state = 303}, + [3841] = {.lex_state = 303}, + [3842] = {.lex_state = 303}, + [3843] = {.lex_state = 294}, + [3844] = {.lex_state = 272}, + [3845] = {.lex_state = 294}, + [3846] = {.lex_state = 294}, + [3847] = {.lex_state = 303}, + [3848] = {.lex_state = 309}, + [3849] = {.lex_state = 294}, + [3850] = {.lex_state = 294}, + [3851] = {.lex_state = 278}, + [3852] = {.lex_state = 294}, + [3853] = {.lex_state = 294}, + [3854] = {.lex_state = 303}, + [3855] = {.lex_state = 262}, + [3856] = {.lex_state = 294}, + [3857] = {.lex_state = 290}, + [3858] = {.lex_state = 291}, + [3859] = {.lex_state = 294}, + [3860] = {.lex_state = 294}, + [3861] = {.lex_state = 294}, + [3862] = {.lex_state = 291}, + [3863] = {.lex_state = 303}, + [3864] = {.lex_state = 303}, + [3865] = {.lex_state = 303}, + [3866] = {.lex_state = 303}, + [3867] = {.lex_state = 303}, + [3868] = {.lex_state = 303}, + [3869] = {.lex_state = 303}, + [3870] = {.lex_state = 303}, + [3871] = {.lex_state = 303}, + [3872] = {.lex_state = 365}, + [3873] = {.lex_state = 299}, + [3874] = {.lex_state = 294}, + [3875] = {.lex_state = 291}, + [3876] = {.lex_state = 294}, + [3877] = {.lex_state = 294}, + [3878] = {.lex_state = 294}, + [3879] = {.lex_state = 294}, + [3880] = {.lex_state = 294}, + [3881] = {.lex_state = 294}, + [3882] = {.lex_state = 294}, + [3883] = {.lex_state = 294}, + [3884] = {.lex_state = 294}, + [3885] = {.lex_state = 294}, + [3886] = {.lex_state = 294}, + [3887] = {.lex_state = 294}, + [3888] = {.lex_state = 290}, + [3889] = {.lex_state = 294}, + [3890] = {.lex_state = 291}, + [3891] = {.lex_state = 294}, + [3892] = {.lex_state = 365}, + [3893] = {.lex_state = 365}, + [3894] = {.lex_state = 294}, + [3895] = {.lex_state = 291}, + [3896] = {.lex_state = 294}, + [3897] = {.lex_state = 302}, + [3898] = {.lex_state = 302}, + [3899] = {.lex_state = 303}, + [3900] = {.lex_state = 303}, + [3901] = {.lex_state = 303}, + [3902] = {.lex_state = 303}, + [3903] = {.lex_state = 303}, + [3904] = {.lex_state = 303}, + [3905] = {.lex_state = 294}, + [3906] = {.lex_state = 303}, + [3907] = {.lex_state = 294}, + [3908] = {.lex_state = 303}, + [3909] = {.lex_state = 303}, + [3910] = {.lex_state = 303}, + [3911] = {.lex_state = 262}, + [3912] = {.lex_state = 303}, + [3913] = {.lex_state = 294}, + [3914] = {.lex_state = 294}, + [3915] = {.lex_state = 294}, + [3916] = {.lex_state = 294}, + [3917] = {.lex_state = 294}, + [3918] = {.lex_state = 294}, + [3919] = {.lex_state = 294}, + [3920] = {.lex_state = 294}, + [3921] = {.lex_state = 303}, + [3922] = {.lex_state = 303}, + [3923] = {.lex_state = 303}, + [3924] = {.lex_state = 303}, + [3925] = {.lex_state = 303}, + [3926] = {.lex_state = 303}, + [3927] = {.lex_state = 303}, + [3928] = {.lex_state = 303}, + [3929] = {.lex_state = 294}, + [3930] = {.lex_state = 262}, + [3931] = {.lex_state = 264}, + [3932] = {.lex_state = 294}, + [3933] = {.lex_state = 270}, + [3934] = {.lex_state = 303}, + [3935] = {.lex_state = 309}, + [3936] = {.lex_state = 303}, + [3937] = {.lex_state = 294}, + [3938] = {.lex_state = 294}, + [3939] = {.lex_state = 303}, + [3940] = {.lex_state = 346}, + [3941] = {.lex_state = 264}, + [3942] = {.lex_state = 346}, + [3943] = {.lex_state = 262}, + [3944] = {.lex_state = 262}, + [3945] = {.lex_state = 346}, + [3946] = {.lex_state = 290}, + [3947] = {.lex_state = 270}, + [3948] = {.lex_state = 264}, + [3949] = {.lex_state = 309}, + [3950] = {.lex_state = 272}, + [3951] = {.lex_state = 348}, + [3952] = {.lex_state = 303}, + [3953] = {.lex_state = 294}, + [3954] = {.lex_state = 264}, + [3955] = {.lex_state = 309}, + [3956] = {.lex_state = 309}, + [3957] = {.lex_state = 302}, + [3958] = {.lex_state = 294}, + [3959] = {.lex_state = 309}, + [3960] = {.lex_state = 294}, + [3961] = {.lex_state = 348}, + [3962] = {.lex_state = 272}, + [3963] = {.lex_state = 262}, + [3964] = {.lex_state = 302}, + [3965] = {.lex_state = 278}, + [3966] = {.lex_state = 302}, + [3967] = {.lex_state = 302}, + [3968] = {.lex_state = 365}, + [3969] = {.lex_state = 309}, + [3970] = {.lex_state = 309}, + [3971] = {.lex_state = 309}, + [3972] = {.lex_state = 294}, + [3973] = {.lex_state = 365}, + [3974] = {.lex_state = 302}, + [3975] = {.lex_state = 294}, + [3976] = {.lex_state = 309}, + [3977] = {.lex_state = 294}, + [3978] = {.lex_state = 294}, + [3979] = {.lex_state = 302}, + [3980] = {.lex_state = 294}, + [3981] = {.lex_state = 294}, + [3982] = {.lex_state = 294}, + [3983] = {.lex_state = 309}, + [3984] = {.lex_state = 303}, + [3985] = {.lex_state = 365}, + [3986] = {.lex_state = 299}, + [3987] = {.lex_state = 276}, + [3988] = {.lex_state = 294}, + [3989] = {.lex_state = 299}, + [3990] = {.lex_state = 282}, + [3991] = {.lex_state = 299}, + [3992] = {.lex_state = 367}, + [3993] = {.lex_state = 294}, + [3994] = {.lex_state = 367}, + [3995] = {.lex_state = 299}, + [3996] = {.lex_state = 294}, + [3997] = {.lex_state = 290}, + [3998] = {.lex_state = 290}, + [3999] = {.lex_state = 343}, + [4000] = {.lex_state = 290}, + [4001] = {.lex_state = 278}, [4002] = {.lex_state = 290}, - [4003] = {.lex_state = 258}, - [4004] = {.lex_state = 258}, - [4005] = {.lex_state = 324}, - [4006] = {.lex_state = 335}, - [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}, + [4003] = {.lex_state = 350}, + [4004] = {.lex_state = 278}, + [4005] = {.lex_state = 278}, + [4006] = {.lex_state = 290}, + [4007] = {.lex_state = 280}, + [4008] = {.lex_state = 348}, + [4009] = {.lex_state = 280}, + [4010] = {.lex_state = 294}, + [4011] = {.lex_state = 294}, + [4012] = {.lex_state = 294}, + [4013] = {.lex_state = 343}, + [4014] = {.lex_state = 262}, + [4015] = {.lex_state = 365}, + [4016] = {.lex_state = 299}, + [4017] = {.lex_state = 294}, + [4018] = {.lex_state = 346}, + [4019] = {.lex_state = 264}, + [4020] = {.lex_state = 299}, + [4021] = {.lex_state = 294}, + [4022] = {.lex_state = 294}, + [4023] = {.lex_state = 290}, + [4024] = {.lex_state = 291}, + [4025] = {.lex_state = 299}, + [4026] = {.lex_state = 350}, + [4027] = {.lex_state = 303}, + [4028] = {.lex_state = 276}, + [4029] = {.lex_state = 280}, + [4030] = {.lex_state = 294}, + [4031] = {.lex_state = 290}, [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}, - [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}, - [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}, - [4084] = {.lex_state = 277}, - [4085] = {.lex_state = 316}, - [4086] = {.lex_state = 279}, - [4087] = {.lex_state = 279}, - [4088] = {.lex_state = 278}, - [4089] = {.lex_state = 277}, - [4090] = {.lex_state = 301}, - [4091] = {.lex_state = 279}, - [4092] = {.lex_state = 319}, - [4093] = {.lex_state = 277}, - [4094] = {.lex_state = 324}, - [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}, - [4102] = {.lex_state = 279}, - [4103] = {.lex_state = 279}, - [4104] = {.lex_state = 258}, - [4105] = {.lex_state = 247}, - [4106] = {.lex_state = 277}, - [4107] = {.lex_state = 277}, - [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}, - [4116] = {.lex_state = 277}, - [4117] = {.lex_state = 319}, - [4118] = {.lex_state = 321}, - [4119] = {.lex_state = 277}, - [4120] = {.lex_state = 288}, - [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}, - [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}, - [4170] = {.lex_state = 334}, - [4171] = {.lex_state = 289}, - [4172] = {.lex_state = 334}, - [4173] = {.lex_state = 240}, - [4174] = {.lex_state = 252}, - [4175] = {.lex_state = 252}, - [4176] = {.lex_state = 334}, - [4177] = {.lex_state = 240}, - [4178] = {.lex_state = 270}, - [4179] = {.lex_state = 270}, - [4180] = {.lex_state = 271}, - [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}, - [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}, - [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}, - [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}, - [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}, - [4292] = {.lex_state = 290}, - [4293] = {.lex_state = 252}, - [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}, - [4302] = {.lex_state = 252}, - [4303] = {.lex_state = 277}, - [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}, - [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}, - [4344] = {.lex_state = 335}, - [4345] = {.lex_state = 290}, - [4346] = {.lex_state = 301}, - [4347] = {.lex_state = 290}, - [4348] = {.lex_state = 269}, - [4349] = {.lex_state = 290}, - [4350] = {.lex_state = 319}, - [4351] = {.lex_state = 319}, - [4352] = {.lex_state = 290}, - [4353] = {.lex_state = 301}, - [4354] = {.lex_state = 301}, - [4355] = {.lex_state = 301}, - [4356] = {.lex_state = 301}, - [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}, - [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}, - [4375] = {.lex_state = 301}, - [4376] = {.lex_state = 319}, - [4377] = {.lex_state = 319}, - [4378] = {.lex_state = 319}, - [4379] = {.lex_state = 277}, - [4380] = {.lex_state = 277}, - [4381] = {.lex_state = 289}, - [4382] = {.lex_state = 277}, - [4383] = {.lex_state = 290}, - [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}, - [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}, - [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}, - [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}, - [4437] = {.lex_state = 271}, - [4438] = {.lex_state = 271}, - [4439] = {.lex_state = 315}, - [4440] = {.lex_state = 301}, - [4441] = {.lex_state = 289}, - [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}, - [4465] = {.lex_state = 289}, - [4466] = {.lex_state = 319}, - [4467] = {.lex_state = 301}, - [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}, - [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}, - [4492] = {.lex_state = 271}, - [4493] = {.lex_state = 271}, - [4494] = {.lex_state = 319}, - [4495] = {.lex_state = 315}, - [4496] = {.lex_state = 289}, - [4497] = {.lex_state = 289}, - [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}, + [4033] = {.lex_state = 365}, + [4034] = {.lex_state = 346}, + [4035] = {.lex_state = 278}, + [4036] = {.lex_state = 365}, + [4037] = {.lex_state = 294}, + [4038] = {.lex_state = 350}, + [4039] = {.lex_state = 294}, + [4040] = {.lex_state = 343}, + [4041] = {.lex_state = 346}, + [4042] = {.lex_state = 290}, + [4043] = {.lex_state = 294}, + [4044] = {.lex_state = 262}, + [4045] = {.lex_state = 290}, + [4046] = {.lex_state = 282}, + [4047] = {.lex_state = 348}, + [4048] = {.lex_state = 290}, + [4049] = {.lex_state = 346}, + [4050] = {.lex_state = 294}, + [4051] = {.lex_state = 294}, + [4052] = {.lex_state = 290}, + [4053] = {.lex_state = 346}, + [4054] = {.lex_state = 365}, + [4055] = {.lex_state = 343}, + [4056] = {.lex_state = 294}, + [4057] = {.lex_state = 365}, + [4058] = {.lex_state = 290}, + [4059] = {.lex_state = 290}, + [4060] = {.lex_state = 346}, + [4061] = {.lex_state = 351}, + [4062] = {.lex_state = 290}, + [4063] = {.lex_state = 290}, + [4064] = {.lex_state = 294}, + [4065] = {.lex_state = 294}, + [4066] = {.lex_state = 294}, + [4067] = {.lex_state = 348}, + [4068] = {.lex_state = 346}, + [4069] = {.lex_state = 346}, + [4070] = {.lex_state = 346}, + [4071] = {.lex_state = 288}, + [4072] = {.lex_state = 290}, + [4073] = {.lex_state = 346}, + [4074] = {.lex_state = 346}, + [4075] = {.lex_state = 346}, + [4076] = {.lex_state = 346}, + [4077] = {.lex_state = 346}, + [4078] = {.lex_state = 346}, + [4079] = {.lex_state = 365}, + [4080] = {.lex_state = 346}, + [4081] = {.lex_state = 294}, + [4082] = {.lex_state = 348}, + [4083] = {.lex_state = 348}, + [4084] = {.lex_state = 348}, + [4085] = {.lex_state = 348}, + [4086] = {.lex_state = 348}, + [4087] = {.lex_state = 348}, + [4088] = {.lex_state = 348}, + [4089] = {.lex_state = 294}, + [4090] = {.lex_state = 294}, + [4091] = {.lex_state = 348}, + [4092] = {.lex_state = 365}, + [4093] = {.lex_state = 299}, + [4094] = {.lex_state = 365}, + [4095] = {.lex_state = 294}, + [4096] = {.lex_state = 342}, + [4097] = {.lex_state = 342}, + [4098] = {.lex_state = 365}, + [4099] = {.lex_state = 346}, + [4100] = {.lex_state = 294}, + [4101] = {.lex_state = 272}, + [4102] = {.lex_state = 365}, + [4103] = {.lex_state = 348}, + [4104] = {.lex_state = 348}, + [4105] = {.lex_state = 354}, + [4106] = {.lex_state = 346}, + [4107] = {.lex_state = 348}, + [4108] = {.lex_state = 294}, + [4109] = {.lex_state = 365}, + [4110] = {.lex_state = 294}, + [4111] = {.lex_state = 294}, + [4112] = {.lex_state = 294}, + [4113] = {.lex_state = 348}, + [4114] = {.lex_state = 294}, + [4115] = {.lex_state = 294}, + [4116] = {.lex_state = 294}, + [4117] = {.lex_state = 294}, + [4118] = {.lex_state = 294}, + [4119] = {.lex_state = 348}, + [4120] = {.lex_state = 294}, + [4121] = {.lex_state = 294}, + [4122] = {.lex_state = 365}, + [4123] = {.lex_state = 348}, + [4124] = {.lex_state = 346}, + [4125] = {.lex_state = 294}, + [4126] = {.lex_state = 297}, + [4127] = {.lex_state = 346}, + [4128] = {.lex_state = 294}, + [4129] = {.lex_state = 346}, + [4130] = {.lex_state = 294}, + [4131] = {.lex_state = 354}, + [4132] = {.lex_state = 294}, + [4133] = {.lex_state = 294}, + [4134] = {.lex_state = 294}, + [4135] = {.lex_state = 294}, + [4136] = {.lex_state = 365}, + [4137] = {.lex_state = 351}, + [4138] = {.lex_state = 294}, + [4139] = {.lex_state = 294}, + [4140] = {.lex_state = 350}, + [4141] = {.lex_state = 365}, + [4142] = {.lex_state = 294}, + [4143] = {.lex_state = 365}, + [4144] = {.lex_state = 294}, + [4145] = {.lex_state = 294}, + [4146] = {.lex_state = 365}, + [4147] = {.lex_state = 365}, + [4148] = {.lex_state = 294}, + [4149] = {.lex_state = 294}, + [4150] = {.lex_state = 294}, + [4151] = {.lex_state = 294}, + [4152] = {.lex_state = 294}, + [4153] = {.lex_state = 264}, + [4154] = {.lex_state = 294}, + [4155] = {.lex_state = 294}, + [4156] = {.lex_state = 264}, + [4157] = {.lex_state = 348}, + [4158] = {.lex_state = 348}, + [4159] = {.lex_state = 346}, + [4160] = {.lex_state = 365}, + [4161] = {.lex_state = 365}, + [4162] = {.lex_state = 298}, + [4163] = {.lex_state = 294}, + [4164] = {.lex_state = 348}, + [4165] = {.lex_state = 264}, + [4166] = {.lex_state = 290}, + [4167] = {.lex_state = 290}, + [4168] = {.lex_state = 348}, + [4169] = {.lex_state = 264}, + [4170] = {.lex_state = 290}, + [4171] = {.lex_state = 294}, + [4172] = {.lex_state = 294}, + [4173] = {.lex_state = 294}, + [4174] = {.lex_state = 294}, + [4175] = {.lex_state = 294}, + [4176] = {.lex_state = 294}, + [4177] = {.lex_state = 294}, + [4178] = {.lex_state = 294}, + [4179] = {.lex_state = 294}, + [4180] = {.lex_state = 294}, + [4181] = {.lex_state = 365}, + [4182] = {.lex_state = 348}, + [4183] = {.lex_state = 365}, + [4184] = {.lex_state = 365}, + [4185] = {.lex_state = 346}, + [4186] = {.lex_state = 294}, + [4187] = {.lex_state = 294}, + [4188] = {.lex_state = 294}, + [4189] = {.lex_state = 294}, + [4190] = {.lex_state = 294}, + [4191] = {.lex_state = 294}, + [4192] = {.lex_state = 294}, + [4193] = {.lex_state = 294}, + [4194] = {.lex_state = 294}, + [4195] = {.lex_state = 290}, + [4196] = {.lex_state = 346}, + [4197] = {.lex_state = 365}, + [4198] = {.lex_state = 290}, + [4199] = {.lex_state = 294}, + [4200] = {.lex_state = 294}, + [4201] = {.lex_state = 294}, + [4202] = {.lex_state = 294}, + [4203] = {.lex_state = 299}, + [4204] = {.lex_state = 272}, + [4205] = {.lex_state = 290}, + [4206] = {.lex_state = 354}, + [4207] = {.lex_state = 290}, + [4208] = {.lex_state = 294}, + [4209] = {.lex_state = 264}, + [4210] = {.lex_state = 264}, + [4211] = {.lex_state = 365}, + [4212] = {.lex_state = 290}, + [4213] = {.lex_state = 290}, + [4214] = {.lex_state = 294}, + [4215] = {.lex_state = 294}, + [4216] = {.lex_state = 365}, + [4217] = {.lex_state = 365}, + [4218] = {.lex_state = 294}, + [4219] = {.lex_state = 290}, + [4220] = {.lex_state = 348}, + [4221] = {.lex_state = 294}, + [4222] = {.lex_state = 294}, + [4223] = {.lex_state = 290}, + [4224] = {.lex_state = 351}, + [4225] = {.lex_state = 294}, + [4226] = {.lex_state = 294}, + [4227] = {.lex_state = 290}, + [4228] = {.lex_state = 294}, + [4229] = {.lex_state = 294}, + [4230] = {.lex_state = 294}, + [4231] = {.lex_state = 294}, + [4232] = {.lex_state = 294}, + [4233] = {.lex_state = 294}, + [4234] = {.lex_state = 290}, + [4235] = {.lex_state = 272}, + [4236] = {.lex_state = 294}, + [4237] = {.lex_state = 365}, + [4238] = {.lex_state = 290}, + [4239] = {.lex_state = 290}, + [4240] = {.lex_state = 365}, + [4241] = {.lex_state = 294}, + [4242] = {.lex_state = 365}, + [4243] = {.lex_state = 367}, + [4244] = {.lex_state = 272}, + [4245] = {.lex_state = 294}, + [4246] = {.lex_state = 294}, + [4247] = {.lex_state = 365}, + [4248] = {.lex_state = 348}, + [4249] = {.lex_state = 365}, + [4250] = {.lex_state = 294}, + [4251] = {.lex_state = 294}, + [4252] = {.lex_state = 294}, + [4253] = {.lex_state = 365}, + [4254] = {.lex_state = 294}, + [4255] = {.lex_state = 365}, + [4256] = {.lex_state = 294}, + [4257] = {.lex_state = 365}, + [4258] = {.lex_state = 264}, + [4259] = {.lex_state = 365}, + [4260] = {.lex_state = 272}, + [4261] = {.lex_state = 300}, + [4262] = {.lex_state = 294}, + [4263] = {.lex_state = 294}, + [4264] = {.lex_state = 300}, + [4265] = {.lex_state = 294}, + [4266] = {.lex_state = 294}, + [4267] = {.lex_state = 294}, + [4268] = {.lex_state = 294}, + [4269] = {.lex_state = 272}, + [4270] = {.lex_state = 294}, + [4271] = {.lex_state = 294}, + [4272] = {.lex_state = 365}, + [4273] = {.lex_state = 365}, + [4274] = {.lex_state = 365}, + [4275] = {.lex_state = 294}, + [4276] = {.lex_state = 264}, + [4277] = {.lex_state = 294}, + [4278] = {.lex_state = 365}, + [4279] = {.lex_state = 365}, + [4280] = {.lex_state = 299}, + [4281] = {.lex_state = 282}, + [4282] = {.lex_state = 365}, + [4283] = {.lex_state = 365}, + [4284] = {.lex_state = 365}, + [4285] = {.lex_state = 294}, + [4286] = {.lex_state = 294}, + [4287] = {.lex_state = 365}, + [4288] = {.lex_state = 294}, + [4289] = {.lex_state = 272}, + [4290] = {.lex_state = 294}, + [4291] = {.lex_state = 294}, + [4292] = {.lex_state = 294}, + [4293] = {.lex_state = 294}, + [4294] = {.lex_state = 365}, + [4295] = {.lex_state = 294}, + [4296] = {.lex_state = 294}, + [4297] = {.lex_state = 294}, + [4298] = {.lex_state = 365}, + [4299] = {.lex_state = 365}, + [4300] = {.lex_state = 294}, + [4301] = {.lex_state = 365}, + [4302] = {.lex_state = 294}, + [4303] = {.lex_state = 342}, + [4304] = {.lex_state = 365}, + [4305] = {.lex_state = 365}, + [4306] = {.lex_state = 367}, + [4307] = {.lex_state = 294}, + [4308] = {.lex_state = 294}, + [4309] = {.lex_state = 346}, + [4310] = {.lex_state = 294}, + [4311] = {.lex_state = 300}, + [4312] = {.lex_state = 365}, + [4313] = {.lex_state = 294}, + [4314] = {.lex_state = 300}, + [4315] = {.lex_state = 294}, + [4316] = {.lex_state = 346}, + [4317] = {.lex_state = 294}, + [4318] = {.lex_state = 280}, + [4319] = {.lex_state = 294}, + [4320] = {.lex_state = 290}, + [4321] = {.lex_state = 365}, + [4322] = {.lex_state = 294}, + [4323] = {.lex_state = 365}, + [4324] = {.lex_state = 365}, + [4325] = {.lex_state = 272}, + [4326] = {.lex_state = 365}, + [4327] = {.lex_state = 365}, + [4328] = {.lex_state = 348}, + [4329] = {.lex_state = 294}, + [4330] = {.lex_state = 294}, + [4331] = {.lex_state = 294}, + [4332] = {.lex_state = 294}, + [4333] = {.lex_state = 365}, + [4334] = {.lex_state = 294}, + [4335] = {.lex_state = 342}, + [4336] = {.lex_state = 294}, + [4337] = {.lex_state = 294}, + [4338] = {.lex_state = 365}, + [4339] = {.lex_state = 294}, + [4340] = {.lex_state = 294}, + [4341] = {.lex_state = 346}, + [4342] = {.lex_state = 346}, + [4343] = {.lex_state = 294}, + [4344] = {.lex_state = 294}, + [4345] = {.lex_state = 365}, + [4346] = {.lex_state = 365}, + [4347] = {.lex_state = 288}, + [4348] = {.lex_state = 365}, + [4349] = {.lex_state = 365}, + [4350] = {.lex_state = 343}, + [4351] = {.lex_state = 258}, + [4352] = {.lex_state = 343}, + [4353] = {.lex_state = 348}, + [4354] = {.lex_state = 348}, + [4355] = {.lex_state = 313}, + [4356] = {.lex_state = 282}, + [4357] = {.lex_state = 346}, + [4358] = {.lex_state = 292}, + [4359] = {.lex_state = 350}, + [4360] = {.lex_state = 292}, + [4361] = {.lex_state = 348}, + [4362] = {.lex_state = 258}, + [4363] = {.lex_state = 282}, + [4364] = {.lex_state = 280}, + [4365] = {.lex_state = 365}, + [4366] = {.lex_state = 348}, + [4367] = {.lex_state = 343}, + [4368] = {.lex_state = 350}, + [4369] = {.lex_state = 346}, + [4370] = {.lex_state = 272}, + [4371] = {.lex_state = 346}, + [4372] = {.lex_state = 365}, + [4373] = {.lex_state = 346}, + [4374] = {.lex_state = 280}, + [4375] = {.lex_state = 343}, + [4376] = {.lex_state = 343}, + [4377] = {.lex_state = 365}, + [4378] = {.lex_state = 346}, + [4379] = {.lex_state = 258}, + [4380] = {.lex_state = 346}, + [4381] = {.lex_state = 282}, + [4382] = {.lex_state = 258}, + [4383] = {.lex_state = 292}, + [4384] = {.lex_state = 292}, + [4385] = {.lex_state = 272}, + [4386] = {.lex_state = 282}, + [4387] = {.lex_state = 346}, + [4388] = {.lex_state = 350}, + [4389] = {.lex_state = 292}, + [4390] = {.lex_state = 350}, + [4391] = {.lex_state = 343}, + [4392] = {.lex_state = 272}, + [4393] = {.lex_state = 272}, + [4394] = {.lex_state = 365}, + [4395] = {.lex_state = 302}, + [4396] = {.lex_state = 323}, + [4397] = {.lex_state = 365}, + [4398] = {.lex_state = 346}, + [4399] = {.lex_state = 365}, + [4400] = {.lex_state = 348}, + [4401] = {.lex_state = 346}, + [4402] = {.lex_state = 348}, + [4403] = {.lex_state = 348}, + [4404] = {.lex_state = 348}, + [4405] = {.lex_state = 346}, + [4406] = {.lex_state = 346}, + [4407] = {.lex_state = 323}, + [4408] = {.lex_state = 323}, + [4409] = {.lex_state = 323}, + [4410] = {.lex_state = 280}, + [4411] = {.lex_state = 346}, + [4412] = {.lex_state = 294}, + [4413] = {.lex_state = 294}, + [4414] = {.lex_state = 342}, + [4415] = {.lex_state = 342}, + [4416] = {.lex_state = 280}, + [4417] = {.lex_state = 363}, + [4418] = {.lex_state = 363}, + [4419] = {.lex_state = 350}, + [4420] = {.lex_state = 292}, + [4421] = {.lex_state = 346}, + [4422] = {.lex_state = 323}, + [4423] = {.lex_state = 323}, + [4424] = {.lex_state = 365}, + [4425] = {.lex_state = 348}, + [4426] = {.lex_state = 302}, + [4427] = {.lex_state = 348}, + [4428] = {.lex_state = 343}, + [4429] = {.lex_state = 323}, + [4430] = {.lex_state = 350}, + [4431] = {.lex_state = 299}, + [4432] = {.lex_state = 348}, + [4433] = {.lex_state = 314}, + [4434] = {.lex_state = 350}, + [4435] = {.lex_state = 299}, + [4436] = {.lex_state = 343}, + [4437] = {.lex_state = 350}, + [4438] = {.lex_state = 292}, + [4439] = {.lex_state = 299}, + [4440] = {.lex_state = 288}, + [4441] = {.lex_state = 299}, + [4442] = {.lex_state = 299}, + [4443] = {.lex_state = 348}, + [4444] = {.lex_state = 348}, + [4445] = {.lex_state = 314}, + [4446] = {.lex_state = 348}, + [4447] = {.lex_state = 346}, + [4448] = {.lex_state = 299}, + [4449] = {.lex_state = 282}, + [4450] = {.lex_state = 350}, + [4451] = {.lex_state = 343}, + [4452] = {.lex_state = 324}, + [4453] = {.lex_state = 280}, + [4454] = {.lex_state = 314}, + [4455] = {.lex_state = 314}, + [4456] = {.lex_state = 346}, + [4457] = {.lex_state = 266}, + [4458] = {.lex_state = 346}, + [4459] = {.lex_state = 346}, + [4460] = {.lex_state = 346}, + [4461] = {.lex_state = 346}, + [4462] = {.lex_state = 342}, + [4463] = {.lex_state = 342}, + [4464] = {.lex_state = 315}, + [4465] = {.lex_state = 343}, + [4466] = {.lex_state = 346}, + [4467] = {.lex_state = 323}, + [4468] = {.lex_state = 354}, + [4469] = {.lex_state = 346}, + [4470] = {.lex_state = 314}, + [4471] = {.lex_state = 302}, + [4472] = {.lex_state = 314}, + [4473] = {.lex_state = 302}, + [4474] = {.lex_state = 302}, + [4475] = {.lex_state = 314}, + [4476] = {.lex_state = 314}, + [4477] = {.lex_state = 299}, + [4478] = {.lex_state = 314}, + [4479] = {.lex_state = 287}, + [4480] = {.lex_state = 346}, + [4481] = {.lex_state = 314}, + [4482] = {.lex_state = 346}, + [4483] = {.lex_state = 346}, + [4484] = {.lex_state = 314}, + [4485] = {.lex_state = 314}, + [4486] = {.lex_state = 302}, + [4487] = {.lex_state = 348}, + [4488] = {.lex_state = 282}, + [4489] = {.lex_state = 266}, + [4490] = {.lex_state = 346}, + [4491] = {.lex_state = 302}, + [4492] = {.lex_state = 346}, + [4493] = {.lex_state = 346}, + [4494] = {.lex_state = 302}, + [4495] = {.lex_state = 346}, + [4496] = {.lex_state = 327}, + [4497] = {.lex_state = 346}, + [4498] = {.lex_state = 294}, + [4499] = {.lex_state = 346}, + [4500] = {.lex_state = 348}, + [4501] = {.lex_state = 350}, + [4502] = {.lex_state = 346}, + [4503] = {.lex_state = 314}, + [4504] = {.lex_state = 346}, + [4505] = {.lex_state = 346}, + [4506] = {.lex_state = 314}, + [4507] = {.lex_state = 346}, + [4508] = {.lex_state = 348}, + [4509] = {.lex_state = 346}, + [4510] = {.lex_state = 350}, [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}, - [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}, - [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}, + [4512] = {.lex_state = 258}, + [4513] = {.lex_state = 346}, + [4514] = {.lex_state = 280}, + [4515] = {.lex_state = 346}, + [4516] = {.lex_state = 346}, + [4517] = {.lex_state = 346}, + [4518] = {.lex_state = 302}, + [4519] = {.lex_state = 302}, + [4520] = {.lex_state = 346}, + [4521] = {.lex_state = 302}, + [4522] = {.lex_state = 346}, + [4523] = {.lex_state = 346}, + [4524] = {.lex_state = 290}, + [4525] = {.lex_state = 292}, + [4526] = {.lex_state = 346}, + [4527] = {.lex_state = 348}, + [4528] = {.lex_state = 346}, + [4529] = {.lex_state = 346}, + [4530] = {.lex_state = 280}, + [4531] = {.lex_state = 346}, + [4532] = {.lex_state = 280}, + [4533] = {.lex_state = 302}, + [4534] = {.lex_state = 313}, + [4535] = {.lex_state = 313}, + [4536] = {.lex_state = 302}, + [4537] = {.lex_state = 346}, + [4538] = {.lex_state = 294}, + [4539] = {.lex_state = 302}, + [4540] = {.lex_state = 346}, + [4541] = {.lex_state = 346}, + [4542] = {.lex_state = 348}, + [4543] = {.lex_state = 346}, + [4544] = {.lex_state = 348}, + [4545] = {.lex_state = 348}, + [4546] = {.lex_state = 272}, + [4547] = {.lex_state = 343}, + [4548] = {.lex_state = 348}, + [4549] = {.lex_state = 346}, + [4550] = {.lex_state = 365}, + [4551] = {.lex_state = 350}, + [4552] = {.lex_state = 343}, + [4553] = {.lex_state = 346}, + [4554] = {.lex_state = 302}, + [4555] = {.lex_state = 354}, + [4556] = {.lex_state = 346}, + [4557] = {.lex_state = 346}, + [4558] = {.lex_state = 302}, + [4559] = {.lex_state = 282}, + [4560] = {.lex_state = 302}, + [4561] = {.lex_state = 282}, + [4562] = {.lex_state = 327}, + [4563] = {.lex_state = 298}, + [4564] = {.lex_state = 266}, + [4565] = {.lex_state = 351}, [4566] = {.lex_state = 298}, - [4567] = {.lex_state = 279}, - [4568] = {.lex_state = 290}, - [4569] = {.lex_state = 324}, - [4570] = {.lex_state = 279}, - [4571] = {.lex_state = 290}, - [4572] = {.lex_state = 290}, - [4573] = {.lex_state = 285}, - [4574] = {.lex_state = 316}, - [4575] = {.lex_state = 316}, - [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}, - [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}, - [4606] = {.lex_state = 279}, - [4607] = {.lex_state = 290}, - [4608] = {.lex_state = 316}, - [4609] = {.lex_state = 335}, - [4610] = {.lex_state = 290}, - [4611] = {.lex_state = 340}, + [4567] = {.lex_state = 346}, + [4568] = {.lex_state = 346}, + [4569] = {.lex_state = 351}, + [4570] = {.lex_state = 258}, + [4571] = {.lex_state = 258}, + [4572] = {.lex_state = 299}, + [4573] = {.lex_state = 299}, + [4574] = {.lex_state = 328}, + [4575] = {.lex_state = 298}, + [4576] = {.lex_state = 313}, + [4577] = {.lex_state = 313}, + [4578] = {.lex_state = 324}, + [4579] = {.lex_state = 324}, + [4580] = {.lex_state = 258}, + [4581] = {.lex_state = 346}, + [4582] = {.lex_state = 272}, + [4583] = {.lex_state = 299}, + [4584] = {.lex_state = 346}, + [4585] = {.lex_state = 357}, + [4586] = {.lex_state = 298}, + [4587] = {.lex_state = 357}, + [4588] = {.lex_state = 354}, + [4589] = {.lex_state = 299}, + [4590] = {.lex_state = 363}, + [4591] = {.lex_state = 299}, + [4592] = {.lex_state = 258}, + [4593] = {.lex_state = 299}, + [4594] = {.lex_state = 299}, + [4595] = {.lex_state = 299}, + [4596] = {.lex_state = 258}, + [4597] = {.lex_state = 351}, + [4598] = {.lex_state = 298}, + [4599] = {.lex_state = 292}, + [4600] = {.lex_state = 258}, + [4601] = {.lex_state = 298}, + [4602] = {.lex_state = 327}, + [4603] = {.lex_state = 272}, + [4604] = {.lex_state = 298}, + [4605] = {.lex_state = 292}, + [4606] = {.lex_state = 354}, + [4607] = {.lex_state = 288}, + [4608] = {.lex_state = 258}, + [4609] = {.lex_state = 298}, + [4610] = {.lex_state = 258}, + [4611] = {.lex_state = 258}, [4612] = {.lex_state = 315}, - [4613] = {.lex_state = 338}, - [4614] = {.lex_state = 298}, + [4613] = {.lex_state = 299}, + [4614] = {.lex_state = 290}, [4615] = {.lex_state = 290}, - [4616] = {.lex_state = 285}, - [4617] = {.lex_state = 298}, - [4618] = {.lex_state = 273}, + [4616] = {.lex_state = 290}, + [4617] = {.lex_state = 290}, + [4618] = {.lex_state = 321}, [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}, - [4634] = {.lex_state = 271}, - [4635] = {.lex_state = 290}, - [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}, - [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}, - [4671] = {.lex_state = 335}, - [4672] = {.lex_state = 279}, - [4673] = {.lex_state = 319}, - [4674] = {.lex_state = 335}, - [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}, - [4684] = {.lex_state = 285}, - [4685] = {.lex_state = 285}, - [4686] = {.lex_state = 269}, - [4687] = {.lex_state = 271}, - [4688] = {.lex_state = 285}, - [4689] = {.lex_state = 277}, - [4690] = {.lex_state = 319}, - [4691] = {.lex_state = 277}, - [4692] = {.lex_state = 285}, - [4693] = {.lex_state = 301}, - [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}, - [4709] = {.lex_state = 271}, - [4710] = {.lex_state = 269}, - [4711] = {.lex_state = 339}, - [4712] = {.lex_state = 289}, - [4713] = {.lex_state = 279}, - [4714] = {.lex_state = 319}, - [4715] = {.lex_state = 290}, - [4716] = {.lex_state = 301}, - [4717] = {.lex_state = 271}, - [4718] = {.lex_state = 335}, - [4719] = {.lex_state = 271}, - [4720] = {.lex_state = 285}, - [4721] = {.lex_state = 289}, - [4722] = {.lex_state = 335}, - [4723] = {.lex_state = 290}, - [4724] = {.lex_state = 301}, - [4725] = {.lex_state = 319}, - [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}, - [4737] = {.lex_state = 269}, - [4738] = {.lex_state = 301}, - [4739] = {.lex_state = 271}, - [4740] = {.lex_state = 290}, - [4741] = {.lex_state = 335}, - [4742] = {.lex_state = 271}, - [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}, - [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}, - [4781] = {.lex_state = 285}, - [4782] = {.lex_state = 285}, - [4783] = {.lex_state = 271}, - [4784] = {.lex_state = 234}, - [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}, - [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}, - [4809] = {.lex_state = 271}, - [4810] = {.lex_state = 290}, - [4811] = {.lex_state = 289}, - [4812] = {.lex_state = 335}, - [4813] = {.lex_state = 290}, - [4814] = {.lex_state = 285}, - [4815] = {.lex_state = 335}, - [4816] = {.lex_state = 290}, - [4817] = {.lex_state = 271}, - [4818] = {.lex_state = 234}, - [4819] = {.lex_state = 271}, - [4820] = {.lex_state = 335}, - [4821] = {.lex_state = 285}, - [4822] = {.lex_state = 290}, - [4823] = {.lex_state = 269}, - [4824] = {.lex_state = 335}, - [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}, - [4834] = {.lex_state = 285}, - [4835] = {.lex_state = 285}, - [4836] = {.lex_state = 335}, - [4837] = {.lex_state = 298}, - [4838] = {.lex_state = 335}, - [4839] = {.lex_state = 271}, - [4840] = {.lex_state = 290}, - [4841] = {.lex_state = 285}, - [4842] = {.lex_state = 335}, - [4843] = {.lex_state = 301}, - [4844] = {.lex_state = 247}, - [4845] = {.lex_state = 271}, - [4846] = {.lex_state = 285}, - [4847] = {.lex_state = 290}, - [4848] = {.lex_state = 285}, - [4849] = {.lex_state = 269}, - [4850] = {.lex_state = 266}, - [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}, - [4858] = {.lex_state = 285}, - [4859] = {.lex_state = 298}, - [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}, - [4872] = {.lex_state = 298}, - [4873] = {.lex_state = 335}, - [4874] = {.lex_state = 290}, - [4875] = {.lex_state = 271}, - [4876] = {.lex_state = 285}, - [4877] = {.lex_state = 290}, - [4878] = {.lex_state = 285}, - [4879] = {.lex_state = 285}, - [4880] = {.lex_state = 335}, - [4881] = {.lex_state = 301}, - [4882] = {.lex_state = 285}, - [4883] = {.lex_state = 340}, - [4884] = {.lex_state = 335}, - [4885] = {.lex_state = 335}, - [4886] = {.lex_state = 285}, - [4887] = {.lex_state = 335}, - [4888] = {.lex_state = 285}, - [4889] = {.lex_state = 280}, - [4890] = {.lex_state = 290}, - [4891] = {.lex_state = 285}, - [4892] = {.lex_state = 290}, - [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}, - [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}, - [4919] = {.lex_state = 285}, - [4920] = {.lex_state = 290}, - [4921] = {.lex_state = 285}, - [4922] = {.lex_state = 285}, - [4923] = {.lex_state = 285}, - [4924] = {.lex_state = 285}, - [4925] = {.lex_state = 285}, - [4926] = {.lex_state = 335}, - [4927] = {.lex_state = 290}, - [4928] = {.lex_state = 285}, - [4929] = {.lex_state = 290}, - [4930] = {.lex_state = 285}, - [4931] = {.lex_state = 301}, - [4932] = {.lex_state = 335}, - [4933] = {.lex_state = 270}, - [4934] = {.lex_state = 290}, - [4935] = {.lex_state = 335}, + [4620] = {.lex_state = 290}, + [4621] = {.lex_state = 290}, + [4622] = {.lex_state = 290}, + [4623] = {.lex_state = 299}, + [4624] = {.lex_state = 357}, + [4625] = {.lex_state = 299}, + [4626] = {.lex_state = 299}, + [4627] = {.lex_state = 258}, + [4628] = {.lex_state = 299}, + [4629] = {.lex_state = 299}, + [4630] = {.lex_state = 299}, + [4631] = {.lex_state = 258}, + [4632] = {.lex_state = 314}, + [4633] = {.lex_state = 258}, + [4634] = {.lex_state = 351}, + [4635] = {.lex_state = 258}, + [4636] = {.lex_state = 357}, + [4637] = {.lex_state = 299}, + [4638] = {.lex_state = 299}, + [4639] = {.lex_state = 300}, + [4640] = {.lex_state = 299}, + [4641] = {.lex_state = 299}, + [4642] = {.lex_state = 365}, + [4643] = {.lex_state = 299}, + [4644] = {.lex_state = 299}, + [4645] = {.lex_state = 258}, + [4646] = {.lex_state = 299}, + [4647] = {.lex_state = 313}, + [4648] = {.lex_state = 299}, + [4649] = {.lex_state = 299}, + [4650] = {.lex_state = 299}, + [4651] = {.lex_state = 258}, + [4652] = {.lex_state = 299}, + [4653] = {.lex_state = 258}, + [4654] = {.lex_state = 258}, + [4655] = {.lex_state = 299}, + [4656] = {.lex_state = 313}, + [4657] = {.lex_state = 327}, + [4658] = {.lex_state = 327}, + [4659] = {.lex_state = 327}, + [4660] = {.lex_state = 327}, + [4661] = {.lex_state = 299}, + [4662] = {.lex_state = 327}, + [4663] = {.lex_state = 327}, + [4664] = {.lex_state = 327}, + [4665] = {.lex_state = 327}, + [4666] = {.lex_state = 272}, + [4667] = {.lex_state = 329}, + [4668] = {.lex_state = 258}, + [4669] = {.lex_state = 313}, + [4670] = {.lex_state = 299}, + [4671] = {.lex_state = 299}, + [4672] = {.lex_state = 365}, + [4673] = {.lex_state = 327}, + [4674] = {.lex_state = 365}, + [4675] = {.lex_state = 299}, + [4676] = {.lex_state = 327}, + [4677] = {.lex_state = 258}, + [4678] = {.lex_state = 258}, + [4679] = {.lex_state = 313}, + [4680] = {.lex_state = 272}, + [4681] = {.lex_state = 327}, + [4682] = {.lex_state = 298}, + [4683] = {.lex_state = 300}, + [4684] = {.lex_state = 299}, + [4685] = {.lex_state = 299}, + [4686] = {.lex_state = 314}, + [4687] = {.lex_state = 299}, + [4688] = {.lex_state = 363}, + [4689] = {.lex_state = 299}, + [4690] = {.lex_state = 288}, + [4691] = {.lex_state = 298}, + [4692] = {.lex_state = 258}, + [4693] = {.lex_state = 298}, + [4694] = {.lex_state = 298}, + [4695] = {.lex_state = 298}, + [4696] = {.lex_state = 298}, + [4697] = {.lex_state = 330}, + [4698] = {.lex_state = 348}, + [4699] = {.lex_state = 348}, + [4700] = {.lex_state = 346}, + [4701] = {.lex_state = 348}, + [4702] = {.lex_state = 314}, + [4703] = {.lex_state = 314}, + [4704] = {.lex_state = 348}, + [4705] = {.lex_state = 298}, + [4706] = {.lex_state = 348}, + [4707] = {.lex_state = 324}, + [4708] = {.lex_state = 348}, + [4709] = {.lex_state = 348}, + [4710] = {.lex_state = 346}, + [4711] = {.lex_state = 292}, + [4712] = {.lex_state = 348}, + [4713] = {.lex_state = 348}, + [4714] = {.lex_state = 327}, + [4715] = {.lex_state = 324}, + [4716] = {.lex_state = 348}, + [4717] = {.lex_state = 272}, + [4718] = {.lex_state = 348}, + [4719] = {.lex_state = 348}, + [4720] = {.lex_state = 292}, + [4721] = {.lex_state = 348}, + [4722] = {.lex_state = 292}, + [4723] = {.lex_state = 348}, + [4724] = {.lex_state = 314}, + [4725] = {.lex_state = 365}, + [4726] = {.lex_state = 292}, + [4727] = {.lex_state = 346}, + [4728] = {.lex_state = 346}, + [4729] = {.lex_state = 348}, + [4730] = {.lex_state = 329}, + [4731] = {.lex_state = 363}, + [4732] = {.lex_state = 314}, + [4733] = {.lex_state = 324}, + [4734] = {.lex_state = 314}, + [4735] = {.lex_state = 363}, + [4736] = {.lex_state = 272}, + [4737] = {.lex_state = 365}, + [4738] = {.lex_state = 365}, + [4739] = {.lex_state = 348}, + [4740] = {.lex_state = 348}, + [4741] = {.lex_state = 348}, + [4742] = {.lex_state = 365}, + [4743] = {.lex_state = 348}, + [4744] = {.lex_state = 299}, + [4745] = {.lex_state = 346}, + [4746] = {.lex_state = 346}, + [4747] = {.lex_state = 272}, + [4748] = {.lex_state = 348}, + [4749] = {.lex_state = 348}, + [4750] = {.lex_state = 299}, + [4751] = {.lex_state = 314}, + [4752] = {.lex_state = 348}, + [4753] = {.lex_state = 348}, + [4754] = {.lex_state = 348}, + [4755] = {.lex_state = 365}, + [4756] = {.lex_state = 314}, + [4757] = {.lex_state = 348}, + [4758] = {.lex_state = 348}, + [4759] = {.lex_state = 314}, + [4760] = {.lex_state = 348}, + [4761] = {.lex_state = 324}, + [4762] = {.lex_state = 348}, + [4763] = {.lex_state = 365}, + [4764] = {.lex_state = 314}, + [4765] = {.lex_state = 314}, + [4766] = {.lex_state = 348}, + [4767] = {.lex_state = 313}, + [4768] = {.lex_state = 314}, + [4769] = {.lex_state = 314}, + [4770] = {.lex_state = 365}, + [4771] = {.lex_state = 348}, + [4772] = {.lex_state = 314}, + [4773] = {.lex_state = 348}, + [4774] = {.lex_state = 348}, + [4775] = {.lex_state = 348}, + [4776] = {.lex_state = 314}, + [4777] = {.lex_state = 314}, + [4778] = {.lex_state = 314}, + [4779] = {.lex_state = 314}, + [4780] = {.lex_state = 314}, + [4781] = {.lex_state = 272}, + [4782] = {.lex_state = 314}, + [4783] = {.lex_state = 365}, + [4784] = {.lex_state = 346}, + [4785] = {.lex_state = 348}, + [4786] = {.lex_state = 348}, + [4787] = {.lex_state = 298}, + [4788] = {.lex_state = 314}, + [4789] = {.lex_state = 348}, + [4790] = {.lex_state = 324}, + [4791] = {.lex_state = 348}, + [4792] = {.lex_state = 348}, + [4793] = {.lex_state = 314}, + [4794] = {.lex_state = 348}, + [4795] = {.lex_state = 314}, + [4796] = {.lex_state = 314}, + [4797] = {.lex_state = 330}, + [4798] = {.lex_state = 348}, + [4799] = {.lex_state = 365}, + [4800] = {.lex_state = 327}, + [4801] = {.lex_state = 348}, + [4802] = {.lex_state = 346}, + [4803] = {.lex_state = 324}, + [4804] = {.lex_state = 292}, + [4805] = {.lex_state = 348}, + [4806] = {.lex_state = 314}, + [4807] = {.lex_state = 292}, + [4808] = {.lex_state = 314}, + [4809] = {.lex_state = 314}, + [4810] = {.lex_state = 266}, + [4811] = {.lex_state = 298}, + [4812] = {.lex_state = 314}, + [4813] = {.lex_state = 314}, + [4814] = {.lex_state = 314}, + [4815] = {.lex_state = 314}, + [4816] = {.lex_state = 314}, + [4817] = {.lex_state = 298}, + [4818] = {.lex_state = 346}, + [4819] = {.lex_state = 298}, + [4820] = {.lex_state = 298}, + [4821] = {.lex_state = 298}, + [4822] = {.lex_state = 298}, + [4823] = {.lex_state = 298}, + [4824] = {.lex_state = 298}, + [4825] = {.lex_state = 298}, + [4826] = {.lex_state = 298}, + [4827] = {.lex_state = 298}, + [4828] = {.lex_state = 298}, + [4829] = {.lex_state = 298}, + [4830] = {.lex_state = 315}, + [4831] = {.lex_state = 298}, + [4832] = {.lex_state = 298}, + [4833] = {.lex_state = 298}, + [4834] = {.lex_state = 314}, + [4835] = {.lex_state = 314}, + [4836] = {.lex_state = 314}, + [4837] = {.lex_state = 314}, + [4838] = {.lex_state = 314}, + [4839] = {.lex_state = 314}, + [4840] = {.lex_state = 314}, + [4841] = {.lex_state = 327}, + [4842] = {.lex_state = 327}, + [4843] = {.lex_state = 327}, + [4844] = {.lex_state = 327}, + [4845] = {.lex_state = 298}, + [4846] = {.lex_state = 298}, + [4847] = {.lex_state = 298}, + [4848] = {.lex_state = 298}, + [4849] = {.lex_state = 346}, + [4850] = {.lex_state = 348}, + [4851] = {.lex_state = 346}, + [4852] = {.lex_state = 366}, + [4853] = {.lex_state = 366}, + [4854] = {.lex_state = 365}, + [4855] = {.lex_state = 266}, + [4856] = {.lex_state = 348}, + [4857] = {.lex_state = 348}, + [4858] = {.lex_state = 327}, + [4859] = {.lex_state = 327}, + [4860] = {.lex_state = 294}, + [4861] = {.lex_state = 365}, + [4862] = {.lex_state = 314}, + [4863] = {.lex_state = 365}, + [4864] = {.lex_state = 365}, + [4865] = {.lex_state = 365}, + [4866] = {.lex_state = 315}, + [4867] = {.lex_state = 365}, + [4868] = {.lex_state = 365}, + [4869] = {.lex_state = 327}, + [4870] = {.lex_state = 314}, + [4871] = {.lex_state = 294}, + [4872] = {.lex_state = 314}, + [4873] = {.lex_state = 299}, + [4874] = {.lex_state = 327}, + [4875] = {.lex_state = 299}, + [4876] = {.lex_state = 327}, + [4877] = {.lex_state = 327}, + [4878] = {.lex_state = 327}, + [4879] = {.lex_state = 327}, + [4880] = {.lex_state = 365}, + [4881] = {.lex_state = 327}, + [4882] = {.lex_state = 327}, + [4883] = {.lex_state = 327}, + [4884] = {.lex_state = 327}, + [4885] = {.lex_state = 327}, + [4886] = {.lex_state = 327}, + [4887] = {.lex_state = 327}, + [4888] = {.lex_state = 314}, + [4889] = {.lex_state = 365}, + [4890] = {.lex_state = 365}, + [4891] = {.lex_state = 365}, + [4892] = {.lex_state = 327}, + [4893] = {.lex_state = 327}, + [4894] = {.lex_state = 327}, + [4895] = {.lex_state = 313}, + [4896] = {.lex_state = 362}, + [4897] = {.lex_state = 365}, + [4898] = {.lex_state = 365}, + [4899] = {.lex_state = 365}, + [4900] = {.lex_state = 327}, + [4901] = {.lex_state = 327}, + [4902] = {.lex_state = 313}, + [4903] = {.lex_state = 314}, + [4904] = {.lex_state = 314}, + [4905] = {.lex_state = 314}, + [4906] = {.lex_state = 314}, + [4907] = {.lex_state = 365}, + [4908] = {.lex_state = 346}, + [4909] = {.lex_state = 266}, + [4910] = {.lex_state = 266}, + [4911] = {.lex_state = 298}, + [4912] = {.lex_state = 314}, + [4913] = {.lex_state = 315}, + [4914] = {.lex_state = 298}, + [4915] = {.lex_state = 287}, + [4916] = {.lex_state = 298}, + [4917] = {.lex_state = 298}, + [4918] = {.lex_state = 346}, + [4919] = {.lex_state = 314}, + [4920] = {.lex_state = 302}, + [4921] = {.lex_state = 290}, + [4922] = {.lex_state = 363}, + [4923] = {.lex_state = 363}, + [4924] = {.lex_state = 327}, + [4925] = {.lex_state = 342}, + [4926] = {.lex_state = 342}, + [4927] = {.lex_state = 314}, + [4928] = {.lex_state = 342}, + [4929] = {.lex_state = 313}, + [4930] = {.lex_state = 327}, + [4931] = {.lex_state = 258}, + [4932] = {.lex_state = 327}, + [4933] = {.lex_state = 327}, + [4934] = {.lex_state = 327}, + [4935] = {.lex_state = 298}, [4936] = {.lex_state = 290}, [4937] = {.lex_state = 290}, - [4938] = {.lex_state = 270}, - [4939] = {.lex_state = 285}, - [4940] = {.lex_state = 285}, - [4941] = {.lex_state = 285}, - [4942] = {.lex_state = 285}, - [4943] = {.lex_state = 266}, - [4944] = {.lex_state = 285}, - [4945] = {.lex_state = 285}, + [4938] = {.lex_state = 290}, + [4939] = {.lex_state = 290}, + [4940] = {.lex_state = 290}, + [4941] = {.lex_state = 290}, + [4942] = {.lex_state = 290}, + [4943] = {.lex_state = 290}, + [4944] = {.lex_state = 290}, + [4945] = {.lex_state = 290}, [4946] = {.lex_state = 290}, - [4947] = {.lex_state = 285}, - [4948] = {.lex_state = 335}, - [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}, - [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}, - [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}, - [4978] = {.lex_state = 335}, + [4947] = {.lex_state = 290}, + [4948] = {.lex_state = 290}, + [4949] = {.lex_state = 342}, + [4950] = {.lex_state = 313}, + [4951] = {.lex_state = 313}, + [4952] = {.lex_state = 313}, + [4953] = {.lex_state = 342}, + [4954] = {.lex_state = 342}, + [4955] = {.lex_state = 298}, + [4956] = {.lex_state = 290}, + [4957] = {.lex_state = 290}, + [4958] = {.lex_state = 313}, + [4959] = {.lex_state = 342}, + [4960] = {.lex_state = 298}, + [4961] = {.lex_state = 298}, + [4962] = {.lex_state = 299}, + [4963] = {.lex_state = 313}, + [4964] = {.lex_state = 368}, + [4965] = {.lex_state = 368}, + [4966] = {.lex_state = 313}, + [4967] = {.lex_state = 313}, + [4968] = {.lex_state = 298}, + [4969] = {.lex_state = 329}, + [4970] = {.lex_state = 342}, + [4971] = {.lex_state = 368}, + [4972] = {.lex_state = 342}, + [4973] = {.lex_state = 342}, + [4974] = {.lex_state = 313}, + [4975] = {.lex_state = 290}, + [4976] = {.lex_state = 290}, + [4977] = {.lex_state = 368}, + [4978] = {.lex_state = 290}, [4979] = {.lex_state = 290}, [4980] = {.lex_state = 290}, - [4981] = {.lex_state = 297}, + [4981] = {.lex_state = 290}, [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}, - [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}, - [5005] = {.lex_state = 285}, - [5006] = {.lex_state = 290}, - [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}, - [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}, - [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}, - [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}, - [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}, - [5063] = {.lex_state = 269}, - [5064] = {.lex_state = 301}, - [5065] = {.lex_state = 269}, - [5066] = {.lex_state = 301}, - [5067] = {.lex_state = 298}, - [5068] = {.lex_state = 338}, - [5069] = {.lex_state = 279}, - [5070] = {.lex_state = 301}, - [5071] = {.lex_state = 301}, - [5072] = {.lex_state = 315}, - [5073] = {.lex_state = 290}, - [5074] = {.lex_state = 301}, - [5075] = {.lex_state = 280}, - [5076] = {.lex_state = 290}, - [5077] = {.lex_state = 247}, - [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}, - [5091] = {.lex_state = 301}, - [5092] = {.lex_state = 280}, - [5093] = {.lex_state = 290}, - [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}, - [5104] = {.lex_state = 290}, - [5105] = {.lex_state = 269}, - [5106] = {.lex_state = 280}, - [5107] = {.lex_state = 290}, - [5108] = {.lex_state = 247}, - [5109] = {.lex_state = 290}, - [5110] = {.lex_state = 269}, - [5111] = {.lex_state = 269}, - [5112] = {.lex_state = 271}, - [5113] = {.lex_state = 269}, - [5114] = {.lex_state = 269}, - [5115] = {.lex_state = 269}, - [5116] = {.lex_state = 266}, - [5117] = {.lex_state = 290}, - [5118] = {.lex_state = 285}, - [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}, - [5131] = {.lex_state = 290}, - [5132] = {.lex_state = 280}, - [5133] = {.lex_state = 285}, - [5134] = {.lex_state = 269}, - [5135] = {.lex_state = 290}, - [5136] = {.lex_state = 290}, - [5137] = {.lex_state = 269}, - [5138] = {.lex_state = 269}, - [5139] = {.lex_state = 269}, - [5140] = {.lex_state = 296}, - [5141] = {.lex_state = 301}, - [5142] = {.lex_state = 269}, - [5143] = {.lex_state = 269}, - [5144] = {.lex_state = 285}, - [5145] = {.lex_state = 269}, - [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}, - [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}, - [5167] = {.lex_state = 285}, - [5168] = {.lex_state = 285}, - [5169] = {.lex_state = 269}, - [5170] = {.lex_state = 269}, + [4983] = {.lex_state = 329}, + [4984] = {.lex_state = 342}, + [4985] = {.lex_state = 327}, + [4986] = {.lex_state = 314}, + [4987] = {.lex_state = 368}, + [4988] = {.lex_state = 342}, + [4989] = {.lex_state = 342}, + [4990] = {.lex_state = 368}, + [4991] = {.lex_state = 327}, + [4992] = {.lex_state = 302}, + [4993] = {.lex_state = 342}, + [4994] = {.lex_state = 302}, + [4995] = {.lex_state = 330}, + [4996] = {.lex_state = 342}, + [4997] = {.lex_state = 342}, + [4998] = {.lex_state = 327}, + [4999] = {.lex_state = 327}, + [5000] = {.lex_state = 330}, + [5001] = {.lex_state = 342}, + [5002] = {.lex_state = 327}, + [5003] = {.lex_state = 346}, + [5004] = {.lex_state = 346}, + [5005] = {.lex_state = 342}, + [5006] = {.lex_state = 342}, + [5007] = {.lex_state = 365}, + [5008] = {.lex_state = 299}, + [5009] = {.lex_state = 299}, + [5010] = {.lex_state = 315}, + [5011] = {.lex_state = 368}, + [5012] = {.lex_state = 299}, + [5013] = {.lex_state = 290}, + [5014] = {.lex_state = 290}, + [5015] = {.lex_state = 290}, + [5016] = {.lex_state = 314}, + [5017] = {.lex_state = 298}, + [5018] = {.lex_state = 342}, + [5019] = {.lex_state = 298}, + [5020] = {.lex_state = 298}, + [5021] = {.lex_state = 298}, + [5022] = {.lex_state = 342}, + [5023] = {.lex_state = 313}, + [5024] = {.lex_state = 298}, + [5025] = {.lex_state = 290}, + [5026] = {.lex_state = 314}, + [5027] = {.lex_state = 302}, + [5028] = {.lex_state = 342}, + [5029] = {.lex_state = 302}, + [5030] = {.lex_state = 342}, + [5031] = {.lex_state = 342}, + [5032] = {.lex_state = 292}, + [5033] = {.lex_state = 350}, + [5034] = {.lex_state = 314}, + [5035] = {.lex_state = 350}, + [5036] = {.lex_state = 350}, + [5037] = {.lex_state = 342}, + [5038] = {.lex_state = 309}, + [5039] = {.lex_state = 314}, + [5040] = {.lex_state = 314}, + [5041] = {.lex_state = 343}, + [5042] = {.lex_state = 350}, + [5043] = {.lex_state = 343}, + [5044] = {.lex_state = 343}, + [5045] = {.lex_state = 298}, + [5046] = {.lex_state = 324}, + [5047] = {.lex_state = 343}, + [5048] = {.lex_state = 309}, + [5049] = {.lex_state = 314}, + [5050] = {.lex_state = 314}, + [5051] = {.lex_state = 314}, + [5052] = {.lex_state = 314}, + [5053] = {.lex_state = 292}, + [5054] = {.lex_state = 324}, + [5055] = {.lex_state = 314}, + [5056] = {.lex_state = 314}, + [5057] = {.lex_state = 314}, + [5058] = {.lex_state = 324}, + [5059] = {.lex_state = 350}, + [5060] = {.lex_state = 343}, + [5061] = {.lex_state = 309}, + [5062] = {.lex_state = 314}, + [5063] = {.lex_state = 309}, + [5064] = {.lex_state = 350}, + [5065] = {.lex_state = 365}, + [5066] = {.lex_state = 302}, + [5067] = {.lex_state = 302}, + [5068] = {.lex_state = 295}, + [5069] = {.lex_state = 365}, + [5070] = {.lex_state = 292}, + [5071] = {.lex_state = 314}, + [5072] = {.lex_state = 290}, + [5073] = {.lex_state = 314}, + [5074] = {.lex_state = 365}, + [5075] = {.lex_state = 295}, + [5076] = {.lex_state = 302}, + [5077] = {.lex_state = 290}, + [5078] = {.lex_state = 324}, + [5079] = {.lex_state = 314}, + [5080] = {.lex_state = 314}, + [5081] = {.lex_state = 365}, + [5082] = {.lex_state = 309}, + [5083] = {.lex_state = 314}, + [5084] = {.lex_state = 292}, + [5085] = {.lex_state = 314}, + [5086] = {.lex_state = 295}, + [5087] = {.lex_state = 314}, + [5088] = {.lex_state = 314}, + [5089] = {.lex_state = 314}, + [5090] = {.lex_state = 314}, + [5091] = {.lex_state = 302}, + [5092] = {.lex_state = 302}, + [5093] = {.lex_state = 314}, + [5094] = {.lex_state = 314}, + [5095] = {.lex_state = 346}, + [5096] = {.lex_state = 346}, + [5097] = {.lex_state = 295}, + [5098] = {.lex_state = 314}, + [5099] = {.lex_state = 314}, + [5100] = {.lex_state = 314}, + [5101] = {.lex_state = 302}, + [5102] = {.lex_state = 302}, + [5103] = {.lex_state = 302}, + [5104] = {.lex_state = 314}, + [5105] = {.lex_state = 366}, + [5106] = {.lex_state = 314}, + [5107] = {.lex_state = 327}, + [5108] = {.lex_state = 314}, + [5109] = {.lex_state = 314}, + [5110] = {.lex_state = 314}, + [5111] = {.lex_state = 314}, + [5112] = {.lex_state = 309}, + [5113] = {.lex_state = 366}, + [5114] = {.lex_state = 314}, + [5115] = {.lex_state = 342}, + [5116] = {.lex_state = 309}, + [5117] = {.lex_state = 342}, + [5118] = {.lex_state = 302}, + [5119] = {.lex_state = 314}, + [5120] = {.lex_state = 314}, + [5121] = {.lex_state = 314}, + [5122] = {.lex_state = 343}, + [5123] = {.lex_state = 302}, + [5124] = {.lex_state = 314}, + [5125] = {.lex_state = 290}, + [5126] = {.lex_state = 299}, + [5127] = {.lex_state = 309}, + [5128] = {.lex_state = 299}, + [5129] = {.lex_state = 290}, + [5130] = {.lex_state = 314}, + [5131] = {.lex_state = 327}, + [5132] = {.lex_state = 314}, + [5133] = {.lex_state = 290}, + [5134] = {.lex_state = 290}, + [5135] = {.lex_state = 314}, + [5136] = {.lex_state = 298}, + [5137] = {.lex_state = 313}, + [5138] = {.lex_state = 314}, + [5139] = {.lex_state = 314}, + [5140] = {.lex_state = 314}, + [5141] = {.lex_state = 314}, + [5142] = {.lex_state = 309}, + [5143] = {.lex_state = 314}, + [5144] = {.lex_state = 302}, + [5145] = {.lex_state = 290}, + [5146] = {.lex_state = 327}, + [5147] = {.lex_state = 309}, + [5148] = {.lex_state = 327}, + [5149] = {.lex_state = 290}, + [5150] = {.lex_state = 314}, + [5151] = {.lex_state = 327}, + [5152] = {.lex_state = 365}, + [5153] = {.lex_state = 298}, + [5154] = {.lex_state = 290}, + [5155] = {.lex_state = 290}, + [5156] = {.lex_state = 309}, + [5157] = {.lex_state = 302}, + [5158] = {.lex_state = 290}, + [5159] = {.lex_state = 315}, + [5160] = {.lex_state = 309}, + [5161] = {.lex_state = 314}, + [5162] = {.lex_state = 290}, + [5163] = {.lex_state = 314}, + [5164] = {.lex_state = 313}, + [5165] = {.lex_state = 290}, + [5166] = {.lex_state = 290}, + [5167] = {.lex_state = 290}, + [5168] = {.lex_state = 290}, + [5169] = {.lex_state = 314}, + [5170] = {.lex_state = 290}, [5171] = {.lex_state = 290}, - [5172] = {.lex_state = 290}, - [5173] = {.lex_state = 301}, - [5174] = {.lex_state = 269}, - [5175] = {.lex_state = 301}, - [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}, - [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}, - [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}, - [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}, - [5225] = {.lex_state = 301}, - [5226] = {.lex_state = 301}, - [5227] = {.lex_state = 316}, - [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}, - [5236] = {.lex_state = 290}, - [5237] = {.lex_state = 290}, - [5238] = {.lex_state = 285}, - [5239] = {.lex_state = 285}, - [5240] = {.lex_state = 269}, - [5241] = {.lex_state = 304}, - [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}, - [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}, - [5263] = {.lex_state = 301}, - [5264] = {.lex_state = 301}, - [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}, - [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}, - [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}, + [5172] = {.lex_state = 309}, + [5173] = {.lex_state = 290}, + [5174] = {.lex_state = 290}, + [5175] = {.lex_state = 309}, + [5176] = {.lex_state = 290}, + [5177] = {.lex_state = 315}, + [5178] = {.lex_state = 290}, + [5179] = {.lex_state = 323}, + [5180] = {.lex_state = 365}, + [5181] = {.lex_state = 314}, + [5182] = {.lex_state = 309}, + [5183] = {.lex_state = 314}, + [5184] = {.lex_state = 313}, + [5185] = {.lex_state = 309}, + [5186] = {.lex_state = 302}, + [5187] = {.lex_state = 314}, + [5188] = {.lex_state = 314}, + [5189] = {.lex_state = 309}, + [5190] = {.lex_state = 314}, + [5191] = {.lex_state = 314}, + [5192] = {.lex_state = 309}, + [5193] = {.lex_state = 366}, + [5194] = {.lex_state = 298}, + [5195] = {.lex_state = 313}, + [5196] = {.lex_state = 302}, + [5197] = {.lex_state = 366}, + [5198] = {.lex_state = 314}, + [5199] = {.lex_state = 327}, + [5200] = {.lex_state = 327}, + [5201] = {.lex_state = 298}, + [5202] = {.lex_state = 309}, + [5203] = {.lex_state = 298}, + [5204] = {.lex_state = 327}, + [5205] = {.lex_state = 327}, + [5206] = {.lex_state = 313}, + [5207] = {.lex_state = 309}, + [5208] = {.lex_state = 314}, + [5209] = {.lex_state = 298}, + [5210] = {.lex_state = 314}, + [5211] = {.lex_state = 314}, + [5212] = {.lex_state = 314}, + [5213] = {.lex_state = 309}, + [5214] = {.lex_state = 327}, + [5215] = {.lex_state = 302}, + [5216] = {.lex_state = 327}, + [5217] = {.lex_state = 309}, + [5218] = {.lex_state = 314}, + [5219] = {.lex_state = 309}, + [5220] = {.lex_state = 309}, + [5221] = {.lex_state = 302}, + [5222] = {.lex_state = 327}, + [5223] = {.lex_state = 314}, + [5224] = {.lex_state = 309}, + [5225] = {.lex_state = 314}, + [5226] = {.lex_state = 309}, + [5227] = {.lex_state = 298}, + [5228] = {.lex_state = 309}, + [5229] = {.lex_state = 327}, + [5230] = {.lex_state = 309}, + [5231] = {.lex_state = 314}, + [5232] = {.lex_state = 313}, + [5233] = {.lex_state = 302}, + [5234] = {.lex_state = 309}, + [5235] = {.lex_state = 309}, + [5236] = {.lex_state = 314}, + [5237] = {.lex_state = 309}, + [5238] = {.lex_state = 327}, + [5239] = {.lex_state = 298}, + [5240] = {.lex_state = 298}, + [5241] = {.lex_state = 298}, + [5242] = {.lex_state = 298}, + [5243] = {.lex_state = 298}, + [5244] = {.lex_state = 298}, + [5245] = {.lex_state = 302}, + [5246] = {.lex_state = 313}, + [5247] = {.lex_state = 309}, + [5248] = {.lex_state = 314}, + [5249] = {.lex_state = 314}, + [5250] = {.lex_state = 309}, + [5251] = {.lex_state = 313}, + [5252] = {.lex_state = 365}, + [5253] = {.lex_state = 365}, + [5254] = {.lex_state = 363}, + [5255] = {.lex_state = 309}, + [5256] = {.lex_state = 252}, + [5257] = {.lex_state = 309}, + [5258] = {.lex_state = 309}, + [5259] = {.lex_state = 309}, + [5260] = {.lex_state = 313}, + [5261] = {.lex_state = 292}, + [5262] = {.lex_state = 324}, + [5263] = {.lex_state = 314}, + [5264] = {.lex_state = 314}, + [5265] = {.lex_state = 291}, + [5266] = {.lex_state = 365}, + [5267] = {.lex_state = 290}, + [5268] = {.lex_state = 314}, + [5269] = {.lex_state = 291}, + [5270] = {.lex_state = 314}, + [5271] = {.lex_state = 309}, + [5272] = {.lex_state = 313}, + [5273] = {.lex_state = 314}, + [5274] = {.lex_state = 314}, + [5275] = {.lex_state = 302}, + [5276] = {.lex_state = 252}, + [5277] = {.lex_state = 309}, + [5278] = {.lex_state = 304}, + [5279] = {.lex_state = 309}, + [5280] = {.lex_state = 309}, + [5281] = {.lex_state = 366}, + [5282] = {.lex_state = 314}, + [5283] = {.lex_state = 327}, + [5284] = {.lex_state = 314}, + [5285] = {.lex_state = 292}, + [5286] = {.lex_state = 314}, + [5287] = {.lex_state = 314}, + [5288] = {.lex_state = 314}, + [5289] = {.lex_state = 314}, + [5290] = {.lex_state = 298}, + [5291] = {.lex_state = 314}, + [5292] = {.lex_state = 309}, + [5293] = {.lex_state = 309}, + [5294] = {.lex_state = 309}, + [5295] = {.lex_state = 301}, + [5296] = {.lex_state = 327}, + [5297] = {.lex_state = 309}, + [5298] = {.lex_state = 314}, + [5299] = {.lex_state = 365}, + [5300] = {.lex_state = 252}, + [5301] = {.lex_state = 327}, + [5302] = {.lex_state = 314}, + [5303] = {.lex_state = 327}, + [5304] = {.lex_state = 309}, + [5305] = {.lex_state = 327}, + [5306] = {.lex_state = 252}, + [5307] = {.lex_state = 327}, + [5308] = {.lex_state = 313}, + [5309] = {.lex_state = 291}, + [5310] = {.lex_state = 313}, + [5311] = {.lex_state = 313}, + [5312] = {.lex_state = 290}, + [5313] = {.lex_state = 290}, [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}, - [5332] = {.lex_state = 301}, - [5333] = {.lex_state = 290}, - [5334] = {.lex_state = 340}, - [5335] = {.lex_state = 280}, - [5336] = {.lex_state = 290}, - [5337] = {.lex_state = 334}, - [5338] = {.lex_state = 289}, - [5339] = {.lex_state = 301}, - [5340] = {.lex_state = 279}, - [5341] = {.lex_state = 301}, - [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}, + [5315] = {.lex_state = 290}, + [5316] = {.lex_state = 290}, + [5317] = {.lex_state = 366}, + [5318] = {.lex_state = 314}, + [5319] = {.lex_state = 309}, + [5320] = {.lex_state = 309}, + [5321] = {.lex_state = 363}, + [5322] = {.lex_state = 363}, + [5323] = {.lex_state = 309}, + [5324] = {.lex_state = 309}, + [5325] = {.lex_state = 314}, + [5326] = {.lex_state = 292}, + [5327] = {.lex_state = 290}, + [5328] = {.lex_state = 327}, + [5329] = {.lex_state = 363}, + [5330] = {.lex_state = 314}, + [5331] = {.lex_state = 327}, + [5332] = {.lex_state = 365}, + [5333] = {.lex_state = 309}, + [5334] = {.lex_state = 314}, + [5335] = {.lex_state = 324}, + [5336] = {.lex_state = 365}, + [5337] = {.lex_state = 327}, + [5338] = {.lex_state = 309}, + [5339] = {.lex_state = 314}, + [5340] = {.lex_state = 314}, + [5341] = {.lex_state = 314}, + [5342] = {.lex_state = 314}, + [5343] = {.lex_state = 298}, + [5344] = {.lex_state = 290}, + [5345] = {.lex_state = 309}, + [5346] = {.lex_state = 324}, + [5347] = {.lex_state = 309}, + [5348] = {.lex_state = 290}, + [5349] = {.lex_state = 309}, + [5350] = {.lex_state = 309}, + [5351] = {.lex_state = 314}, + [5352] = {.lex_state = 327}, + [5353] = {.lex_state = 290}, + [5354] = {.lex_state = 309}, + [5355] = {.lex_state = 314}, + [5356] = {.lex_state = 309}, [5357] = {.lex_state = 290}, - [5358] = {.lex_state = 247}, - [5359] = {.lex_state = 280}, - [5360] = {.lex_state = 289}, + [5358] = {.lex_state = 314}, + [5359] = {.lex_state = 309}, + [5360] = {.lex_state = 327}, [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}, + [5362] = {.lex_state = 252}, + [5363] = {.lex_state = 313}, + [5364] = {.lex_state = 313}, + [5365] = {.lex_state = 298}, + [5366] = {.lex_state = 309}, + [5367] = {.lex_state = 327}, + [5368] = {.lex_state = 314}, + [5369] = {.lex_state = 266}, [5370] = {.lex_state = 266}, - [5371] = {.lex_state = 289}, - [5372] = {.lex_state = 301}, - [5373] = {.lex_state = 269}, - [5374] = {.lex_state = 293}, - [5375] = {.lex_state = 269}, - [5376] = {.lex_state = 269}, - [5377] = {.lex_state = 334}, - [5378] = {.lex_state = 269}, - [5379] = {.lex_state = 269}, - [5380] = {.lex_state = 269}, - [5381] = {.lex_state = 269}, - [5382] = {.lex_state = 269}, - [5383] = {.lex_state = 269}, - [5384] = {.lex_state = 334}, - [5385] = {.lex_state = 290}, - [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}, - [5395] = {.lex_state = 271}, - [5396] = {.lex_state = 280}, - [5397] = {.lex_state = 271}, - [5398] = {.lex_state = 271}, - [5399] = {.lex_state = 290}, - [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}, - [5407] = {.lex_state = 271}, - [5408] = {.lex_state = 271}, - [5409] = {.lex_state = 289}, - [5410] = {.lex_state = 271}, - [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}, - [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}, - [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}, - [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}, + [5371] = {.lex_state = 309}, + [5372] = {.lex_state = 290}, + [5373] = {.lex_state = 290}, + [5374] = {.lex_state = 309}, + [5375] = {.lex_state = 327}, + [5376] = {.lex_state = 327}, + [5377] = {.lex_state = 324}, + [5378] = {.lex_state = 327}, + [5379] = {.lex_state = 314}, + [5380] = {.lex_state = 314}, + [5381] = {.lex_state = 314}, + [5382] = {.lex_state = 314}, + [5383] = {.lex_state = 309}, + [5384] = {.lex_state = 313}, + [5385] = {.lex_state = 309}, + [5386] = {.lex_state = 365}, + [5387] = {.lex_state = 342}, + [5388] = {.lex_state = 366}, + [5389] = {.lex_state = 342}, + [5390] = {.lex_state = 342}, + [5391] = {.lex_state = 342}, + [5392] = {.lex_state = 342}, + [5393] = {.lex_state = 342}, + [5394] = {.lex_state = 366}, + [5395] = {.lex_state = 291}, + [5396] = {.lex_state = 314}, + [5397] = {.lex_state = 309}, + [5398] = {.lex_state = 313}, + [5399] = {.lex_state = 313}, + [5400] = {.lex_state = 309}, + [5401] = {.lex_state = 313}, + [5402] = {.lex_state = 309}, + [5403] = {.lex_state = 309}, + [5404] = {.lex_state = 363}, + [5405] = {.lex_state = 309}, + [5406] = {.lex_state = 313}, + [5407] = {.lex_state = 292}, + [5408] = {.lex_state = 365}, + [5409] = {.lex_state = 314}, + [5410] = {.lex_state = 309}, + [5411] = {.lex_state = 314}, + [5412] = {.lex_state = 314}, + [5413] = {.lex_state = 309}, + [5414] = {.lex_state = 309}, + [5415] = {.lex_state = 314}, + [5416] = {.lex_state = 298}, + [5417] = {.lex_state = 309}, + [5418] = {.lex_state = 298}, + [5419] = {.lex_state = 309}, + [5420] = {.lex_state = 298}, + [5421] = {.lex_state = 290}, + [5422] = {.lex_state = 290}, + [5423] = {.lex_state = 309}, + [5424] = {.lex_state = 309}, + [5425] = {.lex_state = 290}, + [5426] = {.lex_state = 314}, + [5427] = {.lex_state = 309}, + [5428] = {.lex_state = 298}, + [5429] = {.lex_state = 314}, + [5430] = {.lex_state = 290}, + [5431] = {.lex_state = 324}, + [5432] = {.lex_state = 304}, + [5433] = {.lex_state = 290}, + [5434] = {.lex_state = 309}, + [5435] = {.lex_state = 314}, + [5436] = {.lex_state = 309}, + [5437] = {.lex_state = 290}, + [5438] = {.lex_state = 314}, + [5439] = {.lex_state = 314}, + [5440] = {.lex_state = 309}, + [5441] = {.lex_state = 314}, + [5442] = {.lex_state = 309}, + [5443] = {.lex_state = 309}, + [5444] = {.lex_state = 290}, + [5445] = {.lex_state = 309}, + [5446] = {.lex_state = 290}, + [5447] = {.lex_state = 309}, + [5448] = {.lex_state = 309}, + [5449] = {.lex_state = 290}, + [5450] = {.lex_state = 314}, + [5451] = {.lex_state = 309}, [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}, - [5468] = {.lex_state = 335}, - [5469] = {.lex_state = 335}, - [5470] = {.lex_state = 290}, - [5471] = {.lex_state = 278}, - [5472] = {.lex_state = 340}, - [5473] = {.lex_state = 271}, - [5474] = {.lex_state = 271}, - [5475] = {.lex_state = 271}, - [5476] = {.lex_state = 271}, - [5477] = {.lex_state = 271}, - [5478] = {.lex_state = 271}, - [5479] = {.lex_state = 271}, - [5480] = {.lex_state = 271}, - [5481] = {.lex_state = 271}, - [5482] = {.lex_state = 271}, - [5483] = {.lex_state = 271}, - [5484] = {.lex_state = 271}, - [5485] = {.lex_state = 271}, - [5486] = {.lex_state = 271}, - [5487] = {.lex_state = 271}, - [5488] = {.lex_state = 271}, - [5489] = {.lex_state = 271}, - [5490] = {.lex_state = 271}, - [5491] = {.lex_state = 271}, - [5492] = {.lex_state = 269}, - [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}, - [5516] = {.lex_state = 301}, - [5517] = {.lex_state = 301}, - [5518] = {.lex_state = 301}, - [5519] = {.lex_state = 301}, - [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}, - [5536] = {.lex_state = 290}, - [5537] = {.lex_state = 290}, - [5538] = {.lex_state = 290}, - [5539] = {.lex_state = 271}, - [5540] = {.lex_state = 301}, - [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}, - [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}, - [5558] = {.lex_state = 290}, - [5559] = {.lex_state = 298}, - [5560] = {.lex_state = 298}, - [5561] = {.lex_state = 290}, - [5562] = {.lex_state = 262}, - [5563] = {.lex_state = 290}, - [5564] = {.lex_state = 290}, - [5565] = {.lex_state = 338}, - [5566] = {.lex_state = 290}, - [5567] = {.lex_state = 290}, - [5568] = {.lex_state = 338}, - [5569] = {.lex_state = 290}, - [5570] = {.lex_state = 290}, - [5571] = {.lex_state = 290}, - [5572] = {.lex_state = 290}, - [5573] = {.lex_state = 290}, - [5574] = {.lex_state = 338}, - [5575] = {.lex_state = 266}, - [5576] = {.lex_state = 301}, - [5577] = {.lex_state = 290}, - [5578] = {.lex_state = 290}, - [5579] = {.lex_state = 290}, - [5580] = {.lex_state = 264}, - [5581] = {.lex_state = 290}, - [5582] = {.lex_state = 301}, - [5583] = {.lex_state = 266}, - [5584] = {.lex_state = 290}, - [5585] = {.lex_state = 266}, - [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}, + [5453] = {.lex_state = 324}, + [5454] = {.lex_state = 314}, + [5455] = {.lex_state = 309}, + [5456] = {.lex_state = 309}, + [5457] = {.lex_state = 309}, + [5458] = {.lex_state = 313}, + [5459] = {.lex_state = 314}, + [5460] = {.lex_state = 314}, + [5461] = {.lex_state = 309}, + [5462] = {.lex_state = 309}, + [5463] = {.lex_state = 298}, + [5464] = {.lex_state = 298}, + [5465] = {.lex_state = 290}, + [5466] = {.lex_state = 365}, + [5467] = {.lex_state = 298}, + [5468] = {.lex_state = 298}, + [5469] = {.lex_state = 291}, + [5470] = {.lex_state = 314}, + [5471] = {.lex_state = 290}, + [5472] = {.lex_state = 314}, + [5473] = {.lex_state = 292}, + [5474] = {.lex_state = 327}, + [5475] = {.lex_state = 298}, + [5476] = {.lex_state = 363}, + [5477] = {.lex_state = 309}, + [5478] = {.lex_state = 309}, + [5479] = {.lex_state = 298}, + [5480] = {.lex_state = 298}, + [5481] = {.lex_state = 298}, + [5482] = {.lex_state = 290}, + [5483] = {.lex_state = 314}, + [5484] = {.lex_state = 309}, + [5485] = {.lex_state = 309}, + [5486] = {.lex_state = 314}, + [5487] = {.lex_state = 309}, + [5488] = {.lex_state = 309}, + [5489] = {.lex_state = 302}, + [5490] = {.lex_state = 309}, + [5491] = {.lex_state = 298}, + [5492] = {.lex_state = 309}, + [5493] = {.lex_state = 309}, + [5494] = {.lex_state = 309}, + [5495] = {.lex_state = 309}, + [5496] = {.lex_state = 309}, + [5497] = {.lex_state = 298}, + [5498] = {.lex_state = 309}, + [5499] = {.lex_state = 309}, + [5500] = {.lex_state = 309}, + [5501] = {.lex_state = 309}, + [5502] = {.lex_state = 309}, + [5503] = {.lex_state = 309}, + [5504] = {.lex_state = 366}, + [5505] = {.lex_state = 314}, + [5506] = {.lex_state = 327}, + [5507] = {.lex_state = 309}, + [5508] = {.lex_state = 314}, + [5509] = {.lex_state = 292}, + [5510] = {.lex_state = 252}, + [5511] = {.lex_state = 314}, + [5512] = {.lex_state = 309}, + [5513] = {.lex_state = 252}, + [5514] = {.lex_state = 309}, + [5515] = {.lex_state = 324}, + [5516] = {.lex_state = 314}, + [5517] = {.lex_state = 309}, + [5518] = {.lex_state = 309}, + [5519] = {.lex_state = 309}, + [5520] = {.lex_state = 309}, + [5521] = {.lex_state = 309}, + [5522] = {.lex_state = 309}, + [5523] = {.lex_state = 309}, + [5524] = {.lex_state = 309}, + [5525] = {.lex_state = 309}, + [5526] = {.lex_state = 309}, + [5527] = {.lex_state = 309}, + [5528] = {.lex_state = 314}, + [5529] = {.lex_state = 292}, + [5530] = {.lex_state = 301}, + [5531] = {.lex_state = 314}, + [5532] = {.lex_state = 295}, + [5533] = {.lex_state = 314}, + [5534] = {.lex_state = 314}, + [5535] = {.lex_state = 314}, + [5536] = {.lex_state = 327}, + [5537] = {.lex_state = 314}, + [5538] = {.lex_state = 327}, + [5539] = {.lex_state = 327}, + [5540] = {.lex_state = 298}, + [5541] = {.lex_state = 342}, + [5542] = {.lex_state = 298}, + [5543] = {.lex_state = 298}, + [5544] = {.lex_state = 313}, + [5545] = {.lex_state = 313}, + [5546] = {.lex_state = 298}, + [5547] = {.lex_state = 298}, + [5548] = {.lex_state = 298}, + [5549] = {.lex_state = 327}, + [5550] = {.lex_state = 363}, + [5551] = {.lex_state = 314}, + [5552] = {.lex_state = 314}, + [5553] = {.lex_state = 314}, + [5554] = {.lex_state = 327}, + [5555] = {.lex_state = 295}, + [5556] = {.lex_state = 327}, + [5557] = {.lex_state = 298}, + [5558] = {.lex_state = 298}, + [5559] = {.lex_state = 314}, + [5560] = {.lex_state = 304}, + [5561] = {.lex_state = 314}, + [5562] = {.lex_state = 314}, + [5563] = {.lex_state = 304}, + [5564] = {.lex_state = 314}, + [5565] = {.lex_state = 298}, + [5566] = {.lex_state = 298}, + [5567] = {.lex_state = 314}, + [5568] = {.lex_state = 314}, + [5569] = {.lex_state = 309}, + [5570] = {.lex_state = 314}, + [5571] = {.lex_state = 314}, + [5572] = {.lex_state = 327}, + [5573] = {.lex_state = 304}, + [5574] = {.lex_state = 327}, + [5575] = {.lex_state = 327}, + [5576] = {.lex_state = 327}, + [5577] = {.lex_state = 327}, + [5578] = {.lex_state = 314}, + [5579] = {.lex_state = 314}, + [5580] = {.lex_state = 314}, + [5581] = {.lex_state = 304}, + [5582] = {.lex_state = 314}, + [5583] = {.lex_state = 291}, + [5584] = {.lex_state = 298}, + [5585] = {.lex_state = 298}, + [5586] = {.lex_state = 327}, + [5587] = {.lex_state = 298}, + [5588] = {.lex_state = 298}, + [5589] = {.lex_state = 298}, + [5590] = {.lex_state = 314}, + [5591] = {.lex_state = 327}, + [5592] = {.lex_state = 302}, [5593] = {.lex_state = 298}, - [5594] = {.lex_state = 298}, - [5595] = {.lex_state = 290}, - [5596] = {.lex_state = 290}, - [5597] = {.lex_state = 290}, - [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}, - [5606] = {.lex_state = 290}, - [5607] = {.lex_state = 271}, - [5608] = {.lex_state = 290}, - [5609] = {.lex_state = 290}, - [5610] = {.lex_state = 290}, - [5611] = {.lex_state = 290}, - [5612] = {.lex_state = 303}, - [5613] = {.lex_state = 335}, - [5614] = {.lex_state = 290}, - [5615] = {.lex_state = 290}, - [5616] = {.lex_state = 278}, - [5617] = {.lex_state = 290}, - [5618] = {.lex_state = 290}, + [5594] = {.lex_state = 327}, + [5595] = {.lex_state = 309}, + [5596] = {.lex_state = 304}, + [5597] = {.lex_state = 327}, + [5598] = {.lex_state = 314}, + [5599] = {.lex_state = 327}, + [5600] = {.lex_state = 304}, + [5601] = {.lex_state = 314}, + [5602] = {.lex_state = 292}, + [5603] = {.lex_state = 314}, + [5604] = {.lex_state = 314}, + [5605] = {.lex_state = 314}, + [5606] = {.lex_state = 327}, + [5607] = {.lex_state = 327}, + [5608] = {.lex_state = 327}, + [5609] = {.lex_state = 327}, + [5610] = {.lex_state = 327}, + [5611] = {.lex_state = 327}, + [5612] = {.lex_state = 299}, + [5613] = {.lex_state = 327}, + [5614] = {.lex_state = 309}, + [5615] = {.lex_state = 304}, + [5616] = {.lex_state = 304}, + [5617] = {.lex_state = 299}, + [5618] = {.lex_state = 299}, [5619] = {.lex_state = 290}, - [5620] = {.lex_state = 290}, - [5621] = {.lex_state = 290}, - [5622] = {.lex_state = 298}, - [5623] = {.lex_state = 290}, - [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}, - [5637] = {.lex_state = 290}, - [5638] = {.lex_state = 301}, - [5639] = {.lex_state = 269}, - [5640] = {.lex_state = 290}, - [5641] = {.lex_state = 290}, - [5642] = {.lex_state = 290}, - [5643] = {.lex_state = 290}, - [5644] = {.lex_state = 266}, - [5645] = {.lex_state = 290}, - [5646] = {.lex_state = 290}, - [5647] = {.lex_state = 301}, - [5648] = {.lex_state = 301}, - [5649] = {.lex_state = 269}, - [5650] = {.lex_state = 280}, - [5651] = {.lex_state = 290}, - [5652] = {.lex_state = 290}, - [5653] = {.lex_state = 290}, - [5654] = {.lex_state = 290}, - [5655] = {.lex_state = 290}, - [5656] = {.lex_state = 301}, - [5657] = {.lex_state = 290}, - [5658] = {.lex_state = 290}, - [5659] = {.lex_state = 262}, - [5660] = {.lex_state = 290}, - [5661] = {.lex_state = 308}, - [5662] = {.lex_state = 290}, - [5663] = {.lex_state = 290}, - [5664] = {.lex_state = 290}, - [5665] = {.lex_state = 310}, - [5666] = {.lex_state = 247}, - [5667] = {.lex_state = 290}, - [5668] = {.lex_state = 290}, - [5669] = {.lex_state = 269}, - [5670] = {.lex_state = 306}, - [5671] = {.lex_state = 290}, - [5672] = {.lex_state = 280}, - [5673] = {.lex_state = 290}, - [5674] = {.lex_state = 269}, - [5675] = {.lex_state = 290}, - [5676] = {.lex_state = 266}, - [5677] = {.lex_state = 290}, - [5678] = {.lex_state = 310}, - [5679] = {.lex_state = 312}, - [5680] = {.lex_state = 290}, - [5681] = {.lex_state = 290}, - [5682] = {.lex_state = 301}, - [5683] = {.lex_state = 290}, - [5684] = {.lex_state = 266}, - [5685] = {.lex_state = 266}, - [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}, - [5694] = {.lex_state = 290}, - [5695] = {.lex_state = 290}, - [5696] = {.lex_state = 290}, - [5697] = {.lex_state = 279}, - [5698] = {.lex_state = 266}, - [5699] = {.lex_state = 290}, - [5700] = {.lex_state = 269}, - [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}, - [5709] = {.lex_state = 290}, - [5710] = {.lex_state = 290}, - [5711] = {.lex_state = 290}, - [5712] = {.lex_state = 290}, - [5713] = {.lex_state = 290}, - [5714] = {.lex_state = 290}, - [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}, - [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}, - [5733] = {.lex_state = 269}, - [5734] = {.lex_state = 269}, - [5735] = {.lex_state = 266}, - [5736] = {.lex_state = 269}, - [5737] = {.lex_state = 290}, - [5738] = {.lex_state = 301}, - [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}, - [5758] = {.lex_state = 269}, - [5759] = {.lex_state = 290}, - [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}, - [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}, - [5779] = {.lex_state = 269}, - [5780] = {.lex_state = 269}, - [5781] = {.lex_state = 290}, - [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}, - [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}, - [5799] = {.lex_state = 301}, - [5800] = {.lex_state = 269}, - [5801] = {.lex_state = 301}, - [5802] = {.lex_state = 290}, - [5803] = {.lex_state = 301}, - [5804] = {.lex_state = 290}, - [5805] = {.lex_state = 301}, - [5806] = {.lex_state = 290}, - [5807] = {.lex_state = 301}, - [5808] = {.lex_state = 301}, - [5809] = {.lex_state = 301}, - [5810] = {.lex_state = 290}, - [5811] = {.lex_state = 301}, - [5812] = {.lex_state = 280}, - [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}, - [5820] = {.lex_state = 269}, - [5821] = {.lex_state = 290}, - [5822] = {.lex_state = 247}, - [5823] = {.lex_state = 269}, - [5824] = {.lex_state = 290}, - [5825] = {.lex_state = 315}, - [5826] = {.lex_state = 301}, - [5827] = {.lex_state = 269}, - [5828] = {.lex_state = 290}, - [5829] = {.lex_state = 290}, - [5830] = {.lex_state = 269}, - [5831] = {.lex_state = 282}, - [5832] = {.lex_state = 290}, - [5833] = {.lex_state = 269}, - [5834] = {.lex_state = 301}, - [5835] = {.lex_state = 269}, - [5836] = {.lex_state = 301}, - [5837] = {.lex_state = 280}, - [5838] = {.lex_state = 269}, - [5839] = {.lex_state = 290}, - [5840] = {.lex_state = 269}, - [5841] = {.lex_state = 301}, - [5842] = {.lex_state = 301}, - [5843] = {.lex_state = 269}, - [5844] = {.lex_state = 269}, - [5845] = {.lex_state = 301}, - [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}, - [5853] = {.lex_state = 269}, - [5854] = {.lex_state = 269}, - [5855] = {.lex_state = 301}, - [5856] = {.lex_state = 269}, - [5857] = {.lex_state = 280}, - [5858] = {.lex_state = 269}, - [5859] = {.lex_state = 269}, - [5860] = {.lex_state = 269}, - [5861] = {.lex_state = 301}, - [5862] = {.lex_state = 301}, - [5863] = {.lex_state = 269}, - [5864] = {.lex_state = 269}, - [5865] = {.lex_state = 290}, - [5866] = {.lex_state = 290}, - [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}, - [5887] = {.lex_state = 301}, - [5888] = {.lex_state = 301}, - [5889] = {.lex_state = 282}, - [5890] = {.lex_state = 301}, - [5891] = {.lex_state = 334}, - [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}, - [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}, - [5909] = {.lex_state = 269}, - [5910] = {.lex_state = 301}, - [5911] = {.lex_state = 280}, - [5912] = {.lex_state = 280}, - [5913] = {.lex_state = 269}, - [5914] = {.lex_state = 290}, - [5915] = {.lex_state = 269}, - [5916] = {.lex_state = 290}, - [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}, - [5926] = {.lex_state = 269}, - [5927] = {.lex_state = 301}, - [5928] = {.lex_state = 269}, - [5929] = {.lex_state = 301}, - [5930] = {.lex_state = 290}, - [5931] = {.lex_state = 301}, - [5932] = {.lex_state = 280}, - [5933] = {.lex_state = 301}, - [5934] = {.lex_state = 280}, - [5935] = {.lex_state = 290}, - [5936] = {.lex_state = 338}, - [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}, - [5944] = {.lex_state = 280}, - [5945] = {.lex_state = 338}, - [5946] = {.lex_state = 280}, - [5947] = {.lex_state = 280}, - [5948] = {.lex_state = 271}, - [5949] = {.lex_state = 280}, - [5950] = {.lex_state = 280}, - [5951] = {.lex_state = 280}, - [5952] = {.lex_state = 280}, - [5953] = {.lex_state = 280}, - [5954] = {.lex_state = 338}, - [5955] = {.lex_state = 280}, - [5956] = {.lex_state = 280}, - [5957] = {.lex_state = 280}, - [5958] = {.lex_state = 280}, - [5959] = {.lex_state = 280}, - [5960] = {.lex_state = 280}, - [5961] = {.lex_state = 280}, - [5962] = {.lex_state = 340}, - [5963] = {.lex_state = 280}, - [5964] = {.lex_state = 280}, - [5965] = {.lex_state = 280}, - [5966] = {.lex_state = 280}, - [5967] = {.lex_state = 276}, - [5968] = {.lex_state = 271}, - [5969] = {.lex_state = 280}, - [5970] = {.lex_state = 335}, - [5971] = {.lex_state = 280}, - [5972] = {.lex_state = 280}, - [5973] = {.lex_state = 340}, - [5974] = {.lex_state = 335}, - [5975] = {.lex_state = 338}, - [5976] = {.lex_state = 280}, - [5977] = {.lex_state = 280}, - [5978] = {.lex_state = 280}, - [5979] = {.lex_state = 338}, - [5980] = {.lex_state = 280}, - [5981] = {.lex_state = 280}, - [5982] = {.lex_state = 280}, - [5983] = {.lex_state = 280}, + [5620] = {.lex_state = 327}, + [5621] = {.lex_state = 309}, + [5622] = {.lex_state = 327}, + [5623] = {.lex_state = 327}, + [5624] = {.lex_state = 299}, + [5625] = {.lex_state = 327}, + [5626] = {.lex_state = 314}, + [5627] = {.lex_state = 299}, + [5628] = {.lex_state = 299}, + [5629] = {.lex_state = 314}, + [5630] = {.lex_state = 314}, + [5631] = {.lex_state = 327}, + [5632] = {.lex_state = 314}, + [5633] = {.lex_state = 304}, + [5634] = {.lex_state = 314}, + [5635] = {.lex_state = 327}, + [5636] = {.lex_state = 327}, + [5637] = {.lex_state = 298}, + [5638] = {.lex_state = 309}, + [5639] = {.lex_state = 302}, + [5640] = {.lex_state = 327}, + [5641] = {.lex_state = 314}, + [5642] = {.lex_state = 314}, + [5643] = {.lex_state = 298}, + [5644] = {.lex_state = 290}, + [5645] = {.lex_state = 342}, + [5646] = {.lex_state = 342}, + [5647] = {.lex_state = 342}, + [5648] = {.lex_state = 342}, + [5649] = {.lex_state = 342}, + [5650] = {.lex_state = 342}, + [5651] = {.lex_state = 298}, + [5652] = {.lex_state = 309}, + [5653] = {.lex_state = 314}, + [5654] = {.lex_state = 314}, + [5655] = {.lex_state = 327}, + [5656] = {.lex_state = 314}, + [5657] = {.lex_state = 327}, + [5658] = {.lex_state = 309}, + [5659] = {.lex_state = 266}, + [5660] = {.lex_state = 314}, + [5661] = {.lex_state = 314}, + [5662] = {.lex_state = 327}, + [5663] = {.lex_state = 314}, + [5664] = {.lex_state = 309}, + [5665] = {.lex_state = 309}, + [5666] = {.lex_state = 314}, + [5667] = {.lex_state = 314}, + [5668] = {.lex_state = 298}, + [5669] = {.lex_state = 309}, + [5670] = {.lex_state = 291}, + [5671] = {.lex_state = 314}, + [5672] = {.lex_state = 298}, + [5673] = {.lex_state = 314}, + [5674] = {.lex_state = 327}, + [5675] = {.lex_state = 320}, + [5676] = {.lex_state = 309}, + [5677] = {.lex_state = 327}, + [5678] = {.lex_state = 309}, + [5679] = {.lex_state = 298}, + [5680] = {.lex_state = 298}, + [5681] = {.lex_state = 314}, + [5682] = {.lex_state = 314}, + [5683] = {.lex_state = 309}, + [5684] = {.lex_state = 324}, + [5685] = {.lex_state = 309}, + [5686] = {.lex_state = 309}, + [5687] = {.lex_state = 327}, + [5688] = {.lex_state = 309}, + [5689] = {.lex_state = 309}, + [5690] = {.lex_state = 309}, + [5691] = {.lex_state = 309}, + [5692] = {.lex_state = 309}, + [5693] = {.lex_state = 309}, + [5694] = {.lex_state = 309}, + [5695] = {.lex_state = 309}, + [5696] = {.lex_state = 309}, + [5697] = {.lex_state = 309}, + [5698] = {.lex_state = 309}, + [5699] = {.lex_state = 314}, + [5700] = {.lex_state = 309}, + [5701] = {.lex_state = 309}, + [5702] = {.lex_state = 309}, + [5703] = {.lex_state = 314}, + [5704] = {.lex_state = 327}, + [5705] = {.lex_state = 327}, + [5706] = {.lex_state = 327}, + [5707] = {.lex_state = 309}, + [5708] = {.lex_state = 298}, + [5709] = {.lex_state = 304}, + [5710] = {.lex_state = 327}, + [5711] = {.lex_state = 298}, + [5712] = {.lex_state = 266}, + [5713] = {.lex_state = 298}, + [5714] = {.lex_state = 309}, + [5715] = {.lex_state = 298}, + [5716] = {.lex_state = 314}, + [5717] = {.lex_state = 350}, + [5718] = {.lex_state = 327}, + [5719] = {.lex_state = 327}, + [5720] = {.lex_state = 298}, + [5721] = {.lex_state = 327}, + [5722] = {.lex_state = 327}, + [5723] = {.lex_state = 327}, + [5724] = {.lex_state = 350}, + [5725] = {.lex_state = 327}, + [5726] = {.lex_state = 298}, + [5727] = {.lex_state = 298}, + [5728] = {.lex_state = 298}, + [5729] = {.lex_state = 298}, + [5730] = {.lex_state = 309}, + [5731] = {.lex_state = 327}, + [5732] = {.lex_state = 327}, + [5733] = {.lex_state = 327}, + [5734] = {.lex_state = 298}, + [5735] = {.lex_state = 309}, + [5736] = {.lex_state = 309}, + [5737] = {.lex_state = 309}, + [5738] = {.lex_state = 309}, + [5739] = {.lex_state = 327}, + [5740] = {.lex_state = 304}, + [5741] = {.lex_state = 314}, + [5742] = {.lex_state = 309}, + [5743] = {.lex_state = 314}, + [5744] = {.lex_state = 309}, + [5745] = {.lex_state = 266}, + [5746] = {.lex_state = 298}, + [5747] = {.lex_state = 314}, + [5748] = {.lex_state = 298}, + [5749] = {.lex_state = 298}, + [5750] = {.lex_state = 304}, + [5751] = {.lex_state = 304}, + [5752] = {.lex_state = 304}, + [5753] = {.lex_state = 298}, + [5754] = {.lex_state = 298}, + [5755] = {.lex_state = 304}, + [5756] = {.lex_state = 298}, + [5757] = {.lex_state = 298}, + [5758] = {.lex_state = 327}, + [5759] = {.lex_state = 298}, + [5760] = {.lex_state = 298}, + [5761] = {.lex_state = 314}, + [5762] = {.lex_state = 298}, + [5763] = {.lex_state = 309}, + [5764] = {.lex_state = 331}, + [5765] = {.lex_state = 309}, + [5766] = {.lex_state = 298}, + [5767] = {.lex_state = 309}, + [5768] = {.lex_state = 304}, + [5769] = {.lex_state = 363}, + [5770] = {.lex_state = 314}, + [5771] = {.lex_state = 298}, + [5772] = {.lex_state = 291}, + [5773] = {.lex_state = 298}, + [5774] = {.lex_state = 298}, + [5775] = {.lex_state = 298}, + [5776] = {.lex_state = 304}, + [5777] = {.lex_state = 298}, + [5778] = {.lex_state = 298}, + [5779] = {.lex_state = 298}, + [5780] = {.lex_state = 298}, + [5781] = {.lex_state = 298}, + [5782] = {.lex_state = 298}, + [5783] = {.lex_state = 327}, + [5784] = {.lex_state = 327}, + [5785] = {.lex_state = 314}, + [5786] = {.lex_state = 313}, + [5787] = {.lex_state = 308}, + [5788] = {.lex_state = 308}, + [5789] = {.lex_state = 327}, + [5790] = {.lex_state = 327}, + [5791] = {.lex_state = 313}, + [5792] = {.lex_state = 304}, + [5793] = {.lex_state = 304}, + [5794] = {.lex_state = 308}, + [5795] = {.lex_state = 308}, + [5796] = {.lex_state = 350}, + [5797] = {.lex_state = 313}, + [5798] = {.lex_state = 313}, + [5799] = {.lex_state = 314}, + [5800] = {.lex_state = 327}, + [5801] = {.lex_state = 346}, + [5802] = {.lex_state = 327}, + [5803] = {.lex_state = 299}, + [5804] = {.lex_state = 302}, + [5805] = {.lex_state = 304}, + [5806] = {.lex_state = 298}, + [5807] = {.lex_state = 304}, + [5808] = {.lex_state = 304}, + [5809] = {.lex_state = 304}, + [5810] = {.lex_state = 304}, + [5811] = {.lex_state = 363}, + [5812] = {.lex_state = 363}, + [5813] = {.lex_state = 299}, + [5814] = {.lex_state = 301}, + [5815] = {.lex_state = 314}, + [5816] = {.lex_state = 314}, + [5817] = {.lex_state = 363}, + [5818] = {.lex_state = 314}, + [5819] = {.lex_state = 363}, + [5820] = {.lex_state = 327}, + [5821] = {.lex_state = 299}, + [5822] = {.lex_state = 363}, + [5823] = {.lex_state = 298}, + [5824] = {.lex_state = 327}, + [5825] = {.lex_state = 327}, + [5826] = {.lex_state = 298}, + [5827] = {.lex_state = 298}, + [5828] = {.lex_state = 304}, + [5829] = {.lex_state = 314}, + [5830] = {.lex_state = 314}, + [5831] = {.lex_state = 304}, + [5832] = {.lex_state = 301}, + [5833] = {.lex_state = 304}, + [5834] = {.lex_state = 327}, + [5835] = {.lex_state = 299}, + [5836] = {.lex_state = 314}, + [5837] = {.lex_state = 314}, + [5838] = {.lex_state = 314}, + [5839] = {.lex_state = 314}, + [5840] = {.lex_state = 314}, + [5841] = {.lex_state = 291}, + [5842] = {.lex_state = 314}, + [5843] = {.lex_state = 314}, + [5844] = {.lex_state = 299}, + [5845] = {.lex_state = 365}, + [5846] = {.lex_state = 308}, + [5847] = {.lex_state = 314}, + [5848] = {.lex_state = 314}, + [5849] = {.lex_state = 346}, + [5850] = {.lex_state = 327}, + [5851] = {.lex_state = 302}, + [5852] = {.lex_state = 299}, + [5853] = {.lex_state = 346}, + [5854] = {.lex_state = 308}, + [5855] = {.lex_state = 308}, + [5856] = {.lex_state = 308}, + [5857] = {.lex_state = 304}, + [5858] = {.lex_state = 314}, + [5859] = {.lex_state = 308}, + [5860] = {.lex_state = 317}, + [5861] = {.lex_state = 308}, + [5862] = {.lex_state = 308}, + [5863] = {.lex_state = 313}, + [5864] = {.lex_state = 314}, + [5865] = {.lex_state = 298}, + [5866] = {.lex_state = 298}, + [5867] = {.lex_state = 346}, + [5868] = {.lex_state = 346}, + [5869] = {.lex_state = 299}, + [5870] = {.lex_state = 314}, + [5871] = {.lex_state = 327}, + [5872] = {.lex_state = 298}, + [5873] = {.lex_state = 346}, + [5874] = {.lex_state = 299}, + [5875] = {.lex_state = 298}, + [5876] = {.lex_state = 314}, + [5877] = {.lex_state = 327}, + [5878] = {.lex_state = 314}, + [5879] = {.lex_state = 314}, + [5880] = {.lex_state = 298}, + [5881] = {.lex_state = 314}, + [5882] = {.lex_state = 314}, + [5883] = {.lex_state = 302}, + [5884] = {.lex_state = 314}, + [5885] = {.lex_state = 314}, + [5886] = {.lex_state = 314}, + [5887] = {.lex_state = 350}, + [5888] = {.lex_state = 314}, + [5889] = {.lex_state = 299}, + [5890] = {.lex_state = 299}, + [5891] = {.lex_state = 299}, + [5892] = {.lex_state = 298}, + [5893] = {.lex_state = 314}, + [5894] = {.lex_state = 314}, + [5895] = {.lex_state = 299}, + [5896] = {.lex_state = 299}, + [5897] = {.lex_state = 299}, + [5898] = {.lex_state = 299}, + [5899] = {.lex_state = 266}, + [5900] = {.lex_state = 313}, + [5901] = {.lex_state = 327}, + [5902] = {.lex_state = 314}, + [5903] = {.lex_state = 314}, + [5904] = {.lex_state = 313}, + [5905] = {.lex_state = 313}, + [5906] = {.lex_state = 314}, + [5907] = {.lex_state = 298}, + [5908] = {.lex_state = 304}, + [5909] = {.lex_state = 313}, + [5910] = {.lex_state = 313}, + [5911] = {.lex_state = 327}, + [5912] = {.lex_state = 313}, + [5913] = {.lex_state = 298}, + [5914] = {.lex_state = 314}, + [5915] = {.lex_state = 327}, + [5916] = {.lex_state = 298}, + [5917] = {.lex_state = 314}, + [5918] = {.lex_state = 313}, + [5919] = {.lex_state = 327}, + [5920] = {.lex_state = 327}, + [5921] = {.lex_state = 314}, + [5922] = {.lex_state = 314}, + [5923] = {.lex_state = 313}, + [5924] = {.lex_state = 313}, + [5925] = {.lex_state = 314}, + [5926] = {.lex_state = 314}, + [5927] = {.lex_state = 314}, + [5928] = {.lex_state = 314}, + [5929] = {.lex_state = 314}, + [5930] = {.lex_state = 314}, + [5931] = {.lex_state = 291}, + [5932] = {.lex_state = 327}, + [5933] = {.lex_state = 327}, + [5934] = {.lex_state = 313}, + [5935] = {.lex_state = 319}, + [5936] = {.lex_state = 314}, + [5937] = {.lex_state = 327}, + [5938] = {.lex_state = 314}, + [5939] = {.lex_state = 314}, + [5940] = {.lex_state = 327}, + [5941] = {.lex_state = 314}, + [5942] = {.lex_state = 266}, + [5943] = {.lex_state = 299}, + [5944] = {.lex_state = 314}, + [5945] = {.lex_state = 314}, + [5946] = {.lex_state = 314}, + [5947] = {.lex_state = 304}, + [5948] = {.lex_state = 317}, + [5949] = {.lex_state = 314}, + [5950] = {.lex_state = 314}, + [5951] = {.lex_state = 327}, + [5952] = {.lex_state = 298}, + [5953] = {.lex_state = 299}, + [5954] = {.lex_state = 302}, + [5955] = {.lex_state = 327}, + [5956] = {.lex_state = 299}, + [5957] = {.lex_state = 298}, + [5958] = {.lex_state = 298}, + [5959] = {.lex_state = 298}, + [5960] = {.lex_state = 298}, + [5961] = {.lex_state = 304}, + [5962] = {.lex_state = 304}, + [5963] = {.lex_state = 298}, + [5964] = {.lex_state = 298}, + [5965] = {.lex_state = 314}, + [5966] = {.lex_state = 298}, + [5967] = {.lex_state = 298}, + [5968] = {.lex_state = 298}, + [5969] = {.lex_state = 290}, + [5970] = {.lex_state = 290}, + [5971] = {.lex_state = 290}, + [5972] = {.lex_state = 313}, + [5973] = {.lex_state = 290}, + [5974] = {.lex_state = 298}, + [5975] = {.lex_state = 290}, + [5976] = {.lex_state = 290}, + [5977] = {.lex_state = 290}, + [5978] = {.lex_state = 290}, + [5979] = {.lex_state = 290}, + [5980] = {.lex_state = 290}, + [5981] = {.lex_state = 290}, + [5982] = {.lex_state = 290}, + [5983] = {.lex_state = 290}, [5984] = {.lex_state = 290}, - [5985] = {.lex_state = 280}, - [5986] = {.lex_state = 280}, - [5987] = {.lex_state = 247}, - [5988] = {.lex_state = 280}, - [5989] = {.lex_state = 338}, - [5990] = {.lex_state = 280}, - [5991] = {.lex_state = 280}, - [5992] = {.lex_state = 280}, - [5993] = {.lex_state = 338}, - [5994] = {.lex_state = 280}, - [5995] = {.lex_state = 341}, - [5996] = {.lex_state = 264}, - [5997] = {.lex_state = 280}, - [5998] = {.lex_state = 280}, - [5999] = {.lex_state = 338}, - [6000] = {.lex_state = 338}, - [6001] = {.lex_state = 280}, - [6002] = {.lex_state = 280}, - [6003] = {.lex_state = 271}, - [6004] = {.lex_state = 293}, - [6005] = {.lex_state = 338}, - [6006] = {.lex_state = 280}, - [6007] = {.lex_state = 280}, - [6008] = {.lex_state = 340}, - [6009] = {.lex_state = 280}, - [6010] = {.lex_state = 338}, - [6011] = {.lex_state = 280}, - [6012] = {.lex_state = 280}, - [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}, - [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}, - [6031] = {.lex_state = 338}, - [6032] = {.lex_state = 338}, - [6033] = {.lex_state = 338}, - [6034] = {.lex_state = 290}, - [6035] = {.lex_state = 290}, - [6036] = {.lex_state = 338}, - [6037] = {.lex_state = 290}, - [6038] = {.lex_state = 334}, - [6039] = {.lex_state = 290}, - [6040] = {.lex_state = 290}, - [6041] = {.lex_state = 290}, - [6042] = {.lex_state = 290}, - [6043] = {.lex_state = 290}, - [6044] = {.lex_state = 290}, - [6045] = {.lex_state = 290}, - [6046] = {.lex_state = 290}, - [6047] = {.lex_state = 290}, - [6048] = {.lex_state = 290}, - [6049] = {.lex_state = 290}, - [6050] = {.lex_state = 338}, - [6051] = {.lex_state = 338}, - [6052] = {.lex_state = 290}, - [6053] = {.lex_state = 280}, - [6054] = {.lex_state = 262}, - [6055] = {.lex_state = 338}, - [6056] = {.lex_state = 338}, - [6057] = {.lex_state = 290}, - [6058] = {.lex_state = 290}, - [6059] = {.lex_state = 338}, - [6060] = {.lex_state = 338}, - [6061] = {.lex_state = 338}, - [6062] = {.lex_state = 338}, - [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}, - [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}, - [6080] = {.lex_state = 338}, - [6081] = {.lex_state = 290}, - [6082] = {.lex_state = 338}, - [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}, - [6090] = {.lex_state = 290}, - [6091] = {.lex_state = 338}, - [6092] = {.lex_state = 338}, - [6093] = {.lex_state = 290}, - [6094] = {.lex_state = 290}, - [6095] = {.lex_state = 290}, - [6096] = {.lex_state = 290}, - [6097] = {.lex_state = 290}, - [6098] = {.lex_state = 290}, - [6099] = {.lex_state = 338}, - [6100] = {.lex_state = 264}, - [6101] = {.lex_state = 290}, - [6102] = {.lex_state = 338}, - [6103] = {.lex_state = 290}, - [6104] = {.lex_state = 290}, - [6105] = {.lex_state = 290}, - [6106] = {.lex_state = 290}, - [6107] = {.lex_state = 290}, - [6108] = {.lex_state = 290}, - [6109] = {.lex_state = 338}, - [6110] = {.lex_state = 262}, - [6111] = {.lex_state = 280}, - [6112] = {.lex_state = 290}, - [6113] = {.lex_state = 290}, - [6114] = {.lex_state = 280}, - [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}, - [6125] = {.lex_state = 338}, - [6126] = {.lex_state = 280}, - [6127] = {.lex_state = 338}, - [6128] = {.lex_state = 280}, - [6129] = {.lex_state = 338}, - [6130] = {.lex_state = 262}, - [6131] = {.lex_state = 264}, - [6132] = {.lex_state = 280}, - [6133] = {.lex_state = 280}, - [6134] = {.lex_state = 264}, - [6135] = {.lex_state = 277}, - [6136] = {.lex_state = 280}, - [6137] = {.lex_state = 324}, - [6138] = {.lex_state = 264}, - [6139] = {.lex_state = 262}, - [6140] = {.lex_state = 280}, - [6141] = {.lex_state = 319}, - [6142] = {.lex_state = 262}, - [6143] = {.lex_state = 262}, - [6144] = {.lex_state = 338}, - [6145] = {.lex_state = 264}, - [6146] = {.lex_state = 316}, - [6147] = {.lex_state = 276}, - [6148] = {.lex_state = 280}, - [6149] = {.lex_state = 280}, - [6150] = {.lex_state = 280}, - [6151] = {.lex_state = 280}, - [6152] = {.lex_state = 280}, - [6153] = {.lex_state = 337}, - [6154] = {.lex_state = 316}, - [6155] = {.lex_state = 335}, - [6156] = {.lex_state = 280}, - [6157] = {.lex_state = 316}, - [6158] = {.lex_state = 280}, - [6159] = {.lex_state = 319}, - [6160] = {.lex_state = 280}, - [6161] = {.lex_state = 280}, - [6162] = {.lex_state = 280}, - [6163] = {.lex_state = 280}, - [6164] = {.lex_state = 280}, - [6165] = {.lex_state = 324}, - [6166] = {.lex_state = 280}, - [6167] = {.lex_state = 280}, - [6168] = {.lex_state = 280}, - [6169] = {.lex_state = 276}, - [6170] = {.lex_state = 280}, - [6171] = {.lex_state = 280}, - [6172] = {.lex_state = 280}, - [6173] = {.lex_state = 280}, - [6174] = {.lex_state = 334}, - [6175] = {.lex_state = 280}, - [6176] = {.lex_state = 319}, - [6177] = {.lex_state = 280}, - [6178] = {.lex_state = 341}, - [6179] = {.lex_state = 280}, - [6180] = {.lex_state = 337}, - [6181] = {.lex_state = 280}, - [6182] = {.lex_state = 280}, - [6183] = {.lex_state = 334}, - [6184] = {.lex_state = 318}, - [6185] = {.lex_state = 334}, - [6186] = {.lex_state = 317}, - [6187] = {.lex_state = 341}, - [6188] = {.lex_state = 280}, - [6189] = {.lex_state = 280}, - [6190] = {.lex_state = 280}, - [6191] = {.lex_state = 280}, - [6192] = {.lex_state = 280}, - [6193] = {.lex_state = 324}, - [6194] = {.lex_state = 285}, - [6195] = {.lex_state = 319}, - [6196] = {.lex_state = 319}, - [6197] = {.lex_state = 285}, - [6198] = {.lex_state = 285}, - [6199] = {.lex_state = 285}, - [6200] = {.lex_state = 316}, - [6201] = {.lex_state = 316}, - [6202] = {.lex_state = 285}, - [6203] = {.lex_state = 285}, - [6204] = {.lex_state = 316}, - [6205] = {.lex_state = 338}, - [6206] = {.lex_state = 285}, - [6207] = {.lex_state = 285}, - [6208] = {.lex_state = 285}, - [6209] = {.lex_state = 285}, - [6210] = {.lex_state = 338}, - [6211] = {.lex_state = 285}, - [6212] = {.lex_state = 285}, - [6213] = {.lex_state = 285}, - [6214] = {.lex_state = 285}, - [6215] = {.lex_state = 338}, - [6216] = {.lex_state = 285}, - [6217] = {.lex_state = 316}, - [6218] = {.lex_state = 285}, - [6219] = {.lex_state = 285}, - [6220] = {.lex_state = 324}, - [6221] = {.lex_state = 324}, - [6222] = {.lex_state = 285}, - [6223] = {.lex_state = 285}, - [6224] = {.lex_state = 285}, - [6225] = {.lex_state = 285}, - [6226] = {.lex_state = 285}, - [6227] = {.lex_state = 285}, - [6228] = {.lex_state = 285}, - [6229] = {.lex_state = 285}, - [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}, - [6238] = {.lex_state = 285}, - [6239] = {.lex_state = 285}, - [6240] = {.lex_state = 285}, - [6241] = {.lex_state = 285}, - [6242] = {.lex_state = 285}, - [6243] = {.lex_state = 285}, - [6244] = {.lex_state = 285}, - [6245] = {.lex_state = 285}, - [6246] = {.lex_state = 324}, - [6247] = {.lex_state = 285}, - [6248] = {.lex_state = 324}, - [6249] = {.lex_state = 324}, - [6250] = {.lex_state = 324}, - [6251] = {.lex_state = 285}, - [6252] = {.lex_state = 338}, - [6253] = {.lex_state = 285}, - [6254] = {.lex_state = 285}, - [6255] = {.lex_state = 285}, - [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}, - [6279] = {.lex_state = 277}, - [6280] = {.lex_state = 319}, - [6281] = {.lex_state = 319}, - [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}, - [6297] = {.lex_state = 280}, - [6298] = {.lex_state = 280}, - [6299] = {.lex_state = 319}, - [6300] = {.lex_state = 280}, - [6301] = {.lex_state = 280}, - [6302] = {.lex_state = 280}, - [6303] = {.lex_state = 320}, - [6304] = {.lex_state = 315}, - [6305] = {.lex_state = 277}, - [6306] = {.lex_state = 277}, - [6307] = {.lex_state = 280}, - [6308] = {.lex_state = 280}, - [6309] = {.lex_state = 280}, - [6310] = {.lex_state = 315}, - [6311] = {.lex_state = 280}, - [6312] = {.lex_state = 334}, - [6313] = {.lex_state = 280}, - [6314] = {.lex_state = 277}, - [6315] = {.lex_state = 319}, - [6316] = {.lex_state = 277}, - [6317] = {.lex_state = 340}, - [6318] = {.lex_state = 277}, - [6319] = {.lex_state = 277}, - [6320] = {.lex_state = 280}, - [6321] = {.lex_state = 277}, - [6322] = {.lex_state = 280}, - [6323] = {.lex_state = 319}, - [6324] = {.lex_state = 277}, - [6325] = {.lex_state = 337}, - [6326] = {.lex_state = 280}, - [6327] = {.lex_state = 280}, - [6328] = {.lex_state = 280}, - [6329] = {.lex_state = 280}, - [6330] = {.lex_state = 280}, - [6331] = {.lex_state = 280}, - [6332] = {.lex_state = 319}, - [6333] = {.lex_state = 280}, - [6334] = {.lex_state = 280}, - [6335] = {.lex_state = 337}, - [6336] = {.lex_state = 280}, - [6337] = {.lex_state = 280}, - [6338] = {.lex_state = 280}, - [6339] = {.lex_state = 280}, - [6340] = {.lex_state = 282}, - [6341] = {.lex_state = 319}, - [6342] = {.lex_state = 280}, - [6343] = {.lex_state = 280}, - [6344] = {.lex_state = 280}, - [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}, - [6358] = {.lex_state = 280}, - [6359] = {.lex_state = 280}, - [6360] = {.lex_state = 338}, - [6361] = {.lex_state = 280}, - [6362] = {.lex_state = 280}, - [6363] = {.lex_state = 277}, - [6364] = {.lex_state = 280}, - [6365] = {.lex_state = 280}, - [6366] = {.lex_state = 280}, - [6367] = {.lex_state = 315}, - [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}, - [6378] = {.lex_state = 280}, - [6379] = {.lex_state = 279}, - [6380] = {.lex_state = 334}, - [6381] = {.lex_state = 279}, - [6382] = {.lex_state = 280}, - [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}, - [6392] = {.lex_state = 279}, - [6393] = {.lex_state = 324}, - [6394] = {.lex_state = 280}, - [6395] = {.lex_state = 324}, - [6396] = {.lex_state = 334}, - [6397] = {.lex_state = 324}, - [6398] = {.lex_state = 334}, - [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}, - [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}, - [6414] = {.lex_state = 334}, - [6415] = {.lex_state = 334}, - [6416] = {.lex_state = 334}, - [6417] = {.lex_state = 279}, - [6418] = {.lex_state = 334}, - [6419] = {.lex_state = 283}, - [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}, - [6427] = {.lex_state = 334}, - [6428] = {.lex_state = 280}, - [6429] = {.lex_state = 280}, - [6430] = {.lex_state = 319}, - [6431] = {.lex_state = 280}, - [6432] = {.lex_state = 280}, - [6433] = {.lex_state = 280}, - [6434] = {.lex_state = 280}, - [6435] = {.lex_state = 280}, - [6436] = {.lex_state = 280}, - [6437] = {.lex_state = 280}, - [6438] = {.lex_state = 277}, - [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}, - [6459] = {.lex_state = 338}, - [6460] = {.lex_state = 319}, - [6461] = {.lex_state = 319}, - [6462] = {.lex_state = 319}, - [6463] = {.lex_state = 277}, - [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}, - [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}, - [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}, - [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}, - [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}, - [6509] = {.lex_state = 280}, - [6510] = {.lex_state = 280}, - [6511] = {.lex_state = 280}, - [6512] = {.lex_state = 280}, - [6513] = {.lex_state = 319}, - [6514] = {.lex_state = 280}, - [6515] = {.lex_state = 277}, - [6516] = {.lex_state = 280}, - [6517] = {.lex_state = 280}, - [6518] = {.lex_state = 280}, - [6519] = {.lex_state = 280}, - [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}, - [6528] = {.lex_state = 337}, - [6529] = {.lex_state = 280}, - [6530] = {.lex_state = 280}, - [6531] = {.lex_state = 280}, - [6532] = {.lex_state = 335}, - [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}, - [6543] = {.lex_state = 280}, - [6544] = {.lex_state = 280}, - [6545] = {.lex_state = 280}, - [6546] = {.lex_state = 280}, - [6547] = {.lex_state = 280}, - [6548] = {.lex_state = 280}, - [6549] = {.lex_state = 337}, - [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}, - [6572] = {.lex_state = 280}, - [6573] = {.lex_state = 277}, - [6574] = {.lex_state = 334}, - [6575] = {.lex_state = 280}, - [6576] = {.lex_state = 319}, - [6577] = {.lex_state = 319}, - [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}, - [6585] = {.lex_state = 280}, - [6586] = {.lex_state = 280}, - [6587] = {.lex_state = 280}, - [6588] = {.lex_state = 319}, - [6589] = {.lex_state = 280}, - [6590] = {.lex_state = 280}, - [6591] = {.lex_state = 319}, - [6592] = {.lex_state = 319}, - [6593] = {.lex_state = 277}, - [6594] = {.lex_state = 280}, - [6595] = {.lex_state = 280}, - [6596] = {.lex_state = 277}, - [6597] = {.lex_state = 280}, - [6598] = {.lex_state = 319}, - [6599] = {.lex_state = 280}, - [6600] = {.lex_state = 283}, - [6601] = {.lex_state = 334}, - [6602] = {.lex_state = 277}, - [6603] = {.lex_state = 280}, - [6604] = {.lex_state = 280}, - [6605] = {.lex_state = 280}, - [6606] = {.lex_state = 319}, - [6607] = {.lex_state = 277}, - [6608] = {.lex_state = 277}, - [6609] = {.lex_state = 280}, - [6610] = {.lex_state = 277}, - [6611] = {.lex_state = 283}, - [6612] = {.lex_state = 337}, - [6613] = {.lex_state = 277}, - [6614] = {.lex_state = 277}, - [6615] = {.lex_state = 277}, - [6616] = {.lex_state = 277}, - [6617] = {.lex_state = 277}, - [6618] = {.lex_state = 280}, - [6619] = {.lex_state = 280}, - [6620] = {.lex_state = 319}, - [6621] = {.lex_state = 280}, - [6622] = {.lex_state = 277}, - [6623] = {.lex_state = 277}, - [6624] = {.lex_state = 277}, - [6625] = {.lex_state = 277}, - [6626] = {.lex_state = 277}, - [6627] = {.lex_state = 280}, - [6628] = {.lex_state = 280}, - [6629] = {.lex_state = 319}, - [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}, - [6644] = {.lex_state = 280}, - [6645] = {.lex_state = 337}, - [6646] = {.lex_state = 319}, - [6647] = {.lex_state = 319}, - [6648] = {.lex_state = 280}, - [6649] = {.lex_state = 277}, - [6650] = {.lex_state = 277}, - [6651] = {.lex_state = 277}, - [6652] = {.lex_state = 321}, - [6653] = {.lex_state = 280}, - [6654] = {.lex_state = 319}, - [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}, - [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}, - [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}, - [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}, - [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}, - [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}, - [6731] = {.lex_state = 280}, - [6732] = {.lex_state = 319}, - [6733] = {.lex_state = 280}, - [6734] = {.lex_state = 319}, - [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}, - [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}, - [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}, - [6767] = {.lex_state = 280}, - [6768] = {.lex_state = 319}, - [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}, - [6783] = {.lex_state = 280}, - [6784] = {.lex_state = 280}, - [6785] = {.lex_state = 280}, - [6786] = {.lex_state = 280}, - [6787] = {.lex_state = 280}, - [6788] = {.lex_state = 280}, - [6789] = {.lex_state = 280}, - [6790] = {.lex_state = 280}, - [6791] = {.lex_state = 280}, - [6792] = {.lex_state = 280}, - [6793] = {.lex_state = 280}, - [6794] = {.lex_state = 280}, - [6795] = {.lex_state = 280}, - [6796] = {.lex_state = 280}, - [6797] = {.lex_state = 280}, - [6798] = {.lex_state = 280}, - [6799] = {.lex_state = 280}, - [6800] = {.lex_state = 277}, - [6801] = {.lex_state = 277}, - [6802] = {.lex_state = 277}, - [6803] = {.lex_state = 277}, - [6804] = {.lex_state = 280}, - [6805] = {.lex_state = 277}, - [6806] = {.lex_state = 280}, - [6807] = {.lex_state = 280}, - [6808] = {.lex_state = 277}, - [6809] = {.lex_state = 280}, - [6810] = {.lex_state = 279}, - [6811] = {.lex_state = 280}, - [6812] = {.lex_state = 319}, - [6813] = {.lex_state = 277}, - [6814] = {.lex_state = 277}, - [6815] = {.lex_state = 277}, - [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}, - [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}, - [6832] = {.lex_state = 280}, - [6833] = {.lex_state = 280}, - [6834] = {.lex_state = 280}, - [6835] = {.lex_state = 319}, - [6836] = {.lex_state = 319}, - [6837] = {.lex_state = 280}, - [6838] = {.lex_state = 280}, - [6839] = {.lex_state = 319}, - [6840] = {.lex_state = 337}, - [6841] = {.lex_state = 280}, - [6842] = {.lex_state = 319}, - [6843] = {.lex_state = 280}, - [6844] = {.lex_state = 319}, - [6845] = {.lex_state = 280}, - [6846] = {.lex_state = 280}, - [6847] = {.lex_state = 280}, - [6848] = {.lex_state = 280}, - [6849] = {.lex_state = 280}, - [6850] = {.lex_state = 280}, - [6851] = {.lex_state = 280}, - [6852] = {.lex_state = 280}, - [6853] = {.lex_state = 280}, - [6854] = {.lex_state = 280}, - [6855] = {.lex_state = 280}, - [6856] = {.lex_state = 280}, - [6857] = {.lex_state = 280}, - [6858] = {.lex_state = 280}, - [6859] = {.lex_state = 280}, - [6860] = {.lex_state = 280}, - [6861] = {.lex_state = 280}, - [6862] = {.lex_state = 280}, - [6863] = {.lex_state = 280}, - [6864] = {.lex_state = 319}, - [6865] = {.lex_state = 280}, - [6866] = {.lex_state = 280}, - [6867] = {.lex_state = 280}, - [6868] = {.lex_state = 280}, - [6869] = {.lex_state = 280}, - [6870] = {.lex_state = 280}, - [6871] = {.lex_state = 280}, - [6872] = {.lex_state = 277}, - [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}, - [6880] = {.lex_state = 280}, - [6881] = {.lex_state = 280}, - [6882] = {.lex_state = 280}, - [6883] = {.lex_state = 337}, - [6884] = {.lex_state = 280}, - [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}, - [6893] = {.lex_state = 277}, - [6894] = {.lex_state = 337}, - [6895] = {.lex_state = 280}, - [6896] = {.lex_state = 280}, - [6897] = {.lex_state = 277}, - [6898] = {.lex_state = 280}, - [6899] = {.lex_state = 319}, - [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}, - [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}, - [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}, - [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}, - [6938] = {.lex_state = 280}, - [6939] = {.lex_state = 285}, - [6940] = {.lex_state = 277}, - [6941] = {.lex_state = 280}, - [6942] = {.lex_state = 280}, - [6943] = {.lex_state = 277}, - [6944] = {.lex_state = 280}, - [6945] = {.lex_state = 319}, - [6946] = {.lex_state = 319}, - [6947] = {.lex_state = 280}, - [6948] = {.lex_state = 280}, - [6949] = {.lex_state = 280}, - [6950] = {.lex_state = 277}, - [6951] = {.lex_state = 319}, - [6952] = {.lex_state = 280}, - [6953] = {.lex_state = 277}, - [6954] = {.lex_state = 280}, - [6955] = {.lex_state = 280}, - [6956] = {.lex_state = 277}, - [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}, - [6964] = {.lex_state = 280}, - [6965] = {.lex_state = 285}, - [6966] = {.lex_state = 285}, - [6967] = {.lex_state = 280}, - [6968] = {.lex_state = 277}, - [6969] = {.lex_state = 285}, - [6970] = {.lex_state = 280}, - [6971] = {.lex_state = 280}, - [6972] = {.lex_state = 285}, - [6973] = {.lex_state = 280}, - [6974] = {.lex_state = 280}, - [6975] = {.lex_state = 277}, - [6976] = {.lex_state = 280}, - [6977] = {.lex_state = 285}, - [6978] = {.lex_state = 280}, - [6979] = {.lex_state = 280}, - [6980] = {.lex_state = 277}, - [6981] = {.lex_state = 280}, - [6982] = {.lex_state = 280}, - [6983] = {.lex_state = 280}, - [6984] = {.lex_state = 277}, - [6985] = {.lex_state = 277}, - [6986] = {.lex_state = 280}, - [6987] = {.lex_state = 277}, - [6988] = {.lex_state = 277}, - [6989] = {.lex_state = 277}, - [6990] = {.lex_state = 280}, - [6991] = {.lex_state = 280}, - [6992] = {.lex_state = 285}, - [6993] = {.lex_state = 285}, - [6994] = {.lex_state = 280}, - [6995] = {.lex_state = 280}, - [6996] = {.lex_state = 280}, - [6997] = {.lex_state = 280}, - [6998] = {.lex_state = 280}, - [6999] = {.lex_state = 277}, - [7000] = {.lex_state = 338}, - [7001] = {.lex_state = 280}, - [7002] = {.lex_state = 280}, - [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}, - [7010] = {.lex_state = 277}, - [7011] = {.lex_state = 277}, - [7012] = {.lex_state = 277}, - [7013] = {.lex_state = 285}, - [7014] = {.lex_state = 277}, - [7015] = {.lex_state = 285}, - [7016] = {.lex_state = 280}, - [7017] = {.lex_state = 280}, - [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}, - [7038] = {.lex_state = 280}, - [7039] = {.lex_state = 280}, - [7040] = {.lex_state = 280}, - [7041] = {.lex_state = 277}, - [7042] = {.lex_state = 280}, - [7043] = {.lex_state = 277}, - [7044] = {.lex_state = 277}, - [7045] = {.lex_state = 277}, - [7046] = {.lex_state = 277}, - [7047] = {.lex_state = 280}, - [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}, - [7067] = {.lex_state = 277}, - [7068] = {.lex_state = 280}, - [7069] = {.lex_state = 280}, - [7070] = {.lex_state = 280}, - [7071] = {.lex_state = 280}, - [7072] = {.lex_state = 280}, - [7073] = {.lex_state = 280}, - [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}, - [7081] = {.lex_state = 280}, - [7082] = {.lex_state = 285}, - [7083] = {.lex_state = 337}, - [7084] = {.lex_state = 285}, - [7085] = {.lex_state = 280}, - [7086] = {.lex_state = 334}, - [7087] = {.lex_state = 280}, - [7088] = {.lex_state = 319}, - [7089] = {.lex_state = 342}, - [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}, - [7102] = {.lex_state = 277}, - [7103] = {.lex_state = 285}, - [7104] = {.lex_state = 285}, - [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}, - [7112] = {.lex_state = 280}, - [7113] = {.lex_state = 280}, - [7114] = {.lex_state = 280}, - [7115] = {.lex_state = 280}, - [7116] = {.lex_state = 285}, - [7117] = {.lex_state = 285}, - [7118] = {.lex_state = 285}, - [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}, - [7127] = {.lex_state = 280}, - [7128] = {.lex_state = 337}, - [7129] = {.lex_state = 337}, - [7130] = {.lex_state = 338}, - [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}, - [7140] = {.lex_state = 280}, - [7141] = {.lex_state = 337}, - [7142] = {.lex_state = 277}, - [7143] = {.lex_state = 337}, - [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}, - [7154] = {.lex_state = 277}, - [7155] = {.lex_state = 277}, - [7156] = {.lex_state = 277}, - [7157] = {.lex_state = 277}, - [7158] = {.lex_state = 280}, - [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}, - [7167] = {.lex_state = 280}, - [7168] = {.lex_state = 285}, - [7169] = {.lex_state = 280}, - [7170] = {.lex_state = 277}, - [7171] = {.lex_state = 322}, - [7172] = {.lex_state = 285}, - [7173] = {.lex_state = 277}, - [7174] = {.lex_state = 280}, - [7175] = {.lex_state = 319}, - [7176] = {.lex_state = 280}, - [7177] = {.lex_state = 280}, - [7178] = {.lex_state = 280}, - [7179] = {.lex_state = 319}, - [7180] = {.lex_state = 280}, - [7181] = {.lex_state = 280}, - [7182] = {.lex_state = 285}, - [7183] = {.lex_state = 277}, - [7184] = {.lex_state = 280}, - [7185] = {.lex_state = 280}, - [7186] = {.lex_state = 280}, - [7187] = {.lex_state = 280}, - [7188] = {.lex_state = 280}, - [7189] = {.lex_state = 280}, - [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}, - [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}, - [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}, - [7224] = {.lex_state = 265}, - [7225] = {.lex_state = 337}, - [7226] = {.lex_state = 280}, - [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}, - [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}, - [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}, - [7255] = {.lex_state = 277}, - [7256] = {.lex_state = 319}, - [7257] = {.lex_state = 280}, - [7258] = {.lex_state = 265}, - [7259] = {.lex_state = 319}, - [7260] = {.lex_state = 337}, - [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}, - [7271] = {.lex_state = 265}, - [7272] = {.lex_state = 280}, - [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}, - [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}, - [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}, - [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}, - [7313] = {.lex_state = 265}, - [7314] = {.lex_state = 277}, - [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}, - [7323] = {.lex_state = 265}, - [7324] = {.lex_state = 319}, - [7325] = {.lex_state = 319}, - [7326] = {.lex_state = 337}, - [7327] = {.lex_state = 319}, - [7328] = {.lex_state = 265}, - [7329] = {.lex_state = 265}, - [7330] = {.lex_state = 279}, - [7331] = {.lex_state = 319}, - [7332] = {.lex_state = 265}, - [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}, - [7354] = {.lex_state = 265}, - [7355] = {.lex_state = 265}, - [7356] = {.lex_state = 319}, - [7357] = {.lex_state = 279}, - [7358] = {.lex_state = 338}, - [7359] = {.lex_state = 265}, - [7360] = {.lex_state = 319}, - [7361] = {.lex_state = 277}, - [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}, - [7374] = {.lex_state = 265}, - [7375] = {.lex_state = 265}, - [7376] = {.lex_state = 338}, - [7377] = {.lex_state = 265}, - [7378] = {.lex_state = 265}, - [7379] = {.lex_state = 277}, - [7380] = {.lex_state = 319}, - [7381] = {.lex_state = 265}, - [7382] = {.lex_state = 265}, - [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}, - [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}, - [7401] = {.lex_state = 285}, - [7402] = {.lex_state = 285}, - [7403] = {.lex_state = 285}, - [7404] = {.lex_state = 285}, - [7405] = {.lex_state = 285}, - [7406] = {.lex_state = 265}, - [7407] = {.lex_state = 285}, - [7408] = {.lex_state = 285}, - [7409] = {.lex_state = 265}, - [7410] = {.lex_state = 285}, - [7411] = {.lex_state = 285}, - [7412] = {.lex_state = 265}, - [7413] = {.lex_state = 285}, - [7414] = {.lex_state = 285}, - [7415] = {.lex_state = 285}, - [7416] = {.lex_state = 337}, - [7417] = {.lex_state = 285}, - [7418] = {.lex_state = 265}, - [7419] = {.lex_state = 280}, - [7420] = {.lex_state = 265}, - [7421] = {.lex_state = 285}, - [7422] = {.lex_state = 285}, - [7423] = {.lex_state = 285}, - [7424] = {.lex_state = 285}, - [7425] = {.lex_state = 285}, - [7426] = {.lex_state = 285}, - [7427] = {.lex_state = 285}, - [7428] = {.lex_state = 315}, - [7429] = {.lex_state = 315}, - [7430] = {.lex_state = 285}, - [7431] = {.lex_state = 285}, - [7432] = {.lex_state = 285}, - [7433] = {.lex_state = 315}, - [7434] = {.lex_state = 315}, - [7435] = {.lex_state = 285}, - [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}, - [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}, - [7456] = {.lex_state = 285}, - [7457] = {.lex_state = 285}, - [7458] = {.lex_state = 285}, - [7459] = {.lex_state = 315}, - [7460] = {.lex_state = 333}, - [7461] = {.lex_state = 285}, - [7462] = {.lex_state = 285}, - [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}, - [7470] = {.lex_state = 285}, - [7471] = {.lex_state = 340}, - [7472] = {.lex_state = 265}, - [7473] = {.lex_state = 285}, - [7474] = {.lex_state = 285}, - [7475] = {.lex_state = 265}, - [7476] = {.lex_state = 285}, - [7477] = {.lex_state = 285}, - [7478] = {.lex_state = 265}, - [7479] = {.lex_state = 285}, - [7480] = {.lex_state = 265}, - [7481] = {.lex_state = 333}, - [7482] = {.lex_state = 265}, - [7483] = {.lex_state = 285}, - [7484] = {.lex_state = 285}, - [7485] = {.lex_state = 285}, - [7486] = {.lex_state = 285}, - [7487] = {.lex_state = 285}, - [7488] = {.lex_state = 285}, - [7489] = {.lex_state = 285}, - [7490] = {.lex_state = 285}, - [7491] = {.lex_state = 285}, - [7492] = {.lex_state = 265}, - [7493] = {.lex_state = 285}, - [7494] = {.lex_state = 285}, - [7495] = {.lex_state = 285}, - [7496] = {.lex_state = 285}, - [7497] = {.lex_state = 315}, - [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}, - [7506] = {.lex_state = 334}, - [7507] = {.lex_state = 334}, - [7508] = {.lex_state = 319}, - [7509] = {.lex_state = 338}, - [7510] = {.lex_state = 334}, - [7511] = {.lex_state = 334}, - [7512] = {.lex_state = 334}, - [7513] = {.lex_state = 334}, - [7514] = {.lex_state = 338}, - [7515] = {.lex_state = 334}, - [7516] = {.lex_state = 334}, - [7517] = {.lex_state = 319}, - [7518] = {.lex_state = 319}, - [7519] = {.lex_state = 334}, - [7520] = {.lex_state = 338}, - [7521] = {.lex_state = 334}, - [7522] = {.lex_state = 338}, - [7523] = {.lex_state = 338}, - [7524] = {.lex_state = 334}, - [7525] = {.lex_state = 334}, - [7526] = {.lex_state = 334}, - [7527] = {.lex_state = 334}, - [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}, - [7539] = {.lex_state = 334}, - [7540] = {.lex_state = 279}, - [7541] = {.lex_state = 334}, - [7542] = {.lex_state = 334}, - [7543] = {.lex_state = 334}, - [7544] = {.lex_state = 334}, - [7545] = {.lex_state = 334}, - [7546] = {.lex_state = 334}, - [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}, - [7555] = {.lex_state = 334}, - [7556] = {.lex_state = 334}, - [7557] = {.lex_state = 334}, - [7558] = {.lex_state = 319}, - [7559] = {.lex_state = 334}, - [7560] = {.lex_state = 334}, - [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}, - [7570] = {.lex_state = 337}, - [7571] = {.lex_state = 337}, - [7572] = {.lex_state = 337}, - [7573] = {.lex_state = 279}, - [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}, - [7582] = {.lex_state = 280}, - [7583] = {.lex_state = 266}, - [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}, - [7591] = {.lex_state = 280}, - [7592] = {.lex_state = 337}, - [7593] = {.lex_state = 280}, - [7594] = {.lex_state = 337}, - [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}, - [7607] = {.lex_state = 337}, - [7608] = {.lex_state = 337}, - [7609] = {.lex_state = 337}, - [7610] = {.lex_state = 337}, - [7611] = {.lex_state = 337}, - [7612] = {.lex_state = 337}, - [7613] = {.lex_state = 337}, - [7614] = {.lex_state = 337}, - [7615] = {.lex_state = 340}, - [7616] = {.lex_state = 340}, - [7617] = {.lex_state = 337}, - [7618] = {.lex_state = 337}, - [7619] = {.lex_state = 337}, - [7620] = {.lex_state = 337}, - [7621] = {.lex_state = 337}, - [7622] = {.lex_state = 337}, - [7623] = {.lex_state = 337}, - [7624] = {.lex_state = 337}, - [7625] = {.lex_state = 337}, - [7626] = {.lex_state = 337}, - [7627] = {.lex_state = 337}, - [7628] = {.lex_state = 337}, - [7629] = {.lex_state = 337}, - [7630] = {.lex_state = 337}, - [7631] = {.lex_state = 337}, - [7632] = {.lex_state = 337}, - [7633] = {.lex_state = 337}, - [7634] = {.lex_state = 337}, - [7635] = {.lex_state = 337}, - [7636] = {.lex_state = 337}, - [7637] = {.lex_state = 337}, - [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}, - [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}, - [7656] = {.lex_state = 338}, - [7657] = {.lex_state = 338}, - [7658] = {.lex_state = 298}, - [7659] = {.lex_state = 285}, - [7660] = {.lex_state = 285}, - [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}, - [7668] = {.lex_state = 285}, - [7669] = {.lex_state = 333}, - [7670] = {.lex_state = 348}, - [7671] = {.lex_state = 285}, - [7672] = {.lex_state = 298}, - [7673] = {.lex_state = 266}, - [7674] = {.lex_state = 348}, - [7675] = {.lex_state = 298}, - [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}, - [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}, - [7697] = {.lex_state = 285}, - [7698] = {.lex_state = 298}, - [7699] = {.lex_state = 285}, - [7700] = {.lex_state = 333}, - [7701] = {.lex_state = 266}, - [7702] = {.lex_state = 338}, - [7703] = {.lex_state = 338}, - [7704] = {.lex_state = 338}, - [7705] = {.lex_state = 338}, - [7706] = {.lex_state = 338}, - [7707] = {.lex_state = 285}, - [7708] = {.lex_state = 285}, - [7709] = {.lex_state = 285}, - [7710] = {.lex_state = 285}, - [7711] = {.lex_state = 285}, - [7712] = {.lex_state = 285}, - [7713] = {.lex_state = 285}, - [7714] = {.lex_state = 285}, - [7715] = {.lex_state = 285}, - [7716] = {.lex_state = 285}, - [7717] = {.lex_state = 285}, - [7718] = {.lex_state = 285}, - [7719] = {.lex_state = 285}, - [7720] = {.lex_state = 285}, - [7721] = {.lex_state = 266}, - [7722] = {.lex_state = 285}, - [7723] = {.lex_state = 338}, - [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}, - [7740] = {.lex_state = 348}, - [7741] = {.lex_state = 348}, - [7742] = {.lex_state = 348}, - [7743] = {.lex_state = 340}, - [7744] = {.lex_state = 285}, - [7745] = {.lex_state = 348}, - [7746] = {.lex_state = 348}, - [7747] = {.lex_state = 348}, - [7748] = {.lex_state = 348}, - [7749] = {.lex_state = 348}, - [7750] = {.lex_state = 348}, - [7751] = {.lex_state = 348}, - [7752] = {.lex_state = 348}, - [7753] = {.lex_state = 348}, - [7754] = {.lex_state = 340}, - [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}, - [7762] = {.lex_state = 348}, - [7763] = {.lex_state = 348}, - [7764] = {.lex_state = 348}, - [7765] = {.lex_state = 340}, - [7766] = {.lex_state = 348}, - [7767] = {.lex_state = 340}, - [7768] = {.lex_state = 348}, - [7769] = {.lex_state = 348}, - [7770] = {.lex_state = 340}, - [7771] = {.lex_state = 348}, - [7772] = {.lex_state = 348}, - [7773] = {.lex_state = 348}, - [7774] = {.lex_state = 348}, - [7775] = {.lex_state = 348}, - [7776] = {.lex_state = 340}, - [7777] = {.lex_state = 315}, - [7778] = {.lex_state = 348}, - [7779] = {.lex_state = 315}, - [7780] = {.lex_state = 348}, - [7781] = {.lex_state = 348}, - [7782] = {.lex_state = 348}, - [7783] = {.lex_state = 348}, - [7784] = {.lex_state = 315}, - [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}, - [7792] = {.lex_state = 348}, - [7793] = {.lex_state = 340}, - [7794] = {.lex_state = 340}, - [7795] = {.lex_state = 348}, - [7796] = {.lex_state = 348}, - [7797] = {.lex_state = 348}, - [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}, - [7805] = {.lex_state = 265}, - [7806] = {.lex_state = 265}, - [7807] = {.lex_state = 265}, - [7808] = {.lex_state = 265}, - [7809] = {.lex_state = 265}, - [7810] = {.lex_state = 265}, - [7811] = {.lex_state = 265}, - [7812] = {.lex_state = 265}, - [7813] = {.lex_state = 265}, - [7814] = {.lex_state = 265}, - [7815] = {.lex_state = 265}, - [7816] = {.lex_state = 265}, - [7817] = {.lex_state = 265}, - [7818] = {.lex_state = 265}, - [7819] = {.lex_state = 265}, - [7820] = {.lex_state = 265}, - [7821] = {.lex_state = 285}, - [7822] = {.lex_state = 265}, - [7823] = {.lex_state = 265}, - [7824] = {.lex_state = 265}, - [7825] = {.lex_state = 265}, - [7826] = {.lex_state = 265}, - [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}, - [7836] = {.lex_state = 265}, - [7837] = {.lex_state = 265}, - [7838] = {.lex_state = 265}, - [7839] = {.lex_state = 265}, - [7840] = {.lex_state = 298}, - [7841] = {.lex_state = 265}, - [7842] = {.lex_state = 298}, - [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}, - [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}, - [7857] = {.lex_state = 265}, - [7858] = {.lex_state = 285}, - [7859] = {.lex_state = 265}, - [7860] = {.lex_state = 265}, - [7861] = {.lex_state = 265}, - [7862] = {.lex_state = 265}, - [7863] = {.lex_state = 285}, - [7864] = {.lex_state = 285}, - [7865] = {.lex_state = 265}, - [7866] = {.lex_state = 285}, - [7867] = {.lex_state = 265}, - [7868] = {.lex_state = 265}, - [7869] = {.lex_state = 265}, - [7870] = {.lex_state = 265}, - [7871] = {.lex_state = 265}, - [7872] = {.lex_state = 265}, - [7873] = {.lex_state = 265}, - [7874] = {.lex_state = 265}, - [7875] = {.lex_state = 265}, - [7876] = {.lex_state = 265}, - [7877] = {.lex_state = 265}, - [7878] = {.lex_state = 265}, - [7879] = {.lex_state = 265}, - [7880] = {.lex_state = 265}, - [7881] = {.lex_state = 265}, - [7882] = {.lex_state = 265}, - [7883] = {.lex_state = 265}, - [7884] = {.lex_state = 265}, - [7885] = {.lex_state = 265}, - [7886] = {.lex_state = 265}, - [7887] = {.lex_state = 265}, - [7888] = {.lex_state = 265}, - [7889] = {.lex_state = 265}, - [7890] = {.lex_state = 265}, - [7891] = {.lex_state = 265}, - [7892] = {.lex_state = 265}, - [7893] = {.lex_state = 265}, - [7894] = {.lex_state = 265}, - [7895] = {.lex_state = 265}, - [7896] = {.lex_state = 265}, - [7897] = {.lex_state = 265}, - [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}, - [7909] = {.lex_state = 315}, - [7910] = {.lex_state = 343}, - [7911] = {.lex_state = 343}, - [7912] = {.lex_state = 315}, - [7913] = {.lex_state = 343}, - [7914] = {.lex_state = 343}, - [7915] = {.lex_state = 343}, - [7916] = {.lex_state = 298}, - [7917] = {.lex_state = 298}, - [7918] = {.lex_state = 315}, - [7919] = {.lex_state = 315}, - [7920] = {.lex_state = 315}, - [7921] = {.lex_state = 315}, - [7922] = {.lex_state = 266}, - [7923] = {.lex_state = 338}, - [7924] = {.lex_state = 315}, - [7925] = {.lex_state = 315}, - [7926] = {.lex_state = 315}, - [7927] = {.lex_state = 343}, - [7928] = {.lex_state = 315}, - [7929] = {.lex_state = 266}, - [7930] = {.lex_state = 315}, - [7931] = {.lex_state = 315}, - [7932] = {.lex_state = 343}, - [7933] = {.lex_state = 266}, - [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}, - [7942] = {.lex_state = 315}, - [7943] = {.lex_state = 315}, - [7944] = {.lex_state = 343}, - [7945] = {.lex_state = 343}, - [7946] = {.lex_state = 343}, - [7947] = {.lex_state = 315}, - [7948] = {.lex_state = 343}, - [7949] = {.lex_state = 315}, - [7950] = {.lex_state = 338}, - [7951] = {.lex_state = 343}, - [7952] = {.lex_state = 343}, - [7953] = {.lex_state = 343}, - [7954] = {.lex_state = 315}, - [7955] = {.lex_state = 265}, - [7956] = {.lex_state = 315}, - [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}, - [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}, - [7973] = {.lex_state = 343}, - [7974] = {.lex_state = 343}, - [7975] = {.lex_state = 315}, - [7976] = {.lex_state = 315}, - [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}, - [7986] = {.lex_state = 315}, - [7987] = {.lex_state = 338}, - [7988] = {.lex_state = 338}, - [7989] = {.lex_state = 266}, - [7990] = {.lex_state = 315}, - [7991] = {.lex_state = 266}, - [7992] = {.lex_state = 315}, - [7993] = {.lex_state = 315}, - [7994] = {.lex_state = 266}, - [7995] = {.lex_state = 338}, - [7996] = {.lex_state = 315}, - [7997] = {.lex_state = 338}, - [7998] = {.lex_state = 315}, - [7999] = {.lex_state = 338}, - [8000] = {.lex_state = 338}, - [8001] = {.lex_state = 335}, - [8002] = {.lex_state = 265}, - [8003] = {.lex_state = 338}, - [8004] = {.lex_state = 338}, - [8005] = {.lex_state = 338}, - [8006] = {.lex_state = 285}, - [8007] = {.lex_state = 266}, - [8008] = {.lex_state = 335}, - [8009] = {.lex_state = 335}, - [8010] = {.lex_state = 265}, - [8011] = {.lex_state = 266}, - [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}, - [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}, - [8031] = {.lex_state = 338}, - [8032] = {.lex_state = 338}, - [8033] = {.lex_state = 338}, - [8034] = {.lex_state = 338}, - [8035] = {.lex_state = 338}, - [8036] = {.lex_state = 338}, - [8037] = {.lex_state = 338}, - [8038] = {.lex_state = 338}, - [8039] = {.lex_state = 335}, - [8040] = {.lex_state = 338}, - [8041] = {.lex_state = 335}, - [8042] = {.lex_state = 335}, - [8043] = {.lex_state = 338}, - [8044] = {.lex_state = 266}, - [8045] = {.lex_state = 335}, - [8046] = {.lex_state = 338}, - [8047] = {.lex_state = 335}, - [8048] = {.lex_state = 266}, - [8049] = {.lex_state = 338}, - [8050] = {.lex_state = 338}, - [8051] = {.lex_state = 338}, - [8052] = {.lex_state = 335}, - [8053] = {.lex_state = 266}, - [8054] = {.lex_state = 338}, - [8055] = {.lex_state = 266}, - [8056] = {.lex_state = 338}, - [8057] = {.lex_state = 338}, - [8058] = {.lex_state = 338}, - [8059] = {.lex_state = 338}, - [8060] = {.lex_state = 335}, - [8061] = {.lex_state = 285}, - [8062] = {.lex_state = 266}, - [8063] = {.lex_state = 338}, - [8064] = {.lex_state = 343}, - [8065] = {.lex_state = 343}, - [8066] = {.lex_state = 338}, - [8067] = {.lex_state = 338}, - [8068] = {.lex_state = 338}, - [8069] = {.lex_state = 338}, - [8070] = {.lex_state = 338}, - [8071] = {.lex_state = 337}, - [8072] = {.lex_state = 285}, - [8073] = {.lex_state = 338}, - [8074] = {.lex_state = 286}, - [8075] = {.lex_state = 338}, - [8076] = {.lex_state = 285}, - [8077] = {.lex_state = 266}, - [8078] = {.lex_state = 286}, - [8079] = {.lex_state = 266}, - [8080] = {.lex_state = 338}, - [8081] = {.lex_state = 338}, - [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}, - [8102] = {.lex_state = 338}, - [8103] = {.lex_state = 285}, - [8104] = {.lex_state = 338}, - [8105] = {.lex_state = 285}, - [8106] = {.lex_state = 285}, - [8107] = {.lex_state = 242}, - [8108] = {.lex_state = 340}, - [8109] = {.lex_state = 285}, - [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}, - [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}, - [8138] = {.lex_state = 338}, - [8139] = {.lex_state = 285}, - [8140] = {.lex_state = 266}, - [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}, - [8156] = {.lex_state = 242}, - [8157] = {.lex_state = 285}, - [8158] = {.lex_state = 242}, - [8159] = {.lex_state = 286}, - [8160] = {.lex_state = 242}, - [8161] = {.lex_state = 242}, - [8162] = {.lex_state = 285}, - [8163] = {.lex_state = 242}, - [8164] = {.lex_state = 286}, - [8165] = {.lex_state = 285}, - [8166] = {.lex_state = 285}, - [8167] = {.lex_state = 242}, - [8168] = {.lex_state = 242}, - [8169] = {.lex_state = 285}, - [8170] = {.lex_state = 242}, - [8171] = {.lex_state = 285}, - [8172] = {.lex_state = 242}, - [8173] = {.lex_state = 242}, - [8174] = {.lex_state = 319}, - [8175] = {.lex_state = 285}, - [8176] = {.lex_state = 242}, - [8177] = {.lex_state = 242}, - [8178] = {.lex_state = 242}, - [8179] = {.lex_state = 286}, - [8180] = {.lex_state = 242}, - [8181] = {.lex_state = 265}, - [8182] = {.lex_state = 242}, - [8183] = {.lex_state = 242}, - [8184] = {.lex_state = 337}, - [8185] = {.lex_state = 286}, - [8186] = {.lex_state = 242}, - [8187] = {.lex_state = 242}, - [8188] = {.lex_state = 286}, - [8189] = {.lex_state = 285}, - [8190] = {.lex_state = 242}, - [8191] = {.lex_state = 242}, - [8192] = {.lex_state = 242}, - [8193] = {.lex_state = 286}, - [8194] = {.lex_state = 285}, - [8195] = {.lex_state = 286}, - [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}, - [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}, - [8215] = {.lex_state = 242}, - [8216] = {.lex_state = 242}, - [8217] = {.lex_state = 242}, - [8218] = {.lex_state = 280}, - [8219] = {.lex_state = 242}, - [8220] = {.lex_state = 242}, - [8221] = {.lex_state = 286}, - [8222] = {.lex_state = 335}, - [8223] = {.lex_state = 265}, - [8224] = {.lex_state = 242}, - [8225] = {.lex_state = 285}, - [8226] = {.lex_state = 242}, - [8227] = {.lex_state = 242}, - [8228] = {.lex_state = 242}, - [8229] = {.lex_state = 265}, - [8230] = {.lex_state = 286}, - [8231] = {.lex_state = 286}, - [8232] = {.lex_state = 286}, - [8233] = {.lex_state = 285}, - [8234] = {.lex_state = 242}, - [8235] = {.lex_state = 242}, - [8236] = {.lex_state = 265}, - [8237] = {.lex_state = 242}, - [8238] = {.lex_state = 265}, - [8239] = {.lex_state = 285}, - [8240] = {.lex_state = 242}, - [8241] = {.lex_state = 340}, - [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}, - [8255] = {.lex_state = 265}, - [8256] = {.lex_state = 265}, - [8257] = {.lex_state = 285}, - [8258] = {.lex_state = 338}, - [8259] = {.lex_state = 265}, - [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}, - [8269] = {.lex_state = 285}, - [8270] = {.lex_state = 335}, - [8271] = {.lex_state = 266}, - [8272] = {.lex_state = 139}, - [8273] = {.lex_state = 139}, - [8274] = {.lex_state = 265}, - [8275] = {.lex_state = 265}, - [8276] = {.lex_state = 337}, - [8277] = {.lex_state = 139}, - [8278] = {.lex_state = 319}, - [8279] = {.lex_state = 265}, - [8280] = {.lex_state = 265}, - [8281] = {.lex_state = 265}, - [8282] = {.lex_state = 265}, - [8283] = {.lex_state = 265}, - [8284] = {.lex_state = 265}, - [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}, - [8293] = {.lex_state = 139}, - [8294] = {.lex_state = 338}, - [8295] = {.lex_state = 335}, - [8296] = {.lex_state = 139}, - [8297] = {.lex_state = 338}, - [8298] = {.lex_state = 338}, - [8299] = {.lex_state = 265}, - [8300] = {.lex_state = 265}, - [8301] = {.lex_state = 338}, - [8302] = {.lex_state = 139}, - [8303] = {.lex_state = 139}, - [8304] = {.lex_state = 265}, - [8305] = {.lex_state = 139}, - [8306] = {.lex_state = 139}, - [8307] = {.lex_state = 265}, - [8308] = {.lex_state = 265}, - [8309] = {.lex_state = 265}, - [8310] = {.lex_state = 265}, - [8311] = {.lex_state = 285}, - [8312] = {.lex_state = 338}, - [8313] = {.lex_state = 338}, - [8314] = {.lex_state = 338}, - [8315] = {.lex_state = 139}, - [8316] = {.lex_state = 139}, - [8317] = {.lex_state = 265}, - [8318] = {.lex_state = 139}, - [8319] = {.lex_state = 139}, - [8320] = {.lex_state = 265}, - [8321] = {.lex_state = 139}, - [8322] = {.lex_state = 139}, - [8323] = {.lex_state = 139}, - [8324] = {.lex_state = 139}, - [8325] = {.lex_state = 265}, - [8326] = {.lex_state = 139}, - [8327] = {.lex_state = 139}, - [8328] = {.lex_state = 265}, - [8329] = {.lex_state = 139}, - [8330] = {.lex_state = 139}, - [8331] = {.lex_state = 139}, - [8332] = {.lex_state = 265}, - [8333] = {.lex_state = 139}, - [8334] = {.lex_state = 338}, - [8335] = {.lex_state = 265}, - [8336] = {.lex_state = 337}, - [8337] = {.lex_state = 285}, - [8338] = {.lex_state = 265}, - [8339] = {.lex_state = 338}, - [8340] = {.lex_state = 285}, + [5985] = {.lex_state = 290}, + [5986] = {.lex_state = 290}, + [5987] = {.lex_state = 298}, + [5988] = {.lex_state = 290}, + [5989] = {.lex_state = 290}, + [5990] = {.lex_state = 304}, + [5991] = {.lex_state = 290}, + [5992] = {.lex_state = 290}, + [5993] = {.lex_state = 266}, + [5994] = {.lex_state = 327}, + [5995] = {.lex_state = 304}, + [5996] = {.lex_state = 327}, + [5997] = {.lex_state = 298}, + [5998] = {.lex_state = 298}, + [5999] = {.lex_state = 298}, + [6000] = {.lex_state = 298}, + [6001] = {.lex_state = 314}, + [6002] = {.lex_state = 298}, + [6003] = {.lex_state = 313}, + [6004] = {.lex_state = 314}, + [6005] = {.lex_state = 314}, + [6006] = {.lex_state = 299}, + [6007] = {.lex_state = 298}, + [6008] = {.lex_state = 290}, + [6009] = {.lex_state = 314}, + [6010] = {.lex_state = 298}, + [6011] = {.lex_state = 314}, + [6012] = {.lex_state = 314}, + [6013] = {.lex_state = 298}, + [6014] = {.lex_state = 299}, + [6015] = {.lex_state = 314}, + [6016] = {.lex_state = 365}, + [6017] = {.lex_state = 327}, + [6018] = {.lex_state = 327}, + [6019] = {.lex_state = 313}, + [6020] = {.lex_state = 327}, + [6021] = {.lex_state = 313}, + [6022] = {.lex_state = 313}, + [6023] = {.lex_state = 304}, + [6024] = {.lex_state = 313}, + [6025] = {.lex_state = 299}, + [6026] = {.lex_state = 313}, + [6027] = {.lex_state = 304}, + [6028] = {.lex_state = 314}, + [6029] = {.lex_state = 314}, + [6030] = {.lex_state = 266}, + [6031] = {.lex_state = 299}, + [6032] = {.lex_state = 363}, + [6033] = {.lex_state = 365}, + [6034] = {.lex_state = 299}, + [6035] = {.lex_state = 327}, + [6036] = {.lex_state = 314}, + [6037] = {.lex_state = 314}, + [6038] = {.lex_state = 299}, + [6039] = {.lex_state = 314}, + [6040] = {.lex_state = 313}, + [6041] = {.lex_state = 299}, + [6042] = {.lex_state = 327}, + [6043] = {.lex_state = 327}, + [6044] = {.lex_state = 314}, + [6045] = {.lex_state = 299}, + [6046] = {.lex_state = 301}, + [6047] = {.lex_state = 298}, + [6048] = {.lex_state = 313}, + [6049] = {.lex_state = 313}, + [6050] = {.lex_state = 299}, + [6051] = {.lex_state = 291}, + [6052] = {.lex_state = 298}, + [6053] = {.lex_state = 291}, + [6054] = {.lex_state = 327}, + [6055] = {.lex_state = 304}, + [6056] = {.lex_state = 314}, + [6057] = {.lex_state = 314}, + [6058] = {.lex_state = 314}, + [6059] = {.lex_state = 327}, + [6060] = {.lex_state = 304}, + [6061] = {.lex_state = 304}, + [6062] = {.lex_state = 327}, + [6063] = {.lex_state = 291}, + [6064] = {.lex_state = 298}, + [6065] = {.lex_state = 294}, + [6066] = {.lex_state = 294}, + [6067] = {.lex_state = 294}, + [6068] = {.lex_state = 294}, + [6069] = {.lex_state = 294}, + [6070] = {.lex_state = 294}, + [6071] = {.lex_state = 294}, + [6072] = {.lex_state = 294}, + [6073] = {.lex_state = 294}, + [6074] = {.lex_state = 294}, + [6075] = {.lex_state = 294}, + [6076] = {.lex_state = 294}, + [6077] = {.lex_state = 294}, + [6078] = {.lex_state = 294}, + [6079] = {.lex_state = 294}, + [6080] = {.lex_state = 294}, + [6081] = {.lex_state = 294}, + [6082] = {.lex_state = 294}, + [6083] = {.lex_state = 294}, + [6084] = {.lex_state = 294}, + [6085] = {.lex_state = 294}, + [6086] = {.lex_state = 294}, + [6087] = {.lex_state = 294}, + [6088] = {.lex_state = 294}, + [6089] = {.lex_state = 294}, + [6090] = {.lex_state = 327}, + [6091] = {.lex_state = 314}, + [6092] = {.lex_state = 314}, + [6093] = {.lex_state = 299}, + [6094] = {.lex_state = 304}, + [6095] = {.lex_state = 304}, + [6096] = {.lex_state = 304}, + [6097] = {.lex_state = 314}, + [6098] = {.lex_state = 294}, + [6099] = {.lex_state = 327}, + [6100] = {.lex_state = 327}, + [6101] = {.lex_state = 299}, + [6102] = {.lex_state = 298}, + [6103] = {.lex_state = 304}, + [6104] = {.lex_state = 299}, + [6105] = {.lex_state = 291}, + [6106] = {.lex_state = 327}, + [6107] = {.lex_state = 314}, + [6108] = {.lex_state = 298}, + [6109] = {.lex_state = 304}, + [6110] = {.lex_state = 327}, + [6111] = {.lex_state = 327}, + [6112] = {.lex_state = 298}, + [6113] = {.lex_state = 298}, + [6114] = {.lex_state = 314}, + [6115] = {.lex_state = 298}, + [6116] = {.lex_state = 327}, + [6117] = {.lex_state = 327}, + [6118] = {.lex_state = 298}, + [6119] = {.lex_state = 314}, + [6120] = {.lex_state = 327}, + [6121] = {.lex_state = 301}, + [6122] = {.lex_state = 298}, + [6123] = {.lex_state = 314}, + [6124] = {.lex_state = 302}, + [6125] = {.lex_state = 314}, + [6126] = {.lex_state = 298}, + [6127] = {.lex_state = 314}, + [6128] = {.lex_state = 314}, + [6129] = {.lex_state = 314}, + [6130] = {.lex_state = 327}, + [6131] = {.lex_state = 314}, + [6132] = {.lex_state = 337}, + [6133] = {.lex_state = 314}, + [6134] = {.lex_state = 286}, + [6135] = {.lex_state = 304}, + [6136] = {.lex_state = 314}, + [6137] = {.lex_state = 327}, + [6138] = {.lex_state = 314}, + [6139] = {.lex_state = 298}, + [6140] = {.lex_state = 314}, + [6141] = {.lex_state = 314}, + [6142] = {.lex_state = 314}, + [6143] = {.lex_state = 314}, + [6144] = {.lex_state = 298}, + [6145] = {.lex_state = 291}, + [6146] = {.lex_state = 327}, + [6147] = {.lex_state = 314}, + [6148] = {.lex_state = 291}, + [6149] = {.lex_state = 314}, + [6150] = {.lex_state = 327}, + [6151] = {.lex_state = 301}, + [6152] = {.lex_state = 327}, + [6153] = {.lex_state = 314}, + [6154] = {.lex_state = 346}, + [6155] = {.lex_state = 346}, + [6156] = {.lex_state = 314}, + [6157] = {.lex_state = 314}, + [6158] = {.lex_state = 314}, + [6159] = {.lex_state = 363}, + [6160] = {.lex_state = 298}, + [6161] = {.lex_state = 363}, + [6162] = {.lex_state = 314}, + [6163] = {.lex_state = 298}, + [6164] = {.lex_state = 298}, + [6165] = {.lex_state = 314}, + [6166] = {.lex_state = 327}, + [6167] = {.lex_state = 314}, + [6168] = {.lex_state = 337}, + [6169] = {.lex_state = 324}, + [6170] = {.lex_state = 314}, + [6171] = {.lex_state = 314}, + [6172] = {.lex_state = 346}, + [6173] = {.lex_state = 327}, + [6174] = {.lex_state = 327}, + [6175] = {.lex_state = 314}, + [6176] = {.lex_state = 346}, + [6177] = {.lex_state = 314}, + [6178] = {.lex_state = 298}, + [6179] = {.lex_state = 314}, + [6180] = {.lex_state = 314}, + [6181] = {.lex_state = 346}, + [6182] = {.lex_state = 298}, + [6183] = {.lex_state = 298}, + [6184] = {.lex_state = 314}, + [6185] = {.lex_state = 314}, + [6186] = {.lex_state = 314}, + [6187] = {.lex_state = 314}, + [6188] = {.lex_state = 362}, + [6189] = {.lex_state = 298}, + [6190] = {.lex_state = 314}, + [6191] = {.lex_state = 298}, + [6192] = {.lex_state = 327}, + [6193] = {.lex_state = 298}, + [6194] = {.lex_state = 304}, + [6195] = {.lex_state = 314}, + [6196] = {.lex_state = 298}, + [6197] = {.lex_state = 324}, + [6198] = {.lex_state = 324}, + [6199] = {.lex_state = 333}, + [6200] = {.lex_state = 314}, + [6201] = {.lex_state = 365}, + [6202] = {.lex_state = 324}, + [6203] = {.lex_state = 304}, + [6204] = {.lex_state = 327}, + [6205] = {.lex_state = 298}, + [6206] = {.lex_state = 314}, + [6207] = {.lex_state = 314}, + [6208] = {.lex_state = 327}, + [6209] = {.lex_state = 314}, + [6210] = {.lex_state = 327}, + [6211] = {.lex_state = 327}, + [6212] = {.lex_state = 298}, + [6213] = {.lex_state = 324}, + [6214] = {.lex_state = 301}, + [6215] = {.lex_state = 324}, + [6216] = {.lex_state = 314}, + [6217] = {.lex_state = 324}, + [6218] = {.lex_state = 327}, + [6219] = {.lex_state = 314}, + [6220] = {.lex_state = 327}, + [6221] = {.lex_state = 327}, + [6222] = {.lex_state = 324}, + [6223] = {.lex_state = 314}, + [6224] = {.lex_state = 314}, + [6225] = {.lex_state = 314}, + [6226] = {.lex_state = 314}, + [6227] = {.lex_state = 314}, + [6228] = {.lex_state = 314}, + [6229] = {.lex_state = 314}, + [6230] = {.lex_state = 327}, + [6231] = {.lex_state = 314}, + [6232] = {.lex_state = 324}, + [6233] = {.lex_state = 314}, + [6234] = {.lex_state = 314}, + [6235] = {.lex_state = 314}, + [6236] = {.lex_state = 314}, + [6237] = {.lex_state = 314}, + [6238] = {.lex_state = 327}, + [6239] = {.lex_state = 298}, + [6240] = {.lex_state = 314}, + [6241] = {.lex_state = 291}, + [6242] = {.lex_state = 327}, + [6243] = {.lex_state = 314}, + [6244] = {.lex_state = 298}, + [6245] = {.lex_state = 298}, + [6246] = {.lex_state = 342}, + [6247] = {.lex_state = 342}, + [6248] = {.lex_state = 314}, + [6249] = {.lex_state = 314}, + [6250] = {.lex_state = 298}, + [6251] = {.lex_state = 298}, + [6252] = {.lex_state = 298}, + [6253] = {.lex_state = 335}, + [6254] = {.lex_state = 314}, + [6255] = {.lex_state = 304}, + [6256] = {.lex_state = 346}, + [6257] = {.lex_state = 298}, + [6258] = {.lex_state = 298}, + [6259] = {.lex_state = 314}, + [6260] = {.lex_state = 330}, + [6261] = {.lex_state = 314}, + [6262] = {.lex_state = 284}, + [6263] = {.lex_state = 314}, + [6264] = {.lex_state = 363}, + [6265] = {.lex_state = 327}, + [6266] = {.lex_state = 314}, + [6267] = {.lex_state = 314}, + [6268] = {.lex_state = 298}, + [6269] = {.lex_state = 298}, + [6270] = {.lex_state = 314}, + [6271] = {.lex_state = 298}, + [6272] = {.lex_state = 298}, + [6273] = {.lex_state = 286}, + [6274] = {.lex_state = 298}, + [6275] = {.lex_state = 291}, + [6276] = {.lex_state = 314}, + [6277] = {.lex_state = 291}, + [6278] = {.lex_state = 298}, + [6279] = {.lex_state = 314}, + [6280] = {.lex_state = 298}, + [6281] = {.lex_state = 298}, + [6282] = {.lex_state = 284}, + [6283] = {.lex_state = 298}, + [6284] = {.lex_state = 330}, + [6285] = {.lex_state = 330}, + [6286] = {.lex_state = 330}, + [6287] = {.lex_state = 298}, + [6288] = {.lex_state = 314}, + [6289] = {.lex_state = 314}, + [6290] = {.lex_state = 327}, + [6291] = {.lex_state = 304}, + [6292] = {.lex_state = 314}, + [6293] = {.lex_state = 314}, + [6294] = {.lex_state = 327}, + [6295] = {.lex_state = 333}, + [6296] = {.lex_state = 314}, + [6297] = {.lex_state = 327}, + [6298] = {.lex_state = 314}, + [6299] = {.lex_state = 314}, + [6300] = {.lex_state = 314}, + [6301] = {.lex_state = 314}, + [6302] = {.lex_state = 327}, + [6303] = {.lex_state = 314}, + [6304] = {.lex_state = 327}, + [6305] = {.lex_state = 327}, + [6306] = {.lex_state = 266}, + [6307] = {.lex_state = 314}, + [6308] = {.lex_state = 327}, + [6309] = {.lex_state = 314}, + [6310] = {.lex_state = 298}, + [6311] = {.lex_state = 314}, + [6312] = {.lex_state = 314}, + [6313] = {.lex_state = 339}, + [6314] = {.lex_state = 327}, + [6315] = {.lex_state = 294}, + [6316] = {.lex_state = 314}, + [6317] = {.lex_state = 314}, + [6318] = {.lex_state = 291}, + [6319] = {.lex_state = 327}, + [6320] = {.lex_state = 314}, + [6321] = {.lex_state = 314}, + [6322] = {.lex_state = 298}, + [6323] = {.lex_state = 314}, + [6324] = {.lex_state = 298}, + [6325] = {.lex_state = 327}, + [6326] = {.lex_state = 327}, + [6327] = {.lex_state = 327}, + [6328] = {.lex_state = 314}, + [6329] = {.lex_state = 298}, + [6330] = {.lex_state = 327}, + [6331] = {.lex_state = 327}, + [6332] = {.lex_state = 298}, + [6333] = {.lex_state = 314}, + [6334] = {.lex_state = 314}, + [6335] = {.lex_state = 314}, + [6336] = {.lex_state = 301}, + [6337] = {.lex_state = 314}, + [6338] = {.lex_state = 298}, + [6339] = {.lex_state = 327}, + [6340] = {.lex_state = 327}, + [6341] = {.lex_state = 327}, + [6342] = {.lex_state = 298}, + [6343] = {.lex_state = 330}, + [6344] = {.lex_state = 314}, + [6345] = {.lex_state = 314}, + [6346] = {.lex_state = 330}, + [6347] = {.lex_state = 314}, + [6348] = {.lex_state = 314}, + [6349] = {.lex_state = 314}, + [6350] = {.lex_state = 330}, + [6351] = {.lex_state = 314}, + [6352] = {.lex_state = 314}, + [6353] = {.lex_state = 314}, + [6354] = {.lex_state = 314}, + [6355] = {.lex_state = 298}, + [6356] = {.lex_state = 298}, + [6357] = {.lex_state = 327}, + [6358] = {.lex_state = 314}, + [6359] = {.lex_state = 314}, + [6360] = {.lex_state = 324}, + [6361] = {.lex_state = 314}, + [6362] = {.lex_state = 314}, + [6363] = {.lex_state = 314}, + [6364] = {.lex_state = 314}, + [6365] = {.lex_state = 305}, + [6366] = {.lex_state = 327}, + [6367] = {.lex_state = 291}, + [6368] = {.lex_state = 291}, + [6369] = {.lex_state = 291}, + [6370] = {.lex_state = 291}, + [6371] = {.lex_state = 284}, + [6372] = {.lex_state = 314}, + [6373] = {.lex_state = 324}, + [6374] = {.lex_state = 327}, + [6375] = {.lex_state = 314}, + [6376] = {.lex_state = 314}, + [6377] = {.lex_state = 314}, + [6378] = {.lex_state = 314}, + [6379] = {.lex_state = 327}, + [6380] = {.lex_state = 327}, + [6381] = {.lex_state = 314}, + [6382] = {.lex_state = 314}, + [6383] = {.lex_state = 314}, + [6384] = {.lex_state = 304}, + [6385] = {.lex_state = 314}, + [6386] = {.lex_state = 286}, + [6387] = {.lex_state = 291}, + [6388] = {.lex_state = 290}, + [6389] = {.lex_state = 314}, + [6390] = {.lex_state = 327}, + [6391] = {.lex_state = 314}, + [6392] = {.lex_state = 314}, + [6393] = {.lex_state = 314}, + [6394] = {.lex_state = 314}, + [6395] = {.lex_state = 327}, + [6396] = {.lex_state = 298}, + [6397] = {.lex_state = 304}, + [6398] = {.lex_state = 327}, + [6399] = {.lex_state = 327}, + [6400] = {.lex_state = 298}, + [6401] = {.lex_state = 314}, + [6402] = {.lex_state = 314}, + [6403] = {.lex_state = 314}, + [6404] = {.lex_state = 314}, + [6405] = {.lex_state = 298}, + [6406] = {.lex_state = 314}, + [6407] = {.lex_state = 291}, + [6408] = {.lex_state = 327}, + [6409] = {.lex_state = 327}, + [6410] = {.lex_state = 298}, + [6411] = {.lex_state = 314}, + [6412] = {.lex_state = 327}, + [6413] = {.lex_state = 327}, + [6414] = {.lex_state = 327}, + [6415] = {.lex_state = 298}, + [6416] = {.lex_state = 327}, + [6417] = {.lex_state = 327}, + [6418] = {.lex_state = 327}, + [6419] = {.lex_state = 304}, + [6420] = {.lex_state = 298}, + [6421] = {.lex_state = 298}, + [6422] = {.lex_state = 327}, + [6423] = {.lex_state = 327}, + [6424] = {.lex_state = 314}, + [6425] = {.lex_state = 298}, + [6426] = {.lex_state = 299}, + [6427] = {.lex_state = 298}, + [6428] = {.lex_state = 305}, + [6429] = {.lex_state = 327}, + [6430] = {.lex_state = 298}, + [6431] = {.lex_state = 314}, + [6432] = {.lex_state = 327}, + [6433] = {.lex_state = 327}, + [6434] = {.lex_state = 327}, + [6435] = {.lex_state = 327}, + [6436] = {.lex_state = 314}, + [6437] = {.lex_state = 304}, + [6438] = {.lex_state = 298}, + [6439] = {.lex_state = 304}, + [6440] = {.lex_state = 298}, + [6441] = {.lex_state = 298}, + [6442] = {.lex_state = 365}, + [6443] = {.lex_state = 327}, + [6444] = {.lex_state = 298}, + [6445] = {.lex_state = 298}, + [6446] = {.lex_state = 314}, + [6447] = {.lex_state = 314}, + [6448] = {.lex_state = 327}, + [6449] = {.lex_state = 342}, + [6450] = {.lex_state = 298}, + [6451] = {.lex_state = 298}, + [6452] = {.lex_state = 298}, + [6453] = {.lex_state = 298}, + [6454] = {.lex_state = 298}, + [6455] = {.lex_state = 301}, + [6456] = {.lex_state = 298}, + [6457] = {.lex_state = 298}, + [6458] = {.lex_state = 298}, + [6459] = {.lex_state = 363}, + [6460] = {.lex_state = 298}, + [6461] = {.lex_state = 298}, + [6462] = {.lex_state = 298}, + [6463] = {.lex_state = 314}, + [6464] = {.lex_state = 304}, + [6465] = {.lex_state = 314}, + [6466] = {.lex_state = 298}, + [6467] = {.lex_state = 298}, + [6468] = {.lex_state = 298}, + [6469] = {.lex_state = 327}, + [6470] = {.lex_state = 298}, + [6471] = {.lex_state = 314}, + [6472] = {.lex_state = 298}, + [6473] = {.lex_state = 327}, + [6474] = {.lex_state = 298}, + [6475] = {.lex_state = 298}, + [6476] = {.lex_state = 308}, + [6477] = {.lex_state = 299}, + [6478] = {.lex_state = 301}, + [6479] = {.lex_state = 327}, + [6480] = {.lex_state = 327}, + [6481] = {.lex_state = 327}, + [6482] = {.lex_state = 327}, + [6483] = {.lex_state = 299}, + [6484] = {.lex_state = 327}, + [6485] = {.lex_state = 298}, + [6486] = {.lex_state = 298}, + [6487] = {.lex_state = 314}, + [6488] = {.lex_state = 304}, + [6489] = {.lex_state = 298}, + [6490] = {.lex_state = 305}, + [6491] = {.lex_state = 314}, + [6492] = {.lex_state = 304}, + [6493] = {.lex_state = 327}, + [6494] = {.lex_state = 314}, + [6495] = {.lex_state = 327}, + [6496] = {.lex_state = 304}, + [6497] = {.lex_state = 304}, + [6498] = {.lex_state = 266}, + [6499] = {.lex_state = 327}, + [6500] = {.lex_state = 314}, + [6501] = {.lex_state = 327}, + [6502] = {.lex_state = 304}, + [6503] = {.lex_state = 305}, + [6504] = {.lex_state = 304}, + [6505] = {.lex_state = 308}, + [6506] = {.lex_state = 304}, + [6507] = {.lex_state = 298}, + [6508] = {.lex_state = 290}, + [6509] = {.lex_state = 327}, + [6510] = {.lex_state = 327}, + [6511] = {.lex_state = 327}, + [6512] = {.lex_state = 298}, + [6513] = {.lex_state = 327}, + [6514] = {.lex_state = 291}, + [6515] = {.lex_state = 327}, + [6516] = {.lex_state = 327}, + [6517] = {.lex_state = 327}, + [6518] = {.lex_state = 327}, + [6519] = {.lex_state = 327}, + [6520] = {.lex_state = 298}, + [6521] = {.lex_state = 327}, + [6522] = {.lex_state = 327}, + [6523] = {.lex_state = 327}, + [6524] = {.lex_state = 327}, + [6525] = {.lex_state = 298}, + [6526] = {.lex_state = 309}, + [6527] = {.lex_state = 314}, + [6528] = {.lex_state = 327}, + [6529] = {.lex_state = 327}, + [6530] = {.lex_state = 327}, + [6531] = {.lex_state = 327}, + [6532] = {.lex_state = 298}, + [6533] = {.lex_state = 298}, + [6534] = {.lex_state = 327}, + [6535] = {.lex_state = 298}, + [6536] = {.lex_state = 304}, + [6537] = {.lex_state = 327}, + [6538] = {.lex_state = 314}, + [6539] = {.lex_state = 327}, + [6540] = {.lex_state = 298}, + [6541] = {.lex_state = 327}, + [6542] = {.lex_state = 327}, + [6543] = {.lex_state = 314}, + [6544] = {.lex_state = 304}, + [6545] = {.lex_state = 314}, + [6546] = {.lex_state = 298}, + [6547] = {.lex_state = 304}, + [6548] = {.lex_state = 314}, + [6549] = {.lex_state = 327}, + [6550] = {.lex_state = 304}, + [6551] = {.lex_state = 298}, + [6552] = {.lex_state = 299}, + [6553] = {.lex_state = 314}, + [6554] = {.lex_state = 291}, + [6555] = {.lex_state = 314}, + [6556] = {.lex_state = 327}, + [6557] = {.lex_state = 298}, + [6558] = {.lex_state = 298}, + [6559] = {.lex_state = 327}, + [6560] = {.lex_state = 327}, + [6561] = {.lex_state = 327}, + [6562] = {.lex_state = 327}, + [6563] = {.lex_state = 314}, + [6564] = {.lex_state = 314}, + [6565] = {.lex_state = 266}, + [6566] = {.lex_state = 327}, + [6567] = {.lex_state = 298}, + [6568] = {.lex_state = 327}, + [6569] = {.lex_state = 298}, + [6570] = {.lex_state = 298}, + [6571] = {.lex_state = 304}, + [6572] = {.lex_state = 327}, + [6573] = {.lex_state = 301}, + [6574] = {.lex_state = 314}, + [6575] = {.lex_state = 298}, + [6576] = {.lex_state = 298}, + [6577] = {.lex_state = 298}, + [6578] = {.lex_state = 314}, + [6579] = {.lex_state = 298}, + [6580] = {.lex_state = 314}, + [6581] = {.lex_state = 299}, + [6582] = {.lex_state = 298}, + [6583] = {.lex_state = 298}, + [6584] = {.lex_state = 314}, + [6585] = {.lex_state = 314}, + [6586] = {.lex_state = 327}, + [6587] = {.lex_state = 327}, + [6588] = {.lex_state = 298}, + [6589] = {.lex_state = 327}, + [6590] = {.lex_state = 305}, + [6591] = {.lex_state = 298}, + [6592] = {.lex_state = 290}, + [6593] = {.lex_state = 314}, + [6594] = {.lex_state = 327}, + [6595] = {.lex_state = 266}, + [6596] = {.lex_state = 299}, + [6597] = {.lex_state = 294}, + [6598] = {.lex_state = 266}, + [6599] = {.lex_state = 298}, + [6600] = {.lex_state = 301}, + [6601] = {.lex_state = 298}, + [6602] = {.lex_state = 298}, + [6603] = {.lex_state = 314}, + [6604] = {.lex_state = 299}, + [6605] = {.lex_state = 314}, + [6606] = {.lex_state = 308}, + [6607] = {.lex_state = 304}, + [6608] = {.lex_state = 314}, + [6609] = {.lex_state = 298}, + [6610] = {.lex_state = 298}, + [6611] = {.lex_state = 298}, + [6612] = {.lex_state = 298}, + [6613] = {.lex_state = 298}, + [6614] = {.lex_state = 298}, + [6615] = {.lex_state = 298}, + [6616] = {.lex_state = 327}, + [6617] = {.lex_state = 298}, + [6618] = {.lex_state = 314}, + [6619] = {.lex_state = 304}, + [6620] = {.lex_state = 365}, + [6621] = {.lex_state = 304}, + [6622] = {.lex_state = 314}, + [6623] = {.lex_state = 304}, + [6624] = {.lex_state = 304}, + [6625] = {.lex_state = 304}, + [6626] = {.lex_state = 304}, + [6627] = {.lex_state = 304}, + [6628] = {.lex_state = 304}, + [6629] = {.lex_state = 304}, + [6630] = {.lex_state = 304}, + [6631] = {.lex_state = 304}, + [6632] = {.lex_state = 304}, + [6633] = {.lex_state = 304}, + [6634] = {.lex_state = 363}, + [6635] = {.lex_state = 314}, + [6636] = {.lex_state = 304}, + [6637] = {.lex_state = 314}, + [6638] = {.lex_state = 304}, + [6639] = {.lex_state = 314}, + [6640] = {.lex_state = 314}, + [6641] = {.lex_state = 304}, + [6642] = {.lex_state = 304}, + [6643] = {.lex_state = 314}, + [6644] = {.lex_state = 304}, + [6645] = {.lex_state = 304}, + [6646] = {.lex_state = 304}, + [6647] = {.lex_state = 304}, + [6648] = {.lex_state = 304}, + [6649] = {.lex_state = 304}, + [6650] = {.lex_state = 304}, + [6651] = {.lex_state = 314}, + [6652] = {.lex_state = 314}, + [6653] = {.lex_state = 304}, + [6654] = {.lex_state = 304}, + [6655] = {.lex_state = 304}, + [6656] = {.lex_state = 304}, + [6657] = {.lex_state = 290}, + [6658] = {.lex_state = 314}, + [6659] = {.lex_state = 304}, + [6660] = {.lex_state = 304}, + [6661] = {.lex_state = 304}, + [6662] = {.lex_state = 304}, + [6663] = {.lex_state = 304}, + [6664] = {.lex_state = 304}, + [6665] = {.lex_state = 304}, + [6666] = {.lex_state = 266}, + [6667] = {.lex_state = 304}, + [6668] = {.lex_state = 304}, + [6669] = {.lex_state = 346}, + [6670] = {.lex_state = 304}, + [6671] = {.lex_state = 304}, + [6672] = {.lex_state = 314}, + [6673] = {.lex_state = 314}, + [6674] = {.lex_state = 299}, + [6675] = {.lex_state = 314}, + [6676] = {.lex_state = 314}, + [6677] = {.lex_state = 304}, + [6678] = {.lex_state = 365}, + [6679] = {.lex_state = 304}, + [6680] = {.lex_state = 314}, + [6681] = {.lex_state = 314}, + [6682] = {.lex_state = 304}, + [6683] = {.lex_state = 304}, + [6684] = {.lex_state = 314}, + [6685] = {.lex_state = 314}, + [6686] = {.lex_state = 314}, + [6687] = {.lex_state = 365}, + [6688] = {.lex_state = 314}, + [6689] = {.lex_state = 304}, + [6690] = {.lex_state = 314}, + [6691] = {.lex_state = 304}, + [6692] = {.lex_state = 304}, + [6693] = {.lex_state = 314}, + [6694] = {.lex_state = 304}, + [6695] = {.lex_state = 304}, + [6696] = {.lex_state = 301}, + [6697] = {.lex_state = 304}, + [6698] = {.lex_state = 304}, + [6699] = {.lex_state = 317}, + [6700] = {.lex_state = 314}, + [6701] = {.lex_state = 342}, + [6702] = {.lex_state = 284}, + [6703] = {.lex_state = 290}, + [6704] = {.lex_state = 304}, + [6705] = {.lex_state = 266}, + [6706] = {.lex_state = 304}, + [6707] = {.lex_state = 304}, + [6708] = {.lex_state = 304}, + [6709] = {.lex_state = 314}, + [6710] = {.lex_state = 314}, + [6711] = {.lex_state = 314}, + [6712] = {.lex_state = 314}, + [6713] = {.lex_state = 290}, + [6714] = {.lex_state = 317}, + [6715] = {.lex_state = 301}, + [6716] = {.lex_state = 299}, + [6717] = {.lex_state = 304}, + [6718] = {.lex_state = 266}, + [6719] = {.lex_state = 299}, + [6720] = {.lex_state = 266}, + [6721] = {.lex_state = 304}, + [6722] = {.lex_state = 304}, + [6723] = {.lex_state = 314}, + [6724] = {.lex_state = 304}, + [6725] = {.lex_state = 304}, + [6726] = {.lex_state = 304}, + [6727] = {.lex_state = 314}, + [6728] = {.lex_state = 299}, + [6729] = {.lex_state = 304}, + [6730] = {.lex_state = 304}, + [6731] = {.lex_state = 304}, + [6732] = {.lex_state = 304}, + [6733] = {.lex_state = 304}, + [6734] = {.lex_state = 304}, + [6735] = {.lex_state = 304}, + [6736] = {.lex_state = 304}, + [6737] = {.lex_state = 304}, + [6738] = {.lex_state = 304}, + [6739] = {.lex_state = 304}, + [6740] = {.lex_state = 363}, + [6741] = {.lex_state = 314}, + [6742] = {.lex_state = 314}, + [6743] = {.lex_state = 314}, + [6744] = {.lex_state = 346}, + [6745] = {.lex_state = 304}, + [6746] = {.lex_state = 304}, + [6747] = {.lex_state = 314}, + [6748] = {.lex_state = 363}, + [6749] = {.lex_state = 368}, + [6750] = {.lex_state = 304}, + [6751] = {.lex_state = 314}, + [6752] = {.lex_state = 314}, + [6753] = {.lex_state = 304}, + [6754] = {.lex_state = 304}, + [6755] = {.lex_state = 314}, + [6756] = {.lex_state = 286}, + [6757] = {.lex_state = 314}, + [6758] = {.lex_state = 304}, + [6759] = {.lex_state = 314}, + [6760] = {.lex_state = 304}, + [6761] = {.lex_state = 314}, + [6762] = {.lex_state = 314}, + [6763] = {.lex_state = 346}, + [6764] = {.lex_state = 314}, + [6765] = {.lex_state = 284}, + [6766] = {.lex_state = 346}, + [6767] = {.lex_state = 304}, + [6768] = {.lex_state = 314}, + [6769] = {.lex_state = 304}, + [6770] = {.lex_state = 314}, + [6771] = {.lex_state = 286}, + [6772] = {.lex_state = 314}, + [6773] = {.lex_state = 286}, + [6774] = {.lex_state = 346}, + [6775] = {.lex_state = 314}, + [6776] = {.lex_state = 284}, + [6777] = {.lex_state = 314}, + [6778] = {.lex_state = 314}, + [6779] = {.lex_state = 304}, + [6780] = {.lex_state = 314}, + [6781] = {.lex_state = 284}, + [6782] = {.lex_state = 365}, + [6783] = {.lex_state = 314}, + [6784] = {.lex_state = 314}, + [6785] = {.lex_state = 314}, + [6786] = {.lex_state = 314}, + [6787] = {.lex_state = 284}, + [6788] = {.lex_state = 314}, + [6789] = {.lex_state = 286}, + [6790] = {.lex_state = 314}, + [6791] = {.lex_state = 314}, + [6792] = {.lex_state = 314}, + [6793] = {.lex_state = 314}, + [6794] = {.lex_state = 346}, + [6795] = {.lex_state = 346}, + [6796] = {.lex_state = 314}, + [6797] = {.lex_state = 304}, + [6798] = {.lex_state = 314}, + [6799] = {.lex_state = 314}, + [6800] = {.lex_state = 314}, + [6801] = {.lex_state = 286}, + [6802] = {.lex_state = 314}, + [6803] = {.lex_state = 314}, + [6804] = {.lex_state = 314}, + [6805] = {.lex_state = 314}, + [6806] = {.lex_state = 304}, + [6807] = {.lex_state = 314}, + [6808] = {.lex_state = 314}, + [6809] = {.lex_state = 314}, + [6810] = {.lex_state = 314}, + [6811] = {.lex_state = 314}, + [6812] = {.lex_state = 314}, + [6813] = {.lex_state = 314}, + [6814] = {.lex_state = 346}, + [6815] = {.lex_state = 314}, + [6816] = {.lex_state = 304}, + [6817] = {.lex_state = 314}, + [6818] = {.lex_state = 299}, + [6819] = {.lex_state = 304}, + [6820] = {.lex_state = 304}, + [6821] = {.lex_state = 304}, + [6822] = {.lex_state = 304}, + [6823] = {.lex_state = 304}, + [6824] = {.lex_state = 314}, + [6825] = {.lex_state = 304}, + [6826] = {.lex_state = 314}, + [6827] = {.lex_state = 314}, + [6828] = {.lex_state = 284}, + [6829] = {.lex_state = 347}, + [6830] = {.lex_state = 347}, + [6831] = {.lex_state = 304}, + [6832] = {.lex_state = 363}, + [6833] = {.lex_state = 343}, + [6834] = {.lex_state = 284}, + [6835] = {.lex_state = 304}, + [6836] = {.lex_state = 284}, + [6837] = {.lex_state = 366}, + [6838] = {.lex_state = 299}, + [6839] = {.lex_state = 367}, + [6840] = {.lex_state = 299}, + [6841] = {.lex_state = 299}, + [6842] = {.lex_state = 286}, + [6843] = {.lex_state = 299}, + [6844] = {.lex_state = 350}, + [6845] = {.lex_state = 308}, + [6846] = {.lex_state = 299}, + [6847] = {.lex_state = 308}, + [6848] = {.lex_state = 299}, + [6849] = {.lex_state = 365}, + [6850] = {.lex_state = 299}, + [6851] = {.lex_state = 299}, + [6852] = {.lex_state = 284}, + [6853] = {.lex_state = 286}, + [6854] = {.lex_state = 363}, + [6855] = {.lex_state = 286}, + [6856] = {.lex_state = 346}, + [6857] = {.lex_state = 365}, + [6858] = {.lex_state = 304}, + [6859] = {.lex_state = 308}, + [6860] = {.lex_state = 286}, + [6861] = {.lex_state = 347}, + [6862] = {.lex_state = 347}, + [6863] = {.lex_state = 304}, + [6864] = {.lex_state = 304}, + [6865] = {.lex_state = 304}, + [6866] = {.lex_state = 350}, + [6867] = {.lex_state = 346}, + [6868] = {.lex_state = 347}, + [6869] = {.lex_state = 304}, + [6870] = {.lex_state = 304}, + [6871] = {.lex_state = 304}, + [6872] = {.lex_state = 304}, + [6873] = {.lex_state = 347}, + [6874] = {.lex_state = 304}, + [6875] = {.lex_state = 299}, + [6876] = {.lex_state = 304}, + [6877] = {.lex_state = 304}, + [6878] = {.lex_state = 347}, + [6879] = {.lex_state = 347}, + [6880] = {.lex_state = 348}, + [6881] = {.lex_state = 304}, + [6882] = {.lex_state = 304}, + [6883] = {.lex_state = 343}, + [6884] = {.lex_state = 304}, + [6885] = {.lex_state = 308}, + [6886] = {.lex_state = 304}, + [6887] = {.lex_state = 347}, + [6888] = {.lex_state = 305}, + [6889] = {.lex_state = 347}, + [6890] = {.lex_state = 304}, + [6891] = {.lex_state = 347}, + [6892] = {.lex_state = 304}, + [6893] = {.lex_state = 367}, + [6894] = {.lex_state = 367}, + [6895] = {.lex_state = 304}, + [6896] = {.lex_state = 304}, + [6897] = {.lex_state = 347}, + [6898] = {.lex_state = 304}, + [6899] = {.lex_state = 304}, + [6900] = {.lex_state = 304}, + [6901] = {.lex_state = 304}, + [6902] = {.lex_state = 304}, + [6903] = {.lex_state = 304}, + [6904] = {.lex_state = 347}, + [6905] = {.lex_state = 304}, + [6906] = {.lex_state = 308}, + [6907] = {.lex_state = 367}, + [6908] = {.lex_state = 304}, + [6909] = {.lex_state = 347}, + [6910] = {.lex_state = 299}, + [6911] = {.lex_state = 304}, + [6912] = {.lex_state = 304}, + [6913] = {.lex_state = 363}, + [6914] = {.lex_state = 350}, + [6915] = {.lex_state = 365}, + [6916] = {.lex_state = 304}, + [6917] = {.lex_state = 343}, + [6918] = {.lex_state = 304}, + [6919] = {.lex_state = 349}, + [6920] = {.lex_state = 308}, + [6921] = {.lex_state = 309}, + [6922] = {.lex_state = 347}, + [6923] = {.lex_state = 309}, + [6924] = {.lex_state = 350}, + [6925] = {.lex_state = 309}, + [6926] = {.lex_state = 308}, + [6927] = {.lex_state = 309}, + [6928] = {.lex_state = 308}, + [6929] = {.lex_state = 309}, + [6930] = {.lex_state = 309}, + [6931] = {.lex_state = 304}, + [6932] = {.lex_state = 304}, + [6933] = {.lex_state = 309}, + [6934] = {.lex_state = 309}, + [6935] = {.lex_state = 309}, + [6936] = {.lex_state = 309}, + [6937] = {.lex_state = 309}, + [6938] = {.lex_state = 300}, + [6939] = {.lex_state = 304}, + [6940] = {.lex_state = 350}, + [6941] = {.lex_state = 308}, + [6942] = {.lex_state = 367}, + [6943] = {.lex_state = 350}, + [6944] = {.lex_state = 304}, + [6945] = {.lex_state = 309}, + [6946] = {.lex_state = 309}, + [6947] = {.lex_state = 309}, + [6948] = {.lex_state = 309}, + [6949] = {.lex_state = 343}, + [6950] = {.lex_state = 309}, + [6951] = {.lex_state = 365}, + [6952] = {.lex_state = 309}, + [6953] = {.lex_state = 309}, + [6954] = {.lex_state = 309}, + [6955] = {.lex_state = 343}, + [6956] = {.lex_state = 309}, + [6957] = {.lex_state = 304}, + [6958] = {.lex_state = 308}, + [6959] = {.lex_state = 309}, + [6960] = {.lex_state = 349}, + [6961] = {.lex_state = 304}, + [6962] = {.lex_state = 350}, + [6963] = {.lex_state = 350}, + [6964] = {.lex_state = 304}, + [6965] = {.lex_state = 309}, + [6966] = {.lex_state = 309}, + [6967] = {.lex_state = 309}, + [6968] = {.lex_state = 343}, + [6969] = {.lex_state = 309}, + [6970] = {.lex_state = 343}, + [6971] = {.lex_state = 304}, + [6972] = {.lex_state = 304}, + [6973] = {.lex_state = 304}, + [6974] = {.lex_state = 304}, + [6975] = {.lex_state = 309}, + [6976] = {.lex_state = 304}, + [6977] = {.lex_state = 304}, + [6978] = {.lex_state = 309}, + [6979] = {.lex_state = 308}, + [6980] = {.lex_state = 300}, + [6981] = {.lex_state = 304}, + [6982] = {.lex_state = 309}, + [6983] = {.lex_state = 304}, + [6984] = {.lex_state = 304}, + [6985] = {.lex_state = 304}, + [6986] = {.lex_state = 309}, + [6987] = {.lex_state = 304}, + [6988] = {.lex_state = 304}, + [6989] = {.lex_state = 304}, + [6990] = {.lex_state = 309}, + [6991] = {.lex_state = 304}, + [6992] = {.lex_state = 309}, + [6993] = {.lex_state = 309}, + [6994] = {.lex_state = 309}, + [6995] = {.lex_state = 308}, + [6996] = {.lex_state = 343}, + [6997] = {.lex_state = 309}, + [6998] = {.lex_state = 350}, + [6999] = {.lex_state = 304}, + [7000] = {.lex_state = 304}, + [7001] = {.lex_state = 309}, + [7002] = {.lex_state = 309}, + [7003] = {.lex_state = 343}, + [7004] = {.lex_state = 304}, + [7005] = {.lex_state = 347}, + [7006] = {.lex_state = 309}, + [7007] = {.lex_state = 309}, + [7008] = {.lex_state = 309}, + [7009] = {.lex_state = 309}, + [7010] = {.lex_state = 309}, + [7011] = {.lex_state = 367}, + [7012] = {.lex_state = 309}, + [7013] = {.lex_state = 309}, + [7014] = {.lex_state = 309}, + [7015] = {.lex_state = 309}, + [7016] = {.lex_state = 302}, + [7017] = {.lex_state = 308}, + [7018] = {.lex_state = 309}, + [7019] = {.lex_state = 309}, + [7020] = {.lex_state = 347}, + [7021] = {.lex_state = 347}, + [7022] = {.lex_state = 308}, + [7023] = {.lex_state = 347}, + [7024] = {.lex_state = 347}, + [7025] = {.lex_state = 304}, + [7026] = {.lex_state = 299}, + [7027] = {.lex_state = 308}, + [7028] = {.lex_state = 308}, + [7029] = {.lex_state = 347}, + [7030] = {.lex_state = 347}, + [7031] = {.lex_state = 347}, + [7032] = {.lex_state = 308}, + [7033] = {.lex_state = 308}, + [7034] = {.lex_state = 347}, + [7035] = {.lex_state = 363}, + [7036] = {.lex_state = 347}, + [7037] = {.lex_state = 308}, + [7038] = {.lex_state = 347}, + [7039] = {.lex_state = 308}, + [7040] = {.lex_state = 308}, + [7041] = {.lex_state = 347}, + [7042] = {.lex_state = 347}, + [7043] = {.lex_state = 308}, + [7044] = {.lex_state = 308}, + [7045] = {.lex_state = 347}, + [7046] = {.lex_state = 347}, + [7047] = {.lex_state = 308}, + [7048] = {.lex_state = 304}, + [7049] = {.lex_state = 347}, + [7050] = {.lex_state = 308}, + [7051] = {.lex_state = 342}, + [7052] = {.lex_state = 347}, + [7053] = {.lex_state = 308}, + [7054] = {.lex_state = 363}, + [7055] = {.lex_state = 308}, + [7056] = {.lex_state = 363}, + [7057] = {.lex_state = 308}, + [7058] = {.lex_state = 308}, + [7059] = {.lex_state = 308}, + [7060] = {.lex_state = 308}, + [7061] = {.lex_state = 347}, + [7062] = {.lex_state = 308}, + [7063] = {.lex_state = 308}, + [7064] = {.lex_state = 347}, + [7065] = {.lex_state = 308}, + [7066] = {.lex_state = 347}, + [7067] = {.lex_state = 308}, + [7068] = {.lex_state = 308}, + [7069] = {.lex_state = 347}, + [7070] = {.lex_state = 347}, + [7071] = {.lex_state = 347}, + [7072] = {.lex_state = 347}, + [7073] = {.lex_state = 347}, + [7074] = {.lex_state = 308}, + [7075] = {.lex_state = 304}, + [7076] = {.lex_state = 347}, + [7077] = {.lex_state = 308}, + [7078] = {.lex_state = 299}, + [7079] = {.lex_state = 308}, + [7080] = {.lex_state = 367}, + [7081] = {.lex_state = 304}, + [7082] = {.lex_state = 342}, + [7083] = {.lex_state = 304}, + [7084] = {.lex_state = 308}, + [7085] = {.lex_state = 304}, + [7086] = {.lex_state = 347}, + [7087] = {.lex_state = 308}, + [7088] = {.lex_state = 304}, + [7089] = {.lex_state = 308}, + [7090] = {.lex_state = 304}, + [7091] = {.lex_state = 304}, + [7092] = {.lex_state = 304}, + [7093] = {.lex_state = 349}, + [7094] = {.lex_state = 308}, + [7095] = {.lex_state = 308}, + [7096] = {.lex_state = 308}, + [7097] = {.lex_state = 304}, + [7098] = {.lex_state = 305}, + [7099] = {.lex_state = 304}, + [7100] = {.lex_state = 304}, + [7101] = {.lex_state = 304}, + [7102] = {.lex_state = 304}, + [7103] = {.lex_state = 304}, + [7104] = {.lex_state = 304}, + [7105] = {.lex_state = 308}, + [7106] = {.lex_state = 308}, + [7107] = {.lex_state = 308}, + [7108] = {.lex_state = 304}, + [7109] = {.lex_state = 308}, + [7110] = {.lex_state = 308}, + [7111] = {.lex_state = 304}, + [7112] = {.lex_state = 304}, + [7113] = {.lex_state = 342}, + [7114] = {.lex_state = 308}, + [7115] = {.lex_state = 304}, + [7116] = {.lex_state = 304}, + [7117] = {.lex_state = 347}, + [7118] = {.lex_state = 308}, + [7119] = {.lex_state = 304}, + [7120] = {.lex_state = 304}, + [7121] = {.lex_state = 347}, + [7122] = {.lex_state = 367}, + [7123] = {.lex_state = 308}, + [7124] = {.lex_state = 308}, + [7125] = {.lex_state = 308}, + [7126] = {.lex_state = 308}, + [7127] = {.lex_state = 368}, + [7128] = {.lex_state = 347}, + [7129] = {.lex_state = 308}, + [7130] = {.lex_state = 304}, + [7131] = {.lex_state = 342}, + [7132] = {.lex_state = 308}, + [7133] = {.lex_state = 308}, + [7134] = {.lex_state = 308}, + [7135] = {.lex_state = 347}, + [7136] = {.lex_state = 304}, + [7137] = {.lex_state = 342}, + [7138] = {.lex_state = 308}, + [7139] = {.lex_state = 342}, + [7140] = {.lex_state = 308}, + [7141] = {.lex_state = 349}, + [7142] = {.lex_state = 304}, + [7143] = {.lex_state = 308}, + [7144] = {.lex_state = 347}, + [7145] = {.lex_state = 308}, + [7146] = {.lex_state = 304}, + [7147] = {.lex_state = 304}, + [7148] = {.lex_state = 308}, + [7149] = {.lex_state = 308}, + [7150] = {.lex_state = 304}, + [7151] = {.lex_state = 304}, + [7152] = {.lex_state = 304}, + [7153] = {.lex_state = 304}, + [7154] = {.lex_state = 308}, + [7155] = {.lex_state = 367}, + [7156] = {.lex_state = 304}, + [7157] = {.lex_state = 304}, + [7158] = {.lex_state = 342}, + [7159] = {.lex_state = 347}, + [7160] = {.lex_state = 304}, + [7161] = {.lex_state = 366}, + [7162] = {.lex_state = 366}, + [7163] = {.lex_state = 308}, + [7164] = {.lex_state = 308}, + [7165] = {.lex_state = 304}, + [7166] = {.lex_state = 304}, + [7167] = {.lex_state = 342}, + [7168] = {.lex_state = 304}, + [7169] = {.lex_state = 304}, + [7170] = {.lex_state = 305}, + [7171] = {.lex_state = 342}, + [7172] = {.lex_state = 304}, + [7173] = {.lex_state = 304}, + [7174] = {.lex_state = 304}, + [7175] = {.lex_state = 347}, + [7176] = {.lex_state = 304}, + [7177] = {.lex_state = 308}, + [7178] = {.lex_state = 342}, + [7179] = {.lex_state = 367}, + [7180] = {.lex_state = 308}, + [7181] = {.lex_state = 366}, + [7182] = {.lex_state = 308}, + [7183] = {.lex_state = 342}, + [7184] = {.lex_state = 308}, + [7185] = {.lex_state = 308}, + [7186] = {.lex_state = 308}, + [7187] = {.lex_state = 308}, + [7188] = {.lex_state = 308}, + [7189] = {.lex_state = 308}, + [7190] = {.lex_state = 304}, + [7191] = {.lex_state = 304}, + [7192] = {.lex_state = 308}, + [7193] = {.lex_state = 347}, + [7194] = {.lex_state = 308}, + [7195] = {.lex_state = 299}, + [7196] = {.lex_state = 304}, + [7197] = {.lex_state = 363}, + [7198] = {.lex_state = 366}, + [7199] = {.lex_state = 347}, + [7200] = {.lex_state = 299}, + [7201] = {.lex_state = 343}, + [7202] = {.lex_state = 363}, + [7203] = {.lex_state = 306}, + [7204] = {.lex_state = 363}, + [7205] = {.lex_state = 363}, + [7206] = {.lex_state = 363}, + [7207] = {.lex_state = 366}, + [7208] = {.lex_state = 363}, + [7209] = {.lex_state = 299}, + [7210] = {.lex_state = 363}, + [7211] = {.lex_state = 299}, + [7212] = {.lex_state = 363}, + [7213] = {.lex_state = 299}, + [7214] = {.lex_state = 367}, + [7215] = {.lex_state = 367}, + [7216] = {.lex_state = 363}, + [7217] = {.lex_state = 306}, + [7218] = {.lex_state = 299}, + [7219] = {.lex_state = 363}, + [7220] = {.lex_state = 299}, + [7221] = {.lex_state = 350}, + [7222] = {.lex_state = 304}, + [7223] = {.lex_state = 350}, + [7224] = {.lex_state = 300}, + [7225] = {.lex_state = 302}, + [7226] = {.lex_state = 363}, + [7227] = {.lex_state = 299}, + [7228] = {.lex_state = 299}, + [7229] = {.lex_state = 304}, + [7230] = {.lex_state = 366}, + [7231] = {.lex_state = 343}, + [7232] = {.lex_state = 299}, + [7233] = {.lex_state = 343}, + [7234] = {.lex_state = 350}, + [7235] = {.lex_state = 299}, + [7236] = {.lex_state = 299}, + [7237] = {.lex_state = 299}, + [7238] = {.lex_state = 366}, + [7239] = {.lex_state = 363}, + [7240] = {.lex_state = 299}, + [7241] = {.lex_state = 299}, + [7242] = {.lex_state = 302}, + [7243] = {.lex_state = 363}, + [7244] = {.lex_state = 363}, + [7245] = {.lex_state = 350}, + [7246] = {.lex_state = 306}, + [7247] = {.lex_state = 308}, + [7248] = {.lex_state = 299}, + [7249] = {.lex_state = 343}, + [7250] = {.lex_state = 306}, + [7251] = {.lex_state = 363}, + [7252] = {.lex_state = 363}, + [7253] = {.lex_state = 363}, + [7254] = {.lex_state = 299}, + [7255] = {.lex_state = 363}, + [7256] = {.lex_state = 363}, + [7257] = {.lex_state = 347}, + [7258] = {.lex_state = 347}, + [7259] = {.lex_state = 347}, + [7260] = {.lex_state = 347}, + [7261] = {.lex_state = 308}, + [7262] = {.lex_state = 347}, + [7263] = {.lex_state = 347}, + [7264] = {.lex_state = 304}, + [7265] = {.lex_state = 300}, + [7266] = {.lex_state = 363}, + [7267] = {.lex_state = 304}, + [7268] = {.lex_state = 347}, + [7269] = {.lex_state = 347}, + [7270] = {.lex_state = 347}, + [7271] = {.lex_state = 347}, + [7272] = {.lex_state = 347}, + [7273] = {.lex_state = 308}, + [7274] = {.lex_state = 308}, + [7275] = {.lex_state = 308}, + [7276] = {.lex_state = 304}, + [7277] = {.lex_state = 308}, + [7278] = {.lex_state = 347}, + [7279] = {.lex_state = 308}, + [7280] = {.lex_state = 308}, + [7281] = {.lex_state = 308}, + [7282] = {.lex_state = 308}, + [7283] = {.lex_state = 363}, + [7284] = {.lex_state = 363}, + [7285] = {.lex_state = 304}, + [7286] = {.lex_state = 304}, + [7287] = {.lex_state = 363}, + [7288] = {.lex_state = 299}, + [7289] = {.lex_state = 304}, + [7290] = {.lex_state = 304}, + [7291] = {.lex_state = 304}, + [7292] = {.lex_state = 365}, + [7293] = {.lex_state = 299}, + [7294] = {.lex_state = 308}, + [7295] = {.lex_state = 347}, + [7296] = {.lex_state = 347}, + [7297] = {.lex_state = 347}, + [7298] = {.lex_state = 347}, + [7299] = {.lex_state = 347}, + [7300] = {.lex_state = 304}, + [7301] = {.lex_state = 347}, + [7302] = {.lex_state = 347}, + [7303] = {.lex_state = 347}, + [7304] = {.lex_state = 343}, + [7305] = {.lex_state = 300}, + [7306] = {.lex_state = 304}, + [7307] = {.lex_state = 304}, + [7308] = {.lex_state = 304}, + [7309] = {.lex_state = 304}, + [7310] = {.lex_state = 304}, + [7311] = {.lex_state = 304}, + [7312] = {.lex_state = 304}, + [7313] = {.lex_state = 304}, + [7314] = {.lex_state = 304}, + [7315] = {.lex_state = 347}, + [7316] = {.lex_state = 299}, + [7317] = {.lex_state = 304}, + [7318] = {.lex_state = 299}, + [7319] = {.lex_state = 299}, + [7320] = {.lex_state = 347}, + [7321] = {.lex_state = 299}, + [7322] = {.lex_state = 299}, + [7323] = {.lex_state = 347}, + [7324] = {.lex_state = 347}, + [7325] = {.lex_state = 347}, + [7326] = {.lex_state = 347}, + [7327] = {.lex_state = 347}, + [7328] = {.lex_state = 347}, + [7329] = {.lex_state = 347}, + [7330] = {.lex_state = 308}, + [7331] = {.lex_state = 308}, + [7332] = {.lex_state = 347}, + [7333] = {.lex_state = 304}, + [7334] = {.lex_state = 365}, + [7335] = {.lex_state = 304}, + [7336] = {.lex_state = 350}, + [7337] = {.lex_state = 304}, + [7338] = {.lex_state = 304}, + [7339] = {.lex_state = 363}, + [7340] = {.lex_state = 304}, + [7341] = {.lex_state = 304}, + [7342] = {.lex_state = 304}, + [7343] = {.lex_state = 304}, + [7344] = {.lex_state = 304}, + [7345] = {.lex_state = 363}, + [7346] = {.lex_state = 343}, + [7347] = {.lex_state = 304}, + [7348] = {.lex_state = 304}, + [7349] = {.lex_state = 343}, + [7350] = {.lex_state = 304}, + [7351] = {.lex_state = 304}, + [7352] = {.lex_state = 304}, + [7353] = {.lex_state = 304}, + [7354] = {.lex_state = 365}, + [7355] = {.lex_state = 366}, + [7356] = {.lex_state = 304}, + [7357] = {.lex_state = 304}, + [7358] = {.lex_state = 304}, + [7359] = {.lex_state = 304}, + [7360] = {.lex_state = 304}, + [7361] = {.lex_state = 304}, + [7362] = {.lex_state = 304}, + [7363] = {.lex_state = 304}, + [7364] = {.lex_state = 304}, + [7365] = {.lex_state = 347}, + [7366] = {.lex_state = 347}, + [7367] = {.lex_state = 347}, + [7368] = {.lex_state = 347}, + [7369] = {.lex_state = 347}, + [7370] = {.lex_state = 347}, + [7371] = {.lex_state = 347}, + [7372] = {.lex_state = 366}, + [7373] = {.lex_state = 308}, + [7374] = {.lex_state = 347}, + [7375] = {.lex_state = 347}, + [7376] = {.lex_state = 347}, + [7377] = {.lex_state = 347}, + [7378] = {.lex_state = 347}, + [7379] = {.lex_state = 304}, + [7380] = {.lex_state = 308}, + [7381] = {.lex_state = 308}, + [7382] = {.lex_state = 304}, + [7383] = {.lex_state = 304}, + [7384] = {.lex_state = 304}, + [7385] = {.lex_state = 308}, + [7386] = {.lex_state = 304}, + [7387] = {.lex_state = 308}, + [7388] = {.lex_state = 366}, + [7389] = {.lex_state = 304}, + [7390] = {.lex_state = 304}, + [7391] = {.lex_state = 350}, + [7392] = {.lex_state = 304}, + [7393] = {.lex_state = 347}, + [7394] = {.lex_state = 304}, + [7395] = {.lex_state = 363}, + [7396] = {.lex_state = 304}, + [7397] = {.lex_state = 347}, + [7398] = {.lex_state = 347}, + [7399] = {.lex_state = 347}, + [7400] = {.lex_state = 308}, + [7401] = {.lex_state = 308}, + [7402] = {.lex_state = 308}, + [7403] = {.lex_state = 308}, + [7404] = {.lex_state = 308}, + [7405] = {.lex_state = 308}, + [7406] = {.lex_state = 308}, + [7407] = {.lex_state = 308}, + [7408] = {.lex_state = 308}, + [7409] = {.lex_state = 308}, + [7410] = {.lex_state = 308}, + [7411] = {.lex_state = 347}, + [7412] = {.lex_state = 363}, + [7413] = {.lex_state = 347}, + [7414] = {.lex_state = 304}, + [7415] = {.lex_state = 347}, + [7416] = {.lex_state = 347}, + [7417] = {.lex_state = 347}, + [7418] = {.lex_state = 347}, + [7419] = {.lex_state = 304}, + [7420] = {.lex_state = 308}, + [7421] = {.lex_state = 366}, + [7422] = {.lex_state = 304}, + [7423] = {.lex_state = 363}, + [7424] = {.lex_state = 308}, + [7425] = {.lex_state = 347}, + [7426] = {.lex_state = 308}, + [7427] = {.lex_state = 304}, + [7428] = {.lex_state = 304}, + [7429] = {.lex_state = 308}, + [7430] = {.lex_state = 347}, + [7431] = {.lex_state = 308}, + [7432] = {.lex_state = 347}, + [7433] = {.lex_state = 347}, + [7434] = {.lex_state = 347}, + [7435] = {.lex_state = 347}, + [7436] = {.lex_state = 304}, + [7437] = {.lex_state = 304}, + [7438] = {.lex_state = 363}, + [7439] = {.lex_state = 347}, + [7440] = {.lex_state = 304}, + [7441] = {.lex_state = 304}, + [7442] = {.lex_state = 347}, + [7443] = {.lex_state = 347}, + [7444] = {.lex_state = 347}, + [7445] = {.lex_state = 347}, + [7446] = {.lex_state = 306}, + [7447] = {.lex_state = 366}, + [7448] = {.lex_state = 347}, + [7449] = {.lex_state = 363}, + [7450] = {.lex_state = 304}, + [7451] = {.lex_state = 304}, + [7452] = {.lex_state = 304}, + [7453] = {.lex_state = 308}, + [7454] = {.lex_state = 308}, + [7455] = {.lex_state = 347}, + [7456] = {.lex_state = 347}, + [7457] = {.lex_state = 347}, + [7458] = {.lex_state = 347}, + [7459] = {.lex_state = 304}, + [7460] = {.lex_state = 304}, + [7461] = {.lex_state = 308}, + [7462] = {.lex_state = 347}, + [7463] = {.lex_state = 308}, + [7464] = {.lex_state = 308}, + [7465] = {.lex_state = 347}, + [7466] = {.lex_state = 308}, + [7467] = {.lex_state = 304}, + [7468] = {.lex_state = 347}, + [7469] = {.lex_state = 308}, + [7470] = {.lex_state = 304}, + [7471] = {.lex_state = 347}, + [7472] = {.lex_state = 304}, + [7473] = {.lex_state = 304}, + [7474] = {.lex_state = 347}, + [7475] = {.lex_state = 304}, + [7476] = {.lex_state = 347}, + [7477] = {.lex_state = 347}, + [7478] = {.lex_state = 308}, + [7479] = {.lex_state = 304}, + [7480] = {.lex_state = 347}, + [7481] = {.lex_state = 347}, + [7482] = {.lex_state = 347}, + [7483] = {.lex_state = 304}, + [7484] = {.lex_state = 347}, + [7485] = {.lex_state = 347}, + [7486] = {.lex_state = 304}, + [7487] = {.lex_state = 347}, + [7488] = {.lex_state = 347}, + [7489] = {.lex_state = 347}, + [7490] = {.lex_state = 347}, + [7491] = {.lex_state = 347}, + [7492] = {.lex_state = 347}, + [7493] = {.lex_state = 347}, + [7494] = {.lex_state = 347}, + [7495] = {.lex_state = 347}, + [7496] = {.lex_state = 347}, + [7497] = {.lex_state = 347}, + [7498] = {.lex_state = 347}, + [7499] = {.lex_state = 347}, + [7500] = {.lex_state = 347}, + [7501] = {.lex_state = 347}, + [7502] = {.lex_state = 347}, + [7503] = {.lex_state = 347}, + [7504] = {.lex_state = 308}, + [7505] = {.lex_state = 347}, + [7506] = {.lex_state = 347}, + [7507] = {.lex_state = 308}, + [7508] = {.lex_state = 304}, + [7509] = {.lex_state = 308}, + [7510] = {.lex_state = 308}, + [7511] = {.lex_state = 347}, + [7512] = {.lex_state = 308}, + [7513] = {.lex_state = 308}, + [7514] = {.lex_state = 308}, + [7515] = {.lex_state = 306}, + [7516] = {.lex_state = 308}, + [7517] = {.lex_state = 347}, + [7518] = {.lex_state = 308}, + [7519] = {.lex_state = 308}, + [7520] = {.lex_state = 363}, + [7521] = {.lex_state = 363}, + [7522] = {.lex_state = 308}, + [7523] = {.lex_state = 308}, + [7524] = {.lex_state = 304}, + [7525] = {.lex_state = 308}, + [7526] = {.lex_state = 308}, + [7527] = {.lex_state = 304}, + [7528] = {.lex_state = 308}, + [7529] = {.lex_state = 308}, + [7530] = {.lex_state = 347}, + [7531] = {.lex_state = 363}, + [7532] = {.lex_state = 304}, + [7533] = {.lex_state = 304}, + [7534] = {.lex_state = 304}, + [7535] = {.lex_state = 308}, + [7536] = {.lex_state = 340}, + [7537] = {.lex_state = 347}, + [7538] = {.lex_state = 347}, + [7539] = {.lex_state = 363}, + [7540] = {.lex_state = 363}, + [7541] = {.lex_state = 304}, + [7542] = {.lex_state = 363}, + [7543] = {.lex_state = 308}, + [7544] = {.lex_state = 347}, + [7545] = {.lex_state = 308}, + [7546] = {.lex_state = 308}, + [7547] = {.lex_state = 308}, + [7548] = {.lex_state = 308}, + [7549] = {.lex_state = 308}, + [7550] = {.lex_state = 308}, + [7551] = {.lex_state = 308}, + [7552] = {.lex_state = 308}, + [7553] = {.lex_state = 304}, + [7554] = {.lex_state = 347}, + [7555] = {.lex_state = 347}, + [7556] = {.lex_state = 308}, + [7557] = {.lex_state = 308}, + [7558] = {.lex_state = 347}, + [7559] = {.lex_state = 363}, + [7560] = {.lex_state = 363}, + [7561] = {.lex_state = 363}, + [7562] = {.lex_state = 363}, + [7563] = {.lex_state = 308}, + [7564] = {.lex_state = 363}, + [7565] = {.lex_state = 308}, + [7566] = {.lex_state = 347}, + [7567] = {.lex_state = 347}, + [7568] = {.lex_state = 308}, + [7569] = {.lex_state = 304}, + [7570] = {.lex_state = 308}, + [7571] = {.lex_state = 308}, + [7572] = {.lex_state = 347}, + [7573] = {.lex_state = 308}, + [7574] = {.lex_state = 308}, + [7575] = {.lex_state = 308}, + [7576] = {.lex_state = 347}, + [7577] = {.lex_state = 308}, + [7578] = {.lex_state = 308}, + [7579] = {.lex_state = 362}, + [7580] = {.lex_state = 304}, + [7581] = {.lex_state = 304}, + [7582] = {.lex_state = 304}, + [7583] = {.lex_state = 363}, + [7584] = {.lex_state = 347}, + [7585] = {.lex_state = 347}, + [7586] = {.lex_state = 304}, + [7587] = {.lex_state = 304}, + [7588] = {.lex_state = 304}, + [7589] = {.lex_state = 302}, + [7590] = {.lex_state = 304}, + [7591] = {.lex_state = 347}, + [7592] = {.lex_state = 304}, + [7593] = {.lex_state = 304}, + [7594] = {.lex_state = 304}, + [7595] = {.lex_state = 304}, + [7596] = {.lex_state = 304}, + [7597] = {.lex_state = 342}, + [7598] = {.lex_state = 347}, + [7599] = {.lex_state = 304}, + [7600] = {.lex_state = 304}, + [7601] = {.lex_state = 347}, + [7602] = {.lex_state = 347}, + [7603] = {.lex_state = 304}, + [7604] = {.lex_state = 308}, + [7605] = {.lex_state = 308}, + [7606] = {.lex_state = 308}, + [7607] = {.lex_state = 304}, + [7608] = {.lex_state = 308}, + [7609] = {.lex_state = 308}, + [7610] = {.lex_state = 308}, + [7611] = {.lex_state = 308}, + [7612] = {.lex_state = 304}, + [7613] = {.lex_state = 308}, + [7614] = {.lex_state = 308}, + [7615] = {.lex_state = 308}, + [7616] = {.lex_state = 308}, + [7617] = {.lex_state = 304}, + [7618] = {.lex_state = 308}, + [7619] = {.lex_state = 308}, + [7620] = {.lex_state = 308}, + [7621] = {.lex_state = 308}, + [7622] = {.lex_state = 308}, + [7623] = {.lex_state = 347}, + [7624] = {.lex_state = 304}, + [7625] = {.lex_state = 347}, + [7626] = {.lex_state = 308}, + [7627] = {.lex_state = 308}, + [7628] = {.lex_state = 308}, + [7629] = {.lex_state = 347}, + [7630] = {.lex_state = 308}, + [7631] = {.lex_state = 304}, + [7632] = {.lex_state = 308}, + [7633] = {.lex_state = 304}, + [7634] = {.lex_state = 347}, + [7635] = {.lex_state = 308}, + [7636] = {.lex_state = 304}, + [7637] = {.lex_state = 304}, + [7638] = {.lex_state = 304}, + [7639] = {.lex_state = 304}, + [7640] = {.lex_state = 304}, + [7641] = {.lex_state = 308}, + [7642] = {.lex_state = 304}, + [7643] = {.lex_state = 347}, + [7644] = {.lex_state = 308}, + [7645] = {.lex_state = 347}, + [7646] = {.lex_state = 308}, + [7647] = {.lex_state = 347}, + [7648] = {.lex_state = 347}, + [7649] = {.lex_state = 347}, + [7650] = {.lex_state = 346}, + [7651] = {.lex_state = 304}, + [7652] = {.lex_state = 346}, + [7653] = {.lex_state = 304}, + [7654] = {.lex_state = 304}, + [7655] = {.lex_state = 308}, + [7656] = {.lex_state = 304}, + [7657] = {.lex_state = 363}, + [7658] = {.lex_state = 347}, + [7659] = {.lex_state = 304}, + [7660] = {.lex_state = 347}, + [7661] = {.lex_state = 347}, + [7662] = {.lex_state = 347}, + [7663] = {.lex_state = 304}, + [7664] = {.lex_state = 308}, + [7665] = {.lex_state = 308}, + [7666] = {.lex_state = 347}, + [7667] = {.lex_state = 308}, + [7668] = {.lex_state = 308}, + [7669] = {.lex_state = 308}, + [7670] = {.lex_state = 308}, + [7671] = {.lex_state = 308}, + [7672] = {.lex_state = 304}, + [7673] = {.lex_state = 308}, + [7674] = {.lex_state = 308}, + [7675] = {.lex_state = 299}, + [7676] = {.lex_state = 304}, + [7677] = {.lex_state = 304}, + [7678] = {.lex_state = 304}, + [7679] = {.lex_state = 304}, + [7680] = {.lex_state = 304}, + [7681] = {.lex_state = 304}, + [7682] = {.lex_state = 304}, + [7683] = {.lex_state = 304}, + [7684] = {.lex_state = 304}, + [7685] = {.lex_state = 304}, + [7686] = {.lex_state = 304}, + [7687] = {.lex_state = 304}, + [7688] = {.lex_state = 304}, + [7689] = {.lex_state = 304}, + [7690] = {.lex_state = 304}, + [7691] = {.lex_state = 304}, + [7692] = {.lex_state = 304}, + [7693] = {.lex_state = 304}, + [7694] = {.lex_state = 304}, + [7695] = {.lex_state = 304}, + [7696] = {.lex_state = 304}, + [7697] = {.lex_state = 308}, + [7698] = {.lex_state = 347}, + [7699] = {.lex_state = 308}, + [7700] = {.lex_state = 347}, + [7701] = {.lex_state = 304}, + [7702] = {.lex_state = 363}, + [7703] = {.lex_state = 347}, + [7704] = {.lex_state = 363}, + [7705] = {.lex_state = 347}, + [7706] = {.lex_state = 304}, + [7707] = {.lex_state = 304}, + [7708] = {.lex_state = 363}, + [7709] = {.lex_state = 363}, + [7710] = {.lex_state = 363}, + [7711] = {.lex_state = 363}, + [7712] = {.lex_state = 347}, + [7713] = {.lex_state = 347}, + [7714] = {.lex_state = 363}, + [7715] = {.lex_state = 304}, + [7716] = {.lex_state = 304}, + [7717] = {.lex_state = 304}, + [7718] = {.lex_state = 363}, + [7719] = {.lex_state = 363}, + [7720] = {.lex_state = 363}, + [7721] = {.lex_state = 347}, + [7722] = {.lex_state = 363}, + [7723] = {.lex_state = 363}, + [7724] = {.lex_state = 304}, + [7725] = {.lex_state = 308}, + [7726] = {.lex_state = 304}, + [7727] = {.lex_state = 304}, + [7728] = {.lex_state = 308}, + [7729] = {.lex_state = 304}, + [7730] = {.lex_state = 304}, + [7731] = {.lex_state = 299}, + [7732] = {.lex_state = 363}, + [7733] = {.lex_state = 347}, + [7734] = {.lex_state = 347}, + [7735] = {.lex_state = 304}, + [7736] = {.lex_state = 304}, + [7737] = {.lex_state = 304}, + [7738] = {.lex_state = 304}, + [7739] = {.lex_state = 304}, + [7740] = {.lex_state = 304}, + [7741] = {.lex_state = 304}, + [7742] = {.lex_state = 304}, + [7743] = {.lex_state = 304}, + [7744] = {.lex_state = 304}, + [7745] = {.lex_state = 304}, + [7746] = {.lex_state = 304}, + [7747] = {.lex_state = 304}, + [7748] = {.lex_state = 304}, + [7749] = {.lex_state = 304}, + [7750] = {.lex_state = 304}, + [7751] = {.lex_state = 304}, + [7752] = {.lex_state = 304}, + [7753] = {.lex_state = 304}, + [7754] = {.lex_state = 304}, + [7755] = {.lex_state = 304}, + [7756] = {.lex_state = 304}, + [7757] = {.lex_state = 304}, + [7758] = {.lex_state = 304}, + [7759] = {.lex_state = 347}, + [7760] = {.lex_state = 347}, + [7761] = {.lex_state = 347}, + [7762] = {.lex_state = 347}, + [7763] = {.lex_state = 347}, + [7764] = {.lex_state = 347}, + [7765] = {.lex_state = 347}, + [7766] = {.lex_state = 347}, + [7767] = {.lex_state = 347}, + [7768] = {.lex_state = 347}, + [7769] = {.lex_state = 304}, + [7770] = {.lex_state = 363}, + [7771] = {.lex_state = 363}, + [7772] = {.lex_state = 347}, + [7773] = {.lex_state = 304}, + [7774] = {.lex_state = 304}, + [7775] = {.lex_state = 304}, + [7776] = {.lex_state = 304}, + [7777] = {.lex_state = 304}, + [7778] = {.lex_state = 304}, + [7779] = {.lex_state = 304}, + [7780] = {.lex_state = 347}, + [7781] = {.lex_state = 304}, + [7782] = {.lex_state = 363}, + [7783] = {.lex_state = 347}, + [7784] = {.lex_state = 304}, + [7785] = {.lex_state = 304}, + [7786] = {.lex_state = 304}, + [7787] = {.lex_state = 304}, + [7788] = {.lex_state = 304}, + [7789] = {.lex_state = 304}, + [7790] = {.lex_state = 308}, + [7791] = {.lex_state = 309}, + [7792] = {.lex_state = 308}, + [7793] = {.lex_state = 308}, + [7794] = {.lex_state = 308}, + [7795] = {.lex_state = 308}, + [7796] = {.lex_state = 308}, + [7797] = {.lex_state = 308}, + [7798] = {.lex_state = 308}, + [7799] = {.lex_state = 308}, + [7800] = {.lex_state = 304}, + [7801] = {.lex_state = 304}, + [7802] = {.lex_state = 309}, + [7803] = {.lex_state = 309}, + [7804] = {.lex_state = 309}, + [7805] = {.lex_state = 308}, + [7806] = {.lex_state = 304}, + [7807] = {.lex_state = 308}, + [7808] = {.lex_state = 304}, + [7809] = {.lex_state = 304}, + [7810] = {.lex_state = 308}, + [7811] = {.lex_state = 304}, + [7812] = {.lex_state = 304}, + [7813] = {.lex_state = 308}, + [7814] = {.lex_state = 304}, + [7815] = {.lex_state = 304}, + [7816] = {.lex_state = 308}, + [7817] = {.lex_state = 308}, + [7818] = {.lex_state = 308}, + [7819] = {.lex_state = 362}, + [7820] = {.lex_state = 304}, + [7821] = {.lex_state = 308}, + [7822] = {.lex_state = 304}, + [7823] = {.lex_state = 304}, + [7824] = {.lex_state = 308}, + [7825] = {.lex_state = 308}, + [7826] = {.lex_state = 308}, + [7827] = {.lex_state = 304}, + [7828] = {.lex_state = 309}, + [7829] = {.lex_state = 309}, + [7830] = {.lex_state = 304}, + [7831] = {.lex_state = 304}, + [7832] = {.lex_state = 304}, + [7833] = {.lex_state = 304}, + [7834] = {.lex_state = 304}, + [7835] = {.lex_state = 304}, + [7836] = {.lex_state = 308}, + [7837] = {.lex_state = 308}, + [7838] = {.lex_state = 304}, + [7839] = {.lex_state = 304}, + [7840] = {.lex_state = 308}, + [7841] = {.lex_state = 304}, + [7842] = {.lex_state = 304}, + [7843] = {.lex_state = 308}, + [7844] = {.lex_state = 347}, + [7845] = {.lex_state = 308}, + [7846] = {.lex_state = 347}, + [7847] = {.lex_state = 355}, + [7848] = {.lex_state = 308}, + [7849] = {.lex_state = 363}, + [7850] = {.lex_state = 309}, + [7851] = {.lex_state = 309}, + [7852] = {.lex_state = 347}, + [7853] = {.lex_state = 347}, + [7854] = {.lex_state = 347}, + [7855] = {.lex_state = 347}, + [7856] = {.lex_state = 309}, + [7857] = {.lex_state = 347}, + [7858] = {.lex_state = 347}, + [7859] = {.lex_state = 309}, + [7860] = {.lex_state = 347}, + [7861] = {.lex_state = 304}, + [7862] = {.lex_state = 304}, + [7863] = {.lex_state = 363}, + [7864] = {.lex_state = 304}, + [7865] = {.lex_state = 304}, + [7866] = {.lex_state = 347}, + [7867] = {.lex_state = 347}, + [7868] = {.lex_state = 309}, + [7869] = {.lex_state = 366}, + [7870] = {.lex_state = 309}, + [7871] = {.lex_state = 347}, + [7872] = {.lex_state = 347}, + [7873] = {.lex_state = 308}, + [7874] = {.lex_state = 347}, + [7875] = {.lex_state = 347}, + [7876] = {.lex_state = 347}, + [7877] = {.lex_state = 308}, + [7878] = {.lex_state = 304}, + [7879] = {.lex_state = 308}, + [7880] = {.lex_state = 308}, + [7881] = {.lex_state = 308}, + [7882] = {.lex_state = 309}, + [7883] = {.lex_state = 347}, + [7884] = {.lex_state = 347}, + [7885] = {.lex_state = 309}, + [7886] = {.lex_state = 304}, + [7887] = {.lex_state = 304}, + [7888] = {.lex_state = 347}, + [7889] = {.lex_state = 347}, + [7890] = {.lex_state = 347}, + [7891] = {.lex_state = 347}, + [7892] = {.lex_state = 347}, + [7893] = {.lex_state = 347}, + [7894] = {.lex_state = 304}, + [7895] = {.lex_state = 304}, + [7896] = {.lex_state = 347}, + [7897] = {.lex_state = 308}, + [7898] = {.lex_state = 347}, + [7899] = {.lex_state = 304}, + [7900] = {.lex_state = 347}, + [7901] = {.lex_state = 308}, + [7902] = {.lex_state = 347}, + [7903] = {.lex_state = 308}, + [7904] = {.lex_state = 347}, + [7905] = {.lex_state = 309}, + [7906] = {.lex_state = 347}, + [7907] = {.lex_state = 308}, + [7908] = {.lex_state = 347}, + [7909] = {.lex_state = 309}, + [7910] = {.lex_state = 309}, + [7911] = {.lex_state = 347}, + [7912] = {.lex_state = 347}, + [7913] = {.lex_state = 304}, + [7914] = {.lex_state = 304}, + [7915] = {.lex_state = 304}, + [7916] = {.lex_state = 308}, + [7917] = {.lex_state = 308}, + [7918] = {.lex_state = 308}, + [7919] = {.lex_state = 308}, + [7920] = {.lex_state = 308}, + [7921] = {.lex_state = 304}, + [7922] = {.lex_state = 304}, + [7923] = {.lex_state = 304}, + [7924] = {.lex_state = 304}, + [7925] = {.lex_state = 308}, + [7926] = {.lex_state = 304}, + [7927] = {.lex_state = 304}, + [7928] = {.lex_state = 304}, + [7929] = {.lex_state = 309}, + [7930] = {.lex_state = 304}, + [7931] = {.lex_state = 304}, + [7932] = {.lex_state = 304}, + [7933] = {.lex_state = 304}, + [7934] = {.lex_state = 304}, + [7935] = {.lex_state = 304}, + [7936] = {.lex_state = 309}, + [7937] = {.lex_state = 304}, + [7938] = {.lex_state = 304}, + [7939] = {.lex_state = 304}, + [7940] = {.lex_state = 304}, + [7941] = {.lex_state = 309}, + [7942] = {.lex_state = 304}, + [7943] = {.lex_state = 309}, + [7944] = {.lex_state = 304}, + [7945] = {.lex_state = 304}, + [7946] = {.lex_state = 304}, + [7947] = {.lex_state = 304}, + [7948] = {.lex_state = 304}, + [7949] = {.lex_state = 304}, + [7950] = {.lex_state = 304}, + [7951] = {.lex_state = 304}, + [7952] = {.lex_state = 304}, + [7953] = {.lex_state = 304}, + [7954] = {.lex_state = 304}, + [7955] = {.lex_state = 304}, + [7956] = {.lex_state = 309}, + [7957] = {.lex_state = 304}, + [7958] = {.lex_state = 304}, + [7959] = {.lex_state = 304}, + [7960] = {.lex_state = 304}, + [7961] = {.lex_state = 366}, + [7962] = {.lex_state = 308}, + [7963] = {.lex_state = 304}, + [7964] = {.lex_state = 304}, + [7965] = {.lex_state = 304}, + [7966] = {.lex_state = 304}, + [7967] = {.lex_state = 304}, + [7968] = {.lex_state = 304}, + [7969] = {.lex_state = 308}, + [7970] = {.lex_state = 304}, + [7971] = {.lex_state = 304}, + [7972] = {.lex_state = 304}, + [7973] = {.lex_state = 347}, + [7974] = {.lex_state = 304}, + [7975] = {.lex_state = 304}, + [7976] = {.lex_state = 304}, + [7977] = {.lex_state = 304}, + [7978] = {.lex_state = 304}, + [7979] = {.lex_state = 304}, + [7980] = {.lex_state = 304}, + [7981] = {.lex_state = 304}, + [7982] = {.lex_state = 304}, + [7983] = {.lex_state = 304}, + [7984] = {.lex_state = 304}, + [7985] = {.lex_state = 304}, + [7986] = {.lex_state = 309}, + [7987] = {.lex_state = 304}, + [7988] = {.lex_state = 304}, + [7989] = {.lex_state = 304}, + [7990] = {.lex_state = 309}, + [7991] = {.lex_state = 304}, + [7992] = {.lex_state = 309}, + [7993] = {.lex_state = 304}, + [7994] = {.lex_state = 308}, + [7995] = {.lex_state = 304}, + [7996] = {.lex_state = 309}, + [7997] = {.lex_state = 304}, + [7998] = {.lex_state = 304}, + [7999] = {.lex_state = 304}, + [8000] = {.lex_state = 309}, + [8001] = {.lex_state = 309}, + [8002] = {.lex_state = 304}, + [8003] = {.lex_state = 308}, + [8004] = {.lex_state = 309}, + [8005] = {.lex_state = 309}, + [8006] = {.lex_state = 304}, + [8007] = {.lex_state = 352}, + [8008] = {.lex_state = 347}, + [8009] = {.lex_state = 304}, + [8010] = {.lex_state = 304}, + [8011] = {.lex_state = 304}, + [8012] = {.lex_state = 304}, + [8013] = {.lex_state = 304}, + [8014] = {.lex_state = 363}, + [8015] = {.lex_state = 363}, + [8016] = {.lex_state = 363}, + [8017] = {.lex_state = 304}, + [8018] = {.lex_state = 304}, + [8019] = {.lex_state = 308}, + [8020] = {.lex_state = 304}, + [8021] = {.lex_state = 363}, + [8022] = {.lex_state = 363}, + [8023] = {.lex_state = 304}, + [8024] = {.lex_state = 363}, + [8025] = {.lex_state = 363}, + [8026] = {.lex_state = 363}, + [8027] = {.lex_state = 363}, + [8028] = {.lex_state = 363}, + [8029] = {.lex_state = 363}, + [8030] = {.lex_state = 304}, + [8031] = {.lex_state = 308}, + [8032] = {.lex_state = 309}, + [8033] = {.lex_state = 363}, + [8034] = {.lex_state = 308}, + [8035] = {.lex_state = 363}, + [8036] = {.lex_state = 363}, + [8037] = {.lex_state = 308}, + [8038] = {.lex_state = 363}, + [8039] = {.lex_state = 363}, + [8040] = {.lex_state = 363}, + [8041] = {.lex_state = 363}, + [8042] = {.lex_state = 308}, + [8043] = {.lex_state = 308}, + [8044] = {.lex_state = 363}, + [8045] = {.lex_state = 363}, + [8046] = {.lex_state = 304}, + [8047] = {.lex_state = 304}, + [8048] = {.lex_state = 304}, + [8049] = {.lex_state = 308}, + [8050] = {.lex_state = 308}, + [8051] = {.lex_state = 363}, + [8052] = {.lex_state = 363}, + [8053] = {.lex_state = 363}, + [8054] = {.lex_state = 304}, + [8055] = {.lex_state = 308}, + [8056] = {.lex_state = 363}, + [8057] = {.lex_state = 363}, + [8058] = {.lex_state = 309}, + [8059] = {.lex_state = 363}, + [8060] = {.lex_state = 363}, + [8061] = {.lex_state = 363}, + [8062] = {.lex_state = 363}, + [8063] = {.lex_state = 309}, + [8064] = {.lex_state = 352}, + [8065] = {.lex_state = 363}, + [8066] = {.lex_state = 309}, + [8067] = {.lex_state = 363}, + [8068] = {.lex_state = 363}, + [8069] = {.lex_state = 363}, + [8070] = {.lex_state = 363}, + [8071] = {.lex_state = 363}, + [8072] = {.lex_state = 363}, + [8073] = {.lex_state = 363}, + [8074] = {.lex_state = 363}, + [8075] = {.lex_state = 309}, + [8076] = {.lex_state = 363}, + [8077] = {.lex_state = 363}, + [8078] = {.lex_state = 304}, + [8079] = {.lex_state = 363}, + [8080] = {.lex_state = 363}, + [8081] = {.lex_state = 363}, + [8082] = {.lex_state = 304}, + [8083] = {.lex_state = 309}, + [8084] = {.lex_state = 347}, + [8085] = {.lex_state = 309}, + [8086] = {.lex_state = 363}, + [8087] = {.lex_state = 308}, + [8088] = {.lex_state = 304}, + [8089] = {.lex_state = 308}, + [8090] = {.lex_state = 366}, + [8091] = {.lex_state = 304}, + [8092] = {.lex_state = 308}, + [8093] = {.lex_state = 304}, + [8094] = {.lex_state = 304}, + [8095] = {.lex_state = 309}, + [8096] = {.lex_state = 308}, + [8097] = {.lex_state = 308}, + [8098] = {.lex_state = 304}, + [8099] = {.lex_state = 304}, + [8100] = {.lex_state = 308}, + [8101] = {.lex_state = 304}, + [8102] = {.lex_state = 308}, + [8103] = {.lex_state = 308}, + [8104] = {.lex_state = 304}, + [8105] = {.lex_state = 304}, + [8106] = {.lex_state = 304}, + [8107] = {.lex_state = 304}, + [8108] = {.lex_state = 355}, + [8109] = {.lex_state = 309}, + [8110] = {.lex_state = 308}, + [8111] = {.lex_state = 309}, + [8112] = {.lex_state = 304}, + [8113] = {.lex_state = 304}, + [8114] = {.lex_state = 347}, + [8115] = {.lex_state = 309}, + [8116] = {.lex_state = 304}, + [8117] = {.lex_state = 309}, + [8118] = {.lex_state = 304}, + [8119] = {.lex_state = 308}, + [8120] = {.lex_state = 304}, + [8121] = {.lex_state = 308}, + [8122] = {.lex_state = 304}, + [8123] = {.lex_state = 308}, + [8124] = {.lex_state = 308}, + [8125] = {.lex_state = 304}, + [8126] = {.lex_state = 309}, + [8127] = {.lex_state = 308}, + [8128] = {.lex_state = 304}, + [8129] = {.lex_state = 304}, + [8130] = {.lex_state = 308}, + [8131] = {.lex_state = 304}, + [8132] = {.lex_state = 304}, + [8133] = {.lex_state = 304}, + [8134] = {.lex_state = 304}, + [8135] = {.lex_state = 304}, + [8136] = {.lex_state = 304}, + [8137] = {.lex_state = 304}, + [8138] = {.lex_state = 304}, + [8139] = {.lex_state = 304}, + [8140] = {.lex_state = 304}, + [8141] = {.lex_state = 304}, + [8142] = {.lex_state = 304}, + [8143] = {.lex_state = 302}, + [8144] = {.lex_state = 322}, + [8145] = {.lex_state = 322}, + [8146] = {.lex_state = 322}, + [8147] = {.lex_state = 322}, + [8148] = {.lex_state = 322}, + [8149] = {.lex_state = 322}, + [8150] = {.lex_state = 322}, + [8151] = {.lex_state = 322}, + [8152] = {.lex_state = 347}, + [8153] = {.lex_state = 322}, + [8154] = {.lex_state = 322}, + [8155] = {.lex_state = 322}, + [8156] = {.lex_state = 308}, + [8157] = {.lex_state = 347}, + [8158] = {.lex_state = 347}, + [8159] = {.lex_state = 347}, + [8160] = {.lex_state = 302}, + [8161] = {.lex_state = 301}, + [8162] = {.lex_state = 322}, + [8163] = {.lex_state = 347}, + [8164] = {.lex_state = 322}, + [8165] = {.lex_state = 322}, + [8166] = {.lex_state = 308}, + [8167] = {.lex_state = 322}, + [8168] = {.lex_state = 322}, + [8169] = {.lex_state = 322}, + [8170] = {.lex_state = 322}, + [8171] = {.lex_state = 308}, + [8172] = {.lex_state = 347}, + [8173] = {.lex_state = 347}, + [8174] = {.lex_state = 322}, + [8175] = {.lex_state = 304}, + [8176] = {.lex_state = 322}, + [8177] = {.lex_state = 322}, + [8178] = {.lex_state = 347}, + [8179] = {.lex_state = 322}, + [8180] = {.lex_state = 308}, + [8181] = {.lex_state = 347}, + [8182] = {.lex_state = 308}, + [8183] = {.lex_state = 366}, + [8184] = {.lex_state = 308}, + [8185] = {.lex_state = 301}, + [8186] = {.lex_state = 302}, + [8187] = {.lex_state = 306}, + [8188] = {.lex_state = 322}, + [8189] = {.lex_state = 347}, + [8190] = {.lex_state = 347}, + [8191] = {.lex_state = 347}, + [8192] = {.lex_state = 308}, + [8193] = {.lex_state = 322}, + [8194] = {.lex_state = 322}, + [8195] = {.lex_state = 322}, + [8196] = {.lex_state = 306}, + [8197] = {.lex_state = 322}, + [8198] = {.lex_state = 322}, + [8199] = {.lex_state = 322}, + [8200] = {.lex_state = 308}, + [8201] = {.lex_state = 347}, + [8202] = {.lex_state = 347}, + [8203] = {.lex_state = 366}, + [8204] = {.lex_state = 322}, + [8205] = {.lex_state = 308}, + [8206] = {.lex_state = 322}, + [8207] = {.lex_state = 308}, + [8208] = {.lex_state = 308}, + [8209] = {.lex_state = 347}, + [8210] = {.lex_state = 347}, + [8211] = {.lex_state = 366}, + [8212] = {.lex_state = 304}, + [8213] = {.lex_state = 347}, + [8214] = {.lex_state = 342}, + [8215] = {.lex_state = 308}, + [8216] = {.lex_state = 322}, + [8217] = {.lex_state = 308}, + [8218] = {.lex_state = 347}, + [8219] = {.lex_state = 347}, + [8220] = {.lex_state = 308}, + [8221] = {.lex_state = 308}, + [8222] = {.lex_state = 366}, + [8223] = {.lex_state = 308}, + [8224] = {.lex_state = 322}, + [8225] = {.lex_state = 347}, + [8226] = {.lex_state = 308}, + [8227] = {.lex_state = 308}, + [8228] = {.lex_state = 322}, + [8229] = {.lex_state = 322}, + [8230] = {.lex_state = 308}, + [8231] = {.lex_state = 308}, + [8232] = {.lex_state = 363}, + [8233] = {.lex_state = 302}, + [8234] = {.lex_state = 347}, + [8235] = {.lex_state = 322}, + [8236] = {.lex_state = 322}, + [8237] = {.lex_state = 322}, + [8238] = {.lex_state = 322}, + [8239] = {.lex_state = 322}, + [8240] = {.lex_state = 322}, + [8241] = {.lex_state = 322}, + [8242] = {.lex_state = 322}, + [8243] = {.lex_state = 322}, + [8244] = {.lex_state = 322}, + [8245] = {.lex_state = 322}, + [8246] = {.lex_state = 308}, + [8247] = {.lex_state = 322}, + [8248] = {.lex_state = 322}, + [8249] = {.lex_state = 322}, + [8250] = {.lex_state = 322}, + [8251] = {.lex_state = 366}, + [8252] = {.lex_state = 347}, + [8253] = {.lex_state = 322}, + [8254] = {.lex_state = 322}, + [8255] = {.lex_state = 347}, + [8256] = {.lex_state = 322}, + [8257] = {.lex_state = 322}, + [8258] = {.lex_state = 304}, + [8259] = {.lex_state = 322}, + [8260] = {.lex_state = 322}, + [8261] = {.lex_state = 322}, + [8262] = {.lex_state = 322}, + [8263] = {.lex_state = 322}, + [8264] = {.lex_state = 322}, + [8265] = {.lex_state = 322}, + [8266] = {.lex_state = 322}, + [8267] = {.lex_state = 322}, + [8268] = {.lex_state = 347}, + [8269] = {.lex_state = 308}, + [8270] = {.lex_state = 308}, + [8271] = {.lex_state = 322}, + [8272] = {.lex_state = 308}, + [8273] = {.lex_state = 347}, + [8274] = {.lex_state = 304}, + [8275] = {.lex_state = 322}, + [8276] = {.lex_state = 322}, + [8277] = {.lex_state = 322}, + [8278] = {.lex_state = 322}, + [8279] = {.lex_state = 322}, + [8280] = {.lex_state = 322}, + [8281] = {.lex_state = 322}, + [8282] = {.lex_state = 308}, + [8283] = {.lex_state = 322}, + [8284] = {.lex_state = 322}, + [8285] = {.lex_state = 322}, + [8286] = {.lex_state = 322}, + [8287] = {.lex_state = 322}, + [8288] = {.lex_state = 322}, + [8289] = {.lex_state = 308}, + [8290] = {.lex_state = 322}, + [8291] = {.lex_state = 308}, + [8292] = {.lex_state = 322}, + [8293] = {.lex_state = 322}, + [8294] = {.lex_state = 322}, + [8295] = {.lex_state = 322}, + [8296] = {.lex_state = 322}, + [8297] = {.lex_state = 322}, + [8298] = {.lex_state = 322}, + [8299] = {.lex_state = 322}, + [8300] = {.lex_state = 308}, + [8301] = {.lex_state = 304}, + [8302] = {.lex_state = 322}, + [8303] = {.lex_state = 366}, + [8304] = {.lex_state = 308}, + [8305] = {.lex_state = 322}, + [8306] = {.lex_state = 347}, + [8307] = {.lex_state = 308}, + [8308] = {.lex_state = 308}, + [8309] = {.lex_state = 347}, + [8310] = {.lex_state = 347}, + [8311] = {.lex_state = 303}, + [8312] = {.lex_state = 322}, + [8313] = {.lex_state = 322}, + [8314] = {.lex_state = 322}, + [8315] = {.lex_state = 322}, + [8316] = {.lex_state = 308}, + [8317] = {.lex_state = 322}, + [8318] = {.lex_state = 322}, + [8319] = {.lex_state = 322}, + [8320] = {.lex_state = 322}, + [8321] = {.lex_state = 347}, + [8322] = {.lex_state = 322}, + [8323] = {.lex_state = 322}, + [8324] = {.lex_state = 302}, + [8325] = {.lex_state = 302}, + [8326] = {.lex_state = 322}, + [8327] = {.lex_state = 322}, + [8328] = {.lex_state = 322}, + [8329] = {.lex_state = 308}, + [8330] = {.lex_state = 365}, + [8331] = {.lex_state = 306}, + [8332] = {.lex_state = 322}, + [8333] = {.lex_state = 308}, + [8334] = {.lex_state = 301}, + [8335] = {.lex_state = 347}, + [8336] = {.lex_state = 347}, + [8337] = {.lex_state = 322}, + [8338] = {.lex_state = 322}, + [8339] = {.lex_state = 347}, + [8340] = {.lex_state = 347}, [8341] = {.lex_state = 347}, - [8342] = {.lex_state = 286}, - [8343] = {.lex_state = 338}, - [8344] = {.lex_state = 285}, - [8345] = {.lex_state = 265}, - [8346] = {.lex_state = 265}, - [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}, - [8354] = {.lex_state = 338}, - [8355] = {.lex_state = 139}, - [8356] = {.lex_state = 139}, - [8357] = {.lex_state = 139}, - [8358] = {.lex_state = 338}, - [8359] = {.lex_state = 266}, - [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}, - [8372] = {.lex_state = 338}, - [8373] = {.lex_state = 338}, - [8374] = {.lex_state = 337}, - [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}, - [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}, - [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}, - [8411] = {.lex_state = 338}, - [8412] = {.lex_state = 265}, - [8413] = {.lex_state = 337}, - [8414] = {.lex_state = 337}, - [8415] = {.lex_state = 337}, - [8416] = {.lex_state = 265}, - [8417] = {.lex_state = 338}, - [8418] = {.lex_state = 337}, - [8419] = {.lex_state = 340}, - [8420] = {.lex_state = 337}, - [8421] = {.lex_state = 337}, - [8422] = {.lex_state = 337}, - [8423] = {.lex_state = 337}, - [8424] = {.lex_state = 337}, - [8425] = {.lex_state = 337}, - [8426] = {.lex_state = 337}, - [8427] = {.lex_state = 337}, - [8428] = {.lex_state = 337}, - [8429] = {.lex_state = 338}, - [8430] = {.lex_state = 298}, - [8431] = {.lex_state = 337}, - [8432] = {.lex_state = 340}, - [8433] = {.lex_state = 280}, - [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}, - [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}, - [8454] = {.lex_state = 265}, - [8455] = {.lex_state = 337}, - [8456] = {.lex_state = 265}, - [8457] = {.lex_state = 315}, - [8458] = {.lex_state = 266}, - [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}, - [8466] = {.lex_state = 265}, - [8467] = {.lex_state = 338}, - [8468] = {.lex_state = 315}, - [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}, - [8480] = {.lex_state = 337}, - [8481] = {.lex_state = 340}, - [8482] = {.lex_state = 338}, - [8483] = {.lex_state = 265}, - [8484] = {.lex_state = 265}, - [8485] = {.lex_state = 338}, - [8486] = {.lex_state = 265}, - [8487] = {.lex_state = 338}, - [8488] = {.lex_state = 265}, - [8489] = {.lex_state = 265}, - [8490] = {.lex_state = 315}, - [8491] = {.lex_state = 337}, - [8492] = {.lex_state = 265}, - [8493] = {.lex_state = 265}, - [8494] = {.lex_state = 338}, - [8495] = {.lex_state = 329}, - [8496] = {.lex_state = 338}, - [8497] = {.lex_state = 337}, - [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}, - [8510] = {.lex_state = 271}, - [8511] = {.lex_state = 271}, - [8512] = {.lex_state = 271}, - [8513] = {.lex_state = 271}, - [8514] = {.lex_state = 338}, - [8515] = {.lex_state = 271}, - [8516] = {.lex_state = 265}, - [8517] = {.lex_state = 271}, - [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}, - [8527] = {.lex_state = 338}, - [8528] = {.lex_state = 338}, - [8529] = {.lex_state = 342}, - [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}, - [8537] = {.lex_state = 342}, - [8538] = {.lex_state = 265}, - [8539] = {.lex_state = 265}, - [8540] = {.lex_state = 338}, - [8541] = {.lex_state = 338}, - [8542] = {.lex_state = 319}, - [8543] = {.lex_state = 265}, - [8544] = {.lex_state = 342}, - [8545] = {.lex_state = 265}, - [8546] = {.lex_state = 338}, - [8547] = {.lex_state = 338}, - [8548] = {.lex_state = 338}, - [8549] = {.lex_state = 342}, - [8550] = {.lex_state = 342}, - [8551] = {.lex_state = 271}, - [8552] = {.lex_state = 342}, - [8553] = {.lex_state = 342}, - [8554] = {.lex_state = 338}, - [8555] = {.lex_state = 338}, - [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}, - [8566] = {.lex_state = 265}, - [8567] = {.lex_state = 342}, - [8568] = {.lex_state = 338}, - [8569] = {.lex_state = 271}, - [8570] = {.lex_state = 338}, - [8571] = {.lex_state = 338}, - [8572] = {.lex_state = 338}, - [8573] = {.lex_state = 338}, - [8574] = {.lex_state = 338}, - [8575] = {.lex_state = 338}, - [8576] = {.lex_state = 338}, - [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}, - [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}, - [8606] = {.lex_state = 271}, - [8607] = {.lex_state = 271}, - [8608] = {.lex_state = 253}, - [8609] = {.lex_state = 301}, - [8610] = {.lex_state = 253}, - [8611] = {.lex_state = 253}, - [8612] = {.lex_state = 338}, - [8613] = {.lex_state = 266}, - [8614] = {.lex_state = 253}, - [8615] = {.lex_state = 253}, - [8616] = {.lex_state = 253}, - [8617] = {.lex_state = 338}, - [8618] = {.lex_state = 338}, - [8619] = {.lex_state = 265}, - [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}, - [8629] = {.lex_state = 337}, - [8630] = {.lex_state = 337}, - [8631] = {.lex_state = 337}, - [8632] = {.lex_state = 337}, - [8633] = {.lex_state = 253}, - [8634] = {.lex_state = 253}, - [8635] = {.lex_state = 253}, - [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}, - [8644] = {.lex_state = 253}, - [8645] = {.lex_state = 253}, - [8646] = {.lex_state = 265}, - [8647] = {.lex_state = 340}, - [8648] = {.lex_state = 253}, - [8649] = {.lex_state = 265}, - [8650] = {.lex_state = 253}, - [8651] = {.lex_state = 253}, - [8652] = {.lex_state = 253}, - [8653] = {.lex_state = 253}, - [8654] = {.lex_state = 253}, - [8655] = {.lex_state = 253}, - [8656] = {.lex_state = 245}, - [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}, - [8674] = {.lex_state = 338}, - [8675] = {.lex_state = 265}, - [8676] = {.lex_state = 265}, - [8677] = {.lex_state = 338}, - [8678] = {.lex_state = 338}, - [8679] = {.lex_state = 338}, - [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}, - [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}, - [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}, - [8704] = {.lex_state = 338}, - [8705] = {.lex_state = 265}, - [8706] = {.lex_state = 265}, - [8707] = {.lex_state = 265}, - [8708] = {.lex_state = 338}, - [8709] = {.lex_state = 338}, - [8710] = {.lex_state = 265}, - [8711] = {.lex_state = 265}, - [8712] = {.lex_state = 301}, - [8713] = {.lex_state = 301}, - [8714] = {.lex_state = 301}, - [8715] = {.lex_state = 301}, - [8716] = {.lex_state = 265}, - [8717] = {.lex_state = 301}, - [8718] = {.lex_state = 301}, - [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}, - [8728] = {.lex_state = 265}, - [8729] = {.lex_state = 338}, - [8730] = {.lex_state = 301}, - [8731] = {.lex_state = 265}, - [8732] = {.lex_state = 338}, - [8733] = {.lex_state = 338}, - [8734] = {.lex_state = 338}, - [8735] = {.lex_state = 301}, - [8736] = {.lex_state = 301}, - [8737] = {.lex_state = 301}, - [8738] = {.lex_state = 265}, - [8739] = {.lex_state = 266}, - [8740] = {.lex_state = 265}, - [8741] = {.lex_state = 265}, - [8742] = {.lex_state = 266}, - [8743] = {.lex_state = 301}, - [8744] = {.lex_state = 301}, - [8745] = {.lex_state = 265}, - [8746] = {.lex_state = 265}, - [8747] = {.lex_state = 265}, - [8748] = {.lex_state = 265}, - [8749] = {.lex_state = 301}, - [8750] = {.lex_state = 338}, - [8751] = {.lex_state = 265}, - [8752] = {.lex_state = 338}, - [8753] = {.lex_state = 266}, - [8754] = {.lex_state = 265}, - [8755] = {.lex_state = 266}, - [8756] = {.lex_state = 265}, - [8757] = {.lex_state = 265}, - [8758] = {.lex_state = 338}, - [8759] = {.lex_state = 338}, - [8760] = {.lex_state = 329}, - [8761] = {.lex_state = 338}, - [8762] = {.lex_state = 265}, - [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}, - [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}, - [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}, - [8796] = {.lex_state = 265}, - [8797] = {.lex_state = 280}, - [8798] = {.lex_state = 334}, - [8799] = {.lex_state = 265}, - [8800] = {.lex_state = 337}, - [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}, - [8812] = {.lex_state = 265}, - [8813] = {.lex_state = 265}, - [8814] = {.lex_state = 337}, - [8815] = {.lex_state = 265}, - [8816] = {.lex_state = 340}, - [8817] = {.lex_state = 265}, - [8818] = {.lex_state = 265}, - [8819] = {.lex_state = 265}, - [8820] = {.lex_state = 337}, - [8821] = {.lex_state = 334}, - [8822] = {.lex_state = 338}, - [8823] = {.lex_state = 340}, - [8824] = {.lex_state = 265}, - [8825] = {.lex_state = 280}, - [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}, - [8835] = {.lex_state = 271}, - [8836] = {.lex_state = 338}, - [8837] = {.lex_state = 338}, - [8838] = {.lex_state = 271}, - [8839] = {.lex_state = 338}, - [8840] = {.lex_state = 338}, - [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}, - [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}, - [8868] = {.lex_state = 266}, - [8869] = {.lex_state = 315}, - [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}, - [8888] = {.lex_state = 266}, - [8889] = {.lex_state = 266}, - [8890] = {.lex_state = 266}, - [8891] = {.lex_state = 337}, - [8892] = {.lex_state = 266}, - [8893] = {.lex_state = 266}, - [8894] = {.lex_state = 266}, - [8895] = {.lex_state = 337}, - [8896] = {.lex_state = 266}, - [8897] = {.lex_state = 266}, - [8898] = {.lex_state = 330}, - [8899] = {.lex_state = 301}, - [8900] = {.lex_state = 266}, - [8901] = {.lex_state = 266}, - [8902] = {.lex_state = 315}, - [8903] = {.lex_state = 266}, - [8904] = {.lex_state = 315}, - [8905] = {.lex_state = 301}, - [8906] = {.lex_state = 301}, - [8907] = {.lex_state = 271}, - [8908] = {.lex_state = 335}, - [8909] = {.lex_state = 337}, - [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}, - [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}, - [8931] = {.lex_state = 266}, - [8932] = {.lex_state = 335}, - [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}, - [8946] = {.lex_state = 301}, - [8947] = {.lex_state = 298}, - [8948] = {.lex_state = 298}, - [8949] = {.lex_state = 271}, - [8950] = {.lex_state = 271}, - [8951] = {.lex_state = 271}, - [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}, - [8962] = {.lex_state = 301}, - [8963] = {.lex_state = 301}, - [8964] = {.lex_state = 301}, - [8965] = {.lex_state = 298}, - [8966] = {.lex_state = 266}, - [8967] = {.lex_state = 298}, - [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}, - [8976] = {.lex_state = 298}, - [8977] = {.lex_state = 298}, - [8978] = {.lex_state = 298}, - [8979] = {.lex_state = 298}, - [8980] = {.lex_state = 271}, - [8981] = {.lex_state = 245}, - [8982] = {.lex_state = 271}, - [8983] = {.lex_state = 315}, - [8984] = {.lex_state = 271}, - [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}, - [8994] = {.lex_state = 271}, - [8995] = {.lex_state = 330}, - [8996] = {.lex_state = 298}, - [8997] = {.lex_state = 330}, - [8998] = {.lex_state = 271}, - [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}, - [9010] = {.lex_state = 266}, - [9011] = {.lex_state = 265}, - [9012] = {.lex_state = 266}, - [9013] = {.lex_state = 266}, - [9014] = {.lex_state = 266}, - [9015] = {.lex_state = 243}, - [9016] = {.lex_state = 265}, - [9017] = {.lex_state = 265}, - [9018] = {.lex_state = 266}, - [9019] = {.lex_state = 337}, - [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}, - [9029] = {.lex_state = 266}, - [9030] = {.lex_state = 334}, - [9031] = {.lex_state = 266}, - [9032] = {.lex_state = 438}, - [9033] = {.lex_state = 266}, - [9034] = {.lex_state = 266}, - [9035] = {.lex_state = 266}, - [9036] = {.lex_state = 438}, - [9037] = {.lex_state = 301}, - [9038] = {.lex_state = 266}, - [9039] = {.lex_state = 265}, - [9040] = {.lex_state = 438}, - [9041] = {.lex_state = 337}, - [9042] = {.lex_state = 337}, - [9043] = {.lex_state = 266}, - [9044] = {.lex_state = 266}, - [9045] = {.lex_state = 266}, - [9046] = {.lex_state = 265}, - [9047] = {.lex_state = 266}, - [9048] = {.lex_state = 266}, - [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}, - [9058] = {.lex_state = 265}, - [9059] = {.lex_state = 243}, - [9060] = {.lex_state = 265}, - [9061] = {.lex_state = 337}, - [9062] = {.lex_state = 266}, - [9063] = {.lex_state = 301}, - [9064] = {.lex_state = 266}, - [9065] = {.lex_state = 266}, - [9066] = {.lex_state = 266}, - [9067] = {.lex_state = 266}, - [9068] = {.lex_state = 271}, - [9069] = {.lex_state = 438}, - [9070] = {.lex_state = 266}, - [9071] = {.lex_state = 266}, - [9072] = {.lex_state = 266}, - [9073] = {.lex_state = 337}, - [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}, - [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}, - [9092] = {.lex_state = 266}, - [9093] = {.lex_state = 334}, - [9094] = {.lex_state = 265}, - [9095] = {.lex_state = 255}, - [9096] = {.lex_state = 266}, - [9097] = {.lex_state = 334}, - [9098] = {.lex_state = 255}, - [9099] = {.lex_state = 334}, - [9100] = {.lex_state = 334}, - [9101] = {.lex_state = 255}, - [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}, - [9112] = {.lex_state = 266}, - [9113] = {.lex_state = 265}, - [9114] = {.lex_state = 266}, - [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}, - [9122] = {.lex_state = 266}, - [9123] = {.lex_state = 298}, - [9124] = {.lex_state = 266}, - [9125] = {.lex_state = 265}, - [9126] = {.lex_state = 266}, - [9127] = {.lex_state = 334}, - [9128] = {.lex_state = 265}, - [9129] = {.lex_state = 266}, - [9130] = {.lex_state = 266}, - [9131] = {.lex_state = 266}, - [9132] = {.lex_state = 266}, - [9133] = {.lex_state = 266}, - [9134] = {.lex_state = 266}, - [9135] = {.lex_state = 266}, - [9136] = {.lex_state = 266}, - [9137] = {.lex_state = 266}, - [9138] = {.lex_state = 266}, - [9139] = {.lex_state = 266}, - [9140] = {.lex_state = 266}, - [9141] = {.lex_state = 266}, - [9142] = {.lex_state = 266}, - [9143] = {.lex_state = 266}, - [9144] = {.lex_state = 334}, - [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}, - [9153] = {.lex_state = 266}, - [9154] = {.lex_state = 255}, - [9155] = {.lex_state = 438}, - [9156] = {.lex_state = 438}, - [9157] = {.lex_state = 266}, - [9158] = {.lex_state = 265}, - [9159] = {.lex_state = 265}, - [9160] = {.lex_state = 334}, - [9161] = {.lex_state = 298}, - [9162] = {.lex_state = 265}, - [9163] = {.lex_state = 265}, - [9164] = {.lex_state = 266}, - [9165] = {.lex_state = 334}, - [9166] = {.lex_state = 265}, - [9167] = {.lex_state = 334}, - [9168] = {.lex_state = 265}, - [9169] = {.lex_state = 265}, - [9170] = {.lex_state = 265}, - [9171] = {.lex_state = 265}, - [9172] = {.lex_state = 265}, - [9173] = {.lex_state = 265}, - [9174] = {.lex_state = 266}, - [9175] = {.lex_state = 265}, - [9176] = {.lex_state = 266}, - [9177] = {.lex_state = 266}, - [9178] = {.lex_state = 265}, - [9179] = {.lex_state = 265}, - [9180] = {.lex_state = 265}, - [9181] = {.lex_state = 266}, - [9182] = {.lex_state = 266}, - [9183] = {.lex_state = 285}, - [9184] = {.lex_state = 271}, - [9185] = {.lex_state = 266}, - [9186] = {.lex_state = 334}, - [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}, - [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}, - [9209] = {.lex_state = 266}, - [9210] = {.lex_state = 334}, - [9211] = {.lex_state = 334}, - [9212] = {.lex_state = 265}, - [9213] = {.lex_state = 266}, - [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}, - [9221] = {.lex_state = 266}, - [9222] = {.lex_state = 265}, - [9223] = {.lex_state = 265}, - [9224] = {.lex_state = 271}, - [9225] = {.lex_state = 266}, - [9226] = {.lex_state = 271}, - [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}, - [9242] = {.lex_state = 266}, - [9243] = {.lex_state = 334}, - [9244] = {.lex_state = 334}, - [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}, - [9252] = {.lex_state = 265}, - [9253] = {.lex_state = 265}, - [9254] = {.lex_state = 265}, - [9255] = {.lex_state = 265}, - [9256] = {.lex_state = 0}, - [9257] = {.lex_state = 265}, - [9258] = {.lex_state = 265}, - [9259] = {.lex_state = 265}, - [9260] = {.lex_state = 0}, - [9261] = {.lex_state = 265}, - [9262] = {.lex_state = 301}, - [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}, - [9275] = {.lex_state = 266}, - [9276] = {.lex_state = 266}, - [9277] = {.lex_state = 243}, - [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}, - [9286] = {.lex_state = 265}, - [9287] = {.lex_state = 265}, - [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}, - [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}, - [9307] = {.lex_state = 266}, - [9308] = {.lex_state = 334}, - [9309] = {.lex_state = 265}, - [9310] = {.lex_state = 266}, - [9311] = {.lex_state = 265}, - [9312] = {.lex_state = 438}, - [9313] = {.lex_state = 266}, - [9314] = {.lex_state = 266}, - [9315] = {.lex_state = 266}, - [9316] = {.lex_state = 266}, - [9317] = {.lex_state = 266}, - [9318] = {.lex_state = 266}, - [9319] = {.lex_state = 298}, - [9320] = {.lex_state = 298}, - [9321] = {.lex_state = 243}, - [9322] = {.lex_state = 243}, - [9323] = {.lex_state = 298}, - [9324] = {.lex_state = 298}, - [9325] = {.lex_state = 266}, - [9326] = {.lex_state = 298}, - [9327] = {.lex_state = 298}, - [9328] = {.lex_state = 266}, - [9329] = {.lex_state = 266}, - [9330] = {.lex_state = 235}, - [9331] = {.lex_state = 243}, - [9332] = {.lex_state = 438}, - [9333] = {.lex_state = 266}, - [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}, - [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}, - [9357] = {.lex_state = 243}, - [9358] = {.lex_state = 266}, - [9359] = {.lex_state = 265}, - [9360] = {.lex_state = 280}, - [9361] = {.lex_state = 266}, - [9362] = {.lex_state = 243}, - [9363] = {.lex_state = 334}, - [9364] = {.lex_state = 265}, - [9365] = {.lex_state = 265}, - [9366] = {.lex_state = 265}, - [9367] = {.lex_state = 266}, - [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}, - [9380] = {.lex_state = 266}, - [9381] = {.lex_state = 265}, - [9382] = {.lex_state = 265}, - [9383] = {.lex_state = 438}, - [9384] = {.lex_state = 243}, - [9385] = {.lex_state = 265}, - [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}, - [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}, - [9402] = {.lex_state = 266}, - [9403] = {.lex_state = 243}, - [9404] = {.lex_state = 265}, - [9405] = {.lex_state = 266}, - [9406] = {.lex_state = 265}, - [9407] = {.lex_state = 266}, - [9408] = {.lex_state = 266}, - [9409] = {.lex_state = 243}, - [9410] = {.lex_state = 243}, - [9411] = {.lex_state = 265}, - [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}, - [9420] = {.lex_state = 146}, - [9421] = {.lex_state = 438}, - [9422] = {.lex_state = 266}, - [9423] = {.lex_state = 266}, - [9424] = {.lex_state = 0}, - [9425] = {.lex_state = 438}, - [9426] = {.lex_state = 266}, - [9427] = {.lex_state = 0}, - [9428] = {.lex_state = 438}, - [9429] = {.lex_state = 148}, - [9430] = {.lex_state = 266}, - [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}, - [9439] = {.lex_state = 146}, - [9440] = {.lex_state = 146}, - [9441] = {.lex_state = 266}, - [9442] = {.lex_state = 334}, - [9443] = {.lex_state = 0}, - [9444] = {.lex_state = 266}, - [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}, - [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}, - [9464] = {.lex_state = 148}, - [9465] = {.lex_state = 0}, - [9466] = {.lex_state = 438}, - [9467] = {.lex_state = 146}, - [9468] = {.lex_state = 0}, - [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}, - [9479] = {.lex_state = 266}, - [9480] = {.lex_state = 266}, - [9481] = {.lex_state = 0}, - [9482] = {.lex_state = 438}, - [9483] = {.lex_state = 266}, - [9484] = {.lex_state = 266}, - [9485] = {.lex_state = 146}, - [9486] = {.lex_state = 148}, - [9487] = {.lex_state = 149}, - [9488] = {.lex_state = 0}, - [9489] = {.lex_state = 146}, - [9490] = {.lex_state = 438}, - [9491] = {.lex_state = 266}, - [9492] = {.lex_state = 146}, - [9493] = {.lex_state = 148}, - [9494] = {.lex_state = 148}, - [9495] = {.lex_state = 146}, - [9496] = {.lex_state = 266}, - [9497] = {.lex_state = 146}, - [9498] = {.lex_state = 146}, - [9499] = {.lex_state = 0}, - [9500] = {.lex_state = 146}, - [9501] = {.lex_state = 438}, - [9502] = {.lex_state = 438}, - [9503] = {.lex_state = 266}, - [9504] = {.lex_state = 266}, - [9505] = {.lex_state = 438}, - [9506] = {.lex_state = 146}, - [9507] = {.lex_state = 149}, - [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}, - [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}, - [9538] = {.lex_state = 438}, - [9539] = {.lex_state = 146}, - [9540] = {.lex_state = 146}, - [9541] = {.lex_state = 146}, - [9542] = {.lex_state = 266}, - [9543] = {.lex_state = 438}, - [9544] = {.lex_state = 438}, - [9545] = {.lex_state = 148}, - [9546] = {.lex_state = 438}, - [9547] = {.lex_state = 146}, - [9548] = {.lex_state = 438}, - [9549] = {.lex_state = 438}, - [9550] = {.lex_state = 266}, - [9551] = {.lex_state = 438}, - [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}, - [9560] = {.lex_state = 438}, - [9561] = {.lex_state = 438}, - [9562] = {.lex_state = 438}, - [9563] = {.lex_state = 438}, - [9564] = {.lex_state = 148}, - [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}, - [9573] = {.lex_state = 438}, - [9574] = {.lex_state = 438}, - [9575] = {.lex_state = 266}, - [9576] = {.lex_state = 0}, - [9577] = {.lex_state = 0}, - [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}, - [9591] = {.lex_state = 266}, - [9592] = {.lex_state = 438}, - [9593] = {.lex_state = 0}, - [9594] = {.lex_state = 0}, - [9595] = {.lex_state = 438}, - [9596] = {.lex_state = 0}, - [9597] = {.lex_state = 438}, - [9598] = {.lex_state = 146}, - [9599] = {.lex_state = 0}, - [9600] = {.lex_state = 266}, - [9601] = {.lex_state = 146}, - [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}, - [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}, - [9621] = {.lex_state = 438}, - [9622] = {.lex_state = 149}, - [9623] = {.lex_state = 148}, - [9624] = {.lex_state = 146}, - [9625] = {.lex_state = 438}, - [9626] = {.lex_state = 146}, - [9627] = {.lex_state = 0}, - [9628] = {.lex_state = 266}, - [9629] = {.lex_state = 146}, - [9630] = {.lex_state = 266}, - [9631] = {.lex_state = 0}, - [9632] = {.lex_state = 438}, - [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}, - [9641] = {.lex_state = 438}, - [9642] = {.lex_state = 0}, - [9643] = {.lex_state = 266}, - [9644] = {.lex_state = 266}, - [9645] = {.lex_state = 266}, - [9646] = {.lex_state = 438}, - [9647] = {.lex_state = 0}, - [9648] = {.lex_state = 438}, - [9649] = {.lex_state = 0}, - [9650] = {.lex_state = 146}, - [9651] = {.lex_state = 438}, - [9652] = {.lex_state = 0}, - [9653] = {.lex_state = 0}, - [9654] = {.lex_state = 148}, - [9655] = {.lex_state = 0}, - [9656] = {.lex_state = 146}, - [9657] = {.lex_state = 235}, - [9658] = {.lex_state = 146}, - [9659] = {.lex_state = 438}, - [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}, - [9669] = {.lex_state = 266}, - [9670] = {.lex_state = 341}, - [9671] = {.lex_state = 266}, - [9672] = {.lex_state = 0}, - [9673] = {.lex_state = 266}, - [9674] = {.lex_state = 0}, - [9675] = {.lex_state = 266}, - [9676] = {.lex_state = 235}, - [9677] = {.lex_state = 235}, - [9678] = {.lex_state = 235}, - [9679] = {.lex_state = 235}, - [9680] = {.lex_state = 0}, - [9681] = {.lex_state = 0}, - [9682] = {.lex_state = 0}, - [9683] = {.lex_state = 235}, - [9684] = {.lex_state = 235}, - [9685] = {.lex_state = 0}, - [9686] = {.lex_state = 0}, - [9687] = {.lex_state = 0}, - [9688] = {.lex_state = 0}, - [9689] = {.lex_state = 0}, - [9690] = {.lex_state = 0}, - [9691] = {.lex_state = 0}, - [9692] = {.lex_state = 0}, - [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}, - [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}, - [9710] = {.lex_state = 235}, - [9711] = {.lex_state = 266}, - [9712] = {.lex_state = 235}, - [9713] = {.lex_state = 235}, - [9714] = {.lex_state = 0}, - [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}, - [9722] = {.lex_state = 0}, - [9723] = {.lex_state = 0}, - [9724] = {.lex_state = 0}, - [9725] = {.lex_state = 0}, - [9726] = {.lex_state = 0}, - [9727] = {.lex_state = 0}, - [9728] = {.lex_state = 0}, - [9729] = {.lex_state = 0}, - [9730] = {.lex_state = 0}, - [9731] = {.lex_state = 0}, - [9732] = {.lex_state = 0}, - [9733] = {.lex_state = 0}, - [9734] = {.lex_state = 0}, - [9735] = {.lex_state = 0}, - [9736] = {.lex_state = 0}, - [9737] = {.lex_state = 0}, - [9738] = {.lex_state = 0}, - [9739] = {.lex_state = 266}, - [9740] = {.lex_state = 0}, - [9741] = {.lex_state = 0}, - [9742] = {.lex_state = 235}, - [9743] = {.lex_state = 235}, - [9744] = {.lex_state = 0}, - [9745] = {.lex_state = 0}, - [9746] = {.lex_state = 0}, - [9747] = {.lex_state = 0}, - [9748] = {.lex_state = 0}, - [9749] = {.lex_state = 0}, - [9750] = {.lex_state = 0}, - [9751] = {.lex_state = 0}, - [9752] = {.lex_state = 0}, - [9753] = {.lex_state = 0}, - [9754] = {.lex_state = 438}, - [9755] = {.lex_state = 266}, - [9756] = {.lex_state = 0}, - [9757] = {.lex_state = 0}, - [9758] = {.lex_state = 0}, - [9759] = {.lex_state = 0}, - [9760] = {.lex_state = 266}, - [9761] = {.lex_state = 0}, - [9762] = {.lex_state = 0}, - [9763] = {.lex_state = 0}, - [9764] = {.lex_state = 0}, - [9765] = {.lex_state = 0}, - [9766] = {.lex_state = 0}, - [9767] = {.lex_state = 266}, - [9768] = {.lex_state = 0}, - [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}, - [9776] = {.lex_state = 266}, - [9777] = {.lex_state = 266}, - [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}, - [9785] = {.lex_state = 0}, - [9786] = {.lex_state = 0}, - [9787] = {.lex_state = 0}, - [9788] = {.lex_state = 0}, - [9789] = {.lex_state = 0}, - [9790] = {.lex_state = 0}, - [9791] = {.lex_state = 0}, - [9792] = {.lex_state = 0}, - [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}, - [9800] = {.lex_state = 0}, - [9801] = {.lex_state = 0}, - [9802] = {.lex_state = 0}, - [9803] = {.lex_state = 0}, - [9804] = {.lex_state = 0}, - [9805] = {.lex_state = 0}, - [9806] = {.lex_state = 0}, - [9807] = {.lex_state = 266}, - [9808] = {.lex_state = 0}, - [9809] = {.lex_state = 0}, - [9810] = {.lex_state = 0}, - [9811] = {.lex_state = 0}, - [9812] = {.lex_state = 0}, - [9813] = {.lex_state = 266}, - [9814] = {.lex_state = 0}, - [9815] = {.lex_state = 0}, - [9816] = {.lex_state = 0}, - [9817] = {.lex_state = 0}, - [9818] = {.lex_state = 266}, - [9819] = {.lex_state = 0}, - [9820] = {.lex_state = 0}, - [9821] = {.lex_state = 266}, - [9822] = {.lex_state = 266}, - [9823] = {.lex_state = 0}, - [9824] = {.lex_state = 0}, - [9825] = {.lex_state = 266}, - [9826] = {.lex_state = 266}, - [9827] = {.lex_state = 0}, - [9828] = {.lex_state = 0}, - [9829] = {.lex_state = 266}, - [9830] = {.lex_state = 266}, - [9831] = {.lex_state = 266}, - [9832] = {.lex_state = 0}, - [9833] = {.lex_state = 148}, - [9834] = {.lex_state = 0}, - [9835] = {.lex_state = 266}, - [9836] = {.lex_state = 266}, - [9837] = {.lex_state = 0}, - [9838] = {.lex_state = 0}, - [9839] = {.lex_state = 266}, - [9840] = {.lex_state = 341}, - [9841] = {.lex_state = 266}, - [9842] = {.lex_state = 266}, - [9843] = {.lex_state = 0}, - [9844] = {.lex_state = 0}, - [9845] = {.lex_state = 0}, - [9846] = {.lex_state = 0}, - [9847] = {.lex_state = 266}, - [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}, - [9855] = {.lex_state = 0}, - [9856] = {.lex_state = 0}, - [9857] = {.lex_state = 0}, - [9858] = {.lex_state = 0}, - [9859] = {.lex_state = 266}, - [9860] = {.lex_state = 266}, - [9861] = {.lex_state = 0}, - [9862] = {.lex_state = 0}, - [9863] = {.lex_state = 0}, - [9864] = {.lex_state = 266}, - [9865] = {.lex_state = 266}, - [9866] = {.lex_state = 0}, - [9867] = {.lex_state = 0}, - [9868] = {.lex_state = 235}, - [9869] = {.lex_state = 235}, - [9870] = {.lex_state = 0}, - [9871] = {.lex_state = 0}, - [9872] = {.lex_state = 0}, - [9873] = {.lex_state = 266}, - [9874] = {.lex_state = 0}, - [9875] = {.lex_state = 0}, - [9876] = {.lex_state = 266}, - [9877] = {.lex_state = 266}, - [9878] = {.lex_state = 0}, - [9879] = {.lex_state = 0}, - [9880] = {.lex_state = 235}, - [9881] = {.lex_state = 235}, - [9882] = {.lex_state = 0}, - [9883] = {.lex_state = 266}, - [9884] = {.lex_state = 0}, - [9885] = {.lex_state = 0}, - [9886] = {.lex_state = 266}, - [9887] = {.lex_state = 266}, - [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}, - [9897] = {.lex_state = 0}, - [9898] = {.lex_state = 0}, - [9899] = {.lex_state = 0}, - [9900] = {.lex_state = 0}, - [9901] = {.lex_state = 0}, - [9902] = {.lex_state = 0}, - [9903] = {.lex_state = 0}, - [9904] = {.lex_state = 266}, - [9905] = {.lex_state = 266}, - [9906] = {.lex_state = 266}, - [9907] = {.lex_state = 0}, - [9908] = {.lex_state = 0}, - [9909] = {.lex_state = 0}, - [9910] = {.lex_state = 0}, - [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}, - [9924] = {.lex_state = 266}, - [9925] = {.lex_state = 0}, - [9926] = {.lex_state = 148}, - [9927] = {.lex_state = 0}, - [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}, - [9935] = {.lex_state = 0}, - [9936] = {.lex_state = 0}, - [9937] = {.lex_state = 0}, - [9938] = {.lex_state = 151}, - [9939] = {.lex_state = 0}, - [9940] = {.lex_state = 266}, - [9941] = {.lex_state = 0}, - [9942] = {.lex_state = 0}, - [9943] = {.lex_state = 226}, - [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}, - [9954] = {.lex_state = 0}, + [8342] = {.lex_state = 322}, + [8343] = {.lex_state = 322}, + [8344] = {.lex_state = 347}, + [8345] = {.lex_state = 322}, + [8346] = {.lex_state = 308}, + [8347] = {.lex_state = 347}, + [8348] = {.lex_state = 322}, + [8349] = {.lex_state = 302}, + [8350] = {.lex_state = 322}, + [8351] = {.lex_state = 322}, + [8352] = {.lex_state = 322}, + [8353] = {.lex_state = 322}, + [8354] = {.lex_state = 347}, + [8355] = {.lex_state = 308}, + [8356] = {.lex_state = 322}, + [8357] = {.lex_state = 322}, + [8358] = {.lex_state = 322}, + [8359] = {.lex_state = 347}, + [8360] = {.lex_state = 322}, + [8361] = {.lex_state = 347}, + [8362] = {.lex_state = 322}, + [8363] = {.lex_state = 309}, + [8364] = {.lex_state = 322}, + [8365] = {.lex_state = 309}, + [8366] = {.lex_state = 309}, + [8367] = {.lex_state = 322}, + [8368] = {.lex_state = 342}, + [8369] = {.lex_state = 309}, + [8370] = {.lex_state = 309}, + [8371] = {.lex_state = 322}, + [8372] = {.lex_state = 309}, + [8373] = {.lex_state = 362}, + [8374] = {.lex_state = 304}, + [8375] = {.lex_state = 309}, + [8376] = {.lex_state = 322}, + [8377] = {.lex_state = 309}, + [8378] = {.lex_state = 304}, + [8379] = {.lex_state = 366}, + [8380] = {.lex_state = 309}, + [8381] = {.lex_state = 322}, + [8382] = {.lex_state = 309}, + [8383] = {.lex_state = 309}, + [8384] = {.lex_state = 309}, + [8385] = {.lex_state = 309}, + [8386] = {.lex_state = 342}, + [8387] = {.lex_state = 309}, + [8388] = {.lex_state = 322}, + [8389] = {.lex_state = 309}, + [8390] = {.lex_state = 309}, + [8391] = {.lex_state = 309}, + [8392] = {.lex_state = 322}, + [8393] = {.lex_state = 309}, + [8394] = {.lex_state = 342}, + [8395] = {.lex_state = 342}, + [8396] = {.lex_state = 309}, + [8397] = {.lex_state = 309}, + [8398] = {.lex_state = 309}, + [8399] = {.lex_state = 309}, + [8400] = {.lex_state = 309}, + [8401] = {.lex_state = 302}, + [8402] = {.lex_state = 309}, + [8403] = {.lex_state = 309}, + [8404] = {.lex_state = 309}, + [8405] = {.lex_state = 322}, + [8406] = {.lex_state = 322}, + [8407] = {.lex_state = 322}, + [8408] = {.lex_state = 309}, + [8409] = {.lex_state = 322}, + [8410] = {.lex_state = 309}, + [8411] = {.lex_state = 302}, + [8412] = {.lex_state = 309}, + [8413] = {.lex_state = 366}, + [8414] = {.lex_state = 309}, + [8415] = {.lex_state = 309}, + [8416] = {.lex_state = 309}, + [8417] = {.lex_state = 342}, + [8418] = {.lex_state = 322}, + [8419] = {.lex_state = 322}, + [8420] = {.lex_state = 309}, + [8421] = {.lex_state = 322}, + [8422] = {.lex_state = 309}, + [8423] = {.lex_state = 309}, + [8424] = {.lex_state = 309}, + [8425] = {.lex_state = 366}, + [8426] = {.lex_state = 309}, + [8427] = {.lex_state = 362}, + [8428] = {.lex_state = 309}, + [8429] = {.lex_state = 322}, + [8430] = {.lex_state = 309}, + [8431] = {.lex_state = 322}, + [8432] = {.lex_state = 309}, + [8433] = {.lex_state = 309}, + [8434] = {.lex_state = 322}, + [8435] = {.lex_state = 309}, + [8436] = {.lex_state = 322}, + [8437] = {.lex_state = 309}, + [8438] = {.lex_state = 309}, + [8439] = {.lex_state = 309}, + [8440] = {.lex_state = 309}, + [8441] = {.lex_state = 309}, + [8442] = {.lex_state = 309}, + [8443] = {.lex_state = 299}, + [8444] = {.lex_state = 322}, + [8445] = {.lex_state = 309}, + [8446] = {.lex_state = 309}, + [8447] = {.lex_state = 309}, + [8448] = {.lex_state = 309}, + [8449] = {.lex_state = 304}, + [8450] = {.lex_state = 309}, + [8451] = {.lex_state = 309}, + [8452] = {.lex_state = 342}, + [8453] = {.lex_state = 322}, + [8454] = {.lex_state = 322}, + [8455] = {.lex_state = 309}, + [8456] = {.lex_state = 309}, + [8457] = {.lex_state = 309}, + [8458] = {.lex_state = 342}, + [8459] = {.lex_state = 309}, + [8460] = {.lex_state = 322}, + [8461] = {.lex_state = 322}, + [8462] = {.lex_state = 309}, + [8463] = {.lex_state = 309}, + [8464] = {.lex_state = 309}, + [8465] = {.lex_state = 322}, + [8466] = {.lex_state = 366}, + [8467] = {.lex_state = 309}, + [8468] = {.lex_state = 322}, + [8469] = {.lex_state = 309}, + [8470] = {.lex_state = 309}, + [8471] = {.lex_state = 309}, + [8472] = {.lex_state = 299}, + [8473] = {.lex_state = 299}, + [8474] = {.lex_state = 299}, + [8475] = {.lex_state = 299}, + [8476] = {.lex_state = 299}, + [8477] = {.lex_state = 299}, + [8478] = {.lex_state = 299}, + [8479] = {.lex_state = 299}, + [8480] = {.lex_state = 299}, + [8481] = {.lex_state = 299}, + [8482] = {.lex_state = 299}, + [8483] = {.lex_state = 299}, + [8484] = {.lex_state = 299}, + [8485] = {.lex_state = 363}, + [8486] = {.lex_state = 299}, + [8487] = {.lex_state = 350}, + [8488] = {.lex_state = 346}, + [8489] = {.lex_state = 299}, + [8490] = {.lex_state = 299}, + [8491] = {.lex_state = 299}, + [8492] = {.lex_state = 299}, + [8493] = {.lex_state = 299}, + [8494] = {.lex_state = 299}, + [8495] = {.lex_state = 299}, + [8496] = {.lex_state = 299}, + [8497] = {.lex_state = 350}, + [8498] = {.lex_state = 299}, + [8499] = {.lex_state = 299}, + [8500] = {.lex_state = 299}, + [8501] = {.lex_state = 299}, + [8502] = {.lex_state = 366}, + [8503] = {.lex_state = 299}, + [8504] = {.lex_state = 299}, + [8505] = {.lex_state = 299}, + [8506] = {.lex_state = 299}, + [8507] = {.lex_state = 366}, + [8508] = {.lex_state = 299}, + [8509] = {.lex_state = 299}, + [8510] = {.lex_state = 366}, + [8511] = {.lex_state = 299}, + [8512] = {.lex_state = 299}, + [8513] = {.lex_state = 299}, + [8514] = {.lex_state = 299}, + [8515] = {.lex_state = 299}, + [8516] = {.lex_state = 299}, + [8517] = {.lex_state = 366}, + [8518] = {.lex_state = 299}, + [8519] = {.lex_state = 299}, + [8520] = {.lex_state = 299}, + [8521] = {.lex_state = 299}, + [8522] = {.lex_state = 366}, + [8523] = {.lex_state = 291}, + [8524] = {.lex_state = 291}, + [8525] = {.lex_state = 362}, + [8526] = {.lex_state = 302}, + [8527] = {.lex_state = 302}, + [8528] = {.lex_state = 366}, + [8529] = {.lex_state = 366}, + [8530] = {.lex_state = 291}, + [8531] = {.lex_state = 346}, + [8532] = {.lex_state = 291}, + [8533] = {.lex_state = 362}, + [8534] = {.lex_state = 291}, + [8535] = {.lex_state = 291}, + [8536] = {.lex_state = 363}, + [8537] = {.lex_state = 350}, + [8538] = {.lex_state = 291}, + [8539] = {.lex_state = 309}, + [8540] = {.lex_state = 350}, + [8541] = {.lex_state = 303}, + [8542] = {.lex_state = 309}, + [8543] = {.lex_state = 366}, + [8544] = {.lex_state = 291}, + [8545] = {.lex_state = 303}, + [8546] = {.lex_state = 302}, + [8547] = {.lex_state = 302}, + [8548] = {.lex_state = 366}, + [8549] = {.lex_state = 366}, + [8550] = {.lex_state = 291}, + [8551] = {.lex_state = 291}, + [8552] = {.lex_state = 302}, + [8553] = {.lex_state = 366}, + [8554] = {.lex_state = 366}, + [8555] = {.lex_state = 366}, + [8556] = {.lex_state = 291}, + [8557] = {.lex_state = 291}, + [8558] = {.lex_state = 366}, + [8559] = {.lex_state = 299}, + [8560] = {.lex_state = 366}, + [8561] = {.lex_state = 366}, + [8562] = {.lex_state = 366}, + [8563] = {.lex_state = 366}, + [8564] = {.lex_state = 366}, + [8565] = {.lex_state = 366}, + [8566] = {.lex_state = 363}, + [8567] = {.lex_state = 324}, + [8568] = {.lex_state = 324}, + [8569] = {.lex_state = 366}, + [8570] = {.lex_state = 366}, + [8571] = {.lex_state = 324}, + [8572] = {.lex_state = 346}, + [8573] = {.lex_state = 309}, + [8574] = {.lex_state = 299}, + [8575] = {.lex_state = 324}, + [8576] = {.lex_state = 309}, + [8577] = {.lex_state = 376}, + [8578] = {.lex_state = 291}, + [8579] = {.lex_state = 309}, + [8580] = {.lex_state = 309}, + [8581] = {.lex_state = 324}, + [8582] = {.lex_state = 309}, + [8583] = {.lex_state = 309}, + [8584] = {.lex_state = 291}, + [8585] = {.lex_state = 309}, + [8586] = {.lex_state = 309}, + [8587] = {.lex_state = 362}, + [8588] = {.lex_state = 291}, + [8589] = {.lex_state = 309}, + [8590] = {.lex_state = 376}, + [8591] = {.lex_state = 309}, + [8592] = {.lex_state = 309}, + [8593] = {.lex_state = 376}, + [8594] = {.lex_state = 309}, + [8595] = {.lex_state = 376}, + [8596] = {.lex_state = 309}, + [8597] = {.lex_state = 324}, + [8598] = {.lex_state = 324}, + [8599] = {.lex_state = 291}, + [8600] = {.lex_state = 376}, + [8601] = {.lex_state = 291}, + [8602] = {.lex_state = 362}, + [8603] = {.lex_state = 309}, + [8604] = {.lex_state = 291}, + [8605] = {.lex_state = 346}, + [8606] = {.lex_state = 309}, + [8607] = {.lex_state = 291}, + [8608] = {.lex_state = 376}, + [8609] = {.lex_state = 376}, + [8610] = {.lex_state = 324}, + [8611] = {.lex_state = 291}, + [8612] = {.lex_state = 376}, + [8613] = {.lex_state = 376}, + [8614] = {.lex_state = 309}, + [8615] = {.lex_state = 309}, + [8616] = {.lex_state = 309}, + [8617] = {.lex_state = 291}, + [8618] = {.lex_state = 366}, + [8619] = {.lex_state = 291}, + [8620] = {.lex_state = 299}, + [8621] = {.lex_state = 309}, + [8622] = {.lex_state = 309}, + [8623] = {.lex_state = 309}, + [8624] = {.lex_state = 309}, + [8625] = {.lex_state = 366}, + [8626] = {.lex_state = 309}, + [8627] = {.lex_state = 309}, + [8628] = {.lex_state = 309}, + [8629] = {.lex_state = 309}, + [8630] = {.lex_state = 309}, + [8631] = {.lex_state = 309}, + [8632] = {.lex_state = 309}, + [8633] = {.lex_state = 299}, + [8634] = {.lex_state = 299}, + [8635] = {.lex_state = 366}, + [8636] = {.lex_state = 366}, + [8637] = {.lex_state = 366}, + [8638] = {.lex_state = 366}, + [8639] = {.lex_state = 309}, + [8640] = {.lex_state = 309}, + [8641] = {.lex_state = 291}, + [8642] = {.lex_state = 291}, + [8643] = {.lex_state = 291}, + [8644] = {.lex_state = 291}, + [8645] = {.lex_state = 366}, + [8646] = {.lex_state = 366}, + [8647] = {.lex_state = 291}, + [8648] = {.lex_state = 291}, + [8649] = {.lex_state = 366}, + [8650] = {.lex_state = 291}, + [8651] = {.lex_state = 291}, + [8652] = {.lex_state = 366}, + [8653] = {.lex_state = 291}, + [8654] = {.lex_state = 366}, + [8655] = {.lex_state = 366}, + [8656] = {.lex_state = 291}, + [8657] = {.lex_state = 291}, + [8658] = {.lex_state = 291}, + [8659] = {.lex_state = 366}, + [8660] = {.lex_state = 291}, + [8661] = {.lex_state = 291}, + [8662] = {.lex_state = 366}, + [8663] = {.lex_state = 376}, + [8664] = {.lex_state = 291}, + [8665] = {.lex_state = 376}, + [8666] = {.lex_state = 376}, + [8667] = {.lex_state = 376}, + [8668] = {.lex_state = 342}, + [8669] = {.lex_state = 376}, + [8670] = {.lex_state = 376}, + [8671] = {.lex_state = 376}, + [8672] = {.lex_state = 376}, + [8673] = {.lex_state = 342}, + [8674] = {.lex_state = 342}, + [8675] = {.lex_state = 362}, + [8676] = {.lex_state = 299}, + [8677] = {.lex_state = 376}, + [8678] = {.lex_state = 376}, + [8679] = {.lex_state = 376}, + [8680] = {.lex_state = 376}, + [8681] = {.lex_state = 376}, + [8682] = {.lex_state = 376}, + [8683] = {.lex_state = 366}, + [8684] = {.lex_state = 366}, + [8685] = {.lex_state = 376}, + [8686] = {.lex_state = 376}, + [8687] = {.lex_state = 366}, + [8688] = {.lex_state = 366}, + [8689] = {.lex_state = 299}, + [8690] = {.lex_state = 366}, + [8691] = {.lex_state = 376}, + [8692] = {.lex_state = 366}, + [8693] = {.lex_state = 376}, + [8694] = {.lex_state = 299}, + [8695] = {.lex_state = 376}, + [8696] = {.lex_state = 376}, + [8697] = {.lex_state = 366}, + [8698] = {.lex_state = 366}, + [8699] = {.lex_state = 376}, + [8700] = {.lex_state = 376}, + [8701] = {.lex_state = 376}, + [8702] = {.lex_state = 376}, + [8703] = {.lex_state = 376}, + [8704] = {.lex_state = 366}, + [8705] = {.lex_state = 299}, + [8706] = {.lex_state = 376}, + [8707] = {.lex_state = 299}, + [8708] = {.lex_state = 376}, + [8709] = {.lex_state = 299}, + [8710] = {.lex_state = 376}, + [8711] = {.lex_state = 291}, + [8712] = {.lex_state = 299}, + [8713] = {.lex_state = 291}, + [8714] = {.lex_state = 376}, + [8715] = {.lex_state = 299}, + [8716] = {.lex_state = 299}, + [8717] = {.lex_state = 291}, + [8718] = {.lex_state = 299}, + [8719] = {.lex_state = 376}, + [8720] = {.lex_state = 376}, + [8721] = {.lex_state = 376}, + [8722] = {.lex_state = 299}, + [8723] = {.lex_state = 376}, + [8724] = {.lex_state = 376}, + [8725] = {.lex_state = 376}, + [8726] = {.lex_state = 376}, + [8727] = {.lex_state = 376}, + [8728] = {.lex_state = 376}, + [8729] = {.lex_state = 376}, + [8730] = {.lex_state = 376}, + [8731] = {.lex_state = 376}, + [8732] = {.lex_state = 366}, + [8733] = {.lex_state = 342}, + [8734] = {.lex_state = 376}, + [8735] = {.lex_state = 376}, + [8736] = {.lex_state = 376}, + [8737] = {.lex_state = 376}, + [8738] = {.lex_state = 376}, + [8739] = {.lex_state = 309}, + [8740] = {.lex_state = 376}, + [8741] = {.lex_state = 376}, + [8742] = {.lex_state = 322}, + [8743] = {.lex_state = 322}, + [8744] = {.lex_state = 322}, + [8745] = {.lex_state = 322}, + [8746] = {.lex_state = 322}, + [8747] = {.lex_state = 322}, + [8748] = {.lex_state = 322}, + [8749] = {.lex_state = 322}, + [8750] = {.lex_state = 322}, + [8751] = {.lex_state = 322}, + [8752] = {.lex_state = 322}, + [8753] = {.lex_state = 342}, + [8754] = {.lex_state = 322}, + [8755] = {.lex_state = 322}, + [8756] = {.lex_state = 322}, + [8757] = {.lex_state = 322}, + [8758] = {.lex_state = 322}, + [8759] = {.lex_state = 322}, + [8760] = {.lex_state = 322}, + [8761] = {.lex_state = 322}, + [8762] = {.lex_state = 322}, + [8763] = {.lex_state = 322}, + [8764] = {.lex_state = 322}, + [8765] = {.lex_state = 322}, + [8766] = {.lex_state = 322}, + [8767] = {.lex_state = 322}, + [8768] = {.lex_state = 322}, + [8769] = {.lex_state = 322}, + [8770] = {.lex_state = 322}, + [8771] = {.lex_state = 322}, + [8772] = {.lex_state = 322}, + [8773] = {.lex_state = 322}, + [8774] = {.lex_state = 342}, + [8775] = {.lex_state = 322}, + [8776] = {.lex_state = 322}, + [8777] = {.lex_state = 322}, + [8778] = {.lex_state = 322}, + [8779] = {.lex_state = 322}, + [8780] = {.lex_state = 322}, + [8781] = {.lex_state = 309}, + [8782] = {.lex_state = 322}, + [8783] = {.lex_state = 322}, + [8784] = {.lex_state = 322}, + [8785] = {.lex_state = 322}, + [8786] = {.lex_state = 322}, + [8787] = {.lex_state = 322}, + [8788] = {.lex_state = 322}, + [8789] = {.lex_state = 322}, + [8790] = {.lex_state = 322}, + [8791] = {.lex_state = 322}, + [8792] = {.lex_state = 322}, + [8793] = {.lex_state = 322}, + [8794] = {.lex_state = 322}, + [8795] = {.lex_state = 322}, + [8796] = {.lex_state = 322}, + [8797] = {.lex_state = 322}, + [8798] = {.lex_state = 322}, + [8799] = {.lex_state = 322}, + [8800] = {.lex_state = 322}, + [8801] = {.lex_state = 322}, + [8802] = {.lex_state = 322}, + [8803] = {.lex_state = 322}, + [8804] = {.lex_state = 322}, + [8805] = {.lex_state = 322}, + [8806] = {.lex_state = 322}, + [8807] = {.lex_state = 322}, + [8808] = {.lex_state = 322}, + [8809] = {.lex_state = 322}, + [8810] = {.lex_state = 322}, + [8811] = {.lex_state = 322}, + [8812] = {.lex_state = 342}, + [8813] = {.lex_state = 322}, + [8814] = {.lex_state = 322}, + [8815] = {.lex_state = 322}, + [8816] = {.lex_state = 322}, + [8817] = {.lex_state = 322}, + [8818] = {.lex_state = 322}, + [8819] = {.lex_state = 322}, + [8820] = {.lex_state = 322}, + [8821] = {.lex_state = 322}, + [8822] = {.lex_state = 322}, + [8823] = {.lex_state = 309}, + [8824] = {.lex_state = 322}, + [8825] = {.lex_state = 322}, + [8826] = {.lex_state = 322}, + [8827] = {.lex_state = 322}, + [8828] = {.lex_state = 322}, + [8829] = {.lex_state = 322}, + [8830] = {.lex_state = 342}, + [8831] = {.lex_state = 368}, + [8832] = {.lex_state = 322}, + [8833] = {.lex_state = 322}, + [8834] = {.lex_state = 324}, + [8835] = {.lex_state = 324}, + [8836] = {.lex_state = 324}, + [8837] = {.lex_state = 322}, + [8838] = {.lex_state = 322}, + [8839] = {.lex_state = 324}, + [8840] = {.lex_state = 324}, + [8841] = {.lex_state = 324}, + [8842] = {.lex_state = 322}, + [8843] = {.lex_state = 322}, + [8844] = {.lex_state = 322}, + [8845] = {.lex_state = 322}, + [8846] = {.lex_state = 322}, + [8847] = {.lex_state = 322}, + [8848] = {.lex_state = 322}, + [8849] = {.lex_state = 322}, + [8850] = {.lex_state = 322}, + [8851] = {.lex_state = 309}, + [8852] = {.lex_state = 322}, + [8853] = {.lex_state = 322}, + [8854] = {.lex_state = 322}, + [8855] = {.lex_state = 342}, + [8856] = {.lex_state = 322}, + [8857] = {.lex_state = 322}, + [8858] = {.lex_state = 322}, + [8859] = {.lex_state = 322}, + [8860] = {.lex_state = 322}, + [8861] = {.lex_state = 322}, + [8862] = {.lex_state = 322}, + [8863] = {.lex_state = 322}, + [8864] = {.lex_state = 309}, + [8865] = {.lex_state = 368}, + [8866] = {.lex_state = 309}, + [8867] = {.lex_state = 322}, + [8868] = {.lex_state = 368}, + [8869] = {.lex_state = 322}, + [8870] = {.lex_state = 322}, + [8871] = {.lex_state = 322}, + [8872] = {.lex_state = 342}, + [8873] = {.lex_state = 322}, + [8874] = {.lex_state = 322}, + [8875] = {.lex_state = 322}, + [8876] = {.lex_state = 322}, + [8877] = {.lex_state = 322}, + [8878] = {.lex_state = 322}, + [8879] = {.lex_state = 322}, + [8880] = {.lex_state = 322}, + [8881] = {.lex_state = 322}, + [8882] = {.lex_state = 322}, + [8883] = {.lex_state = 322}, + [8884] = {.lex_state = 322}, + [8885] = {.lex_state = 322}, + [8886] = {.lex_state = 322}, + [8887] = {.lex_state = 369}, + [8888] = {.lex_state = 342}, + [8889] = {.lex_state = 369}, + [8890] = {.lex_state = 369}, + [8891] = {.lex_state = 342}, + [8892] = {.lex_state = 342}, + [8893] = {.lex_state = 322}, + [8894] = {.lex_state = 369}, + [8895] = {.lex_state = 369}, + [8896] = {.lex_state = 342}, + [8897] = {.lex_state = 369}, + [8898] = {.lex_state = 369}, + [8899] = {.lex_state = 342}, + [8900] = {.lex_state = 342}, + [8901] = {.lex_state = 369}, + [8902] = {.lex_state = 369}, + [8903] = {.lex_state = 369}, + [8904] = {.lex_state = 342}, + [8905] = {.lex_state = 342}, + [8906] = {.lex_state = 369}, + [8907] = {.lex_state = 342}, + [8908] = {.lex_state = 291}, + [8909] = {.lex_state = 342}, + [8910] = {.lex_state = 342}, + [8911] = {.lex_state = 291}, + [8912] = {.lex_state = 342}, + [8913] = {.lex_state = 342}, + [8914] = {.lex_state = 291}, + [8915] = {.lex_state = 291}, + [8916] = {.lex_state = 291}, + [8917] = {.lex_state = 369}, + [8918] = {.lex_state = 342}, + [8919] = {.lex_state = 369}, + [8920] = {.lex_state = 342}, + [8921] = {.lex_state = 342}, + [8922] = {.lex_state = 369}, + [8923] = {.lex_state = 369}, + [8924] = {.lex_state = 342}, + [8925] = {.lex_state = 369}, + [8926] = {.lex_state = 369}, + [8927] = {.lex_state = 291}, + [8928] = {.lex_state = 369}, + [8929] = {.lex_state = 342}, + [8930] = {.lex_state = 342}, + [8931] = {.lex_state = 366}, + [8932] = {.lex_state = 369}, + [8933] = {.lex_state = 342}, + [8934] = {.lex_state = 342}, + [8935] = {.lex_state = 324}, + [8936] = {.lex_state = 291}, + [8937] = {.lex_state = 342}, + [8938] = {.lex_state = 342}, + [8939] = {.lex_state = 369}, + [8940] = {.lex_state = 369}, + [8941] = {.lex_state = 366}, + [8942] = {.lex_state = 369}, + [8943] = {.lex_state = 342}, + [8944] = {.lex_state = 368}, + [8945] = {.lex_state = 369}, + [8946] = {.lex_state = 342}, + [8947] = {.lex_state = 369}, + [8948] = {.lex_state = 324}, + [8949] = {.lex_state = 369}, + [8950] = {.lex_state = 369}, + [8951] = {.lex_state = 369}, + [8952] = {.lex_state = 369}, + [8953] = {.lex_state = 324}, + [8954] = {.lex_state = 324}, + [8955] = {.lex_state = 369}, + [8956] = {.lex_state = 342}, + [8957] = {.lex_state = 369}, + [8958] = {.lex_state = 324}, + [8959] = {.lex_state = 369}, + [8960] = {.lex_state = 342}, + [8961] = {.lex_state = 324}, + [8962] = {.lex_state = 291}, + [8963] = {.lex_state = 291}, + [8964] = {.lex_state = 291}, + [8965] = {.lex_state = 291}, + [8966] = {.lex_state = 369}, + [8967] = {.lex_state = 369}, + [8968] = {.lex_state = 291}, + [8969] = {.lex_state = 369}, + [8970] = {.lex_state = 368}, + [8971] = {.lex_state = 368}, + [8972] = {.lex_state = 366}, + [8973] = {.lex_state = 368}, + [8974] = {.lex_state = 291}, + [8975] = {.lex_state = 342}, + [8976] = {.lex_state = 366}, + [8977] = {.lex_state = 368}, + [8978] = {.lex_state = 368}, + [8979] = {.lex_state = 368}, + [8980] = {.lex_state = 366}, + [8981] = {.lex_state = 291}, + [8982] = {.lex_state = 366}, + [8983] = {.lex_state = 291}, + [8984] = {.lex_state = 342}, + [8985] = {.lex_state = 342}, + [8986] = {.lex_state = 368}, + [8987] = {.lex_state = 342}, + [8988] = {.lex_state = 342}, + [8989] = {.lex_state = 342}, + [8990] = {.lex_state = 366}, + [8991] = {.lex_state = 365}, + [8992] = {.lex_state = 365}, + [8993] = {.lex_state = 366}, + [8994] = {.lex_state = 322}, + [8995] = {.lex_state = 365}, + [8996] = {.lex_state = 366}, + [8997] = {.lex_state = 322}, + [8998] = {.lex_state = 291}, + [8999] = {.lex_state = 291}, + [9000] = {.lex_state = 366}, + [9001] = {.lex_state = 366}, + [9002] = {.lex_state = 365}, + [9003] = {.lex_state = 291}, + [9004] = {.lex_state = 309}, + [9005] = {.lex_state = 366}, + [9006] = {.lex_state = 366}, + [9007] = {.lex_state = 322}, + [9008] = {.lex_state = 366}, + [9009] = {.lex_state = 366}, + [9010] = {.lex_state = 365}, + [9011] = {.lex_state = 366}, + [9012] = {.lex_state = 291}, + [9013] = {.lex_state = 291}, + [9014] = {.lex_state = 366}, + [9015] = {.lex_state = 291}, + [9016] = {.lex_state = 366}, + [9017] = {.lex_state = 366}, + [9018] = {.lex_state = 291}, + [9019] = {.lex_state = 366}, + [9020] = {.lex_state = 366}, + [9021] = {.lex_state = 291}, + [9022] = {.lex_state = 366}, + [9023] = {.lex_state = 366}, + [9024] = {.lex_state = 366}, + [9025] = {.lex_state = 366}, + [9026] = {.lex_state = 366}, + [9027] = {.lex_state = 366}, + [9028] = {.lex_state = 366}, + [9029] = {.lex_state = 291}, + [9030] = {.lex_state = 366}, + [9031] = {.lex_state = 366}, + [9032] = {.lex_state = 366}, + [9033] = {.lex_state = 365}, + [9034] = {.lex_state = 366}, + [9035] = {.lex_state = 366}, + [9036] = {.lex_state = 366}, + [9037] = {.lex_state = 365}, + [9038] = {.lex_state = 366}, + [9039] = {.lex_state = 366}, + [9040] = {.lex_state = 291}, + [9041] = {.lex_state = 365}, + [9042] = {.lex_state = 366}, + [9043] = {.lex_state = 365}, + [9044] = {.lex_state = 365}, + [9045] = {.lex_state = 366}, + [9046] = {.lex_state = 322}, + [9047] = {.lex_state = 291}, + [9048] = {.lex_state = 309}, + [9049] = {.lex_state = 291}, + [9050] = {.lex_state = 366}, + [9051] = {.lex_state = 365}, + [9052] = {.lex_state = 365}, + [9053] = {.lex_state = 366}, + [9054] = {.lex_state = 310}, + [9055] = {.lex_state = 366}, + [9056] = {.lex_state = 366}, + [9057] = {.lex_state = 366}, + [9058] = {.lex_state = 366}, + [9059] = {.lex_state = 366}, + [9060] = {.lex_state = 366}, + [9061] = {.lex_state = 309}, + [9062] = {.lex_state = 366}, + [9063] = {.lex_state = 366}, + [9064] = {.lex_state = 369}, + [9065] = {.lex_state = 370}, + [9066] = {.lex_state = 366}, + [9067] = {.lex_state = 369}, + [9068] = {.lex_state = 260}, + [9069] = {.lex_state = 309}, + [9070] = {.lex_state = 291}, + [9071] = {.lex_state = 309}, + [9072] = {.lex_state = 309}, + [9073] = {.lex_state = 291}, + [9074] = {.lex_state = 342}, + [9075] = {.lex_state = 309}, + [9076] = {.lex_state = 366}, + [9077] = {.lex_state = 366}, + [9078] = {.lex_state = 366}, + [9079] = {.lex_state = 366}, + [9080] = {.lex_state = 366}, + [9081] = {.lex_state = 291}, + [9082] = {.lex_state = 366}, + [9083] = {.lex_state = 137}, + [9084] = {.lex_state = 309}, + [9085] = {.lex_state = 310}, + [9086] = {.lex_state = 309}, + [9087] = {.lex_state = 370}, + [9088] = {.lex_state = 309}, + [9089] = {.lex_state = 309}, + [9090] = {.lex_state = 291}, + [9091] = {.lex_state = 309}, + [9092] = {.lex_state = 309}, + [9093] = {.lex_state = 260}, + [9094] = {.lex_state = 291}, + [9095] = {.lex_state = 309}, + [9096] = {.lex_state = 366}, + [9097] = {.lex_state = 370}, + [9098] = {.lex_state = 366}, + [9099] = {.lex_state = 366}, + [9100] = {.lex_state = 366}, + [9101] = {.lex_state = 366}, + [9102] = {.lex_state = 366}, + [9103] = {.lex_state = 366}, + [9104] = {.lex_state = 291}, + [9105] = {.lex_state = 309}, + [9106] = {.lex_state = 309}, + [9107] = {.lex_state = 309}, + [9108] = {.lex_state = 366}, + [9109] = {.lex_state = 370}, + [9110] = {.lex_state = 291}, + [9111] = {.lex_state = 309}, + [9112] = {.lex_state = 260}, + [9113] = {.lex_state = 309}, + [9114] = {.lex_state = 366}, + [9115] = {.lex_state = 366}, + [9116] = {.lex_state = 309}, + [9117] = {.lex_state = 309}, + [9118] = {.lex_state = 366}, + [9119] = {.lex_state = 366}, + [9120] = {.lex_state = 309}, + [9121] = {.lex_state = 291}, + [9122] = {.lex_state = 366}, + [9123] = {.lex_state = 342}, + [9124] = {.lex_state = 309}, + [9125] = {.lex_state = 310}, + [9126] = {.lex_state = 309}, + [9127] = {.lex_state = 366}, + [9128] = {.lex_state = 309}, + [9129] = {.lex_state = 291}, + [9130] = {.lex_state = 366}, + [9131] = {.lex_state = 309}, + [9132] = {.lex_state = 342}, + [9133] = {.lex_state = 291}, + [9134] = {.lex_state = 291}, + [9135] = {.lex_state = 309}, + [9136] = {.lex_state = 291}, + [9137] = {.lex_state = 366}, + [9138] = {.lex_state = 366}, + [9139] = {.lex_state = 310}, + [9140] = {.lex_state = 309}, + [9141] = {.lex_state = 288}, + [9142] = {.lex_state = 260}, + [9143] = {.lex_state = 309}, + [9144] = {.lex_state = 310}, + [9145] = {.lex_state = 260}, + [9146] = {.lex_state = 310}, + [9147] = {.lex_state = 309}, + [9148] = {.lex_state = 309}, + [9149] = {.lex_state = 309}, + [9150] = {.lex_state = 288}, + [9151] = {.lex_state = 309}, + [9152] = {.lex_state = 310}, + [9153] = {.lex_state = 260}, + [9154] = {.lex_state = 309}, + [9155] = {.lex_state = 288}, + [9156] = {.lex_state = 260}, + [9157] = {.lex_state = 310}, + [9158] = {.lex_state = 260}, + [9159] = {.lex_state = 310}, + [9160] = {.lex_state = 310}, + [9161] = {.lex_state = 260}, + [9162] = {.lex_state = 309}, + [9163] = {.lex_state = 260}, + [9164] = {.lex_state = 309}, + [9165] = {.lex_state = 310}, + [9166] = {.lex_state = 260}, + [9167] = {.lex_state = 309}, + [9168] = {.lex_state = 310}, + [9169] = {.lex_state = 310}, + [9170] = {.lex_state = 260}, + [9171] = {.lex_state = 260}, + [9172] = {.lex_state = 309}, + [9173] = {.lex_state = 310}, + [9174] = {.lex_state = 310}, + [9175] = {.lex_state = 260}, + [9176] = {.lex_state = 260}, + [9177] = {.lex_state = 260}, + [9178] = {.lex_state = 260}, + [9179] = {.lex_state = 260}, + [9180] = {.lex_state = 260}, + [9181] = {.lex_state = 260}, + [9182] = {.lex_state = 309}, + [9183] = {.lex_state = 260}, + [9184] = {.lex_state = 260}, + [9185] = {.lex_state = 260}, + [9186] = {.lex_state = 309}, + [9187] = {.lex_state = 260}, + [9188] = {.lex_state = 260}, + [9189] = {.lex_state = 309}, + [9190] = {.lex_state = 260}, + [9191] = {.lex_state = 260}, + [9192] = {.lex_state = 260}, + [9193] = {.lex_state = 310}, + [9194] = {.lex_state = 260}, + [9195] = {.lex_state = 260}, + [9196] = {.lex_state = 260}, + [9197] = {.lex_state = 288}, + [9198] = {.lex_state = 310}, + [9199] = {.lex_state = 310}, + [9200] = {.lex_state = 260}, + [9201] = {.lex_state = 309}, + [9202] = {.lex_state = 310}, + [9203] = {.lex_state = 288}, + [9204] = {.lex_state = 310}, + [9205] = {.lex_state = 310}, + [9206] = {.lex_state = 260}, + [9207] = {.lex_state = 260}, + [9208] = {.lex_state = 260}, + [9209] = {.lex_state = 260}, + [9210] = {.lex_state = 260}, + [9211] = {.lex_state = 310}, + [9212] = {.lex_state = 310}, + [9213] = {.lex_state = 260}, + [9214] = {.lex_state = 309}, + [9215] = {.lex_state = 260}, + [9216] = {.lex_state = 260}, + [9217] = {.lex_state = 260}, + [9218] = {.lex_state = 260}, + [9219] = {.lex_state = 288}, + [9220] = {.lex_state = 309}, + [9221] = {.lex_state = 309}, + [9222] = {.lex_state = 260}, + [9223] = {.lex_state = 310}, + [9224] = {.lex_state = 365}, + [9225] = {.lex_state = 309}, + [9226] = {.lex_state = 260}, + [9227] = {.lex_state = 260}, + [9228] = {.lex_state = 260}, + [9229] = {.lex_state = 366}, + [9230] = {.lex_state = 288}, + [9231] = {.lex_state = 288}, + [9232] = {.lex_state = 288}, + [9233] = {.lex_state = 288}, + [9234] = {.lex_state = 288}, + [9235] = {.lex_state = 288}, + [9236] = {.lex_state = 366}, + [9237] = {.lex_state = 288}, + [9238] = {.lex_state = 288}, + [9239] = {.lex_state = 368}, + [9240] = {.lex_state = 288}, + [9241] = {.lex_state = 137}, + [9242] = {.lex_state = 291}, + [9243] = {.lex_state = 291}, + [9244] = {.lex_state = 291}, + [9245] = {.lex_state = 291}, + [9246] = {.lex_state = 288}, + [9247] = {.lex_state = 366}, + [9248] = {.lex_state = 309}, + [9249] = {.lex_state = 137}, + [9250] = {.lex_state = 366}, + [9251] = {.lex_state = 137}, + [9252] = {.lex_state = 288}, + [9253] = {.lex_state = 366}, + [9254] = {.lex_state = 137}, + [9255] = {.lex_state = 309}, + [9256] = {.lex_state = 137}, + [9257] = {.lex_state = 370}, + [9258] = {.lex_state = 366}, + [9259] = {.lex_state = 366}, + [9260] = {.lex_state = 366}, + [9261] = {.lex_state = 291}, + [9262] = {.lex_state = 368}, + [9263] = {.lex_state = 366}, + [9264] = {.lex_state = 309}, + [9265] = {.lex_state = 137}, + [9266] = {.lex_state = 375}, + [9267] = {.lex_state = 309}, + [9268] = {.lex_state = 288}, + [9269] = {.lex_state = 370}, + [9270] = {.lex_state = 366}, + [9271] = {.lex_state = 370}, + [9272] = {.lex_state = 137}, + [9273] = {.lex_state = 288}, + [9274] = {.lex_state = 366}, + [9275] = {.lex_state = 137}, + [9276] = {.lex_state = 291}, + [9277] = {.lex_state = 309}, + [9278] = {.lex_state = 366}, + [9279] = {.lex_state = 137}, + [9280] = {.lex_state = 291}, + [9281] = {.lex_state = 309}, + [9282] = {.lex_state = 137}, + [9283] = {.lex_state = 291}, + [9284] = {.lex_state = 288}, + [9285] = {.lex_state = 291}, + [9286] = {.lex_state = 137}, + [9287] = {.lex_state = 291}, + [9288] = {.lex_state = 366}, + [9289] = {.lex_state = 288}, + [9290] = {.lex_state = 137}, + [9291] = {.lex_state = 291}, + [9292] = {.lex_state = 309}, + [9293] = {.lex_state = 366}, + [9294] = {.lex_state = 137}, + [9295] = {.lex_state = 370}, + [9296] = {.lex_state = 291}, + [9297] = {.lex_state = 288}, + [9298] = {.lex_state = 309}, + [9299] = {.lex_state = 366}, + [9300] = {.lex_state = 370}, + [9301] = {.lex_state = 370}, + [9302] = {.lex_state = 370}, + [9303] = {.lex_state = 291}, + [9304] = {.lex_state = 366}, + [9305] = {.lex_state = 366}, + [9306] = {.lex_state = 137}, + [9307] = {.lex_state = 366}, + [9308] = {.lex_state = 366}, + [9309] = {.lex_state = 137}, + [9310] = {.lex_state = 366}, + [9311] = {.lex_state = 309}, + [9312] = {.lex_state = 288}, + [9313] = {.lex_state = 366}, + [9314] = {.lex_state = 288}, + [9315] = {.lex_state = 366}, + [9316] = {.lex_state = 366}, + [9317] = {.lex_state = 370}, + [9318] = {.lex_state = 137}, + [9319] = {.lex_state = 370}, + [9320] = {.lex_state = 137}, + [9321] = {.lex_state = 137}, + [9322] = {.lex_state = 137}, + [9323] = {.lex_state = 137}, + [9324] = {.lex_state = 137}, + [9325] = {.lex_state = 137}, + [9326] = {.lex_state = 137}, + [9327] = {.lex_state = 137}, + [9328] = {.lex_state = 137}, + [9329] = {.lex_state = 137}, + [9330] = {.lex_state = 137}, + [9331] = {.lex_state = 137}, + [9332] = {.lex_state = 137}, + [9333] = {.lex_state = 288}, + [9334] = {.lex_state = 288}, + [9335] = {.lex_state = 366}, + [9336] = {.lex_state = 288}, + [9337] = {.lex_state = 137}, + [9338] = {.lex_state = 137}, + [9339] = {.lex_state = 366}, + [9340] = {.lex_state = 288}, + [9341] = {.lex_state = 366}, + [9342] = {.lex_state = 288}, + [9343] = {.lex_state = 137}, + [9344] = {.lex_state = 137}, + [9345] = {.lex_state = 137}, + [9346] = {.lex_state = 309}, + [9347] = {.lex_state = 288}, + [9348] = {.lex_state = 366}, + [9349] = {.lex_state = 366}, + [9350] = {.lex_state = 310}, + [9351] = {.lex_state = 309}, + [9352] = {.lex_state = 137}, + [9353] = {.lex_state = 310}, + [9354] = {.lex_state = 309}, + [9355] = {.lex_state = 137}, + [9356] = {.lex_state = 370}, + [9357] = {.lex_state = 137}, + [9358] = {.lex_state = 370}, + [9359] = {.lex_state = 288}, + [9360] = {.lex_state = 288}, + [9361] = {.lex_state = 370}, + [9362] = {.lex_state = 370}, + [9363] = {.lex_state = 370}, + [9364] = {.lex_state = 288}, + [9365] = {.lex_state = 370}, + [9366] = {.lex_state = 370}, + [9367] = {.lex_state = 370}, + [9368] = {.lex_state = 366}, + [9369] = {.lex_state = 309}, + [9370] = {.lex_state = 288}, + [9371] = {.lex_state = 288}, + [9372] = {.lex_state = 366}, + [9373] = {.lex_state = 288}, + [9374] = {.lex_state = 366}, + [9375] = {.lex_state = 370}, + [9376] = {.lex_state = 322}, + [9377] = {.lex_state = 370}, + [9378] = {.lex_state = 370}, + [9379] = {.lex_state = 370}, + [9380] = {.lex_state = 370}, + [9381] = {.lex_state = 291}, + [9382] = {.lex_state = 288}, + [9383] = {.lex_state = 366}, + [9384] = {.lex_state = 370}, + [9385] = {.lex_state = 291}, + [9386] = {.lex_state = 288}, + [9387] = {.lex_state = 370}, + [9388] = {.lex_state = 374}, + [9389] = {.lex_state = 370}, + [9390] = {.lex_state = 370}, + [9391] = {.lex_state = 374}, + [9392] = {.lex_state = 370}, + [9393] = {.lex_state = 366}, + [9394] = {.lex_state = 366}, + [9395] = {.lex_state = 366}, + [9396] = {.lex_state = 366}, + [9397] = {.lex_state = 366}, + [9398] = {.lex_state = 366}, + [9399] = {.lex_state = 366}, + [9400] = {.lex_state = 366}, + [9401] = {.lex_state = 366}, + [9402] = {.lex_state = 370}, + [9403] = {.lex_state = 370}, + [9404] = {.lex_state = 366}, + [9405] = {.lex_state = 291}, + [9406] = {.lex_state = 291}, + [9407] = {.lex_state = 370}, + [9408] = {.lex_state = 324}, + [9409] = {.lex_state = 291}, + [9410] = {.lex_state = 370}, + [9411] = {.lex_state = 288}, + [9412] = {.lex_state = 370}, + [9413] = {.lex_state = 370}, + [9414] = {.lex_state = 370}, + [9415] = {.lex_state = 291}, + [9416] = {.lex_state = 370}, + [9417] = {.lex_state = 370}, + [9418] = {.lex_state = 288}, + [9419] = {.lex_state = 287}, + [9420] = {.lex_state = 291}, + [9421] = {.lex_state = 324}, + [9422] = {.lex_state = 288}, + [9423] = {.lex_state = 370}, + [9424] = {.lex_state = 366}, + [9425] = {.lex_state = 288}, + [9426] = {.lex_state = 288}, + [9427] = {.lex_state = 370}, + [9428] = {.lex_state = 370}, + [9429] = {.lex_state = 366}, + [9430] = {.lex_state = 324}, + [9431] = {.lex_state = 288}, + [9432] = {.lex_state = 366}, + [9433] = {.lex_state = 366}, + [9434] = {.lex_state = 324}, + [9435] = {.lex_state = 324}, + [9436] = {.lex_state = 370}, + [9437] = {.lex_state = 370}, + [9438] = {.lex_state = 370}, + [9439] = {.lex_state = 370}, + [9440] = {.lex_state = 370}, + [9441] = {.lex_state = 366}, + [9442] = {.lex_state = 370}, + [9443] = {.lex_state = 366}, + [9444] = {.lex_state = 370}, + [9445] = {.lex_state = 370}, + [9446] = {.lex_state = 366}, + [9447] = {.lex_state = 291}, + [9448] = {.lex_state = 370}, + [9449] = {.lex_state = 370}, + [9450] = {.lex_state = 370}, + [9451] = {.lex_state = 370}, + [9452] = {.lex_state = 288}, + [9453] = {.lex_state = 342}, + [9454] = {.lex_state = 288}, + [9455] = {.lex_state = 358}, + [9456] = {.lex_state = 288}, + [9457] = {.lex_state = 288}, + [9458] = {.lex_state = 291}, + [9459] = {.lex_state = 342}, + [9460] = {.lex_state = 288}, + [9461] = {.lex_state = 291}, + [9462] = {.lex_state = 288}, + [9463] = {.lex_state = 288}, + [9464] = {.lex_state = 366}, + [9465] = {.lex_state = 291}, + [9466] = {.lex_state = 366}, + [9467] = {.lex_state = 366}, + [9468] = {.lex_state = 366}, + [9469] = {.lex_state = 288}, + [9470] = {.lex_state = 288}, + [9471] = {.lex_state = 366}, + [9472] = {.lex_state = 288}, + [9473] = {.lex_state = 366}, + [9474] = {.lex_state = 342}, + [9475] = {.lex_state = 366}, + [9476] = {.lex_state = 358}, + [9477] = {.lex_state = 366}, + [9478] = {.lex_state = 288}, + [9479] = {.lex_state = 366}, + [9480] = {.lex_state = 288}, + [9481] = {.lex_state = 368}, + [9482] = {.lex_state = 291}, + [9483] = {.lex_state = 365}, + [9484] = {.lex_state = 288}, + [9485] = {.lex_state = 288}, + [9486] = {.lex_state = 288}, + [9487] = {.lex_state = 370}, + [9488] = {.lex_state = 366}, + [9489] = {.lex_state = 366}, + [9490] = {.lex_state = 288}, + [9491] = {.lex_state = 366}, + [9492] = {.lex_state = 291}, + [9493] = {.lex_state = 288}, + [9494] = {.lex_state = 370}, + [9495] = {.lex_state = 370}, + [9496] = {.lex_state = 291}, + [9497] = {.lex_state = 288}, + [9498] = {.lex_state = 366}, + [9499] = {.lex_state = 370}, + [9500] = {.lex_state = 366}, + [9501] = {.lex_state = 366}, + [9502] = {.lex_state = 366}, + [9503] = {.lex_state = 342}, + [9504] = {.lex_state = 291}, + [9505] = {.lex_state = 288}, + [9506] = {.lex_state = 358}, + [9507] = {.lex_state = 324}, + [9508] = {.lex_state = 288}, + [9509] = {.lex_state = 288}, + [9510] = {.lex_state = 366}, + [9511] = {.lex_state = 358}, + [9512] = {.lex_state = 291}, + [9513] = {.lex_state = 288}, + [9514] = {.lex_state = 342}, + [9515] = {.lex_state = 288}, + [9516] = {.lex_state = 288}, + [9517] = {.lex_state = 366}, + [9518] = {.lex_state = 370}, + [9519] = {.lex_state = 370}, + [9520] = {.lex_state = 291}, + [9521] = {.lex_state = 288}, + [9522] = {.lex_state = 370}, + [9523] = {.lex_state = 288}, + [9524] = {.lex_state = 366}, + [9525] = {.lex_state = 342}, + [9526] = {.lex_state = 342}, + [9527] = {.lex_state = 294}, + [9528] = {.lex_state = 342}, + [9529] = {.lex_state = 366}, + [9530] = {.lex_state = 342}, + [9531] = {.lex_state = 342}, + [9532] = {.lex_state = 366}, + [9533] = {.lex_state = 288}, + [9534] = {.lex_state = 294}, + [9535] = {.lex_state = 294}, + [9536] = {.lex_state = 366}, + [9537] = {.lex_state = 294}, + [9538] = {.lex_state = 342}, + [9539] = {.lex_state = 374}, + [9540] = {.lex_state = 374}, + [9541] = {.lex_state = 374}, + [9542] = {.lex_state = 294}, + [9543] = {.lex_state = 294}, + [9544] = {.lex_state = 342}, + [9545] = {.lex_state = 288}, + [9546] = {.lex_state = 294}, + [9547] = {.lex_state = 288}, + [9548] = {.lex_state = 294}, + [9549] = {.lex_state = 294}, + [9550] = {.lex_state = 342}, + [9551] = {.lex_state = 294}, + [9552] = {.lex_state = 374}, + [9553] = {.lex_state = 366}, + [9554] = {.lex_state = 342}, + [9555] = {.lex_state = 288}, + [9556] = {.lex_state = 374}, + [9557] = {.lex_state = 374}, + [9558] = {.lex_state = 366}, + [9559] = {.lex_state = 342}, + [9560] = {.lex_state = 288}, + [9561] = {.lex_state = 342}, + [9562] = {.lex_state = 374}, + [9563] = {.lex_state = 288}, + [9564] = {.lex_state = 366}, + [9565] = {.lex_state = 342}, + [9566] = {.lex_state = 374}, + [9567] = {.lex_state = 291}, + [9568] = {.lex_state = 374}, + [9569] = {.lex_state = 342}, + [9570] = {.lex_state = 300}, + [9571] = {.lex_state = 294}, + [9572] = {.lex_state = 374}, + [9573] = {.lex_state = 342}, + [9574] = {.lex_state = 291}, + [9575] = {.lex_state = 366}, + [9576] = {.lex_state = 374}, + [9577] = {.lex_state = 291}, + [9578] = {.lex_state = 291}, + [9579] = {.lex_state = 366}, + [9580] = {.lex_state = 342}, + [9581] = {.lex_state = 366}, + [9582] = {.lex_state = 288}, + [9583] = {.lex_state = 342}, + [9584] = {.lex_state = 288}, + [9585] = {.lex_state = 366}, + [9586] = {.lex_state = 342}, + [9587] = {.lex_state = 288}, + [9588] = {.lex_state = 366}, + [9589] = {.lex_state = 366}, + [9590] = {.lex_state = 366}, + [9591] = {.lex_state = 342}, + [9592] = {.lex_state = 288}, + [9593] = {.lex_state = 294}, + [9594] = {.lex_state = 366}, + [9595] = {.lex_state = 366}, + [9596] = {.lex_state = 366}, + [9597] = {.lex_state = 294}, + [9598] = {.lex_state = 342}, + [9599] = {.lex_state = 288}, + [9600] = {.lex_state = 342}, + [9601] = {.lex_state = 294}, + [9602] = {.lex_state = 288}, + [9603] = {.lex_state = 342}, + [9604] = {.lex_state = 366}, + [9605] = {.lex_state = 342}, + [9606] = {.lex_state = 342}, + [9607] = {.lex_state = 366}, + [9608] = {.lex_state = 342}, + [9609] = {.lex_state = 288}, + [9610] = {.lex_state = 374}, + [9611] = {.lex_state = 374}, + [9612] = {.lex_state = 366}, + [9613] = {.lex_state = 288}, + [9614] = {.lex_state = 342}, + [9615] = {.lex_state = 366}, + [9616] = {.lex_state = 366}, + [9617] = {.lex_state = 366}, + [9618] = {.lex_state = 366}, + [9619] = {.lex_state = 342}, + [9620] = {.lex_state = 366}, + [9621] = {.lex_state = 374}, + [9622] = {.lex_state = 366}, + [9623] = {.lex_state = 342}, + [9624] = {.lex_state = 288}, + [9625] = {.lex_state = 342}, + [9626] = {.lex_state = 374}, + [9627] = {.lex_state = 366}, + [9628] = {.lex_state = 342}, + [9629] = {.lex_state = 288}, + [9630] = {.lex_state = 374}, + [9631] = {.lex_state = 374}, + [9632] = {.lex_state = 342}, + [9633] = {.lex_state = 374}, + [9634] = {.lex_state = 366}, + [9635] = {.lex_state = 366}, + [9636] = {.lex_state = 294}, + [9637] = {.lex_state = 342}, + [9638] = {.lex_state = 342}, + [9639] = {.lex_state = 294}, + [9640] = {.lex_state = 342}, + [9641] = {.lex_state = 342}, + [9642] = {.lex_state = 366}, + [9643] = {.lex_state = 366}, + [9644] = {.lex_state = 374}, + [9645] = {.lex_state = 342}, + [9646] = {.lex_state = 342}, + [9647] = {.lex_state = 342}, + [9648] = {.lex_state = 294}, + [9649] = {.lex_state = 366}, + [9650] = {.lex_state = 374}, + [9651] = {.lex_state = 342}, + [9652] = {.lex_state = 288}, + [9653] = {.lex_state = 342}, + [9654] = {.lex_state = 342}, + [9655] = {.lex_state = 294}, + [9656] = {.lex_state = 366}, + [9657] = {.lex_state = 288}, + [9658] = {.lex_state = 374}, + [9659] = {.lex_state = 288}, + [9660] = {.lex_state = 294}, + [9661] = {.lex_state = 294}, + [9662] = {.lex_state = 374}, + [9663] = {.lex_state = 374}, + [9664] = {.lex_state = 291}, + [9665] = {.lex_state = 291}, + [9666] = {.lex_state = 291}, + [9667] = {.lex_state = 291}, + [9668] = {.lex_state = 366}, + [9669] = {.lex_state = 342}, + [9670] = {.lex_state = 288}, + [9671] = {.lex_state = 273}, + [9672] = {.lex_state = 273}, + [9673] = {.lex_state = 327}, + [9674] = {.lex_state = 273}, + [9675] = {.lex_state = 327}, + [9676] = {.lex_state = 366}, + [9677] = {.lex_state = 264}, + [9678] = {.lex_state = 370}, + [9679] = {.lex_state = 288}, + [9680] = {.lex_state = 290}, + [9681] = {.lex_state = 290}, + [9682] = {.lex_state = 290}, + [9683] = {.lex_state = 290}, + [9684] = {.lex_state = 366}, + [9685] = {.lex_state = 288}, + [9686] = {.lex_state = 366}, + [9687] = {.lex_state = 288}, + [9688] = {.lex_state = 273}, + [9689] = {.lex_state = 370}, + [9690] = {.lex_state = 370}, + [9691] = {.lex_state = 273}, + [9692] = {.lex_state = 288}, + [9693] = {.lex_state = 290}, + [9694] = {.lex_state = 290}, + [9695] = {.lex_state = 290}, + [9696] = {.lex_state = 290}, + [9697] = {.lex_state = 327}, + [9698] = {.lex_state = 273}, + [9699] = {.lex_state = 327}, + [9700] = {.lex_state = 327}, + [9701] = {.lex_state = 327}, + [9702] = {.lex_state = 273}, + [9703] = {.lex_state = 273}, + [9704] = {.lex_state = 273}, + [9705] = {.lex_state = 273}, + [9706] = {.lex_state = 273}, + [9707] = {.lex_state = 273}, + [9708] = {.lex_state = 273}, + [9709] = {.lex_state = 291}, + [9710] = {.lex_state = 327}, + [9711] = {.lex_state = 366}, + [9712] = {.lex_state = 273}, + [9713] = {.lex_state = 288}, + [9714] = {.lex_state = 291}, + [9715] = {.lex_state = 273}, + [9716] = {.lex_state = 288}, + [9717] = {.lex_state = 370}, + [9718] = {.lex_state = 370}, + [9719] = {.lex_state = 273}, + [9720] = {.lex_state = 273}, + [9721] = {.lex_state = 273}, + [9722] = {.lex_state = 370}, + [9723] = {.lex_state = 273}, + [9724] = {.lex_state = 368}, + [9725] = {.lex_state = 273}, + [9726] = {.lex_state = 288}, + [9727] = {.lex_state = 366}, + [9728] = {.lex_state = 370}, + [9729] = {.lex_state = 368}, + [9730] = {.lex_state = 273}, + [9731] = {.lex_state = 273}, + [9732] = {.lex_state = 291}, + [9733] = {.lex_state = 291}, + [9734] = {.lex_state = 291}, + [9735] = {.lex_state = 291}, + [9736] = {.lex_state = 291}, + [9737] = {.lex_state = 273}, + [9738] = {.lex_state = 273}, + [9739] = {.lex_state = 370}, + [9740] = {.lex_state = 273}, + [9741] = {.lex_state = 273}, + [9742] = {.lex_state = 288}, + [9743] = {.lex_state = 327}, + [9744] = {.lex_state = 291}, + [9745] = {.lex_state = 288}, + [9746] = {.lex_state = 288}, + [9747] = {.lex_state = 366}, + [9748] = {.lex_state = 288}, + [9749] = {.lex_state = 288}, + [9750] = {.lex_state = 288}, + [9751] = {.lex_state = 288}, + [9752] = {.lex_state = 291}, + [9753] = {.lex_state = 366}, + [9754] = {.lex_state = 366}, + [9755] = {.lex_state = 288}, + [9756] = {.lex_state = 366}, + [9757] = {.lex_state = 288}, + [9758] = {.lex_state = 288}, + [9759] = {.lex_state = 288}, + [9760] = {.lex_state = 288}, + [9761] = {.lex_state = 288}, + [9762] = {.lex_state = 366}, + [9763] = {.lex_state = 288}, + [9764] = {.lex_state = 291}, + [9765] = {.lex_state = 327}, + [9766] = {.lex_state = 327}, + [9767] = {.lex_state = 327}, + [9768] = {.lex_state = 366}, + [9769] = {.lex_state = 288}, + [9770] = {.lex_state = 291}, + [9771] = {.lex_state = 327}, + [9772] = {.lex_state = 327}, + [9773] = {.lex_state = 327}, + [9774] = {.lex_state = 327}, + [9775] = {.lex_state = 327}, + [9776] = {.lex_state = 291}, + [9777] = {.lex_state = 327}, + [9778] = {.lex_state = 366}, + [9779] = {.lex_state = 291}, + [9780] = {.lex_state = 288}, + [9781] = {.lex_state = 327}, + [9782] = {.lex_state = 327}, + [9783] = {.lex_state = 327}, + [9784] = {.lex_state = 327}, + [9785] = {.lex_state = 288}, + [9786] = {.lex_state = 327}, + [9787] = {.lex_state = 327}, + [9788] = {.lex_state = 327}, + [9789] = {.lex_state = 288}, + [9790] = {.lex_state = 288}, + [9791] = {.lex_state = 291}, + [9792] = {.lex_state = 366}, + [9793] = {.lex_state = 288}, + [9794] = {.lex_state = 288}, + [9795] = {.lex_state = 288}, + [9796] = {.lex_state = 327}, + [9797] = {.lex_state = 366}, + [9798] = {.lex_state = 366}, + [9799] = {.lex_state = 358}, + [9800] = {.lex_state = 327}, + [9801] = {.lex_state = 366}, + [9802] = {.lex_state = 358}, + [9803] = {.lex_state = 288}, + [9804] = {.lex_state = 366}, + [9805] = {.lex_state = 288}, + [9806] = {.lex_state = 358}, + [9807] = {.lex_state = 288}, + [9808] = {.lex_state = 291}, + [9809] = {.lex_state = 288}, + [9810] = {.lex_state = 366}, + [9811] = {.lex_state = 288}, + [9812] = {.lex_state = 288}, + [9813] = {.lex_state = 327}, + [9814] = {.lex_state = 288}, + [9815] = {.lex_state = 288}, + [9816] = {.lex_state = 288}, + [9817] = {.lex_state = 288}, + [9818] = {.lex_state = 288}, + [9819] = {.lex_state = 358}, + [9820] = {.lex_state = 366}, + [9821] = {.lex_state = 366}, + [9822] = {.lex_state = 288}, + [9823] = {.lex_state = 288}, + [9824] = {.lex_state = 291}, + [9825] = {.lex_state = 291}, + [9826] = {.lex_state = 366}, + [9827] = {.lex_state = 291}, + [9828] = {.lex_state = 366}, + [9829] = {.lex_state = 288}, + [9830] = {.lex_state = 288}, + [9831] = {.lex_state = 288}, + [9832] = {.lex_state = 288}, + [9833] = {.lex_state = 288}, + [9834] = {.lex_state = 366}, + [9835] = {.lex_state = 288}, + [9836] = {.lex_state = 288}, + [9837] = {.lex_state = 288}, + [9838] = {.lex_state = 288}, + [9839] = {.lex_state = 291}, + [9840] = {.lex_state = 288}, + [9841] = {.lex_state = 288}, + [9842] = {.lex_state = 291}, + [9843] = {.lex_state = 291}, + [9844] = {.lex_state = 288}, + [9845] = {.lex_state = 288}, + [9846] = {.lex_state = 288}, + [9847] = {.lex_state = 327}, + [9848] = {.lex_state = 287}, + [9849] = {.lex_state = 287}, + [9850] = {.lex_state = 287}, + [9851] = {.lex_state = 291}, + [9852] = {.lex_state = 366}, + [9853] = {.lex_state = 366}, + [9854] = {.lex_state = 287}, + [9855] = {.lex_state = 366}, + [9856] = {.lex_state = 291}, + [9857] = {.lex_state = 291}, + [9858] = {.lex_state = 287}, + [9859] = {.lex_state = 287}, + [9860] = {.lex_state = 287}, + [9861] = {.lex_state = 370}, + [9862] = {.lex_state = 370}, + [9863] = {.lex_state = 366}, + [9864] = {.lex_state = 287}, + [9865] = {.lex_state = 363}, + [9866] = {.lex_state = 366}, + [9867] = {.lex_state = 370}, + [9868] = {.lex_state = 363}, + [9869] = {.lex_state = 287}, + [9870] = {.lex_state = 287}, + [9871] = {.lex_state = 366}, + [9872] = {.lex_state = 368}, + [9873] = {.lex_state = 287}, + [9874] = {.lex_state = 366}, + [9875] = {.lex_state = 287}, + [9876] = {.lex_state = 363}, + [9877] = {.lex_state = 287}, + [9878] = {.lex_state = 366}, + [9879] = {.lex_state = 366}, + [9880] = {.lex_state = 366}, + [9881] = {.lex_state = 366}, + [9882] = {.lex_state = 370}, + [9883] = {.lex_state = 366}, + [9884] = {.lex_state = 370}, + [9885] = {.lex_state = 366}, + [9886] = {.lex_state = 287}, + [9887] = {.lex_state = 287}, + [9888] = {.lex_state = 366}, + [9889] = {.lex_state = 287}, + [9890] = {.lex_state = 366}, + [9891] = {.lex_state = 291}, + [9892] = {.lex_state = 291}, + [9893] = {.lex_state = 287}, + [9894] = {.lex_state = 287}, + [9895] = {.lex_state = 299}, + [9896] = {.lex_state = 366}, + [9897] = {.lex_state = 366}, + [9898] = {.lex_state = 370}, + [9899] = {.lex_state = 287}, + [9900] = {.lex_state = 287}, + [9901] = {.lex_state = 291}, + [9902] = {.lex_state = 366}, + [9903] = {.lex_state = 366}, + [9904] = {.lex_state = 366}, + [9905] = {.lex_state = 291}, + [9906] = {.lex_state = 287}, + [9907] = {.lex_state = 370}, + [9908] = {.lex_state = 287}, + [9909] = {.lex_state = 366}, + [9910] = {.lex_state = 287}, + [9911] = {.lex_state = 287}, + [9912] = {.lex_state = 287}, + [9913] = {.lex_state = 291}, + [9914] = {.lex_state = 287}, + [9915] = {.lex_state = 287}, + [9916] = {.lex_state = 291}, + [9917] = {.lex_state = 370}, + [9918] = {.lex_state = 366}, + [9919] = {.lex_state = 287}, + [9920] = {.lex_state = 287}, + [9921] = {.lex_state = 368}, + [9922] = {.lex_state = 291}, + [9923] = {.lex_state = 287}, + [9924] = {.lex_state = 287}, + [9925] = {.lex_state = 287}, + [9926] = {.lex_state = 287}, + [9927] = {.lex_state = 287}, + [9928] = {.lex_state = 287}, + [9929] = {.lex_state = 287}, + [9930] = {.lex_state = 366}, + [9931] = {.lex_state = 291}, + [9932] = {.lex_state = 366}, + [9933] = {.lex_state = 366}, + [9934] = {.lex_state = 291}, + [9935] = {.lex_state = 294}, + [9936] = {.lex_state = 291}, + [9937] = {.lex_state = 366}, + [9938] = {.lex_state = 366}, + [9939] = {.lex_state = 294}, + [9940] = {.lex_state = 294}, + [9941] = {.lex_state = 291}, + [9942] = {.lex_state = 366}, + [9943] = {.lex_state = 291}, + [9944] = {.lex_state = 291}, + [9945] = {.lex_state = 294}, + [9946] = {.lex_state = 291}, + [9947] = {.lex_state = 291}, + [9948] = {.lex_state = 291}, + [9949] = {.lex_state = 368}, + [9950] = {.lex_state = 366}, + [9951] = {.lex_state = 324}, + [9952] = {.lex_state = 366}, + [9953] = {.lex_state = 290}, + [9954] = {.lex_state = 294}, [9955] = {.lex_state = 0}, - [9956] = {.lex_state = 0}, - [9957] = {.lex_state = 266}, - [9958] = {.lex_state = 266}, - [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}, - [9968] = {.lex_state = 235}, - [9969] = {.lex_state = 0}, - [9970] = {.lex_state = 0}, - [9971] = {.lex_state = 266}, - [9972] = {.lex_state = 0}, - [9973] = {.lex_state = 0}, - [9974] = {.lex_state = 235}, - [9975] = {.lex_state = 235}, - [9976] = {.lex_state = 0}, - [9977] = {.lex_state = 0}, - [9978] = {.lex_state = 0}, - [9979] = {.lex_state = 0}, - [9980] = {.lex_state = 266}, - [9981] = {.lex_state = 266}, - [9982] = {.lex_state = 266}, - [9983] = {.lex_state = 148}, - [9984] = {.lex_state = 266}, - [9985] = {.lex_state = 266}, - [9986] = {.lex_state = 266}, - [9987] = {.lex_state = 0}, - [9988] = {.lex_state = 0}, - [9989] = {.lex_state = 266}, - [9990] = {.lex_state = 266}, - [9991] = {.lex_state = 266}, - [9992] = {.lex_state = 0}, - [9993] = {.lex_state = 266}, - [9994] = {.lex_state = 0}, - [9995] = {.lex_state = 0}, - [9996] = {.lex_state = 0}, - [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}, - [10004] = {.lex_state = 0}, - [10005] = {.lex_state = 0}, - [10006] = {.lex_state = 0}, - [10007] = {.lex_state = 0}, - [10008] = {.lex_state = 0}, - [10009] = {.lex_state = 0}, - [10010] = {.lex_state = 0}, - [10011] = {.lex_state = 266}, - [10012] = {.lex_state = 266}, - [10013] = {.lex_state = 0}, - [10014] = {.lex_state = 0}, - [10015] = {.lex_state = 148}, - [10016] = {.lex_state = 266}, - [10017] = {.lex_state = 266}, - [10018] = {.lex_state = 0}, - [10019] = {.lex_state = 0}, - [10020] = {.lex_state = 266}, - [10021] = {.lex_state = 0}, - [10022] = {.lex_state = 266}, - [10023] = {.lex_state = 266}, - [10024] = {.lex_state = 266}, - [10025] = {.lex_state = 266}, - [10026] = {.lex_state = 0}, - [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}, - [10045] = {.lex_state = 0}, - [10046] = {.lex_state = 148}, - [10047] = {.lex_state = 266}, - [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}, - [10063] = {.lex_state = 0}, - [10064] = {.lex_state = 0}, - [10065] = {.lex_state = 235}, - [10066] = {.lex_state = 0}, - [10067] = {.lex_state = 0}, - [10068] = {.lex_state = 0}, - [10069] = {.lex_state = 148}, - [10070] = {.lex_state = 0}, - [10071] = {.lex_state = 148}, - [10072] = {.lex_state = 235}, - [10073] = {.lex_state = 148}, - [10074] = {.lex_state = 0}, - [10075] = {.lex_state = 148}, - [10076] = {.lex_state = 148}, - [10077] = {.lex_state = 0}, - [10078] = {.lex_state = 0}, - [10079] = {.lex_state = 0}, - [10080] = {.lex_state = 0}, - [10081] = {.lex_state = 266}, - [10082] = {.lex_state = 0}, - [10083] = {.lex_state = 0}, - [10084] = {.lex_state = 0}, - [10085] = {.lex_state = 266}, - [10086] = {.lex_state = 266}, - [10087] = {.lex_state = 0}, - [10088] = {.lex_state = 0}, - [10089] = {.lex_state = 0}, - [10090] = {.lex_state = 235}, - [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}, - [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}, - [10106] = {.lex_state = 266}, - [10107] = {.lex_state = 0}, - [10108] = {.lex_state = 0}, - [10109] = {.lex_state = 235}, - [10110] = {.lex_state = 235}, - [10111] = {.lex_state = 235}, - [10112] = {.lex_state = 0}, - [10113] = {.lex_state = 0}, - [10114] = {.lex_state = 0}, - [10115] = {.lex_state = 235}, - [10116] = {.lex_state = 235}, - [10117] = {.lex_state = 0}, - [10118] = {.lex_state = 0}, - [10119] = {.lex_state = 266}, - [10120] = {.lex_state = 0}, - [10121] = {.lex_state = 0}, - [10122] = {.lex_state = 0}, - [10123] = {.lex_state = 0}, - [10124] = {.lex_state = 266}, - [10125] = {.lex_state = 266}, - [10126] = {.lex_state = 266}, - [10127] = {.lex_state = 266}, - [10128] = {.lex_state = 0}, - [10129] = {.lex_state = 0}, - [10130] = {.lex_state = 0}, - [10131] = {.lex_state = 0}, - [10132] = {.lex_state = 235}, - [10133] = {.lex_state = 0}, - [10134] = {.lex_state = 235}, - [10135] = {.lex_state = 0}, - [10136] = {.lex_state = 0}, - [10137] = {.lex_state = 266}, - [10138] = {.lex_state = 0}, - [10139] = {.lex_state = 0}, - [10140] = {.lex_state = 0}, - [10141] = {.lex_state = 0}, - [10142] = {.lex_state = 266}, - [10143] = {.lex_state = 0}, - [10144] = {.lex_state = 0}, - [10145] = {.lex_state = 0}, - [10146] = {.lex_state = 0}, - [10147] = {.lex_state = 0}, - [10148] = {.lex_state = 266}, - [10149] = {.lex_state = 0}, - [10150] = {.lex_state = 266}, - [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}, - [10158] = {.lex_state = 266}, - [10159] = {.lex_state = 0}, - [10160] = {.lex_state = 0}, - [10161] = {.lex_state = 0}, - [10162] = {.lex_state = 0}, - [10163] = {.lex_state = 0}, - [10164] = {.lex_state = 0}, - [10165] = {.lex_state = 0}, - [10166] = {.lex_state = 0}, - [10167] = {.lex_state = 0}, - [10168] = {.lex_state = 0}, - [10169] = {.lex_state = 0}, - [10170] = {.lex_state = 266}, - [10171] = {.lex_state = 266}, - [10172] = {.lex_state = 0}, - [10173] = {.lex_state = 0}, - [10174] = {.lex_state = 0}, - [10175] = {.lex_state = 0}, - [10176] = {.lex_state = 266}, - [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}, - [10184] = {.lex_state = 0}, - [10185] = {.lex_state = 0}, - [10186] = {.lex_state = 0}, - [10187] = {.lex_state = 0}, - [10188] = {.lex_state = 0}, - [10189] = {.lex_state = 0}, - [10190] = {.lex_state = 266}, - [10191] = {.lex_state = 266}, - [10192] = {.lex_state = 0}, - [10193] = {.lex_state = 235}, - [10194] = {.lex_state = 235}, - [10195] = {.lex_state = 266}, - [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}, - [10204] = {.lex_state = 0}, - [10205] = {.lex_state = 0}, - [10206] = {.lex_state = 266}, - [10207] = {.lex_state = 150}, - [10208] = {.lex_state = 438}, - [10209] = {.lex_state = 0}, - [10210] = {.lex_state = 438}, - [10211] = {.lex_state = 438}, - [10212] = {.lex_state = 0}, - [10213] = {.lex_state = 0}, - [10214] = {.lex_state = 438}, - [10215] = {.lex_state = 0}, - [10216] = {.lex_state = 0}, - [10217] = {.lex_state = 0}, - [10218] = {.lex_state = 438}, - [10219] = {.lex_state = 0}, - [10220] = {.lex_state = 0}, - [10221] = {.lex_state = 438}, - [10222] = {.lex_state = 0}, - [10223] = {.lex_state = 150}, - [10224] = {.lex_state = 0}, - [10225] = {.lex_state = 0}, - [10226] = {.lex_state = 0}, - [10227] = {.lex_state = 0}, - [10228] = {.lex_state = 0}, - [10229] = {.lex_state = 0}, - [10230] = {.lex_state = 0}, - [10231] = {.lex_state = 0}, - [10232] = {.lex_state = 0}, - [10233] = {.lex_state = 438}, - [10234] = {.lex_state = 0}, - [10235] = {.lex_state = 438}, - [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}, - [10244] = {.lex_state = 0}, - [10245] = {.lex_state = 0}, - [10246] = {.lex_state = 0}, - [10247] = {.lex_state = 438}, - [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}, - [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}, - [10268] = {.lex_state = 0}, - [10269] = {.lex_state = 438}, - [10270] = {.lex_state = 0}, - [10271] = {.lex_state = 0}, - [10272] = {.lex_state = 0}, - [10273] = {.lex_state = 0}, - [10274] = {.lex_state = 0}, - [10275] = {.lex_state = 0}, - [10276] = {.lex_state = 0}, - [10277] = {.lex_state = 150}, - [10278] = {.lex_state = 0}, - [10279] = {.lex_state = 0}, - [10280] = {.lex_state = 0}, - [10281] = {.lex_state = 0}, - [10282] = {.lex_state = 438}, - [10283] = {.lex_state = 235}, - [10284] = {.lex_state = 438}, - [10285] = {.lex_state = 266}, - [10286] = {.lex_state = 0}, - [10287] = {.lex_state = 0}, - [10288] = {.lex_state = 0}, - [10289] = {.lex_state = 0}, - [10290] = {.lex_state = 0}, - [10291] = {.lex_state = 0}, - [10292] = {.lex_state = 438}, - [10293] = {.lex_state = 235}, - [10294] = {.lex_state = 0}, - [10295] = {.lex_state = 0}, - [10296] = {.lex_state = 438}, - [10297] = {.lex_state = 0}, - [10298] = {.lex_state = 0}, - [10299] = {.lex_state = 0}, - [10300] = {.lex_state = 150}, - [10301] = {.lex_state = 438}, - [10302] = {.lex_state = 438}, - [10303] = {.lex_state = 0}, - [10304] = {.lex_state = 438}, - [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}, - [10312] = {.lex_state = 0}, - [10313] = {.lex_state = 0}, - [10314] = {.lex_state = 438}, - [10315] = {.lex_state = 438}, - [10316] = {.lex_state = 0}, - [10317] = {.lex_state = 0}, - [10318] = {.lex_state = 0}, - [10319] = {.lex_state = 0}, - [10320] = {.lex_state = 0}, - [10321] = {.lex_state = 0}, - [10322] = {.lex_state = 0}, - [10323] = {.lex_state = 0}, - [10324] = {.lex_state = 0}, - [10325] = {.lex_state = 0}, - [10326] = {.lex_state = 0}, - [10327] = {.lex_state = 438}, - [10328] = {.lex_state = 438}, - [10329] = {.lex_state = 0}, - [10330] = {.lex_state = 0}, - [10331] = {.lex_state = 0}, - [10332] = {.lex_state = 235}, - [10333] = {.lex_state = 0}, - [10334] = {.lex_state = 0}, - [10335] = {.lex_state = 0}, - [10336] = {.lex_state = 0}, - [10337] = {.lex_state = 0}, - [10338] = {.lex_state = 438}, - [10339] = {.lex_state = 438}, - [10340] = {.lex_state = 438}, - [10341] = {.lex_state = 0}, - [10342] = {.lex_state = 0}, - [10343] = {.lex_state = 0}, - [10344] = {.lex_state = 0}, - [10345] = {.lex_state = 0}, - [10346] = {.lex_state = 0}, - [10347] = {.lex_state = 0}, - [10348] = {.lex_state = 438}, - [10349] = {.lex_state = 0}, - [10350] = {.lex_state = 0}, - [10351] = {.lex_state = 0}, - [10352] = {.lex_state = 438}, - [10353] = {.lex_state = 0}, - [10354] = {.lex_state = 0}, - [10355] = {.lex_state = 0}, - [10356] = {.lex_state = 438}, - [10357] = {.lex_state = 0}, - [10358] = {.lex_state = 0}, - [10359] = {.lex_state = 0}, - [10360] = {.lex_state = 0}, - [10361] = {.lex_state = 0}, - [10362] = {.lex_state = 438}, - [10363] = {.lex_state = 0}, - [10364] = {.lex_state = 0}, - [10365] = {.lex_state = 0}, - [10366] = {.lex_state = 0}, - [10367] = {.lex_state = 0}, - [10368] = {.lex_state = 438}, - [10369] = {.lex_state = 0}, - [10370] = {.lex_state = 0}, - [10371] = {.lex_state = 438}, - [10372] = {.lex_state = 438}, - [10373] = {.lex_state = 438}, - [10374] = {.lex_state = 438}, - [10375] = {.lex_state = 0}, - [10376] = {.lex_state = 0}, - [10377] = {.lex_state = 0}, - [10378] = {.lex_state = 0}, - [10379] = {.lex_state = 438}, - [10380] = {.lex_state = 438}, - [10381] = {.lex_state = 0}, - [10382] = {.lex_state = 438}, - [10383] = {.lex_state = 0}, - [10384] = {.lex_state = 438}, - [10385] = {.lex_state = 0}, - [10386] = {.lex_state = 0}, - [10387] = {.lex_state = 438}, - [10388] = {.lex_state = 438}, - [10389] = {.lex_state = 438}, - [10390] = {.lex_state = 438}, - [10391] = {.lex_state = 235}, - [10392] = {.lex_state = 438}, - [10393] = {.lex_state = 0}, - [10394] = {.lex_state = 438}, - [10395] = {.lex_state = 0}, - [10396] = {.lex_state = 0}, - [10397] = {.lex_state = 438}, - [10398] = {.lex_state = 438}, - [10399] = {.lex_state = 0}, - [10400] = {.lex_state = 0}, - [10401] = {.lex_state = 0}, - [10402] = {.lex_state = 0}, - [10403] = {.lex_state = 438}, - [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}, - [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}, - [10420] = {.lex_state = 0}, - [10421] = {.lex_state = 150}, - [10422] = {.lex_state = 0}, - [10423] = {.lex_state = 0}, - [10424] = {.lex_state = 0}, - [10425] = {.lex_state = 0}, - [10426] = {.lex_state = 0}, - [10427] = {.lex_state = 0}, - [10428] = {.lex_state = 0}, - [10429] = {.lex_state = 0}, - [10430] = {.lex_state = 0}, - [10431] = {.lex_state = 0}, - [10432] = {.lex_state = 0}, - [10433] = {.lex_state = 438}, - [10434] = {.lex_state = 438}, - [10435] = {.lex_state = 0}, - [10436] = {.lex_state = 0}, - [10437] = {.lex_state = 438}, - [10438] = {.lex_state = 438}, - [10439] = {.lex_state = 438}, - [10440] = {.lex_state = 150}, - [10441] = {.lex_state = 235}, - [10442] = {.lex_state = 0}, - [10443] = {.lex_state = 0}, - [10444] = {.lex_state = 0}, - [10445] = {.lex_state = 0}, - [10446] = {.lex_state = 0}, - [10447] = {.lex_state = 438}, - [10448] = {.lex_state = 0}, - [10449] = {.lex_state = 0}, - [10450] = {.lex_state = 438}, - [10451] = {.lex_state = 0}, - [10452] = {.lex_state = 0}, - [10453] = {.lex_state = 0}, - [10454] = {.lex_state = 0}, - [10455] = {.lex_state = 0}, - [10456] = {.lex_state = 0}, - [10457] = {.lex_state = 0}, - [10458] = {.lex_state = 0}, - [10459] = {.lex_state = 266}, - [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}, - [10467] = {.lex_state = 0}, - [10468] = {.lex_state = 0}, - [10469] = {.lex_state = 0}, - [10470] = {.lex_state = 0}, - [10471] = {.lex_state = 438}, - [10472] = {.lex_state = 266}, - [10473] = {.lex_state = 0}, - [10474] = {.lex_state = 150}, - [10475] = {.lex_state = 0}, - [10476] = {.lex_state = 0}, - [10477] = {.lex_state = 150}, - [10478] = {.lex_state = 0}, - [10479] = {.lex_state = 438}, - [10480] = {.lex_state = 0}, - [10481] = {.lex_state = 0}, - [10482] = {.lex_state = 0}, - [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}, - [10490] = {.lex_state = 0}, - [10491] = {.lex_state = 0}, - [10492] = {.lex_state = 0}, - [10493] = {.lex_state = 438}, - [10494] = {.lex_state = 0}, - [10495] = {.lex_state = 0}, - [10496] = {.lex_state = 0}, - [10497] = {.lex_state = 266}, - [10498] = {.lex_state = 0}, - [10499] = {.lex_state = 0}, - [10500] = {.lex_state = 438}, - [10501] = {.lex_state = 438}, - [10502] = {.lex_state = 0}, - [10503] = {.lex_state = 0}, - [10504] = {.lex_state = 0}, - [10505] = {.lex_state = 0}, - [10506] = {.lex_state = 0}, - [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}, - [10514] = {.lex_state = 0}, - [10515] = {.lex_state = 0}, - [10516] = {.lex_state = 0}, - [10517] = {.lex_state = 0}, - [10518] = {.lex_state = 0}, - [10519] = {.lex_state = 150}, - [10520] = {.lex_state = 0}, - [10521] = {.lex_state = 438, .external_lex_state = 2}, - [10522] = {.lex_state = 0}, - [10523] = {.lex_state = 0}, - [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}, - [10530] = {.lex_state = 438}, - [10531] = {.lex_state = 0}, - [10532] = {.lex_state = 438}, - [10533] = {.lex_state = 0}, - [10534] = {.lex_state = 0}, - [10535] = {.lex_state = 0}, - [10536] = {.lex_state = 438}, - [10537] = {.lex_state = 0}, - [10538] = {.lex_state = 438}, - [10539] = {.lex_state = 0}, - [10540] = {.lex_state = 438}, - [10541] = {.lex_state = 0}, - [10542] = {.lex_state = 0}, - [10543] = {.lex_state = 0}, - [10544] = {.lex_state = 0}, - [10545] = {.lex_state = 0}, - [10546] = {.lex_state = 0}, - [10547] = {.lex_state = 0}, - [10548] = {.lex_state = 438}, - [10549] = {.lex_state = 0}, - [10550] = {.lex_state = 0}, - [10551] = {.lex_state = 0}, - [10552] = {.lex_state = 438}, + [9956] = {.lex_state = 366}, + [9957] = {.lex_state = 366}, + [9958] = {.lex_state = 291}, + [9959] = {.lex_state = 291}, + [9960] = {.lex_state = 290}, + [9961] = {.lex_state = 366}, + [9962] = {.lex_state = 291}, + [9963] = {.lex_state = 294}, + [9964] = {.lex_state = 294}, + [9965] = {.lex_state = 291}, + [9966] = {.lex_state = 294}, + [9967] = {.lex_state = 366}, + [9968] = {.lex_state = 290}, + [9969] = {.lex_state = 291}, + [9970] = {.lex_state = 290}, + [9971] = {.lex_state = 342}, + [9972] = {.lex_state = 342}, + [9973] = {.lex_state = 342}, + [9974] = {.lex_state = 290}, + [9975] = {.lex_state = 288}, + [9976] = {.lex_state = 288}, + [9977] = {.lex_state = 291}, + [9978] = {.lex_state = 290}, + [9979] = {.lex_state = 365}, + [9980] = {.lex_state = 370}, + [9981] = {.lex_state = 366}, + [9982] = {.lex_state = 366}, + [9983] = {.lex_state = 363}, + [9984] = {.lex_state = 342}, + [9985] = {.lex_state = 288}, + [9986] = {.lex_state = 288}, + [9987] = {.lex_state = 291}, + [9988] = {.lex_state = 342}, + [9989] = {.lex_state = 327}, + [9990] = {.lex_state = 288}, + [9991] = {.lex_state = 359}, + [9992] = {.lex_state = 327}, + [9993] = {.lex_state = 327}, + [9994] = {.lex_state = 342}, + [9995] = {.lex_state = 327}, + [9996] = {.lex_state = 342}, + [9997] = {.lex_state = 288}, + [9998] = {.lex_state = 288}, + [9999] = {.lex_state = 342}, + [10000] = {.lex_state = 291}, + [10001] = {.lex_state = 342}, + [10002] = {.lex_state = 291}, + [10003] = {.lex_state = 365}, + [10004] = {.lex_state = 288}, + [10005] = {.lex_state = 291}, + [10006] = {.lex_state = 288}, + [10007] = {.lex_state = 366}, + [10008] = {.lex_state = 288}, + [10009] = {.lex_state = 291}, + [10010] = {.lex_state = 288}, + [10011] = {.lex_state = 365}, + [10012] = {.lex_state = 291}, + [10013] = {.lex_state = 365}, + [10014] = {.lex_state = 290}, + [10015] = {.lex_state = 327}, + [10016] = {.lex_state = 291}, + [10017] = {.lex_state = 342}, + [10018] = {.lex_state = 365}, + [10019] = {.lex_state = 366}, + [10020] = {.lex_state = 291}, + [10021] = {.lex_state = 291}, + [10022] = {.lex_state = 370}, + [10023] = {.lex_state = 291}, + [10024] = {.lex_state = 288}, + [10025] = {.lex_state = 291}, + [10026] = {.lex_state = 342}, + [10027] = {.lex_state = 370}, + [10028] = {.lex_state = 370}, + [10029] = {.lex_state = 359}, + [10030] = {.lex_state = 359}, + [10031] = {.lex_state = 291}, + [10032] = {.lex_state = 291}, + [10033] = {.lex_state = 366}, + [10034] = {.lex_state = 327}, + [10035] = {.lex_state = 291}, + [10036] = {.lex_state = 363}, + [10037] = {.lex_state = 291}, + [10038] = {.lex_state = 290}, + [10039] = {.lex_state = 287}, + [10040] = {.lex_state = 370}, + [10041] = {.lex_state = 288}, + [10042] = {.lex_state = 288}, + [10043] = {.lex_state = 370}, + [10044] = {.lex_state = 342}, + [10045] = {.lex_state = 366}, + [10046] = {.lex_state = 366}, + [10047] = {.lex_state = 290}, + [10048] = {.lex_state = 342}, + [10049] = {.lex_state = 327}, + [10050] = {.lex_state = 342}, + [10051] = {.lex_state = 291}, + [10052] = {.lex_state = 327}, + [10053] = {.lex_state = 342}, + [10054] = {.lex_state = 370}, + [10055] = {.lex_state = 290}, + [10056] = {.lex_state = 359}, + [10057] = {.lex_state = 291}, + [10058] = {.lex_state = 290}, + [10059] = {.lex_state = 291}, + [10060] = {.lex_state = 290}, + [10061] = {.lex_state = 342}, + [10062] = {.lex_state = 370}, + [10063] = {.lex_state = 291}, + [10064] = {.lex_state = 321}, + [10065] = {.lex_state = 327}, + [10066] = {.lex_state = 290}, + [10067] = {.lex_state = 327}, + [10068] = {.lex_state = 321}, + [10069] = {.lex_state = 291}, + [10070] = {.lex_state = 321}, + [10071] = {.lex_state = 370}, + [10072] = {.lex_state = 370}, + [10073] = {.lex_state = 370}, + [10074] = {.lex_state = 366}, + [10075] = {.lex_state = 327}, + [10076] = {.lex_state = 321}, + [10077] = {.lex_state = 327}, + [10078] = {.lex_state = 321}, + [10079] = {.lex_state = 290}, + [10080] = {.lex_state = 321}, + [10081] = {.lex_state = 321}, + [10082] = {.lex_state = 321}, + [10083] = {.lex_state = 363}, + [10084] = {.lex_state = 321}, + [10085] = {.lex_state = 327}, + [10086] = {.lex_state = 321}, + [10087] = {.lex_state = 264}, + [10088] = {.lex_state = 291}, + [10089] = {.lex_state = 321}, + [10090] = {.lex_state = 290}, + [10091] = {.lex_state = 327}, + [10092] = {.lex_state = 370}, + [10093] = {.lex_state = 327}, + [10094] = {.lex_state = 327}, + [10095] = {.lex_state = 363}, + [10096] = {.lex_state = 327}, + [10097] = {.lex_state = 290}, + [10098] = {.lex_state = 264}, + [10099] = {.lex_state = 321}, + [10100] = {.lex_state = 290}, + [10101] = {.lex_state = 290}, + [10102] = {.lex_state = 366}, + [10103] = {.lex_state = 293}, + [10104] = {.lex_state = 322}, + [10105] = {.lex_state = 366}, + [10106] = {.lex_state = 293}, + [10107] = {.lex_state = 359}, + [10108] = {.lex_state = 293}, + [10109] = {.lex_state = 359}, + [10110] = {.lex_state = 322}, + [10111] = {.lex_state = 293}, + [10112] = {.lex_state = 366}, + [10113] = {.lex_state = 293}, + [10114] = {.lex_state = 322}, + [10115] = {.lex_state = 324}, + [10116] = {.lex_state = 322}, + [10117] = {.lex_state = 366}, + [10118] = {.lex_state = 342}, + [10119] = {.lex_state = 322}, + [10120] = {.lex_state = 293}, + [10121] = {.lex_state = 342}, + [10122] = {.lex_state = 366}, + [10123] = {.lex_state = 322}, + [10124] = {.lex_state = 293}, + [10125] = {.lex_state = 359}, + [10126] = {.lex_state = 293}, + [10127] = {.lex_state = 324}, + [10128] = {.lex_state = 322}, + [10129] = {.lex_state = 322}, + [10130] = {.lex_state = 359}, + [10131] = {.lex_state = 288}, + [10132] = {.lex_state = 363}, + [10133] = {.lex_state = 291}, + [10134] = {.lex_state = 466}, + [10135] = {.lex_state = 291}, + [10136] = {.lex_state = 288}, + [10137] = {.lex_state = 466}, + [10138] = {.lex_state = 370}, + [10139] = {.lex_state = 466}, + [10140] = {.lex_state = 288}, + [10141] = {.lex_state = 288}, + [10142] = {.lex_state = 321}, + [10143] = {.lex_state = 327}, + [10144] = {.lex_state = 290}, + [10145] = {.lex_state = 291}, + [10146] = {.lex_state = 327}, + [10147] = {.lex_state = 291}, + [10148] = {.lex_state = 291}, + [10149] = {.lex_state = 290}, + [10150] = {.lex_state = 291}, + [10151] = {.lex_state = 288}, + [10152] = {.lex_state = 370}, + [10153] = {.lex_state = 291}, + [10154] = {.lex_state = 290}, + [10155] = {.lex_state = 291}, + [10156] = {.lex_state = 291}, + [10157] = {.lex_state = 370}, + [10158] = {.lex_state = 288}, + [10159] = {.lex_state = 291}, + [10160] = {.lex_state = 466}, + [10161] = {.lex_state = 370}, + [10162] = {.lex_state = 327}, + [10163] = {.lex_state = 288}, + [10164] = {.lex_state = 288}, + [10165] = {.lex_state = 291}, + [10166] = {.lex_state = 288}, + [10167] = {.lex_state = 466}, + [10168] = {.lex_state = 291}, + [10169] = {.lex_state = 291}, + [10170] = {.lex_state = 262}, + [10171] = {.lex_state = 291}, + [10172] = {.lex_state = 288}, + [10173] = {.lex_state = 288}, + [10174] = {.lex_state = 291}, + [10175] = {.lex_state = 291}, + [10176] = {.lex_state = 291}, + [10177] = {.lex_state = 291}, + [10178] = {.lex_state = 291}, + [10179] = {.lex_state = 291}, + [10180] = {.lex_state = 288}, + [10181] = {.lex_state = 291}, + [10182] = {.lex_state = 291}, + [10183] = {.lex_state = 290}, + [10184] = {.lex_state = 291}, + [10185] = {.lex_state = 466}, + [10186] = {.lex_state = 466}, + [10187] = {.lex_state = 291}, + [10188] = {.lex_state = 291}, + [10189] = {.lex_state = 291}, + [10190] = {.lex_state = 291}, + [10191] = {.lex_state = 291}, + [10192] = {.lex_state = 288}, + [10193] = {.lex_state = 291}, + [10194] = {.lex_state = 262}, + [10195] = {.lex_state = 327}, + [10196] = {.lex_state = 291}, + [10197] = {.lex_state = 291}, + [10198] = {.lex_state = 466}, + [10199] = {.lex_state = 291}, + [10200] = {.lex_state = 370}, + [10201] = {.lex_state = 291}, + [10202] = {.lex_state = 291}, + [10203] = {.lex_state = 291}, + [10204] = {.lex_state = 291}, + [10205] = {.lex_state = 288}, + [10206] = {.lex_state = 288}, + [10207] = {.lex_state = 288}, + [10208] = {.lex_state = 291}, + [10209] = {.lex_state = 363}, + [10210] = {.lex_state = 288}, + [10211] = {.lex_state = 288}, + [10212] = {.lex_state = 288}, + [10213] = {.lex_state = 288}, + [10214] = {.lex_state = 332}, + [10215] = {.lex_state = 288}, + [10216] = {.lex_state = 288}, + [10217] = {.lex_state = 288}, + [10218] = {.lex_state = 288}, + [10219] = {.lex_state = 332}, + [10220] = {.lex_state = 363}, + [10221] = {.lex_state = 288}, + [10222] = {.lex_state = 291}, + [10223] = {.lex_state = 321}, + [10224] = {.lex_state = 370}, + [10225] = {.lex_state = 291}, + [10226] = {.lex_state = 291}, + [10227] = {.lex_state = 291}, + [10228] = {.lex_state = 321}, + [10229] = {.lex_state = 332}, + [10230] = {.lex_state = 370}, + [10231] = {.lex_state = 363}, + [10232] = {.lex_state = 363}, + [10233] = {.lex_state = 288}, + [10234] = {.lex_state = 288}, + [10235] = {.lex_state = 332}, + [10236] = {.lex_state = 288}, + [10237] = {.lex_state = 332}, + [10238] = {.lex_state = 291}, + [10239] = {.lex_state = 288}, + [10240] = {.lex_state = 288}, + [10241] = {.lex_state = 321}, + [10242] = {.lex_state = 291}, + [10243] = {.lex_state = 363}, + [10244] = {.lex_state = 291}, + [10245] = {.lex_state = 288}, + [10246] = {.lex_state = 321}, + [10247] = {.lex_state = 363}, + [10248] = {.lex_state = 288}, + [10249] = {.lex_state = 466}, + [10250] = {.lex_state = 291}, + [10251] = {.lex_state = 291}, + [10252] = {.lex_state = 332}, + [10253] = {.lex_state = 288}, + [10254] = {.lex_state = 466}, + [10255] = {.lex_state = 332}, + [10256] = {.lex_state = 370}, + [10257] = {.lex_state = 288}, + [10258] = {.lex_state = 363}, + [10259] = {.lex_state = 288}, + [10260] = {.lex_state = 291}, + [10261] = {.lex_state = 321}, + [10262] = {.lex_state = 291}, + [10263] = {.lex_state = 291}, + [10264] = {.lex_state = 288}, + [10265] = {.lex_state = 291}, + [10266] = {.lex_state = 288}, + [10267] = {.lex_state = 332}, + [10268] = {.lex_state = 321}, + [10269] = {.lex_state = 466}, + [10270] = {.lex_state = 291}, + [10271] = {.lex_state = 288}, + [10272] = {.lex_state = 288}, + [10273] = {.lex_state = 288}, + [10274] = {.lex_state = 288}, + [10275] = {.lex_state = 291}, + [10276] = {.lex_state = 370}, + [10277] = {.lex_state = 363}, + [10278] = {.lex_state = 291}, + [10279] = {.lex_state = 288}, + [10280] = {.lex_state = 291}, + [10281] = {.lex_state = 288}, + [10282] = {.lex_state = 291}, + [10283] = {.lex_state = 291}, + [10284] = {.lex_state = 288}, + [10285] = {.lex_state = 288}, + [10286] = {.lex_state = 288}, + [10287] = {.lex_state = 288}, + [10288] = {.lex_state = 309}, + [10289] = {.lex_state = 309}, + [10290] = {.lex_state = 363}, + [10291] = {.lex_state = 287}, + [10292] = {.lex_state = 288}, + [10293] = {.lex_state = 366}, + [10294] = {.lex_state = 288}, + [10295] = {.lex_state = 363}, + [10296] = {.lex_state = 288}, + [10297] = {.lex_state = 288}, + [10298] = {.lex_state = 363}, + [10299] = {.lex_state = 288}, + [10300] = {.lex_state = 287}, + [10301] = {.lex_state = 288}, + [10302] = {.lex_state = 287}, + [10303] = {.lex_state = 288}, + [10304] = {.lex_state = 288}, + [10305] = {.lex_state = 288}, + [10306] = {.lex_state = 288}, + [10307] = {.lex_state = 287}, + [10308] = {.lex_state = 288}, + [10309] = {.lex_state = 287}, + [10310] = {.lex_state = 288}, + [10311] = {.lex_state = 288}, + [10312] = {.lex_state = 288}, + [10313] = {.lex_state = 288}, + [10314] = {.lex_state = 288}, + [10315] = {.lex_state = 288}, + [10316] = {.lex_state = 288}, + [10317] = {.lex_state = 288}, + [10318] = {.lex_state = 288}, + [10319] = {.lex_state = 363}, + [10320] = {.lex_state = 288}, + [10321] = {.lex_state = 288}, + [10322] = {.lex_state = 309}, + [10323] = {.lex_state = 366}, + [10324] = {.lex_state = 288}, + [10325] = {.lex_state = 288}, + [10326] = {.lex_state = 288}, + [10327] = {.lex_state = 288}, + [10328] = {.lex_state = 288}, + [10329] = {.lex_state = 288}, + [10330] = {.lex_state = 288}, + [10331] = {.lex_state = 288}, + [10332] = {.lex_state = 288}, + [10333] = {.lex_state = 288}, + [10334] = {.lex_state = 288}, + [10335] = {.lex_state = 288}, + [10336] = {.lex_state = 363}, + [10337] = {.lex_state = 288}, + [10338] = {.lex_state = 0}, + [10339] = {.lex_state = 288}, + [10340] = {.lex_state = 288}, + [10341] = {.lex_state = 363}, + [10342] = {.lex_state = 288}, + [10343] = {.lex_state = 287}, + [10344] = {.lex_state = 288}, + [10345] = {.lex_state = 366}, + [10346] = {.lex_state = 366}, + [10347] = {.lex_state = 363}, + [10348] = {.lex_state = 287}, + [10349] = {.lex_state = 290}, + [10350] = {.lex_state = 290}, + [10351] = {.lex_state = 290}, + [10352] = {.lex_state = 0}, + [10353] = {.lex_state = 309}, + [10354] = {.lex_state = 290}, + [10355] = {.lex_state = 287}, + [10356] = {.lex_state = 290}, + [10357] = {.lex_state = 287}, + [10358] = {.lex_state = 288}, + [10359] = {.lex_state = 287}, + [10360] = {.lex_state = 287}, + [10361] = {.lex_state = 363}, + [10362] = {.lex_state = 288}, + [10363] = {.lex_state = 363}, + [10364] = {.lex_state = 290}, + [10365] = {.lex_state = 290}, + [10366] = {.lex_state = 288}, + [10367] = {.lex_state = 288}, + [10368] = {.lex_state = 288}, + [10369] = {.lex_state = 288}, + [10370] = {.lex_state = 309}, + [10371] = {.lex_state = 309}, + [10372] = {.lex_state = 363}, + [10373] = {.lex_state = 363}, + [10374] = {.lex_state = 290}, + [10375] = {.lex_state = 288}, + [10376] = {.lex_state = 363}, + [10377] = {.lex_state = 363}, + [10378] = {.lex_state = 288}, + [10379] = {.lex_state = 288}, + [10380] = {.lex_state = 288}, + [10381] = {.lex_state = 288}, + [10382] = {.lex_state = 288}, + [10383] = {.lex_state = 288}, + [10384] = {.lex_state = 288}, + [10385] = {.lex_state = 288}, + [10386] = {.lex_state = 288}, + [10387] = {.lex_state = 288}, + [10388] = {.lex_state = 363}, + [10389] = {.lex_state = 288}, + [10390] = {.lex_state = 288}, + [10391] = {.lex_state = 288}, + [10392] = {.lex_state = 288}, + [10393] = {.lex_state = 288}, + [10394] = {.lex_state = 288}, + [10395] = {.lex_state = 288}, + [10396] = {.lex_state = 288}, + [10397] = {.lex_state = 293}, + [10398] = {.lex_state = 288}, + [10399] = {.lex_state = 466}, + [10400] = {.lex_state = 288}, + [10401] = {.lex_state = 288}, + [10402] = {.lex_state = 288}, + [10403] = {.lex_state = 288}, + [10404] = {.lex_state = 288}, + [10405] = {.lex_state = 288}, + [10406] = {.lex_state = 293}, + [10407] = {.lex_state = 288}, + [10408] = {.lex_state = 288}, + [10409] = {.lex_state = 288}, + [10410] = {.lex_state = 288}, + [10411] = {.lex_state = 288}, + [10412] = {.lex_state = 363}, + [10413] = {.lex_state = 288}, + [10414] = {.lex_state = 253}, + [10415] = {.lex_state = 288}, + [10416] = {.lex_state = 291}, + [10417] = {.lex_state = 466}, + [10418] = {.lex_state = 288}, + [10419] = {.lex_state = 288}, + [10420] = {.lex_state = 293}, + [10421] = {.lex_state = 288}, + [10422] = {.lex_state = 288}, + [10423] = {.lex_state = 363}, + [10424] = {.lex_state = 291}, + [10425] = {.lex_state = 288}, + [10426] = {.lex_state = 288}, + [10427] = {.lex_state = 288}, + [10428] = {.lex_state = 293}, + [10429] = {.lex_state = 466}, + [10430] = {.lex_state = 288}, + [10431] = {.lex_state = 288}, + [10432] = {.lex_state = 288}, + [10433] = {.lex_state = 288}, + [10434] = {.lex_state = 288}, + [10435] = {.lex_state = 288}, + [10436] = {.lex_state = 288}, + [10437] = {.lex_state = 288}, + [10438] = {.lex_state = 253}, + [10439] = {.lex_state = 288}, + [10440] = {.lex_state = 288}, + [10441] = {.lex_state = 288}, + [10442] = {.lex_state = 293}, + [10443] = {.lex_state = 288}, + [10444] = {.lex_state = 288}, + [10445] = {.lex_state = 363}, + [10446] = {.lex_state = 466}, + [10447] = {.lex_state = 291}, + [10448] = {.lex_state = 288}, + [10449] = {.lex_state = 466}, + [10450] = {.lex_state = 365}, + [10451] = {.lex_state = 288}, + [10452] = {.lex_state = 288}, + [10453] = {.lex_state = 288}, + [10454] = {.lex_state = 293}, + [10455] = {.lex_state = 293}, + [10456] = {.lex_state = 293}, + [10457] = {.lex_state = 288}, + [10458] = {.lex_state = 288}, + [10459] = {.lex_state = 466}, + [10460] = {.lex_state = 288}, + [10461] = {.lex_state = 293}, + [10462] = {.lex_state = 291}, + [10463] = {.lex_state = 288}, + [10464] = {.lex_state = 288}, + [10465] = {.lex_state = 288}, + [10466] = {.lex_state = 288}, + [10467] = {.lex_state = 291}, + [10468] = {.lex_state = 288}, + [10469] = {.lex_state = 288}, + [10470] = {.lex_state = 288}, + [10471] = {.lex_state = 363}, + [10472] = {.lex_state = 466}, + [10473] = {.lex_state = 288}, + [10474] = {.lex_state = 288}, + [10475] = {.lex_state = 293}, + [10476] = {.lex_state = 288}, + [10477] = {.lex_state = 363}, + [10478] = {.lex_state = 288}, + [10479] = {.lex_state = 288}, + [10480] = {.lex_state = 288}, + [10481] = {.lex_state = 293}, + [10482] = {.lex_state = 288}, + [10483] = {.lex_state = 288}, + [10484] = {.lex_state = 288}, + [10485] = {.lex_state = 288}, + [10486] = {.lex_state = 363}, + [10487] = {.lex_state = 288}, + [10488] = {.lex_state = 293}, + [10489] = {.lex_state = 288}, + [10490] = {.lex_state = 291}, + [10491] = {.lex_state = 363}, + [10492] = {.lex_state = 288}, + [10493] = {.lex_state = 366}, + [10494] = {.lex_state = 363}, + [10495] = {.lex_state = 288}, + [10496] = {.lex_state = 466}, + [10497] = {.lex_state = 363}, + [10498] = {.lex_state = 293}, + [10499] = {.lex_state = 363}, + [10500] = {.lex_state = 363}, + [10501] = {.lex_state = 288}, + [10502] = {.lex_state = 363}, + [10503] = {.lex_state = 288}, + [10504] = {.lex_state = 363}, + [10505] = {.lex_state = 363}, + [10506] = {.lex_state = 288}, + [10507] = {.lex_state = 293}, + [10508] = {.lex_state = 288}, + [10509] = {.lex_state = 293}, + [10510] = {.lex_state = 321}, + [10511] = {.lex_state = 321}, + [10512] = {.lex_state = 321}, + [10513] = {.lex_state = 321}, + [10514] = {.lex_state = 321}, + [10515] = {.lex_state = 321}, + [10516] = {.lex_state = 321}, + [10517] = {.lex_state = 321}, + [10518] = {.lex_state = 321}, + [10519] = {.lex_state = 321}, + [10520] = {.lex_state = 293}, + [10521] = {.lex_state = 291}, + [10522] = {.lex_state = 321}, + [10523] = {.lex_state = 321}, + [10524] = {.lex_state = 288}, + [10525] = {.lex_state = 288}, + [10526] = {.lex_state = 288}, + [10527] = {.lex_state = 288}, + [10528] = {.lex_state = 288}, + [10529] = {.lex_state = 293}, + [10530] = {.lex_state = 288}, + [10531] = {.lex_state = 293}, + [10532] = {.lex_state = 288}, + [10533] = {.lex_state = 366}, + [10534] = {.lex_state = 466}, + [10535] = {.lex_state = 288}, + [10536] = {.lex_state = 466}, + [10537] = {.lex_state = 466}, + [10538] = {.lex_state = 288}, + [10539] = {.lex_state = 288}, + [10540] = {.lex_state = 288}, + [10541] = {.lex_state = 288}, + [10542] = {.lex_state = 288}, + [10543] = {.lex_state = 291}, + [10544] = {.lex_state = 291}, + [10545] = {.lex_state = 293}, + [10546] = {.lex_state = 293}, + [10547] = {.lex_state = 146}, + [10548] = {.lex_state = 146}, + [10549] = {.lex_state = 321}, + [10550] = {.lex_state = 466}, + [10551] = {.lex_state = 466}, + [10552] = {.lex_state = 288}, [10553] = {.lex_state = 0}, - [10554] = {.lex_state = 438}, - [10555] = {.lex_state = 0}, + [10554] = {.lex_state = 466}, + [10555] = {.lex_state = 291}, [10556] = {.lex_state = 0}, - [10557] = {.lex_state = 150}, - [10558] = {.lex_state = 266}, - [10559] = {.lex_state = 150}, - [10560] = {.lex_state = 0}, - [10561] = {.lex_state = 150}, - [10562] = {.lex_state = 0}, - [10563] = {.lex_state = 0}, - [10564] = {.lex_state = 0}, - [10565] = {.lex_state = 150}, + [10557] = {.lex_state = 466}, + [10558] = {.lex_state = 0}, + [10559] = {.lex_state = 148}, + [10560] = {.lex_state = 466}, + [10561] = {.lex_state = 146}, + [10562] = {.lex_state = 288}, + [10563] = {.lex_state = 291}, + [10564] = {.lex_state = 291}, + [10565] = {.lex_state = 0}, [10566] = {.lex_state = 0}, - [10567] = {.lex_state = 0}, - [10568] = {.lex_state = 0}, - [10569] = {.lex_state = 0}, - [10570] = {.lex_state = 0}, + [10567] = {.lex_state = 148}, + [10568] = {.lex_state = 466}, + [10569] = {.lex_state = 466}, + [10570] = {.lex_state = 291}, [10571] = {.lex_state = 0}, [10572] = {.lex_state = 0}, - [10573] = {.lex_state = 0}, - [10574] = {.lex_state = 0}, - [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}, - [10583] = {.lex_state = 0}, - [10584] = {.lex_state = 438, .external_lex_state = 2}, - [10585] = {.lex_state = 0}, - [10586] = {.lex_state = 0}, - [10587] = {.lex_state = 0}, - [10588] = {.lex_state = 438}, - [10589] = {.lex_state = 438, .external_lex_state = 2}, - [10590] = {.lex_state = 0}, - [10591] = {.lex_state = 0}, + [10573] = {.lex_state = 146}, + [10574] = {.lex_state = 146}, + [10575] = {.lex_state = 146}, + [10576] = {.lex_state = 288}, + [10577] = {.lex_state = 146}, + [10578] = {.lex_state = 466}, + [10579] = {.lex_state = 288}, + [10580] = {.lex_state = 288}, + [10581] = {.lex_state = 146}, + [10582] = {.lex_state = 466}, + [10583] = {.lex_state = 146}, + [10584] = {.lex_state = 291}, + [10585] = {.lex_state = 149}, + [10586] = {.lex_state = 291}, + [10587] = {.lex_state = 466}, + [10588] = {.lex_state = 466}, + [10589] = {.lex_state = 0}, + [10590] = {.lex_state = 291}, + [10591] = {.lex_state = 466}, [10592] = {.lex_state = 0}, - [10593] = {.lex_state = 438, .external_lex_state = 2}, - [10594] = {.lex_state = 0}, - [10595] = {.lex_state = 0}, - [10596] = {.lex_state = 438, .external_lex_state = 2}, - [10597] = {.lex_state = 438}, - [10598] = {.lex_state = 438, .external_lex_state = 2}, - [10599] = {.lex_state = 0}, - [10600] = {.lex_state = 0}, - [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}, - [10614] = {.lex_state = 0}, + [10593] = {.lex_state = 291}, + [10594] = {.lex_state = 146}, + [10595] = {.lex_state = 466}, + [10596] = {.lex_state = 288}, + [10597] = {.lex_state = 146}, + [10598] = {.lex_state = 288}, + [10599] = {.lex_state = 466}, + [10600] = {.lex_state = 288}, + [10601] = {.lex_state = 291}, + [10602] = {.lex_state = 149}, + [10603] = {.lex_state = 146}, + [10604] = {.lex_state = 253}, + [10605] = {.lex_state = 288}, + [10606] = {.lex_state = 291}, + [10607] = {.lex_state = 291}, + [10608] = {.lex_state = 288}, + [10609] = {.lex_state = 0}, + [10610] = {.lex_state = 291}, + [10611] = {.lex_state = 0}, + [10612] = {.lex_state = 149}, + [10613] = {.lex_state = 146}, + [10614] = {.lex_state = 146}, [10615] = {.lex_state = 0}, - [10616] = {.lex_state = 438}, - [10617] = {.lex_state = 0}, - [10618] = {.lex_state = 438}, - [10619] = {.lex_state = 0}, + [10616] = {.lex_state = 146}, + [10617] = {.lex_state = 466}, + [10618] = {.lex_state = 149}, + [10619] = {.lex_state = 466}, [10620] = {.lex_state = 0}, - [10621] = {.lex_state = 0}, - [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}, - [10629] = {.lex_state = 0}, - [10630] = {.lex_state = 237}, - [10631] = {.lex_state = 0}, - [10632] = {.lex_state = 0}, - [10633] = {.lex_state = 438}, - [10634] = {.lex_state = 151}, - [10635] = {.lex_state = 0}, - [10636] = {.lex_state = 0}, - [10637] = {.lex_state = 0}, - [10638] = {.lex_state = 266}, - [10639] = {.lex_state = 151}, - [10640] = {.lex_state = 0}, + [10621] = {.lex_state = 146}, + [10622] = {.lex_state = 466}, + [10623] = {.lex_state = 291}, + [10624] = {.lex_state = 146}, + [10625] = {.lex_state = 0}, + [10626] = {.lex_state = 291}, + [10627] = {.lex_state = 148}, + [10628] = {.lex_state = 146}, + [10629] = {.lex_state = 291}, + [10630] = {.lex_state = 291}, + [10631] = {.lex_state = 466}, + [10632] = {.lex_state = 291}, + [10633] = {.lex_state = 148}, + [10634] = {.lex_state = 466}, + [10635] = {.lex_state = 291}, + [10636] = {.lex_state = 146}, + [10637] = {.lex_state = 466}, + [10638] = {.lex_state = 466}, + [10639] = {.lex_state = 291}, + [10640] = {.lex_state = 291}, [10641] = {.lex_state = 0}, [10642] = {.lex_state = 0}, - [10643] = {.lex_state = 0}, + [10643] = {.lex_state = 466}, [10644] = {.lex_state = 0}, - [10645] = {.lex_state = 266}, - [10646] = {.lex_state = 0}, - [10647] = {.lex_state = 0}, - [10648] = {.lex_state = 266}, - [10649] = {.lex_state = 151}, - [10650] = {.lex_state = 0}, - [10651] = {.lex_state = 0}, - [10652] = {.lex_state = 237}, - [10653] = {.lex_state = 0}, - [10654] = {.lex_state = 0}, - [10655] = {.lex_state = 266}, - [10656] = {.lex_state = 0}, - [10657] = {.lex_state = 0}, - [10658] = {.lex_state = 266}, - [10659] = {.lex_state = 0}, - [10660] = {.lex_state = 266}, + [10645] = {.lex_state = 146}, + [10646] = {.lex_state = 466}, + [10647] = {.lex_state = 291}, + [10648] = {.lex_state = 466}, + [10649] = {.lex_state = 0}, + [10650] = {.lex_state = 148}, + [10651] = {.lex_state = 146}, + [10652] = {.lex_state = 291}, + [10653] = {.lex_state = 146}, + [10654] = {.lex_state = 466}, + [10655] = {.lex_state = 0}, + [10656] = {.lex_state = 466}, + [10657] = {.lex_state = 291}, + [10658] = {.lex_state = 0}, + [10659] = {.lex_state = 146}, + [10660] = {.lex_state = 288}, [10661] = {.lex_state = 0}, - [10662] = {.lex_state = 0}, - [10663] = {.lex_state = 0}, - [10664] = {.lex_state = 0}, + [10662] = {.lex_state = 466}, + [10663] = {.lex_state = 146}, + [10664] = {.lex_state = 363}, [10665] = {.lex_state = 0}, - [10666] = {.lex_state = 0}, - [10667] = {.lex_state = 151}, - [10668] = {.lex_state = 0}, - [10669] = {.lex_state = 0}, - [10670] = {.lex_state = 438}, - [10671] = {.lex_state = 0}, + [10666] = {.lex_state = 291}, + [10667] = {.lex_state = 0}, + [10668] = {.lex_state = 291}, + [10669] = {.lex_state = 288}, + [10670] = {.lex_state = 0}, + [10671] = {.lex_state = 466}, [10672] = {.lex_state = 0}, - [10673] = {.lex_state = 0}, - [10674] = {.lex_state = 0}, - [10675] = {.lex_state = 266}, - [10676] = {.lex_state = 0}, - [10677] = {.lex_state = 438}, - [10678] = {.lex_state = 151}, - [10679] = {.lex_state = 0}, - [10680] = {.lex_state = 0}, + [10673] = {.lex_state = 466}, + [10674] = {.lex_state = 288}, + [10675] = {.lex_state = 148}, + [10676] = {.lex_state = 291}, + [10677] = {.lex_state = 291}, + [10678] = {.lex_state = 146}, + [10679] = {.lex_state = 146}, + [10680] = {.lex_state = 146}, [10681] = {.lex_state = 0}, - [10682] = {.lex_state = 0}, - [10683] = {.lex_state = 237}, - [10684] = {.lex_state = 438}, - [10685] = {.lex_state = 0}, - [10686] = {.lex_state = 0, .external_lex_state = 2}, - [10687] = {.lex_state = 438}, - [10688] = {.lex_state = 0}, - [10689] = {.lex_state = 0}, - [10690] = {.lex_state = 438}, - [10691] = {.lex_state = 237}, - [10692] = {.lex_state = 266}, + [10682] = {.lex_state = 146}, + [10683] = {.lex_state = 149}, + [10684] = {.lex_state = 466}, + [10685] = {.lex_state = 466}, + [10686] = {.lex_state = 291}, + [10687] = {.lex_state = 363}, + [10688] = {.lex_state = 466}, + [10689] = {.lex_state = 466}, + [10690] = {.lex_state = 291}, + [10691] = {.lex_state = 0}, + [10692] = {.lex_state = 466}, [10693] = {.lex_state = 0}, - [10694] = {.lex_state = 266}, - [10695] = {.lex_state = 0}, - [10696] = {.lex_state = 0}, + [10694] = {.lex_state = 149}, + [10695] = {.lex_state = 466}, + [10696] = {.lex_state = 148}, [10697] = {.lex_state = 0}, - [10698] = {.lex_state = 237}, - [10699] = {.lex_state = 0}, - [10700] = {.lex_state = 0}, - [10701] = {.lex_state = 0}, - [10702] = {.lex_state = 237}, - [10703] = {.lex_state = 266}, - [10704] = {.lex_state = 0}, - [10705] = {.lex_state = 237}, + [10698] = {.lex_state = 0}, + [10699] = {.lex_state = 146}, + [10700] = {.lex_state = 466}, + [10701] = {.lex_state = 291}, + [10702] = {.lex_state = 291}, + [10703] = {.lex_state = 466}, + [10704] = {.lex_state = 148}, + [10705] = {.lex_state = 146}, [10706] = {.lex_state = 0}, - [10707] = {.lex_state = 0}, - [10708] = {.lex_state = 0}, - [10709] = {.lex_state = 0}, - [10710] = {.lex_state = 237}, - [10711] = {.lex_state = 0}, + [10707] = {.lex_state = 291}, + [10708] = {.lex_state = 146}, + [10709] = {.lex_state = 291}, + [10710] = {.lex_state = 148}, + [10711] = {.lex_state = 291}, [10712] = {.lex_state = 0}, - [10713] = {.lex_state = 0}, - [10714] = {.lex_state = 0}, - [10715] = {.lex_state = 151}, - [10716] = {.lex_state = 0}, - [10717] = {.lex_state = 0}, - [10718] = {.lex_state = 0}, - [10719] = {.lex_state = 0}, - [10720] = {.lex_state = 0}, - [10721] = {.lex_state = 0}, - [10722] = {.lex_state = 237}, + [10713] = {.lex_state = 291}, + [10714] = {.lex_state = 466}, + [10715] = {.lex_state = 0}, + [10716] = {.lex_state = 466}, + [10717] = {.lex_state = 146}, + [10718] = {.lex_state = 291}, + [10719] = {.lex_state = 291}, + [10720] = {.lex_state = 291}, + [10721] = {.lex_state = 291}, + [10722] = {.lex_state = 146}, [10723] = {.lex_state = 0}, - [10724] = {.lex_state = 266}, - [10725] = {.lex_state = 266}, - [10726] = {.lex_state = 266}, - [10727] = {.lex_state = 0}, - [10728] = {.lex_state = 0}, - [10729] = {.lex_state = 438}, - [10730] = {.lex_state = 0}, - [10731] = {.lex_state = 0}, - [10732] = {.lex_state = 0}, + [10724] = {.lex_state = 148}, + [10725] = {.lex_state = 0}, + [10726] = {.lex_state = 146}, + [10727] = {.lex_state = 466}, + [10728] = {.lex_state = 146}, + [10729] = {.lex_state = 0}, + [10730] = {.lex_state = 291}, + [10731] = {.lex_state = 291}, + [10732] = {.lex_state = 146}, [10733] = {.lex_state = 0}, - [10734] = {.lex_state = 266}, - [10735] = {.lex_state = 266}, + [10734] = {.lex_state = 466}, + [10735] = {.lex_state = 466}, [10736] = {.lex_state = 0}, - [10737] = {.lex_state = 0}, - [10738] = {.lex_state = 266}, - [10739] = {.lex_state = 438}, - [10740] = {.lex_state = 151}, - [10741] = {.lex_state = 237}, - [10742] = {.lex_state = 0}, - [10743] = {.lex_state = 438}, - [10744] = {.lex_state = 237}, - [10745] = {.lex_state = 0}, - [10746] = {.lex_state = 0}, - [10747] = {.lex_state = 0}, - [10748] = {.lex_state = 237}, - [10749] = {.lex_state = 237}, - [10750] = {.lex_state = 237}, - [10751] = {.lex_state = 266}, - [10752] = {.lex_state = 0}, - [10753] = {.lex_state = 266}, - [10754] = {.lex_state = 266}, - [10755] = {.lex_state = 266}, - [10756] = {.lex_state = 237}, - [10757] = {.lex_state = 266}, - [10758] = {.lex_state = 266}, - [10759] = {.lex_state = 0}, - [10760] = {.lex_state = 151}, - [10761] = {.lex_state = 0}, - [10762] = {.lex_state = 0}, + [10737] = {.lex_state = 466}, + [10738] = {.lex_state = 291}, + [10739] = {.lex_state = 146}, + [10740] = {.lex_state = 291}, + [10741] = {.lex_state = 146}, + [10742] = {.lex_state = 291}, + [10743] = {.lex_state = 149}, + [10744] = {.lex_state = 466}, + [10745] = {.lex_state = 291}, + [10746] = {.lex_state = 466}, + [10747] = {.lex_state = 146}, + [10748] = {.lex_state = 291}, + [10749] = {.lex_state = 148}, + [10750] = {.lex_state = 466}, + [10751] = {.lex_state = 0}, + [10752] = {.lex_state = 146}, + [10753] = {.lex_state = 291}, + [10754] = {.lex_state = 291}, + [10755] = {.lex_state = 291}, + [10756] = {.lex_state = 466}, + [10757] = {.lex_state = 146}, + [10758] = {.lex_state = 466}, + [10759] = {.lex_state = 291}, + [10760] = {.lex_state = 466}, + [10761] = {.lex_state = 466}, + [10762] = {.lex_state = 466}, [10763] = {.lex_state = 0}, - [10764] = {.lex_state = 237}, - [10765] = {.lex_state = 0}, + [10764] = {.lex_state = 466}, + [10765] = {.lex_state = 466}, [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}, - [10775] = {.lex_state = 0}, - [10776] = {.lex_state = 0}, + [10767] = {.lex_state = 466}, + [10768] = {.lex_state = 466}, + [10769] = {.lex_state = 146}, + [10770] = {.lex_state = 466}, + [10771] = {.lex_state = 466}, + [10772] = {.lex_state = 466}, + [10773] = {.lex_state = 466}, + [10774] = {.lex_state = 466}, + [10775] = {.lex_state = 291}, + [10776] = {.lex_state = 466}, [10777] = {.lex_state = 0}, - [10778] = {.lex_state = 151}, - [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}, - [10786] = {.lex_state = 0}, - [10787] = {.lex_state = 0}, - [10788] = {.lex_state = 0}, - [10789] = {.lex_state = 0}, - [10790] = {.lex_state = 0}, - [10791] = {.lex_state = 266}, - [10792] = {.lex_state = 0}, - [10793] = {.lex_state = 0}, - [10794] = {.lex_state = 0}, - [10795] = {.lex_state = 0}, - [10796] = {.lex_state = 237}, - [10797] = {.lex_state = 0}, - [10798] = {.lex_state = 0}, - [10799] = {.lex_state = 0}, - [10800] = {.lex_state = 0}, - [10801] = {.lex_state = 266}, - [10802] = {.lex_state = 0}, - [10803] = {.lex_state = 151}, - [10804] = {.lex_state = 266}, - [10805] = {.lex_state = 0}, + [10778] = {.lex_state = 148}, + [10779] = {.lex_state = 291}, + [10780] = {.lex_state = 146}, + [10781] = {.lex_state = 146}, + [10782] = {.lex_state = 291}, + [10783] = {.lex_state = 148}, + [10784] = {.lex_state = 288}, + [10785] = {.lex_state = 291}, + [10786] = {.lex_state = 466}, + [10787] = {.lex_state = 291}, + [10788] = {.lex_state = 466}, + [10789] = {.lex_state = 291}, + [10790] = {.lex_state = 291}, + [10791] = {.lex_state = 148}, + [10792] = {.lex_state = 291}, + [10793] = {.lex_state = 148}, + [10794] = {.lex_state = 146}, + [10795] = {.lex_state = 146}, + [10796] = {.lex_state = 291}, + [10797] = {.lex_state = 466}, + [10798] = {.lex_state = 466}, + [10799] = {.lex_state = 466}, + [10800] = {.lex_state = 466}, + [10801] = {.lex_state = 291}, + [10802] = {.lex_state = 291}, + [10803] = {.lex_state = 291}, + [10804] = {.lex_state = 466}, + [10805] = {.lex_state = 291}, [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}, + [10807] = {.lex_state = 466}, + [10808] = {.lex_state = 146}, + [10809] = {.lex_state = 291}, + [10810] = {.lex_state = 253}, + [10811] = {.lex_state = 291}, [10812] = {.lex_state = 0}, [10813] = {.lex_state = 0}, [10814] = {.lex_state = 0}, [10815] = {.lex_state = 0}, [10816] = {.lex_state = 0}, - [10817] = {.lex_state = 237}, - [10818] = {.lex_state = 266}, + [10817] = {.lex_state = 0}, + [10818] = {.lex_state = 0}, [10819] = {.lex_state = 0}, - [10820] = {.lex_state = 266}, - [10821] = {.lex_state = 237}, + [10820] = {.lex_state = 0}, + [10821] = {.lex_state = 291}, [10822] = {.lex_state = 0}, - [10823] = {.lex_state = 0}, + [10823] = {.lex_state = 288}, [10824] = {.lex_state = 0}, - [10825] = {.lex_state = 266}, - [10826] = {.lex_state = 266}, + [10825] = {.lex_state = 0}, + [10826] = {.lex_state = 0}, [10827] = {.lex_state = 0}, [10828] = {.lex_state = 0}, [10829] = {.lex_state = 0}, [10830] = {.lex_state = 0}, - [10831] = {.lex_state = 266}, + [10831] = {.lex_state = 0}, [10832] = {.lex_state = 0}, [10833] = {.lex_state = 0}, - [10834] = {.lex_state = 237}, - [10835] = {.lex_state = 0}, + [10834] = {.lex_state = 0}, + [10835] = {.lex_state = 291}, [10836] = {.lex_state = 0}, - [10837] = {.lex_state = 438}, - [10838] = {.lex_state = 0}, - [10839] = {.lex_state = 266}, - [10840] = {.lex_state = 0}, + [10837] = {.lex_state = 0}, + [10838] = {.lex_state = 151}, + [10839] = {.lex_state = 291}, + [10840] = {.lex_state = 291}, [10841] = {.lex_state = 0}, - [10842] = {.lex_state = 0}, - [10843] = {.lex_state = 237}, + [10842] = {.lex_state = 291}, + [10843] = {.lex_state = 0}, [10844] = {.lex_state = 0}, - [10845] = {.lex_state = 266}, + [10845] = {.lex_state = 0}, [10846] = {.lex_state = 0}, [10847] = {.lex_state = 0}, [10848] = {.lex_state = 0}, [10849] = {.lex_state = 0}, - [10850] = {.lex_state = 237}, - [10851] = {.lex_state = 237}, - [10852] = {.lex_state = 237}, + [10850] = {.lex_state = 0}, + [10851] = {.lex_state = 0}, + [10852] = {.lex_state = 0}, [10853] = {.lex_state = 0}, [10854] = {.lex_state = 0}, - [10855] = {.lex_state = 438}, + [10855] = {.lex_state = 288}, [10856] = {.lex_state = 0}, [10857] = {.lex_state = 0}, - [10858] = {.lex_state = 237}, - [10859] = {.lex_state = 237}, - [10860] = {.lex_state = 266}, + [10858] = {.lex_state = 0}, + [10859] = {.lex_state = 0}, + [10860] = {.lex_state = 0}, [10861] = {.lex_state = 0}, [10862] = {.lex_state = 0}, - [10863] = {.lex_state = 0}, - [10864] = {.lex_state = 266}, - [10865] = {.lex_state = 266}, - [10866] = {.lex_state = 266}, + [10863] = {.lex_state = 253}, + [10864] = {.lex_state = 0}, + [10865] = {.lex_state = 0}, + [10866] = {.lex_state = 0}, [10867] = {.lex_state = 0}, - [10868] = {.lex_state = 237}, - [10869] = {.lex_state = 151}, - [10870] = {.lex_state = 0}, - [10871] = {.lex_state = 0}, - [10872] = {.lex_state = 266}, + [10868] = {.lex_state = 253}, + [10869] = {.lex_state = 0}, + [10870] = {.lex_state = 291}, + [10871] = {.lex_state = 291}, + [10872] = {.lex_state = 0}, [10873] = {.lex_state = 0}, - [10874] = {.lex_state = 237}, + [10874] = {.lex_state = 288}, [10875] = {.lex_state = 0}, [10876] = {.lex_state = 0}, - [10877] = {.lex_state = 0}, + [10877] = {.lex_state = 370}, [10878] = {.lex_state = 0}, - [10879] = {.lex_state = 237}, - [10880] = {.lex_state = 237}, - [10881] = {.lex_state = 151}, - [10882] = {.lex_state = 0}, + [10879] = {.lex_state = 0}, + [10880] = {.lex_state = 0}, + [10881] = {.lex_state = 291}, + [10882] = {.lex_state = 291}, [10883] = {.lex_state = 0}, - [10884] = {.lex_state = 266}, - [10885] = {.lex_state = 266}, + [10884] = {.lex_state = 0}, + [10885] = {.lex_state = 291}, [10886] = {.lex_state = 0}, [10887] = {.lex_state = 0}, - [10888] = {.lex_state = 237}, - [10889] = {.lex_state = 0}, - [10890] = {.lex_state = 0, .external_lex_state = 2}, + [10888] = {.lex_state = 291}, + [10889] = {.lex_state = 291}, + [10890] = {.lex_state = 0}, [10891] = {.lex_state = 0}, - [10892] = {.lex_state = 266}, - [10893] = {.lex_state = 438}, - [10894] = {.lex_state = 438}, - [10895] = {.lex_state = 151}, - [10896] = {.lex_state = 438}, + [10892] = {.lex_state = 0}, + [10893] = {.lex_state = 0}, + [10894] = {.lex_state = 0}, + [10895] = {.lex_state = 291}, + [10896] = {.lex_state = 0}, [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}, + [10898] = {.lex_state = 0}, + [10899] = {.lex_state = 0}, + [10900] = {.lex_state = 0}, + [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}, + [10905] = {.lex_state = 288}, + [10906] = {.lex_state = 0}, + [10907] = {.lex_state = 0}, [10908] = {.lex_state = 0}, - [10909] = {.lex_state = 266}, + [10909] = {.lex_state = 0}, [10910] = {.lex_state = 0}, - [10911] = {.lex_state = 0}, - [10912] = {.lex_state = 0}, - [10913] = {.lex_state = 235}, - [10914] = {.lex_state = 266}, - [10915] = {.lex_state = 0}, - [10916] = {.lex_state = 438}, + [10911] = {.lex_state = 291}, + [10912] = {.lex_state = 253}, + [10913] = {.lex_state = 253}, + [10914] = {.lex_state = 151}, + [10915] = {.lex_state = 291}, + [10916] = {.lex_state = 0}, [10917] = {.lex_state = 0}, [10918] = {.lex_state = 0}, [10919] = {.lex_state = 0}, [10920] = {.lex_state = 0}, [10921] = {.lex_state = 0}, [10922] = {.lex_state = 0}, - [10923] = {.lex_state = 266}, - [10924] = {.lex_state = 0}, - [10925] = {.lex_state = 266}, + [10923] = {.lex_state = 288}, + [10924] = {.lex_state = 253}, + [10925] = {.lex_state = 253}, [10926] = {.lex_state = 0}, [10927] = {.lex_state = 0}, - [10928] = {.lex_state = 0}, - [10929] = {.lex_state = 0}, + [10928] = {.lex_state = 288}, + [10929] = {.lex_state = 291}, [10930] = {.lex_state = 0}, - [10931] = {.lex_state = 266}, - [10932] = {.lex_state = 0, .external_lex_state = 2}, + [10931] = {.lex_state = 0}, + [10932] = {.lex_state = 0}, [10933] = {.lex_state = 0}, - [10934] = {.lex_state = 0}, + [10934] = {.lex_state = 466}, [10935] = {.lex_state = 0}, - [10936] = {.lex_state = 266}, - [10937] = {.lex_state = 285}, - [10938] = {.lex_state = 237}, - [10939] = {.lex_state = 0}, + [10936] = {.lex_state = 0}, + [10937] = {.lex_state = 0}, + [10938] = {.lex_state = 291}, + [10939] = {.lex_state = 291}, [10940] = {.lex_state = 0}, - [10941] = {.lex_state = 266}, - [10942] = {.lex_state = 237}, + [10941] = {.lex_state = 0}, + [10942] = {.lex_state = 0}, [10943] = {.lex_state = 0}, [10944] = {.lex_state = 0}, [10945] = {.lex_state = 0}, - [10946] = {.lex_state = 0}, - [10947] = {.lex_state = 0, .external_lex_state = 2}, + [10946] = {.lex_state = 291}, + [10947] = {.lex_state = 0}, [10948] = {.lex_state = 0}, - [10949] = {.lex_state = 266}, + [10949] = {.lex_state = 253}, [10950] = {.lex_state = 0}, [10951] = {.lex_state = 0}, - [10952] = {.lex_state = 266}, + [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}, [10960] = {.lex_state = 0}, [10961] = {.lex_state = 0}, - [10962] = {.lex_state = 0}, - [10963] = {.lex_state = 438}, - [10964] = {.lex_state = 266}, - [10965] = {.lex_state = 0}, + [10962] = {.lex_state = 253}, + [10963] = {.lex_state = 253}, + [10964] = {.lex_state = 0}, + [10965] = {.lex_state = 466}, [10966] = {.lex_state = 0}, - [10967] = {.lex_state = 237}, - [10968] = {.lex_state = 266}, - [10969] = {.lex_state = 266}, + [10967] = {.lex_state = 0}, + [10968] = {.lex_state = 0}, + [10969] = {.lex_state = 0}, [10970] = {.lex_state = 0}, - [10971] = {.lex_state = 237}, - [10972] = {.lex_state = 266}, - [10973] = {.lex_state = 438}, + [10971] = {.lex_state = 0}, + [10972] = {.lex_state = 0}, + [10973] = {.lex_state = 0}, [10974] = {.lex_state = 0}, [10975] = {.lex_state = 0}, [10976] = {.lex_state = 0}, - [10977] = {.lex_state = 151}, - [10978] = {.lex_state = 266}, + [10977] = {.lex_state = 0}, + [10978] = {.lex_state = 0}, [10979] = {.lex_state = 0}, - [10980] = {.lex_state = 266}, - [10981] = {.lex_state = 438}, - [10982] = {.lex_state = 266}, - [10983] = {.lex_state = 0}, + [10980] = {.lex_state = 0}, + [10981] = {.lex_state = 0}, + [10982] = {.lex_state = 0}, + [10983] = {.lex_state = 291}, [10984] = {.lex_state = 0}, - [10985] = {.lex_state = 266}, + [10985] = {.lex_state = 0}, [10986] = {.lex_state = 0}, [10987] = {.lex_state = 0}, - [10988] = {.lex_state = 0}, + [10988] = {.lex_state = 291}, [10989] = {.lex_state = 0}, [10990] = {.lex_state = 0}, - [10991] = {.lex_state = 438}, + [10991] = {.lex_state = 0}, [10992] = {.lex_state = 0}, [10993] = {.lex_state = 0}, [10994] = {.lex_state = 0}, - [10995] = {.lex_state = 266}, - [10996] = {.lex_state = 0}, + [10995] = {.lex_state = 291}, + [10996] = {.lex_state = 291}, [10997] = {.lex_state = 0}, - [10998] = {.lex_state = 237}, + [10998] = {.lex_state = 0}, [10999] = {.lex_state = 0}, [11000] = {.lex_state = 0}, - [11001] = {.lex_state = 0, .external_lex_state = 2}, + [11001] = {.lex_state = 291}, [11002] = {.lex_state = 0}, [11003] = {.lex_state = 0}, [11004] = {.lex_state = 0}, [11005] = {.lex_state = 0}, - [11006] = {.lex_state = 0}, - [11007] = {.lex_state = 266}, - [11008] = {.lex_state = 438}, - [11009] = {.lex_state = 237}, + [11006] = {.lex_state = 291}, + [11007] = {.lex_state = 0}, + [11008] = {.lex_state = 151}, + [11009] = {.lex_state = 0}, [11010] = {.lex_state = 0}, [11011] = {.lex_state = 0}, [11012] = {.lex_state = 0}, - [11013] = {.lex_state = 0}, + [11013] = {.lex_state = 288}, [11014] = {.lex_state = 0}, - [11015] = {.lex_state = 266}, + [11015] = {.lex_state = 148}, [11016] = {.lex_state = 0}, - [11017] = {.lex_state = 0}, - [11018] = {.lex_state = 438}, - [11019] = {.lex_state = 0}, + [11017] = {.lex_state = 253}, + [11018] = {.lex_state = 253}, + [11019] = {.lex_state = 253}, [11020] = {.lex_state = 0}, - [11021] = {.lex_state = 266}, + [11021] = {.lex_state = 0}, [11022] = {.lex_state = 0}, - [11023] = {.lex_state = 266}, + [11023] = {.lex_state = 0}, [11024] = {.lex_state = 0}, [11025] = {.lex_state = 0}, - [11026] = {.lex_state = 237}, - [11027] = {.lex_state = 151}, + [11026] = {.lex_state = 291}, + [11027] = {.lex_state = 0}, [11028] = {.lex_state = 0}, - [11029] = {.lex_state = 266}, - [11030] = {.lex_state = 266}, - [11031] = {.lex_state = 0, .external_lex_state = 2}, - [11032] = {.lex_state = 0}, + [11029] = {.lex_state = 288}, + [11030] = {.lex_state = 0}, + [11031] = {.lex_state = 0}, + [11032] = {.lex_state = 288}, [11033] = {.lex_state = 0}, - [11034] = {.lex_state = 0}, - [11035] = {.lex_state = 0}, - [11036] = {.lex_state = 0}, - [11037] = {.lex_state = 438}, - [11038] = {.lex_state = 237}, - [11039] = {.lex_state = 0}, + [11034] = {.lex_state = 291}, + [11035] = {.lex_state = 288}, + [11036] = {.lex_state = 288}, + [11037] = {.lex_state = 0}, + [11038] = {.lex_state = 253}, + [11039] = {.lex_state = 253}, [11040] = {.lex_state = 0}, - [11041] = {.lex_state = 0}, - [11042] = {.lex_state = 438}, - [11043] = {.lex_state = 0}, - [11044] = {.lex_state = 0}, - [11045] = {.lex_state = 0}, - [11046] = {.lex_state = 266}, - [11047] = {.lex_state = 0}, - [11048] = {.lex_state = 0}, - [11049] = {.lex_state = 235}, + [11041] = {.lex_state = 291}, + [11042] = {.lex_state = 0}, + [11043] = {.lex_state = 148}, + [11044] = {.lex_state = 253}, + [11045] = {.lex_state = 253}, + [11046] = {.lex_state = 291}, + [11047] = {.lex_state = 291}, + [11048] = {.lex_state = 253}, + [11049] = {.lex_state = 253}, [11050] = {.lex_state = 0}, - [11051] = {.lex_state = 0, .external_lex_state = 2}, - [11052] = {.lex_state = 0}, - [11053] = {.lex_state = 438}, - [11054] = {.lex_state = 0}, + [11051] = {.lex_state = 291}, + [11052] = {.lex_state = 288}, + [11053] = {.lex_state = 0}, + [11054] = {.lex_state = 288}, [11055] = {.lex_state = 0}, - [11056] = {.lex_state = 266}, - [11057] = {.lex_state = 0}, - [11058] = {.lex_state = 266}, - [11059] = {.lex_state = 0}, + [11056] = {.lex_state = 0}, + [11057] = {.lex_state = 291}, + [11058] = {.lex_state = 0}, + [11059] = {.lex_state = 288}, [11060] = {.lex_state = 0}, [11061] = {.lex_state = 0}, - [11062] = {.lex_state = 0, .external_lex_state = 2}, - [11063] = {.lex_state = 266}, - [11064] = {.lex_state = 237}, + [11062] = {.lex_state = 0}, + [11063] = {.lex_state = 0}, + [11064] = {.lex_state = 0}, [11065] = {.lex_state = 0}, - [11066] = {.lex_state = 0}, - [11067] = {.lex_state = 237}, - [11068] = {.lex_state = 0}, - [11069] = {.lex_state = 266}, + [11066] = {.lex_state = 291}, + [11067] = {.lex_state = 288}, + [11068] = {.lex_state = 288}, + [11069] = {.lex_state = 0}, [11070] = {.lex_state = 0}, - [11071] = {.lex_state = 0, .external_lex_state = 2}, + [11071] = {.lex_state = 0}, [11072] = {.lex_state = 0}, [11073] = {.lex_state = 0}, - [11074] = {.lex_state = 0}, - [11075] = {.lex_state = 266}, + [11074] = {.lex_state = 253}, + [11075] = {.lex_state = 253}, [11076] = {.lex_state = 0}, [11077] = {.lex_state = 0}, - [11078] = {.lex_state = 0, .external_lex_state = 2}, - [11079] = {.lex_state = 151}, - [11080] = {.lex_state = 0}, - [11081] = {.lex_state = 151}, - [11082] = {.lex_state = 266}, + [11078] = {.lex_state = 291}, + [11079] = {.lex_state = 0}, + [11080] = {.lex_state = 291}, + [11081] = {.lex_state = 291}, + [11082] = {.lex_state = 0}, [11083] = {.lex_state = 0}, - [11084] = {.lex_state = 0}, - [11085] = {.lex_state = 0, .external_lex_state = 2}, + [11084] = {.lex_state = 291}, + [11085] = {.lex_state = 291}, [11086] = {.lex_state = 0}, [11087] = {.lex_state = 0}, [11088] = {.lex_state = 0}, - [11089] = {.lex_state = 238}, + [11089] = {.lex_state = 0}, [11090] = {.lex_state = 0}, - [11091] = {.lex_state = 0, .external_lex_state = 2}, - [11092] = {.lex_state = 235}, - [11093] = {.lex_state = 438}, - [11094] = {.lex_state = 438}, + [11091] = {.lex_state = 0}, + [11092] = {.lex_state = 291}, + [11093] = {.lex_state = 0}, + [11094] = {.lex_state = 288}, [11095] = {.lex_state = 0}, - [11096] = {.lex_state = 0, .external_lex_state = 2}, + [11096] = {.lex_state = 288}, [11097] = {.lex_state = 0}, - [11098] = {.lex_state = 438}, - [11099] = {.lex_state = 0}, - [11100] = {.lex_state = 0, .external_lex_state = 2}, - [11101] = {.lex_state = 0}, - [11102] = {.lex_state = 0}, - [11103] = {.lex_state = 0}, - [11104] = {.lex_state = 0, .external_lex_state = 2}, - [11105] = {.lex_state = 151}, - [11106] = {.lex_state = 235}, + [11098] = {.lex_state = 291}, + [11099] = {.lex_state = 291}, + [11100] = {.lex_state = 0}, + [11101] = {.lex_state = 253}, + [11102] = {.lex_state = 253}, + [11103] = {.lex_state = 370}, + [11104] = {.lex_state = 0}, + [11105] = {.lex_state = 291}, + [11106] = {.lex_state = 0}, [11107] = {.lex_state = 0}, - [11108] = {.lex_state = 0, .external_lex_state = 2}, - [11109] = {.lex_state = 238}, - [11110] = {.lex_state = 266}, + [11108] = {.lex_state = 0}, + [11109] = {.lex_state = 291}, + [11110] = {.lex_state = 291}, [11111] = {.lex_state = 0}, - [11112] = {.lex_state = 0, .external_lex_state = 2}, - [11113] = {.lex_state = 438}, - [11114] = {.lex_state = 0, .external_lex_state = 3}, + [11112] = {.lex_state = 0}, + [11113] = {.lex_state = 0}, + [11114] = {.lex_state = 291}, [11115] = {.lex_state = 0}, - [11116] = {.lex_state = 0, .external_lex_state = 2}, - [11117] = {.lex_state = 0}, + [11116] = {.lex_state = 291}, + [11117] = {.lex_state = 291}, [11118] = {.lex_state = 0}, - [11119] = {.lex_state = 0, .external_lex_state = 2}, - [11120] = {.lex_state = 0}, + [11119] = {.lex_state = 291}, + [11120] = {.lex_state = 291}, [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}, + [11123] = {.lex_state = 291}, + [11124] = {.lex_state = 288}, + [11125] = {.lex_state = 0}, + [11126] = {.lex_state = 288}, + [11127] = {.lex_state = 291}, + [11128] = {.lex_state = 291}, + [11129] = {.lex_state = 0}, + [11130] = {.lex_state = 0}, [11131] = {.lex_state = 0}, - [11132] = {.lex_state = 438}, + [11132] = {.lex_state = 0}, [11133] = {.lex_state = 0}, [11134] = {.lex_state = 0}, - [11135] = {.lex_state = 0}, + [11135] = {.lex_state = 288}, [11136] = {.lex_state = 0}, [11137] = {.lex_state = 0}, [11138] = {.lex_state = 0}, [11139] = {.lex_state = 0}, [11140] = {.lex_state = 0}, - [11141] = {.lex_state = 266}, + [11141] = {.lex_state = 0}, [11142] = {.lex_state = 0}, - [11143] = {.lex_state = 438}, + [11143] = {.lex_state = 0}, [11144] = {.lex_state = 0}, [11145] = {.lex_state = 0}, - [11146] = {.lex_state = 438}, - [11147] = {.lex_state = 438}, + [11146] = {.lex_state = 0}, + [11147] = {.lex_state = 0}, [11148] = {.lex_state = 0}, - [11149] = {.lex_state = 266}, - [11150] = {.lex_state = 0}, - [11151] = {.lex_state = 438}, - [11152] = {.lex_state = 0, .external_lex_state = 3}, + [11149] = {.lex_state = 151}, + [11150] = {.lex_state = 288}, + [11151] = {.lex_state = 148}, + [11152] = {.lex_state = 288}, [11153] = {.lex_state = 0}, - [11154] = {.lex_state = 0}, - [11155] = {.lex_state = 0}, - [11156] = {.lex_state = 438}, + [11154] = {.lex_state = 253}, + [11155] = {.lex_state = 253}, + [11156] = {.lex_state = 0}, [11157] = {.lex_state = 0}, [11158] = {.lex_state = 0}, [11159] = {.lex_state = 0}, - [11160] = {.lex_state = 0}, - [11161] = {.lex_state = 0}, + [11160] = {.lex_state = 288}, + [11161] = {.lex_state = 288}, [11162] = {.lex_state = 0}, [11163] = {.lex_state = 0}, [11164] = {.lex_state = 0}, - [11165] = {.lex_state = 0}, - [11166] = {.lex_state = 0}, - [11167] = {.lex_state = 0}, - [11168] = {.lex_state = 266}, + [11165] = {.lex_state = 288}, + [11166] = {.lex_state = 288}, + [11167] = {.lex_state = 253}, + [11168] = {.lex_state = 253}, [11169] = {.lex_state = 0}, [11170] = {.lex_state = 0}, [11171] = {.lex_state = 0}, [11172] = {.lex_state = 0}, - [11173] = {.lex_state = 0}, + [11173] = {.lex_state = 288}, [11174] = {.lex_state = 0}, - [11175] = {.lex_state = 0}, + [11175] = {.lex_state = 291}, [11176] = {.lex_state = 0}, [11177] = {.lex_state = 0}, - [11178] = {.lex_state = 266}, + [11178] = {.lex_state = 288}, [11179] = {.lex_state = 0}, - [11180] = {.lex_state = 0}, - [11181] = {.lex_state = 266}, + [11180] = {.lex_state = 148}, + [11181] = {.lex_state = 0}, [11182] = {.lex_state = 0}, - [11183] = {.lex_state = 266}, + [11183] = {.lex_state = 0}, [11184] = {.lex_state = 0}, [11185] = {.lex_state = 0}, - [11186] = {.lex_state = 0}, + [11186] = {.lex_state = 288}, [11187] = {.lex_state = 0}, - [11188] = {.lex_state = 0}, - [11189] = {.lex_state = 0}, + [11188] = {.lex_state = 253}, + [11189] = {.lex_state = 253}, [11190] = {.lex_state = 0}, - [11191] = {.lex_state = 438}, - [11192] = {.lex_state = 0}, + [11191] = {.lex_state = 466}, + [11192] = {.lex_state = 288}, [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}, - [11202] = {.lex_state = 0}, - [11203] = {.lex_state = 266}, - [11204] = {.lex_state = 151}, - [11205] = {.lex_state = 266}, - [11206] = {.lex_state = 237}, + [11201] = {.lex_state = 0}, + [11202] = {.lex_state = 253}, + [11203] = {.lex_state = 291}, + [11204] = {.lex_state = 291}, + [11205] = {.lex_state = 0}, + [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}, - [11214] = {.lex_state = 0}, - [11215] = {.lex_state = 0}, + [11211] = {.lex_state = 288}, + [11212] = {.lex_state = 0}, + [11213] = {.lex_state = 288}, + [11214] = {.lex_state = 288}, + [11215] = {.lex_state = 148}, [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}, - [11226] = {.lex_state = 0}, + [11219] = {.lex_state = 288}, + [11220] = {.lex_state = 253}, + [11221] = {.lex_state = 291}, + [11222] = {.lex_state = 291}, + [11223] = {.lex_state = 0}, + [11224] = {.lex_state = 0}, + [11225] = {.lex_state = 291}, + [11226] = {.lex_state = 291}, [11227] = {.lex_state = 0}, - [11228] = {.lex_state = 0}, - [11229] = {.lex_state = 266}, - [11230] = {.lex_state = 237}, - [11231] = {.lex_state = 0}, + [11228] = {.lex_state = 291}, + [11229] = {.lex_state = 291}, + [11230] = {.lex_state = 0}, + [11231] = {.lex_state = 291}, [11232] = {.lex_state = 0}, [11233] = {.lex_state = 0}, - [11234] = {.lex_state = 0}, - [11235] = {.lex_state = 0}, - [11236] = {.lex_state = 266}, - [11237] = {.lex_state = 0}, + [11234] = {.lex_state = 253}, + [11235] = {.lex_state = 148}, + [11236] = {.lex_state = 0}, + [11237] = {.lex_state = 253}, [11238] = {.lex_state = 0}, [11239] = {.lex_state = 0}, - [11240] = {.lex_state = 0}, - [11241] = {.lex_state = 266}, + [11240] = {.lex_state = 253}, + [11241] = {.lex_state = 288}, [11242] = {.lex_state = 0}, [11243] = {.lex_state = 0}, [11244] = {.lex_state = 0}, - [11245] = {.lex_state = 151}, + [11245] = {.lex_state = 0}, [11246] = {.lex_state = 0}, - [11247] = {.lex_state = 0}, - [11248] = {.lex_state = 266}, - [11249] = {.lex_state = 0}, + [11247] = {.lex_state = 288}, + [11248] = {.lex_state = 0}, + [11249] = {.lex_state = 291}, [11250] = {.lex_state = 0}, - [11251] = {.lex_state = 0}, - [11252] = {.lex_state = 0}, - [11253] = {.lex_state = 0}, - [11254] = {.lex_state = 0}, + [11251] = {.lex_state = 253}, + [11252] = {.lex_state = 148}, + [11253] = {.lex_state = 291}, + [11254] = {.lex_state = 288}, [11255] = {.lex_state = 0}, [11256] = {.lex_state = 0}, - [11257] = {.lex_state = 0}, - [11258] = {.lex_state = 266}, - [11259] = {.lex_state = 266}, - [11260] = {.lex_state = 0}, - [11261] = {.lex_state = 438}, + [11257] = {.lex_state = 253}, + [11258] = {.lex_state = 253}, + [11259] = {.lex_state = 0}, + [11260] = {.lex_state = 148}, + [11261] = {.lex_state = 0}, [11262] = {.lex_state = 0}, - [11263] = {.lex_state = 0}, + [11263] = {.lex_state = 148}, [11264] = {.lex_state = 0}, [11265] = {.lex_state = 0}, - [11266] = {.lex_state = 0}, - [11267] = {.lex_state = 0}, + [11266] = {.lex_state = 288}, + [11267] = {.lex_state = 148}, [11268] = {.lex_state = 0}, [11269] = {.lex_state = 0}, - [11270] = {.lex_state = 0}, - [11271] = {.lex_state = 0}, + [11270] = {.lex_state = 148}, + [11271] = {.lex_state = 148}, [11272] = {.lex_state = 0}, - [11273] = {.lex_state = 0}, - [11274] = {.lex_state = 0}, + [11273] = {.lex_state = 148}, + [11274] = {.lex_state = 148}, [11275] = {.lex_state = 0}, - [11276] = {.lex_state = 0}, + [11276] = {.lex_state = 370}, [11277] = {.lex_state = 0}, - [11278] = {.lex_state = 0}, + [11278] = {.lex_state = 288}, [11279] = {.lex_state = 0}, - [11280] = {.lex_state = 237}, - [11281] = {.lex_state = 0}, + [11280] = {.lex_state = 253}, + [11281] = {.lex_state = 253}, [11282] = {.lex_state = 0}, [11283] = {.lex_state = 0}, - [11284] = {.lex_state = 438}, - [11285] = {.lex_state = 438}, - [11286] = {.lex_state = 438}, - [11287] = {.lex_state = 438}, - [11288] = {.lex_state = 438}, - [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}, - [11296] = {.lex_state = 438}, + [11284] = {.lex_state = 244}, + [11285] = {.lex_state = 0}, + [11286] = {.lex_state = 291}, + [11287] = {.lex_state = 291}, + [11288] = {.lex_state = 253}, + [11289] = {.lex_state = 253}, + [11290] = {.lex_state = 0}, + [11291] = {.lex_state = 291}, + [11292] = {.lex_state = 291}, + [11293] = {.lex_state = 0}, + [11294] = {.lex_state = 0}, + [11295] = {.lex_state = 0}, + [11296] = {.lex_state = 291}, [11297] = {.lex_state = 0}, - [11298] = {.lex_state = 0}, - [11299] = {.lex_state = 438}, - [11300] = {.lex_state = 438}, + [11298] = {.lex_state = 288}, + [11299] = {.lex_state = 0}, + [11300] = {.lex_state = 0}, [11301] = {.lex_state = 0}, - [11302] = {.lex_state = 438}, - [11303] = {.lex_state = 0, .external_lex_state = 3}, - [11304] = {.lex_state = 438}, - [11305] = {.lex_state = 0}, - [11306] = {.lex_state = 0}, + [11302] = {.lex_state = 288}, + [11303] = {.lex_state = 0}, + [11304] = {.lex_state = 253}, + [11305] = {.lex_state = 253}, + [11306] = {.lex_state = 291}, [11307] = {.lex_state = 0}, - [11308] = {.lex_state = 0}, + [11308] = {.lex_state = 291}, [11309] = {.lex_state = 0}, - [11310] = {.lex_state = 438}, - [11311] = {.lex_state = 0}, + [11310] = {.lex_state = 291}, + [11311] = {.lex_state = 291}, [11312] = {.lex_state = 0}, - [11313] = {.lex_state = 266}, - [11314] = {.lex_state = 266}, - [11315] = {.lex_state = 438}, - [11316] = {.lex_state = 438}, - [11317] = {.lex_state = 438}, - [11318] = {.lex_state = 0}, - [11319] = {.lex_state = 438}, - [11320] = {.lex_state = 0}, - [11321] = {.lex_state = 266}, - [11322] = {.lex_state = 266}, - [11323] = {.lex_state = 266}, + [11313] = {.lex_state = 0}, + [11314] = {.lex_state = 0}, + [11315] = {.lex_state = 0}, + [11316] = {.lex_state = 0}, + [11317] = {.lex_state = 0}, + [11318] = {.lex_state = 466}, + [11319] = {.lex_state = 0}, + [11320] = {.lex_state = 288}, + [11321] = {.lex_state = 0}, + [11322] = {.lex_state = 0}, + [11323] = {.lex_state = 0}, [11324] = {.lex_state = 0}, - [11325] = {.lex_state = 438}, - [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}, - [11332] = {.lex_state = 0}, - [11333] = {.lex_state = 266}, + [11325] = {.lex_state = 291}, + [11326] = {.lex_state = 291}, + [11327] = {.lex_state = 291}, + [11328] = {.lex_state = 291}, + [11329] = {.lex_state = 0}, + [11330] = {.lex_state = 0}, + [11331] = {.lex_state = 291}, + [11332] = {.lex_state = 291}, + [11333] = {.lex_state = 291}, [11334] = {.lex_state = 0}, - [11335] = {.lex_state = 266}, + [11335] = {.lex_state = 0}, [11336] = {.lex_state = 0}, - [11337] = {.lex_state = 266}, - [11338] = {.lex_state = 266}, - [11339] = {.lex_state = 438}, - [11340] = {.lex_state = 438}, - [11341] = {.lex_state = 438}, + [11337] = {.lex_state = 0}, + [11338] = {.lex_state = 291}, + [11339] = {.lex_state = 291}, + [11340] = {.lex_state = 291}, + [11341] = {.lex_state = 0}, [11342] = {.lex_state = 0}, - [11343] = {.lex_state = 438}, - [11344] = {.lex_state = 438}, - [11345] = {.lex_state = 266}, - [11346] = {.lex_state = 266}, - [11347] = {.lex_state = 438}, + [11343] = {.lex_state = 0}, + [11344] = {.lex_state = 0}, + [11345] = {.lex_state = 291}, + [11346] = {.lex_state = 0}, + [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}, + [11351] = {.lex_state = 0}, + [11352] = {.lex_state = 0}, + [11353] = {.lex_state = 0}, [11354] = {.lex_state = 0}, [11355] = {.lex_state = 0}, - [11356] = {.lex_state = 266}, - [11357] = {.lex_state = 0}, - [11358] = {.lex_state = 266}, - [11359] = {.lex_state = 0}, - [11360] = {.lex_state = 438}, - [11361] = {.lex_state = 438}, - [11362] = {.lex_state = 438}, + [11356] = {.lex_state = 253}, + [11357] = {.lex_state = 253}, + [11358] = {.lex_state = 291}, + [11359] = {.lex_state = 253}, + [11360] = {.lex_state = 0}, + [11361] = {.lex_state = 253}, + [11362] = {.lex_state = 0}, [11363] = {.lex_state = 0}, - [11364] = {.lex_state = 438}, - [11365] = {.lex_state = 266}, - [11366] = {.lex_state = 266}, - [11367] = {.lex_state = 438}, - [11368] = {.lex_state = 0}, - [11369] = {.lex_state = 438}, - [11370] = {.lex_state = 0}, - [11371] = {.lex_state = 438}, - [11372] = {.lex_state = 0, .external_lex_state = 3}, - [11373] = {.lex_state = 266}, - [11374] = {.lex_state = 0}, - [11375] = {.lex_state = 438}, - [11376] = {.lex_state = 266}, + [11364] = {.lex_state = 0}, + [11365] = {.lex_state = 288}, + [11366] = {.lex_state = 321}, + [11367] = {.lex_state = 291}, + [11368] = {.lex_state = 253}, + [11369] = {.lex_state = 0}, + [11370] = {.lex_state = 291}, + [11371] = {.lex_state = 253}, + [11372] = {.lex_state = 291}, + [11373] = {.lex_state = 291}, + [11374] = {.lex_state = 253}, + [11375] = {.lex_state = 253}, + [11376] = {.lex_state = 253}, [11377] = {.lex_state = 0}, - [11378] = {.lex_state = 266}, - [11379] = {.lex_state = 0, .external_lex_state = 3}, - [11380] = {.lex_state = 438}, - [11381] = {.lex_state = 438}, - [11382] = {.lex_state = 438}, + [11378] = {.lex_state = 253}, + [11379] = {.lex_state = 288}, + [11380] = {.lex_state = 0}, + [11381] = {.lex_state = 288}, + [11382] = {.lex_state = 291}, [11383] = {.lex_state = 0}, - [11384] = {.lex_state = 438}, - [11385] = {.lex_state = 237}, - [11386] = {.lex_state = 0}, - [11387] = {.lex_state = 438}, + [11384] = {.lex_state = 253}, + [11385] = {.lex_state = 0}, + [11386] = {.lex_state = 288}, + [11387] = {.lex_state = 0}, [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}, + [11391] = {.lex_state = 0}, + [11392] = {.lex_state = 0}, + [11393] = {.lex_state = 253}, [11394] = {.lex_state = 0}, - [11395] = {.lex_state = 333}, + [11395] = {.lex_state = 0}, [11396] = {.lex_state = 0}, [11397] = {.lex_state = 0}, - [11398] = {.lex_state = 266}, + [11398] = {.lex_state = 0}, [11399] = {.lex_state = 0}, - [11400] = {.lex_state = 438}, - [11401] = {.lex_state = 438}, - [11402] = {.lex_state = 438}, + [11400] = {.lex_state = 0}, + [11401] = {.lex_state = 0}, + [11402] = {.lex_state = 0}, [11403] = {.lex_state = 0}, - [11404] = {.lex_state = 438}, - [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}, + [11404] = {.lex_state = 0}, + [11405] = {.lex_state = 466}, + [11406] = {.lex_state = 0}, + [11407] = {.lex_state = 0}, + [11408] = {.lex_state = 466}, + [11409] = {.lex_state = 288}, + [11410] = {.lex_state = 288}, [11411] = {.lex_state = 0}, [11412] = {.lex_state = 0}, [11413] = {.lex_state = 0}, - [11414] = {.lex_state = 266}, + [11414] = {.lex_state = 0}, [11415] = {.lex_state = 0}, - [11416] = {.lex_state = 438}, - [11417] = {.lex_state = 438}, + [11416] = {.lex_state = 0}, + [11417] = {.lex_state = 466}, [11418] = {.lex_state = 0}, - [11419] = {.lex_state = 438}, + [11419] = {.lex_state = 0}, [11420] = {.lex_state = 0}, - [11421] = {.lex_state = 438}, - [11422] = {.lex_state = 438}, - [11423] = {.lex_state = 0, .external_lex_state = 3}, - [11424] = {.lex_state = 0}, + [11421] = {.lex_state = 288}, + [11422] = {.lex_state = 150}, + [11423] = {.lex_state = 466}, + [11424] = {.lex_state = 466}, [11425] = {.lex_state = 0}, - [11426] = {.lex_state = 438}, - [11427] = {.lex_state = 438}, - [11428] = {.lex_state = 438}, - [11429] = {.lex_state = 438}, - [11430] = {.lex_state = 0, .external_lex_state = 3}, + [11426] = {.lex_state = 150}, + [11427] = {.lex_state = 0}, + [11428] = {.lex_state = 466}, + [11429] = {.lex_state = 0}, + [11430] = {.lex_state = 466}, [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}, + [11432] = {.lex_state = 0}, + [11433] = {.lex_state = 0}, + [11434] = {.lex_state = 0}, + [11435] = {.lex_state = 0}, + [11436] = {.lex_state = 0}, [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}, + [11438] = {.lex_state = 466}, + [11439] = {.lex_state = 253}, + [11440] = {.lex_state = 150}, + [11441] = {.lex_state = 253}, + [11442] = {.lex_state = 0}, + [11443] = {.lex_state = 0}, + [11444] = {.lex_state = 0}, [11445] = {.lex_state = 0}, - [11446] = {.lex_state = 438}, - [11447] = {.lex_state = 438}, - [11448] = {.lex_state = 0, .external_lex_state = 3}, + [11446] = {.lex_state = 466}, + [11447] = {.lex_state = 0}, + [11448] = {.lex_state = 0}, [11449] = {.lex_state = 0}, - [11450] = {.lex_state = 438}, - [11451] = {.lex_state = 438}, - [11452] = {.lex_state = 0, .external_lex_state = 3}, + [11450] = {.lex_state = 0}, + [11451] = {.lex_state = 150}, + [11452] = {.lex_state = 0}, [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}, + [11454] = {.lex_state = 150}, + [11455] = {.lex_state = 0}, + [11456] = {.lex_state = 466}, + [11457] = {.lex_state = 466}, + [11458] = {.lex_state = 466}, + [11459] = {.lex_state = 466}, + [11460] = {.lex_state = 0}, [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}, + [11462] = {.lex_state = 0}, + [11463] = {.lex_state = 0}, + [11464] = {.lex_state = 0}, + [11465] = {.lex_state = 466}, + [11466] = {.lex_state = 0}, + [11467] = {.lex_state = 0}, + [11468] = {.lex_state = 0}, [11469] = {.lex_state = 0}, - [11470] = {.lex_state = 438}, - [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}, + [11470] = {.lex_state = 0}, + [11471] = {.lex_state = 0}, + [11472] = {.lex_state = 0}, + [11473] = {.lex_state = 466}, + [11474] = {.lex_state = 0}, + [11475] = {.lex_state = 0}, [11476] = {.lex_state = 0}, - [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}, + [11477] = {.lex_state = 0}, + [11478] = {.lex_state = 0}, + [11479] = {.lex_state = 0}, + [11480] = {.lex_state = 0}, + [11481] = {.lex_state = 0}, + [11482] = {.lex_state = 0}, + [11483] = {.lex_state = 0}, + [11484] = {.lex_state = 0}, + [11485] = {.lex_state = 466}, [11486] = {.lex_state = 0}, [11487] = {.lex_state = 0}, [11488] = {.lex_state = 0}, - [11489] = {.lex_state = 0}, + [11489] = {.lex_state = 466}, [11490] = {.lex_state = 0}, - [11491] = {.lex_state = 266}, + [11491] = {.lex_state = 0}, [11492] = {.lex_state = 0}, [11493] = {.lex_state = 0}, - [11494] = {.lex_state = 266}, - [11495] = {.lex_state = 438}, - [11496] = {.lex_state = 237}, - [11497] = {.lex_state = 237}, + [11494] = {.lex_state = 0}, + [11495] = {.lex_state = 0}, + [11496] = {.lex_state = 0}, + [11497] = {.lex_state = 0}, [11498] = {.lex_state = 0}, - [11499] = {.lex_state = 438}, - [11500] = {.lex_state = 0}, - [11501] = {.lex_state = 0}, + [11499] = {.lex_state = 0}, + [11500] = {.lex_state = 466}, + [11501] = {.lex_state = 150}, [11502] = {.lex_state = 0}, - [11503] = {.lex_state = 237}, - [11504] = {.lex_state = 237}, - [11505] = {.lex_state = 0}, + [11503] = {.lex_state = 0}, + [11504] = {.lex_state = 0}, + [11505] = {.lex_state = 466}, [11506] = {.lex_state = 0}, - [11507] = {.lex_state = 438}, + [11507] = {.lex_state = 466}, [11508] = {.lex_state = 0}, [11509] = {.lex_state = 0}, - [11510] = {.lex_state = 237}, - [11511] = {.lex_state = 0}, + [11510] = {.lex_state = 0}, + [11511] = {.lex_state = 466}, [11512] = {.lex_state = 0}, [11513] = {.lex_state = 0}, [11514] = {.lex_state = 0}, [11515] = {.lex_state = 0}, [11516] = {.lex_state = 0}, - [11517] = {.lex_state = 0}, - [11518] = {.lex_state = 0}, + [11517] = {.lex_state = 466}, + [11518] = {.lex_state = 466}, [11519] = {.lex_state = 0}, [11520] = {.lex_state = 0}, [11521] = {.lex_state = 0}, - [11522] = {.lex_state = 266}, + [11522] = {.lex_state = 0}, [11523] = {.lex_state = 0}, [11524] = {.lex_state = 0}, - [11525] = {.lex_state = 0, .external_lex_state = 3}, - [11526] = {.lex_state = 266}, - [11527] = {.lex_state = 0, .external_lex_state = 2}, + [11525] = {.lex_state = 0}, + [11526] = {.lex_state = 0}, + [11527] = {.lex_state = 0}, [11528] = {.lex_state = 0}, [11529] = {.lex_state = 0}, [11530] = {.lex_state = 0}, - [11531] = {.lex_state = 0}, - [11532] = {.lex_state = 0}, - [11533] = {.lex_state = 151}, + [11531] = {.lex_state = 466}, + [11532] = {.lex_state = 150}, + [11533] = {.lex_state = 0}, [11534] = {.lex_state = 0}, [11535] = {.lex_state = 0}, - [11536] = {.lex_state = 0}, - [11537] = {.lex_state = 237}, - [11538] = {.lex_state = 266}, - [11539] = {.lex_state = 438}, + [11536] = {.lex_state = 466}, + [11537] = {.lex_state = 0}, + [11538] = {.lex_state = 0}, + [11539] = {.lex_state = 0}, [11540] = {.lex_state = 0}, - [11541] = {.lex_state = 237}, + [11541] = {.lex_state = 466}, [11542] = {.lex_state = 0}, [11543] = {.lex_state = 0}, - [11544] = {.lex_state = 0}, - [11545] = {.lex_state = 0}, + [11544] = {.lex_state = 466}, + [11545] = {.lex_state = 466}, [11546] = {.lex_state = 0}, [11547] = {.lex_state = 0}, - [11548] = {.lex_state = 0}, - [11549] = {.lex_state = 0}, + [11548] = {.lex_state = 150}, + [11549] = {.lex_state = 466}, [11550] = {.lex_state = 0}, - [11551] = {.lex_state = 438}, - [11552] = {.lex_state = 0}, + [11551] = {.lex_state = 0}, + [11552] = {.lex_state = 466}, [11553] = {.lex_state = 0}, - [11554] = {.lex_state = 438}, - [11555] = {.lex_state = 0}, - [11556] = {.lex_state = 237}, - [11557] = {.lex_state = 237}, - [11558] = {.lex_state = 266}, - [11559] = {.lex_state = 237}, - [11560] = {.lex_state = 0}, + [11554] = {.lex_state = 0}, + [11555] = {.lex_state = 466}, + [11556] = {.lex_state = 466}, + [11557] = {.lex_state = 288}, + [11558] = {.lex_state = 466}, + [11559] = {.lex_state = 0}, + [11560] = {.lex_state = 466}, [11561] = {.lex_state = 0}, [11562] = {.lex_state = 0}, - [11563] = {.lex_state = 266}, - [11564] = {.lex_state = 266}, - [11565] = {.lex_state = 0}, + [11563] = {.lex_state = 0}, + [11564] = {.lex_state = 466}, + [11565] = {.lex_state = 466}, [11566] = {.lex_state = 0}, - [11567] = {.lex_state = 0}, - [11568] = {.lex_state = 438}, - [11569] = {.lex_state = 237}, - [11570] = {.lex_state = 237}, + [11567] = {.lex_state = 150}, + [11568] = {.lex_state = 0}, + [11569] = {.lex_state = 466}, + [11570] = {.lex_state = 466}, [11571] = {.lex_state = 0}, [11572] = {.lex_state = 0}, [11573] = {.lex_state = 0}, [11574] = {.lex_state = 0}, - [11575] = {.lex_state = 0}, - [11576] = {.lex_state = 0}, + [11575] = {.lex_state = 466}, + [11576] = {.lex_state = 466}, [11577] = {.lex_state = 0}, [11578] = {.lex_state = 0}, - [11579] = {.lex_state = 266}, - [11580] = {.lex_state = 266}, - [11581] = {.lex_state = 0}, - [11582] = {.lex_state = 0}, + [11579] = {.lex_state = 0}, + [11580] = {.lex_state = 0}, + [11581] = {.lex_state = 253}, + [11582] = {.lex_state = 466}, [11583] = {.lex_state = 0}, [11584] = {.lex_state = 0}, - [11585] = {.lex_state = 237}, + [11585] = {.lex_state = 0}, [11586] = {.lex_state = 0}, [11587] = {.lex_state = 0}, - [11588] = {.lex_state = 438}, - [11589] = {.lex_state = 438}, - [11590] = {.lex_state = 266}, - [11591] = {.lex_state = 266}, - [11592] = {.lex_state = 0}, - [11593] = {.lex_state = 266}, - [11594] = {.lex_state = 438}, + [11588] = {.lex_state = 0}, + [11589] = {.lex_state = 0}, + [11590] = {.lex_state = 0}, + [11591] = {.lex_state = 288}, + [11592] = {.lex_state = 288}, + [11593] = {.lex_state = 466}, + [11594] = {.lex_state = 466}, [11595] = {.lex_state = 0}, - [11596] = {.lex_state = 266}, - [11597] = {.lex_state = 0, .external_lex_state = 3}, + [11596] = {.lex_state = 0}, + [11597] = {.lex_state = 0}, [11598] = {.lex_state = 0}, [11599] = {.lex_state = 0}, - [11600] = {.lex_state = 266}, - [11601] = {.lex_state = 0}, - [11602] = {.lex_state = 438}, - [11603] = {.lex_state = 438}, - [11604] = {.lex_state = 266}, - [11605] = {.lex_state = 237}, - [11606] = {.lex_state = 237}, + [11600] = {.lex_state = 0}, + [11601] = {.lex_state = 466}, + [11602] = {.lex_state = 0}, + [11603] = {.lex_state = 466}, + [11604] = {.lex_state = 0}, + [11605] = {.lex_state = 0}, + [11606] = {.lex_state = 0}, [11607] = {.lex_state = 0}, - [11608] = {.lex_state = 438}, - [11609] = {.lex_state = 266}, - [11610] = {.lex_state = 0, .external_lex_state = 3}, + [11608] = {.lex_state = 0}, + [11609] = {.lex_state = 0}, + [11610] = {.lex_state = 466}, [11611] = {.lex_state = 0}, - [11612] = {.lex_state = 438}, + [11612] = {.lex_state = 0}, [11613] = {.lex_state = 0}, - [11614] = {.lex_state = 438}, - [11615] = {.lex_state = 266}, + [11614] = {.lex_state = 466}, + [11615] = {.lex_state = 466}, [11616] = {.lex_state = 0}, [11617] = {.lex_state = 0}, [11618] = {.lex_state = 0}, - [11619] = {.lex_state = 266}, - [11620] = {.lex_state = 0, .external_lex_state = 3}, + [11619] = {.lex_state = 0}, + [11620] = {.lex_state = 0}, [11621] = {.lex_state = 0}, - [11622] = {.lex_state = 438}, - [11623] = {.lex_state = 438}, - [11624] = {.lex_state = 266}, + [11622] = {.lex_state = 466}, + [11623] = {.lex_state = 0}, + [11624] = {.lex_state = 0}, [11625] = {.lex_state = 0}, [11626] = {.lex_state = 0}, - [11627] = {.lex_state = 0}, - [11628] = {.lex_state = 266}, - [11629] = {.lex_state = 0, .external_lex_state = 3}, + [11627] = {.lex_state = 466}, + [11628] = {.lex_state = 0}, + [11629] = {.lex_state = 0}, [11630] = {.lex_state = 0}, - [11631] = {.lex_state = 438}, - [11632] = {.lex_state = 266}, + [11631] = {.lex_state = 0}, + [11632] = {.lex_state = 466}, [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 = 466}, + [11635] = {.lex_state = 0}, + [11636] = {.lex_state = 466}, + [11637] = {.lex_state = 0}, + [11638] = {.lex_state = 0}, [11639] = {.lex_state = 0}, - [11640] = {.lex_state = 266}, - [11641] = {.lex_state = 0, .external_lex_state = 3}, - [11642] = {.lex_state = 0}, - [11643] = {.lex_state = 266}, - [11644] = {.lex_state = 0, .external_lex_state = 3}, - [11645] = {.lex_state = 266}, - [11646] = {.lex_state = 0, .external_lex_state = 3}, - [11647] = {.lex_state = 0}, - [11648] = {.lex_state = 0, .external_lex_state = 3}, + [11640] = {.lex_state = 0}, + [11641] = {.lex_state = 466}, + [11642] = {.lex_state = 466}, + [11643] = {.lex_state = 466}, + [11644] = {.lex_state = 0}, + [11645] = {.lex_state = 150}, + [11646] = {.lex_state = 0}, + [11647] = {.lex_state = 466}, + [11648] = {.lex_state = 0}, [11649] = {.lex_state = 0}, - [11650] = {.lex_state = 0, .external_lex_state = 3}, - [11651] = {.lex_state = 266}, - [11652] = {.lex_state = 0, .external_lex_state = 3}, - [11653] = {.lex_state = 266}, - [11654] = {.lex_state = 0, .external_lex_state = 3}, - [11655] = {.lex_state = 0}, - [11656] = {.lex_state = 0, .external_lex_state = 3}, - [11657] = {.lex_state = 438}, - [11658] = {.lex_state = 0, .external_lex_state = 3}, + [11650] = {.lex_state = 0}, + [11651] = {.lex_state = 466}, + [11652] = {.lex_state = 466}, + [11653] = {.lex_state = 466}, + [11654] = {.lex_state = 0}, + [11655] = {.lex_state = 466}, + [11656] = {.lex_state = 466}, + [11657] = {.lex_state = 0}, + [11658] = {.lex_state = 0}, [11659] = {.lex_state = 0}, - [11660] = {.lex_state = 0, .external_lex_state = 3}, - [11661] = {.lex_state = 266}, - [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}, + [11660] = {.lex_state = 0}, + [11661] = {.lex_state = 466}, + [11662] = {.lex_state = 0}, + [11663] = {.lex_state = 466}, + [11664] = {.lex_state = 0}, + [11665] = {.lex_state = 0}, + [11666] = {.lex_state = 150}, + [11667] = {.lex_state = 466}, + [11668] = {.lex_state = 466}, [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}, + [11673] = {.lex_state = 150}, + [11674] = {.lex_state = 0}, + [11675] = {.lex_state = 0}, [11676] = {.lex_state = 0}, [11677] = {.lex_state = 0}, [11678] = {.lex_state = 0}, [11679] = {.lex_state = 0}, - [11680] = {.lex_state = 0}, - [11681] = {.lex_state = 0}, - [11682] = {.lex_state = 438}, + [11680] = {.lex_state = 466}, + [11681] = {.lex_state = 466}, + [11682] = {.lex_state = 150}, [11683] = {.lex_state = 0}, - [11684] = {.lex_state = 266}, - [11685] = {.lex_state = 0}, - [11686] = {.lex_state = 438}, - [11687] = {.lex_state = 266}, - [11688] = {.lex_state = 438}, - [11689] = {.lex_state = 438}, + [11684] = {.lex_state = 0}, + [11685] = {.lex_state = 466}, + [11686] = {.lex_state = 0}, + [11687] = {.lex_state = 0}, + [11688] = {.lex_state = 466}, + [11689] = {.lex_state = 0}, [11690] = {.lex_state = 0}, - [11691] = {.lex_state = 438}, - [11692] = {.lex_state = 438}, - [11693] = {.lex_state = 266}, - [11694] = {.lex_state = 438}, - [11695] = {.lex_state = 438}, - [11696] = {.lex_state = 0}, - [11697] = {.lex_state = 438}, - [11698] = {.lex_state = 438}, - [11699] = {.lex_state = 266}, - [11700] = {.lex_state = 438}, - [11701] = {.lex_state = 438}, - [11702] = {.lex_state = 0}, - [11703] = {.lex_state = 438}, - [11704] = {.lex_state = 438}, - [11705] = {.lex_state = 237}, - [11706] = {.lex_state = 438}, - [11707] = {.lex_state = 438}, - [11708] = {.lex_state = 438}, - [11709] = {.lex_state = 438}, - [11710] = {.lex_state = 438}, - [11711] = {.lex_state = 438}, - [11712] = {.lex_state = 438}, - [11713] = {.lex_state = 438}, - [11714] = {.lex_state = 438}, - [11715] = {.lex_state = 438}, - [11716] = {.lex_state = 438}, - [11717] = {.lex_state = 438}, - [11718] = {.lex_state = 438}, - [11719] = {.lex_state = 0}, - [11720] = {.lex_state = 0}, + [11691] = {.lex_state = 0}, + [11692] = {.lex_state = 0}, + [11693] = {.lex_state = 466}, + [11694] = {.lex_state = 0}, + [11695] = {.lex_state = 0}, + [11696] = {.lex_state = 466}, + [11697] = {.lex_state = 466}, + [11698] = {.lex_state = 0}, + [11699] = {.lex_state = 0}, + [11700] = {.lex_state = 466}, + [11701] = {.lex_state = 0}, + [11702] = {.lex_state = 466}, + [11703] = {.lex_state = 0}, + [11704] = {.lex_state = 0}, + [11705] = {.lex_state = 0}, + [11706] = {.lex_state = 0}, + [11707] = {.lex_state = 466}, + [11708] = {.lex_state = 0}, + [11709] = {.lex_state = 0}, + [11710] = {.lex_state = 466}, + [11711] = {.lex_state = 0}, + [11712] = {.lex_state = 466}, + [11713] = {.lex_state = 0}, + [11714] = {.lex_state = 0}, + [11715] = {.lex_state = 466}, + [11716] = {.lex_state = 0}, + [11717] = {.lex_state = 150}, + [11718] = {.lex_state = 466}, + [11719] = {.lex_state = 150}, + [11720] = {.lex_state = 466}, [11721] = {.lex_state = 0}, - [11722] = {.lex_state = 438}, - [11723] = {.lex_state = 151}, + [11722] = {.lex_state = 0}, + [11723] = {.lex_state = 466}, [11724] = {.lex_state = 0}, - [11725] = {.lex_state = 0}, - [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}, + [11725] = {.lex_state = 466}, + [11726] = {.lex_state = 466}, + [11727] = {.lex_state = 150}, + [11728] = {.lex_state = 466}, + [11729] = {.lex_state = 466}, + [11730] = {.lex_state = 466}, + [11731] = {.lex_state = 0}, + [11732] = {.lex_state = 466}, + [11733] = {.lex_state = 466}, + [11734] = {.lex_state = 466}, + [11735] = {.lex_state = 466}, + [11736] = {.lex_state = 466}, + [11737] = {.lex_state = 466}, + [11738] = {.lex_state = 466}, + [11739] = {.lex_state = 0}, + [11740] = {.lex_state = 0}, + [11741] = {.lex_state = 466}, + [11742] = {.lex_state = 0}, + [11743] = {.lex_state = 466}, + [11744] = {.lex_state = 0}, + [11745] = {.lex_state = 466}, + [11746] = {.lex_state = 0}, + [11747] = {.lex_state = 466}, + [11748] = {.lex_state = 466}, + [11749] = {.lex_state = 0}, + [11750] = {.lex_state = 0}, + [11751] = {.lex_state = 0}, + [11752] = {.lex_state = 0}, + [11753] = {.lex_state = 0}, + [11754] = {.lex_state = 0}, + [11755] = {.lex_state = 0}, + [11756] = {.lex_state = 0}, + [11757] = {.lex_state = 0}, + [11758] = {.lex_state = 0}, + [11759] = {.lex_state = 0}, + [11760] = {.lex_state = 0}, + [11761] = {.lex_state = 0}, + [11762] = {.lex_state = 0}, + [11763] = {.lex_state = 0}, + [11764] = {.lex_state = 0}, + [11765] = {.lex_state = 0}, + [11766] = {.lex_state = 0}, + [11767] = {.lex_state = 0}, + [11768] = {.lex_state = 0}, + [11769] = {.lex_state = 466, .external_lex_state = 2}, + [11770] = {.lex_state = 466}, + [11771] = {.lex_state = 0}, + [11772] = {.lex_state = 0}, + [11773] = {.lex_state = 0}, + [11774] = {.lex_state = 0}, + [11775] = {.lex_state = 0}, + [11776] = {.lex_state = 0}, + [11777] = {.lex_state = 0}, + [11778] = {.lex_state = 0}, + [11779] = {.lex_state = 0}, + [11780] = {.lex_state = 0}, + [11781] = {.lex_state = 0}, + [11782] = {.lex_state = 0}, + [11783] = {.lex_state = 0}, + [11784] = {.lex_state = 0}, + [11785] = {.lex_state = 0}, + [11786] = {.lex_state = 0}, + [11787] = {.lex_state = 0}, + [11788] = {.lex_state = 0}, + [11789] = {.lex_state = 0}, + [11790] = {.lex_state = 0}, + [11791] = {.lex_state = 0}, + [11792] = {.lex_state = 466}, + [11793] = {.lex_state = 0}, + [11794] = {.lex_state = 253}, + [11795] = {.lex_state = 0}, + [11796] = {.lex_state = 466}, + [11797] = {.lex_state = 0}, + [11798] = {.lex_state = 0}, + [11799] = {.lex_state = 0}, + [11800] = {.lex_state = 0}, + [11801] = {.lex_state = 0}, + [11802] = {.lex_state = 0}, + [11803] = {.lex_state = 466, .external_lex_state = 2}, + [11804] = {.lex_state = 0}, + [11805] = {.lex_state = 288}, + [11806] = {.lex_state = 0}, + [11807] = {.lex_state = 0}, + [11808] = {.lex_state = 0}, + [11809] = {.lex_state = 0}, + [11810] = {.lex_state = 150}, + [11811] = {.lex_state = 0}, + [11812] = {.lex_state = 0}, + [11813] = {.lex_state = 0}, + [11814] = {.lex_state = 0}, + [11815] = {.lex_state = 0}, + [11816] = {.lex_state = 0}, + [11817] = {.lex_state = 0}, + [11818] = {.lex_state = 466}, + [11819] = {.lex_state = 466}, + [11820] = {.lex_state = 466}, + [11821] = {.lex_state = 0}, + [11822] = {.lex_state = 0}, + [11823] = {.lex_state = 0}, + [11824] = {.lex_state = 0}, + [11825] = {.lex_state = 0}, + [11826] = {.lex_state = 466}, + [11827] = {.lex_state = 466}, + [11828] = {.lex_state = 288}, + [11829] = {.lex_state = 0}, + [11830] = {.lex_state = 466}, + [11831] = {.lex_state = 0}, + [11832] = {.lex_state = 0}, + [11833] = {.lex_state = 0}, + [11834] = {.lex_state = 0}, + [11835] = {.lex_state = 466, .external_lex_state = 2}, + [11836] = {.lex_state = 466}, + [11837] = {.lex_state = 466}, + [11838] = {.lex_state = 466}, + [11839] = {.lex_state = 466, .external_lex_state = 2}, + [11840] = {.lex_state = 0}, + [11841] = {.lex_state = 0}, + [11842] = {.lex_state = 466, .external_lex_state = 2}, + [11843] = {.lex_state = 0}, + [11844] = {.lex_state = 466, .external_lex_state = 2}, + [11845] = {.lex_state = 466, .external_lex_state = 2}, + [11846] = {.lex_state = 0}, + [11847] = {.lex_state = 466, .external_lex_state = 2}, + [11848] = {.lex_state = 0}, + [11849] = {.lex_state = 0}, + [11850] = {.lex_state = 466, .external_lex_state = 2}, + [11851] = {.lex_state = 466, .external_lex_state = 2}, + [11852] = {.lex_state = 466, .external_lex_state = 2}, + [11853] = {.lex_state = 466, .external_lex_state = 2}, + [11854] = {.lex_state = 466, .external_lex_state = 2}, + [11855] = {.lex_state = 466, .external_lex_state = 2}, + [11856] = {.lex_state = 466, .external_lex_state = 2}, + [11857] = {.lex_state = 466, .external_lex_state = 2}, + [11858] = {.lex_state = 466, .external_lex_state = 2}, + [11859] = {.lex_state = 466, .external_lex_state = 2}, + [11860] = {.lex_state = 466, .external_lex_state = 2}, + [11861] = {.lex_state = 466, .external_lex_state = 2}, + [11862] = {.lex_state = 466, .external_lex_state = 2}, + [11863] = {.lex_state = 0}, + [11864] = {.lex_state = 253}, + [11865] = {.lex_state = 0}, + [11866] = {.lex_state = 253}, + [11867] = {.lex_state = 0}, + [11868] = {.lex_state = 0}, + [11869] = {.lex_state = 0}, + [11870] = {.lex_state = 0}, + [11871] = {.lex_state = 0}, + [11872] = {.lex_state = 288}, + [11873] = {.lex_state = 0}, + [11874] = {.lex_state = 0}, + [11875] = {.lex_state = 0}, + [11876] = {.lex_state = 0}, + [11877] = {.lex_state = 0}, + [11878] = {.lex_state = 0}, + [11879] = {.lex_state = 288}, + [11880] = {.lex_state = 0}, + [11881] = {.lex_state = 255}, + [11882] = {.lex_state = 0}, + [11883] = {.lex_state = 255}, + [11884] = {.lex_state = 0}, + [11885] = {.lex_state = 0}, + [11886] = {.lex_state = 288}, + [11887] = {.lex_state = 0}, + [11888] = {.lex_state = 288}, + [11889] = {.lex_state = 288}, + [11890] = {.lex_state = 0}, + [11891] = {.lex_state = 0}, + [11892] = {.lex_state = 0}, + [11893] = {.lex_state = 255}, + [11894] = {.lex_state = 255}, + [11895] = {.lex_state = 0}, + [11896] = {.lex_state = 255}, + [11897] = {.lex_state = 151}, + [11898] = {.lex_state = 0}, + [11899] = {.lex_state = 0, .external_lex_state = 2}, + [11900] = {.lex_state = 0}, + [11901] = {.lex_state = 291}, + [11902] = {.lex_state = 0}, + [11903] = {.lex_state = 0}, + [11904] = {.lex_state = 0}, + [11905] = {.lex_state = 291}, + [11906] = {.lex_state = 291}, + [11907] = {.lex_state = 0}, + [11908] = {.lex_state = 151}, + [11909] = {.lex_state = 151}, + [11910] = {.lex_state = 288}, + [11911] = {.lex_state = 255}, + [11912] = {.lex_state = 0}, + [11913] = {.lex_state = 0}, + [11914] = {.lex_state = 255}, + [11915] = {.lex_state = 0}, + [11916] = {.lex_state = 288}, + [11917] = {.lex_state = 291}, + [11918] = {.lex_state = 0}, + [11919] = {.lex_state = 0}, + [11920] = {.lex_state = 466}, + [11921] = {.lex_state = 255}, + [11922] = {.lex_state = 0}, + [11923] = {.lex_state = 255}, + [11924] = {.lex_state = 0}, + [11925] = {.lex_state = 0}, + [11926] = {.lex_state = 0}, + [11927] = {.lex_state = 0}, + [11928] = {.lex_state = 0, .external_lex_state = 2}, + [11929] = {.lex_state = 0}, + [11930] = {.lex_state = 288}, + [11931] = {.lex_state = 0}, + [11932] = {.lex_state = 0}, + [11933] = {.lex_state = 151}, + [11934] = {.lex_state = 0}, + [11935] = {.lex_state = 0}, + [11936] = {.lex_state = 0}, + [11937] = {.lex_state = 0}, + [11938] = {.lex_state = 0}, + [11939] = {.lex_state = 0}, + [11940] = {.lex_state = 291}, + [11941] = {.lex_state = 151}, + [11942] = {.lex_state = 255}, + [11943] = {.lex_state = 466}, + [11944] = {.lex_state = 255}, + [11945] = {.lex_state = 0}, + [11946] = {.lex_state = 0}, + [11947] = {.lex_state = 0}, + [11948] = {.lex_state = 466}, + [11949] = {.lex_state = 0}, + [11950] = {.lex_state = 0}, + [11951] = {.lex_state = 0}, + [11952] = {.lex_state = 0}, + [11953] = {.lex_state = 0}, + [11954] = {.lex_state = 288}, + [11955] = {.lex_state = 0}, + [11956] = {.lex_state = 466}, + [11957] = {.lex_state = 0}, + [11958] = {.lex_state = 0}, + [11959] = {.lex_state = 0}, + [11960] = {.lex_state = 0}, + [11961] = {.lex_state = 291}, + [11962] = {.lex_state = 0}, + [11963] = {.lex_state = 0}, + [11964] = {.lex_state = 288}, + [11965] = {.lex_state = 0}, + [11966] = {.lex_state = 0}, + [11967] = {.lex_state = 0}, + [11968] = {.lex_state = 288}, + [11969] = {.lex_state = 0}, + [11970] = {.lex_state = 0}, + [11971] = {.lex_state = 151}, + [11972] = {.lex_state = 466}, + [11973] = {.lex_state = 0}, + [11974] = {.lex_state = 255}, + [11975] = {.lex_state = 0}, + [11976] = {.lex_state = 0}, + [11977] = {.lex_state = 0}, + [11978] = {.lex_state = 0}, + [11979] = {.lex_state = 0}, + [11980] = {.lex_state = 255}, + [11981] = {.lex_state = 0}, + [11982] = {.lex_state = 291}, + [11983] = {.lex_state = 0}, + [11984] = {.lex_state = 0}, + [11985] = {.lex_state = 0}, + [11986] = {.lex_state = 288}, + [11987] = {.lex_state = 0}, + [11988] = {.lex_state = 0}, + [11989] = {.lex_state = 0}, + [11990] = {.lex_state = 288}, + [11991] = {.lex_state = 0}, + [11992] = {.lex_state = 466}, + [11993] = {.lex_state = 255}, + [11994] = {.lex_state = 0}, + [11995] = {.lex_state = 151}, + [11996] = {.lex_state = 0}, + [11997] = {.lex_state = 0}, + [11998] = {.lex_state = 0}, + [11999] = {.lex_state = 466}, + [12000] = {.lex_state = 0}, + [12001] = {.lex_state = 288}, + [12002] = {.lex_state = 255}, + [12003] = {.lex_state = 0}, + [12004] = {.lex_state = 0}, + [12005] = {.lex_state = 0}, + [12006] = {.lex_state = 288}, + [12007] = {.lex_state = 0}, + [12008] = {.lex_state = 0}, + [12009] = {.lex_state = 466}, + [12010] = {.lex_state = 0}, + [12011] = {.lex_state = 0}, + [12012] = {.lex_state = 288}, + [12013] = {.lex_state = 0}, + [12014] = {.lex_state = 288}, + [12015] = {.lex_state = 0}, + [12016] = {.lex_state = 0}, + [12017] = {.lex_state = 0}, + [12018] = {.lex_state = 0}, + [12019] = {.lex_state = 0}, + [12020] = {.lex_state = 0}, + [12021] = {.lex_state = 0}, + [12022] = {.lex_state = 255}, + [12023] = {.lex_state = 0}, + [12024] = {.lex_state = 255}, + [12025] = {.lex_state = 0}, + [12026] = {.lex_state = 0}, + [12027] = {.lex_state = 0}, + [12028] = {.lex_state = 0}, + [12029] = {.lex_state = 0}, + [12030] = {.lex_state = 466}, + [12031] = {.lex_state = 0}, + [12032] = {.lex_state = 0}, + [12033] = {.lex_state = 0}, + [12034] = {.lex_state = 288}, + [12035] = {.lex_state = 0}, + [12036] = {.lex_state = 466}, + [12037] = {.lex_state = 0}, + [12038] = {.lex_state = 0}, + [12039] = {.lex_state = 288}, + [12040] = {.lex_state = 0}, + [12041] = {.lex_state = 0}, + [12042] = {.lex_state = 0, .external_lex_state = 2}, + [12043] = {.lex_state = 288}, + [12044] = {.lex_state = 0}, + [12045] = {.lex_state = 0}, + [12046] = {.lex_state = 0}, + [12047] = {.lex_state = 0}, + [12048] = {.lex_state = 0}, + [12049] = {.lex_state = 0}, + [12050] = {.lex_state = 0}, + [12051] = {.lex_state = 0}, + [12052] = {.lex_state = 0}, + [12053] = {.lex_state = 288}, + [12054] = {.lex_state = 466}, + [12055] = {.lex_state = 0}, + [12056] = {.lex_state = 288}, + [12057] = {.lex_state = 0}, + [12058] = {.lex_state = 0}, + [12059] = {.lex_state = 0}, + [12060] = {.lex_state = 0}, + [12061] = {.lex_state = 0}, + [12062] = {.lex_state = 288}, + [12063] = {.lex_state = 0}, + [12064] = {.lex_state = 0}, + [12065] = {.lex_state = 0}, + [12066] = {.lex_state = 0}, + [12067] = {.lex_state = 0}, + [12068] = {.lex_state = 466}, + [12069] = {.lex_state = 0}, + [12070] = {.lex_state = 0}, + [12071] = {.lex_state = 0}, + [12072] = {.lex_state = 0}, + [12073] = {.lex_state = 0}, + [12074] = {.lex_state = 0}, + [12075] = {.lex_state = 466}, + [12076] = {.lex_state = 0}, + [12077] = {.lex_state = 0}, + [12078] = {.lex_state = 255}, + [12079] = {.lex_state = 0}, + [12080] = {.lex_state = 0}, + [12081] = {.lex_state = 0}, + [12082] = {.lex_state = 0}, + [12083] = {.lex_state = 0}, + [12084] = {.lex_state = 0}, + [12085] = {.lex_state = 0}, + [12086] = {.lex_state = 466}, + [12087] = {.lex_state = 151}, + [12088] = {.lex_state = 291}, + [12089] = {.lex_state = 0}, + [12090] = {.lex_state = 0}, + [12091] = {.lex_state = 0}, + [12092] = {.lex_state = 0}, + [12093] = {.lex_state = 0}, + [12094] = {.lex_state = 0}, + [12095] = {.lex_state = 288}, + [12096] = {.lex_state = 0}, + [12097] = {.lex_state = 288}, + [12098] = {.lex_state = 0}, + [12099] = {.lex_state = 0}, + [12100] = {.lex_state = 0}, + [12101] = {.lex_state = 0}, + [12102] = {.lex_state = 0}, + [12103] = {.lex_state = 0}, + [12104] = {.lex_state = 0}, + [12105] = {.lex_state = 0}, + [12106] = {.lex_state = 0}, + [12107] = {.lex_state = 0}, + [12108] = {.lex_state = 0}, + [12109] = {.lex_state = 0}, + [12110] = {.lex_state = 0}, + [12111] = {.lex_state = 0}, + [12112] = {.lex_state = 0}, + [12113] = {.lex_state = 0}, + [12114] = {.lex_state = 0}, + [12115] = {.lex_state = 288}, + [12116] = {.lex_state = 0}, + [12117] = {.lex_state = 0}, + [12118] = {.lex_state = 0}, + [12119] = {.lex_state = 0}, + [12120] = {.lex_state = 0}, + [12121] = {.lex_state = 0, .external_lex_state = 2}, + [12122] = {.lex_state = 0}, + [12123] = {.lex_state = 288}, + [12124] = {.lex_state = 0}, + [12125] = {.lex_state = 288}, + [12126] = {.lex_state = 151}, + [12127] = {.lex_state = 0}, + [12128] = {.lex_state = 0}, + [12129] = {.lex_state = 0}, + [12130] = {.lex_state = 0}, + [12131] = {.lex_state = 0}, + [12132] = {.lex_state = 0}, + [12133] = {.lex_state = 466}, + [12134] = {.lex_state = 0}, + [12135] = {.lex_state = 0}, + [12136] = {.lex_state = 255}, + [12137] = {.lex_state = 0}, + [12138] = {.lex_state = 0}, + [12139] = {.lex_state = 0}, + [12140] = {.lex_state = 0}, + [12141] = {.lex_state = 0}, + [12142] = {.lex_state = 0}, + [12143] = {.lex_state = 466}, + [12144] = {.lex_state = 0}, + [12145] = {.lex_state = 0}, + [12146] = {.lex_state = 255}, + [12147] = {.lex_state = 255}, + [12148] = {.lex_state = 0}, + [12149] = {.lex_state = 466}, + [12150] = {.lex_state = 0}, + [12151] = {.lex_state = 0}, + [12152] = {.lex_state = 288}, + [12153] = {.lex_state = 255}, + [12154] = {.lex_state = 0}, + [12155] = {.lex_state = 0}, + [12156] = {.lex_state = 288}, + [12157] = {.lex_state = 255}, + [12158] = {.lex_state = 288}, + [12159] = {.lex_state = 0}, + [12160] = {.lex_state = 0}, + [12161] = {.lex_state = 0}, + [12162] = {.lex_state = 0}, + [12163] = {.lex_state = 0}, + [12164] = {.lex_state = 0}, + [12165] = {.lex_state = 291}, + [12166] = {.lex_state = 151}, + [12167] = {.lex_state = 0}, + [12168] = {.lex_state = 0}, + [12169] = {.lex_state = 0}, + [12170] = {.lex_state = 0}, + [12171] = {.lex_state = 0}, + [12172] = {.lex_state = 288}, + [12173] = {.lex_state = 0}, + [12174] = {.lex_state = 288}, + [12175] = {.lex_state = 466}, + [12176] = {.lex_state = 0}, + [12177] = {.lex_state = 0}, + [12178] = {.lex_state = 0}, + [12179] = {.lex_state = 0}, + [12180] = {.lex_state = 0, .external_lex_state = 2}, + [12181] = {.lex_state = 466}, + [12182] = {.lex_state = 0}, + [12183] = {.lex_state = 288}, + [12184] = {.lex_state = 288}, + [12185] = {.lex_state = 0}, + [12186] = {.lex_state = 0}, + [12187] = {.lex_state = 0}, + [12188] = {.lex_state = 288}, + [12189] = {.lex_state = 288}, + [12190] = {.lex_state = 0}, + [12191] = {.lex_state = 466}, + [12192] = {.lex_state = 151}, + [12193] = {.lex_state = 0}, + [12194] = {.lex_state = 0}, + [12195] = {.lex_state = 0}, + [12196] = {.lex_state = 255}, + [12197] = {.lex_state = 0}, + [12198] = {.lex_state = 0}, + [12199] = {.lex_state = 288}, + [12200] = {.lex_state = 0}, + [12201] = {.lex_state = 151}, + [12202] = {.lex_state = 255}, + [12203] = {.lex_state = 288}, + [12204] = {.lex_state = 0}, + [12205] = {.lex_state = 0}, + [12206] = {.lex_state = 0}, + [12207] = {.lex_state = 466}, + [12208] = {.lex_state = 466}, + [12209] = {.lex_state = 0}, + [12210] = {.lex_state = 0}, + [12211] = {.lex_state = 466}, + [12212] = {.lex_state = 288}, + [12213] = {.lex_state = 0}, + [12214] = {.lex_state = 288}, + [12215] = {.lex_state = 151}, + [12216] = {.lex_state = 0}, + [12217] = {.lex_state = 291}, + [12218] = {.lex_state = 0}, + [12219] = {.lex_state = 0}, + [12220] = {.lex_state = 0}, + [12221] = {.lex_state = 0}, + [12222] = {.lex_state = 0}, + [12223] = {.lex_state = 0}, + [12224] = {.lex_state = 255}, + [12225] = {.lex_state = 255}, + [12226] = {.lex_state = 466}, + [12227] = {.lex_state = 288}, + [12228] = {.lex_state = 0}, + [12229] = {.lex_state = 288}, + [12230] = {.lex_state = 0}, + [12231] = {.lex_state = 0}, + [12232] = {.lex_state = 0}, + [12233] = {.lex_state = 0}, + [12234] = {.lex_state = 0}, + [12235] = {.lex_state = 0, .external_lex_state = 2}, + [12236] = {.lex_state = 0}, + [12237] = {.lex_state = 255}, + [12238] = {.lex_state = 0}, + [12239] = {.lex_state = 255}, + [12240] = {.lex_state = 0}, + [12241] = {.lex_state = 0}, + [12242] = {.lex_state = 466}, + [12243] = {.lex_state = 288}, + [12244] = {.lex_state = 0}, + [12245] = {.lex_state = 0}, + [12246] = {.lex_state = 255}, + [12247] = {.lex_state = 291}, + [12248] = {.lex_state = 0}, + [12249] = {.lex_state = 288}, + [12250] = {.lex_state = 0, .external_lex_state = 3}, + [12251] = {.lex_state = 0}, + [12252] = {.lex_state = 466}, + [12253] = {.lex_state = 288}, + [12254] = {.lex_state = 151}, + [12255] = {.lex_state = 288}, + [12256] = {.lex_state = 0}, + [12257] = {.lex_state = 288}, + [12258] = {.lex_state = 0}, + [12259] = {.lex_state = 0}, + [12260] = {.lex_state = 288}, + [12261] = {.lex_state = 0}, + [12262] = {.lex_state = 0}, + [12263] = {.lex_state = 288}, + [12264] = {.lex_state = 0}, + [12265] = {.lex_state = 0, .external_lex_state = 2}, + [12266] = {.lex_state = 0}, + [12267] = {.lex_state = 291}, + [12268] = {.lex_state = 0}, + [12269] = {.lex_state = 288}, + [12270] = {.lex_state = 0}, + [12271] = {.lex_state = 0}, + [12272] = {.lex_state = 0}, + [12273] = {.lex_state = 0}, + [12274] = {.lex_state = 0}, + [12275] = {.lex_state = 151}, + [12276] = {.lex_state = 466}, + [12277] = {.lex_state = 288}, + [12278] = {.lex_state = 0}, + [12279] = {.lex_state = 255}, + [12280] = {.lex_state = 288}, + [12281] = {.lex_state = 0}, + [12282] = {.lex_state = 0}, + [12283] = {.lex_state = 0}, + [12284] = {.lex_state = 255}, + [12285] = {.lex_state = 0, .external_lex_state = 2}, + [12286] = {.lex_state = 0}, + [12287] = {.lex_state = 0}, + [12288] = {.lex_state = 0}, + [12289] = {.lex_state = 0}, + [12290] = {.lex_state = 0}, + [12291] = {.lex_state = 0}, + [12292] = {.lex_state = 288}, + [12293] = {.lex_state = 0}, + [12294] = {.lex_state = 0}, + [12295] = {.lex_state = 0}, + [12296] = {.lex_state = 0, .external_lex_state = 2}, + [12297] = {.lex_state = 0}, + [12298] = {.lex_state = 0}, + [12299] = {.lex_state = 288}, + [12300] = {.lex_state = 0}, + [12301] = {.lex_state = 0}, + [12302] = {.lex_state = 0}, + [12303] = {.lex_state = 288}, + [12304] = {.lex_state = 0}, + [12305] = {.lex_state = 0, .external_lex_state = 2}, + [12306] = {.lex_state = 0}, + [12307] = {.lex_state = 0}, + [12308] = {.lex_state = 0}, + [12309] = {.lex_state = 0}, + [12310] = {.lex_state = 0}, + [12311] = {.lex_state = 466}, + [12312] = {.lex_state = 288}, + [12313] = {.lex_state = 0}, + [12314] = {.lex_state = 0, .external_lex_state = 2}, + [12315] = {.lex_state = 288}, + [12316] = {.lex_state = 0}, + [12317] = {.lex_state = 255}, + [12318] = {.lex_state = 0}, + [12319] = {.lex_state = 0}, + [12320] = {.lex_state = 151}, + [12321] = {.lex_state = 288}, + [12322] = {.lex_state = 0}, + [12323] = {.lex_state = 0, .external_lex_state = 2}, + [12324] = {.lex_state = 0}, + [12325] = {.lex_state = 255}, + [12326] = {.lex_state = 0}, + [12327] = {.lex_state = 0}, + [12328] = {.lex_state = 0}, + [12329] = {.lex_state = 288}, + [12330] = {.lex_state = 0}, + [12331] = {.lex_state = 0, .external_lex_state = 2}, + [12332] = {.lex_state = 255}, + [12333] = {.lex_state = 0}, + [12334] = {.lex_state = 0}, + [12335] = {.lex_state = 255}, + [12336] = {.lex_state = 288}, + [12337] = {.lex_state = 0}, + [12338] = {.lex_state = 0, .external_lex_state = 2}, + [12339] = {.lex_state = 151}, + [12340] = {.lex_state = 0}, + [12341] = {.lex_state = 0}, + [12342] = {.lex_state = 0}, + [12343] = {.lex_state = 0}, + [12344] = {.lex_state = 0}, + [12345] = {.lex_state = 0, .external_lex_state = 2}, + [12346] = {.lex_state = 0}, + [12347] = {.lex_state = 291}, + [12348] = {.lex_state = 288}, + [12349] = {.lex_state = 0}, + [12350] = {.lex_state = 288}, + [12351] = {.lex_state = 0}, + [12352] = {.lex_state = 0, .external_lex_state = 2}, + [12353] = {.lex_state = 291}, + [12354] = {.lex_state = 0}, + [12355] = {.lex_state = 0}, + [12356] = {.lex_state = 151}, + [12357] = {.lex_state = 288}, + [12358] = {.lex_state = 0}, + [12359] = {.lex_state = 0, .external_lex_state = 2}, + [12360] = {.lex_state = 255}, + [12361] = {.lex_state = 0}, + [12362] = {.lex_state = 288}, + [12363] = {.lex_state = 0}, + [12364] = {.lex_state = 0, .external_lex_state = 2}, + [12365] = {.lex_state = 466}, + [12366] = {.lex_state = 0}, + [12367] = {.lex_state = 255}, + [12368] = {.lex_state = 0}, + [12369] = {.lex_state = 0, .external_lex_state = 2}, + [12370] = {.lex_state = 255}, + [12371] = {.lex_state = 0}, + [12372] = {.lex_state = 0}, + [12373] = {.lex_state = 0}, + [12374] = {.lex_state = 0, .external_lex_state = 2}, + [12375] = {.lex_state = 0}, + [12376] = {.lex_state = 466}, + [12377] = {.lex_state = 0}, + [12378] = {.lex_state = 0}, + [12379] = {.lex_state = 288}, + [12380] = {.lex_state = 466}, + [12381] = {.lex_state = 0}, + [12382] = {.lex_state = 0}, + [12383] = {.lex_state = 255}, + [12384] = {.lex_state = 0}, + [12385] = {.lex_state = 288}, + [12386] = {.lex_state = 291}, + [12387] = {.lex_state = 0}, + [12388] = {.lex_state = 291}, + [12389] = {.lex_state = 0}, + [12390] = {.lex_state = 0}, + [12391] = {.lex_state = 255}, + [12392] = {.lex_state = 0}, + [12393] = {.lex_state = 0}, + [12394] = {.lex_state = 0}, + [12395] = {.lex_state = 0}, + [12396] = {.lex_state = 255}, + [12397] = {.lex_state = 0}, + [12398] = {.lex_state = 466}, + [12399] = {.lex_state = 0}, + [12400] = {.lex_state = 0}, + [12401] = {.lex_state = 0}, + [12402] = {.lex_state = 0}, + [12403] = {.lex_state = 0}, + [12404] = {.lex_state = 466}, + [12405] = {.lex_state = 0}, + [12406] = {.lex_state = 466}, + [12407] = {.lex_state = 466}, + [12408] = {.lex_state = 466}, + [12409] = {.lex_state = 466}, + [12410] = {.lex_state = 0}, + [12411] = {.lex_state = 466}, + [12412] = {.lex_state = 0}, + [12413] = {.lex_state = 0}, + [12414] = {.lex_state = 0}, + [12415] = {.lex_state = 0}, + [12416] = {.lex_state = 0}, + [12417] = {.lex_state = 255}, + [12418] = {.lex_state = 0}, + [12419] = {.lex_state = 0}, + [12420] = {.lex_state = 151}, + [12421] = {.lex_state = 0}, + [12422] = {.lex_state = 288}, + [12423] = {.lex_state = 0}, + [12424] = {.lex_state = 466}, + [12425] = {.lex_state = 0}, + [12426] = {.lex_state = 0}, + [12427] = {.lex_state = 466}, + [12428] = {.lex_state = 466}, + [12429] = {.lex_state = 0}, + [12430] = {.lex_state = 0}, + [12431] = {.lex_state = 0}, + [12432] = {.lex_state = 466}, + [12433] = {.lex_state = 0, .external_lex_state = 3}, + [12434] = {.lex_state = 0}, + [12435] = {.lex_state = 0}, + [12436] = {.lex_state = 466}, + [12437] = {.lex_state = 466}, + [12438] = {.lex_state = 0}, + [12439] = {.lex_state = 0}, + [12440] = {.lex_state = 0}, + [12441] = {.lex_state = 0}, + [12442] = {.lex_state = 0}, + [12443] = {.lex_state = 255}, + [12444] = {.lex_state = 0}, + [12445] = {.lex_state = 0}, + [12446] = {.lex_state = 0}, + [12447] = {.lex_state = 0}, + [12448] = {.lex_state = 291}, + [12449] = {.lex_state = 288}, + [12450] = {.lex_state = 0}, + [12451] = {.lex_state = 0}, + [12452] = {.lex_state = 0}, + [12453] = {.lex_state = 0}, + [12454] = {.lex_state = 288}, + [12455] = {.lex_state = 0}, + [12456] = {.lex_state = 0}, + [12457] = {.lex_state = 0}, + [12458] = {.lex_state = 0}, + [12459] = {.lex_state = 0}, + [12460] = {.lex_state = 255}, + [12461] = {.lex_state = 0}, + [12462] = {.lex_state = 291}, + [12463] = {.lex_state = 255}, + [12464] = {.lex_state = 0}, + [12465] = {.lex_state = 291}, + [12466] = {.lex_state = 291}, + [12467] = {.lex_state = 0}, + [12468] = {.lex_state = 0}, + [12469] = {.lex_state = 291}, + [12470] = {.lex_state = 0}, + [12471] = {.lex_state = 0}, + [12472] = {.lex_state = 0}, + [12473] = {.lex_state = 466}, + [12474] = {.lex_state = 0}, + [12475] = {.lex_state = 255}, + [12476] = {.lex_state = 0}, + [12477] = {.lex_state = 151}, + [12478] = {.lex_state = 0}, + [12479] = {.lex_state = 0}, + [12480] = {.lex_state = 0}, + [12481] = {.lex_state = 0}, + [12482] = {.lex_state = 288}, + [12483] = {.lex_state = 0}, + [12484] = {.lex_state = 0}, + [12485] = {.lex_state = 0}, + [12486] = {.lex_state = 0}, + [12487] = {.lex_state = 0}, + [12488] = {.lex_state = 291}, + [12489] = {.lex_state = 288}, + [12490] = {.lex_state = 0}, + [12491] = {.lex_state = 0}, + [12492] = {.lex_state = 151}, + [12493] = {.lex_state = 0}, + [12494] = {.lex_state = 255}, + [12495] = {.lex_state = 255}, + [12496] = {.lex_state = 0}, + [12497] = {.lex_state = 0}, + [12498] = {.lex_state = 0}, + [12499] = {.lex_state = 0}, + [12500] = {.lex_state = 0}, + [12501] = {.lex_state = 0}, + [12502] = {.lex_state = 288}, + [12503] = {.lex_state = 310}, + [12504] = {.lex_state = 0}, + [12505] = {.lex_state = 0}, + [12506] = {.lex_state = 0}, + [12507] = {.lex_state = 255}, + [12508] = {.lex_state = 0}, + [12509] = {.lex_state = 288}, + [12510] = {.lex_state = 0}, + [12511] = {.lex_state = 0}, + [12512] = {.lex_state = 0}, + [12513] = {.lex_state = 362}, + [12514] = {.lex_state = 466}, + [12515] = {.lex_state = 466}, + [12516] = {.lex_state = 466}, + [12517] = {.lex_state = 0}, + [12518] = {.lex_state = 0}, + [12519] = {.lex_state = 0}, + [12520] = {.lex_state = 253}, + [12521] = {.lex_state = 309}, + [12522] = {.lex_state = 255}, + [12523] = {.lex_state = 0}, + [12524] = {.lex_state = 288}, + [12525] = {.lex_state = 0}, + [12526] = {.lex_state = 253}, + [12527] = {.lex_state = 256}, + [12528] = {.lex_state = 253}, + [12529] = {.lex_state = 466}, + [12530] = {.lex_state = 253}, + [12531] = {.lex_state = 256}, + [12532] = {.lex_state = 466}, + [12533] = {.lex_state = 151}, + [12534] = {.lex_state = 0}, + [12535] = {.lex_state = 288}, + [12536] = {.lex_state = 0}, + [12537] = {.lex_state = 0}, + [12538] = {.lex_state = 0}, + [12539] = {.lex_state = 0}, + [12540] = {.lex_state = 0}, + [12541] = {.lex_state = 0}, + [12542] = {.lex_state = 0}, + [12543] = {.lex_state = 0}, + [12544] = {.lex_state = 288}, + [12545] = {.lex_state = 0}, + [12546] = {.lex_state = 0}, + [12547] = {.lex_state = 0}, + [12548] = {.lex_state = 0}, + [12549] = {.lex_state = 0}, + [12550] = {.lex_state = 0}, + [12551] = {.lex_state = 0}, + [12552] = {.lex_state = 0}, + [12553] = {.lex_state = 0}, + [12554] = {.lex_state = 0}, + [12555] = {.lex_state = 288}, + [12556] = {.lex_state = 0}, + [12557] = {.lex_state = 0}, + [12558] = {.lex_state = 0}, + [12559] = {.lex_state = 0}, + [12560] = {.lex_state = 0}, + [12561] = {.lex_state = 0}, + [12562] = {.lex_state = 0}, + [12563] = {.lex_state = 151}, + [12564] = {.lex_state = 0}, + [12565] = {.lex_state = 0}, + [12566] = {.lex_state = 466}, + [12567] = {.lex_state = 0}, + [12568] = {.lex_state = 0}, + [12569] = {.lex_state = 151}, + [12570] = {.lex_state = 291}, + [12571] = {.lex_state = 0}, + [12572] = {.lex_state = 0}, + [12573] = {.lex_state = 466}, + [12574] = {.lex_state = 466}, + [12575] = {.lex_state = 466}, + [12576] = {.lex_state = 466}, + [12577] = {.lex_state = 151}, + [12578] = {.lex_state = 466}, + [12579] = {.lex_state = 0}, + [12580] = {.lex_state = 0}, + [12581] = {.lex_state = 0}, + [12582] = {.lex_state = 288}, + [12583] = {.lex_state = 0}, + [12584] = {.lex_state = 466}, + [12585] = {.lex_state = 255}, + [12586] = {.lex_state = 0}, + [12587] = {.lex_state = 466}, + [12588] = {.lex_state = 466}, + [12589] = {.lex_state = 0}, + [12590] = {.lex_state = 466}, + [12591] = {.lex_state = 0, .external_lex_state = 3}, + [12592] = {.lex_state = 466}, + [12593] = {.lex_state = 0}, + [12594] = {.lex_state = 0}, + [12595] = {.lex_state = 0}, + [12596] = {.lex_state = 0}, + [12597] = {.lex_state = 0}, + [12598] = {.lex_state = 0}, + [12599] = {.lex_state = 0}, + [12600] = {.lex_state = 0}, + [12601] = {.lex_state = 0}, + [12602] = {.lex_state = 0}, + [12603] = {.lex_state = 291}, + [12604] = {.lex_state = 0}, + [12605] = {.lex_state = 0}, + [12606] = {.lex_state = 288}, + [12607] = {.lex_state = 466}, + [12608] = {.lex_state = 466}, + [12609] = {.lex_state = 466}, + [12610] = {.lex_state = 255}, + [12611] = {.lex_state = 466}, + [12612] = {.lex_state = 0}, + [12613] = {.lex_state = 0}, + [12614] = {.lex_state = 0}, + [12615] = {.lex_state = 288}, + [12616] = {.lex_state = 0}, + [12617] = {.lex_state = 466}, + [12618] = {.lex_state = 0}, + [12619] = {.lex_state = 466}, + [12620] = {.lex_state = 0}, + [12621] = {.lex_state = 466}, + [12622] = {.lex_state = 0, .external_lex_state = 3}, + [12623] = {.lex_state = 0}, + [12624] = {.lex_state = 0}, + [12625] = {.lex_state = 0}, + [12626] = {.lex_state = 255}, + [12627] = {.lex_state = 255}, + [12628] = {.lex_state = 0}, + [12629] = {.lex_state = 291}, + [12630] = {.lex_state = 255}, + [12631] = {.lex_state = 466}, + [12632] = {.lex_state = 466}, + [12633] = {.lex_state = 466}, + [12634] = {.lex_state = 0}, + [12635] = {.lex_state = 466}, + [12636] = {.lex_state = 0}, + [12637] = {.lex_state = 0}, + [12638] = {.lex_state = 288}, + [12639] = {.lex_state = 466}, + [12640] = {.lex_state = 0}, + [12641] = {.lex_state = 466}, + [12642] = {.lex_state = 0}, + [12643] = {.lex_state = 466}, + [12644] = {.lex_state = 0, .external_lex_state = 3}, + [12645] = {.lex_state = 0}, + [12646] = {.lex_state = 0}, + [12647] = {.lex_state = 0}, + [12648] = {.lex_state = 0}, + [12649] = {.lex_state = 0}, + [12650] = {.lex_state = 291}, + [12651] = {.lex_state = 0}, + [12652] = {.lex_state = 466}, + [12653] = {.lex_state = 466}, + [12654] = {.lex_state = 466}, + [12655] = {.lex_state = 0}, + [12656] = {.lex_state = 466}, + [12657] = {.lex_state = 0}, + [12658] = {.lex_state = 288}, + [12659] = {.lex_state = 466}, + [12660] = {.lex_state = 0}, + [12661] = {.lex_state = 466}, + [12662] = {.lex_state = 288}, + [12663] = {.lex_state = 466}, + [12664] = {.lex_state = 0, .external_lex_state = 3}, + [12665] = {.lex_state = 288}, + [12666] = {.lex_state = 0}, + [12667] = {.lex_state = 0}, + [12668] = {.lex_state = 0}, + [12669] = {.lex_state = 0}, + [12670] = {.lex_state = 291}, + [12671] = {.lex_state = 288}, + [12672] = {.lex_state = 466}, + [12673] = {.lex_state = 466}, + [12674] = {.lex_state = 466}, + [12675] = {.lex_state = 0}, + [12676] = {.lex_state = 466}, + [12677] = {.lex_state = 0}, + [12678] = {.lex_state = 288}, + [12679] = {.lex_state = 466}, + [12680] = {.lex_state = 0}, + [12681] = {.lex_state = 466}, + [12682] = {.lex_state = 0, .external_lex_state = 2}, + [12683] = {.lex_state = 466}, + [12684] = {.lex_state = 0, .external_lex_state = 3}, + [12685] = {.lex_state = 0}, + [12686] = {.lex_state = 0}, + [12687] = {.lex_state = 0}, + [12688] = {.lex_state = 0}, + [12689] = {.lex_state = 0}, + [12690] = {.lex_state = 291}, + [12691] = {.lex_state = 0}, + [12692] = {.lex_state = 466}, + [12693] = {.lex_state = 466}, + [12694] = {.lex_state = 466}, + [12695] = {.lex_state = 0}, + [12696] = {.lex_state = 466}, + [12697] = {.lex_state = 0}, + [12698] = {.lex_state = 466}, + [12699] = {.lex_state = 0}, + [12700] = {.lex_state = 466}, + [12701] = {.lex_state = 0, .external_lex_state = 3}, + [12702] = {.lex_state = 0}, + [12703] = {.lex_state = 0}, + [12704] = {.lex_state = 0}, + [12705] = {.lex_state = 0}, + [12706] = {.lex_state = 291}, + [12707] = {.lex_state = 0}, + [12708] = {.lex_state = 466}, + [12709] = {.lex_state = 466}, + [12710] = {.lex_state = 0}, + [12711] = {.lex_state = 466}, + [12712] = {.lex_state = 0}, + [12713] = {.lex_state = 0}, + [12714] = {.lex_state = 466}, + [12715] = {.lex_state = 0, .external_lex_state = 3}, + [12716] = {.lex_state = 151}, + [12717] = {.lex_state = 0}, + [12718] = {.lex_state = 466}, + [12719] = {.lex_state = 466}, + [12720] = {.lex_state = 466}, + [12721] = {.lex_state = 466}, + [12722] = {.lex_state = 0, .external_lex_state = 3}, + [12723] = {.lex_state = 0}, + [12724] = {.lex_state = 466}, + [12725] = {.lex_state = 466}, + [12726] = {.lex_state = 466}, + [12727] = {.lex_state = 466}, + [12728] = {.lex_state = 0, .external_lex_state = 3}, + [12729] = {.lex_state = 0}, + [12730] = {.lex_state = 466}, + [12731] = {.lex_state = 466}, + [12732] = {.lex_state = 466}, + [12733] = {.lex_state = 466}, + [12734] = {.lex_state = 0, .external_lex_state = 3}, + [12735] = {.lex_state = 0}, + [12736] = {.lex_state = 466}, + [12737] = {.lex_state = 466}, + [12738] = {.lex_state = 466}, + [12739] = {.lex_state = 466}, + [12740] = {.lex_state = 0, .external_lex_state = 3}, + [12741] = {.lex_state = 0}, + [12742] = {.lex_state = 466}, + [12743] = {.lex_state = 466}, + [12744] = {.lex_state = 466}, + [12745] = {.lex_state = 466}, + [12746] = {.lex_state = 0, .external_lex_state = 3}, + [12747] = {.lex_state = 0}, + [12748] = {.lex_state = 466}, + [12749] = {.lex_state = 466}, + [12750] = {.lex_state = 466}, + [12751] = {.lex_state = 466}, + [12752] = {.lex_state = 0, .external_lex_state = 3}, + [12753] = {.lex_state = 0}, + [12754] = {.lex_state = 466}, + [12755] = {.lex_state = 466}, + [12756] = {.lex_state = 466}, + [12757] = {.lex_state = 466}, + [12758] = {.lex_state = 0, .external_lex_state = 3}, + [12759] = {.lex_state = 0}, + [12760] = {.lex_state = 466}, + [12761] = {.lex_state = 466}, + [12762] = {.lex_state = 466}, + [12763] = {.lex_state = 466}, + [12764] = {.lex_state = 0, .external_lex_state = 3}, + [12765] = {.lex_state = 0}, + [12766] = {.lex_state = 466}, + [12767] = {.lex_state = 466}, + [12768] = {.lex_state = 466}, + [12769] = {.lex_state = 466}, + [12770] = {.lex_state = 0, .external_lex_state = 3}, + [12771] = {.lex_state = 0}, + [12772] = {.lex_state = 466}, + [12773] = {.lex_state = 466}, + [12774] = {.lex_state = 0, .external_lex_state = 3}, + [12775] = {.lex_state = 0}, + [12776] = {.lex_state = 466}, + [12777] = {.lex_state = 466}, + [12778] = {.lex_state = 0, .external_lex_state = 3}, + [12779] = {.lex_state = 0}, + [12780] = {.lex_state = 466}, + [12781] = {.lex_state = 466}, + [12782] = {.lex_state = 0, .external_lex_state = 3}, + [12783] = {.lex_state = 0}, + [12784] = {.lex_state = 466}, + [12785] = {.lex_state = 466}, + [12786] = {.lex_state = 466}, + [12787] = {.lex_state = 466}, + [12788] = {.lex_state = 466}, + [12789] = {.lex_state = 466}, + [12790] = {.lex_state = 466}, + [12791] = {.lex_state = 466}, + [12792] = {.lex_state = 466}, + [12793] = {.lex_state = 466}, + [12794] = {.lex_state = 466}, + [12795] = {.lex_state = 466}, + [12796] = {.lex_state = 466}, + [12797] = {.lex_state = 466}, + [12798] = {.lex_state = 466}, + [12799] = {.lex_state = 466}, + [12800] = {.lex_state = 466}, + [12801] = {.lex_state = 466}, + [12802] = {.lex_state = 466}, + [12803] = {.lex_state = 466}, + [12804] = {.lex_state = 466}, + [12805] = {.lex_state = 466}, + [12806] = {.lex_state = 466}, + [12807] = {.lex_state = 466}, + [12808] = {.lex_state = 288}, + [12809] = {.lex_state = 255}, + [12810] = {.lex_state = 466}, + [12811] = {.lex_state = 466}, + [12812] = {.lex_state = 288}, + [12813] = {.lex_state = 0}, + [12814] = {.lex_state = 0}, + [12815] = {.lex_state = 0}, + [12816] = {.lex_state = 255}, + [12817] = {.lex_state = 0}, + [12818] = {.lex_state = 151}, + [12819] = {.lex_state = 0}, + [12820] = {.lex_state = 288}, + [12821] = {.lex_state = 288}, + [12822] = {.lex_state = 0}, + [12823] = {.lex_state = 0}, + [12824] = {.lex_state = 0}, + [12825] = {.lex_state = 288}, + [12826] = {.lex_state = 288}, + [12827] = {.lex_state = 466}, + [12828] = {.lex_state = 0}, + [12829] = {.lex_state = 0}, + [12830] = {.lex_state = 0}, + [12831] = {.lex_state = 255}, + [12832] = {.lex_state = 0}, + [12833] = {.lex_state = 288}, + [12834] = {.lex_state = 466}, + [12835] = {.lex_state = 0}, + [12836] = {.lex_state = 0}, + [12837] = {.lex_state = 0}, + [12838] = {.lex_state = 0}, + [12839] = {.lex_state = 0}, + [12840] = {.lex_state = 0}, + [12841] = {.lex_state = 0}, + [12842] = {.lex_state = 0}, + [12843] = {.lex_state = 0}, + [12844] = {.lex_state = 0}, + [12845] = {.lex_state = 0}, + [12846] = {.lex_state = 0}, + [12847] = {.lex_state = 0}, + [12848] = {.lex_state = 0}, + [12849] = {.lex_state = 0}, + [12850] = {.lex_state = 288}, + [12851] = {.lex_state = 0}, + [12852] = {.lex_state = 0}, + [12853] = {.lex_state = 0, .external_lex_state = 3}, + [12854] = {.lex_state = 0}, + [12855] = {.lex_state = 0}, + [12856] = {.lex_state = 0}, + [12857] = {.lex_state = 288}, + [12858] = {.lex_state = 0}, + [12859] = {.lex_state = 0}, + [12860] = {.lex_state = 0}, + [12861] = {.lex_state = 288}, + [12862] = {.lex_state = 288}, + [12863] = {.lex_state = 288}, + [12864] = {.lex_state = 0}, + [12865] = {.lex_state = 0}, + [12866] = {.lex_state = 288}, + [12867] = {.lex_state = 0}, + [12868] = {.lex_state = 466}, + [12869] = {.lex_state = 466}, + [12870] = {.lex_state = 0}, + [12871] = {.lex_state = 0}, + [12872] = {.lex_state = 288}, + [12873] = {.lex_state = 0}, + [12874] = {.lex_state = 288}, + [12875] = {.lex_state = 0}, + [12876] = {.lex_state = 0}, + [12877] = {.lex_state = 0}, + [12878] = {.lex_state = 0}, + [12879] = {.lex_state = 0, .external_lex_state = 3}, + [12880] = {.lex_state = 0}, + [12881] = {.lex_state = 255}, + [12882] = {.lex_state = 0}, + [12883] = {.lex_state = 255}, + [12884] = {.lex_state = 0}, + [12885] = {.lex_state = 0}, + [12886] = {.lex_state = 288}, + [12887] = {.lex_state = 0}, + [12888] = {.lex_state = 0}, + [12889] = {.lex_state = 0}, + [12890] = {.lex_state = 466}, + [12891] = {.lex_state = 466}, + [12892] = {.lex_state = 0}, + [12893] = {.lex_state = 0}, + [12894] = {.lex_state = 151}, + [12895] = {.lex_state = 0}, + [12896] = {.lex_state = 466}, + [12897] = {.lex_state = 0}, + [12898] = {.lex_state = 0}, + [12899] = {.lex_state = 288}, + [12900] = {.lex_state = 0}, + [12901] = {.lex_state = 0}, + [12902] = {.lex_state = 288}, + [12903] = {.lex_state = 288}, + [12904] = {.lex_state = 0}, + [12905] = {.lex_state = 0}, + [12906] = {.lex_state = 0}, + [12907] = {.lex_state = 291}, + [12908] = {.lex_state = 0}, + [12909] = {.lex_state = 0}, + [12910] = {.lex_state = 0}, + [12911] = {.lex_state = 0}, + [12912] = {.lex_state = 288}, + [12913] = {.lex_state = 255}, + [12914] = {.lex_state = 0}, + [12915] = {.lex_state = 0}, + [12916] = {.lex_state = 466}, + [12917] = {.lex_state = 466}, + [12918] = {.lex_state = 288}, + [12919] = {.lex_state = 0}, + [12920] = {.lex_state = 0}, + [12921] = {.lex_state = 0}, + [12922] = {.lex_state = 466}, + [12923] = {.lex_state = 0}, + [12924] = {.lex_state = 288}, + [12925] = {.lex_state = 0, .external_lex_state = 3}, + [12926] = {.lex_state = 288}, + [12927] = {.lex_state = 0}, + [12928] = {.lex_state = 0}, + [12929] = {.lex_state = 466}, + [12930] = {.lex_state = 466}, + [12931] = {.lex_state = 466}, + [12932] = {.lex_state = 288}, + [12933] = {.lex_state = 0}, + [12934] = {.lex_state = 0}, + [12935] = {.lex_state = 255}, + [12936] = {.lex_state = 466}, + [12937] = {.lex_state = 288}, + [12938] = {.lex_state = 0, .external_lex_state = 3}, + [12939] = {.lex_state = 0}, + [12940] = {.lex_state = 0}, + [12941] = {.lex_state = 0}, + [12942] = {.lex_state = 466}, + [12943] = {.lex_state = 288}, + [12944] = {.lex_state = 255}, + [12945] = {.lex_state = 0}, + [12946] = {.lex_state = 288}, + [12947] = {.lex_state = 288}, + [12948] = {.lex_state = 0, .external_lex_state = 3}, + [12949] = {.lex_state = 0}, + [12950] = {.lex_state = 151}, + [12951] = {.lex_state = 466}, + [12952] = {.lex_state = 288}, + [12953] = {.lex_state = 255}, + [12954] = {.lex_state = 0}, + [12955] = {.lex_state = 0}, + [12956] = {.lex_state = 288}, + [12957] = {.lex_state = 0, .external_lex_state = 3}, + [12958] = {.lex_state = 466}, + [12959] = {.lex_state = 466}, + [12960] = {.lex_state = 288}, + [12961] = {.lex_state = 0}, + [12962] = {.lex_state = 0}, + [12963] = {.lex_state = 288}, + [12964] = {.lex_state = 0, .external_lex_state = 3}, + [12965] = {.lex_state = 288}, + [12966] = {.lex_state = 0}, + [12967] = {.lex_state = 0}, + [12968] = {.lex_state = 288}, + [12969] = {.lex_state = 0, .external_lex_state = 3}, + [12970] = {.lex_state = 255}, + [12971] = {.lex_state = 0}, + [12972] = {.lex_state = 0, .external_lex_state = 3}, + [12973] = {.lex_state = 151}, + [12974] = {.lex_state = 0, .external_lex_state = 3}, + [12975] = {.lex_state = 0}, + [12976] = {.lex_state = 0, .external_lex_state = 3}, + [12977] = {.lex_state = 255}, + [12978] = {.lex_state = 0, .external_lex_state = 3}, + [12979] = {.lex_state = 255}, + [12980] = {.lex_state = 0, .external_lex_state = 3}, + [12981] = {.lex_state = 288}, + [12982] = {.lex_state = 0, .external_lex_state = 3}, + [12983] = {.lex_state = 288}, + [12984] = {.lex_state = 0, .external_lex_state = 3}, + [12985] = {.lex_state = 0}, + [12986] = {.lex_state = 0, .external_lex_state = 3}, + [12987] = {.lex_state = 288}, + [12988] = {.lex_state = 0, .external_lex_state = 3}, + [12989] = {.lex_state = 466}, + [12990] = {.lex_state = 0, .external_lex_state = 3}, + [12991] = {.lex_state = 0}, + [12992] = {.lex_state = 0, .external_lex_state = 3}, + [12993] = {.lex_state = 0}, + [12994] = {.lex_state = 0, .external_lex_state = 3}, + [12995] = {.lex_state = 0}, + [12996] = {.lex_state = 0, .external_lex_state = 3}, + [12997] = {.lex_state = 0}, + [12998] = {.lex_state = 0}, + [12999] = {.lex_state = 291}, + [13000] = {.lex_state = 288}, + [13001] = {.lex_state = 466}, + [13002] = {.lex_state = 0}, + [13003] = {.lex_state = 0}, + [13004] = {.lex_state = 255}, + [13005] = {.lex_state = 0}, + [13006] = {.lex_state = 288}, + [13007] = {.lex_state = 0}, + [13008] = {.lex_state = 288}, + [13009] = {.lex_state = 0}, + [13010] = {.lex_state = 466}, + [13011] = {.lex_state = 0}, + [13012] = {.lex_state = 291}, + [13013] = {.lex_state = 466}, + [13014] = {.lex_state = 0}, + [13015] = {.lex_state = 291}, + [13016] = {.lex_state = 466}, + [13017] = {.lex_state = 466}, + [13018] = {.lex_state = 0}, + [13019] = {.lex_state = 466}, + [13020] = {.lex_state = 466}, + [13021] = {.lex_state = 255}, + [13022] = {.lex_state = 466}, + [13023] = {.lex_state = 466}, + [13024] = {.lex_state = 0}, + [13025] = {.lex_state = 466}, + [13026] = {.lex_state = 466}, + [13027] = {.lex_state = 466}, + [13028] = {.lex_state = 466}, + [13029] = {.lex_state = 466}, + [13030] = {.lex_state = 291}, + [13031] = {.lex_state = 466}, + [13032] = {.lex_state = 466}, + [13033] = {.lex_state = 0}, + [13034] = {.lex_state = 466}, + [13035] = {.lex_state = 466}, + [13036] = {.lex_state = 466}, + [13037] = {.lex_state = 466}, + [13038] = {.lex_state = 466}, + [13039] = {.lex_state = 466}, + [13040] = {.lex_state = 466}, + [13041] = {.lex_state = 466}, + [13042] = {.lex_state = 466}, + [13043] = {.lex_state = 466}, + [13044] = {.lex_state = 466}, + [13045] = {.lex_state = 466}, + [13046] = {.lex_state = 466}, + [13047] = {.lex_state = 0}, + [13048] = {.lex_state = 0}, + [13049] = {.lex_state = 0}, + [13050] = {.lex_state = 291}, + [13051] = {.lex_state = 151}, + [13052] = {.lex_state = 0}, + [13053] = {.lex_state = 0}, + [13054] = {.lex_state = 466}, + [13055] = {.lex_state = 466}, + [13056] = {.lex_state = 466}, + [13057] = {.lex_state = 466}, + [13058] = {.lex_state = 466}, + [13059] = {.lex_state = 466}, + [13060] = {.lex_state = 466}, + [13061] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38681,143 +41780,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(12236), + [sym__top_level_item] = STATE(112), + [sym_preproc_include] = STATE(112), + [sym_preproc_def] = STATE(112), + [sym_preproc_function_def] = STATE(112), + [sym_preproc_call] = STATE(112), + [sym_preproc_if] = STATE(112), + [sym_preproc_ifdef] = STATE(112), + [sym_function_definition] = STATE(112), + [sym_declaration] = STATE(112), + [sym_type_definition] = STATE(112), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7235), + [sym_linkage_specification] = STATE(112), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3077), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9897), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(112), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4972), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(1022), + [sym__top_level_statement] = STATE(112), + [sym_labeled_statement] = STATE(112), + [sym__top_level_expression_statement] = STATE(112), + [sym_if_statement] = STATE(112), + [sym_switch_statement] = STATE(112), + [sym_case_statement] = STATE(112), + [sym_while_statement] = STATE(112), + [sym_do_statement] = STATE(112), + [sym_for_statement] = STATE(112), + [sym_return_statement] = STATE(112), + [sym_break_statement] = STATE(112), + [sym_continue_statement] = STATE(112), + [sym_goto_statement] = STATE(112), + [sym_expression] = STATE(8258), + [sym__string] = STATE(8187), + [sym_conditional_expression] = STATE(8374), + [sym_assignment_expression] = STATE(8374), + [sym_pointer_expression] = STATE(6713), + [sym_unary_expression] = STATE(8374), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8374), + [sym_cast_expression] = STATE(8374), + [sym_sizeof_expression] = STATE(8374), + [sym_alignof_expression] = STATE(8374), + [sym_offsetof_expression] = STATE(8374), + [sym_generic_expression] = STATE(8374), + [sym_subscript_expression] = STATE(6713), + [sym_call_expression] = STATE(6713), + [sym_gnu_asm_expression] = STATE(8374), + [sym_extension_expression] = STATE(8374), + [sym_field_expression] = STATE(6713), + [sym_compound_literal_expression] = STATE(8374), + [sym_parenthesized_expression] = STATE(6713), + [sym_char_literal] = STATE(8187), + [sym_concatenated_string] = STATE(8187), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8374), + [sym__empty_declaration] = STATE(112), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2801), + [sym_dependent_type] = STATE(4346), + [sym_module_declaration] = STATE(112), + [sym_export_declaration] = STATE(112), + [sym_import_declaration] = STATE(112), + [sym_global_module_fragment_declaration] = STATE(112), + [sym_private_module_fragment_declaration] = STATE(112), + [sym_template_declaration] = STATE(112), + [sym_template_instantiation] = STATE(112), + [sym_operator_cast] = STATE(10373), + [sym__constructor_specifiers] = STATE(2801), + [sym_operator_cast_definition] = STATE(112), + [sym_operator_cast_declaration] = STATE(112), + [sym_constructor_or_destructor_definition] = STATE(112), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8349), + [sym_namespace_definition] = STATE(112), + [sym_namespace_alias_definition] = STATE(112), + [sym_using_declaration] = STATE(112), + [sym_alias_declaration] = STATE(112), + [sym_static_assert_declaration] = STATE(112), + [sym_consteval_block_declaration] = STATE(112), + [sym_concept_definition] = STATE(112), + [sym_for_range_loop] = STATE(112), + [sym_co_return_statement] = STATE(112), + [sym_co_yield_statement] = STATE(112), + [sym_throw_statement] = STATE(112), + [sym_try_statement] = STATE(112), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(8374), + [sym_new_expression] = STATE(8374), + [sym_delete_expression] = STATE(8374), + [sym_requires_clause] = STATE(8374), + [sym_requires_expression] = STATE(8374), + [sym_lambda_expression] = STATE(8374), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8374), + [sym_parameter_pack_expansion] = STATE(8374), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6407), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10373), + [sym_reflect_expression] = STATE(8374), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8185), + [sym_expansion_statement] = STATE(112), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6713), + [aux_sym_translation_unit_repeat1] = STATE(112), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2801), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -38957,148 +42056,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_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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(55), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(55), + [sym_preproc_if_in_block] = STATE(55), + [sym_preproc_ifdef_in_block] = STATE(55), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(55), + [sym_import_declaration] = STATE(55), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(55), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -39241,148 +42340,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(3)] = { - [sym__block_item] = STATE(107), - [sym_preproc_include] = STATE(107), - [sym_preproc_def] = STATE(107), - [sym_preproc_function_def] = STATE(107), - [sym_preproc_call] = STATE(107), - [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_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_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__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_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_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_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(107), - [sym_namespace_alias_definition] = STATE(107), - [sym_using_declaration] = STATE(107), - [sym_alias_declaration] = STATE(107), - [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), - [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), + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(71), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(71), + [sym_preproc_if_in_block] = STATE(71), + [sym_preproc_ifdef_in_block] = STATE(71), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(71), + [sym_import_declaration] = STATE(71), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(71), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -39533,98 +42632,98 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(55), [sym_namespace_alias_definition] = STATE(55), [sym_using_declaration] = STATE(55), @@ -39632,41 +42731,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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -39809,148 +42908,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(5)] = { - [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(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(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_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(74), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(74), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(74), + [sym_preproc_if_in_block] = STATE(74), + [sym_preproc_ifdef_in_block] = STATE(74), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(74), + [sym_import_declaration] = STATE(74), + [sym_template_declaration] = STATE(74), + [sym_template_instantiation] = STATE(74), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(74), + [sym_operator_cast_declaration] = STATE(74), + [sym_constructor_or_destructor_definition] = STATE(74), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(74), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40093,148 +43192,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_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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(88), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(88), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(88), + [sym_preproc_if_in_block] = STATE(88), + [sym_preproc_ifdef_in_block] = STATE(88), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(88), + [sym_import_declaration] = STATE(88), + [sym_template_declaration] = STATE(88), + [sym_template_instantiation] = STATE(88), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(88), + [sym_operator_cast_declaration] = STATE(88), + [sym_constructor_or_destructor_definition] = STATE(88), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(88), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40377,148 +43476,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_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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(86), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(86), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(86), + [sym_preproc_if_in_block] = STATE(86), + [sym_preproc_ifdef_in_block] = STATE(86), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(86), + [sym_import_declaration] = STATE(86), + [sym_template_declaration] = STATE(86), + [sym_template_instantiation] = STATE(86), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(86), + [sym_operator_cast_declaration] = STATE(86), + [sym_constructor_or_destructor_definition] = STATE(86), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(86), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40661,148 +43760,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_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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(88), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(88), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(88), + [sym_preproc_if_in_block] = STATE(88), + [sym_preproc_ifdef_in_block] = STATE(88), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(88), + [sym_import_declaration] = STATE(88), + [sym_template_declaration] = STATE(88), + [sym_template_instantiation] = STATE(88), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(88), + [sym_operator_cast_declaration] = STATE(88), + [sym_constructor_or_destructor_definition] = STATE(88), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(88), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40945,148 +44044,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_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__block_item] = STATE(106), + [sym_preproc_include] = STATE(106), + [sym_preproc_def] = STATE(106), + [sym_preproc_function_def] = STATE(106), + [sym_preproc_call] = STATE(106), + [sym_function_definition] = STATE(106), + [sym_declaration] = STATE(106), + [sym_type_definition] = STATE(106), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(106), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(106), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(106), + [sym_preproc_if_in_block] = STATE(106), + [sym_preproc_ifdef_in_block] = STATE(106), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(106), + [sym_import_declaration] = STATE(106), + [sym_template_declaration] = STATE(106), + [sym_template_instantiation] = STATE(106), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(106), + [sym_operator_cast_declaration] = STATE(106), + [sym_constructor_or_destructor_definition] = STATE(106), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(106), + [sym_namespace_alias_definition] = STATE(106), + [sym_using_declaration] = STATE(106), + [sym_alias_declaration] = STATE(106), + [sym_static_assert_declaration] = STATE(106), + [sym_consteval_block_declaration] = STATE(106), + [sym_concept_definition] = STATE(106), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(106), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -41229,148 +44328,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_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__block_item] = STATE(110), + [sym_preproc_include] = STATE(110), + [sym_preproc_def] = STATE(110), + [sym_preproc_function_def] = STATE(110), + [sym_preproc_call] = STATE(110), + [sym_function_definition] = STATE(110), + [sym_declaration] = STATE(110), + [sym_type_definition] = STATE(110), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(110), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(110), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(110), + [sym_preproc_if_in_block] = STATE(110), + [sym_preproc_ifdef_in_block] = STATE(110), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(110), + [sym_import_declaration] = STATE(110), + [sym_template_declaration] = STATE(110), + [sym_template_instantiation] = STATE(110), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(110), + [sym_operator_cast_declaration] = STATE(110), + [sym_constructor_or_destructor_definition] = STATE(110), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(110), + [sym_namespace_alias_definition] = STATE(110), + [sym_using_declaration] = STATE(110), + [sym_alias_declaration] = STATE(110), + [sym_static_assert_declaration] = STATE(110), + [sym_consteval_block_declaration] = STATE(110), + [sym_concept_definition] = STATE(110), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(110), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -41513,148 +44612,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(11)] = { - [sym__block_item] = STATE(107), - [sym_preproc_include] = STATE(107), - [sym_preproc_def] = STATE(107), - [sym_preproc_function_def] = STATE(107), - [sym_preproc_call] = STATE(107), - [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_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_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__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_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_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_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(107), - [sym_namespace_alias_definition] = STATE(107), - [sym_using_declaration] = STATE(107), - [sym_alias_declaration] = STATE(107), - [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), - [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), + [sym__block_item] = STATE(106), + [sym_preproc_include] = STATE(106), + [sym_preproc_def] = STATE(106), + [sym_preproc_function_def] = STATE(106), + [sym_preproc_call] = STATE(106), + [sym_function_definition] = STATE(106), + [sym_declaration] = STATE(106), + [sym_type_definition] = STATE(106), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(106), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(106), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(106), + [sym_preproc_if_in_block] = STATE(106), + [sym_preproc_ifdef_in_block] = STATE(106), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(106), + [sym_import_declaration] = STATE(106), + [sym_template_declaration] = STATE(106), + [sym_template_instantiation] = STATE(106), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(106), + [sym_operator_cast_declaration] = STATE(106), + [sym_constructor_or_destructor_definition] = STATE(106), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(106), + [sym_namespace_alias_definition] = STATE(106), + [sym_using_declaration] = STATE(106), + [sym_alias_declaration] = STATE(106), + [sym_static_assert_declaration] = STATE(106), + [sym_consteval_block_declaration] = STATE(106), + [sym_concept_definition] = STATE(106), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(106), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -41797,148 +44896,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_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__block_item] = STATE(110), + [sym_preproc_include] = STATE(110), + [sym_preproc_def] = STATE(110), + [sym_preproc_function_def] = STATE(110), + [sym_preproc_call] = STATE(110), + [sym_function_definition] = STATE(110), + [sym_declaration] = STATE(110), + [sym_type_definition] = STATE(110), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(110), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(110), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7396), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(110), + [sym_preproc_if_in_block] = STATE(110), + [sym_preproc_ifdef_in_block] = STATE(110), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(110), + [sym_import_declaration] = STATE(110), + [sym_template_declaration] = STATE(110), + [sym_template_instantiation] = STATE(110), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(110), + [sym_operator_cast_declaration] = STATE(110), + [sym_constructor_or_destructor_definition] = STATE(110), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(110), + [sym_namespace_alias_definition] = STATE(110), + [sym_using_declaration] = STATE(110), + [sym_alias_declaration] = STATE(110), + [sym_static_assert_declaration] = STATE(110), + [sym_consteval_block_declaration] = STATE(110), + [sym_concept_definition] = STATE(110), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(110), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -42081,145 +45180,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(13)] = { - [sym__block_item] = STATE(29), - [sym_preproc_include] = STATE(29), - [sym_preproc_def] = STATE(29), - [sym_preproc_function_def] = STATE(29), - [sym_preproc_call] = STATE(29), - [sym_function_definition] = STATE(29), - [sym_declaration] = STATE(29), - [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [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_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__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_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_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_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(29), - [sym_namespace_alias_definition] = STATE(29), - [sym_using_declaration] = STATE(29), - [sym_alias_declaration] = STATE(29), - [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), - [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), + [sym__block_item] = STATE(20), + [sym_preproc_include] = STATE(20), + [sym_preproc_def] = STATE(20), + [sym_preproc_function_def] = STATE(20), + [sym_preproc_call] = STATE(20), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(20), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(20), + [sym_preproc_if_in_block] = STATE(20), + [sym_preproc_ifdef_in_block] = STATE(20), + [sym_preproc_else_in_block] = STATE(11894), + [sym_preproc_elif_in_block] = STATE(11894), + [sym_preproc_elifdef_in_block] = STATE(11894), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(20), + [sym_import_declaration] = STATE(20), + [sym_template_declaration] = STATE(20), + [sym_template_instantiation] = STATE(20), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(20), + [sym_operator_cast_declaration] = STATE(20), + [sym_constructor_or_destructor_definition] = STATE(20), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(20), + [sym_namespace_alias_definition] = STATE(20), + [sym_using_declaration] = STATE(20), + [sym_alias_declaration] = STATE(20), + [sym_static_assert_declaration] = STATE(20), + [sym_consteval_block_declaration] = STATE(20), + [sym_concept_definition] = STATE(20), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(20), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -42364,145 +45463,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(14)] = { - [sym__block_item] = STATE(16), - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_function_definition] = STATE(16), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [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_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__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_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_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_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(16), - [sym_namespace_alias_definition] = STATE(16), - [sym_using_declaration] = STATE(16), - [sym_alias_declaration] = STATE(16), - [sym_static_assert_declaration] = STATE(16), - [sym_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), - [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), + [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(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [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(11974), + [sym_preproc_elif_in_block] = STATE(11974), + [sym_preproc_elifdef_in_block] = STATE(11974), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -42655,96 +45754,96 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(12136), + [sym_preproc_elif_in_block] = STATE(12136), + [sym_preproc_elifdef_in_block] = STATE(12136), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(17), [sym_namespace_alias_definition] = STATE(17), [sym_using_declaration] = STATE(17), @@ -42752,40 +45851,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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -42938,96 +46037,96 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(12225), + [sym_preproc_elif_in_block] = STATE(12225), + [sym_preproc_elifdef_in_block] = STATE(12225), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), [sym_using_declaration] = STATE(49), @@ -43035,40 +46134,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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -43221,96 +46320,96 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(12463), + [sym_preproc_elif_in_block] = STATE(12463), + [sym_preproc_elifdef_in_block] = STATE(12463), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), [sym_using_declaration] = STATE(49), @@ -43318,40 +46417,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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -43496,145 +46595,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_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__block_item] = STATE(19), + [sym_preproc_include] = STATE(19), + [sym_preproc_def] = STATE(19), + [sym_preproc_function_def] = STATE(19), + [sym_preproc_call] = STATE(19), + [sym_function_definition] = STATE(19), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(19), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(19), + [sym_preproc_if_in_block] = STATE(19), + [sym_preproc_ifdef_in_block] = STATE(19), + [sym_preproc_else_in_block] = STATE(12816), + [sym_preproc_elif_in_block] = STATE(12816), + [sym_preproc_elifdef_in_block] = STATE(12816), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(19), + [sym_import_declaration] = STATE(19), + [sym_template_declaration] = STATE(19), + [sym_template_instantiation] = STATE(19), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(19), + [sym_operator_cast_declaration] = STATE(19), + [sym_constructor_or_destructor_definition] = STATE(19), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(19), + [sym_namespace_alias_definition] = STATE(19), + [sym_using_declaration] = STATE(19), + [sym_alias_declaration] = STATE(19), + [sym_static_assert_declaration] = STATE(19), + [sym_consteval_block_declaration] = STATE(19), + [sym_concept_definition] = STATE(19), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(19), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -43779,145 +46878,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(19)] = { - [sym__block_item] = STATE(21), - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_function_definition] = STATE(21), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [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_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__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_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_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_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(21), - [sym_namespace_alias_definition] = STATE(21), - [sym_using_declaration] = STATE(21), - [sym_alias_declaration] = STATE(21), - [sym_static_assert_declaration] = STATE(21), - [sym_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), - [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), + [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(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [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(11914), + [sym_preproc_elif_in_block] = STATE(11914), + [sym_preproc_elifdef_in_block] = STATE(11914), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -44062,145 +47161,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_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__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(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [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(11923), + [sym_preproc_elif_in_block] = STATE(11923), + [sym_preproc_elifdef_in_block] = STATE(11923), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -44345,145 +47444,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(21)] = { - [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(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_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_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__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(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(31), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [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(12977), + [sym_preproc_elif_in_block] = STATE(12977), + [sym_preproc_elifdef_in_block] = STATE(12977), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(31), + [sym_import_declaration] = STATE(31), + [sym_template_declaration] = STATE(31), + [sym_template_instantiation] = STATE(31), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(31), + [sym_operator_cast_declaration] = STATE(31), + [sym_constructor_or_destructor_definition] = STATE(31), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(31), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -44636,96 +47735,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), [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_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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_preproc_else_in_block] = STATE(12002), + [sym_preproc_elif_in_block] = STATE(12002), + [sym_preproc_elifdef_in_block] = STATE(12002), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(24), [sym_namespace_alias_definition] = STATE(24), [sym_using_declaration] = STATE(24), @@ -44733,40 +47832,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -44919,96 +48018,96 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(12360), + [sym_preproc_elif_in_block] = STATE(12360), + [sym_preproc_elifdef_in_block] = STATE(12360), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(25), [sym_namespace_alias_definition] = STATE(25), [sym_using_declaration] = STATE(25), @@ -45016,40 +48115,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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -45202,96 +48301,96 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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_preproc_else_in_block] = STATE(12370), + [sym_preproc_elif_in_block] = STATE(12370), + [sym_preproc_elifdef_in_block] = STATE(12370), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), [sym_using_declaration] = STATE(49), @@ -45299,40 +48398,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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -45485,96 +48584,96 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(12494), + [sym_preproc_elif_in_block] = STATE(12494), + [sym_preproc_elifdef_in_block] = STATE(12494), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), [sym_using_declaration] = STATE(49), @@ -45582,40 +48681,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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -45768,96 +48867,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), [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_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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_preproc_else_in_block] = STATE(12417), + [sym_preproc_elif_in_block] = STATE(12417), + [sym_preproc_elifdef_in_block] = STATE(12417), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(28), [sym_namespace_alias_definition] = STATE(28), [sym_using_declaration] = STATE(28), @@ -45865,40 +48964,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -46043,145 +49142,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_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__block_item] = STATE(29), + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_function_definition] = STATE(29), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(29), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [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(12627), + [sym_preproc_elif_in_block] = STATE(12627), + [sym_preproc_elifdef_in_block] = STATE(12627), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(29), + [sym_import_declaration] = STATE(29), + [sym_template_declaration] = STATE(29), + [sym_template_instantiation] = STATE(29), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(29), + [sym_operator_cast_declaration] = STATE(29), + [sym_constructor_or_destructor_definition] = STATE(29), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(29), + [sym_namespace_alias_definition] = STATE(29), + [sym_using_declaration] = STATE(29), + [sym_alias_declaration] = STATE(29), + [sym_static_assert_declaration] = STATE(29), + [sym_consteval_block_declaration] = STATE(29), + [sym_concept_definition] = STATE(29), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(29), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -46334,96 +49433,96 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(12883), + [sym_preproc_elif_in_block] = STATE(12883), + [sym_preproc_elifdef_in_block] = STATE(12883), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), [sym_using_declaration] = STATE(49), @@ -46431,40 +49530,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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -46617,96 +49716,96 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(12953), + [sym_preproc_elif_in_block] = STATE(12953), + [sym_preproc_elifdef_in_block] = STATE(12953), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), [sym_using_declaration] = STATE(49), @@ -46714,40 +49813,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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -46892,145 +49991,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_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__block_item] = STATE(14), + [sym_preproc_include] = STATE(14), + [sym_preproc_def] = STATE(14), + [sym_preproc_function_def] = STATE(14), + [sym_preproc_call] = STATE(14), + [sym_function_definition] = STATE(14), + [sym_declaration] = STATE(14), + [sym_type_definition] = STATE(14), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(14), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(14), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(14), + [sym_preproc_if_in_block] = STATE(14), + [sym_preproc_ifdef_in_block] = STATE(14), + [sym_preproc_else_in_block] = STATE(12022), + [sym_preproc_elif_in_block] = STATE(12022), + [sym_preproc_elifdef_in_block] = STATE(12022), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(14), + [sym_import_declaration] = STATE(14), + [sym_template_declaration] = STATE(14), + [sym_template_instantiation] = STATE(14), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(14), + [sym_operator_cast_declaration] = STATE(14), + [sym_constructor_or_destructor_definition] = STATE(14), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(14), + [sym_namespace_alias_definition] = STATE(14), + [sym_using_declaration] = STATE(14), + [sym_alias_declaration] = STATE(14), + [sym_static_assert_declaration] = STATE(14), + [sym_consteval_block_declaration] = STATE(14), + [sym_concept_definition] = STATE(14), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(14), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -47183,96 +50282,96 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(12153), + [sym_preproc_elif_in_block] = STATE(12153), + [sym_preproc_elifdef_in_block] = STATE(12153), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), [sym_using_declaration] = STATE(49), @@ -47280,40 +50379,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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -47458,145 +50557,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(32)] = { - [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(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_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_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__block_item] = STATE(16), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(16), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [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(11980), + [sym_preproc_elif_in_block] = STATE(11980), + [sym_preproc_elifdef_in_block] = STATE(11980), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(16), + [sym_import_declaration] = STATE(16), + [sym_template_declaration] = STATE(16), + [sym_template_instantiation] = STATE(16), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(16), + [sym_operator_cast_declaration] = STATE(16), + [sym_constructor_or_destructor_definition] = STATE(16), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(16), + [sym_namespace_alias_definition] = STATE(16), + [sym_using_declaration] = STATE(16), + [sym_alias_declaration] = STATE(16), + [sym_static_assert_declaration] = STATE(16), + [sym_consteval_block_declaration] = STATE(16), + [sym_concept_definition] = STATE(16), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(16), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -47748,36 +50847,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(10843), - [sym_preproc_elif] = STATE(10843), - [sym_preproc_elifdef] = STATE(10843), + [sym_preproc_else] = STATE(11896), + [sym_preproc_elif] = STATE(11896), + [sym_preproc_elifdef] = STATE(11896), [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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), [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(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -47791,38 +50890,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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -47830,15 +50929,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(10319), + [sym__constructor_specifiers] = STATE(2812), [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(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -47851,35 +50950,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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), [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(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -48030,36 +51129,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(12284), + [sym_preproc_elif] = STATE(12284), + [sym_preproc_elifdef] = STATE(12284), [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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), [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(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -48073,38 +51172,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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -48112,15 +51211,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(10319), + [sym__constructor_specifiers] = STATE(2812), [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(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -48133,35 +51232,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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), [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(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -48305,145 +51404,145 @@ 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__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(12246), + [sym_preproc_elif] = STATE(12246), + [sym_preproc_elifdef] = STATE(12246), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [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(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -48594,36 +51693,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(12391), + [sym_preproc_elif] = STATE(12391), + [sym_preproc_elifdef] = STATE(12391), [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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), [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(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -48637,38 +51736,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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -48676,15 +51775,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(10319), + [sym__constructor_specifiers] = STATE(2812), [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(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -48697,35 +51796,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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), [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(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -48876,36 +51975,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(11993), + [sym_preproc_elif] = STATE(11993), + [sym_preproc_elifdef] = STATE(11993), [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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), [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(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -48919,38 +52018,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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -48958,15 +52057,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(10319), + [sym__constructor_specifiers] = STATE(2812), [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(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -48979,35 +52078,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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), [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(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -49151,145 +52250,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(12585), + [sym_preproc_elif] = STATE(12585), + [sym_preproc_elifdef] = STATE(12585), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [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(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(36), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -49440,36 +52539,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(11541), - [sym_preproc_elif] = STATE(11541), - [sym_preproc_elifdef] = STATE(11541), + [sym_preproc_else] = STATE(12202), + [sym_preproc_elif] = STATE(12202), + [sym_preproc_elifdef] = STATE(12202), [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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), [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(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -49483,38 +52582,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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -49522,15 +52621,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(10319), + [sym__constructor_specifiers] = STATE(2812), [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(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -49543,35 +52642,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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), [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(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -49715,145 +52814,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__top_level_item] = STATE(34), + [sym_preproc_include] = STATE(34), + [sym_preproc_def] = STATE(34), + [sym_preproc_function_def] = STATE(34), + [sym_preproc_call] = STATE(34), + [sym_preproc_if] = STATE(34), + [sym_preproc_ifdef] = STATE(34), + [sym_preproc_else] = STATE(13004), + [sym_preproc_elif] = STATE(13004), + [sym_preproc_elifdef] = STATE(13004), + [sym_function_definition] = STATE(34), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [sym__top_level_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym__top_level_expression_statement] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_case_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_goto_statement] = STATE(34), + [sym_expression] = STATE(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(34), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_module_declaration] = STATE(34), + [sym_export_declaration] = STATE(34), + [sym_import_declaration] = STATE(34), + [sym_global_module_fragment_declaration] = STATE(34), + [sym_private_module_fragment_declaration] = STATE(34), + [sym_template_declaration] = STATE(34), + [sym_template_instantiation] = STATE(34), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(34), + [sym_operator_cast_declaration] = STATE(34), + [sym_constructor_or_destructor_definition] = STATE(34), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [sym_namespace_definition] = STATE(34), + [sym_namespace_alias_definition] = STATE(34), + [sym_using_declaration] = STATE(34), + [sym_alias_declaration] = STATE(34), + [sym_static_assert_declaration] = STATE(34), + [sym_consteval_block_declaration] = STATE(34), + [sym_concept_definition] = STATE(34), + [sym_for_range_loop] = STATE(34), + [sym_co_return_statement] = STATE(34), + [sym_co_yield_statement] = STATE(34), + [sym_throw_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(34), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -49997,145 +53096,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym__top_level_item] = STATE(44), + [sym_preproc_include] = STATE(44), + [sym_preproc_def] = STATE(44), + [sym_preproc_function_def] = STATE(44), + [sym_preproc_call] = STATE(44), + [sym_preproc_if] = STATE(44), + [sym_preproc_ifdef] = STATE(44), + [sym_preproc_else] = STATE(13021), + [sym_preproc_elif] = STATE(13021), + [sym_preproc_elifdef] = STATE(13021), + [sym_function_definition] = STATE(44), + [sym_declaration] = STATE(44), + [sym_type_definition] = STATE(44), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(44), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [sym__top_level_statement] = STATE(44), + [sym_labeled_statement] = STATE(44), + [sym__top_level_expression_statement] = STATE(44), + [sym_if_statement] = STATE(44), + [sym_switch_statement] = STATE(44), + [sym_case_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_do_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_return_statement] = STATE(44), + [sym_break_statement] = STATE(44), + [sym_continue_statement] = STATE(44), + [sym_goto_statement] = STATE(44), + [sym_expression] = STATE(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_module_declaration] = STATE(44), + [sym_export_declaration] = STATE(44), + [sym_import_declaration] = STATE(44), + [sym_global_module_fragment_declaration] = STATE(44), + [sym_private_module_fragment_declaration] = STATE(44), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [sym_namespace_definition] = STATE(44), + [sym_namespace_alias_definition] = STATE(44), + [sym_using_declaration] = STATE(44), + [sym_alias_declaration] = STATE(44), + [sym_static_assert_declaration] = STATE(44), + [sym_consteval_block_declaration] = STATE(44), + [sym_concept_definition] = STATE(44), + [sym_for_range_loop] = STATE(44), + [sym_co_return_statement] = STATE(44), + [sym_co_yield_statement] = STATE(44), + [sym_throw_statement] = STATE(44), + [sym_try_statement] = STATE(44), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(44), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -50279,145 +53378,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(12367), + [sym_preproc_elif] = STATE(12367), + [sym_preproc_elifdef] = STATE(12367), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(47), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [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(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(47), + [sym_operator_cast_declaration] = STATE(47), + [sym_constructor_or_destructor_definition] = STATE(47), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(47), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -50561,145 +53660,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(11911), + [sym_preproc_elif] = STATE(11911), + [sym_preproc_elifdef] = STATE(11911), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(35), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [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(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(35), + [sym_operator_cast_declaration] = STATE(35), + [sym_constructor_or_destructor_definition] = STATE(35), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(35), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -50843,145 +53942,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(11921), + [sym_preproc_elif] = STATE(11921), + [sym_preproc_elifdef] = STATE(11921), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [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(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -51125,145 +54224,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(12335), + [sym_preproc_elif] = STATE(12335), + [sym_preproc_elifdef] = STATE(12335), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(39), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [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(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(39), + [sym_operator_cast_declaration] = STATE(39), + [sym_constructor_or_destructor_definition] = STATE(39), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(39), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -51407,145 +54506,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(417), }, [STATE(46)] = { - [sym__top_level_item] = STATE(34), - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_preproc_else] = STATE(11569), - [sym_preproc_elif] = STATE(11569), - [sym_preproc_elifdef] = STATE(11569), - [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_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_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__top_level_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym__top_level_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym_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(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_module_declaration] = STATE(34), - [sym_export_declaration] = STATE(34), - [sym_import_declaration] = STATE(34), - [sym_global_module_fragment_declaration] = STATE(34), - [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_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_namespace_definition] = STATE(34), - [sym_namespace_alias_definition] = STATE(34), - [sym_using_declaration] = STATE(34), - [sym_alias_declaration] = STATE(34), - [sym_static_assert_declaration] = STATE(34), - [sym_consteval_block_declaration] = STATE(34), - [sym_concept_definition] = STATE(34), - [sym_for_range_loop] = STATE(34), - [sym_co_return_statement] = STATE(34), - [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_expansion_statement] = STATE(34), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [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), + [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(12239), + [sym_preproc_elif] = STATE(12239), + [sym_preproc_elifdef] = STATE(12239), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [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(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(33), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -51689,145 +54788,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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(12332), + [sym_preproc_elif] = STATE(12332), + [sym_preproc_elifdef] = STATE(12332), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [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(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -51971,145 +55070,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(417), }, [STATE(48)] = { - [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(11026), - [sym_preproc_elif] = STATE(11026), - [sym_preproc_elifdef] = STATE(11026), - [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(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(12279), + [sym_preproc_elif] = STATE(12279), + [sym_preproc_elifdef] = STATE(12279), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), + [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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [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(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), + [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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), + [sym_expansion_statement] = STATE(37), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), + [aux_sym_translation_unit_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -52261,93 +55360,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), [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(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [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(10319), + [sym__constructor_specifiers] = STATE(2812), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), [sym_using_declaration] = STATE(49), @@ -52355,40 +55454,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(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(453), [aux_sym_preproc_include_token1] = ACTIONS(456), [aux_sym_preproc_def_token1] = ACTIONS(459), @@ -52543,30 +55642,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(5385), + [sym__declaration_specifiers] = STATE(7220), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), [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(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(578), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -52580,38 +55679,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(8258), + [sym__string] = STATE(8196), + [sym_conditional_expression] = STATE(8378), + [sym_assignment_expression] = STATE(8378), + [sym_pointer_expression] = STATE(6657), + [sym_unary_expression] = STATE(8378), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8378), + [sym_cast_expression] = STATE(8378), + [sym_sizeof_expression] = STATE(8378), + [sym_alignof_expression] = STATE(8378), + [sym_offsetof_expression] = STATE(8378), + [sym_generic_expression] = STATE(8378), + [sym_subscript_expression] = STATE(6657), + [sym_call_expression] = STATE(6657), + [sym_gnu_asm_expression] = STATE(8378), + [sym_extension_expression] = STATE(8378), + [sym_field_expression] = STATE(6657), + [sym_compound_literal_expression] = STATE(8378), + [sym_parenthesized_expression] = STATE(6657), + [sym_char_literal] = STATE(8196), + [sym_concatenated_string] = STATE(8196), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8378), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -52619,15 +55718,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(10319), + [sym__constructor_specifiers] = STATE(2812), [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(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8160), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -52640,35 +55739,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(5370), + [sym_co_await_expression] = STATE(8378), + [sym_new_expression] = STATE(8378), + [sym_delete_expression] = STATE(8378), + [sym_requires_clause] = STATE(8378), + [sym_requires_expression] = STATE(8378), + [sym_lambda_expression] = STATE(8378), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8378), + [sym_parameter_pack_expansion] = STATE(8378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6514), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(8378), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8161), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6657), [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(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(707), [aux_sym_preproc_include_token1] = ACTIONS(710), [aux_sym_preproc_def_token1] = ACTIONS(713), @@ -52812,142 +55911,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(886), }, [STATE(51)] = { - [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__block_item] = STATE(106), + [sym_preproc_include] = STATE(106), + [sym_preproc_def] = STATE(106), + [sym_preproc_function_def] = STATE(106), + [sym_preproc_call] = STATE(106), + [sym_function_definition] = STATE(106), + [sym_declaration] = STATE(106), + [sym_type_definition] = STATE(106), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(106), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(106), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(106), + [sym_preproc_if_in_block] = STATE(106), + [sym_preproc_ifdef_in_block] = STATE(106), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(106), + [sym_import_declaration] = STATE(106), + [sym_template_declaration] = STATE(106), + [sym_template_instantiation] = STATE(106), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(106), + [sym_operator_cast_declaration] = STATE(106), + [sym_constructor_or_destructor_definition] = STATE(106), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(106), + [sym_namespace_alias_definition] = STATE(106), + [sym_using_declaration] = STATE(106), + [sym_alias_declaration] = STATE(106), + [sym_static_assert_declaration] = STATE(106), + [sym_consteval_block_declaration] = STATE(106), + [sym_concept_definition] = STATE(106), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(106), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -53096,93 +56195,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7241), [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_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3132), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9904), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(670), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4959), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(781), [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_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2814), + [sym_dependent_type] = STATE(4346), [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] = STATE(10336), + [sym__constructor_specifiers] = STATE(2814), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(52), [sym_namespace_alias_definition] = STATE(52), [sym_using_declaration] = STATE(52), @@ -53190,40 +56289,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10336), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [aux_sym_declaration_list_repeat1] = STATE(52), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2454), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2814), [sym_identifier] = ACTIONS(964), [aux_sym_preproc_include_token1] = ACTIONS(967), [aux_sym_preproc_def_token1] = ACTIONS(970), @@ -53372,93 +56471,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(55), [sym_namespace_alias_definition] = STATE(55), [sym_using_declaration] = STATE(55), @@ -53466,40 +56565,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -53640,142 +56739,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_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__block_item] = STATE(423), + [sym_preproc_include] = STATE(423), + [sym_preproc_def] = STATE(423), + [sym_preproc_function_def] = STATE(423), + [sym_preproc_call] = STATE(423), + [sym_function_definition] = STATE(423), + [sym_declaration] = STATE(423), + [sym_type_definition] = STATE(423), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(423), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym_declaration_list] = STATE(423), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(423), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(423), + [sym_preproc_if_in_block] = STATE(423), + [sym_preproc_ifdef_in_block] = STATE(423), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(423), + [sym_import_declaration] = STATE(423), + [sym_template_declaration] = STATE(423), + [sym_template_instantiation] = STATE(423), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(423), + [sym_operator_cast_declaration] = STATE(423), + [sym_constructor_or_destructor_definition] = STATE(423), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(423), + [sym_namespace_alias_definition] = STATE(423), + [sym_using_declaration] = STATE(423), + [sym_alias_declaration] = STATE(423), + [sym_static_assert_declaration] = STATE(423), + [sym_consteval_block_declaration] = STATE(423), + [sym_concept_definition] = STATE(423), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -53924,93 +57023,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -54018,40 +57117,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -54192,142 +57291,142 @@ 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_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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(60), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(60), + [sym_preproc_if_in_block] = STATE(60), + [sym_preproc_ifdef_in_block] = STATE(60), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(60), + [sym_import_declaration] = STATE(60), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(60), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -54468,142 +57567,142 @@ 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_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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(61), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(61), + [sym_preproc_if_in_block] = STATE(61), + [sym_preproc_ifdef_in_block] = STATE(61), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(61), + [sym_import_declaration] = STATE(61), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(61), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -54744,142 +57843,142 @@ 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_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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(79), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(79), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(79), + [sym_preproc_if_in_block] = STATE(79), + [sym_preproc_ifdef_in_block] = STATE(79), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(79), + [sym_import_declaration] = STATE(79), + [sym_template_declaration] = STATE(79), + [sym_template_instantiation] = STATE(79), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(79), + [sym_operator_cast_declaration] = STATE(79), + [sym_constructor_or_destructor_definition] = STATE(79), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(79), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -55020,142 +58119,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(59)] = { - [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(4781), - [sym__declaration_specifiers] = STATE(6413), - [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_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__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_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_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_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(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(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__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(5385), + [sym__declaration_specifiers] = STATE(7241), + [sym_linkage_specification] = STATE(68), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3132), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9904), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(670), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4959), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(781), + [sym_statement] = STATE(68), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(68), + [sym_preproc_if_in_block] = STATE(68), + [sym_preproc_ifdef_in_block] = STATE(68), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2814), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(68), + [sym_import_declaration] = STATE(68), + [sym_template_declaration] = STATE(68), + [sym_template_instantiation] = STATE(68), + [sym_operator_cast] = STATE(10336), + [sym__constructor_specifiers] = STATE(2814), + [sym_operator_cast_definition] = STATE(68), + [sym_operator_cast_declaration] = STATE(68), + [sym_constructor_or_destructor_definition] = STATE(68), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10336), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(68), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2814), [sym_identifier] = ACTIONS(1089), [aux_sym_preproc_include_token1] = ACTIONS(1091), [aux_sym_preproc_def_token1] = ACTIONS(1093), @@ -55296,142 +58395,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -55580,93 +58679,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -55674,40 +58773,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -55848,142 +58947,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(82), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(82), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(82), + [sym_preproc_if_in_block] = STATE(82), + [sym_preproc_ifdef_in_block] = STATE(82), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(82), + [sym_import_declaration] = STATE(82), + [sym_template_declaration] = STATE(82), + [sym_template_instantiation] = STATE(82), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(82), + [sym_operator_cast_declaration] = STATE(82), + [sym_constructor_or_destructor_definition] = STATE(82), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(82), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -56132,93 +59231,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), [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_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), [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), - [sym_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(65), [sym_namespace_alias_definition] = STATE(65), [sym_using_declaration] = STATE(65), @@ -56226,40 +59325,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -56400,142 +59499,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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__block_item] = STATE(784), + [sym_preproc_include] = STATE(784), + [sym_preproc_def] = STATE(784), + [sym_preproc_function_def] = STATE(784), + [sym_preproc_call] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_declaration] = STATE(784), + [sym_type_definition] = STATE(784), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7241), + [sym_linkage_specification] = STATE(784), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3132), + [sym_declaration_list] = STATE(784), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9904), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(670), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4959), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(781), + [sym_statement] = STATE(784), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(784), + [sym_preproc_if_in_block] = STATE(784), + [sym_preproc_ifdef_in_block] = STATE(784), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2814), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(784), + [sym_import_declaration] = STATE(784), + [sym_template_declaration] = STATE(784), + [sym_template_instantiation] = STATE(784), + [sym_operator_cast] = STATE(10336), + [sym__constructor_specifiers] = STATE(2814), + [sym_operator_cast_definition] = STATE(784), + [sym_operator_cast_declaration] = STATE(784), + [sym_constructor_or_destructor_definition] = STATE(784), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(784), + [sym_namespace_alias_definition] = STATE(784), + [sym_using_declaration] = STATE(784), + [sym_alias_declaration] = STATE(784), + [sym_static_assert_declaration] = STATE(784), + [sym_consteval_block_declaration] = STATE(784), + [sym_concept_definition] = STATE(784), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10336), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2814), [sym_identifier] = ACTIONS(1089), [aux_sym_preproc_include_token1] = ACTIONS(1091), [aux_sym_preproc_def_token1] = ACTIONS(1093), @@ -56684,93 +59783,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -56778,40 +59877,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -56952,142 +60051,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -57228,142 +60327,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(70), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(70), + [sym_preproc_if_in_block] = STATE(70), + [sym_preproc_ifdef_in_block] = STATE(70), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(70), + [sym_import_declaration] = STATE(70), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(70), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -57504,149 +60603,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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__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(5385), + [sym__declaration_specifiers] = STATE(7241), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3132), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9904), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(670), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4959), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(781), + [sym_statement] = STATE(52), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(52), + [sym_preproc_if_in_block] = STATE(52), + [sym_preproc_ifdef_in_block] = STATE(52), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2814), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(52), + [sym_import_declaration] = STATE(52), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(10336), + [sym__constructor_specifiers] = STATE(2814), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10336), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(52), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2814), + [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(1183), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1099), + [sym_preproc_directive] = ACTIONS(1101), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -57655,14 +60755,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(1103), + [anon_sym___extension__] = ACTIONS(1105), + [anon_sym_typedef] = ACTIONS(1107), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(1109), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(1111), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -57673,8 +60773,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(1183), + [anon_sym_LBRACE] = ACTIONS(1113), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57682,7 +60781,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(1115), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -57699,7 +60798,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(1117), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -57707,19 +60806,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(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), @@ -57755,18 +60854,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(1145), + [anon_sym_import] = ACTIONS(1147), + [anon_sym_template] = ACTIONS(1149), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(245), + [anon_sym_try] = ACTIONS(1151), [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(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_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -57780,150 +60879,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), - [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), + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), + [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), @@ -57932,14 +61030,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 +61048,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(960), + [anon_sym_RBRACE] = ACTIONS(1185), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57958,7 +61057,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 +61074,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 +61082,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 +61130,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), @@ -58064,93 +61163,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -58158,40 +61257,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -58340,93 +61439,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -58434,40 +61533,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -58616,93 +61715,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -58710,40 +61809,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(1191), [aux_sym_preproc_include_token1] = ACTIONS(1194), [aux_sym_preproc_def_token1] = ACTIONS(1197), @@ -58892,93 +61991,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), [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_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), [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_template_function] = STATE(6810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(74), [sym_namespace_alias_definition] = STATE(74), [sym_using_declaration] = STATE(74), @@ -58986,40 +62085,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -59168,93 +62267,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -59262,40 +62361,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -59436,142 +62535,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(77), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(77), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(77), + [sym_preproc_if_in_block] = STATE(77), + [sym_preproc_ifdef_in_block] = STATE(77), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(77), + [sym_import_declaration] = STATE(77), + [sym_template_declaration] = STATE(77), + [sym_template_instantiation] = STATE(77), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(77), + [sym_operator_cast_declaration] = STATE(77), + [sym_constructor_or_destructor_definition] = STATE(77), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(77), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -59712,149 +62811,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), - [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__block_item] = STATE(1042), + [sym_preproc_include] = STATE(1042), + [sym_preproc_def] = STATE(1042), + [sym_preproc_function_def] = STATE(1042), + [sym_preproc_call] = STATE(1042), + [sym_function_definition] = STATE(1042), + [sym_declaration] = STATE(1042), + [sym_type_definition] = STATE(1042), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7235), + [sym_linkage_specification] = STATE(1042), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3077), + [sym_declaration_list] = STATE(1042), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9897), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(593), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4972), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(1003), + [sym_statement] = STATE(1042), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(1042), + [sym_preproc_if_in_block] = STATE(1042), + [sym_preproc_ifdef_in_block] = STATE(1042), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2801), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(1042), + [sym_import_declaration] = STATE(1042), + [sym_template_declaration] = STATE(1042), + [sym_template_instantiation] = STATE(1042), + [sym_operator_cast] = STATE(10373), + [sym__constructor_specifiers] = STATE(2801), + [sym_operator_cast_definition] = STATE(1042), + [sym_operator_cast_declaration] = STATE(1042), + [sym_constructor_or_destructor_definition] = STATE(1042), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(1042), + [sym_namespace_alias_definition] = STATE(1042), + [sym_using_declaration] = STATE(1042), + [sym_alias_declaration] = STATE(1042), + [sym_static_assert_declaration] = STATE(1042), + [sym_consteval_block_declaration] = STATE(1042), + [sym_concept_definition] = STATE(1042), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10373), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2801), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -59863,14 +62962,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(1316), + [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), @@ -59881,8 +62980,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(1310), + [anon_sym_LBRACE] = ACTIONS(1318), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59890,7 +62988,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), @@ -59907,7 +63005,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), @@ -59915,19 +63013,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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -59963,18 +63061,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(1324), + [anon_sym_module] = ACTIONS(1326), + [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), @@ -59996,93 +63095,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -60090,40 +63189,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -60158,7 +63257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_RBRACE] = ACTIONS(1328), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -60264,149 +63363,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(72), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), + [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), @@ -60415,14 +63514,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(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), @@ -60433,7 +63532,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(1322), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1330), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -60441,7 +63541,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), @@ -60458,7 +63558,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), @@ -60466,19 +63566,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___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [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), @@ -60514,19 +63614,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(1328), - [anon_sym_module] = ACTIONS(1330), - [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), @@ -60548,93 +63647,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -60642,40 +63741,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -60816,142 +63915,142 @@ 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_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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(81), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(81), + [sym_preproc_if_in_block] = STATE(81), + [sym_preproc_ifdef_in_block] = STATE(81), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(81), + [sym_import_declaration] = STATE(81), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(81), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -61100,93 +64199,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -61194,40 +64293,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -61368,142 +64467,142 @@ 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_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__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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -61644,6 +64743,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(83)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(84), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(84), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(84), + [sym_preproc_if_in_block] = STATE(84), + [sym_preproc_ifdef_in_block] = STATE(84), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(84), + [sym_import_declaration] = STATE(84), + [sym_template_declaration] = STATE(84), + [sym_template_instantiation] = STATE(84), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(84), + [sym_operator_cast_declaration] = STATE(84), + [sym_constructor_or_destructor_definition] = STATE(84), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(84), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), + [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(1340), + [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(84)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -61652,93 +65027,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -61746,40 +65121,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -61814,7 +65189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1342), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -61919,143 +65294,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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_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), + [STATE(85)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(86), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(86), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(86), + [sym_preproc_if_in_block] = STATE(86), + [sym_preproc_ifdef_in_block] = STATE(86), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(86), + [sym_import_declaration] = STATE(86), + [sym_template_declaration] = STATE(86), + [sym_template_instantiation] = STATE(86), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(86), + [sym_operator_cast_declaration] = STATE(86), + [sym_constructor_or_destructor_definition] = STATE(86), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(86), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -62090,7 +65465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_RBRACE] = ACTIONS(1344), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -62195,7 +65570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(85)] = { + [STATE(86)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -62204,93 +65579,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -62298,40 +65673,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -62366,7 +65741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1346), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -62471,143 +65846,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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_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), + [STATE(87)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(88), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(88), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(88), + [sym_preproc_if_in_block] = STATE(88), + [sym_preproc_ifdef_in_block] = STATE(88), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(88), + [sym_import_declaration] = STATE(88), + [sym_template_declaration] = STATE(88), + [sym_template_instantiation] = STATE(88), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(88), + [sym_operator_cast_declaration] = STATE(88), + [sym_constructor_or_destructor_definition] = STATE(88), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(88), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -62642,7 +66017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_RBRACE] = ACTIONS(1348), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -62747,7 +66122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(87)] = { + [STATE(88)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -62756,93 +66131,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -62850,40 +66225,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -62918,7 +66293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1350), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -63023,143 +66398,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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_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), + [STATE(89)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(90), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(90), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(90), + [sym_preproc_if_in_block] = STATE(90), + [sym_preproc_ifdef_in_block] = STATE(90), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(90), + [sym_import_declaration] = STATE(90), + [sym_template_declaration] = STATE(90), + [sym_template_instantiation] = STATE(90), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(90), + [sym_operator_cast_declaration] = STATE(90), + [sym_constructor_or_destructor_definition] = STATE(90), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(90), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -63194,7 +66569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1352), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -63299,7 +66674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(89)] = { + [STATE(90)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -63308,93 +66683,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -63402,40 +66777,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -63470,7 +66845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_RBRACE] = ACTIONS(1354), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -63575,143 +66950,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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_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), + [STATE(91)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(92), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(92), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(92), + [sym_preproc_if_in_block] = STATE(92), + [sym_preproc_ifdef_in_block] = STATE(92), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(92), + [sym_import_declaration] = STATE(92), + [sym_template_declaration] = STATE(92), + [sym_template_instantiation] = STATE(92), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(92), + [sym_operator_cast_declaration] = STATE(92), + [sym_constructor_or_destructor_definition] = STATE(92), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(92), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -63746,7 +67121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1356), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -63851,7 +67226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(91)] = { + [STATE(92)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -63860,93 +67235,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -63954,40 +67329,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -64022,7 +67397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1358), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -64127,143 +67502,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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_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), + [STATE(93)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(94), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(94), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(94), + [sym_preproc_if_in_block] = STATE(94), + [sym_preproc_ifdef_in_block] = STATE(94), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(94), + [sym_import_declaration] = STATE(94), + [sym_template_declaration] = STATE(94), + [sym_template_instantiation] = STATE(94), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(94), + [sym_operator_cast_declaration] = STATE(94), + [sym_constructor_or_destructor_definition] = STATE(94), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(94), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -64298,7 +67673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_RBRACE] = ACTIONS(1360), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -64403,7 +67778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(93)] = { + [STATE(94)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -64412,93 +67787,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -64506,40 +67881,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -64574,7 +67949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1362), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -64679,143 +68054,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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_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), + [STATE(95)] = { + [sym__block_item] = STATE(96), + [sym_preproc_include] = STATE(96), + [sym_preproc_def] = STATE(96), + [sym_preproc_function_def] = STATE(96), + [sym_preproc_call] = STATE(96), + [sym_function_definition] = STATE(96), + [sym_declaration] = STATE(96), + [sym_type_definition] = STATE(96), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(96), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(96), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(96), + [sym_preproc_if_in_block] = STATE(96), + [sym_preproc_ifdef_in_block] = STATE(96), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(96), + [sym_import_declaration] = STATE(96), + [sym_template_declaration] = STATE(96), + [sym_template_instantiation] = STATE(96), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(96), + [sym_operator_cast_declaration] = STATE(96), + [sym_constructor_or_destructor_definition] = STATE(96), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(96), + [sym_namespace_alias_definition] = STATE(96), + [sym_using_declaration] = STATE(96), + [sym_alias_declaration] = STATE(96), + [sym_static_assert_declaration] = STATE(96), + [sym_consteval_block_declaration] = STATE(96), + [sym_concept_definition] = STATE(96), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(96), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -64850,7 +68225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_RBRACE] = ACTIONS(1364), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -64955,7 +68330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(95)] = { + [STATE(96)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -64964,93 +68339,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -65058,40 +68433,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -65126,7 +68501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1366), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -65231,143 +68606,143 @@ 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), + [STATE(97)] = { + [sym__block_item] = STATE(98), + [sym_preproc_include] = STATE(98), + [sym_preproc_def] = STATE(98), + [sym_preproc_function_def] = STATE(98), + [sym_preproc_call] = STATE(98), + [sym_function_definition] = STATE(98), + [sym_declaration] = STATE(98), + [sym_type_definition] = STATE(98), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(98), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(98), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(98), + [sym_preproc_if_in_block] = STATE(98), + [sym_preproc_ifdef_in_block] = STATE(98), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(98), + [sym_import_declaration] = STATE(98), + [sym_template_declaration] = STATE(98), + [sym_template_instantiation] = STATE(98), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(98), + [sym_operator_cast_declaration] = STATE(98), + [sym_constructor_or_destructor_definition] = STATE(98), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(98), + [sym_namespace_alias_definition] = STATE(98), + [sym_using_declaration] = STATE(98), + [sym_alias_declaration] = STATE(98), + [sym_static_assert_declaration] = STATE(98), + [sym_consteval_block_declaration] = STATE(98), + [sym_concept_definition] = STATE(98), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(98), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -65402,7 +68777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1368), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -65507,7 +68882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(97)] = { + [STATE(98)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -65516,93 +68891,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -65610,40 +68985,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -65678,7 +69053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1370), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -65783,143 +69158,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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_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), + [STATE(99)] = { + [sym__block_item] = STATE(100), + [sym_preproc_include] = STATE(100), + [sym_preproc_def] = STATE(100), + [sym_preproc_function_def] = STATE(100), + [sym_preproc_call] = STATE(100), + [sym_function_definition] = STATE(100), + [sym_declaration] = STATE(100), + [sym_type_definition] = STATE(100), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(100), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(100), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(100), + [sym_preproc_if_in_block] = STATE(100), + [sym_preproc_ifdef_in_block] = STATE(100), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(100), + [sym_import_declaration] = STATE(100), + [sym_template_declaration] = STATE(100), + [sym_template_instantiation] = STATE(100), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(100), + [sym_operator_cast_declaration] = STATE(100), + [sym_constructor_or_destructor_definition] = STATE(100), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(100), + [sym_namespace_alias_definition] = STATE(100), + [sym_using_declaration] = STATE(100), + [sym_alias_declaration] = STATE(100), + [sym_static_assert_declaration] = STATE(100), + [sym_consteval_block_declaration] = STATE(100), + [sym_concept_definition] = STATE(100), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(100), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -65954,7 +69329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1372), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -66059,143 +69434,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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_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), + [STATE(100)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(72), + [sym_preproc_if_in_block] = STATE(72), + [sym_preproc_ifdef_in_block] = STATE(72), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(72), + [sym_import_declaration] = STATE(72), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(72), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -66230,7 +69605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_RBRACE] = ACTIONS(1374), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -66335,143 +69710,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(100)] = { - [sym__block_item] = STATE(101), - [sym_preproc_include] = STATE(101), - [sym_preproc_def] = STATE(101), - [sym_preproc_function_def] = STATE(101), - [sym_preproc_call] = STATE(101), - [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_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_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__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_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_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_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(101), - [sym_namespace_alias_definition] = STATE(101), - [sym_using_declaration] = STATE(101), - [sym_alias_declaration] = STATE(101), - [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), - [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), + [STATE(101)] = { + [sym__block_item] = STATE(102), + [sym_preproc_include] = STATE(102), + [sym_preproc_def] = STATE(102), + [sym_preproc_function_def] = STATE(102), + [sym_preproc_call] = STATE(102), + [sym_function_definition] = STATE(102), + [sym_declaration] = STATE(102), + [sym_type_definition] = STATE(102), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(102), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(102), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(102), + [sym_preproc_if_in_block] = STATE(102), + [sym_preproc_ifdef_in_block] = STATE(102), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(102), + [sym_import_declaration] = STATE(102), + [sym_template_declaration] = STATE(102), + [sym_template_instantiation] = STATE(102), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(102), + [sym_operator_cast_declaration] = STATE(102), + [sym_constructor_or_destructor_definition] = STATE(102), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(102), + [sym_namespace_alias_definition] = STATE(102), + [sym_using_declaration] = STATE(102), + [sym_alias_declaration] = STATE(102), + [sym_static_assert_declaration] = STATE(102), + [sym_consteval_block_declaration] = STATE(102), + [sym_concept_definition] = STATE(102), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(102), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -66506,7 +69881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1376), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -66611,7 +69986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(101)] = { + [STATE(102)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -66620,93 +69995,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -66714,40 +70089,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -66782,7 +70157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1378), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -66887,143 +70262,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(102)] = { - [sym__block_item] = STATE(103), - [sym_preproc_include] = STATE(103), - [sym_preproc_def] = STATE(103), - [sym_preproc_function_def] = STATE(103), - [sym_preproc_call] = STATE(103), - [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_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_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__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_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_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_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(103), - [sym_namespace_alias_definition] = STATE(103), - [sym_using_declaration] = STATE(103), - [sym_alias_declaration] = STATE(103), - [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), - [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), + [STATE(103)] = { + [sym__block_item] = STATE(104), + [sym_preproc_include] = STATE(104), + [sym_preproc_def] = STATE(104), + [sym_preproc_function_def] = STATE(104), + [sym_preproc_call] = STATE(104), + [sym_function_definition] = STATE(104), + [sym_declaration] = STATE(104), + [sym_type_definition] = STATE(104), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(104), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(104), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(104), + [sym_preproc_if_in_block] = STATE(104), + [sym_preproc_ifdef_in_block] = STATE(104), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(104), + [sym_import_declaration] = STATE(104), + [sym_template_declaration] = STATE(104), + [sym_template_instantiation] = STATE(104), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(104), + [sym_operator_cast_declaration] = STATE(104), + [sym_constructor_or_destructor_definition] = STATE(104), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(104), + [sym_namespace_alias_definition] = STATE(104), + [sym_using_declaration] = STATE(104), + [sym_alias_declaration] = STATE(104), + [sym_static_assert_declaration] = STATE(104), + [sym_consteval_block_declaration] = STATE(104), + [sym_concept_definition] = STATE(104), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(104), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -67058,7 +70433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1380), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -67163,7 +70538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(103)] = { + [STATE(104)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -67172,93 +70547,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -67266,40 +70641,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -67334,7 +70709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1382), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -67439,143 +70814,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(104)] = { - [sym__block_item] = STATE(105), - [sym_preproc_include] = STATE(105), - [sym_preproc_def] = STATE(105), - [sym_preproc_function_def] = STATE(105), - [sym_preproc_call] = STATE(105), - [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_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_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__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_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_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_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(105), - [sym_namespace_alias_definition] = STATE(105), - [sym_using_declaration] = STATE(105), - [sym_alias_declaration] = STATE(105), - [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), - [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), + [STATE(105)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(71), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(71), + [sym_preproc_if_in_block] = STATE(71), + [sym_preproc_ifdef_in_block] = STATE(71), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(71), + [sym_import_declaration] = STATE(71), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(71), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -67610,7 +70985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1384), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -67715,7 +71090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(105)] = { + [STATE(106)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -67724,93 +71099,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -67818,316 +71193,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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___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(1384), - [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(106)] = { - [sym__block_item] = STATE(107), - [sym_preproc_include] = STATE(107), - [sym_preproc_def] = STATE(107), - [sym_preproc_function_def] = STATE(107), - [sym_preproc_call] = STATE(107), - [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_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_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__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_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_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_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(107), - [sym_namespace_alias_definition] = STATE(107), - [sym_using_declaration] = STATE(107), - [sym_alias_declaration] = STATE(107), - [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), - [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -68268,142 +71367,142 @@ 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_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__block_item] = STATE(108), + [sym_preproc_include] = STATE(108), + [sym_preproc_def] = STATE(108), + [sym_preproc_function_def] = STATE(108), + [sym_preproc_call] = STATE(108), + [sym_function_definition] = STATE(108), + [sym_declaration] = STATE(108), + [sym_type_definition] = STATE(108), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(108), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(108), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(108), + [sym_preproc_if_in_block] = STATE(108), + [sym_preproc_ifdef_in_block] = STATE(108), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(108), + [sym_import_declaration] = STATE(108), + [sym_template_declaration] = STATE(108), + [sym_template_instantiation] = STATE(108), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(108), + [sym_operator_cast_declaration] = STATE(108), + [sym_constructor_or_destructor_definition] = STATE(108), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(108), + [sym_namespace_alias_definition] = STATE(108), + [sym_using_declaration] = STATE(108), + [sym_alias_declaration] = STATE(108), + [sym_static_assert_declaration] = STATE(108), + [sym_consteval_block_declaration] = STATE(108), + [sym_concept_definition] = STATE(108), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(108), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -68544,282 +71643,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(108)] = { - [sym__block_item] = STATE(109), - [sym_preproc_include] = STATE(109), - [sym_preproc_def] = STATE(109), - [sym_preproc_function_def] = STATE(109), - [sym_preproc_call] = STATE(109), - [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_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_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__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_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_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_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(109), - [sym_namespace_alias_definition] = STATE(109), - [sym_using_declaration] = STATE(109), - [sym_alias_declaration] = STATE(109), - [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), - [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_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(1390), - [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(109)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -68828,93 +71651,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -68922,40 +71745,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -68990,7 +71813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_RBRACE] = ACTIONS(1390), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -69095,143 +71918,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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_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), + [STATE(109)] = { + [sym__block_item] = STATE(110), + [sym_preproc_include] = STATE(110), + [sym_preproc_def] = STATE(110), + [sym_preproc_function_def] = STATE(110), + [sym_preproc_call] = STATE(110), + [sym_function_definition] = STATE(110), + [sym_declaration] = STATE(110), + [sym_type_definition] = STATE(110), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(110), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(110), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(110), + [sym_preproc_if_in_block] = STATE(110), + [sym_preproc_ifdef_in_block] = STATE(110), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(110), + [sym_import_declaration] = STATE(110), + [sym_template_declaration] = STATE(110), + [sym_template_instantiation] = STATE(110), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(110), + [sym_operator_cast_declaration] = STATE(110), + [sym_constructor_or_destructor_definition] = STATE(110), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(110), + [sym_namespace_alias_definition] = STATE(110), + [sym_using_declaration] = STATE(110), + [sym_alias_declaration] = STATE(110), + [sym_static_assert_declaration] = STATE(110), + [sym_consteval_block_declaration] = STATE(110), + [sym_concept_definition] = STATE(110), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(110), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -69266,7 +72089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1392), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -69371,7 +72194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(111)] = { + [STATE(110)] = { [sym__block_item] = STATE(72), [sym_preproc_include] = STATE(72), [sym_preproc_def] = STATE(72), @@ -69380,93 +72203,93 @@ 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(5385), + [sym__declaration_specifiers] = STATE(7227), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), [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(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), [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(10388), + [sym__constructor_specifiers] = STATE(2809), [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_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), [sym_using_declaration] = STATE(72), @@ -69474,40 +72297,40 @@ 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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [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), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), [sym_identifier] = ACTIONS(958), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -69542,7 +72365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(55), [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1394), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -69647,150 +72470,150 @@ 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), + [STATE(111)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(78), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(78), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(78), + [sym_preproc_if_in_block] = STATE(78), + [sym_preproc_ifdef_in_block] = STATE(78), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(78), + [sym_import_declaration] = STATE(78), + [sym_template_declaration] = STATE(78), + [sym_template_instantiation] = STATE(78), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(78), + [sym_operator_cast_declaration] = STATE(78), + [sym_constructor_or_destructor_definition] = STATE(78), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [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(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_declaration_list_repeat1] = STATE(78), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), + [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), @@ -69799,14 +72622,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(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), @@ -69817,7 +72640,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(1322), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1396), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -69825,7 +72649,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), @@ -69842,7 +72666,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), @@ -69850,19 +72674,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___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [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), @@ -69898,18 +72722,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(1328), - [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), @@ -69922,419 +72746,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(112)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7235), + [sym_linkage_specification] = STATE(114), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3077), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9897), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(114), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4972), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(1022), + [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(8258), + [sym__string] = STATE(8187), + [sym_conditional_expression] = STATE(8374), + [sym_assignment_expression] = STATE(8374), + [sym_pointer_expression] = STATE(6713), + [sym_unary_expression] = STATE(8374), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8374), + [sym_cast_expression] = STATE(8374), + [sym_sizeof_expression] = STATE(8374), + [sym_alignof_expression] = STATE(8374), + [sym_offsetof_expression] = STATE(8374), + [sym_generic_expression] = STATE(8374), + [sym_subscript_expression] = STATE(6713), + [sym_call_expression] = STATE(6713), + [sym_gnu_asm_expression] = STATE(8374), + [sym_extension_expression] = STATE(8374), + [sym_field_expression] = STATE(6713), + [sym_compound_literal_expression] = STATE(8374), + [sym_parenthesized_expression] = STATE(6713), + [sym_char_literal] = STATE(8187), + [sym_concatenated_string] = STATE(8187), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8374), + [sym__empty_declaration] = STATE(114), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2801), + [sym_dependent_type] = STATE(4346), + [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(10373), + [sym__constructor_specifiers] = STATE(2801), + [sym_operator_cast_definition] = STATE(114), + [sym_operator_cast_declaration] = STATE(114), + [sym_constructor_or_destructor_definition] = STATE(114), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8349), + [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(5370), + [sym_co_await_expression] = STATE(8374), + [sym_new_expression] = STATE(8374), + [sym_delete_expression] = STATE(8374), + [sym_requires_clause] = STATE(8374), + [sym_requires_expression] = STATE(8374), + [sym_lambda_expression] = STATE(8374), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8374), + [sym_parameter_pack_expansion] = STATE(8374), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6407), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10373), + [sym_reflect_expression] = STATE(8374), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8185), + [sym_expansion_statement] = STATE(114), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6713), + [aux_sym_translation_unit_repeat1] = STATE(114), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2801), [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), - }, - [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), @@ -70472,143 +73021,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(125), }, - [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_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), + [STATE(113)] = { + [sym__block_item] = STATE(784), + [sym_preproc_include] = STATE(784), + [sym_preproc_def] = STATE(784), + [sym_preproc_function_def] = STATE(784), + [sym_preproc_call] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_declaration] = STATE(784), + [sym_type_definition] = STATE(784), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7241), + [sym_linkage_specification] = STATE(784), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3132), + [sym_declaration_list] = STATE(784), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9904), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(670), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4959), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(781), + [sym_statement] = STATE(784), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(784), + [sym_preproc_if_in_block] = STATE(784), + [sym_preproc_ifdef_in_block] = STATE(784), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2814), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(784), + [sym_import_declaration] = STATE(784), + [sym_template_declaration] = STATE(784), + [sym_template_instantiation] = STATE(784), + [sym_operator_cast] = STATE(10336), + [sym__constructor_specifiers] = STATE(2814), + [sym_operator_cast_definition] = STATE(784), + [sym_operator_cast_declaration] = STATE(784), + [sym_constructor_or_destructor_definition] = STATE(784), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(784), + [sym_namespace_alias_definition] = STATE(784), + [sym_using_declaration] = STATE(784), + [sym_alias_declaration] = STATE(784), + [sym_static_assert_declaration] = STATE(784), + [sym_consteval_block_declaration] = STATE(784), + [sym_concept_definition] = STATE(784), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10336), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2814), [sym_identifier] = ACTIONS(1089), [aux_sym_preproc_include_token1] = ACTIONS(1091), [aux_sym_preproc_def_token1] = ACTIONS(1093), @@ -70747,151 +73296,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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), + [STATE(114)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(7235), + [sym_linkage_specification] = STATE(114), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3077), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9897), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(114), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4972), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(1022), + [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(8258), + [sym__string] = STATE(8187), + [sym_conditional_expression] = STATE(8374), + [sym_assignment_expression] = STATE(8374), + [sym_pointer_expression] = STATE(6713), + [sym_unary_expression] = STATE(8374), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8374), + [sym_cast_expression] = STATE(8374), + [sym_sizeof_expression] = STATE(8374), + [sym_alignof_expression] = STATE(8374), + [sym_offsetof_expression] = STATE(8374), + [sym_generic_expression] = STATE(8374), + [sym_subscript_expression] = STATE(6713), + [sym_call_expression] = STATE(6713), + [sym_gnu_asm_expression] = STATE(8374), + [sym_extension_expression] = STATE(8374), + [sym_field_expression] = STATE(6713), + [sym_compound_literal_expression] = STATE(8374), + [sym_parenthesized_expression] = STATE(6713), + [sym_char_literal] = STATE(8187), + [sym_concatenated_string] = STATE(8187), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8374), + [sym__empty_declaration] = STATE(114), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2801), + [sym_dependent_type] = STATE(4346), + [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(10373), + [sym__constructor_specifiers] = STATE(2801), + [sym_operator_cast_definition] = STATE(114), + [sym_operator_cast_declaration] = STATE(114), + [sym_constructor_or_destructor_definition] = STATE(114), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8349), + [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(5370), + [sym_co_await_expression] = STATE(8374), + [sym_new_expression] = STATE(8374), + [sym_delete_expression] = STATE(8374), + [sym_requires_clause] = STATE(8374), + [sym_requires_expression] = STATE(8374), + [sym_lambda_expression] = STATE(8374), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8374), + [sym_parameter_pack_expansion] = STATE(8374), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6407), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10373), + [sym_reflect_expression] = STATE(8374), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8185), + [sym_expansion_statement] = STATE(114), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6713), + [aux_sym_translation_unit_repeat1] = STATE(114), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2801), + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1405), + [aux_sym_preproc_def_token1] = ACTIONS(1408), + [aux_sym_preproc_if_token1] = ACTIONS(1411), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1417), + [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(1420), + [anon_sym___extension__] = ACTIONS(1423), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_virtual] = ACTIONS(757), + [anon_sym_extern] = ACTIONS(1429), + [anon_sym___attribute__] = ACTIONS(763), + [anon_sym___attribute] = ACTIONS(763), + [anon_sym_using] = ACTIONS(1432), + [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(1435), + [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(1438), + [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(1441), + [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(1444), + [anon_sym_switch] = ACTIONS(1447), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1456), + [anon_sym_do] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1465), + [anon_sym_break] = ACTIONS(1468), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_goto] = ACTIONS(1474), + [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(1477), + [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(1480), + [sym_false] = ACTIONS(1480), + [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(1483), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_import] = ACTIONS(1489), + [anon_sym_template] = ACTIONS(1492), + [anon_sym_operator] = ACTIONS(913), + [anon_sym_try] = ACTIONS(1495), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_throw] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1501), + [anon_sym_static_assert] = ACTIONS(1504), + [anon_sym_concept] = ACTIONS(1507), + [anon_sym_co_return] = ACTIONS(1510), + [anon_sym_co_yield] = ACTIONS(1513), + [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(1480), + }, + [STATE(115)] = { + [sym__block_item] = STATE(1042), + [sym_preproc_include] = STATE(1042), + [sym_preproc_def] = STATE(1042), + [sym_preproc_function_def] = STATE(1042), + [sym_preproc_call] = STATE(1042), + [sym_function_definition] = STATE(1042), + [sym_declaration] = STATE(1042), + [sym_type_definition] = STATE(1042), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7235), + [sym_linkage_specification] = STATE(1042), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3077), + [sym_declaration_list] = STATE(1042), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9897), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(593), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4972), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(1003), + [sym_statement] = STATE(1042), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(1042), + [sym_preproc_if_in_block] = STATE(1042), + [sym_preproc_ifdef_in_block] = STATE(1042), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2801), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(1042), + [sym_import_declaration] = STATE(1042), + [sym_template_declaration] = STATE(1042), + [sym_template_instantiation] = STATE(1042), + [sym_operator_cast] = STATE(10373), + [sym__constructor_specifiers] = STATE(2801), + [sym_operator_cast_definition] = STATE(1042), + [sym_operator_cast_declaration] = STATE(1042), + [sym_constructor_or_destructor_definition] = STATE(1042), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(1042), + [sym_namespace_alias_definition] = STATE(1042), + [sym_using_declaration] = STATE(1042), + [sym_alias_declaration] = STATE(1042), + [sym_static_assert_declaration] = STATE(1042), + [sym_consteval_block_declaration] = STATE(1042), + [sym_concept_definition] = STATE(1042), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10373), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2801), + [sym_identifier] = ACTIONS(1310), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -70900,14 +73723,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(1316), + [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), @@ -70918,7 +73741,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(1318), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -70926,7 +73749,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), @@ -70943,7 +73766,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), @@ -70951,17 +73774,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_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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -70978,7 +73803,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(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -70989,27 +73814,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(1528), - [sym_false] = ACTIONS(1528), + [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(1530), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_import] = ACTIONS(1147), - [anon_sym_template] = ACTIONS(1149), + [anon_sym_export] = ACTIONS(1324), + [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), @@ -71020,152 +73844,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(1528), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(116)] = { + [sym__block_item] = STATE(423), + [sym_preproc_include] = STATE(423), + [sym_preproc_def] = STATE(423), + [sym_preproc_function_def] = STATE(423), + [sym_preproc_call] = STATE(423), + [sym_function_definition] = STATE(423), + [sym_declaration] = STATE(423), + [sym_type_definition] = STATE(423), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_linkage_specification] = STATE(423), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym_declaration_list] = STATE(423), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9874), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(419), + [sym_statement] = STATE(423), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(423), + [sym_preproc_if_in_block] = STATE(423), + [sym_preproc_ifdef_in_block] = STATE(423), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2812), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(423), + [sym_import_declaration] = STATE(423), + [sym_template_declaration] = STATE(423), + [sym_template_instantiation] = STATE(423), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2812), + [sym_operator_cast_definition] = STATE(423), + [sym_operator_cast_declaration] = STATE(423), + [sym_constructor_or_destructor_definition] = STATE(423), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(423), + [sym_namespace_alias_definition] = STATE(423), + [sym_using_declaration] = STATE(423), + [sym_alias_declaration] = STATE(423), + [sym_static_assert_declaration] = STATE(423), + [sym_consteval_block_declaration] = STATE(423), + [sym_concept_definition] = STATE(423), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2812), + [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), @@ -71174,14 +73998,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(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -71192,7 +74016,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(1534), + [anon_sym_LBRACE] = ACTIONS(1077), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -71200,7 +74024,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(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -71217,7 +74041,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(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -71225,19 +74049,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(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), @@ -71273,18 +74097,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(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(245), + [anon_sym_try] = ACTIONS(347), [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(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), @@ -71297,150 +74121,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [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_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), + [STATE(117)] = { + [sym__top_level_item] = STATE(118), + [sym_preproc_include] = STATE(118), + [sym_preproc_def] = STATE(118), + [sym_preproc_function_def] = STATE(118), + [sym_preproc_call] = STATE(118), + [sym_preproc_if] = STATE(118), + [sym_preproc_ifdef] = STATE(118), + [sym_function_definition] = STATE(118), + [sym_declaration] = STATE(118), + [sym_type_definition] = STATE(118), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7241), + [sym_linkage_specification] = STATE(118), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3132), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9904), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(118), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4959), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(1034), + [sym__top_level_statement] = STATE(118), + [sym_labeled_statement] = STATE(118), + [sym__top_level_expression_statement] = STATE(118), + [sym_if_statement] = STATE(118), + [sym_switch_statement] = STATE(118), + [sym_case_statement] = STATE(118), + [sym_while_statement] = STATE(118), + [sym_do_statement] = STATE(118), + [sym_for_statement] = STATE(118), + [sym_return_statement] = STATE(118), + [sym_break_statement] = STATE(118), + [sym_continue_statement] = STATE(118), + [sym_goto_statement] = STATE(118), + [sym_expression] = STATE(8258), + [sym__string] = STATE(8331), + [sym_conditional_expression] = STATE(8449), + [sym_assignment_expression] = STATE(8449), + [sym_pointer_expression] = STATE(6703), + [sym_unary_expression] = STATE(8449), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8449), + [sym_cast_expression] = STATE(8449), + [sym_sizeof_expression] = STATE(8449), + [sym_alignof_expression] = STATE(8449), + [sym_offsetof_expression] = STATE(8449), + [sym_generic_expression] = STATE(8449), + [sym_subscript_expression] = STATE(6703), + [sym_call_expression] = STATE(6703), + [sym_gnu_asm_expression] = STATE(8449), + [sym_extension_expression] = STATE(8449), + [sym_field_expression] = STATE(6703), + [sym_compound_literal_expression] = STATE(8449), + [sym_parenthesized_expression] = STATE(6703), + [sym_char_literal] = STATE(8331), + [sym_concatenated_string] = STATE(8331), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8449), + [sym__empty_declaration] = STATE(118), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2814), + [sym_dependent_type] = STATE(4346), + [sym_module_declaration] = STATE(118), + [sym_export_declaration] = STATE(118), + [sym_import_declaration] = STATE(118), + [sym_global_module_fragment_declaration] = STATE(118), + [sym_private_module_fragment_declaration] = STATE(118), + [sym_template_declaration] = STATE(118), + [sym_template_instantiation] = STATE(118), + [sym_operator_cast] = STATE(10336), + [sym__constructor_specifiers] = STATE(2814), + [sym_operator_cast_definition] = STATE(118), + [sym_operator_cast_declaration] = STATE(118), + [sym_constructor_or_destructor_definition] = STATE(118), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8143), + [sym_namespace_definition] = STATE(118), + [sym_namespace_alias_definition] = STATE(118), + [sym_using_declaration] = STATE(118), + [sym_alias_declaration] = STATE(118), + [sym_static_assert_declaration] = STATE(118), + [sym_consteval_block_declaration] = STATE(118), + [sym_concept_definition] = STATE(118), + [sym_for_range_loop] = STATE(118), + [sym_co_return_statement] = STATE(118), + [sym_co_yield_statement] = STATE(118), + [sym_throw_statement] = STATE(118), + [sym_try_statement] = STATE(118), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(8449), + [sym_new_expression] = STATE(8449), + [sym_delete_expression] = STATE(8449), + [sym_requires_clause] = STATE(8449), + [sym_requires_expression] = STATE(8449), + [sym_lambda_expression] = STATE(8449), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8449), + [sym_parameter_pack_expansion] = STATE(8449), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6554), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10336), + [sym_reflect_expression] = STATE(8449), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8334), + [sym_expansion_statement] = STATE(118), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6703), + [aux_sym_translation_unit_repeat1] = STATE(118), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2814), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -71449,14 +74274,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(1524), + [anon_sym___extension__] = ACTIONS(1105), + [anon_sym_typedef] = ACTIONS(1107), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(305), + [anon_sym_extern] = ACTIONS(1109), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(307), + [anon_sym_using] = ACTIONS(1111), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -71467,7 +74292,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(1113), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -71475,7 +74300,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(1115), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -71492,7 +74317,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(1117), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -71500,19 +74325,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(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(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_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -71529,7 +74352,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(1526), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -71540,26 +74363,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(1528), + [sym_false] = ACTIONS(1528), [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(341), - [anon_sym_import] = ACTIONS(343), - [anon_sym_template] = ACTIONS(345), + [anon_sym_export] = ACTIONS(1530), + [anon_sym_module] = ACTIONS(1532), + [anon_sym_import] = ACTIONS(1147), + [anon_sym_template] = ACTIONS(1149), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(347), + [anon_sym_try] = ACTIONS(1151), [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(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_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -71570,9 +74394,9 @@ 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), + [sym_this] = ACTIONS(1528), }, - [STATE(119)] = { + [STATE(118)] = { [sym__top_level_item] = STATE(120), [sym_preproc_include] = STATE(120), [sym_preproc_def] = STATE(120), @@ -71583,30 +74407,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(5385), + [sym__declaration_specifiers] = STATE(7241), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3132), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9904), + [sym_array_declarator] = STATE(9532), [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(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4959), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(1034), [sym__top_level_statement] = STATE(120), [sym_labeled_statement] = STATE(120), [sym__top_level_expression_statement] = STATE(120), @@ -71620,38 +74444,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(8258), + [sym__string] = STATE(8331), + [sym_conditional_expression] = STATE(8449), + [sym_assignment_expression] = STATE(8449), + [sym_pointer_expression] = STATE(6703), + [sym_unary_expression] = STATE(8449), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8449), + [sym_cast_expression] = STATE(8449), + [sym_sizeof_expression] = STATE(8449), + [sym_alignof_expression] = STATE(8449), + [sym_offsetof_expression] = STATE(8449), + [sym_generic_expression] = STATE(8449), + [sym_subscript_expression] = STATE(6703), + [sym_call_expression] = STATE(6703), + [sym_gnu_asm_expression] = STATE(8449), + [sym_extension_expression] = STATE(8449), + [sym_field_expression] = STATE(6703), + [sym_compound_literal_expression] = STATE(8449), + [sym_parenthesized_expression] = STATE(6703), + [sym_char_literal] = STATE(8331), + [sym_concatenated_string] = STATE(8331), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8449), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2814), + [sym_dependent_type] = STATE(4346), [sym_module_declaration] = STATE(120), [sym_export_declaration] = STATE(120), [sym_import_declaration] = STATE(120), @@ -71659,15 +74483,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(10336), + [sym__constructor_specifiers] = STATE(2814), [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(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8143), [sym_namespace_definition] = STATE(120), [sym_namespace_alias_definition] = STATE(120), [sym_using_declaration] = STATE(120), @@ -71680,40 +74504,40 @@ 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(5370), + [sym_co_await_expression] = STATE(8449), + [sym_new_expression] = STATE(8449), + [sym_delete_expression] = STATE(8449), + [sym_requires_clause] = STATE(8449), + [sym_requires_expression] = STATE(8449), + [sym_lambda_expression] = STATE(8449), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8449), + [sym_parameter_pack_expansion] = STATE(8449), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6554), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10336), + [sym_reflect_expression] = STATE(8449), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8334), [sym_expansion_statement] = STATE(120), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5948), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6703), [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2814), [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_if_token2] = ACTIONS(1534), [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), [sym_preproc_directive] = ACTIONS(1101), @@ -71847,6 +74671,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(1528), }, + [STATE(119)] = { + [sym__block_item] = STATE(859), + [sym_preproc_include] = STATE(859), + [sym_preproc_def] = STATE(859), + [sym_preproc_function_def] = STATE(859), + [sym_preproc_call] = STATE(859), + [sym_function_definition] = STATE(859), + [sym_declaration] = STATE(859), + [sym_type_definition] = STATE(859), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_linkage_specification] = STATE(859), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym_declaration_list] = STATE(859), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9902), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(876), + [sym_statement] = STATE(859), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym__empty_declaration] = STATE(859), + [sym_preproc_if_in_block] = STATE(859), + [sym_preproc_ifdef_in_block] = STATE(859), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2809), + [sym_dependent_type] = STATE(4346), + [sym_export_declaration] = STATE(859), + [sym_import_declaration] = STATE(859), + [sym_template_declaration] = STATE(859), + [sym_template_instantiation] = STATE(859), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2809), + [sym_operator_cast_definition] = STATE(859), + [sym_operator_cast_declaration] = STATE(859), + [sym_constructor_or_destructor_definition] = STATE(859), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(7589), + [sym_namespace_definition] = STATE(859), + [sym_namespace_alias_definition] = STATE(859), + [sym_using_declaration] = STATE(859), + [sym_alias_declaration] = STATE(859), + [sym_static_assert_declaration] = STATE(859), + [sym_consteval_block_declaration] = STATE(859), + [sym_concept_definition] = STATE(859), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(5931), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(184), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2809), + [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(1536), + [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(120)] = { [sym__top_level_item] = STATE(120), [sym_preproc_include] = STATE(120), @@ -71858,30 +74957,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(5385), + [sym__declaration_specifiers] = STATE(7241), [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(5385), + [sym_attribute_declaration] = STATE(1152), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3132), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9904), + [sym_array_declarator] = STATE(9532), [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(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4959), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(1034), [sym__top_level_statement] = STATE(120), [sym_labeled_statement] = STATE(120), [sym__top_level_expression_statement] = STATE(120), @@ -71895,38 +74994,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(8258), + [sym__string] = STATE(8331), + [sym_conditional_expression] = STATE(8449), + [sym_assignment_expression] = STATE(8449), + [sym_pointer_expression] = STATE(6703), + [sym_unary_expression] = STATE(8449), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(8449), + [sym_cast_expression] = STATE(8449), + [sym_sizeof_expression] = STATE(8449), + [sym_alignof_expression] = STATE(8449), + [sym_offsetof_expression] = STATE(8449), + [sym_generic_expression] = STATE(8449), + [sym_subscript_expression] = STATE(6703), + [sym_call_expression] = STATE(6703), + [sym_gnu_asm_expression] = STATE(8449), + [sym_extension_expression] = STATE(8449), + [sym_field_expression] = STATE(6703), + [sym_compound_literal_expression] = STATE(8449), + [sym_parenthesized_expression] = STATE(6703), + [sym_char_literal] = STATE(8331), + [sym_concatenated_string] = STATE(8331), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(8449), [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(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_explicit_function_specifier] = STATE(2814), + [sym_dependent_type] = STATE(4346), [sym_module_declaration] = STATE(120), [sym_export_declaration] = STATE(120), [sym_import_declaration] = STATE(120), @@ -71934,15 +75033,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(10336), + [sym__constructor_specifiers] = STATE(2814), [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(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(8143), [sym_namespace_definition] = STATE(120), [sym_namespace_alias_definition] = STATE(120), [sym_using_declaration] = STATE(120), @@ -71955,35 +75054,35 @@ 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(5370), + [sym_co_await_expression] = STATE(8449), + [sym_new_expression] = STATE(8449), + [sym_delete_expression] = STATE(8449), + [sym_requires_clause] = STATE(8449), + [sym_requires_expression] = STATE(8449), + [sym_lambda_expression] = STATE(8449), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(8449), + [sym_parameter_pack_expansion] = STATE(8449), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8668), + [sym_qualified_identifier] = STATE(6554), + [sym_qualified_type_identifier] = STATE(5081), + [sym_qualified_operator_cast_identifier] = STATE(10336), + [sym_reflect_expression] = STATE(8449), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(8334), [sym_expansion_statement] = STATE(120), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5948), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6703), [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2814), [sym_identifier] = ACTIONS(1538), [aux_sym_preproc_include_token1] = ACTIONS(1541), [aux_sym_preproc_def_token1] = ACTIONS(1544), @@ -72123,22 +75222,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1616), }, [STATE(121)] = { + [sym_declaration] = STATE(121), + [sym_type_definition] = STATE(121), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7236), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(121), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(121), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(1652), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token2] = ACTIONS(1655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1655), + [aux_sym_preproc_else_token1] = ACTIONS(1655), + [aux_sym_preproc_elif_token1] = ACTIONS(1655), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1655), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1655), + [sym_preproc_directive] = ACTIONS(1655), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_TILDE] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_AMP_AMP] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1674), + [anon_sym___extension__] = ACTIONS(1677), + [anon_sym_typedef] = ACTIONS(1680), + [anon_sym_virtual] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym___attribute__] = ACTIONS(1689), + [anon_sym___attribute] = ACTIONS(1689), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1695), + [anon_sym___declspec] = ACTIONS(1698), + [anon_sym___based] = ACTIONS(1655), + [anon_sym___cdecl] = ACTIONS(1655), + [anon_sym___clrcall] = ACTIONS(1655), + [anon_sym___stdcall] = ACTIONS(1655), + [anon_sym___fastcall] = ACTIONS(1655), + [anon_sym___thiscall] = ACTIONS(1655), + [anon_sym___vectorcall] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1701), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_inline] = ACTIONS(1686), + [anon_sym___inline] = ACTIONS(1686), + [anon_sym___inline__] = ACTIONS(1686), + [anon_sym___forceinline] = ACTIONS(1686), + [anon_sym_thread_local] = ACTIONS(1686), + [anon_sym___thread] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_constexpr] = ACTIONS(1710), + [anon_sym_volatile] = ACTIONS(1710), + [anon_sym_restrict] = ACTIONS(1710), + [anon_sym___restrict__] = ACTIONS(1710), + [anon_sym__Atomic] = ACTIONS(1710), + [anon_sym__Noreturn] = ACTIONS(1710), + [anon_sym_noreturn] = ACTIONS(1710), + [anon_sym__Nonnull] = ACTIONS(1710), + [anon_sym_mutable] = ACTIONS(1710), + [anon_sym_constinit] = ACTIONS(1710), + [anon_sym_consteval] = ACTIONS(1710), + [anon_sym_alignas] = ACTIONS(1713), + [anon_sym__Alignas] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1719), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_struct] = ACTIONS(1725), + [anon_sym_union] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1734), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1737), + [anon_sym_do] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1743), + [anon_sym_return] = ACTIONS(1746), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_goto] = ACTIONS(1755), + [anon_sym___try] = ACTIONS(1758), + [anon_sym___leave] = ACTIONS(1761), + [anon_sym_not] = ACTIONS(1663), + [anon_sym_compl] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_sizeof] = ACTIONS(1767), + [anon_sym___alignof__] = ACTIONS(1770), + [anon_sym___alignof] = ACTIONS(1770), + [anon_sym__alignof] = ACTIONS(1770), + [anon_sym_alignof] = ACTIONS(1770), + [anon_sym__Alignof] = ACTIONS(1770), + [anon_sym_offsetof] = ACTIONS(1773), + [anon_sym__Generic] = ACTIONS(1776), + [anon_sym_typename] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1800), + [anon_sym_decltype] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_template] = ACTIONS(1806), + [anon_sym_operator] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1809), + [anon_sym_delete] = ACTIONS(1812), + [anon_sym_throw] = ACTIONS(1815), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_static_assert] = ACTIONS(1655), + [anon_sym_concept] = ACTIONS(1655), + [anon_sym_co_return] = ACTIONS(1818), + [anon_sym_co_yield] = ACTIONS(1821), + [anon_sym_R_DQUOTE] = ACTIONS(1824), + [anon_sym_LR_DQUOTE] = ACTIONS(1824), + [anon_sym_uR_DQUOTE] = ACTIONS(1824), + [anon_sym_UR_DQUOTE] = ACTIONS(1824), + [anon_sym_u8R_DQUOTE] = ACTIONS(1824), + [anon_sym_co_await] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1830), + [anon_sym_requires] = ACTIONS(1833), + [anon_sym_CARET_CARET] = ACTIONS(1836), + [anon_sym_LBRACK_COLON] = ACTIONS(1839), + [sym_this] = ACTIONS(1794), + }, + [STATE(122)] = { [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(3241), + [sym__declaration_specifiers] = STATE(7236), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), [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(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), [sym_attributed_statement] = STATE(125), [sym_labeled_statement] = STATE(125), [sym_expression_statement] = STATE(125), @@ -72153,113 +75491,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(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), [sym_expansion_statement] = STATE(125), - [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_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [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), + [sym_identifier] = ACTIONS(1842), + [aux_sym_preproc_include_token1] = ACTIONS(1844), + [aux_sym_preproc_def_token1] = ACTIONS(1844), + [aux_sym_preproc_if_token1] = ACTIONS(1844), + [aux_sym_preproc_if_token2] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1844), + [aux_sym_preproc_else_token1] = ACTIONS(1844), + [aux_sym_preproc_elif_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(1664), + [anon_sym___extension__] = ACTIONS(1854), [anon_sym_typedef] = ACTIONS(303), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1844), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1844), + [anon_sym___cdecl] = ACTIONS(1844), + [anon_sym___clrcall] = ACTIONS(1844), + [anon_sym___stdcall] = ACTIONS(1844), + [anon_sym___fastcall] = ACTIONS(1844), + [anon_sym___thiscall] = ACTIONS(1844), + [anon_sym___vectorcall] = ACTIONS(1844), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -72288,10 +75626,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(1844), [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), [anon_sym_while] = ACTIONS(323), [anon_sym_do] = ACTIONS(325), [anon_sym_for] = ACTIONS(327), @@ -72335,18 +75673,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(1844), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_import] = ACTIONS(1844), + [anon_sym_template] = ACTIONS(1862), + [anon_sym_operator] = ACTIONS(1844), [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(1844), + [anon_sym_static_assert] = ACTIONS(1844), + [anon_sym_concept] = ACTIONS(1844), [anon_sym_co_return] = ACTIONS(357), [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -72361,144 +75699,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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), - [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), + [STATE(123)] = { + [sym_declaration] = STATE(124), + [sym_type_definition] = STATE(124), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7236), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(124), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(124), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(1842), + [aux_sym_preproc_include_token1] = ACTIONS(1864), + [aux_sym_preproc_def_token1] = ACTIONS(1864), + [aux_sym_preproc_if_token1] = ACTIONS(1864), + [aux_sym_preproc_if_token2] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1864), + [aux_sym_preproc_else_token1] = ACTIONS(1864), + [aux_sym_preproc_elif_token1] = ACTIONS(1864), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1864), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1864), + [sym_preproc_directive] = ACTIONS(1864), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(1664), + [anon_sym___extension__] = ACTIONS(1854), [anon_sym_typedef] = ACTIONS(303), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1864), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1864), + [anon_sym___cdecl] = ACTIONS(1864), + [anon_sym___clrcall] = ACTIONS(1864), + [anon_sym___stdcall] = ACTIONS(1864), + [anon_sym___fastcall] = ACTIONS(1864), + [anon_sym___thiscall] = ACTIONS(1864), + [anon_sym___vectorcall] = ACTIONS(1864), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -72527,10 +75865,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(1864), [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), [anon_sym_while] = ACTIONS(323), [anon_sym_do] = ACTIONS(325), [anon_sym_for] = ACTIONS(327), @@ -72574,18 +75912,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(1864), + [anon_sym_export] = ACTIONS(1864), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_import] = ACTIONS(1864), + [anon_sym_template] = ACTIONS(1862), + [anon_sym_operator] = ACTIONS(1864), [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(1864), + [anon_sym_static_assert] = ACTIONS(1864), + [anon_sym_concept] = ACTIONS(1864), [anon_sym_co_return] = ACTIONS(357), [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -72600,144 +75938,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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), - [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), + [STATE(124)] = { + [sym_declaration] = STATE(121), + [sym_type_definition] = STATE(121), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7236), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(121), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(121), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(1842), + [aux_sym_preproc_include_token1] = ACTIONS(1868), + [aux_sym_preproc_def_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [aux_sym_preproc_else_token1] = ACTIONS(1868), + [aux_sym_preproc_elif_token1] = ACTIONS(1868), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1868), + [sym_preproc_directive] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(1664), + [anon_sym___extension__] = ACTIONS(1854), [anon_sym_typedef] = ACTIONS(303), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1678), + [anon_sym_using] = ACTIONS(1868), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -72766,10 +76104,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(1868), [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), [anon_sym_while] = ACTIONS(323), [anon_sym_do] = ACTIONS(325), [anon_sym_for] = ACTIONS(327), @@ -72813,18 +76151,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(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_import] = ACTIONS(1868), + [anon_sym_template] = ACTIONS(1862), + [anon_sym_operator] = ACTIONS(1868), [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(1868), + [anon_sym_static_assert] = ACTIONS(1868), + [anon_sym_concept] = ACTIONS(1868), [anon_sym_co_return] = ACTIONS(357), [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -72839,144 +76177,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [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_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), - [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(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), + [STATE(125)] = { + [sym_declaration] = STATE(121), + [sym_type_definition] = STATE(121), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7236), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(121), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(121), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(1842), + [aux_sym_preproc_include_token1] = ACTIONS(1872), + [aux_sym_preproc_def_token1] = ACTIONS(1872), + [aux_sym_preproc_if_token1] = ACTIONS(1872), + [aux_sym_preproc_if_token2] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), + [aux_sym_preproc_else_token1] = ACTIONS(1872), + [aux_sym_preproc_elif_token1] = ACTIONS(1872), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1872), + [sym_preproc_directive] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(1664), + [anon_sym___extension__] = ACTIONS(1854), [anon_sym_typedef] = ACTIONS(303), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1682), + [anon_sym_using] = ACTIONS(1872), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1872), + [anon_sym___cdecl] = ACTIONS(1872), + [anon_sym___clrcall] = ACTIONS(1872), + [anon_sym___stdcall] = ACTIONS(1872), + [anon_sym___fastcall] = ACTIONS(1872), + [anon_sym___thiscall] = ACTIONS(1872), + [anon_sym___vectorcall] = ACTIONS(1872), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73005,10 +76343,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(1872), [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), [anon_sym_while] = ACTIONS(323), [anon_sym_do] = ACTIONS(325), [anon_sym_for] = ACTIONS(327), @@ -73052,18 +76390,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(1872), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_import] = ACTIONS(1872), + [anon_sym_template] = ACTIONS(1862), + [anon_sym_operator] = ACTIONS(1872), [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(1872), + [anon_sym_static_assert] = ACTIONS(1872), + [anon_sym_concept] = ACTIONS(1872), [anon_sym_co_return] = ACTIONS(357), [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -73078,614 +76416,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [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_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), - [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(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), - }, [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_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(1703), + [sym_declaration] = STATE(130), + [sym_type_definition] = STATE(130), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7237), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(130), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(130), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(130), [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), - }, - [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), + [aux_sym_preproc_include_token1] = ACTIONS(1844), + [aux_sym_preproc_def_token1] = ACTIONS(1844), + [aux_sym_preproc_if_token1] = ACTIONS(1844), + [aux_sym_preproc_if_token2] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(1941), + [anon_sym___extension__] = ACTIONS(1878), [anon_sym_typedef] = ACTIONS(1107), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1844), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1844), + [anon_sym___cdecl] = ACTIONS(1844), + [anon_sym___clrcall] = ACTIONS(1844), + [anon_sym___stdcall] = ACTIONS(1844), + [anon_sym___fastcall] = ACTIONS(1844), + [anon_sym___thiscall] = ACTIONS(1844), + [anon_sym___vectorcall] = ACTIONS(1844), [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_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73714,10 +76578,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(1119), - [anon_sym_else] = ACTIONS(1654), + [anon_sym_else] = ACTIONS(1844), [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), [anon_sym_while] = ACTIONS(1127), [anon_sym_do] = ACTIONS(1129), [anon_sym_for] = ACTIONS(1131), @@ -73761,18 +76625,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(1943), - [anon_sym_operator] = ACTIONS(1654), + [anon_sym_explicit] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_import] = ACTIONS(1844), + [anon_sym_template] = ACTIONS(1880), + [anon_sym_operator] = ACTIONS(1844), [anon_sym_try] = ACTIONS(1151), [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_namespace] = ACTIONS(1844), + [anon_sym_static_assert] = ACTIONS(1844), + [anon_sym_concept] = ACTIONS(1844), [anon_sym_co_return] = ACTIONS(1161), [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -73787,140 +76651,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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), + [STATE(127)] = { + [sym_declaration] = STATE(131), + [sym_type_definition] = STATE(131), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7237), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(131), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(131), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(131), + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1864), + [aux_sym_preproc_def_token1] = ACTIONS(1864), + [aux_sym_preproc_if_token1] = ACTIONS(1864), + [aux_sym_preproc_if_token2] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1864), + [sym_preproc_directive] = ACTIONS(1864), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(1878), + [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1678), + [anon_sym_using] = ACTIONS(1864), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1864), + [anon_sym___cdecl] = ACTIONS(1864), + [anon_sym___clrcall] = ACTIONS(1864), + [anon_sym___stdcall] = ACTIONS(1864), + [anon_sym___fastcall] = ACTIONS(1864), + [anon_sym___thiscall] = ACTIONS(1864), + [anon_sym___vectorcall] = ACTIONS(1864), + [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_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73948,20 +76812,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(1119), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [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), @@ -73996,20 +76860,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(1864), + [anon_sym_export] = ACTIONS(1864), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_import] = ACTIONS(1864), + [anon_sym_template] = ACTIONS(1880), + [anon_sym_operator] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(1151), [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(1153), + [anon_sym_namespace] = ACTIONS(1864), + [anon_sym_static_assert] = ACTIONS(1864), + [anon_sym_concept] = ACTIONS(1864), + [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), @@ -74022,140 +76886,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, + [STATE(128)] = { + [sym_declaration] = STATE(128), + [sym_type_definition] = STATE(128), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7213), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(128), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(128), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(1669), + [sym_identifier] = ACTIONS(1882), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1655), + [sym_preproc_directive] = ACTIONS(1655), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_TILDE] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_AMP_AMP] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1885), + [anon_sym___extension__] = ACTIONS(1888), + [anon_sym_typedef] = ACTIONS(1891), + [anon_sym_virtual] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym___attribute__] = ACTIONS(1689), + [anon_sym___attribute] = ACTIONS(1689), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1695), + [anon_sym___declspec] = ACTIONS(1698), + [anon_sym___based] = ACTIONS(1655), + [anon_sym___cdecl] = ACTIONS(1655), + [anon_sym___clrcall] = ACTIONS(1655), + [anon_sym___stdcall] = ACTIONS(1655), + [anon_sym___fastcall] = ACTIONS(1655), + [anon_sym___thiscall] = ACTIONS(1655), + [anon_sym___vectorcall] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_inline] = ACTIONS(1686), + [anon_sym___inline] = ACTIONS(1686), + [anon_sym___inline__] = ACTIONS(1686), + [anon_sym___forceinline] = ACTIONS(1686), + [anon_sym_thread_local] = ACTIONS(1686), + [anon_sym___thread] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_constexpr] = ACTIONS(1710), + [anon_sym_volatile] = ACTIONS(1710), + [anon_sym_restrict] = ACTIONS(1710), + [anon_sym___restrict__] = ACTIONS(1710), + [anon_sym__Atomic] = ACTIONS(1710), + [anon_sym__Noreturn] = ACTIONS(1710), + [anon_sym_noreturn] = ACTIONS(1710), + [anon_sym__Nonnull] = ACTIONS(1710), + [anon_sym_mutable] = ACTIONS(1710), + [anon_sym_constinit] = ACTIONS(1710), + [anon_sym_consteval] = ACTIONS(1710), + [anon_sym_alignas] = ACTIONS(1713), + [anon_sym__Alignas] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1719), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_struct] = ACTIONS(1725), + [anon_sym_union] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1900), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_do] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_goto] = ACTIONS(1921), + [anon_sym___try] = ACTIONS(1924), + [anon_sym___leave] = ACTIONS(1927), + [anon_sym_not] = ACTIONS(1663), + [anon_sym_compl] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_sizeof] = ACTIONS(1767), + [anon_sym___alignof__] = ACTIONS(1770), + [anon_sym___alignof] = ACTIONS(1770), + [anon_sym__alignof] = ACTIONS(1770), + [anon_sym_alignof] = ACTIONS(1770), + [anon_sym__Alignof] = ACTIONS(1770), + [anon_sym_offsetof] = ACTIONS(1773), + [anon_sym__Generic] = ACTIONS(1776), + [anon_sym_typename] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1800), + [anon_sym_decltype] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_template] = ACTIONS(1930), + [anon_sym_operator] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(1933), + [anon_sym_delete] = ACTIONS(1812), + [anon_sym_throw] = ACTIONS(1936), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_static_assert] = ACTIONS(1655), + [anon_sym_concept] = ACTIONS(1655), + [anon_sym_co_return] = ACTIONS(1939), + [anon_sym_co_yield] = ACTIONS(1942), + [anon_sym_R_DQUOTE] = ACTIONS(1824), + [anon_sym_LR_DQUOTE] = ACTIONS(1824), + [anon_sym_uR_DQUOTE] = ACTIONS(1824), + [anon_sym_UR_DQUOTE] = ACTIONS(1824), + [anon_sym_u8R_DQUOTE] = ACTIONS(1824), + [anon_sym_co_await] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1830), + [anon_sym_requires] = ACTIONS(1833), + [anon_sym_CARET_CARET] = ACTIONS(1836), + [anon_sym_LBRACK_COLON] = ACTIONS(1839), + [sym_this] = ACTIONS(1794), + }, [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_declaration] = STATE(128), + [sym_type_definition] = STATE(128), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7213), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(128), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(128), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(1870), [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), + [aux_sym_preproc_include_token1] = ACTIONS(1868), + [aux_sym_preproc_def_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [sym_preproc_directive] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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_STAR] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1316), [anon_sym___extension__] = ACTIONS(1947), [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1868), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -74184,10 +77283,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(1674), + [anon_sym_else] = ACTIONS(1868), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), @@ -74195,8 +77294,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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -74231,18 +77330,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_explicit] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_import] = ACTIONS(1868), [anon_sym_template] = ACTIONS(1949), - [anon_sym_operator] = ACTIONS(1674), + [anon_sym_operator] = ACTIONS(1868), [anon_sym_try] = ACTIONS(145), [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_namespace] = ACTIONS(1868), + [anon_sym_static_assert] = ACTIONS(1868), + [anon_sym_concept] = ACTIONS(1868), [anon_sym_co_return] = ACTIONS(157), [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -74258,374 +77357,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [anon_sym_BANG] = ACTIONS(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_typedef] = ACTIONS(37), - [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(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_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(83), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), - [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(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_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_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(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), + [sym_declaration] = STATE(134), + [sym_type_definition] = STATE(134), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7237), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(134), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(134), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1872), + [aux_sym_preproc_def_token1] = ACTIONS(1872), + [aux_sym_preproc_if_token1] = ACTIONS(1872), + [aux_sym_preproc_if_token2] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), + [sym_preproc_directive] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(1941), + [anon_sym___extension__] = ACTIONS(1878), [anon_sym_typedef] = ACTIONS(1107), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1682), + [anon_sym_using] = ACTIONS(1872), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1872), + [anon_sym___cdecl] = ACTIONS(1872), + [anon_sym___clrcall] = ACTIONS(1872), + [anon_sym___stdcall] = ACTIONS(1872), + [anon_sym___fastcall] = ACTIONS(1872), + [anon_sym___thiscall] = ACTIONS(1872), + [anon_sym___vectorcall] = ACTIONS(1872), [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_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -74654,10 +77518,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(1119), - [anon_sym_else] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1872), [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), [anon_sym_while] = ACTIONS(1127), [anon_sym_do] = ACTIONS(1129), [anon_sym_for] = ACTIONS(1131), @@ -74701,18 +77565,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(1943), - [anon_sym_operator] = ACTIONS(1682), + [anon_sym_explicit] = ACTIONS(1872), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_import] = ACTIONS(1872), + [anon_sym_template] = ACTIONS(1880), + [anon_sym_operator] = ACTIONS(1872), [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_namespace] = ACTIONS(1872), + [anon_sym_static_assert] = ACTIONS(1872), + [anon_sym_concept] = ACTIONS(1872), [anon_sym_co_return] = ACTIONS(1161), [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -74727,140 +77591,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(131)] = { + [sym_declaration] = STATE(134), + [sym_type_definition] = STATE(134), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7237), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(134), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(134), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(1876), + [aux_sym_preproc_include_token1] = ACTIONS(1868), + [aux_sym_preproc_def_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token2] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [sym_preproc_directive] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(1941), + [anon_sym___extension__] = ACTIONS(1878), [anon_sym_typedef] = ACTIONS(1107), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1868), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), [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_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -74889,10 +77753,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(1119), - [anon_sym_else] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1868), [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), [anon_sym_while] = ACTIONS(1127), [anon_sym_do] = ACTIONS(1129), [anon_sym_for] = ACTIONS(1131), @@ -74936,18 +77800,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(1943), - [anon_sym_operator] = ACTIONS(1674), + [anon_sym_explicit] = ACTIONS(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_module] = ACTIONS(1868), + [anon_sym_import] = ACTIONS(1868), + [anon_sym_template] = ACTIONS(1880), + [anon_sym_operator] = ACTIONS(1868), [anon_sym_try] = ACTIONS(1151), [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_namespace] = ACTIONS(1868), + [anon_sym_static_assert] = ACTIONS(1868), + [anon_sym_concept] = ACTIONS(1868), [anon_sym_co_return] = ACTIONS(1161), [anon_sym_co_yield] = ACTIONS(1163), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -74962,375 +77826,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [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), + [STATE(132)] = { + [sym_declaration] = STATE(135), + [sym_type_definition] = STATE(135), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7213), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(135), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(135), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(135), + [ts_builtin_sym_end] = ACTIONS(1850), [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), + [aux_sym_preproc_include_token1] = ACTIONS(1844), + [aux_sym_preproc_def_token1] = ACTIONS(1844), + [aux_sym_preproc_if_token1] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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_STAR] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1316), [anon_sym___extension__] = ACTIONS(1947), [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1844), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1844), + [anon_sym___cdecl] = ACTIONS(1844), + [anon_sym___clrcall] = ACTIONS(1844), + [anon_sym___stdcall] = ACTIONS(1844), + [anon_sym___fastcall] = ACTIONS(1844), + [anon_sym___thiscall] = ACTIONS(1844), + [anon_sym___vectorcall] = ACTIONS(1844), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -75359,10 +77988,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(1844), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), @@ -75370,8 +77999,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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -75406,18 +78035,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_explicit] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_import] = ACTIONS(1844), [anon_sym_template] = ACTIONS(1949), - [anon_sym_operator] = ACTIONS(1654), + [anon_sym_operator] = ACTIONS(1844), [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(1844), + [anon_sym_static_assert] = ACTIONS(1844), + [anon_sym_concept] = ACTIONS(1844), [anon_sym_co_return] = ACTIONS(157), [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -75432,140 +78061,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(133)] = { + [sym_declaration] = STATE(129), + [sym_type_definition] = STATE(129), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7213), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(129), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(129), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(129), + [ts_builtin_sym_end] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1945), + [aux_sym_preproc_include_token1] = ACTIONS(1864), + [aux_sym_preproc_def_token1] = ACTIONS(1864), + [aux_sym_preproc_if_token1] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1864), + [sym_preproc_directive] = ACTIONS(1864), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1678), + [anon_sym_using] = ACTIONS(1864), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1864), + [anon_sym___cdecl] = ACTIONS(1864), + [anon_sym___clrcall] = ACTIONS(1864), + [anon_sym___stdcall] = ACTIONS(1864), + [anon_sym___fastcall] = ACTIONS(1864), + [anon_sym___thiscall] = ACTIONS(1864), + [anon_sym___vectorcall] = ACTIONS(1864), + [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -75593,20 +78222,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(83), + [anon_sym_else] = ACTIONS(1864), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -75641,20 +78270,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(1864), + [anon_sym_export] = ACTIONS(1864), + [anon_sym_module] = ACTIONS(1864), + [anon_sym_import] = ACTIONS(1864), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_operator] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(145), [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(149), + [anon_sym_namespace] = ACTIONS(1864), + [anon_sym_static_assert] = ACTIONS(1864), + [anon_sym_concept] = ACTIONS(1864), + [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), @@ -75667,140 +78296,375 @@ 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(134)] = { + [sym_declaration] = STATE(134), + [sym_type_definition] = STATE(134), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7237), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(134), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(134), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(1951), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token2] = ACTIONS(1655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1655), + [sym_preproc_directive] = ACTIONS(1655), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_TILDE] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_AMP_AMP] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym___extension__] = ACTIONS(1957), + [anon_sym_typedef] = ACTIONS(1960), + [anon_sym_virtual] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym___attribute__] = ACTIONS(1689), + [anon_sym___attribute] = ACTIONS(1689), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1695), + [anon_sym___declspec] = ACTIONS(1698), + [anon_sym___based] = ACTIONS(1655), + [anon_sym___cdecl] = ACTIONS(1655), + [anon_sym___clrcall] = ACTIONS(1655), + [anon_sym___stdcall] = ACTIONS(1655), + [anon_sym___fastcall] = ACTIONS(1655), + [anon_sym___thiscall] = ACTIONS(1655), + [anon_sym___vectorcall] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_inline] = ACTIONS(1686), + [anon_sym___inline] = ACTIONS(1686), + [anon_sym___inline__] = ACTIONS(1686), + [anon_sym___forceinline] = ACTIONS(1686), + [anon_sym_thread_local] = ACTIONS(1686), + [anon_sym___thread] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_constexpr] = ACTIONS(1710), + [anon_sym_volatile] = ACTIONS(1710), + [anon_sym_restrict] = ACTIONS(1710), + [anon_sym___restrict__] = ACTIONS(1710), + [anon_sym__Atomic] = ACTIONS(1710), + [anon_sym__Noreturn] = ACTIONS(1710), + [anon_sym_noreturn] = ACTIONS(1710), + [anon_sym__Nonnull] = ACTIONS(1710), + [anon_sym_mutable] = ACTIONS(1710), + [anon_sym_constinit] = ACTIONS(1710), + [anon_sym_consteval] = ACTIONS(1710), + [anon_sym_alignas] = ACTIONS(1713), + [anon_sym__Alignas] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1719), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_struct] = ACTIONS(1725), + [anon_sym_union] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_else] = ACTIONS(1655), + [anon_sym_switch] = ACTIONS(1969), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), + [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(1663), + [anon_sym_compl] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_sizeof] = ACTIONS(1767), + [anon_sym___alignof__] = ACTIONS(1770), + [anon_sym___alignof] = ACTIONS(1770), + [anon_sym__alignof] = ACTIONS(1770), + [anon_sym_alignof] = ACTIONS(1770), + [anon_sym__Alignof] = ACTIONS(1770), + [anon_sym_offsetof] = ACTIONS(1773), + [anon_sym__Generic] = ACTIONS(1776), + [anon_sym_typename] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1800), + [anon_sym_decltype] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_module] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), + [anon_sym_template] = ACTIONS(1999), + [anon_sym_operator] = ACTIONS(1655), + [anon_sym_try] = ACTIONS(2002), + [anon_sym_delete] = ACTIONS(1812), + [anon_sym_throw] = ACTIONS(2005), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_static_assert] = ACTIONS(1655), + [anon_sym_concept] = ACTIONS(1655), + [anon_sym_co_return] = ACTIONS(2008), + [anon_sym_co_yield] = ACTIONS(2011), + [anon_sym_R_DQUOTE] = ACTIONS(1824), + [anon_sym_LR_DQUOTE] = ACTIONS(1824), + [anon_sym_uR_DQUOTE] = ACTIONS(1824), + [anon_sym_UR_DQUOTE] = ACTIONS(1824), + [anon_sym_u8R_DQUOTE] = ACTIONS(1824), + [anon_sym_co_await] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1830), + [anon_sym_requires] = ACTIONS(1833), + [anon_sym_CARET_CARET] = ACTIONS(1836), + [anon_sym_LBRACK_COLON] = ACTIONS(1839), + [sym_this] = ACTIONS(1794), + }, + [STATE(135)] = { + [sym_declaration] = STATE(128), + [sym_type_definition] = STATE(128), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7213), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(128), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(128), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(128), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym_identifier] = ACTIONS(1945), + [aux_sym_preproc_include_token1] = ACTIONS(1872), + [aux_sym_preproc_def_token1] = ACTIONS(1872), + [aux_sym_preproc_if_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), + [sym_preproc_directive] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1678), + [anon_sym_using] = ACTIONS(1872), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1872), + [anon_sym___cdecl] = ACTIONS(1872), + [anon_sym___clrcall] = ACTIONS(1872), + [anon_sym___stdcall] = ACTIONS(1872), + [anon_sym___fastcall] = ACTIONS(1872), + [anon_sym___thiscall] = ACTIONS(1872), + [anon_sym___vectorcall] = ACTIONS(1872), + [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -75828,20 +78692,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(1872), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -75876,19 +78740,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(1872), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_import] = ACTIONS(1872), + [anon_sym_template] = ACTIONS(1949), + [anon_sym_operator] = ACTIONS(1872), + [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(1872), + [anon_sym_static_assert] = ACTIONS(1872), + [anon_sym_concept] = ACTIONS(1872), + [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 +78766,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), + [STATE(136)] = { + [sym_declaration] = STATE(140), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7240), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(140), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(140), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(140), [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), + [aux_sym_preproc_include_token1] = ACTIONS(1872), + [aux_sym_preproc_def_token1] = ACTIONS(1872), + [aux_sym_preproc_if_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1872), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1872), + [sym_preproc_directive] = ACTIONS(1872), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(187), [anon_sym___extension__] = ACTIONS(2016), [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1872), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1872), + [anon_sym___cdecl] = ACTIONS(1872), + [anon_sym___clrcall] = ACTIONS(1872), + [anon_sym___stdcall] = ACTIONS(1872), + [anon_sym___fastcall] = ACTIONS(1872), + [anon_sym___thiscall] = ACTIONS(1872), + [anon_sym___vectorcall] = ACTIONS(1872), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym_RBRACE] = ACTIONS(1874), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -76063,10 +78928,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(1872), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -76110,17 +78975,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_explicit] = ACTIONS(1872), + [anon_sym_export] = ACTIONS(1872), + [anon_sym_import] = ACTIONS(1872), [anon_sym_template] = ACTIONS(2018), - [anon_sym_operator] = ACTIONS(1674), + [anon_sym_operator] = ACTIONS(1872), [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(1872), + [anon_sym_static_assert] = ACTIONS(1872), + [anon_sym_concept] = ACTIONS(1872), [anon_sym_co_return] = ACTIONS(255), [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -76135,140 +79000,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), + [STATE(137)] = { + [sym_declaration] = STATE(139), + [sym_type_definition] = STATE(139), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7240), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(139), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(139), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(139), [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), + [aux_sym_preproc_include_token1] = ACTIONS(1864), + [aux_sym_preproc_def_token1] = ACTIONS(1864), + [aux_sym_preproc_if_token1] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1864), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1864), + [sym_preproc_directive] = ACTIONS(1864), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(187), [anon_sym___extension__] = ACTIONS(2016), [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1682), + [anon_sym_using] = ACTIONS(1864), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1864), + [anon_sym___cdecl] = ACTIONS(1864), + [anon_sym___clrcall] = ACTIONS(1864), + [anon_sym___stdcall] = ACTIONS(1864), + [anon_sym___fastcall] = ACTIONS(1864), + [anon_sym___thiscall] = ACTIONS(1864), + [anon_sym___vectorcall] = ACTIONS(1864), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym_RBRACE] = ACTIONS(1866), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -76297,10 +79162,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(1864), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), + [anon_sym_case] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -76344,17 +79209,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_explicit] = ACTIONS(1864), + [anon_sym_export] = ACTIONS(1864), + [anon_sym_import] = ACTIONS(1864), [anon_sym_template] = ACTIONS(2018), - [anon_sym_operator] = ACTIONS(1682), + [anon_sym_operator] = ACTIONS(1864), [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(1864), + [anon_sym_static_assert] = ACTIONS(1864), + [anon_sym_concept] = ACTIONS(1864), [anon_sym_co_return] = ACTIONS(255), [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -76369,140 +79234,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [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_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), + [STATE(138)] = { + [sym_declaration] = STATE(136), + [sym_type_definition] = STATE(136), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7240), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(136), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(136), + [sym_labeled_statement] = STATE(136), + [sym_expression_statement] = STATE(136), + [sym_if_statement] = STATE(136), + [sym_switch_statement] = STATE(136), + [sym_while_statement] = STATE(136), + [sym_do_statement] = STATE(136), + [sym_for_statement] = STATE(136), + [sym_return_statement] = STATE(136), + [sym_break_statement] = STATE(136), + [sym_continue_statement] = STATE(136), + [sym_goto_statement] = STATE(136), + [sym_seh_try_statement] = STATE(136), + [sym_seh_leave_statement] = STATE(136), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(136), + [sym_co_return_statement] = STATE(136), + [sym_co_yield_statement] = STATE(136), + [sym_throw_statement] = STATE(136), + [sym_try_statement] = STATE(136), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(136), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(136), [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), + [aux_sym_preproc_include_token1] = ACTIONS(1844), + [aux_sym_preproc_def_token1] = ACTIONS(1844), + [aux_sym_preproc_if_token1] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1844), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1844), + [sym_preproc_directive] = ACTIONS(1844), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(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(1848), + [anon_sym_AMP_AMP] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1852), [anon_sym_SEMI] = ACTIONS(187), [anon_sym___extension__] = ACTIONS(2016), [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1844), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [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(1844), + [anon_sym___cdecl] = ACTIONS(1844), + [anon_sym___clrcall] = ACTIONS(1844), + [anon_sym___stdcall] = ACTIONS(1844), + [anon_sym___fastcall] = ACTIONS(1844), + [anon_sym___thiscall] = ACTIONS(1844), + [anon_sym___vectorcall] = ACTIONS(1844), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_RBRACE] = ACTIONS(1850), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -76531,10 +79396,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(1844), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -76578,17 +79443,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_explicit] = ACTIONS(1844), + [anon_sym_export] = ACTIONS(1844), + [anon_sym_import] = ACTIONS(1844), [anon_sym_template] = ACTIONS(2018), - [anon_sym_operator] = ACTIONS(1654), + [anon_sym_operator] = ACTIONS(1844), [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(1844), + [anon_sym_static_assert] = ACTIONS(1844), + [anon_sym_concept] = ACTIONS(1844), [anon_sym_co_return] = ACTIONS(255), [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -76603,23 +79468,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(140)] = { + [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(3241), + [sym__declaration_specifiers] = STATE(7240), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), [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(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), [sym_attributed_statement] = STATE(140), [sym_labeled_statement] = STATE(140), [sym_expression_statement] = STATE(140), @@ -76634,141 +79499,375 @@ 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(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), [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(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(140), + [sym_identifier] = ACTIONS(2014), + [aux_sym_preproc_include_token1] = ACTIONS(1868), + [aux_sym_preproc_def_token1] = ACTIONS(1868), + [aux_sym_preproc_if_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1868), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1868), + [sym_preproc_directive] = ACTIONS(1868), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP_AMP] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2016), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1868), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1868), + [anon_sym___cdecl] = ACTIONS(1868), + [anon_sym___clrcall] = ACTIONS(1868), + [anon_sym___stdcall] = ACTIONS(1868), + [anon_sym___fastcall] = ACTIONS(1868), + [anon_sym___thiscall] = ACTIONS(1868), + [anon_sym___vectorcall] = ACTIONS(1868), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(207), + [anon_sym_else] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [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(1868), + [anon_sym_export] = ACTIONS(1868), + [anon_sym_import] = ACTIONS(1868), + [anon_sym_template] = ACTIONS(2018), + [anon_sym_operator] = ACTIONS(1868), + [anon_sym_try] = ACTIONS(245), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(1868), + [anon_sym_static_assert] = ACTIONS(1868), + [anon_sym_concept] = ACTIONS(1868), + [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(140)] = { + [sym_declaration] = STATE(140), + [sym_type_definition] = STATE(140), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7240), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(140), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(140), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [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), + [aux_sym_preproc_include_token1] = ACTIONS(1655), + [aux_sym_preproc_def_token1] = ACTIONS(1655), + [aux_sym_preproc_if_token1] = ACTIONS(1655), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1655), + [sym_preproc_directive] = ACTIONS(1655), + [anon_sym_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_TILDE] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_AMP_AMP] = ACTIONS(1669), + [anon_sym_AMP] = ACTIONS(1671), [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_virtual] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym___attribute__] = ACTIONS(1689), + [anon_sym___attribute] = ACTIONS(1689), + [anon_sym_using] = ACTIONS(1655), + [anon_sym_COLON_COLON] = ACTIONS(1692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1695), + [anon_sym___declspec] = ACTIONS(1698), + [anon_sym___based] = ACTIONS(1655), + [anon_sym___cdecl] = ACTIONS(1655), + [anon_sym___clrcall] = ACTIONS(1655), + [anon_sym___stdcall] = ACTIONS(1655), + [anon_sym___fastcall] = ACTIONS(1655), + [anon_sym___thiscall] = ACTIONS(1655), + [anon_sym___vectorcall] = ACTIONS(1655), [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_RBRACE] = ACTIONS(1669), + [anon_sym_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_inline] = ACTIONS(1686), + [anon_sym___inline] = ACTIONS(1686), + [anon_sym___inline__] = ACTIONS(1686), + [anon_sym___forceinline] = ACTIONS(1686), + [anon_sym_thread_local] = ACTIONS(1686), + [anon_sym___thread] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_constexpr] = ACTIONS(1710), + [anon_sym_volatile] = ACTIONS(1710), + [anon_sym_restrict] = ACTIONS(1710), + [anon_sym___restrict__] = ACTIONS(1710), + [anon_sym__Atomic] = ACTIONS(1710), + [anon_sym__Noreturn] = ACTIONS(1710), + [anon_sym_noreturn] = ACTIONS(1710), + [anon_sym__Nonnull] = ACTIONS(1710), + [anon_sym_mutable] = ACTIONS(1710), + [anon_sym_constinit] = ACTIONS(1710), + [anon_sym_consteval] = ACTIONS(1710), + [anon_sym_alignas] = ACTIONS(1713), + [anon_sym__Alignas] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1719), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_struct] = ACTIONS(1725), + [anon_sym_union] = ACTIONS(1728), [anon_sym_if] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1655), [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1655), + [anon_sym_default] = ACTIONS(1655), [anon_sym_while] = ACTIONS(2041), [anon_sym_do] = ACTIONS(2044), [anon_sym_for] = ACTIONS(2047), @@ -76778,183 +79877,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_not] = ACTIONS(1663), + [anon_sym_compl] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_sizeof] = ACTIONS(1767), + [anon_sym___alignof__] = ACTIONS(1770), + [anon_sym___alignof] = ACTIONS(1770), + [anon_sym__alignof] = ACTIONS(1770), + [anon_sym_alignof] = ACTIONS(1770), + [anon_sym__Alignof] = ACTIONS(1770), + [anon_sym_offsetof] = ACTIONS(1773), + [anon_sym__Generic] = ACTIONS(1776), + [anon_sym_typename] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1800), + [anon_sym_decltype] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1655), + [anon_sym_export] = ACTIONS(1655), + [anon_sym_import] = ACTIONS(1655), [anon_sym_template] = ACTIONS(2068), - [anon_sym_operator] = ACTIONS(1689), + [anon_sym_operator] = ACTIONS(1655), [anon_sym_try] = ACTIONS(2071), - [anon_sym_delete] = ACTIONS(1846), + [anon_sym_delete] = ACTIONS(1812), [anon_sym_throw] = ACTIONS(2074), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_static_assert] = ACTIONS(1689), - [anon_sym_concept] = ACTIONS(1689), + [anon_sym_namespace] = ACTIONS(1655), + [anon_sym_static_assert] = ACTIONS(1655), + [anon_sym_concept] = ACTIONS(1655), [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), + [anon_sym_R_DQUOTE] = ACTIONS(1824), + [anon_sym_LR_DQUOTE] = ACTIONS(1824), + [anon_sym_uR_DQUOTE] = ACTIONS(1824), + [anon_sym_UR_DQUOTE] = ACTIONS(1824), + [anon_sym_u8R_DQUOTE] = ACTIONS(1824), + [anon_sym_co_await] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1830), + [anon_sym_requires] = ACTIONS(1833), + [anon_sym_CARET_CARET] = ACTIONS(1836), + [anon_sym_LBRACK_COLON] = ACTIONS(1839), + [sym_this] = ACTIONS(1794), }, [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_declaration] = STATE(792), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7240), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(792), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7582), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11515), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [anon_sym___declspec] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(197), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -77048,123 +80147,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_declaration] = STATE(1289), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7248), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(1291), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(1291), + [sym_statement] = STATE(1289), + [sym_labeled_statement] = STATE(1291), + [sym_expression_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_switch_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_do_statement] = STATE(1291), + [sym_for_statement] = STATE(1291), + [sym_return_statement] = STATE(1291), + [sym_break_statement] = STATE(1291), + [sym_continue_statement] = STATE(1291), + [sym_goto_statement] = STATE(1291), + [sym_seh_try_statement] = STATE(1291), + [sym_seh_leave_statement] = STATE(1291), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(1291), + [sym_co_return_statement] = STATE(1291), + [sym_co_yield_statement] = STATE(1291), + [sym_throw_statement] = STATE(1291), + [sym_try_statement] = STATE(1291), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(1291), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2089), - [anon_sym_typedef] = ACTIONS(2091), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -77192,9 +80290,10 @@ 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_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), [anon_sym_while] = ACTIONS(2099), [anon_sym_do] = ACTIONS(2101), [anon_sym_for] = ACTIONS(2103), @@ -77259,20 +80358,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7248), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), [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_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), [sym_attributed_statement] = STATE(143), [sym_labeled_statement] = STATE(143), [sym_expression_statement] = STATE(143), @@ -77287,122 +80386,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), [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_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), [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), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [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_LPAREN2] = ACTIONS(1657), + [anon_sym_BANG] = ACTIONS(1660), + [anon_sym_TILDE] = ACTIONS(1660), + [anon_sym_DASH] = ACTIONS(1663), + [anon_sym_PLUS] = ACTIONS(1663), + [anon_sym_STAR] = ACTIONS(1666), + [anon_sym_AMP] = ACTIONS(1666), [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_virtual] = ACTIONS(1683), + [anon_sym_extern] = ACTIONS(1686), + [anon_sym___attribute__] = ACTIONS(1689), + [anon_sym___attribute] = ACTIONS(1689), + [anon_sym_COLON_COLON] = ACTIONS(1692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1695), + [anon_sym___declspec] = ACTIONS(1698), [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_signed] = ACTIONS(1704), + [anon_sym_unsigned] = ACTIONS(1704), + [anon_sym_long] = ACTIONS(1704), + [anon_sym_short] = ACTIONS(1704), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_static] = ACTIONS(1686), + [anon_sym_register] = ACTIONS(1686), + [anon_sym_inline] = ACTIONS(1686), + [anon_sym___inline] = ACTIONS(1686), + [anon_sym___inline__] = ACTIONS(1686), + [anon_sym___forceinline] = ACTIONS(1686), + [anon_sym_thread_local] = ACTIONS(1686), + [anon_sym___thread] = ACTIONS(1686), + [anon_sym_const] = ACTIONS(1710), + [anon_sym_constexpr] = ACTIONS(1710), + [anon_sym_volatile] = ACTIONS(1710), + [anon_sym_restrict] = ACTIONS(1710), + [anon_sym___restrict__] = ACTIONS(1710), + [anon_sym__Atomic] = ACTIONS(1710), + [anon_sym__Noreturn] = ACTIONS(1710), + [anon_sym_noreturn] = ACTIONS(1710), + [anon_sym__Nonnull] = ACTIONS(1710), + [anon_sym_mutable] = ACTIONS(1710), + [anon_sym_constinit] = ACTIONS(1710), + [anon_sym_consteval] = ACTIONS(1710), + [anon_sym_alignas] = ACTIONS(1713), + [anon_sym__Alignas] = ACTIONS(1713), + [sym_primitive_type] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1719), + [anon_sym_class] = ACTIONS(1722), + [anon_sym_struct] = ACTIONS(1725), + [anon_sym_union] = ACTIONS(1728), [anon_sym_if] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1655), [anon_sym_switch] = ACTIONS(2145), [anon_sym_while] = ACTIONS(2148), [anon_sym_do] = ACTIONS(2151), @@ -77413,175 +80512,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_not] = ACTIONS(1663), + [anon_sym_compl] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1764), + [anon_sym_PLUS_PLUS] = ACTIONS(1764), + [anon_sym_sizeof] = ACTIONS(1767), + [anon_sym___alignof__] = ACTIONS(1770), + [anon_sym___alignof] = ACTIONS(1770), + [anon_sym__alignof] = ACTIONS(1770), + [anon_sym_alignof] = ACTIONS(1770), + [anon_sym__Alignof] = ACTIONS(1770), + [anon_sym_offsetof] = ACTIONS(1773), + [anon_sym__Generic] = ACTIONS(1776), + [anon_sym_typename] = ACTIONS(1779), + [anon_sym_asm] = ACTIONS(1782), + [anon_sym___asm__] = ACTIONS(1782), + [anon_sym___asm] = ACTIONS(1782), + [sym_number_literal] = ACTIONS(1785), + [anon_sym_L_SQUOTE] = ACTIONS(1788), + [anon_sym_u_SQUOTE] = ACTIONS(1788), + [anon_sym_U_SQUOTE] = ACTIONS(1788), + [anon_sym_u8_SQUOTE] = ACTIONS(1788), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_L_DQUOTE] = ACTIONS(1791), + [anon_sym_u_DQUOTE] = ACTIONS(1791), + [anon_sym_U_DQUOTE] = ACTIONS(1791), + [anon_sym_u8_DQUOTE] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(1791), + [sym_true] = ACTIONS(1794), + [sym_false] = ACTIONS(1794), + [anon_sym_NULL] = ACTIONS(1797), + [anon_sym_nullptr] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1800), + [anon_sym_decltype] = ACTIONS(1803), [anon_sym_template] = ACTIONS(2175), [anon_sym_try] = ACTIONS(2178), - [anon_sym_delete] = ACTIONS(1846), + [anon_sym_delete] = ACTIONS(1812), [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), + [anon_sym_R_DQUOTE] = ACTIONS(1824), + [anon_sym_LR_DQUOTE] = ACTIONS(1824), + [anon_sym_uR_DQUOTE] = ACTIONS(1824), + [anon_sym_UR_DQUOTE] = ACTIONS(1824), + [anon_sym_u8R_DQUOTE] = ACTIONS(1824), + [anon_sym_co_await] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1830), + [anon_sym_requires] = ACTIONS(1833), + [anon_sym_CARET_CARET] = ACTIONS(1836), + [anon_sym_LBRACK_COLON] = ACTIONS(1839), + [sym_this] = ACTIONS(1794), }, [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(792), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7240), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(792), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(2014), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(960), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -77609,19 +80708,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), @@ -77656,12 +80755,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(2018), + [anon_sym_try] = ACTIONS(245), [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(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), @@ -77675,122 +80774,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_declaration] = STATE(632), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7213), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(731), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(632), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2190), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [anon_sym___declspec] = ACTIONS(51), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -77820,16 +80919,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2196), [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(2198), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -77865,7 +80964,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(2204), + [anon_sym_template] = ACTIONS(2200), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -77884,122 +80983,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_declaration] = STATE(149), + [sym_type_definition] = STATE(149), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7248), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(149), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(149), + [sym_labeled_statement] = STATE(149), + [sym_expression_statement] = STATE(149), + [sym_if_statement] = STATE(149), + [sym_switch_statement] = STATE(149), + [sym_while_statement] = STATE(149), + [sym_do_statement] = STATE(149), + [sym_for_statement] = STATE(149), + [sym_return_statement] = STATE(149), + [sym_break_statement] = STATE(149), + [sym_continue_statement] = STATE(149), + [sym_goto_statement] = STATE(149), + [sym_seh_try_statement] = STATE(149), + [sym_seh_leave_statement] = STATE(149), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(149), + [sym_co_return_statement] = STATE(149), + [sym_co_yield_statement] = STATE(149), + [sym_throw_statement] = STATE(149), + [sym_try_statement] = STATE(149), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(149), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2204), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -78027,19 +81127,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(1844), + [anon_sym_switch] = ACTIONS(2093), + [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), @@ -78074,12 +81173,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(2117), + [anon_sym_try] = ACTIONS(2119), [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(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), @@ -78093,122 +81192,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [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), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(1945), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(151), + [sym_type_definition] = STATE(151), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7248), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(151), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(151), + [sym_labeled_statement] = STATE(151), + [sym_expression_statement] = STATE(151), + [sym_if_statement] = STATE(151), + [sym_switch_statement] = STATE(151), + [sym_while_statement] = STATE(151), + [sym_do_statement] = STATE(151), + [sym_for_statement] = STATE(151), + [sym_return_statement] = STATE(151), + [sym_break_statement] = STATE(151), + [sym_continue_statement] = STATE(151), + [sym_goto_statement] = STATE(151), + [sym_seh_try_statement] = STATE(151), + [sym_seh_leave_statement] = STATE(151), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(151), + [sym_co_return_statement] = STATE(151), + [sym_co_yield_statement] = STATE(151), + [sym_throw_statement] = STATE(151), + [sym_try_statement] = STATE(151), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(151), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2204), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -78236,19 +81336,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(1864), + [anon_sym_switch] = ACTIONS(2093), + [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), @@ -78283,12 +81382,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(2117), + [anon_sym_try] = ACTIONS(2119), [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(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), @@ -78302,122 +81401,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(632), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7213), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(593), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(632), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(1945), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1316), [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -78445,19 +81544,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(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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -78492,12 +81591,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(1949), + [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), @@ -78511,122 +81610,123 @@ 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), + [sym_declaration] = STATE(143), + [sym_type_definition] = STATE(143), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7248), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(143), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(143), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(1656), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(2085), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2204), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(960), + [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -78654,19 +81754,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(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(2091), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_switch] = ACTIONS(2093), + [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), @@ -78701,12 +81800,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(2018), - [anon_sym_try] = ACTIONS(245), + [anon_sym_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [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(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), @@ -78720,123 +81819,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(346), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7236), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(376), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(346), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -78864,18 +81962,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 +82009,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(1862), + [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 +82028,123 @@ 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_declaration] = STATE(143), + [sym_type_definition] = STATE(143), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7248), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(143), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [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(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [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(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(143), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_case_statement_repeat1] = STATE(143), [sym_identifier] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2089), - [anon_sym_typedef] = ACTIONS(2091), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2204), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [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(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -79073,9 +82172,9 @@ 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_if] = ACTIONS(2091), + [anon_sym_else] = ACTIONS(1868), + [anon_sym_switch] = ACTIONS(2093), [anon_sym_while] = ACTIONS(2099), [anon_sym_do] = ACTIONS(2101), [anon_sym_for] = ACTIONS(2103), @@ -79138,123 +82237,122 @@ 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(606), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7237), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(1287), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_compound_statement] = STATE(670), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(606), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(1876), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2083), + [anon_sym_virtual] = ACTIONS(1856), [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(1858), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(2093), + [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_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -79282,18 +82380,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(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_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), @@ -79328,12 +82427,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(1880), + [anon_sym_try] = ACTIONS(1151), [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(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), @@ -79347,93 +82446,93 @@ 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_declaration] = STATE(300), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7232), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym__for_statement_body] = STATE(13014), + [sym_expression] = STATE(7595), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12446), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(12395), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2208), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -79445,7 +82544,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -79522,93 +82621,93 @@ 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_declaration] = STATE(300), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7232), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym__for_statement_body] = STATE(12542), + [sym_expression] = STATE(7595), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12446), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(12895), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2208), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -79620,7 +82719,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -79697,93 +82796,93 @@ 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_declaration] = STATE(300), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7232), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym__for_statement_body] = STATE(12403), + [sym_expression] = STATE(7595), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12446), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(12415), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2208), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -79795,7 +82894,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -79872,93 +82971,93 @@ 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_declaration] = STATE(300), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7232), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym__for_statement_body] = STATE(12109), + [sym_expression] = STATE(7595), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12446), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(12122), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2208), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -79970,7 +83069,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -80047,93 +83146,93 @@ 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_declaration] = STATE(300), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7232), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym__for_statement_body] = STATE(11884), + [sym_expression] = STATE(7595), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12446), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(11885), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2208), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -80145,7 +83244,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -80222,93 +83321,93 @@ 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_declaration] = STATE(300), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7232), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym__for_statement_body] = STATE(12010), + [sym_expression] = STATE(7595), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12446), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(12011), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2208), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -80320,7 +83419,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -80397,92 +83496,92 @@ 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_declaration] = STATE(6993), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7195), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym_expression] = STATE(7631), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12961), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(11918), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2220), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -80494,7 +83593,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -80571,266 +83670,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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(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_declaration] = STATE(6993), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7195), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym_expression] = STATE(7631), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12961), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(12035), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2220), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -80842,7 +83767,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -80918,113 +83843,112 @@ 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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2302), - [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), + [STATE(161)] = { + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(8521), + [sym__declarator] = STATE(10175), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12847), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8892), + [sym_qualified_identifier] = STATE(5924), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [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), @@ -81039,150 +83963,151 @@ 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(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_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(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), + [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(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), + [STATE(162)] = { + [sym_declaration] = STATE(2095), + [sym_type_definition] = STATE(2095), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7209), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(2095), + [sym_expression] = STATE(7486), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11804), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(2095), + [sym_init_statement] = STATE(178), + [sym_condition_declaration] = STATE(12824), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2202), + [anon_sym_typedef] = ACTIONS(2204), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2302), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), @@ -81190,7 +84115,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -81266,93 +84191,93 @@ 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), + [STATE(163)] = { + [sym_declaration] = STATE(6993), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7195), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym_expression] = STATE(7631), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12961), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(12206), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2220), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -81364,7 +84289,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -81440,87 +84365,87 @@ 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), + [STATE(164)] = { + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(8521), + [sym__declarator] = STATE(10175), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(11878), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8892), + [sym_qualified_identifier] = STATE(5924), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2222), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2226), @@ -81614,87 +84539,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(165)] = { + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(8521), + [sym__declarator] = STATE(10175), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_compound_statement] = STATE(12995), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5150), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12995), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12557), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11947), + [sym__unary_right_fold] = STATE(12832), + [sym__binary_fold] = STATE(12297), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8892), + [sym_qualified_identifier] = STATE(5924), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12707), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2222), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2226), @@ -81788,93 +84713,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(2300), [sym_this] = ACTIONS(2276), }, + [STATE(166)] = { + [sym_declaration] = STATE(6993), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7195), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym_expression] = STATE(7631), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12961), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(12020), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(2206), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym___extension__] = ACTIONS(2210), + [anon_sym_typedef] = ACTIONS(2212), + [anon_sym_virtual] = ACTIONS(1856), + [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(1860), + [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(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_declaration] = STATE(6993), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7195), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym_expression] = STATE(7631), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12961), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(12140), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2220), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -81886,7 +84985,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -81963,92 +85062,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_declaration] = STATE(6993), + [sym_type_definition] = STATE(6993), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7195), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression_statement] = STATE(6993), + [sym_expression] = STATE(7631), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12961), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_alias_declaration] = STATE(6993), + [sym__for_range_loop_body] = STATE(12887), + [sym_init_statement] = STATE(3088), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2378), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2220), [anon_sym___extension__] = ACTIONS(2210), [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -82060,7 +85159,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82137,89 +85236,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_compound_statement] = STATE(11282), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11014), + [sym_expression] = STATE(7422), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11282), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11014), + [sym_optional_parameter_declaration] = STATE(11014), + [sym_variadic_parameter_declaration] = STATE(11014), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8912), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2766), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2304), [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), [anon_sym_RPAREN] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym___extension__] = ACTIONS(2083), [anon_sym_virtual] = ACTIONS(2310), [anon_sym_extern] = ACTIONS(63), @@ -82233,7 +85332,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82310,79 +85409,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2324), }, [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11323), + [sym_expression] = STATE(5945), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11799), + [sym_dependent_type] = STATE(4346), + [sym_optional_parameter_declaration] = STATE(11323), + [sym_variadic_parameter_declaration] = STATE(11323), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8900), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(2225), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6620), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2326), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_RPAREN] = ACTIONS(2328), @@ -82405,7 +85504,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82482,79 +85581,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2364), }, [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11323), + [sym_expression] = STATE(5870), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11799), + [sym_dependent_type] = STATE(4346), + [sym_optional_parameter_declaration] = STATE(11323), + [sym_variadic_parameter_declaration] = STATE(11323), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12856), + [sym__unary_right_fold] = STATE(12871), + [sym__binary_fold] = STATE(12880), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8900), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(2225), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6620), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2326), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_RPAREN] = ACTIONS(2328), @@ -82577,7 +85676,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82654,79 +85753,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2364), }, [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11323), + [sym_expression] = STATE(5848), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11799), + [sym_dependent_type] = STATE(4346), + [sym_optional_parameter_declaration] = STATE(11323), + [sym_variadic_parameter_declaration] = STATE(11323), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12858), + [sym__unary_right_fold] = STATE(12860), + [sym__binary_fold] = STATE(12864), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8900), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(2225), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6620), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2326), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_RPAREN] = ACTIONS(2328), @@ -82749,7 +85848,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82826,79 +85925,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2364), }, [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11323), + [sym_expression] = STATE(6056), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11799), + [sym_dependent_type] = STATE(4346), + [sym_optional_parameter_declaration] = STATE(11323), + [sym_variadic_parameter_declaration] = STATE(11323), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12545), + [sym__unary_right_fold] = STATE(12546), + [sym__binary_fold] = STATE(12893), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8900), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(2225), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6620), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2326), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_RPAREN] = ACTIONS(2328), @@ -82921,7 +86020,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82998,79 +86097,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2364), }, [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11323), + [sym_expression] = STATE(5903), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11799), + [sym_dependent_type] = STATE(4346), + [sym_optional_parameter_declaration] = STATE(11323), + [sym_variadic_parameter_declaration] = STATE(11323), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12210), + [sym__unary_right_fold] = STATE(12213), + [sym__binary_fold] = STATE(12216), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8900), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(2225), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6620), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2326), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_RPAREN] = ACTIONS(2328), @@ -83093,7 +86192,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -83170,79 +86269,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2364), }, [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11323), + [sym_expression] = STATE(6028), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11799), + [sym_dependent_type] = STATE(4346), + [sym_optional_parameter_declaration] = STATE(11323), + [sym_variadic_parameter_declaration] = STATE(11323), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8900), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(2225), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6620), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2326), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_RPAREN] = ACTIONS(2328), @@ -83265,7 +86364,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -83342,79 +86441,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2364), }, [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11323), + [sym_expression] = STATE(5917), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11799), + [sym_dependent_type] = STATE(4346), + [sym_optional_parameter_declaration] = STATE(11323), + [sym_variadic_parameter_declaration] = STATE(11323), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12480), + [sym__unary_right_fold] = STATE(13061), + [sym__binary_fold] = STATE(12552), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8900), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(2225), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6620), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2326), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_RPAREN] = ACTIONS(2328), @@ -83437,7 +86536,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -83514,79 +86613,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2364), }, [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11323), + [sym_expression] = STATE(6097), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11799), + [sym_dependent_type] = STATE(4346), + [sym_optional_parameter_declaration] = STATE(11323), + [sym_variadic_parameter_declaration] = STATE(11323), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(11947), + [sym__unary_right_fold] = STATE(12832), + [sym__binary_fold] = STATE(12297), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8900), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(2225), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6620), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2326), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_RPAREN] = ACTIONS(2328), @@ -83609,7 +86708,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -83686,85 +86785,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2364), }, [STATE(178)] = { - [sym__declaration_modifiers] = STATE(2856), - [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__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8508), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_expression] = STATE(7672), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11970), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(5065), + [sym_template_function] = STATE(6753), + [sym_condition_declaration] = STATE(11970), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8924), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(5081), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(2397), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(5069), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), @@ -83775,7 +86874,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(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -83852,55 +86951,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_expression] = STATE(4072), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_initializer_list] = STATE(4245), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), [sym_identifier] = ACTIONS(2384), [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), [anon_sym_COMMA] = ACTIONS(2386), @@ -84009,78 +87108,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [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), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(600), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), [aux_sym_attributed_declarator_repeat1] = STATE(180), [sym_identifier] = ACTIONS(2440), [anon_sym_LPAREN2] = ACTIONS(2443), @@ -84163,109 +87262,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2547), }, [STATE(181)] = { + [sym_attribute_declaration] = STATE(181), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(779), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(2592), + [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(2595), + [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(2598), + [anon_sym_LBRACK] = ACTIONS(2472), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2601), + [anon_sym_switch] = ACTIONS(2604), + [anon_sym_case] = ACTIONS(2607), + [anon_sym_default] = ACTIONS(2610), + [anon_sym_while] = ACTIONS(2613), + [anon_sym_do] = ACTIONS(2616), + [anon_sym_for] = ACTIONS(2619), + [anon_sym_return] = ACTIONS(2622), + [anon_sym_break] = ACTIONS(2625), + [anon_sym_continue] = ACTIONS(2628), + [anon_sym_goto] = ACTIONS(2631), + [anon_sym___try] = ACTIONS(2634), + [anon_sym___leave] = ACTIONS(2637), + [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(2640), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2646), + [anon_sym_co_return] = ACTIONS(2649), + [anon_sym_co_yield] = ACTIONS(2652), + [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(182)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(669), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2655), + [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(2658), + [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(2661), + [anon_sym_LBRACK] = ACTIONS(2472), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2664), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_case] = ACTIONS(2670), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2676), + [anon_sym_do] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2682), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2688), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_goto] = ACTIONS(2694), + [anon_sym___try] = ACTIONS(2697), + [anon_sym___leave] = ACTIONS(2700), + [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(2703), + [anon_sym_try] = ACTIONS(2706), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_co_return] = ACTIONS(2712), + [anon_sym_co_yield] = ACTIONS(2715), + [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(183)] = { [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), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(600), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), [aux_sym_attributed_declarator_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(2592), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_using] = ACTIONS(2722), [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(1858), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -84278,7 +87687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -84299,12 +87708,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1949), + [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 +87723,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(2728), [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(184)] = { + [sym_attribute_declaration] = STATE(181), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(779), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_using] = ACTIONS(2732), [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(1858), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -84454,12 +87863,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2018), + [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 +87878,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(2728), [sym_this] = ACTIONS(237), }, - [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), - }, - [STATE(184)] = { - [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(185)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(669), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_using] = ACTIONS(2736), [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(1858), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -84743,7 +87997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -84764,12 +88018,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1151), [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(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), @@ -84779,240 +88033,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [sym_compound_statement] = STATE(376), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(338), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), [aux_sym_attributed_declarator_repeat1] = STATE(186), - [sym_identifier] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2738), [anon_sym_LPAREN2] = ACTIONS(2443), [anon_sym_BANG] = ACTIONS(2446), [anon_sym_TILDE] = ACTIONS(2446), @@ -85020,27 +88119,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2449), [anon_sym_STAR] = ACTIONS(2452), [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2741), [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_LBRACE] = ACTIONS(2744), [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_if] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2750), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2756), + [anon_sym_while] = ACTIONS(2759), + [anon_sym_do] = ACTIONS(2762), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2768), + [anon_sym_break] = ACTIONS(2771), + [anon_sym_continue] = ACTIONS(2774), + [anon_sym_goto] = ACTIONS(2777), + [anon_sym___try] = ACTIONS(2780), + [anon_sym___leave] = ACTIONS(2783), [anon_sym_not] = ACTIONS(2449), [anon_sym_compl] = ACTIONS(2449), [anon_sym_DASH_DASH] = ACTIONS(2517), @@ -85074,12 +88173,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2786), + [anon_sym_try] = ACTIONS(2789), [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2760), - [anon_sym_co_yield] = ACTIONS(2763), + [anon_sym_throw] = ACTIONS(2792), + [anon_sym_co_return] = ACTIONS(2795), + [anon_sym_co_yield] = ACTIONS(2798), [anon_sym_R_DQUOTE] = ACTIONS(2574), [anon_sym_LR_DQUOTE] = ACTIONS(2574), [anon_sym_uR_DQUOTE] = ACTIONS(2574), @@ -85093,251 +88192,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(376), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(338), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_using] = ACTIONS(2803), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), + [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(2726), + [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(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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1862), + [anon_sym_try] = ACTIONS(347), + [anon_sym_delete] = ACTIONS(147), + [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), + [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(2728), + [sym_this] = ACTIONS(237), }, [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_expression] = STATE(4072), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_initializer_list] = STATE(4245), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [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(2807), + [anon_sym_TILDE] = ACTIONS(2809), + [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(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [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(2807), + [anon_sym_compl] = ACTIONS(2807), + [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(2815), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [anon_sym_COLON_RBRACK] = ACTIONS(2386), + [sym_this] = ACTIONS(2418), + }, + [STATE(189)] = { + [sym_attribute_declaration] = STATE(204), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(671), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2831), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(207), [anon_sym_switch] = ACTIONS(209), [anon_sym_case] = ACTIONS(211), @@ -85363,7 +88616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -85399,112 +88652,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(2728), [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(190)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(12638), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2192), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), + [anon_sym_for] = ACTIONS(2196), [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(2198), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -85517,7 +88770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -85538,7 +88791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), + [anon_sym_template] = ACTIONS(2200), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -85553,99 +88806,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(2728), [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(191)] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(597), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(1119), [anon_sym_switch] = ACTIONS(1121), [anon_sym_case] = ACTIONS(1123), @@ -85671,7 +88924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -85692,7 +88945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), + [anon_sym_template] = ACTIONS(1880), [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(1153), @@ -85707,112 +88960,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(2728), [sym_this] = ACTIONS(237), }, - [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), + [STATE(192)] = { + [sym_expression] = STATE(4072), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_initializer_list] = STATE(4245), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2839), + [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(2841), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym___attribute] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [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(2837), + [anon_sym_compl] = ACTIONS(2837), + [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(2845), + [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(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(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(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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(193)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(1291), + [sym_attributed_statement] = STATE(1291), + [sym_statement] = STATE(1237), + [sym_labeled_statement] = STATE(1291), + [sym_expression_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_switch_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_do_statement] = STATE(1291), + [sym_for_statement] = STATE(1291), + [sym_return_statement] = STATE(1291), + [sym_break_statement] = STATE(1291), + [sym_continue_statement] = STATE(1291), + [sym_goto_statement] = STATE(1291), + [sym_seh_try_statement] = STATE(1291), + [sym_seh_leave_statement] = STATE(1291), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(1291), + [sym_co_return_statement] = STATE(1291), + [sym_co_yield_statement] = STATE(1291), + [sym_throw_statement] = STATE(1291), + [sym_try_statement] = STATE(1291), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(1291), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = 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), @@ -85825,7 +89232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -85846,12 +89253,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [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(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), @@ -85861,112 +89268,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(2728), [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), + [STATE(194)] = { + [sym_attribute_declaration] = STATE(186), + [sym_compound_statement] = STATE(376), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(338), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -85979,7 +89386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86000,12 +89407,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1862), + [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), @@ -86015,112 +89422,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(2728), [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), + [STATE(195)] = { + [sym_attribute_declaration] = STATE(204), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(652), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -86133,7 +89540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86154,12 +89561,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2018), + [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), @@ -86169,112 +89576,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(2728), [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), + [STATE(196)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(1291), + [sym_attributed_statement] = STATE(1291), + [sym_statement] = STATE(1292), + [sym_labeled_statement] = STATE(1291), + [sym_expression_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_switch_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_do_statement] = STATE(1291), + [sym_for_statement] = STATE(1291), + [sym_return_statement] = STATE(1291), + [sym_break_statement] = STATE(1291), + [sym_continue_statement] = STATE(1291), + [sym_goto_statement] = STATE(1291), + [sym_seh_try_statement] = STATE(1291), + [sym_seh_leave_statement] = STATE(1291), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(1291), + [sym_co_return_statement] = STATE(1291), + [sym_co_yield_statement] = STATE(1291), + [sym_throw_statement] = STATE(1291), + [sym_try_statement] = STATE(1291), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(1291), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = 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), @@ -86287,7 +89694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86308,12 +89715,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [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(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), @@ -86323,103 +89730,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(197)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(1291), + [sym_attributed_statement] = STATE(1291), + [sym_statement] = STATE(1278), + [sym_labeled_statement] = STATE(1291), + [sym_expression_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_switch_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_do_statement] = STATE(1291), + [sym_for_statement] = STATE(1291), + [sym_return_statement] = STATE(1291), + [sym_break_statement] = STATE(1291), + [sym_continue_statement] = STATE(1291), + [sym_goto_statement] = STATE(1291), + [sym_seh_try_statement] = STATE(1291), + [sym_seh_leave_statement] = STATE(1291), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(1291), + [sym_co_return_statement] = STATE(1291), + [sym_co_yield_statement] = STATE(1291), + [sym_throw_statement] = STATE(1291), + [sym_try_statement] = STATE(1291), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(1291), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [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_LBRACK_LBRACK] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), [anon_sym_while] = ACTIONS(2099), [anon_sym_do] = ACTIONS(2101), [anon_sym_for] = ACTIONS(2103), @@ -86441,7 +89848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86477,103 +89884,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(198)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(1291), + [sym_attributed_statement] = STATE(1291), + [sym_statement] = STATE(1279), + [sym_labeled_statement] = STATE(1291), + [sym_expression_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_switch_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_do_statement] = STATE(1291), + [sym_for_statement] = STATE(1291), + [sym_return_statement] = STATE(1291), + [sym_break_statement] = STATE(1291), + [sym_continue_statement] = STATE(1291), + [sym_goto_statement] = STATE(1291), + [sym_seh_try_statement] = STATE(1291), + [sym_seh_leave_statement] = STATE(1291), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(1291), + [sym_co_return_statement] = STATE(1291), + [sym_co_yield_statement] = STATE(1291), + [sym_throw_statement] = STATE(1291), + [sym_try_statement] = STATE(1291), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(1291), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [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_LBRACK_LBRACK] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), [anon_sym_while] = ACTIONS(2099), [anon_sym_do] = ACTIONS(2101), [anon_sym_for] = ACTIONS(2103), @@ -86595,7 +90002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86631,112 +90038,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(2728), [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), + [STATE(199)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(1291), + [sym_attributed_statement] = STATE(1291), + [sym_statement] = STATE(1268), + [sym_labeled_statement] = STATE(1291), + [sym_expression_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_switch_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_do_statement] = STATE(1291), + [sym_for_statement] = STATE(1291), + [sym_return_statement] = STATE(1291), + [sym_break_statement] = STATE(1291), + [sym_continue_statement] = STATE(1291), + [sym_goto_statement] = STATE(1291), + [sym_seh_try_statement] = STATE(1291), + [sym_seh_leave_statement] = STATE(1291), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(1291), + [sym_co_return_statement] = STATE(1291), + [sym_co_yield_statement] = STATE(1291), + [sym_throw_statement] = STATE(1291), + [sym_try_statement] = STATE(1291), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(1291), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = 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), @@ -86749,7 +90156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86770,12 +90177,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [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(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), @@ -86785,99 +90192,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(2728), [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), + [STATE(200)] = { + [sym_attribute_declaration] = STATE(211), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(637), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(83), [anon_sym_switch] = ACTIONS(85), [anon_sym_case] = ACTIONS(87), @@ -86889,8 +90296,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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -86903,7 +90310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86939,253 +90346,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(2728), [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), + [STATE(201)] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(569), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(1119), [anon_sym_switch] = ACTIONS(1121), [anon_sym_case] = ACTIONS(1123), @@ -87211,7 +90464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -87232,7 +90485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), + [anon_sym_template] = ACTIONS(1880), [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(1153), @@ -87247,112 +90500,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(2728), [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), + [STATE(202)] = { + [sym_attribute_declaration] = STATE(194), + [sym_compound_statement] = STATE(376), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(304), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -87365,7 +90618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -87386,12 +90639,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1862), + [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), @@ -87401,112 +90654,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(2728), [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(203)] = { + [sym_attribute_declaration] = STATE(194), + [sym_compound_statement] = STATE(376), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(343), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -87519,7 +90772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -87540,12 +90793,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1862), + [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), @@ -87555,112 +90808,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(2728), [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(204)] = { + [sym_attribute_declaration] = STATE(181), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(779), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -87673,7 +90926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -87694,12 +90947,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2018), + [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), @@ -87709,112 +90962,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(2728), [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(205)] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(600), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2198), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -87827,7 +91080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -87848,12 +91101,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2200), + [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), @@ -87863,112 +91116,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(2728), [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(206)] = { + [sym_attribute_declaration] = STATE(211), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(633), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -87981,7 +91234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -88002,12 +91255,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1949), + [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), @@ -88017,112 +91270,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(2728), [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(207)] = { + [sym_attribute_declaration] = STATE(204), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(759), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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,161 +91388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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_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_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_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -88325,112 +91424,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(2728), [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), + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(548), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -88443,7 +91542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -88464,12 +91563,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1151), [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(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), @@ -88479,407 +91578,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(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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_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_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(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), + [sym_attribute_declaration] = STATE(211), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(635), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(83), [anon_sym_switch] = ACTIONS(85), [anon_sym_case] = ACTIONS(87), @@ -88891,8 +91682,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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -88905,7 +91696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -88941,99 +91732,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(2728), [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(210)] = { + [sym_attribute_declaration] = STATE(204), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(785), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(207), [anon_sym_switch] = ACTIONS(209), [anon_sym_case] = ACTIONS(211), @@ -89059,7 +91850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89095,253 +91886,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(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(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(211)] = { + [sym_attribute_declaration] = STATE(180), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(600), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(83), [anon_sym_switch] = ACTIONS(85), [anon_sym_case] = ACTIONS(87), @@ -89353,8 +91990,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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -89367,7 +92004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89403,99 +92040,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(2728), [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(212)] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(648), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(1119), [anon_sym_switch] = ACTIONS(1121), [anon_sym_case] = ACTIONS(1123), @@ -89521,7 +92158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89542,7 +92179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), + [anon_sym_template] = ACTIONS(1880), [anon_sym_try] = ACTIONS(1151), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(1153), @@ -89557,111 +92194,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(2728), [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), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(213)] = { + [sym_attribute_declaration] = STATE(204), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(761), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -89675,7 +92312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89696,12 +92333,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2018), + [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), @@ -89711,112 +92348,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(2728), [sym_this] = ACTIONS(237), }, - [STATE(217)] = { - [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), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(214)] = { + [sym_attribute_declaration] = STATE(204), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(762), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -89829,7 +92466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89850,12 +92487,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2018), + [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), @@ -89865,99 +92502,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(2728), [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(215)] = { + [sym_attribute_declaration] = STATE(194), + [sym_compound_statement] = STATE(376), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(315), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(315), [anon_sym_switch] = ACTIONS(317), [anon_sym_case] = ACTIONS(319), @@ -89983,7 +92620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90004,7 +92641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), + [anon_sym_template] = ACTIONS(1862), [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(349), @@ -90019,99 +92656,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(2728), [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(216)] = { + [sym_attribute_declaration] = STATE(204), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(767), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(2730), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(207), [anon_sym_switch] = ACTIONS(209), [anon_sym_case] = ACTIONS(211), @@ -90137,7 +92774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90173,112 +92810,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(2728), [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(217)] = { + [sym_attribute_declaration] = STATE(211), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(568), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -90291,7 +92928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90312,7 +92949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_template] = ACTIONS(1949), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -90327,111 +92964,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(2728), [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), + [STATE(218)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(12535), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [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_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2196), [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(2198), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -90445,7 +93082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90466,7 +93103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_template] = ACTIONS(2200), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -90481,103 +93118,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(219)] = { + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(1291), + [sym_attributed_statement] = STATE(1291), + [sym_statement] = STATE(1285), + [sym_labeled_statement] = STATE(1291), + [sym_expression_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_switch_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_do_statement] = STATE(1291), + [sym_for_statement] = STATE(1291), + [sym_return_statement] = STATE(1291), + [sym_break_statement] = STATE(1291), + [sym_continue_statement] = STATE(1291), + [sym_goto_statement] = STATE(1291), + [sym_seh_try_statement] = STATE(1291), + [sym_seh_leave_statement] = STATE(1291), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(1291), + [sym_co_return_statement] = STATE(1291), + [sym_co_yield_statement] = STATE(1291), + [sym_throw_statement] = STATE(1291), + [sym_try_statement] = STATE(1291), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(1291), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [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_LBRACK_LBRACK] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), [anon_sym_while] = ACTIONS(2099), [anon_sym_do] = ACTIONS(2101), [anon_sym_for] = ACTIONS(2103), @@ -90599,7 +93236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90635,112 +93272,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(2728), [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(220)] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(654), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -90753,7 +93390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90774,12 +93411,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1151), [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(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), @@ -90789,112 +93426,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(2728), [sym_this] = ACTIONS(237), }, - [STATE(224)] = { - [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), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(221)] = { + [sym_attribute_declaration] = STATE(194), + [sym_compound_statement] = STATE(376), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(391), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -90907,7 +93544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90928,12 +93565,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1862), + [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), @@ -90943,112 +93580,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(2728), [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(222)] = { + [sym_attribute_declaration] = STATE(194), + [sym_compound_statement] = STATE(376), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(394), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -91061,7 +93698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91082,12 +93719,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1862), + [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), @@ -91097,99 +93734,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(2728), [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(223)] = { + [sym_attribute_declaration] = STATE(194), + [sym_compound_statement] = STATE(376), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(395), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_if] = ACTIONS(315), [anon_sym_switch] = ACTIONS(317), [anon_sym_case] = ACTIONS(319), @@ -91215,7 +93852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91236,7 +93873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), + [anon_sym_template] = ACTIONS(1862), [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(349), @@ -91251,112 +93888,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(2728), [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(224)] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(656), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -91369,7 +94006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91390,12 +94027,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1151), [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(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), @@ -91405,112 +94042,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(2728), [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(225)] = { + [sym_attribute_declaration] = STATE(194), + [sym_compound_statement] = STATE(376), + [sym_attributed_statement] = STATE(376), + [sym_statement] = STATE(370), + [sym_labeled_statement] = STATE(376), + [sym_expression_statement] = STATE(376), + [sym_if_statement] = STATE(376), + [sym_switch_statement] = STATE(376), + [sym_case_statement] = STATE(376), + [sym_while_statement] = STATE(376), + [sym_do_statement] = STATE(376), + [sym_for_statement] = STATE(376), + [sym_return_statement] = STATE(376), + [sym_break_statement] = STATE(376), + [sym_continue_statement] = STATE(376), + [sym_goto_statement] = STATE(376), + [sym_seh_try_statement] = STATE(376), + [sym_seh_leave_statement] = STATE(376), + [sym_expression] = STATE(7599), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12187), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(376), + [sym_co_return_statement] = STATE(376), + [sym_co_yield_statement] = STATE(376), + [sym_throw_statement] = STATE(376), + [sym_try_statement] = STATE(376), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(376), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(2801), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -91523,7 +94160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91544,12 +94181,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1862), + [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), @@ -91559,111 +94196,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(2728), [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(226)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(11052), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2198), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -91677,7 +94314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91698,12 +94335,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2200), + [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 +94350,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(2728), [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(227)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(637), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2198), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -91831,7 +94468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91852,12 +94489,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2200), + [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), @@ -91867,112 +94504,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(2728), [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(228)] = { + [sym_attribute_declaration] = STATE(228), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(600), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(228), + [sym_identifier] = ACTIONS(2863), + [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(2595), + [anon_sym___extension__] = ACTIONS(2458), + [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(2866), + [anon_sym_switch] = ACTIONS(2481), + [anon_sym_case] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2875), + [anon_sym_do] = ACTIONS(2493), + [anon_sym_for] = ACTIONS(2878), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2508), + [anon_sym___try] = ACTIONS(2881), + [anon_sym___leave] = ACTIONS(2637), + [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(2884), + [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(229)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(11386), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2198), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -91985,7 +94776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92006,12 +94797,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2200), + [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 +94812,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(2728), [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(230)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(590), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2198), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -92139,7 +94930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92160,12 +94951,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2200), + [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), @@ -92175,111 +94966,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(2728), [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(231)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(633), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2198), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -92293,7 +95084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92314,12 +95105,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2200), + [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), @@ -92329,112 +95120,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(2728), [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(232)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(635), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2198), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -92447,7 +95238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92468,12 +95259,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2200), + [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), @@ -92483,111 +95274,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(2728), [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), + [STATE(233)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(615), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [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_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2196), [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(2198), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -92601,7 +95392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92622,7 +95413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_template] = ACTIONS(2200), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -92637,112 +95428,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(2728), [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(234)] = { + [sym_attribute_declaration] = STATE(211), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(564), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -92755,7 +95546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92776,12 +95567,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1949), + [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), @@ -92791,112 +95582,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(2728), [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(235)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(669), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -92909,7 +95700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92930,12 +95721,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1151), [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(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), @@ -92945,266 +95736,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(2728), [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), + [STATE(236)] = { + [sym_attribute_declaration] = STATE(235), + [sym_compound_statement] = STATE(670), + [sym_attributed_statement] = STATE(670), + [sym_statement] = STATE(662), + [sym_labeled_statement] = STATE(670), + [sym_expression_statement] = STATE(670), + [sym_if_statement] = STATE(670), + [sym_switch_statement] = STATE(670), + [sym_case_statement] = STATE(670), + [sym_while_statement] = STATE(670), + [sym_do_statement] = STATE(670), + [sym_for_statement] = STATE(670), + [sym_return_statement] = STATE(670), + [sym_break_statement] = STATE(670), + [sym_continue_statement] = STATE(670), + [sym_goto_statement] = STATE(670), + [sym_seh_try_statement] = STATE(670), + [sym_seh_leave_statement] = STATE(670), + [sym_expression] = STATE(7640), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12248), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(670), + [sym_co_return_statement] = STATE(670), + [sym_co_yield_statement] = STATE(670), + [sym_throw_statement] = STATE(670), + [sym_try_statement] = STATE(670), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(670), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(235), + [sym_identifier] = ACTIONS(2734), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1103), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(1880), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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(237)] = { + [sym_attribute_declaration] = STATE(211), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(615), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -93217,7 +96008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93238,7 +96029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_template] = ACTIONS(1949), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -93253,112 +96044,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(2728), [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), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(238)] = { + [sym_attribute_declaration] = STATE(211), + [sym_compound_statement] = STATE(593), + [sym_attributed_statement] = STATE(593), + [sym_statement] = STATE(590), + [sym_labeled_statement] = STATE(593), + [sym_expression_statement] = STATE(593), + [sym_if_statement] = STATE(593), + [sym_switch_statement] = STATE(593), + [sym_case_statement] = STATE(593), + [sym_while_statement] = STATE(593), + [sym_do_statement] = STATE(593), + [sym_for_statement] = STATE(593), + [sym_return_statement] = STATE(593), + [sym_break_statement] = STATE(593), + [sym_continue_statement] = STATE(593), + [sym_goto_statement] = STATE(593), + [sym_seh_try_statement] = STATE(593), + [sym_seh_leave_statement] = STATE(593), + [sym_expression] = STATE(7677), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12294), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(593), + [sym_co_return_statement] = STATE(593), + [sym_co_yield_statement] = STATE(593), + [sym_throw_statement] = STATE(593), + [sym_try_statement] = STATE(593), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(593), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(2718), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(1320), + [anon_sym___leave] = ACTIONS(1322), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -93371,7 +96162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93392,7 +96183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_template] = ACTIONS(1949), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -93407,112 +96198,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(2728), [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), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(239)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(1291), + [sym_attributed_statement] = STATE(1291), + [sym_statement] = STATE(1225), + [sym_labeled_statement] = STATE(1291), + [sym_expression_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_switch_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_do_statement] = STATE(1291), + [sym_for_statement] = STATE(1291), + [sym_return_statement] = STATE(1291), + [sym_break_statement] = STATE(1291), + [sym_continue_statement] = STATE(1291), + [sym_goto_statement] = STATE(1291), + [sym_seh_try_statement] = STATE(1291), + [sym_seh_leave_statement] = STATE(1291), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(1291), + [sym_co_return_statement] = STATE(1291), + [sym_co_yield_statement] = STATE(1291), + [sym_throw_statement] = STATE(1291), + [sym_try_statement] = STATE(1291), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(1291), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2720), [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(1858), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = 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), @@ -93525,7 +96316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93546,12 +96337,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_template] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2119), [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(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), @@ -93561,111 +96352,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(2728), [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), + [STATE(240)] = { + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(1291), + [sym_attributed_statement] = STATE(1291), + [sym_statement] = STATE(1263), + [sym_labeled_statement] = STATE(1291), + [sym_expression_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_switch_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_do_statement] = STATE(1291), + [sym_for_statement] = STATE(1291), + [sym_return_statement] = STATE(1291), + [sym_break_statement] = STATE(1291), + [sym_continue_statement] = STATE(1291), + [sym_goto_statement] = STATE(1291), + [sym_seh_try_statement] = STATE(1291), + [sym_seh_leave_statement] = STATE(1291), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(1291), + [sym_co_return_statement] = STATE(1291), + [sym_co_yield_statement] = STATE(1291), + [sym_throw_statement] = STATE(1291), + [sym_try_statement] = STATE(1291), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(1291), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(2087), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = 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), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(241)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(12422), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [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_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2196), [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(2198), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -93679,7 +96624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93700,7 +96645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_template] = ACTIONS(2200), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -93715,111 +96660,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(2728), [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), + [STATE(242)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(12582), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [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_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2196), [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(2198), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -93833,7 +96778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93854,7 +96799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_template] = ACTIONS(2200), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -93869,112 +96814,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(2728), [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(205), + [sym_compound_statement] = STATE(731), + [sym_attributed_statement] = STATE(731), + [sym_statement] = STATE(12615), + [sym_labeled_statement] = STATE(731), + [sym_expression_statement] = STATE(731), + [sym_if_statement] = STATE(731), + [sym_switch_statement] = STATE(731), + [sym_case_statement] = STATE(731), + [sym_while_statement] = STATE(731), + [sym_do_statement] = STATE(731), + [sym_for_statement] = STATE(731), + [sym_return_statement] = STATE(731), + [sym_break_statement] = STATE(731), + [sym_continue_statement] = STATE(731), + [sym_goto_statement] = STATE(731), + [sym_seh_try_statement] = STATE(731), + [sym_seh_leave_statement] = STATE(731), + [sym_expression] = STATE(7730), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12241), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(731), + [sym_co_return_statement] = STATE(731), + [sym_co_yield_statement] = STATE(731), + [sym_throw_statement] = STATE(731), + [sym_try_statement] = STATE(731), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(731), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1858), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_if] = ACTIONS(2192), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), + [anon_sym_case] = ACTIONS(2095), + [anon_sym_default] = ACTIONS(2097), + [anon_sym_while] = ACTIONS(2194), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), + [anon_sym_for] = ACTIONS(2196), [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(2198), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -93987,7 +96932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -94008,7 +96953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), + [anon_sym_template] = ACTIONS(2200), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -94023,78 +96968,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(2728), [sym_this] = ACTIONS(237), }, + [STATE(244)] = { + [sym_attribute_declaration] = STATE(244), + [sym_compound_statement] = STATE(1291), + [sym_attributed_statement] = STATE(1291), + [sym_statement] = STATE(1285), + [sym_labeled_statement] = STATE(1291), + [sym_expression_statement] = STATE(1291), + [sym_if_statement] = STATE(1291), + [sym_switch_statement] = STATE(1291), + [sym_case_statement] = STATE(1291), + [sym_while_statement] = STATE(1291), + [sym_do_statement] = STATE(1291), + [sym_for_statement] = STATE(1291), + [sym_return_statement] = STATE(1291), + [sym_break_statement] = STATE(1291), + [sym_continue_statement] = STATE(1291), + [sym_goto_statement] = STATE(1291), + [sym_seh_try_statement] = STATE(1291), + [sym_seh_leave_statement] = STATE(1291), + [sym_expression] = STATE(7612), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12343), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_for_range_loop] = STATE(1291), + [sym_co_return_statement] = STATE(1291), + [sym_co_yield_statement] = STATE(1291), + [sym_throw_statement] = STATE(1291), + [sym_try_statement] = STATE(1291), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_expansion_statement] = STATE(1291), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_attributed_declarator_repeat1] = STATE(244), + [sym_identifier] = ACTIONS(2887), + [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(2890), + [anon_sym___extension__] = ACTIONS(2458), + [anon_sym_COLON_COLON] = ACTIONS(2463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2472), + [sym_primitive_type] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2896), + [anon_sym_switch] = ACTIONS(2899), + [anon_sym_case] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(2872), + [anon_sym_while] = ACTIONS(2902), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2914), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_goto] = ACTIONS(2920), + [anon_sym___try] = ACTIONS(2923), + [anon_sym___leave] = ACTIONS(2926), + [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(2929), + [anon_sym_try] = ACTIONS(2932), + [anon_sym_delete] = ACTIONS(2562), + [anon_sym_throw] = ACTIONS(2935), + [anon_sym_co_return] = ACTIONS(2938), + [anon_sym_co_yield] = ACTIONS(2941), + [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(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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12911), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -94111,7 +97210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94180,74 +97279,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12112), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5143), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12112), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12997), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(12480), + [sym__unary_right_fold] = STATE(13061), + [sym__binary_fold] = STATE(12552), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12283), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -94264,7 +97363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94333,74 +97432,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12302), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -94417,7 +97516,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94486,74 +97585,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12112), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5143), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12112), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12849), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(12856), + [sym__unary_right_fold] = STATE(12871), + [sym__binary_fold] = STATE(12880), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12283), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -94570,7 +97669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94639,74 +97738,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12470), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -94723,7 +97822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94792,74 +97891,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12995), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5150), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12995), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12557), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11947), + [sym__unary_right_fold] = STATE(12832), + [sym__binary_fold] = STATE(12297), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12707), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -94876,7 +97975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94945,114 +98044,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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), + [sym_expression] = STATE(5535), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_initializer_list] = STATE(6237), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), + [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(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_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_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), + [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), @@ -95061,10 +98157,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2260), [anon_sym_offsetof] = ACTIONS(2262), [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), + [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), @@ -95081,8 +98180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2284), [anon_sym_delete] = ACTIONS(2288), [anon_sym_R_DQUOTE] = ACTIONS(2290), @@ -95093,79 +98191,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12112), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5143), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12112), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(11945), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(12856), + [sym__unary_right_fold] = STATE(12871), + [sym__binary_fold] = STATE(12880), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12283), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -95182,7 +98281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -95251,74 +98350,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12270), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -95335,7 +98434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -95404,74 +98503,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12416), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -95488,7 +98587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -95557,111 +98656,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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), + [sym_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(11907), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [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(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_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(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_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(1860), + [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_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_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), @@ -95670,13 +98772,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2260), [anon_sym_offsetof] = ACTIONS(2262), [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), + [anon_sym_typename] = ACTIONS(2266), [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), @@ -95693,7 +98792,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(2278), [anon_sym_nullptr] = ACTIONS(2278), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), + [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), @@ -95704,80 +98804,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12264), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -95794,7 +98893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -95863,74 +98962,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12995), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5150), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12995), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12923), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11947), + [sym__unary_right_fold] = STATE(12832), + [sym__binary_fold] = STATE(12297), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12707), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -95947,7 +99046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96016,74 +99115,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12847), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -96100,7 +99199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96169,74 +99268,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12421), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -96253,7 +99352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96322,74 +99421,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12190), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -96406,7 +99505,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96475,74 +99574,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12112), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5143), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12112), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12842), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(12480), + [sym__unary_right_fold] = STATE(13061), + [sym__binary_fold] = STATE(12552), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12283), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -96559,7 +99658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96628,74 +99727,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12967), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5249), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12967), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12467), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(12545), + [sym__unary_right_fold] = STATE(12546), + [sym__binary_fold] = STATE(12893), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(11967), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -96712,7 +99811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96781,74 +99880,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12200), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -96865,7 +99964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96934,74 +100033,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(11975), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -97018,7 +100117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97087,74 +100186,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12967), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5249), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12967), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12209), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(12210), + [sym__unary_right_fold] = STATE(12213), + [sym__binary_fold] = STATE(12216), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(11967), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -97171,7 +100270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97240,74 +100339,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12129), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -97324,7 +100423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97393,74 +100492,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12995), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5150), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12995), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12852), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(12858), + [sym__unary_right_fold] = STATE(12860), + [sym__binary_fold] = STATE(12864), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12707), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -97477,7 +100576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97546,74 +100645,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12461), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -97630,7 +100729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97699,74 +100798,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(11878), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -97783,7 +100882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97852,74 +100951,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(11887), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -97936,7 +101035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98005,74 +101104,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12967), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5249), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12967), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12474), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(12545), + [sym__unary_right_fold] = STATE(12546), + [sym__binary_fold] = STATE(12893), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(11967), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -98089,7 +101188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98158,74 +101257,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12851), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -98242,7 +101341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98311,74 +101410,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12967), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5249), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12967), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12423), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(12210), + [sym__unary_right_fold] = STATE(12213), + [sym__binary_fold] = STATE(12216), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(11967), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -98395,7 +101494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98464,74 +101563,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12900), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -98548,7 +101647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98617,74 +101716,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12568), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -98701,7 +101800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98770,74 +101869,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12995), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5150), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12995), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(12567), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(12858), + [sym__unary_right_fold] = STATE(12860), + [sym__binary_fold] = STATE(12864), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12707), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -98854,7 +101953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98923,74 +102022,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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_compound_statement] = STATE(12346), + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(5198), + [sym__string] = STATE(5860), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(13005), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8918), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(3350), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3111), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(8633), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [sym_identifier] = ACTIONS(2944), [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), [anon_sym_LPAREN2] = ACTIONS(2946), @@ -99007,7 +102106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(2244), [anon_sym_long] = ACTIONS(2244), [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -99076,61 +102175,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2276), }, [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), + [sym_expression] = STATE(6090), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_initializer_list] = STATE(6495), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), [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_BANG] = ACTIONS(2962), + [anon_sym_TILDE] = ACTIONS(2964), [anon_sym_DASH] = ACTIONS(2384), [anon_sym_PLUS] = ACTIONS(2384), [anon_sym_STAR] = ACTIONS(2384), @@ -99149,12 +102248,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2970), [anon_sym_LBRACK] = ACTIONS(2384), [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2970), + [sym_primitive_type] = ACTIONS(2972), [anon_sym_QMARK] = ACTIONS(2386), [anon_sym_STAR_EQ] = ACTIONS(2386), [anon_sym_SLASH_EQ] = ACTIONS(2386), @@ -99169,8 +102268,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), [anon_sym_LT_EQ_GT] = ACTIONS(2386), [anon_sym_or] = ACTIONS(2384), [anon_sym_and] = ACTIONS(2384), @@ -99180,109 +102279,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), [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), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), [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_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), }, [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), + [sym_expression] = STATE(4072), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_initializer_list] = STATE(4245), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), [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_BANG] = ACTIONS(3012), + [anon_sym_TILDE] = ACTIONS(3014), [anon_sym_DASH] = ACTIONS(2384), [anon_sym_PLUS] = ACTIONS(2384), [anon_sym_STAR] = ACTIONS(2384), @@ -99301,8 +102400,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), [anon_sym_RBRACK_RBRACK] = ACTIONS(2386), [anon_sym_LBRACE] = ACTIONS(2396), [anon_sym_LBRACK] = ACTIONS(2384), @@ -99322,8 +102421,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), [anon_sym_LT_EQ_GT] = ACTIONS(2386), [anon_sym_or] = ACTIONS(2384), [anon_sym_and] = ACTIONS(2384), @@ -99333,7 +102432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sizeof] = ACTIONS(3020), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -99348,17 +102447,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -99366,227 +102465,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(3026), [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), - [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___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_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), - }, - [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), + [sym_expression] = STATE(6007), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_initializer_list] = STATE(6507), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), [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_BANG] = ACTIONS(3030), + [anon_sym_TILDE] = ACTIONS(3032), [anon_sym_DASH] = ACTIONS(2384), [anon_sym_PLUS] = ACTIONS(2384), [anon_sym_STAR] = ACTIONS(2384), @@ -99605,13 +102552,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3038), [anon_sym_LBRACK] = ACTIONS(2384), [anon_sym_RBRACK] = ACTIONS(2386), [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(3054), + [sym_primitive_type] = ACTIONS(3040), [anon_sym_QMARK] = ACTIONS(2386), [anon_sym_STAR_EQ] = ACTIONS(2386), [anon_sym_SLASH_EQ] = ACTIONS(2386), @@ -99626,8 +102573,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), [anon_sym_LT_EQ_GT] = ACTIONS(2386), [anon_sym_or] = ACTIONS(2384), [anon_sym_and] = ACTIONS(2384), @@ -99637,109 +102584,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), [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), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(281)] = { + [sym_expression] = STATE(6085), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_initializer_list] = STATE(4245), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), [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_BANG] = ACTIONS(3080), + [anon_sym_TILDE] = ACTIONS(3082), [anon_sym_DASH] = ACTIONS(2384), [anon_sym_PLUS] = ACTIONS(2384), [anon_sym_STAR] = ACTIONS(2384), @@ -99758,12 +102704,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(3084), + [anon_sym_COLON] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(2396), [anon_sym_LBRACK] = ACTIONS(2384), [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(3100), + [sym_primitive_type] = ACTIONS(2398), [anon_sym_QMARK] = ACTIONS(2386), [anon_sym_STAR_EQ] = ACTIONS(2386), [anon_sym_SLASH_EQ] = ACTIONS(2386), @@ -99775,8 +102722,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_and_eq] = ACTIONS(2384), + [anon_sym_or_eq] = ACTIONS(2384), + [anon_sym_xor_eq] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), [anon_sym_LT_EQ_GT] = ACTIONS(2386), [anon_sym_or] = ACTIONS(2384), [anon_sym_and] = ACTIONS(2384), @@ -99786,153 +102736,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sizeof] = ACTIONS(3088), + [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(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), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(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), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3102), [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(3105), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3116), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym___based] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -99945,7 +102894,7 @@ static const uint16_t ts_parse_table[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(3129), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -99965,11 +102914,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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3135), + [anon_sym_operator] = ACTIONS(3118), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -99980,109 +102929,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(3138), [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(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3102), [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(3105), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3141), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym___based] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100095,7 +103044,7 @@ static const uint16_t ts_parse_table[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(3129), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100115,11 +103064,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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3135), + [anon_sym_operator] = ACTIONS(3118), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -100130,259 +103079,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(3138), [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(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3102), [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(3105), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym___based] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100395,7 +103194,7 @@ static const uint16_t ts_parse_table[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(3129), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100415,11 +103214,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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3135), + [anon_sym_operator] = ACTIONS(3118), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -100430,109 +103229,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(3138), [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(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3102), [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(3105), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3145), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym___based] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100545,7 +103344,7 @@ static const uint16_t ts_parse_table[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(3129), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100565,11 +103364,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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3135), + [anon_sym_operator] = ACTIONS(3118), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -100580,29 +103379,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_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(3138), [sym_this] = ACTIONS(237), }, + [STATE(286)] = { + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3149), + [aux_sym_preproc_include_token1] = ACTIONS(3149), + [aux_sym_preproc_def_token1] = ACTIONS(3149), + [anon_sym_COMMA] = ACTIONS(3147), + [anon_sym_RPAREN] = ACTIONS(3147), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), + [sym_preproc_directive] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym___attribute__] = ACTIONS(3149), + [anon_sym___attribute] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), + [anon_sym___declspec] = ACTIONS(3149), + [anon_sym___based] = ACTIONS(3149), + [anon_sym___cdecl] = ACTIONS(3149), + [anon_sym___clrcall] = ACTIONS(3149), + [anon_sym___stdcall] = ACTIONS(3149), + [anon_sym___fastcall] = ACTIONS(3149), + [anon_sym___thiscall] = ACTIONS(3149), + [anon_sym___vectorcall] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_signed] = ACTIONS(3149), + [anon_sym_unsigned] = ACTIONS(3149), + [anon_sym_long] = ACTIONS(3149), + [anon_sym_short] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_register] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym___inline] = ACTIONS(3149), + [anon_sym___inline__] = ACTIONS(3149), + [anon_sym___forceinline] = ACTIONS(3149), + [anon_sym_thread_local] = ACTIONS(3149), + [anon_sym___thread] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_constexpr] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_restrict] = ACTIONS(3149), + [anon_sym___restrict__] = ACTIONS(3149), + [anon_sym__Atomic] = ACTIONS(3149), + [anon_sym__Noreturn] = ACTIONS(3149), + [anon_sym_noreturn] = ACTIONS(3149), + [anon_sym__Nonnull] = ACTIONS(3149), + [anon_sym_mutable] = ACTIONS(3149), + [anon_sym_constinit] = ACTIONS(3149), + [anon_sym_consteval] = ACTIONS(3149), + [anon_sym_alignas] = ACTIONS(3149), + [anon_sym__Alignas] = ACTIONS(3149), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_case] = ACTIONS(3149), + [anon_sym_default] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym___try] = ACTIONS(3149), + [anon_sym___except] = ACTIONS(3149), + [anon_sym___finally] = ACTIONS(3149), + [anon_sym___leave] = ACTIONS(3149), + [anon_sym_not] = ACTIONS(3149), + [anon_sym_compl] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3149), + [anon_sym_and] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_sizeof] = ACTIONS(3149), + [anon_sym___alignof__] = ACTIONS(3149), + [anon_sym___alignof] = ACTIONS(3149), + [anon_sym__alignof] = ACTIONS(3149), + [anon_sym_alignof] = ACTIONS(3149), + [anon_sym__Alignof] = ACTIONS(3149), + [anon_sym_offsetof] = ACTIONS(3149), + [anon_sym__Generic] = ACTIONS(3149), + [anon_sym_typename] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym___asm__] = ACTIONS(3149), + [anon_sym___asm] = ACTIONS(3149), + [sym_number_literal] = ACTIONS(3147), + [anon_sym_L_SQUOTE] = ACTIONS(3147), + [anon_sym_u_SQUOTE] = ACTIONS(3147), + [anon_sym_U_SQUOTE] = ACTIONS(3147), + [anon_sym_u8_SQUOTE] = ACTIONS(3147), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_L_DQUOTE] = ACTIONS(3147), + [anon_sym_u_DQUOTE] = ACTIONS(3147), + [anon_sym_U_DQUOTE] = ACTIONS(3147), + [anon_sym_u8_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [anon_sym_NULL] = ACTIONS(3149), + [anon_sym_nullptr] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3149), + [anon_sym_decltype] = ACTIONS(3149), + [anon_sym_explicit] = ACTIONS(3149), + [anon_sym_export] = ACTIONS(3149), + [anon_sym_module] = ACTIONS(3149), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_operator] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_delete] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_static_assert] = ACTIONS(3149), + [anon_sym_concept] = ACTIONS(3149), + [anon_sym_co_return] = ACTIONS(3149), + [anon_sym_co_yield] = ACTIONS(3149), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_R_DQUOTE] = ACTIONS(3147), + [anon_sym_LR_DQUOTE] = ACTIONS(3147), + [anon_sym_uR_DQUOTE] = ACTIONS(3147), + [anon_sym_UR_DQUOTE] = ACTIONS(3147), + [anon_sym_u8R_DQUOTE] = ACTIONS(3147), + [anon_sym_co_await] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_requires] = ACTIONS(3149), + [anon_sym_CARET_CARET] = ACTIONS(3147), + [anon_sym_LBRACK_COLON] = ACTIONS(3147), + [sym_this] = ACTIONS(3149), + }, + [STATE(287)] = { + [sym_expression] = STATE(6603), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_initializer_list] = STATE(6768), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_EQ] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, [STATE(288)] = { - [ts_builtin_sym_end] = ACTIONS(3161), + [sym_catch_clause] = STATE(289), + [aux_sym_constructor_try_statement_repeat1] = STATE(289), [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_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_LPAREN2] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), [anon_sym_DASH] = ACTIONS(3163), [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3165), [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3165), [anon_sym___extension__] = ACTIONS(3163), [anon_sym_typedef] = ACTIONS(3163), [anon_sym_virtual] = ACTIONS(3163), @@ -100610,8 +103713,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(3165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3165), [anon_sym___declspec] = ACTIONS(3163), [anon_sym___based] = ACTIONS(3163), [anon_sym___cdecl] = ACTIONS(3163), @@ -100620,7 +103723,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(3163), [anon_sym___thiscall] = ACTIONS(3163), [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3165), [anon_sym_signed] = ACTIONS(3163), [anon_sym_unsigned] = ACTIONS(3163), [anon_sym_long] = ACTIONS(3163), @@ -100666,15 +103769,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_DASH_DASH] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), [anon_sym_sizeof] = ACTIONS(3163), [anon_sym___alignof__] = ACTIONS(3163), [anon_sym___alignof] = ACTIONS(3163), @@ -100687,17 +103786,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(3165), + [anon_sym_L_SQUOTE] = ACTIONS(3165), + [anon_sym_u_SQUOTE] = ACTIONS(3165), + [anon_sym_U_SQUOTE] = ACTIONS(3165), + [anon_sym_u8_SQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_L_DQUOTE] = ACTIONS(3165), + [anon_sym_u_DQUOTE] = ACTIONS(3165), + [anon_sym_U_DQUOTE] = ACTIONS(3165), + [anon_sym_u8_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), [sym_true] = ACTIONS(3163), [sym_false] = ACTIONS(3163), [anon_sym_NULL] = ACTIONS(3163), @@ -100719,320 +103818,761 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_catch] = ACTIONS(3167), + [anon_sym_R_DQUOTE] = ACTIONS(3165), + [anon_sym_LR_DQUOTE] = ACTIONS(3165), + [anon_sym_uR_DQUOTE] = ACTIONS(3165), + [anon_sym_UR_DQUOTE] = ACTIONS(3165), + [anon_sym_u8R_DQUOTE] = ACTIONS(3165), [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), + [anon_sym_CARET_CARET] = ACTIONS(3165), + [anon_sym_LBRACK_COLON] = ACTIONS(3165), [sym_this] = ACTIONS(3163), }, [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(289), + [aux_sym_constructor_try_statement_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(3169), + [aux_sym_preproc_include_token1] = ACTIONS(3169), + [aux_sym_preproc_def_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token2] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3169), + [aux_sym_preproc_else_token1] = ACTIONS(3169), + [aux_sym_preproc_elif_token1] = ACTIONS(3169), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3169), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3169), + [sym_preproc_directive] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym___extension__] = ACTIONS(3169), + [anon_sym_typedef] = ACTIONS(3169), + [anon_sym_virtual] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym___attribute__] = ACTIONS(3169), + [anon_sym___attribute] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3171), + [anon_sym___declspec] = ACTIONS(3169), + [anon_sym___based] = ACTIONS(3169), + [anon_sym___cdecl] = ACTIONS(3169), + [anon_sym___clrcall] = ACTIONS(3169), + [anon_sym___stdcall] = ACTIONS(3169), + [anon_sym___fastcall] = ACTIONS(3169), + [anon_sym___thiscall] = ACTIONS(3169), + [anon_sym___vectorcall] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_register] = ACTIONS(3169), + [anon_sym_inline] = ACTIONS(3169), + [anon_sym___inline] = ACTIONS(3169), + [anon_sym___inline__] = ACTIONS(3169), + [anon_sym___forceinline] = ACTIONS(3169), + [anon_sym_thread_local] = ACTIONS(3169), + [anon_sym___thread] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_constexpr] = ACTIONS(3169), + [anon_sym_volatile] = ACTIONS(3169), + [anon_sym_restrict] = ACTIONS(3169), + [anon_sym___restrict__] = ACTIONS(3169), + [anon_sym__Atomic] = ACTIONS(3169), + [anon_sym__Noreturn] = ACTIONS(3169), + [anon_sym_noreturn] = ACTIONS(3169), + [anon_sym__Nonnull] = ACTIONS(3169), + [anon_sym_mutable] = ACTIONS(3169), + [anon_sym_constinit] = ACTIONS(3169), + [anon_sym_consteval] = ACTIONS(3169), + [anon_sym_alignas] = ACTIONS(3169), + [anon_sym__Alignas] = ACTIONS(3169), + [sym_primitive_type] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_case] = ACTIONS(3169), + [anon_sym_default] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_goto] = ACTIONS(3169), + [anon_sym___try] = ACTIONS(3169), + [anon_sym___leave] = ACTIONS(3169), + [anon_sym_not] = ACTIONS(3169), + [anon_sym_compl] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_sizeof] = ACTIONS(3169), + [anon_sym___alignof__] = ACTIONS(3169), + [anon_sym___alignof] = ACTIONS(3169), + [anon_sym__alignof] = ACTIONS(3169), + [anon_sym_alignof] = ACTIONS(3169), + [anon_sym__Alignof] = ACTIONS(3169), + [anon_sym_offsetof] = ACTIONS(3169), + [anon_sym__Generic] = ACTIONS(3169), + [anon_sym_typename] = ACTIONS(3169), + [anon_sym_asm] = ACTIONS(3169), + [anon_sym___asm__] = ACTIONS(3169), + [anon_sym___asm] = ACTIONS(3169), + [sym_number_literal] = ACTIONS(3171), + [anon_sym_L_SQUOTE] = ACTIONS(3171), + [anon_sym_u_SQUOTE] = ACTIONS(3171), + [anon_sym_U_SQUOTE] = ACTIONS(3171), + [anon_sym_u8_SQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_L_DQUOTE] = ACTIONS(3171), + [anon_sym_u_DQUOTE] = ACTIONS(3171), + [anon_sym_U_DQUOTE] = ACTIONS(3171), + [anon_sym_u8_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [sym_true] = ACTIONS(3169), + [sym_false] = ACTIONS(3169), + [anon_sym_NULL] = ACTIONS(3169), + [anon_sym_nullptr] = ACTIONS(3169), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3169), + [anon_sym_decltype] = ACTIONS(3169), + [anon_sym_explicit] = ACTIONS(3169), + [anon_sym_export] = ACTIONS(3169), + [anon_sym_module] = ACTIONS(3169), + [anon_sym_import] = ACTIONS(3169), + [anon_sym_template] = ACTIONS(3169), + [anon_sym_operator] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_delete] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_static_assert] = ACTIONS(3169), + [anon_sym_concept] = ACTIONS(3169), + [anon_sym_co_return] = ACTIONS(3169), + [anon_sym_co_yield] = ACTIONS(3169), + [anon_sym_catch] = ACTIONS(3173), + [anon_sym_R_DQUOTE] = ACTIONS(3171), + [anon_sym_LR_DQUOTE] = ACTIONS(3171), + [anon_sym_uR_DQUOTE] = ACTIONS(3171), + [anon_sym_UR_DQUOTE] = ACTIONS(3171), + [anon_sym_u8R_DQUOTE] = ACTIONS(3171), + [anon_sym_co_await] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_requires] = ACTIONS(3169), + [anon_sym_CARET_CARET] = ACTIONS(3171), + [anon_sym_LBRACK_COLON] = ACTIONS(3171), + [sym_this] = ACTIONS(3169), }, [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), + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_include_token1] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_RPAREN] = ACTIONS(3176), + [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(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_PIPE_PIPE] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3176), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3176), + [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_else] = 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___except] = ACTIONS(3178), + [anon_sym___finally] = ACTIONS(3178), + [anon_sym___leave] = ACTIONS(3178), + [anon_sym_not] = ACTIONS(3178), + [anon_sym_compl] = ACTIONS(3178), + [anon_sym_or] = ACTIONS(3178), + [anon_sym_and] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [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(3176), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3176), + [anon_sym_u_DQUOTE] = ACTIONS(3176), + [anon_sym_U_DQUOTE] = ACTIONS(3176), + [anon_sym_u8_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [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(3178), + [anon_sym_R_DQUOTE] = ACTIONS(3176), + [anon_sym_LR_DQUOTE] = ACTIONS(3176), + [anon_sym_uR_DQUOTE] = ACTIONS(3176), + [anon_sym_UR_DQUOTE] = ACTIONS(3176), + [anon_sym_u8R_DQUOTE] = ACTIONS(3176), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3176), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), }, [STATE(291)] = { - [sym_catch_clause] = STATE(290), - [aux_sym_constructor_try_statement_repeat1] = STATE(290), + [sym_catch_clause] = STATE(289), + [aux_sym_constructor_try_statement_repeat1] = STATE(289), + [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(3167), + [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(289), + [aux_sym_constructor_try_statement_repeat1] = STATE(289), + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_include_token1] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token2] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [aux_sym_preproc_else_token1] = ACTIONS(3184), + [aux_sym_preproc_elif_token1] = ACTIONS(3184), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym___attribute] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym___cdecl] = ACTIONS(3184), + [anon_sym___clrcall] = ACTIONS(3184), + [anon_sym___stdcall] = ACTIONS(3184), + [anon_sym___fastcall] = ACTIONS(3184), + [anon_sym___thiscall] = ACTIONS(3184), + [anon_sym___vectorcall] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym__Nonnull] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym__Alignas] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym___try] = ACTIONS(3184), + [anon_sym___leave] = ACTIONS(3184), + [anon_sym_not] = ACTIONS(3184), + [anon_sym_compl] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3184), + [anon_sym___alignof__] = ACTIONS(3184), + [anon_sym___alignof] = ACTIONS(3184), + [anon_sym__alignof] = ACTIONS(3184), + [anon_sym_alignof] = ACTIONS(3184), + [anon_sym__Alignof] = ACTIONS(3184), + [anon_sym_offsetof] = ACTIONS(3184), + [anon_sym__Generic] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_asm] = ACTIONS(3184), + [anon_sym___asm__] = ACTIONS(3184), + [anon_sym___asm] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_L_SQUOTE] = ACTIONS(3186), + [anon_sym_u_SQUOTE] = ACTIONS(3186), + [anon_sym_U_SQUOTE] = ACTIONS(3186), + [anon_sym_u8_SQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_L_DQUOTE] = ACTIONS(3186), + [anon_sym_u_DQUOTE] = ACTIONS(3186), + [anon_sym_U_DQUOTE] = ACTIONS(3186), + [anon_sym_u8_DQUOTE] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [anon_sym_NULL] = ACTIONS(3184), + [anon_sym_nullptr] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_module] = ACTIONS(3184), + [anon_sym_import] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_concept] = ACTIONS(3184), + [anon_sym_co_return] = ACTIONS(3184), + [anon_sym_co_yield] = ACTIONS(3184), + [anon_sym_catch] = ACTIONS(3167), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_requires] = ACTIONS(3184), + [anon_sym_CARET_CARET] = ACTIONS(3186), + [anon_sym_LBRACK_COLON] = ACTIONS(3186), + [sym_this] = ACTIONS(3184), + }, + [STATE(293)] = { + [sym_expression] = STATE(7596), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(13049), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3188), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(3191), + [anon_sym___extension__] = ACTIONS(3193), + [anon_sym_virtual] = ACTIONS(3196), + [anon_sym_extern] = ACTIONS(3196), + [anon_sym___attribute__] = ACTIONS(3196), + [anon_sym___attribute] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3198), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3196), + [anon_sym_signed] = ACTIONS(3196), + [anon_sym_unsigned] = ACTIONS(3196), + [anon_sym_long] = ACTIONS(3196), + [anon_sym_short] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_register] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym___inline] = ACTIONS(3196), + [anon_sym___inline__] = ACTIONS(3196), + [anon_sym___forceinline] = ACTIONS(3196), + [anon_sym_thread_local] = ACTIONS(3196), + [anon_sym___thread] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_constexpr] = ACTIONS(3196), + [anon_sym_volatile] = ACTIONS(3196), + [anon_sym_restrict] = ACTIONS(3196), + [anon_sym___restrict__] = ACTIONS(3196), + [anon_sym__Atomic] = ACTIONS(3196), + [anon_sym__Noreturn] = ACTIONS(3196), + [anon_sym_noreturn] = ACTIONS(3196), + [anon_sym__Nonnull] = ACTIONS(3196), + [anon_sym_mutable] = ACTIONS(3196), + [anon_sym_constinit] = ACTIONS(3196), + [anon_sym_consteval] = ACTIONS(3196), + [anon_sym_alignas] = ACTIONS(3196), + [anon_sym__Alignas] = ACTIONS(3196), + [sym_primitive_type] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3196), + [anon_sym_class] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3196), + [anon_sym_union] = ACTIONS(3196), + [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(3206), + [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(3196), + [anon_sym_decltype] = ACTIONS(3209), + [anon_sym_template] = ACTIONS(3212), + [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(3215), + [sym_this] = ACTIONS(237), + }, + [STATE(294)] = { [sym_identifier] = ACTIONS(3178), [aux_sym_preproc_include_token1] = ACTIONS(3178), [aux_sym_preproc_def_token1] = ACTIONS(3178), @@ -101045,15 +104585,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LPAREN2] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), [anon_sym_DASH] = ACTIONS(3178), [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_AMP_AMP] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3176), [anon_sym___extension__] = ACTIONS(3178), [anon_sym_typedef] = ACTIONS(3178), [anon_sym_virtual] = ACTIONS(3178), @@ -101061,8 +104601,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), [anon_sym___declspec] = ACTIONS(3178), [anon_sym___based] = ACTIONS(3178), [anon_sym___cdecl] = ACTIONS(3178), @@ -101071,7 +104611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(3178), [anon_sym___thiscall] = ACTIONS(3178), [anon_sym___vectorcall] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3176), [anon_sym_signed] = ACTIONS(3178), [anon_sym_unsigned] = ACTIONS(3178), [anon_sym_long] = ACTIONS(3178), @@ -101105,6 +104645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(3178), [anon_sym_union] = ACTIONS(3178), [anon_sym_if] = ACTIONS(3178), + [anon_sym_else] = ACTIONS(3178), [anon_sym_switch] = ACTIONS(3178), [anon_sym_case] = ACTIONS(3178), [anon_sym_default] = ACTIONS(3178), @@ -101119,8 +104660,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH_DASH] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), [anon_sym_sizeof] = ACTIONS(3178), [anon_sym___alignof__] = ACTIONS(3178), [anon_sym___alignof] = ACTIONS(3178), @@ -101133,17 +104674,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(3176), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3176), + [anon_sym_u_DQUOTE] = ACTIONS(3176), + [anon_sym_U_DQUOTE] = ACTIONS(3176), + [anon_sym_u8_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), [sym_true] = ACTIONS(3178), [sym_false] = ACTIONS(3178), [anon_sym_NULL] = ACTIONS(3178), @@ -101165,246 +104706,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_catch] = ACTIONS(3178), + [anon_sym_R_DQUOTE] = ACTIONS(3176), + [anon_sym_LR_DQUOTE] = ACTIONS(3176), + [anon_sym_uR_DQUOTE] = ACTIONS(3176), + [anon_sym_UR_DQUOTE] = ACTIONS(3176), + [anon_sym_u8R_DQUOTE] = ACTIONS(3176), [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), + [anon_sym_CARET_CARET] = ACTIONS(3176), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), [sym_this] = ACTIONS(3178), }, - [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), + [STATE(295)] = { + [sym_identifier] = ACTIONS(3149), + [aux_sym_preproc_include_token1] = ACTIONS(3149), + [aux_sym_preproc_def_token1] = ACTIONS(3149), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_if_token2] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), + [aux_sym_preproc_else_token1] = ACTIONS(3149), + [aux_sym_preproc_elif_token1] = ACTIONS(3149), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3149), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3149), + [sym_preproc_directive] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym___attribute__] = ACTIONS(3149), + [anon_sym___attribute] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), + [anon_sym___declspec] = ACTIONS(3149), + [anon_sym___based] = ACTIONS(3149), + [anon_sym___cdecl] = ACTIONS(3149), + [anon_sym___clrcall] = ACTIONS(3149), + [anon_sym___stdcall] = ACTIONS(3149), + [anon_sym___fastcall] = ACTIONS(3149), + [anon_sym___thiscall] = ACTIONS(3149), + [anon_sym___vectorcall] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_signed] = ACTIONS(3149), + [anon_sym_unsigned] = ACTIONS(3149), + [anon_sym_long] = ACTIONS(3149), + [anon_sym_short] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_register] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym___inline] = ACTIONS(3149), + [anon_sym___inline__] = ACTIONS(3149), + [anon_sym___forceinline] = ACTIONS(3149), + [anon_sym_thread_local] = ACTIONS(3149), + [anon_sym___thread] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_constexpr] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_restrict] = ACTIONS(3149), + [anon_sym___restrict__] = ACTIONS(3149), + [anon_sym__Atomic] = ACTIONS(3149), + [anon_sym__Noreturn] = ACTIONS(3149), + [anon_sym_noreturn] = ACTIONS(3149), + [anon_sym__Nonnull] = ACTIONS(3149), + [anon_sym_mutable] = ACTIONS(3149), + [anon_sym_constinit] = ACTIONS(3149), + [anon_sym_consteval] = ACTIONS(3149), + [anon_sym_alignas] = ACTIONS(3149), + [anon_sym__Alignas] = ACTIONS(3149), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_case] = ACTIONS(3149), + [anon_sym_default] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym___try] = ACTIONS(3149), + [anon_sym___leave] = ACTIONS(3149), + [anon_sym_not] = ACTIONS(3149), + [anon_sym_compl] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_sizeof] = ACTIONS(3149), + [anon_sym___alignof__] = ACTIONS(3149), + [anon_sym___alignof] = ACTIONS(3149), + [anon_sym__alignof] = ACTIONS(3149), + [anon_sym_alignof] = ACTIONS(3149), + [anon_sym__Alignof] = ACTIONS(3149), + [anon_sym_offsetof] = ACTIONS(3149), + [anon_sym__Generic] = ACTIONS(3149), + [anon_sym_typename] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym___asm__] = ACTIONS(3149), + [anon_sym___asm] = ACTIONS(3149), + [sym_number_literal] = ACTIONS(3147), + [anon_sym_L_SQUOTE] = ACTIONS(3147), + [anon_sym_u_SQUOTE] = ACTIONS(3147), + [anon_sym_U_SQUOTE] = ACTIONS(3147), + [anon_sym_u8_SQUOTE] = ACTIONS(3147), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_L_DQUOTE] = ACTIONS(3147), + [anon_sym_u_DQUOTE] = ACTIONS(3147), + [anon_sym_U_DQUOTE] = ACTIONS(3147), + [anon_sym_u8_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [anon_sym_NULL] = ACTIONS(3149), + [anon_sym_nullptr] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3149), + [anon_sym_decltype] = ACTIONS(3149), + [anon_sym_explicit] = ACTIONS(3149), + [anon_sym_export] = ACTIONS(3149), + [anon_sym_module] = ACTIONS(3149), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_operator] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_delete] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_static_assert] = ACTIONS(3149), + [anon_sym_concept] = ACTIONS(3149), + [anon_sym_co_return] = ACTIONS(3149), + [anon_sym_co_yield] = ACTIONS(3149), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_R_DQUOTE] = ACTIONS(3147), + [anon_sym_LR_DQUOTE] = ACTIONS(3147), + [anon_sym_uR_DQUOTE] = ACTIONS(3147), + [anon_sym_UR_DQUOTE] = ACTIONS(3147), + [anon_sym_u8R_DQUOTE] = ACTIONS(3147), + [anon_sym_co_await] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_requires] = ACTIONS(3149), + [anon_sym_CARET_CARET] = ACTIONS(3147), + [anon_sym_LBRACK_COLON] = ACTIONS(3147), + [sym_this] = ACTIONS(3149), }, - [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), + [STATE(296)] = { + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(4591), + [sym__declarator] = STATE(9959), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_type_qualifier] = STATE(5803), + [sym_alignas_qualifier] = STATE(2859), + [sym_expression] = STATE(5632), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8888), + [sym_qualified_identifier] = STATE(5924), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5803), + [aux_sym_pointer_declarator_repeat1] = STATE(4591), + [sym_identifier] = ACTIONS(3218), + [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(3220), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(61), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(297)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7482), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10571), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11072), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -101419,164 +105106,605 @@ 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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [STATE(294)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(4152), - [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), + [STATE(298)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7530), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10592), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11172), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), + }, + [STATE(299)] = { + [sym_expression] = STATE(7758), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12071), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym___extension__] = ACTIONS(3309), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym___attribute] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3317), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym___inline] = ACTIONS(3312), + [anon_sym___inline__] = ACTIONS(3312), + [anon_sym___forceinline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym___thread] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym__Nonnull] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_alignas] = ACTIONS(3312), + [anon_sym__Alignas] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [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(3322), + [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(3312), + [anon_sym_decltype] = ACTIONS(3325), + [anon_sym_template] = ACTIONS(3328), + [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(3331), + [sym_this] = ACTIONS(237), + }, + [STATE(300)] = { + [sym_expression] = STATE(7785), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12927), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3334), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym___extension__] = ACTIONS(3339), + [anon_sym_virtual] = ACTIONS(3342), + [anon_sym_extern] = ACTIONS(3342), + [anon_sym___attribute__] = ACTIONS(3342), + [anon_sym___attribute] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3344), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3347), + [anon_sym___declspec] = ACTIONS(3342), + [anon_sym_signed] = ACTIONS(3342), + [anon_sym_unsigned] = ACTIONS(3342), + [anon_sym_long] = ACTIONS(3342), + [anon_sym_short] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_register] = ACTIONS(3342), + [anon_sym_inline] = ACTIONS(3342), + [anon_sym___inline] = ACTIONS(3342), + [anon_sym___inline__] = ACTIONS(3342), + [anon_sym___forceinline] = ACTIONS(3342), + [anon_sym_thread_local] = ACTIONS(3342), + [anon_sym___thread] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_constexpr] = ACTIONS(3342), + [anon_sym_volatile] = ACTIONS(3342), + [anon_sym_restrict] = ACTIONS(3342), + [anon_sym___restrict__] = ACTIONS(3342), + [anon_sym__Atomic] = ACTIONS(3342), + [anon_sym__Noreturn] = ACTIONS(3342), + [anon_sym_noreturn] = ACTIONS(3342), + [anon_sym__Nonnull] = ACTIONS(3342), + [anon_sym_mutable] = ACTIONS(3342), + [anon_sym_constinit] = ACTIONS(3342), + [anon_sym_consteval] = ACTIONS(3342), + [anon_sym_alignas] = ACTIONS(3342), + [anon_sym__Alignas] = ACTIONS(3342), + [sym_primitive_type] = ACTIONS(3349), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_union] = ACTIONS(3342), + [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(3352), + [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(3342), + [anon_sym_decltype] = ACTIONS(3355), + [anon_sym_template] = ACTIONS(3358), + [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(3361), + [sym_this] = ACTIONS(237), + }, + [STATE(301)] = { + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(4591), + [sym__declarator] = STATE(9959), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_type_qualifier] = STATE(5803), + [sym_alignas_qualifier] = STATE(2859), + [sym_expression] = STATE(4170), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6051), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8896), + [sym_qualified_identifier] = STATE(6053), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(4330), + [aux_sym__type_definition_type_repeat1] = STATE(5803), + [aux_sym_pointer_declarator_repeat1] = STATE(4591), + [sym_identifier] = ACTIONS(3364), + [anon_sym_LPAREN2] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(3264), - [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym___extension__] = ACTIONS(3370), + [anon_sym_COLON_COLON] = ACTIONS(2813), [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(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), [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), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -101588,17 +105716,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -101607,98 +105735,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_CARET_CARET] = ACTIONS(2831), [anon_sym_LBRACK_COLON] = ACTIONS(2438), [sym_this] = ACTIONS(2418), }, - [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(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7477), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10609), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11129), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -101713,139 +105841,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7537), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10751), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11322), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -101860,139 +105988,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(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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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_else_clause] = STATE(364), + [sym_identifier] = ACTIONS(3378), + [aux_sym_preproc_include_token1] = ACTIONS(3378), + [aux_sym_preproc_def_token1] = ACTIONS(3378), + [aux_sym_preproc_if_token1] = ACTIONS(3378), + [aux_sym_preproc_if_token2] = ACTIONS(3378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3378), + [aux_sym_preproc_else_token1] = ACTIONS(3378), + [aux_sym_preproc_elif_token1] = ACTIONS(3378), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3378), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3378), + [sym_preproc_directive] = ACTIONS(3378), + [anon_sym_LPAREN2] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_AMP_AMP] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym___extension__] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3378), + [anon_sym_virtual] = ACTIONS(3378), + [anon_sym_extern] = ACTIONS(3378), + [anon_sym___attribute__] = ACTIONS(3378), + [anon_sym___attribute] = ACTIONS(3378), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_COLON_COLON] = ACTIONS(3380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3380), + [anon_sym___declspec] = ACTIONS(3378), + [anon_sym___based] = ACTIONS(3378), + [anon_sym___cdecl] = ACTIONS(3378), + [anon_sym___clrcall] = ACTIONS(3378), + [anon_sym___stdcall] = ACTIONS(3378), + [anon_sym___fastcall] = ACTIONS(3378), + [anon_sym___thiscall] = ACTIONS(3378), + [anon_sym___vectorcall] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3378), + [anon_sym_unsigned] = ACTIONS(3378), + [anon_sym_long] = ACTIONS(3378), + [anon_sym_short] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_register] = ACTIONS(3378), + [anon_sym_inline] = ACTIONS(3378), + [anon_sym___inline] = ACTIONS(3378), + [anon_sym___inline__] = ACTIONS(3378), + [anon_sym___forceinline] = ACTIONS(3378), + [anon_sym_thread_local] = ACTIONS(3378), + [anon_sym___thread] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_constexpr] = ACTIONS(3378), + [anon_sym_volatile] = ACTIONS(3378), + [anon_sym_restrict] = ACTIONS(3378), + [anon_sym___restrict__] = ACTIONS(3378), + [anon_sym__Atomic] = ACTIONS(3378), + [anon_sym__Noreturn] = ACTIONS(3378), + [anon_sym_noreturn] = ACTIONS(3378), + [anon_sym__Nonnull] = ACTIONS(3378), + [anon_sym_mutable] = ACTIONS(3378), + [anon_sym_constinit] = ACTIONS(3378), + [anon_sym_consteval] = ACTIONS(3378), + [anon_sym_alignas] = ACTIONS(3378), + [anon_sym__Alignas] = ACTIONS(3378), + [sym_primitive_type] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_case] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym___try] = ACTIONS(3378), + [anon_sym___leave] = ACTIONS(3378), + [anon_sym_not] = ACTIONS(3378), + [anon_sym_compl] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_sizeof] = ACTIONS(3378), + [anon_sym___alignof__] = ACTIONS(3378), + [anon_sym___alignof] = ACTIONS(3378), + [anon_sym__alignof] = ACTIONS(3378), + [anon_sym_alignof] = ACTIONS(3378), + [anon_sym__Alignof] = ACTIONS(3378), + [anon_sym_offsetof] = ACTIONS(3378), + [anon_sym__Generic] = ACTIONS(3378), + [anon_sym_typename] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym___asm__] = ACTIONS(3378), + [anon_sym___asm] = ACTIONS(3378), + [sym_number_literal] = ACTIONS(3380), + [anon_sym_L_SQUOTE] = ACTIONS(3380), + [anon_sym_u_SQUOTE] = ACTIONS(3380), + [anon_sym_U_SQUOTE] = ACTIONS(3380), + [anon_sym_u8_SQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [anon_sym_L_DQUOTE] = ACTIONS(3380), + [anon_sym_u_DQUOTE] = ACTIONS(3380), + [anon_sym_U_DQUOTE] = ACTIONS(3380), + [anon_sym_u8_DQUOTE] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [anon_sym_NULL] = ACTIONS(3378), + [anon_sym_nullptr] = ACTIONS(3378), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3378), + [anon_sym_decltype] = ACTIONS(3378), + [anon_sym_explicit] = ACTIONS(3378), + [anon_sym_export] = ACTIONS(3378), + [anon_sym_module] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_template] = ACTIONS(3378), + [anon_sym_operator] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_namespace] = ACTIONS(3378), + [anon_sym_static_assert] = ACTIONS(3378), + [anon_sym_concept] = ACTIONS(3378), + [anon_sym_co_return] = ACTIONS(3378), + [anon_sym_co_yield] = ACTIONS(3378), + [anon_sym_R_DQUOTE] = ACTIONS(3380), + [anon_sym_LR_DQUOTE] = ACTIONS(3380), + [anon_sym_uR_DQUOTE] = ACTIONS(3380), + [anon_sym_UR_DQUOTE] = ACTIONS(3380), + [anon_sym_u8R_DQUOTE] = ACTIONS(3380), + [anon_sym_co_await] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_requires] = ACTIONS(3378), + [anon_sym_CARET_CARET] = ACTIONS(3380), + [anon_sym_LBRACK_COLON] = ACTIONS(3380), + [sym_this] = ACTIONS(3378), + }, + [STATE(305)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7413), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10566), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11060), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102007,139 +106282,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(306)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7430), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10641), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11177), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102154,139 +106429,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3386), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(307)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7442), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10725), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11290), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102301,139 +106576,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3388), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(308)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7462), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10565), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11385), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102448,139 +106723,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(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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3390), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(309)] = { + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_include_token1] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token2] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [aux_sym_preproc_else_token1] = ACTIONS(3392), + [aux_sym_preproc_elif_token1] = ACTIONS(3392), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym___attribute] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym___cdecl] = ACTIONS(3392), + [anon_sym___clrcall] = ACTIONS(3392), + [anon_sym___stdcall] = ACTIONS(3392), + [anon_sym___fastcall] = ACTIONS(3392), + [anon_sym___thiscall] = ACTIONS(3392), + [anon_sym___vectorcall] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym__Nonnull] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym__Alignas] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_else] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3392), + [anon_sym_default] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_goto] = ACTIONS(3392), + [anon_sym___try] = ACTIONS(3392), + [anon_sym___leave] = ACTIONS(3392), + [anon_sym_not] = ACTIONS(3392), + [anon_sym_compl] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_sizeof] = ACTIONS(3392), + [anon_sym___alignof__] = ACTIONS(3392), + [anon_sym___alignof] = ACTIONS(3392), + [anon_sym__alignof] = ACTIONS(3392), + [anon_sym_alignof] = ACTIONS(3392), + [anon_sym__Alignof] = ACTIONS(3392), + [anon_sym_offsetof] = ACTIONS(3392), + [anon_sym__Generic] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [anon_sym_asm] = ACTIONS(3392), + [anon_sym___asm__] = ACTIONS(3392), + [anon_sym___asm] = ACTIONS(3392), + [sym_number_literal] = ACTIONS(3394), + [anon_sym_L_SQUOTE] = ACTIONS(3394), + [anon_sym_u_SQUOTE] = ACTIONS(3394), + [anon_sym_U_SQUOTE] = ACTIONS(3394), + [anon_sym_u8_SQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_L_DQUOTE] = ACTIONS(3394), + [anon_sym_u_DQUOTE] = ACTIONS(3394), + [anon_sym_U_DQUOTE] = ACTIONS(3394), + [anon_sym_u8_DQUOTE] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [anon_sym_NULL] = ACTIONS(3392), + [anon_sym_nullptr] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_export] = ACTIONS(3392), + [anon_sym_module] = ACTIONS(3392), + [anon_sym_import] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [anon_sym_concept] = ACTIONS(3392), + [anon_sym_co_return] = ACTIONS(3392), + [anon_sym_co_yield] = ACTIONS(3392), + [anon_sym_catch] = ACTIONS(3392), + [anon_sym_R_DQUOTE] = ACTIONS(3394), + [anon_sym_LR_DQUOTE] = ACTIONS(3394), + [anon_sym_uR_DQUOTE] = ACTIONS(3394), + [anon_sym_UR_DQUOTE] = ACTIONS(3394), + [anon_sym_u8R_DQUOTE] = ACTIONS(3394), + [anon_sym_co_await] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_requires] = ACTIONS(3392), + [anon_sym_CARET_CARET] = ACTIONS(3394), + [anon_sym_LBRACK_COLON] = ACTIONS(3394), + [sym_this] = ACTIONS(3392), + }, + [STATE(310)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7484), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10572), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11106), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102595,139 +107017,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3396), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(311)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7485), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10667), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11255), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102742,139 +107164,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3398), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(312)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7487), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10763), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11324), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102889,139 +107311,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3400), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(313)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7488), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10806), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10814), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103036,139 +107458,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(314)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7489), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10729), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103183,139 +107605,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(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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3404), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(315)] = { + [sym_else_clause] = STATE(390), + [sym_identifier] = ACTIONS(3406), + [aux_sym_preproc_include_token1] = ACTIONS(3406), + [aux_sym_preproc_def_token1] = ACTIONS(3406), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_if_token2] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), + [aux_sym_preproc_else_token1] = ACTIONS(3406), + [aux_sym_preproc_elif_token1] = ACTIONS(3406), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3406), + [sym_preproc_directive] = ACTIONS(3406), + [anon_sym_LPAREN2] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym___extension__] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_virtual] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym___attribute__] = ACTIONS(3406), + [anon_sym___attribute] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), + [anon_sym___declspec] = ACTIONS(3406), + [anon_sym___based] = ACTIONS(3406), + [anon_sym___cdecl] = ACTIONS(3406), + [anon_sym___clrcall] = ACTIONS(3406), + [anon_sym___stdcall] = ACTIONS(3406), + [anon_sym___fastcall] = ACTIONS(3406), + [anon_sym___thiscall] = ACTIONS(3406), + [anon_sym___vectorcall] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_signed] = ACTIONS(3406), + [anon_sym_unsigned] = ACTIONS(3406), + [anon_sym_long] = ACTIONS(3406), + [anon_sym_short] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_register] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym___inline] = ACTIONS(3406), + [anon_sym___inline__] = ACTIONS(3406), + [anon_sym___forceinline] = ACTIONS(3406), + [anon_sym_thread_local] = ACTIONS(3406), + [anon_sym___thread] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_constexpr] = ACTIONS(3406), + [anon_sym_volatile] = ACTIONS(3406), + [anon_sym_restrict] = ACTIONS(3406), + [anon_sym___restrict__] = ACTIONS(3406), + [anon_sym__Atomic] = ACTIONS(3406), + [anon_sym__Noreturn] = ACTIONS(3406), + [anon_sym_noreturn] = ACTIONS(3406), + [anon_sym__Nonnull] = ACTIONS(3406), + [anon_sym_mutable] = ACTIONS(3406), + [anon_sym_constinit] = ACTIONS(3406), + [anon_sym_consteval] = ACTIONS(3406), + [anon_sym_alignas] = ACTIONS(3406), + [anon_sym__Alignas] = ACTIONS(3406), + [sym_primitive_type] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym___try] = ACTIONS(3406), + [anon_sym___leave] = ACTIONS(3406), + [anon_sym_not] = ACTIONS(3406), + [anon_sym_compl] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3406), + [anon_sym___alignof__] = ACTIONS(3406), + [anon_sym___alignof] = ACTIONS(3406), + [anon_sym__alignof] = ACTIONS(3406), + [anon_sym_alignof] = ACTIONS(3406), + [anon_sym__Alignof] = ACTIONS(3406), + [anon_sym_offsetof] = ACTIONS(3406), + [anon_sym__Generic] = ACTIONS(3406), + [anon_sym_typename] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym___asm__] = ACTIONS(3406), + [anon_sym___asm] = ACTIONS(3406), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_L_SQUOTE] = ACTIONS(3408), + [anon_sym_u_SQUOTE] = ACTIONS(3408), + [anon_sym_U_SQUOTE] = ACTIONS(3408), + [anon_sym_u8_SQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_L_DQUOTE] = ACTIONS(3408), + [anon_sym_u_DQUOTE] = ACTIONS(3408), + [anon_sym_U_DQUOTE] = ACTIONS(3408), + [anon_sym_u8_DQUOTE] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [anon_sym_NULL] = ACTIONS(3406), + [anon_sym_nullptr] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3406), + [anon_sym_decltype] = ACTIONS(3406), + [anon_sym_explicit] = ACTIONS(3406), + [anon_sym_export] = ACTIONS(3406), + [anon_sym_module] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_template] = ACTIONS(3406), + [anon_sym_operator] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_static_assert] = ACTIONS(3406), + [anon_sym_concept] = ACTIONS(3406), + [anon_sym_co_return] = ACTIONS(3406), + [anon_sym_co_yield] = ACTIONS(3406), + [anon_sym_R_DQUOTE] = ACTIONS(3408), + [anon_sym_LR_DQUOTE] = ACTIONS(3408), + [anon_sym_uR_DQUOTE] = ACTIONS(3408), + [anon_sym_UR_DQUOTE] = ACTIONS(3408), + [anon_sym_u8R_DQUOTE] = ACTIONS(3408), + [anon_sym_co_await] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_requires] = ACTIONS(3406), + [anon_sym_CARET_CARET] = ACTIONS(3408), + [anon_sym_LBRACK_COLON] = ACTIONS(3408), + [sym_this] = ACTIONS(3406), + }, + [STATE(316)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7491), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10611), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10841), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103330,139 +107899,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(317)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7492), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10655), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10864), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103477,580 +108046,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3412), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(318)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7493), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10715), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10876), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104065,286 +108193,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(319)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7494), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10556), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10890), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104359,433 +108340,433 @@ 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), + [sym_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3416), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(320)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7495), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10589), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10906), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3418), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(321)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7496), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10615), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10919), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3420), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(322)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7497), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10642), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10930), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104800,286 +108781,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(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), + [sym_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3422), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(323)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7498), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10658), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10941), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3424), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(324)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7499), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10670), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10954), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -105094,139 +109075,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3426), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(325)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7500), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10691), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10966), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -105241,139 +109222,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3428), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(326)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7501), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10697), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10971), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -105388,139 +109369,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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3430), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(327)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7502), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10706), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10977), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -105535,469 +109516,288 @@ 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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3432), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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(328)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7503), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10712), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10984), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [STATE(323)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(4152), - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym___extension__] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [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(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), - }, - [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), - [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_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), + [STATE(329)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7584), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10723), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10991), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -106007,435 +109807,144 @@ 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(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_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(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), - [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), + [sym_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3436), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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), - }, - [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), + [STATE(330)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7505), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10733), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10997), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -106445,289 +109954,144 @@ 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(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_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(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_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(331)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7506), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10736), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11002), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -106737,143 +110101,144 @@ 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(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_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_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3440), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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), - [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_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), + [STATE(332)] = { + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7480), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(10766), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(10887), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -106883,271 +110248,2350 @@ 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(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_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_primitive_type] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(333)] = { + [sym_identifier] = ACTIONS(3444), + [aux_sym_preproc_include_token1] = ACTIONS(3444), + [aux_sym_preproc_def_token1] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3444), + [aux_sym_preproc_if_token2] = ACTIONS(3444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), + [aux_sym_preproc_else_token1] = ACTIONS(3444), + [aux_sym_preproc_elif_token1] = ACTIONS(3444), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3444), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3444), + [sym_preproc_directive] = ACTIONS(3444), + [anon_sym_LPAREN2] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP_AMP] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3444), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(3444), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_virtual] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(3444), + [anon_sym___attribute__] = ACTIONS(3444), + [anon_sym___attribute] = ACTIONS(3444), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_COLON_COLON] = ACTIONS(3446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), + [anon_sym___declspec] = ACTIONS(3444), + [anon_sym___based] = ACTIONS(3444), + [anon_sym___cdecl] = ACTIONS(3444), + [anon_sym___clrcall] = ACTIONS(3444), + [anon_sym___stdcall] = ACTIONS(3444), + [anon_sym___fastcall] = ACTIONS(3444), + [anon_sym___thiscall] = ACTIONS(3444), + [anon_sym___vectorcall] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_signed] = ACTIONS(3444), + [anon_sym_unsigned] = ACTIONS(3444), + [anon_sym_long] = ACTIONS(3444), + [anon_sym_short] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_register] = ACTIONS(3444), + [anon_sym_inline] = ACTIONS(3444), + [anon_sym___inline] = ACTIONS(3444), + [anon_sym___inline__] = ACTIONS(3444), + [anon_sym___forceinline] = ACTIONS(3444), + [anon_sym_thread_local] = ACTIONS(3444), + [anon_sym___thread] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_constexpr] = ACTIONS(3444), + [anon_sym_volatile] = ACTIONS(3444), + [anon_sym_restrict] = ACTIONS(3444), + [anon_sym___restrict__] = ACTIONS(3444), + [anon_sym__Atomic] = ACTIONS(3444), + [anon_sym__Noreturn] = ACTIONS(3444), + [anon_sym_noreturn] = ACTIONS(3444), + [anon_sym__Nonnull] = ACTIONS(3444), + [anon_sym_mutable] = ACTIONS(3444), + [anon_sym_constinit] = ACTIONS(3444), + [anon_sym_consteval] = ACTIONS(3444), + [anon_sym_alignas] = ACTIONS(3444), + [anon_sym__Alignas] = ACTIONS(3444), + [sym_primitive_type] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_struct] = ACTIONS(3444), + [anon_sym_union] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_else] = ACTIONS(3444), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_case] = ACTIONS(3444), + [anon_sym_default] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_goto] = ACTIONS(3444), + [anon_sym___try] = ACTIONS(3444), + [anon_sym___leave] = ACTIONS(3444), + [anon_sym_not] = ACTIONS(3444), + [anon_sym_compl] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_sizeof] = ACTIONS(3444), + [anon_sym___alignof__] = ACTIONS(3444), + [anon_sym___alignof] = ACTIONS(3444), + [anon_sym__alignof] = ACTIONS(3444), + [anon_sym_alignof] = ACTIONS(3444), + [anon_sym__Alignof] = ACTIONS(3444), + [anon_sym_offsetof] = ACTIONS(3444), + [anon_sym__Generic] = ACTIONS(3444), + [anon_sym_typename] = ACTIONS(3444), + [anon_sym_asm] = ACTIONS(3444), + [anon_sym___asm__] = ACTIONS(3444), + [anon_sym___asm] = ACTIONS(3444), + [sym_number_literal] = ACTIONS(3446), + [anon_sym_L_SQUOTE] = ACTIONS(3446), + [anon_sym_u_SQUOTE] = ACTIONS(3446), + [anon_sym_U_SQUOTE] = ACTIONS(3446), + [anon_sym_u8_SQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_L_DQUOTE] = ACTIONS(3446), + [anon_sym_u_DQUOTE] = ACTIONS(3446), + [anon_sym_U_DQUOTE] = ACTIONS(3446), + [anon_sym_u8_DQUOTE] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [anon_sym_NULL] = ACTIONS(3444), + [anon_sym_nullptr] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3444), + [anon_sym_decltype] = ACTIONS(3444), + [anon_sym_explicit] = ACTIONS(3444), + [anon_sym_export] = ACTIONS(3444), + [anon_sym_module] = ACTIONS(3444), + [anon_sym_import] = ACTIONS(3444), + [anon_sym_template] = ACTIONS(3444), + [anon_sym_operator] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_delete] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_namespace] = ACTIONS(3444), + [anon_sym_static_assert] = ACTIONS(3444), + [anon_sym_concept] = ACTIONS(3444), + [anon_sym_co_return] = ACTIONS(3444), + [anon_sym_co_yield] = ACTIONS(3444), + [anon_sym_R_DQUOTE] = ACTIONS(3446), + [anon_sym_LR_DQUOTE] = ACTIONS(3446), + [anon_sym_uR_DQUOTE] = ACTIONS(3446), + [anon_sym_UR_DQUOTE] = ACTIONS(3446), + [anon_sym_u8R_DQUOTE] = ACTIONS(3446), + [anon_sym_co_await] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_requires] = ACTIONS(3444), + [anon_sym_CARET_CARET] = ACTIONS(3446), + [anon_sym_LBRACK_COLON] = ACTIONS(3446), + [sym_this] = ACTIONS(3444), + }, + [STATE(334)] = { + [sym_identifier] = ACTIONS(3448), + [aux_sym_preproc_include_token1] = ACTIONS(3448), + [aux_sym_preproc_def_token1] = ACTIONS(3448), + [aux_sym_preproc_if_token1] = ACTIONS(3448), + [aux_sym_preproc_if_token2] = ACTIONS(3448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3448), + [aux_sym_preproc_else_token1] = ACTIONS(3448), + [aux_sym_preproc_elif_token1] = ACTIONS(3448), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3448), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3448), + [sym_preproc_directive] = ACTIONS(3448), + [anon_sym_LPAREN2] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3450), + [anon_sym_AMP_AMP] = ACTIONS(3450), [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym___extension__] = ACTIONS(3448), + [anon_sym_typedef] = ACTIONS(3448), + [anon_sym_virtual] = ACTIONS(3448), + [anon_sym_extern] = ACTIONS(3448), + [anon_sym___attribute__] = ACTIONS(3448), + [anon_sym___attribute] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3448), + [anon_sym_COLON_COLON] = ACTIONS(3450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3450), + [anon_sym___declspec] = ACTIONS(3448), + [anon_sym___based] = ACTIONS(3448), + [anon_sym___cdecl] = ACTIONS(3448), + [anon_sym___clrcall] = ACTIONS(3448), + [anon_sym___stdcall] = ACTIONS(3448), + [anon_sym___fastcall] = ACTIONS(3448), + [anon_sym___thiscall] = ACTIONS(3448), + [anon_sym___vectorcall] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_signed] = ACTIONS(3448), + [anon_sym_unsigned] = ACTIONS(3448), + [anon_sym_long] = ACTIONS(3448), + [anon_sym_short] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_register] = ACTIONS(3448), + [anon_sym_inline] = ACTIONS(3448), + [anon_sym___inline] = ACTIONS(3448), + [anon_sym___inline__] = ACTIONS(3448), + [anon_sym___forceinline] = ACTIONS(3448), + [anon_sym_thread_local] = ACTIONS(3448), + [anon_sym___thread] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_constexpr] = ACTIONS(3448), + [anon_sym_volatile] = ACTIONS(3448), + [anon_sym_restrict] = ACTIONS(3448), + [anon_sym___restrict__] = ACTIONS(3448), + [anon_sym__Atomic] = ACTIONS(3448), + [anon_sym__Noreturn] = ACTIONS(3448), + [anon_sym_noreturn] = ACTIONS(3448), + [anon_sym__Nonnull] = ACTIONS(3448), + [anon_sym_mutable] = ACTIONS(3448), + [anon_sym_constinit] = ACTIONS(3448), + [anon_sym_consteval] = ACTIONS(3448), + [anon_sym_alignas] = ACTIONS(3448), + [anon_sym__Alignas] = ACTIONS(3448), + [sym_primitive_type] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), + [anon_sym_class] = ACTIONS(3448), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_union] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3448), + [anon_sym_case] = ACTIONS(3448), + [anon_sym_default] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_do] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_goto] = ACTIONS(3448), + [anon_sym___try] = ACTIONS(3448), + [anon_sym___leave] = ACTIONS(3448), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_sizeof] = ACTIONS(3448), + [anon_sym___alignof__] = ACTIONS(3448), + [anon_sym___alignof] = ACTIONS(3448), + [anon_sym__alignof] = ACTIONS(3448), + [anon_sym_alignof] = ACTIONS(3448), + [anon_sym__Alignof] = ACTIONS(3448), + [anon_sym_offsetof] = ACTIONS(3448), + [anon_sym__Generic] = ACTIONS(3448), + [anon_sym_typename] = ACTIONS(3448), + [anon_sym_asm] = ACTIONS(3448), + [anon_sym___asm__] = ACTIONS(3448), + [anon_sym___asm] = ACTIONS(3448), + [sym_number_literal] = ACTIONS(3450), + [anon_sym_L_SQUOTE] = ACTIONS(3450), + [anon_sym_u_SQUOTE] = ACTIONS(3450), + [anon_sym_U_SQUOTE] = ACTIONS(3450), + [anon_sym_u8_SQUOTE] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3450), + [anon_sym_L_DQUOTE] = ACTIONS(3450), + [anon_sym_u_DQUOTE] = ACTIONS(3450), + [anon_sym_U_DQUOTE] = ACTIONS(3450), + [anon_sym_u8_DQUOTE] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(3450), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [anon_sym_NULL] = ACTIONS(3448), + [anon_sym_nullptr] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3448), + [anon_sym_decltype] = ACTIONS(3448), + [anon_sym_explicit] = ACTIONS(3448), + [anon_sym_export] = ACTIONS(3448), + [anon_sym_module] = ACTIONS(3448), + [anon_sym_import] = ACTIONS(3448), + [anon_sym_template] = ACTIONS(3448), + [anon_sym_operator] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [anon_sym_delete] = ACTIONS(3448), + [anon_sym_throw] = ACTIONS(3448), + [anon_sym_namespace] = ACTIONS(3448), + [anon_sym_static_assert] = ACTIONS(3448), + [anon_sym_concept] = ACTIONS(3448), + [anon_sym_co_return] = ACTIONS(3448), + [anon_sym_co_yield] = ACTIONS(3448), + [anon_sym_R_DQUOTE] = ACTIONS(3450), + [anon_sym_LR_DQUOTE] = ACTIONS(3450), + [anon_sym_uR_DQUOTE] = ACTIONS(3450), + [anon_sym_UR_DQUOTE] = ACTIONS(3450), + [anon_sym_u8R_DQUOTE] = ACTIONS(3450), + [anon_sym_co_await] = ACTIONS(3448), + [anon_sym_new] = ACTIONS(3448), + [anon_sym_requires] = ACTIONS(3448), + [anon_sym_CARET_CARET] = ACTIONS(3450), + [anon_sym_LBRACK_COLON] = ACTIONS(3450), + [sym_this] = ACTIONS(3448), + }, + [STATE(335)] = { + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_include_token1] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token2] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [aux_sym_preproc_else_token1] = ACTIONS(3452), + [aux_sym_preproc_elif_token1] = ACTIONS(3452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), [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_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym___cdecl] = ACTIONS(3452), + [anon_sym___clrcall] = ACTIONS(3452), + [anon_sym___stdcall] = ACTIONS(3452), + [anon_sym___fastcall] = ACTIONS(3452), + [anon_sym___thiscall] = ACTIONS(3452), + [anon_sym___vectorcall] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym___try] = ACTIONS(3452), + [anon_sym___leave] = ACTIONS(3452), + [anon_sym_not] = ACTIONS(3452), + [anon_sym_compl] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym___alignof__] = ACTIONS(3452), + [anon_sym___alignof] = ACTIONS(3452), + [anon_sym__alignof] = ACTIONS(3452), + [anon_sym_alignof] = ACTIONS(3452), + [anon_sym__Alignof] = ACTIONS(3452), + [anon_sym_offsetof] = ACTIONS(3452), + [anon_sym__Generic] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym___asm__] = ACTIONS(3452), + [anon_sym___asm] = ACTIONS(3452), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_L_SQUOTE] = ACTIONS(3454), + [anon_sym_u_SQUOTE] = ACTIONS(3454), + [anon_sym_U_SQUOTE] = ACTIONS(3454), + [anon_sym_u8_SQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_L_DQUOTE] = ACTIONS(3454), + [anon_sym_u_DQUOTE] = ACTIONS(3454), + [anon_sym_U_DQUOTE] = ACTIONS(3454), + [anon_sym_u8_DQUOTE] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [anon_sym_NULL] = ACTIONS(3452), + [anon_sym_nullptr] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_concept] = ACTIONS(3452), + [anon_sym_co_return] = ACTIONS(3452), + [anon_sym_co_yield] = ACTIONS(3452), + [anon_sym_R_DQUOTE] = ACTIONS(3454), + [anon_sym_LR_DQUOTE] = ACTIONS(3454), + [anon_sym_uR_DQUOTE] = ACTIONS(3454), + [anon_sym_UR_DQUOTE] = ACTIONS(3454), + [anon_sym_u8R_DQUOTE] = ACTIONS(3454), + [anon_sym_co_await] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_requires] = ACTIONS(3452), + [anon_sym_CARET_CARET] = ACTIONS(3454), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + [sym_this] = ACTIONS(3452), + }, + [STATE(336)] = { + [sym_identifier] = ACTIONS(3456), + [aux_sym_preproc_include_token1] = ACTIONS(3456), + [aux_sym_preproc_def_token1] = ACTIONS(3456), + [aux_sym_preproc_if_token1] = ACTIONS(3456), + [aux_sym_preproc_if_token2] = ACTIONS(3456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3456), + [aux_sym_preproc_else_token1] = ACTIONS(3456), + [aux_sym_preproc_elif_token1] = ACTIONS(3456), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3456), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3456), + [sym_preproc_directive] = ACTIONS(3456), + [anon_sym_LPAREN2] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(3458), + [anon_sym_AMP_AMP] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym___extension__] = ACTIONS(3456), + [anon_sym_typedef] = ACTIONS(3456), + [anon_sym_virtual] = ACTIONS(3456), + [anon_sym_extern] = ACTIONS(3456), + [anon_sym___attribute__] = ACTIONS(3456), + [anon_sym___attribute] = ACTIONS(3456), [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_LBRACK] = ACTIONS(3458), + [anon_sym___declspec] = ACTIONS(3456), + [anon_sym___based] = ACTIONS(3456), + [anon_sym___cdecl] = ACTIONS(3456), + [anon_sym___clrcall] = ACTIONS(3456), + [anon_sym___stdcall] = ACTIONS(3456), + [anon_sym___fastcall] = ACTIONS(3456), + [anon_sym___thiscall] = ACTIONS(3456), + [anon_sym___vectorcall] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_signed] = ACTIONS(3456), + [anon_sym_unsigned] = ACTIONS(3456), + [anon_sym_long] = ACTIONS(3456), + [anon_sym_short] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_register] = ACTIONS(3456), + [anon_sym_inline] = ACTIONS(3456), + [anon_sym___inline] = ACTIONS(3456), + [anon_sym___inline__] = ACTIONS(3456), + [anon_sym___forceinline] = ACTIONS(3456), + [anon_sym_thread_local] = ACTIONS(3456), + [anon_sym___thread] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_constexpr] = ACTIONS(3456), + [anon_sym_volatile] = ACTIONS(3456), + [anon_sym_restrict] = ACTIONS(3456), + [anon_sym___restrict__] = ACTIONS(3456), + [anon_sym__Atomic] = ACTIONS(3456), + [anon_sym__Noreturn] = ACTIONS(3456), + [anon_sym_noreturn] = ACTIONS(3456), + [anon_sym__Nonnull] = ACTIONS(3456), + [anon_sym_mutable] = ACTIONS(3456), + [anon_sym_constinit] = ACTIONS(3456), + [anon_sym_consteval] = ACTIONS(3456), + [anon_sym_alignas] = ACTIONS(3456), + [anon_sym__Alignas] = ACTIONS(3456), + [sym_primitive_type] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), + [anon_sym_class] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(3456), + [anon_sym_union] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_case] = ACTIONS(3456), + [anon_sym_default] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_goto] = ACTIONS(3456), + [anon_sym___try] = ACTIONS(3456), + [anon_sym___leave] = ACTIONS(3456), + [anon_sym_not] = ACTIONS(3456), + [anon_sym_compl] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_sizeof] = ACTIONS(3456), + [anon_sym___alignof__] = ACTIONS(3456), + [anon_sym___alignof] = ACTIONS(3456), + [anon_sym__alignof] = ACTIONS(3456), + [anon_sym_alignof] = ACTIONS(3456), + [anon_sym__Alignof] = ACTIONS(3456), + [anon_sym_offsetof] = ACTIONS(3456), + [anon_sym__Generic] = ACTIONS(3456), + [anon_sym_typename] = ACTIONS(3456), + [anon_sym_asm] = ACTIONS(3456), + [anon_sym___asm__] = ACTIONS(3456), + [anon_sym___asm] = ACTIONS(3456), + [sym_number_literal] = ACTIONS(3458), + [anon_sym_L_SQUOTE] = ACTIONS(3458), + [anon_sym_u_SQUOTE] = ACTIONS(3458), + [anon_sym_U_SQUOTE] = ACTIONS(3458), + [anon_sym_u8_SQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_L_DQUOTE] = ACTIONS(3458), + [anon_sym_u_DQUOTE] = ACTIONS(3458), + [anon_sym_U_DQUOTE] = ACTIONS(3458), + [anon_sym_u8_DQUOTE] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [sym_true] = ACTIONS(3456), + [sym_false] = ACTIONS(3456), + [anon_sym_NULL] = ACTIONS(3456), + [anon_sym_nullptr] = ACTIONS(3456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3456), + [anon_sym_decltype] = ACTIONS(3456), + [anon_sym_explicit] = ACTIONS(3456), + [anon_sym_export] = ACTIONS(3456), + [anon_sym_module] = ACTIONS(3456), + [anon_sym_import] = ACTIONS(3456), + [anon_sym_template] = ACTIONS(3456), + [anon_sym_operator] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_delete] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_namespace] = ACTIONS(3456), + [anon_sym_static_assert] = ACTIONS(3456), + [anon_sym_concept] = ACTIONS(3456), + [anon_sym_co_return] = ACTIONS(3456), + [anon_sym_co_yield] = ACTIONS(3456), + [anon_sym_R_DQUOTE] = ACTIONS(3458), + [anon_sym_LR_DQUOTE] = ACTIONS(3458), + [anon_sym_uR_DQUOTE] = ACTIONS(3458), + [anon_sym_UR_DQUOTE] = ACTIONS(3458), + [anon_sym_u8R_DQUOTE] = ACTIONS(3458), + [anon_sym_co_await] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_requires] = ACTIONS(3456), + [anon_sym_CARET_CARET] = ACTIONS(3458), + [anon_sym_LBRACK_COLON] = ACTIONS(3458), + [sym_this] = ACTIONS(3456), + }, + [STATE(337)] = { + [sym_identifier] = ACTIONS(3460), + [aux_sym_preproc_include_token1] = ACTIONS(3460), + [aux_sym_preproc_def_token1] = ACTIONS(3460), + [aux_sym_preproc_if_token1] = ACTIONS(3460), + [aux_sym_preproc_if_token2] = ACTIONS(3460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3460), + [aux_sym_preproc_else_token1] = ACTIONS(3460), + [aux_sym_preproc_elif_token1] = ACTIONS(3460), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3460), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3460), + [sym_preproc_directive] = ACTIONS(3460), + [anon_sym_LPAREN2] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_PLUS] = ACTIONS(3460), + [anon_sym_STAR] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3460), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym___extension__] = ACTIONS(3460), + [anon_sym_typedef] = ACTIONS(3460), + [anon_sym_virtual] = ACTIONS(3460), + [anon_sym_extern] = ACTIONS(3460), + [anon_sym___attribute__] = ACTIONS(3460), + [anon_sym___attribute] = ACTIONS(3460), + [anon_sym_using] = ACTIONS(3460), + [anon_sym_COLON_COLON] = ACTIONS(3462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3462), + [anon_sym___declspec] = ACTIONS(3460), + [anon_sym___based] = ACTIONS(3460), + [anon_sym___cdecl] = ACTIONS(3460), + [anon_sym___clrcall] = ACTIONS(3460), + [anon_sym___stdcall] = ACTIONS(3460), + [anon_sym___fastcall] = ACTIONS(3460), + [anon_sym___thiscall] = ACTIONS(3460), + [anon_sym___vectorcall] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_signed] = ACTIONS(3460), + [anon_sym_unsigned] = ACTIONS(3460), + [anon_sym_long] = ACTIONS(3460), + [anon_sym_short] = ACTIONS(3460), [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_static] = ACTIONS(3460), + [anon_sym_register] = ACTIONS(3460), + [anon_sym_inline] = ACTIONS(3460), + [anon_sym___inline] = ACTIONS(3460), + [anon_sym___inline__] = ACTIONS(3460), + [anon_sym___forceinline] = ACTIONS(3460), + [anon_sym_thread_local] = ACTIONS(3460), + [anon_sym___thread] = ACTIONS(3460), + [anon_sym_const] = ACTIONS(3460), + [anon_sym_constexpr] = ACTIONS(3460), + [anon_sym_volatile] = ACTIONS(3460), + [anon_sym_restrict] = ACTIONS(3460), + [anon_sym___restrict__] = ACTIONS(3460), + [anon_sym__Atomic] = ACTIONS(3460), + [anon_sym__Noreturn] = ACTIONS(3460), + [anon_sym_noreturn] = ACTIONS(3460), + [anon_sym__Nonnull] = ACTIONS(3460), + [anon_sym_mutable] = ACTIONS(3460), + [anon_sym_constinit] = ACTIONS(3460), + [anon_sym_consteval] = ACTIONS(3460), + [anon_sym_alignas] = ACTIONS(3460), + [anon_sym__Alignas] = ACTIONS(3460), + [sym_primitive_type] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), + [anon_sym_class] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(3460), + [anon_sym_union] = ACTIONS(3460), + [anon_sym_if] = ACTIONS(3460), + [anon_sym_else] = ACTIONS(3460), + [anon_sym_switch] = ACTIONS(3460), + [anon_sym_case] = ACTIONS(3460), + [anon_sym_default] = ACTIONS(3460), + [anon_sym_while] = ACTIONS(3460), + [anon_sym_do] = ACTIONS(3460), + [anon_sym_for] = ACTIONS(3460), + [anon_sym_return] = ACTIONS(3460), + [anon_sym_break] = ACTIONS(3460), + [anon_sym_continue] = ACTIONS(3460), + [anon_sym_goto] = ACTIONS(3460), + [anon_sym___try] = ACTIONS(3460), + [anon_sym___leave] = ACTIONS(3460), + [anon_sym_not] = ACTIONS(3460), + [anon_sym_compl] = ACTIONS(3460), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_sizeof] = ACTIONS(3460), + [anon_sym___alignof__] = ACTIONS(3460), + [anon_sym___alignof] = ACTIONS(3460), + [anon_sym__alignof] = ACTIONS(3460), + [anon_sym_alignof] = ACTIONS(3460), + [anon_sym__Alignof] = ACTIONS(3460), + [anon_sym_offsetof] = ACTIONS(3460), + [anon_sym__Generic] = ACTIONS(3460), + [anon_sym_typename] = ACTIONS(3460), + [anon_sym_asm] = ACTIONS(3460), + [anon_sym___asm__] = ACTIONS(3460), + [anon_sym___asm] = ACTIONS(3460), + [sym_number_literal] = ACTIONS(3462), + [anon_sym_L_SQUOTE] = ACTIONS(3462), + [anon_sym_u_SQUOTE] = ACTIONS(3462), + [anon_sym_U_SQUOTE] = ACTIONS(3462), + [anon_sym_u8_SQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_L_DQUOTE] = ACTIONS(3462), + [anon_sym_u_DQUOTE] = ACTIONS(3462), + [anon_sym_U_DQUOTE] = ACTIONS(3462), + [anon_sym_u8_DQUOTE] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [sym_true] = ACTIONS(3460), + [sym_false] = ACTIONS(3460), + [anon_sym_NULL] = ACTIONS(3460), + [anon_sym_nullptr] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3460), + [anon_sym_decltype] = ACTIONS(3460), + [anon_sym_explicit] = ACTIONS(3460), + [anon_sym_export] = ACTIONS(3460), + [anon_sym_module] = ACTIONS(3460), + [anon_sym_import] = ACTIONS(3460), + [anon_sym_template] = ACTIONS(3460), + [anon_sym_operator] = ACTIONS(3460), + [anon_sym_try] = ACTIONS(3460), + [anon_sym_delete] = ACTIONS(3460), + [anon_sym_throw] = ACTIONS(3460), + [anon_sym_namespace] = ACTIONS(3460), + [anon_sym_static_assert] = ACTIONS(3460), + [anon_sym_concept] = ACTIONS(3460), + [anon_sym_co_return] = ACTIONS(3460), + [anon_sym_co_yield] = ACTIONS(3460), + [anon_sym_R_DQUOTE] = ACTIONS(3462), + [anon_sym_LR_DQUOTE] = ACTIONS(3462), + [anon_sym_uR_DQUOTE] = ACTIONS(3462), + [anon_sym_UR_DQUOTE] = ACTIONS(3462), + [anon_sym_u8R_DQUOTE] = ACTIONS(3462), + [anon_sym_co_await] = ACTIONS(3460), + [anon_sym_new] = ACTIONS(3460), + [anon_sym_requires] = ACTIONS(3460), + [anon_sym_CARET_CARET] = ACTIONS(3462), + [anon_sym_LBRACK_COLON] = ACTIONS(3462), + [sym_this] = ACTIONS(3460), + }, + [STATE(338)] = { + [sym_identifier] = ACTIONS(3464), + [aux_sym_preproc_include_token1] = ACTIONS(3464), + [aux_sym_preproc_def_token1] = ACTIONS(3464), + [aux_sym_preproc_if_token1] = ACTIONS(3464), + [aux_sym_preproc_if_token2] = ACTIONS(3464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3464), + [aux_sym_preproc_else_token1] = ACTIONS(3464), + [aux_sym_preproc_elif_token1] = ACTIONS(3464), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3464), + [sym_preproc_directive] = ACTIONS(3464), + [anon_sym_LPAREN2] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_AMP_AMP] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym___extension__] = ACTIONS(3464), + [anon_sym_typedef] = ACTIONS(3464), + [anon_sym_virtual] = ACTIONS(3464), + [anon_sym_extern] = ACTIONS(3464), + [anon_sym___attribute__] = ACTIONS(3464), + [anon_sym___attribute] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_COLON_COLON] = ACTIONS(3466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3466), + [anon_sym___declspec] = ACTIONS(3464), + [anon_sym___based] = ACTIONS(3464), + [anon_sym___cdecl] = ACTIONS(3464), + [anon_sym___clrcall] = ACTIONS(3464), + [anon_sym___stdcall] = ACTIONS(3464), + [anon_sym___fastcall] = ACTIONS(3464), + [anon_sym___thiscall] = ACTIONS(3464), + [anon_sym___vectorcall] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_signed] = ACTIONS(3464), + [anon_sym_unsigned] = ACTIONS(3464), + [anon_sym_long] = ACTIONS(3464), + [anon_sym_short] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_register] = ACTIONS(3464), + [anon_sym_inline] = ACTIONS(3464), + [anon_sym___inline] = ACTIONS(3464), + [anon_sym___inline__] = ACTIONS(3464), + [anon_sym___forceinline] = ACTIONS(3464), + [anon_sym_thread_local] = ACTIONS(3464), + [anon_sym___thread] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_constexpr] = ACTIONS(3464), + [anon_sym_volatile] = ACTIONS(3464), + [anon_sym_restrict] = ACTIONS(3464), + [anon_sym___restrict__] = ACTIONS(3464), + [anon_sym__Atomic] = ACTIONS(3464), + [anon_sym__Noreturn] = ACTIONS(3464), + [anon_sym_noreturn] = ACTIONS(3464), + [anon_sym__Nonnull] = ACTIONS(3464), + [anon_sym_mutable] = ACTIONS(3464), + [anon_sym_constinit] = ACTIONS(3464), [anon_sym_consteval] = ACTIONS(3464), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [anon_sym_alignas] = ACTIONS(3464), + [anon_sym__Alignas] = ACTIONS(3464), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_struct] = ACTIONS(3464), + [anon_sym_union] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_goto] = ACTIONS(3464), + [anon_sym___try] = ACTIONS(3464), + [anon_sym___leave] = ACTIONS(3464), + [anon_sym_not] = ACTIONS(3464), + [anon_sym_compl] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(3464), + [anon_sym___alignof__] = ACTIONS(3464), + [anon_sym___alignof] = ACTIONS(3464), + [anon_sym__alignof] = ACTIONS(3464), + [anon_sym_alignof] = ACTIONS(3464), + [anon_sym__Alignof] = ACTIONS(3464), + [anon_sym_offsetof] = ACTIONS(3464), + [anon_sym__Generic] = ACTIONS(3464), + [anon_sym_typename] = ACTIONS(3464), + [anon_sym_asm] = ACTIONS(3464), + [anon_sym___asm__] = ACTIONS(3464), + [anon_sym___asm] = ACTIONS(3464), + [sym_number_literal] = ACTIONS(3466), + [anon_sym_L_SQUOTE] = ACTIONS(3466), + [anon_sym_u_SQUOTE] = ACTIONS(3466), + [anon_sym_U_SQUOTE] = ACTIONS(3466), + [anon_sym_u8_SQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_L_DQUOTE] = ACTIONS(3466), + [anon_sym_u_DQUOTE] = ACTIONS(3466), + [anon_sym_U_DQUOTE] = ACTIONS(3466), + [anon_sym_u8_DQUOTE] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [anon_sym_NULL] = ACTIONS(3464), + [anon_sym_nullptr] = ACTIONS(3464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3464), + [anon_sym_decltype] = ACTIONS(3464), + [anon_sym_explicit] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_template] = ACTIONS(3464), + [anon_sym_operator] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_static_assert] = ACTIONS(3464), + [anon_sym_concept] = ACTIONS(3464), + [anon_sym_co_return] = ACTIONS(3464), + [anon_sym_co_yield] = ACTIONS(3464), + [anon_sym_R_DQUOTE] = ACTIONS(3466), + [anon_sym_LR_DQUOTE] = ACTIONS(3466), + [anon_sym_uR_DQUOTE] = ACTIONS(3466), + [anon_sym_UR_DQUOTE] = ACTIONS(3466), + [anon_sym_u8R_DQUOTE] = ACTIONS(3466), + [anon_sym_co_await] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_requires] = ACTIONS(3464), + [anon_sym_CARET_CARET] = ACTIONS(3466), + [anon_sym_LBRACK_COLON] = ACTIONS(3466), + [sym_this] = ACTIONS(3464), + }, + [STATE(339)] = { + [sym_identifier] = ACTIONS(3468), + [aux_sym_preproc_include_token1] = ACTIONS(3468), + [aux_sym_preproc_def_token1] = ACTIONS(3468), + [aux_sym_preproc_if_token1] = ACTIONS(3468), + [aux_sym_preproc_if_token2] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), + [aux_sym_preproc_else_token1] = ACTIONS(3468), + [aux_sym_preproc_elif_token1] = ACTIONS(3468), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3468), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3468), + [sym_preproc_directive] = ACTIONS(3468), + [anon_sym_LPAREN2] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym___extension__] = ACTIONS(3468), + [anon_sym_typedef] = ACTIONS(3468), + [anon_sym_virtual] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym___attribute__] = ACTIONS(3468), + [anon_sym___attribute] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_COLON_COLON] = ACTIONS(3470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3470), + [anon_sym___declspec] = ACTIONS(3468), + [anon_sym___based] = ACTIONS(3468), + [anon_sym___cdecl] = ACTIONS(3468), + [anon_sym___clrcall] = ACTIONS(3468), + [anon_sym___stdcall] = ACTIONS(3468), + [anon_sym___fastcall] = ACTIONS(3468), + [anon_sym___thiscall] = ACTIONS(3468), + [anon_sym___vectorcall] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_signed] = ACTIONS(3468), + [anon_sym_unsigned] = ACTIONS(3468), + [anon_sym_long] = ACTIONS(3468), + [anon_sym_short] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_register] = ACTIONS(3468), + [anon_sym_inline] = ACTIONS(3468), + [anon_sym___inline] = ACTIONS(3468), + [anon_sym___inline__] = ACTIONS(3468), + [anon_sym___forceinline] = ACTIONS(3468), + [anon_sym_thread_local] = ACTIONS(3468), + [anon_sym___thread] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_constexpr] = ACTIONS(3468), + [anon_sym_volatile] = ACTIONS(3468), + [anon_sym_restrict] = ACTIONS(3468), + [anon_sym___restrict__] = ACTIONS(3468), + [anon_sym__Atomic] = ACTIONS(3468), + [anon_sym__Noreturn] = ACTIONS(3468), + [anon_sym_noreturn] = ACTIONS(3468), + [anon_sym__Nonnull] = ACTIONS(3468), + [anon_sym_mutable] = ACTIONS(3468), + [anon_sym_constinit] = ACTIONS(3468), + [anon_sym_consteval] = ACTIONS(3468), + [anon_sym_alignas] = ACTIONS(3468), + [anon_sym__Alignas] = ACTIONS(3468), + [sym_primitive_type] = ACTIONS(3468), [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), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_union] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_goto] = ACTIONS(3468), + [anon_sym___try] = ACTIONS(3468), + [anon_sym___leave] = ACTIONS(3468), + [anon_sym_not] = ACTIONS(3468), + [anon_sym_compl] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_sizeof] = ACTIONS(3468), + [anon_sym___alignof__] = ACTIONS(3468), + [anon_sym___alignof] = ACTIONS(3468), + [anon_sym__alignof] = ACTIONS(3468), + [anon_sym_alignof] = ACTIONS(3468), + [anon_sym__Alignof] = ACTIONS(3468), + [anon_sym_offsetof] = ACTIONS(3468), + [anon_sym__Generic] = ACTIONS(3468), + [anon_sym_typename] = ACTIONS(3468), + [anon_sym_asm] = ACTIONS(3468), + [anon_sym___asm__] = ACTIONS(3468), + [anon_sym___asm] = ACTIONS(3468), + [sym_number_literal] = ACTIONS(3470), + [anon_sym_L_SQUOTE] = ACTIONS(3470), + [anon_sym_u_SQUOTE] = ACTIONS(3470), + [anon_sym_U_SQUOTE] = ACTIONS(3470), + [anon_sym_u8_SQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_L_DQUOTE] = ACTIONS(3470), + [anon_sym_u_DQUOTE] = ACTIONS(3470), + [anon_sym_U_DQUOTE] = ACTIONS(3470), + [anon_sym_u8_DQUOTE] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [anon_sym_NULL] = ACTIONS(3468), + [anon_sym_nullptr] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3468), + [anon_sym_decltype] = ACTIONS(3468), + [anon_sym_explicit] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_template] = ACTIONS(3468), + [anon_sym_operator] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_static_assert] = ACTIONS(3468), + [anon_sym_concept] = ACTIONS(3468), + [anon_sym_co_return] = ACTIONS(3468), + [anon_sym_co_yield] = ACTIONS(3468), + [anon_sym_R_DQUOTE] = ACTIONS(3470), + [anon_sym_LR_DQUOTE] = ACTIONS(3470), + [anon_sym_uR_DQUOTE] = ACTIONS(3470), + [anon_sym_UR_DQUOTE] = ACTIONS(3470), + [anon_sym_u8R_DQUOTE] = ACTIONS(3470), + [anon_sym_co_await] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_requires] = ACTIONS(3468), + [anon_sym_CARET_CARET] = ACTIONS(3470), + [anon_sym_LBRACK_COLON] = ACTIONS(3470), + [sym_this] = ACTIONS(3468), + }, + [STATE(340)] = { + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_include_token1] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [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(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3472), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3176), + [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(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [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(3176), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3176), + [anon_sym_u_DQUOTE] = ACTIONS(3176), + [anon_sym_U_DQUOTE] = ACTIONS(3176), + [anon_sym_u8_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [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(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_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_R_DQUOTE] = ACTIONS(3176), + [anon_sym_LR_DQUOTE] = ACTIONS(3176), + [anon_sym_uR_DQUOTE] = ACTIONS(3176), + [anon_sym_UR_DQUOTE] = ACTIONS(3176), + [anon_sym_u8R_DQUOTE] = ACTIONS(3176), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3176), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [STATE(341)] = { + [sym_identifier] = ACTIONS(3474), + [aux_sym_preproc_include_token1] = ACTIONS(3474), + [aux_sym_preproc_def_token1] = ACTIONS(3474), + [aux_sym_preproc_if_token1] = ACTIONS(3474), + [aux_sym_preproc_if_token2] = ACTIONS(3474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3474), + [aux_sym_preproc_else_token1] = ACTIONS(3474), + [aux_sym_preproc_elif_token1] = ACTIONS(3474), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3474), + [sym_preproc_directive] = ACTIONS(3474), + [anon_sym_LPAREN2] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_STAR] = ACTIONS(3476), + [anon_sym_AMP_AMP] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3474), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym___extension__] = ACTIONS(3474), + [anon_sym_typedef] = ACTIONS(3474), + [anon_sym_virtual] = ACTIONS(3474), + [anon_sym_extern] = ACTIONS(3474), + [anon_sym___attribute__] = ACTIONS(3474), + [anon_sym___attribute] = ACTIONS(3474), + [anon_sym_using] = ACTIONS(3474), + [anon_sym_COLON_COLON] = ACTIONS(3476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3476), + [anon_sym___declspec] = ACTIONS(3474), + [anon_sym___based] = ACTIONS(3474), + [anon_sym___cdecl] = ACTIONS(3474), + [anon_sym___clrcall] = ACTIONS(3474), + [anon_sym___stdcall] = ACTIONS(3474), + [anon_sym___fastcall] = ACTIONS(3474), + [anon_sym___thiscall] = ACTIONS(3474), + [anon_sym___vectorcall] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_signed] = ACTIONS(3474), + [anon_sym_unsigned] = ACTIONS(3474), + [anon_sym_long] = ACTIONS(3474), + [anon_sym_short] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_register] = ACTIONS(3474), + [anon_sym_inline] = ACTIONS(3474), + [anon_sym___inline] = ACTIONS(3474), + [anon_sym___inline__] = ACTIONS(3474), + [anon_sym___forceinline] = ACTIONS(3474), + [anon_sym_thread_local] = ACTIONS(3474), + [anon_sym___thread] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_constexpr] = ACTIONS(3474), + [anon_sym_volatile] = ACTIONS(3474), + [anon_sym_restrict] = ACTIONS(3474), + [anon_sym___restrict__] = ACTIONS(3474), + [anon_sym__Atomic] = ACTIONS(3474), + [anon_sym__Noreturn] = ACTIONS(3474), + [anon_sym_noreturn] = ACTIONS(3474), + [anon_sym__Nonnull] = ACTIONS(3474), + [anon_sym_mutable] = ACTIONS(3474), + [anon_sym_constinit] = ACTIONS(3474), + [anon_sym_consteval] = ACTIONS(3474), + [anon_sym_alignas] = ACTIONS(3474), + [anon_sym__Alignas] = ACTIONS(3474), + [sym_primitive_type] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_struct] = ACTIONS(3474), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_else] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_case] = ACTIONS(3474), + [anon_sym_default] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_goto] = ACTIONS(3474), + [anon_sym___try] = ACTIONS(3474), + [anon_sym___leave] = ACTIONS(3474), + [anon_sym_not] = ACTIONS(3474), + [anon_sym_compl] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_sizeof] = ACTIONS(3474), + [anon_sym___alignof__] = ACTIONS(3474), + [anon_sym___alignof] = ACTIONS(3474), + [anon_sym__alignof] = ACTIONS(3474), + [anon_sym_alignof] = ACTIONS(3474), + [anon_sym__Alignof] = ACTIONS(3474), + [anon_sym_offsetof] = ACTIONS(3474), + [anon_sym__Generic] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3474), + [anon_sym_asm] = ACTIONS(3474), + [anon_sym___asm__] = ACTIONS(3474), + [anon_sym___asm] = ACTIONS(3474), + [sym_number_literal] = ACTIONS(3476), + [anon_sym_L_SQUOTE] = ACTIONS(3476), + [anon_sym_u_SQUOTE] = ACTIONS(3476), + [anon_sym_U_SQUOTE] = ACTIONS(3476), + [anon_sym_u8_SQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_L_DQUOTE] = ACTIONS(3476), + [anon_sym_u_DQUOTE] = ACTIONS(3476), + [anon_sym_U_DQUOTE] = ACTIONS(3476), + [anon_sym_u8_DQUOTE] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [anon_sym_NULL] = ACTIONS(3474), + [anon_sym_nullptr] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3474), + [anon_sym_decltype] = ACTIONS(3474), + [anon_sym_explicit] = ACTIONS(3474), + [anon_sym_export] = ACTIONS(3474), + [anon_sym_module] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_template] = ACTIONS(3474), + [anon_sym_operator] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_namespace] = ACTIONS(3474), + [anon_sym_static_assert] = ACTIONS(3474), + [anon_sym_concept] = ACTIONS(3474), + [anon_sym_co_return] = ACTIONS(3474), + [anon_sym_co_yield] = ACTIONS(3474), + [anon_sym_R_DQUOTE] = ACTIONS(3476), + [anon_sym_LR_DQUOTE] = ACTIONS(3476), + [anon_sym_uR_DQUOTE] = ACTIONS(3476), + [anon_sym_UR_DQUOTE] = ACTIONS(3476), + [anon_sym_u8R_DQUOTE] = ACTIONS(3476), + [anon_sym_co_await] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_requires] = ACTIONS(3474), + [anon_sym_CARET_CARET] = ACTIONS(3476), + [anon_sym_LBRACK_COLON] = ACTIONS(3476), + [sym_this] = ACTIONS(3474), + }, + [STATE(342)] = { + [sym_identifier] = ACTIONS(3312), + [aux_sym_preproc_include_token1] = ACTIONS(3312), + [aux_sym_preproc_def_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token2] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3312), + [aux_sym_preproc_else_token1] = ACTIONS(3312), + [aux_sym_preproc_elif_token1] = ACTIONS(3312), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3312), + [sym_preproc_directive] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym___extension__] = ACTIONS(3312), + [anon_sym_typedef] = ACTIONS(3312), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym___attribute] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3317), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym___based] = ACTIONS(3312), + [anon_sym___cdecl] = ACTIONS(3312), + [anon_sym___clrcall] = ACTIONS(3312), + [anon_sym___stdcall] = ACTIONS(3312), + [anon_sym___fastcall] = ACTIONS(3312), + [anon_sym___thiscall] = ACTIONS(3312), + [anon_sym___vectorcall] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym___inline] = ACTIONS(3312), + [anon_sym___inline__] = ACTIONS(3312), + [anon_sym___forceinline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym___thread] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym__Nonnull] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_alignas] = ACTIONS(3312), + [anon_sym__Alignas] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym___try] = ACTIONS(3312), + [anon_sym___leave] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_compl] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_sizeof] = ACTIONS(3312), + [anon_sym___alignof__] = ACTIONS(3312), + [anon_sym___alignof] = ACTIONS(3312), + [anon_sym__alignof] = ACTIONS(3312), + [anon_sym_alignof] = ACTIONS(3312), + [anon_sym__Alignof] = ACTIONS(3312), + [anon_sym_offsetof] = ACTIONS(3312), + [anon_sym__Generic] = ACTIONS(3312), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym___asm__] = ACTIONS(3312), + [anon_sym___asm] = ACTIONS(3312), + [sym_number_literal] = ACTIONS(3317), + [anon_sym_L_SQUOTE] = ACTIONS(3317), + [anon_sym_u_SQUOTE] = ACTIONS(3317), + [anon_sym_U_SQUOTE] = ACTIONS(3317), + [anon_sym_u8_SQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_L_DQUOTE] = ACTIONS(3317), + [anon_sym_u_DQUOTE] = ACTIONS(3317), + [anon_sym_U_DQUOTE] = ACTIONS(3317), + [anon_sym_u8_DQUOTE] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [anon_sym_NULL] = ACTIONS(3312), + [anon_sym_nullptr] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3312), + [anon_sym_decltype] = ACTIONS(3312), + [anon_sym_explicit] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3312), + [anon_sym_operator] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_static_assert] = ACTIONS(3312), + [anon_sym_concept] = ACTIONS(3312), + [anon_sym_co_return] = ACTIONS(3312), + [anon_sym_co_yield] = ACTIONS(3312), + [anon_sym_R_DQUOTE] = ACTIONS(3317), + [anon_sym_LR_DQUOTE] = ACTIONS(3317), + [anon_sym_uR_DQUOTE] = ACTIONS(3317), + [anon_sym_UR_DQUOTE] = ACTIONS(3317), + [anon_sym_u8R_DQUOTE] = ACTIONS(3317), + [anon_sym_co_await] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_requires] = ACTIONS(3312), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(3317), + [sym_this] = ACTIONS(3312), + }, + [STATE(343)] = { + [sym_identifier] = ACTIONS(3478), + [aux_sym_preproc_include_token1] = ACTIONS(3478), + [aux_sym_preproc_def_token1] = ACTIONS(3478), + [aux_sym_preproc_if_token1] = ACTIONS(3478), + [aux_sym_preproc_if_token2] = ACTIONS(3478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3478), + [aux_sym_preproc_else_token1] = ACTIONS(3478), + [aux_sym_preproc_elif_token1] = ACTIONS(3478), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3478), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3478), + [sym_preproc_directive] = ACTIONS(3478), + [anon_sym_LPAREN2] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(3480), + [anon_sym_AMP_AMP] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym___extension__] = ACTIONS(3478), + [anon_sym_typedef] = ACTIONS(3478), + [anon_sym_virtual] = ACTIONS(3478), + [anon_sym_extern] = ACTIONS(3478), + [anon_sym___attribute__] = ACTIONS(3478), + [anon_sym___attribute] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_COLON_COLON] = ACTIONS(3480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3480), + [anon_sym___declspec] = ACTIONS(3478), + [anon_sym___based] = ACTIONS(3478), + [anon_sym___cdecl] = ACTIONS(3478), + [anon_sym___clrcall] = ACTIONS(3478), + [anon_sym___stdcall] = ACTIONS(3478), + [anon_sym___fastcall] = ACTIONS(3478), + [anon_sym___thiscall] = ACTIONS(3478), + [anon_sym___vectorcall] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_signed] = ACTIONS(3478), + [anon_sym_unsigned] = ACTIONS(3478), + [anon_sym_long] = ACTIONS(3478), + [anon_sym_short] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_register] = ACTIONS(3478), + [anon_sym_inline] = ACTIONS(3478), + [anon_sym___inline] = ACTIONS(3478), + [anon_sym___inline__] = ACTIONS(3478), + [anon_sym___forceinline] = ACTIONS(3478), + [anon_sym_thread_local] = ACTIONS(3478), + [anon_sym___thread] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_constexpr] = ACTIONS(3478), + [anon_sym_volatile] = ACTIONS(3478), + [anon_sym_restrict] = ACTIONS(3478), + [anon_sym___restrict__] = ACTIONS(3478), + [anon_sym__Atomic] = ACTIONS(3478), + [anon_sym__Noreturn] = ACTIONS(3478), + [anon_sym_noreturn] = ACTIONS(3478), + [anon_sym__Nonnull] = ACTIONS(3478), + [anon_sym_mutable] = ACTIONS(3478), + [anon_sym_constinit] = ACTIONS(3478), + [anon_sym_consteval] = ACTIONS(3478), + [anon_sym_alignas] = ACTIONS(3478), + [anon_sym__Alignas] = ACTIONS(3478), + [sym_primitive_type] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_struct] = ACTIONS(3478), + [anon_sym_union] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_goto] = ACTIONS(3478), + [anon_sym___try] = ACTIONS(3478), + [anon_sym___leave] = ACTIONS(3478), + [anon_sym_not] = ACTIONS(3478), + [anon_sym_compl] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_sizeof] = ACTIONS(3478), + [anon_sym___alignof__] = ACTIONS(3478), + [anon_sym___alignof] = ACTIONS(3478), + [anon_sym__alignof] = ACTIONS(3478), + [anon_sym_alignof] = ACTIONS(3478), + [anon_sym__Alignof] = ACTIONS(3478), + [anon_sym_offsetof] = ACTIONS(3478), + [anon_sym__Generic] = ACTIONS(3478), + [anon_sym_typename] = ACTIONS(3478), + [anon_sym_asm] = ACTIONS(3478), + [anon_sym___asm__] = ACTIONS(3478), + [anon_sym___asm] = ACTIONS(3478), + [sym_number_literal] = ACTIONS(3480), + [anon_sym_L_SQUOTE] = ACTIONS(3480), + [anon_sym_u_SQUOTE] = ACTIONS(3480), + [anon_sym_U_SQUOTE] = ACTIONS(3480), + [anon_sym_u8_SQUOTE] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3480), + [anon_sym_L_DQUOTE] = ACTIONS(3480), + [anon_sym_u_DQUOTE] = ACTIONS(3480), + [anon_sym_U_DQUOTE] = ACTIONS(3480), + [anon_sym_u8_DQUOTE] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [anon_sym_NULL] = ACTIONS(3478), + [anon_sym_nullptr] = ACTIONS(3478), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3478), + [anon_sym_decltype] = ACTIONS(3478), + [anon_sym_explicit] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3478), + [anon_sym_operator] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3478), + [anon_sym_concept] = ACTIONS(3478), + [anon_sym_co_return] = ACTIONS(3478), + [anon_sym_co_yield] = ACTIONS(3478), + [anon_sym_R_DQUOTE] = ACTIONS(3480), + [anon_sym_LR_DQUOTE] = ACTIONS(3480), + [anon_sym_uR_DQUOTE] = ACTIONS(3480), + [anon_sym_UR_DQUOTE] = ACTIONS(3480), + [anon_sym_u8R_DQUOTE] = ACTIONS(3480), + [anon_sym_co_await] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_requires] = ACTIONS(3478), + [anon_sym_CARET_CARET] = ACTIONS(3480), + [anon_sym_LBRACK_COLON] = ACTIONS(3480), + [sym_this] = ACTIONS(3478), + }, + [STATE(344)] = { + [sym_identifier] = ACTIONS(3482), + [aux_sym_preproc_include_token1] = ACTIONS(3482), + [aux_sym_preproc_def_token1] = ACTIONS(3482), + [aux_sym_preproc_if_token1] = ACTIONS(3482), + [aux_sym_preproc_if_token2] = ACTIONS(3482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3482), + [aux_sym_preproc_else_token1] = ACTIONS(3482), + [aux_sym_preproc_elif_token1] = ACTIONS(3482), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3482), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3482), + [sym_preproc_directive] = ACTIONS(3482), + [anon_sym_LPAREN2] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_AMP_AMP] = ACTIONS(3484), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym___extension__] = ACTIONS(3482), + [anon_sym_typedef] = ACTIONS(3482), + [anon_sym_virtual] = ACTIONS(3482), + [anon_sym_extern] = ACTIONS(3482), + [anon_sym___attribute__] = ACTIONS(3482), + [anon_sym___attribute] = ACTIONS(3482), + [anon_sym_using] = ACTIONS(3482), + [anon_sym_COLON_COLON] = ACTIONS(3484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3484), + [anon_sym___declspec] = ACTIONS(3482), + [anon_sym___based] = ACTIONS(3482), + [anon_sym___cdecl] = ACTIONS(3482), + [anon_sym___clrcall] = ACTIONS(3482), + [anon_sym___stdcall] = ACTIONS(3482), + [anon_sym___fastcall] = ACTIONS(3482), + [anon_sym___thiscall] = ACTIONS(3482), + [anon_sym___vectorcall] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_signed] = ACTIONS(3482), + [anon_sym_unsigned] = ACTIONS(3482), + [anon_sym_long] = ACTIONS(3482), + [anon_sym_short] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_register] = ACTIONS(3482), + [anon_sym_inline] = ACTIONS(3482), + [anon_sym___inline] = ACTIONS(3482), + [anon_sym___inline__] = ACTIONS(3482), + [anon_sym___forceinline] = ACTIONS(3482), + [anon_sym_thread_local] = ACTIONS(3482), + [anon_sym___thread] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_constexpr] = ACTIONS(3482), + [anon_sym_volatile] = ACTIONS(3482), + [anon_sym_restrict] = ACTIONS(3482), + [anon_sym___restrict__] = ACTIONS(3482), + [anon_sym__Atomic] = ACTIONS(3482), + [anon_sym__Noreturn] = ACTIONS(3482), + [anon_sym_noreturn] = ACTIONS(3482), + [anon_sym__Nonnull] = ACTIONS(3482), + [anon_sym_mutable] = ACTIONS(3482), + [anon_sym_constinit] = ACTIONS(3482), + [anon_sym_consteval] = ACTIONS(3482), + [anon_sym_alignas] = ACTIONS(3482), + [anon_sym__Alignas] = ACTIONS(3482), + [sym_primitive_type] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_struct] = ACTIONS(3482), + [anon_sym_union] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_case] = ACTIONS(3482), + [anon_sym_default] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_goto] = ACTIONS(3482), + [anon_sym___try] = ACTIONS(3482), + [anon_sym___leave] = ACTIONS(3482), + [anon_sym_not] = ACTIONS(3482), + [anon_sym_compl] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_sizeof] = ACTIONS(3482), + [anon_sym___alignof__] = ACTIONS(3482), + [anon_sym___alignof] = ACTIONS(3482), + [anon_sym__alignof] = ACTIONS(3482), + [anon_sym_alignof] = ACTIONS(3482), + [anon_sym__Alignof] = ACTIONS(3482), + [anon_sym_offsetof] = ACTIONS(3482), + [anon_sym__Generic] = ACTIONS(3482), + [anon_sym_typename] = ACTIONS(3482), + [anon_sym_asm] = ACTIONS(3482), + [anon_sym___asm__] = ACTIONS(3482), + [anon_sym___asm] = ACTIONS(3482), + [sym_number_literal] = ACTIONS(3484), + [anon_sym_L_SQUOTE] = ACTIONS(3484), + [anon_sym_u_SQUOTE] = ACTIONS(3484), + [anon_sym_U_SQUOTE] = ACTIONS(3484), + [anon_sym_u8_SQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [anon_sym_L_DQUOTE] = ACTIONS(3484), + [anon_sym_u_DQUOTE] = ACTIONS(3484), + [anon_sym_U_DQUOTE] = ACTIONS(3484), + [anon_sym_u8_DQUOTE] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [sym_true] = ACTIONS(3482), + [sym_false] = ACTIONS(3482), + [anon_sym_NULL] = ACTIONS(3482), + [anon_sym_nullptr] = ACTIONS(3482), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3482), + [anon_sym_decltype] = ACTIONS(3482), + [anon_sym_explicit] = ACTIONS(3482), + [anon_sym_export] = ACTIONS(3482), + [anon_sym_module] = ACTIONS(3482), + [anon_sym_import] = ACTIONS(3482), + [anon_sym_template] = ACTIONS(3482), + [anon_sym_operator] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_delete] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_namespace] = ACTIONS(3482), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_concept] = ACTIONS(3482), + [anon_sym_co_return] = ACTIONS(3482), + [anon_sym_co_yield] = ACTIONS(3482), + [anon_sym_R_DQUOTE] = ACTIONS(3484), + [anon_sym_LR_DQUOTE] = ACTIONS(3484), + [anon_sym_uR_DQUOTE] = ACTIONS(3484), + [anon_sym_UR_DQUOTE] = ACTIONS(3484), + [anon_sym_u8R_DQUOTE] = ACTIONS(3484), + [anon_sym_co_await] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_requires] = ACTIONS(3482), + [anon_sym_CARET_CARET] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(3482), + }, + [STATE(345)] = { + [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(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(346)] = { + [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(3452), - [anon_sym_typedef] = ACTIONS(3454), + [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(347)] = { + [sym_identifier] = ACTIONS(3196), + [aux_sym_preproc_include_token1] = ACTIONS(3196), + [aux_sym_preproc_def_token1] = ACTIONS(3196), + [aux_sym_preproc_if_token1] = ACTIONS(3196), + [aux_sym_preproc_if_token2] = ACTIONS(3196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3196), + [aux_sym_preproc_else_token1] = ACTIONS(3196), + [aux_sym_preproc_elif_token1] = ACTIONS(3196), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3196), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3196), + [sym_preproc_directive] = ACTIONS(3196), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_typedef] = ACTIONS(3196), + [anon_sym_virtual] = ACTIONS(3196), + [anon_sym_extern] = ACTIONS(3196), + [anon_sym___attribute__] = ACTIONS(3196), + [anon_sym___attribute] = ACTIONS(3196), + [anon_sym_using] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3196), + [anon_sym___based] = ACTIONS(3196), + [anon_sym___cdecl] = ACTIONS(3196), + [anon_sym___clrcall] = ACTIONS(3196), + [anon_sym___stdcall] = ACTIONS(3196), + [anon_sym___fastcall] = ACTIONS(3196), + [anon_sym___thiscall] = ACTIONS(3196), + [anon_sym___vectorcall] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_signed] = ACTIONS(3196), + [anon_sym_unsigned] = ACTIONS(3196), + [anon_sym_long] = ACTIONS(3196), + [anon_sym_short] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_register] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym___inline] = ACTIONS(3196), + [anon_sym___inline__] = ACTIONS(3196), + [anon_sym___forceinline] = ACTIONS(3196), + [anon_sym_thread_local] = ACTIONS(3196), + [anon_sym___thread] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_constexpr] = ACTIONS(3196), + [anon_sym_volatile] = ACTIONS(3196), + [anon_sym_restrict] = ACTIONS(3196), + [anon_sym___restrict__] = ACTIONS(3196), + [anon_sym__Atomic] = ACTIONS(3196), + [anon_sym__Noreturn] = ACTIONS(3196), + [anon_sym_noreturn] = ACTIONS(3196), + [anon_sym__Nonnull] = ACTIONS(3196), + [anon_sym_mutable] = ACTIONS(3196), + [anon_sym_constinit] = ACTIONS(3196), + [anon_sym_consteval] = ACTIONS(3196), + [anon_sym_alignas] = ACTIONS(3196), + [anon_sym__Alignas] = ACTIONS(3196), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), + [anon_sym_class] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3196), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3196), + [anon_sym_case] = ACTIONS(3196), + [anon_sym_default] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_do] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_goto] = ACTIONS(3196), + [anon_sym___try] = ACTIONS(3196), + [anon_sym___leave] = ACTIONS(3196), + [anon_sym_not] = ACTIONS(3196), + [anon_sym_compl] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3196), + [anon_sym___alignof__] = ACTIONS(3196), + [anon_sym___alignof] = ACTIONS(3196), + [anon_sym__alignof] = ACTIONS(3196), + [anon_sym_alignof] = ACTIONS(3196), + [anon_sym__Alignof] = ACTIONS(3196), + [anon_sym_offsetof] = ACTIONS(3196), + [anon_sym__Generic] = ACTIONS(3196), + [anon_sym_typename] = ACTIONS(3196), + [anon_sym_asm] = ACTIONS(3196), + [anon_sym___asm__] = ACTIONS(3196), + [anon_sym___asm] = ACTIONS(3196), + [sym_number_literal] = ACTIONS(3201), + [anon_sym_L_SQUOTE] = ACTIONS(3201), + [anon_sym_u_SQUOTE] = ACTIONS(3201), + [anon_sym_U_SQUOTE] = ACTIONS(3201), + [anon_sym_u8_SQUOTE] = ACTIONS(3201), + [anon_sym_SQUOTE] = ACTIONS(3201), + [anon_sym_L_DQUOTE] = ACTIONS(3201), + [anon_sym_u_DQUOTE] = ACTIONS(3201), + [anon_sym_U_DQUOTE] = ACTIONS(3201), + [anon_sym_u8_DQUOTE] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [sym_true] = ACTIONS(3196), + [sym_false] = ACTIONS(3196), + [anon_sym_NULL] = ACTIONS(3196), + [anon_sym_nullptr] = ACTIONS(3196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3196), + [anon_sym_decltype] = ACTIONS(3196), + [anon_sym_explicit] = ACTIONS(3196), + [anon_sym_export] = ACTIONS(3196), + [anon_sym_module] = ACTIONS(3196), + [anon_sym_import] = ACTIONS(3196), + [anon_sym_template] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_delete] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_namespace] = ACTIONS(3196), + [anon_sym_static_assert] = ACTIONS(3196), + [anon_sym_concept] = ACTIONS(3196), + [anon_sym_co_return] = ACTIONS(3196), + [anon_sym_co_yield] = ACTIONS(3196), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3196), + [anon_sym_requires] = ACTIONS(3196), + [anon_sym_CARET_CARET] = ACTIONS(3201), + [anon_sym_LBRACK_COLON] = ACTIONS(3201), + [sym_this] = ACTIONS(3196), + }, + [STATE(348)] = { + [sym_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_field_declaration_list] = STATE(575), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), + [sym_preproc_else_in_field_declaration_list] = STATE(12881), + [sym_preproc_elif_in_field_declaration_list] = STATE(12881), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12881), + [sym_type_definition] = STATE(575), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(575), + [sym_field_declaration] = STATE(575), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(575), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(575), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(575), + [sym_operator_cast_declaration] = STATE(575), + [sym_constructor_or_destructor_definition] = STATE(575), + [sym_constructor_or_destructor_declaration] = STATE(575), + [sym_friend_declaration] = STATE(575), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(575), + [sym_alias_declaration] = STATE(575), + [sym_static_assert_declaration] = STATE(575), + [sym_consteval_block_declaration] = STATE(575), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), [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_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -107155,7 +112599,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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -107165,7 +112609,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(3532), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -107175,126 +112619,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(3534), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(3550), [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(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(349)] = { + [sym_expression] = STATE(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3143), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -107307,7 +112751,7 @@ static const uint16_t ts_parse_table[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(3129), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -107327,9 +112771,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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -107340,690 +112784,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(3148), + [anon_sym_LBRACK_COLON] = ACTIONS(3138), [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), - }, - [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), - [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_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(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), - [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_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(350)] = { + [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(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), - [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(351)] = { + [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(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(352)] = { + [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(12935), + [sym_preproc_elif_in_field_declaration_list] = STATE(12935), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12935), + [sym_type_definition] = STATE(348), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(348), + [sym_field_declaration] = STATE(348), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(348), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(348), + [sym__constructor_specifiers] = STATE(2815), + [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(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [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(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(348), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(3568), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), [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_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -108031,7 +113183,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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -108041,7 +113193,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(3532), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -108051,709 +113203,417 @@ 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(3534), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(3550), [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), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(353)] = { + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_include_token1] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token2] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [aux_sym_preproc_else_token1] = ACTIONS(3570), + [aux_sym_preproc_elif_token1] = ACTIONS(3570), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym___cdecl] = ACTIONS(3570), + [anon_sym___clrcall] = ACTIONS(3570), + [anon_sym___stdcall] = ACTIONS(3570), + [anon_sym___fastcall] = ACTIONS(3570), + [anon_sym___thiscall] = ACTIONS(3570), + [anon_sym___vectorcall] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_case] = ACTIONS(3570), + [anon_sym_default] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym___try] = ACTIONS(3570), + [anon_sym___leave] = ACTIONS(3570), + [anon_sym_not] = ACTIONS(3570), + [anon_sym_compl] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3570), + [anon_sym___alignof__] = ACTIONS(3570), + [anon_sym___alignof] = ACTIONS(3570), + [anon_sym__alignof] = ACTIONS(3570), + [anon_sym_alignof] = ACTIONS(3570), + [anon_sym__Alignof] = ACTIONS(3570), + [anon_sym_offsetof] = ACTIONS(3570), + [anon_sym__Generic] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym___asm__] = ACTIONS(3570), + [anon_sym___asm] = ACTIONS(3570), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_L_SQUOTE] = ACTIONS(3572), + [anon_sym_u_SQUOTE] = ACTIONS(3572), + [anon_sym_U_SQUOTE] = ACTIONS(3572), + [anon_sym_u8_SQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_L_DQUOTE] = ACTIONS(3572), + [anon_sym_u_DQUOTE] = ACTIONS(3572), + [anon_sym_U_DQUOTE] = ACTIONS(3572), + [anon_sym_u8_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [anon_sym_NULL] = ACTIONS(3570), + [anon_sym_nullptr] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_module] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_concept] = ACTIONS(3570), + [anon_sym_co_return] = ACTIONS(3570), + [anon_sym_co_yield] = ACTIONS(3570), + [anon_sym_R_DQUOTE] = ACTIONS(3572), + [anon_sym_LR_DQUOTE] = ACTIONS(3572), + [anon_sym_uR_DQUOTE] = ACTIONS(3572), + [anon_sym_UR_DQUOTE] = ACTIONS(3572), + [anon_sym_u8R_DQUOTE] = ACTIONS(3572), + [anon_sym_co_await] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_requires] = ACTIONS(3570), + [anon_sym_CARET_CARET] = ACTIONS(3572), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), + [sym_this] = ACTIONS(3570), }, - [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(354)] = { + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_include_token1] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token2] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [aux_sym_preproc_else_token1] = ACTIONS(3570), + [aux_sym_preproc_elif_token1] = ACTIONS(3570), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym___cdecl] = ACTIONS(3570), + [anon_sym___clrcall] = ACTIONS(3570), + [anon_sym___stdcall] = ACTIONS(3570), + [anon_sym___fastcall] = ACTIONS(3570), + [anon_sym___thiscall] = ACTIONS(3570), + [anon_sym___vectorcall] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_case] = ACTIONS(3570), + [anon_sym_default] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym___try] = ACTIONS(3570), + [anon_sym___leave] = ACTIONS(3570), + [anon_sym_not] = ACTIONS(3570), + [anon_sym_compl] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3570), + [anon_sym___alignof__] = ACTIONS(3570), + [anon_sym___alignof] = ACTIONS(3570), + [anon_sym__alignof] = ACTIONS(3570), + [anon_sym_alignof] = ACTIONS(3570), + [anon_sym__Alignof] = ACTIONS(3570), + [anon_sym_offsetof] = ACTIONS(3570), + [anon_sym__Generic] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym___asm__] = ACTIONS(3570), + [anon_sym___asm] = ACTIONS(3570), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_L_SQUOTE] = ACTIONS(3572), + [anon_sym_u_SQUOTE] = ACTIONS(3572), + [anon_sym_U_SQUOTE] = ACTIONS(3572), + [anon_sym_u8_SQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_L_DQUOTE] = ACTIONS(3572), + [anon_sym_u_DQUOTE] = ACTIONS(3572), + [anon_sym_U_DQUOTE] = ACTIONS(3572), + [anon_sym_u8_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [anon_sym_NULL] = ACTIONS(3570), + [anon_sym_nullptr] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_module] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_concept] = ACTIONS(3570), + [anon_sym_co_return] = ACTIONS(3570), + [anon_sym_co_yield] = ACTIONS(3570), + [anon_sym_R_DQUOTE] = ACTIONS(3572), + [anon_sym_LR_DQUOTE] = ACTIONS(3572), + [anon_sym_uR_DQUOTE] = ACTIONS(3572), + [anon_sym_UR_DQUOTE] = ACTIONS(3572), + [anon_sym_u8R_DQUOTE] = ACTIONS(3572), + [anon_sym_co_await] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_requires] = ACTIONS(3570), + [anon_sym_CARET_CARET] = ACTIONS(3572), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), + [sym_this] = ACTIONS(3570), }, - [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(355)] = { + [sym_preproc_def] = STATE(358), + [sym_preproc_function_def] = STATE(358), + [sym_preproc_call] = STATE(358), + [sym_preproc_if_in_field_declaration_list] = STATE(358), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(358), + [sym_preproc_else_in_field_declaration_list] = STATE(12024), + [sym_preproc_elif_in_field_declaration_list] = STATE(12024), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12024), + [sym_type_definition] = STATE(358), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(358), + [sym_field_declaration] = STATE(358), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(358), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(358), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(358), + [sym_operator_cast_declaration] = STATE(358), + [sym_constructor_or_destructor_definition] = STATE(358), + [sym_constructor_or_destructor_declaration] = STATE(358), + [sym_friend_declaration] = STATE(358), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(358), + [sym_alias_declaration] = STATE(358), + [sym_static_assert_declaration] = STATE(358), + [sym_consteval_block_declaration] = STATE(358), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(358), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3574), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(3576), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), [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_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -108761,7 +113621,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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -108771,7 +113631,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(3532), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -108781,563 +113641,125 @@ 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(3534), [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(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), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), [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_struct] = ACTIONS(3542), [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(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), - [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_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), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(3550), [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(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(359), + [sym_preproc_function_def] = STATE(359), + [sym_preproc_call] = STATE(359), + [sym_preproc_if_in_field_declaration_list] = STATE(359), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(359), + [sym_preproc_else_in_field_declaration_list] = STATE(11942), + [sym_preproc_elif_in_field_declaration_list] = STATE(11942), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11942), + [sym_type_definition] = STATE(359), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(359), + [sym_field_declaration] = STATE(359), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(359), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(359), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(359), + [sym_operator_cast_declaration] = STATE(359), + [sym_constructor_or_destructor_definition] = STATE(359), + [sym_constructor_or_destructor_declaration] = STATE(359), + [sym_friend_declaration] = STATE(359), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(359), + [sym_alias_declaration] = STATE(359), + [sym_static_assert_declaration] = STATE(359), + [sym_consteval_block_declaration] = STATE(359), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(359), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3578), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), [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_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -109345,7 +113767,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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -109355,7 +113777,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(3532), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -109365,125 +113787,271 @@ 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(3534), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(3550), [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(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(357)] = { + [sym_identifier] = ACTIONS(3582), + [aux_sym_preproc_include_token1] = ACTIONS(3582), + [aux_sym_preproc_def_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token2] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3582), + [aux_sym_preproc_else_token1] = ACTIONS(3582), + [aux_sym_preproc_elif_token1] = ACTIONS(3582), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3582), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3582), + [sym_preproc_directive] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_STAR] = ACTIONS(3584), + [anon_sym_AMP_AMP] = ACTIONS(3584), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym___extension__] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3582), + [anon_sym_virtual] = ACTIONS(3582), + [anon_sym_extern] = ACTIONS(3582), + [anon_sym___attribute__] = ACTIONS(3582), + [anon_sym___attribute] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_COLON_COLON] = ACTIONS(3584), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3584), + [anon_sym___declspec] = ACTIONS(3582), + [anon_sym___based] = ACTIONS(3582), + [anon_sym___cdecl] = ACTIONS(3582), + [anon_sym___clrcall] = ACTIONS(3582), + [anon_sym___stdcall] = ACTIONS(3582), + [anon_sym___fastcall] = ACTIONS(3582), + [anon_sym___thiscall] = ACTIONS(3582), + [anon_sym___vectorcall] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_signed] = ACTIONS(3582), + [anon_sym_unsigned] = ACTIONS(3582), + [anon_sym_long] = ACTIONS(3582), + [anon_sym_short] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_register] = ACTIONS(3582), + [anon_sym_inline] = ACTIONS(3582), + [anon_sym___inline] = ACTIONS(3582), + [anon_sym___inline__] = ACTIONS(3582), + [anon_sym___forceinline] = ACTIONS(3582), + [anon_sym_thread_local] = ACTIONS(3582), + [anon_sym___thread] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_constexpr] = ACTIONS(3582), + [anon_sym_volatile] = ACTIONS(3582), + [anon_sym_restrict] = ACTIONS(3582), + [anon_sym___restrict__] = ACTIONS(3582), + [anon_sym__Atomic] = ACTIONS(3582), + [anon_sym__Noreturn] = ACTIONS(3582), + [anon_sym_noreturn] = ACTIONS(3582), + [anon_sym__Nonnull] = ACTIONS(3582), + [anon_sym_mutable] = ACTIONS(3582), + [anon_sym_constinit] = ACTIONS(3582), + [anon_sym_consteval] = ACTIONS(3582), + [anon_sym_alignas] = ACTIONS(3582), + [anon_sym__Alignas] = ACTIONS(3582), + [sym_primitive_type] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_struct] = ACTIONS(3582), + [anon_sym_union] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_else] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_case] = ACTIONS(3582), + [anon_sym_default] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_goto] = ACTIONS(3582), + [anon_sym___try] = ACTIONS(3582), + [anon_sym___leave] = ACTIONS(3582), + [anon_sym_not] = ACTIONS(3582), + [anon_sym_compl] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_sizeof] = ACTIONS(3582), + [anon_sym___alignof__] = ACTIONS(3582), + [anon_sym___alignof] = ACTIONS(3582), + [anon_sym__alignof] = ACTIONS(3582), + [anon_sym_alignof] = ACTIONS(3582), + [anon_sym__Alignof] = ACTIONS(3582), + [anon_sym_offsetof] = ACTIONS(3582), + [anon_sym__Generic] = ACTIONS(3582), + [anon_sym_typename] = ACTIONS(3582), + [anon_sym_asm] = ACTIONS(3582), + [anon_sym___asm__] = ACTIONS(3582), + [anon_sym___asm] = ACTIONS(3582), + [sym_number_literal] = ACTIONS(3584), + [anon_sym_L_SQUOTE] = ACTIONS(3584), + [anon_sym_u_SQUOTE] = ACTIONS(3584), + [anon_sym_U_SQUOTE] = ACTIONS(3584), + [anon_sym_u8_SQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_L_DQUOTE] = ACTIONS(3584), + [anon_sym_u_DQUOTE] = ACTIONS(3584), + [anon_sym_U_DQUOTE] = ACTIONS(3584), + [anon_sym_u8_DQUOTE] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [anon_sym_NULL] = ACTIONS(3582), + [anon_sym_nullptr] = ACTIONS(3582), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(3582), + [anon_sym_explicit] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_module] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_template] = ACTIONS(3582), + [anon_sym_operator] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_static_assert] = ACTIONS(3582), + [anon_sym_concept] = ACTIONS(3582), + [anon_sym_co_return] = ACTIONS(3582), + [anon_sym_co_yield] = ACTIONS(3582), + [anon_sym_R_DQUOTE] = ACTIONS(3584), + [anon_sym_LR_DQUOTE] = ACTIONS(3584), + [anon_sym_uR_DQUOTE] = ACTIONS(3584), + [anon_sym_UR_DQUOTE] = ACTIONS(3584), + [anon_sym_u8R_DQUOTE] = ACTIONS(3584), + [anon_sym_co_await] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(3582), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(3584), + [sym_this] = ACTIONS(3582), + }, + [STATE(358)] = { + [sym_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_field_declaration_list] = STATE(575), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), + [sym_preproc_else_in_field_declaration_list] = STATE(11944), + [sym_preproc_elif_in_field_declaration_list] = STATE(11944), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11944), + [sym_type_definition] = STATE(575), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(575), + [sym_field_declaration] = STATE(575), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(575), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(575), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(575), + [sym_operator_cast_declaration] = STATE(575), + [sym_constructor_or_destructor_definition] = STATE(575), + [sym_constructor_or_destructor_declaration] = STATE(575), + [sym_friend_declaration] = STATE(575), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(575), + [sym_alias_declaration] = STATE(575), + [sym_static_assert_declaration] = STATE(575), + [sym_consteval_block_declaration] = STATE(575), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3586), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), [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_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -109491,7 +114059,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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -109501,7 +114069,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(3532), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -109511,1147 +114079,125 @@ 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(3534), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(3550), [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), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(359)] = { + [sym_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_field_declaration_list] = STATE(575), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), + [sym_preproc_else_in_field_declaration_list] = STATE(12157), + [sym_preproc_elif_in_field_declaration_list] = STATE(12157), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12157), + [sym_type_definition] = STATE(575), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(575), + [sym_field_declaration] = STATE(575), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(575), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(575), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(575), + [sym_operator_cast_declaration] = STATE(575), + [sym_constructor_or_destructor_definition] = STATE(575), + [sym_constructor_or_destructor_declaration] = STATE(575), + [sym_friend_declaration] = STATE(575), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(575), + [sym_alias_declaration] = STATE(575), + [sym_static_assert_declaration] = STATE(575), + [sym_consteval_block_declaration] = STATE(575), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3588), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), [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_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -110659,7 +114205,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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -110669,7 +114215,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(3532), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -110679,321 +114225,321 @@ 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(3534), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(3550), [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(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(360)] = { + [sym_identifier] = ACTIONS(3590), + [aux_sym_preproc_include_token1] = ACTIONS(3590), + [aux_sym_preproc_def_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token2] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3590), + [aux_sym_preproc_else_token1] = ACTIONS(3590), + [aux_sym_preproc_elif_token1] = ACTIONS(3590), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3590), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3590), + [sym_preproc_directive] = ACTIONS(3590), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_AMP] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym___extension__] = ACTIONS(3590), + [anon_sym_typedef] = ACTIONS(3590), + [anon_sym_virtual] = ACTIONS(3590), + [anon_sym_extern] = ACTIONS(3590), + [anon_sym___attribute__] = ACTIONS(3590), + [anon_sym___attribute] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_COLON_COLON] = ACTIONS(3592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3592), + [anon_sym___declspec] = ACTIONS(3590), + [anon_sym___based] = ACTIONS(3590), + [anon_sym___cdecl] = ACTIONS(3590), + [anon_sym___clrcall] = ACTIONS(3590), + [anon_sym___stdcall] = ACTIONS(3590), + [anon_sym___fastcall] = ACTIONS(3590), + [anon_sym___thiscall] = ACTIONS(3590), + [anon_sym___vectorcall] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_signed] = ACTIONS(3590), + [anon_sym_unsigned] = ACTIONS(3590), + [anon_sym_long] = ACTIONS(3590), + [anon_sym_short] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_register] = ACTIONS(3590), + [anon_sym_inline] = ACTIONS(3590), + [anon_sym___inline] = ACTIONS(3590), + [anon_sym___inline__] = ACTIONS(3590), + [anon_sym___forceinline] = ACTIONS(3590), + [anon_sym_thread_local] = ACTIONS(3590), + [anon_sym___thread] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_constexpr] = ACTIONS(3590), + [anon_sym_volatile] = ACTIONS(3590), + [anon_sym_restrict] = ACTIONS(3590), + [anon_sym___restrict__] = ACTIONS(3590), + [anon_sym__Atomic] = ACTIONS(3590), + [anon_sym__Noreturn] = ACTIONS(3590), + [anon_sym_noreturn] = ACTIONS(3590), + [anon_sym__Nonnull] = ACTIONS(3590), + [anon_sym_mutable] = ACTIONS(3590), + [anon_sym_constinit] = ACTIONS(3590), + [anon_sym_consteval] = ACTIONS(3590), + [anon_sym_alignas] = ACTIONS(3590), + [anon_sym__Alignas] = ACTIONS(3590), + [sym_primitive_type] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_struct] = ACTIONS(3590), + [anon_sym_union] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_else] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_case] = ACTIONS(3590), + [anon_sym_default] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_goto] = ACTIONS(3590), + [anon_sym___try] = ACTIONS(3590), + [anon_sym___leave] = ACTIONS(3590), + [anon_sym_not] = ACTIONS(3590), + [anon_sym_compl] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_sizeof] = ACTIONS(3590), + [anon_sym___alignof__] = ACTIONS(3590), + [anon_sym___alignof] = ACTIONS(3590), + [anon_sym__alignof] = ACTIONS(3590), + [anon_sym_alignof] = ACTIONS(3590), + [anon_sym__Alignof] = ACTIONS(3590), + [anon_sym_offsetof] = ACTIONS(3590), + [anon_sym__Generic] = ACTIONS(3590), + [anon_sym_typename] = ACTIONS(3590), + [anon_sym_asm] = ACTIONS(3590), + [anon_sym___asm__] = ACTIONS(3590), + [anon_sym___asm] = ACTIONS(3590), + [sym_number_literal] = ACTIONS(3592), + [anon_sym_L_SQUOTE] = ACTIONS(3592), + [anon_sym_u_SQUOTE] = ACTIONS(3592), + [anon_sym_U_SQUOTE] = ACTIONS(3592), + [anon_sym_u8_SQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_L_DQUOTE] = ACTIONS(3592), + [anon_sym_u_DQUOTE] = ACTIONS(3592), + [anon_sym_U_DQUOTE] = ACTIONS(3592), + [anon_sym_u8_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [anon_sym_NULL] = ACTIONS(3590), + [anon_sym_nullptr] = ACTIONS(3590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3590), + [anon_sym_decltype] = ACTIONS(3590), + [anon_sym_explicit] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_module] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_template] = ACTIONS(3590), + [anon_sym_operator] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_static_assert] = ACTIONS(3590), + [anon_sym_concept] = ACTIONS(3590), + [anon_sym_co_return] = ACTIONS(3590), + [anon_sym_co_yield] = ACTIONS(3590), + [anon_sym_R_DQUOTE] = ACTIONS(3592), + [anon_sym_LR_DQUOTE] = ACTIONS(3592), + [anon_sym_uR_DQUOTE] = ACTIONS(3592), + [anon_sym_UR_DQUOTE] = ACTIONS(3592), + [anon_sym_u8R_DQUOTE] = ACTIONS(3592), + [anon_sym_co_await] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_requires] = ACTIONS(3590), + [anon_sym_CARET_CARET] = ACTIONS(3592), + [anon_sym_LBRACK_COLON] = ACTIONS(3592), + [sym_this] = ACTIONS(3590), }, - [STATE(358)] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(3592), - [aux_sym_preproc_elif_token1] = ACTIONS(3592), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3592), - [aux_sym_preproc_elifdef_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(361)] = { + [sym_expression] = STATE(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3594), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [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(3129), + [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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), + [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(3138), + [sym_this] = ACTIONS(237), }, - [STATE(359)] = { + [STATE(362)] = { [sym_identifier] = ACTIONS(3596), [aux_sym_preproc_include_token1] = ACTIONS(3596), [aux_sym_preproc_def_token1] = ACTIONS(3596), @@ -111139,153 +114685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3598), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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_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(361)] = { + [STATE(363)] = { [sym_identifier] = ACTIONS(3600), [aux_sym_preproc_include_token1] = ACTIONS(3600), [aux_sym_preproc_def_token1] = ACTIONS(3600), @@ -111431,7 +114831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3602), [sym_this] = ACTIONS(3600), }, - [STATE(362)] = { + [STATE(364)] = { [sym_identifier] = ACTIONS(3604), [aux_sym_preproc_include_token1] = ACTIONS(3604), [aux_sym_preproc_def_token1] = ACTIONS(3604), @@ -111577,249 +114977,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(365)] = { + [sym_preproc_def] = STATE(374), + [sym_preproc_function_def] = STATE(374), + [sym_preproc_call] = STATE(374), + [sym_preproc_if_in_field_declaration_list] = STATE(374), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(374), + [sym_preproc_else_in_field_declaration_list] = STATE(12317), + [sym_preproc_elif_in_field_declaration_list] = STATE(12317), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12317), + [sym_type_definition] = STATE(374), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(374), + [sym_field_declaration] = STATE(374), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(374), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(374), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(374), + [sym_operator_cast_declaration] = STATE(374), + [sym_constructor_or_destructor_definition] = STATE(374), + [sym_constructor_or_destructor_declaration] = STATE(374), + [sym_friend_declaration] = STATE(374), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(374), + [sym_alias_declaration] = STATE(374), + [sym_static_assert_declaration] = STATE(374), + [sym_consteval_block_declaration] = STATE(374), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(374), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), [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), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), [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), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [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(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(366)] = { + [sym_preproc_def] = STATE(368), + [sym_preproc_function_def] = STATE(368), + [sym_preproc_call] = STATE(368), + [sym_preproc_if_in_field_declaration_list] = STATE(368), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(368), + [sym_preproc_else_in_field_declaration_list] = STATE(12078), + [sym_preproc_elif_in_field_declaration_list] = STATE(12078), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12078), + [sym_type_definition] = STATE(368), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(368), + [sym_field_declaration] = STATE(368), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(368), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(368), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(368), + [sym_operator_cast_declaration] = STATE(368), + [sym_constructor_or_destructor_definition] = STATE(368), + [sym_constructor_or_destructor_declaration] = STATE(368), + [sym_friend_declaration] = STATE(368), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(368), + [sym_alias_declaration] = STATE(368), + [sym_static_assert_declaration] = STATE(368), + [sym_consteval_block_declaration] = STATE(368), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(368), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), [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), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), [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_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -111827,7 +115227,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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -111837,7 +115237,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(3532), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -111847,611 +115247,319 @@ 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(3534), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(3550), [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), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym_preproc_def] = STATE(398), + [sym_preproc_function_def] = STATE(398), + [sym_preproc_call] = STATE(398), + [sym_preproc_if_in_field_declaration_list] = STATE(398), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(398), + [sym_preproc_else_in_field_declaration_list] = STATE(12626), + [sym_preproc_elif_in_field_declaration_list] = STATE(12626), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12626), + [sym_type_definition] = STATE(398), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(398), + [sym_field_declaration] = STATE(398), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(398), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(398), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(398), + [sym_operator_cast_declaration] = STATE(398), + [sym_constructor_or_destructor_definition] = STATE(398), + [sym_constructor_or_destructor_declaration] = STATE(398), + [sym_friend_declaration] = STATE(398), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(398), + [sym_alias_declaration] = STATE(398), + [sym_static_assert_declaration] = STATE(398), + [sym_consteval_block_declaration] = STATE(398), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(398), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [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(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_field_declaration_list] = STATE(575), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), + [sym_preproc_else_in_field_declaration_list] = STATE(12196), + [sym_preproc_elif_in_field_declaration_list] = STATE(12196), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12196), + [sym_type_definition] = STATE(575), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(575), + [sym_field_declaration] = STATE(575), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(575), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(575), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(575), + [sym_operator_cast_declaration] = STATE(575), + [sym_constructor_or_destructor_definition] = STATE(575), + [sym_constructor_or_destructor_declaration] = STATE(575), + [sym_friend_declaration] = STATE(575), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(575), + [sym_alias_declaration] = STATE(575), + [sym_static_assert_declaration] = STATE(575), + [sym_consteval_block_declaration] = STATE(575), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [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(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [STATE(369)] = { [sym_identifier] = ACTIONS(3622), @@ -112892,1563 +116000,2001 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_include_token1] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token2] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [aux_sym_preproc_else_token1] = ACTIONS(3452), + [aux_sym_preproc_elif_token1] = ACTIONS(3452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym___cdecl] = ACTIONS(3452), + [anon_sym___clrcall] = ACTIONS(3452), + [anon_sym___stdcall] = ACTIONS(3452), + [anon_sym___fastcall] = ACTIONS(3452), + [anon_sym___thiscall] = ACTIONS(3452), + [anon_sym___vectorcall] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym___try] = ACTIONS(3452), + [anon_sym___leave] = ACTIONS(3452), + [anon_sym_not] = ACTIONS(3452), + [anon_sym_compl] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym___alignof__] = ACTIONS(3452), + [anon_sym___alignof] = ACTIONS(3452), + [anon_sym__alignof] = ACTIONS(3452), + [anon_sym_alignof] = ACTIONS(3452), + [anon_sym__Alignof] = ACTIONS(3452), + [anon_sym_offsetof] = ACTIONS(3452), + [anon_sym__Generic] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym___asm__] = ACTIONS(3452), + [anon_sym___asm] = ACTIONS(3452), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_L_SQUOTE] = ACTIONS(3454), + [anon_sym_u_SQUOTE] = ACTIONS(3454), + [anon_sym_U_SQUOTE] = ACTIONS(3454), + [anon_sym_u8_SQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_L_DQUOTE] = ACTIONS(3454), + [anon_sym_u_DQUOTE] = ACTIONS(3454), + [anon_sym_U_DQUOTE] = ACTIONS(3454), + [anon_sym_u8_DQUOTE] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [anon_sym_NULL] = ACTIONS(3452), + [anon_sym_nullptr] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_concept] = ACTIONS(3452), + [anon_sym_co_return] = ACTIONS(3452), + [anon_sym_co_yield] = ACTIONS(3452), + [anon_sym_R_DQUOTE] = ACTIONS(3454), + [anon_sym_LR_DQUOTE] = ACTIONS(3454), + [anon_sym_uR_DQUOTE] = ACTIONS(3454), + [anon_sym_UR_DQUOTE] = ACTIONS(3454), + [anon_sym_u8R_DQUOTE] = ACTIONS(3454), + [anon_sym_co_await] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_requires] = ACTIONS(3452), + [anon_sym_CARET_CARET] = ACTIONS(3454), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + [sym_this] = ACTIONS(3452), }, [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), + [sym_type_qualifier] = STATE(5638), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6774), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7598), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(11277), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_type_parameter_pack_expansion] = STATE(11787), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8905), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4908), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5638), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3230), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(3246), + [anon_sym_enum] = ACTIONS(3248), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_struct] = ACTIONS(3252), + [anon_sym_union] = ACTIONS(3254), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3266), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), }, [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), + [sym_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_field_declaration_list] = STATE(575), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), + [sym_preproc_else_in_field_declaration_list] = STATE(11881), + [sym_preproc_elif_in_field_declaration_list] = STATE(11881), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11881), + [sym_type_definition] = STATE(575), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(575), + [sym_field_declaration] = STATE(575), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(575), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(575), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(575), + [sym_operator_cast_declaration] = STATE(575), + [sym_constructor_or_destructor_definition] = STATE(575), + [sym_constructor_or_destructor_declaration] = STATE(575), + [sym_friend_declaration] = STATE(575), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(575), + [sym_alias_declaration] = STATE(575), + [sym_static_assert_declaration] = STATE(575), + [sym_consteval_block_declaration] = STATE(575), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3634), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [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(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym_preproc_def] = STATE(378), + [sym_preproc_function_def] = STATE(378), + [sym_preproc_call] = STATE(378), + [sym_preproc_if_in_field_declaration_list] = STATE(378), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(378), + [sym_preproc_else_in_field_declaration_list] = STATE(12396), + [sym_preproc_elif_in_field_declaration_list] = STATE(12396), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12396), + [sym_type_definition] = STATE(378), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(378), + [sym_field_declaration] = STATE(378), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(378), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(378), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(378), + [sym_operator_cast_declaration] = STATE(378), + [sym_constructor_or_destructor_definition] = STATE(378), + [sym_constructor_or_destructor_declaration] = STATE(378), + [sym_friend_declaration] = STATE(378), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(378), + [sym_alias_declaration] = STATE(378), + [sym_static_assert_declaration] = STATE(378), + [sym_consteval_block_declaration] = STATE(378), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(378), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [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(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [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(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), + [sym_preproc_def] = STATE(379), + [sym_preproc_function_def] = STATE(379), + [sym_preproc_call] = STATE(379), + [sym_preproc_if_in_field_declaration_list] = STATE(379), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(379), + [sym_preproc_else_in_field_declaration_list] = STATE(12495), + [sym_preproc_elif_in_field_declaration_list] = STATE(12495), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12495), + [sym_type_definition] = STATE(379), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(379), + [sym_field_declaration] = STATE(379), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(379), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(379), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(379), + [sym_operator_cast_declaration] = STATE(379), + [sym_constructor_or_destructor_definition] = STATE(379), + [sym_constructor_or_destructor_declaration] = STATE(379), + [sym_friend_declaration] = STATE(379), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(379), + [sym_alias_declaration] = STATE(379), + [sym_static_assert_declaration] = STATE(379), + [sym_consteval_block_declaration] = STATE(379), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(379), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [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(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_field_declaration_list] = STATE(575), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), + [sym_preproc_else_in_field_declaration_list] = STATE(12507), + [sym_preproc_elif_in_field_declaration_list] = STATE(12507), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12507), + [sym_type_definition] = STATE(575), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(575), + [sym_field_declaration] = STATE(575), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(575), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(575), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(575), + [sym_operator_cast_declaration] = STATE(575), + [sym_constructor_or_destructor_definition] = STATE(575), + [sym_constructor_or_destructor_declaration] = STATE(575), + [sym_friend_declaration] = STATE(575), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(575), + [sym_alias_declaration] = STATE(575), + [sym_static_assert_declaration] = STATE(575), + [sym_consteval_block_declaration] = STATE(575), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [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(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_field_declaration_list] = STATE(575), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), + [sym_preproc_else_in_field_declaration_list] = STATE(12610), + [sym_preproc_elif_in_field_declaration_list] = STATE(12610), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12610), + [sym_type_definition] = STATE(575), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(575), + [sym_field_declaration] = STATE(575), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(575), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(575), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(575), + [sym_operator_cast_declaration] = STATE(575), + [sym_constructor_or_destructor_definition] = STATE(575), + [sym_constructor_or_destructor_declaration] = STATE(575), + [sym_friend_declaration] = STATE(575), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(575), + [sym_alias_declaration] = STATE(575), + [sym_static_assert_declaration] = STATE(575), + [sym_consteval_block_declaration] = STATE(575), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3650), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [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(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [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(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), + [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(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), + [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(383)] = { + [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(384)] = { + [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(385)] = { + [sym_expression] = STATE(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3116), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -114461,7 +118007,7 @@ static const uint16_t ts_parse_table[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(3129), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -114481,9 +118027,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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -114494,302 +118040,594 @@ static const uint16_t ts_parse_table[LARGE_STATE_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(3138), [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_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(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_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(385)] = { + [STATE(388)] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [aux_sym_preproc_else_token1] = ACTIONS(3672), + [aux_sym_preproc_elif_token1] = ACTIONS(3672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym___attribute] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym__Nonnull] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym__Alignas] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [anon_sym___asm] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [anon_sym_CARET_CARET] = ACTIONS(3674), + [anon_sym_LBRACK_COLON] = ACTIONS(3674), + [sym_this] = ACTIONS(3672), + }, + [STATE(389)] = { + [sym_expression] = STATE(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [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(3129), + [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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), + [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(3138), + [sym_this] = ACTIONS(237), + }, + [STATE(390)] = { [sym_identifier] = ACTIONS(3678), [aux_sym_preproc_include_token1] = ACTIONS(3678), [aux_sym_preproc_def_token1] = ACTIONS(3678), @@ -114935,250 +118773,396 @@ 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), + [STATE(391)] = { + [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(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), + [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_else] = 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(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), + [STATE(392)] = { + [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_else] = 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(393)] = { + [sym_expression] = STATE(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3141), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -115191,7 +119175,7 @@ static const uint16_t ts_parse_table[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(3129), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -115211,9 +119195,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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -115224,107 +119208,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_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(3138), [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), + [STATE(394)] = { + [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_else] = 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(395)] = { + [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_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_else] = 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(396)] = { + [sym_expression] = STATE(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3145), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -115337,7 +119613,7 @@ static const uint16_t ts_parse_table[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(3129), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -115357,9 +119633,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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -115370,378 +119646,959 @@ static const uint16_t ts_parse_table[LARGE_STATE_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(3138), [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), + [STATE(397)] = { + [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_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_else] = 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(398)] = { + [sym_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_field_declaration_list] = STATE(575), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), + [sym_preproc_else_in_field_declaration_list] = STATE(12325), + [sym_preproc_elif_in_field_declaration_list] = STATE(12325), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(12325), + [sym_type_definition] = STATE(575), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(575), + [sym_field_declaration] = STATE(575), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(575), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(575), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(575), + [sym_operator_cast_declaration] = STATE(575), + [sym_constructor_or_destructor_definition] = STATE(575), + [sym_constructor_or_destructor_declaration] = STATE(575), + [sym_friend_declaration] = STATE(575), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(575), + [sym_alias_declaration] = STATE(575), + [sym_static_assert_declaration] = STATE(575), + [sym_consteval_block_declaration] = STATE(575), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3496), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3702), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3504), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3508), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3524), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [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(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3554), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(399)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token2] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [aux_sym_preproc_else_token1] = ACTIONS(3704), + [aux_sym_preproc_elif_token1] = ACTIONS(3704), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_export] = ACTIONS(3704), + [anon_sym_module] = ACTIONS(3704), + [anon_sym_import] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [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), - [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(3698), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [STATE(400)] = { + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token2] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [aux_sym_preproc_else_token1] = ACTIONS(3708), + [aux_sym_preproc_elif_token1] = ACTIONS(3708), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_export] = ACTIONS(3708), + [anon_sym_module] = ACTIONS(3708), + [anon_sym_import] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), + }, + [STATE(401)] = { + [sym_identifier] = ACTIONS(3712), + [aux_sym_preproc_include_token1] = ACTIONS(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token2] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [aux_sym_preproc_else_token1] = ACTIONS(3712), + [aux_sym_preproc_elif_token1] = ACTIONS(3712), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym___cdecl] = ACTIONS(3712), + [anon_sym___clrcall] = ACTIONS(3712), + [anon_sym___stdcall] = ACTIONS(3712), + [anon_sym___fastcall] = ACTIONS(3712), + [anon_sym___thiscall] = ACTIONS(3712), + [anon_sym___vectorcall] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3714), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3712), + [anon_sym_case] = ACTIONS(3712), + [anon_sym_default] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_break] = ACTIONS(3712), + [anon_sym_continue] = ACTIONS(3712), + [anon_sym_goto] = ACTIONS(3712), + [anon_sym___try] = ACTIONS(3712), + [anon_sym___leave] = ACTIONS(3712), + [anon_sym_not] = ACTIONS(3712), + [anon_sym_compl] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_PLUS_PLUS] = ACTIONS(3714), + [anon_sym_sizeof] = ACTIONS(3712), + [anon_sym___alignof__] = ACTIONS(3712), + [anon_sym___alignof] = ACTIONS(3712), + [anon_sym__alignof] = ACTIONS(3712), + [anon_sym_alignof] = ACTIONS(3712), + [anon_sym__Alignof] = ACTIONS(3712), + [anon_sym_offsetof] = ACTIONS(3712), + [anon_sym__Generic] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [anon_sym_asm] = ACTIONS(3712), + [anon_sym___asm__] = ACTIONS(3712), + [anon_sym___asm] = ACTIONS(3712), + [sym_number_literal] = ACTIONS(3714), + [anon_sym_L_SQUOTE] = ACTIONS(3714), + [anon_sym_u_SQUOTE] = ACTIONS(3714), + [anon_sym_U_SQUOTE] = ACTIONS(3714), + [anon_sym_u8_SQUOTE] = ACTIONS(3714), + [anon_sym_SQUOTE] = ACTIONS(3714), + [anon_sym_L_DQUOTE] = ACTIONS(3714), + [anon_sym_u_DQUOTE] = ACTIONS(3714), + [anon_sym_U_DQUOTE] = ACTIONS(3714), + [anon_sym_u8_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE] = ACTIONS(3714), + [sym_true] = ACTIONS(3712), + [sym_false] = ACTIONS(3712), + [anon_sym_NULL] = ACTIONS(3712), + [anon_sym_nullptr] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_export] = ACTIONS(3712), + [anon_sym_module] = ACTIONS(3712), + [anon_sym_import] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_delete] = ACTIONS(3712), + [anon_sym_throw] = ACTIONS(3712), + [anon_sym_namespace] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_concept] = ACTIONS(3712), + [anon_sym_co_return] = ACTIONS(3712), + [anon_sym_co_yield] = ACTIONS(3712), + [anon_sym_R_DQUOTE] = ACTIONS(3714), + [anon_sym_LR_DQUOTE] = ACTIONS(3714), + [anon_sym_uR_DQUOTE] = ACTIONS(3714), + [anon_sym_UR_DQUOTE] = ACTIONS(3714), + [anon_sym_u8R_DQUOTE] = ACTIONS(3714), + [anon_sym_co_await] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_requires] = ACTIONS(3712), + [anon_sym_CARET_CARET] = ACTIONS(3714), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), + [sym_this] = ACTIONS(3712), + }, + [STATE(402)] = { + [sym_identifier] = ACTIONS(3716), + [aux_sym_preproc_include_token1] = ACTIONS(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token2] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [aux_sym_preproc_else_token1] = ACTIONS(3716), + [aux_sym_preproc_elif_token1] = ACTIONS(3716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym___cdecl] = ACTIONS(3716), + [anon_sym___clrcall] = ACTIONS(3716), + [anon_sym___stdcall] = ACTIONS(3716), + [anon_sym___fastcall] = ACTIONS(3716), + [anon_sym___thiscall] = ACTIONS(3716), + [anon_sym___vectorcall] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_case] = ACTIONS(3716), + [anon_sym_default] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_goto] = ACTIONS(3716), + [anon_sym___try] = ACTIONS(3716), + [anon_sym___leave] = ACTIONS(3716), + [anon_sym_not] = ACTIONS(3716), + [anon_sym_compl] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_sizeof] = ACTIONS(3716), + [anon_sym___alignof__] = ACTIONS(3716), + [anon_sym___alignof] = ACTIONS(3716), + [anon_sym__alignof] = ACTIONS(3716), + [anon_sym_alignof] = ACTIONS(3716), + [anon_sym__Alignof] = ACTIONS(3716), + [anon_sym_offsetof] = ACTIONS(3716), + [anon_sym__Generic] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(3716), + [anon_sym___asm__] = ACTIONS(3716), + [anon_sym___asm] = ACTIONS(3716), + [sym_number_literal] = ACTIONS(3718), + [anon_sym_L_SQUOTE] = ACTIONS(3718), + [anon_sym_u_SQUOTE] = ACTIONS(3718), + [anon_sym_U_SQUOTE] = ACTIONS(3718), + [anon_sym_u8_SQUOTE] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(3718), + [anon_sym_L_DQUOTE] = ACTIONS(3718), + [anon_sym_u_DQUOTE] = ACTIONS(3718), + [anon_sym_U_DQUOTE] = ACTIONS(3718), + [anon_sym_u8_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [anon_sym_NULL] = ACTIONS(3716), + [anon_sym_nullptr] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_concept] = ACTIONS(3716), + [anon_sym_co_return] = ACTIONS(3716), + [anon_sym_co_yield] = ACTIONS(3716), + [anon_sym_R_DQUOTE] = ACTIONS(3718), + [anon_sym_LR_DQUOTE] = ACTIONS(3718), + [anon_sym_uR_DQUOTE] = ACTIONS(3718), + [anon_sym_UR_DQUOTE] = ACTIONS(3718), + [anon_sym_u8R_DQUOTE] = ACTIONS(3718), + [anon_sym_co_await] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_requires] = ACTIONS(3716), + [anon_sym_CARET_CARET] = ACTIONS(3718), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), + [sym_this] = ACTIONS(3716), + }, + [STATE(403)] = { + [sym_type_qualifier] = STATE(5690), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2650), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7384), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(6659), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8920), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(3995), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [aux_sym__type_definition_type_repeat1] = STATE(5690), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3720), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), [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] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -115756,16 +120613,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(3734), + [anon_sym_enum] = ACTIONS(3736), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3740), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -115773,21 +120630,21 @@ static const uint16_t ts_parse_table[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(3748), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -115796,83 +120653,663 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(2280), [anon_sym_decltype] = ACTIONS(2282), [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), [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), + [STATE(404)] = { + [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(405)] = { + [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(406)] = { + [sym_type_qualifier] = STATE(5652), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2825), + [sym_sized_type_specifier] = STATE(4493), + [sym_enum_specifier] = STATE(4493), + [sym_struct_specifier] = STATE(4493), + [sym_union_specifier] = STATE(4493), + [sym_expression] = STATE(7721), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_type_descriptor] = STATE(8252), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_placeholder_type_specifier] = STATE(4493), + [sym_decltype_auto] = STATE(4492), + [sym_decltype] = STATE(4495), + [sym_class_specifier] = STATE(4493), + [sym__class_name] = STATE(11714), + [sym_dependent_type] = STATE(4493), + [sym_template_type] = STATE(4745), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8891), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(4746), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(4849), + [sym__splice_specialization_specifier] = STATE(4309), + [sym_splice_type_specifier] = STATE(4710), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [aux_sym__type_definition_type_repeat1] = STATE(5652), + [aux_sym_sized_type_specifier_repeat1] = STATE(3339), + [sym_identifier] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(3240), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_signed] = ACTIONS(3244), + [anon_sym_unsigned] = ACTIONS(3244), + [anon_sym_long] = ACTIONS(3244), + [anon_sym_short] = ACTIONS(3244), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(3246), + [anon_sym_enum] = ACTIONS(3778), + [anon_sym_class] = ACTIONS(3780), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3784), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(3786), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3280), + [anon_sym_decltype] = ACTIONS(3282), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(3300), + [sym_this] = ACTIONS(3276), + }, + [STATE(407)] = { + [sym_identifier] = ACTIONS(3788), + [aux_sym_preproc_include_token1] = ACTIONS(3788), + [aux_sym_preproc_def_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token2] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3788), + [aux_sym_preproc_else_token1] = ACTIONS(3788), + [aux_sym_preproc_elif_token1] = ACTIONS(3788), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3788), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3788), + [sym_preproc_directive] = ACTIONS(3788), + [anon_sym_LPAREN2] = ACTIONS(3790), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3788), + [anon_sym_PLUS] = ACTIONS(3788), + [anon_sym_STAR] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_AMP] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(3790), + [anon_sym___extension__] = ACTIONS(3788), + [anon_sym_typedef] = ACTIONS(3788), + [anon_sym_virtual] = ACTIONS(3788), + [anon_sym_extern] = ACTIONS(3788), + [anon_sym___attribute__] = ACTIONS(3788), + [anon_sym___attribute] = ACTIONS(3788), + [anon_sym_using] = ACTIONS(3788), + [anon_sym_COLON_COLON] = ACTIONS(3790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3790), + [anon_sym___declspec] = ACTIONS(3788), + [anon_sym___based] = ACTIONS(3788), + [anon_sym___cdecl] = ACTIONS(3788), + [anon_sym___clrcall] = ACTIONS(3788), + [anon_sym___stdcall] = ACTIONS(3788), + [anon_sym___fastcall] = ACTIONS(3788), + [anon_sym___thiscall] = ACTIONS(3788), + [anon_sym___vectorcall] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_signed] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3788), + [anon_sym_long] = ACTIONS(3788), + [anon_sym_short] = ACTIONS(3788), + [anon_sym_LBRACK] = ACTIONS(3788), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_register] = ACTIONS(3788), + [anon_sym_inline] = ACTIONS(3788), + [anon_sym___inline] = ACTIONS(3788), + [anon_sym___inline__] = ACTIONS(3788), + [anon_sym___forceinline] = ACTIONS(3788), + [anon_sym_thread_local] = ACTIONS(3788), + [anon_sym___thread] = ACTIONS(3788), + [anon_sym_const] = ACTIONS(3788), + [anon_sym_constexpr] = ACTIONS(3788), + [anon_sym_volatile] = ACTIONS(3788), + [anon_sym_restrict] = ACTIONS(3788), + [anon_sym___restrict__] = ACTIONS(3788), + [anon_sym__Atomic] = ACTIONS(3788), + [anon_sym__Noreturn] = ACTIONS(3788), + [anon_sym_noreturn] = ACTIONS(3788), + [anon_sym__Nonnull] = ACTIONS(3788), + [anon_sym_mutable] = ACTIONS(3788), + [anon_sym_constinit] = ACTIONS(3788), + [anon_sym_consteval] = ACTIONS(3788), + [anon_sym_alignas] = ACTIONS(3788), + [anon_sym__Alignas] = ACTIONS(3788), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_union] = ACTIONS(3788), + [anon_sym_if] = ACTIONS(3788), + [anon_sym_switch] = ACTIONS(3788), + [anon_sym_case] = ACTIONS(3788), + [anon_sym_default] = ACTIONS(3788), + [anon_sym_while] = ACTIONS(3788), + [anon_sym_do] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3788), + [anon_sym_return] = ACTIONS(3788), + [anon_sym_break] = ACTIONS(3788), + [anon_sym_continue] = ACTIONS(3788), + [anon_sym_goto] = ACTIONS(3788), + [anon_sym___try] = ACTIONS(3788), + [anon_sym___leave] = ACTIONS(3788), + [anon_sym_not] = ACTIONS(3788), + [anon_sym_compl] = ACTIONS(3788), + [anon_sym_DASH_DASH] = ACTIONS(3790), + [anon_sym_PLUS_PLUS] = ACTIONS(3790), + [anon_sym_sizeof] = ACTIONS(3788), + [anon_sym___alignof__] = ACTIONS(3788), + [anon_sym___alignof] = ACTIONS(3788), + [anon_sym__alignof] = ACTIONS(3788), + [anon_sym_alignof] = ACTIONS(3788), + [anon_sym__Alignof] = ACTIONS(3788), + [anon_sym_offsetof] = ACTIONS(3788), + [anon_sym__Generic] = ACTIONS(3788), + [anon_sym_typename] = ACTIONS(3788), + [anon_sym_asm] = ACTIONS(3788), + [anon_sym___asm__] = ACTIONS(3788), + [anon_sym___asm] = ACTIONS(3788), + [sym_number_literal] = ACTIONS(3790), + [anon_sym_L_SQUOTE] = ACTIONS(3790), + [anon_sym_u_SQUOTE] = ACTIONS(3790), + [anon_sym_U_SQUOTE] = ACTIONS(3790), + [anon_sym_u8_SQUOTE] = ACTIONS(3790), + [anon_sym_SQUOTE] = ACTIONS(3790), + [anon_sym_L_DQUOTE] = ACTIONS(3790), + [anon_sym_u_DQUOTE] = ACTIONS(3790), + [anon_sym_U_DQUOTE] = ACTIONS(3790), + [anon_sym_u8_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [sym_true] = ACTIONS(3788), + [sym_false] = ACTIONS(3788), + [anon_sym_NULL] = ACTIONS(3788), + [anon_sym_nullptr] = ACTIONS(3788), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3788), + [anon_sym_decltype] = ACTIONS(3788), + [anon_sym_explicit] = ACTIONS(3788), + [anon_sym_export] = ACTIONS(3788), + [anon_sym_module] = ACTIONS(3788), + [anon_sym_import] = ACTIONS(3788), + [anon_sym_template] = ACTIONS(3788), + [anon_sym_operator] = ACTIONS(3788), + [anon_sym_try] = ACTIONS(3788), + [anon_sym_delete] = ACTIONS(3788), + [anon_sym_throw] = ACTIONS(3788), + [anon_sym_namespace] = ACTIONS(3788), + [anon_sym_static_assert] = ACTIONS(3788), + [anon_sym_concept] = ACTIONS(3788), + [anon_sym_co_return] = ACTIONS(3788), + [anon_sym_co_yield] = ACTIONS(3788), + [anon_sym_R_DQUOTE] = ACTIONS(3790), + [anon_sym_LR_DQUOTE] = ACTIONS(3790), + [anon_sym_uR_DQUOTE] = ACTIONS(3790), + [anon_sym_UR_DQUOTE] = ACTIONS(3790), + [anon_sym_u8R_DQUOTE] = ACTIONS(3790), + [anon_sym_co_await] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3788), + [anon_sym_requires] = ACTIONS(3788), + [anon_sym_CARET_CARET] = ACTIONS(3790), + [anon_sym_LBRACK_COLON] = ACTIONS(3790), + [sym_this] = ACTIONS(3788), + }, + [STATE(408)] = { + [sym_type_qualifier] = STATE(5595), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2141), + [sym_sized_type_specifier] = STATE(2928), + [sym_enum_specifier] = STATE(2928), + [sym_struct_specifier] = STATE(2928), + [sym_union_specifier] = STATE(2928), + [sym_expression] = STATE(5663), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_type_descriptor] = STATE(6231), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_placeholder_type_specifier] = STATE(2928), + [sym_decltype_auto] = STATE(2927), + [sym_decltype] = STATE(2929), + [sym_class_specifier] = STATE(2928), + [sym__class_name] = STATE(11801), + [sym_dependent_type] = STATE(2928), + [sym_template_type] = STATE(2934), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8930), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(2966), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(3062), + [sym__splice_specialization_specifier] = STATE(2656), + [sym_splice_type_specifier] = STATE(2912), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [aux_sym__type_definition_type_repeat1] = STATE(5595), + [aux_sym_sized_type_specifier_repeat1] = STATE(2277), + [sym_identifier] = ACTIONS(3792), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -115881,12 +121318,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(3794), + [anon_sym_signed] = ACTIONS(3796), + [anon_sym_unsigned] = ACTIONS(3796), + [anon_sym_long] = ACTIONS(3796), + [anon_sym_short] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -115901,11 +121338,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(3730), - [anon_sym_enum] = ACTIONS(3732), - [anon_sym_class] = ACTIONS(3734), - [anon_sym_struct] = ACTIONS(3736), - [anon_sym_union] = ACTIONS(3738), + [sym_primitive_type] = ACTIONS(3798), + [anon_sym_enum] = ACTIONS(3800), + [anon_sym_class] = ACTIONS(3802), + [anon_sym_struct] = ACTIONS(3804), + [anon_sym_union] = ACTIONS(3806), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), [anon_sym_DASH_DASH] = ACTIONS(2256), @@ -115918,7 +121355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2260), [anon_sym_offsetof] = ACTIONS(2262), [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(3740), + [anon_sym_typename] = ACTIONS(3808), [anon_sym_asm] = ACTIONS(2268), [anon_sym___asm__] = ACTIONS(2268), [anon_sym___asm] = ACTIONS(2268), @@ -115938,8 +121375,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(2278), [anon_sym_nullptr] = ACTIONS(2278), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3742), - [anon_sym_decltype] = ACTIONS(3744), + [sym_auto] = ACTIONS(3810), + [anon_sym_decltype] = ACTIONS(3812), [anon_sym_template] = ACTIONS(2284), [anon_sym_delete] = ACTIONS(2288), [anon_sym_R_DQUOTE] = ACTIONS(2290), @@ -115954,229 +121391,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(2300), [sym_this] = ACTIONS(2276), }, - [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), - [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(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), - }, - [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(409)] = { + [sym_type_qualifier] = STATE(5738), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2469), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7289), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(6659), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8920), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(3995), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5738), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3814), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [anon_sym_COLON_COLON] = ACTIONS(3818), [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] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -116191,11 +121483,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(3734), + [anon_sym_enum] = ACTIONS(3736), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3740), + [anon_sym_union] = ACTIONS(3742), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -116208,7 +121500,7 @@ static const uint16_t ts_parse_table[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(3748), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -116241,87 +121533,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(3764), [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), - [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(410)] = { + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token2] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [aux_sym_preproc_else_token1] = ACTIONS(3708), + [aux_sym_preproc_elif_token1] = ACTIONS(3708), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_export] = ACTIONS(3708), + [anon_sym_module] = ACTIONS(3708), + [anon_sym_import] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), + }, + [STATE(411)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(8046), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12539), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -116336,7 +121773,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -116353,7 +121790,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -116386,522 +121823,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(3764), [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), + [STATE(412)] = { + [sym_type_qualifier] = STATE(5696), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2135), + [sym_sized_type_specifier] = STATE(2339), + [sym_enum_specifier] = STATE(2339), + [sym_struct_specifier] = STATE(2339), + [sym_union_specifier] = STATE(2339), + [sym_expression] = STATE(5437), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_type_descriptor] = STATE(4187), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_placeholder_type_specifier] = STATE(2339), + [sym_decltype_auto] = STATE(2328), + [sym_decltype] = STATE(2345), + [sym_class_specifier] = STATE(2339), + [sym__class_name] = STATE(11509), + [sym_dependent_type] = STATE(2339), + [sym_template_type] = STATE(2331), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8943), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(2346), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(2533), + [sym__splice_specialization_specifier] = STATE(2273), + [sym_splice_type_specifier] = STATE(2341), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [aux_sym__type_definition_type_repeat1] = STATE(5696), + [aux_sym_sized_type_specifier_repeat1] = STATE(2069), + [sym_identifier] = ACTIONS(3824), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(3828), + [anon_sym_COLON_COLON] = ACTIONS(3830), + [anon_sym_signed] = ACTIONS(3832), + [anon_sym_unsigned] = ACTIONS(3832), + [anon_sym_long] = ACTIONS(3832), + [anon_sym_short] = ACTIONS(3832), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -116916,16 +121918,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(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), + [sym_primitive_type] = ACTIONS(3834), + [anon_sym_enum] = ACTIONS(3836), + [anon_sym_class] = ACTIONS(3838), + [anon_sym_struct] = ACTIONS(3840), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -116933,120 +121935,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2402), [anon_sym_offsetof] = ACTIONS(2404), [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(3817), + [anon_sym_typename] = ACTIONS(3846), [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_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(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), + [sym_auto] = ACTIONS(3848), + [anon_sym_decltype] = ACTIONS(3850), [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(3852), [sym_this] = ACTIONS(2418), }, - [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), + [STATE(413)] = { + [sym_type_qualifier] = STATE(5683), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2196), + [sym_sized_type_specifier] = STATE(3035), + [sym_enum_specifier] = STATE(3035), + [sym_struct_specifier] = STATE(3035), + [sym_union_specifier] = STATE(3035), + [sym_expression] = STATE(5880), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_type_descriptor] = STATE(6420), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_placeholder_type_specifier] = STATE(3035), + [sym_decltype_auto] = STATE(3034), + [sym_decltype] = STATE(3036), + [sym_class_specifier] = STATE(3035), + [sym__class_name] = STATE(11809), + [sym_dependent_type] = STATE(3035), + [sym_template_type] = STATE(3136), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8938), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(3137), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(3201), + [sym__splice_specialization_specifier] = STATE(2685), + [sym_splice_type_specifier] = STATE(3099), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [aux_sym__type_definition_type_repeat1] = STATE(5683), + [aux_sym_sized_type_specifier_repeat1] = STATE(2337), + [sym_identifier] = ACTIONS(3854), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3860), + [anon_sym_COLON_COLON] = ACTIONS(3862), + [anon_sym_signed] = ACTIONS(3864), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_short] = ACTIONS(3864), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -117061,137 +122063,282 @@ 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(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), + [sym_primitive_type] = ACTIONS(3866), + [anon_sym_enum] = ACTIONS(3868), + [anon_sym_class] = ACTIONS(3870), + [anon_sym_struct] = ACTIONS(3872), + [anon_sym_union] = ACTIONS(3874), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3878), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3880), + [anon_sym_decltype] = ACTIONS(3882), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3884), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(414)] = { + [sym_identifier] = ACTIONS(3886), + [aux_sym_preproc_include_token1] = ACTIONS(3886), + [aux_sym_preproc_def_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token2] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3886), + [aux_sym_preproc_else_token1] = ACTIONS(3886), + [aux_sym_preproc_elif_token1] = ACTIONS(3886), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3886), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3886), + [sym_preproc_directive] = ACTIONS(3886), + [anon_sym_LPAREN2] = ACTIONS(3888), + [anon_sym_BANG] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(3886), + [anon_sym_typedef] = ACTIONS(3886), + [anon_sym_virtual] = ACTIONS(3886), + [anon_sym_extern] = ACTIONS(3886), + [anon_sym___attribute__] = ACTIONS(3886), + [anon_sym___attribute] = ACTIONS(3886), + [anon_sym_using] = ACTIONS(3886), + [anon_sym_COLON_COLON] = ACTIONS(3888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3888), + [anon_sym___declspec] = ACTIONS(3886), + [anon_sym___based] = ACTIONS(3886), + [anon_sym___cdecl] = ACTIONS(3886), + [anon_sym___clrcall] = ACTIONS(3886), + [anon_sym___stdcall] = ACTIONS(3886), + [anon_sym___fastcall] = ACTIONS(3886), + [anon_sym___thiscall] = ACTIONS(3886), + [anon_sym___vectorcall] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_signed] = ACTIONS(3886), + [anon_sym_unsigned] = ACTIONS(3886), + [anon_sym_long] = ACTIONS(3886), + [anon_sym_short] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_static] = ACTIONS(3886), + [anon_sym_register] = ACTIONS(3886), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym___inline] = ACTIONS(3886), + [anon_sym___inline__] = ACTIONS(3886), + [anon_sym___forceinline] = ACTIONS(3886), + [anon_sym_thread_local] = ACTIONS(3886), + [anon_sym___thread] = ACTIONS(3886), + [anon_sym_const] = ACTIONS(3886), + [anon_sym_constexpr] = ACTIONS(3886), + [anon_sym_volatile] = ACTIONS(3886), + [anon_sym_restrict] = ACTIONS(3886), + [anon_sym___restrict__] = ACTIONS(3886), + [anon_sym__Atomic] = ACTIONS(3886), + [anon_sym__Noreturn] = ACTIONS(3886), + [anon_sym_noreturn] = ACTIONS(3886), + [anon_sym__Nonnull] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3886), + [anon_sym_constinit] = ACTIONS(3886), + [anon_sym_consteval] = ACTIONS(3886), + [anon_sym_alignas] = ACTIONS(3886), + [anon_sym__Alignas] = ACTIONS(3886), + [sym_primitive_type] = ACTIONS(3886), + [anon_sym_enum] = ACTIONS(3886), + [anon_sym_class] = ACTIONS(3886), + [anon_sym_struct] = ACTIONS(3886), + [anon_sym_union] = ACTIONS(3886), + [anon_sym_if] = ACTIONS(3886), + [anon_sym_switch] = ACTIONS(3886), + [anon_sym_case] = ACTIONS(3886), + [anon_sym_default] = ACTIONS(3886), + [anon_sym_while] = ACTIONS(3886), + [anon_sym_do] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3886), + [anon_sym_return] = ACTIONS(3886), + [anon_sym_break] = ACTIONS(3886), + [anon_sym_continue] = ACTIONS(3886), + [anon_sym_goto] = ACTIONS(3886), + [anon_sym___try] = ACTIONS(3886), + [anon_sym___leave] = ACTIONS(3886), + [anon_sym_not] = ACTIONS(3886), + [anon_sym_compl] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3888), + [anon_sym_sizeof] = ACTIONS(3886), + [anon_sym___alignof__] = ACTIONS(3886), + [anon_sym___alignof] = ACTIONS(3886), + [anon_sym__alignof] = ACTIONS(3886), + [anon_sym_alignof] = ACTIONS(3886), + [anon_sym__Alignof] = ACTIONS(3886), + [anon_sym_offsetof] = ACTIONS(3886), + [anon_sym__Generic] = ACTIONS(3886), + [anon_sym_typename] = ACTIONS(3886), + [anon_sym_asm] = ACTIONS(3886), + [anon_sym___asm__] = ACTIONS(3886), + [anon_sym___asm] = ACTIONS(3886), + [sym_number_literal] = ACTIONS(3888), + [anon_sym_L_SQUOTE] = ACTIONS(3888), + [anon_sym_u_SQUOTE] = ACTIONS(3888), + [anon_sym_U_SQUOTE] = ACTIONS(3888), + [anon_sym_u8_SQUOTE] = ACTIONS(3888), + [anon_sym_SQUOTE] = ACTIONS(3888), + [anon_sym_L_DQUOTE] = ACTIONS(3888), + [anon_sym_u_DQUOTE] = ACTIONS(3888), + [anon_sym_U_DQUOTE] = ACTIONS(3888), + [anon_sym_u8_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [sym_true] = ACTIONS(3886), + [sym_false] = ACTIONS(3886), + [anon_sym_NULL] = ACTIONS(3886), + [anon_sym_nullptr] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3886), + [anon_sym_decltype] = ACTIONS(3886), + [anon_sym_explicit] = ACTIONS(3886), + [anon_sym_export] = ACTIONS(3886), + [anon_sym_module] = ACTIONS(3886), + [anon_sym_import] = ACTIONS(3886), + [anon_sym_template] = ACTIONS(3886), + [anon_sym_operator] = ACTIONS(3886), + [anon_sym_try] = ACTIONS(3886), + [anon_sym_delete] = ACTIONS(3886), + [anon_sym_throw] = ACTIONS(3886), + [anon_sym_namespace] = ACTIONS(3886), + [anon_sym_static_assert] = ACTIONS(3886), + [anon_sym_concept] = ACTIONS(3886), + [anon_sym_co_return] = ACTIONS(3886), + [anon_sym_co_yield] = ACTIONS(3886), + [anon_sym_R_DQUOTE] = ACTIONS(3888), + [anon_sym_LR_DQUOTE] = ACTIONS(3888), + [anon_sym_uR_DQUOTE] = ACTIONS(3888), + [anon_sym_UR_DQUOTE] = ACTIONS(3888), + [anon_sym_u8R_DQUOTE] = ACTIONS(3888), + [anon_sym_co_await] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3886), + [anon_sym_requires] = ACTIONS(3886), + [anon_sym_CARET_CARET] = ACTIONS(3888), + [anon_sym_LBRACK_COLON] = ACTIONS(3888), + [sym_this] = ACTIONS(3886), + }, + [STATE(415)] = { + [sym_type_qualifier] = STATE(5765), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2521), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7160), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(6659), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8946), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4441), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [aux_sym__type_definition_type_repeat1] = STATE(5765), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3890), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(3900), + [anon_sym_COLON_COLON] = ACTIONS(3902), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -117206,16 +122353,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(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), + [sym_primitive_type] = ACTIONS(3734), + [anon_sym_enum] = ACTIONS(3736), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3740), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -117223,120 +122370,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3883), + [anon_sym_typename] = ACTIONS(3748), [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(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), [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_auto] = ACTIONS(2280), + [anon_sym_decltype] = ACTIONS(2282), + [anon_sym_template] = ACTIONS(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), [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), + [STATE(416)] = { + [sym_catch_clause] = STATE(416), + [aux_sym_constructor_try_statement_repeat1] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(3171), + [sym_identifier] = ACTIONS(3169), + [aux_sym_preproc_include_token1] = ACTIONS(3169), + [aux_sym_preproc_def_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token1] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3169), + [sym_preproc_directive] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym___extension__] = ACTIONS(3169), + [anon_sym_typedef] = ACTIONS(3169), + [anon_sym_virtual] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym___attribute__] = ACTIONS(3169), + [anon_sym___attribute] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3171), + [anon_sym___declspec] = ACTIONS(3169), + [anon_sym___based] = ACTIONS(3169), + [anon_sym___cdecl] = ACTIONS(3169), + [anon_sym___clrcall] = ACTIONS(3169), + [anon_sym___stdcall] = ACTIONS(3169), + [anon_sym___fastcall] = ACTIONS(3169), + [anon_sym___thiscall] = ACTIONS(3169), + [anon_sym___vectorcall] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_register] = ACTIONS(3169), + [anon_sym_inline] = ACTIONS(3169), + [anon_sym___inline] = ACTIONS(3169), + [anon_sym___inline__] = ACTIONS(3169), + [anon_sym___forceinline] = ACTIONS(3169), + [anon_sym_thread_local] = ACTIONS(3169), + [anon_sym___thread] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_constexpr] = ACTIONS(3169), + [anon_sym_volatile] = ACTIONS(3169), + [anon_sym_restrict] = ACTIONS(3169), + [anon_sym___restrict__] = ACTIONS(3169), + [anon_sym__Atomic] = ACTIONS(3169), + [anon_sym__Noreturn] = ACTIONS(3169), + [anon_sym_noreturn] = ACTIONS(3169), + [anon_sym__Nonnull] = ACTIONS(3169), + [anon_sym_mutable] = ACTIONS(3169), + [anon_sym_constinit] = ACTIONS(3169), + [anon_sym_consteval] = ACTIONS(3169), + [anon_sym_alignas] = ACTIONS(3169), + [anon_sym__Alignas] = ACTIONS(3169), + [sym_primitive_type] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_case] = ACTIONS(3169), + [anon_sym_default] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_goto] = ACTIONS(3169), + [anon_sym___try] = ACTIONS(3169), + [anon_sym___leave] = ACTIONS(3169), + [anon_sym_not] = ACTIONS(3169), + [anon_sym_compl] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_sizeof] = ACTIONS(3169), + [anon_sym___alignof__] = ACTIONS(3169), + [anon_sym___alignof] = ACTIONS(3169), + [anon_sym__alignof] = ACTIONS(3169), + [anon_sym_alignof] = ACTIONS(3169), + [anon_sym__Alignof] = ACTIONS(3169), + [anon_sym_offsetof] = ACTIONS(3169), + [anon_sym__Generic] = ACTIONS(3169), + [anon_sym_typename] = ACTIONS(3169), + [anon_sym_asm] = ACTIONS(3169), + [anon_sym___asm__] = ACTIONS(3169), + [anon_sym___asm] = ACTIONS(3169), + [sym_number_literal] = ACTIONS(3171), + [anon_sym_L_SQUOTE] = ACTIONS(3171), + [anon_sym_u_SQUOTE] = ACTIONS(3171), + [anon_sym_U_SQUOTE] = ACTIONS(3171), + [anon_sym_u8_SQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_L_DQUOTE] = ACTIONS(3171), + [anon_sym_u_DQUOTE] = ACTIONS(3171), + [anon_sym_U_DQUOTE] = ACTIONS(3171), + [anon_sym_u8_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [sym_true] = ACTIONS(3169), + [sym_false] = ACTIONS(3169), + [anon_sym_NULL] = ACTIONS(3169), + [anon_sym_nullptr] = ACTIONS(3169), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3169), + [anon_sym_decltype] = ACTIONS(3169), + [anon_sym_explicit] = ACTIONS(3169), + [anon_sym_export] = ACTIONS(3169), + [anon_sym_module] = ACTIONS(3169), + [anon_sym_import] = ACTIONS(3169), + [anon_sym_template] = ACTIONS(3169), + [anon_sym_operator] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_delete] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_static_assert] = ACTIONS(3169), + [anon_sym_concept] = ACTIONS(3169), + [anon_sym_co_return] = ACTIONS(3169), + [anon_sym_co_yield] = ACTIONS(3169), + [anon_sym_catch] = ACTIONS(3928), + [anon_sym_R_DQUOTE] = ACTIONS(3171), + [anon_sym_LR_DQUOTE] = ACTIONS(3171), + [anon_sym_uR_DQUOTE] = ACTIONS(3171), + [anon_sym_UR_DQUOTE] = ACTIONS(3171), + [anon_sym_u8R_DQUOTE] = ACTIONS(3171), + [anon_sym_co_await] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_requires] = ACTIONS(3169), + [anon_sym_CARET_CARET] = ACTIONS(3171), + [anon_sym_LBRACK_COLON] = ACTIONS(3171), + [sym_this] = ACTIONS(3169), + }, + [STATE(417)] = { + [sym_type_qualifier] = STATE(5614), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2032), + [sym_sized_type_specifier] = STATE(2339), + [sym_enum_specifier] = STATE(2339), + [sym_struct_specifier] = STATE(2339), + [sym_union_specifier] = STATE(2339), + [sym_expression] = STATE(5145), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_type_descriptor] = STATE(4187), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_placeholder_type_specifier] = STATE(2339), + [sym_decltype_auto] = STATE(2328), + [sym_decltype] = STATE(2345), + [sym_class_specifier] = STATE(2339), + [sym__class_name] = STATE(11509), + [sym_dependent_type] = STATE(2339), + [sym_template_type] = STATE(2331), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8943), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(2346), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(2533), + [sym__splice_specialization_specifier] = STATE(2273), + [sym_splice_type_specifier] = STATE(2341), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [aux_sym__type_definition_type_repeat1] = STATE(5614), + [aux_sym_sized_type_specifier_repeat1] = STATE(2069), + [sym_identifier] = ACTIONS(3931), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3935), + [anon_sym_COLON_COLON] = ACTIONS(3937), + [anon_sym_signed] = ACTIONS(3832), + [anon_sym_unsigned] = ACTIONS(3832), + [anon_sym_long] = ACTIONS(3832), + [anon_sym_short] = ACTIONS(3832), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -117351,16 +122643,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(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), + [sym_primitive_type] = ACTIONS(3834), + [anon_sym_enum] = ACTIONS(3836), + [anon_sym_class] = ACTIONS(3838), + [anon_sym_struct] = ACTIONS(3840), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -117368,768 +122660,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2402), [anon_sym_offsetof] = ACTIONS(2404), [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(3817), + [anon_sym_typename] = ACTIONS(3846), [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(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), + [sym_auto] = ACTIONS(3848), + [anon_sym_decltype] = ACTIONS(3850), [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(3852), [sym_this] = ACTIONS(2418), }, - [STATE(403)] = { - [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), - [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_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), - }, - [STATE(404)] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(3921), - [aux_sym_preproc_elif_token1] = ACTIONS(3921), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3921), - [aux_sym_preproc_elifdef_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(405)] = { - [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_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___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)] = { + [STATE(418)] = { [sym_identifier] = ACTIONS(3939), [aux_sym_preproc_include_token1] = ACTIONS(3939), [aux_sym_preproc_def_token1] = ACTIONS(3939), @@ -118274,7 +122841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3941), [sym_this] = ACTIONS(3939), }, - [STATE(409)] = { + [STATE(419)] = { [sym_identifier] = ACTIONS(3943), [aux_sym_preproc_include_token1] = ACTIONS(3943), [aux_sym_preproc_def_token1] = ACTIONS(3943), @@ -118287,15 +122854,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LPAREN2] = ACTIONS(3946), + [anon_sym_BANG] = ACTIONS(3946), + [anon_sym_TILDE] = ACTIONS(3946), [anon_sym_DASH] = ACTIONS(3943), [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), + [anon_sym_STAR] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3945), + [anon_sym_SEMI] = ACTIONS(3946), [anon_sym___extension__] = ACTIONS(3943), [anon_sym_typedef] = ACTIONS(3943), [anon_sym_virtual] = ACTIONS(3943), @@ -118303,8 +122870,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(3946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3946), [anon_sym___declspec] = ACTIONS(3943), [anon_sym___based] = ACTIONS(3943), [anon_sym___cdecl] = ACTIONS(3943), @@ -118313,7 +122880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(3943), [anon_sym___thiscall] = ACTIONS(3943), [anon_sym___vectorcall] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_LBRACE] = ACTIONS(3946), [anon_sym_signed] = ACTIONS(3943), [anon_sym_unsigned] = ACTIONS(3943), [anon_sym_long] = ACTIONS(3943), @@ -118361,8 +122928,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH_DASH] = ACTIONS(3946), + [anon_sym_PLUS_PLUS] = ACTIONS(3946), [anon_sym_sizeof] = ACTIONS(3943), [anon_sym___alignof__] = ACTIONS(3943), [anon_sym___alignof] = ACTIONS(3943), @@ -118375,17 +122942,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(3946), + [anon_sym_L_SQUOTE] = ACTIONS(3946), + [anon_sym_u_SQUOTE] = ACTIONS(3946), + [anon_sym_U_SQUOTE] = ACTIONS(3946), + [anon_sym_u8_SQUOTE] = ACTIONS(3946), + [anon_sym_SQUOTE] = ACTIONS(3946), + [anon_sym_L_DQUOTE] = ACTIONS(3946), + [anon_sym_u_DQUOTE] = ACTIONS(3946), + [anon_sym_U_DQUOTE] = ACTIONS(3946), + [anon_sym_u8_DQUOTE] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3946), [sym_true] = ACTIONS(3943), [sym_false] = ACTIONS(3943), [anon_sym_NULL] = ACTIONS(3943), @@ -118407,821 +122974,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_R_DQUOTE] = ACTIONS(3946), + [anon_sym_LR_DQUOTE] = ACTIONS(3946), + [anon_sym_uR_DQUOTE] = ACTIONS(3946), + [anon_sym_UR_DQUOTE] = ACTIONS(3946), + [anon_sym_u8R_DQUOTE] = ACTIONS(3946), [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), + [anon_sym_CARET_CARET] = ACTIONS(3946), + [anon_sym_LBRACK_COLON] = ACTIONS(3946), [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), + [STATE(420)] = { + [sym_type_qualifier] = STATE(5614), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2032), + [sym_sized_type_specifier] = STATE(2339), + [sym_enum_specifier] = STATE(2339), + [sym_struct_specifier] = STATE(2339), + [sym_union_specifier] = STATE(2339), + [sym_expression] = STATE(4921), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_type_descriptor] = STATE(4187), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_placeholder_type_specifier] = STATE(2339), + [sym_decltype_auto] = STATE(2328), + [sym_decltype] = STATE(2345), + [sym_class_specifier] = STATE(2339), + [sym__class_name] = STATE(11509), + [sym_dependent_type] = STATE(2339), + [sym_template_type] = STATE(2331), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8956), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(2346), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(2783), + [sym__splice_specialization_specifier] = STATE(2273), + [sym_splice_type_specifier] = STATE(2341), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [aux_sym__type_definition_type_repeat1] = STATE(5614), + [aux_sym_sized_type_specifier_repeat1] = STATE(2069), + [sym_identifier] = ACTIONS(3949), + [anon_sym_LPAREN2] = ACTIONS(3951), [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_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(3953), + [anon_sym_COLON_COLON] = ACTIONS(3955), + [anon_sym_signed] = ACTIONS(3832), + [anon_sym_unsigned] = ACTIONS(3832), + [anon_sym_long] = ACTIONS(3832), + [anon_sym_short] = ACTIONS(3832), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -119236,15 +123078,15 @@ 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), + [sym_primitive_type] = ACTIONS(3834), + [anon_sym_enum] = ACTIONS(3836), + [anon_sym_class] = ACTIONS(3838), + [anon_sym_struct] = ACTIONS(3840), + [anon_sym_union] = ACTIONS(3842), [anon_sym_not] = ACTIONS(2388), [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), @@ -119253,7 +123095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2402), [anon_sym_offsetof] = ACTIONS(2404), [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(3982), + [anon_sym_typename] = ACTIONS(3846), [anon_sym_asm] = ACTIONS(2410), [anon_sym___asm__] = ACTIONS(2410), [anon_sym___asm] = ACTIONS(2410), @@ -119273,8 +123115,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(2420), [anon_sym_nullptr] = ACTIONS(2420), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3819), - [anon_sym_decltype] = ACTIONS(3821), + [sym_auto] = ACTIONS(3848), + [anon_sym_decltype] = ACTIONS(3850), [anon_sym_template] = ACTIONS(2424), [anon_sym_delete] = ACTIONS(2426), [anon_sym_R_DQUOTE] = ACTIONS(2428), @@ -119286,1750 +123128,2765 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2432), [anon_sym_requires] = ACTIONS(2434), [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [anon_sym_LBRACK_COLON] = ACTIONS(3852), [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), - }, [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), - [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(3959), + [aux_sym_preproc_include_token1] = ACTIONS(3959), + [aux_sym_preproc_def_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token2] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3959), + [aux_sym_preproc_else_token1] = ACTIONS(3959), + [aux_sym_preproc_elif_token1] = ACTIONS(3959), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3959), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3959), + [sym_preproc_directive] = ACTIONS(3959), + [anon_sym_LPAREN2] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym___extension__] = ACTIONS(3959), + [anon_sym_typedef] = ACTIONS(3959), + [anon_sym_virtual] = ACTIONS(3959), + [anon_sym_extern] = ACTIONS(3959), + [anon_sym___attribute__] = ACTIONS(3959), + [anon_sym___attribute] = ACTIONS(3959), + [anon_sym_using] = ACTIONS(3959), + [anon_sym_COLON_COLON] = ACTIONS(3961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3961), + [anon_sym___declspec] = ACTIONS(3959), + [anon_sym___based] = ACTIONS(3959), + [anon_sym___cdecl] = ACTIONS(3959), + [anon_sym___clrcall] = ACTIONS(3959), + [anon_sym___stdcall] = ACTIONS(3959), + [anon_sym___fastcall] = ACTIONS(3959), + [anon_sym___thiscall] = ACTIONS(3959), + [anon_sym___vectorcall] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_signed] = ACTIONS(3959), + [anon_sym_unsigned] = ACTIONS(3959), + [anon_sym_long] = ACTIONS(3959), + [anon_sym_short] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3959), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_register] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym___inline] = ACTIONS(3959), + [anon_sym___inline__] = ACTIONS(3959), + [anon_sym___forceinline] = ACTIONS(3959), + [anon_sym_thread_local] = ACTIONS(3959), + [anon_sym___thread] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_constexpr] = ACTIONS(3959), + [anon_sym_volatile] = ACTIONS(3959), + [anon_sym_restrict] = ACTIONS(3959), + [anon_sym___restrict__] = ACTIONS(3959), + [anon_sym__Atomic] = ACTIONS(3959), + [anon_sym__Noreturn] = ACTIONS(3959), + [anon_sym_noreturn] = ACTIONS(3959), + [anon_sym__Nonnull] = ACTIONS(3959), + [anon_sym_mutable] = ACTIONS(3959), + [anon_sym_constinit] = ACTIONS(3959), + [anon_sym_consteval] = ACTIONS(3959), + [anon_sym_alignas] = ACTIONS(3959), + [anon_sym__Alignas] = ACTIONS(3959), + [sym_primitive_type] = ACTIONS(3959), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_union] = ACTIONS(3959), + [anon_sym_if] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3959), + [anon_sym_case] = ACTIONS(3959), + [anon_sym_default] = ACTIONS(3959), + [anon_sym_while] = ACTIONS(3959), + [anon_sym_do] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3959), + [anon_sym_return] = ACTIONS(3959), + [anon_sym_break] = ACTIONS(3959), + [anon_sym_continue] = ACTIONS(3959), + [anon_sym_goto] = ACTIONS(3959), + [anon_sym___try] = ACTIONS(3959), + [anon_sym___leave] = ACTIONS(3959), + [anon_sym_not] = ACTIONS(3959), + [anon_sym_compl] = ACTIONS(3959), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_sizeof] = ACTIONS(3959), + [anon_sym___alignof__] = ACTIONS(3959), + [anon_sym___alignof] = ACTIONS(3959), + [anon_sym__alignof] = ACTIONS(3959), + [anon_sym_alignof] = ACTIONS(3959), + [anon_sym__Alignof] = ACTIONS(3959), + [anon_sym_offsetof] = ACTIONS(3959), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(3959), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3961), + [anon_sym_u_SQUOTE] = ACTIONS(3961), + [anon_sym_U_SQUOTE] = ACTIONS(3961), + [anon_sym_u8_SQUOTE] = ACTIONS(3961), + [anon_sym_SQUOTE] = ACTIONS(3961), + [anon_sym_L_DQUOTE] = ACTIONS(3961), + [anon_sym_u_DQUOTE] = ACTIONS(3961), + [anon_sym_U_DQUOTE] = ACTIONS(3961), + [anon_sym_u8_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [sym_true] = ACTIONS(3959), + [sym_false] = ACTIONS(3959), + [anon_sym_NULL] = ACTIONS(3959), + [anon_sym_nullptr] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3959), + [anon_sym_decltype] = ACTIONS(3959), + [anon_sym_explicit] = ACTIONS(3959), + [anon_sym_export] = ACTIONS(3959), + [anon_sym_module] = ACTIONS(3959), + [anon_sym_import] = ACTIONS(3959), + [anon_sym_template] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_try] = ACTIONS(3959), + [anon_sym_delete] = ACTIONS(3959), + [anon_sym_throw] = ACTIONS(3959), + [anon_sym_namespace] = ACTIONS(3959), + [anon_sym_static_assert] = ACTIONS(3959), + [anon_sym_concept] = ACTIONS(3959), + [anon_sym_co_return] = ACTIONS(3959), + [anon_sym_co_yield] = ACTIONS(3959), + [anon_sym_R_DQUOTE] = ACTIONS(3961), + [anon_sym_LR_DQUOTE] = ACTIONS(3961), + [anon_sym_uR_DQUOTE] = ACTIONS(3961), + [anon_sym_UR_DQUOTE] = ACTIONS(3961), + [anon_sym_u8R_DQUOTE] = ACTIONS(3961), + [anon_sym_co_await] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3959), + [anon_sym_requires] = ACTIONS(3959), + [anon_sym_CARET_CARET] = ACTIONS(3961), + [anon_sym_LBRACK_COLON] = ACTIONS(3961), + [sym_this] = ACTIONS(3959), }, [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), + [sym_catch_clause] = STATE(439), + [aux_sym_constructor_try_statement_repeat1] = STATE(439), + [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), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3165), + [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(3165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3165), + [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(3165), + [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(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [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(3165), + [anon_sym_L_SQUOTE] = ACTIONS(3165), + [anon_sym_u_SQUOTE] = ACTIONS(3165), + [anon_sym_U_SQUOTE] = ACTIONS(3165), + [anon_sym_u8_SQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_L_DQUOTE] = ACTIONS(3165), + [anon_sym_u_DQUOTE] = ACTIONS(3165), + [anon_sym_U_DQUOTE] = ACTIONS(3165), + [anon_sym_u8_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [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(3963), + [anon_sym_R_DQUOTE] = ACTIONS(3165), + [anon_sym_LR_DQUOTE] = ACTIONS(3165), + [anon_sym_uR_DQUOTE] = ACTIONS(3165), + [anon_sym_UR_DQUOTE] = ACTIONS(3165), + [anon_sym_u8R_DQUOTE] = ACTIONS(3165), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3165), + [anon_sym_LBRACK_COLON] = ACTIONS(3165), + [sym_this] = ACTIONS(3163), }, [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), + [sym_identifier] = ACTIONS(3965), + [aux_sym_preproc_include_token1] = ACTIONS(3965), + [aux_sym_preproc_def_token1] = ACTIONS(3965), + [aux_sym_preproc_if_token1] = ACTIONS(3965), + [aux_sym_preproc_if_token2] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3965), + [aux_sym_preproc_else_token1] = ACTIONS(3965), + [aux_sym_preproc_elif_token1] = ACTIONS(3965), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3965), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3965), + [sym_preproc_directive] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3967), + [anon_sym_TILDE] = ACTIONS(3967), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_STAR] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym___extension__] = ACTIONS(3965), + [anon_sym_typedef] = ACTIONS(3965), + [anon_sym_virtual] = ACTIONS(3965), + [anon_sym_extern] = ACTIONS(3965), + [anon_sym___attribute__] = ACTIONS(3965), + [anon_sym___attribute] = ACTIONS(3965), + [anon_sym_using] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3967), + [anon_sym___declspec] = ACTIONS(3965), + [anon_sym___based] = ACTIONS(3965), + [anon_sym___cdecl] = ACTIONS(3965), + [anon_sym___clrcall] = ACTIONS(3965), + [anon_sym___stdcall] = ACTIONS(3965), + [anon_sym___fastcall] = ACTIONS(3965), + [anon_sym___thiscall] = ACTIONS(3965), + [anon_sym___vectorcall] = ACTIONS(3965), + [anon_sym_LBRACE] = ACTIONS(3967), + [anon_sym_signed] = ACTIONS(3965), + [anon_sym_unsigned] = ACTIONS(3965), + [anon_sym_long] = ACTIONS(3965), + [anon_sym_short] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_static] = ACTIONS(3965), + [anon_sym_register] = ACTIONS(3965), + [anon_sym_inline] = ACTIONS(3965), + [anon_sym___inline] = ACTIONS(3965), + [anon_sym___inline__] = ACTIONS(3965), + [anon_sym___forceinline] = ACTIONS(3965), + [anon_sym_thread_local] = ACTIONS(3965), + [anon_sym___thread] = ACTIONS(3965), + [anon_sym_const] = ACTIONS(3965), + [anon_sym_constexpr] = ACTIONS(3965), + [anon_sym_volatile] = ACTIONS(3965), + [anon_sym_restrict] = ACTIONS(3965), + [anon_sym___restrict__] = ACTIONS(3965), + [anon_sym__Atomic] = ACTIONS(3965), + [anon_sym__Noreturn] = ACTIONS(3965), + [anon_sym_noreturn] = ACTIONS(3965), + [anon_sym__Nonnull] = ACTIONS(3965), + [anon_sym_mutable] = ACTIONS(3965), + [anon_sym_constinit] = ACTIONS(3965), + [anon_sym_consteval] = ACTIONS(3965), + [anon_sym_alignas] = ACTIONS(3965), + [anon_sym__Alignas] = ACTIONS(3965), + [sym_primitive_type] = ACTIONS(3965), + [anon_sym_enum] = ACTIONS(3965), + [anon_sym_class] = ACTIONS(3965), + [anon_sym_struct] = ACTIONS(3965), + [anon_sym_union] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_switch] = ACTIONS(3965), + [anon_sym_case] = ACTIONS(3965), + [anon_sym_default] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_break] = ACTIONS(3965), + [anon_sym_continue] = ACTIONS(3965), + [anon_sym_goto] = ACTIONS(3965), + [anon_sym___try] = ACTIONS(3965), + [anon_sym___leave] = ACTIONS(3965), + [anon_sym_not] = ACTIONS(3965), + [anon_sym_compl] = ACTIONS(3965), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_sizeof] = ACTIONS(3965), + [anon_sym___alignof__] = ACTIONS(3965), + [anon_sym___alignof] = ACTIONS(3965), + [anon_sym__alignof] = ACTIONS(3965), + [anon_sym_alignof] = ACTIONS(3965), + [anon_sym__Alignof] = ACTIONS(3965), + [anon_sym_offsetof] = ACTIONS(3965), + [anon_sym__Generic] = ACTIONS(3965), + [anon_sym_typename] = ACTIONS(3965), + [anon_sym_asm] = ACTIONS(3965), + [anon_sym___asm__] = ACTIONS(3965), + [anon_sym___asm] = ACTIONS(3965), + [sym_number_literal] = ACTIONS(3967), + [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(3967), + [anon_sym_u_DQUOTE] = ACTIONS(3967), + [anon_sym_U_DQUOTE] = ACTIONS(3967), + [anon_sym_u8_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [sym_true] = ACTIONS(3965), + [sym_false] = ACTIONS(3965), + [anon_sym_NULL] = ACTIONS(3965), + [anon_sym_nullptr] = ACTIONS(3965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3965), + [anon_sym_decltype] = ACTIONS(3965), + [anon_sym_explicit] = ACTIONS(3965), + [anon_sym_export] = ACTIONS(3965), + [anon_sym_module] = ACTIONS(3965), + [anon_sym_import] = ACTIONS(3965), + [anon_sym_template] = ACTIONS(3965), + [anon_sym_operator] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_delete] = ACTIONS(3965), + [anon_sym_throw] = ACTIONS(3965), + [anon_sym_namespace] = ACTIONS(3965), + [anon_sym_static_assert] = ACTIONS(3965), + [anon_sym_concept] = ACTIONS(3965), + [anon_sym_co_return] = ACTIONS(3965), + [anon_sym_co_yield] = ACTIONS(3965), + [anon_sym_R_DQUOTE] = ACTIONS(3967), + [anon_sym_LR_DQUOTE] = ACTIONS(3967), + [anon_sym_uR_DQUOTE] = ACTIONS(3967), + [anon_sym_UR_DQUOTE] = ACTIONS(3967), + [anon_sym_u8R_DQUOTE] = ACTIONS(3967), + [anon_sym_co_await] = ACTIONS(3965), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_requires] = ACTIONS(3965), + [anon_sym_CARET_CARET] = ACTIONS(3967), + [anon_sym_LBRACK_COLON] = ACTIONS(3967), + [sym_this] = ACTIONS(3965), }, [STATE(424)] = { - [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), + [sym_identifier] = ACTIONS(3969), + [aux_sym_preproc_include_token1] = ACTIONS(3969), + [aux_sym_preproc_def_token1] = ACTIONS(3969), + [aux_sym_preproc_if_token1] = ACTIONS(3969), + [aux_sym_preproc_if_token2] = ACTIONS(3969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3969), + [aux_sym_preproc_else_token1] = ACTIONS(3969), + [aux_sym_preproc_elif_token1] = ACTIONS(3969), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3969), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3969), + [sym_preproc_directive] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_BANG] = ACTIONS(3971), + [anon_sym_TILDE] = ACTIONS(3971), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_STAR] = ACTIONS(3971), + [anon_sym_AMP_AMP] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_SEMI] = ACTIONS(3971), + [anon_sym___extension__] = ACTIONS(3969), + [anon_sym_typedef] = ACTIONS(3969), + [anon_sym_virtual] = ACTIONS(3969), + [anon_sym_extern] = ACTIONS(3969), + [anon_sym___attribute__] = ACTIONS(3969), + [anon_sym___attribute] = ACTIONS(3969), + [anon_sym_using] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3971), + [anon_sym___declspec] = ACTIONS(3969), + [anon_sym___based] = ACTIONS(3969), + [anon_sym___cdecl] = ACTIONS(3969), + [anon_sym___clrcall] = ACTIONS(3969), + [anon_sym___stdcall] = ACTIONS(3969), + [anon_sym___fastcall] = ACTIONS(3969), + [anon_sym___thiscall] = ACTIONS(3969), + [anon_sym___vectorcall] = ACTIONS(3969), + [anon_sym_LBRACE] = ACTIONS(3971), + [anon_sym_signed] = ACTIONS(3969), + [anon_sym_unsigned] = ACTIONS(3969), + [anon_sym_long] = ACTIONS(3969), + [anon_sym_short] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_static] = ACTIONS(3969), + [anon_sym_register] = ACTIONS(3969), + [anon_sym_inline] = ACTIONS(3969), + [anon_sym___inline] = ACTIONS(3969), + [anon_sym___inline__] = ACTIONS(3969), + [anon_sym___forceinline] = ACTIONS(3969), + [anon_sym_thread_local] = ACTIONS(3969), + [anon_sym___thread] = ACTIONS(3969), + [anon_sym_const] = ACTIONS(3969), + [anon_sym_constexpr] = ACTIONS(3969), + [anon_sym_volatile] = ACTIONS(3969), + [anon_sym_restrict] = ACTIONS(3969), + [anon_sym___restrict__] = ACTIONS(3969), + [anon_sym__Atomic] = ACTIONS(3969), + [anon_sym__Noreturn] = ACTIONS(3969), + [anon_sym_noreturn] = ACTIONS(3969), + [anon_sym__Nonnull] = ACTIONS(3969), + [anon_sym_mutable] = ACTIONS(3969), + [anon_sym_constinit] = ACTIONS(3969), + [anon_sym_consteval] = ACTIONS(3969), + [anon_sym_alignas] = ACTIONS(3969), + [anon_sym__Alignas] = ACTIONS(3969), + [sym_primitive_type] = ACTIONS(3969), + [anon_sym_enum] = ACTIONS(3969), + [anon_sym_class] = ACTIONS(3969), + [anon_sym_struct] = ACTIONS(3969), + [anon_sym_union] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_switch] = ACTIONS(3969), + [anon_sym_case] = ACTIONS(3969), + [anon_sym_default] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_break] = ACTIONS(3969), + [anon_sym_continue] = ACTIONS(3969), + [anon_sym_goto] = ACTIONS(3969), + [anon_sym___try] = ACTIONS(3969), + [anon_sym___leave] = ACTIONS(3969), + [anon_sym_not] = ACTIONS(3969), + [anon_sym_compl] = ACTIONS(3969), + [anon_sym_DASH_DASH] = ACTIONS(3971), + [anon_sym_PLUS_PLUS] = ACTIONS(3971), + [anon_sym_sizeof] = ACTIONS(3969), + [anon_sym___alignof__] = ACTIONS(3969), + [anon_sym___alignof] = ACTIONS(3969), + [anon_sym__alignof] = ACTIONS(3969), + [anon_sym_alignof] = ACTIONS(3969), + [anon_sym__Alignof] = ACTIONS(3969), + [anon_sym_offsetof] = ACTIONS(3969), + [anon_sym__Generic] = ACTIONS(3969), + [anon_sym_typename] = ACTIONS(3969), + [anon_sym_asm] = ACTIONS(3969), + [anon_sym___asm__] = ACTIONS(3969), + [anon_sym___asm] = ACTIONS(3969), + [sym_number_literal] = ACTIONS(3971), + [anon_sym_L_SQUOTE] = ACTIONS(3971), + [anon_sym_u_SQUOTE] = ACTIONS(3971), + [anon_sym_U_SQUOTE] = ACTIONS(3971), + [anon_sym_u8_SQUOTE] = ACTIONS(3971), + [anon_sym_SQUOTE] = ACTIONS(3971), + [anon_sym_L_DQUOTE] = ACTIONS(3971), + [anon_sym_u_DQUOTE] = ACTIONS(3971), + [anon_sym_U_DQUOTE] = ACTIONS(3971), + [anon_sym_u8_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE] = ACTIONS(3971), + [sym_true] = ACTIONS(3969), + [sym_false] = ACTIONS(3969), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3969), + [anon_sym_decltype] = ACTIONS(3969), + [anon_sym_explicit] = ACTIONS(3969), + [anon_sym_export] = ACTIONS(3969), + [anon_sym_module] = ACTIONS(3969), + [anon_sym_import] = ACTIONS(3969), + [anon_sym_template] = ACTIONS(3969), + [anon_sym_operator] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_delete] = ACTIONS(3969), + [anon_sym_throw] = ACTIONS(3969), + [anon_sym_namespace] = ACTIONS(3969), + [anon_sym_static_assert] = ACTIONS(3969), + [anon_sym_concept] = ACTIONS(3969), + [anon_sym_co_return] = ACTIONS(3969), + [anon_sym_co_yield] = ACTIONS(3969), + [anon_sym_R_DQUOTE] = ACTIONS(3971), + [anon_sym_LR_DQUOTE] = ACTIONS(3971), + [anon_sym_uR_DQUOTE] = ACTIONS(3971), + [anon_sym_UR_DQUOTE] = ACTIONS(3971), + [anon_sym_u8R_DQUOTE] = ACTIONS(3971), + [anon_sym_co_await] = ACTIONS(3969), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_requires] = ACTIONS(3969), + [anon_sym_CARET_CARET] = ACTIONS(3971), + [anon_sym_LBRACK_COLON] = ACTIONS(3971), + [sym_this] = ACTIONS(3969), }, [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___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), + [sym_identifier] = ACTIONS(3973), + [aux_sym_preproc_include_token1] = ACTIONS(3973), + [aux_sym_preproc_def_token1] = ACTIONS(3973), + [aux_sym_preproc_if_token1] = ACTIONS(3973), + [aux_sym_preproc_if_token2] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3973), + [aux_sym_preproc_else_token1] = ACTIONS(3973), + [aux_sym_preproc_elif_token1] = ACTIONS(3973), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3973), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3973), + [sym_preproc_directive] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_BANG] = ACTIONS(3975), + [anon_sym_TILDE] = ACTIONS(3975), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3975), + [anon_sym___extension__] = ACTIONS(3973), + [anon_sym_typedef] = ACTIONS(3973), + [anon_sym_virtual] = ACTIONS(3973), + [anon_sym_extern] = ACTIONS(3973), + [anon_sym___attribute__] = ACTIONS(3973), + [anon_sym___attribute] = ACTIONS(3973), + [anon_sym_using] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3975), + [anon_sym___declspec] = ACTIONS(3973), + [anon_sym___based] = ACTIONS(3973), + [anon_sym___cdecl] = ACTIONS(3973), + [anon_sym___clrcall] = ACTIONS(3973), + [anon_sym___stdcall] = ACTIONS(3973), + [anon_sym___fastcall] = ACTIONS(3973), + [anon_sym___thiscall] = ACTIONS(3973), + [anon_sym___vectorcall] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3975), + [anon_sym_signed] = ACTIONS(3973), + [anon_sym_unsigned] = ACTIONS(3973), + [anon_sym_long] = ACTIONS(3973), + [anon_sym_short] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_static] = ACTIONS(3973), + [anon_sym_register] = ACTIONS(3973), + [anon_sym_inline] = ACTIONS(3973), + [anon_sym___inline] = ACTIONS(3973), + [anon_sym___inline__] = ACTIONS(3973), + [anon_sym___forceinline] = ACTIONS(3973), + [anon_sym_thread_local] = ACTIONS(3973), + [anon_sym___thread] = ACTIONS(3973), + [anon_sym_const] = ACTIONS(3973), + [anon_sym_constexpr] = ACTIONS(3973), + [anon_sym_volatile] = ACTIONS(3973), + [anon_sym_restrict] = ACTIONS(3973), + [anon_sym___restrict__] = ACTIONS(3973), + [anon_sym__Atomic] = ACTIONS(3973), + [anon_sym__Noreturn] = ACTIONS(3973), + [anon_sym_noreturn] = ACTIONS(3973), + [anon_sym__Nonnull] = ACTIONS(3973), + [anon_sym_mutable] = ACTIONS(3973), + [anon_sym_constinit] = ACTIONS(3973), + [anon_sym_consteval] = ACTIONS(3973), + [anon_sym_alignas] = ACTIONS(3973), + [anon_sym__Alignas] = ACTIONS(3973), + [sym_primitive_type] = ACTIONS(3973), + [anon_sym_enum] = ACTIONS(3973), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_struct] = ACTIONS(3973), + [anon_sym_union] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_switch] = ACTIONS(3973), + [anon_sym_case] = ACTIONS(3973), + [anon_sym_default] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_break] = ACTIONS(3973), + [anon_sym_continue] = ACTIONS(3973), + [anon_sym_goto] = ACTIONS(3973), + [anon_sym___try] = ACTIONS(3973), + [anon_sym___leave] = ACTIONS(3973), + [anon_sym_not] = ACTIONS(3973), + [anon_sym_compl] = ACTIONS(3973), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_sizeof] = ACTIONS(3973), + [anon_sym___alignof__] = ACTIONS(3973), + [anon_sym___alignof] = ACTIONS(3973), + [anon_sym__alignof] = ACTIONS(3973), + [anon_sym_alignof] = ACTIONS(3973), + [anon_sym__Alignof] = ACTIONS(3973), + [anon_sym_offsetof] = ACTIONS(3973), + [anon_sym__Generic] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3973), + [anon_sym_asm] = ACTIONS(3973), + [anon_sym___asm__] = ACTIONS(3973), + [anon_sym___asm] = ACTIONS(3973), + [sym_number_literal] = ACTIONS(3975), + [anon_sym_L_SQUOTE] = ACTIONS(3975), + [anon_sym_u_SQUOTE] = ACTIONS(3975), + [anon_sym_U_SQUOTE] = ACTIONS(3975), + [anon_sym_u8_SQUOTE] = ACTIONS(3975), + [anon_sym_SQUOTE] = ACTIONS(3975), + [anon_sym_L_DQUOTE] = ACTIONS(3975), + [anon_sym_u_DQUOTE] = ACTIONS(3975), + [anon_sym_U_DQUOTE] = ACTIONS(3975), + [anon_sym_u8_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [sym_true] = ACTIONS(3973), + [sym_false] = ACTIONS(3973), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3973), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_explicit] = ACTIONS(3973), + [anon_sym_export] = ACTIONS(3973), + [anon_sym_module] = ACTIONS(3973), + [anon_sym_import] = ACTIONS(3973), + [anon_sym_template] = ACTIONS(3973), + [anon_sym_operator] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_delete] = ACTIONS(3973), + [anon_sym_throw] = ACTIONS(3973), + [anon_sym_namespace] = ACTIONS(3973), + [anon_sym_static_assert] = ACTIONS(3973), + [anon_sym_concept] = ACTIONS(3973), + [anon_sym_co_return] = ACTIONS(3973), + [anon_sym_co_yield] = ACTIONS(3973), + [anon_sym_R_DQUOTE] = ACTIONS(3975), + [anon_sym_LR_DQUOTE] = ACTIONS(3975), + [anon_sym_uR_DQUOTE] = ACTIONS(3975), + [anon_sym_UR_DQUOTE] = ACTIONS(3975), + [anon_sym_u8R_DQUOTE] = ACTIONS(3975), + [anon_sym_co_await] = ACTIONS(3973), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_requires] = ACTIONS(3973), + [anon_sym_CARET_CARET] = ACTIONS(3975), + [anon_sym_LBRACK_COLON] = ACTIONS(3975), + [sym_this] = ACTIONS(3973), }, [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), + [sym_identifier] = ACTIONS(3977), + [aux_sym_preproc_include_token1] = ACTIONS(3977), + [aux_sym_preproc_def_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token2] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3977), + [aux_sym_preproc_else_token1] = ACTIONS(3977), + [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3977), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3977), + [sym_preproc_directive] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_TILDE] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_typedef] = ACTIONS(3977), + [anon_sym_virtual] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_using] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym___based] = ACTIONS(3977), + [anon_sym___cdecl] = ACTIONS(3977), + [anon_sym___clrcall] = ACTIONS(3977), + [anon_sym___stdcall] = ACTIONS(3977), + [anon_sym___fastcall] = ACTIONS(3977), + [anon_sym___thiscall] = ACTIONS(3977), + [anon_sym___vectorcall] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_signed] = ACTIONS(3977), + [anon_sym_unsigned] = ACTIONS(3977), + [anon_sym_long] = ACTIONS(3977), + [anon_sym_short] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_mutable] = ACTIONS(3977), + [anon_sym_constinit] = ACTIONS(3977), + [anon_sym_consteval] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [sym_primitive_type] = ACTIONS(3977), + [anon_sym_enum] = ACTIONS(3977), + [anon_sym_class] = ACTIONS(3977), + [anon_sym_struct] = ACTIONS(3977), + [anon_sym_union] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_switch] = ACTIONS(3977), + [anon_sym_case] = ACTIONS(3977), + [anon_sym_default] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_break] = ACTIONS(3977), + [anon_sym_continue] = ACTIONS(3977), + [anon_sym_goto] = ACTIONS(3977), + [anon_sym___try] = ACTIONS(3977), + [anon_sym___leave] = ACTIONS(3977), + [anon_sym_not] = ACTIONS(3977), + [anon_sym_compl] = ACTIONS(3977), + [anon_sym_DASH_DASH] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3979), + [anon_sym_sizeof] = ACTIONS(3977), + [anon_sym___alignof__] = ACTIONS(3977), + [anon_sym___alignof] = ACTIONS(3977), + [anon_sym__alignof] = ACTIONS(3977), + [anon_sym_alignof] = ACTIONS(3977), + [anon_sym__Alignof] = ACTIONS(3977), + [anon_sym_offsetof] = ACTIONS(3977), + [anon_sym__Generic] = ACTIONS(3977), + [anon_sym_typename] = ACTIONS(3977), + [anon_sym_asm] = ACTIONS(3977), + [anon_sym___asm__] = ACTIONS(3977), + [anon_sym___asm] = ACTIONS(3977), + [sym_number_literal] = ACTIONS(3979), + [anon_sym_L_SQUOTE] = ACTIONS(3979), + [anon_sym_u_SQUOTE] = ACTIONS(3979), + [anon_sym_U_SQUOTE] = ACTIONS(3979), + [anon_sym_u8_SQUOTE] = ACTIONS(3979), + [anon_sym_SQUOTE] = ACTIONS(3979), + [anon_sym_L_DQUOTE] = ACTIONS(3979), + [anon_sym_u_DQUOTE] = ACTIONS(3979), + [anon_sym_U_DQUOTE] = ACTIONS(3979), + [anon_sym_u8_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [sym_true] = ACTIONS(3977), + [sym_false] = ACTIONS(3977), + [anon_sym_NULL] = ACTIONS(3977), + [anon_sym_nullptr] = ACTIONS(3977), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3977), + [anon_sym_decltype] = ACTIONS(3977), + [anon_sym_explicit] = ACTIONS(3977), + [anon_sym_export] = ACTIONS(3977), + [anon_sym_module] = ACTIONS(3977), + [anon_sym_import] = ACTIONS(3977), + [anon_sym_template] = ACTIONS(3977), + [anon_sym_operator] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_delete] = ACTIONS(3977), + [anon_sym_throw] = ACTIONS(3977), + [anon_sym_namespace] = ACTIONS(3977), + [anon_sym_static_assert] = ACTIONS(3977), + [anon_sym_concept] = ACTIONS(3977), + [anon_sym_co_return] = ACTIONS(3977), + [anon_sym_co_yield] = ACTIONS(3977), + [anon_sym_R_DQUOTE] = ACTIONS(3979), + [anon_sym_LR_DQUOTE] = ACTIONS(3979), + [anon_sym_uR_DQUOTE] = ACTIONS(3979), + [anon_sym_UR_DQUOTE] = ACTIONS(3979), + [anon_sym_u8R_DQUOTE] = ACTIONS(3979), + [anon_sym_co_await] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_requires] = ACTIONS(3977), + [anon_sym_CARET_CARET] = ACTIONS(3979), + [anon_sym_LBRACK_COLON] = ACTIONS(3979), + [sym_this] = ACTIONS(3977), }, [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_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), + [sym_identifier] = ACTIONS(3981), + [aux_sym_preproc_include_token1] = ACTIONS(3981), + [aux_sym_preproc_def_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token2] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3981), + [aux_sym_preproc_else_token1] = ACTIONS(3981), + [aux_sym_preproc_elif_token1] = ACTIONS(3981), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3981), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3981), + [sym_preproc_directive] = ACTIONS(3981), + [anon_sym_LPAREN2] = ACTIONS(3983), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_TILDE] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3981), + [anon_sym_STAR] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym___extension__] = ACTIONS(3981), + [anon_sym_typedef] = ACTIONS(3981), + [anon_sym_virtual] = ACTIONS(3981), + [anon_sym_extern] = ACTIONS(3981), + [anon_sym___attribute__] = ACTIONS(3981), + [anon_sym___attribute] = ACTIONS(3981), + [anon_sym_using] = ACTIONS(3981), + [anon_sym_COLON_COLON] = ACTIONS(3983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3983), + [anon_sym___declspec] = ACTIONS(3981), + [anon_sym___based] = ACTIONS(3981), + [anon_sym___cdecl] = ACTIONS(3981), + [anon_sym___clrcall] = ACTIONS(3981), + [anon_sym___stdcall] = ACTIONS(3981), + [anon_sym___fastcall] = ACTIONS(3981), + [anon_sym___thiscall] = ACTIONS(3981), + [anon_sym___vectorcall] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_signed] = ACTIONS(3981), + [anon_sym_unsigned] = ACTIONS(3981), + [anon_sym_long] = ACTIONS(3981), + [anon_sym_short] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_register] = ACTIONS(3981), + [anon_sym_inline] = ACTIONS(3981), + [anon_sym___inline] = ACTIONS(3981), + [anon_sym___inline__] = ACTIONS(3981), + [anon_sym___forceinline] = ACTIONS(3981), + [anon_sym_thread_local] = ACTIONS(3981), + [anon_sym___thread] = ACTIONS(3981), + [anon_sym_const] = ACTIONS(3981), + [anon_sym_constexpr] = ACTIONS(3981), + [anon_sym_volatile] = ACTIONS(3981), + [anon_sym_restrict] = ACTIONS(3981), + [anon_sym___restrict__] = ACTIONS(3981), + [anon_sym__Atomic] = ACTIONS(3981), + [anon_sym__Noreturn] = ACTIONS(3981), + [anon_sym_noreturn] = ACTIONS(3981), + [anon_sym__Nonnull] = ACTIONS(3981), + [anon_sym_mutable] = ACTIONS(3981), + [anon_sym_constinit] = ACTIONS(3981), + [anon_sym_consteval] = ACTIONS(3981), + [anon_sym_alignas] = ACTIONS(3981), + [anon_sym__Alignas] = ACTIONS(3981), + [sym_primitive_type] = ACTIONS(3981), + [anon_sym_enum] = ACTIONS(3981), + [anon_sym_class] = ACTIONS(3981), + [anon_sym_struct] = ACTIONS(3981), + [anon_sym_union] = ACTIONS(3981), + [anon_sym_if] = ACTIONS(3981), + [anon_sym_switch] = ACTIONS(3981), + [anon_sym_case] = ACTIONS(3981), + [anon_sym_default] = ACTIONS(3981), + [anon_sym_while] = ACTIONS(3981), + [anon_sym_do] = ACTIONS(3981), + [anon_sym_for] = ACTIONS(3981), + [anon_sym_return] = ACTIONS(3981), + [anon_sym_break] = ACTIONS(3981), + [anon_sym_continue] = ACTIONS(3981), + [anon_sym_goto] = ACTIONS(3981), + [anon_sym___try] = ACTIONS(3981), + [anon_sym___leave] = ACTIONS(3981), + [anon_sym_not] = ACTIONS(3981), + [anon_sym_compl] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3983), + [anon_sym_sizeof] = ACTIONS(3981), + [anon_sym___alignof__] = ACTIONS(3981), + [anon_sym___alignof] = ACTIONS(3981), + [anon_sym__alignof] = ACTIONS(3981), + [anon_sym_alignof] = ACTIONS(3981), + [anon_sym__Alignof] = ACTIONS(3981), + [anon_sym_offsetof] = ACTIONS(3981), + [anon_sym__Generic] = ACTIONS(3981), + [anon_sym_typename] = ACTIONS(3981), + [anon_sym_asm] = ACTIONS(3981), + [anon_sym___asm__] = ACTIONS(3981), + [anon_sym___asm] = ACTIONS(3981), + [sym_number_literal] = ACTIONS(3983), + [anon_sym_L_SQUOTE] = ACTIONS(3983), + [anon_sym_u_SQUOTE] = ACTIONS(3983), + [anon_sym_U_SQUOTE] = ACTIONS(3983), + [anon_sym_u8_SQUOTE] = ACTIONS(3983), + [anon_sym_SQUOTE] = ACTIONS(3983), + [anon_sym_L_DQUOTE] = ACTIONS(3983), + [anon_sym_u_DQUOTE] = ACTIONS(3983), + [anon_sym_U_DQUOTE] = ACTIONS(3983), + [anon_sym_u8_DQUOTE] = ACTIONS(3983), + [anon_sym_DQUOTE] = ACTIONS(3983), + [sym_true] = ACTIONS(3981), + [sym_false] = ACTIONS(3981), + [anon_sym_NULL] = ACTIONS(3981), + [anon_sym_nullptr] = ACTIONS(3981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3981), + [anon_sym_decltype] = ACTIONS(3981), + [anon_sym_explicit] = ACTIONS(3981), + [anon_sym_export] = ACTIONS(3981), + [anon_sym_module] = ACTIONS(3981), + [anon_sym_import] = ACTIONS(3981), + [anon_sym_template] = ACTIONS(3981), + [anon_sym_operator] = ACTIONS(3981), + [anon_sym_try] = ACTIONS(3981), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_throw] = ACTIONS(3981), + [anon_sym_namespace] = ACTIONS(3981), + [anon_sym_static_assert] = ACTIONS(3981), + [anon_sym_concept] = ACTIONS(3981), + [anon_sym_co_return] = ACTIONS(3981), + [anon_sym_co_yield] = 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(3981), + [anon_sym_new] = ACTIONS(3981), + [anon_sym_requires] = ACTIONS(3981), + [anon_sym_CARET_CARET] = ACTIONS(3983), + [anon_sym_LBRACK_COLON] = ACTIONS(3983), + [sym_this] = ACTIONS(3981), }, [STATE(428)] = { + [sym_identifier] = ACTIONS(3985), + [aux_sym_preproc_include_token1] = ACTIONS(3985), + [aux_sym_preproc_def_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token2] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3985), + [aux_sym_preproc_else_token1] = ACTIONS(3985), + [aux_sym_preproc_elif_token1] = ACTIONS(3985), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3985), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3985), + [sym_preproc_directive] = ACTIONS(3985), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_TILDE] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3985), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym___extension__] = ACTIONS(3985), + [anon_sym_typedef] = ACTIONS(3985), + [anon_sym_virtual] = ACTIONS(3985), + [anon_sym_extern] = ACTIONS(3985), + [anon_sym___attribute__] = ACTIONS(3985), + [anon_sym___attribute] = ACTIONS(3985), + [anon_sym_using] = ACTIONS(3985), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(3985), + [anon_sym___based] = ACTIONS(3985), + [anon_sym___cdecl] = ACTIONS(3985), + [anon_sym___clrcall] = ACTIONS(3985), + [anon_sym___stdcall] = ACTIONS(3985), + [anon_sym___fastcall] = ACTIONS(3985), + [anon_sym___thiscall] = ACTIONS(3985), + [anon_sym___vectorcall] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_signed] = ACTIONS(3985), + [anon_sym_unsigned] = ACTIONS(3985), + [anon_sym_long] = ACTIONS(3985), + [anon_sym_short] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_static] = ACTIONS(3985), + [anon_sym_register] = ACTIONS(3985), + [anon_sym_inline] = ACTIONS(3985), + [anon_sym___inline] = ACTIONS(3985), + [anon_sym___inline__] = ACTIONS(3985), + [anon_sym___forceinline] = ACTIONS(3985), + [anon_sym_thread_local] = ACTIONS(3985), + [anon_sym___thread] = ACTIONS(3985), + [anon_sym_const] = ACTIONS(3985), + [anon_sym_constexpr] = ACTIONS(3985), + [anon_sym_volatile] = ACTIONS(3985), + [anon_sym_restrict] = ACTIONS(3985), + [anon_sym___restrict__] = ACTIONS(3985), + [anon_sym__Atomic] = ACTIONS(3985), + [anon_sym__Noreturn] = ACTIONS(3985), + [anon_sym_noreturn] = ACTIONS(3985), + [anon_sym__Nonnull] = ACTIONS(3985), + [anon_sym_mutable] = ACTIONS(3985), + [anon_sym_constinit] = ACTIONS(3985), + [anon_sym_consteval] = ACTIONS(3985), + [anon_sym_alignas] = ACTIONS(3985), + [anon_sym__Alignas] = ACTIONS(3985), + [sym_primitive_type] = ACTIONS(3985), + [anon_sym_enum] = ACTIONS(3985), + [anon_sym_class] = ACTIONS(3985), + [anon_sym_struct] = ACTIONS(3985), + [anon_sym_union] = ACTIONS(3985), + [anon_sym_if] = ACTIONS(3985), + [anon_sym_switch] = ACTIONS(3985), + [anon_sym_case] = ACTIONS(3985), + [anon_sym_default] = ACTIONS(3985), + [anon_sym_while] = ACTIONS(3985), + [anon_sym_do] = ACTIONS(3985), + [anon_sym_for] = ACTIONS(3985), + [anon_sym_return] = ACTIONS(3985), + [anon_sym_break] = ACTIONS(3985), + [anon_sym_continue] = ACTIONS(3985), + [anon_sym_goto] = ACTIONS(3985), + [anon_sym___try] = ACTIONS(3985), + [anon_sym___leave] = ACTIONS(3985), + [anon_sym_not] = ACTIONS(3985), + [anon_sym_compl] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_sizeof] = ACTIONS(3985), + [anon_sym___alignof__] = ACTIONS(3985), + [anon_sym___alignof] = ACTIONS(3985), + [anon_sym__alignof] = ACTIONS(3985), + [anon_sym_alignof] = ACTIONS(3985), + [anon_sym__Alignof] = ACTIONS(3985), + [anon_sym_offsetof] = ACTIONS(3985), + [anon_sym__Generic] = ACTIONS(3985), + [anon_sym_typename] = ACTIONS(3985), + [anon_sym_asm] = ACTIONS(3985), + [anon_sym___asm__] = ACTIONS(3985), + [anon_sym___asm] = ACTIONS(3985), + [sym_number_literal] = ACTIONS(3987), + [anon_sym_L_SQUOTE] = ACTIONS(3987), + [anon_sym_u_SQUOTE] = ACTIONS(3987), + [anon_sym_U_SQUOTE] = ACTIONS(3987), + [anon_sym_u8_SQUOTE] = ACTIONS(3987), + [anon_sym_SQUOTE] = ACTIONS(3987), + [anon_sym_L_DQUOTE] = ACTIONS(3987), + [anon_sym_u_DQUOTE] = ACTIONS(3987), + [anon_sym_U_DQUOTE] = ACTIONS(3987), + [anon_sym_u8_DQUOTE] = ACTIONS(3987), + [anon_sym_DQUOTE] = ACTIONS(3987), + [sym_true] = ACTIONS(3985), + [sym_false] = ACTIONS(3985), + [anon_sym_NULL] = ACTIONS(3985), + [anon_sym_nullptr] = ACTIONS(3985), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3985), + [anon_sym_decltype] = ACTIONS(3985), + [anon_sym_explicit] = ACTIONS(3985), + [anon_sym_export] = ACTIONS(3985), + [anon_sym_module] = ACTIONS(3985), + [anon_sym_import] = ACTIONS(3985), + [anon_sym_template] = ACTIONS(3985), + [anon_sym_operator] = ACTIONS(3985), + [anon_sym_try] = ACTIONS(3985), + [anon_sym_delete] = ACTIONS(3985), + [anon_sym_throw] = ACTIONS(3985), + [anon_sym_namespace] = ACTIONS(3985), + [anon_sym_static_assert] = ACTIONS(3985), + [anon_sym_concept] = ACTIONS(3985), + [anon_sym_co_return] = ACTIONS(3985), + [anon_sym_co_yield] = ACTIONS(3985), + [anon_sym_R_DQUOTE] = ACTIONS(3987), + [anon_sym_LR_DQUOTE] = ACTIONS(3987), + [anon_sym_uR_DQUOTE] = ACTIONS(3987), + [anon_sym_UR_DQUOTE] = ACTIONS(3987), + [anon_sym_u8R_DQUOTE] = ACTIONS(3987), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3985), + [anon_sym_CARET_CARET] = ACTIONS(3987), + [anon_sym_LBRACK_COLON] = ACTIONS(3987), + [sym_this] = ACTIONS(3985), + }, + [STATE(429)] = { + [sym_identifier] = ACTIONS(3989), + [aux_sym_preproc_include_token1] = ACTIONS(3989), + [aux_sym_preproc_def_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token2] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3989), + [aux_sym_preproc_else_token1] = ACTIONS(3989), + [aux_sym_preproc_elif_token1] = ACTIONS(3989), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3989), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3989), + [sym_preproc_directive] = ACTIONS(3989), + [anon_sym_LPAREN2] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3989), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_SEMI] = ACTIONS(3991), + [anon_sym___extension__] = ACTIONS(3989), + [anon_sym_typedef] = ACTIONS(3989), + [anon_sym_virtual] = ACTIONS(3989), + [anon_sym_extern] = ACTIONS(3989), + [anon_sym___attribute__] = ACTIONS(3989), + [anon_sym___attribute] = ACTIONS(3989), + [anon_sym_using] = ACTIONS(3989), + [anon_sym_COLON_COLON] = ACTIONS(3991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3991), + [anon_sym___declspec] = ACTIONS(3989), + [anon_sym___based] = ACTIONS(3989), + [anon_sym___cdecl] = ACTIONS(3989), + [anon_sym___clrcall] = ACTIONS(3989), + [anon_sym___stdcall] = ACTIONS(3989), + [anon_sym___fastcall] = ACTIONS(3989), + [anon_sym___thiscall] = ACTIONS(3989), + [anon_sym___vectorcall] = ACTIONS(3989), + [anon_sym_LBRACE] = ACTIONS(3991), + [anon_sym_signed] = ACTIONS(3989), + [anon_sym_unsigned] = ACTIONS(3989), + [anon_sym_long] = ACTIONS(3989), + [anon_sym_short] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_static] = ACTIONS(3989), + [anon_sym_register] = ACTIONS(3989), + [anon_sym_inline] = ACTIONS(3989), + [anon_sym___inline] = ACTIONS(3989), + [anon_sym___inline__] = ACTIONS(3989), + [anon_sym___forceinline] = ACTIONS(3989), + [anon_sym_thread_local] = ACTIONS(3989), + [anon_sym___thread] = ACTIONS(3989), + [anon_sym_const] = ACTIONS(3989), + [anon_sym_constexpr] = ACTIONS(3989), + [anon_sym_volatile] = ACTIONS(3989), + [anon_sym_restrict] = ACTIONS(3989), + [anon_sym___restrict__] = ACTIONS(3989), + [anon_sym__Atomic] = ACTIONS(3989), + [anon_sym__Noreturn] = ACTIONS(3989), + [anon_sym_noreturn] = ACTIONS(3989), + [anon_sym__Nonnull] = ACTIONS(3989), + [anon_sym_mutable] = ACTIONS(3989), + [anon_sym_constinit] = ACTIONS(3989), + [anon_sym_consteval] = ACTIONS(3989), + [anon_sym_alignas] = ACTIONS(3989), + [anon_sym__Alignas] = ACTIONS(3989), + [sym_primitive_type] = ACTIONS(3989), + [anon_sym_enum] = ACTIONS(3989), + [anon_sym_class] = ACTIONS(3989), + [anon_sym_struct] = ACTIONS(3989), + [anon_sym_union] = ACTIONS(3989), + [anon_sym_if] = ACTIONS(3989), + [anon_sym_switch] = ACTIONS(3989), + [anon_sym_case] = ACTIONS(3989), + [anon_sym_default] = ACTIONS(3989), + [anon_sym_while] = ACTIONS(3989), + [anon_sym_do] = ACTIONS(3989), + [anon_sym_for] = ACTIONS(3989), + [anon_sym_return] = ACTIONS(3989), + [anon_sym_break] = ACTIONS(3989), + [anon_sym_continue] = ACTIONS(3989), + [anon_sym_goto] = ACTIONS(3989), + [anon_sym___try] = ACTIONS(3989), + [anon_sym___leave] = ACTIONS(3989), + [anon_sym_not] = ACTIONS(3989), + [anon_sym_compl] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3991), + [anon_sym_sizeof] = ACTIONS(3989), + [anon_sym___alignof__] = ACTIONS(3989), + [anon_sym___alignof] = ACTIONS(3989), + [anon_sym__alignof] = ACTIONS(3989), + [anon_sym_alignof] = ACTIONS(3989), + [anon_sym__Alignof] = ACTIONS(3989), + [anon_sym_offsetof] = ACTIONS(3989), + [anon_sym__Generic] = ACTIONS(3989), + [anon_sym_typename] = ACTIONS(3989), + [anon_sym_asm] = ACTIONS(3989), + [anon_sym___asm__] = ACTIONS(3989), + [anon_sym___asm] = ACTIONS(3989), + [sym_number_literal] = ACTIONS(3991), + [anon_sym_L_SQUOTE] = ACTIONS(3991), + [anon_sym_u_SQUOTE] = ACTIONS(3991), + [anon_sym_U_SQUOTE] = ACTIONS(3991), + [anon_sym_u8_SQUOTE] = ACTIONS(3991), + [anon_sym_SQUOTE] = ACTIONS(3991), + [anon_sym_L_DQUOTE] = ACTIONS(3991), + [anon_sym_u_DQUOTE] = ACTIONS(3991), + [anon_sym_U_DQUOTE] = ACTIONS(3991), + [anon_sym_u8_DQUOTE] = ACTIONS(3991), + [anon_sym_DQUOTE] = ACTIONS(3991), + [sym_true] = ACTIONS(3989), + [sym_false] = ACTIONS(3989), + [anon_sym_NULL] = ACTIONS(3989), + [anon_sym_nullptr] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3989), + [anon_sym_decltype] = ACTIONS(3989), + [anon_sym_explicit] = ACTIONS(3989), + [anon_sym_export] = ACTIONS(3989), + [anon_sym_module] = ACTIONS(3989), + [anon_sym_import] = ACTIONS(3989), + [anon_sym_template] = ACTIONS(3989), + [anon_sym_operator] = ACTIONS(3989), + [anon_sym_try] = ACTIONS(3989), + [anon_sym_delete] = ACTIONS(3989), + [anon_sym_throw] = ACTIONS(3989), + [anon_sym_namespace] = ACTIONS(3989), + [anon_sym_static_assert] = ACTIONS(3989), + [anon_sym_concept] = ACTIONS(3989), + [anon_sym_co_return] = ACTIONS(3989), + [anon_sym_co_yield] = ACTIONS(3989), + [anon_sym_R_DQUOTE] = ACTIONS(3991), + [anon_sym_LR_DQUOTE] = ACTIONS(3991), + [anon_sym_uR_DQUOTE] = ACTIONS(3991), + [anon_sym_UR_DQUOTE] = ACTIONS(3991), + [anon_sym_u8R_DQUOTE] = ACTIONS(3991), + [anon_sym_co_await] = ACTIONS(3989), + [anon_sym_new] = ACTIONS(3989), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3991), + [sym_this] = ACTIONS(3989), + }, + [STATE(430)] = { + [sym_identifier] = ACTIONS(3993), + [aux_sym_preproc_include_token1] = ACTIONS(3993), + [aux_sym_preproc_def_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token2] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3993), + [aux_sym_preproc_else_token1] = ACTIONS(3993), + [aux_sym_preproc_elif_token1] = ACTIONS(3993), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3993), + [sym_preproc_directive] = ACTIONS(3993), + [anon_sym_LPAREN2] = ACTIONS(3995), + [anon_sym_BANG] = ACTIONS(3995), + [anon_sym_TILDE] = ACTIONS(3995), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_AMP_AMP] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3993), + [anon_sym_SEMI] = ACTIONS(3995), + [anon_sym___extension__] = ACTIONS(3993), + [anon_sym_typedef] = ACTIONS(3993), + [anon_sym_virtual] = ACTIONS(3993), + [anon_sym_extern] = ACTIONS(3993), + [anon_sym___attribute__] = ACTIONS(3993), + [anon_sym___attribute] = ACTIONS(3993), + [anon_sym_using] = ACTIONS(3993), + [anon_sym_COLON_COLON] = ACTIONS(3995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3995), + [anon_sym___declspec] = ACTIONS(3993), + [anon_sym___based] = ACTIONS(3993), + [anon_sym___cdecl] = ACTIONS(3993), + [anon_sym___clrcall] = ACTIONS(3993), + [anon_sym___stdcall] = ACTIONS(3993), + [anon_sym___fastcall] = ACTIONS(3993), + [anon_sym___thiscall] = ACTIONS(3993), + [anon_sym___vectorcall] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3995), + [anon_sym_signed] = ACTIONS(3993), + [anon_sym_unsigned] = ACTIONS(3993), + [anon_sym_long] = ACTIONS(3993), + [anon_sym_short] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_static] = ACTIONS(3993), + [anon_sym_register] = ACTIONS(3993), + [anon_sym_inline] = ACTIONS(3993), + [anon_sym___inline] = ACTIONS(3993), + [anon_sym___inline__] = ACTIONS(3993), + [anon_sym___forceinline] = ACTIONS(3993), + [anon_sym_thread_local] = ACTIONS(3993), + [anon_sym___thread] = ACTIONS(3993), + [anon_sym_const] = ACTIONS(3993), + [anon_sym_constexpr] = ACTIONS(3993), + [anon_sym_volatile] = ACTIONS(3993), + [anon_sym_restrict] = ACTIONS(3993), + [anon_sym___restrict__] = ACTIONS(3993), + [anon_sym__Atomic] = ACTIONS(3993), + [anon_sym__Noreturn] = ACTIONS(3993), + [anon_sym_noreturn] = ACTIONS(3993), + [anon_sym__Nonnull] = ACTIONS(3993), + [anon_sym_mutable] = ACTIONS(3993), + [anon_sym_constinit] = ACTIONS(3993), + [anon_sym_consteval] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(3993), + [anon_sym__Alignas] = ACTIONS(3993), + [sym_primitive_type] = ACTIONS(3993), + [anon_sym_enum] = ACTIONS(3993), + [anon_sym_class] = ACTIONS(3993), + [anon_sym_struct] = ACTIONS(3993), + [anon_sym_union] = ACTIONS(3993), + [anon_sym_if] = ACTIONS(3993), + [anon_sym_switch] = ACTIONS(3993), + [anon_sym_case] = ACTIONS(3993), + [anon_sym_default] = ACTIONS(3993), + [anon_sym_while] = ACTIONS(3993), + [anon_sym_do] = ACTIONS(3993), + [anon_sym_for] = ACTIONS(3993), + [anon_sym_return] = ACTIONS(3993), + [anon_sym_break] = ACTIONS(3993), + [anon_sym_continue] = ACTIONS(3993), + [anon_sym_goto] = ACTIONS(3993), + [anon_sym___try] = ACTIONS(3993), + [anon_sym___leave] = ACTIONS(3993), + [anon_sym_not] = ACTIONS(3993), + [anon_sym_compl] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3995), + [anon_sym_PLUS_PLUS] = ACTIONS(3995), + [anon_sym_sizeof] = ACTIONS(3993), + [anon_sym___alignof__] = ACTIONS(3993), + [anon_sym___alignof] = ACTIONS(3993), + [anon_sym__alignof] = ACTIONS(3993), + [anon_sym_alignof] = ACTIONS(3993), + [anon_sym__Alignof] = ACTIONS(3993), + [anon_sym_offsetof] = ACTIONS(3993), + [anon_sym__Generic] = ACTIONS(3993), + [anon_sym_typename] = ACTIONS(3993), + [anon_sym_asm] = ACTIONS(3993), + [anon_sym___asm__] = ACTIONS(3993), + [anon_sym___asm] = ACTIONS(3993), + [sym_number_literal] = ACTIONS(3995), + [anon_sym_L_SQUOTE] = ACTIONS(3995), + [anon_sym_u_SQUOTE] = ACTIONS(3995), + [anon_sym_U_SQUOTE] = ACTIONS(3995), + [anon_sym_u8_SQUOTE] = ACTIONS(3995), + [anon_sym_SQUOTE] = ACTIONS(3995), + [anon_sym_L_DQUOTE] = ACTIONS(3995), + [anon_sym_u_DQUOTE] = ACTIONS(3995), + [anon_sym_U_DQUOTE] = ACTIONS(3995), + [anon_sym_u8_DQUOTE] = ACTIONS(3995), + [anon_sym_DQUOTE] = ACTIONS(3995), + [sym_true] = ACTIONS(3993), + [sym_false] = ACTIONS(3993), + [anon_sym_NULL] = ACTIONS(3993), + [anon_sym_nullptr] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3993), + [anon_sym_decltype] = ACTIONS(3993), + [anon_sym_explicit] = ACTIONS(3993), + [anon_sym_export] = ACTIONS(3993), + [anon_sym_module] = ACTIONS(3993), + [anon_sym_import] = ACTIONS(3993), + [anon_sym_template] = ACTIONS(3993), + [anon_sym_operator] = ACTIONS(3993), + [anon_sym_try] = ACTIONS(3993), + [anon_sym_delete] = ACTIONS(3993), + [anon_sym_throw] = ACTIONS(3993), + [anon_sym_namespace] = ACTIONS(3993), + [anon_sym_static_assert] = ACTIONS(3993), + [anon_sym_concept] = ACTIONS(3993), + [anon_sym_co_return] = ACTIONS(3993), + [anon_sym_co_yield] = ACTIONS(3993), + [anon_sym_R_DQUOTE] = ACTIONS(3995), + [anon_sym_LR_DQUOTE] = ACTIONS(3995), + [anon_sym_uR_DQUOTE] = ACTIONS(3995), + [anon_sym_UR_DQUOTE] = ACTIONS(3995), + [anon_sym_u8R_DQUOTE] = ACTIONS(3995), + [anon_sym_co_await] = ACTIONS(3993), + [anon_sym_new] = ACTIONS(3993), + [anon_sym_requires] = ACTIONS(3993), + [anon_sym_CARET_CARET] = ACTIONS(3995), + [anon_sym_LBRACK_COLON] = ACTIONS(3995), + [sym_this] = ACTIONS(3993), + }, + [STATE(431)] = { + [sym_identifier] = ACTIONS(3997), + [aux_sym_preproc_include_token1] = ACTIONS(3997), + [aux_sym_preproc_def_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token2] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [aux_sym_preproc_else_token1] = ACTIONS(3997), + [aux_sym_preproc_elif_token1] = ACTIONS(3997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3997), + [sym_preproc_directive] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_TILDE] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_SEMI] = ACTIONS(3999), + [anon_sym___extension__] = ACTIONS(3997), + [anon_sym_typedef] = ACTIONS(3997), + [anon_sym_virtual] = ACTIONS(3997), + [anon_sym_extern] = ACTIONS(3997), + [anon_sym___attribute__] = ACTIONS(3997), + [anon_sym___attribute] = ACTIONS(3997), + [anon_sym_using] = ACTIONS(3997), + [anon_sym_COLON_COLON] = ACTIONS(3999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3999), + [anon_sym___declspec] = ACTIONS(3997), + [anon_sym___based] = ACTIONS(3997), + [anon_sym___cdecl] = ACTIONS(3997), + [anon_sym___clrcall] = ACTIONS(3997), + [anon_sym___stdcall] = ACTIONS(3997), + [anon_sym___fastcall] = ACTIONS(3997), + [anon_sym___thiscall] = ACTIONS(3997), + [anon_sym___vectorcall] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3999), + [anon_sym_signed] = ACTIONS(3997), + [anon_sym_unsigned] = ACTIONS(3997), + [anon_sym_long] = ACTIONS(3997), + [anon_sym_short] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_register] = ACTIONS(3997), + [anon_sym_inline] = ACTIONS(3997), + [anon_sym___inline] = ACTIONS(3997), + [anon_sym___inline__] = ACTIONS(3997), + [anon_sym___forceinline] = ACTIONS(3997), + [anon_sym_thread_local] = ACTIONS(3997), + [anon_sym___thread] = ACTIONS(3997), + [anon_sym_const] = ACTIONS(3997), + [anon_sym_constexpr] = ACTIONS(3997), + [anon_sym_volatile] = ACTIONS(3997), + [anon_sym_restrict] = ACTIONS(3997), + [anon_sym___restrict__] = ACTIONS(3997), + [anon_sym__Atomic] = ACTIONS(3997), + [anon_sym__Noreturn] = ACTIONS(3997), + [anon_sym_noreturn] = ACTIONS(3997), + [anon_sym__Nonnull] = ACTIONS(3997), + [anon_sym_mutable] = ACTIONS(3997), + [anon_sym_constinit] = ACTIONS(3997), + [anon_sym_consteval] = ACTIONS(3997), + [anon_sym_alignas] = ACTIONS(3997), + [anon_sym__Alignas] = ACTIONS(3997), + [sym_primitive_type] = ACTIONS(3997), + [anon_sym_enum] = ACTIONS(3997), + [anon_sym_class] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3997), + [anon_sym_union] = ACTIONS(3997), + [anon_sym_if] = ACTIONS(3997), + [anon_sym_switch] = ACTIONS(3997), + [anon_sym_case] = ACTIONS(3997), + [anon_sym_default] = ACTIONS(3997), + [anon_sym_while] = ACTIONS(3997), + [anon_sym_do] = ACTIONS(3997), + [anon_sym_for] = ACTIONS(3997), + [anon_sym_return] = ACTIONS(3997), + [anon_sym_break] = ACTIONS(3997), + [anon_sym_continue] = ACTIONS(3997), + [anon_sym_goto] = ACTIONS(3997), + [anon_sym___try] = ACTIONS(3997), + [anon_sym___leave] = ACTIONS(3997), + [anon_sym_not] = ACTIONS(3997), + [anon_sym_compl] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3999), + [anon_sym_sizeof] = ACTIONS(3997), + [anon_sym___alignof__] = ACTIONS(3997), + [anon_sym___alignof] = ACTIONS(3997), + [anon_sym__alignof] = ACTIONS(3997), + [anon_sym_alignof] = ACTIONS(3997), + [anon_sym__Alignof] = ACTIONS(3997), + [anon_sym_offsetof] = ACTIONS(3997), + [anon_sym__Generic] = ACTIONS(3997), + [anon_sym_typename] = ACTIONS(3997), + [anon_sym_asm] = ACTIONS(3997), + [anon_sym___asm__] = ACTIONS(3997), + [anon_sym___asm] = ACTIONS(3997), + [sym_number_literal] = ACTIONS(3999), + [anon_sym_L_SQUOTE] = ACTIONS(3999), + [anon_sym_u_SQUOTE] = ACTIONS(3999), + [anon_sym_U_SQUOTE] = ACTIONS(3999), + [anon_sym_u8_SQUOTE] = ACTIONS(3999), + [anon_sym_SQUOTE] = ACTIONS(3999), + [anon_sym_L_DQUOTE] = ACTIONS(3999), + [anon_sym_u_DQUOTE] = ACTIONS(3999), + [anon_sym_U_DQUOTE] = ACTIONS(3999), + [anon_sym_u8_DQUOTE] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(3999), + [sym_true] = ACTIONS(3997), + [sym_false] = ACTIONS(3997), + [anon_sym_NULL] = ACTIONS(3997), + [anon_sym_nullptr] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3997), + [anon_sym_decltype] = ACTIONS(3997), + [anon_sym_explicit] = ACTIONS(3997), + [anon_sym_export] = ACTIONS(3997), + [anon_sym_module] = ACTIONS(3997), + [anon_sym_import] = ACTIONS(3997), + [anon_sym_template] = ACTIONS(3997), + [anon_sym_operator] = ACTIONS(3997), + [anon_sym_try] = ACTIONS(3997), + [anon_sym_delete] = ACTIONS(3997), + [anon_sym_throw] = ACTIONS(3997), + [anon_sym_namespace] = ACTIONS(3997), + [anon_sym_static_assert] = ACTIONS(3997), + [anon_sym_concept] = ACTIONS(3997), + [anon_sym_co_return] = ACTIONS(3997), + [anon_sym_co_yield] = ACTIONS(3997), + [anon_sym_R_DQUOTE] = ACTIONS(3999), + [anon_sym_LR_DQUOTE] = ACTIONS(3999), + [anon_sym_uR_DQUOTE] = ACTIONS(3999), + [anon_sym_UR_DQUOTE] = ACTIONS(3999), + [anon_sym_u8R_DQUOTE] = ACTIONS(3999), + [anon_sym_co_await] = ACTIONS(3997), + [anon_sym_new] = ACTIONS(3997), + [anon_sym_requires] = ACTIONS(3997), + [anon_sym_CARET_CARET] = ACTIONS(3999), + [anon_sym_LBRACK_COLON] = ACTIONS(3999), + [sym_this] = ACTIONS(3997), + }, + [STATE(432)] = { + [sym_identifier] = ACTIONS(4001), + [aux_sym_preproc_include_token1] = ACTIONS(4001), + [aux_sym_preproc_def_token1] = ACTIONS(4001), + [aux_sym_preproc_if_token1] = ACTIONS(4001), + [aux_sym_preproc_if_token2] = ACTIONS(4001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4001), + [aux_sym_preproc_else_token1] = ACTIONS(4001), + [aux_sym_preproc_elif_token1] = ACTIONS(4001), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4001), + [sym_preproc_directive] = ACTIONS(4001), + [anon_sym_LPAREN2] = ACTIONS(4003), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_TILDE] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4001), + [anon_sym_STAR] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym___extension__] = ACTIONS(4001), + [anon_sym_typedef] = ACTIONS(4001), + [anon_sym_virtual] = ACTIONS(4001), + [anon_sym_extern] = ACTIONS(4001), + [anon_sym___attribute__] = ACTIONS(4001), + [anon_sym___attribute] = ACTIONS(4001), + [anon_sym_using] = ACTIONS(4001), + [anon_sym_COLON_COLON] = ACTIONS(4003), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4003), + [anon_sym___declspec] = ACTIONS(4001), + [anon_sym___based] = ACTIONS(4001), + [anon_sym___cdecl] = ACTIONS(4001), + [anon_sym___clrcall] = ACTIONS(4001), + [anon_sym___stdcall] = ACTIONS(4001), + [anon_sym___fastcall] = ACTIONS(4001), + [anon_sym___thiscall] = ACTIONS(4001), + [anon_sym___vectorcall] = ACTIONS(4001), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_signed] = ACTIONS(4001), + [anon_sym_unsigned] = ACTIONS(4001), + [anon_sym_long] = ACTIONS(4001), + [anon_sym_short] = ACTIONS(4001), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_static] = ACTIONS(4001), + [anon_sym_register] = ACTIONS(4001), + [anon_sym_inline] = ACTIONS(4001), + [anon_sym___inline] = ACTIONS(4001), + [anon_sym___inline__] = ACTIONS(4001), + [anon_sym___forceinline] = ACTIONS(4001), + [anon_sym_thread_local] = ACTIONS(4001), + [anon_sym___thread] = ACTIONS(4001), + [anon_sym_const] = ACTIONS(4001), + [anon_sym_constexpr] = ACTIONS(4001), + [anon_sym_volatile] = ACTIONS(4001), + [anon_sym_restrict] = ACTIONS(4001), + [anon_sym___restrict__] = ACTIONS(4001), + [anon_sym__Atomic] = ACTIONS(4001), + [anon_sym__Noreturn] = ACTIONS(4001), + [anon_sym_noreturn] = ACTIONS(4001), + [anon_sym__Nonnull] = ACTIONS(4001), + [anon_sym_mutable] = ACTIONS(4001), + [anon_sym_constinit] = ACTIONS(4001), + [anon_sym_consteval] = ACTIONS(4001), + [anon_sym_alignas] = ACTIONS(4001), + [anon_sym__Alignas] = ACTIONS(4001), + [sym_primitive_type] = ACTIONS(4001), + [anon_sym_enum] = ACTIONS(4001), + [anon_sym_class] = ACTIONS(4001), + [anon_sym_struct] = ACTIONS(4001), + [anon_sym_union] = ACTIONS(4001), + [anon_sym_if] = ACTIONS(4001), + [anon_sym_switch] = ACTIONS(4001), + [anon_sym_case] = ACTIONS(4001), + [anon_sym_default] = ACTIONS(4001), + [anon_sym_while] = ACTIONS(4001), + [anon_sym_do] = ACTIONS(4001), + [anon_sym_for] = ACTIONS(4001), + [anon_sym_return] = ACTIONS(4001), + [anon_sym_break] = ACTIONS(4001), + [anon_sym_continue] = ACTIONS(4001), + [anon_sym_goto] = ACTIONS(4001), + [anon_sym___try] = ACTIONS(4001), + [anon_sym___leave] = ACTIONS(4001), + [anon_sym_not] = ACTIONS(4001), + [anon_sym_compl] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4003), + [anon_sym_sizeof] = ACTIONS(4001), + [anon_sym___alignof__] = ACTIONS(4001), + [anon_sym___alignof] = ACTIONS(4001), + [anon_sym__alignof] = ACTIONS(4001), + [anon_sym_alignof] = ACTIONS(4001), + [anon_sym__Alignof] = ACTIONS(4001), + [anon_sym_offsetof] = ACTIONS(4001), + [anon_sym__Generic] = ACTIONS(4001), + [anon_sym_typename] = ACTIONS(4001), + [anon_sym_asm] = ACTIONS(4001), + [anon_sym___asm__] = ACTIONS(4001), + [anon_sym___asm] = ACTIONS(4001), + [sym_number_literal] = ACTIONS(4003), + [anon_sym_L_SQUOTE] = ACTIONS(4003), + [anon_sym_u_SQUOTE] = ACTIONS(4003), + [anon_sym_U_SQUOTE] = ACTIONS(4003), + [anon_sym_u8_SQUOTE] = ACTIONS(4003), + [anon_sym_SQUOTE] = ACTIONS(4003), + [anon_sym_L_DQUOTE] = ACTIONS(4003), + [anon_sym_u_DQUOTE] = ACTIONS(4003), + [anon_sym_U_DQUOTE] = ACTIONS(4003), + [anon_sym_u8_DQUOTE] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [sym_true] = ACTIONS(4001), + [sym_false] = ACTIONS(4001), + [anon_sym_NULL] = ACTIONS(4001), + [anon_sym_nullptr] = ACTIONS(4001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4001), + [anon_sym_decltype] = ACTIONS(4001), + [anon_sym_explicit] = ACTIONS(4001), + [anon_sym_export] = ACTIONS(4001), + [anon_sym_module] = ACTIONS(4001), + [anon_sym_import] = ACTIONS(4001), + [anon_sym_template] = ACTIONS(4001), + [anon_sym_operator] = ACTIONS(4001), + [anon_sym_try] = ACTIONS(4001), + [anon_sym_delete] = ACTIONS(4001), + [anon_sym_throw] = ACTIONS(4001), + [anon_sym_namespace] = ACTIONS(4001), + [anon_sym_static_assert] = ACTIONS(4001), + [anon_sym_concept] = ACTIONS(4001), + [anon_sym_co_return] = ACTIONS(4001), + [anon_sym_co_yield] = ACTIONS(4001), + [anon_sym_R_DQUOTE] = ACTIONS(4003), + [anon_sym_LR_DQUOTE] = ACTIONS(4003), + [anon_sym_uR_DQUOTE] = ACTIONS(4003), + [anon_sym_UR_DQUOTE] = ACTIONS(4003), + [anon_sym_u8R_DQUOTE] = ACTIONS(4003), + [anon_sym_co_await] = ACTIONS(4001), + [anon_sym_new] = ACTIONS(4001), + [anon_sym_requires] = ACTIONS(4001), + [anon_sym_CARET_CARET] = ACTIONS(4003), + [anon_sym_LBRACK_COLON] = ACTIONS(4003), + [sym_this] = ACTIONS(4001), + }, + [STATE(433)] = { + [sym_identifier] = ACTIONS(4005), + [aux_sym_preproc_include_token1] = ACTIONS(4005), + [aux_sym_preproc_def_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token2] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4005), + [aux_sym_preproc_else_token1] = ACTIONS(4005), + [aux_sym_preproc_elif_token1] = ACTIONS(4005), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4005), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4005), + [sym_preproc_directive] = ACTIONS(4005), + [anon_sym_LPAREN2] = ACTIONS(4007), + [anon_sym_BANG] = ACTIONS(4007), + [anon_sym_TILDE] = ACTIONS(4007), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_PLUS] = ACTIONS(4005), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_AMP_AMP] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_SEMI] = ACTIONS(4007), + [anon_sym___extension__] = ACTIONS(4005), + [anon_sym_typedef] = ACTIONS(4005), + [anon_sym_virtual] = ACTIONS(4005), + [anon_sym_extern] = ACTIONS(4005), + [anon_sym___attribute__] = ACTIONS(4005), + [anon_sym___attribute] = ACTIONS(4005), + [anon_sym_using] = ACTIONS(4005), + [anon_sym_COLON_COLON] = ACTIONS(4007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4007), + [anon_sym___declspec] = ACTIONS(4005), + [anon_sym___based] = ACTIONS(4005), + [anon_sym___cdecl] = ACTIONS(4005), + [anon_sym___clrcall] = ACTIONS(4005), + [anon_sym___stdcall] = ACTIONS(4005), + [anon_sym___fastcall] = ACTIONS(4005), + [anon_sym___thiscall] = ACTIONS(4005), + [anon_sym___vectorcall] = ACTIONS(4005), + [anon_sym_LBRACE] = ACTIONS(4007), + [anon_sym_signed] = ACTIONS(4005), + [anon_sym_unsigned] = ACTIONS(4005), + [anon_sym_long] = ACTIONS(4005), + [anon_sym_short] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4005), + [anon_sym_register] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym___inline] = ACTIONS(4005), + [anon_sym___inline__] = ACTIONS(4005), + [anon_sym___forceinline] = ACTIONS(4005), + [anon_sym_thread_local] = ACTIONS(4005), + [anon_sym___thread] = ACTIONS(4005), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_constexpr] = ACTIONS(4005), + [anon_sym_volatile] = ACTIONS(4005), + [anon_sym_restrict] = ACTIONS(4005), + [anon_sym___restrict__] = ACTIONS(4005), + [anon_sym__Atomic] = ACTIONS(4005), + [anon_sym__Noreturn] = ACTIONS(4005), + [anon_sym_noreturn] = ACTIONS(4005), + [anon_sym__Nonnull] = ACTIONS(4005), + [anon_sym_mutable] = ACTIONS(4005), + [anon_sym_constinit] = ACTIONS(4005), + [anon_sym_consteval] = ACTIONS(4005), + [anon_sym_alignas] = ACTIONS(4005), + [anon_sym__Alignas] = ACTIONS(4005), + [sym_primitive_type] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_class] = ACTIONS(4005), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_if] = ACTIONS(4005), + [anon_sym_switch] = ACTIONS(4005), + [anon_sym_case] = ACTIONS(4005), + [anon_sym_default] = ACTIONS(4005), + [anon_sym_while] = ACTIONS(4005), + [anon_sym_do] = ACTIONS(4005), + [anon_sym_for] = ACTIONS(4005), + [anon_sym_return] = ACTIONS(4005), + [anon_sym_break] = ACTIONS(4005), + [anon_sym_continue] = ACTIONS(4005), + [anon_sym_goto] = ACTIONS(4005), + [anon_sym___try] = ACTIONS(4005), + [anon_sym___leave] = ACTIONS(4005), + [anon_sym_not] = ACTIONS(4005), + [anon_sym_compl] = ACTIONS(4005), + [anon_sym_DASH_DASH] = ACTIONS(4007), + [anon_sym_PLUS_PLUS] = ACTIONS(4007), + [anon_sym_sizeof] = ACTIONS(4005), + [anon_sym___alignof__] = ACTIONS(4005), + [anon_sym___alignof] = ACTIONS(4005), + [anon_sym__alignof] = ACTIONS(4005), + [anon_sym_alignof] = ACTIONS(4005), + [anon_sym__Alignof] = ACTIONS(4005), + [anon_sym_offsetof] = ACTIONS(4005), + [anon_sym__Generic] = ACTIONS(4005), + [anon_sym_typename] = ACTIONS(4005), + [anon_sym_asm] = ACTIONS(4005), + [anon_sym___asm__] = ACTIONS(4005), + [anon_sym___asm] = ACTIONS(4005), + [sym_number_literal] = ACTIONS(4007), + [anon_sym_L_SQUOTE] = ACTIONS(4007), + [anon_sym_u_SQUOTE] = ACTIONS(4007), + [anon_sym_U_SQUOTE] = ACTIONS(4007), + [anon_sym_u8_SQUOTE] = ACTIONS(4007), + [anon_sym_SQUOTE] = ACTIONS(4007), + [anon_sym_L_DQUOTE] = ACTIONS(4007), + [anon_sym_u_DQUOTE] = ACTIONS(4007), + [anon_sym_U_DQUOTE] = ACTIONS(4007), + [anon_sym_u8_DQUOTE] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4007), + [sym_true] = ACTIONS(4005), + [sym_false] = ACTIONS(4005), + [anon_sym_NULL] = ACTIONS(4005), + [anon_sym_nullptr] = ACTIONS(4005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4005), + [anon_sym_decltype] = ACTIONS(4005), + [anon_sym_explicit] = ACTIONS(4005), + [anon_sym_export] = ACTIONS(4005), + [anon_sym_module] = ACTIONS(4005), + [anon_sym_import] = ACTIONS(4005), + [anon_sym_template] = ACTIONS(4005), + [anon_sym_operator] = ACTIONS(4005), + [anon_sym_try] = ACTIONS(4005), + [anon_sym_delete] = ACTIONS(4005), + [anon_sym_throw] = ACTIONS(4005), + [anon_sym_namespace] = ACTIONS(4005), + [anon_sym_static_assert] = ACTIONS(4005), + [anon_sym_concept] = ACTIONS(4005), + [anon_sym_co_return] = ACTIONS(4005), + [anon_sym_co_yield] = ACTIONS(4005), + [anon_sym_R_DQUOTE] = ACTIONS(4007), + [anon_sym_LR_DQUOTE] = ACTIONS(4007), + [anon_sym_uR_DQUOTE] = ACTIONS(4007), + [anon_sym_UR_DQUOTE] = ACTIONS(4007), + [anon_sym_u8R_DQUOTE] = ACTIONS(4007), + [anon_sym_co_await] = ACTIONS(4005), + [anon_sym_new] = ACTIONS(4005), + [anon_sym_requires] = ACTIONS(4005), + [anon_sym_CARET_CARET] = ACTIONS(4007), + [anon_sym_LBRACK_COLON] = ACTIONS(4007), + [sym_this] = ACTIONS(4005), + }, + [STATE(434)] = { + [sym_identifier] = ACTIONS(4009), + [aux_sym_preproc_include_token1] = ACTIONS(4009), + [aux_sym_preproc_def_token1] = ACTIONS(4009), + [aux_sym_preproc_if_token1] = ACTIONS(4009), + [aux_sym_preproc_if_token2] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4009), + [aux_sym_preproc_else_token1] = ACTIONS(4009), + [aux_sym_preproc_elif_token1] = ACTIONS(4009), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4009), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4009), + [sym_preproc_directive] = ACTIONS(4009), + [anon_sym_LPAREN2] = ACTIONS(4011), + [anon_sym_BANG] = ACTIONS(4011), + [anon_sym_TILDE] = ACTIONS(4011), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4011), + [anon_sym_AMP_AMP] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_SEMI] = ACTIONS(4011), + [anon_sym___extension__] = ACTIONS(4009), + [anon_sym_typedef] = ACTIONS(4009), + [anon_sym_virtual] = ACTIONS(4009), + [anon_sym_extern] = ACTIONS(4009), + [anon_sym___attribute__] = ACTIONS(4009), + [anon_sym___attribute] = ACTIONS(4009), + [anon_sym_using] = ACTIONS(4009), + [anon_sym_COLON_COLON] = ACTIONS(4011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4011), + [anon_sym___declspec] = ACTIONS(4009), + [anon_sym___based] = ACTIONS(4009), + [anon_sym___cdecl] = ACTIONS(4009), + [anon_sym___clrcall] = ACTIONS(4009), + [anon_sym___stdcall] = ACTIONS(4009), + [anon_sym___fastcall] = ACTIONS(4009), + [anon_sym___thiscall] = ACTIONS(4009), + [anon_sym___vectorcall] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4011), + [anon_sym_signed] = ACTIONS(4009), + [anon_sym_unsigned] = ACTIONS(4009), + [anon_sym_long] = ACTIONS(4009), + [anon_sym_short] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4009), + [anon_sym_register] = ACTIONS(4009), + [anon_sym_inline] = ACTIONS(4009), + [anon_sym___inline] = ACTIONS(4009), + [anon_sym___inline__] = ACTIONS(4009), + [anon_sym___forceinline] = ACTIONS(4009), + [anon_sym_thread_local] = ACTIONS(4009), + [anon_sym___thread] = ACTIONS(4009), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_constexpr] = ACTIONS(4009), + [anon_sym_volatile] = ACTIONS(4009), + [anon_sym_restrict] = ACTIONS(4009), + [anon_sym___restrict__] = ACTIONS(4009), + [anon_sym__Atomic] = ACTIONS(4009), + [anon_sym__Noreturn] = ACTIONS(4009), + [anon_sym_noreturn] = ACTIONS(4009), + [anon_sym__Nonnull] = ACTIONS(4009), + [anon_sym_mutable] = ACTIONS(4009), + [anon_sym_constinit] = ACTIONS(4009), + [anon_sym_consteval] = ACTIONS(4009), + [anon_sym_alignas] = ACTIONS(4009), + [anon_sym__Alignas] = ACTIONS(4009), + [sym_primitive_type] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_class] = ACTIONS(4009), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_if] = ACTIONS(4009), + [anon_sym_switch] = ACTIONS(4009), + [anon_sym_case] = ACTIONS(4009), + [anon_sym_default] = ACTIONS(4009), + [anon_sym_while] = ACTIONS(4009), + [anon_sym_do] = ACTIONS(4009), + [anon_sym_for] = ACTIONS(4009), + [anon_sym_return] = ACTIONS(4009), + [anon_sym_break] = ACTIONS(4009), + [anon_sym_continue] = ACTIONS(4009), + [anon_sym_goto] = ACTIONS(4009), + [anon_sym___try] = ACTIONS(4009), + [anon_sym___leave] = ACTIONS(4009), + [anon_sym_not] = ACTIONS(4009), + [anon_sym_compl] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4011), + [anon_sym_PLUS_PLUS] = ACTIONS(4011), + [anon_sym_sizeof] = ACTIONS(4009), + [anon_sym___alignof__] = ACTIONS(4009), + [anon_sym___alignof] = ACTIONS(4009), + [anon_sym__alignof] = ACTIONS(4009), + [anon_sym_alignof] = ACTIONS(4009), + [anon_sym__Alignof] = ACTIONS(4009), + [anon_sym_offsetof] = ACTIONS(4009), + [anon_sym__Generic] = ACTIONS(4009), + [anon_sym_typename] = ACTIONS(4009), + [anon_sym_asm] = ACTIONS(4009), + [anon_sym___asm__] = ACTIONS(4009), + [anon_sym___asm] = ACTIONS(4009), + [sym_number_literal] = ACTIONS(4011), + [anon_sym_L_SQUOTE] = ACTIONS(4011), + [anon_sym_u_SQUOTE] = ACTIONS(4011), + [anon_sym_U_SQUOTE] = ACTIONS(4011), + [anon_sym_u8_SQUOTE] = ACTIONS(4011), + [anon_sym_SQUOTE] = ACTIONS(4011), + [anon_sym_L_DQUOTE] = ACTIONS(4011), + [anon_sym_u_DQUOTE] = ACTIONS(4011), + [anon_sym_U_DQUOTE] = ACTIONS(4011), + [anon_sym_u8_DQUOTE] = ACTIONS(4011), + [anon_sym_DQUOTE] = ACTIONS(4011), + [sym_true] = ACTIONS(4009), + [sym_false] = ACTIONS(4009), + [anon_sym_NULL] = ACTIONS(4009), + [anon_sym_nullptr] = ACTIONS(4009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4009), + [anon_sym_decltype] = ACTIONS(4009), + [anon_sym_explicit] = ACTIONS(4009), + [anon_sym_export] = ACTIONS(4009), + [anon_sym_module] = ACTIONS(4009), + [anon_sym_import] = ACTIONS(4009), + [anon_sym_template] = ACTIONS(4009), + [anon_sym_operator] = ACTIONS(4009), + [anon_sym_try] = ACTIONS(4009), + [anon_sym_delete] = ACTIONS(4009), + [anon_sym_throw] = ACTIONS(4009), + [anon_sym_namespace] = ACTIONS(4009), + [anon_sym_static_assert] = ACTIONS(4009), + [anon_sym_concept] = ACTIONS(4009), + [anon_sym_co_return] = ACTIONS(4009), + [anon_sym_co_yield] = ACTIONS(4009), + [anon_sym_R_DQUOTE] = ACTIONS(4011), + [anon_sym_LR_DQUOTE] = ACTIONS(4011), + [anon_sym_uR_DQUOTE] = ACTIONS(4011), + [anon_sym_UR_DQUOTE] = ACTIONS(4011), + [anon_sym_u8R_DQUOTE] = ACTIONS(4011), + [anon_sym_co_await] = ACTIONS(4009), + [anon_sym_new] = ACTIONS(4009), + [anon_sym_requires] = ACTIONS(4009), + [anon_sym_CARET_CARET] = ACTIONS(4011), + [anon_sym_LBRACK_COLON] = ACTIONS(4011), + [sym_this] = ACTIONS(4009), + }, + [STATE(435)] = { + [sym_identifier] = ACTIONS(4013), + [aux_sym_preproc_include_token1] = ACTIONS(4013), + [aux_sym_preproc_def_token1] = ACTIONS(4013), + [aux_sym_preproc_if_token1] = ACTIONS(4013), + [aux_sym_preproc_if_token2] = ACTIONS(4013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4013), + [aux_sym_preproc_else_token1] = ACTIONS(4013), + [aux_sym_preproc_elif_token1] = ACTIONS(4013), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4013), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4013), + [sym_preproc_directive] = ACTIONS(4013), + [anon_sym_LPAREN2] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4015), + [anon_sym_TILDE] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4013), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym___extension__] = ACTIONS(4013), + [anon_sym_typedef] = ACTIONS(4013), + [anon_sym_virtual] = ACTIONS(4013), + [anon_sym_extern] = ACTIONS(4013), + [anon_sym___attribute__] = ACTIONS(4013), + [anon_sym___attribute] = ACTIONS(4013), + [anon_sym_using] = ACTIONS(4013), + [anon_sym_COLON_COLON] = ACTIONS(4015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4015), + [anon_sym___declspec] = ACTIONS(4013), + [anon_sym___based] = ACTIONS(4013), + [anon_sym___cdecl] = ACTIONS(4013), + [anon_sym___clrcall] = ACTIONS(4013), + [anon_sym___stdcall] = ACTIONS(4013), + [anon_sym___fastcall] = ACTIONS(4013), + [anon_sym___thiscall] = ACTIONS(4013), + [anon_sym___vectorcall] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_signed] = ACTIONS(4013), + [anon_sym_unsigned] = ACTIONS(4013), + [anon_sym_long] = ACTIONS(4013), + [anon_sym_short] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4013), + [anon_sym_static] = ACTIONS(4013), + [anon_sym_register] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym___inline] = ACTIONS(4013), + [anon_sym___inline__] = ACTIONS(4013), + [anon_sym___forceinline] = ACTIONS(4013), + [anon_sym_thread_local] = ACTIONS(4013), + [anon_sym___thread] = ACTIONS(4013), + [anon_sym_const] = ACTIONS(4013), + [anon_sym_constexpr] = ACTIONS(4013), + [anon_sym_volatile] = ACTIONS(4013), + [anon_sym_restrict] = ACTIONS(4013), + [anon_sym___restrict__] = ACTIONS(4013), + [anon_sym__Atomic] = ACTIONS(4013), + [anon_sym__Noreturn] = ACTIONS(4013), + [anon_sym_noreturn] = ACTIONS(4013), + [anon_sym__Nonnull] = ACTIONS(4013), + [anon_sym_mutable] = ACTIONS(4013), + [anon_sym_constinit] = ACTIONS(4013), + [anon_sym_consteval] = ACTIONS(4013), + [anon_sym_alignas] = ACTIONS(4013), + [anon_sym__Alignas] = ACTIONS(4013), + [sym_primitive_type] = ACTIONS(4013), + [anon_sym_enum] = ACTIONS(4013), + [anon_sym_class] = ACTIONS(4013), + [anon_sym_struct] = ACTIONS(4013), + [anon_sym_union] = ACTIONS(4013), + [anon_sym_if] = ACTIONS(4013), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_case] = ACTIONS(4013), + [anon_sym_default] = ACTIONS(4013), + [anon_sym_while] = ACTIONS(4013), + [anon_sym_do] = ACTIONS(4013), + [anon_sym_for] = ACTIONS(4013), + [anon_sym_return] = ACTIONS(4013), + [anon_sym_break] = ACTIONS(4013), + [anon_sym_continue] = ACTIONS(4013), + [anon_sym_goto] = ACTIONS(4013), + [anon_sym___try] = ACTIONS(4013), + [anon_sym___leave] = ACTIONS(4013), + [anon_sym_not] = ACTIONS(4013), + [anon_sym_compl] = ACTIONS(4013), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_sizeof] = ACTIONS(4013), + [anon_sym___alignof__] = ACTIONS(4013), + [anon_sym___alignof] = ACTIONS(4013), + [anon_sym__alignof] = ACTIONS(4013), + [anon_sym_alignof] = ACTIONS(4013), + [anon_sym__Alignof] = ACTIONS(4013), + [anon_sym_offsetof] = ACTIONS(4013), + [anon_sym__Generic] = ACTIONS(4013), + [anon_sym_typename] = ACTIONS(4013), + [anon_sym_asm] = ACTIONS(4013), + [anon_sym___asm__] = ACTIONS(4013), + [anon_sym___asm] = ACTIONS(4013), + [sym_number_literal] = ACTIONS(4015), + [anon_sym_L_SQUOTE] = ACTIONS(4015), + [anon_sym_u_SQUOTE] = ACTIONS(4015), + [anon_sym_U_SQUOTE] = ACTIONS(4015), + [anon_sym_u8_SQUOTE] = ACTIONS(4015), + [anon_sym_SQUOTE] = ACTIONS(4015), + [anon_sym_L_DQUOTE] = ACTIONS(4015), + [anon_sym_u_DQUOTE] = ACTIONS(4015), + [anon_sym_U_DQUOTE] = ACTIONS(4015), + [anon_sym_u8_DQUOTE] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [sym_true] = ACTIONS(4013), + [sym_false] = ACTIONS(4013), + [anon_sym_NULL] = ACTIONS(4013), + [anon_sym_nullptr] = ACTIONS(4013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4013), + [anon_sym_decltype] = ACTIONS(4013), + [anon_sym_explicit] = ACTIONS(4013), + [anon_sym_export] = ACTIONS(4013), + [anon_sym_module] = ACTIONS(4013), + [anon_sym_import] = ACTIONS(4013), + [anon_sym_template] = ACTIONS(4013), + [anon_sym_operator] = ACTIONS(4013), + [anon_sym_try] = ACTIONS(4013), + [anon_sym_delete] = ACTIONS(4013), + [anon_sym_throw] = ACTIONS(4013), + [anon_sym_namespace] = ACTIONS(4013), + [anon_sym_static_assert] = ACTIONS(4013), + [anon_sym_concept] = ACTIONS(4013), + [anon_sym_co_return] = ACTIONS(4013), + [anon_sym_co_yield] = ACTIONS(4013), + [anon_sym_R_DQUOTE] = ACTIONS(4015), + [anon_sym_LR_DQUOTE] = ACTIONS(4015), + [anon_sym_uR_DQUOTE] = ACTIONS(4015), + [anon_sym_UR_DQUOTE] = ACTIONS(4015), + [anon_sym_u8R_DQUOTE] = ACTIONS(4015), + [anon_sym_co_await] = ACTIONS(4013), + [anon_sym_new] = ACTIONS(4013), + [anon_sym_requires] = ACTIONS(4013), + [anon_sym_CARET_CARET] = ACTIONS(4015), + [anon_sym_LBRACK_COLON] = ACTIONS(4015), + [sym_this] = ACTIONS(4013), + }, + [STATE(436)] = { + [sym_identifier] = ACTIONS(4017), + [aux_sym_preproc_include_token1] = ACTIONS(4017), + [aux_sym_preproc_def_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token2] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4017), + [aux_sym_preproc_else_token1] = ACTIONS(4017), + [aux_sym_preproc_elif_token1] = ACTIONS(4017), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4017), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4017), + [sym_preproc_directive] = ACTIONS(4017), + [anon_sym_LPAREN2] = ACTIONS(4019), + [anon_sym_BANG] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_AMP_AMP] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_SEMI] = ACTIONS(4019), + [anon_sym___extension__] = ACTIONS(4017), + [anon_sym_typedef] = ACTIONS(4017), + [anon_sym_virtual] = ACTIONS(4017), + [anon_sym_extern] = ACTIONS(4017), + [anon_sym___attribute__] = ACTIONS(4017), + [anon_sym___attribute] = ACTIONS(4017), + [anon_sym_using] = ACTIONS(4017), + [anon_sym_COLON_COLON] = ACTIONS(4019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4019), + [anon_sym___declspec] = ACTIONS(4017), + [anon_sym___based] = ACTIONS(4017), + [anon_sym___cdecl] = ACTIONS(4017), + [anon_sym___clrcall] = ACTIONS(4017), + [anon_sym___stdcall] = ACTIONS(4017), + [anon_sym___fastcall] = ACTIONS(4017), + [anon_sym___thiscall] = ACTIONS(4017), + [anon_sym___vectorcall] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_signed] = ACTIONS(4017), + [anon_sym_unsigned] = ACTIONS(4017), + [anon_sym_long] = ACTIONS(4017), + [anon_sym_short] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4017), + [anon_sym_static] = ACTIONS(4017), + [anon_sym_register] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym___inline] = ACTIONS(4017), + [anon_sym___inline__] = ACTIONS(4017), + [anon_sym___forceinline] = ACTIONS(4017), + [anon_sym_thread_local] = ACTIONS(4017), + [anon_sym___thread] = ACTIONS(4017), + [anon_sym_const] = ACTIONS(4017), + [anon_sym_constexpr] = ACTIONS(4017), + [anon_sym_volatile] = ACTIONS(4017), + [anon_sym_restrict] = ACTIONS(4017), + [anon_sym___restrict__] = ACTIONS(4017), + [anon_sym__Atomic] = ACTIONS(4017), + [anon_sym__Noreturn] = ACTIONS(4017), + [anon_sym_noreturn] = ACTIONS(4017), + [anon_sym__Nonnull] = ACTIONS(4017), + [anon_sym_mutable] = ACTIONS(4017), + [anon_sym_constinit] = ACTIONS(4017), + [anon_sym_consteval] = ACTIONS(4017), + [anon_sym_alignas] = ACTIONS(4017), + [anon_sym__Alignas] = ACTIONS(4017), + [sym_primitive_type] = ACTIONS(4017), + [anon_sym_enum] = ACTIONS(4017), + [anon_sym_class] = ACTIONS(4017), + [anon_sym_struct] = ACTIONS(4017), + [anon_sym_union] = ACTIONS(4017), + [anon_sym_if] = ACTIONS(4017), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_case] = ACTIONS(4017), + [anon_sym_default] = ACTIONS(4017), + [anon_sym_while] = ACTIONS(4017), + [anon_sym_do] = ACTIONS(4017), + [anon_sym_for] = ACTIONS(4017), + [anon_sym_return] = ACTIONS(4017), + [anon_sym_break] = ACTIONS(4017), + [anon_sym_continue] = ACTIONS(4017), + [anon_sym_goto] = ACTIONS(4017), + [anon_sym___try] = ACTIONS(4017), + [anon_sym___leave] = ACTIONS(4017), + [anon_sym_not] = ACTIONS(4017), + [anon_sym_compl] = ACTIONS(4017), + [anon_sym_DASH_DASH] = ACTIONS(4019), + [anon_sym_PLUS_PLUS] = ACTIONS(4019), + [anon_sym_sizeof] = ACTIONS(4017), + [anon_sym___alignof__] = ACTIONS(4017), + [anon_sym___alignof] = ACTIONS(4017), + [anon_sym__alignof] = ACTIONS(4017), + [anon_sym_alignof] = ACTIONS(4017), + [anon_sym__Alignof] = ACTIONS(4017), + [anon_sym_offsetof] = ACTIONS(4017), + [anon_sym__Generic] = ACTIONS(4017), + [anon_sym_typename] = ACTIONS(4017), + [anon_sym_asm] = ACTIONS(4017), + [anon_sym___asm__] = ACTIONS(4017), + [anon_sym___asm] = ACTIONS(4017), + [sym_number_literal] = ACTIONS(4019), + [anon_sym_L_SQUOTE] = ACTIONS(4019), + [anon_sym_u_SQUOTE] = ACTIONS(4019), + [anon_sym_U_SQUOTE] = ACTIONS(4019), + [anon_sym_u8_SQUOTE] = ACTIONS(4019), + [anon_sym_SQUOTE] = ACTIONS(4019), + [anon_sym_L_DQUOTE] = ACTIONS(4019), + [anon_sym_u_DQUOTE] = ACTIONS(4019), + [anon_sym_U_DQUOTE] = ACTIONS(4019), + [anon_sym_u8_DQUOTE] = ACTIONS(4019), + [anon_sym_DQUOTE] = ACTIONS(4019), + [sym_true] = ACTIONS(4017), + [sym_false] = ACTIONS(4017), + [anon_sym_NULL] = ACTIONS(4017), + [anon_sym_nullptr] = ACTIONS(4017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4017), + [anon_sym_decltype] = ACTIONS(4017), + [anon_sym_explicit] = ACTIONS(4017), + [anon_sym_export] = ACTIONS(4017), + [anon_sym_module] = ACTIONS(4017), + [anon_sym_import] = ACTIONS(4017), + [anon_sym_template] = ACTIONS(4017), + [anon_sym_operator] = ACTIONS(4017), + [anon_sym_try] = ACTIONS(4017), + [anon_sym_delete] = ACTIONS(4017), + [anon_sym_throw] = ACTIONS(4017), + [anon_sym_namespace] = ACTIONS(4017), + [anon_sym_static_assert] = ACTIONS(4017), + [anon_sym_concept] = ACTIONS(4017), + [anon_sym_co_return] = ACTIONS(4017), + [anon_sym_co_yield] = ACTIONS(4017), + [anon_sym_R_DQUOTE] = ACTIONS(4019), + [anon_sym_LR_DQUOTE] = ACTIONS(4019), + [anon_sym_uR_DQUOTE] = ACTIONS(4019), + [anon_sym_UR_DQUOTE] = ACTIONS(4019), + [anon_sym_u8R_DQUOTE] = ACTIONS(4019), + [anon_sym_co_await] = ACTIONS(4017), + [anon_sym_new] = ACTIONS(4017), + [anon_sym_requires] = ACTIONS(4017), + [anon_sym_CARET_CARET] = ACTIONS(4019), + [anon_sym_LBRACK_COLON] = ACTIONS(4019), + [sym_this] = ACTIONS(4017), + }, + [STATE(437)] = { + [sym_identifier] = ACTIONS(4021), + [aux_sym_preproc_include_token1] = ACTIONS(4021), + [aux_sym_preproc_def_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token2] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4021), + [aux_sym_preproc_else_token1] = ACTIONS(4021), + [aux_sym_preproc_elif_token1] = ACTIONS(4021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4021), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4021), + [sym_preproc_directive] = ACTIONS(4021), + [anon_sym_LPAREN2] = ACTIONS(4023), + [anon_sym_BANG] = ACTIONS(4023), + [anon_sym_TILDE] = ACTIONS(4023), + [anon_sym_DASH] = ACTIONS(4021), + [anon_sym_PLUS] = ACTIONS(4021), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_AMP_AMP] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_SEMI] = ACTIONS(4023), + [anon_sym___extension__] = ACTIONS(4021), + [anon_sym_typedef] = ACTIONS(4021), + [anon_sym_virtual] = ACTIONS(4021), + [anon_sym_extern] = ACTIONS(4021), + [anon_sym___attribute__] = ACTIONS(4021), + [anon_sym___attribute] = ACTIONS(4021), + [anon_sym_using] = ACTIONS(4021), + [anon_sym_COLON_COLON] = ACTIONS(4023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4023), + [anon_sym___declspec] = ACTIONS(4021), + [anon_sym___based] = ACTIONS(4021), + [anon_sym___cdecl] = ACTIONS(4021), + [anon_sym___clrcall] = ACTIONS(4021), + [anon_sym___stdcall] = ACTIONS(4021), + [anon_sym___fastcall] = ACTIONS(4021), + [anon_sym___thiscall] = ACTIONS(4021), + [anon_sym___vectorcall] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4023), + [anon_sym_signed] = ACTIONS(4021), + [anon_sym_unsigned] = ACTIONS(4021), + [anon_sym_long] = ACTIONS(4021), + [anon_sym_short] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_register] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym___inline] = ACTIONS(4021), + [anon_sym___inline__] = ACTIONS(4021), + [anon_sym___forceinline] = ACTIONS(4021), + [anon_sym_thread_local] = ACTIONS(4021), + [anon_sym___thread] = ACTIONS(4021), + [anon_sym_const] = ACTIONS(4021), + [anon_sym_constexpr] = ACTIONS(4021), + [anon_sym_volatile] = ACTIONS(4021), + [anon_sym_restrict] = ACTIONS(4021), + [anon_sym___restrict__] = ACTIONS(4021), + [anon_sym__Atomic] = ACTIONS(4021), + [anon_sym__Noreturn] = ACTIONS(4021), + [anon_sym_noreturn] = ACTIONS(4021), + [anon_sym__Nonnull] = ACTIONS(4021), + [anon_sym_mutable] = ACTIONS(4021), + [anon_sym_constinit] = ACTIONS(4021), + [anon_sym_consteval] = ACTIONS(4021), + [anon_sym_alignas] = ACTIONS(4021), + [anon_sym__Alignas] = ACTIONS(4021), + [sym_primitive_type] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_struct] = ACTIONS(4021), + [anon_sym_union] = ACTIONS(4021), + [anon_sym_if] = ACTIONS(4021), + [anon_sym_switch] = ACTIONS(4021), + [anon_sym_case] = ACTIONS(4021), + [anon_sym_default] = ACTIONS(4021), + [anon_sym_while] = ACTIONS(4021), + [anon_sym_do] = ACTIONS(4021), + [anon_sym_for] = ACTIONS(4021), + [anon_sym_return] = ACTIONS(4021), + [anon_sym_break] = ACTIONS(4021), + [anon_sym_continue] = ACTIONS(4021), + [anon_sym_goto] = ACTIONS(4021), + [anon_sym___try] = ACTIONS(4021), + [anon_sym___leave] = ACTIONS(4021), + [anon_sym_not] = ACTIONS(4021), + [anon_sym_compl] = ACTIONS(4021), + [anon_sym_DASH_DASH] = ACTIONS(4023), + [anon_sym_PLUS_PLUS] = ACTIONS(4023), + [anon_sym_sizeof] = ACTIONS(4021), + [anon_sym___alignof__] = ACTIONS(4021), + [anon_sym___alignof] = ACTIONS(4021), + [anon_sym__alignof] = ACTIONS(4021), + [anon_sym_alignof] = ACTIONS(4021), + [anon_sym__Alignof] = ACTIONS(4021), + [anon_sym_offsetof] = ACTIONS(4021), + [anon_sym__Generic] = ACTIONS(4021), + [anon_sym_typename] = ACTIONS(4021), + [anon_sym_asm] = ACTIONS(4021), + [anon_sym___asm__] = ACTIONS(4021), + [anon_sym___asm] = ACTIONS(4021), + [sym_number_literal] = ACTIONS(4023), + [anon_sym_L_SQUOTE] = ACTIONS(4023), + [anon_sym_u_SQUOTE] = ACTIONS(4023), + [anon_sym_U_SQUOTE] = ACTIONS(4023), + [anon_sym_u8_SQUOTE] = ACTIONS(4023), + [anon_sym_SQUOTE] = ACTIONS(4023), + [anon_sym_L_DQUOTE] = ACTIONS(4023), + [anon_sym_u_DQUOTE] = ACTIONS(4023), + [anon_sym_U_DQUOTE] = ACTIONS(4023), + [anon_sym_u8_DQUOTE] = ACTIONS(4023), + [anon_sym_DQUOTE] = ACTIONS(4023), + [sym_true] = ACTIONS(4021), + [sym_false] = ACTIONS(4021), + [anon_sym_NULL] = ACTIONS(4021), + [anon_sym_nullptr] = ACTIONS(4021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4021), + [anon_sym_decltype] = ACTIONS(4021), + [anon_sym_explicit] = ACTIONS(4021), + [anon_sym_export] = ACTIONS(4021), + [anon_sym_module] = ACTIONS(4021), + [anon_sym_import] = ACTIONS(4021), + [anon_sym_template] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_try] = ACTIONS(4021), + [anon_sym_delete] = ACTIONS(4021), + [anon_sym_throw] = ACTIONS(4021), + [anon_sym_namespace] = ACTIONS(4021), + [anon_sym_static_assert] = ACTIONS(4021), + [anon_sym_concept] = ACTIONS(4021), + [anon_sym_co_return] = ACTIONS(4021), + [anon_sym_co_yield] = ACTIONS(4021), + [anon_sym_R_DQUOTE] = ACTIONS(4023), + [anon_sym_LR_DQUOTE] = ACTIONS(4023), + [anon_sym_uR_DQUOTE] = ACTIONS(4023), + [anon_sym_UR_DQUOTE] = ACTIONS(4023), + [anon_sym_u8R_DQUOTE] = ACTIONS(4023), + [anon_sym_co_await] = ACTIONS(4021), + [anon_sym_new] = ACTIONS(4021), + [anon_sym_requires] = ACTIONS(4021), + [anon_sym_CARET_CARET] = ACTIONS(4023), + [anon_sym_LBRACK_COLON] = ACTIONS(4023), + [sym_this] = ACTIONS(4021), + }, + [STATE(438)] = { + [sym_identifier] = ACTIONS(4025), + [aux_sym_preproc_include_token1] = ACTIONS(4025), + [aux_sym_preproc_def_token1] = ACTIONS(4025), + [aux_sym_preproc_if_token1] = ACTIONS(4025), + [aux_sym_preproc_if_token2] = ACTIONS(4025), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4025), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4025), + [aux_sym_preproc_else_token1] = ACTIONS(4025), + [aux_sym_preproc_elif_token1] = ACTIONS(4025), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4025), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4025), + [sym_preproc_directive] = ACTIONS(4025), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_BANG] = ACTIONS(4027), + [anon_sym_TILDE] = ACTIONS(4027), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_typedef] = ACTIONS(4025), + [anon_sym_virtual] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_using] = ACTIONS(4025), + [anon_sym_COLON_COLON] = ACTIONS(4027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4027), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym___based] = ACTIONS(4025), + [anon_sym___cdecl] = ACTIONS(4025), + [anon_sym___clrcall] = ACTIONS(4025), + [anon_sym___stdcall] = ACTIONS(4025), + [anon_sym___fastcall] = ACTIONS(4025), + [anon_sym___thiscall] = ACTIONS(4025), + [anon_sym___vectorcall] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_mutable] = ACTIONS(4025), + [anon_sym_constinit] = ACTIONS(4025), + [anon_sym_consteval] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_class] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_if] = ACTIONS(4025), + [anon_sym_switch] = ACTIONS(4025), + [anon_sym_case] = ACTIONS(4025), + [anon_sym_default] = ACTIONS(4025), + [anon_sym_while] = ACTIONS(4025), + [anon_sym_do] = ACTIONS(4025), + [anon_sym_for] = ACTIONS(4025), + [anon_sym_return] = ACTIONS(4025), + [anon_sym_break] = ACTIONS(4025), + [anon_sym_continue] = ACTIONS(4025), + [anon_sym_goto] = ACTIONS(4025), + [anon_sym___try] = ACTIONS(4025), + [anon_sym___leave] = ACTIONS(4025), + [anon_sym_not] = ACTIONS(4025), + [anon_sym_compl] = ACTIONS(4025), + [anon_sym_DASH_DASH] = ACTIONS(4027), + [anon_sym_PLUS_PLUS] = ACTIONS(4027), + [anon_sym_sizeof] = ACTIONS(4025), + [anon_sym___alignof__] = ACTIONS(4025), + [anon_sym___alignof] = ACTIONS(4025), + [anon_sym__alignof] = ACTIONS(4025), + [anon_sym_alignof] = ACTIONS(4025), + [anon_sym__Alignof] = ACTIONS(4025), + [anon_sym_offsetof] = ACTIONS(4025), + [anon_sym__Generic] = ACTIONS(4025), + [anon_sym_typename] = ACTIONS(4025), + [anon_sym_asm] = ACTIONS(4025), + [anon_sym___asm__] = ACTIONS(4025), + [anon_sym___asm] = ACTIONS(4025), + [sym_number_literal] = ACTIONS(4027), + [anon_sym_L_SQUOTE] = ACTIONS(4027), + [anon_sym_u_SQUOTE] = ACTIONS(4027), + [anon_sym_U_SQUOTE] = ACTIONS(4027), + [anon_sym_u8_SQUOTE] = ACTIONS(4027), + [anon_sym_SQUOTE] = ACTIONS(4027), + [anon_sym_L_DQUOTE] = ACTIONS(4027), + [anon_sym_u_DQUOTE] = ACTIONS(4027), + [anon_sym_U_DQUOTE] = ACTIONS(4027), + [anon_sym_u8_DQUOTE] = ACTIONS(4027), + [anon_sym_DQUOTE] = ACTIONS(4027), + [sym_true] = ACTIONS(4025), + [sym_false] = ACTIONS(4025), + [anon_sym_NULL] = ACTIONS(4025), + [anon_sym_nullptr] = ACTIONS(4025), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4025), + [anon_sym_decltype] = ACTIONS(4025), + [anon_sym_explicit] = ACTIONS(4025), + [anon_sym_export] = ACTIONS(4025), + [anon_sym_module] = ACTIONS(4025), + [anon_sym_import] = ACTIONS(4025), + [anon_sym_template] = ACTIONS(4025), + [anon_sym_operator] = ACTIONS(4025), + [anon_sym_try] = ACTIONS(4025), + [anon_sym_delete] = ACTIONS(4025), + [anon_sym_throw] = ACTIONS(4025), + [anon_sym_namespace] = ACTIONS(4025), + [anon_sym_static_assert] = ACTIONS(4025), + [anon_sym_concept] = ACTIONS(4025), + [anon_sym_co_return] = ACTIONS(4025), + [anon_sym_co_yield] = ACTIONS(4025), + [anon_sym_R_DQUOTE] = ACTIONS(4027), + [anon_sym_LR_DQUOTE] = ACTIONS(4027), + [anon_sym_uR_DQUOTE] = ACTIONS(4027), + [anon_sym_UR_DQUOTE] = ACTIONS(4027), + [anon_sym_u8R_DQUOTE] = ACTIONS(4027), + [anon_sym_co_await] = ACTIONS(4025), + [anon_sym_new] = ACTIONS(4025), + [anon_sym_requires] = ACTIONS(4025), + [anon_sym_CARET_CARET] = ACTIONS(4027), + [anon_sym_LBRACK_COLON] = ACTIONS(4027), + [sym_this] = ACTIONS(4025), + }, + [STATE(439)] = { + [sym_catch_clause] = STATE(439), + [aux_sym_constructor_try_statement_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(3169), + [aux_sym_preproc_include_token1] = ACTIONS(3169), + [aux_sym_preproc_def_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token2] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3169), + [sym_preproc_directive] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym___extension__] = ACTIONS(3169), + [anon_sym_typedef] = ACTIONS(3169), + [anon_sym_virtual] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym___attribute__] = ACTIONS(3169), + [anon_sym___attribute] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3171), + [anon_sym___declspec] = ACTIONS(3169), + [anon_sym___based] = ACTIONS(3169), + [anon_sym___cdecl] = ACTIONS(3169), + [anon_sym___clrcall] = ACTIONS(3169), + [anon_sym___stdcall] = ACTIONS(3169), + [anon_sym___fastcall] = ACTIONS(3169), + [anon_sym___thiscall] = ACTIONS(3169), + [anon_sym___vectorcall] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_register] = ACTIONS(3169), + [anon_sym_inline] = ACTIONS(3169), + [anon_sym___inline] = ACTIONS(3169), + [anon_sym___inline__] = ACTIONS(3169), + [anon_sym___forceinline] = ACTIONS(3169), + [anon_sym_thread_local] = ACTIONS(3169), + [anon_sym___thread] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_constexpr] = ACTIONS(3169), + [anon_sym_volatile] = ACTIONS(3169), + [anon_sym_restrict] = ACTIONS(3169), + [anon_sym___restrict__] = ACTIONS(3169), + [anon_sym__Atomic] = ACTIONS(3169), + [anon_sym__Noreturn] = ACTIONS(3169), + [anon_sym_noreturn] = ACTIONS(3169), + [anon_sym__Nonnull] = ACTIONS(3169), + [anon_sym_mutable] = ACTIONS(3169), + [anon_sym_constinit] = ACTIONS(3169), + [anon_sym_consteval] = ACTIONS(3169), + [anon_sym_alignas] = ACTIONS(3169), + [anon_sym__Alignas] = ACTIONS(3169), + [sym_primitive_type] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_case] = ACTIONS(3169), + [anon_sym_default] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_goto] = ACTIONS(3169), + [anon_sym___try] = ACTIONS(3169), + [anon_sym___leave] = ACTIONS(3169), + [anon_sym_not] = ACTIONS(3169), + [anon_sym_compl] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_sizeof] = ACTIONS(3169), + [anon_sym___alignof__] = ACTIONS(3169), + [anon_sym___alignof] = ACTIONS(3169), + [anon_sym__alignof] = ACTIONS(3169), + [anon_sym_alignof] = ACTIONS(3169), + [anon_sym__Alignof] = ACTIONS(3169), + [anon_sym_offsetof] = ACTIONS(3169), + [anon_sym__Generic] = ACTIONS(3169), + [anon_sym_typename] = ACTIONS(3169), + [anon_sym_asm] = ACTIONS(3169), + [anon_sym___asm__] = ACTIONS(3169), + [anon_sym___asm] = ACTIONS(3169), + [sym_number_literal] = ACTIONS(3171), + [anon_sym_L_SQUOTE] = ACTIONS(3171), + [anon_sym_u_SQUOTE] = ACTIONS(3171), + [anon_sym_U_SQUOTE] = ACTIONS(3171), + [anon_sym_u8_SQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_L_DQUOTE] = ACTIONS(3171), + [anon_sym_u_DQUOTE] = ACTIONS(3171), + [anon_sym_U_DQUOTE] = ACTIONS(3171), + [anon_sym_u8_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [sym_true] = ACTIONS(3169), + [sym_false] = ACTIONS(3169), + [anon_sym_NULL] = ACTIONS(3169), + [anon_sym_nullptr] = ACTIONS(3169), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3169), + [anon_sym_decltype] = ACTIONS(3169), + [anon_sym_explicit] = ACTIONS(3169), + [anon_sym_export] = ACTIONS(3169), + [anon_sym_module] = ACTIONS(3169), + [anon_sym_import] = ACTIONS(3169), + [anon_sym_template] = ACTIONS(3169), + [anon_sym_operator] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_delete] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_static_assert] = ACTIONS(3169), + [anon_sym_concept] = ACTIONS(3169), + [anon_sym_co_return] = ACTIONS(3169), + [anon_sym_co_yield] = ACTIONS(3169), + [anon_sym_catch] = ACTIONS(4029), + [anon_sym_R_DQUOTE] = ACTIONS(3171), + [anon_sym_LR_DQUOTE] = ACTIONS(3171), + [anon_sym_uR_DQUOTE] = ACTIONS(3171), + [anon_sym_UR_DQUOTE] = ACTIONS(3171), + [anon_sym_u8R_DQUOTE] = ACTIONS(3171), + [anon_sym_co_await] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_requires] = ACTIONS(3169), + [anon_sym_CARET_CARET] = ACTIONS(3171), + [anon_sym_LBRACK_COLON] = ACTIONS(3171), + [sym_this] = ACTIONS(3169), + }, + [STATE(440)] = { [sym_identifier] = ACTIONS(4032), [aux_sym_preproc_include_token1] = ACTIONS(4032), [aux_sym_preproc_def_token1] = ACTIONS(4032), @@ -121174,7 +126031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4034), [sym_this] = ACTIONS(4032), }, - [STATE(429)] = { + [STATE(441)] = { [sym_identifier] = ACTIONS(4036), [aux_sym_preproc_include_token1] = ACTIONS(4036), [aux_sym_preproc_def_token1] = ACTIONS(4036), @@ -121319,7 +126176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4038), [sym_this] = ACTIONS(4036), }, - [STATE(430)] = { + [STATE(442)] = { [sym_identifier] = ACTIONS(4040), [aux_sym_preproc_include_token1] = ACTIONS(4040), [aux_sym_preproc_def_token1] = ACTIONS(4040), @@ -121464,7 +126321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4042), [sym_this] = ACTIONS(4040), }, - [STATE(431)] = { + [STATE(443)] = { [sym_identifier] = ACTIONS(4044), [aux_sym_preproc_include_token1] = ACTIONS(4044), [aux_sym_preproc_def_token1] = ACTIONS(4044), @@ -121609,7 +126466,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(444)] = { [sym_identifier] = ACTIONS(4048), [aux_sym_preproc_include_token1] = ACTIONS(4048), [aux_sym_preproc_def_token1] = ACTIONS(4048), @@ -121754,297 +126611,1022 @@ 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(445)] = { [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), - [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), + [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(446)] = { + [sym_identifier] = ACTIONS(4056), + [aux_sym_preproc_include_token1] = ACTIONS(4056), + [aux_sym_preproc_def_token1] = ACTIONS(4056), + [aux_sym_preproc_if_token1] = ACTIONS(4056), + [aux_sym_preproc_if_token2] = ACTIONS(4056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4056), + [aux_sym_preproc_else_token1] = ACTIONS(4056), + [aux_sym_preproc_elif_token1] = ACTIONS(4056), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4056), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4056), + [sym_preproc_directive] = ACTIONS(4056), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_TILDE] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4056), + [anon_sym_PLUS] = ACTIONS(4056), + [anon_sym_STAR] = ACTIONS(4058), + [anon_sym_AMP_AMP] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4056), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym___extension__] = ACTIONS(4056), + [anon_sym_typedef] = ACTIONS(4056), + [anon_sym_virtual] = ACTIONS(4056), + [anon_sym_extern] = ACTIONS(4056), + [anon_sym___attribute__] = ACTIONS(4056), + [anon_sym___attribute] = ACTIONS(4056), + [anon_sym_using] = ACTIONS(4056), + [anon_sym_COLON_COLON] = ACTIONS(4058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4058), + [anon_sym___declspec] = ACTIONS(4056), + [anon_sym___based] = ACTIONS(4056), + [anon_sym___cdecl] = ACTIONS(4056), + [anon_sym___clrcall] = ACTIONS(4056), + [anon_sym___stdcall] = ACTIONS(4056), + [anon_sym___fastcall] = ACTIONS(4056), + [anon_sym___thiscall] = ACTIONS(4056), + [anon_sym___vectorcall] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4058), + [anon_sym_signed] = ACTIONS(4056), + [anon_sym_unsigned] = ACTIONS(4056), + [anon_sym_long] = ACTIONS(4056), + [anon_sym_short] = ACTIONS(4056), + [anon_sym_LBRACK] = ACTIONS(4056), + [anon_sym_static] = ACTIONS(4056), + [anon_sym_register] = ACTIONS(4056), + [anon_sym_inline] = ACTIONS(4056), + [anon_sym___inline] = ACTIONS(4056), + [anon_sym___inline__] = ACTIONS(4056), + [anon_sym___forceinline] = ACTIONS(4056), + [anon_sym_thread_local] = ACTIONS(4056), + [anon_sym___thread] = ACTIONS(4056), + [anon_sym_const] = ACTIONS(4056), + [anon_sym_constexpr] = ACTIONS(4056), + [anon_sym_volatile] = ACTIONS(4056), + [anon_sym_restrict] = ACTIONS(4056), + [anon_sym___restrict__] = ACTIONS(4056), + [anon_sym__Atomic] = ACTIONS(4056), + [anon_sym__Noreturn] = ACTIONS(4056), + [anon_sym_noreturn] = ACTIONS(4056), + [anon_sym__Nonnull] = ACTIONS(4056), + [anon_sym_mutable] = ACTIONS(4056), + [anon_sym_constinit] = ACTIONS(4056), + [anon_sym_consteval] = ACTIONS(4056), + [anon_sym_alignas] = ACTIONS(4056), + [anon_sym__Alignas] = ACTIONS(4056), + [sym_primitive_type] = ACTIONS(4056), + [anon_sym_enum] = ACTIONS(4056), + [anon_sym_class] = ACTIONS(4056), + [anon_sym_struct] = ACTIONS(4056), + [anon_sym_union] = ACTIONS(4056), + [anon_sym_if] = ACTIONS(4056), + [anon_sym_switch] = ACTIONS(4056), + [anon_sym_case] = ACTIONS(4056), + [anon_sym_default] = ACTIONS(4056), + [anon_sym_while] = ACTIONS(4056), + [anon_sym_do] = ACTIONS(4056), + [anon_sym_for] = ACTIONS(4056), + [anon_sym_return] = ACTIONS(4056), + [anon_sym_break] = ACTIONS(4056), + [anon_sym_continue] = ACTIONS(4056), + [anon_sym_goto] = ACTIONS(4056), + [anon_sym___try] = ACTIONS(4056), + [anon_sym___leave] = ACTIONS(4056), + [anon_sym_not] = ACTIONS(4056), + [anon_sym_compl] = ACTIONS(4056), + [anon_sym_DASH_DASH] = ACTIONS(4058), + [anon_sym_PLUS_PLUS] = ACTIONS(4058), + [anon_sym_sizeof] = ACTIONS(4056), + [anon_sym___alignof__] = ACTIONS(4056), + [anon_sym___alignof] = ACTIONS(4056), + [anon_sym__alignof] = ACTIONS(4056), + [anon_sym_alignof] = ACTIONS(4056), + [anon_sym__Alignof] = ACTIONS(4056), + [anon_sym_offsetof] = ACTIONS(4056), + [anon_sym__Generic] = ACTIONS(4056), + [anon_sym_typename] = ACTIONS(4056), + [anon_sym_asm] = ACTIONS(4056), + [anon_sym___asm__] = ACTIONS(4056), + [anon_sym___asm] = ACTIONS(4056), + [sym_number_literal] = ACTIONS(4058), + [anon_sym_L_SQUOTE] = ACTIONS(4058), + [anon_sym_u_SQUOTE] = ACTIONS(4058), + [anon_sym_U_SQUOTE] = ACTIONS(4058), + [anon_sym_u8_SQUOTE] = ACTIONS(4058), + [anon_sym_SQUOTE] = ACTIONS(4058), + [anon_sym_L_DQUOTE] = ACTIONS(4058), + [anon_sym_u_DQUOTE] = ACTIONS(4058), + [anon_sym_U_DQUOTE] = ACTIONS(4058), + [anon_sym_u8_DQUOTE] = ACTIONS(4058), + [anon_sym_DQUOTE] = ACTIONS(4058), + [sym_true] = ACTIONS(4056), + [sym_false] = ACTIONS(4056), + [anon_sym_NULL] = ACTIONS(4056), + [anon_sym_nullptr] = ACTIONS(4056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4056), + [anon_sym_decltype] = ACTIONS(4056), + [anon_sym_explicit] = ACTIONS(4056), + [anon_sym_export] = ACTIONS(4056), + [anon_sym_module] = ACTIONS(4056), + [anon_sym_import] = ACTIONS(4056), + [anon_sym_template] = ACTIONS(4056), + [anon_sym_operator] = ACTIONS(4056), + [anon_sym_try] = ACTIONS(4056), + [anon_sym_delete] = ACTIONS(4056), + [anon_sym_throw] = ACTIONS(4056), + [anon_sym_namespace] = ACTIONS(4056), + [anon_sym_static_assert] = ACTIONS(4056), + [anon_sym_concept] = ACTIONS(4056), + [anon_sym_co_return] = ACTIONS(4056), + [anon_sym_co_yield] = ACTIONS(4056), + [anon_sym_R_DQUOTE] = ACTIONS(4058), + [anon_sym_LR_DQUOTE] = ACTIONS(4058), + [anon_sym_uR_DQUOTE] = ACTIONS(4058), + [anon_sym_UR_DQUOTE] = ACTIONS(4058), + [anon_sym_u8R_DQUOTE] = ACTIONS(4058), + [anon_sym_co_await] = ACTIONS(4056), + [anon_sym_new] = ACTIONS(4056), + [anon_sym_requires] = ACTIONS(4056), + [anon_sym_CARET_CARET] = ACTIONS(4058), + [anon_sym_LBRACK_COLON] = ACTIONS(4058), + [sym_this] = ACTIONS(4056), + }, + [STATE(447)] = { + [sym_identifier] = ACTIONS(4060), + [aux_sym_preproc_include_token1] = ACTIONS(4060), + [aux_sym_preproc_def_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token2] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4060), + [aux_sym_preproc_else_token1] = ACTIONS(4060), + [aux_sym_preproc_elif_token1] = ACTIONS(4060), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4060), + [sym_preproc_directive] = ACTIONS(4060), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4060), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym___extension__] = ACTIONS(4060), + [anon_sym_typedef] = ACTIONS(4060), + [anon_sym_virtual] = ACTIONS(4060), + [anon_sym_extern] = ACTIONS(4060), + [anon_sym___attribute__] = ACTIONS(4060), + [anon_sym___attribute] = ACTIONS(4060), + [anon_sym_using] = ACTIONS(4060), + [anon_sym_COLON_COLON] = ACTIONS(4062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4062), + [anon_sym___declspec] = ACTIONS(4060), + [anon_sym___based] = ACTIONS(4060), + [anon_sym___cdecl] = ACTIONS(4060), + [anon_sym___clrcall] = ACTIONS(4060), + [anon_sym___stdcall] = ACTIONS(4060), + [anon_sym___fastcall] = ACTIONS(4060), + [anon_sym___thiscall] = ACTIONS(4060), + [anon_sym___vectorcall] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_signed] = ACTIONS(4060), + [anon_sym_unsigned] = ACTIONS(4060), + [anon_sym_long] = ACTIONS(4060), + [anon_sym_short] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_static] = ACTIONS(4060), + [anon_sym_register] = ACTIONS(4060), + [anon_sym_inline] = ACTIONS(4060), + [anon_sym___inline] = ACTIONS(4060), + [anon_sym___inline__] = ACTIONS(4060), + [anon_sym___forceinline] = ACTIONS(4060), + [anon_sym_thread_local] = ACTIONS(4060), + [anon_sym___thread] = ACTIONS(4060), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_constexpr] = ACTIONS(4060), + [anon_sym_volatile] = ACTIONS(4060), + [anon_sym_restrict] = ACTIONS(4060), + [anon_sym___restrict__] = ACTIONS(4060), + [anon_sym__Atomic] = ACTIONS(4060), + [anon_sym__Noreturn] = ACTIONS(4060), + [anon_sym_noreturn] = ACTIONS(4060), + [anon_sym__Nonnull] = ACTIONS(4060), + [anon_sym_mutable] = ACTIONS(4060), + [anon_sym_constinit] = ACTIONS(4060), + [anon_sym_consteval] = ACTIONS(4060), + [anon_sym_alignas] = ACTIONS(4060), + [anon_sym__Alignas] = ACTIONS(4060), [sym_primitive_type] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4060), + [anon_sym_class] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4060), + [anon_sym_union] = ACTIONS(4060), + [anon_sym_if] = ACTIONS(4060), + [anon_sym_switch] = ACTIONS(4060), + [anon_sym_case] = ACTIONS(4060), + [anon_sym_default] = ACTIONS(4060), + [anon_sym_while] = ACTIONS(4060), + [anon_sym_do] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4060), + [anon_sym_break] = ACTIONS(4060), + [anon_sym_continue] = ACTIONS(4060), + [anon_sym_goto] = ACTIONS(4060), + [anon_sym___try] = ACTIONS(4060), + [anon_sym___leave] = ACTIONS(4060), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_compl] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4062), + [anon_sym_PLUS_PLUS] = ACTIONS(4062), + [anon_sym_sizeof] = ACTIONS(4060), + [anon_sym___alignof__] = ACTIONS(4060), + [anon_sym___alignof] = ACTIONS(4060), + [anon_sym__alignof] = ACTIONS(4060), + [anon_sym_alignof] = ACTIONS(4060), + [anon_sym__Alignof] = ACTIONS(4060), + [anon_sym_offsetof] = ACTIONS(4060), + [anon_sym__Generic] = ACTIONS(4060), + [anon_sym_typename] = ACTIONS(4060), + [anon_sym_asm] = ACTIONS(4060), + [anon_sym___asm__] = ACTIONS(4060), + [anon_sym___asm] = ACTIONS(4060), + [sym_number_literal] = ACTIONS(4062), + [anon_sym_L_SQUOTE] = ACTIONS(4062), + [anon_sym_u_SQUOTE] = ACTIONS(4062), + [anon_sym_U_SQUOTE] = ACTIONS(4062), + [anon_sym_u8_SQUOTE] = ACTIONS(4062), + [anon_sym_SQUOTE] = ACTIONS(4062), + [anon_sym_L_DQUOTE] = ACTIONS(4062), + [anon_sym_u_DQUOTE] = ACTIONS(4062), + [anon_sym_U_DQUOTE] = ACTIONS(4062), + [anon_sym_u8_DQUOTE] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [anon_sym_NULL] = ACTIONS(4060), + [anon_sym_nullptr] = ACTIONS(4060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4060), + [anon_sym_decltype] = ACTIONS(4060), + [anon_sym_explicit] = ACTIONS(4060), + [anon_sym_export] = ACTIONS(4060), + [anon_sym_module] = ACTIONS(4060), + [anon_sym_import] = ACTIONS(4060), + [anon_sym_template] = ACTIONS(4060), + [anon_sym_operator] = ACTIONS(4060), + [anon_sym_try] = ACTIONS(4060), + [anon_sym_delete] = ACTIONS(4060), + [anon_sym_throw] = ACTIONS(4060), + [anon_sym_namespace] = ACTIONS(4060), + [anon_sym_static_assert] = ACTIONS(4060), + [anon_sym_concept] = ACTIONS(4060), + [anon_sym_co_return] = ACTIONS(4060), + [anon_sym_co_yield] = ACTIONS(4060), + [anon_sym_R_DQUOTE] = ACTIONS(4062), + [anon_sym_LR_DQUOTE] = ACTIONS(4062), + [anon_sym_uR_DQUOTE] = ACTIONS(4062), + [anon_sym_UR_DQUOTE] = ACTIONS(4062), + [anon_sym_u8R_DQUOTE] = ACTIONS(4062), + [anon_sym_co_await] = ACTIONS(4060), + [anon_sym_new] = ACTIONS(4060), + [anon_sym_requires] = ACTIONS(4060), + [anon_sym_CARET_CARET] = ACTIONS(4062), + [anon_sym_LBRACK_COLON] = ACTIONS(4062), + [sym_this] = ACTIONS(4060), + }, + [STATE(448)] = { + [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), + [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(449)] = { + [sym_identifier] = ACTIONS(4064), + [aux_sym_preproc_include_token1] = ACTIONS(4064), + [aux_sym_preproc_def_token1] = ACTIONS(4064), + [aux_sym_preproc_if_token1] = ACTIONS(4064), + [aux_sym_preproc_if_token2] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4064), + [aux_sym_preproc_else_token1] = ACTIONS(4064), + [aux_sym_preproc_elif_token1] = ACTIONS(4064), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4064), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4064), + [sym_preproc_directive] = ACTIONS(4064), + [anon_sym_LPAREN2] = ACTIONS(4066), + [anon_sym_BANG] = ACTIONS(4066), + [anon_sym_TILDE] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4066), + [anon_sym_AMP_AMP] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym___extension__] = ACTIONS(4064), + [anon_sym_typedef] = ACTIONS(4064), + [anon_sym_virtual] = ACTIONS(4064), + [anon_sym_extern] = ACTIONS(4064), + [anon_sym___attribute__] = ACTIONS(4064), + [anon_sym___attribute] = ACTIONS(4064), + [anon_sym_using] = ACTIONS(4064), + [anon_sym_COLON_COLON] = ACTIONS(4066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4066), + [anon_sym___declspec] = ACTIONS(4064), + [anon_sym___based] = ACTIONS(4064), + [anon_sym___cdecl] = ACTIONS(4064), + [anon_sym___clrcall] = ACTIONS(4064), + [anon_sym___stdcall] = ACTIONS(4064), + [anon_sym___fastcall] = ACTIONS(4064), + [anon_sym___thiscall] = ACTIONS(4064), + [anon_sym___vectorcall] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4066), + [anon_sym_signed] = ACTIONS(4064), + [anon_sym_unsigned] = ACTIONS(4064), + [anon_sym_long] = ACTIONS(4064), + [anon_sym_short] = ACTIONS(4064), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_static] = ACTIONS(4064), + [anon_sym_register] = ACTIONS(4064), + [anon_sym_inline] = ACTIONS(4064), + [anon_sym___inline] = ACTIONS(4064), + [anon_sym___inline__] = ACTIONS(4064), + [anon_sym___forceinline] = ACTIONS(4064), + [anon_sym_thread_local] = ACTIONS(4064), + [anon_sym___thread] = ACTIONS(4064), + [anon_sym_const] = ACTIONS(4064), + [anon_sym_constexpr] = ACTIONS(4064), + [anon_sym_volatile] = ACTIONS(4064), + [anon_sym_restrict] = ACTIONS(4064), + [anon_sym___restrict__] = ACTIONS(4064), + [anon_sym__Atomic] = ACTIONS(4064), + [anon_sym__Noreturn] = ACTIONS(4064), + [anon_sym_noreturn] = ACTIONS(4064), + [anon_sym__Nonnull] = ACTIONS(4064), + [anon_sym_mutable] = ACTIONS(4064), + [anon_sym_constinit] = ACTIONS(4064), + [anon_sym_consteval] = ACTIONS(4064), + [anon_sym_alignas] = ACTIONS(4064), + [anon_sym__Alignas] = ACTIONS(4064), + [sym_primitive_type] = ACTIONS(4064), + [anon_sym_enum] = ACTIONS(4064), [anon_sym_class] = ACTIONS(4064), - [anon_sym_struct] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4064), + [anon_sym_union] = ACTIONS(4064), + [anon_sym_if] = ACTIONS(4064), + [anon_sym_switch] = ACTIONS(4064), + [anon_sym_case] = ACTIONS(4064), + [anon_sym_default] = ACTIONS(4064), + [anon_sym_while] = ACTIONS(4064), + [anon_sym_do] = ACTIONS(4064), + [anon_sym_for] = ACTIONS(4064), + [anon_sym_return] = ACTIONS(4064), + [anon_sym_break] = ACTIONS(4064), + [anon_sym_continue] = ACTIONS(4064), + [anon_sym_goto] = ACTIONS(4064), + [anon_sym___try] = ACTIONS(4064), + [anon_sym___leave] = ACTIONS(4064), + [anon_sym_not] = ACTIONS(4064), + [anon_sym_compl] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4066), + [anon_sym_PLUS_PLUS] = ACTIONS(4066), + [anon_sym_sizeof] = ACTIONS(4064), + [anon_sym___alignof__] = ACTIONS(4064), + [anon_sym___alignof] = ACTIONS(4064), + [anon_sym__alignof] = ACTIONS(4064), + [anon_sym_alignof] = ACTIONS(4064), + [anon_sym__Alignof] = ACTIONS(4064), + [anon_sym_offsetof] = ACTIONS(4064), + [anon_sym__Generic] = ACTIONS(4064), + [anon_sym_typename] = ACTIONS(4064), + [anon_sym_asm] = ACTIONS(4064), + [anon_sym___asm__] = ACTIONS(4064), + [anon_sym___asm] = ACTIONS(4064), + [sym_number_literal] = ACTIONS(4066), + [anon_sym_L_SQUOTE] = ACTIONS(4066), + [anon_sym_u_SQUOTE] = ACTIONS(4066), + [anon_sym_U_SQUOTE] = ACTIONS(4066), + [anon_sym_u8_SQUOTE] = ACTIONS(4066), + [anon_sym_SQUOTE] = ACTIONS(4066), + [anon_sym_L_DQUOTE] = ACTIONS(4066), + [anon_sym_u_DQUOTE] = ACTIONS(4066), + [anon_sym_U_DQUOTE] = ACTIONS(4066), + [anon_sym_u8_DQUOTE] = ACTIONS(4066), + [anon_sym_DQUOTE] = ACTIONS(4066), + [sym_true] = ACTIONS(4064), + [sym_false] = ACTIONS(4064), + [anon_sym_NULL] = ACTIONS(4064), + [anon_sym_nullptr] = ACTIONS(4064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4064), + [anon_sym_decltype] = ACTIONS(4064), + [anon_sym_explicit] = ACTIONS(4064), + [anon_sym_export] = ACTIONS(4064), + [anon_sym_module] = ACTIONS(4064), + [anon_sym_import] = ACTIONS(4064), + [anon_sym_template] = ACTIONS(4064), + [anon_sym_operator] = ACTIONS(4064), + [anon_sym_try] = ACTIONS(4064), + [anon_sym_delete] = ACTIONS(4064), + [anon_sym_throw] = ACTIONS(4064), + [anon_sym_namespace] = ACTIONS(4064), + [anon_sym_static_assert] = ACTIONS(4064), + [anon_sym_concept] = ACTIONS(4064), + [anon_sym_co_return] = ACTIONS(4064), + [anon_sym_co_yield] = ACTIONS(4064), + [anon_sym_R_DQUOTE] = ACTIONS(4066), + [anon_sym_LR_DQUOTE] = ACTIONS(4066), + [anon_sym_uR_DQUOTE] = ACTIONS(4066), + [anon_sym_UR_DQUOTE] = ACTIONS(4066), + [anon_sym_u8R_DQUOTE] = ACTIONS(4066), + [anon_sym_co_await] = ACTIONS(4064), + [anon_sym_new] = ACTIONS(4064), + [anon_sym_requires] = ACTIONS(4064), + [anon_sym_CARET_CARET] = ACTIONS(4066), + [anon_sym_LBRACK_COLON] = ACTIONS(4066), + [sym_this] = ACTIONS(4064), + }, + [STATE(450)] = { + [sym_identifier] = ACTIONS(4068), + [aux_sym_preproc_include_token1] = ACTIONS(4068), + [aux_sym_preproc_def_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token2] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4068), + [aux_sym_preproc_else_token1] = ACTIONS(4068), + [aux_sym_preproc_elif_token1] = ACTIONS(4068), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4068), + [sym_preproc_directive] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_TILDE] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym___extension__] = ACTIONS(4068), + [anon_sym_typedef] = ACTIONS(4068), + [anon_sym_virtual] = ACTIONS(4068), + [anon_sym_extern] = ACTIONS(4068), + [anon_sym___attribute__] = ACTIONS(4068), + [anon_sym___attribute] = ACTIONS(4068), + [anon_sym_using] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4070), + [anon_sym___declspec] = ACTIONS(4068), + [anon_sym___based] = ACTIONS(4068), + [anon_sym___cdecl] = ACTIONS(4068), + [anon_sym___clrcall] = ACTIONS(4068), + [anon_sym___stdcall] = ACTIONS(4068), + [anon_sym___fastcall] = ACTIONS(4068), + [anon_sym___thiscall] = ACTIONS(4068), + [anon_sym___vectorcall] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_signed] = ACTIONS(4068), + [anon_sym_unsigned] = ACTIONS(4068), + [anon_sym_long] = ACTIONS(4068), + [anon_sym_short] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_register] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym___inline] = ACTIONS(4068), + [anon_sym___inline__] = ACTIONS(4068), + [anon_sym___forceinline] = ACTIONS(4068), + [anon_sym_thread_local] = ACTIONS(4068), + [anon_sym___thread] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4068), + [anon_sym_constexpr] = ACTIONS(4068), + [anon_sym_volatile] = ACTIONS(4068), + [anon_sym_restrict] = ACTIONS(4068), + [anon_sym___restrict__] = ACTIONS(4068), + [anon_sym__Atomic] = ACTIONS(4068), + [anon_sym__Noreturn] = ACTIONS(4068), + [anon_sym_noreturn] = ACTIONS(4068), + [anon_sym__Nonnull] = ACTIONS(4068), + [anon_sym_mutable] = ACTIONS(4068), + [anon_sym_constinit] = ACTIONS(4068), + [anon_sym_consteval] = ACTIONS(4068), + [anon_sym_alignas] = ACTIONS(4068), + [anon_sym__Alignas] = ACTIONS(4068), + [sym_primitive_type] = ACTIONS(4068), + [anon_sym_enum] = ACTIONS(4068), + [anon_sym_class] = ACTIONS(4068), + [anon_sym_struct] = ACTIONS(4068), [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), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_switch] = ACTIONS(4068), + [anon_sym_case] = ACTIONS(4068), + [anon_sym_default] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_do] = ACTIONS(4068), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_goto] = ACTIONS(4068), + [anon_sym___try] = ACTIONS(4068), + [anon_sym___leave] = ACTIONS(4068), + [anon_sym_not] = ACTIONS(4068), + [anon_sym_compl] = ACTIONS(4068), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4068), + [anon_sym___alignof__] = ACTIONS(4068), + [anon_sym___alignof] = ACTIONS(4068), + [anon_sym__alignof] = ACTIONS(4068), + [anon_sym_alignof] = ACTIONS(4068), + [anon_sym__Alignof] = ACTIONS(4068), + [anon_sym_offsetof] = ACTIONS(4068), + [anon_sym__Generic] = ACTIONS(4068), + [anon_sym_typename] = ACTIONS(4068), + [anon_sym_asm] = ACTIONS(4068), + [anon_sym___asm__] = ACTIONS(4068), + [anon_sym___asm] = ACTIONS(4068), + [sym_number_literal] = ACTIONS(4070), + [anon_sym_L_SQUOTE] = ACTIONS(4070), + [anon_sym_u_SQUOTE] = ACTIONS(4070), + [anon_sym_U_SQUOTE] = ACTIONS(4070), + [anon_sym_u8_SQUOTE] = ACTIONS(4070), + [anon_sym_SQUOTE] = ACTIONS(4070), + [anon_sym_L_DQUOTE] = ACTIONS(4070), + [anon_sym_u_DQUOTE] = ACTIONS(4070), + [anon_sym_U_DQUOTE] = ACTIONS(4070), + [anon_sym_u8_DQUOTE] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [sym_true] = ACTIONS(4068), + [sym_false] = ACTIONS(4068), + [anon_sym_NULL] = ACTIONS(4068), + [anon_sym_nullptr] = ACTIONS(4068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4068), + [anon_sym_decltype] = ACTIONS(4068), + [anon_sym_explicit] = ACTIONS(4068), + [anon_sym_export] = ACTIONS(4068), + [anon_sym_module] = ACTIONS(4068), + [anon_sym_import] = ACTIONS(4068), + [anon_sym_template] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_delete] = ACTIONS(4068), + [anon_sym_throw] = ACTIONS(4068), + [anon_sym_namespace] = ACTIONS(4068), + [anon_sym_static_assert] = ACTIONS(4068), + [anon_sym_concept] = ACTIONS(4068), + [anon_sym_co_return] = ACTIONS(4068), + [anon_sym_co_yield] = ACTIONS(4068), + [anon_sym_R_DQUOTE] = ACTIONS(4070), + [anon_sym_LR_DQUOTE] = ACTIONS(4070), + [anon_sym_uR_DQUOTE] = ACTIONS(4070), + [anon_sym_UR_DQUOTE] = ACTIONS(4070), + [anon_sym_u8R_DQUOTE] = ACTIONS(4070), + [anon_sym_co_await] = ACTIONS(4068), + [anon_sym_new] = ACTIONS(4068), + [anon_sym_requires] = ACTIONS(4068), + [anon_sym_CARET_CARET] = ACTIONS(4070), + [anon_sym_LBRACK_COLON] = ACTIONS(4070), + [sym_this] = ACTIONS(4068), + }, + [STATE(451)] = { + [sym_identifier] = ACTIONS(4072), + [aux_sym_preproc_include_token1] = ACTIONS(4072), + [aux_sym_preproc_def_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token2] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4072), + [aux_sym_preproc_else_token1] = ACTIONS(4072), + [aux_sym_preproc_elif_token1] = ACTIONS(4072), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4072), + [sym_preproc_directive] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4072), + [anon_sym_typedef] = ACTIONS(4072), + [anon_sym_virtual] = ACTIONS(4072), + [anon_sym_extern] = ACTIONS(4072), + [anon_sym___attribute__] = ACTIONS(4072), + [anon_sym___attribute] = ACTIONS(4072), + [anon_sym_using] = ACTIONS(4072), + [anon_sym_COLON_COLON] = ACTIONS(4074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4074), + [anon_sym___declspec] = ACTIONS(4072), + [anon_sym___based] = ACTIONS(4072), + [anon_sym___cdecl] = ACTIONS(4072), + [anon_sym___clrcall] = ACTIONS(4072), + [anon_sym___stdcall] = ACTIONS(4072), + [anon_sym___fastcall] = ACTIONS(4072), + [anon_sym___thiscall] = ACTIONS(4072), + [anon_sym___vectorcall] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_signed] = ACTIONS(4072), + [anon_sym_unsigned] = ACTIONS(4072), + [anon_sym_long] = ACTIONS(4072), + [anon_sym_short] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_static] = ACTIONS(4072), + [anon_sym_register] = ACTIONS(4072), + [anon_sym_inline] = ACTIONS(4072), + [anon_sym___inline] = ACTIONS(4072), + [anon_sym___inline__] = ACTIONS(4072), + [anon_sym___forceinline] = ACTIONS(4072), + [anon_sym_thread_local] = ACTIONS(4072), + [anon_sym___thread] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4072), + [anon_sym_constexpr] = ACTIONS(4072), + [anon_sym_volatile] = ACTIONS(4072), + [anon_sym_restrict] = ACTIONS(4072), + [anon_sym___restrict__] = ACTIONS(4072), + [anon_sym__Atomic] = ACTIONS(4072), + [anon_sym__Noreturn] = ACTIONS(4072), + [anon_sym_noreturn] = ACTIONS(4072), + [anon_sym__Nonnull] = ACTIONS(4072), + [anon_sym_mutable] = ACTIONS(4072), + [anon_sym_constinit] = ACTIONS(4072), + [anon_sym_consteval] = ACTIONS(4072), + [anon_sym_alignas] = ACTIONS(4072), + [anon_sym__Alignas] = ACTIONS(4072), + [sym_primitive_type] = ACTIONS(4072), + [anon_sym_enum] = ACTIONS(4072), + [anon_sym_class] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_union] = ACTIONS(4072), + [anon_sym_if] = ACTIONS(4072), + [anon_sym_switch] = ACTIONS(4072), + [anon_sym_case] = ACTIONS(4072), + [anon_sym_default] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(4072), + [anon_sym_do] = ACTIONS(4072), + [anon_sym_for] = ACTIONS(4072), + [anon_sym_return] = ACTIONS(4072), + [anon_sym_break] = ACTIONS(4072), + [anon_sym_continue] = ACTIONS(4072), + [anon_sym_goto] = ACTIONS(4072), + [anon_sym___try] = ACTIONS(4072), + [anon_sym___leave] = ACTIONS(4072), + [anon_sym_not] = ACTIONS(4072), + [anon_sym_compl] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4074), + [anon_sym_PLUS_PLUS] = ACTIONS(4074), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(4072), + [anon_sym___alignof] = ACTIONS(4072), + [anon_sym__alignof] = ACTIONS(4072), + [anon_sym_alignof] = ACTIONS(4072), + [anon_sym__Alignof] = ACTIONS(4072), + [anon_sym_offsetof] = ACTIONS(4072), + [anon_sym__Generic] = ACTIONS(4072), + [anon_sym_typename] = ACTIONS(4072), + [anon_sym_asm] = ACTIONS(4072), + [anon_sym___asm__] = ACTIONS(4072), + [anon_sym___asm] = ACTIONS(4072), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4074), + [anon_sym_u_SQUOTE] = ACTIONS(4074), + [anon_sym_U_SQUOTE] = ACTIONS(4074), + [anon_sym_u8_SQUOTE] = ACTIONS(4074), + [anon_sym_SQUOTE] = ACTIONS(4074), + [anon_sym_L_DQUOTE] = ACTIONS(4074), + [anon_sym_u_DQUOTE] = ACTIONS(4074), + [anon_sym_U_DQUOTE] = ACTIONS(4074), + [anon_sym_u8_DQUOTE] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [sym_true] = ACTIONS(4072), + [sym_false] = ACTIONS(4072), + [anon_sym_NULL] = ACTIONS(4072), + [anon_sym_nullptr] = ACTIONS(4072), [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), + [anon_sym_decltype] = ACTIONS(4072), + [anon_sym_explicit] = ACTIONS(4072), + [anon_sym_export] = ACTIONS(4072), + [anon_sym_module] = ACTIONS(4072), + [anon_sym_import] = ACTIONS(4072), + [anon_sym_template] = ACTIONS(4072), + [anon_sym_operator] = ACTIONS(4072), + [anon_sym_try] = ACTIONS(4072), + [anon_sym_delete] = ACTIONS(4072), + [anon_sym_throw] = ACTIONS(4072), + [anon_sym_namespace] = ACTIONS(4072), + [anon_sym_static_assert] = ACTIONS(4072), + [anon_sym_concept] = ACTIONS(4072), + [anon_sym_co_return] = ACTIONS(4072), + [anon_sym_co_yield] = ACTIONS(4072), + [anon_sym_R_DQUOTE] = ACTIONS(4074), + [anon_sym_LR_DQUOTE] = ACTIONS(4074), + [anon_sym_uR_DQUOTE] = ACTIONS(4074), + [anon_sym_UR_DQUOTE] = ACTIONS(4074), + [anon_sym_u8R_DQUOTE] = ACTIONS(4074), + [anon_sym_co_await] = ACTIONS(4072), + [anon_sym_new] = ACTIONS(4072), + [anon_sym_requires] = ACTIONS(4072), + [anon_sym_CARET_CARET] = ACTIONS(4074), + [anon_sym_LBRACK_COLON] = ACTIONS(4074), + [sym_this] = ACTIONS(4072), }, - [STATE(435)] = { + [STATE(452)] = { [sym_identifier] = ACTIONS(4076), [aux_sym_preproc_include_token1] = ACTIONS(4076), [aux_sym_preproc_def_token1] = ACTIONS(4076), @@ -122189,297 +127771,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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(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), + [STATE(453)] = { + [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(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), + [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(438)] = { + [STATE(454)] = { [sym_identifier] = ACTIONS(4080), [aux_sym_preproc_include_token1] = ACTIONS(4080), [aux_sym_preproc_def_token1] = ACTIONS(4080), @@ -122624,7 +128061,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4082), [sym_this] = ACTIONS(4080), }, - [STATE(439)] = { + [STATE(455)] = { [sym_identifier] = ACTIONS(4084), [aux_sym_preproc_include_token1] = ACTIONS(4084), [aux_sym_preproc_def_token1] = ACTIONS(4084), @@ -122769,7 +128206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4086), [sym_this] = ACTIONS(4084), }, - [STATE(440)] = { + [STATE(456)] = { [sym_identifier] = ACTIONS(4088), [aux_sym_preproc_include_token1] = ACTIONS(4088), [aux_sym_preproc_def_token1] = ACTIONS(4088), @@ -122914,7 +128351,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(457)] = { [sym_identifier] = ACTIONS(4092), [aux_sym_preproc_include_token1] = ACTIONS(4092), [aux_sym_preproc_def_token1] = ACTIONS(4092), @@ -123059,7 +128496,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(458)] = { [sym_identifier] = ACTIONS(4096), [aux_sym_preproc_include_token1] = ACTIONS(4096), [aux_sym_preproc_def_token1] = ACTIONS(4096), @@ -123204,7 +128641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4098), [sym_this] = ACTIONS(4096), }, - [STATE(443)] = { + [STATE(459)] = { [sym_identifier] = ACTIONS(4100), [aux_sym_preproc_include_token1] = ACTIONS(4100), [aux_sym_preproc_def_token1] = ACTIONS(4100), @@ -123349,2907 +128786,1892 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4102), [sym_this] = ACTIONS(4100), }, - [STATE(444)] = { + [STATE(460)] = { + [sym_type_qualifier] = STATE(5658), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2215), + [sym_sized_type_specifier] = STATE(3337), + [sym_enum_specifier] = STATE(3337), + [sym_struct_specifier] = STATE(3337), + [sym_union_specifier] = STATE(3337), + [sym_expression] = STATE(6584), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_type_descriptor] = STATE(6796), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_placeholder_type_specifier] = STATE(3337), + [sym_decltype_auto] = STATE(3336), + [sym_decltype] = STATE(3338), + [sym_class_specifier] = STATE(3337), + [sym__class_name] = STATE(11799), + [sym_dependent_type] = STATE(3337), + [sym_template_type] = STATE(3354), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8907), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(3357), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(3469), + [sym__splice_specialization_specifier] = STATE(2890), + [sym_splice_type_specifier] = STATE(3377), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [aux_sym__type_definition_type_repeat1] = STATE(5658), + [aux_sym_sized_type_specifier_repeat1] = STATE(2389), [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), + [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(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4110), + [anon_sym_unsigned] = ACTIONS(4110), + [anon_sym_long] = ACTIONS(4110), + [anon_sym_short] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(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_enum] = ACTIONS(4114), [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(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_struct] = ACTIONS(4118), [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(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), + [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(4122), + [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(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(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), - }, - [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), + [anon_sym_decltype] = ACTIONS(4126), + [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(4128), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(461)] = { + [sym_identifier] = ACTIONS(4130), + [aux_sym_preproc_include_token1] = ACTIONS(4130), + [aux_sym_preproc_def_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token2] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4130), + [aux_sym_preproc_else_token1] = ACTIONS(4130), + [aux_sym_preproc_elif_token1] = ACTIONS(4130), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4130), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4130), + [sym_preproc_directive] = ACTIONS(4130), + [anon_sym_LPAREN2] = ACTIONS(4132), + [anon_sym_BANG] = ACTIONS(4132), + [anon_sym_TILDE] = ACTIONS(4132), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym___extension__] = ACTIONS(4130), + [anon_sym_typedef] = ACTIONS(4130), + [anon_sym_virtual] = ACTIONS(4130), + [anon_sym_extern] = ACTIONS(4130), + [anon_sym___attribute__] = ACTIONS(4130), + [anon_sym___attribute] = ACTIONS(4130), + [anon_sym_using] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4132), + [anon_sym___declspec] = ACTIONS(4130), + [anon_sym___based] = ACTIONS(4130), + [anon_sym___cdecl] = ACTIONS(4130), + [anon_sym___clrcall] = ACTIONS(4130), + [anon_sym___stdcall] = ACTIONS(4130), + [anon_sym___fastcall] = ACTIONS(4130), + [anon_sym___thiscall] = ACTIONS(4130), + [anon_sym___vectorcall] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_signed] = ACTIONS(4130), + [anon_sym_unsigned] = ACTIONS(4130), + [anon_sym_long] = ACTIONS(4130), + [anon_sym_short] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4130), + [anon_sym_static] = ACTIONS(4130), + [anon_sym_register] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym___inline] = ACTIONS(4130), + [anon_sym___inline__] = ACTIONS(4130), + [anon_sym___forceinline] = ACTIONS(4130), + [anon_sym_thread_local] = ACTIONS(4130), + [anon_sym___thread] = ACTIONS(4130), + [anon_sym_const] = ACTIONS(4130), + [anon_sym_constexpr] = ACTIONS(4130), + [anon_sym_volatile] = ACTIONS(4130), + [anon_sym_restrict] = ACTIONS(4130), + [anon_sym___restrict__] = ACTIONS(4130), + [anon_sym__Atomic] = ACTIONS(4130), + [anon_sym__Noreturn] = ACTIONS(4130), + [anon_sym_noreturn] = ACTIONS(4130), + [anon_sym__Nonnull] = ACTIONS(4130), + [anon_sym_mutable] = ACTIONS(4130), + [anon_sym_constinit] = ACTIONS(4130), + [anon_sym_consteval] = ACTIONS(4130), + [anon_sym_alignas] = ACTIONS(4130), + [anon_sym__Alignas] = ACTIONS(4130), + [sym_primitive_type] = ACTIONS(4130), + [anon_sym_enum] = ACTIONS(4130), + [anon_sym_class] = ACTIONS(4130), + [anon_sym_struct] = ACTIONS(4130), + [anon_sym_union] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_switch] = ACTIONS(4130), + [anon_sym_case] = ACTIONS(4130), + [anon_sym_default] = ACTIONS(4130), + [anon_sym_while] = ACTIONS(4130), + [anon_sym_do] = ACTIONS(4130), + [anon_sym_for] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_break] = ACTIONS(4130), + [anon_sym_continue] = ACTIONS(4130), + [anon_sym_goto] = ACTIONS(4130), + [anon_sym___try] = ACTIONS(4130), + [anon_sym___leave] = ACTIONS(4130), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_compl] = ACTIONS(4130), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_sizeof] = ACTIONS(4130), + [anon_sym___alignof__] = ACTIONS(4130), + [anon_sym___alignof] = ACTIONS(4130), + [anon_sym__alignof] = ACTIONS(4130), + [anon_sym_alignof] = ACTIONS(4130), + [anon_sym__Alignof] = ACTIONS(4130), + [anon_sym_offsetof] = ACTIONS(4130), + [anon_sym__Generic] = ACTIONS(4130), + [anon_sym_typename] = ACTIONS(4130), + [anon_sym_asm] = ACTIONS(4130), + [anon_sym___asm__] = ACTIONS(4130), + [anon_sym___asm] = ACTIONS(4130), + [sym_number_literal] = ACTIONS(4132), + [anon_sym_L_SQUOTE] = ACTIONS(4132), + [anon_sym_u_SQUOTE] = ACTIONS(4132), + [anon_sym_U_SQUOTE] = ACTIONS(4132), + [anon_sym_u8_SQUOTE] = ACTIONS(4132), + [anon_sym_SQUOTE] = ACTIONS(4132), + [anon_sym_L_DQUOTE] = ACTIONS(4132), + [anon_sym_u_DQUOTE] = ACTIONS(4132), + [anon_sym_U_DQUOTE] = ACTIONS(4132), + [anon_sym_u8_DQUOTE] = ACTIONS(4132), + [anon_sym_DQUOTE] = ACTIONS(4132), + [sym_true] = ACTIONS(4130), + [sym_false] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_nullptr] = ACTIONS(4130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4130), + [anon_sym_decltype] = ACTIONS(4130), + [anon_sym_explicit] = ACTIONS(4130), + [anon_sym_export] = ACTIONS(4130), + [anon_sym_module] = ACTIONS(4130), + [anon_sym_import] = ACTIONS(4130), + [anon_sym_template] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_try] = ACTIONS(4130), + [anon_sym_delete] = ACTIONS(4130), + [anon_sym_throw] = ACTIONS(4130), + [anon_sym_namespace] = ACTIONS(4130), + [anon_sym_static_assert] = ACTIONS(4130), + [anon_sym_concept] = ACTIONS(4130), + [anon_sym_co_return] = ACTIONS(4130), + [anon_sym_co_yield] = ACTIONS(4130), + [anon_sym_R_DQUOTE] = ACTIONS(4132), + [anon_sym_LR_DQUOTE] = ACTIONS(4132), + [anon_sym_uR_DQUOTE] = ACTIONS(4132), + [anon_sym_UR_DQUOTE] = ACTIONS(4132), + [anon_sym_u8R_DQUOTE] = ACTIONS(4132), + [anon_sym_co_await] = ACTIONS(4130), + [anon_sym_new] = ACTIONS(4130), + [anon_sym_requires] = ACTIONS(4130), + [anon_sym_CARET_CARET] = ACTIONS(4132), + [anon_sym_LBRACK_COLON] = ACTIONS(4132), + [sym_this] = ACTIONS(4130), }, - [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), + [STATE(462)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_include_token1] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token2] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [aux_sym_preproc_else_token1] = ACTIONS(4134), + [aux_sym_preproc_elif_token1] = ACTIONS(4134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym___cdecl] = ACTIONS(4134), + [anon_sym___clrcall] = ACTIONS(4134), + [anon_sym___stdcall] = ACTIONS(4134), + [anon_sym___fastcall] = ACTIONS(4134), + [anon_sym___thiscall] = ACTIONS(4134), + [anon_sym___vectorcall] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_switch] = ACTIONS(4134), + [anon_sym_case] = ACTIONS(4134), + [anon_sym_default] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_do] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_goto] = ACTIONS(4134), + [anon_sym___try] = ACTIONS(4134), + [anon_sym___leave] = ACTIONS(4134), + [anon_sym_not] = ACTIONS(4134), + [anon_sym_compl] = ACTIONS(4134), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_sizeof] = ACTIONS(4134), + [anon_sym___alignof__] = ACTIONS(4134), + [anon_sym___alignof] = ACTIONS(4134), + [anon_sym__alignof] = ACTIONS(4134), + [anon_sym_alignof] = ACTIONS(4134), + [anon_sym__Alignof] = ACTIONS(4134), + [anon_sym_offsetof] = ACTIONS(4134), + [anon_sym__Generic] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [anon_sym_asm] = ACTIONS(4134), + [anon_sym___asm__] = ACTIONS(4134), + [anon_sym___asm] = ACTIONS(4134), + [sym_number_literal] = ACTIONS(4136), + [anon_sym_L_SQUOTE] = ACTIONS(4136), + [anon_sym_u_SQUOTE] = ACTIONS(4136), + [anon_sym_U_SQUOTE] = ACTIONS(4136), + [anon_sym_u8_SQUOTE] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4136), + [anon_sym_L_DQUOTE] = ACTIONS(4136), + [anon_sym_u_DQUOTE] = ACTIONS(4136), + [anon_sym_U_DQUOTE] = ACTIONS(4136), + [anon_sym_u8_DQUOTE] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [sym_true] = ACTIONS(4134), + [sym_false] = ACTIONS(4134), + [anon_sym_NULL] = ACTIONS(4134), + [anon_sym_nullptr] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_export] = ACTIONS(4134), + [anon_sym_module] = ACTIONS(4134), + [anon_sym_import] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_delete] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_namespace] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_concept] = ACTIONS(4134), + [anon_sym_co_return] = ACTIONS(4134), + [anon_sym_co_yield] = ACTIONS(4134), + [anon_sym_R_DQUOTE] = ACTIONS(4136), + [anon_sym_LR_DQUOTE] = ACTIONS(4136), + [anon_sym_uR_DQUOTE] = ACTIONS(4136), + [anon_sym_UR_DQUOTE] = ACTIONS(4136), + [anon_sym_u8R_DQUOTE] = ACTIONS(4136), + [anon_sym_co_await] = ACTIONS(4134), + [anon_sym_new] = ACTIONS(4134), + [anon_sym_requires] = ACTIONS(4134), + [anon_sym_CARET_CARET] = ACTIONS(4136), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + [sym_this] = ACTIONS(4134), }, - [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), + [STATE(463)] = { + [sym_expression] = STATE(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [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(3129), + [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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), + [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(3138), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(464)] = { + [sym_identifier] = ACTIONS(4138), + [aux_sym_preproc_include_token1] = ACTIONS(4138), + [aux_sym_preproc_def_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token2] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), + [aux_sym_preproc_else_token1] = ACTIONS(4138), + [aux_sym_preproc_elif_token1] = ACTIONS(4138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4138), + [sym_preproc_directive] = ACTIONS(4138), + [anon_sym_LPAREN2] = ACTIONS(4140), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_TILDE] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym___extension__] = ACTIONS(4138), + [anon_sym_typedef] = ACTIONS(4138), + [anon_sym_virtual] = ACTIONS(4138), + [anon_sym_extern] = ACTIONS(4138), + [anon_sym___attribute__] = ACTIONS(4138), + [anon_sym___attribute] = ACTIONS(4138), + [anon_sym_using] = ACTIONS(4138), + [anon_sym_COLON_COLON] = ACTIONS(4140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4140), + [anon_sym___declspec] = ACTIONS(4138), + [anon_sym___based] = ACTIONS(4138), + [anon_sym___cdecl] = ACTIONS(4138), + [anon_sym___clrcall] = ACTIONS(4138), + [anon_sym___stdcall] = ACTIONS(4138), + [anon_sym___fastcall] = ACTIONS(4138), + [anon_sym___thiscall] = ACTIONS(4138), + [anon_sym___vectorcall] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4140), + [anon_sym_signed] = ACTIONS(4138), + [anon_sym_unsigned] = ACTIONS(4138), + [anon_sym_long] = ACTIONS(4138), + [anon_sym_short] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_static] = ACTIONS(4138), + [anon_sym_register] = ACTIONS(4138), + [anon_sym_inline] = ACTIONS(4138), + [anon_sym___inline] = ACTIONS(4138), + [anon_sym___inline__] = ACTIONS(4138), + [anon_sym___forceinline] = ACTIONS(4138), + [anon_sym_thread_local] = ACTIONS(4138), + [anon_sym___thread] = ACTIONS(4138), + [anon_sym_const] = ACTIONS(4138), + [anon_sym_constexpr] = ACTIONS(4138), + [anon_sym_volatile] = ACTIONS(4138), + [anon_sym_restrict] = ACTIONS(4138), + [anon_sym___restrict__] = ACTIONS(4138), + [anon_sym__Atomic] = ACTIONS(4138), + [anon_sym__Noreturn] = ACTIONS(4138), + [anon_sym_noreturn] = ACTIONS(4138), + [anon_sym__Nonnull] = ACTIONS(4138), + [anon_sym_mutable] = ACTIONS(4138), + [anon_sym_constinit] = ACTIONS(4138), + [anon_sym_consteval] = ACTIONS(4138), + [anon_sym_alignas] = ACTIONS(4138), + [anon_sym__Alignas] = ACTIONS(4138), + [sym_primitive_type] = ACTIONS(4138), + [anon_sym_enum] = ACTIONS(4138), + [anon_sym_class] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4138), + [anon_sym_union] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_switch] = ACTIONS(4138), + [anon_sym_case] = ACTIONS(4138), + [anon_sym_default] = ACTIONS(4138), + [anon_sym_while] = ACTIONS(4138), + [anon_sym_do] = ACTIONS(4138), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_return] = ACTIONS(4138), + [anon_sym_break] = ACTIONS(4138), + [anon_sym_continue] = ACTIONS(4138), + [anon_sym_goto] = ACTIONS(4138), + [anon_sym___try] = ACTIONS(4138), + [anon_sym___leave] = ACTIONS(4138), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_compl] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4140), + [anon_sym_PLUS_PLUS] = ACTIONS(4140), + [anon_sym_sizeof] = ACTIONS(4138), + [anon_sym___alignof__] = ACTIONS(4138), + [anon_sym___alignof] = ACTIONS(4138), + [anon_sym__alignof] = ACTIONS(4138), + [anon_sym_alignof] = ACTIONS(4138), + [anon_sym__Alignof] = ACTIONS(4138), + [anon_sym_offsetof] = ACTIONS(4138), + [anon_sym__Generic] = ACTIONS(4138), + [anon_sym_typename] = ACTIONS(4138), + [anon_sym_asm] = ACTIONS(4138), + [anon_sym___asm__] = ACTIONS(4138), + [anon_sym___asm] = ACTIONS(4138), + [sym_number_literal] = ACTIONS(4140), + [anon_sym_L_SQUOTE] = ACTIONS(4140), + [anon_sym_u_SQUOTE] = ACTIONS(4140), + [anon_sym_U_SQUOTE] = ACTIONS(4140), + [anon_sym_u8_SQUOTE] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4140), + [anon_sym_L_DQUOTE] = ACTIONS(4140), + [anon_sym_u_DQUOTE] = ACTIONS(4140), + [anon_sym_U_DQUOTE] = ACTIONS(4140), + [anon_sym_u8_DQUOTE] = ACTIONS(4140), + [anon_sym_DQUOTE] = ACTIONS(4140), + [sym_true] = ACTIONS(4138), + [sym_false] = ACTIONS(4138), + [anon_sym_NULL] = ACTIONS(4138), + [anon_sym_nullptr] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4138), + [anon_sym_decltype] = ACTIONS(4138), + [anon_sym_explicit] = ACTIONS(4138), + [anon_sym_export] = ACTIONS(4138), + [anon_sym_module] = ACTIONS(4138), + [anon_sym_import] = ACTIONS(4138), + [anon_sym_template] = ACTIONS(4138), + [anon_sym_operator] = ACTIONS(4138), + [anon_sym_try] = ACTIONS(4138), + [anon_sym_delete] = ACTIONS(4138), + [anon_sym_throw] = ACTIONS(4138), + [anon_sym_namespace] = ACTIONS(4138), + [anon_sym_static_assert] = ACTIONS(4138), + [anon_sym_concept] = ACTIONS(4138), + [anon_sym_co_return] = ACTIONS(4138), + [anon_sym_co_yield] = ACTIONS(4138), + [anon_sym_R_DQUOTE] = ACTIONS(4140), + [anon_sym_LR_DQUOTE] = ACTIONS(4140), + [anon_sym_uR_DQUOTE] = ACTIONS(4140), + [anon_sym_UR_DQUOTE] = ACTIONS(4140), + [anon_sym_u8R_DQUOTE] = ACTIONS(4140), + [anon_sym_co_await] = ACTIONS(4138), + [anon_sym_new] = ACTIONS(4138), + [anon_sym_requires] = ACTIONS(4138), + [anon_sym_CARET_CARET] = ACTIONS(4140), + [anon_sym_LBRACK_COLON] = ACTIONS(4140), + [sym_this] = ACTIONS(4138), }, - [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), + [STATE(465)] = { + [sym_identifier] = ACTIONS(4142), + [aux_sym_preproc_include_token1] = ACTIONS(4142), + [aux_sym_preproc_def_token1] = ACTIONS(4142), + [aux_sym_preproc_if_token1] = ACTIONS(4142), + [aux_sym_preproc_if_token2] = ACTIONS(4142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4142), + [aux_sym_preproc_else_token1] = ACTIONS(4142), + [aux_sym_preproc_elif_token1] = ACTIONS(4142), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4142), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4142), + [sym_preproc_directive] = ACTIONS(4142), + [anon_sym_LPAREN2] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4144), + [anon_sym_TILDE] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym___extension__] = ACTIONS(4142), + [anon_sym_typedef] = ACTIONS(4142), + [anon_sym_virtual] = ACTIONS(4142), + [anon_sym_extern] = ACTIONS(4142), + [anon_sym___attribute__] = ACTIONS(4142), + [anon_sym___attribute] = ACTIONS(4142), + [anon_sym_using] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4144), + [anon_sym___declspec] = ACTIONS(4142), + [anon_sym___based] = ACTIONS(4142), + [anon_sym___cdecl] = ACTIONS(4142), + [anon_sym___clrcall] = ACTIONS(4142), + [anon_sym___stdcall] = ACTIONS(4142), + [anon_sym___fastcall] = ACTIONS(4142), + [anon_sym___thiscall] = ACTIONS(4142), + [anon_sym___vectorcall] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_signed] = ACTIONS(4142), + [anon_sym_unsigned] = ACTIONS(4142), + [anon_sym_long] = ACTIONS(4142), + [anon_sym_short] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_static] = ACTIONS(4142), + [anon_sym_register] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym___inline] = ACTIONS(4142), + [anon_sym___inline__] = ACTIONS(4142), + [anon_sym___forceinline] = ACTIONS(4142), + [anon_sym_thread_local] = ACTIONS(4142), + [anon_sym___thread] = ACTIONS(4142), + [anon_sym_const] = ACTIONS(4142), + [anon_sym_constexpr] = ACTIONS(4142), + [anon_sym_volatile] = ACTIONS(4142), + [anon_sym_restrict] = ACTIONS(4142), + [anon_sym___restrict__] = ACTIONS(4142), + [anon_sym__Atomic] = ACTIONS(4142), + [anon_sym__Noreturn] = ACTIONS(4142), + [anon_sym_noreturn] = ACTIONS(4142), + [anon_sym__Nonnull] = ACTIONS(4142), + [anon_sym_mutable] = ACTIONS(4142), + [anon_sym_constinit] = ACTIONS(4142), + [anon_sym_consteval] = ACTIONS(4142), + [anon_sym_alignas] = ACTIONS(4142), + [anon_sym__Alignas] = ACTIONS(4142), + [sym_primitive_type] = ACTIONS(4142), + [anon_sym_enum] = ACTIONS(4142), + [anon_sym_class] = ACTIONS(4142), + [anon_sym_struct] = ACTIONS(4142), + [anon_sym_union] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4142), + [anon_sym_switch] = ACTIONS(4142), + [anon_sym_case] = ACTIONS(4142), + [anon_sym_default] = ACTIONS(4142), + [anon_sym_while] = ACTIONS(4142), + [anon_sym_do] = ACTIONS(4142), + [anon_sym_for] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4142), + [anon_sym_break] = ACTIONS(4142), + [anon_sym_continue] = ACTIONS(4142), + [anon_sym_goto] = ACTIONS(4142), + [anon_sym___try] = ACTIONS(4142), + [anon_sym___leave] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4142), + [anon_sym_compl] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_sizeof] = ACTIONS(4142), + [anon_sym___alignof__] = ACTIONS(4142), + [anon_sym___alignof] = ACTIONS(4142), + [anon_sym__alignof] = ACTIONS(4142), + [anon_sym_alignof] = ACTIONS(4142), + [anon_sym__Alignof] = ACTIONS(4142), + [anon_sym_offsetof] = ACTIONS(4142), + [anon_sym__Generic] = ACTIONS(4142), + [anon_sym_typename] = ACTIONS(4142), + [anon_sym_asm] = ACTIONS(4142), + [anon_sym___asm__] = ACTIONS(4142), + [anon_sym___asm] = ACTIONS(4142), + [sym_number_literal] = ACTIONS(4144), + [anon_sym_L_SQUOTE] = ACTIONS(4144), + [anon_sym_u_SQUOTE] = ACTIONS(4144), + [anon_sym_U_SQUOTE] = ACTIONS(4144), + [anon_sym_u8_SQUOTE] = ACTIONS(4144), + [anon_sym_SQUOTE] = ACTIONS(4144), + [anon_sym_L_DQUOTE] = ACTIONS(4144), + [anon_sym_u_DQUOTE] = ACTIONS(4144), + [anon_sym_U_DQUOTE] = ACTIONS(4144), + [anon_sym_u8_DQUOTE] = ACTIONS(4144), + [anon_sym_DQUOTE] = ACTIONS(4144), + [sym_true] = ACTIONS(4142), + [sym_false] = ACTIONS(4142), + [anon_sym_NULL] = ACTIONS(4142), + [anon_sym_nullptr] = ACTIONS(4142), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4142), + [anon_sym_decltype] = ACTIONS(4142), + [anon_sym_explicit] = ACTIONS(4142), + [anon_sym_export] = ACTIONS(4142), + [anon_sym_module] = ACTIONS(4142), + [anon_sym_import] = ACTIONS(4142), + [anon_sym_template] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_try] = ACTIONS(4142), + [anon_sym_delete] = ACTIONS(4142), + [anon_sym_throw] = ACTIONS(4142), + [anon_sym_namespace] = ACTIONS(4142), + [anon_sym_static_assert] = ACTIONS(4142), + [anon_sym_concept] = ACTIONS(4142), + [anon_sym_co_return] = ACTIONS(4142), + [anon_sym_co_yield] = ACTIONS(4142), + [anon_sym_R_DQUOTE] = ACTIONS(4144), + [anon_sym_LR_DQUOTE] = ACTIONS(4144), + [anon_sym_uR_DQUOTE] = ACTIONS(4144), + [anon_sym_UR_DQUOTE] = ACTIONS(4144), + [anon_sym_u8R_DQUOTE] = ACTIONS(4144), + [anon_sym_co_await] = ACTIONS(4142), + [anon_sym_new] = ACTIONS(4142), + [anon_sym_requires] = ACTIONS(4142), + [anon_sym_CARET_CARET] = ACTIONS(4144), + [anon_sym_LBRACK_COLON] = ACTIONS(4144), + [sym_this] = ACTIONS(4142), }, - [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), + [STATE(466)] = { + [sym_identifier] = ACTIONS(4146), + [aux_sym_preproc_include_token1] = ACTIONS(4146), + [aux_sym_preproc_def_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token2] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4146), + [aux_sym_preproc_else_token1] = ACTIONS(4146), + [aux_sym_preproc_elif_token1] = ACTIONS(4146), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4146), + [sym_preproc_directive] = ACTIONS(4146), + [anon_sym_LPAREN2] = ACTIONS(4148), + [anon_sym_BANG] = ACTIONS(4148), + [anon_sym_TILDE] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym___extension__] = ACTIONS(4146), + [anon_sym_typedef] = ACTIONS(4146), + [anon_sym_virtual] = ACTIONS(4146), + [anon_sym_extern] = ACTIONS(4146), + [anon_sym___attribute__] = ACTIONS(4146), + [anon_sym___attribute] = ACTIONS(4146), + [anon_sym_using] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4148), + [anon_sym___declspec] = ACTIONS(4146), + [anon_sym___based] = ACTIONS(4146), + [anon_sym___cdecl] = ACTIONS(4146), + [anon_sym___clrcall] = ACTIONS(4146), + [anon_sym___stdcall] = ACTIONS(4146), + [anon_sym___fastcall] = ACTIONS(4146), + [anon_sym___thiscall] = ACTIONS(4146), + [anon_sym___vectorcall] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_signed] = ACTIONS(4146), + [anon_sym_unsigned] = ACTIONS(4146), + [anon_sym_long] = ACTIONS(4146), + [anon_sym_short] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_static] = ACTIONS(4146), + [anon_sym_register] = ACTIONS(4146), + [anon_sym_inline] = ACTIONS(4146), + [anon_sym___inline] = ACTIONS(4146), + [anon_sym___inline__] = ACTIONS(4146), + [anon_sym___forceinline] = ACTIONS(4146), + [anon_sym_thread_local] = ACTIONS(4146), + [anon_sym___thread] = ACTIONS(4146), + [anon_sym_const] = ACTIONS(4146), + [anon_sym_constexpr] = ACTIONS(4146), + [anon_sym_volatile] = ACTIONS(4146), + [anon_sym_restrict] = ACTIONS(4146), + [anon_sym___restrict__] = ACTIONS(4146), + [anon_sym__Atomic] = ACTIONS(4146), + [anon_sym__Noreturn] = ACTIONS(4146), + [anon_sym_noreturn] = ACTIONS(4146), + [anon_sym__Nonnull] = ACTIONS(4146), + [anon_sym_mutable] = ACTIONS(4146), + [anon_sym_constinit] = ACTIONS(4146), + [anon_sym_consteval] = ACTIONS(4146), + [anon_sym_alignas] = ACTIONS(4146), + [anon_sym__Alignas] = ACTIONS(4146), + [sym_primitive_type] = ACTIONS(4146), + [anon_sym_enum] = ACTIONS(4146), + [anon_sym_class] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4146), + [anon_sym_union] = ACTIONS(4146), + [anon_sym_if] = ACTIONS(4146), + [anon_sym_switch] = ACTIONS(4146), + [anon_sym_case] = ACTIONS(4146), + [anon_sym_default] = ACTIONS(4146), + [anon_sym_while] = ACTIONS(4146), + [anon_sym_do] = ACTIONS(4146), + [anon_sym_for] = ACTIONS(4146), + [anon_sym_return] = ACTIONS(4146), + [anon_sym_break] = ACTIONS(4146), + [anon_sym_continue] = ACTIONS(4146), + [anon_sym_goto] = ACTIONS(4146), + [anon_sym___try] = ACTIONS(4146), + [anon_sym___leave] = ACTIONS(4146), + [anon_sym_not] = ACTIONS(4146), + [anon_sym_compl] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_sizeof] = ACTIONS(4146), + [anon_sym___alignof__] = ACTIONS(4146), + [anon_sym___alignof] = ACTIONS(4146), + [anon_sym__alignof] = ACTIONS(4146), + [anon_sym_alignof] = ACTIONS(4146), + [anon_sym__Alignof] = ACTIONS(4146), + [anon_sym_offsetof] = ACTIONS(4146), + [anon_sym__Generic] = ACTIONS(4146), + [anon_sym_typename] = ACTIONS(4146), + [anon_sym_asm] = ACTIONS(4146), + [anon_sym___asm__] = ACTIONS(4146), + [anon_sym___asm] = ACTIONS(4146), + [sym_number_literal] = ACTIONS(4148), + [anon_sym_L_SQUOTE] = ACTIONS(4148), + [anon_sym_u_SQUOTE] = ACTIONS(4148), + [anon_sym_U_SQUOTE] = ACTIONS(4148), + [anon_sym_u8_SQUOTE] = ACTIONS(4148), + [anon_sym_SQUOTE] = ACTIONS(4148), + [anon_sym_L_DQUOTE] = ACTIONS(4148), + [anon_sym_u_DQUOTE] = ACTIONS(4148), + [anon_sym_U_DQUOTE] = ACTIONS(4148), + [anon_sym_u8_DQUOTE] = ACTIONS(4148), + [anon_sym_DQUOTE] = ACTIONS(4148), + [sym_true] = ACTIONS(4146), + [sym_false] = ACTIONS(4146), + [anon_sym_NULL] = ACTIONS(4146), + [anon_sym_nullptr] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4146), + [anon_sym_decltype] = ACTIONS(4146), + [anon_sym_explicit] = ACTIONS(4146), + [anon_sym_export] = ACTIONS(4146), + [anon_sym_module] = ACTIONS(4146), + [anon_sym_import] = ACTIONS(4146), + [anon_sym_template] = ACTIONS(4146), + [anon_sym_operator] = ACTIONS(4146), + [anon_sym_try] = ACTIONS(4146), + [anon_sym_delete] = ACTIONS(4146), + [anon_sym_throw] = ACTIONS(4146), + [anon_sym_namespace] = ACTIONS(4146), + [anon_sym_static_assert] = ACTIONS(4146), + [anon_sym_concept] = ACTIONS(4146), + [anon_sym_co_return] = ACTIONS(4146), + [anon_sym_co_yield] = ACTIONS(4146), + [anon_sym_R_DQUOTE] = ACTIONS(4148), + [anon_sym_LR_DQUOTE] = ACTIONS(4148), + [anon_sym_uR_DQUOTE] = ACTIONS(4148), + [anon_sym_UR_DQUOTE] = ACTIONS(4148), + [anon_sym_u8R_DQUOTE] = ACTIONS(4148), + [anon_sym_co_await] = ACTIONS(4146), + [anon_sym_new] = ACTIONS(4146), + [anon_sym_requires] = ACTIONS(4146), + [anon_sym_CARET_CARET] = ACTIONS(4148), + [anon_sym_LBRACK_COLON] = ACTIONS(4148), + [sym_this] = ACTIONS(4146), }, - [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), + [STATE(467)] = { + [sym_identifier] = ACTIONS(4150), + [aux_sym_preproc_include_token1] = ACTIONS(4150), + [aux_sym_preproc_def_token1] = ACTIONS(4150), + [aux_sym_preproc_if_token1] = ACTIONS(4150), + [aux_sym_preproc_if_token2] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4150), + [aux_sym_preproc_else_token1] = ACTIONS(4150), + [aux_sym_preproc_elif_token1] = ACTIONS(4150), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4150), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4150), + [sym_preproc_directive] = ACTIONS(4150), + [anon_sym_LPAREN2] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_TILDE] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym___extension__] = ACTIONS(4150), + [anon_sym_typedef] = ACTIONS(4150), + [anon_sym_virtual] = ACTIONS(4150), + [anon_sym_extern] = ACTIONS(4150), + [anon_sym___attribute__] = ACTIONS(4150), + [anon_sym___attribute] = ACTIONS(4150), + [anon_sym_using] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), + [anon_sym___declspec] = ACTIONS(4150), + [anon_sym___based] = ACTIONS(4150), + [anon_sym___cdecl] = ACTIONS(4150), + [anon_sym___clrcall] = ACTIONS(4150), + [anon_sym___stdcall] = ACTIONS(4150), + [anon_sym___fastcall] = ACTIONS(4150), + [anon_sym___thiscall] = ACTIONS(4150), + [anon_sym___vectorcall] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_signed] = ACTIONS(4150), + [anon_sym_unsigned] = ACTIONS(4150), + [anon_sym_long] = ACTIONS(4150), + [anon_sym_short] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_static] = ACTIONS(4150), + [anon_sym_register] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym___inline] = ACTIONS(4150), + [anon_sym___inline__] = ACTIONS(4150), + [anon_sym___forceinline] = ACTIONS(4150), + [anon_sym_thread_local] = ACTIONS(4150), + [anon_sym___thread] = ACTIONS(4150), + [anon_sym_const] = ACTIONS(4150), + [anon_sym_constexpr] = ACTIONS(4150), + [anon_sym_volatile] = ACTIONS(4150), + [anon_sym_restrict] = ACTIONS(4150), + [anon_sym___restrict__] = ACTIONS(4150), + [anon_sym__Atomic] = ACTIONS(4150), + [anon_sym__Noreturn] = ACTIONS(4150), + [anon_sym_noreturn] = ACTIONS(4150), + [anon_sym__Nonnull] = ACTIONS(4150), + [anon_sym_mutable] = ACTIONS(4150), + [anon_sym_constinit] = ACTIONS(4150), + [anon_sym_consteval] = ACTIONS(4150), + [anon_sym_alignas] = ACTIONS(4150), + [anon_sym__Alignas] = ACTIONS(4150), + [sym_primitive_type] = ACTIONS(4150), + [anon_sym_enum] = ACTIONS(4150), + [anon_sym_class] = ACTIONS(4150), + [anon_sym_struct] = ACTIONS(4150), + [anon_sym_union] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_switch] = ACTIONS(4150), + [anon_sym_case] = ACTIONS(4150), + [anon_sym_default] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_do] = ACTIONS(4150), + [anon_sym_for] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_goto] = ACTIONS(4150), + [anon_sym___try] = ACTIONS(4150), + [anon_sym___leave] = ACTIONS(4150), + [anon_sym_not] = ACTIONS(4150), + [anon_sym_compl] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_sizeof] = ACTIONS(4150), + [anon_sym___alignof__] = ACTIONS(4150), + [anon_sym___alignof] = ACTIONS(4150), + [anon_sym__alignof] = ACTIONS(4150), + [anon_sym_alignof] = ACTIONS(4150), + [anon_sym__Alignof] = ACTIONS(4150), + [anon_sym_offsetof] = ACTIONS(4150), + [anon_sym__Generic] = ACTIONS(4150), + [anon_sym_typename] = ACTIONS(4150), + [anon_sym_asm] = ACTIONS(4150), + [anon_sym___asm__] = ACTIONS(4150), + [anon_sym___asm] = ACTIONS(4150), + [sym_number_literal] = ACTIONS(4152), + [anon_sym_L_SQUOTE] = ACTIONS(4152), + [anon_sym_u_SQUOTE] = ACTIONS(4152), + [anon_sym_U_SQUOTE] = ACTIONS(4152), + [anon_sym_u8_SQUOTE] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4152), + [anon_sym_L_DQUOTE] = ACTIONS(4152), + [anon_sym_u_DQUOTE] = ACTIONS(4152), + [anon_sym_U_DQUOTE] = ACTIONS(4152), + [anon_sym_u8_DQUOTE] = ACTIONS(4152), + [anon_sym_DQUOTE] = ACTIONS(4152), + [sym_true] = ACTIONS(4150), + [sym_false] = ACTIONS(4150), + [anon_sym_NULL] = ACTIONS(4150), + [anon_sym_nullptr] = ACTIONS(4150), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4150), + [anon_sym_decltype] = ACTIONS(4150), + [anon_sym_explicit] = ACTIONS(4150), + [anon_sym_export] = ACTIONS(4150), + [anon_sym_module] = ACTIONS(4150), + [anon_sym_import] = ACTIONS(4150), + [anon_sym_template] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_delete] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_namespace] = ACTIONS(4150), + [anon_sym_static_assert] = ACTIONS(4150), + [anon_sym_concept] = ACTIONS(4150), + [anon_sym_co_return] = ACTIONS(4150), + [anon_sym_co_yield] = ACTIONS(4150), + [anon_sym_R_DQUOTE] = ACTIONS(4152), + [anon_sym_LR_DQUOTE] = ACTIONS(4152), + [anon_sym_uR_DQUOTE] = ACTIONS(4152), + [anon_sym_UR_DQUOTE] = ACTIONS(4152), + [anon_sym_u8R_DQUOTE] = ACTIONS(4152), + [anon_sym_co_await] = ACTIONS(4150), + [anon_sym_new] = ACTIONS(4150), + [anon_sym_requires] = ACTIONS(4150), + [anon_sym_CARET_CARET] = ACTIONS(4152), + [anon_sym_LBRACK_COLON] = ACTIONS(4152), + [sym_this] = ACTIONS(4150), }, - [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), + [STATE(468)] = { + [sym_identifier] = ACTIONS(4154), + [aux_sym_preproc_include_token1] = ACTIONS(4154), + [aux_sym_preproc_def_token1] = ACTIONS(4154), + [aux_sym_preproc_if_token1] = ACTIONS(4154), + [aux_sym_preproc_if_token2] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4154), + [aux_sym_preproc_else_token1] = ACTIONS(4154), + [aux_sym_preproc_elif_token1] = ACTIONS(4154), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4154), + [sym_preproc_directive] = ACTIONS(4154), + [anon_sym_LPAREN2] = ACTIONS(4156), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_TILDE] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_SEMI] = ACTIONS(4156), + [anon_sym___extension__] = ACTIONS(4154), + [anon_sym_typedef] = ACTIONS(4154), + [anon_sym_virtual] = ACTIONS(4154), + [anon_sym_extern] = ACTIONS(4154), + [anon_sym___attribute__] = ACTIONS(4154), + [anon_sym___attribute] = ACTIONS(4154), + [anon_sym_using] = ACTIONS(4154), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4156), + [anon_sym___declspec] = ACTIONS(4154), + [anon_sym___based] = ACTIONS(4154), + [anon_sym___cdecl] = ACTIONS(4154), + [anon_sym___clrcall] = ACTIONS(4154), + [anon_sym___stdcall] = ACTIONS(4154), + [anon_sym___fastcall] = ACTIONS(4154), + [anon_sym___thiscall] = ACTIONS(4154), + [anon_sym___vectorcall] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(4156), + [anon_sym_signed] = ACTIONS(4154), + [anon_sym_unsigned] = ACTIONS(4154), + [anon_sym_long] = ACTIONS(4154), + [anon_sym_short] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_static] = ACTIONS(4154), + [anon_sym_register] = ACTIONS(4154), + [anon_sym_inline] = ACTIONS(4154), + [anon_sym___inline] = ACTIONS(4154), + [anon_sym___inline__] = ACTIONS(4154), + [anon_sym___forceinline] = ACTIONS(4154), + [anon_sym_thread_local] = ACTIONS(4154), + [anon_sym___thread] = ACTIONS(4154), + [anon_sym_const] = ACTIONS(4154), + [anon_sym_constexpr] = ACTIONS(4154), + [anon_sym_volatile] = ACTIONS(4154), + [anon_sym_restrict] = ACTIONS(4154), + [anon_sym___restrict__] = ACTIONS(4154), + [anon_sym__Atomic] = ACTIONS(4154), + [anon_sym__Noreturn] = ACTIONS(4154), + [anon_sym_noreturn] = ACTIONS(4154), + [anon_sym__Nonnull] = ACTIONS(4154), + [anon_sym_mutable] = ACTIONS(4154), + [anon_sym_constinit] = ACTIONS(4154), + [anon_sym_consteval] = ACTIONS(4154), + [anon_sym_alignas] = ACTIONS(4154), + [anon_sym__Alignas] = ACTIONS(4154), + [sym_primitive_type] = ACTIONS(4154), + [anon_sym_enum] = ACTIONS(4154), + [anon_sym_class] = ACTIONS(4154), + [anon_sym_struct] = ACTIONS(4154), + [anon_sym_union] = ACTIONS(4154), + [anon_sym_if] = ACTIONS(4154), + [anon_sym_switch] = ACTIONS(4154), + [anon_sym_case] = ACTIONS(4154), + [anon_sym_default] = ACTIONS(4154), + [anon_sym_while] = ACTIONS(4154), + [anon_sym_do] = ACTIONS(4154), + [anon_sym_for] = ACTIONS(4154), + [anon_sym_return] = ACTIONS(4154), + [anon_sym_break] = ACTIONS(4154), + [anon_sym_continue] = ACTIONS(4154), + [anon_sym_goto] = ACTIONS(4154), + [anon_sym___try] = ACTIONS(4154), + [anon_sym___leave] = ACTIONS(4154), + [anon_sym_not] = ACTIONS(4154), + [anon_sym_compl] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4156), + [anon_sym_PLUS_PLUS] = ACTIONS(4156), + [anon_sym_sizeof] = ACTIONS(4154), + [anon_sym___alignof__] = ACTIONS(4154), + [anon_sym___alignof] = ACTIONS(4154), + [anon_sym__alignof] = ACTIONS(4154), + [anon_sym_alignof] = ACTIONS(4154), + [anon_sym__Alignof] = ACTIONS(4154), + [anon_sym_offsetof] = ACTIONS(4154), + [anon_sym__Generic] = ACTIONS(4154), + [anon_sym_typename] = ACTIONS(4154), + [anon_sym_asm] = ACTIONS(4154), + [anon_sym___asm__] = ACTIONS(4154), + [anon_sym___asm] = ACTIONS(4154), + [sym_number_literal] = ACTIONS(4156), + [anon_sym_L_SQUOTE] = ACTIONS(4156), + [anon_sym_u_SQUOTE] = ACTIONS(4156), + [anon_sym_U_SQUOTE] = ACTIONS(4156), + [anon_sym_u8_SQUOTE] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4156), + [anon_sym_L_DQUOTE] = ACTIONS(4156), + [anon_sym_u_DQUOTE] = ACTIONS(4156), + [anon_sym_U_DQUOTE] = ACTIONS(4156), + [anon_sym_u8_DQUOTE] = ACTIONS(4156), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym_true] = ACTIONS(4154), + [sym_false] = ACTIONS(4154), + [anon_sym_NULL] = ACTIONS(4154), + [anon_sym_nullptr] = ACTIONS(4154), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4154), + [anon_sym_decltype] = ACTIONS(4154), + [anon_sym_explicit] = ACTIONS(4154), + [anon_sym_export] = ACTIONS(4154), + [anon_sym_module] = ACTIONS(4154), + [anon_sym_import] = ACTIONS(4154), + [anon_sym_template] = ACTIONS(4154), + [anon_sym_operator] = ACTIONS(4154), + [anon_sym_try] = ACTIONS(4154), + [anon_sym_delete] = ACTIONS(4154), + [anon_sym_throw] = ACTIONS(4154), + [anon_sym_namespace] = ACTIONS(4154), + [anon_sym_static_assert] = ACTIONS(4154), + [anon_sym_concept] = ACTIONS(4154), + [anon_sym_co_return] = ACTIONS(4154), + [anon_sym_co_yield] = ACTIONS(4154), + [anon_sym_R_DQUOTE] = ACTIONS(4156), + [anon_sym_LR_DQUOTE] = ACTIONS(4156), + [anon_sym_uR_DQUOTE] = ACTIONS(4156), + [anon_sym_UR_DQUOTE] = ACTIONS(4156), + [anon_sym_u8R_DQUOTE] = ACTIONS(4156), + [anon_sym_co_await] = ACTIONS(4154), + [anon_sym_new] = ACTIONS(4154), + [anon_sym_requires] = ACTIONS(4154), + [anon_sym_CARET_CARET] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4156), + [sym_this] = ACTIONS(4154), }, - [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), + [STATE(469)] = { + [sym_identifier] = ACTIONS(4158), + [aux_sym_preproc_include_token1] = ACTIONS(4158), + [aux_sym_preproc_def_token1] = ACTIONS(4158), + [aux_sym_preproc_if_token1] = ACTIONS(4158), + [aux_sym_preproc_if_token2] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4158), + [aux_sym_preproc_else_token1] = ACTIONS(4158), + [aux_sym_preproc_elif_token1] = ACTIONS(4158), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4158), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4158), + [sym_preproc_directive] = ACTIONS(4158), + [anon_sym_LPAREN2] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_TILDE] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_AMP_AMP] = ACTIONS(4160), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym___extension__] = ACTIONS(4158), + [anon_sym_typedef] = ACTIONS(4158), + [anon_sym_virtual] = ACTIONS(4158), + [anon_sym_extern] = ACTIONS(4158), + [anon_sym___attribute__] = ACTIONS(4158), + [anon_sym___attribute] = ACTIONS(4158), + [anon_sym_using] = ACTIONS(4158), + [anon_sym_COLON_COLON] = ACTIONS(4160), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4160), + [anon_sym___declspec] = ACTIONS(4158), + [anon_sym___based] = ACTIONS(4158), + [anon_sym___cdecl] = ACTIONS(4158), + [anon_sym___clrcall] = ACTIONS(4158), + [anon_sym___stdcall] = ACTIONS(4158), + [anon_sym___fastcall] = ACTIONS(4158), + [anon_sym___thiscall] = ACTIONS(4158), + [anon_sym___vectorcall] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4160), + [anon_sym_signed] = ACTIONS(4158), + [anon_sym_unsigned] = ACTIONS(4158), + [anon_sym_long] = ACTIONS(4158), + [anon_sym_short] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_static] = ACTIONS(4158), + [anon_sym_register] = ACTIONS(4158), + [anon_sym_inline] = ACTIONS(4158), + [anon_sym___inline] = ACTIONS(4158), + [anon_sym___inline__] = ACTIONS(4158), + [anon_sym___forceinline] = ACTIONS(4158), + [anon_sym_thread_local] = ACTIONS(4158), + [anon_sym___thread] = ACTIONS(4158), + [anon_sym_const] = ACTIONS(4158), + [anon_sym_constexpr] = ACTIONS(4158), + [anon_sym_volatile] = ACTIONS(4158), + [anon_sym_restrict] = ACTIONS(4158), + [anon_sym___restrict__] = ACTIONS(4158), + [anon_sym__Atomic] = ACTIONS(4158), + [anon_sym__Noreturn] = ACTIONS(4158), + [anon_sym_noreturn] = ACTIONS(4158), + [anon_sym__Nonnull] = ACTIONS(4158), + [anon_sym_mutable] = ACTIONS(4158), + [anon_sym_constinit] = ACTIONS(4158), + [anon_sym_consteval] = ACTIONS(4158), + [anon_sym_alignas] = ACTIONS(4158), + [anon_sym__Alignas] = ACTIONS(4158), + [sym_primitive_type] = ACTIONS(4158), + [anon_sym_enum] = ACTIONS(4158), + [anon_sym_class] = ACTIONS(4158), + [anon_sym_struct] = ACTIONS(4158), + [anon_sym_union] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_switch] = ACTIONS(4158), + [anon_sym_case] = ACTIONS(4158), + [anon_sym_default] = ACTIONS(4158), + [anon_sym_while] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(4158), + [anon_sym_for] = ACTIONS(4158), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_break] = ACTIONS(4158), + [anon_sym_continue] = ACTIONS(4158), + [anon_sym_goto] = ACTIONS(4158), + [anon_sym___try] = ACTIONS(4158), + [anon_sym___leave] = ACTIONS(4158), + [anon_sym_not] = ACTIONS(4158), + [anon_sym_compl] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4160), + [anon_sym_PLUS_PLUS] = ACTIONS(4160), + [anon_sym_sizeof] = ACTIONS(4158), + [anon_sym___alignof__] = ACTIONS(4158), + [anon_sym___alignof] = ACTIONS(4158), + [anon_sym__alignof] = ACTIONS(4158), + [anon_sym_alignof] = ACTIONS(4158), + [anon_sym__Alignof] = ACTIONS(4158), + [anon_sym_offsetof] = ACTIONS(4158), + [anon_sym__Generic] = ACTIONS(4158), + [anon_sym_typename] = ACTIONS(4158), + [anon_sym_asm] = ACTIONS(4158), + [anon_sym___asm__] = ACTIONS(4158), + [anon_sym___asm] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4160), + [anon_sym_L_SQUOTE] = ACTIONS(4160), + [anon_sym_u_SQUOTE] = ACTIONS(4160), + [anon_sym_U_SQUOTE] = ACTIONS(4160), + [anon_sym_u8_SQUOTE] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4160), + [anon_sym_L_DQUOTE] = ACTIONS(4160), + [anon_sym_u_DQUOTE] = ACTIONS(4160), + [anon_sym_U_DQUOTE] = ACTIONS(4160), + [anon_sym_u8_DQUOTE] = ACTIONS(4160), + [anon_sym_DQUOTE] = ACTIONS(4160), + [sym_true] = ACTIONS(4158), + [sym_false] = ACTIONS(4158), + [anon_sym_NULL] = ACTIONS(4158), + [anon_sym_nullptr] = ACTIONS(4158), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4158), + [anon_sym_decltype] = ACTIONS(4158), + [anon_sym_explicit] = ACTIONS(4158), + [anon_sym_export] = ACTIONS(4158), + [anon_sym_module] = ACTIONS(4158), + [anon_sym_import] = ACTIONS(4158), + [anon_sym_template] = ACTIONS(4158), + [anon_sym_operator] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_delete] = ACTIONS(4158), + [anon_sym_throw] = ACTIONS(4158), + [anon_sym_namespace] = ACTIONS(4158), + [anon_sym_static_assert] = ACTIONS(4158), + [anon_sym_concept] = ACTIONS(4158), + [anon_sym_co_return] = ACTIONS(4158), + [anon_sym_co_yield] = ACTIONS(4158), + [anon_sym_R_DQUOTE] = ACTIONS(4160), + [anon_sym_LR_DQUOTE] = ACTIONS(4160), + [anon_sym_uR_DQUOTE] = ACTIONS(4160), + [anon_sym_UR_DQUOTE] = ACTIONS(4160), + [anon_sym_u8R_DQUOTE] = ACTIONS(4160), + [anon_sym_co_await] = ACTIONS(4158), + [anon_sym_new] = ACTIONS(4158), + [anon_sym_requires] = ACTIONS(4158), + [anon_sym_CARET_CARET] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4160), + [sym_this] = ACTIONS(4158), }, - [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), + [STATE(470)] = { + [sym_identifier] = ACTIONS(4162), + [aux_sym_preproc_include_token1] = ACTIONS(4162), + [aux_sym_preproc_def_token1] = ACTIONS(4162), + [aux_sym_preproc_if_token1] = ACTIONS(4162), + [aux_sym_preproc_if_token2] = ACTIONS(4162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4162), + [aux_sym_preproc_else_token1] = ACTIONS(4162), + [aux_sym_preproc_elif_token1] = ACTIONS(4162), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4162), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4162), + [sym_preproc_directive] = ACTIONS(4162), + [anon_sym_LPAREN2] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_TILDE] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym___extension__] = ACTIONS(4162), + [anon_sym_typedef] = ACTIONS(4162), + [anon_sym_virtual] = ACTIONS(4162), + [anon_sym_extern] = ACTIONS(4162), + [anon_sym___attribute__] = ACTIONS(4162), + [anon_sym___attribute] = ACTIONS(4162), + [anon_sym_using] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4164), + [anon_sym___declspec] = ACTIONS(4162), + [anon_sym___based] = ACTIONS(4162), + [anon_sym___cdecl] = ACTIONS(4162), + [anon_sym___clrcall] = ACTIONS(4162), + [anon_sym___stdcall] = ACTIONS(4162), + [anon_sym___fastcall] = ACTIONS(4162), + [anon_sym___thiscall] = ACTIONS(4162), + [anon_sym___vectorcall] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4164), + [anon_sym_signed] = ACTIONS(4162), + [anon_sym_unsigned] = ACTIONS(4162), + [anon_sym_long] = ACTIONS(4162), + [anon_sym_short] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_static] = ACTIONS(4162), + [anon_sym_register] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym___inline] = ACTIONS(4162), + [anon_sym___inline__] = ACTIONS(4162), + [anon_sym___forceinline] = ACTIONS(4162), + [anon_sym_thread_local] = ACTIONS(4162), + [anon_sym___thread] = ACTIONS(4162), + [anon_sym_const] = ACTIONS(4162), + [anon_sym_constexpr] = ACTIONS(4162), + [anon_sym_volatile] = ACTIONS(4162), + [anon_sym_restrict] = ACTIONS(4162), + [anon_sym___restrict__] = ACTIONS(4162), + [anon_sym__Atomic] = ACTIONS(4162), + [anon_sym__Noreturn] = ACTIONS(4162), + [anon_sym_noreturn] = ACTIONS(4162), + [anon_sym__Nonnull] = ACTIONS(4162), + [anon_sym_mutable] = ACTIONS(4162), + [anon_sym_constinit] = ACTIONS(4162), + [anon_sym_consteval] = ACTIONS(4162), + [anon_sym_alignas] = ACTIONS(4162), + [anon_sym__Alignas] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(4162), + [anon_sym_enum] = ACTIONS(4162), + [anon_sym_class] = ACTIONS(4162), + [anon_sym_struct] = ACTIONS(4162), + [anon_sym_union] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_switch] = ACTIONS(4162), + [anon_sym_case] = ACTIONS(4162), + [anon_sym_default] = ACTIONS(4162), + [anon_sym_while] = ACTIONS(4162), + [anon_sym_do] = ACTIONS(4162), + [anon_sym_for] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_goto] = ACTIONS(4162), + [anon_sym___try] = ACTIONS(4162), + [anon_sym___leave] = ACTIONS(4162), + [anon_sym_not] = ACTIONS(4162), + [anon_sym_compl] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_sizeof] = ACTIONS(4162), + [anon_sym___alignof__] = ACTIONS(4162), + [anon_sym___alignof] = ACTIONS(4162), + [anon_sym__alignof] = ACTIONS(4162), + [anon_sym_alignof] = ACTIONS(4162), + [anon_sym__Alignof] = ACTIONS(4162), + [anon_sym_offsetof] = ACTIONS(4162), + [anon_sym__Generic] = ACTIONS(4162), + [anon_sym_typename] = ACTIONS(4162), + [anon_sym_asm] = ACTIONS(4162), + [anon_sym___asm__] = ACTIONS(4162), + [anon_sym___asm] = ACTIONS(4162), + [sym_number_literal] = ACTIONS(4164), + [anon_sym_L_SQUOTE] = ACTIONS(4164), + [anon_sym_u_SQUOTE] = ACTIONS(4164), + [anon_sym_U_SQUOTE] = ACTIONS(4164), + [anon_sym_u8_SQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4164), + [anon_sym_L_DQUOTE] = ACTIONS(4164), + [anon_sym_u_DQUOTE] = ACTIONS(4164), + [anon_sym_U_DQUOTE] = ACTIONS(4164), + [anon_sym_u8_DQUOTE] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [sym_true] = ACTIONS(4162), + [sym_false] = ACTIONS(4162), + [anon_sym_NULL] = ACTIONS(4162), + [anon_sym_nullptr] = ACTIONS(4162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4162), + [anon_sym_decltype] = ACTIONS(4162), + [anon_sym_explicit] = ACTIONS(4162), + [anon_sym_export] = ACTIONS(4162), + [anon_sym_module] = ACTIONS(4162), + [anon_sym_import] = ACTIONS(4162), + [anon_sym_template] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_delete] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_namespace] = ACTIONS(4162), + [anon_sym_static_assert] = ACTIONS(4162), + [anon_sym_concept] = ACTIONS(4162), + [anon_sym_co_return] = ACTIONS(4162), + [anon_sym_co_yield] = ACTIONS(4162), + [anon_sym_R_DQUOTE] = ACTIONS(4164), + [anon_sym_LR_DQUOTE] = ACTIONS(4164), + [anon_sym_uR_DQUOTE] = ACTIONS(4164), + [anon_sym_UR_DQUOTE] = ACTIONS(4164), + [anon_sym_u8R_DQUOTE] = ACTIONS(4164), + [anon_sym_co_await] = ACTIONS(4162), + [anon_sym_new] = ACTIONS(4162), + [anon_sym_requires] = ACTIONS(4162), + [anon_sym_CARET_CARET] = ACTIONS(4164), + [anon_sym_LBRACK_COLON] = ACTIONS(4164), + [sym_this] = ACTIONS(4162), }, - [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), + [STATE(471)] = { + [sym_identifier] = ACTIONS(4166), + [aux_sym_preproc_include_token1] = ACTIONS(4166), + [aux_sym_preproc_def_token1] = ACTIONS(4166), + [aux_sym_preproc_if_token1] = ACTIONS(4166), + [aux_sym_preproc_if_token2] = ACTIONS(4166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4166), + [aux_sym_preproc_else_token1] = ACTIONS(4166), + [aux_sym_preproc_elif_token1] = ACTIONS(4166), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4166), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4166), + [sym_preproc_directive] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4168), + [anon_sym_TILDE] = ACTIONS(4168), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym___extension__] = ACTIONS(4166), + [anon_sym_typedef] = ACTIONS(4166), + [anon_sym_virtual] = ACTIONS(4166), + [anon_sym_extern] = ACTIONS(4166), + [anon_sym___attribute__] = ACTIONS(4166), + [anon_sym___attribute] = ACTIONS(4166), + [anon_sym_using] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4168), + [anon_sym___declspec] = ACTIONS(4166), + [anon_sym___based] = ACTIONS(4166), + [anon_sym___cdecl] = ACTIONS(4166), + [anon_sym___clrcall] = ACTIONS(4166), + [anon_sym___stdcall] = ACTIONS(4166), + [anon_sym___fastcall] = ACTIONS(4166), + [anon_sym___thiscall] = ACTIONS(4166), + [anon_sym___vectorcall] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_signed] = ACTIONS(4166), + [anon_sym_unsigned] = ACTIONS(4166), + [anon_sym_long] = ACTIONS(4166), + [anon_sym_short] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_static] = ACTIONS(4166), + [anon_sym_register] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym___inline] = ACTIONS(4166), + [anon_sym___inline__] = ACTIONS(4166), + [anon_sym___forceinline] = ACTIONS(4166), + [anon_sym_thread_local] = ACTIONS(4166), + [anon_sym___thread] = ACTIONS(4166), + [anon_sym_const] = ACTIONS(4166), + [anon_sym_constexpr] = ACTIONS(4166), + [anon_sym_volatile] = ACTIONS(4166), + [anon_sym_restrict] = ACTIONS(4166), + [anon_sym___restrict__] = ACTIONS(4166), + [anon_sym__Atomic] = ACTIONS(4166), + [anon_sym__Noreturn] = ACTIONS(4166), + [anon_sym_noreturn] = ACTIONS(4166), + [anon_sym__Nonnull] = ACTIONS(4166), + [anon_sym_mutable] = ACTIONS(4166), + [anon_sym_constinit] = ACTIONS(4166), + [anon_sym_consteval] = ACTIONS(4166), + [anon_sym_alignas] = ACTIONS(4166), + [anon_sym__Alignas] = ACTIONS(4166), + [sym_primitive_type] = ACTIONS(4166), + [anon_sym_enum] = ACTIONS(4166), + [anon_sym_class] = ACTIONS(4166), + [anon_sym_struct] = ACTIONS(4166), + [anon_sym_union] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_switch] = ACTIONS(4166), + [anon_sym_case] = ACTIONS(4166), + [anon_sym_default] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_do] = ACTIONS(4166), + [anon_sym_for] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_goto] = ACTIONS(4166), + [anon_sym___try] = ACTIONS(4166), + [anon_sym___leave] = ACTIONS(4166), + [anon_sym_not] = ACTIONS(4166), + [anon_sym_compl] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_sizeof] = ACTIONS(4166), + [anon_sym___alignof__] = ACTIONS(4166), + [anon_sym___alignof] = ACTIONS(4166), + [anon_sym__alignof] = ACTIONS(4166), + [anon_sym_alignof] = ACTIONS(4166), + [anon_sym__Alignof] = ACTIONS(4166), + [anon_sym_offsetof] = ACTIONS(4166), + [anon_sym__Generic] = ACTIONS(4166), + [anon_sym_typename] = ACTIONS(4166), + [anon_sym_asm] = ACTIONS(4166), + [anon_sym___asm__] = ACTIONS(4166), + [anon_sym___asm] = ACTIONS(4166), + [sym_number_literal] = ACTIONS(4168), + [anon_sym_L_SQUOTE] = ACTIONS(4168), + [anon_sym_u_SQUOTE] = ACTIONS(4168), + [anon_sym_U_SQUOTE] = ACTIONS(4168), + [anon_sym_u8_SQUOTE] = ACTIONS(4168), + [anon_sym_SQUOTE] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(4168), + [anon_sym_u_DQUOTE] = ACTIONS(4168), + [anon_sym_U_DQUOTE] = ACTIONS(4168), + [anon_sym_u8_DQUOTE] = ACTIONS(4168), + [anon_sym_DQUOTE] = ACTIONS(4168), + [sym_true] = ACTIONS(4166), + [sym_false] = ACTIONS(4166), + [anon_sym_NULL] = ACTIONS(4166), + [anon_sym_nullptr] = ACTIONS(4166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4166), + [anon_sym_decltype] = ACTIONS(4166), + [anon_sym_explicit] = ACTIONS(4166), + [anon_sym_export] = ACTIONS(4166), + [anon_sym_module] = ACTIONS(4166), + [anon_sym_import] = ACTIONS(4166), + [anon_sym_template] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_delete] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_namespace] = ACTIONS(4166), + [anon_sym_static_assert] = ACTIONS(4166), + [anon_sym_concept] = ACTIONS(4166), + [anon_sym_co_return] = ACTIONS(4166), + [anon_sym_co_yield] = ACTIONS(4166), + [anon_sym_R_DQUOTE] = ACTIONS(4168), + [anon_sym_LR_DQUOTE] = ACTIONS(4168), + [anon_sym_uR_DQUOTE] = ACTIONS(4168), + [anon_sym_UR_DQUOTE] = ACTIONS(4168), + [anon_sym_u8R_DQUOTE] = ACTIONS(4168), + [anon_sym_co_await] = ACTIONS(4166), + [anon_sym_new] = ACTIONS(4166), + [anon_sym_requires] = ACTIONS(4166), + [anon_sym_CARET_CARET] = ACTIONS(4168), + [anon_sym_LBRACK_COLON] = ACTIONS(4168), + [sym_this] = ACTIONS(4166), }, - [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), + [STATE(472)] = { + [sym_catch_clause] = STATE(416), + [aux_sym_constructor_try_statement_repeat1] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(3165), + [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(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3165), + [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(3165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3165), + [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(3165), + [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(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [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(3165), + [anon_sym_L_SQUOTE] = ACTIONS(3165), + [anon_sym_u_SQUOTE] = ACTIONS(3165), + [anon_sym_U_SQUOTE] = ACTIONS(3165), + [anon_sym_u8_SQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_L_DQUOTE] = ACTIONS(3165), + [anon_sym_u_DQUOTE] = ACTIONS(3165), + [anon_sym_U_DQUOTE] = ACTIONS(3165), + [anon_sym_u8_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [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(4170), + [anon_sym_R_DQUOTE] = ACTIONS(3165), + [anon_sym_LR_DQUOTE] = ACTIONS(3165), + [anon_sym_uR_DQUOTE] = ACTIONS(3165), + [anon_sym_UR_DQUOTE] = ACTIONS(3165), + [anon_sym_u8R_DQUOTE] = ACTIONS(3165), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3165), + [anon_sym_LBRACK_COLON] = ACTIONS(3165), + [sym_this] = ACTIONS(3163), }, - [STATE(464)] = { + [STATE(473)] = { [sym_identifier] = ACTIONS(4172), [aux_sym_preproc_include_token1] = ACTIONS(4172), [aux_sym_preproc_def_token1] = ACTIONS(4172), @@ -126394,7 +130816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4174), [sym_this] = ACTIONS(4172), }, - [STATE(465)] = { + [STATE(474)] = { [sym_identifier] = ACTIONS(4176), [aux_sym_preproc_include_token1] = ACTIONS(4176), [aux_sym_preproc_def_token1] = ACTIONS(4176), @@ -126539,7 +130961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4178), [sym_this] = ACTIONS(4176), }, - [STATE(466)] = { + [STATE(475)] = { [sym_identifier] = ACTIONS(4180), [aux_sym_preproc_include_token1] = ACTIONS(4180), [aux_sym_preproc_def_token1] = ACTIONS(4180), @@ -126684,7 +131106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4182), [sym_this] = ACTIONS(4180), }, - [STATE(467)] = { + [STATE(476)] = { [sym_identifier] = ACTIONS(4184), [aux_sym_preproc_include_token1] = ACTIONS(4184), [aux_sym_preproc_def_token1] = ACTIONS(4184), @@ -126829,7 +131251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4186), [sym_this] = ACTIONS(4184), }, - [STATE(468)] = { + [STATE(477)] = { [sym_identifier] = ACTIONS(4188), [aux_sym_preproc_include_token1] = ACTIONS(4188), [aux_sym_preproc_def_token1] = ACTIONS(4188), @@ -126974,7 +131396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4190), [sym_this] = ACTIONS(4188), }, - [STATE(469)] = { + [STATE(478)] = { [sym_identifier] = ACTIONS(4192), [aux_sym_preproc_include_token1] = ACTIONS(4192), [aux_sym_preproc_def_token1] = ACTIONS(4192), @@ -127119,809 +131541,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4194), [sym_this] = ACTIONS(4192), }, - [STATE(470)] = { + [STATE(479)] = { + [sym_type_qualifier] = STATE(5738), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2469), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7737), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(6659), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11870), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8899), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(3995), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(4744), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [aux_sym__type_definition_type_repeat1] = STATE(5738), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), [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_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), [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___extension__] = ACTIONS(4206), + [anon_sym_COLON_COLON] = ACTIONS(4208), [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] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -127936,16 +131633,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(4210), + [anon_sym_enum] = ACTIONS(3736), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3740), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -127953,7 +131650,7 @@ static const uint16_t ts_parse_table[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(4216), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -127976,97 +131673,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(2280), [anon_sym_decltype] = ACTIONS(2282), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), [sym_this] = ACTIONS(237), }, - [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), + [STATE(480)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7834), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12426), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -128081,7 +131778,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -128098,7 +131795,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -128131,232 +131828,522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), [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(481)] = { + [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), }, - [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), + [STATE(482)] = { + [sym_identifier] = ACTIONS(4226), + [aux_sym_preproc_include_token1] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token2] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [aux_sym_preproc_else_token1] = ACTIONS(4226), + [aux_sym_preproc_elif_token1] = ACTIONS(4226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym___cdecl] = ACTIONS(4226), + [anon_sym___clrcall] = ACTIONS(4226), + [anon_sym___stdcall] = ACTIONS(4226), + [anon_sym___fastcall] = ACTIONS(4226), + [anon_sym___thiscall] = ACTIONS(4226), + [anon_sym___vectorcall] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_case] = ACTIONS(4226), + [anon_sym_default] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_do] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym___try] = ACTIONS(4226), + [anon_sym___leave] = ACTIONS(4226), + [anon_sym_not] = ACTIONS(4226), + [anon_sym_compl] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_sizeof] = ACTIONS(4226), + [anon_sym___alignof__] = ACTIONS(4226), + [anon_sym___alignof] = ACTIONS(4226), + [anon_sym__alignof] = ACTIONS(4226), + [anon_sym_alignof] = ACTIONS(4226), + [anon_sym__Alignof] = ACTIONS(4226), + [anon_sym_offsetof] = ACTIONS(4226), + [anon_sym__Generic] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym___asm__] = ACTIONS(4226), + [anon_sym___asm] = ACTIONS(4226), + [sym_number_literal] = ACTIONS(4228), + [anon_sym_L_SQUOTE] = ACTIONS(4228), + [anon_sym_u_SQUOTE] = ACTIONS(4228), + [anon_sym_U_SQUOTE] = ACTIONS(4228), + [anon_sym_u8_SQUOTE] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4228), + [anon_sym_L_DQUOTE] = ACTIONS(4228), + [anon_sym_u_DQUOTE] = ACTIONS(4228), + [anon_sym_U_DQUOTE] = ACTIONS(4228), + [anon_sym_u8_DQUOTE] = ACTIONS(4228), + [anon_sym_DQUOTE] = ACTIONS(4228), + [sym_true] = ACTIONS(4226), + [sym_false] = ACTIONS(4226), + [anon_sym_NULL] = ACTIONS(4226), + [anon_sym_nullptr] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_export] = ACTIONS(4226), + [anon_sym_module] = ACTIONS(4226), + [anon_sym_import] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_delete] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_namespace] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_concept] = ACTIONS(4226), + [anon_sym_co_return] = ACTIONS(4226), + [anon_sym_co_yield] = ACTIONS(4226), + [anon_sym_R_DQUOTE] = ACTIONS(4228), + [anon_sym_LR_DQUOTE] = ACTIONS(4228), + [anon_sym_uR_DQUOTE] = ACTIONS(4228), + [anon_sym_UR_DQUOTE] = ACTIONS(4228), + [anon_sym_u8R_DQUOTE] = ACTIONS(4228), + [anon_sym_co_await] = ACTIONS(4226), + [anon_sym_new] = ACTIONS(4226), + [anon_sym_requires] = ACTIONS(4226), + [anon_sym_CARET_CARET] = ACTIONS(4228), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), + [sym_this] = ACTIONS(4226), + }, + [STATE(483)] = { + [sym_identifier] = ACTIONS(4226), + [aux_sym_preproc_include_token1] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token2] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [aux_sym_preproc_else_token1] = ACTIONS(4226), + [aux_sym_preproc_elif_token1] = ACTIONS(4226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym___cdecl] = ACTIONS(4226), + [anon_sym___clrcall] = ACTIONS(4226), + [anon_sym___stdcall] = ACTIONS(4226), + [anon_sym___fastcall] = ACTIONS(4226), + [anon_sym___thiscall] = ACTIONS(4226), + [anon_sym___vectorcall] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_case] = ACTIONS(4226), + [anon_sym_default] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_do] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym___try] = ACTIONS(4226), + [anon_sym___leave] = ACTIONS(4226), + [anon_sym_not] = ACTIONS(4226), + [anon_sym_compl] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_sizeof] = ACTIONS(4226), + [anon_sym___alignof__] = ACTIONS(4226), + [anon_sym___alignof] = ACTIONS(4226), + [anon_sym__alignof] = ACTIONS(4226), + [anon_sym_alignof] = ACTIONS(4226), + [anon_sym__Alignof] = ACTIONS(4226), + [anon_sym_offsetof] = ACTIONS(4226), + [anon_sym__Generic] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym___asm__] = ACTIONS(4226), + [anon_sym___asm] = ACTIONS(4226), + [sym_number_literal] = ACTIONS(4228), + [anon_sym_L_SQUOTE] = ACTIONS(4228), + [anon_sym_u_SQUOTE] = ACTIONS(4228), + [anon_sym_U_SQUOTE] = ACTIONS(4228), + [anon_sym_u8_SQUOTE] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4228), + [anon_sym_L_DQUOTE] = ACTIONS(4228), + [anon_sym_u_DQUOTE] = ACTIONS(4228), + [anon_sym_U_DQUOTE] = ACTIONS(4228), + [anon_sym_u8_DQUOTE] = ACTIONS(4228), + [anon_sym_DQUOTE] = ACTIONS(4228), + [sym_true] = ACTIONS(4226), + [sym_false] = ACTIONS(4226), + [anon_sym_NULL] = ACTIONS(4226), + [anon_sym_nullptr] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_export] = ACTIONS(4226), + [anon_sym_module] = ACTIONS(4226), + [anon_sym_import] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_delete] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_namespace] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_concept] = ACTIONS(4226), + [anon_sym_co_return] = ACTIONS(4226), + [anon_sym_co_yield] = ACTIONS(4226), + [anon_sym_R_DQUOTE] = ACTIONS(4228), + [anon_sym_LR_DQUOTE] = ACTIONS(4228), + [anon_sym_uR_DQUOTE] = ACTIONS(4228), + [anon_sym_UR_DQUOTE] = ACTIONS(4228), + [anon_sym_u8R_DQUOTE] = ACTIONS(4228), + [anon_sym_co_await] = ACTIONS(4226), + [anon_sym_new] = ACTIONS(4226), + [anon_sym_requires] = ACTIONS(4226), + [anon_sym_CARET_CARET] = ACTIONS(4228), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), + [sym_this] = ACTIONS(4226), + }, + [STATE(484)] = { + [sym_type_qualifier] = STATE(5614), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2032), + [sym_sized_type_specifier] = STATE(2339), + [sym_enum_specifier] = STATE(2339), + [sym_struct_specifier] = STATE(2339), + [sym_union_specifier] = STATE(2339), + [sym_expression] = STATE(5971), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_type_descriptor] = STATE(4187), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_placeholder_type_specifier] = STATE(2339), + [sym_decltype_auto] = STATE(2328), + [sym_decltype] = STATE(2345), + [sym_class_specifier] = STATE(2339), + [sym__class_name] = STATE(11509), + [sym_dependent_type] = STATE(2339), + [sym_template_type] = STATE(2331), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8934), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(2346), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(2533), + [sym__splice_specialization_specifier] = STATE(2273), + [sym_splice_type_specifier] = STATE(2341), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [aux_sym__type_definition_type_repeat1] = STATE(5614), + [aux_sym_sized_type_specifier_repeat1] = STATE(2069), + [sym_identifier] = ACTIONS(3931), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4232), + [anon_sym_COLON_COLON] = ACTIONS(4234), + [anon_sym_signed] = ACTIONS(3832), + [anon_sym_unsigned] = ACTIONS(3832), + [anon_sym_long] = ACTIONS(3832), + [anon_sym_short] = ACTIONS(3832), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -128371,16 +132358,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(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), + [sym_primitive_type] = ACTIONS(3834), + [anon_sym_enum] = ACTIONS(3836), + [anon_sym_class] = ACTIONS(3838), + [anon_sym_struct] = ACTIONS(3840), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -128388,555 +132375,700 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2402), [anon_sym_offsetof] = ACTIONS(2404), [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(3817), + [anon_sym_typename] = ACTIONS(3846), [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(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), + [sym_auto] = ACTIONS(3848), + [anon_sym_decltype] = ACTIONS(3850), [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_delete] = ACTIONS(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(3852), [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), + [STATE(485)] = { + [sym_type_qualifier] = STATE(5665), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2833), + [sym_sized_type_specifier] = STATE(4771), + [sym_enum_specifier] = STATE(4771), + [sym_struct_specifier] = STATE(4771), + [sym_union_specifier] = STATE(4771), + [sym_expression] = STATE(7671), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_type_descriptor] = STATE(8316), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_placeholder_type_specifier] = STATE(4771), + [sym_decltype_auto] = STATE(4766), + [sym_decltype] = STATE(4774), + [sym_class_specifier] = STATE(4771), + [sym__class_name] = STATE(11540), + [sym_dependent_type] = STATE(4771), + [sym_template_type] = STATE(4753), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8921), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(4709), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(4857), + [sym__splice_specialization_specifier] = STATE(4182), + [sym_splice_type_specifier] = STATE(4748), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym__type_definition_type_repeat1] = STATE(5665), + [aux_sym_sized_type_specifier_repeat1] = STATE(3348), + [sym_identifier] = ACTIONS(4238), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4246), + [anon_sym_COLON_COLON] = ACTIONS(4248), + [anon_sym_signed] = ACTIONS(4250), + [anon_sym_unsigned] = ACTIONS(4250), + [anon_sym_long] = ACTIONS(4250), + [anon_sym_short] = ACTIONS(4250), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(4252), + [anon_sym_enum] = ACTIONS(4254), + [anon_sym_class] = ACTIONS(4256), [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_union] = ACTIONS(4260), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), [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), + [anon_sym_offsetof] = ACTIONS(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4272), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4286), + [anon_sym_decltype] = ACTIONS(4288), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4304), + [sym_this] = ACTIONS(4282), }, - [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(486)] = { + [sym_expression] = STATE(6555), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(4306), + [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(4309), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(4312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(4315), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [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(4318), + [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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(4321), + [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(4324), + [sym_this] = ACTIONS(2364), + }, + [STATE(487)] = { + [sym_identifier] = ACTIONS(4327), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [aux_sym_preproc_else_token1] = ACTIONS(4327), + [aux_sym_preproc_elif_token1] = ACTIONS(4327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym___cdecl] = ACTIONS(4327), + [anon_sym___clrcall] = ACTIONS(4327), + [anon_sym___stdcall] = ACTIONS(4327), + [anon_sym___fastcall] = ACTIONS(4327), + [anon_sym___thiscall] = ACTIONS(4327), + [anon_sym___vectorcall] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_switch] = ACTIONS(4327), + [anon_sym_case] = ACTIONS(4327), + [anon_sym_default] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_do] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_goto] = ACTIONS(4327), + [anon_sym___try] = ACTIONS(4327), + [anon_sym___leave] = ACTIONS(4327), + [anon_sym_not] = ACTIONS(4327), + [anon_sym_compl] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_sizeof] = ACTIONS(4327), + [anon_sym___alignof__] = ACTIONS(4327), + [anon_sym___alignof] = ACTIONS(4327), + [anon_sym__alignof] = ACTIONS(4327), + [anon_sym_alignof] = ACTIONS(4327), + [anon_sym__Alignof] = ACTIONS(4327), + [anon_sym_offsetof] = ACTIONS(4327), + [anon_sym__Generic] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [anon_sym_asm] = ACTIONS(4327), + [anon_sym___asm__] = ACTIONS(4327), + [anon_sym___asm] = ACTIONS(4327), + [sym_number_literal] = ACTIONS(4329), + [anon_sym_L_SQUOTE] = ACTIONS(4329), + [anon_sym_u_SQUOTE] = ACTIONS(4329), + [anon_sym_U_SQUOTE] = ACTIONS(4329), + [anon_sym_u8_SQUOTE] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_L_DQUOTE] = ACTIONS(4329), + [anon_sym_u_DQUOTE] = ACTIONS(4329), + [anon_sym_U_DQUOTE] = ACTIONS(4329), + [anon_sym_u8_DQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym_true] = ACTIONS(4327), + [sym_false] = ACTIONS(4327), + [anon_sym_NULL] = ACTIONS(4327), + [anon_sym_nullptr] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_export] = ACTIONS(4327), + [anon_sym_module] = ACTIONS(4327), + [anon_sym_import] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_delete] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_namespace] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_concept] = ACTIONS(4327), + [anon_sym_co_return] = ACTIONS(4327), + [anon_sym_co_yield] = ACTIONS(4327), + [anon_sym_R_DQUOTE] = ACTIONS(4329), + [anon_sym_LR_DQUOTE] = ACTIONS(4329), + [anon_sym_uR_DQUOTE] = ACTIONS(4329), + [anon_sym_UR_DQUOTE] = ACTIONS(4329), + [anon_sym_u8R_DQUOTE] = ACTIONS(4329), + [anon_sym_co_await] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4327), + [anon_sym_requires] = ACTIONS(4327), + [anon_sym_CARET_CARET] = ACTIONS(4329), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), + [sym_this] = ACTIONS(4327), + }, + [STATE(488)] = { + [sym_identifier] = ACTIONS(4327), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [aux_sym_preproc_else_token1] = ACTIONS(4327), + [aux_sym_preproc_elif_token1] = ACTIONS(4327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym___cdecl] = ACTIONS(4327), + [anon_sym___clrcall] = ACTIONS(4327), + [anon_sym___stdcall] = ACTIONS(4327), + [anon_sym___fastcall] = ACTIONS(4327), + [anon_sym___thiscall] = ACTIONS(4327), + [anon_sym___vectorcall] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_switch] = ACTIONS(4327), + [anon_sym_case] = ACTIONS(4327), + [anon_sym_default] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_do] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_goto] = ACTIONS(4327), + [anon_sym___try] = ACTIONS(4327), + [anon_sym___leave] = ACTIONS(4327), + [anon_sym_not] = ACTIONS(4327), + [anon_sym_compl] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_sizeof] = ACTIONS(4327), + [anon_sym___alignof__] = ACTIONS(4327), + [anon_sym___alignof] = ACTIONS(4327), + [anon_sym__alignof] = ACTIONS(4327), + [anon_sym_alignof] = ACTIONS(4327), + [anon_sym__Alignof] = ACTIONS(4327), + [anon_sym_offsetof] = ACTIONS(4327), + [anon_sym__Generic] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [anon_sym_asm] = ACTIONS(4327), + [anon_sym___asm__] = ACTIONS(4327), + [anon_sym___asm] = ACTIONS(4327), + [sym_number_literal] = ACTIONS(4329), + [anon_sym_L_SQUOTE] = ACTIONS(4329), + [anon_sym_u_SQUOTE] = ACTIONS(4329), + [anon_sym_U_SQUOTE] = ACTIONS(4329), + [anon_sym_u8_SQUOTE] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_L_DQUOTE] = ACTIONS(4329), + [anon_sym_u_DQUOTE] = ACTIONS(4329), + [anon_sym_U_DQUOTE] = ACTIONS(4329), + [anon_sym_u8_DQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym_true] = ACTIONS(4327), + [sym_false] = ACTIONS(4327), + [anon_sym_NULL] = ACTIONS(4327), + [anon_sym_nullptr] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_export] = ACTIONS(4327), + [anon_sym_module] = ACTIONS(4327), + [anon_sym_import] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_delete] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_namespace] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_concept] = ACTIONS(4327), + [anon_sym_co_return] = ACTIONS(4327), + [anon_sym_co_yield] = ACTIONS(4327), + [anon_sym_R_DQUOTE] = ACTIONS(4329), + [anon_sym_LR_DQUOTE] = ACTIONS(4329), + [anon_sym_uR_DQUOTE] = ACTIONS(4329), + [anon_sym_UR_DQUOTE] = ACTIONS(4329), + [anon_sym_u8R_DQUOTE] = ACTIONS(4329), + [anon_sym_co_await] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4327), + [anon_sym_requires] = ACTIONS(4327), + [anon_sym_CARET_CARET] = ACTIONS(4329), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), + [sym_this] = ACTIONS(4327), + }, + [STATE(489)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7945), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12272), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -128951,7 +133083,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -128968,7 +133100,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -129001,377 +133133,522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), [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(490)] = { + [sym_identifier] = ACTIONS(4331), + [aux_sym_preproc_include_token1] = ACTIONS(4331), + [aux_sym_preproc_def_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token2] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4331), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4331), + [sym_preproc_directive] = ACTIONS(4331), + [anon_sym_LPAREN2] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym___extension__] = ACTIONS(4331), + [anon_sym_typedef] = ACTIONS(4331), + [anon_sym_virtual] = ACTIONS(4331), + [anon_sym_extern] = ACTIONS(4331), + [anon_sym___attribute__] = ACTIONS(4331), + [anon_sym___attribute] = ACTIONS(4331), + [anon_sym_using] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4333), + [anon_sym___declspec] = ACTIONS(4331), + [anon_sym___based] = ACTIONS(4331), + [anon_sym___cdecl] = ACTIONS(4331), + [anon_sym___clrcall] = ACTIONS(4331), + [anon_sym___stdcall] = ACTIONS(4331), + [anon_sym___fastcall] = ACTIONS(4331), + [anon_sym___thiscall] = ACTIONS(4331), + [anon_sym___vectorcall] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_signed] = ACTIONS(4331), + [anon_sym_unsigned] = ACTIONS(4331), + [anon_sym_long] = ACTIONS(4331), + [anon_sym_short] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_static] = ACTIONS(4331), + [anon_sym_register] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym___inline] = ACTIONS(4331), + [anon_sym___inline__] = ACTIONS(4331), + [anon_sym___forceinline] = ACTIONS(4331), + [anon_sym_thread_local] = ACTIONS(4331), + [anon_sym___thread] = ACTIONS(4331), + [anon_sym_const] = ACTIONS(4331), + [anon_sym_constexpr] = ACTIONS(4331), + [anon_sym_volatile] = ACTIONS(4331), + [anon_sym_restrict] = ACTIONS(4331), + [anon_sym___restrict__] = ACTIONS(4331), + [anon_sym__Atomic] = ACTIONS(4331), + [anon_sym__Noreturn] = ACTIONS(4331), + [anon_sym_noreturn] = ACTIONS(4331), + [anon_sym__Nonnull] = ACTIONS(4331), + [anon_sym_mutable] = ACTIONS(4331), + [anon_sym_constinit] = ACTIONS(4331), + [anon_sym_consteval] = ACTIONS(4331), + [anon_sym_alignas] = ACTIONS(4331), + [anon_sym__Alignas] = ACTIONS(4331), + [sym_primitive_type] = ACTIONS(4331), + [anon_sym_enum] = ACTIONS(4331), + [anon_sym_class] = ACTIONS(4331), + [anon_sym_struct] = ACTIONS(4331), + [anon_sym_union] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_case] = ACTIONS(4331), + [anon_sym_default] = ACTIONS(4331), + [anon_sym_while] = ACTIONS(4331), + [anon_sym_do] = ACTIONS(4331), + [anon_sym_for] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_goto] = ACTIONS(4331), + [anon_sym___try] = ACTIONS(4331), + [anon_sym___leave] = ACTIONS(4331), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_compl] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_sizeof] = ACTIONS(4331), + [anon_sym___alignof__] = ACTIONS(4331), + [anon_sym___alignof] = ACTIONS(4331), + [anon_sym__alignof] = ACTIONS(4331), + [anon_sym_alignof] = ACTIONS(4331), + [anon_sym__Alignof] = ACTIONS(4331), + [anon_sym_offsetof] = ACTIONS(4331), + [anon_sym__Generic] = ACTIONS(4331), + [anon_sym_typename] = ACTIONS(4331), + [anon_sym_asm] = ACTIONS(4331), + [anon_sym___asm__] = ACTIONS(4331), + [anon_sym___asm] = ACTIONS(4331), + [sym_number_literal] = ACTIONS(4333), + [anon_sym_L_SQUOTE] = ACTIONS(4333), + [anon_sym_u_SQUOTE] = ACTIONS(4333), + [anon_sym_U_SQUOTE] = ACTIONS(4333), + [anon_sym_u8_SQUOTE] = ACTIONS(4333), + [anon_sym_SQUOTE] = ACTIONS(4333), + [anon_sym_L_DQUOTE] = ACTIONS(4333), + [anon_sym_u_DQUOTE] = ACTIONS(4333), + [anon_sym_U_DQUOTE] = ACTIONS(4333), + [anon_sym_u8_DQUOTE] = ACTIONS(4333), + [anon_sym_DQUOTE] = ACTIONS(4333), + [sym_true] = ACTIONS(4331), + [sym_false] = ACTIONS(4331), + [anon_sym_NULL] = ACTIONS(4331), + [anon_sym_nullptr] = ACTIONS(4331), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4331), + [anon_sym_decltype] = ACTIONS(4331), + [anon_sym_explicit] = ACTIONS(4331), + [anon_sym_export] = ACTIONS(4331), + [anon_sym_module] = ACTIONS(4331), + [anon_sym_import] = ACTIONS(4331), + [anon_sym_template] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_delete] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_namespace] = ACTIONS(4331), + [anon_sym_static_assert] = ACTIONS(4331), + [anon_sym_concept] = ACTIONS(4331), + [anon_sym_co_return] = ACTIONS(4331), + [anon_sym_co_yield] = ACTIONS(4331), + [anon_sym_R_DQUOTE] = ACTIONS(4333), + [anon_sym_LR_DQUOTE] = ACTIONS(4333), + [anon_sym_uR_DQUOTE] = ACTIONS(4333), + [anon_sym_UR_DQUOTE] = ACTIONS(4333), + [anon_sym_u8R_DQUOTE] = ACTIONS(4333), + [anon_sym_co_await] = ACTIONS(4331), + [anon_sym_new] = ACTIONS(4331), + [anon_sym_requires] = ACTIONS(4331), + [anon_sym_CARET_CARET] = ACTIONS(4333), + [anon_sym_LBRACK_COLON] = ACTIONS(4333), + [sym_this] = ACTIONS(4331), }, - [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(491)] = { + [sym_identifier] = ACTIONS(4335), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [aux_sym_preproc_else_token1] = ACTIONS(4335), + [aux_sym_preproc_elif_token1] = ACTIONS(4335), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4335), + [anon_sym_typedef] = ACTIONS(4335), + [anon_sym_virtual] = ACTIONS(4335), + [anon_sym_extern] = ACTIONS(4335), + [anon_sym___attribute__] = ACTIONS(4335), + [anon_sym___attribute] = ACTIONS(4335), + [anon_sym_using] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4337), + [anon_sym___declspec] = ACTIONS(4335), + [anon_sym___based] = ACTIONS(4335), + [anon_sym___cdecl] = ACTIONS(4335), + [anon_sym___clrcall] = ACTIONS(4335), + [anon_sym___stdcall] = ACTIONS(4335), + [anon_sym___fastcall] = ACTIONS(4335), + [anon_sym___thiscall] = ACTIONS(4335), + [anon_sym___vectorcall] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_signed] = ACTIONS(4335), + [anon_sym_unsigned] = ACTIONS(4335), + [anon_sym_long] = ACTIONS(4335), + [anon_sym_short] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4335), + [anon_sym_static] = ACTIONS(4335), + [anon_sym_register] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym___inline] = ACTIONS(4335), + [anon_sym___inline__] = ACTIONS(4335), + [anon_sym___forceinline] = ACTIONS(4335), + [anon_sym_thread_local] = ACTIONS(4335), + [anon_sym___thread] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(4335), + [anon_sym_constexpr] = ACTIONS(4335), + [anon_sym_volatile] = ACTIONS(4335), + [anon_sym_restrict] = ACTIONS(4335), + [anon_sym___restrict__] = ACTIONS(4335), + [anon_sym__Atomic] = ACTIONS(4335), + [anon_sym__Noreturn] = ACTIONS(4335), + [anon_sym_noreturn] = ACTIONS(4335), + [anon_sym__Nonnull] = ACTIONS(4335), + [anon_sym_mutable] = ACTIONS(4335), + [anon_sym_constinit] = ACTIONS(4335), + [anon_sym_consteval] = ACTIONS(4335), + [anon_sym_alignas] = ACTIONS(4335), + [anon_sym__Alignas] = ACTIONS(4335), + [sym_primitive_type] = ACTIONS(4335), + [anon_sym_enum] = ACTIONS(4335), + [anon_sym_class] = ACTIONS(4335), + [anon_sym_struct] = ACTIONS(4335), + [anon_sym_union] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_switch] = ACTIONS(4335), + [anon_sym_case] = ACTIONS(4335), + [anon_sym_default] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_do] = ACTIONS(4335), + [anon_sym_for] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_goto] = ACTIONS(4335), + [anon_sym___try] = ACTIONS(4335), + [anon_sym___leave] = ACTIONS(4335), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_sizeof] = ACTIONS(4335), + [anon_sym___alignof__] = ACTIONS(4335), + [anon_sym___alignof] = ACTIONS(4335), + [anon_sym__alignof] = ACTIONS(4335), + [anon_sym_alignof] = ACTIONS(4335), + [anon_sym__Alignof] = ACTIONS(4335), + [anon_sym_offsetof] = ACTIONS(4335), + [anon_sym__Generic] = ACTIONS(4335), + [anon_sym_typename] = ACTIONS(4335), + [anon_sym_asm] = ACTIONS(4335), + [anon_sym___asm__] = ACTIONS(4335), + [anon_sym___asm] = ACTIONS(4335), + [sym_number_literal] = ACTIONS(4337), + [anon_sym_L_SQUOTE] = ACTIONS(4337), + [anon_sym_u_SQUOTE] = ACTIONS(4337), + [anon_sym_U_SQUOTE] = ACTIONS(4337), + [anon_sym_u8_SQUOTE] = ACTIONS(4337), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_L_DQUOTE] = ACTIONS(4337), + [anon_sym_u_DQUOTE] = ACTIONS(4337), + [anon_sym_U_DQUOTE] = ACTIONS(4337), + [anon_sym_u8_DQUOTE] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym_true] = ACTIONS(4335), + [sym_false] = ACTIONS(4335), + [anon_sym_NULL] = ACTIONS(4335), + [anon_sym_nullptr] = ACTIONS(4335), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4335), + [anon_sym_decltype] = ACTIONS(4335), + [anon_sym_explicit] = ACTIONS(4335), + [anon_sym_export] = ACTIONS(4335), + [anon_sym_module] = ACTIONS(4335), + [anon_sym_import] = ACTIONS(4335), + [anon_sym_template] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_delete] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_namespace] = ACTIONS(4335), + [anon_sym_static_assert] = ACTIONS(4335), + [anon_sym_concept] = ACTIONS(4335), + [anon_sym_co_return] = ACTIONS(4335), + [anon_sym_co_yield] = ACTIONS(4335), + [anon_sym_R_DQUOTE] = ACTIONS(4337), + [anon_sym_LR_DQUOTE] = ACTIONS(4337), + [anon_sym_uR_DQUOTE] = ACTIONS(4337), + [anon_sym_UR_DQUOTE] = ACTIONS(4337), + [anon_sym_u8R_DQUOTE] = ACTIONS(4337), + [anon_sym_co_await] = ACTIONS(4335), + [anon_sym_new] = ACTIONS(4335), + [anon_sym_requires] = ACTIONS(4335), + [anon_sym_CARET_CARET] = ACTIONS(4337), + [anon_sym_LBRACK_COLON] = ACTIONS(4337), + [sym_this] = ACTIONS(4335), }, - [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), + [STATE(492)] = { + [sym_identifier] = ACTIONS(4339), + [aux_sym_preproc_include_token1] = ACTIONS(4339), + [aux_sym_preproc_def_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token2] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4339), + [aux_sym_preproc_else_token1] = ACTIONS(4339), + [aux_sym_preproc_elif_token1] = ACTIONS(4339), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4339), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4339), + [sym_preproc_directive] = ACTIONS(4339), + [anon_sym_LPAREN2] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4341), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym___extension__] = ACTIONS(4339), + [anon_sym_typedef] = ACTIONS(4339), + [anon_sym_virtual] = ACTIONS(4339), + [anon_sym_extern] = ACTIONS(4339), + [anon_sym___attribute__] = ACTIONS(4339), + [anon_sym___attribute] = ACTIONS(4339), + [anon_sym_using] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4341), + [anon_sym___declspec] = ACTIONS(4339), + [anon_sym___based] = ACTIONS(4339), + [anon_sym___cdecl] = ACTIONS(4339), + [anon_sym___clrcall] = ACTIONS(4339), + [anon_sym___stdcall] = ACTIONS(4339), + [anon_sym___fastcall] = ACTIONS(4339), + [anon_sym___thiscall] = ACTIONS(4339), + [anon_sym___vectorcall] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_signed] = ACTIONS(4339), + [anon_sym_unsigned] = ACTIONS(4339), + [anon_sym_long] = ACTIONS(4339), + [anon_sym_short] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_static] = ACTIONS(4339), + [anon_sym_register] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym___inline] = ACTIONS(4339), + [anon_sym___inline__] = ACTIONS(4339), + [anon_sym___forceinline] = ACTIONS(4339), + [anon_sym_thread_local] = ACTIONS(4339), + [anon_sym___thread] = ACTIONS(4339), + [anon_sym_const] = ACTIONS(4339), + [anon_sym_constexpr] = ACTIONS(4339), + [anon_sym_volatile] = ACTIONS(4339), + [anon_sym_restrict] = ACTIONS(4339), + [anon_sym___restrict__] = ACTIONS(4339), + [anon_sym__Atomic] = ACTIONS(4339), + [anon_sym__Noreturn] = ACTIONS(4339), + [anon_sym_noreturn] = ACTIONS(4339), + [anon_sym__Nonnull] = ACTIONS(4339), + [anon_sym_mutable] = ACTIONS(4339), + [anon_sym_constinit] = ACTIONS(4339), + [anon_sym_consteval] = ACTIONS(4339), + [anon_sym_alignas] = ACTIONS(4339), + [anon_sym__Alignas] = ACTIONS(4339), + [sym_primitive_type] = ACTIONS(4339), + [anon_sym_enum] = ACTIONS(4339), + [anon_sym_class] = ACTIONS(4339), + [anon_sym_struct] = ACTIONS(4339), + [anon_sym_union] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_switch] = ACTIONS(4339), + [anon_sym_case] = ACTIONS(4339), + [anon_sym_default] = ACTIONS(4339), + [anon_sym_while] = ACTIONS(4339), + [anon_sym_do] = ACTIONS(4339), + [anon_sym_for] = ACTIONS(4339), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_break] = ACTIONS(4339), + [anon_sym_continue] = ACTIONS(4339), + [anon_sym_goto] = ACTIONS(4339), + [anon_sym___try] = ACTIONS(4339), + [anon_sym___leave] = ACTIONS(4339), + [anon_sym_not] = ACTIONS(4339), + [anon_sym_compl] = ACTIONS(4339), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_sizeof] = ACTIONS(4339), + [anon_sym___alignof__] = ACTIONS(4339), + [anon_sym___alignof] = ACTIONS(4339), + [anon_sym__alignof] = ACTIONS(4339), + [anon_sym_alignof] = ACTIONS(4339), + [anon_sym__Alignof] = ACTIONS(4339), + [anon_sym_offsetof] = ACTIONS(4339), + [anon_sym__Generic] = ACTIONS(4339), + [anon_sym_typename] = ACTIONS(4339), + [anon_sym_asm] = ACTIONS(4339), + [anon_sym___asm__] = ACTIONS(4339), + [anon_sym___asm] = ACTIONS(4339), + [sym_number_literal] = ACTIONS(4341), + [anon_sym_L_SQUOTE] = ACTIONS(4341), + [anon_sym_u_SQUOTE] = ACTIONS(4341), + [anon_sym_U_SQUOTE] = ACTIONS(4341), + [anon_sym_u8_SQUOTE] = ACTIONS(4341), + [anon_sym_SQUOTE] = ACTIONS(4341), + [anon_sym_L_DQUOTE] = ACTIONS(4341), + [anon_sym_u_DQUOTE] = ACTIONS(4341), + [anon_sym_U_DQUOTE] = ACTIONS(4341), + [anon_sym_u8_DQUOTE] = ACTIONS(4341), + [anon_sym_DQUOTE] = ACTIONS(4341), + [sym_true] = ACTIONS(4339), + [sym_false] = ACTIONS(4339), + [anon_sym_NULL] = ACTIONS(4339), + [anon_sym_nullptr] = ACTIONS(4339), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4339), + [anon_sym_decltype] = ACTIONS(4339), + [anon_sym_explicit] = ACTIONS(4339), + [anon_sym_export] = ACTIONS(4339), + [anon_sym_module] = ACTIONS(4339), + [anon_sym_import] = ACTIONS(4339), + [anon_sym_template] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_delete] = ACTIONS(4339), + [anon_sym_throw] = ACTIONS(4339), + [anon_sym_namespace] = ACTIONS(4339), + [anon_sym_static_assert] = ACTIONS(4339), + [anon_sym_concept] = ACTIONS(4339), + [anon_sym_co_return] = ACTIONS(4339), + [anon_sym_co_yield] = ACTIONS(4339), + [anon_sym_R_DQUOTE] = ACTIONS(4341), + [anon_sym_LR_DQUOTE] = ACTIONS(4341), + [anon_sym_uR_DQUOTE] = ACTIONS(4341), + [anon_sym_UR_DQUOTE] = ACTIONS(4341), + [anon_sym_u8R_DQUOTE] = ACTIONS(4341), + [anon_sym_co_await] = ACTIONS(4339), + [anon_sym_new] = ACTIONS(4339), + [anon_sym_requires] = ACTIONS(4339), + [anon_sym_CARET_CARET] = ACTIONS(4341), + [anon_sym_LBRACK_COLON] = ACTIONS(4341), + [sym_this] = ACTIONS(4339), + }, + [STATE(493)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7997), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12301), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -129386,7 +133663,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -129403,7 +133680,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -129436,87 +133713,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(3764), [sym_this] = ACTIONS(237), }, - [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(494)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(8113), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12310), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -129531,7 +133808,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -129548,7 +133825,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -129581,87 +133858,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(3764), [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(495)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7809), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(11931), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -129676,7 +133953,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -129693,7 +133970,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -129726,87 +134003,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(3764), [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(496)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7831), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12399), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -129821,7 +134098,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -129838,7 +134115,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -129871,87 +134148,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(3764), [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(497)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7864), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12939), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -129966,7 +134243,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -129983,7 +134260,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130016,87 +134293,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(3764), [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(498)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7894), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12549), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130111,7 +134388,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -130128,7 +134405,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130161,87 +134438,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(3764), [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(499)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7914), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12016), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130256,7 +134533,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -130273,7 +134550,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130306,87 +134583,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(3764), [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(500)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7923), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12144), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130401,7 +134678,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -130418,7 +134695,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130451,87 +134728,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(3764), [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(501)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7927), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12493), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130546,7 +134823,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -130563,7 +134840,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130596,87 +134873,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(3764), [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(502)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7931), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12954), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130691,7 +134968,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -130708,7 +134985,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130741,87 +135018,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(3764), [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(503)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7934), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12205), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130836,7 +135113,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -130853,7 +135130,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130886,87 +135163,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(3764), [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(504)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7939), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12429), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130981,7 +135258,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -130998,7 +135275,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131031,87 +135308,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(3764), [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(505)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7944), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12167), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131126,7 +135403,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -131143,7 +135420,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(3786), + [anon_sym_typename] = ACTIONS(3822), + [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(3764), + [sym_this] = ACTIONS(237), + }, + [STATE(506)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7948), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(13009), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(3764), + [sym_this] = ACTIONS(237), + }, + [STATE(507)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7951), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(11913), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(3764), + [sym_this] = ACTIONS(237), + }, + [STATE(508)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7955), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12290), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131176,87 +135888,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(3764), [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(509)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7958), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12680), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131271,7 +135983,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -131288,7 +136000,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131321,87 +136033,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(3764), [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(510)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7960), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(11938), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131416,7 +136128,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -131433,7 +136145,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131466,87 +136178,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(3764), [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(511)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7964), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12013), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131561,7 +136273,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -131578,7 +136290,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131611,87 +136323,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(3764), [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(512)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7966), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12106), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131706,7 +136418,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -131723,7 +136435,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131756,87 +136468,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(3764), [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(513)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7968), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12168), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131851,7 +136563,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -131868,7 +136580,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131901,87 +136613,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(3764), [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(514)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7970), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12245), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131996,7 +136708,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -132013,7 +136725,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -132046,87 +136758,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(3764), [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(515)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7971), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12334), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -132141,7 +136853,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -132158,7 +136870,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -132191,87 +136903,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(3764), [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(516)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7972), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12440), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), [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_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -132286,7 +136998,7 @@ 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), + [sym_primitive_type] = ACTIONS(3734), [anon_sym_enum] = ACTIONS(2248), [anon_sym_class] = ACTIONS(2250), [anon_sym_struct] = ACTIONS(2252), @@ -132303,7 +137015,7 @@ static const uint16_t ts_parse_table[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(3822), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -132336,957 +137048,1102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), [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(517)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7974), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12486), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(3764), + [sym_this] = ACTIONS(237), }, - [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(518)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7975), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12541), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(3764), + [sym_this] = ACTIONS(237), }, - [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(519)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7977), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12597), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(3764), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(520)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7978), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12647), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(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_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(3764), + [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(521)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7979), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12697), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(3764), + [sym_this] = ACTIONS(237), }, - [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(522)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7980), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12814), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(3764), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(523)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7981), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12828), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(3764), + [sym_this] = ACTIONS(237), + }, + [STATE(524)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7982), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12838), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -133301,572 +138158,1007 @@ 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(3734), + [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(3822), + [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(3764), + [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), - [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), + [STATE(525)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(8142), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12846), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(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), + [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(3764), + [sym_this] = ACTIONS(237), }, - [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), - [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), + [STATE(526)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7984), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12855), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(3764), + [sym_this] = ACTIONS(237), }, - [STATE(515)] = { - [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_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_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_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_module] = 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(527)] = { + [sym_type_qualifier] = STATE(5691), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(6426), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7985), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(12859), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8909), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(4962), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym__type_definition_type_repeat1] = STATE(5691), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(3820), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3816), + [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(1860), + [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(3734), + [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(3822), + [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(3764), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(528)] = { + [sym_identifier] = ACTIONS(4343), + [aux_sym_preproc_include_token1] = ACTIONS(4343), + [aux_sym_preproc_def_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token2] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4343), + [aux_sym_preproc_else_token1] = ACTIONS(4343), + [aux_sym_preproc_elif_token1] = ACTIONS(4343), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4343), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4343), + [sym_preproc_directive] = ACTIONS(4343), + [anon_sym_LPAREN2] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4345), + [anon_sym_TILDE] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym___extension__] = ACTIONS(4343), + [anon_sym_typedef] = ACTIONS(4343), + [anon_sym_virtual] = ACTIONS(4343), + [anon_sym_extern] = ACTIONS(4343), + [anon_sym___attribute__] = ACTIONS(4343), + [anon_sym___attribute] = ACTIONS(4343), + [anon_sym_using] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4345), + [anon_sym___declspec] = ACTIONS(4343), + [anon_sym___based] = ACTIONS(4343), + [anon_sym___cdecl] = ACTIONS(4343), + [anon_sym___clrcall] = ACTIONS(4343), + [anon_sym___stdcall] = ACTIONS(4343), + [anon_sym___fastcall] = ACTIONS(4343), + [anon_sym___thiscall] = ACTIONS(4343), + [anon_sym___vectorcall] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_signed] = ACTIONS(4343), + [anon_sym_unsigned] = ACTIONS(4343), + [anon_sym_long] = ACTIONS(4343), + [anon_sym_short] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4343), + [anon_sym_static] = ACTIONS(4343), + [anon_sym_register] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym___inline] = ACTIONS(4343), + [anon_sym___inline__] = ACTIONS(4343), + [anon_sym___forceinline] = ACTIONS(4343), + [anon_sym_thread_local] = ACTIONS(4343), + [anon_sym___thread] = ACTIONS(4343), + [anon_sym_const] = ACTIONS(4343), + [anon_sym_constexpr] = ACTIONS(4343), + [anon_sym_volatile] = ACTIONS(4343), + [anon_sym_restrict] = ACTIONS(4343), + [anon_sym___restrict__] = ACTIONS(4343), + [anon_sym__Atomic] = ACTIONS(4343), + [anon_sym__Noreturn] = ACTIONS(4343), + [anon_sym_noreturn] = ACTIONS(4343), + [anon_sym__Nonnull] = ACTIONS(4343), + [anon_sym_mutable] = ACTIONS(4343), + [anon_sym_constinit] = ACTIONS(4343), + [anon_sym_consteval] = ACTIONS(4343), + [anon_sym_alignas] = ACTIONS(4343), + [anon_sym__Alignas] = ACTIONS(4343), + [sym_primitive_type] = ACTIONS(4343), + [anon_sym_enum] = ACTIONS(4343), + [anon_sym_class] = ACTIONS(4343), + [anon_sym_struct] = ACTIONS(4343), + [anon_sym_union] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_switch] = ACTIONS(4343), + [anon_sym_case] = ACTIONS(4343), + [anon_sym_default] = ACTIONS(4343), + [anon_sym_while] = ACTIONS(4343), + [anon_sym_do] = ACTIONS(4343), + [anon_sym_for] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_goto] = ACTIONS(4343), + [anon_sym___try] = ACTIONS(4343), + [anon_sym___leave] = ACTIONS(4343), + [anon_sym_not] = ACTIONS(4343), + [anon_sym_compl] = ACTIONS(4343), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4343), + [anon_sym___alignof__] = ACTIONS(4343), + [anon_sym___alignof] = ACTIONS(4343), + [anon_sym__alignof] = ACTIONS(4343), + [anon_sym_alignof] = ACTIONS(4343), + [anon_sym__Alignof] = ACTIONS(4343), + [anon_sym_offsetof] = ACTIONS(4343), + [anon_sym__Generic] = ACTIONS(4343), + [anon_sym_typename] = ACTIONS(4343), + [anon_sym_asm] = ACTIONS(4343), + [anon_sym___asm__] = ACTIONS(4343), + [anon_sym___asm] = ACTIONS(4343), + [sym_number_literal] = ACTIONS(4345), + [anon_sym_L_SQUOTE] = ACTIONS(4345), + [anon_sym_u_SQUOTE] = ACTIONS(4345), + [anon_sym_U_SQUOTE] = ACTIONS(4345), + [anon_sym_u8_SQUOTE] = ACTIONS(4345), + [anon_sym_SQUOTE] = ACTIONS(4345), + [anon_sym_L_DQUOTE] = ACTIONS(4345), + [anon_sym_u_DQUOTE] = ACTIONS(4345), + [anon_sym_U_DQUOTE] = ACTIONS(4345), + [anon_sym_u8_DQUOTE] = ACTIONS(4345), + [anon_sym_DQUOTE] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [anon_sym_NULL] = ACTIONS(4343), + [anon_sym_nullptr] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4343), + [anon_sym_decltype] = ACTIONS(4343), + [anon_sym_explicit] = ACTIONS(4343), + [anon_sym_export] = ACTIONS(4343), + [anon_sym_module] = ACTIONS(4343), + [anon_sym_import] = ACTIONS(4343), + [anon_sym_template] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_delete] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_namespace] = ACTIONS(4343), + [anon_sym_static_assert] = ACTIONS(4343), + [anon_sym_concept] = ACTIONS(4343), + [anon_sym_co_return] = ACTIONS(4343), + [anon_sym_co_yield] = ACTIONS(4343), + [anon_sym_R_DQUOTE] = ACTIONS(4345), + [anon_sym_LR_DQUOTE] = ACTIONS(4345), + [anon_sym_uR_DQUOTE] = ACTIONS(4345), + [anon_sym_UR_DQUOTE] = ACTIONS(4345), + [anon_sym_u8R_DQUOTE] = ACTIONS(4345), + [anon_sym_co_await] = ACTIONS(4343), + [anon_sym_new] = ACTIONS(4343), + [anon_sym_requires] = ACTIONS(4343), + [anon_sym_CARET_CARET] = ACTIONS(4345), + [anon_sym_LBRACK_COLON] = ACTIONS(4345), + [sym_this] = ACTIONS(4343), + }, + [STATE(529)] = { + [sym_identifier] = ACTIONS(4347), + [aux_sym_preproc_include_token1] = ACTIONS(4347), + [aux_sym_preproc_def_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token2] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), + [aux_sym_preproc_else_token1] = ACTIONS(4347), + [aux_sym_preproc_elif_token1] = ACTIONS(4347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4347), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4347), + [sym_preproc_directive] = ACTIONS(4347), + [anon_sym_LPAREN2] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_TILDE] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym___extension__] = ACTIONS(4347), + [anon_sym_typedef] = ACTIONS(4347), + [anon_sym_virtual] = ACTIONS(4347), + [anon_sym_extern] = ACTIONS(4347), + [anon_sym___attribute__] = ACTIONS(4347), + [anon_sym___attribute] = ACTIONS(4347), + [anon_sym_using] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4349), + [anon_sym___declspec] = ACTIONS(4347), + [anon_sym___based] = ACTIONS(4347), + [anon_sym___cdecl] = ACTIONS(4347), + [anon_sym___clrcall] = ACTIONS(4347), + [anon_sym___stdcall] = ACTIONS(4347), + [anon_sym___fastcall] = ACTIONS(4347), + [anon_sym___thiscall] = ACTIONS(4347), + [anon_sym___vectorcall] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_signed] = ACTIONS(4347), + [anon_sym_unsigned] = ACTIONS(4347), + [anon_sym_long] = ACTIONS(4347), + [anon_sym_short] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_static] = ACTIONS(4347), + [anon_sym_register] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym___inline] = ACTIONS(4347), + [anon_sym___inline__] = ACTIONS(4347), + [anon_sym___forceinline] = ACTIONS(4347), + [anon_sym_thread_local] = ACTIONS(4347), + [anon_sym___thread] = ACTIONS(4347), + [anon_sym_const] = ACTIONS(4347), + [anon_sym_constexpr] = ACTIONS(4347), + [anon_sym_volatile] = ACTIONS(4347), + [anon_sym_restrict] = ACTIONS(4347), + [anon_sym___restrict__] = ACTIONS(4347), + [anon_sym__Atomic] = ACTIONS(4347), + [anon_sym__Noreturn] = ACTIONS(4347), + [anon_sym_noreturn] = ACTIONS(4347), + [anon_sym__Nonnull] = ACTIONS(4347), + [anon_sym_mutable] = ACTIONS(4347), + [anon_sym_constinit] = ACTIONS(4347), + [anon_sym_consteval] = ACTIONS(4347), + [anon_sym_alignas] = ACTIONS(4347), + [anon_sym__Alignas] = ACTIONS(4347), + [sym_primitive_type] = ACTIONS(4347), + [anon_sym_enum] = ACTIONS(4347), + [anon_sym_class] = ACTIONS(4347), + [anon_sym_struct] = ACTIONS(4347), + [anon_sym_union] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_switch] = ACTIONS(4347), + [anon_sym_case] = ACTIONS(4347), + [anon_sym_default] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4347), + [anon_sym_do] = ACTIONS(4347), + [anon_sym_for] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_goto] = ACTIONS(4347), + [anon_sym___try] = ACTIONS(4347), + [anon_sym___leave] = ACTIONS(4347), + [anon_sym_not] = ACTIONS(4347), + [anon_sym_compl] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_sizeof] = ACTIONS(4347), + [anon_sym___alignof__] = ACTIONS(4347), + [anon_sym___alignof] = ACTIONS(4347), + [anon_sym__alignof] = ACTIONS(4347), + [anon_sym_alignof] = ACTIONS(4347), + [anon_sym__Alignof] = ACTIONS(4347), + [anon_sym_offsetof] = ACTIONS(4347), + [anon_sym__Generic] = ACTIONS(4347), + [anon_sym_typename] = ACTIONS(4347), + [anon_sym_asm] = ACTIONS(4347), + [anon_sym___asm__] = ACTIONS(4347), + [anon_sym___asm] = ACTIONS(4347), + [sym_number_literal] = ACTIONS(4349), + [anon_sym_L_SQUOTE] = ACTIONS(4349), + [anon_sym_u_SQUOTE] = ACTIONS(4349), + [anon_sym_U_SQUOTE] = ACTIONS(4349), + [anon_sym_u8_SQUOTE] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4349), + [anon_sym_L_DQUOTE] = ACTIONS(4349), + [anon_sym_u_DQUOTE] = ACTIONS(4349), + [anon_sym_U_DQUOTE] = ACTIONS(4349), + [anon_sym_u8_DQUOTE] = ACTIONS(4349), + [anon_sym_DQUOTE] = ACTIONS(4349), + [sym_true] = ACTIONS(4347), + [sym_false] = ACTIONS(4347), + [anon_sym_NULL] = ACTIONS(4347), + [anon_sym_nullptr] = ACTIONS(4347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4347), + [anon_sym_decltype] = ACTIONS(4347), + [anon_sym_explicit] = ACTIONS(4347), + [anon_sym_export] = ACTIONS(4347), + [anon_sym_module] = ACTIONS(4347), + [anon_sym_import] = ACTIONS(4347), + [anon_sym_template] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_delete] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_namespace] = ACTIONS(4347), + [anon_sym_static_assert] = ACTIONS(4347), + [anon_sym_concept] = ACTIONS(4347), + [anon_sym_co_return] = ACTIONS(4347), + [anon_sym_co_yield] = ACTIONS(4347), + [anon_sym_R_DQUOTE] = ACTIONS(4349), + [anon_sym_LR_DQUOTE] = ACTIONS(4349), + [anon_sym_uR_DQUOTE] = ACTIONS(4349), + [anon_sym_UR_DQUOTE] = ACTIONS(4349), + [anon_sym_u8R_DQUOTE] = ACTIONS(4349), + [anon_sym_co_await] = ACTIONS(4347), + [anon_sym_new] = ACTIONS(4347), + [anon_sym_requires] = ACTIONS(4347), + [anon_sym_CARET_CARET] = ACTIONS(4349), + [anon_sym_LBRACK_COLON] = ACTIONS(4349), + [sym_this] = ACTIONS(4347), + }, + [STATE(530)] = { + [sym_identifier] = ACTIONS(4351), + [aux_sym_preproc_include_token1] = ACTIONS(4351), + [aux_sym_preproc_def_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token2] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4351), + [aux_sym_preproc_else_token1] = ACTIONS(4351), + [aux_sym_preproc_elif_token1] = ACTIONS(4351), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4351), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4351), + [sym_preproc_directive] = ACTIONS(4351), + [anon_sym_LPAREN2] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_TILDE] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym___extension__] = ACTIONS(4351), + [anon_sym_typedef] = ACTIONS(4351), + [anon_sym_virtual] = ACTIONS(4351), + [anon_sym_extern] = ACTIONS(4351), + [anon_sym___attribute__] = ACTIONS(4351), + [anon_sym___attribute] = ACTIONS(4351), + [anon_sym_using] = ACTIONS(4351), + [anon_sym_COLON_COLON] = ACTIONS(4353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4353), + [anon_sym___declspec] = ACTIONS(4351), + [anon_sym___based] = ACTIONS(4351), + [anon_sym___cdecl] = ACTIONS(4351), + [anon_sym___clrcall] = ACTIONS(4351), + [anon_sym___stdcall] = ACTIONS(4351), + [anon_sym___fastcall] = ACTIONS(4351), + [anon_sym___thiscall] = ACTIONS(4351), + [anon_sym___vectorcall] = ACTIONS(4351), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_signed] = ACTIONS(4351), + [anon_sym_unsigned] = ACTIONS(4351), + [anon_sym_long] = ACTIONS(4351), + [anon_sym_short] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_static] = ACTIONS(4351), + [anon_sym_register] = ACTIONS(4351), + [anon_sym_inline] = ACTIONS(4351), + [anon_sym___inline] = ACTIONS(4351), + [anon_sym___inline__] = ACTIONS(4351), + [anon_sym___forceinline] = ACTIONS(4351), + [anon_sym_thread_local] = ACTIONS(4351), + [anon_sym___thread] = ACTIONS(4351), + [anon_sym_const] = ACTIONS(4351), + [anon_sym_constexpr] = ACTIONS(4351), + [anon_sym_volatile] = ACTIONS(4351), + [anon_sym_restrict] = ACTIONS(4351), + [anon_sym___restrict__] = ACTIONS(4351), + [anon_sym__Atomic] = ACTIONS(4351), + [anon_sym__Noreturn] = ACTIONS(4351), + [anon_sym_noreturn] = ACTIONS(4351), + [anon_sym__Nonnull] = ACTIONS(4351), + [anon_sym_mutable] = ACTIONS(4351), + [anon_sym_constinit] = ACTIONS(4351), + [anon_sym_consteval] = ACTIONS(4351), + [anon_sym_alignas] = ACTIONS(4351), + [anon_sym__Alignas] = ACTIONS(4351), + [sym_primitive_type] = ACTIONS(4351), + [anon_sym_enum] = ACTIONS(4351), + [anon_sym_class] = ACTIONS(4351), + [anon_sym_struct] = ACTIONS(4351), + [anon_sym_union] = ACTIONS(4351), + [anon_sym_if] = ACTIONS(4351), + [anon_sym_switch] = ACTIONS(4351), + [anon_sym_case] = ACTIONS(4351), + [anon_sym_default] = ACTIONS(4351), + [anon_sym_while] = ACTIONS(4351), + [anon_sym_do] = ACTIONS(4351), + [anon_sym_for] = ACTIONS(4351), + [anon_sym_return] = ACTIONS(4351), + [anon_sym_break] = ACTIONS(4351), + [anon_sym_continue] = ACTIONS(4351), + [anon_sym_goto] = ACTIONS(4351), + [anon_sym___try] = ACTIONS(4351), + [anon_sym___leave] = ACTIONS(4351), + [anon_sym_not] = ACTIONS(4351), + [anon_sym_compl] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4353), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_sizeof] = ACTIONS(4351), + [anon_sym___alignof__] = ACTIONS(4351), + [anon_sym___alignof] = ACTIONS(4351), + [anon_sym__alignof] = ACTIONS(4351), + [anon_sym_alignof] = ACTIONS(4351), + [anon_sym__Alignof] = ACTIONS(4351), + [anon_sym_offsetof] = ACTIONS(4351), + [anon_sym__Generic] = ACTIONS(4351), + [anon_sym_typename] = ACTIONS(4351), + [anon_sym_asm] = ACTIONS(4351), + [anon_sym___asm__] = ACTIONS(4351), + [anon_sym___asm] = ACTIONS(4351), + [sym_number_literal] = ACTIONS(4353), + [anon_sym_L_SQUOTE] = ACTIONS(4353), + [anon_sym_u_SQUOTE] = ACTIONS(4353), + [anon_sym_U_SQUOTE] = ACTIONS(4353), + [anon_sym_u8_SQUOTE] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4353), + [anon_sym_L_DQUOTE] = ACTIONS(4353), + [anon_sym_u_DQUOTE] = ACTIONS(4353), + [anon_sym_U_DQUOTE] = ACTIONS(4353), + [anon_sym_u8_DQUOTE] = ACTIONS(4353), + [anon_sym_DQUOTE] = ACTIONS(4353), + [sym_true] = ACTIONS(4351), + [sym_false] = ACTIONS(4351), + [anon_sym_NULL] = ACTIONS(4351), + [anon_sym_nullptr] = ACTIONS(4351), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4351), + [anon_sym_decltype] = ACTIONS(4351), + [anon_sym_explicit] = ACTIONS(4351), + [anon_sym_export] = ACTIONS(4351), + [anon_sym_module] = ACTIONS(4351), + [anon_sym_import] = ACTIONS(4351), + [anon_sym_template] = ACTIONS(4351), + [anon_sym_operator] = ACTIONS(4351), + [anon_sym_try] = ACTIONS(4351), + [anon_sym_delete] = ACTIONS(4351), + [anon_sym_throw] = ACTIONS(4351), + [anon_sym_namespace] = ACTIONS(4351), + [anon_sym_static_assert] = ACTIONS(4351), + [anon_sym_concept] = ACTIONS(4351), + [anon_sym_co_return] = ACTIONS(4351), + [anon_sym_co_yield] = ACTIONS(4351), + [anon_sym_R_DQUOTE] = ACTIONS(4353), + [anon_sym_LR_DQUOTE] = ACTIONS(4353), + [anon_sym_uR_DQUOTE] = ACTIONS(4353), + [anon_sym_UR_DQUOTE] = ACTIONS(4353), + [anon_sym_u8R_DQUOTE] = ACTIONS(4353), + [anon_sym_co_await] = ACTIONS(4351), + [anon_sym_new] = ACTIONS(4351), + [anon_sym_requires] = ACTIONS(4351), + [anon_sym_CARET_CARET] = ACTIONS(4353), + [anon_sym_LBRACK_COLON] = ACTIONS(4353), + [sym_this] = ACTIONS(4351), + }, + [STATE(531)] = { + [sym_type_qualifier] = STATE(5669), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2189), + [sym_sized_type_specifier] = STATE(2980), + [sym_enum_specifier] = STATE(2980), + [sym_struct_specifier] = STATE(2980), + [sym_union_specifier] = STATE(2980), + [sym_expression] = STATE(6018), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_type_descriptor] = STATE(6511), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_placeholder_type_specifier] = STATE(2980), + [sym_decltype_auto] = STATE(2979), + [sym_decltype] = STATE(2981), + [sym_class_specifier] = STATE(2980), + [sym__class_name] = STATE(11676), + [sym_dependent_type] = STATE(2980), + [sym_template_type] = STATE(3026), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8937), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(3028), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(3174), + [sym__splice_specialization_specifier] = STATE(2672), + [sym_splice_type_specifier] = STATE(3074), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [aux_sym__type_definition_type_repeat1] = STATE(5669), + [aux_sym_sized_type_specifier_repeat1] = STATE(2340), + [sym_identifier] = ACTIONS(4355), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4359), + [anon_sym_COLON_COLON] = ACTIONS(4361), + [anon_sym_signed] = ACTIONS(4363), + [anon_sym_unsigned] = ACTIONS(4363), + [anon_sym_long] = ACTIONS(4363), + [anon_sym_short] = ACTIONS(4363), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -133881,137 +139173,1007 @@ 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), + [sym_primitive_type] = ACTIONS(4365), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_class] = ACTIONS(4369), + [anon_sym_struct] = ACTIONS(4371), + [anon_sym_union] = ACTIONS(4373), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(4377), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4379), + [anon_sym_decltype] = ACTIONS(4381), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(4383), + [sym_this] = ACTIONS(2992), + }, + [STATE(532)] = { + [sym_identifier] = ACTIONS(4385), + [aux_sym_preproc_include_token1] = ACTIONS(4385), + [aux_sym_preproc_def_token1] = ACTIONS(4385), + [aux_sym_preproc_if_token1] = ACTIONS(4385), + [aux_sym_preproc_if_token2] = ACTIONS(4385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4385), + [aux_sym_preproc_else_token1] = ACTIONS(4385), + [aux_sym_preproc_elif_token1] = ACTIONS(4385), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4385), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4385), + [sym_preproc_directive] = ACTIONS(4385), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_BANG] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4387), + [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_STAR] = ACTIONS(4387), + [anon_sym_AMP_AMP] = ACTIONS(4387), + [anon_sym_AMP] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4387), + [anon_sym___extension__] = ACTIONS(4385), + [anon_sym_typedef] = ACTIONS(4385), + [anon_sym_virtual] = ACTIONS(4385), + [anon_sym_extern] = ACTIONS(4385), + [anon_sym___attribute__] = ACTIONS(4385), + [anon_sym___attribute] = ACTIONS(4385), + [anon_sym_using] = ACTIONS(4385), + [anon_sym_COLON_COLON] = ACTIONS(4387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4387), + [anon_sym___declspec] = ACTIONS(4385), + [anon_sym___based] = ACTIONS(4385), + [anon_sym___cdecl] = ACTIONS(4385), + [anon_sym___clrcall] = ACTIONS(4385), + [anon_sym___stdcall] = ACTIONS(4385), + [anon_sym___fastcall] = ACTIONS(4385), + [anon_sym___thiscall] = ACTIONS(4385), + [anon_sym___vectorcall] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(4387), + [anon_sym_signed] = ACTIONS(4385), + [anon_sym_unsigned] = ACTIONS(4385), + [anon_sym_long] = ACTIONS(4385), + [anon_sym_short] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [anon_sym_static] = ACTIONS(4385), + [anon_sym_register] = ACTIONS(4385), + [anon_sym_inline] = ACTIONS(4385), + [anon_sym___inline] = ACTIONS(4385), + [anon_sym___inline__] = ACTIONS(4385), + [anon_sym___forceinline] = ACTIONS(4385), + [anon_sym_thread_local] = ACTIONS(4385), + [anon_sym___thread] = ACTIONS(4385), + [anon_sym_const] = ACTIONS(4385), + [anon_sym_constexpr] = ACTIONS(4385), + [anon_sym_volatile] = ACTIONS(4385), + [anon_sym_restrict] = ACTIONS(4385), + [anon_sym___restrict__] = ACTIONS(4385), + [anon_sym__Atomic] = ACTIONS(4385), + [anon_sym__Noreturn] = ACTIONS(4385), + [anon_sym_noreturn] = ACTIONS(4385), + [anon_sym__Nonnull] = ACTIONS(4385), + [anon_sym_mutable] = ACTIONS(4385), + [anon_sym_constinit] = ACTIONS(4385), + [anon_sym_consteval] = ACTIONS(4385), + [anon_sym_alignas] = ACTIONS(4385), + [anon_sym__Alignas] = ACTIONS(4385), + [sym_primitive_type] = ACTIONS(4385), + [anon_sym_enum] = ACTIONS(4385), + [anon_sym_class] = ACTIONS(4385), + [anon_sym_struct] = ACTIONS(4385), + [anon_sym_union] = ACTIONS(4385), + [anon_sym_if] = ACTIONS(4385), + [anon_sym_switch] = ACTIONS(4385), + [anon_sym_case] = ACTIONS(4385), + [anon_sym_default] = ACTIONS(4385), + [anon_sym_while] = ACTIONS(4385), + [anon_sym_do] = ACTIONS(4385), + [anon_sym_for] = ACTIONS(4385), + [anon_sym_return] = ACTIONS(4385), + [anon_sym_break] = ACTIONS(4385), + [anon_sym_continue] = ACTIONS(4385), + [anon_sym_goto] = ACTIONS(4385), + [anon_sym___try] = ACTIONS(4385), + [anon_sym___leave] = ACTIONS(4385), + [anon_sym_not] = ACTIONS(4385), + [anon_sym_compl] = ACTIONS(4385), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_PLUS_PLUS] = ACTIONS(4387), + [anon_sym_sizeof] = ACTIONS(4385), + [anon_sym___alignof__] = ACTIONS(4385), + [anon_sym___alignof] = ACTIONS(4385), + [anon_sym__alignof] = ACTIONS(4385), + [anon_sym_alignof] = ACTIONS(4385), + [anon_sym__Alignof] = ACTIONS(4385), + [anon_sym_offsetof] = ACTIONS(4385), + [anon_sym__Generic] = ACTIONS(4385), + [anon_sym_typename] = ACTIONS(4385), + [anon_sym_asm] = ACTIONS(4385), + [anon_sym___asm__] = ACTIONS(4385), + [anon_sym___asm] = ACTIONS(4385), + [sym_number_literal] = ACTIONS(4387), + [anon_sym_L_SQUOTE] = ACTIONS(4387), + [anon_sym_u_SQUOTE] = ACTIONS(4387), + [anon_sym_U_SQUOTE] = ACTIONS(4387), + [anon_sym_u8_SQUOTE] = ACTIONS(4387), + [anon_sym_SQUOTE] = ACTIONS(4387), + [anon_sym_L_DQUOTE] = ACTIONS(4387), + [anon_sym_u_DQUOTE] = ACTIONS(4387), + [anon_sym_U_DQUOTE] = ACTIONS(4387), + [anon_sym_u8_DQUOTE] = ACTIONS(4387), + [anon_sym_DQUOTE] = ACTIONS(4387), + [sym_true] = ACTIONS(4385), + [sym_false] = ACTIONS(4385), + [anon_sym_NULL] = ACTIONS(4385), + [anon_sym_nullptr] = ACTIONS(4385), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4385), + [anon_sym_decltype] = ACTIONS(4385), + [anon_sym_explicit] = ACTIONS(4385), + [anon_sym_export] = ACTIONS(4385), + [anon_sym_module] = ACTIONS(4385), + [anon_sym_import] = ACTIONS(4385), + [anon_sym_template] = ACTIONS(4385), + [anon_sym_operator] = ACTIONS(4385), + [anon_sym_try] = ACTIONS(4385), + [anon_sym_delete] = ACTIONS(4385), + [anon_sym_throw] = ACTIONS(4385), + [anon_sym_namespace] = ACTIONS(4385), + [anon_sym_static_assert] = ACTIONS(4385), + [anon_sym_concept] = ACTIONS(4385), + [anon_sym_co_return] = ACTIONS(4385), + [anon_sym_co_yield] = ACTIONS(4385), + [anon_sym_R_DQUOTE] = ACTIONS(4387), + [anon_sym_LR_DQUOTE] = ACTIONS(4387), + [anon_sym_uR_DQUOTE] = ACTIONS(4387), + [anon_sym_UR_DQUOTE] = ACTIONS(4387), + [anon_sym_u8R_DQUOTE] = ACTIONS(4387), + [anon_sym_co_await] = ACTIONS(4385), + [anon_sym_new] = ACTIONS(4385), + [anon_sym_requires] = ACTIONS(4385), + [anon_sym_CARET_CARET] = ACTIONS(4387), + [anon_sym_LBRACK_COLON] = ACTIONS(4387), + [sym_this] = ACTIONS(4385), + }, + [STATE(533)] = { + [sym_identifier] = ACTIONS(4389), + [aux_sym_preproc_include_token1] = ACTIONS(4389), + [aux_sym_preproc_def_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token2] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4389), + [aux_sym_preproc_else_token1] = ACTIONS(4389), + [aux_sym_preproc_elif_token1] = ACTIONS(4389), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4389), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4389), + [sym_preproc_directive] = ACTIONS(4389), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_typedef] = ACTIONS(4389), + [anon_sym_virtual] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym___attribute__] = ACTIONS(4389), + [anon_sym___attribute] = ACTIONS(4389), + [anon_sym_using] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4391), + [anon_sym___declspec] = ACTIONS(4389), + [anon_sym___based] = ACTIONS(4389), + [anon_sym___cdecl] = ACTIONS(4389), + [anon_sym___clrcall] = ACTIONS(4389), + [anon_sym___stdcall] = ACTIONS(4389), + [anon_sym___fastcall] = ACTIONS(4389), + [anon_sym___thiscall] = ACTIONS(4389), + [anon_sym___vectorcall] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_signed] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym___inline] = ACTIONS(4389), + [anon_sym___inline__] = ACTIONS(4389), + [anon_sym___forceinline] = ACTIONS(4389), + [anon_sym_thread_local] = ACTIONS(4389), + [anon_sym___thread] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_constinit] = ACTIONS(4389), + [anon_sym_consteval] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4389), + [anon_sym__Alignas] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_class] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_switch] = ACTIONS(4389), + [anon_sym_case] = ACTIONS(4389), + [anon_sym_default] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_do] = ACTIONS(4389), + [anon_sym_for] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_goto] = ACTIONS(4389), + [anon_sym___try] = ACTIONS(4389), + [anon_sym___leave] = ACTIONS(4389), + [anon_sym_not] = ACTIONS(4389), + [anon_sym_compl] = ACTIONS(4389), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_sizeof] = ACTIONS(4389), + [anon_sym___alignof__] = ACTIONS(4389), + [anon_sym___alignof] = ACTIONS(4389), + [anon_sym__alignof] = ACTIONS(4389), + [anon_sym_alignof] = ACTIONS(4389), + [anon_sym__Alignof] = ACTIONS(4389), + [anon_sym_offsetof] = ACTIONS(4389), + [anon_sym__Generic] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [anon_sym_asm] = ACTIONS(4389), + [anon_sym___asm__] = ACTIONS(4389), + [anon_sym___asm] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4391), + [anon_sym_L_SQUOTE] = ACTIONS(4391), + [anon_sym_u_SQUOTE] = ACTIONS(4391), + [anon_sym_U_SQUOTE] = ACTIONS(4391), + [anon_sym_u8_SQUOTE] = ACTIONS(4391), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_L_DQUOTE] = ACTIONS(4391), + [anon_sym_u_DQUOTE] = ACTIONS(4391), + [anon_sym_U_DQUOTE] = ACTIONS(4391), + [anon_sym_u8_DQUOTE] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [anon_sym_NULL] = ACTIONS(4389), + [anon_sym_nullptr] = ACTIONS(4389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4389), + [anon_sym_decltype] = ACTIONS(4389), + [anon_sym_explicit] = ACTIONS(4389), + [anon_sym_export] = ACTIONS(4389), + [anon_sym_module] = ACTIONS(4389), + [anon_sym_import] = ACTIONS(4389), + [anon_sym_template] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_delete] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_namespace] = ACTIONS(4389), + [anon_sym_static_assert] = ACTIONS(4389), + [anon_sym_concept] = ACTIONS(4389), + [anon_sym_co_return] = ACTIONS(4389), + [anon_sym_co_yield] = ACTIONS(4389), + [anon_sym_R_DQUOTE] = ACTIONS(4391), + [anon_sym_LR_DQUOTE] = ACTIONS(4391), + [anon_sym_uR_DQUOTE] = ACTIONS(4391), + [anon_sym_UR_DQUOTE] = ACTIONS(4391), + [anon_sym_u8R_DQUOTE] = ACTIONS(4391), + [anon_sym_co_await] = ACTIONS(4389), + [anon_sym_new] = ACTIONS(4389), + [anon_sym_requires] = ACTIONS(4389), + [anon_sym_CARET_CARET] = ACTIONS(4391), + [anon_sym_LBRACK_COLON] = ACTIONS(4391), + [sym_this] = ACTIONS(4389), + }, + [STATE(534)] = { + [sym_identifier] = ACTIONS(4393), + [aux_sym_preproc_include_token1] = ACTIONS(4393), + [aux_sym_preproc_def_token1] = ACTIONS(4393), + [aux_sym_preproc_if_token1] = ACTIONS(4393), + [aux_sym_preproc_if_token2] = ACTIONS(4393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4393), + [aux_sym_preproc_else_token1] = ACTIONS(4393), + [aux_sym_preproc_elif_token1] = ACTIONS(4393), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4393), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4393), + [sym_preproc_directive] = ACTIONS(4393), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_TILDE] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym___extension__] = ACTIONS(4393), + [anon_sym_typedef] = ACTIONS(4393), + [anon_sym_virtual] = ACTIONS(4393), + [anon_sym_extern] = ACTIONS(4393), + [anon_sym___attribute__] = ACTIONS(4393), + [anon_sym___attribute] = ACTIONS(4393), + [anon_sym_using] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4395), + [anon_sym___declspec] = ACTIONS(4393), + [anon_sym___based] = ACTIONS(4393), + [anon_sym___cdecl] = ACTIONS(4393), + [anon_sym___clrcall] = ACTIONS(4393), + [anon_sym___stdcall] = ACTIONS(4393), + [anon_sym___fastcall] = ACTIONS(4393), + [anon_sym___thiscall] = ACTIONS(4393), + [anon_sym___vectorcall] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_signed] = ACTIONS(4393), + [anon_sym_unsigned] = ACTIONS(4393), + [anon_sym_long] = ACTIONS(4393), + [anon_sym_short] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_static] = ACTIONS(4393), + [anon_sym_register] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym___inline] = ACTIONS(4393), + [anon_sym___inline__] = ACTIONS(4393), + [anon_sym___forceinline] = ACTIONS(4393), + [anon_sym_thread_local] = ACTIONS(4393), + [anon_sym___thread] = ACTIONS(4393), + [anon_sym_const] = ACTIONS(4393), + [anon_sym_constexpr] = ACTIONS(4393), + [anon_sym_volatile] = ACTIONS(4393), + [anon_sym_restrict] = ACTIONS(4393), + [anon_sym___restrict__] = ACTIONS(4393), + [anon_sym__Atomic] = ACTIONS(4393), + [anon_sym__Noreturn] = ACTIONS(4393), + [anon_sym_noreturn] = ACTIONS(4393), + [anon_sym__Nonnull] = ACTIONS(4393), + [anon_sym_mutable] = ACTIONS(4393), + [anon_sym_constinit] = ACTIONS(4393), + [anon_sym_consteval] = ACTIONS(4393), + [anon_sym_alignas] = ACTIONS(4393), + [anon_sym__Alignas] = ACTIONS(4393), + [sym_primitive_type] = ACTIONS(4393), + [anon_sym_enum] = ACTIONS(4393), + [anon_sym_class] = ACTIONS(4393), + [anon_sym_struct] = ACTIONS(4393), + [anon_sym_union] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_switch] = ACTIONS(4393), + [anon_sym_case] = ACTIONS(4393), + [anon_sym_default] = ACTIONS(4393), + [anon_sym_while] = ACTIONS(4393), + [anon_sym_do] = ACTIONS(4393), + [anon_sym_for] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_goto] = ACTIONS(4393), + [anon_sym___try] = ACTIONS(4393), + [anon_sym___leave] = ACTIONS(4393), + [anon_sym_not] = ACTIONS(4393), + [anon_sym_compl] = ACTIONS(4393), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_sizeof] = ACTIONS(4393), + [anon_sym___alignof__] = ACTIONS(4393), + [anon_sym___alignof] = ACTIONS(4393), + [anon_sym__alignof] = ACTIONS(4393), + [anon_sym_alignof] = ACTIONS(4393), + [anon_sym__Alignof] = ACTIONS(4393), + [anon_sym_offsetof] = ACTIONS(4393), + [anon_sym__Generic] = ACTIONS(4393), + [anon_sym_typename] = ACTIONS(4393), + [anon_sym_asm] = ACTIONS(4393), + [anon_sym___asm__] = ACTIONS(4393), + [anon_sym___asm] = ACTIONS(4393), + [sym_number_literal] = ACTIONS(4395), + [anon_sym_L_SQUOTE] = ACTIONS(4395), + [anon_sym_u_SQUOTE] = ACTIONS(4395), + [anon_sym_U_SQUOTE] = ACTIONS(4395), + [anon_sym_u8_SQUOTE] = ACTIONS(4395), + [anon_sym_SQUOTE] = ACTIONS(4395), + [anon_sym_L_DQUOTE] = ACTIONS(4395), + [anon_sym_u_DQUOTE] = ACTIONS(4395), + [anon_sym_U_DQUOTE] = ACTIONS(4395), + [anon_sym_u8_DQUOTE] = ACTIONS(4395), + [anon_sym_DQUOTE] = ACTIONS(4395), + [sym_true] = ACTIONS(4393), + [sym_false] = ACTIONS(4393), + [anon_sym_NULL] = ACTIONS(4393), + [anon_sym_nullptr] = ACTIONS(4393), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4393), + [anon_sym_decltype] = ACTIONS(4393), + [anon_sym_explicit] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4393), + [anon_sym_module] = ACTIONS(4393), + [anon_sym_import] = ACTIONS(4393), + [anon_sym_template] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_delete] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_namespace] = ACTIONS(4393), + [anon_sym_static_assert] = ACTIONS(4393), + [anon_sym_concept] = ACTIONS(4393), + [anon_sym_co_return] = ACTIONS(4393), + [anon_sym_co_yield] = ACTIONS(4393), + [anon_sym_R_DQUOTE] = ACTIONS(4395), + [anon_sym_LR_DQUOTE] = ACTIONS(4395), + [anon_sym_uR_DQUOTE] = ACTIONS(4395), + [anon_sym_UR_DQUOTE] = ACTIONS(4395), + [anon_sym_u8R_DQUOTE] = ACTIONS(4395), + [anon_sym_co_await] = ACTIONS(4393), + [anon_sym_new] = ACTIONS(4393), + [anon_sym_requires] = ACTIONS(4393), + [anon_sym_CARET_CARET] = ACTIONS(4395), + [anon_sym_LBRACK_COLON] = ACTIONS(4395), + [sym_this] = ACTIONS(4393), + }, + [STATE(535)] = { + [sym_identifier] = ACTIONS(4397), + [aux_sym_preproc_include_token1] = ACTIONS(4397), + [aux_sym_preproc_def_token1] = ACTIONS(4397), + [aux_sym_preproc_if_token1] = ACTIONS(4397), + [aux_sym_preproc_if_token2] = ACTIONS(4397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4397), + [aux_sym_preproc_else_token1] = ACTIONS(4397), + [aux_sym_preproc_elif_token1] = ACTIONS(4397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4397), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4397), + [sym_preproc_directive] = ACTIONS(4397), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_AMP] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym___extension__] = ACTIONS(4397), + [anon_sym_typedef] = ACTIONS(4397), + [anon_sym_virtual] = ACTIONS(4397), + [anon_sym_extern] = ACTIONS(4397), + [anon_sym___attribute__] = ACTIONS(4397), + [anon_sym___attribute] = ACTIONS(4397), + [anon_sym_using] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4399), + [anon_sym___declspec] = ACTIONS(4397), + [anon_sym___based] = ACTIONS(4397), + [anon_sym___cdecl] = ACTIONS(4397), + [anon_sym___clrcall] = ACTIONS(4397), + [anon_sym___stdcall] = ACTIONS(4397), + [anon_sym___fastcall] = ACTIONS(4397), + [anon_sym___thiscall] = ACTIONS(4397), + [anon_sym___vectorcall] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_signed] = ACTIONS(4397), + [anon_sym_unsigned] = ACTIONS(4397), + [anon_sym_long] = ACTIONS(4397), + [anon_sym_short] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_static] = ACTIONS(4397), + [anon_sym_register] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym___inline] = ACTIONS(4397), + [anon_sym___inline__] = ACTIONS(4397), + [anon_sym___forceinline] = ACTIONS(4397), + [anon_sym_thread_local] = ACTIONS(4397), + [anon_sym___thread] = ACTIONS(4397), + [anon_sym_const] = ACTIONS(4397), + [anon_sym_constexpr] = ACTIONS(4397), + [anon_sym_volatile] = ACTIONS(4397), + [anon_sym_restrict] = ACTIONS(4397), + [anon_sym___restrict__] = ACTIONS(4397), + [anon_sym__Atomic] = ACTIONS(4397), + [anon_sym__Noreturn] = ACTIONS(4397), + [anon_sym_noreturn] = ACTIONS(4397), + [anon_sym__Nonnull] = ACTIONS(4397), + [anon_sym_mutable] = ACTIONS(4397), + [anon_sym_constinit] = ACTIONS(4397), + [anon_sym_consteval] = ACTIONS(4397), + [anon_sym_alignas] = ACTIONS(4397), + [anon_sym__Alignas] = ACTIONS(4397), + [sym_primitive_type] = ACTIONS(4397), [anon_sym_enum] = ACTIONS(4397), - [anon_sym_class] = ACTIONS(4399), + [anon_sym_class] = ACTIONS(4397), + [anon_sym_struct] = ACTIONS(4397), + [anon_sym_union] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_switch] = ACTIONS(4397), + [anon_sym_case] = ACTIONS(4397), + [anon_sym_default] = ACTIONS(4397), + [anon_sym_while] = ACTIONS(4397), + [anon_sym_do] = ACTIONS(4397), + [anon_sym_for] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_goto] = ACTIONS(4397), + [anon_sym___try] = ACTIONS(4397), + [anon_sym___leave] = ACTIONS(4397), + [anon_sym_not] = ACTIONS(4397), + [anon_sym_compl] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_sizeof] = ACTIONS(4397), + [anon_sym___alignof__] = ACTIONS(4397), + [anon_sym___alignof] = ACTIONS(4397), + [anon_sym__alignof] = ACTIONS(4397), + [anon_sym_alignof] = ACTIONS(4397), + [anon_sym__Alignof] = ACTIONS(4397), + [anon_sym_offsetof] = ACTIONS(4397), + [anon_sym__Generic] = ACTIONS(4397), + [anon_sym_typename] = ACTIONS(4397), + [anon_sym_asm] = ACTIONS(4397), + [anon_sym___asm__] = ACTIONS(4397), + [anon_sym___asm] = ACTIONS(4397), + [sym_number_literal] = ACTIONS(4399), + [anon_sym_L_SQUOTE] = ACTIONS(4399), + [anon_sym_u_SQUOTE] = ACTIONS(4399), + [anon_sym_U_SQUOTE] = ACTIONS(4399), + [anon_sym_u8_SQUOTE] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4399), + [anon_sym_L_DQUOTE] = ACTIONS(4399), + [anon_sym_u_DQUOTE] = ACTIONS(4399), + [anon_sym_U_DQUOTE] = ACTIONS(4399), + [anon_sym_u8_DQUOTE] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4399), + [sym_true] = ACTIONS(4397), + [sym_false] = ACTIONS(4397), + [anon_sym_NULL] = ACTIONS(4397), + [anon_sym_nullptr] = ACTIONS(4397), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4397), + [anon_sym_decltype] = ACTIONS(4397), + [anon_sym_explicit] = ACTIONS(4397), + [anon_sym_export] = ACTIONS(4397), + [anon_sym_module] = ACTIONS(4397), + [anon_sym_import] = ACTIONS(4397), + [anon_sym_template] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_delete] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_namespace] = ACTIONS(4397), + [anon_sym_static_assert] = ACTIONS(4397), + [anon_sym_concept] = ACTIONS(4397), + [anon_sym_co_return] = ACTIONS(4397), + [anon_sym_co_yield] = ACTIONS(4397), + [anon_sym_R_DQUOTE] = ACTIONS(4399), + [anon_sym_LR_DQUOTE] = ACTIONS(4399), + [anon_sym_uR_DQUOTE] = ACTIONS(4399), + [anon_sym_UR_DQUOTE] = ACTIONS(4399), + [anon_sym_u8R_DQUOTE] = ACTIONS(4399), + [anon_sym_co_await] = ACTIONS(4397), + [anon_sym_new] = ACTIONS(4397), + [anon_sym_requires] = ACTIONS(4397), + [anon_sym_CARET_CARET] = ACTIONS(4399), + [anon_sym_LBRACK_COLON] = ACTIONS(4399), + [sym_this] = ACTIONS(4397), + }, + [STATE(536)] = { + [sym_identifier] = ACTIONS(4401), + [aux_sym_preproc_include_token1] = ACTIONS(4401), + [aux_sym_preproc_def_token1] = ACTIONS(4401), + [aux_sym_preproc_if_token1] = ACTIONS(4401), + [aux_sym_preproc_if_token2] = ACTIONS(4401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4401), + [aux_sym_preproc_else_token1] = ACTIONS(4401), + [aux_sym_preproc_elif_token1] = ACTIONS(4401), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4401), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4401), + [sym_preproc_directive] = ACTIONS(4401), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_TILDE] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym___extension__] = ACTIONS(4401), + [anon_sym_typedef] = ACTIONS(4401), + [anon_sym_virtual] = ACTIONS(4401), + [anon_sym_extern] = ACTIONS(4401), + [anon_sym___attribute__] = ACTIONS(4401), + [anon_sym___attribute] = ACTIONS(4401), + [anon_sym_using] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4403), + [anon_sym___declspec] = ACTIONS(4401), + [anon_sym___based] = ACTIONS(4401), + [anon_sym___cdecl] = ACTIONS(4401), + [anon_sym___clrcall] = ACTIONS(4401), + [anon_sym___stdcall] = ACTIONS(4401), + [anon_sym___fastcall] = ACTIONS(4401), + [anon_sym___thiscall] = ACTIONS(4401), + [anon_sym___vectorcall] = ACTIONS(4401), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_signed] = ACTIONS(4401), + [anon_sym_unsigned] = ACTIONS(4401), + [anon_sym_long] = ACTIONS(4401), + [anon_sym_short] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [anon_sym_static] = ACTIONS(4401), + [anon_sym_register] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym___inline] = ACTIONS(4401), + [anon_sym___inline__] = ACTIONS(4401), + [anon_sym___forceinline] = ACTIONS(4401), + [anon_sym_thread_local] = ACTIONS(4401), + [anon_sym___thread] = ACTIONS(4401), + [anon_sym_const] = ACTIONS(4401), + [anon_sym_constexpr] = ACTIONS(4401), + [anon_sym_volatile] = ACTIONS(4401), + [anon_sym_restrict] = ACTIONS(4401), + [anon_sym___restrict__] = ACTIONS(4401), + [anon_sym__Atomic] = ACTIONS(4401), + [anon_sym__Noreturn] = ACTIONS(4401), + [anon_sym_noreturn] = ACTIONS(4401), + [anon_sym__Nonnull] = ACTIONS(4401), + [anon_sym_mutable] = ACTIONS(4401), + [anon_sym_constinit] = ACTIONS(4401), + [anon_sym_consteval] = ACTIONS(4401), + [anon_sym_alignas] = ACTIONS(4401), + [anon_sym__Alignas] = ACTIONS(4401), + [sym_primitive_type] = ACTIONS(4401), + [anon_sym_enum] = ACTIONS(4401), + [anon_sym_class] = ACTIONS(4401), [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), + [anon_sym_union] = ACTIONS(4401), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_switch] = ACTIONS(4401), + [anon_sym_case] = ACTIONS(4401), + [anon_sym_default] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(4401), + [anon_sym_do] = ACTIONS(4401), + [anon_sym_for] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_goto] = ACTIONS(4401), + [anon_sym___try] = ACTIONS(4401), + [anon_sym___leave] = ACTIONS(4401), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_sizeof] = ACTIONS(4401), + [anon_sym___alignof__] = ACTIONS(4401), + [anon_sym___alignof] = ACTIONS(4401), + [anon_sym__alignof] = ACTIONS(4401), + [anon_sym_alignof] = ACTIONS(4401), + [anon_sym__Alignof] = ACTIONS(4401), + [anon_sym_offsetof] = ACTIONS(4401), + [anon_sym__Generic] = ACTIONS(4401), + [anon_sym_typename] = ACTIONS(4401), + [anon_sym_asm] = ACTIONS(4401), + [anon_sym___asm__] = ACTIONS(4401), + [anon_sym___asm] = ACTIONS(4401), + [sym_number_literal] = ACTIONS(4403), + [anon_sym_L_SQUOTE] = ACTIONS(4403), + [anon_sym_u_SQUOTE] = ACTIONS(4403), + [anon_sym_U_SQUOTE] = ACTIONS(4403), + [anon_sym_u8_SQUOTE] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4403), + [anon_sym_L_DQUOTE] = ACTIONS(4403), + [anon_sym_u_DQUOTE] = ACTIONS(4403), + [anon_sym_U_DQUOTE] = ACTIONS(4403), + [anon_sym_u8_DQUOTE] = ACTIONS(4403), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym_true] = ACTIONS(4401), + [sym_false] = ACTIONS(4401), + [anon_sym_NULL] = ACTIONS(4401), + [anon_sym_nullptr] = ACTIONS(4401), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4401), + [anon_sym_decltype] = ACTIONS(4401), + [anon_sym_explicit] = ACTIONS(4401), + [anon_sym_export] = ACTIONS(4401), + [anon_sym_module] = ACTIONS(4401), + [anon_sym_import] = ACTIONS(4401), + [anon_sym_template] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_delete] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_namespace] = ACTIONS(4401), + [anon_sym_static_assert] = ACTIONS(4401), + [anon_sym_concept] = ACTIONS(4401), + [anon_sym_co_return] = ACTIONS(4401), + [anon_sym_co_yield] = ACTIONS(4401), + [anon_sym_R_DQUOTE] = ACTIONS(4403), + [anon_sym_LR_DQUOTE] = ACTIONS(4403), + [anon_sym_uR_DQUOTE] = ACTIONS(4403), + [anon_sym_UR_DQUOTE] = ACTIONS(4403), + [anon_sym_u8R_DQUOTE] = ACTIONS(4403), + [anon_sym_co_await] = ACTIONS(4401), + [anon_sym_new] = ACTIONS(4401), + [anon_sym_requires] = ACTIONS(4401), + [anon_sym_CARET_CARET] = ACTIONS(4403), + [anon_sym_LBRACK_COLON] = ACTIONS(4403), + [sym_this] = ACTIONS(4401), }, - [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), + [STATE(537)] = { + [sym_identifier] = ACTIONS(4405), + [aux_sym_preproc_include_token1] = ACTIONS(4405), + [aux_sym_preproc_def_token1] = ACTIONS(4405), + [aux_sym_preproc_if_token1] = ACTIONS(4405), + [aux_sym_preproc_if_token2] = ACTIONS(4405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4405), + [aux_sym_preproc_else_token1] = ACTIONS(4405), + [aux_sym_preproc_elif_token1] = ACTIONS(4405), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4405), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4405), + [sym_preproc_directive] = ACTIONS(4405), [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_BANG] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4407), + [anon_sym_AMP_AMP] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4405), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym___extension__] = ACTIONS(4405), + [anon_sym_typedef] = ACTIONS(4405), + [anon_sym_virtual] = ACTIONS(4405), + [anon_sym_extern] = ACTIONS(4405), + [anon_sym___attribute__] = ACTIONS(4405), + [anon_sym___attribute] = ACTIONS(4405), + [anon_sym_using] = ACTIONS(4405), + [anon_sym_COLON_COLON] = ACTIONS(4407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4407), + [anon_sym___declspec] = ACTIONS(4405), + [anon_sym___based] = ACTIONS(4405), + [anon_sym___cdecl] = ACTIONS(4405), + [anon_sym___clrcall] = ACTIONS(4405), + [anon_sym___stdcall] = ACTIONS(4405), + [anon_sym___fastcall] = ACTIONS(4405), + [anon_sym___thiscall] = ACTIONS(4405), + [anon_sym___vectorcall] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_signed] = ACTIONS(4405), + [anon_sym_unsigned] = ACTIONS(4405), + [anon_sym_long] = ACTIONS(4405), + [anon_sym_short] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_static] = ACTIONS(4405), + [anon_sym_register] = ACTIONS(4405), + [anon_sym_inline] = ACTIONS(4405), + [anon_sym___inline] = ACTIONS(4405), + [anon_sym___inline__] = ACTIONS(4405), + [anon_sym___forceinline] = ACTIONS(4405), + [anon_sym_thread_local] = ACTIONS(4405), + [anon_sym___thread] = ACTIONS(4405), + [anon_sym_const] = ACTIONS(4405), + [anon_sym_constexpr] = ACTIONS(4405), + [anon_sym_volatile] = ACTIONS(4405), + [anon_sym_restrict] = ACTIONS(4405), + [anon_sym___restrict__] = ACTIONS(4405), + [anon_sym__Atomic] = ACTIONS(4405), + [anon_sym__Noreturn] = ACTIONS(4405), + [anon_sym_noreturn] = ACTIONS(4405), + [anon_sym__Nonnull] = ACTIONS(4405), + [anon_sym_mutable] = ACTIONS(4405), + [anon_sym_constinit] = ACTIONS(4405), + [anon_sym_consteval] = ACTIONS(4405), + [anon_sym_alignas] = ACTIONS(4405), + [anon_sym__Alignas] = ACTIONS(4405), + [sym_primitive_type] = ACTIONS(4405), + [anon_sym_enum] = ACTIONS(4405), + [anon_sym_class] = ACTIONS(4405), + [anon_sym_struct] = ACTIONS(4405), + [anon_sym_union] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(4405), + [anon_sym_switch] = ACTIONS(4405), + [anon_sym_case] = ACTIONS(4405), + [anon_sym_default] = ACTIONS(4405), + [anon_sym_while] = ACTIONS(4405), + [anon_sym_do] = ACTIONS(4405), + [anon_sym_for] = ACTIONS(4405), + [anon_sym_return] = ACTIONS(4405), + [anon_sym_break] = ACTIONS(4405), + [anon_sym_continue] = ACTIONS(4405), + [anon_sym_goto] = ACTIONS(4405), + [anon_sym___try] = ACTIONS(4405), + [anon_sym___leave] = ACTIONS(4405), + [anon_sym_not] = ACTIONS(4405), + [anon_sym_compl] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_sizeof] = ACTIONS(4405), + [anon_sym___alignof__] = ACTIONS(4405), + [anon_sym___alignof] = ACTIONS(4405), + [anon_sym__alignof] = ACTIONS(4405), + [anon_sym_alignof] = ACTIONS(4405), + [anon_sym__Alignof] = ACTIONS(4405), + [anon_sym_offsetof] = ACTIONS(4405), + [anon_sym__Generic] = ACTIONS(4405), + [anon_sym_typename] = ACTIONS(4405), + [anon_sym_asm] = ACTIONS(4405), + [anon_sym___asm__] = ACTIONS(4405), + [anon_sym___asm] = ACTIONS(4405), + [sym_number_literal] = ACTIONS(4407), + [anon_sym_L_SQUOTE] = ACTIONS(4407), + [anon_sym_u_SQUOTE] = ACTIONS(4407), + [anon_sym_U_SQUOTE] = ACTIONS(4407), + [anon_sym_u8_SQUOTE] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_L_DQUOTE] = ACTIONS(4407), + [anon_sym_u_DQUOTE] = ACTIONS(4407), + [anon_sym_U_DQUOTE] = ACTIONS(4407), + [anon_sym_u8_DQUOTE] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [sym_true] = ACTIONS(4405), + [sym_false] = ACTIONS(4405), + [anon_sym_NULL] = ACTIONS(4405), + [anon_sym_nullptr] = ACTIONS(4405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4405), + [anon_sym_decltype] = ACTIONS(4405), + [anon_sym_explicit] = ACTIONS(4405), + [anon_sym_export] = ACTIONS(4405), + [anon_sym_module] = ACTIONS(4405), + [anon_sym_import] = ACTIONS(4405), + [anon_sym_template] = ACTIONS(4405), + [anon_sym_operator] = ACTIONS(4405), + [anon_sym_try] = ACTIONS(4405), + [anon_sym_delete] = ACTIONS(4405), + [anon_sym_throw] = ACTIONS(4405), + [anon_sym_namespace] = ACTIONS(4405), + [anon_sym_static_assert] = ACTIONS(4405), + [anon_sym_concept] = ACTIONS(4405), + [anon_sym_co_return] = ACTIONS(4405), + [anon_sym_co_yield] = ACTIONS(4405), + [anon_sym_R_DQUOTE] = ACTIONS(4407), + [anon_sym_LR_DQUOTE] = ACTIONS(4407), + [anon_sym_uR_DQUOTE] = ACTIONS(4407), + [anon_sym_UR_DQUOTE] = ACTIONS(4407), + [anon_sym_u8R_DQUOTE] = ACTIONS(4407), + [anon_sym_co_await] = ACTIONS(4405), + [anon_sym_new] = ACTIONS(4405), + [anon_sym_requires] = ACTIONS(4405), + [anon_sym_CARET_CARET] = ACTIONS(4407), + [anon_sym_LBRACK_COLON] = ACTIONS(4407), + [sym_this] = ACTIONS(4405), + }, + [STATE(538)] = { + [sym_type_qualifier] = STATE(5614), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2032), + [sym_sized_type_specifier] = STATE(2339), + [sym_enum_specifier] = STATE(2339), + [sym_struct_specifier] = STATE(2339), + [sym_union_specifier] = STATE(2339), + [sym_expression] = STATE(6071), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_type_descriptor] = STATE(4187), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_placeholder_type_specifier] = STATE(2339), + [sym_decltype_auto] = STATE(2328), + [sym_decltype] = STATE(2345), + [sym_class_specifier] = STATE(2339), + [sym__class_name] = STATE(11509), + [sym_dependent_type] = STATE(2339), + [sym_template_type] = STATE(2331), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8943), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(2346), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(2533), + [sym__splice_specialization_specifier] = STATE(2273), + [sym_splice_type_specifier] = STATE(2341), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [aux_sym__type_definition_type_repeat1] = STATE(5614), + [aux_sym_sized_type_specifier_repeat1] = STATE(2069), + [sym_identifier] = ACTIONS(3931), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4413), + [anon_sym_COLON_COLON] = ACTIONS(4415), + [anon_sym_signed] = ACTIONS(3832), + [anon_sym_unsigned] = ACTIONS(3832), + [anon_sym_long] = ACTIONS(3832), + [anon_sym_short] = ACTIONS(3832), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -134026,16 +140188,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(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), + [sym_primitive_type] = ACTIONS(3834), + [anon_sym_enum] = ACTIONS(3836), + [anon_sym_class] = ACTIONS(3838), + [anon_sym_struct] = ACTIONS(3840), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -134043,120 +140205,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2402), [anon_sym_offsetof] = ACTIONS(2404), [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(3817), + [anon_sym_typename] = ACTIONS(3846), [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(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), + [sym_auto] = ACTIONS(3848), + [anon_sym_decltype] = ACTIONS(3850), [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_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(3852), [sym_this] = ACTIONS(2418), }, - [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), + [STATE(539)] = { + [sym_identifier] = ACTIONS(4419), + [aux_sym_preproc_include_token1] = ACTIONS(4419), + [aux_sym_preproc_def_token1] = ACTIONS(4419), + [aux_sym_preproc_if_token1] = ACTIONS(4419), + [aux_sym_preproc_if_token2] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4419), + [aux_sym_preproc_else_token1] = ACTIONS(4419), + [aux_sym_preproc_elif_token1] = ACTIONS(4419), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4419), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4419), + [sym_preproc_directive] = ACTIONS(4419), + [anon_sym_LPAREN2] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_TILDE] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_AMP] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), [anon_sym___extension__] = ACTIONS(4419), + [anon_sym_typedef] = ACTIONS(4419), + [anon_sym_virtual] = ACTIONS(4419), + [anon_sym_extern] = ACTIONS(4419), + [anon_sym___attribute__] = ACTIONS(4419), + [anon_sym___attribute] = ACTIONS(4419), + [anon_sym_using] = 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), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4421), + [anon_sym___declspec] = ACTIONS(4419), + [anon_sym___based] = ACTIONS(4419), + [anon_sym___cdecl] = ACTIONS(4419), + [anon_sym___clrcall] = ACTIONS(4419), + [anon_sym___stdcall] = ACTIONS(4419), + [anon_sym___fastcall] = ACTIONS(4419), + [anon_sym___thiscall] = ACTIONS(4419), + [anon_sym___vectorcall] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_signed] = ACTIONS(4419), + [anon_sym_unsigned] = ACTIONS(4419), + [anon_sym_long] = ACTIONS(4419), + [anon_sym_short] = ACTIONS(4419), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_static] = ACTIONS(4419), + [anon_sym_register] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym___inline] = ACTIONS(4419), + [anon_sym___inline__] = ACTIONS(4419), + [anon_sym___forceinline] = ACTIONS(4419), + [anon_sym_thread_local] = ACTIONS(4419), + [anon_sym___thread] = ACTIONS(4419), + [anon_sym_const] = ACTIONS(4419), + [anon_sym_constexpr] = ACTIONS(4419), + [anon_sym_volatile] = ACTIONS(4419), + [anon_sym_restrict] = ACTIONS(4419), + [anon_sym___restrict__] = ACTIONS(4419), + [anon_sym__Atomic] = ACTIONS(4419), + [anon_sym__Noreturn] = ACTIONS(4419), + [anon_sym_noreturn] = ACTIONS(4419), + [anon_sym__Nonnull] = ACTIONS(4419), + [anon_sym_mutable] = ACTIONS(4419), + [anon_sym_constinit] = ACTIONS(4419), + [anon_sym_consteval] = ACTIONS(4419), + [anon_sym_alignas] = ACTIONS(4419), + [anon_sym__Alignas] = ACTIONS(4419), + [sym_primitive_type] = ACTIONS(4419), + [anon_sym_enum] = ACTIONS(4419), + [anon_sym_class] = ACTIONS(4419), + [anon_sym_struct] = ACTIONS(4419), + [anon_sym_union] = ACTIONS(4419), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4419), + [anon_sym_default] = ACTIONS(4419), + [anon_sym_while] = ACTIONS(4419), + [anon_sym_do] = ACTIONS(4419), + [anon_sym_for] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_goto] = ACTIONS(4419), + [anon_sym___try] = ACTIONS(4419), + [anon_sym___leave] = ACTIONS(4419), + [anon_sym_not] = ACTIONS(4419), + [anon_sym_compl] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_sizeof] = ACTIONS(4419), + [anon_sym___alignof__] = ACTIONS(4419), + [anon_sym___alignof] = ACTIONS(4419), + [anon_sym__alignof] = ACTIONS(4419), + [anon_sym_alignof] = ACTIONS(4419), + [anon_sym__Alignof] = ACTIONS(4419), + [anon_sym_offsetof] = ACTIONS(4419), + [anon_sym__Generic] = ACTIONS(4419), + [anon_sym_typename] = ACTIONS(4419), + [anon_sym_asm] = ACTIONS(4419), + [anon_sym___asm__] = ACTIONS(4419), + [anon_sym___asm] = ACTIONS(4419), + [sym_number_literal] = ACTIONS(4421), + [anon_sym_L_SQUOTE] = ACTIONS(4421), + [anon_sym_u_SQUOTE] = ACTIONS(4421), + [anon_sym_U_SQUOTE] = ACTIONS(4421), + [anon_sym_u8_SQUOTE] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4421), + [anon_sym_L_DQUOTE] = ACTIONS(4421), + [anon_sym_u_DQUOTE] = ACTIONS(4421), + [anon_sym_U_DQUOTE] = ACTIONS(4421), + [anon_sym_u8_DQUOTE] = ACTIONS(4421), + [anon_sym_DQUOTE] = ACTIONS(4421), + [sym_true] = ACTIONS(4419), + [sym_false] = ACTIONS(4419), + [anon_sym_NULL] = ACTIONS(4419), + [anon_sym_nullptr] = ACTIONS(4419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4419), + [anon_sym_decltype] = ACTIONS(4419), + [anon_sym_explicit] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_module] = ACTIONS(4419), + [anon_sym_import] = ACTIONS(4419), + [anon_sym_template] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_delete] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_namespace] = ACTIONS(4419), + [anon_sym_static_assert] = ACTIONS(4419), + [anon_sym_concept] = ACTIONS(4419), + [anon_sym_co_return] = ACTIONS(4419), + [anon_sym_co_yield] = ACTIONS(4419), + [anon_sym_R_DQUOTE] = ACTIONS(4421), + [anon_sym_LR_DQUOTE] = ACTIONS(4421), + [anon_sym_uR_DQUOTE] = ACTIONS(4421), + [anon_sym_UR_DQUOTE] = ACTIONS(4421), + [anon_sym_u8R_DQUOTE] = ACTIONS(4421), + [anon_sym_co_await] = ACTIONS(4419), + [anon_sym_new] = ACTIONS(4419), + [anon_sym_requires] = ACTIONS(4419), + [anon_sym_CARET_CARET] = ACTIONS(4421), + [anon_sym_LBRACK_COLON] = ACTIONS(4421), + [sym_this] = ACTIONS(4419), + }, + [STATE(540)] = { + [sym_type_qualifier] = STATE(5738), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(2469), + [sym_sized_type_specifier] = STATE(3233), + [sym_enum_specifier] = STATE(3233), + [sym_struct_specifier] = STATE(3233), + [sym_union_specifier] = STATE(3233), + [sym_expression] = STATE(7781), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_type_descriptor] = STATE(6659), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_placeholder_type_specifier] = STATE(3233), + [sym_decltype_auto] = STATE(3314), + [sym_decltype] = STATE(3234), + [sym_class_specifier] = STATE(3233), + [sym__class_name] = STATE(11689), + [sym_dependent_type] = STATE(3233), + [sym_template_type] = STATE(3349), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8920), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(3350), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(3995), + [sym__splice_specialization_specifier] = STATE(3239), + [sym_splice_type_specifier] = STATE(3472), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [aux_sym__type_definition_type_repeat1] = STATE(5738), + [aux_sym_sized_type_specifier_repeat1] = STATE(2489), + [sym_identifier] = ACTIONS(4423), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4431), + [anon_sym_COLON_COLON] = ACTIONS(4433), + [anon_sym_signed] = ACTIONS(2244), + [anon_sym_unsigned] = ACTIONS(2244), + [anon_sym_long] = ACTIONS(2244), + [anon_sym_short] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1860), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -134171,941 +140478,368 @@ 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), + [sym_primitive_type] = ACTIONS(3734), + [anon_sym_enum] = ACTIONS(3736), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3740), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), [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), - }, - [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), + [anon_sym_sizeof] = ACTIONS(4437), + [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(3748), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), + [sym_this] = ACTIONS(237), }, - [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(541)] = { + [sym_identifier] = ACTIONS(4445), + [aux_sym_preproc_include_token1] = ACTIONS(4445), + [aux_sym_preproc_def_token1] = ACTIONS(4445), + [aux_sym_preproc_if_token1] = ACTIONS(4445), + [aux_sym_preproc_if_token2] = ACTIONS(4445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), + [aux_sym_preproc_else_token1] = ACTIONS(4445), + [aux_sym_preproc_elif_token1] = ACTIONS(4445), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4445), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4445), + [sym_preproc_directive] = ACTIONS(4445), + [anon_sym_LPAREN2] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_TILDE] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_AMP_AMP] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4445), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym___extension__] = ACTIONS(4445), + [anon_sym_typedef] = ACTIONS(4445), + [anon_sym_virtual] = ACTIONS(4445), + [anon_sym_extern] = ACTIONS(4445), + [anon_sym___attribute__] = ACTIONS(4445), + [anon_sym___attribute] = ACTIONS(4445), + [anon_sym_using] = ACTIONS(4445), + [anon_sym_COLON_COLON] = ACTIONS(4447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4447), + [anon_sym___declspec] = ACTIONS(4445), + [anon_sym___based] = ACTIONS(4445), + [anon_sym___cdecl] = ACTIONS(4445), + [anon_sym___clrcall] = ACTIONS(4445), + [anon_sym___stdcall] = ACTIONS(4445), + [anon_sym___fastcall] = ACTIONS(4445), + [anon_sym___thiscall] = ACTIONS(4445), + [anon_sym___vectorcall] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4447), + [anon_sym_signed] = ACTIONS(4445), + [anon_sym_unsigned] = ACTIONS(4445), + [anon_sym_long] = ACTIONS(4445), + [anon_sym_short] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_static] = ACTIONS(4445), + [anon_sym_register] = ACTIONS(4445), + [anon_sym_inline] = ACTIONS(4445), + [anon_sym___inline] = ACTIONS(4445), + [anon_sym___inline__] = ACTIONS(4445), + [anon_sym___forceinline] = ACTIONS(4445), + [anon_sym_thread_local] = ACTIONS(4445), + [anon_sym___thread] = ACTIONS(4445), + [anon_sym_const] = ACTIONS(4445), + [anon_sym_constexpr] = ACTIONS(4445), + [anon_sym_volatile] = ACTIONS(4445), + [anon_sym_restrict] = ACTIONS(4445), + [anon_sym___restrict__] = ACTIONS(4445), + [anon_sym__Atomic] = ACTIONS(4445), + [anon_sym__Noreturn] = ACTIONS(4445), + [anon_sym_noreturn] = ACTIONS(4445), + [anon_sym__Nonnull] = ACTIONS(4445), + [anon_sym_mutable] = ACTIONS(4445), + [anon_sym_constinit] = ACTIONS(4445), + [anon_sym_consteval] = ACTIONS(4445), + [anon_sym_alignas] = ACTIONS(4445), + [anon_sym__Alignas] = ACTIONS(4445), + [sym_primitive_type] = ACTIONS(4445), + [anon_sym_enum] = ACTIONS(4445), + [anon_sym_class] = ACTIONS(4445), + [anon_sym_struct] = ACTIONS(4445), + [anon_sym_union] = ACTIONS(4445), + [anon_sym_if] = ACTIONS(4445), + [anon_sym_switch] = ACTIONS(4445), + [anon_sym_case] = ACTIONS(4445), + [anon_sym_default] = ACTIONS(4445), + [anon_sym_while] = ACTIONS(4445), + [anon_sym_do] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(4445), + [anon_sym_return] = ACTIONS(4445), + [anon_sym_break] = ACTIONS(4445), + [anon_sym_continue] = ACTIONS(4445), + [anon_sym_goto] = ACTIONS(4445), + [anon_sym___try] = ACTIONS(4445), + [anon_sym___leave] = ACTIONS(4445), + [anon_sym_not] = ACTIONS(4445), + [anon_sym_compl] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4447), + [anon_sym_PLUS_PLUS] = ACTIONS(4447), + [anon_sym_sizeof] = ACTIONS(4445), + [anon_sym___alignof__] = ACTIONS(4445), + [anon_sym___alignof] = ACTIONS(4445), + [anon_sym__alignof] = ACTIONS(4445), + [anon_sym_alignof] = ACTIONS(4445), + [anon_sym__Alignof] = ACTIONS(4445), + [anon_sym_offsetof] = ACTIONS(4445), + [anon_sym__Generic] = ACTIONS(4445), + [anon_sym_typename] = ACTIONS(4445), + [anon_sym_asm] = ACTIONS(4445), + [anon_sym___asm__] = ACTIONS(4445), + [anon_sym___asm] = ACTIONS(4445), + [sym_number_literal] = ACTIONS(4447), + [anon_sym_L_SQUOTE] = ACTIONS(4447), + [anon_sym_u_SQUOTE] = ACTIONS(4447), + [anon_sym_U_SQUOTE] = ACTIONS(4447), + [anon_sym_u8_SQUOTE] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_L_DQUOTE] = ACTIONS(4447), + [anon_sym_u_DQUOTE] = ACTIONS(4447), + [anon_sym_U_DQUOTE] = ACTIONS(4447), + [anon_sym_u8_DQUOTE] = ACTIONS(4447), + [anon_sym_DQUOTE] = ACTIONS(4447), + [sym_true] = ACTIONS(4445), + [sym_false] = ACTIONS(4445), + [anon_sym_NULL] = ACTIONS(4445), + [anon_sym_nullptr] = ACTIONS(4445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4445), + [anon_sym_decltype] = ACTIONS(4445), + [anon_sym_explicit] = ACTIONS(4445), + [anon_sym_export] = ACTIONS(4445), + [anon_sym_module] = ACTIONS(4445), + [anon_sym_import] = ACTIONS(4445), + [anon_sym_template] = ACTIONS(4445), + [anon_sym_operator] = ACTIONS(4445), + [anon_sym_try] = ACTIONS(4445), + [anon_sym_delete] = ACTIONS(4445), + [anon_sym_throw] = ACTIONS(4445), + [anon_sym_namespace] = ACTIONS(4445), + [anon_sym_static_assert] = ACTIONS(4445), + [anon_sym_concept] = ACTIONS(4445), + [anon_sym_co_return] = ACTIONS(4445), + [anon_sym_co_yield] = ACTIONS(4445), + [anon_sym_R_DQUOTE] = ACTIONS(4447), + [anon_sym_LR_DQUOTE] = ACTIONS(4447), + [anon_sym_uR_DQUOTE] = ACTIONS(4447), + [anon_sym_UR_DQUOTE] = ACTIONS(4447), + [anon_sym_u8R_DQUOTE] = ACTIONS(4447), + [anon_sym_co_await] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4445), + [anon_sym_requires] = ACTIONS(4445), + [anon_sym_CARET_CARET] = ACTIONS(4447), + [anon_sym_LBRACK_COLON] = ACTIONS(4447), + [sym_this] = ACTIONS(4445), }, - [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(542)] = { + [sym_identifier] = ACTIONS(4449), + [aux_sym_preproc_include_token1] = ACTIONS(4449), + [aux_sym_preproc_def_token1] = ACTIONS(4449), + [aux_sym_preproc_if_token1] = ACTIONS(4449), + [aux_sym_preproc_if_token2] = ACTIONS(4449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), + [aux_sym_preproc_else_token1] = ACTIONS(4449), + [aux_sym_preproc_elif_token1] = ACTIONS(4449), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4449), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4449), + [sym_preproc_directive] = ACTIONS(4449), + [anon_sym_LPAREN2] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_TILDE] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_AMP_AMP] = ACTIONS(4451), + [anon_sym_AMP] = ACTIONS(4449), + [anon_sym_SEMI] = ACTIONS(4451), + [anon_sym___extension__] = ACTIONS(4449), + [anon_sym_typedef] = ACTIONS(4449), + [anon_sym_virtual] = ACTIONS(4449), + [anon_sym_extern] = ACTIONS(4449), + [anon_sym___attribute__] = ACTIONS(4449), + [anon_sym___attribute] = ACTIONS(4449), + [anon_sym_using] = ACTIONS(4449), + [anon_sym_COLON_COLON] = ACTIONS(4451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4451), + [anon_sym___declspec] = ACTIONS(4449), + [anon_sym___based] = ACTIONS(4449), + [anon_sym___cdecl] = ACTIONS(4449), + [anon_sym___clrcall] = ACTIONS(4449), + [anon_sym___stdcall] = ACTIONS(4449), + [anon_sym___fastcall] = ACTIONS(4449), + [anon_sym___thiscall] = ACTIONS(4449), + [anon_sym___vectorcall] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(4451), + [anon_sym_signed] = ACTIONS(4449), + [anon_sym_unsigned] = ACTIONS(4449), + [anon_sym_long] = ACTIONS(4449), + [anon_sym_short] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_register] = ACTIONS(4449), + [anon_sym_inline] = ACTIONS(4449), + [anon_sym___inline] = ACTIONS(4449), + [anon_sym___inline__] = ACTIONS(4449), + [anon_sym___forceinline] = ACTIONS(4449), + [anon_sym_thread_local] = ACTIONS(4449), + [anon_sym___thread] = ACTIONS(4449), + [anon_sym_const] = ACTIONS(4449), + [anon_sym_constexpr] = ACTIONS(4449), + [anon_sym_volatile] = ACTIONS(4449), + [anon_sym_restrict] = ACTIONS(4449), + [anon_sym___restrict__] = ACTIONS(4449), + [anon_sym__Atomic] = ACTIONS(4449), + [anon_sym__Noreturn] = ACTIONS(4449), + [anon_sym_noreturn] = ACTIONS(4449), + [anon_sym__Nonnull] = ACTIONS(4449), + [anon_sym_mutable] = ACTIONS(4449), + [anon_sym_constinit] = ACTIONS(4449), + [anon_sym_consteval] = ACTIONS(4449), + [anon_sym_alignas] = ACTIONS(4449), + [anon_sym__Alignas] = ACTIONS(4449), + [sym_primitive_type] = ACTIONS(4449), + [anon_sym_enum] = ACTIONS(4449), + [anon_sym_class] = ACTIONS(4449), + [anon_sym_struct] = ACTIONS(4449), + [anon_sym_union] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(4449), + [anon_sym_switch] = ACTIONS(4449), + [anon_sym_case] = ACTIONS(4449), + [anon_sym_default] = ACTIONS(4449), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_do] = ACTIONS(4449), + [anon_sym_for] = ACTIONS(4449), + [anon_sym_return] = ACTIONS(4449), + [anon_sym_break] = ACTIONS(4449), + [anon_sym_continue] = ACTIONS(4449), + [anon_sym_goto] = ACTIONS(4449), + [anon_sym___try] = ACTIONS(4449), + [anon_sym___leave] = ACTIONS(4449), + [anon_sym_not] = ACTIONS(4449), + [anon_sym_compl] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4451), + [anon_sym_PLUS_PLUS] = ACTIONS(4451), + [anon_sym_sizeof] = ACTIONS(4449), + [anon_sym___alignof__] = ACTIONS(4449), + [anon_sym___alignof] = ACTIONS(4449), + [anon_sym__alignof] = ACTIONS(4449), + [anon_sym_alignof] = ACTIONS(4449), + [anon_sym__Alignof] = ACTIONS(4449), + [anon_sym_offsetof] = ACTIONS(4449), + [anon_sym__Generic] = ACTIONS(4449), + [anon_sym_typename] = ACTIONS(4449), + [anon_sym_asm] = ACTIONS(4449), + [anon_sym___asm__] = ACTIONS(4449), + [anon_sym___asm] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4451), + [anon_sym_L_SQUOTE] = ACTIONS(4451), + [anon_sym_u_SQUOTE] = ACTIONS(4451), + [anon_sym_U_SQUOTE] = ACTIONS(4451), + [anon_sym_u8_SQUOTE] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_L_DQUOTE] = ACTIONS(4451), + [anon_sym_u_DQUOTE] = ACTIONS(4451), + [anon_sym_U_DQUOTE] = ACTIONS(4451), + [anon_sym_u8_DQUOTE] = ACTIONS(4451), + [anon_sym_DQUOTE] = ACTIONS(4451), + [sym_true] = ACTIONS(4449), + [sym_false] = ACTIONS(4449), + [anon_sym_NULL] = ACTIONS(4449), + [anon_sym_nullptr] = ACTIONS(4449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4449), + [anon_sym_decltype] = ACTIONS(4449), + [anon_sym_explicit] = ACTIONS(4449), + [anon_sym_export] = ACTIONS(4449), + [anon_sym_module] = ACTIONS(4449), + [anon_sym_import] = ACTIONS(4449), + [anon_sym_template] = ACTIONS(4449), + [anon_sym_operator] = ACTIONS(4449), + [anon_sym_try] = ACTIONS(4449), + [anon_sym_delete] = ACTIONS(4449), + [anon_sym_throw] = ACTIONS(4449), + [anon_sym_namespace] = ACTIONS(4449), + [anon_sym_static_assert] = ACTIONS(4449), + [anon_sym_concept] = ACTIONS(4449), + [anon_sym_co_return] = ACTIONS(4449), + [anon_sym_co_yield] = ACTIONS(4449), + [anon_sym_R_DQUOTE] = ACTIONS(4451), + [anon_sym_LR_DQUOTE] = ACTIONS(4451), + [anon_sym_uR_DQUOTE] = ACTIONS(4451), + [anon_sym_UR_DQUOTE] = ACTIONS(4451), + [anon_sym_u8R_DQUOTE] = ACTIONS(4451), + [anon_sym_co_await] = ACTIONS(4449), + [anon_sym_new] = ACTIONS(4449), + [anon_sym_requires] = ACTIONS(4449), + [anon_sym_CARET_CARET] = ACTIONS(4451), + [anon_sym_LBRACK_COLON] = ACTIONS(4451), + [sym_this] = ACTIONS(4449), }, - [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)] = { + [STATE(543)] = { + [sym_catch_clause] = STATE(544), + [aux_sym_constructor_try_statement_repeat1] = STATE(544), [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), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), [anon_sym_DASH] = ACTIONS(3163), [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3165), [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3165), [anon_sym___extension__] = ACTIONS(3163), [anon_sym_typedef] = ACTIONS(3163), [anon_sym_virtual] = ACTIONS(3163), @@ -135113,8 +140847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(3165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3165), [anon_sym___declspec] = ACTIONS(3163), [anon_sym___based] = ACTIONS(3163), [anon_sym___cdecl] = ACTIONS(3163), @@ -135123,7 +140857,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(3163), [anon_sym___thiscall] = ACTIONS(3163), [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), [anon_sym_signed] = ACTIONS(3163), [anon_sym_unsigned] = ACTIONS(3163), [anon_sym_long] = ACTIONS(3163), @@ -135172,8 +140907,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH_DASH] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), [anon_sym_sizeof] = ACTIONS(3163), [anon_sym___alignof__] = ACTIONS(3163), [anon_sym___alignof] = ACTIONS(3163), @@ -135186,17 +140921,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(3165), + [anon_sym_L_SQUOTE] = ACTIONS(3165), + [anon_sym_u_SQUOTE] = ACTIONS(3165), + [anon_sym_U_SQUOTE] = ACTIONS(3165), + [anon_sym_u8_SQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_L_DQUOTE] = ACTIONS(3165), + [anon_sym_u_DQUOTE] = ACTIONS(3165), + [anon_sym_U_DQUOTE] = ACTIONS(3165), + [anon_sym_u8_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), [sym_true] = ACTIONS(3163), [sym_false] = ACTIONS(3163), [anon_sym_NULL] = ACTIONS(3163), @@ -135206,7 +140941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -135218,163 +140952,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_catch] = ACTIONS(4453), + [anon_sym_R_DQUOTE] = ACTIONS(3165), + [anon_sym_LR_DQUOTE] = ACTIONS(3165), + [anon_sym_uR_DQUOTE] = ACTIONS(3165), + [anon_sym_UR_DQUOTE] = ACTIONS(3165), + [anon_sym_u8R_DQUOTE] = ACTIONS(3165), [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), + [anon_sym_CARET_CARET] = ACTIONS(3165), + [anon_sym_LBRACK_COLON] = ACTIONS(3165), [sym_this] = ACTIONS(3163), }, - [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), + [STATE(544)] = { + [sym_catch_clause] = STATE(544), + [aux_sym_constructor_try_statement_repeat1] = STATE(544), + [sym_identifier] = ACTIONS(3169), + [aux_sym_preproc_include_token1] = ACTIONS(3169), + [aux_sym_preproc_def_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token1] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3169), + [sym_preproc_directive] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym___extension__] = ACTIONS(3169), + [anon_sym_typedef] = ACTIONS(3169), + [anon_sym_virtual] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym___attribute__] = ACTIONS(3169), + [anon_sym___attribute] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3171), + [anon_sym___declspec] = ACTIONS(3169), + [anon_sym___based] = ACTIONS(3169), + [anon_sym___cdecl] = ACTIONS(3169), + [anon_sym___clrcall] = ACTIONS(3169), + [anon_sym___stdcall] = ACTIONS(3169), + [anon_sym___fastcall] = ACTIONS(3169), + [anon_sym___thiscall] = ACTIONS(3169), + [anon_sym___vectorcall] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_register] = ACTIONS(3169), + [anon_sym_inline] = ACTIONS(3169), + [anon_sym___inline] = ACTIONS(3169), + [anon_sym___inline__] = ACTIONS(3169), + [anon_sym___forceinline] = ACTIONS(3169), + [anon_sym_thread_local] = ACTIONS(3169), + [anon_sym___thread] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_constexpr] = ACTIONS(3169), + [anon_sym_volatile] = ACTIONS(3169), + [anon_sym_restrict] = ACTIONS(3169), + [anon_sym___restrict__] = ACTIONS(3169), + [anon_sym__Atomic] = ACTIONS(3169), + [anon_sym__Noreturn] = ACTIONS(3169), + [anon_sym_noreturn] = ACTIONS(3169), + [anon_sym__Nonnull] = ACTIONS(3169), + [anon_sym_mutable] = ACTIONS(3169), + [anon_sym_constinit] = ACTIONS(3169), + [anon_sym_consteval] = ACTIONS(3169), + [anon_sym_alignas] = ACTIONS(3169), + [anon_sym__Alignas] = ACTIONS(3169), + [sym_primitive_type] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_case] = ACTIONS(3169), + [anon_sym_default] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_goto] = ACTIONS(3169), + [anon_sym___try] = ACTIONS(3169), + [anon_sym___leave] = ACTIONS(3169), + [anon_sym_not] = ACTIONS(3169), + [anon_sym_compl] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_sizeof] = ACTIONS(3169), + [anon_sym___alignof__] = ACTIONS(3169), + [anon_sym___alignof] = ACTIONS(3169), + [anon_sym__alignof] = ACTIONS(3169), + [anon_sym_alignof] = ACTIONS(3169), + [anon_sym__Alignof] = ACTIONS(3169), + [anon_sym_offsetof] = ACTIONS(3169), + [anon_sym__Generic] = ACTIONS(3169), + [anon_sym_typename] = ACTIONS(3169), + [anon_sym_asm] = ACTIONS(3169), + [anon_sym___asm__] = ACTIONS(3169), + [anon_sym___asm] = ACTIONS(3169), + [sym_number_literal] = ACTIONS(3171), + [anon_sym_L_SQUOTE] = ACTIONS(3171), + [anon_sym_u_SQUOTE] = ACTIONS(3171), + [anon_sym_U_SQUOTE] = ACTIONS(3171), + [anon_sym_u8_SQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_L_DQUOTE] = ACTIONS(3171), + [anon_sym_u_DQUOTE] = ACTIONS(3171), + [anon_sym_U_DQUOTE] = ACTIONS(3171), + [anon_sym_u8_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [sym_true] = ACTIONS(3169), + [sym_false] = ACTIONS(3169), + [anon_sym_NULL] = ACTIONS(3169), + [anon_sym_nullptr] = ACTIONS(3169), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3169), + [anon_sym_decltype] = ACTIONS(3169), + [anon_sym_explicit] = ACTIONS(3169), + [anon_sym_export] = ACTIONS(3169), + [anon_sym_import] = ACTIONS(3169), + [anon_sym_template] = ACTIONS(3169), + [anon_sym_operator] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_delete] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_namespace] = ACTIONS(3169), + [anon_sym_static_assert] = ACTIONS(3169), + [anon_sym_concept] = ACTIONS(3169), + [anon_sym_co_return] = ACTIONS(3169), + [anon_sym_co_yield] = ACTIONS(3169), + [anon_sym_catch] = ACTIONS(4455), + [anon_sym_R_DQUOTE] = ACTIONS(3171), + [anon_sym_LR_DQUOTE] = ACTIONS(3171), + [anon_sym_uR_DQUOTE] = ACTIONS(3171), + [anon_sym_UR_DQUOTE] = ACTIONS(3171), + [anon_sym_u8R_DQUOTE] = ACTIONS(3171), + [anon_sym_co_await] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_requires] = ACTIONS(3169), + [anon_sym_CARET_CARET] = ACTIONS(3171), + [anon_sym_LBRACK_COLON] = ACTIONS(3171), + [sym_this] = ACTIONS(3169), }, - [STATE(527)] = { + [STATE(545)] = { + [sym_catch_clause] = STATE(439), + [aux_sym_constructor_try_statement_repeat1] = STATE(439), + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_include_token1] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token2] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym___attribute] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym___cdecl] = ACTIONS(3184), + [anon_sym___clrcall] = ACTIONS(3184), + [anon_sym___stdcall] = ACTIONS(3184), + [anon_sym___fastcall] = ACTIONS(3184), + [anon_sym___thiscall] = ACTIONS(3184), + [anon_sym___vectorcall] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym__Nonnull] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym__Alignas] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym___try] = ACTIONS(3184), + [anon_sym___leave] = ACTIONS(3184), + [anon_sym_not] = ACTIONS(3184), + [anon_sym_compl] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3184), + [anon_sym___alignof__] = ACTIONS(3184), + [anon_sym___alignof] = ACTIONS(3184), + [anon_sym__alignof] = ACTIONS(3184), + [anon_sym_alignof] = ACTIONS(3184), + [anon_sym__Alignof] = ACTIONS(3184), + [anon_sym_offsetof] = ACTIONS(3184), + [anon_sym__Generic] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_asm] = ACTIONS(3184), + [anon_sym___asm__] = ACTIONS(3184), + [anon_sym___asm] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_L_SQUOTE] = ACTIONS(3186), + [anon_sym_u_SQUOTE] = ACTIONS(3186), + [anon_sym_U_SQUOTE] = ACTIONS(3186), + [anon_sym_u8_SQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_L_DQUOTE] = ACTIONS(3186), + [anon_sym_u_DQUOTE] = ACTIONS(3186), + [anon_sym_U_DQUOTE] = ACTIONS(3186), + [anon_sym_u8_DQUOTE] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [anon_sym_NULL] = ACTIONS(3184), + [anon_sym_nullptr] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_module] = ACTIONS(3184), + [anon_sym_import] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_concept] = ACTIONS(3184), + [anon_sym_co_return] = ACTIONS(3184), + [anon_sym_co_yield] = ACTIONS(3184), + [anon_sym_catch] = ACTIONS(3963), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_requires] = ACTIONS(3184), + [anon_sym_CARET_CARET] = ACTIONS(3186), + [anon_sym_LBRACK_COLON] = ACTIONS(3186), + [sym_this] = ACTIONS(3184), + }, + [STATE(546)] = { + [sym_catch_clause] = STATE(439), + [aux_sym_constructor_try_statement_repeat1] = STATE(439), + [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(3963), + [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(547)] = { [sym_identifier] = ACTIONS(4458), [aux_sym_preproc_include_token1] = ACTIONS(4458), [aux_sym_preproc_def_token1] = ACTIONS(4458), @@ -135517,579 +141540,579 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4460), [sym_this] = ACTIONS(4458), }, - [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), + [STATE(548)] = { + [sym_else_clause] = STATE(631), + [sym_identifier] = ACTIONS(3378), + [aux_sym_preproc_include_token1] = ACTIONS(3378), + [aux_sym_preproc_def_token1] = ACTIONS(3378), + [aux_sym_preproc_if_token1] = ACTIONS(3378), + [aux_sym_preproc_if_token2] = ACTIONS(3378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3378), + [sym_preproc_directive] = ACTIONS(3378), + [anon_sym_LPAREN2] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_AMP_AMP] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym___extension__] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3378), + [anon_sym_virtual] = ACTIONS(3378), + [anon_sym_extern] = ACTIONS(3378), + [anon_sym___attribute__] = ACTIONS(3378), + [anon_sym___attribute] = ACTIONS(3378), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_COLON_COLON] = ACTIONS(3380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3380), + [anon_sym___declspec] = ACTIONS(3378), + [anon_sym___based] = ACTIONS(3378), + [anon_sym___cdecl] = ACTIONS(3378), + [anon_sym___clrcall] = ACTIONS(3378), + [anon_sym___stdcall] = ACTIONS(3378), + [anon_sym___fastcall] = ACTIONS(3378), + [anon_sym___thiscall] = ACTIONS(3378), + [anon_sym___vectorcall] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3378), + [anon_sym_unsigned] = ACTIONS(3378), + [anon_sym_long] = ACTIONS(3378), + [anon_sym_short] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_register] = ACTIONS(3378), + [anon_sym_inline] = ACTIONS(3378), + [anon_sym___inline] = ACTIONS(3378), + [anon_sym___inline__] = ACTIONS(3378), + [anon_sym___forceinline] = ACTIONS(3378), + [anon_sym_thread_local] = ACTIONS(3378), + [anon_sym___thread] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_constexpr] = ACTIONS(3378), + [anon_sym_volatile] = ACTIONS(3378), + [anon_sym_restrict] = ACTIONS(3378), + [anon_sym___restrict__] = ACTIONS(3378), + [anon_sym__Atomic] = ACTIONS(3378), + [anon_sym__Noreturn] = ACTIONS(3378), + [anon_sym_noreturn] = ACTIONS(3378), + [anon_sym__Nonnull] = ACTIONS(3378), + [anon_sym_mutable] = ACTIONS(3378), + [anon_sym_constinit] = ACTIONS(3378), + [anon_sym_consteval] = ACTIONS(3378), + [anon_sym_alignas] = ACTIONS(3378), + [anon_sym__Alignas] = ACTIONS(3378), + [sym_primitive_type] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_case] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym___try] = ACTIONS(3378), + [anon_sym___leave] = ACTIONS(3378), + [anon_sym_not] = ACTIONS(3378), + [anon_sym_compl] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_sizeof] = ACTIONS(3378), + [anon_sym___alignof__] = ACTIONS(3378), + [anon_sym___alignof] = ACTIONS(3378), + [anon_sym__alignof] = ACTIONS(3378), + [anon_sym_alignof] = ACTIONS(3378), + [anon_sym__Alignof] = ACTIONS(3378), + [anon_sym_offsetof] = ACTIONS(3378), + [anon_sym__Generic] = ACTIONS(3378), + [anon_sym_typename] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym___asm__] = ACTIONS(3378), + [anon_sym___asm] = ACTIONS(3378), + [sym_number_literal] = ACTIONS(3380), + [anon_sym_L_SQUOTE] = ACTIONS(3380), + [anon_sym_u_SQUOTE] = ACTIONS(3380), + [anon_sym_U_SQUOTE] = ACTIONS(3380), + [anon_sym_u8_SQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [anon_sym_L_DQUOTE] = ACTIONS(3380), + [anon_sym_u_DQUOTE] = ACTIONS(3380), + [anon_sym_U_DQUOTE] = ACTIONS(3380), + [anon_sym_u8_DQUOTE] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [anon_sym_NULL] = ACTIONS(3378), + [anon_sym_nullptr] = ACTIONS(3378), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3378), + [anon_sym_decltype] = ACTIONS(3378), + [anon_sym_explicit] = ACTIONS(3378), + [anon_sym_export] = ACTIONS(3378), + [anon_sym_module] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_template] = ACTIONS(3378), + [anon_sym_operator] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_namespace] = ACTIONS(3378), + [anon_sym_static_assert] = ACTIONS(3378), + [anon_sym_concept] = ACTIONS(3378), + [anon_sym_co_return] = ACTIONS(3378), + [anon_sym_co_yield] = ACTIONS(3378), + [anon_sym_R_DQUOTE] = ACTIONS(3380), + [anon_sym_LR_DQUOTE] = ACTIONS(3380), + [anon_sym_uR_DQUOTE] = ACTIONS(3380), + [anon_sym_UR_DQUOTE] = ACTIONS(3380), + [anon_sym_u8R_DQUOTE] = ACTIONS(3380), + [anon_sym_co_await] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_requires] = ACTIONS(3378), + [anon_sym_CARET_CARET] = ACTIONS(3380), + [anon_sym_LBRACK_COLON] = ACTIONS(3380), + [sym_this] = ACTIONS(3378), }, - [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), + [STATE(549)] = { + [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(4466), + [anon_sym_BANG] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [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(4466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4466), + [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(4466), + [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(4466), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [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(4466), + [anon_sym_L_SQUOTE] = ACTIONS(4466), + [anon_sym_u_SQUOTE] = ACTIONS(4466), + [anon_sym_U_SQUOTE] = ACTIONS(4466), + [anon_sym_u8_SQUOTE] = ACTIONS(4466), + [anon_sym_SQUOTE] = ACTIONS(4466), + [anon_sym_L_DQUOTE] = ACTIONS(4466), + [anon_sym_u_DQUOTE] = ACTIONS(4466), + [anon_sym_U_DQUOTE] = ACTIONS(4466), + [anon_sym_u8_DQUOTE] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [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(4466), + [anon_sym_LR_DQUOTE] = ACTIONS(4466), + [anon_sym_uR_DQUOTE] = ACTIONS(4466), + [anon_sym_UR_DQUOTE] = ACTIONS(4466), + [anon_sym_u8R_DQUOTE] = ACTIONS(4466), + [anon_sym_co_await] = ACTIONS(4464), + [anon_sym_new] = ACTIONS(4464), + [anon_sym_requires] = ACTIONS(4464), + [anon_sym_CARET_CARET] = ACTIONS(4466), + [anon_sym_LBRACK_COLON] = ACTIONS(4466), + [sym_this] = ACTIONS(4464), }, - [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), + [STATE(550)] = { + [sym_catch_clause] = STATE(544), + [aux_sym_constructor_try_statement_repeat1] = STATE(544), + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_include_token1] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym___attribute] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym___cdecl] = ACTIONS(3184), + [anon_sym___clrcall] = ACTIONS(3184), + [anon_sym___stdcall] = ACTIONS(3184), + [anon_sym___fastcall] = ACTIONS(3184), + [anon_sym___thiscall] = ACTIONS(3184), + [anon_sym___vectorcall] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym__Nonnull] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym__Alignas] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym___try] = ACTIONS(3184), + [anon_sym___leave] = ACTIONS(3184), + [anon_sym_not] = ACTIONS(3184), + [anon_sym_compl] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3184), + [anon_sym___alignof__] = ACTIONS(3184), + [anon_sym___alignof] = ACTIONS(3184), + [anon_sym__alignof] = ACTIONS(3184), + [anon_sym_alignof] = ACTIONS(3184), + [anon_sym__Alignof] = ACTIONS(3184), + [anon_sym_offsetof] = ACTIONS(3184), + [anon_sym__Generic] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_asm] = ACTIONS(3184), + [anon_sym___asm__] = ACTIONS(3184), + [anon_sym___asm] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_L_SQUOTE] = ACTIONS(3186), + [anon_sym_u_SQUOTE] = ACTIONS(3186), + [anon_sym_U_SQUOTE] = ACTIONS(3186), + [anon_sym_u8_SQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_L_DQUOTE] = ACTIONS(3186), + [anon_sym_u_DQUOTE] = ACTIONS(3186), + [anon_sym_U_DQUOTE] = ACTIONS(3186), + [anon_sym_u8_DQUOTE] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [anon_sym_NULL] = ACTIONS(3184), + [anon_sym_nullptr] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_import] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_concept] = ACTIONS(3184), + [anon_sym_co_return] = ACTIONS(3184), + [anon_sym_co_yield] = ACTIONS(3184), + [anon_sym_catch] = ACTIONS(4453), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_requires] = ACTIONS(3184), + [anon_sym_CARET_CARET] = ACTIONS(3186), + [anon_sym_LBRACK_COLON] = ACTIONS(3186), + [sym_this] = ACTIONS(3184), }, - [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), + [STATE(551)] = { + [sym_identifier] = ACTIONS(4468), + [aux_sym_preproc_include_token1] = ACTIONS(4468), + [aux_sym_preproc_def_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token2] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4468), + [aux_sym_preproc_else_token1] = ACTIONS(4468), + [aux_sym_preproc_elif_token1] = ACTIONS(4468), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4468), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4468), + [sym_preproc_directive] = ACTIONS(4468), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_BANG] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4468), + [anon_sym_typedef] = ACTIONS(4468), + [anon_sym_virtual] = ACTIONS(4468), + [anon_sym_extern] = ACTIONS(4468), + [anon_sym___attribute__] = ACTIONS(4468), + [anon_sym___attribute] = ACTIONS(4468), + [anon_sym_using] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4470), + [anon_sym___declspec] = ACTIONS(4468), + [anon_sym___based] = ACTIONS(4468), + [anon_sym___cdecl] = ACTIONS(4468), + [anon_sym___clrcall] = ACTIONS(4468), + [anon_sym___stdcall] = ACTIONS(4468), + [anon_sym___fastcall] = ACTIONS(4468), + [anon_sym___thiscall] = ACTIONS(4468), + [anon_sym___vectorcall] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_signed] = ACTIONS(4468), + [anon_sym_unsigned] = ACTIONS(4468), + [anon_sym_long] = ACTIONS(4468), + [anon_sym_short] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_static] = ACTIONS(4468), + [anon_sym_register] = ACTIONS(4468), + [anon_sym_inline] = ACTIONS(4468), + [anon_sym___inline] = ACTIONS(4468), + [anon_sym___inline__] = ACTIONS(4468), + [anon_sym___forceinline] = ACTIONS(4468), + [anon_sym_thread_local] = ACTIONS(4468), + [anon_sym___thread] = ACTIONS(4468), + [anon_sym_const] = ACTIONS(4468), + [anon_sym_constexpr] = ACTIONS(4468), + [anon_sym_volatile] = ACTIONS(4468), + [anon_sym_restrict] = ACTIONS(4468), + [anon_sym___restrict__] = ACTIONS(4468), + [anon_sym__Atomic] = ACTIONS(4468), + [anon_sym__Noreturn] = ACTIONS(4468), + [anon_sym_noreturn] = ACTIONS(4468), + [anon_sym__Nonnull] = ACTIONS(4468), + [anon_sym_mutable] = ACTIONS(4468), + [anon_sym_constinit] = ACTIONS(4468), + [anon_sym_consteval] = ACTIONS(4468), + [anon_sym_alignas] = ACTIONS(4468), + [anon_sym__Alignas] = ACTIONS(4468), + [sym_primitive_type] = ACTIONS(4468), + [anon_sym_enum] = ACTIONS(4468), + [anon_sym_class] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_union] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_switch] = ACTIONS(4468), + [anon_sym_case] = ACTIONS(4468), + [anon_sym_default] = ACTIONS(4468), + [anon_sym_while] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_for] = ACTIONS(4468), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_break] = ACTIONS(4468), + [anon_sym_continue] = ACTIONS(4468), + [anon_sym_goto] = ACTIONS(4468), + [anon_sym_not] = ACTIONS(4468), + [anon_sym_compl] = ACTIONS(4468), + [anon_sym_DASH_DASH] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4470), + [anon_sym_sizeof] = ACTIONS(4468), + [anon_sym___alignof__] = ACTIONS(4468), + [anon_sym___alignof] = ACTIONS(4468), + [anon_sym__alignof] = ACTIONS(4468), + [anon_sym_alignof] = ACTIONS(4468), + [anon_sym__Alignof] = ACTIONS(4468), + [anon_sym_offsetof] = ACTIONS(4468), + [anon_sym__Generic] = ACTIONS(4468), + [anon_sym_typename] = ACTIONS(4468), + [anon_sym_asm] = ACTIONS(4468), + [anon_sym___asm__] = ACTIONS(4468), + [anon_sym___asm] = ACTIONS(4468), + [sym_number_literal] = ACTIONS(4470), + [anon_sym_L_SQUOTE] = ACTIONS(4470), + [anon_sym_u_SQUOTE] = ACTIONS(4470), + [anon_sym_U_SQUOTE] = ACTIONS(4470), + [anon_sym_u8_SQUOTE] = ACTIONS(4470), + [anon_sym_SQUOTE] = ACTIONS(4470), + [anon_sym_L_DQUOTE] = ACTIONS(4470), + [anon_sym_u_DQUOTE] = ACTIONS(4470), + [anon_sym_U_DQUOTE] = ACTIONS(4470), + [anon_sym_u8_DQUOTE] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_true] = ACTIONS(4468), + [sym_false] = ACTIONS(4468), + [anon_sym_NULL] = ACTIONS(4468), + [anon_sym_nullptr] = ACTIONS(4468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4468), + [anon_sym_decltype] = ACTIONS(4468), + [anon_sym_explicit] = ACTIONS(4468), + [anon_sym_export] = ACTIONS(4468), + [anon_sym_module] = ACTIONS(4468), + [anon_sym_import] = ACTIONS(4468), + [anon_sym_template] = ACTIONS(4468), + [anon_sym_operator] = ACTIONS(4468), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_delete] = ACTIONS(4468), + [anon_sym_throw] = ACTIONS(4468), + [anon_sym_namespace] = ACTIONS(4468), + [anon_sym_static_assert] = ACTIONS(4468), + [anon_sym_concept] = ACTIONS(4468), + [anon_sym_co_return] = ACTIONS(4468), + [anon_sym_co_yield] = ACTIONS(4468), + [anon_sym_R_DQUOTE] = ACTIONS(4470), + [anon_sym_LR_DQUOTE] = ACTIONS(4470), + [anon_sym_uR_DQUOTE] = ACTIONS(4470), + [anon_sym_UR_DQUOTE] = ACTIONS(4470), + [anon_sym_u8R_DQUOTE] = ACTIONS(4470), + [anon_sym_co_await] = ACTIONS(4468), + [anon_sym_new] = ACTIONS(4468), + [anon_sym_requires] = ACTIONS(4468), + [anon_sym_CARET_CARET] = ACTIONS(4470), + [anon_sym_LBRACK_COLON] = ACTIONS(4470), + [sym_this] = ACTIONS(4468), }, - [STATE(532)] = { + [STATE(552)] = { [sym_identifier] = ACTIONS(4472), [aux_sym_preproc_include_token1] = ACTIONS(4472), [aux_sym_preproc_def_token1] = ACTIONS(4472), @@ -136232,7 +142255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4474), [sym_this] = ACTIONS(4472), }, - [STATE(533)] = { + [STATE(553)] = { [sym_identifier] = ACTIONS(4476), [aux_sym_preproc_include_token1] = ACTIONS(4476), [aux_sym_preproc_def_token1] = ACTIONS(4476), @@ -136375,150 +142398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4478), [sym_this] = ACTIONS(4476), }, - [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), - }, - [STATE(535)] = { + [STATE(554)] = { [sym_identifier] = ACTIONS(4480), [aux_sym_preproc_include_token1] = ACTIONS(4480), [aux_sym_preproc_def_token1] = ACTIONS(4480), @@ -136661,7 +142541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4482), [sym_this] = ACTIONS(4480), }, - [STATE(536)] = { + [STATE(555)] = { [sym_identifier] = ACTIONS(4484), [aux_sym_preproc_include_token1] = ACTIONS(4484), [aux_sym_preproc_def_token1] = ACTIONS(4484), @@ -136804,7 +142684,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(556)] = { [sym_identifier] = ACTIONS(4488), [aux_sym_preproc_include_token1] = ACTIONS(4488), [aux_sym_preproc_def_token1] = ACTIONS(4488), @@ -136947,7 +142827,436 @@ 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(557)] = { + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_include_token1] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym___attribute] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym___cdecl] = ACTIONS(3392), + [anon_sym___clrcall] = ACTIONS(3392), + [anon_sym___stdcall] = ACTIONS(3392), + [anon_sym___fastcall] = ACTIONS(3392), + [anon_sym___thiscall] = ACTIONS(3392), + [anon_sym___vectorcall] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym__Nonnull] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym__Alignas] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_else] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3392), + [anon_sym_default] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_goto] = ACTIONS(3392), + [anon_sym___try] = ACTIONS(3392), + [anon_sym___leave] = ACTIONS(3392), + [anon_sym_not] = ACTIONS(3392), + [anon_sym_compl] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_sizeof] = ACTIONS(3392), + [anon_sym___alignof__] = ACTIONS(3392), + [anon_sym___alignof] = ACTIONS(3392), + [anon_sym__alignof] = ACTIONS(3392), + [anon_sym_alignof] = ACTIONS(3392), + [anon_sym__Alignof] = ACTIONS(3392), + [anon_sym_offsetof] = ACTIONS(3392), + [anon_sym__Generic] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [anon_sym_asm] = ACTIONS(3392), + [anon_sym___asm__] = ACTIONS(3392), + [anon_sym___asm] = ACTIONS(3392), + [sym_number_literal] = ACTIONS(3394), + [anon_sym_L_SQUOTE] = ACTIONS(3394), + [anon_sym_u_SQUOTE] = ACTIONS(3394), + [anon_sym_U_SQUOTE] = ACTIONS(3394), + [anon_sym_u8_SQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_L_DQUOTE] = ACTIONS(3394), + [anon_sym_u_DQUOTE] = ACTIONS(3394), + [anon_sym_U_DQUOTE] = ACTIONS(3394), + [anon_sym_u8_DQUOTE] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [anon_sym_NULL] = ACTIONS(3392), + [anon_sym_nullptr] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_export] = ACTIONS(3392), + [anon_sym_module] = ACTIONS(3392), + [anon_sym_import] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [anon_sym_concept] = ACTIONS(3392), + [anon_sym_co_return] = ACTIONS(3392), + [anon_sym_co_yield] = ACTIONS(3392), + [anon_sym_catch] = ACTIONS(3392), + [anon_sym_R_DQUOTE] = ACTIONS(3394), + [anon_sym_LR_DQUOTE] = ACTIONS(3394), + [anon_sym_uR_DQUOTE] = ACTIONS(3394), + [anon_sym_UR_DQUOTE] = ACTIONS(3394), + [anon_sym_u8R_DQUOTE] = ACTIONS(3394), + [anon_sym_co_await] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_requires] = ACTIONS(3392), + [anon_sym_CARET_CARET] = ACTIONS(3394), + [anon_sym_LBRACK_COLON] = ACTIONS(3394), + [sym_this] = ACTIONS(3392), + }, + [STATE(558)] = { + [sym_catch_clause] = STATE(544), + [aux_sym_constructor_try_statement_repeat1] = STATE(544), + [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(4453), + [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(559)] = { + [sym_identifier] = ACTIONS(3149), + [aux_sym_preproc_include_token1] = ACTIONS(3149), + [aux_sym_preproc_def_token1] = ACTIONS(3149), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_if_token2] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), + [sym_preproc_directive] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym___attribute__] = ACTIONS(3149), + [anon_sym___attribute] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), + [anon_sym___declspec] = ACTIONS(3149), + [anon_sym___based] = ACTIONS(3149), + [anon_sym___cdecl] = ACTIONS(3149), + [anon_sym___clrcall] = ACTIONS(3149), + [anon_sym___stdcall] = ACTIONS(3149), + [anon_sym___fastcall] = ACTIONS(3149), + [anon_sym___thiscall] = ACTIONS(3149), + [anon_sym___vectorcall] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_signed] = ACTIONS(3149), + [anon_sym_unsigned] = ACTIONS(3149), + [anon_sym_long] = ACTIONS(3149), + [anon_sym_short] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_register] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym___inline] = ACTIONS(3149), + [anon_sym___inline__] = ACTIONS(3149), + [anon_sym___forceinline] = ACTIONS(3149), + [anon_sym_thread_local] = ACTIONS(3149), + [anon_sym___thread] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_constexpr] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_restrict] = ACTIONS(3149), + [anon_sym___restrict__] = ACTIONS(3149), + [anon_sym__Atomic] = ACTIONS(3149), + [anon_sym__Noreturn] = ACTIONS(3149), + [anon_sym_noreturn] = ACTIONS(3149), + [anon_sym__Nonnull] = ACTIONS(3149), + [anon_sym_mutable] = ACTIONS(3149), + [anon_sym_constinit] = ACTIONS(3149), + [anon_sym_consteval] = ACTIONS(3149), + [anon_sym_alignas] = ACTIONS(3149), + [anon_sym__Alignas] = ACTIONS(3149), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_case] = ACTIONS(3149), + [anon_sym_default] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym___try] = ACTIONS(3149), + [anon_sym___leave] = ACTIONS(3149), + [anon_sym_not] = ACTIONS(3149), + [anon_sym_compl] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_sizeof] = ACTIONS(3149), + [anon_sym___alignof__] = ACTIONS(3149), + [anon_sym___alignof] = ACTIONS(3149), + [anon_sym__alignof] = ACTIONS(3149), + [anon_sym_alignof] = ACTIONS(3149), + [anon_sym__Alignof] = ACTIONS(3149), + [anon_sym_offsetof] = ACTIONS(3149), + [anon_sym__Generic] = ACTIONS(3149), + [anon_sym_typename] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym___asm__] = ACTIONS(3149), + [anon_sym___asm] = ACTIONS(3149), + [sym_number_literal] = ACTIONS(3147), + [anon_sym_L_SQUOTE] = ACTIONS(3147), + [anon_sym_u_SQUOTE] = ACTIONS(3147), + [anon_sym_U_SQUOTE] = ACTIONS(3147), + [anon_sym_u8_SQUOTE] = ACTIONS(3147), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_L_DQUOTE] = ACTIONS(3147), + [anon_sym_u_DQUOTE] = ACTIONS(3147), + [anon_sym_U_DQUOTE] = ACTIONS(3147), + [anon_sym_u8_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [anon_sym_NULL] = ACTIONS(3149), + [anon_sym_nullptr] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3149), + [anon_sym_decltype] = ACTIONS(3149), + [anon_sym_explicit] = ACTIONS(3149), + [anon_sym_export] = ACTIONS(3149), + [anon_sym_module] = ACTIONS(3149), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_operator] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_delete] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_static_assert] = ACTIONS(3149), + [anon_sym_concept] = ACTIONS(3149), + [anon_sym_co_return] = ACTIONS(3149), + [anon_sym_co_yield] = ACTIONS(3149), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_R_DQUOTE] = ACTIONS(3147), + [anon_sym_LR_DQUOTE] = ACTIONS(3147), + [anon_sym_uR_DQUOTE] = ACTIONS(3147), + [anon_sym_UR_DQUOTE] = ACTIONS(3147), + [anon_sym_u8R_DQUOTE] = ACTIONS(3147), + [anon_sym_co_await] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_requires] = ACTIONS(3149), + [anon_sym_CARET_CARET] = ACTIONS(3147), + [anon_sym_LBRACK_COLON] = ACTIONS(3147), + [sym_this] = ACTIONS(3149), + }, + [STATE(560)] = { [sym_identifier] = ACTIONS(4492), [aux_sym_preproc_include_token1] = ACTIONS(4492), [aux_sym_preproc_def_token1] = ACTIONS(4492), @@ -137090,150 +143399,7 @@ 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)] = { + [STATE(561)] = { [sym_identifier] = ACTIONS(4496), [aux_sym_preproc_include_token1] = ACTIONS(4496), [aux_sym_preproc_def_token1] = ACTIONS(4496), @@ -137376,7 +143542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4498), [sym_this] = ACTIONS(4496), }, - [STATE(541)] = { + [STATE(562)] = { [sym_identifier] = ACTIONS(4500), [aux_sym_preproc_include_token1] = ACTIONS(4500), [aux_sym_preproc_def_token1] = ACTIONS(4500), @@ -137519,7 +143685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4502), [sym_this] = ACTIONS(4500), }, - [STATE(542)] = { + [STATE(563)] = { [sym_identifier] = ACTIONS(4504), [aux_sym_preproc_include_token1] = ACTIONS(4504), [aux_sym_preproc_def_token1] = ACTIONS(4504), @@ -137532,15 +143698,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LPAREN2] = ACTIONS(4506), + [anon_sym_BANG] = ACTIONS(4506), + [anon_sym_TILDE] = ACTIONS(4506), [anon_sym_DASH] = ACTIONS(4504), [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP_AMP] = ACTIONS(4507), + [anon_sym_STAR] = ACTIONS(4506), + [anon_sym_AMP_AMP] = ACTIONS(4506), [anon_sym_AMP] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4506), [anon_sym___extension__] = ACTIONS(4504), [anon_sym_typedef] = ACTIONS(4504), [anon_sym_virtual] = ACTIONS(4504), @@ -137548,8 +143714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_COLON_COLON] = ACTIONS(4506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4506), [anon_sym___declspec] = ACTIONS(4504), [anon_sym___based] = ACTIONS(4504), [anon_sym___cdecl] = ACTIONS(4504), @@ -137558,7 +143724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(4504), [anon_sym___thiscall] = ACTIONS(4504), [anon_sym___vectorcall] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4506), [anon_sym_signed] = ACTIONS(4504), [anon_sym_unsigned] = ACTIONS(4504), [anon_sym_long] = ACTIONS(4504), @@ -137604,8 +143770,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH_DASH] = ACTIONS(4506), + [anon_sym_PLUS_PLUS] = ACTIONS(4506), [anon_sym_sizeof] = ACTIONS(4504), [anon_sym___alignof__] = ACTIONS(4504), [anon_sym___alignof] = ACTIONS(4504), @@ -137618,17 +143784,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(4506), + [anon_sym_L_SQUOTE] = ACTIONS(4506), + [anon_sym_u_SQUOTE] = ACTIONS(4506), + [anon_sym_U_SQUOTE] = ACTIONS(4506), + [anon_sym_u8_SQUOTE] = ACTIONS(4506), + [anon_sym_SQUOTE] = ACTIONS(4506), + [anon_sym_L_DQUOTE] = ACTIONS(4506), + [anon_sym_u_DQUOTE] = ACTIONS(4506), + [anon_sym_U_DQUOTE] = ACTIONS(4506), + [anon_sym_u8_DQUOTE] = ACTIONS(4506), + [anon_sym_DQUOTE] = ACTIONS(4506), [sym_true] = ACTIONS(4504), [sym_false] = ACTIONS(4504), [anon_sym_NULL] = ACTIONS(4504), @@ -137650,162 +143816,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_R_DQUOTE] = ACTIONS(4506), + [anon_sym_LR_DQUOTE] = ACTIONS(4506), + [anon_sym_uR_DQUOTE] = ACTIONS(4506), + [anon_sym_UR_DQUOTE] = ACTIONS(4506), + [anon_sym_u8R_DQUOTE] = ACTIONS(4506), [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), + [anon_sym_CARET_CARET] = ACTIONS(4506), + [anon_sym_LBRACK_COLON] = ACTIONS(4506), [sym_this] = ACTIONS(4504), }, - [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), + [STATE(564)] = { + [sym_else_clause] = STATE(636), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3378), + [aux_sym_preproc_include_token1] = ACTIONS(3378), + [aux_sym_preproc_def_token1] = ACTIONS(3378), + [aux_sym_preproc_if_token1] = ACTIONS(3378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3378), + [sym_preproc_directive] = ACTIONS(3378), + [anon_sym_LPAREN2] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_AMP_AMP] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym___extension__] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3378), + [anon_sym_virtual] = ACTIONS(3378), + [anon_sym_extern] = ACTIONS(3378), + [anon_sym___attribute__] = ACTIONS(3378), + [anon_sym___attribute] = ACTIONS(3378), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_COLON_COLON] = ACTIONS(3380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3380), + [anon_sym___declspec] = ACTIONS(3378), + [anon_sym___based] = ACTIONS(3378), + [anon_sym___cdecl] = ACTIONS(3378), + [anon_sym___clrcall] = ACTIONS(3378), + [anon_sym___stdcall] = ACTIONS(3378), + [anon_sym___fastcall] = ACTIONS(3378), + [anon_sym___thiscall] = ACTIONS(3378), + [anon_sym___vectorcall] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3378), + [anon_sym_unsigned] = ACTIONS(3378), + [anon_sym_long] = ACTIONS(3378), + [anon_sym_short] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_register] = ACTIONS(3378), + [anon_sym_inline] = ACTIONS(3378), + [anon_sym___inline] = ACTIONS(3378), + [anon_sym___inline__] = ACTIONS(3378), + [anon_sym___forceinline] = ACTIONS(3378), + [anon_sym_thread_local] = ACTIONS(3378), + [anon_sym___thread] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_constexpr] = ACTIONS(3378), + [anon_sym_volatile] = ACTIONS(3378), + [anon_sym_restrict] = ACTIONS(3378), + [anon_sym___restrict__] = ACTIONS(3378), + [anon_sym__Atomic] = ACTIONS(3378), + [anon_sym__Noreturn] = ACTIONS(3378), + [anon_sym_noreturn] = ACTIONS(3378), + [anon_sym__Nonnull] = ACTIONS(3378), + [anon_sym_mutable] = ACTIONS(3378), + [anon_sym_constinit] = ACTIONS(3378), + [anon_sym_consteval] = ACTIONS(3378), + [anon_sym_alignas] = ACTIONS(3378), + [anon_sym__Alignas] = ACTIONS(3378), + [sym_primitive_type] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_else] = ACTIONS(4508), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_case] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym___try] = ACTIONS(3378), + [anon_sym___leave] = ACTIONS(3378), + [anon_sym_not] = ACTIONS(3378), + [anon_sym_compl] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_sizeof] = ACTIONS(3378), + [anon_sym___alignof__] = ACTIONS(3378), + [anon_sym___alignof] = ACTIONS(3378), + [anon_sym__alignof] = ACTIONS(3378), + [anon_sym_alignof] = ACTIONS(3378), + [anon_sym__Alignof] = ACTIONS(3378), + [anon_sym_offsetof] = ACTIONS(3378), + [anon_sym__Generic] = ACTIONS(3378), + [anon_sym_typename] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym___asm__] = ACTIONS(3378), + [anon_sym___asm] = ACTIONS(3378), + [sym_number_literal] = ACTIONS(3380), + [anon_sym_L_SQUOTE] = ACTIONS(3380), + [anon_sym_u_SQUOTE] = ACTIONS(3380), + [anon_sym_U_SQUOTE] = ACTIONS(3380), + [anon_sym_u8_SQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [anon_sym_L_DQUOTE] = ACTIONS(3380), + [anon_sym_u_DQUOTE] = ACTIONS(3380), + [anon_sym_U_DQUOTE] = ACTIONS(3380), + [anon_sym_u8_DQUOTE] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [anon_sym_NULL] = ACTIONS(3378), + [anon_sym_nullptr] = ACTIONS(3378), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3378), + [anon_sym_decltype] = ACTIONS(3378), + [anon_sym_explicit] = ACTIONS(3378), + [anon_sym_export] = ACTIONS(3378), + [anon_sym_module] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_template] = ACTIONS(3378), + [anon_sym_operator] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_namespace] = ACTIONS(3378), + [anon_sym_static_assert] = ACTIONS(3378), + [anon_sym_concept] = ACTIONS(3378), + [anon_sym_co_return] = ACTIONS(3378), + [anon_sym_co_yield] = ACTIONS(3378), + [anon_sym_R_DQUOTE] = ACTIONS(3380), + [anon_sym_LR_DQUOTE] = ACTIONS(3380), + [anon_sym_uR_DQUOTE] = ACTIONS(3380), + [anon_sym_UR_DQUOTE] = ACTIONS(3380), + [anon_sym_u8R_DQUOTE] = ACTIONS(3380), + [anon_sym_co_await] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_requires] = ACTIONS(3378), + [anon_sym_CARET_CARET] = ACTIONS(3380), + [anon_sym_LBRACK_COLON] = ACTIONS(3380), + [sym_this] = ACTIONS(3378), }, - [STATE(544)] = { + [STATE(565)] = { [sym_identifier] = ACTIONS(4510), [aux_sym_preproc_include_token1] = ACTIONS(4510), [aux_sym_preproc_def_token1] = ACTIONS(4510), @@ -137948,150 +144114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4512), [sym_this] = ACTIONS(4510), }, - [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), - }, - [STATE(546)] = { + [STATE(566)] = { [sym_identifier] = ACTIONS(4514), [aux_sym_preproc_include_token1] = ACTIONS(4514), [aux_sym_preproc_def_token1] = ACTIONS(4514), @@ -138234,7 +144257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4516), [sym_this] = ACTIONS(4514), }, - [STATE(547)] = { + [STATE(567)] = { [sym_identifier] = ACTIONS(4518), [aux_sym_preproc_include_token1] = ACTIONS(4518), [aux_sym_preproc_def_token1] = ACTIONS(4518), @@ -138377,293 +144400,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4520), [sym_this] = ACTIONS(4518), }, - [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), + [STATE(568)] = { + [sym_else_clause] = STATE(616), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3406), + [aux_sym_preproc_include_token1] = ACTIONS(3406), + [aux_sym_preproc_def_token1] = ACTIONS(3406), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), + [sym_preproc_directive] = ACTIONS(3406), + [anon_sym_LPAREN2] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym___extension__] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_virtual] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym___attribute__] = ACTIONS(3406), + [anon_sym___attribute] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), + [anon_sym___declspec] = ACTIONS(3406), + [anon_sym___based] = ACTIONS(3406), + [anon_sym___cdecl] = ACTIONS(3406), + [anon_sym___clrcall] = ACTIONS(3406), + [anon_sym___stdcall] = ACTIONS(3406), + [anon_sym___fastcall] = ACTIONS(3406), + [anon_sym___thiscall] = ACTIONS(3406), + [anon_sym___vectorcall] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_signed] = ACTIONS(3406), + [anon_sym_unsigned] = ACTIONS(3406), + [anon_sym_long] = ACTIONS(3406), + [anon_sym_short] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_register] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym___inline] = ACTIONS(3406), + [anon_sym___inline__] = ACTIONS(3406), + [anon_sym___forceinline] = ACTIONS(3406), + [anon_sym_thread_local] = ACTIONS(3406), + [anon_sym___thread] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_constexpr] = ACTIONS(3406), + [anon_sym_volatile] = ACTIONS(3406), + [anon_sym_restrict] = ACTIONS(3406), + [anon_sym___restrict__] = ACTIONS(3406), + [anon_sym__Atomic] = ACTIONS(3406), + [anon_sym__Noreturn] = ACTIONS(3406), + [anon_sym_noreturn] = ACTIONS(3406), + [anon_sym__Nonnull] = ACTIONS(3406), + [anon_sym_mutable] = ACTIONS(3406), + [anon_sym_constinit] = ACTIONS(3406), + [anon_sym_consteval] = ACTIONS(3406), + [anon_sym_alignas] = ACTIONS(3406), + [anon_sym__Alignas] = ACTIONS(3406), + [sym_primitive_type] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_else] = ACTIONS(4508), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym___try] = ACTIONS(3406), + [anon_sym___leave] = ACTIONS(3406), + [anon_sym_not] = ACTIONS(3406), + [anon_sym_compl] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3406), + [anon_sym___alignof__] = ACTIONS(3406), + [anon_sym___alignof] = ACTIONS(3406), + [anon_sym__alignof] = ACTIONS(3406), + [anon_sym_alignof] = ACTIONS(3406), + [anon_sym__Alignof] = ACTIONS(3406), + [anon_sym_offsetof] = ACTIONS(3406), + [anon_sym__Generic] = ACTIONS(3406), + [anon_sym_typename] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym___asm__] = ACTIONS(3406), + [anon_sym___asm] = ACTIONS(3406), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_L_SQUOTE] = ACTIONS(3408), + [anon_sym_u_SQUOTE] = ACTIONS(3408), + [anon_sym_U_SQUOTE] = ACTIONS(3408), + [anon_sym_u8_SQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_L_DQUOTE] = ACTIONS(3408), + [anon_sym_u_DQUOTE] = ACTIONS(3408), + [anon_sym_U_DQUOTE] = ACTIONS(3408), + [anon_sym_u8_DQUOTE] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [anon_sym_NULL] = ACTIONS(3406), + [anon_sym_nullptr] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3406), + [anon_sym_decltype] = ACTIONS(3406), + [anon_sym_explicit] = ACTIONS(3406), + [anon_sym_export] = ACTIONS(3406), + [anon_sym_module] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_template] = ACTIONS(3406), + [anon_sym_operator] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_static_assert] = ACTIONS(3406), + [anon_sym_concept] = ACTIONS(3406), + [anon_sym_co_return] = ACTIONS(3406), + [anon_sym_co_yield] = ACTIONS(3406), + [anon_sym_R_DQUOTE] = ACTIONS(3408), + [anon_sym_LR_DQUOTE] = ACTIONS(3408), + [anon_sym_uR_DQUOTE] = ACTIONS(3408), + [anon_sym_UR_DQUOTE] = ACTIONS(3408), + [anon_sym_u8R_DQUOTE] = ACTIONS(3408), + [anon_sym_co_await] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_requires] = ACTIONS(3406), + [anon_sym_CARET_CARET] = ACTIONS(3408), + [anon_sym_LBRACK_COLON] = ACTIONS(3408), + [sym_this] = ACTIONS(3406), }, - [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), + [STATE(569)] = { + [sym_else_clause] = STATE(640), + [sym_identifier] = ACTIONS(3406), + [aux_sym_preproc_include_token1] = ACTIONS(3406), + [aux_sym_preproc_def_token1] = ACTIONS(3406), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_if_token2] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), + [sym_preproc_directive] = ACTIONS(3406), + [anon_sym_LPAREN2] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym___extension__] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_virtual] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym___attribute__] = ACTIONS(3406), + [anon_sym___attribute] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), + [anon_sym___declspec] = ACTIONS(3406), + [anon_sym___based] = ACTIONS(3406), + [anon_sym___cdecl] = ACTIONS(3406), + [anon_sym___clrcall] = ACTIONS(3406), + [anon_sym___stdcall] = ACTIONS(3406), + [anon_sym___fastcall] = ACTIONS(3406), + [anon_sym___thiscall] = ACTIONS(3406), + [anon_sym___vectorcall] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_signed] = ACTIONS(3406), + [anon_sym_unsigned] = ACTIONS(3406), + [anon_sym_long] = ACTIONS(3406), + [anon_sym_short] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_register] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym___inline] = ACTIONS(3406), + [anon_sym___inline__] = ACTIONS(3406), + [anon_sym___forceinline] = ACTIONS(3406), + [anon_sym_thread_local] = ACTIONS(3406), + [anon_sym___thread] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_constexpr] = ACTIONS(3406), + [anon_sym_volatile] = ACTIONS(3406), + [anon_sym_restrict] = ACTIONS(3406), + [anon_sym___restrict__] = ACTIONS(3406), + [anon_sym__Atomic] = ACTIONS(3406), + [anon_sym__Noreturn] = ACTIONS(3406), + [anon_sym_noreturn] = ACTIONS(3406), + [anon_sym__Nonnull] = ACTIONS(3406), + [anon_sym_mutable] = ACTIONS(3406), + [anon_sym_constinit] = ACTIONS(3406), + [anon_sym_consteval] = ACTIONS(3406), + [anon_sym_alignas] = ACTIONS(3406), + [anon_sym__Alignas] = ACTIONS(3406), + [sym_primitive_type] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_else] = ACTIONS(4462), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym___try] = ACTIONS(3406), + [anon_sym___leave] = ACTIONS(3406), + [anon_sym_not] = ACTIONS(3406), + [anon_sym_compl] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3406), + [anon_sym___alignof__] = ACTIONS(3406), + [anon_sym___alignof] = ACTIONS(3406), + [anon_sym__alignof] = ACTIONS(3406), + [anon_sym_alignof] = ACTIONS(3406), + [anon_sym__Alignof] = ACTIONS(3406), + [anon_sym_offsetof] = ACTIONS(3406), + [anon_sym__Generic] = ACTIONS(3406), + [anon_sym_typename] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym___asm__] = ACTIONS(3406), + [anon_sym___asm] = ACTIONS(3406), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_L_SQUOTE] = ACTIONS(3408), + [anon_sym_u_SQUOTE] = ACTIONS(3408), + [anon_sym_U_SQUOTE] = ACTIONS(3408), + [anon_sym_u8_SQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_L_DQUOTE] = ACTIONS(3408), + [anon_sym_u_DQUOTE] = ACTIONS(3408), + [anon_sym_U_DQUOTE] = ACTIONS(3408), + [anon_sym_u8_DQUOTE] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [anon_sym_NULL] = ACTIONS(3406), + [anon_sym_nullptr] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3406), + [anon_sym_decltype] = ACTIONS(3406), + [anon_sym_explicit] = ACTIONS(3406), + [anon_sym_export] = ACTIONS(3406), + [anon_sym_module] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_template] = ACTIONS(3406), + [anon_sym_operator] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_static_assert] = ACTIONS(3406), + [anon_sym_concept] = ACTIONS(3406), + [anon_sym_co_return] = ACTIONS(3406), + [anon_sym_co_yield] = ACTIONS(3406), + [anon_sym_R_DQUOTE] = ACTIONS(3408), + [anon_sym_LR_DQUOTE] = ACTIONS(3408), + [anon_sym_uR_DQUOTE] = ACTIONS(3408), + [anon_sym_UR_DQUOTE] = ACTIONS(3408), + [anon_sym_u8R_DQUOTE] = ACTIONS(3408), + [anon_sym_co_await] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_requires] = ACTIONS(3406), + [anon_sym_CARET_CARET] = ACTIONS(3408), + [anon_sym_LBRACK_COLON] = ACTIONS(3408), + [sym_this] = ACTIONS(3406), }, - [STATE(550)] = { + [STATE(570)] = { [sym_identifier] = ACTIONS(4522), [aux_sym_preproc_include_token1] = ACTIONS(4522), [aux_sym_preproc_def_token1] = ACTIONS(4522), @@ -138806,7 +144829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4524), [sym_this] = ACTIONS(4522), }, - [STATE(551)] = { + [STATE(571)] = { [sym_identifier] = ACTIONS(4526), [aux_sym_preproc_include_token1] = ACTIONS(4526), [aux_sym_preproc_def_token1] = ACTIONS(4526), @@ -138949,7 +144972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4528), [sym_this] = ACTIONS(4526), }, - [STATE(552)] = { + [STATE(572)] = { [sym_identifier] = ACTIONS(4530), [aux_sym_preproc_include_token1] = ACTIONS(4530), [aux_sym_preproc_def_token1] = ACTIONS(4530), @@ -139092,7 +145115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4532), [sym_this] = ACTIONS(4530), }, - [STATE(553)] = { + [STATE(573)] = { [sym_identifier] = ACTIONS(4534), [aux_sym_preproc_include_token1] = ACTIONS(4534), [aux_sym_preproc_def_token1] = ACTIONS(4534), @@ -139235,7 +145258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4536), [sym_this] = ACTIONS(4534), }, - [STATE(554)] = { + [STATE(574)] = { [sym_identifier] = ACTIONS(4538), [aux_sym_preproc_include_token1] = ACTIONS(4538), [aux_sym_preproc_def_token1] = ACTIONS(4538), @@ -139378,75 +145401,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4540), [sym_this] = ACTIONS(4538), }, - [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), + [STATE(575)] = { + [sym_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_field_declaration_list] = STATE(575), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), + [sym_type_definition] = STATE(575), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9074), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(575), + [sym_field_declaration] = STATE(575), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(575), + [sym_operator_cast] = STATE(10361), + [sym_inline_method_definition] = STATE(575), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(575), + [sym_operator_cast_declaration] = STATE(575), + [sym_constructor_or_destructor_definition] = STATE(575), + [sym_constructor_or_destructor_declaration] = STATE(575), + [sym_friend_declaration] = STATE(575), + [sym_access_specifier] = STATE(11905), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(575), + [sym_alias_declaration] = STATE(575), + [sym_static_assert_declaration] = STATE(575), + [sym_consteval_block_declaration] = STATE(575), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10730), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), [sym_identifier] = ACTIONS(4542), [aux_sym_preproc_def_token1] = ACTIONS(4545), [aux_sym_preproc_if_token1] = ACTIONS(4548), @@ -139521,1569 +145544,2708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4664), [anon_sym_LBRACK_COLON] = ACTIONS(4667), }, - [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), + [STATE(576)] = { + [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(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3176), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3176), + [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_else] = 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(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [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(3176), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3176), + [anon_sym_u_DQUOTE] = ACTIONS(3176), + [anon_sym_U_DQUOTE] = ACTIONS(3176), + [anon_sym_u8_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [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(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), + [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(3178), + [anon_sym_R_DQUOTE] = ACTIONS(3176), + [anon_sym_LR_DQUOTE] = ACTIONS(3176), + [anon_sym_uR_DQUOTE] = ACTIONS(3176), + [anon_sym_UR_DQUOTE] = ACTIONS(3176), + [anon_sym_u8R_DQUOTE] = ACTIONS(3176), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3176), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), }, - [STATE(557)] = { - [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), + [STATE(577)] = { + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_include_token1] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token2] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym___attribute] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym___cdecl] = ACTIONS(3392), + [anon_sym___clrcall] = ACTIONS(3392), + [anon_sym___stdcall] = ACTIONS(3392), + [anon_sym___fastcall] = ACTIONS(3392), + [anon_sym___thiscall] = ACTIONS(3392), + [anon_sym___vectorcall] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym__Nonnull] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym__Alignas] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_else] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3392), + [anon_sym_default] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_goto] = ACTIONS(3392), + [anon_sym___try] = ACTIONS(3392), + [anon_sym___leave] = ACTIONS(3392), + [anon_sym_not] = ACTIONS(3392), + [anon_sym_compl] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_sizeof] = ACTIONS(3392), + [anon_sym___alignof__] = ACTIONS(3392), + [anon_sym___alignof] = ACTIONS(3392), + [anon_sym__alignof] = ACTIONS(3392), + [anon_sym_alignof] = ACTIONS(3392), + [anon_sym__Alignof] = ACTIONS(3392), + [anon_sym_offsetof] = ACTIONS(3392), + [anon_sym__Generic] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [anon_sym_asm] = ACTIONS(3392), + [anon_sym___asm__] = ACTIONS(3392), + [anon_sym___asm] = ACTIONS(3392), + [sym_number_literal] = ACTIONS(3394), + [anon_sym_L_SQUOTE] = ACTIONS(3394), + [anon_sym_u_SQUOTE] = ACTIONS(3394), + [anon_sym_U_SQUOTE] = ACTIONS(3394), + [anon_sym_u8_SQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_L_DQUOTE] = ACTIONS(3394), + [anon_sym_u_DQUOTE] = ACTIONS(3394), + [anon_sym_U_DQUOTE] = ACTIONS(3394), + [anon_sym_u8_DQUOTE] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [anon_sym_NULL] = ACTIONS(3392), + [anon_sym_nullptr] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_export] = ACTIONS(3392), + [anon_sym_module] = ACTIONS(3392), + [anon_sym_import] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [anon_sym_concept] = ACTIONS(3392), + [anon_sym_co_return] = ACTIONS(3392), + [anon_sym_co_yield] = ACTIONS(3392), + [anon_sym_catch] = ACTIONS(3392), + [anon_sym_R_DQUOTE] = ACTIONS(3394), + [anon_sym_LR_DQUOTE] = ACTIONS(3394), + [anon_sym_uR_DQUOTE] = ACTIONS(3394), + [anon_sym_UR_DQUOTE] = ACTIONS(3394), + [anon_sym_u8R_DQUOTE] = ACTIONS(3394), + [anon_sym_co_await] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_requires] = ACTIONS(3392), + [anon_sym_CARET_CARET] = ACTIONS(3394), + [anon_sym_LBRACK_COLON] = ACTIONS(3394), + [sym_this] = ACTIONS(3392), + }, + [STATE(578)] = { + [sym_identifier] = ACTIONS(4670), + [aux_sym_preproc_include_token1] = ACTIONS(4670), + [aux_sym_preproc_def_token1] = ACTIONS(4670), + [aux_sym_preproc_if_token1] = ACTIONS(4670), + [aux_sym_preproc_if_token2] = ACTIONS(4670), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4670), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4670), + [aux_sym_preproc_else_token1] = ACTIONS(4670), + [aux_sym_preproc_elif_token1] = ACTIONS(4670), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4670), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4670), + [sym_preproc_directive] = ACTIONS(4670), + [anon_sym_LPAREN2] = ACTIONS(4673), + [anon_sym_BANG] = ACTIONS(4673), + [anon_sym_TILDE] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4673), + [anon_sym_AMP_AMP] = ACTIONS(4673), + [anon_sym_AMP] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_typedef] = ACTIONS(4670), + [anon_sym_virtual] = ACTIONS(4670), + [anon_sym_extern] = ACTIONS(4670), + [anon_sym___attribute__] = ACTIONS(4670), + [anon_sym___attribute] = ACTIONS(4670), + [anon_sym_using] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4673), + [anon_sym___declspec] = ACTIONS(4670), + [anon_sym___based] = ACTIONS(4670), + [anon_sym___cdecl] = ACTIONS(4670), + [anon_sym___clrcall] = ACTIONS(4670), + [anon_sym___stdcall] = ACTIONS(4670), + [anon_sym___fastcall] = ACTIONS(4670), + [anon_sym___thiscall] = ACTIONS(4670), + [anon_sym___vectorcall] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4673), + [anon_sym_signed] = ACTIONS(4670), + [anon_sym_unsigned] = ACTIONS(4670), + [anon_sym_long] = ACTIONS(4670), + [anon_sym_short] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_static] = ACTIONS(4670), + [anon_sym_register] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym___inline] = ACTIONS(4670), + [anon_sym___inline__] = ACTIONS(4670), + [anon_sym___forceinline] = ACTIONS(4670), + [anon_sym_thread_local] = ACTIONS(4670), + [anon_sym___thread] = ACTIONS(4670), + [anon_sym_const] = ACTIONS(4670), + [anon_sym_constexpr] = ACTIONS(4670), + [anon_sym_volatile] = ACTIONS(4670), + [anon_sym_restrict] = ACTIONS(4670), + [anon_sym___restrict__] = ACTIONS(4670), + [anon_sym__Atomic] = ACTIONS(4670), + [anon_sym__Noreturn] = ACTIONS(4670), + [anon_sym_noreturn] = ACTIONS(4670), + [anon_sym__Nonnull] = ACTIONS(4670), + [anon_sym_mutable] = ACTIONS(4670), + [anon_sym_constinit] = ACTIONS(4670), + [anon_sym_consteval] = ACTIONS(4670), + [anon_sym_alignas] = ACTIONS(4670), + [anon_sym__Alignas] = ACTIONS(4670), + [sym_primitive_type] = ACTIONS(4670), + [anon_sym_enum] = ACTIONS(4670), + [anon_sym_class] = ACTIONS(4670), + [anon_sym_struct] = ACTIONS(4670), + [anon_sym_union] = ACTIONS(4670), + [anon_sym_if] = ACTIONS(4670), + [anon_sym_switch] = ACTIONS(4670), + [anon_sym_case] = ACTIONS(4670), + [anon_sym_default] = ACTIONS(4670), + [anon_sym_while] = ACTIONS(4670), + [anon_sym_do] = ACTIONS(4670), + [anon_sym_for] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4670), + [anon_sym_continue] = ACTIONS(4670), + [anon_sym_goto] = ACTIONS(4670), + [anon_sym_not] = ACTIONS(4670), + [anon_sym_compl] = ACTIONS(4670), + [anon_sym_DASH_DASH] = ACTIONS(4673), + [anon_sym_PLUS_PLUS] = ACTIONS(4673), + [anon_sym_sizeof] = ACTIONS(4670), + [anon_sym___alignof__] = ACTIONS(4670), + [anon_sym___alignof] = ACTIONS(4670), + [anon_sym__alignof] = ACTIONS(4670), + [anon_sym_alignof] = ACTIONS(4670), + [anon_sym__Alignof] = ACTIONS(4670), + [anon_sym_offsetof] = ACTIONS(4670), + [anon_sym__Generic] = ACTIONS(4670), + [anon_sym_typename] = ACTIONS(4670), + [anon_sym_asm] = ACTIONS(4670), + [anon_sym___asm__] = ACTIONS(4670), + [anon_sym___asm] = ACTIONS(4670), + [sym_number_literal] = ACTIONS(4673), + [anon_sym_L_SQUOTE] = ACTIONS(4673), + [anon_sym_u_SQUOTE] = ACTIONS(4673), + [anon_sym_U_SQUOTE] = ACTIONS(4673), + [anon_sym_u8_SQUOTE] = ACTIONS(4673), + [anon_sym_SQUOTE] = ACTIONS(4673), + [anon_sym_L_DQUOTE] = ACTIONS(4673), + [anon_sym_u_DQUOTE] = ACTIONS(4673), + [anon_sym_U_DQUOTE] = ACTIONS(4673), + [anon_sym_u8_DQUOTE] = ACTIONS(4673), + [anon_sym_DQUOTE] = ACTIONS(4673), + [sym_true] = ACTIONS(4670), + [sym_false] = ACTIONS(4670), + [anon_sym_NULL] = ACTIONS(4670), + [anon_sym_nullptr] = ACTIONS(4670), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4670), + [anon_sym_decltype] = ACTIONS(4670), + [anon_sym_explicit] = ACTIONS(4670), + [anon_sym_export] = ACTIONS(4670), + [anon_sym_module] = ACTIONS(4670), + [anon_sym_import] = ACTIONS(4670), + [anon_sym_template] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4670), + [anon_sym_delete] = ACTIONS(4670), + [anon_sym_throw] = ACTIONS(4670), + [anon_sym_namespace] = ACTIONS(4670), + [anon_sym_static_assert] = ACTIONS(4670), + [anon_sym_concept] = ACTIONS(4670), + [anon_sym_co_return] = ACTIONS(4670), + [anon_sym_co_yield] = ACTIONS(4670), + [anon_sym_R_DQUOTE] = ACTIONS(4673), + [anon_sym_LR_DQUOTE] = ACTIONS(4673), + [anon_sym_uR_DQUOTE] = ACTIONS(4673), + [anon_sym_UR_DQUOTE] = ACTIONS(4673), + [anon_sym_u8R_DQUOTE] = ACTIONS(4673), + [anon_sym_co_await] = ACTIONS(4670), + [anon_sym_new] = ACTIONS(4670), + [anon_sym_requires] = ACTIONS(4670), + [anon_sym_CARET_CARET] = ACTIONS(4673), + [anon_sym_LBRACK_COLON] = ACTIONS(4673), + [sym_this] = ACTIONS(4670), + }, + [STATE(579)] = { + [ts_builtin_sym_end] = ACTIONS(3598), + [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_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(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), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_module] = 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(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(580)] = { + [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(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(581)] = { + [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(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(582)] = { + [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(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(583)] = { + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3482), + [aux_sym_preproc_include_token1] = ACTIONS(3482), + [aux_sym_preproc_def_token1] = ACTIONS(3482), + [aux_sym_preproc_if_token1] = ACTIONS(3482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3482), + [sym_preproc_directive] = ACTIONS(3482), + [anon_sym_LPAREN2] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_AMP_AMP] = ACTIONS(3484), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym___extension__] = ACTIONS(3482), + [anon_sym_typedef] = ACTIONS(3482), + [anon_sym_virtual] = ACTIONS(3482), + [anon_sym_extern] = ACTIONS(3482), + [anon_sym___attribute__] = ACTIONS(3482), + [anon_sym___attribute] = ACTIONS(3482), + [anon_sym_using] = ACTIONS(3482), + [anon_sym_COLON_COLON] = ACTIONS(3484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3484), + [anon_sym___declspec] = ACTIONS(3482), + [anon_sym___based] = ACTIONS(3482), + [anon_sym___cdecl] = ACTIONS(3482), + [anon_sym___clrcall] = ACTIONS(3482), + [anon_sym___stdcall] = ACTIONS(3482), + [anon_sym___fastcall] = ACTIONS(3482), + [anon_sym___thiscall] = ACTIONS(3482), + [anon_sym___vectorcall] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_signed] = ACTIONS(3482), + [anon_sym_unsigned] = ACTIONS(3482), + [anon_sym_long] = ACTIONS(3482), + [anon_sym_short] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_register] = ACTIONS(3482), + [anon_sym_inline] = ACTIONS(3482), + [anon_sym___inline] = ACTIONS(3482), + [anon_sym___inline__] = ACTIONS(3482), + [anon_sym___forceinline] = ACTIONS(3482), + [anon_sym_thread_local] = ACTIONS(3482), + [anon_sym___thread] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_constexpr] = ACTIONS(3482), + [anon_sym_volatile] = ACTIONS(3482), + [anon_sym_restrict] = ACTIONS(3482), + [anon_sym___restrict__] = ACTIONS(3482), + [anon_sym__Atomic] = ACTIONS(3482), + [anon_sym__Noreturn] = ACTIONS(3482), + [anon_sym_noreturn] = ACTIONS(3482), + [anon_sym__Nonnull] = ACTIONS(3482), + [anon_sym_mutable] = ACTIONS(3482), + [anon_sym_constinit] = ACTIONS(3482), + [anon_sym_consteval] = ACTIONS(3482), + [anon_sym_alignas] = ACTIONS(3482), + [anon_sym__Alignas] = ACTIONS(3482), + [sym_primitive_type] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_struct] = ACTIONS(3482), + [anon_sym_union] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_case] = ACTIONS(3482), + [anon_sym_default] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_goto] = ACTIONS(3482), + [anon_sym___try] = ACTIONS(3482), + [anon_sym___leave] = ACTIONS(3482), + [anon_sym_not] = ACTIONS(3482), + [anon_sym_compl] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_sizeof] = ACTIONS(3482), + [anon_sym___alignof__] = ACTIONS(3482), + [anon_sym___alignof] = ACTIONS(3482), + [anon_sym__alignof] = ACTIONS(3482), + [anon_sym_alignof] = ACTIONS(3482), + [anon_sym__Alignof] = ACTIONS(3482), + [anon_sym_offsetof] = ACTIONS(3482), + [anon_sym__Generic] = ACTIONS(3482), + [anon_sym_typename] = ACTIONS(3482), + [anon_sym_asm] = ACTIONS(3482), + [anon_sym___asm__] = ACTIONS(3482), + [anon_sym___asm] = ACTIONS(3482), + [sym_number_literal] = ACTIONS(3484), + [anon_sym_L_SQUOTE] = ACTIONS(3484), + [anon_sym_u_SQUOTE] = ACTIONS(3484), + [anon_sym_U_SQUOTE] = ACTIONS(3484), + [anon_sym_u8_SQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [anon_sym_L_DQUOTE] = ACTIONS(3484), + [anon_sym_u_DQUOTE] = ACTIONS(3484), + [anon_sym_U_DQUOTE] = ACTIONS(3484), + [anon_sym_u8_DQUOTE] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [sym_true] = ACTIONS(3482), + [sym_false] = ACTIONS(3482), + [anon_sym_NULL] = ACTIONS(3482), + [anon_sym_nullptr] = ACTIONS(3482), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3482), + [anon_sym_decltype] = ACTIONS(3482), + [anon_sym_explicit] = ACTIONS(3482), + [anon_sym_export] = ACTIONS(3482), + [anon_sym_module] = ACTIONS(3482), + [anon_sym_import] = ACTIONS(3482), + [anon_sym_template] = ACTIONS(3482), + [anon_sym_operator] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_delete] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_namespace] = ACTIONS(3482), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_concept] = ACTIONS(3482), + [anon_sym_co_return] = ACTIONS(3482), + [anon_sym_co_yield] = ACTIONS(3482), + [anon_sym_R_DQUOTE] = ACTIONS(3484), + [anon_sym_LR_DQUOTE] = ACTIONS(3484), + [anon_sym_uR_DQUOTE] = ACTIONS(3484), + [anon_sym_UR_DQUOTE] = ACTIONS(3484), + [anon_sym_u8R_DQUOTE] = ACTIONS(3484), + [anon_sym_co_await] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_requires] = ACTIONS(3482), + [anon_sym_CARET_CARET] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(3482), }, - [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(584)] = { + [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(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(585)] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym___attribute] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym__Nonnull] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym__Alignas] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [anon_sym___asm] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [anon_sym_CARET_CARET] = ACTIONS(3674), + [anon_sym_LBRACK_COLON] = ACTIONS(3674), + [sym_this] = ACTIONS(3672), }, - [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(586)] = { + [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(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(587)] = { + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_include_token1] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token2] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym___cdecl] = ACTIONS(3452), + [anon_sym___clrcall] = ACTIONS(3452), + [anon_sym___stdcall] = ACTIONS(3452), + [anon_sym___fastcall] = ACTIONS(3452), + [anon_sym___thiscall] = ACTIONS(3452), + [anon_sym___vectorcall] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym___try] = ACTIONS(3452), + [anon_sym___leave] = ACTIONS(3452), + [anon_sym_not] = ACTIONS(3452), + [anon_sym_compl] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym___alignof__] = ACTIONS(3452), + [anon_sym___alignof] = ACTIONS(3452), + [anon_sym__alignof] = ACTIONS(3452), + [anon_sym_alignof] = ACTIONS(3452), + [anon_sym__Alignof] = ACTIONS(3452), + [anon_sym_offsetof] = ACTIONS(3452), + [anon_sym__Generic] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym___asm__] = ACTIONS(3452), + [anon_sym___asm] = ACTIONS(3452), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_L_SQUOTE] = ACTIONS(3454), + [anon_sym_u_SQUOTE] = ACTIONS(3454), + [anon_sym_U_SQUOTE] = ACTIONS(3454), + [anon_sym_u8_SQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_L_DQUOTE] = ACTIONS(3454), + [anon_sym_u_DQUOTE] = ACTIONS(3454), + [anon_sym_U_DQUOTE] = ACTIONS(3454), + [anon_sym_u8_DQUOTE] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [anon_sym_NULL] = ACTIONS(3452), + [anon_sym_nullptr] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_concept] = ACTIONS(3452), + [anon_sym_co_return] = ACTIONS(3452), + [anon_sym_co_yield] = ACTIONS(3452), + [anon_sym_R_DQUOTE] = ACTIONS(3454), + [anon_sym_LR_DQUOTE] = ACTIONS(3454), + [anon_sym_uR_DQUOTE] = ACTIONS(3454), + [anon_sym_UR_DQUOTE] = ACTIONS(3454), + [anon_sym_u8R_DQUOTE] = ACTIONS(3454), + [anon_sym_co_await] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_requires] = ACTIONS(3452), + [anon_sym_CARET_CARET] = ACTIONS(3454), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + [sym_this] = ACTIONS(3452), }, - [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(588)] = { + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_include_token1] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token2] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym___cdecl] = ACTIONS(3452), + [anon_sym___clrcall] = ACTIONS(3452), + [anon_sym___stdcall] = ACTIONS(3452), + [anon_sym___fastcall] = ACTIONS(3452), + [anon_sym___thiscall] = ACTIONS(3452), + [anon_sym___vectorcall] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym___try] = ACTIONS(3452), + [anon_sym___leave] = ACTIONS(3452), + [anon_sym_not] = ACTIONS(3452), + [anon_sym_compl] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym___alignof__] = ACTIONS(3452), + [anon_sym___alignof] = ACTIONS(3452), + [anon_sym__alignof] = ACTIONS(3452), + [anon_sym_alignof] = ACTIONS(3452), + [anon_sym__Alignof] = ACTIONS(3452), + [anon_sym_offsetof] = ACTIONS(3452), + [anon_sym__Generic] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym___asm__] = ACTIONS(3452), + [anon_sym___asm] = ACTIONS(3452), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_L_SQUOTE] = ACTIONS(3454), + [anon_sym_u_SQUOTE] = ACTIONS(3454), + [anon_sym_U_SQUOTE] = ACTIONS(3454), + [anon_sym_u8_SQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_L_DQUOTE] = ACTIONS(3454), + [anon_sym_u_DQUOTE] = ACTIONS(3454), + [anon_sym_U_DQUOTE] = ACTIONS(3454), + [anon_sym_u8_DQUOTE] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [anon_sym_NULL] = ACTIONS(3452), + [anon_sym_nullptr] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_concept] = ACTIONS(3452), + [anon_sym_co_return] = ACTIONS(3452), + [anon_sym_co_yield] = ACTIONS(3452), + [anon_sym_R_DQUOTE] = ACTIONS(3454), + [anon_sym_LR_DQUOTE] = ACTIONS(3454), + [anon_sym_uR_DQUOTE] = ACTIONS(3454), + [anon_sym_UR_DQUOTE] = ACTIONS(3454), + [anon_sym_u8R_DQUOTE] = ACTIONS(3454), + [anon_sym_co_await] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_requires] = ACTIONS(3452), + [anon_sym_CARET_CARET] = ACTIONS(3454), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + [sym_this] = ACTIONS(3452), }, - [STATE(567)] = { + [STATE(589)] = { + [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(590)] = { + [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_else] = 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(591)] = { + [ts_builtin_sym_end] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_include_token1] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym___cdecl] = ACTIONS(3570), + [anon_sym___clrcall] = ACTIONS(3570), + [anon_sym___stdcall] = ACTIONS(3570), + [anon_sym___fastcall] = ACTIONS(3570), + [anon_sym___thiscall] = ACTIONS(3570), + [anon_sym___vectorcall] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_case] = ACTIONS(3570), + [anon_sym_default] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym___try] = ACTIONS(3570), + [anon_sym___leave] = ACTIONS(3570), + [anon_sym_not] = ACTIONS(3570), + [anon_sym_compl] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3570), + [anon_sym___alignof__] = ACTIONS(3570), + [anon_sym___alignof] = ACTIONS(3570), + [anon_sym__alignof] = ACTIONS(3570), + [anon_sym_alignof] = ACTIONS(3570), + [anon_sym__Alignof] = ACTIONS(3570), + [anon_sym_offsetof] = ACTIONS(3570), + [anon_sym__Generic] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym___asm__] = ACTIONS(3570), + [anon_sym___asm] = ACTIONS(3570), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_L_SQUOTE] = ACTIONS(3572), + [anon_sym_u_SQUOTE] = ACTIONS(3572), + [anon_sym_U_SQUOTE] = ACTIONS(3572), + [anon_sym_u8_SQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_L_DQUOTE] = ACTIONS(3572), + [anon_sym_u_DQUOTE] = ACTIONS(3572), + [anon_sym_U_DQUOTE] = ACTIONS(3572), + [anon_sym_u8_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [anon_sym_NULL] = ACTIONS(3570), + [anon_sym_nullptr] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_module] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_concept] = ACTIONS(3570), + [anon_sym_co_return] = ACTIONS(3570), + [anon_sym_co_yield] = ACTIONS(3570), + [anon_sym_R_DQUOTE] = ACTIONS(3572), + [anon_sym_LR_DQUOTE] = ACTIONS(3572), + [anon_sym_uR_DQUOTE] = ACTIONS(3572), + [anon_sym_UR_DQUOTE] = ACTIONS(3572), + [anon_sym_u8R_DQUOTE] = ACTIONS(3572), + [anon_sym_co_await] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_requires] = ACTIONS(3570), + [anon_sym_CARET_CARET] = ACTIONS(3572), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), + [sym_this] = ACTIONS(3570), + }, + [STATE(592)] = { + [ts_builtin_sym_end] = ACTIONS(3446), + [sym_identifier] = ACTIONS(3444), + [aux_sym_preproc_include_token1] = ACTIONS(3444), + [aux_sym_preproc_def_token1] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), + [sym_preproc_directive] = ACTIONS(3444), + [anon_sym_LPAREN2] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3444), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(3444), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_virtual] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(3444), + [anon_sym___attribute__] = ACTIONS(3444), + [anon_sym___attribute] = ACTIONS(3444), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_COLON_COLON] = ACTIONS(3446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), + [anon_sym___declspec] = ACTIONS(3444), + [anon_sym___based] = ACTIONS(3444), + [anon_sym___cdecl] = ACTIONS(3444), + [anon_sym___clrcall] = ACTIONS(3444), + [anon_sym___stdcall] = ACTIONS(3444), + [anon_sym___fastcall] = ACTIONS(3444), + [anon_sym___thiscall] = ACTIONS(3444), + [anon_sym___vectorcall] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_signed] = ACTIONS(3444), + [anon_sym_unsigned] = ACTIONS(3444), + [anon_sym_long] = ACTIONS(3444), + [anon_sym_short] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_register] = ACTIONS(3444), + [anon_sym_inline] = ACTIONS(3444), + [anon_sym___inline] = ACTIONS(3444), + [anon_sym___inline__] = ACTIONS(3444), + [anon_sym___forceinline] = ACTIONS(3444), + [anon_sym_thread_local] = ACTIONS(3444), + [anon_sym___thread] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_constexpr] = ACTIONS(3444), + [anon_sym_volatile] = ACTIONS(3444), + [anon_sym_restrict] = ACTIONS(3444), + [anon_sym___restrict__] = ACTIONS(3444), + [anon_sym__Atomic] = ACTIONS(3444), + [anon_sym__Noreturn] = ACTIONS(3444), + [anon_sym_noreturn] = ACTIONS(3444), + [anon_sym__Nonnull] = ACTIONS(3444), + [anon_sym_mutable] = ACTIONS(3444), + [anon_sym_constinit] = ACTIONS(3444), + [anon_sym_consteval] = ACTIONS(3444), + [anon_sym_alignas] = ACTIONS(3444), + [anon_sym__Alignas] = ACTIONS(3444), + [sym_primitive_type] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_struct] = ACTIONS(3444), + [anon_sym_union] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_else] = ACTIONS(3444), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_case] = ACTIONS(3444), + [anon_sym_default] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_goto] = ACTIONS(3444), + [anon_sym___try] = ACTIONS(3444), + [anon_sym___leave] = ACTIONS(3444), + [anon_sym_not] = ACTIONS(3444), + [anon_sym_compl] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_sizeof] = ACTIONS(3444), + [anon_sym___alignof__] = ACTIONS(3444), + [anon_sym___alignof] = ACTIONS(3444), + [anon_sym__alignof] = ACTIONS(3444), + [anon_sym_alignof] = ACTIONS(3444), + [anon_sym__Alignof] = ACTIONS(3444), + [anon_sym_offsetof] = ACTIONS(3444), + [anon_sym__Generic] = ACTIONS(3444), + [anon_sym_typename] = ACTIONS(3444), + [anon_sym_asm] = ACTIONS(3444), + [anon_sym___asm__] = ACTIONS(3444), + [anon_sym___asm] = ACTIONS(3444), + [sym_number_literal] = ACTIONS(3446), + [anon_sym_L_SQUOTE] = ACTIONS(3446), + [anon_sym_u_SQUOTE] = ACTIONS(3446), + [anon_sym_U_SQUOTE] = ACTIONS(3446), + [anon_sym_u8_SQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_L_DQUOTE] = ACTIONS(3446), + [anon_sym_u_DQUOTE] = ACTIONS(3446), + [anon_sym_U_DQUOTE] = ACTIONS(3446), + [anon_sym_u8_DQUOTE] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [anon_sym_NULL] = ACTIONS(3444), + [anon_sym_nullptr] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3444), + [anon_sym_decltype] = ACTIONS(3444), + [anon_sym_explicit] = ACTIONS(3444), + [anon_sym_export] = ACTIONS(3444), + [anon_sym_module] = ACTIONS(3444), + [anon_sym_import] = ACTIONS(3444), + [anon_sym_template] = ACTIONS(3444), + [anon_sym_operator] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_delete] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_namespace] = ACTIONS(3444), + [anon_sym_static_assert] = ACTIONS(3444), + [anon_sym_concept] = ACTIONS(3444), + [anon_sym_co_return] = ACTIONS(3444), + [anon_sym_co_yield] = ACTIONS(3444), + [anon_sym_R_DQUOTE] = ACTIONS(3446), + [anon_sym_LR_DQUOTE] = ACTIONS(3446), + [anon_sym_uR_DQUOTE] = ACTIONS(3446), + [anon_sym_UR_DQUOTE] = ACTIONS(3446), + [anon_sym_u8R_DQUOTE] = ACTIONS(3446), + [anon_sym_co_await] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_requires] = ACTIONS(3444), + [anon_sym_CARET_CARET] = ACTIONS(3446), + [anon_sym_LBRACK_COLON] = ACTIONS(3446), + [sym_this] = ACTIONS(3444), + }, + [STATE(593)] = { + [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(594)] = { + [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(595)] = { [sym_identifier] = ACTIONS(3600), [aux_sym_preproc_include_token1] = ACTIONS(3600), [aux_sym_preproc_def_token1] = ACTIONS(3600), @@ -141225,1858 +148387,1574 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3602), [sym_this] = ACTIONS(3600), }, - [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(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(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(596)] = { + [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_else] = 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(571)] = { - [ts_builtin_sym_end] = ACTIONS(3594), - [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_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(597)] = { + [sym_identifier] = ACTIONS(3478), + [aux_sym_preproc_include_token1] = ACTIONS(3478), + [aux_sym_preproc_def_token1] = ACTIONS(3478), + [aux_sym_preproc_if_token1] = ACTIONS(3478), + [aux_sym_preproc_if_token2] = ACTIONS(3478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3478), + [sym_preproc_directive] = ACTIONS(3478), + [anon_sym_LPAREN2] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(3480), + [anon_sym_AMP_AMP] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym___extension__] = ACTIONS(3478), + [anon_sym_typedef] = ACTIONS(3478), + [anon_sym_virtual] = ACTIONS(3478), + [anon_sym_extern] = ACTIONS(3478), + [anon_sym___attribute__] = ACTIONS(3478), + [anon_sym___attribute] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_COLON_COLON] = ACTIONS(3480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3480), + [anon_sym___declspec] = ACTIONS(3478), + [anon_sym___based] = ACTIONS(3478), + [anon_sym___cdecl] = ACTIONS(3478), + [anon_sym___clrcall] = ACTIONS(3478), + [anon_sym___stdcall] = ACTIONS(3478), + [anon_sym___fastcall] = ACTIONS(3478), + [anon_sym___thiscall] = ACTIONS(3478), + [anon_sym___vectorcall] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_signed] = ACTIONS(3478), + [anon_sym_unsigned] = ACTIONS(3478), + [anon_sym_long] = ACTIONS(3478), + [anon_sym_short] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_register] = ACTIONS(3478), + [anon_sym_inline] = ACTIONS(3478), + [anon_sym___inline] = ACTIONS(3478), + [anon_sym___inline__] = ACTIONS(3478), + [anon_sym___forceinline] = ACTIONS(3478), + [anon_sym_thread_local] = ACTIONS(3478), + [anon_sym___thread] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_constexpr] = ACTIONS(3478), + [anon_sym_volatile] = ACTIONS(3478), + [anon_sym_restrict] = ACTIONS(3478), + [anon_sym___restrict__] = ACTIONS(3478), + [anon_sym__Atomic] = ACTIONS(3478), + [anon_sym__Noreturn] = ACTIONS(3478), + [anon_sym_noreturn] = ACTIONS(3478), + [anon_sym__Nonnull] = ACTIONS(3478), + [anon_sym_mutable] = ACTIONS(3478), + [anon_sym_constinit] = ACTIONS(3478), + [anon_sym_consteval] = ACTIONS(3478), + [anon_sym_alignas] = ACTIONS(3478), + [anon_sym__Alignas] = ACTIONS(3478), + [sym_primitive_type] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_struct] = ACTIONS(3478), + [anon_sym_union] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_goto] = ACTIONS(3478), + [anon_sym___try] = ACTIONS(3478), + [anon_sym___leave] = ACTIONS(3478), + [anon_sym_not] = ACTIONS(3478), + [anon_sym_compl] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_sizeof] = ACTIONS(3478), + [anon_sym___alignof__] = ACTIONS(3478), + [anon_sym___alignof] = ACTIONS(3478), + [anon_sym__alignof] = ACTIONS(3478), + [anon_sym_alignof] = ACTIONS(3478), + [anon_sym__Alignof] = ACTIONS(3478), + [anon_sym_offsetof] = ACTIONS(3478), + [anon_sym__Generic] = ACTIONS(3478), + [anon_sym_typename] = ACTIONS(3478), + [anon_sym_asm] = ACTIONS(3478), + [anon_sym___asm__] = ACTIONS(3478), + [anon_sym___asm] = ACTIONS(3478), + [sym_number_literal] = ACTIONS(3480), + [anon_sym_L_SQUOTE] = ACTIONS(3480), + [anon_sym_u_SQUOTE] = ACTIONS(3480), + [anon_sym_U_SQUOTE] = ACTIONS(3480), + [anon_sym_u8_SQUOTE] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3480), + [anon_sym_L_DQUOTE] = ACTIONS(3480), + [anon_sym_u_DQUOTE] = ACTIONS(3480), + [anon_sym_U_DQUOTE] = ACTIONS(3480), + [anon_sym_u8_DQUOTE] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [anon_sym_NULL] = ACTIONS(3478), + [anon_sym_nullptr] = ACTIONS(3478), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3478), + [anon_sym_decltype] = ACTIONS(3478), + [anon_sym_explicit] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3478), + [anon_sym_operator] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3478), + [anon_sym_concept] = ACTIONS(3478), + [anon_sym_co_return] = ACTIONS(3478), + [anon_sym_co_yield] = ACTIONS(3478), + [anon_sym_R_DQUOTE] = ACTIONS(3480), + [anon_sym_LR_DQUOTE] = ACTIONS(3480), + [anon_sym_uR_DQUOTE] = ACTIONS(3480), + [anon_sym_UR_DQUOTE] = ACTIONS(3480), + [anon_sym_u8R_DQUOTE] = ACTIONS(3480), + [anon_sym_co_await] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_requires] = ACTIONS(3478), + [anon_sym_CARET_CARET] = ACTIONS(3480), + [anon_sym_LBRACK_COLON] = ACTIONS(3480), + [sym_this] = ACTIONS(3478), }, - [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(598)] = { + [sym_identifier] = ACTIONS(3482), + [aux_sym_preproc_include_token1] = ACTIONS(3482), + [aux_sym_preproc_def_token1] = ACTIONS(3482), + [aux_sym_preproc_if_token1] = ACTIONS(3482), + [aux_sym_preproc_if_token2] = ACTIONS(3482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3482), + [sym_preproc_directive] = ACTIONS(3482), + [anon_sym_LPAREN2] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_AMP_AMP] = ACTIONS(3484), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym___extension__] = ACTIONS(3482), + [anon_sym_typedef] = ACTIONS(3482), + [anon_sym_virtual] = ACTIONS(3482), + [anon_sym_extern] = ACTIONS(3482), + [anon_sym___attribute__] = ACTIONS(3482), + [anon_sym___attribute] = ACTIONS(3482), + [anon_sym_using] = ACTIONS(3482), + [anon_sym_COLON_COLON] = ACTIONS(3484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3484), + [anon_sym___declspec] = ACTIONS(3482), + [anon_sym___based] = ACTIONS(3482), + [anon_sym___cdecl] = ACTIONS(3482), + [anon_sym___clrcall] = ACTIONS(3482), + [anon_sym___stdcall] = ACTIONS(3482), + [anon_sym___fastcall] = ACTIONS(3482), + [anon_sym___thiscall] = ACTIONS(3482), + [anon_sym___vectorcall] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_signed] = ACTIONS(3482), + [anon_sym_unsigned] = ACTIONS(3482), + [anon_sym_long] = ACTIONS(3482), + [anon_sym_short] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_register] = ACTIONS(3482), + [anon_sym_inline] = ACTIONS(3482), + [anon_sym___inline] = ACTIONS(3482), + [anon_sym___inline__] = ACTIONS(3482), + [anon_sym___forceinline] = ACTIONS(3482), + [anon_sym_thread_local] = ACTIONS(3482), + [anon_sym___thread] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_constexpr] = ACTIONS(3482), + [anon_sym_volatile] = ACTIONS(3482), + [anon_sym_restrict] = ACTIONS(3482), + [anon_sym___restrict__] = ACTIONS(3482), + [anon_sym__Atomic] = ACTIONS(3482), + [anon_sym__Noreturn] = ACTIONS(3482), + [anon_sym_noreturn] = ACTIONS(3482), + [anon_sym__Nonnull] = ACTIONS(3482), + [anon_sym_mutable] = ACTIONS(3482), + [anon_sym_constinit] = ACTIONS(3482), + [anon_sym_consteval] = ACTIONS(3482), + [anon_sym_alignas] = ACTIONS(3482), + [anon_sym__Alignas] = ACTIONS(3482), + [sym_primitive_type] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_struct] = ACTIONS(3482), + [anon_sym_union] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_case] = ACTIONS(3482), + [anon_sym_default] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_goto] = ACTIONS(3482), + [anon_sym___try] = ACTIONS(3482), + [anon_sym___leave] = ACTIONS(3482), + [anon_sym_not] = ACTIONS(3482), + [anon_sym_compl] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_sizeof] = ACTIONS(3482), + [anon_sym___alignof__] = ACTIONS(3482), + [anon_sym___alignof] = ACTIONS(3482), + [anon_sym__alignof] = ACTIONS(3482), + [anon_sym_alignof] = ACTIONS(3482), + [anon_sym__Alignof] = ACTIONS(3482), + [anon_sym_offsetof] = ACTIONS(3482), + [anon_sym__Generic] = ACTIONS(3482), + [anon_sym_typename] = ACTIONS(3482), + [anon_sym_asm] = ACTIONS(3482), + [anon_sym___asm__] = ACTIONS(3482), + [anon_sym___asm] = ACTIONS(3482), + [sym_number_literal] = ACTIONS(3484), + [anon_sym_L_SQUOTE] = ACTIONS(3484), + [anon_sym_u_SQUOTE] = ACTIONS(3484), + [anon_sym_U_SQUOTE] = ACTIONS(3484), + [anon_sym_u8_SQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [anon_sym_L_DQUOTE] = ACTIONS(3484), + [anon_sym_u_DQUOTE] = ACTIONS(3484), + [anon_sym_U_DQUOTE] = ACTIONS(3484), + [anon_sym_u8_DQUOTE] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [sym_true] = ACTIONS(3482), + [sym_false] = ACTIONS(3482), + [anon_sym_NULL] = ACTIONS(3482), + [anon_sym_nullptr] = ACTIONS(3482), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3482), + [anon_sym_decltype] = ACTIONS(3482), + [anon_sym_explicit] = ACTIONS(3482), + [anon_sym_export] = ACTIONS(3482), + [anon_sym_module] = ACTIONS(3482), + [anon_sym_import] = ACTIONS(3482), + [anon_sym_template] = ACTIONS(3482), + [anon_sym_operator] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_delete] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_namespace] = ACTIONS(3482), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_concept] = ACTIONS(3482), + [anon_sym_co_return] = ACTIONS(3482), + [anon_sym_co_yield] = ACTIONS(3482), + [anon_sym_R_DQUOTE] = ACTIONS(3484), + [anon_sym_LR_DQUOTE] = ACTIONS(3484), + [anon_sym_uR_DQUOTE] = ACTIONS(3484), + [anon_sym_UR_DQUOTE] = ACTIONS(3484), + [anon_sym_u8R_DQUOTE] = ACTIONS(3484), + [anon_sym_co_await] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_requires] = ACTIONS(3482), + [anon_sym_CARET_CARET] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(3482), }, - [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), + [STATE(599)] = { + [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(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), + [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(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), - [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(600)] = { + [ts_builtin_sym_end] = ACTIONS(3466), + [sym_identifier] = ACTIONS(3464), + [aux_sym_preproc_include_token1] = ACTIONS(3464), + [aux_sym_preproc_def_token1] = ACTIONS(3464), + [aux_sym_preproc_if_token1] = ACTIONS(3464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3464), + [sym_preproc_directive] = ACTIONS(3464), + [anon_sym_LPAREN2] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_AMP_AMP] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym___extension__] = ACTIONS(3464), + [anon_sym_typedef] = ACTIONS(3464), + [anon_sym_virtual] = ACTIONS(3464), + [anon_sym_extern] = ACTIONS(3464), + [anon_sym___attribute__] = ACTIONS(3464), + [anon_sym___attribute] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_COLON_COLON] = ACTIONS(3466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3466), + [anon_sym___declspec] = ACTIONS(3464), + [anon_sym___based] = ACTIONS(3464), + [anon_sym___cdecl] = ACTIONS(3464), + [anon_sym___clrcall] = ACTIONS(3464), + [anon_sym___stdcall] = ACTIONS(3464), + [anon_sym___fastcall] = ACTIONS(3464), + [anon_sym___thiscall] = ACTIONS(3464), + [anon_sym___vectorcall] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_signed] = ACTIONS(3464), + [anon_sym_unsigned] = ACTIONS(3464), + [anon_sym_long] = ACTIONS(3464), + [anon_sym_short] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_register] = ACTIONS(3464), + [anon_sym_inline] = ACTIONS(3464), + [anon_sym___inline] = ACTIONS(3464), + [anon_sym___inline__] = ACTIONS(3464), + [anon_sym___forceinline] = ACTIONS(3464), + [anon_sym_thread_local] = ACTIONS(3464), + [anon_sym___thread] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_constexpr] = ACTIONS(3464), + [anon_sym_volatile] = ACTIONS(3464), + [anon_sym_restrict] = ACTIONS(3464), + [anon_sym___restrict__] = ACTIONS(3464), + [anon_sym__Atomic] = ACTIONS(3464), + [anon_sym__Noreturn] = ACTIONS(3464), + [anon_sym_noreturn] = ACTIONS(3464), + [anon_sym__Nonnull] = ACTIONS(3464), + [anon_sym_mutable] = ACTIONS(3464), + [anon_sym_constinit] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(3464), + [anon_sym__Alignas] = ACTIONS(3464), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_struct] = ACTIONS(3464), + [anon_sym_union] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_goto] = ACTIONS(3464), + [anon_sym___try] = ACTIONS(3464), + [anon_sym___leave] = ACTIONS(3464), + [anon_sym_not] = ACTIONS(3464), + [anon_sym_compl] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(3464), + [anon_sym___alignof__] = ACTIONS(3464), + [anon_sym___alignof] = ACTIONS(3464), + [anon_sym__alignof] = ACTIONS(3464), + [anon_sym_alignof] = ACTIONS(3464), + [anon_sym__Alignof] = ACTIONS(3464), + [anon_sym_offsetof] = ACTIONS(3464), + [anon_sym__Generic] = ACTIONS(3464), + [anon_sym_typename] = ACTIONS(3464), + [anon_sym_asm] = ACTIONS(3464), + [anon_sym___asm__] = ACTIONS(3464), + [anon_sym___asm] = ACTIONS(3464), + [sym_number_literal] = ACTIONS(3466), + [anon_sym_L_SQUOTE] = ACTIONS(3466), + [anon_sym_u_SQUOTE] = ACTIONS(3466), + [anon_sym_U_SQUOTE] = ACTIONS(3466), + [anon_sym_u8_SQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_L_DQUOTE] = ACTIONS(3466), + [anon_sym_u_DQUOTE] = ACTIONS(3466), + [anon_sym_U_DQUOTE] = ACTIONS(3466), + [anon_sym_u8_DQUOTE] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [anon_sym_NULL] = ACTIONS(3464), + [anon_sym_nullptr] = ACTIONS(3464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3464), + [anon_sym_decltype] = ACTIONS(3464), + [anon_sym_explicit] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_template] = ACTIONS(3464), + [anon_sym_operator] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_static_assert] = ACTIONS(3464), + [anon_sym_concept] = ACTIONS(3464), + [anon_sym_co_return] = ACTIONS(3464), + [anon_sym_co_yield] = ACTIONS(3464), + [anon_sym_R_DQUOTE] = ACTIONS(3466), + [anon_sym_LR_DQUOTE] = ACTIONS(3466), + [anon_sym_uR_DQUOTE] = ACTIONS(3466), + [anon_sym_UR_DQUOTE] = ACTIONS(3466), + [anon_sym_u8R_DQUOTE] = ACTIONS(3466), + [anon_sym_co_await] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_requires] = ACTIONS(3464), + [anon_sym_CARET_CARET] = ACTIONS(3466), + [anon_sym_LBRACK_COLON] = ACTIONS(3466), + [sym_this] = ACTIONS(3464), }, - [STATE(575)] = { - [ts_builtin_sym_end] = ACTIONS(3598), - [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_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_module] = 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(601)] = { + [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(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(602)] = { + [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(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(603)] = { + [ts_builtin_sym_end] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3582), + [aux_sym_preproc_include_token1] = ACTIONS(3582), + [aux_sym_preproc_def_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token1] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3582), + [sym_preproc_directive] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_STAR] = ACTIONS(3584), + [anon_sym_AMP_AMP] = ACTIONS(3584), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym___extension__] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3582), + [anon_sym_virtual] = ACTIONS(3582), + [anon_sym_extern] = ACTIONS(3582), + [anon_sym___attribute__] = ACTIONS(3582), + [anon_sym___attribute] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_COLON_COLON] = ACTIONS(3584), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3584), + [anon_sym___declspec] = ACTIONS(3582), + [anon_sym___based] = ACTIONS(3582), + [anon_sym___cdecl] = ACTIONS(3582), + [anon_sym___clrcall] = ACTIONS(3582), + [anon_sym___stdcall] = ACTIONS(3582), + [anon_sym___fastcall] = ACTIONS(3582), + [anon_sym___thiscall] = ACTIONS(3582), + [anon_sym___vectorcall] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_signed] = ACTIONS(3582), + [anon_sym_unsigned] = ACTIONS(3582), + [anon_sym_long] = ACTIONS(3582), + [anon_sym_short] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_register] = ACTIONS(3582), + [anon_sym_inline] = ACTIONS(3582), + [anon_sym___inline] = ACTIONS(3582), + [anon_sym___inline__] = ACTIONS(3582), + [anon_sym___forceinline] = ACTIONS(3582), + [anon_sym_thread_local] = ACTIONS(3582), + [anon_sym___thread] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_constexpr] = ACTIONS(3582), + [anon_sym_volatile] = ACTIONS(3582), + [anon_sym_restrict] = ACTIONS(3582), + [anon_sym___restrict__] = ACTIONS(3582), + [anon_sym__Atomic] = ACTIONS(3582), + [anon_sym__Noreturn] = ACTIONS(3582), + [anon_sym_noreturn] = ACTIONS(3582), + [anon_sym__Nonnull] = ACTIONS(3582), + [anon_sym_mutable] = ACTIONS(3582), + [anon_sym_constinit] = ACTIONS(3582), + [anon_sym_consteval] = ACTIONS(3582), + [anon_sym_alignas] = ACTIONS(3582), + [anon_sym__Alignas] = ACTIONS(3582), + [sym_primitive_type] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_struct] = ACTIONS(3582), + [anon_sym_union] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_else] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_case] = ACTIONS(3582), + [anon_sym_default] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_goto] = ACTIONS(3582), + [anon_sym___try] = ACTIONS(3582), + [anon_sym___leave] = ACTIONS(3582), + [anon_sym_not] = ACTIONS(3582), + [anon_sym_compl] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_sizeof] = ACTIONS(3582), + [anon_sym___alignof__] = ACTIONS(3582), + [anon_sym___alignof] = ACTIONS(3582), + [anon_sym__alignof] = ACTIONS(3582), + [anon_sym_alignof] = ACTIONS(3582), + [anon_sym__Alignof] = ACTIONS(3582), + [anon_sym_offsetof] = ACTIONS(3582), + [anon_sym__Generic] = ACTIONS(3582), + [anon_sym_typename] = ACTIONS(3582), + [anon_sym_asm] = ACTIONS(3582), + [anon_sym___asm__] = ACTIONS(3582), + [anon_sym___asm] = ACTIONS(3582), + [sym_number_literal] = ACTIONS(3584), + [anon_sym_L_SQUOTE] = ACTIONS(3584), + [anon_sym_u_SQUOTE] = ACTIONS(3584), + [anon_sym_U_SQUOTE] = ACTIONS(3584), + [anon_sym_u8_SQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_L_DQUOTE] = ACTIONS(3584), + [anon_sym_u_DQUOTE] = ACTIONS(3584), + [anon_sym_U_DQUOTE] = ACTIONS(3584), + [anon_sym_u8_DQUOTE] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [anon_sym_NULL] = ACTIONS(3582), + [anon_sym_nullptr] = ACTIONS(3582), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(3582), + [anon_sym_explicit] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_module] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_template] = ACTIONS(3582), + [anon_sym_operator] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_static_assert] = ACTIONS(3582), + [anon_sym_concept] = ACTIONS(3582), + [anon_sym_co_return] = ACTIONS(3582), + [anon_sym_co_yield] = ACTIONS(3582), + [anon_sym_R_DQUOTE] = ACTIONS(3584), + [anon_sym_LR_DQUOTE] = ACTIONS(3584), + [anon_sym_uR_DQUOTE] = ACTIONS(3584), + [anon_sym_UR_DQUOTE] = ACTIONS(3584), + [anon_sym_u8R_DQUOTE] = ACTIONS(3584), + [anon_sym_co_await] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(3582), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(3584), + [sym_this] = ACTIONS(3582), }, - [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(604)] = { + [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(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(605)] = { + [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(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(606)] = { + [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(581)] = { + [STATE(607)] = { + [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_if_token2] = ACTIONS(3622), [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), [sym_preproc_directive] = ACTIONS(3622), @@ -143213,2852 +150091,1006 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(608)] = { + [ts_builtin_sym_end] = ACTIONS(3462), + [sym_identifier] = ACTIONS(3460), + [aux_sym_preproc_include_token1] = ACTIONS(3460), + [aux_sym_preproc_def_token1] = ACTIONS(3460), + [aux_sym_preproc_if_token1] = ACTIONS(3460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3460), + [sym_preproc_directive] = ACTIONS(3460), + [anon_sym_LPAREN2] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_PLUS] = ACTIONS(3460), + [anon_sym_STAR] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3460), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym___extension__] = ACTIONS(3460), + [anon_sym_typedef] = ACTIONS(3460), + [anon_sym_virtual] = ACTIONS(3460), + [anon_sym_extern] = ACTIONS(3460), + [anon_sym___attribute__] = ACTIONS(3460), + [anon_sym___attribute] = ACTIONS(3460), + [anon_sym_using] = ACTIONS(3460), + [anon_sym_COLON_COLON] = ACTIONS(3462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3462), + [anon_sym___declspec] = ACTIONS(3460), + [anon_sym___based] = ACTIONS(3460), + [anon_sym___cdecl] = ACTIONS(3460), + [anon_sym___clrcall] = ACTIONS(3460), + [anon_sym___stdcall] = ACTIONS(3460), + [anon_sym___fastcall] = ACTIONS(3460), + [anon_sym___thiscall] = ACTIONS(3460), + [anon_sym___vectorcall] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_signed] = ACTIONS(3460), + [anon_sym_unsigned] = ACTIONS(3460), + [anon_sym_long] = ACTIONS(3460), + [anon_sym_short] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(3460), + [anon_sym_register] = ACTIONS(3460), + [anon_sym_inline] = ACTIONS(3460), + [anon_sym___inline] = ACTIONS(3460), + [anon_sym___inline__] = ACTIONS(3460), + [anon_sym___forceinline] = ACTIONS(3460), + [anon_sym_thread_local] = ACTIONS(3460), + [anon_sym___thread] = ACTIONS(3460), + [anon_sym_const] = ACTIONS(3460), + [anon_sym_constexpr] = ACTIONS(3460), + [anon_sym_volatile] = ACTIONS(3460), + [anon_sym_restrict] = ACTIONS(3460), + [anon_sym___restrict__] = ACTIONS(3460), + [anon_sym__Atomic] = ACTIONS(3460), + [anon_sym__Noreturn] = ACTIONS(3460), + [anon_sym_noreturn] = ACTIONS(3460), + [anon_sym__Nonnull] = ACTIONS(3460), + [anon_sym_mutable] = ACTIONS(3460), + [anon_sym_constinit] = ACTIONS(3460), + [anon_sym_consteval] = ACTIONS(3460), + [anon_sym_alignas] = ACTIONS(3460), + [anon_sym__Alignas] = ACTIONS(3460), + [sym_primitive_type] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), + [anon_sym_class] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(3460), + [anon_sym_union] = ACTIONS(3460), + [anon_sym_if] = ACTIONS(3460), + [anon_sym_else] = ACTIONS(3460), + [anon_sym_switch] = ACTIONS(3460), + [anon_sym_case] = ACTIONS(3460), + [anon_sym_default] = ACTIONS(3460), + [anon_sym_while] = ACTIONS(3460), + [anon_sym_do] = ACTIONS(3460), + [anon_sym_for] = ACTIONS(3460), + [anon_sym_return] = ACTIONS(3460), + [anon_sym_break] = ACTIONS(3460), + [anon_sym_continue] = ACTIONS(3460), + [anon_sym_goto] = ACTIONS(3460), + [anon_sym___try] = ACTIONS(3460), + [anon_sym___leave] = ACTIONS(3460), + [anon_sym_not] = ACTIONS(3460), + [anon_sym_compl] = ACTIONS(3460), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_sizeof] = ACTIONS(3460), + [anon_sym___alignof__] = ACTIONS(3460), + [anon_sym___alignof] = ACTIONS(3460), + [anon_sym__alignof] = ACTIONS(3460), + [anon_sym_alignof] = ACTIONS(3460), + [anon_sym__Alignof] = ACTIONS(3460), + [anon_sym_offsetof] = ACTIONS(3460), + [anon_sym__Generic] = ACTIONS(3460), + [anon_sym_typename] = ACTIONS(3460), + [anon_sym_asm] = ACTIONS(3460), + [anon_sym___asm__] = ACTIONS(3460), + [anon_sym___asm] = ACTIONS(3460), + [sym_number_literal] = ACTIONS(3462), + [anon_sym_L_SQUOTE] = ACTIONS(3462), + [anon_sym_u_SQUOTE] = ACTIONS(3462), + [anon_sym_U_SQUOTE] = ACTIONS(3462), + [anon_sym_u8_SQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_L_DQUOTE] = ACTIONS(3462), + [anon_sym_u_DQUOTE] = ACTIONS(3462), + [anon_sym_U_DQUOTE] = ACTIONS(3462), + [anon_sym_u8_DQUOTE] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [sym_true] = ACTIONS(3460), + [sym_false] = ACTIONS(3460), + [anon_sym_NULL] = ACTIONS(3460), + [anon_sym_nullptr] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3460), + [anon_sym_decltype] = ACTIONS(3460), + [anon_sym_explicit] = ACTIONS(3460), + [anon_sym_export] = ACTIONS(3460), + [anon_sym_module] = ACTIONS(3460), + [anon_sym_import] = ACTIONS(3460), + [anon_sym_template] = ACTIONS(3460), + [anon_sym_operator] = ACTIONS(3460), + [anon_sym_try] = ACTIONS(3460), + [anon_sym_delete] = ACTIONS(3460), + [anon_sym_throw] = ACTIONS(3460), + [anon_sym_namespace] = ACTIONS(3460), + [anon_sym_static_assert] = ACTIONS(3460), + [anon_sym_concept] = ACTIONS(3460), + [anon_sym_co_return] = ACTIONS(3460), + [anon_sym_co_yield] = ACTIONS(3460), + [anon_sym_R_DQUOTE] = ACTIONS(3462), + [anon_sym_LR_DQUOTE] = ACTIONS(3462), + [anon_sym_uR_DQUOTE] = ACTIONS(3462), + [anon_sym_UR_DQUOTE] = ACTIONS(3462), + [anon_sym_u8R_DQUOTE] = ACTIONS(3462), + [anon_sym_co_await] = ACTIONS(3460), + [anon_sym_new] = ACTIONS(3460), + [anon_sym_requires] = ACTIONS(3460), + [anon_sym_CARET_CARET] = ACTIONS(3462), + [anon_sym_LBRACK_COLON] = ACTIONS(3462), + [sym_this] = ACTIONS(3460), }, - [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(609)] = { + [sym_identifier] = ACTIONS(3444), + [aux_sym_preproc_include_token1] = ACTIONS(3444), + [aux_sym_preproc_def_token1] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3444), + [aux_sym_preproc_if_token2] = ACTIONS(3444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), + [sym_preproc_directive] = ACTIONS(3444), + [anon_sym_LPAREN2] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3444), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(3444), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_virtual] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(3444), + [anon_sym___attribute__] = ACTIONS(3444), + [anon_sym___attribute] = ACTIONS(3444), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_COLON_COLON] = ACTIONS(3446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), + [anon_sym___declspec] = ACTIONS(3444), + [anon_sym___based] = ACTIONS(3444), + [anon_sym___cdecl] = ACTIONS(3444), + [anon_sym___clrcall] = ACTIONS(3444), + [anon_sym___stdcall] = ACTIONS(3444), + [anon_sym___fastcall] = ACTIONS(3444), + [anon_sym___thiscall] = ACTIONS(3444), + [anon_sym___vectorcall] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_signed] = ACTIONS(3444), + [anon_sym_unsigned] = ACTIONS(3444), + [anon_sym_long] = ACTIONS(3444), + [anon_sym_short] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_register] = ACTIONS(3444), + [anon_sym_inline] = ACTIONS(3444), + [anon_sym___inline] = ACTIONS(3444), + [anon_sym___inline__] = ACTIONS(3444), + [anon_sym___forceinline] = ACTIONS(3444), + [anon_sym_thread_local] = ACTIONS(3444), + [anon_sym___thread] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_constexpr] = ACTIONS(3444), + [anon_sym_volatile] = ACTIONS(3444), + [anon_sym_restrict] = ACTIONS(3444), + [anon_sym___restrict__] = ACTIONS(3444), + [anon_sym__Atomic] = ACTIONS(3444), + [anon_sym__Noreturn] = ACTIONS(3444), + [anon_sym_noreturn] = ACTIONS(3444), + [anon_sym__Nonnull] = ACTIONS(3444), + [anon_sym_mutable] = ACTIONS(3444), + [anon_sym_constinit] = ACTIONS(3444), + [anon_sym_consteval] = ACTIONS(3444), + [anon_sym_alignas] = ACTIONS(3444), + [anon_sym__Alignas] = ACTIONS(3444), + [sym_primitive_type] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_struct] = ACTIONS(3444), + [anon_sym_union] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_else] = ACTIONS(3444), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_case] = ACTIONS(3444), + [anon_sym_default] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_goto] = ACTIONS(3444), + [anon_sym___try] = ACTIONS(3444), + [anon_sym___leave] = ACTIONS(3444), + [anon_sym_not] = ACTIONS(3444), + [anon_sym_compl] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_sizeof] = ACTIONS(3444), + [anon_sym___alignof__] = ACTIONS(3444), + [anon_sym___alignof] = ACTIONS(3444), + [anon_sym__alignof] = ACTIONS(3444), + [anon_sym_alignof] = ACTIONS(3444), + [anon_sym__Alignof] = ACTIONS(3444), + [anon_sym_offsetof] = ACTIONS(3444), + [anon_sym__Generic] = ACTIONS(3444), + [anon_sym_typename] = ACTIONS(3444), + [anon_sym_asm] = ACTIONS(3444), + [anon_sym___asm__] = ACTIONS(3444), + [anon_sym___asm] = ACTIONS(3444), + [sym_number_literal] = ACTIONS(3446), + [anon_sym_L_SQUOTE] = ACTIONS(3446), + [anon_sym_u_SQUOTE] = ACTIONS(3446), + [anon_sym_U_SQUOTE] = ACTIONS(3446), + [anon_sym_u8_SQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_L_DQUOTE] = ACTIONS(3446), + [anon_sym_u_DQUOTE] = ACTIONS(3446), + [anon_sym_U_DQUOTE] = ACTIONS(3446), + [anon_sym_u8_DQUOTE] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [anon_sym_NULL] = ACTIONS(3444), + [anon_sym_nullptr] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3444), + [anon_sym_decltype] = ACTIONS(3444), + [anon_sym_explicit] = ACTIONS(3444), + [anon_sym_export] = ACTIONS(3444), + [anon_sym_module] = ACTIONS(3444), + [anon_sym_import] = ACTIONS(3444), + [anon_sym_template] = ACTIONS(3444), + [anon_sym_operator] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_delete] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_namespace] = ACTIONS(3444), + [anon_sym_static_assert] = ACTIONS(3444), + [anon_sym_concept] = ACTIONS(3444), + [anon_sym_co_return] = ACTIONS(3444), + [anon_sym_co_yield] = ACTIONS(3444), + [anon_sym_R_DQUOTE] = ACTIONS(3446), + [anon_sym_LR_DQUOTE] = ACTIONS(3446), + [anon_sym_uR_DQUOTE] = ACTIONS(3446), + [anon_sym_UR_DQUOTE] = ACTIONS(3446), + [anon_sym_u8R_DQUOTE] = ACTIONS(3446), + [anon_sym_co_await] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_requires] = ACTIONS(3444), + [anon_sym_CARET_CARET] = ACTIONS(3446), + [anon_sym_LBRACK_COLON] = ACTIONS(3446), + [sym_this] = ACTIONS(3444), }, - [STATE(588)] = { - [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_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_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_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_module] = 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(610)] = { + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_include_token1] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token2] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym___cdecl] = ACTIONS(3570), + [anon_sym___clrcall] = ACTIONS(3570), + [anon_sym___stdcall] = ACTIONS(3570), + [anon_sym___fastcall] = ACTIONS(3570), + [anon_sym___thiscall] = ACTIONS(3570), + [anon_sym___vectorcall] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_case] = ACTIONS(3570), + [anon_sym_default] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym___try] = ACTIONS(3570), + [anon_sym___leave] = ACTIONS(3570), + [anon_sym_not] = ACTIONS(3570), + [anon_sym_compl] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3570), + [anon_sym___alignof__] = ACTIONS(3570), + [anon_sym___alignof] = ACTIONS(3570), + [anon_sym__alignof] = ACTIONS(3570), + [anon_sym_alignof] = ACTIONS(3570), + [anon_sym__Alignof] = ACTIONS(3570), + [anon_sym_offsetof] = ACTIONS(3570), + [anon_sym__Generic] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym___asm__] = ACTIONS(3570), + [anon_sym___asm] = ACTIONS(3570), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_L_SQUOTE] = ACTIONS(3572), + [anon_sym_u_SQUOTE] = ACTIONS(3572), + [anon_sym_U_SQUOTE] = ACTIONS(3572), + [anon_sym_u8_SQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_L_DQUOTE] = ACTIONS(3572), + [anon_sym_u_DQUOTE] = ACTIONS(3572), + [anon_sym_U_DQUOTE] = ACTIONS(3572), + [anon_sym_u8_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [anon_sym_NULL] = ACTIONS(3570), + [anon_sym_nullptr] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_module] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_concept] = ACTIONS(3570), + [anon_sym_co_return] = ACTIONS(3570), + [anon_sym_co_yield] = ACTIONS(3570), + [anon_sym_R_DQUOTE] = ACTIONS(3572), + [anon_sym_LR_DQUOTE] = ACTIONS(3572), + [anon_sym_uR_DQUOTE] = ACTIONS(3572), + [anon_sym_UR_DQUOTE] = ACTIONS(3572), + [anon_sym_u8R_DQUOTE] = ACTIONS(3572), + [anon_sym_co_await] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_requires] = ACTIONS(3570), + [anon_sym_CARET_CARET] = ACTIONS(3572), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), + [sym_this] = ACTIONS(3570), }, - [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(611)] = { + [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(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(612)] = { + [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(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(613)] = { + [ts_builtin_sym_end] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3474), + [aux_sym_preproc_include_token1] = ACTIONS(3474), + [aux_sym_preproc_def_token1] = ACTIONS(3474), + [aux_sym_preproc_if_token1] = ACTIONS(3474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3474), + [sym_preproc_directive] = ACTIONS(3474), + [anon_sym_LPAREN2] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_STAR] = ACTIONS(3476), + [anon_sym_AMP_AMP] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3474), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym___extension__] = ACTIONS(3474), + [anon_sym_typedef] = ACTIONS(3474), + [anon_sym_virtual] = ACTIONS(3474), + [anon_sym_extern] = ACTIONS(3474), + [anon_sym___attribute__] = ACTIONS(3474), + [anon_sym___attribute] = ACTIONS(3474), + [anon_sym_using] = ACTIONS(3474), + [anon_sym_COLON_COLON] = ACTIONS(3476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3476), + [anon_sym___declspec] = ACTIONS(3474), + [anon_sym___based] = ACTIONS(3474), + [anon_sym___cdecl] = ACTIONS(3474), + [anon_sym___clrcall] = ACTIONS(3474), + [anon_sym___stdcall] = ACTIONS(3474), + [anon_sym___fastcall] = ACTIONS(3474), + [anon_sym___thiscall] = ACTIONS(3474), + [anon_sym___vectorcall] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_signed] = ACTIONS(3474), + [anon_sym_unsigned] = ACTIONS(3474), + [anon_sym_long] = ACTIONS(3474), + [anon_sym_short] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_register] = ACTIONS(3474), + [anon_sym_inline] = ACTIONS(3474), + [anon_sym___inline] = ACTIONS(3474), + [anon_sym___inline__] = ACTIONS(3474), + [anon_sym___forceinline] = ACTIONS(3474), + [anon_sym_thread_local] = ACTIONS(3474), + [anon_sym___thread] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_constexpr] = ACTIONS(3474), + [anon_sym_volatile] = ACTIONS(3474), + [anon_sym_restrict] = ACTIONS(3474), + [anon_sym___restrict__] = ACTIONS(3474), + [anon_sym__Atomic] = ACTIONS(3474), + [anon_sym__Noreturn] = ACTIONS(3474), + [anon_sym_noreturn] = ACTIONS(3474), + [anon_sym__Nonnull] = ACTIONS(3474), + [anon_sym_mutable] = ACTIONS(3474), + [anon_sym_constinit] = ACTIONS(3474), + [anon_sym_consteval] = ACTIONS(3474), + [anon_sym_alignas] = ACTIONS(3474), + [anon_sym__Alignas] = ACTIONS(3474), + [sym_primitive_type] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_struct] = ACTIONS(3474), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_else] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_case] = ACTIONS(3474), + [anon_sym_default] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_goto] = ACTIONS(3474), + [anon_sym___try] = ACTIONS(3474), + [anon_sym___leave] = ACTIONS(3474), + [anon_sym_not] = ACTIONS(3474), + [anon_sym_compl] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_sizeof] = ACTIONS(3474), + [anon_sym___alignof__] = ACTIONS(3474), + [anon_sym___alignof] = ACTIONS(3474), + [anon_sym__alignof] = ACTIONS(3474), + [anon_sym_alignof] = ACTIONS(3474), + [anon_sym__Alignof] = ACTIONS(3474), + [anon_sym_offsetof] = ACTIONS(3474), + [anon_sym__Generic] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3474), + [anon_sym_asm] = ACTIONS(3474), + [anon_sym___asm__] = ACTIONS(3474), + [anon_sym___asm] = ACTIONS(3474), + [sym_number_literal] = ACTIONS(3476), + [anon_sym_L_SQUOTE] = ACTIONS(3476), + [anon_sym_u_SQUOTE] = ACTIONS(3476), + [anon_sym_U_SQUOTE] = ACTIONS(3476), + [anon_sym_u8_SQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_L_DQUOTE] = ACTIONS(3476), + [anon_sym_u_DQUOTE] = ACTIONS(3476), + [anon_sym_U_DQUOTE] = ACTIONS(3476), + [anon_sym_u8_DQUOTE] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [anon_sym_NULL] = ACTIONS(3474), + [anon_sym_nullptr] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3474), + [anon_sym_decltype] = ACTIONS(3474), + [anon_sym_explicit] = ACTIONS(3474), + [anon_sym_export] = ACTIONS(3474), + [anon_sym_module] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_template] = ACTIONS(3474), + [anon_sym_operator] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_namespace] = ACTIONS(3474), + [anon_sym_static_assert] = ACTIONS(3474), + [anon_sym_concept] = ACTIONS(3474), + [anon_sym_co_return] = ACTIONS(3474), + [anon_sym_co_yield] = ACTIONS(3474), + [anon_sym_R_DQUOTE] = ACTIONS(3476), + [anon_sym_LR_DQUOTE] = ACTIONS(3476), + [anon_sym_uR_DQUOTE] = ACTIONS(3476), + [anon_sym_UR_DQUOTE] = ACTIONS(3476), + [anon_sym_u8R_DQUOTE] = ACTIONS(3476), + [anon_sym_co_await] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_requires] = ACTIONS(3474), + [anon_sym_CARET_CARET] = ACTIONS(3476), + [anon_sym_LBRACK_COLON] = ACTIONS(3476), + [sym_this] = ACTIONS(3474), }, - [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(614)] = { + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_include_token1] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token2] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym___cdecl] = ACTIONS(3570), + [anon_sym___clrcall] = ACTIONS(3570), + [anon_sym___stdcall] = ACTIONS(3570), + [anon_sym___fastcall] = ACTIONS(3570), + [anon_sym___thiscall] = ACTIONS(3570), + [anon_sym___vectorcall] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_case] = ACTIONS(3570), + [anon_sym_default] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym___try] = ACTIONS(3570), + [anon_sym___leave] = ACTIONS(3570), + [anon_sym_not] = ACTIONS(3570), + [anon_sym_compl] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3570), + [anon_sym___alignof__] = ACTIONS(3570), + [anon_sym___alignof] = ACTIONS(3570), + [anon_sym__alignof] = ACTIONS(3570), + [anon_sym_alignof] = ACTIONS(3570), + [anon_sym__Alignof] = ACTIONS(3570), + [anon_sym_offsetof] = ACTIONS(3570), + [anon_sym__Generic] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym___asm__] = ACTIONS(3570), + [anon_sym___asm] = ACTIONS(3570), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_L_SQUOTE] = ACTIONS(3572), + [anon_sym_u_SQUOTE] = ACTIONS(3572), + [anon_sym_U_SQUOTE] = ACTIONS(3572), + [anon_sym_u8_SQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_L_DQUOTE] = ACTIONS(3572), + [anon_sym_u_DQUOTE] = ACTIONS(3572), + [anon_sym_U_DQUOTE] = ACTIONS(3572), + [anon_sym_u8_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [anon_sym_NULL] = ACTIONS(3570), + [anon_sym_nullptr] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_module] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_concept] = ACTIONS(3570), + [anon_sym_co_return] = ACTIONS(3570), + [anon_sym_co_yield] = ACTIONS(3570), + [anon_sym_R_DQUOTE] = ACTIONS(3572), + [anon_sym_LR_DQUOTE] = ACTIONS(3572), + [anon_sym_uR_DQUOTE] = ACTIONS(3572), + [anon_sym_UR_DQUOTE] = ACTIONS(3572), + [anon_sym_u8R_DQUOTE] = ACTIONS(3572), + [anon_sym_co_await] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_requires] = ACTIONS(3570), + [anon_sym_CARET_CARET] = ACTIONS(3572), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), + [sym_this] = ACTIONS(3570), }, - [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)] = { + [STATE(615)] = { + [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_if_token2] = ACTIONS(3626), [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), [sym_preproc_directive] = ACTIONS(3626), @@ -146195,291 +151227,4977 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(616)] = { + [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(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(617)] = { + [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(605)] = { + [STATE(618)] = { + [ts_builtin_sym_end] = ACTIONS(3470), + [sym_identifier] = ACTIONS(3468), + [aux_sym_preproc_include_token1] = ACTIONS(3468), + [aux_sym_preproc_def_token1] = ACTIONS(3468), + [aux_sym_preproc_if_token1] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), + [sym_preproc_directive] = ACTIONS(3468), + [anon_sym_LPAREN2] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym___extension__] = ACTIONS(3468), + [anon_sym_typedef] = ACTIONS(3468), + [anon_sym_virtual] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym___attribute__] = ACTIONS(3468), + [anon_sym___attribute] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_COLON_COLON] = ACTIONS(3470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3470), + [anon_sym___declspec] = ACTIONS(3468), + [anon_sym___based] = ACTIONS(3468), + [anon_sym___cdecl] = ACTIONS(3468), + [anon_sym___clrcall] = ACTIONS(3468), + [anon_sym___stdcall] = ACTIONS(3468), + [anon_sym___fastcall] = ACTIONS(3468), + [anon_sym___thiscall] = ACTIONS(3468), + [anon_sym___vectorcall] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_signed] = ACTIONS(3468), + [anon_sym_unsigned] = ACTIONS(3468), + [anon_sym_long] = ACTIONS(3468), + [anon_sym_short] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_register] = ACTIONS(3468), + [anon_sym_inline] = ACTIONS(3468), + [anon_sym___inline] = ACTIONS(3468), + [anon_sym___inline__] = ACTIONS(3468), + [anon_sym___forceinline] = ACTIONS(3468), + [anon_sym_thread_local] = ACTIONS(3468), + [anon_sym___thread] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_constexpr] = ACTIONS(3468), + [anon_sym_volatile] = ACTIONS(3468), + [anon_sym_restrict] = ACTIONS(3468), + [anon_sym___restrict__] = ACTIONS(3468), + [anon_sym__Atomic] = ACTIONS(3468), + [anon_sym__Noreturn] = ACTIONS(3468), + [anon_sym_noreturn] = ACTIONS(3468), + [anon_sym__Nonnull] = ACTIONS(3468), + [anon_sym_mutable] = ACTIONS(3468), + [anon_sym_constinit] = ACTIONS(3468), + [anon_sym_consteval] = ACTIONS(3468), + [anon_sym_alignas] = ACTIONS(3468), + [anon_sym__Alignas] = ACTIONS(3468), + [sym_primitive_type] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_union] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_goto] = ACTIONS(3468), + [anon_sym___try] = ACTIONS(3468), + [anon_sym___leave] = ACTIONS(3468), + [anon_sym_not] = ACTIONS(3468), + [anon_sym_compl] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_sizeof] = ACTIONS(3468), + [anon_sym___alignof__] = ACTIONS(3468), + [anon_sym___alignof] = ACTIONS(3468), + [anon_sym__alignof] = ACTIONS(3468), + [anon_sym_alignof] = ACTIONS(3468), + [anon_sym__Alignof] = ACTIONS(3468), + [anon_sym_offsetof] = ACTIONS(3468), + [anon_sym__Generic] = ACTIONS(3468), + [anon_sym_typename] = ACTIONS(3468), + [anon_sym_asm] = ACTIONS(3468), + [anon_sym___asm__] = ACTIONS(3468), + [anon_sym___asm] = ACTIONS(3468), + [sym_number_literal] = ACTIONS(3470), + [anon_sym_L_SQUOTE] = ACTIONS(3470), + [anon_sym_u_SQUOTE] = ACTIONS(3470), + [anon_sym_U_SQUOTE] = ACTIONS(3470), + [anon_sym_u8_SQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_L_DQUOTE] = ACTIONS(3470), + [anon_sym_u_DQUOTE] = ACTIONS(3470), + [anon_sym_U_DQUOTE] = ACTIONS(3470), + [anon_sym_u8_DQUOTE] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [anon_sym_NULL] = ACTIONS(3468), + [anon_sym_nullptr] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3468), + [anon_sym_decltype] = ACTIONS(3468), + [anon_sym_explicit] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_template] = ACTIONS(3468), + [anon_sym_operator] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_static_assert] = ACTIONS(3468), + [anon_sym_concept] = ACTIONS(3468), + [anon_sym_co_return] = ACTIONS(3468), + [anon_sym_co_yield] = ACTIONS(3468), + [anon_sym_R_DQUOTE] = ACTIONS(3470), + [anon_sym_LR_DQUOTE] = ACTIONS(3470), + [anon_sym_uR_DQUOTE] = ACTIONS(3470), + [anon_sym_UR_DQUOTE] = ACTIONS(3470), + [anon_sym_u8R_DQUOTE] = ACTIONS(3470), + [anon_sym_co_await] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_requires] = ACTIONS(3468), + [anon_sym_CARET_CARET] = ACTIONS(3470), + [anon_sym_LBRACK_COLON] = ACTIONS(3470), + [sym_this] = ACTIONS(3468), + }, + [STATE(619)] = { + [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(620)] = { + [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(621)] = { + [ts_builtin_sym_end] = ACTIONS(3201), + [sym_identifier] = ACTIONS(3196), + [aux_sym_preproc_include_token1] = ACTIONS(3196), + [aux_sym_preproc_def_token1] = ACTIONS(3196), + [aux_sym_preproc_if_token1] = ACTIONS(3196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3196), + [sym_preproc_directive] = ACTIONS(3196), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_typedef] = ACTIONS(3196), + [anon_sym_virtual] = ACTIONS(3196), + [anon_sym_extern] = ACTIONS(3196), + [anon_sym___attribute__] = ACTIONS(3196), + [anon_sym___attribute] = ACTIONS(3196), + [anon_sym_using] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3196), + [anon_sym___based] = ACTIONS(3196), + [anon_sym___cdecl] = ACTIONS(3196), + [anon_sym___clrcall] = ACTIONS(3196), + [anon_sym___stdcall] = ACTIONS(3196), + [anon_sym___fastcall] = ACTIONS(3196), + [anon_sym___thiscall] = ACTIONS(3196), + [anon_sym___vectorcall] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_signed] = ACTIONS(3196), + [anon_sym_unsigned] = ACTIONS(3196), + [anon_sym_long] = ACTIONS(3196), + [anon_sym_short] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_register] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym___inline] = ACTIONS(3196), + [anon_sym___inline__] = ACTIONS(3196), + [anon_sym___forceinline] = ACTIONS(3196), + [anon_sym_thread_local] = ACTIONS(3196), + [anon_sym___thread] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_constexpr] = ACTIONS(3196), + [anon_sym_volatile] = ACTIONS(3196), + [anon_sym_restrict] = ACTIONS(3196), + [anon_sym___restrict__] = ACTIONS(3196), + [anon_sym__Atomic] = ACTIONS(3196), + [anon_sym__Noreturn] = ACTIONS(3196), + [anon_sym_noreturn] = ACTIONS(3196), + [anon_sym__Nonnull] = ACTIONS(3196), + [anon_sym_mutable] = ACTIONS(3196), + [anon_sym_constinit] = ACTIONS(3196), + [anon_sym_consteval] = ACTIONS(3196), + [anon_sym_alignas] = ACTIONS(3196), + [anon_sym__Alignas] = ACTIONS(3196), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), + [anon_sym_class] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3196), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3196), + [anon_sym_case] = ACTIONS(3196), + [anon_sym_default] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_do] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_goto] = ACTIONS(3196), + [anon_sym___try] = ACTIONS(3196), + [anon_sym___leave] = ACTIONS(3196), + [anon_sym_not] = ACTIONS(3196), + [anon_sym_compl] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3196), + [anon_sym___alignof__] = ACTIONS(3196), + [anon_sym___alignof] = ACTIONS(3196), + [anon_sym__alignof] = ACTIONS(3196), + [anon_sym_alignof] = ACTIONS(3196), + [anon_sym__Alignof] = ACTIONS(3196), + [anon_sym_offsetof] = ACTIONS(3196), + [anon_sym__Generic] = ACTIONS(3196), + [anon_sym_typename] = ACTIONS(3196), + [anon_sym_asm] = ACTIONS(3196), + [anon_sym___asm__] = ACTIONS(3196), + [anon_sym___asm] = ACTIONS(3196), + [sym_number_literal] = ACTIONS(3201), + [anon_sym_L_SQUOTE] = ACTIONS(3201), + [anon_sym_u_SQUOTE] = ACTIONS(3201), + [anon_sym_U_SQUOTE] = ACTIONS(3201), + [anon_sym_u8_SQUOTE] = ACTIONS(3201), + [anon_sym_SQUOTE] = ACTIONS(3201), + [anon_sym_L_DQUOTE] = ACTIONS(3201), + [anon_sym_u_DQUOTE] = ACTIONS(3201), + [anon_sym_U_DQUOTE] = ACTIONS(3201), + [anon_sym_u8_DQUOTE] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [sym_true] = ACTIONS(3196), + [sym_false] = ACTIONS(3196), + [anon_sym_NULL] = ACTIONS(3196), + [anon_sym_nullptr] = ACTIONS(3196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3196), + [anon_sym_decltype] = ACTIONS(3196), + [anon_sym_explicit] = ACTIONS(3196), + [anon_sym_export] = ACTIONS(3196), + [anon_sym_module] = ACTIONS(3196), + [anon_sym_import] = ACTIONS(3196), + [anon_sym_template] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_delete] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_namespace] = ACTIONS(3196), + [anon_sym_static_assert] = ACTIONS(3196), + [anon_sym_concept] = ACTIONS(3196), + [anon_sym_co_return] = ACTIONS(3196), + [anon_sym_co_yield] = ACTIONS(3196), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3196), + [anon_sym_requires] = ACTIONS(3196), + [anon_sym_CARET_CARET] = ACTIONS(3201), + [anon_sym_LBRACK_COLON] = ACTIONS(3201), + [sym_this] = ACTIONS(3196), + }, + [STATE(622)] = { + [sym_identifier] = ACTIONS(3149), + [aux_sym_preproc_include_token1] = ACTIONS(3149), + [aux_sym_preproc_def_token1] = ACTIONS(3149), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), + [sym_preproc_directive] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym___attribute__] = ACTIONS(3149), + [anon_sym___attribute] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), + [anon_sym___declspec] = ACTIONS(3149), + [anon_sym___based] = ACTIONS(3149), + [anon_sym___cdecl] = ACTIONS(3149), + [anon_sym___clrcall] = ACTIONS(3149), + [anon_sym___stdcall] = ACTIONS(3149), + [anon_sym___fastcall] = ACTIONS(3149), + [anon_sym___thiscall] = ACTIONS(3149), + [anon_sym___vectorcall] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_signed] = ACTIONS(3149), + [anon_sym_unsigned] = ACTIONS(3149), + [anon_sym_long] = ACTIONS(3149), + [anon_sym_short] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_register] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym___inline] = ACTIONS(3149), + [anon_sym___inline__] = ACTIONS(3149), + [anon_sym___forceinline] = ACTIONS(3149), + [anon_sym_thread_local] = ACTIONS(3149), + [anon_sym___thread] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_constexpr] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_restrict] = ACTIONS(3149), + [anon_sym___restrict__] = ACTIONS(3149), + [anon_sym__Atomic] = ACTIONS(3149), + [anon_sym__Noreturn] = ACTIONS(3149), + [anon_sym_noreturn] = ACTIONS(3149), + [anon_sym__Nonnull] = ACTIONS(3149), + [anon_sym_mutable] = ACTIONS(3149), + [anon_sym_constinit] = ACTIONS(3149), + [anon_sym_consteval] = ACTIONS(3149), + [anon_sym_alignas] = ACTIONS(3149), + [anon_sym__Alignas] = ACTIONS(3149), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_case] = ACTIONS(3149), + [anon_sym_default] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym___try] = ACTIONS(3149), + [anon_sym___leave] = ACTIONS(3149), + [anon_sym_not] = ACTIONS(3149), + [anon_sym_compl] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_sizeof] = ACTIONS(3149), + [anon_sym___alignof__] = ACTIONS(3149), + [anon_sym___alignof] = ACTIONS(3149), + [anon_sym__alignof] = ACTIONS(3149), + [anon_sym_alignof] = ACTIONS(3149), + [anon_sym__Alignof] = ACTIONS(3149), + [anon_sym_offsetof] = ACTIONS(3149), + [anon_sym__Generic] = ACTIONS(3149), + [anon_sym_typename] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym___asm__] = ACTIONS(3149), + [anon_sym___asm] = ACTIONS(3149), + [sym_number_literal] = ACTIONS(3147), + [anon_sym_L_SQUOTE] = ACTIONS(3147), + [anon_sym_u_SQUOTE] = ACTIONS(3147), + [anon_sym_U_SQUOTE] = ACTIONS(3147), + [anon_sym_u8_SQUOTE] = ACTIONS(3147), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_L_DQUOTE] = ACTIONS(3147), + [anon_sym_u_DQUOTE] = ACTIONS(3147), + [anon_sym_U_DQUOTE] = ACTIONS(3147), + [anon_sym_u8_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [anon_sym_NULL] = ACTIONS(3149), + [anon_sym_nullptr] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3149), + [anon_sym_decltype] = ACTIONS(3149), + [anon_sym_explicit] = ACTIONS(3149), + [anon_sym_export] = ACTIONS(3149), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_operator] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_delete] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_static_assert] = ACTIONS(3149), + [anon_sym_concept] = ACTIONS(3149), + [anon_sym_co_return] = ACTIONS(3149), + [anon_sym_co_yield] = ACTIONS(3149), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_R_DQUOTE] = ACTIONS(3147), + [anon_sym_LR_DQUOTE] = ACTIONS(3147), + [anon_sym_uR_DQUOTE] = ACTIONS(3147), + [anon_sym_UR_DQUOTE] = ACTIONS(3147), + [anon_sym_u8R_DQUOTE] = ACTIONS(3147), + [anon_sym_co_await] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_requires] = ACTIONS(3149), + [anon_sym_CARET_CARET] = ACTIONS(3147), + [anon_sym_LBRACK_COLON] = ACTIONS(3147), + [sym_this] = ACTIONS(3149), + }, + [STATE(623)] = { + [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_else] = 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(624)] = { + [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(625)] = { + [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_else] = 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(626)] = { + [sym_identifier] = ACTIONS(3448), + [aux_sym_preproc_include_token1] = ACTIONS(3448), + [aux_sym_preproc_def_token1] = ACTIONS(3448), + [aux_sym_preproc_if_token1] = ACTIONS(3448), + [aux_sym_preproc_if_token2] = ACTIONS(3448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3448), + [sym_preproc_directive] = ACTIONS(3448), + [anon_sym_LPAREN2] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3450), + [anon_sym_AMP_AMP] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym___extension__] = ACTIONS(3448), + [anon_sym_typedef] = ACTIONS(3448), + [anon_sym_virtual] = ACTIONS(3448), + [anon_sym_extern] = ACTIONS(3448), + [anon_sym___attribute__] = ACTIONS(3448), + [anon_sym___attribute] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3448), + [anon_sym_COLON_COLON] = ACTIONS(3450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3450), + [anon_sym___declspec] = ACTIONS(3448), + [anon_sym___based] = ACTIONS(3448), + [anon_sym___cdecl] = ACTIONS(3448), + [anon_sym___clrcall] = ACTIONS(3448), + [anon_sym___stdcall] = ACTIONS(3448), + [anon_sym___fastcall] = ACTIONS(3448), + [anon_sym___thiscall] = ACTIONS(3448), + [anon_sym___vectorcall] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_signed] = ACTIONS(3448), + [anon_sym_unsigned] = ACTIONS(3448), + [anon_sym_long] = ACTIONS(3448), + [anon_sym_short] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_register] = ACTIONS(3448), + [anon_sym_inline] = ACTIONS(3448), + [anon_sym___inline] = ACTIONS(3448), + [anon_sym___inline__] = ACTIONS(3448), + [anon_sym___forceinline] = ACTIONS(3448), + [anon_sym_thread_local] = ACTIONS(3448), + [anon_sym___thread] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_constexpr] = ACTIONS(3448), + [anon_sym_volatile] = ACTIONS(3448), + [anon_sym_restrict] = ACTIONS(3448), + [anon_sym___restrict__] = ACTIONS(3448), + [anon_sym__Atomic] = ACTIONS(3448), + [anon_sym__Noreturn] = ACTIONS(3448), + [anon_sym_noreturn] = ACTIONS(3448), + [anon_sym__Nonnull] = ACTIONS(3448), + [anon_sym_mutable] = ACTIONS(3448), + [anon_sym_constinit] = ACTIONS(3448), + [anon_sym_consteval] = ACTIONS(3448), + [anon_sym_alignas] = ACTIONS(3448), + [anon_sym__Alignas] = ACTIONS(3448), + [sym_primitive_type] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), + [anon_sym_class] = ACTIONS(3448), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_union] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3448), + [anon_sym_case] = ACTIONS(3448), + [anon_sym_default] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_do] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_goto] = ACTIONS(3448), + [anon_sym___try] = ACTIONS(3448), + [anon_sym___leave] = ACTIONS(3448), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_sizeof] = ACTIONS(3448), + [anon_sym___alignof__] = ACTIONS(3448), + [anon_sym___alignof] = ACTIONS(3448), + [anon_sym__alignof] = ACTIONS(3448), + [anon_sym_alignof] = ACTIONS(3448), + [anon_sym__Alignof] = ACTIONS(3448), + [anon_sym_offsetof] = ACTIONS(3448), + [anon_sym__Generic] = ACTIONS(3448), + [anon_sym_typename] = ACTIONS(3448), + [anon_sym_asm] = ACTIONS(3448), + [anon_sym___asm__] = ACTIONS(3448), + [anon_sym___asm] = ACTIONS(3448), + [sym_number_literal] = ACTIONS(3450), + [anon_sym_L_SQUOTE] = ACTIONS(3450), + [anon_sym_u_SQUOTE] = ACTIONS(3450), + [anon_sym_U_SQUOTE] = ACTIONS(3450), + [anon_sym_u8_SQUOTE] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3450), + [anon_sym_L_DQUOTE] = ACTIONS(3450), + [anon_sym_u_DQUOTE] = ACTIONS(3450), + [anon_sym_U_DQUOTE] = ACTIONS(3450), + [anon_sym_u8_DQUOTE] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(3450), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [anon_sym_NULL] = ACTIONS(3448), + [anon_sym_nullptr] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3448), + [anon_sym_decltype] = ACTIONS(3448), + [anon_sym_explicit] = ACTIONS(3448), + [anon_sym_export] = ACTIONS(3448), + [anon_sym_module] = ACTIONS(3448), + [anon_sym_import] = ACTIONS(3448), + [anon_sym_template] = ACTIONS(3448), + [anon_sym_operator] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [anon_sym_delete] = ACTIONS(3448), + [anon_sym_throw] = ACTIONS(3448), + [anon_sym_namespace] = ACTIONS(3448), + [anon_sym_static_assert] = ACTIONS(3448), + [anon_sym_concept] = ACTIONS(3448), + [anon_sym_co_return] = ACTIONS(3448), + [anon_sym_co_yield] = ACTIONS(3448), + [anon_sym_R_DQUOTE] = ACTIONS(3450), + [anon_sym_LR_DQUOTE] = ACTIONS(3450), + [anon_sym_uR_DQUOTE] = ACTIONS(3450), + [anon_sym_UR_DQUOTE] = ACTIONS(3450), + [anon_sym_u8R_DQUOTE] = ACTIONS(3450), + [anon_sym_co_await] = ACTIONS(3448), + [anon_sym_new] = ACTIONS(3448), + [anon_sym_requires] = ACTIONS(3448), + [anon_sym_CARET_CARET] = ACTIONS(3450), + [anon_sym_LBRACK_COLON] = ACTIONS(3450), + [sym_this] = ACTIONS(3448), + }, + [STATE(627)] = { + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3312), + [aux_sym_preproc_include_token1] = ACTIONS(3312), + [aux_sym_preproc_def_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3312), + [sym_preproc_directive] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym___extension__] = ACTIONS(3312), + [anon_sym_typedef] = ACTIONS(3312), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym___attribute] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3317), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym___based] = ACTIONS(3312), + [anon_sym___cdecl] = ACTIONS(3312), + [anon_sym___clrcall] = ACTIONS(3312), + [anon_sym___stdcall] = ACTIONS(3312), + [anon_sym___fastcall] = ACTIONS(3312), + [anon_sym___thiscall] = ACTIONS(3312), + [anon_sym___vectorcall] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym___inline] = ACTIONS(3312), + [anon_sym___inline__] = ACTIONS(3312), + [anon_sym___forceinline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym___thread] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym__Nonnull] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_alignas] = ACTIONS(3312), + [anon_sym__Alignas] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym___try] = ACTIONS(3312), + [anon_sym___leave] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_compl] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_sizeof] = ACTIONS(3312), + [anon_sym___alignof__] = ACTIONS(3312), + [anon_sym___alignof] = ACTIONS(3312), + [anon_sym__alignof] = ACTIONS(3312), + [anon_sym_alignof] = ACTIONS(3312), + [anon_sym__Alignof] = ACTIONS(3312), + [anon_sym_offsetof] = ACTIONS(3312), + [anon_sym__Generic] = ACTIONS(3312), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym___asm__] = ACTIONS(3312), + [anon_sym___asm] = ACTIONS(3312), + [sym_number_literal] = ACTIONS(3317), + [anon_sym_L_SQUOTE] = ACTIONS(3317), + [anon_sym_u_SQUOTE] = ACTIONS(3317), + [anon_sym_U_SQUOTE] = ACTIONS(3317), + [anon_sym_u8_SQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_L_DQUOTE] = ACTIONS(3317), + [anon_sym_u_DQUOTE] = ACTIONS(3317), + [anon_sym_U_DQUOTE] = ACTIONS(3317), + [anon_sym_u8_DQUOTE] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [anon_sym_NULL] = ACTIONS(3312), + [anon_sym_nullptr] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3312), + [anon_sym_decltype] = ACTIONS(3312), + [anon_sym_explicit] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3312), + [anon_sym_operator] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_static_assert] = ACTIONS(3312), + [anon_sym_concept] = ACTIONS(3312), + [anon_sym_co_return] = ACTIONS(3312), + [anon_sym_co_yield] = ACTIONS(3312), + [anon_sym_R_DQUOTE] = ACTIONS(3317), + [anon_sym_LR_DQUOTE] = ACTIONS(3317), + [anon_sym_uR_DQUOTE] = ACTIONS(3317), + [anon_sym_UR_DQUOTE] = ACTIONS(3317), + [anon_sym_u8R_DQUOTE] = ACTIONS(3317), + [anon_sym_co_await] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_requires] = ACTIONS(3312), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(3317), + [sym_this] = ACTIONS(3312), + }, + [STATE(628)] = { + [sym_catch_clause] = STATE(416), + [aux_sym_constructor_try_statement_repeat1] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(3186), + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_include_token1] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym___attribute] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym___cdecl] = ACTIONS(3184), + [anon_sym___clrcall] = ACTIONS(3184), + [anon_sym___stdcall] = ACTIONS(3184), + [anon_sym___fastcall] = ACTIONS(3184), + [anon_sym___thiscall] = ACTIONS(3184), + [anon_sym___vectorcall] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3186), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym__Nonnull] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym__Alignas] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_not] = ACTIONS(3184), + [anon_sym_compl] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3186), + [anon_sym_sizeof] = ACTIONS(3184), + [anon_sym___alignof__] = ACTIONS(3184), + [anon_sym___alignof] = ACTIONS(3184), + [anon_sym__alignof] = ACTIONS(3184), + [anon_sym_alignof] = ACTIONS(3184), + [anon_sym__Alignof] = ACTIONS(3184), + [anon_sym_offsetof] = ACTIONS(3184), + [anon_sym__Generic] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_asm] = ACTIONS(3184), + [anon_sym___asm__] = ACTIONS(3184), + [anon_sym___asm] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3186), + [anon_sym_L_SQUOTE] = ACTIONS(3186), + [anon_sym_u_SQUOTE] = ACTIONS(3186), + [anon_sym_U_SQUOTE] = ACTIONS(3186), + [anon_sym_u8_SQUOTE] = ACTIONS(3186), + [anon_sym_SQUOTE] = ACTIONS(3186), + [anon_sym_L_DQUOTE] = ACTIONS(3186), + [anon_sym_u_DQUOTE] = ACTIONS(3186), + [anon_sym_U_DQUOTE] = ACTIONS(3186), + [anon_sym_u8_DQUOTE] = ACTIONS(3186), + [anon_sym_DQUOTE] = ACTIONS(3186), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [anon_sym_NULL] = ACTIONS(3184), + [anon_sym_nullptr] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_module] = ACTIONS(3184), + [anon_sym_import] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_concept] = ACTIONS(3184), + [anon_sym_co_return] = ACTIONS(3184), + [anon_sym_co_yield] = ACTIONS(3184), + [anon_sym_catch] = ACTIONS(4170), + [anon_sym_R_DQUOTE] = ACTIONS(3186), + [anon_sym_LR_DQUOTE] = ACTIONS(3186), + [anon_sym_uR_DQUOTE] = ACTIONS(3186), + [anon_sym_UR_DQUOTE] = ACTIONS(3186), + [anon_sym_u8R_DQUOTE] = ACTIONS(3186), + [anon_sym_co_await] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_requires] = ACTIONS(3184), + [anon_sym_CARET_CARET] = ACTIONS(3186), + [anon_sym_LBRACK_COLON] = ACTIONS(3186), + [sym_this] = ACTIONS(3184), + }, + [STATE(629)] = { + [sym_identifier] = ACTIONS(3456), + [aux_sym_preproc_include_token1] = ACTIONS(3456), + [aux_sym_preproc_def_token1] = ACTIONS(3456), + [aux_sym_preproc_if_token1] = ACTIONS(3456), + [aux_sym_preproc_if_token2] = ACTIONS(3456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3456), + [sym_preproc_directive] = ACTIONS(3456), + [anon_sym_LPAREN2] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(3458), + [anon_sym_AMP_AMP] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym___extension__] = ACTIONS(3456), + [anon_sym_typedef] = ACTIONS(3456), + [anon_sym_virtual] = ACTIONS(3456), + [anon_sym_extern] = ACTIONS(3456), + [anon_sym___attribute__] = ACTIONS(3456), + [anon_sym___attribute] = ACTIONS(3456), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3458), + [anon_sym___declspec] = ACTIONS(3456), + [anon_sym___based] = ACTIONS(3456), + [anon_sym___cdecl] = ACTIONS(3456), + [anon_sym___clrcall] = ACTIONS(3456), + [anon_sym___stdcall] = ACTIONS(3456), + [anon_sym___fastcall] = ACTIONS(3456), + [anon_sym___thiscall] = ACTIONS(3456), + [anon_sym___vectorcall] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_signed] = ACTIONS(3456), + [anon_sym_unsigned] = ACTIONS(3456), + [anon_sym_long] = ACTIONS(3456), + [anon_sym_short] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_register] = ACTIONS(3456), + [anon_sym_inline] = ACTIONS(3456), + [anon_sym___inline] = ACTIONS(3456), + [anon_sym___inline__] = ACTIONS(3456), + [anon_sym___forceinline] = ACTIONS(3456), + [anon_sym_thread_local] = ACTIONS(3456), + [anon_sym___thread] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_constexpr] = ACTIONS(3456), + [anon_sym_volatile] = ACTIONS(3456), + [anon_sym_restrict] = ACTIONS(3456), + [anon_sym___restrict__] = ACTIONS(3456), + [anon_sym__Atomic] = ACTIONS(3456), + [anon_sym__Noreturn] = ACTIONS(3456), + [anon_sym_noreturn] = ACTIONS(3456), + [anon_sym__Nonnull] = ACTIONS(3456), + [anon_sym_mutable] = ACTIONS(3456), + [anon_sym_constinit] = ACTIONS(3456), + [anon_sym_consteval] = ACTIONS(3456), + [anon_sym_alignas] = ACTIONS(3456), + [anon_sym__Alignas] = ACTIONS(3456), + [sym_primitive_type] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), + [anon_sym_class] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(3456), + [anon_sym_union] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_case] = ACTIONS(3456), + [anon_sym_default] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_goto] = ACTIONS(3456), + [anon_sym___try] = ACTIONS(3456), + [anon_sym___leave] = ACTIONS(3456), + [anon_sym_not] = ACTIONS(3456), + [anon_sym_compl] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_sizeof] = ACTIONS(3456), + [anon_sym___alignof__] = ACTIONS(3456), + [anon_sym___alignof] = ACTIONS(3456), + [anon_sym__alignof] = ACTIONS(3456), + [anon_sym_alignof] = ACTIONS(3456), + [anon_sym__Alignof] = ACTIONS(3456), + [anon_sym_offsetof] = ACTIONS(3456), + [anon_sym__Generic] = ACTIONS(3456), + [anon_sym_typename] = ACTIONS(3456), + [anon_sym_asm] = ACTIONS(3456), + [anon_sym___asm__] = ACTIONS(3456), + [anon_sym___asm] = ACTIONS(3456), + [sym_number_literal] = ACTIONS(3458), + [anon_sym_L_SQUOTE] = ACTIONS(3458), + [anon_sym_u_SQUOTE] = ACTIONS(3458), + [anon_sym_U_SQUOTE] = ACTIONS(3458), + [anon_sym_u8_SQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_L_DQUOTE] = ACTIONS(3458), + [anon_sym_u_DQUOTE] = ACTIONS(3458), + [anon_sym_U_DQUOTE] = ACTIONS(3458), + [anon_sym_u8_DQUOTE] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [sym_true] = ACTIONS(3456), + [sym_false] = ACTIONS(3456), + [anon_sym_NULL] = ACTIONS(3456), + [anon_sym_nullptr] = ACTIONS(3456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3456), + [anon_sym_decltype] = ACTIONS(3456), + [anon_sym_explicit] = ACTIONS(3456), + [anon_sym_export] = ACTIONS(3456), + [anon_sym_module] = ACTIONS(3456), + [anon_sym_import] = ACTIONS(3456), + [anon_sym_template] = ACTIONS(3456), + [anon_sym_operator] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_delete] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_namespace] = ACTIONS(3456), + [anon_sym_static_assert] = ACTIONS(3456), + [anon_sym_concept] = ACTIONS(3456), + [anon_sym_co_return] = ACTIONS(3456), + [anon_sym_co_yield] = ACTIONS(3456), + [anon_sym_R_DQUOTE] = ACTIONS(3458), + [anon_sym_LR_DQUOTE] = ACTIONS(3458), + [anon_sym_uR_DQUOTE] = ACTIONS(3458), + [anon_sym_UR_DQUOTE] = ACTIONS(3458), + [anon_sym_u8R_DQUOTE] = ACTIONS(3458), + [anon_sym_co_await] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_requires] = ACTIONS(3456), + [anon_sym_CARET_CARET] = ACTIONS(3458), + [anon_sym_LBRACK_COLON] = ACTIONS(3458), + [sym_this] = ACTIONS(3456), + }, + [STATE(630)] = { + [sym_identifier] = ACTIONS(3590), + [aux_sym_preproc_include_token1] = ACTIONS(3590), + [aux_sym_preproc_def_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token2] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3590), + [sym_preproc_directive] = ACTIONS(3590), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_AMP] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym___extension__] = ACTIONS(3590), + [anon_sym_typedef] = ACTIONS(3590), + [anon_sym_virtual] = ACTIONS(3590), + [anon_sym_extern] = ACTIONS(3590), + [anon_sym___attribute__] = ACTIONS(3590), + [anon_sym___attribute] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_COLON_COLON] = ACTIONS(3592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3592), + [anon_sym___declspec] = ACTIONS(3590), + [anon_sym___based] = ACTIONS(3590), + [anon_sym___cdecl] = ACTIONS(3590), + [anon_sym___clrcall] = ACTIONS(3590), + [anon_sym___stdcall] = ACTIONS(3590), + [anon_sym___fastcall] = ACTIONS(3590), + [anon_sym___thiscall] = ACTIONS(3590), + [anon_sym___vectorcall] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_signed] = ACTIONS(3590), + [anon_sym_unsigned] = ACTIONS(3590), + [anon_sym_long] = ACTIONS(3590), + [anon_sym_short] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_register] = ACTIONS(3590), + [anon_sym_inline] = ACTIONS(3590), + [anon_sym___inline] = ACTIONS(3590), + [anon_sym___inline__] = ACTIONS(3590), + [anon_sym___forceinline] = ACTIONS(3590), + [anon_sym_thread_local] = ACTIONS(3590), + [anon_sym___thread] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_constexpr] = ACTIONS(3590), + [anon_sym_volatile] = ACTIONS(3590), + [anon_sym_restrict] = ACTIONS(3590), + [anon_sym___restrict__] = ACTIONS(3590), + [anon_sym__Atomic] = ACTIONS(3590), + [anon_sym__Noreturn] = ACTIONS(3590), + [anon_sym_noreturn] = ACTIONS(3590), + [anon_sym__Nonnull] = ACTIONS(3590), + [anon_sym_mutable] = ACTIONS(3590), + [anon_sym_constinit] = ACTIONS(3590), + [anon_sym_consteval] = ACTIONS(3590), + [anon_sym_alignas] = ACTIONS(3590), + [anon_sym__Alignas] = ACTIONS(3590), + [sym_primitive_type] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_struct] = ACTIONS(3590), + [anon_sym_union] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_else] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_case] = ACTIONS(3590), + [anon_sym_default] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_goto] = ACTIONS(3590), + [anon_sym___try] = ACTIONS(3590), + [anon_sym___leave] = ACTIONS(3590), + [anon_sym_not] = ACTIONS(3590), + [anon_sym_compl] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_sizeof] = ACTIONS(3590), + [anon_sym___alignof__] = ACTIONS(3590), + [anon_sym___alignof] = ACTIONS(3590), + [anon_sym__alignof] = ACTIONS(3590), + [anon_sym_alignof] = ACTIONS(3590), + [anon_sym__Alignof] = ACTIONS(3590), + [anon_sym_offsetof] = ACTIONS(3590), + [anon_sym__Generic] = ACTIONS(3590), + [anon_sym_typename] = ACTIONS(3590), + [anon_sym_asm] = ACTIONS(3590), + [anon_sym___asm__] = ACTIONS(3590), + [anon_sym___asm] = ACTIONS(3590), + [sym_number_literal] = ACTIONS(3592), + [anon_sym_L_SQUOTE] = ACTIONS(3592), + [anon_sym_u_SQUOTE] = ACTIONS(3592), + [anon_sym_U_SQUOTE] = ACTIONS(3592), + [anon_sym_u8_SQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_L_DQUOTE] = ACTIONS(3592), + [anon_sym_u_DQUOTE] = ACTIONS(3592), + [anon_sym_U_DQUOTE] = ACTIONS(3592), + [anon_sym_u8_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [anon_sym_NULL] = ACTIONS(3590), + [anon_sym_nullptr] = ACTIONS(3590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3590), + [anon_sym_decltype] = ACTIONS(3590), + [anon_sym_explicit] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_module] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_template] = ACTIONS(3590), + [anon_sym_operator] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_static_assert] = ACTIONS(3590), + [anon_sym_concept] = ACTIONS(3590), + [anon_sym_co_return] = ACTIONS(3590), + [anon_sym_co_yield] = ACTIONS(3590), + [anon_sym_R_DQUOTE] = ACTIONS(3592), + [anon_sym_LR_DQUOTE] = ACTIONS(3592), + [anon_sym_uR_DQUOTE] = ACTIONS(3592), + [anon_sym_UR_DQUOTE] = ACTIONS(3592), + [anon_sym_u8R_DQUOTE] = ACTIONS(3592), + [anon_sym_co_await] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_requires] = ACTIONS(3590), + [anon_sym_CARET_CARET] = ACTIONS(3592), + [anon_sym_LBRACK_COLON] = ACTIONS(3592), + [sym_this] = ACTIONS(3590), + }, + [STATE(631)] = { + [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(632)] = { + [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(633)] = { + [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_else] = 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(634)] = { + [ts_builtin_sym_end] = ACTIONS(3458), + [sym_identifier] = ACTIONS(3456), + [aux_sym_preproc_include_token1] = ACTIONS(3456), + [aux_sym_preproc_def_token1] = ACTIONS(3456), + [aux_sym_preproc_if_token1] = ACTIONS(3456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3456), + [sym_preproc_directive] = ACTIONS(3456), + [anon_sym_LPAREN2] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(3458), + [anon_sym_AMP_AMP] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym___extension__] = ACTIONS(3456), + [anon_sym_typedef] = ACTIONS(3456), + [anon_sym_virtual] = ACTIONS(3456), + [anon_sym_extern] = ACTIONS(3456), + [anon_sym___attribute__] = ACTIONS(3456), + [anon_sym___attribute] = ACTIONS(3456), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3458), + [anon_sym___declspec] = ACTIONS(3456), + [anon_sym___based] = ACTIONS(3456), + [anon_sym___cdecl] = ACTIONS(3456), + [anon_sym___clrcall] = ACTIONS(3456), + [anon_sym___stdcall] = ACTIONS(3456), + [anon_sym___fastcall] = ACTIONS(3456), + [anon_sym___thiscall] = ACTIONS(3456), + [anon_sym___vectorcall] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_signed] = ACTIONS(3456), + [anon_sym_unsigned] = ACTIONS(3456), + [anon_sym_long] = ACTIONS(3456), + [anon_sym_short] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_register] = ACTIONS(3456), + [anon_sym_inline] = ACTIONS(3456), + [anon_sym___inline] = ACTIONS(3456), + [anon_sym___inline__] = ACTIONS(3456), + [anon_sym___forceinline] = ACTIONS(3456), + [anon_sym_thread_local] = ACTIONS(3456), + [anon_sym___thread] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_constexpr] = ACTIONS(3456), + [anon_sym_volatile] = ACTIONS(3456), + [anon_sym_restrict] = ACTIONS(3456), + [anon_sym___restrict__] = ACTIONS(3456), + [anon_sym__Atomic] = ACTIONS(3456), + [anon_sym__Noreturn] = ACTIONS(3456), + [anon_sym_noreturn] = ACTIONS(3456), + [anon_sym__Nonnull] = ACTIONS(3456), + [anon_sym_mutable] = ACTIONS(3456), + [anon_sym_constinit] = ACTIONS(3456), + [anon_sym_consteval] = ACTIONS(3456), + [anon_sym_alignas] = ACTIONS(3456), + [anon_sym__Alignas] = ACTIONS(3456), + [sym_primitive_type] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), + [anon_sym_class] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(3456), + [anon_sym_union] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_case] = ACTIONS(3456), + [anon_sym_default] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_goto] = ACTIONS(3456), + [anon_sym___try] = ACTIONS(3456), + [anon_sym___leave] = ACTIONS(3456), + [anon_sym_not] = ACTIONS(3456), + [anon_sym_compl] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_sizeof] = ACTIONS(3456), + [anon_sym___alignof__] = ACTIONS(3456), + [anon_sym___alignof] = ACTIONS(3456), + [anon_sym__alignof] = ACTIONS(3456), + [anon_sym_alignof] = ACTIONS(3456), + [anon_sym__Alignof] = ACTIONS(3456), + [anon_sym_offsetof] = ACTIONS(3456), + [anon_sym__Generic] = ACTIONS(3456), + [anon_sym_typename] = ACTIONS(3456), + [anon_sym_asm] = ACTIONS(3456), + [anon_sym___asm__] = ACTIONS(3456), + [anon_sym___asm] = ACTIONS(3456), + [sym_number_literal] = ACTIONS(3458), + [anon_sym_L_SQUOTE] = ACTIONS(3458), + [anon_sym_u_SQUOTE] = ACTIONS(3458), + [anon_sym_U_SQUOTE] = ACTIONS(3458), + [anon_sym_u8_SQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_L_DQUOTE] = ACTIONS(3458), + [anon_sym_u_DQUOTE] = ACTIONS(3458), + [anon_sym_U_DQUOTE] = ACTIONS(3458), + [anon_sym_u8_DQUOTE] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [sym_true] = ACTIONS(3456), + [sym_false] = ACTIONS(3456), + [anon_sym_NULL] = ACTIONS(3456), + [anon_sym_nullptr] = ACTIONS(3456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3456), + [anon_sym_decltype] = ACTIONS(3456), + [anon_sym_explicit] = ACTIONS(3456), + [anon_sym_export] = ACTIONS(3456), + [anon_sym_module] = ACTIONS(3456), + [anon_sym_import] = ACTIONS(3456), + [anon_sym_template] = ACTIONS(3456), + [anon_sym_operator] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_delete] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_namespace] = ACTIONS(3456), + [anon_sym_static_assert] = ACTIONS(3456), + [anon_sym_concept] = ACTIONS(3456), + [anon_sym_co_return] = ACTIONS(3456), + [anon_sym_co_yield] = ACTIONS(3456), + [anon_sym_R_DQUOTE] = ACTIONS(3458), + [anon_sym_LR_DQUOTE] = ACTIONS(3458), + [anon_sym_uR_DQUOTE] = ACTIONS(3458), + [anon_sym_UR_DQUOTE] = ACTIONS(3458), + [anon_sym_u8R_DQUOTE] = ACTIONS(3458), + [anon_sym_co_await] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_requires] = ACTIONS(3456), + [anon_sym_CARET_CARET] = ACTIONS(3458), + [anon_sym_LBRACK_COLON] = ACTIONS(3458), + [sym_this] = ACTIONS(3456), + }, + [STATE(635)] = { + [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_else] = 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(636)] = { + [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), + }, + [STATE(637)] = { + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3478), + [aux_sym_preproc_include_token1] = ACTIONS(3478), + [aux_sym_preproc_def_token1] = ACTIONS(3478), + [aux_sym_preproc_if_token1] = ACTIONS(3478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3478), + [sym_preproc_directive] = ACTIONS(3478), + [anon_sym_LPAREN2] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(3480), + [anon_sym_AMP_AMP] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym___extension__] = ACTIONS(3478), + [anon_sym_typedef] = ACTIONS(3478), + [anon_sym_virtual] = ACTIONS(3478), + [anon_sym_extern] = ACTIONS(3478), + [anon_sym___attribute__] = ACTIONS(3478), + [anon_sym___attribute] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_COLON_COLON] = ACTIONS(3480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3480), + [anon_sym___declspec] = ACTIONS(3478), + [anon_sym___based] = ACTIONS(3478), + [anon_sym___cdecl] = ACTIONS(3478), + [anon_sym___clrcall] = ACTIONS(3478), + [anon_sym___stdcall] = ACTIONS(3478), + [anon_sym___fastcall] = ACTIONS(3478), + [anon_sym___thiscall] = ACTIONS(3478), + [anon_sym___vectorcall] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_signed] = ACTIONS(3478), + [anon_sym_unsigned] = ACTIONS(3478), + [anon_sym_long] = ACTIONS(3478), + [anon_sym_short] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_register] = ACTIONS(3478), + [anon_sym_inline] = ACTIONS(3478), + [anon_sym___inline] = ACTIONS(3478), + [anon_sym___inline__] = ACTIONS(3478), + [anon_sym___forceinline] = ACTIONS(3478), + [anon_sym_thread_local] = ACTIONS(3478), + [anon_sym___thread] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_constexpr] = ACTIONS(3478), + [anon_sym_volatile] = ACTIONS(3478), + [anon_sym_restrict] = ACTIONS(3478), + [anon_sym___restrict__] = ACTIONS(3478), + [anon_sym__Atomic] = ACTIONS(3478), + [anon_sym__Noreturn] = ACTIONS(3478), + [anon_sym_noreturn] = ACTIONS(3478), + [anon_sym__Nonnull] = ACTIONS(3478), + [anon_sym_mutable] = ACTIONS(3478), + [anon_sym_constinit] = ACTIONS(3478), + [anon_sym_consteval] = ACTIONS(3478), + [anon_sym_alignas] = ACTIONS(3478), + [anon_sym__Alignas] = ACTIONS(3478), + [sym_primitive_type] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_struct] = ACTIONS(3478), + [anon_sym_union] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_goto] = ACTIONS(3478), + [anon_sym___try] = ACTIONS(3478), + [anon_sym___leave] = ACTIONS(3478), + [anon_sym_not] = ACTIONS(3478), + [anon_sym_compl] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_sizeof] = ACTIONS(3478), + [anon_sym___alignof__] = ACTIONS(3478), + [anon_sym___alignof] = ACTIONS(3478), + [anon_sym__alignof] = ACTIONS(3478), + [anon_sym_alignof] = ACTIONS(3478), + [anon_sym__Alignof] = ACTIONS(3478), + [anon_sym_offsetof] = ACTIONS(3478), + [anon_sym__Generic] = ACTIONS(3478), + [anon_sym_typename] = ACTIONS(3478), + [anon_sym_asm] = ACTIONS(3478), + [anon_sym___asm__] = ACTIONS(3478), + [anon_sym___asm] = ACTIONS(3478), + [sym_number_literal] = ACTIONS(3480), + [anon_sym_L_SQUOTE] = ACTIONS(3480), + [anon_sym_u_SQUOTE] = ACTIONS(3480), + [anon_sym_U_SQUOTE] = ACTIONS(3480), + [anon_sym_u8_SQUOTE] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3480), + [anon_sym_L_DQUOTE] = ACTIONS(3480), + [anon_sym_u_DQUOTE] = ACTIONS(3480), + [anon_sym_U_DQUOTE] = ACTIONS(3480), + [anon_sym_u8_DQUOTE] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [anon_sym_NULL] = ACTIONS(3478), + [anon_sym_nullptr] = ACTIONS(3478), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3478), + [anon_sym_decltype] = ACTIONS(3478), + [anon_sym_explicit] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3478), + [anon_sym_operator] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3478), + [anon_sym_concept] = ACTIONS(3478), + [anon_sym_co_return] = ACTIONS(3478), + [anon_sym_co_yield] = ACTIONS(3478), + [anon_sym_R_DQUOTE] = ACTIONS(3480), + [anon_sym_LR_DQUOTE] = ACTIONS(3480), + [anon_sym_uR_DQUOTE] = ACTIONS(3480), + [anon_sym_UR_DQUOTE] = ACTIONS(3480), + [anon_sym_u8R_DQUOTE] = ACTIONS(3480), + [anon_sym_co_await] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_requires] = ACTIONS(3478), + [anon_sym_CARET_CARET] = ACTIONS(3480), + [anon_sym_LBRACK_COLON] = ACTIONS(3480), + [sym_this] = ACTIONS(3478), + }, + [STATE(638)] = { + [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(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3176), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [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_else] = 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(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [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(3176), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3176), + [anon_sym_u_DQUOTE] = ACTIONS(3176), + [anon_sym_U_DQUOTE] = ACTIONS(3176), + [anon_sym_u8_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [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(3178), + [anon_sym_R_DQUOTE] = ACTIONS(3176), + [anon_sym_LR_DQUOTE] = ACTIONS(3176), + [anon_sym_uR_DQUOTE] = ACTIONS(3176), + [anon_sym_UR_DQUOTE] = ACTIONS(3176), + [anon_sym_u8R_DQUOTE] = ACTIONS(3176), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3176), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), + }, + [STATE(639)] = { + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_include_token1] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym___attribute] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym___cdecl] = ACTIONS(3392), + [anon_sym___clrcall] = ACTIONS(3392), + [anon_sym___stdcall] = ACTIONS(3392), + [anon_sym___fastcall] = ACTIONS(3392), + [anon_sym___thiscall] = ACTIONS(3392), + [anon_sym___vectorcall] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym__Nonnull] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym__Alignas] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_else] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3392), + [anon_sym_default] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_goto] = ACTIONS(3392), + [anon_sym___try] = ACTIONS(3392), + [anon_sym___leave] = ACTIONS(3392), + [anon_sym_not] = ACTIONS(3392), + [anon_sym_compl] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_sizeof] = ACTIONS(3392), + [anon_sym___alignof__] = ACTIONS(3392), + [anon_sym___alignof] = ACTIONS(3392), + [anon_sym__alignof] = ACTIONS(3392), + [anon_sym_alignof] = ACTIONS(3392), + [anon_sym__Alignof] = ACTIONS(3392), + [anon_sym_offsetof] = ACTIONS(3392), + [anon_sym__Generic] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [anon_sym_asm] = ACTIONS(3392), + [anon_sym___asm__] = ACTIONS(3392), + [anon_sym___asm] = ACTIONS(3392), + [sym_number_literal] = ACTIONS(3394), + [anon_sym_L_SQUOTE] = ACTIONS(3394), + [anon_sym_u_SQUOTE] = ACTIONS(3394), + [anon_sym_U_SQUOTE] = ACTIONS(3394), + [anon_sym_u8_SQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_L_DQUOTE] = ACTIONS(3394), + [anon_sym_u_DQUOTE] = ACTIONS(3394), + [anon_sym_U_DQUOTE] = ACTIONS(3394), + [anon_sym_u8_DQUOTE] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [anon_sym_NULL] = ACTIONS(3392), + [anon_sym_nullptr] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_export] = ACTIONS(3392), + [anon_sym_import] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_namespace] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [anon_sym_concept] = ACTIONS(3392), + [anon_sym_co_return] = ACTIONS(3392), + [anon_sym_co_yield] = ACTIONS(3392), + [anon_sym_catch] = ACTIONS(3392), + [anon_sym_R_DQUOTE] = ACTIONS(3394), + [anon_sym_LR_DQUOTE] = ACTIONS(3394), + [anon_sym_uR_DQUOTE] = ACTIONS(3394), + [anon_sym_UR_DQUOTE] = ACTIONS(3394), + [anon_sym_u8R_DQUOTE] = ACTIONS(3394), + [anon_sym_co_await] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_requires] = ACTIONS(3392), + [anon_sym_CARET_CARET] = ACTIONS(3394), + [anon_sym_LBRACK_COLON] = ACTIONS(3394), + [sym_this] = ACTIONS(3392), + }, + [STATE(640)] = { + [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), + [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(641)] = { + [ts_builtin_sym_end] = ACTIONS(3454), + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_include_token1] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym___cdecl] = ACTIONS(3452), + [anon_sym___clrcall] = ACTIONS(3452), + [anon_sym___stdcall] = ACTIONS(3452), + [anon_sym___fastcall] = ACTIONS(3452), + [anon_sym___thiscall] = ACTIONS(3452), + [anon_sym___vectorcall] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym___try] = ACTIONS(3452), + [anon_sym___leave] = ACTIONS(3452), + [anon_sym_not] = ACTIONS(3452), + [anon_sym_compl] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym___alignof__] = ACTIONS(3452), + [anon_sym___alignof] = ACTIONS(3452), + [anon_sym__alignof] = ACTIONS(3452), + [anon_sym_alignof] = ACTIONS(3452), + [anon_sym__Alignof] = ACTIONS(3452), + [anon_sym_offsetof] = ACTIONS(3452), + [anon_sym__Generic] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym___asm__] = ACTIONS(3452), + [anon_sym___asm] = ACTIONS(3452), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_L_SQUOTE] = ACTIONS(3454), + [anon_sym_u_SQUOTE] = ACTIONS(3454), + [anon_sym_U_SQUOTE] = ACTIONS(3454), + [anon_sym_u8_SQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_L_DQUOTE] = ACTIONS(3454), + [anon_sym_u_DQUOTE] = ACTIONS(3454), + [anon_sym_U_DQUOTE] = ACTIONS(3454), + [anon_sym_u8_DQUOTE] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [anon_sym_NULL] = ACTIONS(3452), + [anon_sym_nullptr] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_concept] = ACTIONS(3452), + [anon_sym_co_return] = ACTIONS(3452), + [anon_sym_co_yield] = ACTIONS(3452), + [anon_sym_R_DQUOTE] = ACTIONS(3454), + [anon_sym_LR_DQUOTE] = ACTIONS(3454), + [anon_sym_uR_DQUOTE] = ACTIONS(3454), + [anon_sym_UR_DQUOTE] = ACTIONS(3454), + [anon_sym_u8R_DQUOTE] = ACTIONS(3454), + [anon_sym_co_await] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_requires] = ACTIONS(3452), + [anon_sym_CARET_CARET] = ACTIONS(3454), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + [sym_this] = ACTIONS(3452), + }, + [STATE(642)] = { + [sym_identifier] = ACTIONS(3468), + [aux_sym_preproc_include_token1] = ACTIONS(3468), + [aux_sym_preproc_def_token1] = ACTIONS(3468), + [aux_sym_preproc_if_token1] = ACTIONS(3468), + [aux_sym_preproc_if_token2] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), + [sym_preproc_directive] = ACTIONS(3468), + [anon_sym_LPAREN2] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym___extension__] = ACTIONS(3468), + [anon_sym_typedef] = ACTIONS(3468), + [anon_sym_virtual] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym___attribute__] = ACTIONS(3468), + [anon_sym___attribute] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_COLON_COLON] = ACTIONS(3470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3470), + [anon_sym___declspec] = ACTIONS(3468), + [anon_sym___based] = ACTIONS(3468), + [anon_sym___cdecl] = ACTIONS(3468), + [anon_sym___clrcall] = ACTIONS(3468), + [anon_sym___stdcall] = ACTIONS(3468), + [anon_sym___fastcall] = ACTIONS(3468), + [anon_sym___thiscall] = ACTIONS(3468), + [anon_sym___vectorcall] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_signed] = ACTIONS(3468), + [anon_sym_unsigned] = ACTIONS(3468), + [anon_sym_long] = ACTIONS(3468), + [anon_sym_short] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_register] = ACTIONS(3468), + [anon_sym_inline] = ACTIONS(3468), + [anon_sym___inline] = ACTIONS(3468), + [anon_sym___inline__] = ACTIONS(3468), + [anon_sym___forceinline] = ACTIONS(3468), + [anon_sym_thread_local] = ACTIONS(3468), + [anon_sym___thread] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_constexpr] = ACTIONS(3468), + [anon_sym_volatile] = ACTIONS(3468), + [anon_sym_restrict] = ACTIONS(3468), + [anon_sym___restrict__] = ACTIONS(3468), + [anon_sym__Atomic] = ACTIONS(3468), + [anon_sym__Noreturn] = ACTIONS(3468), + [anon_sym_noreturn] = ACTIONS(3468), + [anon_sym__Nonnull] = ACTIONS(3468), + [anon_sym_mutable] = ACTIONS(3468), + [anon_sym_constinit] = ACTIONS(3468), + [anon_sym_consteval] = ACTIONS(3468), + [anon_sym_alignas] = ACTIONS(3468), + [anon_sym__Alignas] = ACTIONS(3468), + [sym_primitive_type] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_union] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_goto] = ACTIONS(3468), + [anon_sym___try] = ACTIONS(3468), + [anon_sym___leave] = ACTIONS(3468), + [anon_sym_not] = ACTIONS(3468), + [anon_sym_compl] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_sizeof] = ACTIONS(3468), + [anon_sym___alignof__] = ACTIONS(3468), + [anon_sym___alignof] = ACTIONS(3468), + [anon_sym__alignof] = ACTIONS(3468), + [anon_sym_alignof] = ACTIONS(3468), + [anon_sym__Alignof] = ACTIONS(3468), + [anon_sym_offsetof] = ACTIONS(3468), + [anon_sym__Generic] = ACTIONS(3468), + [anon_sym_typename] = ACTIONS(3468), + [anon_sym_asm] = ACTIONS(3468), + [anon_sym___asm__] = ACTIONS(3468), + [anon_sym___asm] = ACTIONS(3468), + [sym_number_literal] = ACTIONS(3470), + [anon_sym_L_SQUOTE] = ACTIONS(3470), + [anon_sym_u_SQUOTE] = ACTIONS(3470), + [anon_sym_U_SQUOTE] = ACTIONS(3470), + [anon_sym_u8_SQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_L_DQUOTE] = ACTIONS(3470), + [anon_sym_u_DQUOTE] = ACTIONS(3470), + [anon_sym_U_DQUOTE] = ACTIONS(3470), + [anon_sym_u8_DQUOTE] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [anon_sym_NULL] = ACTIONS(3468), + [anon_sym_nullptr] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3468), + [anon_sym_decltype] = ACTIONS(3468), + [anon_sym_explicit] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_module] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_template] = ACTIONS(3468), + [anon_sym_operator] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_static_assert] = ACTIONS(3468), + [anon_sym_concept] = ACTIONS(3468), + [anon_sym_co_return] = ACTIONS(3468), + [anon_sym_co_yield] = ACTIONS(3468), + [anon_sym_R_DQUOTE] = ACTIONS(3470), + [anon_sym_LR_DQUOTE] = ACTIONS(3470), + [anon_sym_uR_DQUOTE] = ACTIONS(3470), + [anon_sym_UR_DQUOTE] = ACTIONS(3470), + [anon_sym_u8R_DQUOTE] = ACTIONS(3470), + [anon_sym_co_await] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_requires] = ACTIONS(3468), + [anon_sym_CARET_CARET] = ACTIONS(3470), + [anon_sym_LBRACK_COLON] = ACTIONS(3470), + [sym_this] = ACTIONS(3468), + }, + [STATE(643)] = { + [ts_builtin_sym_end] = ACTIONS(3674), + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym___attribute] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym__Nonnull] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym__Alignas] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [anon_sym___asm] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [anon_sym_CARET_CARET] = ACTIONS(3674), + [anon_sym_LBRACK_COLON] = ACTIONS(3674), + [sym_this] = ACTIONS(3672), + }, + [STATE(644)] = { + [ts_builtin_sym_end] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3590), + [aux_sym_preproc_include_token1] = ACTIONS(3590), + [aux_sym_preproc_def_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token1] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3590), + [sym_preproc_directive] = ACTIONS(3590), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_AMP] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym___extension__] = ACTIONS(3590), + [anon_sym_typedef] = ACTIONS(3590), + [anon_sym_virtual] = ACTIONS(3590), + [anon_sym_extern] = ACTIONS(3590), + [anon_sym___attribute__] = ACTIONS(3590), + [anon_sym___attribute] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_COLON_COLON] = ACTIONS(3592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3592), + [anon_sym___declspec] = ACTIONS(3590), + [anon_sym___based] = ACTIONS(3590), + [anon_sym___cdecl] = ACTIONS(3590), + [anon_sym___clrcall] = ACTIONS(3590), + [anon_sym___stdcall] = ACTIONS(3590), + [anon_sym___fastcall] = ACTIONS(3590), + [anon_sym___thiscall] = ACTIONS(3590), + [anon_sym___vectorcall] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_signed] = ACTIONS(3590), + [anon_sym_unsigned] = ACTIONS(3590), + [anon_sym_long] = ACTIONS(3590), + [anon_sym_short] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_register] = ACTIONS(3590), + [anon_sym_inline] = ACTIONS(3590), + [anon_sym___inline] = ACTIONS(3590), + [anon_sym___inline__] = ACTIONS(3590), + [anon_sym___forceinline] = ACTIONS(3590), + [anon_sym_thread_local] = ACTIONS(3590), + [anon_sym___thread] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_constexpr] = ACTIONS(3590), + [anon_sym_volatile] = ACTIONS(3590), + [anon_sym_restrict] = ACTIONS(3590), + [anon_sym___restrict__] = ACTIONS(3590), + [anon_sym__Atomic] = ACTIONS(3590), + [anon_sym__Noreturn] = ACTIONS(3590), + [anon_sym_noreturn] = ACTIONS(3590), + [anon_sym__Nonnull] = ACTIONS(3590), + [anon_sym_mutable] = ACTIONS(3590), + [anon_sym_constinit] = ACTIONS(3590), + [anon_sym_consteval] = ACTIONS(3590), + [anon_sym_alignas] = ACTIONS(3590), + [anon_sym__Alignas] = ACTIONS(3590), + [sym_primitive_type] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_struct] = ACTIONS(3590), + [anon_sym_union] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_else] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_case] = ACTIONS(3590), + [anon_sym_default] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_goto] = ACTIONS(3590), + [anon_sym___try] = ACTIONS(3590), + [anon_sym___leave] = ACTIONS(3590), + [anon_sym_not] = ACTIONS(3590), + [anon_sym_compl] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_sizeof] = ACTIONS(3590), + [anon_sym___alignof__] = ACTIONS(3590), + [anon_sym___alignof] = ACTIONS(3590), + [anon_sym__alignof] = ACTIONS(3590), + [anon_sym_alignof] = ACTIONS(3590), + [anon_sym__Alignof] = ACTIONS(3590), + [anon_sym_offsetof] = ACTIONS(3590), + [anon_sym__Generic] = ACTIONS(3590), + [anon_sym_typename] = ACTIONS(3590), + [anon_sym_asm] = ACTIONS(3590), + [anon_sym___asm__] = ACTIONS(3590), + [anon_sym___asm] = ACTIONS(3590), + [sym_number_literal] = ACTIONS(3592), + [anon_sym_L_SQUOTE] = ACTIONS(3592), + [anon_sym_u_SQUOTE] = ACTIONS(3592), + [anon_sym_U_SQUOTE] = ACTIONS(3592), + [anon_sym_u8_SQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_L_DQUOTE] = ACTIONS(3592), + [anon_sym_u_DQUOTE] = ACTIONS(3592), + [anon_sym_U_DQUOTE] = ACTIONS(3592), + [anon_sym_u8_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [anon_sym_NULL] = ACTIONS(3590), + [anon_sym_nullptr] = ACTIONS(3590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3590), + [anon_sym_decltype] = ACTIONS(3590), + [anon_sym_explicit] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_module] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_template] = ACTIONS(3590), + [anon_sym_operator] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_static_assert] = ACTIONS(3590), + [anon_sym_concept] = ACTIONS(3590), + [anon_sym_co_return] = ACTIONS(3590), + [anon_sym_co_yield] = ACTIONS(3590), + [anon_sym_R_DQUOTE] = ACTIONS(3592), + [anon_sym_LR_DQUOTE] = ACTIONS(3592), + [anon_sym_uR_DQUOTE] = ACTIONS(3592), + [anon_sym_UR_DQUOTE] = ACTIONS(3592), + [anon_sym_u8R_DQUOTE] = ACTIONS(3592), + [anon_sym_co_await] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_requires] = ACTIONS(3590), + [anon_sym_CARET_CARET] = ACTIONS(3592), + [anon_sym_LBRACK_COLON] = ACTIONS(3592), + [sym_this] = ACTIONS(3590), + }, + [STATE(645)] = { + [ts_builtin_sym_end] = ACTIONS(3454), + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_include_token1] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym___cdecl] = ACTIONS(3452), + [anon_sym___clrcall] = ACTIONS(3452), + [anon_sym___stdcall] = ACTIONS(3452), + [anon_sym___fastcall] = ACTIONS(3452), + [anon_sym___thiscall] = ACTIONS(3452), + [anon_sym___vectorcall] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym___try] = ACTIONS(3452), + [anon_sym___leave] = ACTIONS(3452), + [anon_sym_not] = ACTIONS(3452), + [anon_sym_compl] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym___alignof__] = ACTIONS(3452), + [anon_sym___alignof] = ACTIONS(3452), + [anon_sym__alignof] = ACTIONS(3452), + [anon_sym_alignof] = ACTIONS(3452), + [anon_sym__Alignof] = ACTIONS(3452), + [anon_sym_offsetof] = ACTIONS(3452), + [anon_sym__Generic] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym___asm__] = ACTIONS(3452), + [anon_sym___asm] = ACTIONS(3452), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_L_SQUOTE] = ACTIONS(3454), + [anon_sym_u_SQUOTE] = ACTIONS(3454), + [anon_sym_U_SQUOTE] = ACTIONS(3454), + [anon_sym_u8_SQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_L_DQUOTE] = ACTIONS(3454), + [anon_sym_u_DQUOTE] = ACTIONS(3454), + [anon_sym_U_DQUOTE] = ACTIONS(3454), + [anon_sym_u8_DQUOTE] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [anon_sym_NULL] = ACTIONS(3452), + [anon_sym_nullptr] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_module] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_concept] = ACTIONS(3452), + [anon_sym_co_return] = ACTIONS(3452), + [anon_sym_co_yield] = ACTIONS(3452), + [anon_sym_R_DQUOTE] = ACTIONS(3454), + [anon_sym_LR_DQUOTE] = ACTIONS(3454), + [anon_sym_uR_DQUOTE] = ACTIONS(3454), + [anon_sym_UR_DQUOTE] = ACTIONS(3454), + [anon_sym_u8R_DQUOTE] = ACTIONS(3454), + [anon_sym_co_await] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_requires] = ACTIONS(3452), + [anon_sym_CARET_CARET] = ACTIONS(3454), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + [sym_this] = ACTIONS(3452), + }, + [STATE(646)] = { + [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(647)] = { + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_include_token1] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [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(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3472), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3176), + [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(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [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(3176), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3176), + [anon_sym_u_DQUOTE] = ACTIONS(3176), + [anon_sym_U_DQUOTE] = ACTIONS(3176), + [anon_sym_u8_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [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_R_DQUOTE] = ACTIONS(3176), + [anon_sym_LR_DQUOTE] = ACTIONS(3176), + [anon_sym_uR_DQUOTE] = ACTIONS(3176), + [anon_sym_UR_DQUOTE] = ACTIONS(3176), + [anon_sym_u8R_DQUOTE] = ACTIONS(3176), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3176), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), + }, + [STATE(648)] = { + [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_else] = 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(649)] = { + [sym_identifier] = ACTIONS(3312), + [aux_sym_preproc_include_token1] = ACTIONS(3312), + [aux_sym_preproc_def_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token2] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3312), + [sym_preproc_directive] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym___extension__] = ACTIONS(3312), + [anon_sym_typedef] = ACTIONS(3312), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym___attribute] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3317), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym___based] = ACTIONS(3312), + [anon_sym___cdecl] = ACTIONS(3312), + [anon_sym___clrcall] = ACTIONS(3312), + [anon_sym___stdcall] = ACTIONS(3312), + [anon_sym___fastcall] = ACTIONS(3312), + [anon_sym___thiscall] = ACTIONS(3312), + [anon_sym___vectorcall] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym___inline] = ACTIONS(3312), + [anon_sym___inline__] = ACTIONS(3312), + [anon_sym___forceinline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym___thread] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym__Nonnull] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_alignas] = ACTIONS(3312), + [anon_sym__Alignas] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym___try] = ACTIONS(3312), + [anon_sym___leave] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_compl] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_sizeof] = ACTIONS(3312), + [anon_sym___alignof__] = ACTIONS(3312), + [anon_sym___alignof] = ACTIONS(3312), + [anon_sym__alignof] = ACTIONS(3312), + [anon_sym_alignof] = ACTIONS(3312), + [anon_sym__Alignof] = ACTIONS(3312), + [anon_sym_offsetof] = ACTIONS(3312), + [anon_sym__Generic] = ACTIONS(3312), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym___asm__] = ACTIONS(3312), + [anon_sym___asm] = ACTIONS(3312), + [sym_number_literal] = ACTIONS(3317), + [anon_sym_L_SQUOTE] = ACTIONS(3317), + [anon_sym_u_SQUOTE] = ACTIONS(3317), + [anon_sym_U_SQUOTE] = ACTIONS(3317), + [anon_sym_u8_SQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_L_DQUOTE] = ACTIONS(3317), + [anon_sym_u_DQUOTE] = ACTIONS(3317), + [anon_sym_U_DQUOTE] = ACTIONS(3317), + [anon_sym_u8_DQUOTE] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [anon_sym_NULL] = ACTIONS(3312), + [anon_sym_nullptr] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3312), + [anon_sym_decltype] = ACTIONS(3312), + [anon_sym_explicit] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3312), + [anon_sym_operator] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_static_assert] = ACTIONS(3312), + [anon_sym_concept] = ACTIONS(3312), + [anon_sym_co_return] = ACTIONS(3312), + [anon_sym_co_yield] = ACTIONS(3312), + [anon_sym_R_DQUOTE] = ACTIONS(3317), + [anon_sym_LR_DQUOTE] = ACTIONS(3317), + [anon_sym_uR_DQUOTE] = ACTIONS(3317), + [anon_sym_UR_DQUOTE] = ACTIONS(3317), + [anon_sym_u8R_DQUOTE] = ACTIONS(3317), + [anon_sym_co_await] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_requires] = ACTIONS(3312), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(3317), + [sym_this] = ACTIONS(3312), + }, + [STATE(650)] = { + [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_else] = 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(651)] = { [ts_builtin_sym_end] = ACTIONS(3632), [sym_identifier] = ACTIONS(3630), [aux_sym_preproc_include_token1] = ACTIONS(3630), @@ -146621,1285 +156339,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(652)] = { + [sym_else_clause] = STATE(758), + [sym_identifier] = ACTIONS(3406), + [aux_sym_preproc_include_token1] = ACTIONS(3406), + [aux_sym_preproc_def_token1] = ACTIONS(3406), + [aux_sym_preproc_if_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3406), + [sym_preproc_directive] = ACTIONS(3406), + [anon_sym_LPAREN2] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym___extension__] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_virtual] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym___attribute__] = ACTIONS(3406), + [anon_sym___attribute] = ACTIONS(3406), + [anon_sym_using] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), + [anon_sym___declspec] = ACTIONS(3406), + [anon_sym___based] = ACTIONS(3406), + [anon_sym___cdecl] = ACTIONS(3406), + [anon_sym___clrcall] = ACTIONS(3406), + [anon_sym___stdcall] = ACTIONS(3406), + [anon_sym___fastcall] = ACTIONS(3406), + [anon_sym___thiscall] = ACTIONS(3406), + [anon_sym___vectorcall] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_signed] = ACTIONS(3406), + [anon_sym_unsigned] = ACTIONS(3406), + [anon_sym_long] = ACTIONS(3406), + [anon_sym_short] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_register] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym___inline] = ACTIONS(3406), + [anon_sym___inline__] = ACTIONS(3406), + [anon_sym___forceinline] = ACTIONS(3406), + [anon_sym_thread_local] = ACTIONS(3406), + [anon_sym___thread] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_constexpr] = ACTIONS(3406), + [anon_sym_volatile] = ACTIONS(3406), + [anon_sym_restrict] = ACTIONS(3406), + [anon_sym___restrict__] = ACTIONS(3406), + [anon_sym__Atomic] = ACTIONS(3406), + [anon_sym__Noreturn] = ACTIONS(3406), + [anon_sym_noreturn] = ACTIONS(3406), + [anon_sym__Nonnull] = ACTIONS(3406), + [anon_sym_mutable] = ACTIONS(3406), + [anon_sym_constinit] = ACTIONS(3406), + [anon_sym_consteval] = ACTIONS(3406), + [anon_sym_alignas] = ACTIONS(3406), + [anon_sym__Alignas] = ACTIONS(3406), + [sym_primitive_type] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym___try] = ACTIONS(3406), + [anon_sym___leave] = ACTIONS(3406), + [anon_sym_not] = ACTIONS(3406), + [anon_sym_compl] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3406), + [anon_sym___alignof__] = ACTIONS(3406), + [anon_sym___alignof] = ACTIONS(3406), + [anon_sym__alignof] = ACTIONS(3406), + [anon_sym_alignof] = ACTIONS(3406), + [anon_sym__Alignof] = ACTIONS(3406), + [anon_sym_offsetof] = ACTIONS(3406), + [anon_sym__Generic] = ACTIONS(3406), + [anon_sym_typename] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym___asm__] = ACTIONS(3406), + [anon_sym___asm] = ACTIONS(3406), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_L_SQUOTE] = ACTIONS(3408), + [anon_sym_u_SQUOTE] = ACTIONS(3408), + [anon_sym_U_SQUOTE] = ACTIONS(3408), + [anon_sym_u8_SQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_L_DQUOTE] = ACTIONS(3408), + [anon_sym_u_DQUOTE] = ACTIONS(3408), + [anon_sym_U_DQUOTE] = ACTIONS(3408), + [anon_sym_u8_DQUOTE] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [anon_sym_NULL] = ACTIONS(3406), + [anon_sym_nullptr] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3406), + [anon_sym_decltype] = ACTIONS(3406), + [anon_sym_explicit] = ACTIONS(3406), + [anon_sym_export] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_template] = ACTIONS(3406), + [anon_sym_operator] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_static_assert] = ACTIONS(3406), + [anon_sym_concept] = ACTIONS(3406), + [anon_sym_co_return] = ACTIONS(3406), + [anon_sym_co_yield] = ACTIONS(3406), + [anon_sym_R_DQUOTE] = ACTIONS(3408), + [anon_sym_LR_DQUOTE] = ACTIONS(3408), + [anon_sym_uR_DQUOTE] = ACTIONS(3408), + [anon_sym_UR_DQUOTE] = ACTIONS(3408), + [anon_sym_u8R_DQUOTE] = ACTIONS(3408), + [anon_sym_co_await] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_requires] = ACTIONS(3406), + [anon_sym_CARET_CARET] = ACTIONS(3408), + [anon_sym_LBRACK_COLON] = ACTIONS(3408), + [sym_this] = ACTIONS(3406), }, - [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(653)] = { + [sym_identifier] = ACTIONS(3460), + [aux_sym_preproc_include_token1] = ACTIONS(3460), + [aux_sym_preproc_def_token1] = ACTIONS(3460), + [aux_sym_preproc_if_token1] = ACTIONS(3460), + [aux_sym_preproc_if_token2] = ACTIONS(3460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3460), + [sym_preproc_directive] = ACTIONS(3460), + [anon_sym_LPAREN2] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_PLUS] = ACTIONS(3460), + [anon_sym_STAR] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3460), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym___extension__] = ACTIONS(3460), + [anon_sym_typedef] = ACTIONS(3460), + [anon_sym_virtual] = ACTIONS(3460), + [anon_sym_extern] = ACTIONS(3460), + [anon_sym___attribute__] = ACTIONS(3460), + [anon_sym___attribute] = ACTIONS(3460), + [anon_sym_using] = ACTIONS(3460), + [anon_sym_COLON_COLON] = ACTIONS(3462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3462), + [anon_sym___declspec] = ACTIONS(3460), + [anon_sym___based] = ACTIONS(3460), + [anon_sym___cdecl] = ACTIONS(3460), + [anon_sym___clrcall] = ACTIONS(3460), + [anon_sym___stdcall] = ACTIONS(3460), + [anon_sym___fastcall] = ACTIONS(3460), + [anon_sym___thiscall] = ACTIONS(3460), + [anon_sym___vectorcall] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_signed] = ACTIONS(3460), + [anon_sym_unsigned] = ACTIONS(3460), + [anon_sym_long] = ACTIONS(3460), + [anon_sym_short] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(3460), + [anon_sym_register] = ACTIONS(3460), + [anon_sym_inline] = ACTIONS(3460), + [anon_sym___inline] = ACTIONS(3460), + [anon_sym___inline__] = ACTIONS(3460), + [anon_sym___forceinline] = ACTIONS(3460), + [anon_sym_thread_local] = ACTIONS(3460), + [anon_sym___thread] = ACTIONS(3460), + [anon_sym_const] = ACTIONS(3460), + [anon_sym_constexpr] = ACTIONS(3460), + [anon_sym_volatile] = ACTIONS(3460), + [anon_sym_restrict] = ACTIONS(3460), + [anon_sym___restrict__] = ACTIONS(3460), + [anon_sym__Atomic] = ACTIONS(3460), + [anon_sym__Noreturn] = ACTIONS(3460), + [anon_sym_noreturn] = ACTIONS(3460), + [anon_sym__Nonnull] = ACTIONS(3460), + [anon_sym_mutable] = ACTIONS(3460), + [anon_sym_constinit] = ACTIONS(3460), + [anon_sym_consteval] = ACTIONS(3460), + [anon_sym_alignas] = ACTIONS(3460), + [anon_sym__Alignas] = ACTIONS(3460), + [sym_primitive_type] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), + [anon_sym_class] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(3460), + [anon_sym_union] = ACTIONS(3460), + [anon_sym_if] = ACTIONS(3460), + [anon_sym_else] = ACTIONS(3460), + [anon_sym_switch] = ACTIONS(3460), + [anon_sym_case] = ACTIONS(3460), + [anon_sym_default] = ACTIONS(3460), + [anon_sym_while] = ACTIONS(3460), + [anon_sym_do] = ACTIONS(3460), + [anon_sym_for] = ACTIONS(3460), + [anon_sym_return] = ACTIONS(3460), + [anon_sym_break] = ACTIONS(3460), + [anon_sym_continue] = ACTIONS(3460), + [anon_sym_goto] = ACTIONS(3460), + [anon_sym___try] = ACTIONS(3460), + [anon_sym___leave] = ACTIONS(3460), + [anon_sym_not] = ACTIONS(3460), + [anon_sym_compl] = ACTIONS(3460), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_sizeof] = ACTIONS(3460), + [anon_sym___alignof__] = ACTIONS(3460), + [anon_sym___alignof] = ACTIONS(3460), + [anon_sym__alignof] = ACTIONS(3460), + [anon_sym_alignof] = ACTIONS(3460), + [anon_sym__Alignof] = ACTIONS(3460), + [anon_sym_offsetof] = ACTIONS(3460), + [anon_sym__Generic] = ACTIONS(3460), + [anon_sym_typename] = ACTIONS(3460), + [anon_sym_asm] = ACTIONS(3460), + [anon_sym___asm__] = ACTIONS(3460), + [anon_sym___asm] = ACTIONS(3460), + [sym_number_literal] = ACTIONS(3462), + [anon_sym_L_SQUOTE] = ACTIONS(3462), + [anon_sym_u_SQUOTE] = ACTIONS(3462), + [anon_sym_U_SQUOTE] = ACTIONS(3462), + [anon_sym_u8_SQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_L_DQUOTE] = ACTIONS(3462), + [anon_sym_u_DQUOTE] = ACTIONS(3462), + [anon_sym_U_DQUOTE] = ACTIONS(3462), + [anon_sym_u8_DQUOTE] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [sym_true] = ACTIONS(3460), + [sym_false] = ACTIONS(3460), + [anon_sym_NULL] = ACTIONS(3460), + [anon_sym_nullptr] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3460), + [anon_sym_decltype] = ACTIONS(3460), + [anon_sym_explicit] = ACTIONS(3460), + [anon_sym_export] = ACTIONS(3460), + [anon_sym_module] = ACTIONS(3460), + [anon_sym_import] = ACTIONS(3460), + [anon_sym_template] = ACTIONS(3460), + [anon_sym_operator] = ACTIONS(3460), + [anon_sym_try] = ACTIONS(3460), + [anon_sym_delete] = ACTIONS(3460), + [anon_sym_throw] = ACTIONS(3460), + [anon_sym_namespace] = ACTIONS(3460), + [anon_sym_static_assert] = ACTIONS(3460), + [anon_sym_concept] = ACTIONS(3460), + [anon_sym_co_return] = ACTIONS(3460), + [anon_sym_co_yield] = ACTIONS(3460), + [anon_sym_R_DQUOTE] = ACTIONS(3462), + [anon_sym_LR_DQUOTE] = ACTIONS(3462), + [anon_sym_uR_DQUOTE] = ACTIONS(3462), + [anon_sym_UR_DQUOTE] = ACTIONS(3462), + [anon_sym_u8R_DQUOTE] = ACTIONS(3462), + [anon_sym_co_await] = ACTIONS(3460), + [anon_sym_new] = ACTIONS(3460), + [anon_sym_requires] = ACTIONS(3460), + [anon_sym_CARET_CARET] = ACTIONS(3462), + [anon_sym_LBRACK_COLON] = ACTIONS(3462), + [sym_this] = ACTIONS(3460), }, - [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(654)] = { + [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_else] = 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(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(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(615)] = { + [STATE(655)] = { [ts_builtin_sym_end] = ACTIONS(3602), [sym_identifier] = ACTIONS(3600), [aux_sym_preproc_include_token1] = ACTIONS(3600), @@ -148041,5142 +156907,7663 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3602), [sym_this] = ACTIONS(3600), }, - [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(656)] = { + [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_else] = 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(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(657)] = { + [sym_identifier] = ACTIONS(3196), + [aux_sym_preproc_include_token1] = ACTIONS(3196), + [aux_sym_preproc_def_token1] = ACTIONS(3196), + [aux_sym_preproc_if_token1] = ACTIONS(3196), + [aux_sym_preproc_if_token2] = ACTIONS(3196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3196), + [sym_preproc_directive] = ACTIONS(3196), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_typedef] = ACTIONS(3196), + [anon_sym_virtual] = ACTIONS(3196), + [anon_sym_extern] = ACTIONS(3196), + [anon_sym___attribute__] = ACTIONS(3196), + [anon_sym___attribute] = ACTIONS(3196), + [anon_sym_using] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3196), + [anon_sym___based] = ACTIONS(3196), + [anon_sym___cdecl] = ACTIONS(3196), + [anon_sym___clrcall] = ACTIONS(3196), + [anon_sym___stdcall] = ACTIONS(3196), + [anon_sym___fastcall] = ACTIONS(3196), + [anon_sym___thiscall] = ACTIONS(3196), + [anon_sym___vectorcall] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_signed] = ACTIONS(3196), + [anon_sym_unsigned] = ACTIONS(3196), + [anon_sym_long] = ACTIONS(3196), + [anon_sym_short] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_register] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym___inline] = ACTIONS(3196), + [anon_sym___inline__] = ACTIONS(3196), + [anon_sym___forceinline] = ACTIONS(3196), + [anon_sym_thread_local] = ACTIONS(3196), + [anon_sym___thread] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_constexpr] = ACTIONS(3196), + [anon_sym_volatile] = ACTIONS(3196), + [anon_sym_restrict] = ACTIONS(3196), + [anon_sym___restrict__] = ACTIONS(3196), + [anon_sym__Atomic] = ACTIONS(3196), + [anon_sym__Noreturn] = ACTIONS(3196), + [anon_sym_noreturn] = ACTIONS(3196), + [anon_sym__Nonnull] = ACTIONS(3196), + [anon_sym_mutable] = ACTIONS(3196), + [anon_sym_constinit] = ACTIONS(3196), + [anon_sym_consteval] = ACTIONS(3196), + [anon_sym_alignas] = ACTIONS(3196), + [anon_sym__Alignas] = ACTIONS(3196), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), + [anon_sym_class] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3196), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3196), + [anon_sym_case] = ACTIONS(3196), + [anon_sym_default] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_do] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_goto] = ACTIONS(3196), + [anon_sym___try] = ACTIONS(3196), + [anon_sym___leave] = ACTIONS(3196), + [anon_sym_not] = ACTIONS(3196), + [anon_sym_compl] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3196), + [anon_sym___alignof__] = ACTIONS(3196), + [anon_sym___alignof] = ACTIONS(3196), + [anon_sym__alignof] = ACTIONS(3196), + [anon_sym_alignof] = ACTIONS(3196), + [anon_sym__Alignof] = ACTIONS(3196), + [anon_sym_offsetof] = ACTIONS(3196), + [anon_sym__Generic] = ACTIONS(3196), + [anon_sym_typename] = ACTIONS(3196), + [anon_sym_asm] = ACTIONS(3196), + [anon_sym___asm__] = ACTIONS(3196), + [anon_sym___asm] = ACTIONS(3196), + [sym_number_literal] = ACTIONS(3201), + [anon_sym_L_SQUOTE] = ACTIONS(3201), + [anon_sym_u_SQUOTE] = ACTIONS(3201), + [anon_sym_U_SQUOTE] = ACTIONS(3201), + [anon_sym_u8_SQUOTE] = ACTIONS(3201), + [anon_sym_SQUOTE] = ACTIONS(3201), + [anon_sym_L_DQUOTE] = ACTIONS(3201), + [anon_sym_u_DQUOTE] = ACTIONS(3201), + [anon_sym_U_DQUOTE] = ACTIONS(3201), + [anon_sym_u8_DQUOTE] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [sym_true] = ACTIONS(3196), + [sym_false] = ACTIONS(3196), + [anon_sym_NULL] = ACTIONS(3196), + [anon_sym_nullptr] = ACTIONS(3196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3196), + [anon_sym_decltype] = ACTIONS(3196), + [anon_sym_explicit] = ACTIONS(3196), + [anon_sym_export] = ACTIONS(3196), + [anon_sym_module] = ACTIONS(3196), + [anon_sym_import] = ACTIONS(3196), + [anon_sym_template] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_delete] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_namespace] = ACTIONS(3196), + [anon_sym_static_assert] = ACTIONS(3196), + [anon_sym_concept] = ACTIONS(3196), + [anon_sym_co_return] = ACTIONS(3196), + [anon_sym_co_yield] = ACTIONS(3196), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3196), + [anon_sym_requires] = ACTIONS(3196), + [anon_sym_CARET_CARET] = ACTIONS(3201), + [anon_sym_LBRACK_COLON] = ACTIONS(3201), + [sym_this] = ACTIONS(3196), }, - [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(658)] = { + [sym_identifier] = ACTIONS(3474), + [aux_sym_preproc_include_token1] = ACTIONS(3474), + [aux_sym_preproc_def_token1] = ACTIONS(3474), + [aux_sym_preproc_if_token1] = ACTIONS(3474), + [aux_sym_preproc_if_token2] = ACTIONS(3474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3474), + [sym_preproc_directive] = ACTIONS(3474), + [anon_sym_LPAREN2] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_STAR] = ACTIONS(3476), + [anon_sym_AMP_AMP] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3474), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym___extension__] = ACTIONS(3474), + [anon_sym_typedef] = ACTIONS(3474), + [anon_sym_virtual] = ACTIONS(3474), + [anon_sym_extern] = ACTIONS(3474), + [anon_sym___attribute__] = ACTIONS(3474), + [anon_sym___attribute] = ACTIONS(3474), + [anon_sym_using] = ACTIONS(3474), + [anon_sym_COLON_COLON] = ACTIONS(3476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3476), + [anon_sym___declspec] = ACTIONS(3474), + [anon_sym___based] = ACTIONS(3474), + [anon_sym___cdecl] = ACTIONS(3474), + [anon_sym___clrcall] = ACTIONS(3474), + [anon_sym___stdcall] = ACTIONS(3474), + [anon_sym___fastcall] = ACTIONS(3474), + [anon_sym___thiscall] = ACTIONS(3474), + [anon_sym___vectorcall] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_signed] = ACTIONS(3474), + [anon_sym_unsigned] = ACTIONS(3474), + [anon_sym_long] = ACTIONS(3474), + [anon_sym_short] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_register] = ACTIONS(3474), + [anon_sym_inline] = ACTIONS(3474), + [anon_sym___inline] = ACTIONS(3474), + [anon_sym___inline__] = ACTIONS(3474), + [anon_sym___forceinline] = ACTIONS(3474), + [anon_sym_thread_local] = ACTIONS(3474), + [anon_sym___thread] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_constexpr] = ACTIONS(3474), + [anon_sym_volatile] = ACTIONS(3474), + [anon_sym_restrict] = ACTIONS(3474), + [anon_sym___restrict__] = ACTIONS(3474), + [anon_sym__Atomic] = ACTIONS(3474), + [anon_sym__Noreturn] = ACTIONS(3474), + [anon_sym_noreturn] = ACTIONS(3474), + [anon_sym__Nonnull] = ACTIONS(3474), + [anon_sym_mutable] = ACTIONS(3474), + [anon_sym_constinit] = ACTIONS(3474), + [anon_sym_consteval] = ACTIONS(3474), + [anon_sym_alignas] = ACTIONS(3474), + [anon_sym__Alignas] = ACTIONS(3474), + [sym_primitive_type] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_struct] = ACTIONS(3474), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_else] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_case] = ACTIONS(3474), + [anon_sym_default] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_goto] = ACTIONS(3474), + [anon_sym___try] = ACTIONS(3474), + [anon_sym___leave] = ACTIONS(3474), + [anon_sym_not] = ACTIONS(3474), + [anon_sym_compl] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_sizeof] = ACTIONS(3474), + [anon_sym___alignof__] = ACTIONS(3474), + [anon_sym___alignof] = ACTIONS(3474), + [anon_sym__alignof] = ACTIONS(3474), + [anon_sym_alignof] = ACTIONS(3474), + [anon_sym__Alignof] = ACTIONS(3474), + [anon_sym_offsetof] = ACTIONS(3474), + [anon_sym__Generic] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3474), + [anon_sym_asm] = ACTIONS(3474), + [anon_sym___asm__] = ACTIONS(3474), + [anon_sym___asm] = ACTIONS(3474), + [sym_number_literal] = ACTIONS(3476), + [anon_sym_L_SQUOTE] = ACTIONS(3476), + [anon_sym_u_SQUOTE] = ACTIONS(3476), + [anon_sym_U_SQUOTE] = ACTIONS(3476), + [anon_sym_u8_SQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_L_DQUOTE] = ACTIONS(3476), + [anon_sym_u_DQUOTE] = ACTIONS(3476), + [anon_sym_U_DQUOTE] = ACTIONS(3476), + [anon_sym_u8_DQUOTE] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [anon_sym_NULL] = ACTIONS(3474), + [anon_sym_nullptr] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3474), + [anon_sym_decltype] = ACTIONS(3474), + [anon_sym_explicit] = ACTIONS(3474), + [anon_sym_export] = ACTIONS(3474), + [anon_sym_module] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_template] = ACTIONS(3474), + [anon_sym_operator] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_namespace] = ACTIONS(3474), + [anon_sym_static_assert] = ACTIONS(3474), + [anon_sym_concept] = ACTIONS(3474), + [anon_sym_co_return] = ACTIONS(3474), + [anon_sym_co_yield] = ACTIONS(3474), + [anon_sym_R_DQUOTE] = ACTIONS(3476), + [anon_sym_LR_DQUOTE] = ACTIONS(3476), + [anon_sym_uR_DQUOTE] = ACTIONS(3476), + [anon_sym_UR_DQUOTE] = ACTIONS(3476), + [anon_sym_u8R_DQUOTE] = ACTIONS(3476), + [anon_sym_co_await] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_requires] = ACTIONS(3474), + [anon_sym_CARET_CARET] = ACTIONS(3476), + [anon_sym_LBRACK_COLON] = ACTIONS(3476), + [sym_this] = ACTIONS(3474), }, - [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(659)] = { + [sym_catch_clause] = STATE(416), + [aux_sym_constructor_try_statement_repeat1] = STATE(416), + [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(4170), + [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(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(660)] = { + [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(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(661)] = { + [sym_identifier] = ACTIONS(3582), + [aux_sym_preproc_include_token1] = ACTIONS(3582), + [aux_sym_preproc_def_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token2] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3582), + [sym_preproc_directive] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_STAR] = ACTIONS(3584), + [anon_sym_AMP_AMP] = ACTIONS(3584), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym___extension__] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3582), + [anon_sym_virtual] = ACTIONS(3582), + [anon_sym_extern] = ACTIONS(3582), + [anon_sym___attribute__] = ACTIONS(3582), + [anon_sym___attribute] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_COLON_COLON] = ACTIONS(3584), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3584), + [anon_sym___declspec] = ACTIONS(3582), + [anon_sym___based] = ACTIONS(3582), + [anon_sym___cdecl] = ACTIONS(3582), + [anon_sym___clrcall] = ACTIONS(3582), + [anon_sym___stdcall] = ACTIONS(3582), + [anon_sym___fastcall] = ACTIONS(3582), + [anon_sym___thiscall] = ACTIONS(3582), + [anon_sym___vectorcall] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_signed] = ACTIONS(3582), + [anon_sym_unsigned] = ACTIONS(3582), + [anon_sym_long] = ACTIONS(3582), + [anon_sym_short] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_register] = ACTIONS(3582), + [anon_sym_inline] = ACTIONS(3582), + [anon_sym___inline] = ACTIONS(3582), + [anon_sym___inline__] = ACTIONS(3582), + [anon_sym___forceinline] = ACTIONS(3582), + [anon_sym_thread_local] = ACTIONS(3582), + [anon_sym___thread] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_constexpr] = ACTIONS(3582), + [anon_sym_volatile] = ACTIONS(3582), + [anon_sym_restrict] = ACTIONS(3582), + [anon_sym___restrict__] = ACTIONS(3582), + [anon_sym__Atomic] = ACTIONS(3582), + [anon_sym__Noreturn] = ACTIONS(3582), + [anon_sym_noreturn] = ACTIONS(3582), + [anon_sym__Nonnull] = ACTIONS(3582), + [anon_sym_mutable] = ACTIONS(3582), + [anon_sym_constinit] = ACTIONS(3582), + [anon_sym_consteval] = ACTIONS(3582), + [anon_sym_alignas] = ACTIONS(3582), + [anon_sym__Alignas] = ACTIONS(3582), + [sym_primitive_type] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_struct] = ACTIONS(3582), + [anon_sym_union] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_else] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_case] = ACTIONS(3582), + [anon_sym_default] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_goto] = ACTIONS(3582), + [anon_sym___try] = ACTIONS(3582), + [anon_sym___leave] = ACTIONS(3582), + [anon_sym_not] = ACTIONS(3582), + [anon_sym_compl] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_sizeof] = ACTIONS(3582), + [anon_sym___alignof__] = ACTIONS(3582), + [anon_sym___alignof] = ACTIONS(3582), + [anon_sym__alignof] = ACTIONS(3582), + [anon_sym_alignof] = ACTIONS(3582), + [anon_sym__Alignof] = ACTIONS(3582), + [anon_sym_offsetof] = ACTIONS(3582), + [anon_sym__Generic] = ACTIONS(3582), + [anon_sym_typename] = ACTIONS(3582), + [anon_sym_asm] = ACTIONS(3582), + [anon_sym___asm__] = ACTIONS(3582), + [anon_sym___asm] = ACTIONS(3582), + [sym_number_literal] = ACTIONS(3584), + [anon_sym_L_SQUOTE] = ACTIONS(3584), + [anon_sym_u_SQUOTE] = ACTIONS(3584), + [anon_sym_U_SQUOTE] = ACTIONS(3584), + [anon_sym_u8_SQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_L_DQUOTE] = ACTIONS(3584), + [anon_sym_u_DQUOTE] = ACTIONS(3584), + [anon_sym_U_DQUOTE] = ACTIONS(3584), + [anon_sym_u8_DQUOTE] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [anon_sym_NULL] = ACTIONS(3582), + [anon_sym_nullptr] = ACTIONS(3582), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(3582), + [anon_sym_explicit] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_module] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_template] = ACTIONS(3582), + [anon_sym_operator] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_static_assert] = ACTIONS(3582), + [anon_sym_concept] = ACTIONS(3582), + [anon_sym_co_return] = ACTIONS(3582), + [anon_sym_co_yield] = ACTIONS(3582), + [anon_sym_R_DQUOTE] = ACTIONS(3584), + [anon_sym_LR_DQUOTE] = ACTIONS(3584), + [anon_sym_uR_DQUOTE] = ACTIONS(3584), + [anon_sym_UR_DQUOTE] = ACTIONS(3584), + [anon_sym_u8R_DQUOTE] = ACTIONS(3584), + [anon_sym_co_await] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(3582), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(3584), + [sym_this] = ACTIONS(3582), }, - [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), + [STATE(662)] = { + [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(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(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), + [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(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(663)] = { + [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(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(664)] = { + [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(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), + [STATE(665)] = { + [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_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_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_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(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), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_module] = 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(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(666)] = { + [ts_builtin_sym_end] = ACTIONS(3450), + [sym_identifier] = ACTIONS(3448), + [aux_sym_preproc_include_token1] = ACTIONS(3448), + [aux_sym_preproc_def_token1] = ACTIONS(3448), + [aux_sym_preproc_if_token1] = ACTIONS(3448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3448), + [sym_preproc_directive] = ACTIONS(3448), + [anon_sym_LPAREN2] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3450), + [anon_sym_AMP_AMP] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym___extension__] = ACTIONS(3448), + [anon_sym_typedef] = ACTIONS(3448), + [anon_sym_virtual] = ACTIONS(3448), + [anon_sym_extern] = ACTIONS(3448), + [anon_sym___attribute__] = ACTIONS(3448), + [anon_sym___attribute] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3448), + [anon_sym_COLON_COLON] = ACTIONS(3450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3450), + [anon_sym___declspec] = ACTIONS(3448), + [anon_sym___based] = ACTIONS(3448), + [anon_sym___cdecl] = ACTIONS(3448), + [anon_sym___clrcall] = ACTIONS(3448), + [anon_sym___stdcall] = ACTIONS(3448), + [anon_sym___fastcall] = ACTIONS(3448), + [anon_sym___thiscall] = ACTIONS(3448), + [anon_sym___vectorcall] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_signed] = ACTIONS(3448), + [anon_sym_unsigned] = ACTIONS(3448), + [anon_sym_long] = ACTIONS(3448), + [anon_sym_short] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_register] = ACTIONS(3448), + [anon_sym_inline] = ACTIONS(3448), + [anon_sym___inline] = ACTIONS(3448), + [anon_sym___inline__] = ACTIONS(3448), + [anon_sym___forceinline] = ACTIONS(3448), + [anon_sym_thread_local] = ACTIONS(3448), + [anon_sym___thread] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_constexpr] = ACTIONS(3448), + [anon_sym_volatile] = ACTIONS(3448), + [anon_sym_restrict] = ACTIONS(3448), + [anon_sym___restrict__] = ACTIONS(3448), + [anon_sym__Atomic] = ACTIONS(3448), + [anon_sym__Noreturn] = ACTIONS(3448), + [anon_sym_noreturn] = ACTIONS(3448), + [anon_sym__Nonnull] = ACTIONS(3448), + [anon_sym_mutable] = ACTIONS(3448), + [anon_sym_constinit] = ACTIONS(3448), + [anon_sym_consteval] = ACTIONS(3448), + [anon_sym_alignas] = ACTIONS(3448), + [anon_sym__Alignas] = ACTIONS(3448), + [sym_primitive_type] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), + [anon_sym_class] = ACTIONS(3448), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_union] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3448), + [anon_sym_case] = ACTIONS(3448), + [anon_sym_default] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_do] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_goto] = ACTIONS(3448), + [anon_sym___try] = ACTIONS(3448), + [anon_sym___leave] = ACTIONS(3448), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_sizeof] = ACTIONS(3448), + [anon_sym___alignof__] = ACTIONS(3448), + [anon_sym___alignof] = ACTIONS(3448), + [anon_sym__alignof] = ACTIONS(3448), + [anon_sym_alignof] = ACTIONS(3448), + [anon_sym__Alignof] = ACTIONS(3448), + [anon_sym_offsetof] = ACTIONS(3448), + [anon_sym__Generic] = ACTIONS(3448), + [anon_sym_typename] = ACTIONS(3448), + [anon_sym_asm] = ACTIONS(3448), + [anon_sym___asm__] = ACTIONS(3448), + [anon_sym___asm] = ACTIONS(3448), + [sym_number_literal] = ACTIONS(3450), + [anon_sym_L_SQUOTE] = ACTIONS(3450), + [anon_sym_u_SQUOTE] = ACTIONS(3450), + [anon_sym_U_SQUOTE] = ACTIONS(3450), + [anon_sym_u8_SQUOTE] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3450), + [anon_sym_L_DQUOTE] = ACTIONS(3450), + [anon_sym_u_DQUOTE] = ACTIONS(3450), + [anon_sym_U_DQUOTE] = ACTIONS(3450), + [anon_sym_u8_DQUOTE] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(3450), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [anon_sym_NULL] = ACTIONS(3448), + [anon_sym_nullptr] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3448), + [anon_sym_decltype] = ACTIONS(3448), + [anon_sym_explicit] = ACTIONS(3448), + [anon_sym_export] = ACTIONS(3448), + [anon_sym_module] = ACTIONS(3448), + [anon_sym_import] = ACTIONS(3448), + [anon_sym_template] = ACTIONS(3448), + [anon_sym_operator] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [anon_sym_delete] = ACTIONS(3448), + [anon_sym_throw] = ACTIONS(3448), + [anon_sym_namespace] = ACTIONS(3448), + [anon_sym_static_assert] = ACTIONS(3448), + [anon_sym_concept] = ACTIONS(3448), + [anon_sym_co_return] = ACTIONS(3448), + [anon_sym_co_yield] = ACTIONS(3448), + [anon_sym_R_DQUOTE] = ACTIONS(3450), + [anon_sym_LR_DQUOTE] = ACTIONS(3450), + [anon_sym_uR_DQUOTE] = ACTIONS(3450), + [anon_sym_UR_DQUOTE] = ACTIONS(3450), + [anon_sym_u8R_DQUOTE] = ACTIONS(3450), + [anon_sym_co_await] = ACTIONS(3448), + [anon_sym_new] = ACTIONS(3448), + [anon_sym_requires] = ACTIONS(3448), + [anon_sym_CARET_CARET] = ACTIONS(3450), + [anon_sym_LBRACK_COLON] = ACTIONS(3450), + [sym_this] = ACTIONS(3448), }, - [STATE(628)] = { - [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), - [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), + [STATE(667)] = { + [sym_expression] = STATE(6550), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [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(3896), + [anon_sym_TILDE] = ACTIONS(3894), + [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(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [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(3906), + [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(2726), + [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(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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(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(668)] = { + [ts_builtin_sym_end] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_include_token1] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym___cdecl] = ACTIONS(3570), + [anon_sym___clrcall] = ACTIONS(3570), + [anon_sym___stdcall] = ACTIONS(3570), + [anon_sym___fastcall] = ACTIONS(3570), + [anon_sym___thiscall] = ACTIONS(3570), + [anon_sym___vectorcall] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_case] = ACTIONS(3570), + [anon_sym_default] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym___try] = ACTIONS(3570), + [anon_sym___leave] = ACTIONS(3570), + [anon_sym_not] = ACTIONS(3570), + [anon_sym_compl] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3570), + [anon_sym___alignof__] = ACTIONS(3570), + [anon_sym___alignof] = ACTIONS(3570), + [anon_sym__alignof] = ACTIONS(3570), + [anon_sym_alignof] = ACTIONS(3570), + [anon_sym__Alignof] = ACTIONS(3570), + [anon_sym_offsetof] = ACTIONS(3570), + [anon_sym__Generic] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym___asm__] = ACTIONS(3570), + [anon_sym___asm] = ACTIONS(3570), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_L_SQUOTE] = ACTIONS(3572), + [anon_sym_u_SQUOTE] = ACTIONS(3572), + [anon_sym_U_SQUOTE] = ACTIONS(3572), + [anon_sym_u8_SQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_L_DQUOTE] = ACTIONS(3572), + [anon_sym_u_DQUOTE] = ACTIONS(3572), + [anon_sym_U_DQUOTE] = ACTIONS(3572), + [anon_sym_u8_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [anon_sym_NULL] = ACTIONS(3570), + [anon_sym_nullptr] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_module] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_concept] = ACTIONS(3570), + [anon_sym_co_return] = ACTIONS(3570), + [anon_sym_co_yield] = ACTIONS(3570), + [anon_sym_R_DQUOTE] = ACTIONS(3572), + [anon_sym_LR_DQUOTE] = ACTIONS(3572), + [anon_sym_uR_DQUOTE] = ACTIONS(3572), + [anon_sym_UR_DQUOTE] = ACTIONS(3572), + [anon_sym_u8R_DQUOTE] = ACTIONS(3572), + [anon_sym_co_await] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_requires] = ACTIONS(3570), + [anon_sym_CARET_CARET] = ACTIONS(3572), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), + [sym_this] = ACTIONS(3570), }, - [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(669)] = { + [sym_identifier] = ACTIONS(3464), + [aux_sym_preproc_include_token1] = ACTIONS(3464), + [aux_sym_preproc_def_token1] = ACTIONS(3464), + [aux_sym_preproc_if_token1] = ACTIONS(3464), + [aux_sym_preproc_if_token2] = ACTIONS(3464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3464), + [sym_preproc_directive] = ACTIONS(3464), + [anon_sym_LPAREN2] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_AMP_AMP] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym___extension__] = ACTIONS(3464), + [anon_sym_typedef] = ACTIONS(3464), + [anon_sym_virtual] = ACTIONS(3464), + [anon_sym_extern] = ACTIONS(3464), + [anon_sym___attribute__] = ACTIONS(3464), + [anon_sym___attribute] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_COLON_COLON] = ACTIONS(3466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3466), + [anon_sym___declspec] = ACTIONS(3464), + [anon_sym___based] = ACTIONS(3464), + [anon_sym___cdecl] = ACTIONS(3464), + [anon_sym___clrcall] = ACTIONS(3464), + [anon_sym___stdcall] = ACTIONS(3464), + [anon_sym___fastcall] = ACTIONS(3464), + [anon_sym___thiscall] = ACTIONS(3464), + [anon_sym___vectorcall] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_signed] = ACTIONS(3464), + [anon_sym_unsigned] = ACTIONS(3464), + [anon_sym_long] = ACTIONS(3464), + [anon_sym_short] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_register] = ACTIONS(3464), + [anon_sym_inline] = ACTIONS(3464), + [anon_sym___inline] = ACTIONS(3464), + [anon_sym___inline__] = ACTIONS(3464), + [anon_sym___forceinline] = ACTIONS(3464), + [anon_sym_thread_local] = ACTIONS(3464), + [anon_sym___thread] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_constexpr] = ACTIONS(3464), + [anon_sym_volatile] = ACTIONS(3464), + [anon_sym_restrict] = ACTIONS(3464), + [anon_sym___restrict__] = ACTIONS(3464), + [anon_sym__Atomic] = ACTIONS(3464), + [anon_sym__Noreturn] = ACTIONS(3464), + [anon_sym_noreturn] = ACTIONS(3464), + [anon_sym__Nonnull] = ACTIONS(3464), + [anon_sym_mutable] = ACTIONS(3464), + [anon_sym_constinit] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(3464), + [anon_sym__Alignas] = ACTIONS(3464), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_struct] = ACTIONS(3464), + [anon_sym_union] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_goto] = ACTIONS(3464), + [anon_sym___try] = ACTIONS(3464), + [anon_sym___leave] = ACTIONS(3464), + [anon_sym_not] = ACTIONS(3464), + [anon_sym_compl] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(3464), + [anon_sym___alignof__] = ACTIONS(3464), + [anon_sym___alignof] = ACTIONS(3464), + [anon_sym__alignof] = ACTIONS(3464), + [anon_sym_alignof] = ACTIONS(3464), + [anon_sym__Alignof] = ACTIONS(3464), + [anon_sym_offsetof] = ACTIONS(3464), + [anon_sym__Generic] = ACTIONS(3464), + [anon_sym_typename] = ACTIONS(3464), + [anon_sym_asm] = ACTIONS(3464), + [anon_sym___asm__] = ACTIONS(3464), + [anon_sym___asm] = ACTIONS(3464), + [sym_number_literal] = ACTIONS(3466), + [anon_sym_L_SQUOTE] = ACTIONS(3466), + [anon_sym_u_SQUOTE] = ACTIONS(3466), + [anon_sym_U_SQUOTE] = ACTIONS(3466), + [anon_sym_u8_SQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_L_DQUOTE] = ACTIONS(3466), + [anon_sym_u_DQUOTE] = ACTIONS(3466), + [anon_sym_U_DQUOTE] = ACTIONS(3466), + [anon_sym_u8_DQUOTE] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [anon_sym_NULL] = ACTIONS(3464), + [anon_sym_nullptr] = ACTIONS(3464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3464), + [anon_sym_decltype] = ACTIONS(3464), + [anon_sym_explicit] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_template] = ACTIONS(3464), + [anon_sym_operator] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_static_assert] = ACTIONS(3464), + [anon_sym_concept] = ACTIONS(3464), + [anon_sym_co_return] = ACTIONS(3464), + [anon_sym_co_yield] = ACTIONS(3464), + [anon_sym_R_DQUOTE] = ACTIONS(3466), + [anon_sym_LR_DQUOTE] = ACTIONS(3466), + [anon_sym_uR_DQUOTE] = ACTIONS(3466), + [anon_sym_UR_DQUOTE] = ACTIONS(3466), + [anon_sym_u8R_DQUOTE] = ACTIONS(3466), + [anon_sym_co_await] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_requires] = ACTIONS(3464), + [anon_sym_CARET_CARET] = ACTIONS(3466), + [anon_sym_LBRACK_COLON] = ACTIONS(3466), + [sym_this] = ACTIONS(3464), }, - [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(670)] = { + [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(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(671)] = { + [sym_else_clause] = STATE(729), + [sym_identifier] = ACTIONS(3378), + [aux_sym_preproc_include_token1] = ACTIONS(3378), + [aux_sym_preproc_def_token1] = ACTIONS(3378), + [aux_sym_preproc_if_token1] = ACTIONS(3378), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3378), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3378), + [sym_preproc_directive] = ACTIONS(3378), + [anon_sym_LPAREN2] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_AMP_AMP] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym___extension__] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3378), + [anon_sym_virtual] = ACTIONS(3378), + [anon_sym_extern] = ACTIONS(3378), + [anon_sym___attribute__] = ACTIONS(3378), + [anon_sym___attribute] = ACTIONS(3378), + [anon_sym_using] = ACTIONS(3378), + [anon_sym_COLON_COLON] = ACTIONS(3380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3380), + [anon_sym___declspec] = ACTIONS(3378), + [anon_sym___based] = ACTIONS(3378), + [anon_sym___cdecl] = ACTIONS(3378), + [anon_sym___clrcall] = ACTIONS(3378), + [anon_sym___stdcall] = ACTIONS(3378), + [anon_sym___fastcall] = ACTIONS(3378), + [anon_sym___thiscall] = ACTIONS(3378), + [anon_sym___vectorcall] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3378), + [anon_sym_unsigned] = ACTIONS(3378), + [anon_sym_long] = ACTIONS(3378), + [anon_sym_short] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_register] = ACTIONS(3378), + [anon_sym_inline] = ACTIONS(3378), + [anon_sym___inline] = ACTIONS(3378), + [anon_sym___inline__] = ACTIONS(3378), + [anon_sym___forceinline] = ACTIONS(3378), + [anon_sym_thread_local] = ACTIONS(3378), + [anon_sym___thread] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_constexpr] = ACTIONS(3378), + [anon_sym_volatile] = ACTIONS(3378), + [anon_sym_restrict] = ACTIONS(3378), + [anon_sym___restrict__] = ACTIONS(3378), + [anon_sym__Atomic] = ACTIONS(3378), + [anon_sym__Noreturn] = ACTIONS(3378), + [anon_sym_noreturn] = ACTIONS(3378), + [anon_sym__Nonnull] = ACTIONS(3378), + [anon_sym_mutable] = ACTIONS(3378), + [anon_sym_constinit] = ACTIONS(3378), + [anon_sym_consteval] = ACTIONS(3378), + [anon_sym_alignas] = ACTIONS(3378), + [anon_sym__Alignas] = ACTIONS(3378), + [sym_primitive_type] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_case] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym___try] = ACTIONS(3378), + [anon_sym___leave] = ACTIONS(3378), + [anon_sym_not] = ACTIONS(3378), + [anon_sym_compl] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_sizeof] = ACTIONS(3378), + [anon_sym___alignof__] = ACTIONS(3378), + [anon_sym___alignof] = ACTIONS(3378), + [anon_sym__alignof] = ACTIONS(3378), + [anon_sym_alignof] = ACTIONS(3378), + [anon_sym__Alignof] = ACTIONS(3378), + [anon_sym_offsetof] = ACTIONS(3378), + [anon_sym__Generic] = ACTIONS(3378), + [anon_sym_typename] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym___asm__] = ACTIONS(3378), + [anon_sym___asm] = ACTIONS(3378), + [sym_number_literal] = ACTIONS(3380), + [anon_sym_L_SQUOTE] = ACTIONS(3380), + [anon_sym_u_SQUOTE] = ACTIONS(3380), + [anon_sym_U_SQUOTE] = ACTIONS(3380), + [anon_sym_u8_SQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [anon_sym_L_DQUOTE] = ACTIONS(3380), + [anon_sym_u_DQUOTE] = ACTIONS(3380), + [anon_sym_U_DQUOTE] = ACTIONS(3380), + [anon_sym_u8_DQUOTE] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [anon_sym_NULL] = ACTIONS(3378), + [anon_sym_nullptr] = ACTIONS(3378), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3378), + [anon_sym_decltype] = ACTIONS(3378), + [anon_sym_explicit] = ACTIONS(3378), + [anon_sym_export] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_template] = ACTIONS(3378), + [anon_sym_operator] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_namespace] = ACTIONS(3378), + [anon_sym_static_assert] = ACTIONS(3378), + [anon_sym_concept] = ACTIONS(3378), + [anon_sym_co_return] = ACTIONS(3378), + [anon_sym_co_yield] = ACTIONS(3378), + [anon_sym_R_DQUOTE] = ACTIONS(3380), + [anon_sym_LR_DQUOTE] = ACTIONS(3380), + [anon_sym_uR_DQUOTE] = ACTIONS(3380), + [anon_sym_UR_DQUOTE] = ACTIONS(3380), + [anon_sym_u8R_DQUOTE] = ACTIONS(3380), + [anon_sym_co_await] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_requires] = ACTIONS(3378), + [anon_sym_CARET_CARET] = ACTIONS(3380), + [anon_sym_LBRACK_COLON] = ACTIONS(3380), + [sym_this] = ACTIONS(3378), }, - [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(672)] = { + [sym_identifier] = ACTIONS(4347), + [aux_sym_preproc_include_token1] = ACTIONS(4347), + [aux_sym_preproc_def_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token2] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), + [sym_preproc_directive] = ACTIONS(4347), + [anon_sym_LPAREN2] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_TILDE] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym___extension__] = ACTIONS(4347), + [anon_sym_typedef] = ACTIONS(4347), + [anon_sym_virtual] = ACTIONS(4347), + [anon_sym_extern] = ACTIONS(4347), + [anon_sym___attribute__] = ACTIONS(4347), + [anon_sym___attribute] = ACTIONS(4347), + [anon_sym_using] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4349), + [anon_sym___declspec] = ACTIONS(4347), + [anon_sym___based] = ACTIONS(4347), + [anon_sym___cdecl] = ACTIONS(4347), + [anon_sym___clrcall] = ACTIONS(4347), + [anon_sym___stdcall] = ACTIONS(4347), + [anon_sym___fastcall] = ACTIONS(4347), + [anon_sym___thiscall] = ACTIONS(4347), + [anon_sym___vectorcall] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_signed] = ACTIONS(4347), + [anon_sym_unsigned] = ACTIONS(4347), + [anon_sym_long] = ACTIONS(4347), + [anon_sym_short] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_static] = ACTIONS(4347), + [anon_sym_register] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym___inline] = ACTIONS(4347), + [anon_sym___inline__] = ACTIONS(4347), + [anon_sym___forceinline] = ACTIONS(4347), + [anon_sym_thread_local] = ACTIONS(4347), + [anon_sym___thread] = ACTIONS(4347), + [anon_sym_const] = ACTIONS(4347), + [anon_sym_constexpr] = ACTIONS(4347), + [anon_sym_volatile] = ACTIONS(4347), + [anon_sym_restrict] = ACTIONS(4347), + [anon_sym___restrict__] = ACTIONS(4347), + [anon_sym__Atomic] = ACTIONS(4347), + [anon_sym__Noreturn] = ACTIONS(4347), + [anon_sym_noreturn] = ACTIONS(4347), + [anon_sym__Nonnull] = ACTIONS(4347), + [anon_sym_mutable] = ACTIONS(4347), + [anon_sym_constinit] = ACTIONS(4347), + [anon_sym_consteval] = ACTIONS(4347), + [anon_sym_alignas] = ACTIONS(4347), + [anon_sym__Alignas] = ACTIONS(4347), + [sym_primitive_type] = ACTIONS(4347), + [anon_sym_enum] = ACTIONS(4347), + [anon_sym_class] = ACTIONS(4347), + [anon_sym_struct] = ACTIONS(4347), + [anon_sym_union] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_switch] = ACTIONS(4347), + [anon_sym_case] = ACTIONS(4347), + [anon_sym_default] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4347), + [anon_sym_do] = ACTIONS(4347), + [anon_sym_for] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_goto] = ACTIONS(4347), + [anon_sym___try] = ACTIONS(4347), + [anon_sym___leave] = ACTIONS(4347), + [anon_sym_not] = ACTIONS(4347), + [anon_sym_compl] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_sizeof] = ACTIONS(4347), + [anon_sym___alignof__] = ACTIONS(4347), + [anon_sym___alignof] = ACTIONS(4347), + [anon_sym__alignof] = ACTIONS(4347), + [anon_sym_alignof] = ACTIONS(4347), + [anon_sym__Alignof] = ACTIONS(4347), + [anon_sym_offsetof] = ACTIONS(4347), + [anon_sym__Generic] = ACTIONS(4347), + [anon_sym_typename] = ACTIONS(4347), + [anon_sym_asm] = ACTIONS(4347), + [anon_sym___asm__] = ACTIONS(4347), + [anon_sym___asm] = ACTIONS(4347), + [sym_number_literal] = ACTIONS(4349), + [anon_sym_L_SQUOTE] = ACTIONS(4349), + [anon_sym_u_SQUOTE] = ACTIONS(4349), + [anon_sym_U_SQUOTE] = ACTIONS(4349), + [anon_sym_u8_SQUOTE] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4349), + [anon_sym_L_DQUOTE] = ACTIONS(4349), + [anon_sym_u_DQUOTE] = ACTIONS(4349), + [anon_sym_U_DQUOTE] = ACTIONS(4349), + [anon_sym_u8_DQUOTE] = ACTIONS(4349), + [anon_sym_DQUOTE] = ACTIONS(4349), + [sym_true] = ACTIONS(4347), + [sym_false] = ACTIONS(4347), + [anon_sym_NULL] = ACTIONS(4347), + [anon_sym_nullptr] = ACTIONS(4347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4347), + [anon_sym_decltype] = ACTIONS(4347), + [anon_sym_explicit] = ACTIONS(4347), + [anon_sym_export] = ACTIONS(4347), + [anon_sym_module] = ACTIONS(4347), + [anon_sym_import] = ACTIONS(4347), + [anon_sym_template] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_delete] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_namespace] = ACTIONS(4347), + [anon_sym_static_assert] = ACTIONS(4347), + [anon_sym_concept] = ACTIONS(4347), + [anon_sym_co_return] = ACTIONS(4347), + [anon_sym_co_yield] = ACTIONS(4347), + [anon_sym_R_DQUOTE] = ACTIONS(4349), + [anon_sym_LR_DQUOTE] = ACTIONS(4349), + [anon_sym_uR_DQUOTE] = ACTIONS(4349), + [anon_sym_UR_DQUOTE] = ACTIONS(4349), + [anon_sym_u8R_DQUOTE] = ACTIONS(4349), + [anon_sym_co_await] = ACTIONS(4347), + [anon_sym_new] = ACTIONS(4347), + [anon_sym_requires] = ACTIONS(4347), + [anon_sym_CARET_CARET] = ACTIONS(4349), + [anon_sym_LBRACK_COLON] = ACTIONS(4349), + [sym_this] = ACTIONS(4347), }, - [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(673)] = { + [sym_identifier] = ACTIONS(4142), + [aux_sym_preproc_include_token1] = ACTIONS(4142), + [aux_sym_preproc_def_token1] = ACTIONS(4142), + [aux_sym_preproc_if_token1] = ACTIONS(4142), + [aux_sym_preproc_if_token2] = ACTIONS(4142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4142), + [sym_preproc_directive] = ACTIONS(4142), + [anon_sym_LPAREN2] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4144), + [anon_sym_TILDE] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym___extension__] = ACTIONS(4142), + [anon_sym_typedef] = ACTIONS(4142), + [anon_sym_virtual] = ACTIONS(4142), + [anon_sym_extern] = ACTIONS(4142), + [anon_sym___attribute__] = ACTIONS(4142), + [anon_sym___attribute] = ACTIONS(4142), + [anon_sym_using] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4144), + [anon_sym___declspec] = ACTIONS(4142), + [anon_sym___based] = ACTIONS(4142), + [anon_sym___cdecl] = ACTIONS(4142), + [anon_sym___clrcall] = ACTIONS(4142), + [anon_sym___stdcall] = ACTIONS(4142), + [anon_sym___fastcall] = ACTIONS(4142), + [anon_sym___thiscall] = ACTIONS(4142), + [anon_sym___vectorcall] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_signed] = ACTIONS(4142), + [anon_sym_unsigned] = ACTIONS(4142), + [anon_sym_long] = ACTIONS(4142), + [anon_sym_short] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_static] = ACTIONS(4142), + [anon_sym_register] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym___inline] = ACTIONS(4142), + [anon_sym___inline__] = ACTIONS(4142), + [anon_sym___forceinline] = ACTIONS(4142), + [anon_sym_thread_local] = ACTIONS(4142), + [anon_sym___thread] = ACTIONS(4142), + [anon_sym_const] = ACTIONS(4142), + [anon_sym_constexpr] = ACTIONS(4142), + [anon_sym_volatile] = ACTIONS(4142), + [anon_sym_restrict] = ACTIONS(4142), + [anon_sym___restrict__] = ACTIONS(4142), + [anon_sym__Atomic] = ACTIONS(4142), + [anon_sym__Noreturn] = ACTIONS(4142), + [anon_sym_noreturn] = ACTIONS(4142), + [anon_sym__Nonnull] = ACTIONS(4142), + [anon_sym_mutable] = ACTIONS(4142), + [anon_sym_constinit] = ACTIONS(4142), + [anon_sym_consteval] = ACTIONS(4142), + [anon_sym_alignas] = ACTIONS(4142), + [anon_sym__Alignas] = ACTIONS(4142), + [sym_primitive_type] = ACTIONS(4142), + [anon_sym_enum] = ACTIONS(4142), + [anon_sym_class] = ACTIONS(4142), + [anon_sym_struct] = ACTIONS(4142), + [anon_sym_union] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4142), + [anon_sym_switch] = ACTIONS(4142), + [anon_sym_case] = ACTIONS(4142), + [anon_sym_default] = ACTIONS(4142), + [anon_sym_while] = ACTIONS(4142), + [anon_sym_do] = ACTIONS(4142), + [anon_sym_for] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4142), + [anon_sym_break] = ACTIONS(4142), + [anon_sym_continue] = ACTIONS(4142), + [anon_sym_goto] = ACTIONS(4142), + [anon_sym___try] = ACTIONS(4142), + [anon_sym___leave] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4142), + [anon_sym_compl] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_sizeof] = ACTIONS(4142), + [anon_sym___alignof__] = ACTIONS(4142), + [anon_sym___alignof] = ACTIONS(4142), + [anon_sym__alignof] = ACTIONS(4142), + [anon_sym_alignof] = ACTIONS(4142), + [anon_sym__Alignof] = ACTIONS(4142), + [anon_sym_offsetof] = ACTIONS(4142), + [anon_sym__Generic] = ACTIONS(4142), + [anon_sym_typename] = ACTIONS(4142), + [anon_sym_asm] = ACTIONS(4142), + [anon_sym___asm__] = ACTIONS(4142), + [anon_sym___asm] = ACTIONS(4142), + [sym_number_literal] = ACTIONS(4144), + [anon_sym_L_SQUOTE] = ACTIONS(4144), + [anon_sym_u_SQUOTE] = ACTIONS(4144), + [anon_sym_U_SQUOTE] = ACTIONS(4144), + [anon_sym_u8_SQUOTE] = ACTIONS(4144), + [anon_sym_SQUOTE] = ACTIONS(4144), + [anon_sym_L_DQUOTE] = ACTIONS(4144), + [anon_sym_u_DQUOTE] = ACTIONS(4144), + [anon_sym_U_DQUOTE] = ACTIONS(4144), + [anon_sym_u8_DQUOTE] = ACTIONS(4144), + [anon_sym_DQUOTE] = ACTIONS(4144), + [sym_true] = ACTIONS(4142), + [sym_false] = ACTIONS(4142), + [anon_sym_NULL] = ACTIONS(4142), + [anon_sym_nullptr] = ACTIONS(4142), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4142), + [anon_sym_decltype] = ACTIONS(4142), + [anon_sym_explicit] = ACTIONS(4142), + [anon_sym_export] = ACTIONS(4142), + [anon_sym_module] = ACTIONS(4142), + [anon_sym_import] = ACTIONS(4142), + [anon_sym_template] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_try] = ACTIONS(4142), + [anon_sym_delete] = ACTIONS(4142), + [anon_sym_throw] = ACTIONS(4142), + [anon_sym_namespace] = ACTIONS(4142), + [anon_sym_static_assert] = ACTIONS(4142), + [anon_sym_concept] = ACTIONS(4142), + [anon_sym_co_return] = ACTIONS(4142), + [anon_sym_co_yield] = ACTIONS(4142), + [anon_sym_R_DQUOTE] = ACTIONS(4144), + [anon_sym_LR_DQUOTE] = ACTIONS(4144), + [anon_sym_uR_DQUOTE] = ACTIONS(4144), + [anon_sym_UR_DQUOTE] = ACTIONS(4144), + [anon_sym_u8R_DQUOTE] = ACTIONS(4144), + [anon_sym_co_await] = ACTIONS(4142), + [anon_sym_new] = ACTIONS(4142), + [anon_sym_requires] = ACTIONS(4142), + [anon_sym_CARET_CARET] = ACTIONS(4144), + [anon_sym_LBRACK_COLON] = ACTIONS(4144), + [sym_this] = ACTIONS(4142), }, - [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(674)] = { + [sym_identifier] = ACTIONS(4150), + [aux_sym_preproc_include_token1] = ACTIONS(4150), + [aux_sym_preproc_def_token1] = ACTIONS(4150), + [aux_sym_preproc_if_token1] = ACTIONS(4150), + [aux_sym_preproc_if_token2] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4150), + [sym_preproc_directive] = ACTIONS(4150), + [anon_sym_LPAREN2] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_TILDE] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym___extension__] = ACTIONS(4150), + [anon_sym_typedef] = ACTIONS(4150), + [anon_sym_virtual] = ACTIONS(4150), + [anon_sym_extern] = ACTIONS(4150), + [anon_sym___attribute__] = ACTIONS(4150), + [anon_sym___attribute] = ACTIONS(4150), + [anon_sym_using] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), + [anon_sym___declspec] = ACTIONS(4150), + [anon_sym___based] = ACTIONS(4150), + [anon_sym___cdecl] = ACTIONS(4150), + [anon_sym___clrcall] = ACTIONS(4150), + [anon_sym___stdcall] = ACTIONS(4150), + [anon_sym___fastcall] = ACTIONS(4150), + [anon_sym___thiscall] = ACTIONS(4150), + [anon_sym___vectorcall] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_signed] = ACTIONS(4150), + [anon_sym_unsigned] = ACTIONS(4150), + [anon_sym_long] = ACTIONS(4150), + [anon_sym_short] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_static] = ACTIONS(4150), + [anon_sym_register] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym___inline] = ACTIONS(4150), + [anon_sym___inline__] = ACTIONS(4150), + [anon_sym___forceinline] = ACTIONS(4150), + [anon_sym_thread_local] = ACTIONS(4150), + [anon_sym___thread] = ACTIONS(4150), + [anon_sym_const] = ACTIONS(4150), + [anon_sym_constexpr] = ACTIONS(4150), + [anon_sym_volatile] = ACTIONS(4150), + [anon_sym_restrict] = ACTIONS(4150), + [anon_sym___restrict__] = ACTIONS(4150), + [anon_sym__Atomic] = ACTIONS(4150), + [anon_sym__Noreturn] = ACTIONS(4150), + [anon_sym_noreturn] = ACTIONS(4150), + [anon_sym__Nonnull] = ACTIONS(4150), + [anon_sym_mutable] = ACTIONS(4150), + [anon_sym_constinit] = ACTIONS(4150), + [anon_sym_consteval] = ACTIONS(4150), + [anon_sym_alignas] = ACTIONS(4150), + [anon_sym__Alignas] = ACTIONS(4150), + [sym_primitive_type] = ACTIONS(4150), + [anon_sym_enum] = ACTIONS(4150), + [anon_sym_class] = ACTIONS(4150), + [anon_sym_struct] = ACTIONS(4150), + [anon_sym_union] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_switch] = ACTIONS(4150), + [anon_sym_case] = ACTIONS(4150), + [anon_sym_default] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_do] = ACTIONS(4150), + [anon_sym_for] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_goto] = ACTIONS(4150), + [anon_sym___try] = ACTIONS(4150), + [anon_sym___leave] = ACTIONS(4150), + [anon_sym_not] = ACTIONS(4150), + [anon_sym_compl] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_sizeof] = ACTIONS(4150), + [anon_sym___alignof__] = ACTIONS(4150), + [anon_sym___alignof] = ACTIONS(4150), + [anon_sym__alignof] = ACTIONS(4150), + [anon_sym_alignof] = ACTIONS(4150), + [anon_sym__Alignof] = ACTIONS(4150), + [anon_sym_offsetof] = ACTIONS(4150), + [anon_sym__Generic] = ACTIONS(4150), + [anon_sym_typename] = ACTIONS(4150), + [anon_sym_asm] = ACTIONS(4150), + [anon_sym___asm__] = ACTIONS(4150), + [anon_sym___asm] = ACTIONS(4150), + [sym_number_literal] = ACTIONS(4152), + [anon_sym_L_SQUOTE] = ACTIONS(4152), + [anon_sym_u_SQUOTE] = ACTIONS(4152), + [anon_sym_U_SQUOTE] = ACTIONS(4152), + [anon_sym_u8_SQUOTE] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4152), + [anon_sym_L_DQUOTE] = ACTIONS(4152), + [anon_sym_u_DQUOTE] = ACTIONS(4152), + [anon_sym_U_DQUOTE] = ACTIONS(4152), + [anon_sym_u8_DQUOTE] = ACTIONS(4152), + [anon_sym_DQUOTE] = ACTIONS(4152), + [sym_true] = ACTIONS(4150), + [sym_false] = ACTIONS(4150), + [anon_sym_NULL] = ACTIONS(4150), + [anon_sym_nullptr] = ACTIONS(4150), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4150), + [anon_sym_decltype] = ACTIONS(4150), + [anon_sym_explicit] = ACTIONS(4150), + [anon_sym_export] = ACTIONS(4150), + [anon_sym_module] = ACTIONS(4150), + [anon_sym_import] = ACTIONS(4150), + [anon_sym_template] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_delete] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_namespace] = ACTIONS(4150), + [anon_sym_static_assert] = ACTIONS(4150), + [anon_sym_concept] = ACTIONS(4150), + [anon_sym_co_return] = ACTIONS(4150), + [anon_sym_co_yield] = ACTIONS(4150), + [anon_sym_R_DQUOTE] = ACTIONS(4152), + [anon_sym_LR_DQUOTE] = ACTIONS(4152), + [anon_sym_uR_DQUOTE] = ACTIONS(4152), + [anon_sym_UR_DQUOTE] = ACTIONS(4152), + [anon_sym_u8R_DQUOTE] = ACTIONS(4152), + [anon_sym_co_await] = ACTIONS(4150), + [anon_sym_new] = ACTIONS(4150), + [anon_sym_requires] = ACTIONS(4150), + [anon_sym_CARET_CARET] = ACTIONS(4152), + [anon_sym_LBRACK_COLON] = ACTIONS(4152), + [sym_this] = ACTIONS(4150), }, - [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(675)] = { + [sym_identifier] = ACTIONS(4154), + [aux_sym_preproc_include_token1] = ACTIONS(4154), + [aux_sym_preproc_def_token1] = ACTIONS(4154), + [aux_sym_preproc_if_token1] = ACTIONS(4154), + [aux_sym_preproc_if_token2] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4154), + [sym_preproc_directive] = ACTIONS(4154), + [anon_sym_LPAREN2] = ACTIONS(4156), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_TILDE] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_SEMI] = ACTIONS(4156), + [anon_sym___extension__] = ACTIONS(4154), + [anon_sym_typedef] = ACTIONS(4154), + [anon_sym_virtual] = ACTIONS(4154), + [anon_sym_extern] = ACTIONS(4154), + [anon_sym___attribute__] = ACTIONS(4154), + [anon_sym___attribute] = ACTIONS(4154), + [anon_sym_using] = ACTIONS(4154), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4156), + [anon_sym___declspec] = ACTIONS(4154), + [anon_sym___based] = ACTIONS(4154), + [anon_sym___cdecl] = ACTIONS(4154), + [anon_sym___clrcall] = ACTIONS(4154), + [anon_sym___stdcall] = ACTIONS(4154), + [anon_sym___fastcall] = ACTIONS(4154), + [anon_sym___thiscall] = ACTIONS(4154), + [anon_sym___vectorcall] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(4156), + [anon_sym_signed] = ACTIONS(4154), + [anon_sym_unsigned] = ACTIONS(4154), + [anon_sym_long] = ACTIONS(4154), + [anon_sym_short] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_static] = ACTIONS(4154), + [anon_sym_register] = ACTIONS(4154), + [anon_sym_inline] = ACTIONS(4154), + [anon_sym___inline] = ACTIONS(4154), + [anon_sym___inline__] = ACTIONS(4154), + [anon_sym___forceinline] = ACTIONS(4154), + [anon_sym_thread_local] = ACTIONS(4154), + [anon_sym___thread] = ACTIONS(4154), + [anon_sym_const] = ACTIONS(4154), + [anon_sym_constexpr] = ACTIONS(4154), + [anon_sym_volatile] = ACTIONS(4154), + [anon_sym_restrict] = ACTIONS(4154), + [anon_sym___restrict__] = ACTIONS(4154), + [anon_sym__Atomic] = ACTIONS(4154), + [anon_sym__Noreturn] = ACTIONS(4154), + [anon_sym_noreturn] = ACTIONS(4154), + [anon_sym__Nonnull] = ACTIONS(4154), + [anon_sym_mutable] = ACTIONS(4154), + [anon_sym_constinit] = ACTIONS(4154), + [anon_sym_consteval] = ACTIONS(4154), + [anon_sym_alignas] = ACTIONS(4154), + [anon_sym__Alignas] = ACTIONS(4154), + [sym_primitive_type] = ACTIONS(4154), + [anon_sym_enum] = ACTIONS(4154), + [anon_sym_class] = ACTIONS(4154), + [anon_sym_struct] = ACTIONS(4154), + [anon_sym_union] = ACTIONS(4154), + [anon_sym_if] = ACTIONS(4154), + [anon_sym_switch] = ACTIONS(4154), + [anon_sym_case] = ACTIONS(4154), + [anon_sym_default] = ACTIONS(4154), + [anon_sym_while] = ACTIONS(4154), + [anon_sym_do] = ACTIONS(4154), + [anon_sym_for] = ACTIONS(4154), + [anon_sym_return] = ACTIONS(4154), + [anon_sym_break] = ACTIONS(4154), + [anon_sym_continue] = ACTIONS(4154), + [anon_sym_goto] = ACTIONS(4154), + [anon_sym___try] = ACTIONS(4154), + [anon_sym___leave] = ACTIONS(4154), + [anon_sym_not] = ACTIONS(4154), + [anon_sym_compl] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4156), + [anon_sym_PLUS_PLUS] = ACTIONS(4156), + [anon_sym_sizeof] = ACTIONS(4154), + [anon_sym___alignof__] = ACTIONS(4154), + [anon_sym___alignof] = ACTIONS(4154), + [anon_sym__alignof] = ACTIONS(4154), + [anon_sym_alignof] = ACTIONS(4154), + [anon_sym__Alignof] = ACTIONS(4154), + [anon_sym_offsetof] = ACTIONS(4154), + [anon_sym__Generic] = ACTIONS(4154), + [anon_sym_typename] = ACTIONS(4154), + [anon_sym_asm] = ACTIONS(4154), + [anon_sym___asm__] = ACTIONS(4154), + [anon_sym___asm] = ACTIONS(4154), + [sym_number_literal] = ACTIONS(4156), + [anon_sym_L_SQUOTE] = ACTIONS(4156), + [anon_sym_u_SQUOTE] = ACTIONS(4156), + [anon_sym_U_SQUOTE] = ACTIONS(4156), + [anon_sym_u8_SQUOTE] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4156), + [anon_sym_L_DQUOTE] = ACTIONS(4156), + [anon_sym_u_DQUOTE] = ACTIONS(4156), + [anon_sym_U_DQUOTE] = ACTIONS(4156), + [anon_sym_u8_DQUOTE] = ACTIONS(4156), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym_true] = ACTIONS(4154), + [sym_false] = ACTIONS(4154), + [anon_sym_NULL] = ACTIONS(4154), + [anon_sym_nullptr] = ACTIONS(4154), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4154), + [anon_sym_decltype] = ACTIONS(4154), + [anon_sym_explicit] = ACTIONS(4154), + [anon_sym_export] = ACTIONS(4154), + [anon_sym_module] = ACTIONS(4154), + [anon_sym_import] = ACTIONS(4154), + [anon_sym_template] = ACTIONS(4154), + [anon_sym_operator] = ACTIONS(4154), + [anon_sym_try] = ACTIONS(4154), + [anon_sym_delete] = ACTIONS(4154), + [anon_sym_throw] = ACTIONS(4154), + [anon_sym_namespace] = ACTIONS(4154), + [anon_sym_static_assert] = ACTIONS(4154), + [anon_sym_concept] = ACTIONS(4154), + [anon_sym_co_return] = ACTIONS(4154), + [anon_sym_co_yield] = ACTIONS(4154), + [anon_sym_R_DQUOTE] = ACTIONS(4156), + [anon_sym_LR_DQUOTE] = ACTIONS(4156), + [anon_sym_uR_DQUOTE] = ACTIONS(4156), + [anon_sym_UR_DQUOTE] = ACTIONS(4156), + [anon_sym_u8R_DQUOTE] = ACTIONS(4156), + [anon_sym_co_await] = ACTIONS(4154), + [anon_sym_new] = ACTIONS(4154), + [anon_sym_requires] = ACTIONS(4154), + [anon_sym_CARET_CARET] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4156), + [sym_this] = ACTIONS(4154), }, - [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(676)] = { + [sym_identifier] = ACTIONS(4162), + [aux_sym_preproc_include_token1] = ACTIONS(4162), + [aux_sym_preproc_def_token1] = ACTIONS(4162), + [aux_sym_preproc_if_token1] = ACTIONS(4162), + [aux_sym_preproc_if_token2] = ACTIONS(4162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4162), + [sym_preproc_directive] = ACTIONS(4162), + [anon_sym_LPAREN2] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_TILDE] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym___extension__] = ACTIONS(4162), + [anon_sym_typedef] = ACTIONS(4162), + [anon_sym_virtual] = ACTIONS(4162), + [anon_sym_extern] = ACTIONS(4162), + [anon_sym___attribute__] = ACTIONS(4162), + [anon_sym___attribute] = ACTIONS(4162), + [anon_sym_using] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4164), + [anon_sym___declspec] = ACTIONS(4162), + [anon_sym___based] = ACTIONS(4162), + [anon_sym___cdecl] = ACTIONS(4162), + [anon_sym___clrcall] = ACTIONS(4162), + [anon_sym___stdcall] = ACTIONS(4162), + [anon_sym___fastcall] = ACTIONS(4162), + [anon_sym___thiscall] = ACTIONS(4162), + [anon_sym___vectorcall] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4164), + [anon_sym_signed] = ACTIONS(4162), + [anon_sym_unsigned] = ACTIONS(4162), + [anon_sym_long] = ACTIONS(4162), + [anon_sym_short] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_static] = ACTIONS(4162), + [anon_sym_register] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym___inline] = ACTIONS(4162), + [anon_sym___inline__] = ACTIONS(4162), + [anon_sym___forceinline] = ACTIONS(4162), + [anon_sym_thread_local] = ACTIONS(4162), + [anon_sym___thread] = ACTIONS(4162), + [anon_sym_const] = ACTIONS(4162), + [anon_sym_constexpr] = ACTIONS(4162), + [anon_sym_volatile] = ACTIONS(4162), + [anon_sym_restrict] = ACTIONS(4162), + [anon_sym___restrict__] = ACTIONS(4162), + [anon_sym__Atomic] = ACTIONS(4162), + [anon_sym__Noreturn] = ACTIONS(4162), + [anon_sym_noreturn] = ACTIONS(4162), + [anon_sym__Nonnull] = ACTIONS(4162), + [anon_sym_mutable] = ACTIONS(4162), + [anon_sym_constinit] = ACTIONS(4162), + [anon_sym_consteval] = ACTIONS(4162), + [anon_sym_alignas] = ACTIONS(4162), + [anon_sym__Alignas] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(4162), + [anon_sym_enum] = ACTIONS(4162), + [anon_sym_class] = ACTIONS(4162), + [anon_sym_struct] = ACTIONS(4162), + [anon_sym_union] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_switch] = ACTIONS(4162), + [anon_sym_case] = ACTIONS(4162), + [anon_sym_default] = ACTIONS(4162), + [anon_sym_while] = ACTIONS(4162), + [anon_sym_do] = ACTIONS(4162), + [anon_sym_for] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_goto] = ACTIONS(4162), + [anon_sym___try] = ACTIONS(4162), + [anon_sym___leave] = ACTIONS(4162), + [anon_sym_not] = ACTIONS(4162), + [anon_sym_compl] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_sizeof] = ACTIONS(4162), + [anon_sym___alignof__] = ACTIONS(4162), + [anon_sym___alignof] = ACTIONS(4162), + [anon_sym__alignof] = ACTIONS(4162), + [anon_sym_alignof] = ACTIONS(4162), + [anon_sym__Alignof] = ACTIONS(4162), + [anon_sym_offsetof] = ACTIONS(4162), + [anon_sym__Generic] = ACTIONS(4162), + [anon_sym_typename] = ACTIONS(4162), + [anon_sym_asm] = ACTIONS(4162), + [anon_sym___asm__] = ACTIONS(4162), + [anon_sym___asm] = ACTIONS(4162), + [sym_number_literal] = ACTIONS(4164), + [anon_sym_L_SQUOTE] = ACTIONS(4164), + [anon_sym_u_SQUOTE] = ACTIONS(4164), + [anon_sym_U_SQUOTE] = ACTIONS(4164), + [anon_sym_u8_SQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4164), + [anon_sym_L_DQUOTE] = ACTIONS(4164), + [anon_sym_u_DQUOTE] = ACTIONS(4164), + [anon_sym_U_DQUOTE] = ACTIONS(4164), + [anon_sym_u8_DQUOTE] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [sym_true] = ACTIONS(4162), + [sym_false] = ACTIONS(4162), + [anon_sym_NULL] = ACTIONS(4162), + [anon_sym_nullptr] = ACTIONS(4162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4162), + [anon_sym_decltype] = ACTIONS(4162), + [anon_sym_explicit] = ACTIONS(4162), + [anon_sym_export] = ACTIONS(4162), + [anon_sym_module] = ACTIONS(4162), + [anon_sym_import] = ACTIONS(4162), + [anon_sym_template] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_delete] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_namespace] = ACTIONS(4162), + [anon_sym_static_assert] = ACTIONS(4162), + [anon_sym_concept] = ACTIONS(4162), + [anon_sym_co_return] = ACTIONS(4162), + [anon_sym_co_yield] = ACTIONS(4162), + [anon_sym_R_DQUOTE] = ACTIONS(4164), + [anon_sym_LR_DQUOTE] = ACTIONS(4164), + [anon_sym_uR_DQUOTE] = ACTIONS(4164), + [anon_sym_UR_DQUOTE] = ACTIONS(4164), + [anon_sym_u8R_DQUOTE] = ACTIONS(4164), + [anon_sym_co_await] = ACTIONS(4162), + [anon_sym_new] = ACTIONS(4162), + [anon_sym_requires] = ACTIONS(4162), + [anon_sym_CARET_CARET] = ACTIONS(4164), + [anon_sym_LBRACK_COLON] = ACTIONS(4164), + [sym_this] = ACTIONS(4162), }, - [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(677)] = { + [sym_identifier] = ACTIONS(4166), + [aux_sym_preproc_include_token1] = ACTIONS(4166), + [aux_sym_preproc_def_token1] = ACTIONS(4166), + [aux_sym_preproc_if_token1] = ACTIONS(4166), + [aux_sym_preproc_if_token2] = ACTIONS(4166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4166), + [sym_preproc_directive] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4168), + [anon_sym_TILDE] = ACTIONS(4168), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym___extension__] = ACTIONS(4166), + [anon_sym_typedef] = ACTIONS(4166), + [anon_sym_virtual] = ACTIONS(4166), + [anon_sym_extern] = ACTIONS(4166), + [anon_sym___attribute__] = ACTIONS(4166), + [anon_sym___attribute] = ACTIONS(4166), + [anon_sym_using] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4168), + [anon_sym___declspec] = ACTIONS(4166), + [anon_sym___based] = ACTIONS(4166), + [anon_sym___cdecl] = ACTIONS(4166), + [anon_sym___clrcall] = ACTIONS(4166), + [anon_sym___stdcall] = ACTIONS(4166), + [anon_sym___fastcall] = ACTIONS(4166), + [anon_sym___thiscall] = ACTIONS(4166), + [anon_sym___vectorcall] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_signed] = ACTIONS(4166), + [anon_sym_unsigned] = ACTIONS(4166), + [anon_sym_long] = ACTIONS(4166), + [anon_sym_short] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_static] = ACTIONS(4166), + [anon_sym_register] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym___inline] = ACTIONS(4166), + [anon_sym___inline__] = ACTIONS(4166), + [anon_sym___forceinline] = ACTIONS(4166), + [anon_sym_thread_local] = ACTIONS(4166), + [anon_sym___thread] = ACTIONS(4166), + [anon_sym_const] = ACTIONS(4166), + [anon_sym_constexpr] = ACTIONS(4166), + [anon_sym_volatile] = ACTIONS(4166), + [anon_sym_restrict] = ACTIONS(4166), + [anon_sym___restrict__] = ACTIONS(4166), + [anon_sym__Atomic] = ACTIONS(4166), + [anon_sym__Noreturn] = ACTIONS(4166), + [anon_sym_noreturn] = ACTIONS(4166), + [anon_sym__Nonnull] = ACTIONS(4166), + [anon_sym_mutable] = ACTIONS(4166), + [anon_sym_constinit] = ACTIONS(4166), + [anon_sym_consteval] = ACTIONS(4166), + [anon_sym_alignas] = ACTIONS(4166), + [anon_sym__Alignas] = ACTIONS(4166), + [sym_primitive_type] = ACTIONS(4166), + [anon_sym_enum] = ACTIONS(4166), + [anon_sym_class] = ACTIONS(4166), + [anon_sym_struct] = ACTIONS(4166), + [anon_sym_union] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_switch] = ACTIONS(4166), + [anon_sym_case] = ACTIONS(4166), + [anon_sym_default] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_do] = ACTIONS(4166), + [anon_sym_for] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_goto] = ACTIONS(4166), + [anon_sym___try] = ACTIONS(4166), + [anon_sym___leave] = ACTIONS(4166), + [anon_sym_not] = ACTIONS(4166), + [anon_sym_compl] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_sizeof] = ACTIONS(4166), + [anon_sym___alignof__] = ACTIONS(4166), + [anon_sym___alignof] = ACTIONS(4166), + [anon_sym__alignof] = ACTIONS(4166), + [anon_sym_alignof] = ACTIONS(4166), + [anon_sym__Alignof] = ACTIONS(4166), + [anon_sym_offsetof] = ACTIONS(4166), + [anon_sym__Generic] = ACTIONS(4166), + [anon_sym_typename] = ACTIONS(4166), + [anon_sym_asm] = ACTIONS(4166), + [anon_sym___asm__] = ACTIONS(4166), + [anon_sym___asm] = ACTIONS(4166), + [sym_number_literal] = ACTIONS(4168), + [anon_sym_L_SQUOTE] = ACTIONS(4168), + [anon_sym_u_SQUOTE] = ACTIONS(4168), + [anon_sym_U_SQUOTE] = ACTIONS(4168), + [anon_sym_u8_SQUOTE] = ACTIONS(4168), + [anon_sym_SQUOTE] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(4168), + [anon_sym_u_DQUOTE] = ACTIONS(4168), + [anon_sym_U_DQUOTE] = ACTIONS(4168), + [anon_sym_u8_DQUOTE] = ACTIONS(4168), + [anon_sym_DQUOTE] = ACTIONS(4168), + [sym_true] = ACTIONS(4166), + [sym_false] = ACTIONS(4166), + [anon_sym_NULL] = ACTIONS(4166), + [anon_sym_nullptr] = ACTIONS(4166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4166), + [anon_sym_decltype] = ACTIONS(4166), + [anon_sym_explicit] = ACTIONS(4166), + [anon_sym_export] = ACTIONS(4166), + [anon_sym_module] = ACTIONS(4166), + [anon_sym_import] = ACTIONS(4166), + [anon_sym_template] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_delete] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_namespace] = ACTIONS(4166), + [anon_sym_static_assert] = ACTIONS(4166), + [anon_sym_concept] = ACTIONS(4166), + [anon_sym_co_return] = ACTIONS(4166), + [anon_sym_co_yield] = ACTIONS(4166), + [anon_sym_R_DQUOTE] = ACTIONS(4168), + [anon_sym_LR_DQUOTE] = ACTIONS(4168), + [anon_sym_uR_DQUOTE] = ACTIONS(4168), + [anon_sym_UR_DQUOTE] = ACTIONS(4168), + [anon_sym_u8R_DQUOTE] = ACTIONS(4168), + [anon_sym_co_await] = ACTIONS(4166), + [anon_sym_new] = ACTIONS(4166), + [anon_sym_requires] = ACTIONS(4166), + [anon_sym_CARET_CARET] = ACTIONS(4168), + [anon_sym_LBRACK_COLON] = ACTIONS(4168), + [sym_this] = ACTIONS(4166), }, - [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(678)] = { + [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(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(679)] = { + [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(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(680)] = { + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_include_token1] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym___cdecl] = ACTIONS(3570), + [anon_sym___clrcall] = ACTIONS(3570), + [anon_sym___stdcall] = ACTIONS(3570), + [anon_sym___fastcall] = ACTIONS(3570), + [anon_sym___thiscall] = ACTIONS(3570), + [anon_sym___vectorcall] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_case] = ACTIONS(3570), + [anon_sym_default] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym___try] = ACTIONS(3570), + [anon_sym___leave] = ACTIONS(3570), + [anon_sym_not] = ACTIONS(3570), + [anon_sym_compl] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3570), + [anon_sym___alignof__] = ACTIONS(3570), + [anon_sym___alignof] = ACTIONS(3570), + [anon_sym__alignof] = ACTIONS(3570), + [anon_sym_alignof] = ACTIONS(3570), + [anon_sym__Alignof] = ACTIONS(3570), + [anon_sym_offsetof] = ACTIONS(3570), + [anon_sym__Generic] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym___asm__] = ACTIONS(3570), + [anon_sym___asm] = ACTIONS(3570), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_L_SQUOTE] = ACTIONS(3572), + [anon_sym_u_SQUOTE] = ACTIONS(3572), + [anon_sym_U_SQUOTE] = ACTIONS(3572), + [anon_sym_u8_SQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_L_DQUOTE] = ACTIONS(3572), + [anon_sym_u_DQUOTE] = ACTIONS(3572), + [anon_sym_U_DQUOTE] = ACTIONS(3572), + [anon_sym_u8_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [anon_sym_NULL] = ACTIONS(3570), + [anon_sym_nullptr] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_concept] = ACTIONS(3570), + [anon_sym_co_return] = ACTIONS(3570), + [anon_sym_co_yield] = ACTIONS(3570), + [anon_sym_R_DQUOTE] = ACTIONS(3572), + [anon_sym_LR_DQUOTE] = ACTIONS(3572), + [anon_sym_uR_DQUOTE] = ACTIONS(3572), + [anon_sym_UR_DQUOTE] = ACTIONS(3572), + [anon_sym_u8R_DQUOTE] = ACTIONS(3572), + [anon_sym_co_await] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_requires] = ACTIONS(3570), + [anon_sym_CARET_CARET] = ACTIONS(3572), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), + [sym_this] = ACTIONS(3570), }, - [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(681)] = { + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_include_token1] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym___cdecl] = ACTIONS(3570), + [anon_sym___clrcall] = ACTIONS(3570), + [anon_sym___stdcall] = ACTIONS(3570), + [anon_sym___fastcall] = ACTIONS(3570), + [anon_sym___thiscall] = ACTIONS(3570), + [anon_sym___vectorcall] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_case] = ACTIONS(3570), + [anon_sym_default] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym___try] = ACTIONS(3570), + [anon_sym___leave] = ACTIONS(3570), + [anon_sym_not] = ACTIONS(3570), + [anon_sym_compl] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3570), + [anon_sym___alignof__] = ACTIONS(3570), + [anon_sym___alignof] = ACTIONS(3570), + [anon_sym__alignof] = ACTIONS(3570), + [anon_sym_alignof] = ACTIONS(3570), + [anon_sym__Alignof] = ACTIONS(3570), + [anon_sym_offsetof] = ACTIONS(3570), + [anon_sym__Generic] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym___asm__] = ACTIONS(3570), + [anon_sym___asm] = ACTIONS(3570), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_L_SQUOTE] = ACTIONS(3572), + [anon_sym_u_SQUOTE] = ACTIONS(3572), + [anon_sym_U_SQUOTE] = ACTIONS(3572), + [anon_sym_u8_SQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_L_DQUOTE] = ACTIONS(3572), + [anon_sym_u_DQUOTE] = ACTIONS(3572), + [anon_sym_U_DQUOTE] = ACTIONS(3572), + [anon_sym_u8_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [anon_sym_NULL] = ACTIONS(3570), + [anon_sym_nullptr] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_export] = ACTIONS(3570), + [anon_sym_import] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_namespace] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_concept] = ACTIONS(3570), + [anon_sym_co_return] = ACTIONS(3570), + [anon_sym_co_yield] = ACTIONS(3570), + [anon_sym_R_DQUOTE] = ACTIONS(3572), + [anon_sym_LR_DQUOTE] = ACTIONS(3572), + [anon_sym_uR_DQUOTE] = ACTIONS(3572), + [anon_sym_UR_DQUOTE] = ACTIONS(3572), + [anon_sym_u8R_DQUOTE] = ACTIONS(3572), + [anon_sym_co_await] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_requires] = ACTIONS(3570), + [anon_sym_CARET_CARET] = ACTIONS(3572), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), + [sym_this] = ACTIONS(3570), }, - [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), + [STATE(682)] = { + [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), - [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), + [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), }, - [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), + [STATE(683)] = { + [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(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(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), + [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), }, - [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(684)] = { + [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), }, - [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), + [STATE(685)] = { + [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), + }, + [STATE(686)] = { + [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), + }, + [STATE(687)] = { + [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), + }, + [STATE(688)] = { + [sym_identifier] = ACTIONS(4226), + [aux_sym_preproc_include_token1] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token2] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym___cdecl] = ACTIONS(4226), + [anon_sym___clrcall] = ACTIONS(4226), + [anon_sym___stdcall] = ACTIONS(4226), + [anon_sym___fastcall] = ACTIONS(4226), + [anon_sym___thiscall] = ACTIONS(4226), + [anon_sym___vectorcall] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_case] = ACTIONS(4226), + [anon_sym_default] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_do] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym___try] = ACTIONS(4226), + [anon_sym___leave] = ACTIONS(4226), + [anon_sym_not] = ACTIONS(4226), + [anon_sym_compl] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_sizeof] = ACTIONS(4226), + [anon_sym___alignof__] = ACTIONS(4226), + [anon_sym___alignof] = ACTIONS(4226), + [anon_sym__alignof] = ACTIONS(4226), + [anon_sym_alignof] = ACTIONS(4226), + [anon_sym__Alignof] = ACTIONS(4226), + [anon_sym_offsetof] = ACTIONS(4226), + [anon_sym__Generic] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym___asm__] = ACTIONS(4226), + [anon_sym___asm] = ACTIONS(4226), + [sym_number_literal] = ACTIONS(4228), + [anon_sym_L_SQUOTE] = ACTIONS(4228), + [anon_sym_u_SQUOTE] = ACTIONS(4228), + [anon_sym_U_SQUOTE] = ACTIONS(4228), + [anon_sym_u8_SQUOTE] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4228), + [anon_sym_L_DQUOTE] = ACTIONS(4228), + [anon_sym_u_DQUOTE] = ACTIONS(4228), + [anon_sym_U_DQUOTE] = ACTIONS(4228), + [anon_sym_u8_DQUOTE] = ACTIONS(4228), + [anon_sym_DQUOTE] = ACTIONS(4228), + [sym_true] = ACTIONS(4226), + [sym_false] = ACTIONS(4226), + [anon_sym_NULL] = ACTIONS(4226), + [anon_sym_nullptr] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_export] = ACTIONS(4226), + [anon_sym_module] = ACTIONS(4226), + [anon_sym_import] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_delete] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_namespace] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_concept] = ACTIONS(4226), + [anon_sym_co_return] = ACTIONS(4226), + [anon_sym_co_yield] = ACTIONS(4226), + [anon_sym_R_DQUOTE] = ACTIONS(4228), + [anon_sym_LR_DQUOTE] = ACTIONS(4228), + [anon_sym_uR_DQUOTE] = ACTIONS(4228), + [anon_sym_UR_DQUOTE] = ACTIONS(4228), + [anon_sym_u8R_DQUOTE] = ACTIONS(4228), + [anon_sym_co_await] = ACTIONS(4226), + [anon_sym_new] = ACTIONS(4226), + [anon_sym_requires] = ACTIONS(4226), + [anon_sym_CARET_CARET] = ACTIONS(4228), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), + [sym_this] = ACTIONS(4226), + }, + [STATE(689)] = { + [sym_identifier] = ACTIONS(4226), + [aux_sym_preproc_include_token1] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token2] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym___cdecl] = ACTIONS(4226), + [anon_sym___clrcall] = ACTIONS(4226), + [anon_sym___stdcall] = ACTIONS(4226), + [anon_sym___fastcall] = ACTIONS(4226), + [anon_sym___thiscall] = ACTIONS(4226), + [anon_sym___vectorcall] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_case] = ACTIONS(4226), + [anon_sym_default] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_do] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym___try] = ACTIONS(4226), + [anon_sym___leave] = ACTIONS(4226), + [anon_sym_not] = ACTIONS(4226), + [anon_sym_compl] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_sizeof] = ACTIONS(4226), + [anon_sym___alignof__] = ACTIONS(4226), + [anon_sym___alignof] = ACTIONS(4226), + [anon_sym__alignof] = ACTIONS(4226), + [anon_sym_alignof] = ACTIONS(4226), + [anon_sym__Alignof] = ACTIONS(4226), + [anon_sym_offsetof] = ACTIONS(4226), + [anon_sym__Generic] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym___asm__] = ACTIONS(4226), + [anon_sym___asm] = ACTIONS(4226), + [sym_number_literal] = ACTIONS(4228), + [anon_sym_L_SQUOTE] = ACTIONS(4228), + [anon_sym_u_SQUOTE] = ACTIONS(4228), + [anon_sym_U_SQUOTE] = ACTIONS(4228), + [anon_sym_u8_SQUOTE] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4228), + [anon_sym_L_DQUOTE] = ACTIONS(4228), + [anon_sym_u_DQUOTE] = ACTIONS(4228), + [anon_sym_U_DQUOTE] = ACTIONS(4228), + [anon_sym_u8_DQUOTE] = ACTIONS(4228), + [anon_sym_DQUOTE] = ACTIONS(4228), + [sym_true] = ACTIONS(4226), + [sym_false] = ACTIONS(4226), + [anon_sym_NULL] = ACTIONS(4226), + [anon_sym_nullptr] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_export] = ACTIONS(4226), + [anon_sym_module] = ACTIONS(4226), + [anon_sym_import] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_delete] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_namespace] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_concept] = ACTIONS(4226), + [anon_sym_co_return] = ACTIONS(4226), + [anon_sym_co_yield] = ACTIONS(4226), + [anon_sym_R_DQUOTE] = ACTIONS(4228), + [anon_sym_LR_DQUOTE] = ACTIONS(4228), + [anon_sym_uR_DQUOTE] = ACTIONS(4228), + [anon_sym_UR_DQUOTE] = ACTIONS(4228), + [anon_sym_u8R_DQUOTE] = ACTIONS(4228), + [anon_sym_co_await] = ACTIONS(4226), + [anon_sym_new] = ACTIONS(4226), + [anon_sym_requires] = ACTIONS(4226), + [anon_sym_CARET_CARET] = ACTIONS(4228), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), + [sym_this] = ACTIONS(4226), + }, + [STATE(690)] = { + [sym_identifier] = ACTIONS(4327), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym___cdecl] = ACTIONS(4327), + [anon_sym___clrcall] = ACTIONS(4327), + [anon_sym___stdcall] = ACTIONS(4327), + [anon_sym___fastcall] = ACTIONS(4327), + [anon_sym___thiscall] = ACTIONS(4327), + [anon_sym___vectorcall] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_switch] = ACTIONS(4327), + [anon_sym_case] = ACTIONS(4327), + [anon_sym_default] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_do] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_goto] = ACTIONS(4327), + [anon_sym___try] = ACTIONS(4327), + [anon_sym___leave] = ACTIONS(4327), + [anon_sym_not] = ACTIONS(4327), + [anon_sym_compl] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_sizeof] = ACTIONS(4327), + [anon_sym___alignof__] = ACTIONS(4327), + [anon_sym___alignof] = ACTIONS(4327), + [anon_sym__alignof] = ACTIONS(4327), + [anon_sym_alignof] = ACTIONS(4327), + [anon_sym__Alignof] = ACTIONS(4327), + [anon_sym_offsetof] = ACTIONS(4327), + [anon_sym__Generic] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [anon_sym_asm] = ACTIONS(4327), + [anon_sym___asm__] = ACTIONS(4327), + [anon_sym___asm] = ACTIONS(4327), + [sym_number_literal] = ACTIONS(4329), + [anon_sym_L_SQUOTE] = ACTIONS(4329), + [anon_sym_u_SQUOTE] = ACTIONS(4329), + [anon_sym_U_SQUOTE] = ACTIONS(4329), + [anon_sym_u8_SQUOTE] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_L_DQUOTE] = ACTIONS(4329), + [anon_sym_u_DQUOTE] = ACTIONS(4329), + [anon_sym_U_DQUOTE] = ACTIONS(4329), + [anon_sym_u8_DQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym_true] = ACTIONS(4327), + [sym_false] = ACTIONS(4327), + [anon_sym_NULL] = ACTIONS(4327), + [anon_sym_nullptr] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_export] = ACTIONS(4327), + [anon_sym_module] = ACTIONS(4327), + [anon_sym_import] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_delete] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_namespace] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_concept] = ACTIONS(4327), + [anon_sym_co_return] = ACTIONS(4327), + [anon_sym_co_yield] = ACTIONS(4327), + [anon_sym_R_DQUOTE] = ACTIONS(4329), + [anon_sym_LR_DQUOTE] = ACTIONS(4329), + [anon_sym_uR_DQUOTE] = ACTIONS(4329), + [anon_sym_UR_DQUOTE] = ACTIONS(4329), + [anon_sym_u8R_DQUOTE] = ACTIONS(4329), + [anon_sym_co_await] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4327), + [anon_sym_requires] = ACTIONS(4327), + [anon_sym_CARET_CARET] = ACTIONS(4329), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), + [sym_this] = ACTIONS(4327), + }, + [STATE(691)] = { + [sym_identifier] = ACTIONS(4327), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym___cdecl] = ACTIONS(4327), + [anon_sym___clrcall] = ACTIONS(4327), + [anon_sym___stdcall] = ACTIONS(4327), + [anon_sym___fastcall] = ACTIONS(4327), + [anon_sym___thiscall] = ACTIONS(4327), + [anon_sym___vectorcall] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_switch] = ACTIONS(4327), + [anon_sym_case] = ACTIONS(4327), + [anon_sym_default] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_do] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_goto] = ACTIONS(4327), + [anon_sym___try] = ACTIONS(4327), + [anon_sym___leave] = ACTIONS(4327), + [anon_sym_not] = ACTIONS(4327), + [anon_sym_compl] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_sizeof] = ACTIONS(4327), + [anon_sym___alignof__] = ACTIONS(4327), + [anon_sym___alignof] = ACTIONS(4327), + [anon_sym__alignof] = ACTIONS(4327), + [anon_sym_alignof] = ACTIONS(4327), + [anon_sym__Alignof] = ACTIONS(4327), + [anon_sym_offsetof] = ACTIONS(4327), + [anon_sym__Generic] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [anon_sym_asm] = ACTIONS(4327), + [anon_sym___asm__] = ACTIONS(4327), + [anon_sym___asm] = ACTIONS(4327), + [sym_number_literal] = ACTIONS(4329), + [anon_sym_L_SQUOTE] = ACTIONS(4329), + [anon_sym_u_SQUOTE] = ACTIONS(4329), + [anon_sym_U_SQUOTE] = ACTIONS(4329), + [anon_sym_u8_SQUOTE] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_L_DQUOTE] = ACTIONS(4329), + [anon_sym_u_DQUOTE] = ACTIONS(4329), + [anon_sym_U_DQUOTE] = ACTIONS(4329), + [anon_sym_u8_DQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym_true] = ACTIONS(4327), + [sym_false] = ACTIONS(4327), + [anon_sym_NULL] = ACTIONS(4327), + [anon_sym_nullptr] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_export] = ACTIONS(4327), + [anon_sym_module] = ACTIONS(4327), + [anon_sym_import] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_delete] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_namespace] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_concept] = ACTIONS(4327), + [anon_sym_co_return] = ACTIONS(4327), + [anon_sym_co_yield] = ACTIONS(4327), + [anon_sym_R_DQUOTE] = ACTIONS(4329), + [anon_sym_LR_DQUOTE] = ACTIONS(4329), + [anon_sym_uR_DQUOTE] = ACTIONS(4329), + [anon_sym_UR_DQUOTE] = ACTIONS(4329), + [anon_sym_u8R_DQUOTE] = ACTIONS(4329), + [anon_sym_co_await] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4327), + [anon_sym_requires] = ACTIONS(4327), + [anon_sym_CARET_CARET] = ACTIONS(4329), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), + [sym_this] = ACTIONS(4327), + }, + [STATE(692)] = { + [sym_identifier] = ACTIONS(4385), + [aux_sym_preproc_include_token1] = ACTIONS(4385), + [aux_sym_preproc_def_token1] = ACTIONS(4385), + [aux_sym_preproc_if_token1] = ACTIONS(4385), + [aux_sym_preproc_if_token2] = ACTIONS(4385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4385), + [sym_preproc_directive] = ACTIONS(4385), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_BANG] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4387), + [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_STAR] = ACTIONS(4387), + [anon_sym_AMP_AMP] = ACTIONS(4387), + [anon_sym_AMP] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4387), + [anon_sym___extension__] = ACTIONS(4385), + [anon_sym_typedef] = ACTIONS(4385), + [anon_sym_virtual] = ACTIONS(4385), + [anon_sym_extern] = ACTIONS(4385), + [anon_sym___attribute__] = ACTIONS(4385), + [anon_sym___attribute] = ACTIONS(4385), + [anon_sym_using] = ACTIONS(4385), + [anon_sym_COLON_COLON] = ACTIONS(4387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4387), + [anon_sym___declspec] = ACTIONS(4385), + [anon_sym___based] = ACTIONS(4385), + [anon_sym___cdecl] = ACTIONS(4385), + [anon_sym___clrcall] = ACTIONS(4385), + [anon_sym___stdcall] = ACTIONS(4385), + [anon_sym___fastcall] = ACTIONS(4385), + [anon_sym___thiscall] = ACTIONS(4385), + [anon_sym___vectorcall] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(4387), + [anon_sym_signed] = ACTIONS(4385), + [anon_sym_unsigned] = ACTIONS(4385), + [anon_sym_long] = ACTIONS(4385), + [anon_sym_short] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [anon_sym_static] = ACTIONS(4385), + [anon_sym_register] = ACTIONS(4385), + [anon_sym_inline] = ACTIONS(4385), + [anon_sym___inline] = ACTIONS(4385), + [anon_sym___inline__] = ACTIONS(4385), + [anon_sym___forceinline] = ACTIONS(4385), + [anon_sym_thread_local] = ACTIONS(4385), + [anon_sym___thread] = ACTIONS(4385), + [anon_sym_const] = ACTIONS(4385), + [anon_sym_constexpr] = ACTIONS(4385), + [anon_sym_volatile] = ACTIONS(4385), + [anon_sym_restrict] = ACTIONS(4385), + [anon_sym___restrict__] = ACTIONS(4385), + [anon_sym__Atomic] = ACTIONS(4385), + [anon_sym__Noreturn] = ACTIONS(4385), + [anon_sym_noreturn] = ACTIONS(4385), + [anon_sym__Nonnull] = ACTIONS(4385), + [anon_sym_mutable] = ACTIONS(4385), + [anon_sym_constinit] = ACTIONS(4385), + [anon_sym_consteval] = ACTIONS(4385), + [anon_sym_alignas] = ACTIONS(4385), + [anon_sym__Alignas] = ACTIONS(4385), + [sym_primitive_type] = ACTIONS(4385), + [anon_sym_enum] = ACTIONS(4385), + [anon_sym_class] = ACTIONS(4385), + [anon_sym_struct] = ACTIONS(4385), + [anon_sym_union] = ACTIONS(4385), + [anon_sym_if] = ACTIONS(4385), + [anon_sym_switch] = ACTIONS(4385), + [anon_sym_case] = ACTIONS(4385), + [anon_sym_default] = ACTIONS(4385), + [anon_sym_while] = ACTIONS(4385), + [anon_sym_do] = ACTIONS(4385), + [anon_sym_for] = ACTIONS(4385), + [anon_sym_return] = ACTIONS(4385), + [anon_sym_break] = ACTIONS(4385), + [anon_sym_continue] = ACTIONS(4385), + [anon_sym_goto] = ACTIONS(4385), + [anon_sym___try] = ACTIONS(4385), + [anon_sym___leave] = ACTIONS(4385), + [anon_sym_not] = ACTIONS(4385), + [anon_sym_compl] = ACTIONS(4385), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_PLUS_PLUS] = ACTIONS(4387), + [anon_sym_sizeof] = ACTIONS(4385), + [anon_sym___alignof__] = ACTIONS(4385), + [anon_sym___alignof] = ACTIONS(4385), + [anon_sym__alignof] = ACTIONS(4385), + [anon_sym_alignof] = ACTIONS(4385), + [anon_sym__Alignof] = ACTIONS(4385), + [anon_sym_offsetof] = ACTIONS(4385), + [anon_sym__Generic] = ACTIONS(4385), + [anon_sym_typename] = ACTIONS(4385), + [anon_sym_asm] = ACTIONS(4385), + [anon_sym___asm__] = ACTIONS(4385), + [anon_sym___asm] = ACTIONS(4385), + [sym_number_literal] = ACTIONS(4387), + [anon_sym_L_SQUOTE] = ACTIONS(4387), + [anon_sym_u_SQUOTE] = ACTIONS(4387), + [anon_sym_U_SQUOTE] = ACTIONS(4387), + [anon_sym_u8_SQUOTE] = ACTIONS(4387), + [anon_sym_SQUOTE] = ACTIONS(4387), + [anon_sym_L_DQUOTE] = ACTIONS(4387), + [anon_sym_u_DQUOTE] = ACTIONS(4387), + [anon_sym_U_DQUOTE] = ACTIONS(4387), + [anon_sym_u8_DQUOTE] = ACTIONS(4387), + [anon_sym_DQUOTE] = ACTIONS(4387), + [sym_true] = ACTIONS(4385), + [sym_false] = ACTIONS(4385), + [anon_sym_NULL] = ACTIONS(4385), + [anon_sym_nullptr] = ACTIONS(4385), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4385), + [anon_sym_decltype] = ACTIONS(4385), + [anon_sym_explicit] = ACTIONS(4385), + [anon_sym_export] = ACTIONS(4385), + [anon_sym_module] = ACTIONS(4385), + [anon_sym_import] = ACTIONS(4385), + [anon_sym_template] = ACTIONS(4385), + [anon_sym_operator] = ACTIONS(4385), + [anon_sym_try] = ACTIONS(4385), + [anon_sym_delete] = ACTIONS(4385), + [anon_sym_throw] = ACTIONS(4385), + [anon_sym_namespace] = ACTIONS(4385), + [anon_sym_static_assert] = ACTIONS(4385), + [anon_sym_concept] = ACTIONS(4385), + [anon_sym_co_return] = ACTIONS(4385), + [anon_sym_co_yield] = ACTIONS(4385), + [anon_sym_R_DQUOTE] = ACTIONS(4387), + [anon_sym_LR_DQUOTE] = ACTIONS(4387), + [anon_sym_uR_DQUOTE] = ACTIONS(4387), + [anon_sym_UR_DQUOTE] = ACTIONS(4387), + [anon_sym_u8R_DQUOTE] = ACTIONS(4387), + [anon_sym_co_await] = ACTIONS(4385), + [anon_sym_new] = ACTIONS(4385), + [anon_sym_requires] = ACTIONS(4385), + [anon_sym_CARET_CARET] = ACTIONS(4387), + [anon_sym_LBRACK_COLON] = ACTIONS(4387), + [sym_this] = ACTIONS(4385), + }, + [STATE(693)] = { + [sym_identifier] = ACTIONS(4393), + [aux_sym_preproc_include_token1] = ACTIONS(4393), + [aux_sym_preproc_def_token1] = ACTIONS(4393), + [aux_sym_preproc_if_token1] = ACTIONS(4393), + [aux_sym_preproc_if_token2] = ACTIONS(4393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4393), + [sym_preproc_directive] = ACTIONS(4393), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_TILDE] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym___extension__] = ACTIONS(4393), + [anon_sym_typedef] = ACTIONS(4393), + [anon_sym_virtual] = ACTIONS(4393), + [anon_sym_extern] = ACTIONS(4393), + [anon_sym___attribute__] = ACTIONS(4393), + [anon_sym___attribute] = ACTIONS(4393), + [anon_sym_using] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4395), + [anon_sym___declspec] = ACTIONS(4393), + [anon_sym___based] = ACTIONS(4393), + [anon_sym___cdecl] = ACTIONS(4393), + [anon_sym___clrcall] = ACTIONS(4393), + [anon_sym___stdcall] = ACTIONS(4393), + [anon_sym___fastcall] = ACTIONS(4393), + [anon_sym___thiscall] = ACTIONS(4393), + [anon_sym___vectorcall] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_signed] = ACTIONS(4393), + [anon_sym_unsigned] = ACTIONS(4393), + [anon_sym_long] = ACTIONS(4393), + [anon_sym_short] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_static] = ACTIONS(4393), + [anon_sym_register] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym___inline] = ACTIONS(4393), + [anon_sym___inline__] = ACTIONS(4393), + [anon_sym___forceinline] = ACTIONS(4393), + [anon_sym_thread_local] = ACTIONS(4393), + [anon_sym___thread] = ACTIONS(4393), + [anon_sym_const] = ACTIONS(4393), + [anon_sym_constexpr] = ACTIONS(4393), + [anon_sym_volatile] = ACTIONS(4393), + [anon_sym_restrict] = ACTIONS(4393), + [anon_sym___restrict__] = ACTIONS(4393), + [anon_sym__Atomic] = ACTIONS(4393), + [anon_sym__Noreturn] = ACTIONS(4393), + [anon_sym_noreturn] = ACTIONS(4393), + [anon_sym__Nonnull] = ACTIONS(4393), + [anon_sym_mutable] = ACTIONS(4393), + [anon_sym_constinit] = ACTIONS(4393), + [anon_sym_consteval] = ACTIONS(4393), + [anon_sym_alignas] = ACTIONS(4393), + [anon_sym__Alignas] = ACTIONS(4393), + [sym_primitive_type] = ACTIONS(4393), + [anon_sym_enum] = ACTIONS(4393), + [anon_sym_class] = ACTIONS(4393), + [anon_sym_struct] = ACTIONS(4393), + [anon_sym_union] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_switch] = ACTIONS(4393), + [anon_sym_case] = ACTIONS(4393), + [anon_sym_default] = ACTIONS(4393), + [anon_sym_while] = ACTIONS(4393), + [anon_sym_do] = ACTIONS(4393), + [anon_sym_for] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_goto] = ACTIONS(4393), + [anon_sym___try] = ACTIONS(4393), + [anon_sym___leave] = ACTIONS(4393), + [anon_sym_not] = ACTIONS(4393), + [anon_sym_compl] = ACTIONS(4393), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_sizeof] = ACTIONS(4393), + [anon_sym___alignof__] = ACTIONS(4393), + [anon_sym___alignof] = ACTIONS(4393), + [anon_sym__alignof] = ACTIONS(4393), + [anon_sym_alignof] = ACTIONS(4393), + [anon_sym__Alignof] = ACTIONS(4393), + [anon_sym_offsetof] = ACTIONS(4393), + [anon_sym__Generic] = ACTIONS(4393), + [anon_sym_typename] = ACTIONS(4393), + [anon_sym_asm] = ACTIONS(4393), + [anon_sym___asm__] = ACTIONS(4393), + [anon_sym___asm] = ACTIONS(4393), + [sym_number_literal] = ACTIONS(4395), + [anon_sym_L_SQUOTE] = ACTIONS(4395), + [anon_sym_u_SQUOTE] = ACTIONS(4395), + [anon_sym_U_SQUOTE] = ACTIONS(4395), + [anon_sym_u8_SQUOTE] = ACTIONS(4395), + [anon_sym_SQUOTE] = ACTIONS(4395), + [anon_sym_L_DQUOTE] = ACTIONS(4395), + [anon_sym_u_DQUOTE] = ACTIONS(4395), + [anon_sym_U_DQUOTE] = ACTIONS(4395), + [anon_sym_u8_DQUOTE] = ACTIONS(4395), + [anon_sym_DQUOTE] = ACTIONS(4395), + [sym_true] = ACTIONS(4393), + [sym_false] = ACTIONS(4393), + [anon_sym_NULL] = ACTIONS(4393), + [anon_sym_nullptr] = ACTIONS(4393), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4393), + [anon_sym_decltype] = ACTIONS(4393), + [anon_sym_explicit] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4393), + [anon_sym_module] = ACTIONS(4393), + [anon_sym_import] = ACTIONS(4393), + [anon_sym_template] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_delete] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_namespace] = ACTIONS(4393), + [anon_sym_static_assert] = ACTIONS(4393), + [anon_sym_concept] = ACTIONS(4393), + [anon_sym_co_return] = ACTIONS(4393), + [anon_sym_co_yield] = ACTIONS(4393), + [anon_sym_R_DQUOTE] = ACTIONS(4395), + [anon_sym_LR_DQUOTE] = ACTIONS(4395), + [anon_sym_uR_DQUOTE] = ACTIONS(4395), + [anon_sym_UR_DQUOTE] = ACTIONS(4395), + [anon_sym_u8R_DQUOTE] = ACTIONS(4395), + [anon_sym_co_await] = ACTIONS(4393), + [anon_sym_new] = ACTIONS(4393), + [anon_sym_requires] = ACTIONS(4393), + [anon_sym_CARET_CARET] = ACTIONS(4395), + [anon_sym_LBRACK_COLON] = ACTIONS(4395), + [sym_this] = ACTIONS(4393), + }, + [STATE(694)] = { + [sym_identifier] = ACTIONS(4397), + [aux_sym_preproc_include_token1] = ACTIONS(4397), + [aux_sym_preproc_def_token1] = ACTIONS(4397), + [aux_sym_preproc_if_token1] = ACTIONS(4397), + [aux_sym_preproc_if_token2] = ACTIONS(4397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4397), + [sym_preproc_directive] = ACTIONS(4397), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_AMP] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym___extension__] = ACTIONS(4397), + [anon_sym_typedef] = ACTIONS(4397), + [anon_sym_virtual] = ACTIONS(4397), + [anon_sym_extern] = ACTIONS(4397), + [anon_sym___attribute__] = ACTIONS(4397), + [anon_sym___attribute] = ACTIONS(4397), + [anon_sym_using] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4399), + [anon_sym___declspec] = ACTIONS(4397), + [anon_sym___based] = ACTIONS(4397), + [anon_sym___cdecl] = ACTIONS(4397), + [anon_sym___clrcall] = ACTIONS(4397), + [anon_sym___stdcall] = ACTIONS(4397), + [anon_sym___fastcall] = ACTIONS(4397), + [anon_sym___thiscall] = ACTIONS(4397), + [anon_sym___vectorcall] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_signed] = ACTIONS(4397), + [anon_sym_unsigned] = ACTIONS(4397), + [anon_sym_long] = ACTIONS(4397), + [anon_sym_short] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_static] = ACTIONS(4397), + [anon_sym_register] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym___inline] = ACTIONS(4397), + [anon_sym___inline__] = ACTIONS(4397), + [anon_sym___forceinline] = ACTIONS(4397), + [anon_sym_thread_local] = ACTIONS(4397), + [anon_sym___thread] = ACTIONS(4397), + [anon_sym_const] = ACTIONS(4397), + [anon_sym_constexpr] = ACTIONS(4397), + [anon_sym_volatile] = ACTIONS(4397), + [anon_sym_restrict] = ACTIONS(4397), + [anon_sym___restrict__] = ACTIONS(4397), + [anon_sym__Atomic] = ACTIONS(4397), + [anon_sym__Noreturn] = ACTIONS(4397), + [anon_sym_noreturn] = ACTIONS(4397), + [anon_sym__Nonnull] = ACTIONS(4397), + [anon_sym_mutable] = ACTIONS(4397), + [anon_sym_constinit] = ACTIONS(4397), + [anon_sym_consteval] = ACTIONS(4397), + [anon_sym_alignas] = ACTIONS(4397), + [anon_sym__Alignas] = ACTIONS(4397), + [sym_primitive_type] = ACTIONS(4397), + [anon_sym_enum] = ACTIONS(4397), + [anon_sym_class] = ACTIONS(4397), + [anon_sym_struct] = ACTIONS(4397), + [anon_sym_union] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_switch] = ACTIONS(4397), + [anon_sym_case] = ACTIONS(4397), + [anon_sym_default] = ACTIONS(4397), + [anon_sym_while] = ACTIONS(4397), + [anon_sym_do] = ACTIONS(4397), + [anon_sym_for] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_goto] = ACTIONS(4397), + [anon_sym___try] = ACTIONS(4397), + [anon_sym___leave] = ACTIONS(4397), + [anon_sym_not] = ACTIONS(4397), + [anon_sym_compl] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_sizeof] = ACTIONS(4397), + [anon_sym___alignof__] = ACTIONS(4397), + [anon_sym___alignof] = ACTIONS(4397), + [anon_sym__alignof] = ACTIONS(4397), + [anon_sym_alignof] = ACTIONS(4397), + [anon_sym__Alignof] = ACTIONS(4397), + [anon_sym_offsetof] = ACTIONS(4397), + [anon_sym__Generic] = ACTIONS(4397), + [anon_sym_typename] = ACTIONS(4397), + [anon_sym_asm] = ACTIONS(4397), + [anon_sym___asm__] = ACTIONS(4397), + [anon_sym___asm] = ACTIONS(4397), + [sym_number_literal] = ACTIONS(4399), + [anon_sym_L_SQUOTE] = ACTIONS(4399), + [anon_sym_u_SQUOTE] = ACTIONS(4399), + [anon_sym_U_SQUOTE] = ACTIONS(4399), + [anon_sym_u8_SQUOTE] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4399), + [anon_sym_L_DQUOTE] = ACTIONS(4399), + [anon_sym_u_DQUOTE] = ACTIONS(4399), + [anon_sym_U_DQUOTE] = ACTIONS(4399), + [anon_sym_u8_DQUOTE] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4399), + [sym_true] = ACTIONS(4397), + [sym_false] = ACTIONS(4397), + [anon_sym_NULL] = ACTIONS(4397), + [anon_sym_nullptr] = ACTIONS(4397), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4397), + [anon_sym_decltype] = ACTIONS(4397), + [anon_sym_explicit] = ACTIONS(4397), + [anon_sym_export] = ACTIONS(4397), + [anon_sym_module] = ACTIONS(4397), + [anon_sym_import] = ACTIONS(4397), + [anon_sym_template] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_delete] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_namespace] = ACTIONS(4397), + [anon_sym_static_assert] = ACTIONS(4397), + [anon_sym_concept] = ACTIONS(4397), + [anon_sym_co_return] = ACTIONS(4397), + [anon_sym_co_yield] = ACTIONS(4397), + [anon_sym_R_DQUOTE] = ACTIONS(4399), + [anon_sym_LR_DQUOTE] = ACTIONS(4399), + [anon_sym_uR_DQUOTE] = ACTIONS(4399), + [anon_sym_UR_DQUOTE] = ACTIONS(4399), + [anon_sym_u8R_DQUOTE] = ACTIONS(4399), + [anon_sym_co_await] = ACTIONS(4397), + [anon_sym_new] = ACTIONS(4397), + [anon_sym_requires] = ACTIONS(4397), + [anon_sym_CARET_CARET] = ACTIONS(4399), + [anon_sym_LBRACK_COLON] = ACTIONS(4399), + [sym_this] = ACTIONS(4397), + }, + [STATE(695)] = { + [sym_identifier] = ACTIONS(4401), + [aux_sym_preproc_include_token1] = ACTIONS(4401), + [aux_sym_preproc_def_token1] = ACTIONS(4401), + [aux_sym_preproc_if_token1] = ACTIONS(4401), + [aux_sym_preproc_if_token2] = ACTIONS(4401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4401), + [sym_preproc_directive] = ACTIONS(4401), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_TILDE] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym___extension__] = ACTIONS(4401), + [anon_sym_typedef] = ACTIONS(4401), + [anon_sym_virtual] = ACTIONS(4401), + [anon_sym_extern] = ACTIONS(4401), + [anon_sym___attribute__] = ACTIONS(4401), + [anon_sym___attribute] = ACTIONS(4401), + [anon_sym_using] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4403), + [anon_sym___declspec] = ACTIONS(4401), + [anon_sym___based] = ACTIONS(4401), + [anon_sym___cdecl] = ACTIONS(4401), + [anon_sym___clrcall] = ACTIONS(4401), + [anon_sym___stdcall] = ACTIONS(4401), + [anon_sym___fastcall] = ACTIONS(4401), + [anon_sym___thiscall] = ACTIONS(4401), + [anon_sym___vectorcall] = ACTIONS(4401), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_signed] = ACTIONS(4401), + [anon_sym_unsigned] = ACTIONS(4401), + [anon_sym_long] = ACTIONS(4401), + [anon_sym_short] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [anon_sym_static] = ACTIONS(4401), + [anon_sym_register] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym___inline] = ACTIONS(4401), + [anon_sym___inline__] = ACTIONS(4401), + [anon_sym___forceinline] = ACTIONS(4401), + [anon_sym_thread_local] = ACTIONS(4401), + [anon_sym___thread] = ACTIONS(4401), + [anon_sym_const] = ACTIONS(4401), + [anon_sym_constexpr] = ACTIONS(4401), + [anon_sym_volatile] = ACTIONS(4401), + [anon_sym_restrict] = ACTIONS(4401), + [anon_sym___restrict__] = ACTIONS(4401), + [anon_sym__Atomic] = ACTIONS(4401), + [anon_sym__Noreturn] = ACTIONS(4401), + [anon_sym_noreturn] = ACTIONS(4401), + [anon_sym__Nonnull] = ACTIONS(4401), + [anon_sym_mutable] = ACTIONS(4401), + [anon_sym_constinit] = ACTIONS(4401), + [anon_sym_consteval] = ACTIONS(4401), + [anon_sym_alignas] = ACTIONS(4401), + [anon_sym__Alignas] = ACTIONS(4401), + [sym_primitive_type] = ACTIONS(4401), + [anon_sym_enum] = ACTIONS(4401), + [anon_sym_class] = ACTIONS(4401), + [anon_sym_struct] = ACTIONS(4401), + [anon_sym_union] = ACTIONS(4401), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_switch] = ACTIONS(4401), + [anon_sym_case] = ACTIONS(4401), + [anon_sym_default] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(4401), + [anon_sym_do] = ACTIONS(4401), + [anon_sym_for] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_goto] = ACTIONS(4401), + [anon_sym___try] = ACTIONS(4401), + [anon_sym___leave] = ACTIONS(4401), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_sizeof] = ACTIONS(4401), + [anon_sym___alignof__] = ACTIONS(4401), + [anon_sym___alignof] = ACTIONS(4401), + [anon_sym__alignof] = ACTIONS(4401), + [anon_sym_alignof] = ACTIONS(4401), + [anon_sym__Alignof] = ACTIONS(4401), + [anon_sym_offsetof] = ACTIONS(4401), + [anon_sym__Generic] = ACTIONS(4401), + [anon_sym_typename] = ACTIONS(4401), + [anon_sym_asm] = ACTIONS(4401), + [anon_sym___asm__] = ACTIONS(4401), + [anon_sym___asm] = ACTIONS(4401), + [sym_number_literal] = ACTIONS(4403), + [anon_sym_L_SQUOTE] = ACTIONS(4403), + [anon_sym_u_SQUOTE] = ACTIONS(4403), + [anon_sym_U_SQUOTE] = ACTIONS(4403), + [anon_sym_u8_SQUOTE] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4403), + [anon_sym_L_DQUOTE] = ACTIONS(4403), + [anon_sym_u_DQUOTE] = ACTIONS(4403), + [anon_sym_U_DQUOTE] = ACTIONS(4403), + [anon_sym_u8_DQUOTE] = ACTIONS(4403), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym_true] = ACTIONS(4401), + [sym_false] = ACTIONS(4401), + [anon_sym_NULL] = ACTIONS(4401), + [anon_sym_nullptr] = ACTIONS(4401), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4401), + [anon_sym_decltype] = ACTIONS(4401), + [anon_sym_explicit] = ACTIONS(4401), + [anon_sym_export] = ACTIONS(4401), + [anon_sym_module] = ACTIONS(4401), + [anon_sym_import] = ACTIONS(4401), + [anon_sym_template] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_delete] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_namespace] = ACTIONS(4401), + [anon_sym_static_assert] = ACTIONS(4401), + [anon_sym_concept] = ACTIONS(4401), + [anon_sym_co_return] = ACTIONS(4401), + [anon_sym_co_yield] = ACTIONS(4401), + [anon_sym_R_DQUOTE] = ACTIONS(4403), + [anon_sym_LR_DQUOTE] = ACTIONS(4403), + [anon_sym_uR_DQUOTE] = ACTIONS(4403), + [anon_sym_UR_DQUOTE] = ACTIONS(4403), + [anon_sym_u8R_DQUOTE] = ACTIONS(4403), + [anon_sym_co_await] = ACTIONS(4401), + [anon_sym_new] = ACTIONS(4401), + [anon_sym_requires] = ACTIONS(4401), + [anon_sym_CARET_CARET] = ACTIONS(4403), + [anon_sym_LBRACK_COLON] = ACTIONS(4403), + [sym_this] = ACTIONS(4401), + }, + [STATE(696)] = { + [sym_identifier] = ACTIONS(4405), + [aux_sym_preproc_include_token1] = ACTIONS(4405), + [aux_sym_preproc_def_token1] = ACTIONS(4405), + [aux_sym_preproc_if_token1] = ACTIONS(4405), + [aux_sym_preproc_if_token2] = ACTIONS(4405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4405), + [sym_preproc_directive] = ACTIONS(4405), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4407), + [anon_sym_AMP_AMP] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4405), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym___extension__] = ACTIONS(4405), + [anon_sym_typedef] = ACTIONS(4405), + [anon_sym_virtual] = ACTIONS(4405), + [anon_sym_extern] = ACTIONS(4405), + [anon_sym___attribute__] = ACTIONS(4405), + [anon_sym___attribute] = ACTIONS(4405), + [anon_sym_using] = ACTIONS(4405), + [anon_sym_COLON_COLON] = ACTIONS(4407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4407), + [anon_sym___declspec] = ACTIONS(4405), + [anon_sym___based] = ACTIONS(4405), + [anon_sym___cdecl] = ACTIONS(4405), + [anon_sym___clrcall] = ACTIONS(4405), + [anon_sym___stdcall] = ACTIONS(4405), + [anon_sym___fastcall] = ACTIONS(4405), + [anon_sym___thiscall] = ACTIONS(4405), + [anon_sym___vectorcall] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_signed] = ACTIONS(4405), + [anon_sym_unsigned] = ACTIONS(4405), + [anon_sym_long] = ACTIONS(4405), + [anon_sym_short] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_static] = ACTIONS(4405), + [anon_sym_register] = ACTIONS(4405), + [anon_sym_inline] = ACTIONS(4405), + [anon_sym___inline] = ACTIONS(4405), + [anon_sym___inline__] = ACTIONS(4405), + [anon_sym___forceinline] = ACTIONS(4405), + [anon_sym_thread_local] = ACTIONS(4405), + [anon_sym___thread] = ACTIONS(4405), + [anon_sym_const] = ACTIONS(4405), + [anon_sym_constexpr] = ACTIONS(4405), + [anon_sym_volatile] = ACTIONS(4405), + [anon_sym_restrict] = ACTIONS(4405), + [anon_sym___restrict__] = ACTIONS(4405), + [anon_sym__Atomic] = ACTIONS(4405), + [anon_sym__Noreturn] = ACTIONS(4405), + [anon_sym_noreturn] = ACTIONS(4405), + [anon_sym__Nonnull] = ACTIONS(4405), + [anon_sym_mutable] = ACTIONS(4405), + [anon_sym_constinit] = ACTIONS(4405), + [anon_sym_consteval] = ACTIONS(4405), + [anon_sym_alignas] = ACTIONS(4405), + [anon_sym__Alignas] = ACTIONS(4405), + [sym_primitive_type] = ACTIONS(4405), + [anon_sym_enum] = ACTIONS(4405), + [anon_sym_class] = ACTIONS(4405), + [anon_sym_struct] = ACTIONS(4405), + [anon_sym_union] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(4405), + [anon_sym_switch] = ACTIONS(4405), + [anon_sym_case] = ACTIONS(4405), + [anon_sym_default] = ACTIONS(4405), + [anon_sym_while] = ACTIONS(4405), + [anon_sym_do] = ACTIONS(4405), + [anon_sym_for] = ACTIONS(4405), + [anon_sym_return] = ACTIONS(4405), + [anon_sym_break] = ACTIONS(4405), + [anon_sym_continue] = ACTIONS(4405), + [anon_sym_goto] = ACTIONS(4405), + [anon_sym___try] = ACTIONS(4405), + [anon_sym___leave] = ACTIONS(4405), + [anon_sym_not] = ACTIONS(4405), + [anon_sym_compl] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_sizeof] = ACTIONS(4405), + [anon_sym___alignof__] = ACTIONS(4405), + [anon_sym___alignof] = ACTIONS(4405), + [anon_sym__alignof] = ACTIONS(4405), + [anon_sym_alignof] = ACTIONS(4405), + [anon_sym__Alignof] = ACTIONS(4405), + [anon_sym_offsetof] = ACTIONS(4405), + [anon_sym__Generic] = ACTIONS(4405), + [anon_sym_typename] = ACTIONS(4405), + [anon_sym_asm] = ACTIONS(4405), + [anon_sym___asm__] = ACTIONS(4405), + [anon_sym___asm] = ACTIONS(4405), + [sym_number_literal] = ACTIONS(4407), + [anon_sym_L_SQUOTE] = ACTIONS(4407), + [anon_sym_u_SQUOTE] = ACTIONS(4407), + [anon_sym_U_SQUOTE] = ACTIONS(4407), + [anon_sym_u8_SQUOTE] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_L_DQUOTE] = ACTIONS(4407), + [anon_sym_u_DQUOTE] = ACTIONS(4407), + [anon_sym_U_DQUOTE] = ACTIONS(4407), + [anon_sym_u8_DQUOTE] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [sym_true] = ACTIONS(4405), + [sym_false] = ACTIONS(4405), + [anon_sym_NULL] = ACTIONS(4405), + [anon_sym_nullptr] = ACTIONS(4405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4405), + [anon_sym_decltype] = ACTIONS(4405), + [anon_sym_explicit] = ACTIONS(4405), + [anon_sym_export] = ACTIONS(4405), + [anon_sym_module] = ACTIONS(4405), + [anon_sym_import] = ACTIONS(4405), + [anon_sym_template] = ACTIONS(4405), + [anon_sym_operator] = ACTIONS(4405), + [anon_sym_try] = ACTIONS(4405), + [anon_sym_delete] = ACTIONS(4405), + [anon_sym_throw] = ACTIONS(4405), + [anon_sym_namespace] = ACTIONS(4405), + [anon_sym_static_assert] = ACTIONS(4405), + [anon_sym_concept] = ACTIONS(4405), + [anon_sym_co_return] = ACTIONS(4405), + [anon_sym_co_yield] = ACTIONS(4405), + [anon_sym_R_DQUOTE] = ACTIONS(4407), + [anon_sym_LR_DQUOTE] = ACTIONS(4407), + [anon_sym_uR_DQUOTE] = ACTIONS(4407), + [anon_sym_UR_DQUOTE] = ACTIONS(4407), + [anon_sym_u8R_DQUOTE] = ACTIONS(4407), + [anon_sym_co_await] = ACTIONS(4405), + [anon_sym_new] = ACTIONS(4405), + [anon_sym_requires] = ACTIONS(4405), + [anon_sym_CARET_CARET] = ACTIONS(4407), + [anon_sym_LBRACK_COLON] = ACTIONS(4407), + [sym_this] = ACTIONS(4405), + }, + [STATE(697)] = { + [sym_identifier] = ACTIONS(4419), + [aux_sym_preproc_include_token1] = ACTIONS(4419), + [aux_sym_preproc_def_token1] = ACTIONS(4419), + [aux_sym_preproc_if_token1] = ACTIONS(4419), + [aux_sym_preproc_if_token2] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4419), + [sym_preproc_directive] = ACTIONS(4419), + [anon_sym_LPAREN2] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_TILDE] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_AMP] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym___extension__] = ACTIONS(4419), + [anon_sym_typedef] = ACTIONS(4419), + [anon_sym_virtual] = ACTIONS(4419), + [anon_sym_extern] = ACTIONS(4419), + [anon_sym___attribute__] = ACTIONS(4419), + [anon_sym___attribute] = ACTIONS(4419), + [anon_sym_using] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4421), + [anon_sym___declspec] = ACTIONS(4419), + [anon_sym___based] = ACTIONS(4419), + [anon_sym___cdecl] = ACTIONS(4419), + [anon_sym___clrcall] = ACTIONS(4419), + [anon_sym___stdcall] = ACTIONS(4419), + [anon_sym___fastcall] = ACTIONS(4419), + [anon_sym___thiscall] = ACTIONS(4419), + [anon_sym___vectorcall] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_signed] = ACTIONS(4419), + [anon_sym_unsigned] = ACTIONS(4419), + [anon_sym_long] = ACTIONS(4419), + [anon_sym_short] = ACTIONS(4419), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_static] = ACTIONS(4419), + [anon_sym_register] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym___inline] = ACTIONS(4419), + [anon_sym___inline__] = ACTIONS(4419), + [anon_sym___forceinline] = ACTIONS(4419), + [anon_sym_thread_local] = ACTIONS(4419), + [anon_sym___thread] = ACTIONS(4419), + [anon_sym_const] = ACTIONS(4419), + [anon_sym_constexpr] = ACTIONS(4419), + [anon_sym_volatile] = ACTIONS(4419), + [anon_sym_restrict] = ACTIONS(4419), + [anon_sym___restrict__] = ACTIONS(4419), + [anon_sym__Atomic] = ACTIONS(4419), + [anon_sym__Noreturn] = ACTIONS(4419), + [anon_sym_noreturn] = ACTIONS(4419), + [anon_sym__Nonnull] = ACTIONS(4419), + [anon_sym_mutable] = ACTIONS(4419), + [anon_sym_constinit] = ACTIONS(4419), + [anon_sym_consteval] = ACTIONS(4419), + [anon_sym_alignas] = ACTIONS(4419), + [anon_sym__Alignas] = ACTIONS(4419), + [sym_primitive_type] = ACTIONS(4419), + [anon_sym_enum] = ACTIONS(4419), + [anon_sym_class] = ACTIONS(4419), + [anon_sym_struct] = ACTIONS(4419), + [anon_sym_union] = ACTIONS(4419), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4419), + [anon_sym_default] = ACTIONS(4419), + [anon_sym_while] = ACTIONS(4419), + [anon_sym_do] = ACTIONS(4419), + [anon_sym_for] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_goto] = ACTIONS(4419), + [anon_sym___try] = ACTIONS(4419), + [anon_sym___leave] = ACTIONS(4419), + [anon_sym_not] = ACTIONS(4419), + [anon_sym_compl] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_sizeof] = ACTIONS(4419), + [anon_sym___alignof__] = ACTIONS(4419), + [anon_sym___alignof] = ACTIONS(4419), + [anon_sym__alignof] = ACTIONS(4419), + [anon_sym_alignof] = ACTIONS(4419), + [anon_sym__Alignof] = ACTIONS(4419), + [anon_sym_offsetof] = ACTIONS(4419), + [anon_sym__Generic] = ACTIONS(4419), + [anon_sym_typename] = ACTIONS(4419), + [anon_sym_asm] = ACTIONS(4419), + [anon_sym___asm__] = ACTIONS(4419), + [anon_sym___asm] = ACTIONS(4419), + [sym_number_literal] = ACTIONS(4421), + [anon_sym_L_SQUOTE] = ACTIONS(4421), + [anon_sym_u_SQUOTE] = ACTIONS(4421), + [anon_sym_U_SQUOTE] = ACTIONS(4421), + [anon_sym_u8_SQUOTE] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4421), + [anon_sym_L_DQUOTE] = ACTIONS(4421), + [anon_sym_u_DQUOTE] = ACTIONS(4421), + [anon_sym_U_DQUOTE] = ACTIONS(4421), + [anon_sym_u8_DQUOTE] = ACTIONS(4421), + [anon_sym_DQUOTE] = ACTIONS(4421), + [sym_true] = ACTIONS(4419), + [sym_false] = ACTIONS(4419), + [anon_sym_NULL] = ACTIONS(4419), + [anon_sym_nullptr] = ACTIONS(4419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4419), + [anon_sym_decltype] = ACTIONS(4419), + [anon_sym_explicit] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_module] = ACTIONS(4419), + [anon_sym_import] = ACTIONS(4419), + [anon_sym_template] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_delete] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_namespace] = ACTIONS(4419), + [anon_sym_static_assert] = ACTIONS(4419), + [anon_sym_concept] = ACTIONS(4419), + [anon_sym_co_return] = ACTIONS(4419), + [anon_sym_co_yield] = ACTIONS(4419), + [anon_sym_R_DQUOTE] = ACTIONS(4421), + [anon_sym_LR_DQUOTE] = ACTIONS(4421), + [anon_sym_uR_DQUOTE] = ACTIONS(4421), + [anon_sym_UR_DQUOTE] = ACTIONS(4421), + [anon_sym_u8R_DQUOTE] = ACTIONS(4421), + [anon_sym_co_await] = ACTIONS(4419), + [anon_sym_new] = ACTIONS(4419), + [anon_sym_requires] = ACTIONS(4419), + [anon_sym_CARET_CARET] = ACTIONS(4421), + [anon_sym_LBRACK_COLON] = ACTIONS(4421), + [sym_this] = ACTIONS(4419), + }, + [STATE(698)] = { + [sym_identifier] = ACTIONS(3590), + [aux_sym_preproc_include_token1] = ACTIONS(3590), + [aux_sym_preproc_def_token1] = ACTIONS(3590), + [aux_sym_preproc_if_token1] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3590), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3590), + [sym_preproc_directive] = ACTIONS(3590), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(3592), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_AMP] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym___extension__] = ACTIONS(3590), + [anon_sym_typedef] = ACTIONS(3590), + [anon_sym_virtual] = ACTIONS(3590), + [anon_sym_extern] = ACTIONS(3590), + [anon_sym___attribute__] = ACTIONS(3590), + [anon_sym___attribute] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_COLON_COLON] = ACTIONS(3592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3592), + [anon_sym___declspec] = ACTIONS(3590), + [anon_sym___based] = ACTIONS(3590), + [anon_sym___cdecl] = ACTIONS(3590), + [anon_sym___clrcall] = ACTIONS(3590), + [anon_sym___stdcall] = ACTIONS(3590), + [anon_sym___fastcall] = ACTIONS(3590), + [anon_sym___thiscall] = ACTIONS(3590), + [anon_sym___vectorcall] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_signed] = ACTIONS(3590), + [anon_sym_unsigned] = ACTIONS(3590), + [anon_sym_long] = ACTIONS(3590), + [anon_sym_short] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_register] = ACTIONS(3590), + [anon_sym_inline] = ACTIONS(3590), + [anon_sym___inline] = ACTIONS(3590), + [anon_sym___inline__] = ACTIONS(3590), + [anon_sym___forceinline] = ACTIONS(3590), + [anon_sym_thread_local] = ACTIONS(3590), + [anon_sym___thread] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_constexpr] = ACTIONS(3590), + [anon_sym_volatile] = ACTIONS(3590), + [anon_sym_restrict] = ACTIONS(3590), + [anon_sym___restrict__] = ACTIONS(3590), + [anon_sym__Atomic] = ACTIONS(3590), + [anon_sym__Noreturn] = ACTIONS(3590), + [anon_sym_noreturn] = ACTIONS(3590), + [anon_sym__Nonnull] = ACTIONS(3590), + [anon_sym_mutable] = ACTIONS(3590), + [anon_sym_constinit] = ACTIONS(3590), + [anon_sym_consteval] = ACTIONS(3590), + [anon_sym_alignas] = ACTIONS(3590), + [anon_sym__Alignas] = ACTIONS(3590), + [sym_primitive_type] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_struct] = ACTIONS(3590), + [anon_sym_union] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_else] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_case] = ACTIONS(3590), + [anon_sym_default] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_goto] = ACTIONS(3590), + [anon_sym___try] = ACTIONS(3590), + [anon_sym___leave] = ACTIONS(3590), + [anon_sym_not] = ACTIONS(3590), + [anon_sym_compl] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_sizeof] = ACTIONS(3590), + [anon_sym___alignof__] = ACTIONS(3590), + [anon_sym___alignof] = ACTIONS(3590), + [anon_sym__alignof] = ACTIONS(3590), + [anon_sym_alignof] = ACTIONS(3590), + [anon_sym__Alignof] = ACTIONS(3590), + [anon_sym_offsetof] = ACTIONS(3590), + [anon_sym__Generic] = ACTIONS(3590), + [anon_sym_typename] = ACTIONS(3590), + [anon_sym_asm] = ACTIONS(3590), + [anon_sym___asm__] = ACTIONS(3590), + [anon_sym___asm] = ACTIONS(3590), + [sym_number_literal] = ACTIONS(3592), + [anon_sym_L_SQUOTE] = ACTIONS(3592), + [anon_sym_u_SQUOTE] = ACTIONS(3592), + [anon_sym_U_SQUOTE] = ACTIONS(3592), + [anon_sym_u8_SQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_L_DQUOTE] = ACTIONS(3592), + [anon_sym_u_DQUOTE] = ACTIONS(3592), + [anon_sym_U_DQUOTE] = ACTIONS(3592), + [anon_sym_u8_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [anon_sym_NULL] = ACTIONS(3590), + [anon_sym_nullptr] = ACTIONS(3590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3590), + [anon_sym_decltype] = ACTIONS(3590), + [anon_sym_explicit] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_template] = ACTIONS(3590), + [anon_sym_operator] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_static_assert] = ACTIONS(3590), + [anon_sym_concept] = ACTIONS(3590), + [anon_sym_co_return] = ACTIONS(3590), + [anon_sym_co_yield] = ACTIONS(3590), + [anon_sym_R_DQUOTE] = ACTIONS(3592), + [anon_sym_LR_DQUOTE] = ACTIONS(3592), + [anon_sym_uR_DQUOTE] = ACTIONS(3592), + [anon_sym_UR_DQUOTE] = ACTIONS(3592), + [anon_sym_u8R_DQUOTE] = ACTIONS(3592), + [anon_sym_co_await] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_requires] = ACTIONS(3590), + [anon_sym_CARET_CARET] = ACTIONS(3592), + [anon_sym_LBRACK_COLON] = ACTIONS(3592), + [sym_this] = ACTIONS(3590), + }, + [STATE(699)] = { + [sym_identifier] = ACTIONS(4445), + [aux_sym_preproc_include_token1] = ACTIONS(4445), + [aux_sym_preproc_def_token1] = ACTIONS(4445), + [aux_sym_preproc_if_token1] = ACTIONS(4445), + [aux_sym_preproc_if_token2] = ACTIONS(4445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), + [sym_preproc_directive] = ACTIONS(4445), + [anon_sym_LPAREN2] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_TILDE] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_AMP_AMP] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4445), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym___extension__] = ACTIONS(4445), + [anon_sym_typedef] = ACTIONS(4445), + [anon_sym_virtual] = ACTIONS(4445), + [anon_sym_extern] = ACTIONS(4445), + [anon_sym___attribute__] = ACTIONS(4445), + [anon_sym___attribute] = ACTIONS(4445), + [anon_sym_using] = ACTIONS(4445), + [anon_sym_COLON_COLON] = ACTIONS(4447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4447), + [anon_sym___declspec] = ACTIONS(4445), + [anon_sym___based] = ACTIONS(4445), + [anon_sym___cdecl] = ACTIONS(4445), + [anon_sym___clrcall] = ACTIONS(4445), + [anon_sym___stdcall] = ACTIONS(4445), + [anon_sym___fastcall] = ACTIONS(4445), + [anon_sym___thiscall] = ACTIONS(4445), + [anon_sym___vectorcall] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4447), + [anon_sym_signed] = ACTIONS(4445), + [anon_sym_unsigned] = ACTIONS(4445), + [anon_sym_long] = ACTIONS(4445), + [anon_sym_short] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_static] = ACTIONS(4445), + [anon_sym_register] = ACTIONS(4445), + [anon_sym_inline] = ACTIONS(4445), + [anon_sym___inline] = ACTIONS(4445), + [anon_sym___inline__] = ACTIONS(4445), + [anon_sym___forceinline] = ACTIONS(4445), + [anon_sym_thread_local] = ACTIONS(4445), + [anon_sym___thread] = ACTIONS(4445), + [anon_sym_const] = ACTIONS(4445), + [anon_sym_constexpr] = ACTIONS(4445), + [anon_sym_volatile] = ACTIONS(4445), + [anon_sym_restrict] = ACTIONS(4445), + [anon_sym___restrict__] = ACTIONS(4445), + [anon_sym__Atomic] = ACTIONS(4445), + [anon_sym__Noreturn] = ACTIONS(4445), + [anon_sym_noreturn] = ACTIONS(4445), + [anon_sym__Nonnull] = ACTIONS(4445), + [anon_sym_mutable] = ACTIONS(4445), + [anon_sym_constinit] = ACTIONS(4445), + [anon_sym_consteval] = ACTIONS(4445), + [anon_sym_alignas] = ACTIONS(4445), + [anon_sym__Alignas] = ACTIONS(4445), + [sym_primitive_type] = ACTIONS(4445), + [anon_sym_enum] = ACTIONS(4445), + [anon_sym_class] = ACTIONS(4445), + [anon_sym_struct] = ACTIONS(4445), + [anon_sym_union] = ACTIONS(4445), + [anon_sym_if] = ACTIONS(4445), + [anon_sym_switch] = ACTIONS(4445), + [anon_sym_case] = ACTIONS(4445), + [anon_sym_default] = ACTIONS(4445), + [anon_sym_while] = ACTIONS(4445), + [anon_sym_do] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(4445), + [anon_sym_return] = ACTIONS(4445), + [anon_sym_break] = ACTIONS(4445), + [anon_sym_continue] = ACTIONS(4445), + [anon_sym_goto] = ACTIONS(4445), + [anon_sym___try] = ACTIONS(4445), + [anon_sym___leave] = ACTIONS(4445), + [anon_sym_not] = ACTIONS(4445), + [anon_sym_compl] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4447), + [anon_sym_PLUS_PLUS] = ACTIONS(4447), + [anon_sym_sizeof] = ACTIONS(4445), + [anon_sym___alignof__] = ACTIONS(4445), + [anon_sym___alignof] = ACTIONS(4445), + [anon_sym__alignof] = ACTIONS(4445), + [anon_sym_alignof] = ACTIONS(4445), + [anon_sym__Alignof] = ACTIONS(4445), + [anon_sym_offsetof] = ACTIONS(4445), + [anon_sym__Generic] = ACTIONS(4445), + [anon_sym_typename] = ACTIONS(4445), + [anon_sym_asm] = ACTIONS(4445), + [anon_sym___asm__] = ACTIONS(4445), + [anon_sym___asm] = ACTIONS(4445), + [sym_number_literal] = ACTIONS(4447), + [anon_sym_L_SQUOTE] = ACTIONS(4447), + [anon_sym_u_SQUOTE] = ACTIONS(4447), + [anon_sym_U_SQUOTE] = ACTIONS(4447), + [anon_sym_u8_SQUOTE] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_L_DQUOTE] = ACTIONS(4447), + [anon_sym_u_DQUOTE] = ACTIONS(4447), + [anon_sym_U_DQUOTE] = ACTIONS(4447), + [anon_sym_u8_DQUOTE] = ACTIONS(4447), + [anon_sym_DQUOTE] = ACTIONS(4447), + [sym_true] = ACTIONS(4445), + [sym_false] = ACTIONS(4445), + [anon_sym_NULL] = ACTIONS(4445), + [anon_sym_nullptr] = ACTIONS(4445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4445), + [anon_sym_decltype] = ACTIONS(4445), + [anon_sym_explicit] = ACTIONS(4445), + [anon_sym_export] = ACTIONS(4445), + [anon_sym_module] = ACTIONS(4445), + [anon_sym_import] = ACTIONS(4445), + [anon_sym_template] = ACTIONS(4445), + [anon_sym_operator] = ACTIONS(4445), + [anon_sym_try] = ACTIONS(4445), + [anon_sym_delete] = ACTIONS(4445), + [anon_sym_throw] = ACTIONS(4445), + [anon_sym_namespace] = ACTIONS(4445), + [anon_sym_static_assert] = ACTIONS(4445), + [anon_sym_concept] = ACTIONS(4445), + [anon_sym_co_return] = ACTIONS(4445), + [anon_sym_co_yield] = ACTIONS(4445), + [anon_sym_R_DQUOTE] = ACTIONS(4447), + [anon_sym_LR_DQUOTE] = ACTIONS(4447), + [anon_sym_uR_DQUOTE] = ACTIONS(4447), + [anon_sym_UR_DQUOTE] = ACTIONS(4447), + [anon_sym_u8R_DQUOTE] = ACTIONS(4447), + [anon_sym_co_await] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4445), + [anon_sym_requires] = ACTIONS(4445), + [anon_sym_CARET_CARET] = ACTIONS(4447), + [anon_sym_LBRACK_COLON] = ACTIONS(4447), + [sym_this] = ACTIONS(4445), + }, + [STATE(700)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token2] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_export] = ACTIONS(3704), + [anon_sym_module] = ACTIONS(3704), + [anon_sym_import] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), + }, + [STATE(701)] = { + [sym_identifier] = ACTIONS(3712), + [aux_sym_preproc_include_token1] = ACTIONS(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token2] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym___cdecl] = ACTIONS(3712), + [anon_sym___clrcall] = ACTIONS(3712), + [anon_sym___stdcall] = ACTIONS(3712), + [anon_sym___fastcall] = ACTIONS(3712), + [anon_sym___thiscall] = ACTIONS(3712), + [anon_sym___vectorcall] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3714), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3712), + [anon_sym_case] = ACTIONS(3712), + [anon_sym_default] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_break] = ACTIONS(3712), + [anon_sym_continue] = ACTIONS(3712), + [anon_sym_goto] = ACTIONS(3712), + [anon_sym___try] = ACTIONS(3712), + [anon_sym___leave] = ACTIONS(3712), + [anon_sym_not] = ACTIONS(3712), + [anon_sym_compl] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_PLUS_PLUS] = ACTIONS(3714), + [anon_sym_sizeof] = ACTIONS(3712), + [anon_sym___alignof__] = ACTIONS(3712), + [anon_sym___alignof] = ACTIONS(3712), + [anon_sym__alignof] = ACTIONS(3712), + [anon_sym_alignof] = ACTIONS(3712), + [anon_sym__Alignof] = ACTIONS(3712), + [anon_sym_offsetof] = ACTIONS(3712), + [anon_sym__Generic] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [anon_sym_asm] = ACTIONS(3712), + [anon_sym___asm__] = ACTIONS(3712), + [anon_sym___asm] = ACTIONS(3712), + [sym_number_literal] = ACTIONS(3714), + [anon_sym_L_SQUOTE] = ACTIONS(3714), + [anon_sym_u_SQUOTE] = ACTIONS(3714), + [anon_sym_U_SQUOTE] = ACTIONS(3714), + [anon_sym_u8_SQUOTE] = ACTIONS(3714), + [anon_sym_SQUOTE] = ACTIONS(3714), + [anon_sym_L_DQUOTE] = ACTIONS(3714), + [anon_sym_u_DQUOTE] = ACTIONS(3714), + [anon_sym_U_DQUOTE] = ACTIONS(3714), + [anon_sym_u8_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE] = ACTIONS(3714), + [sym_true] = ACTIONS(3712), + [sym_false] = ACTIONS(3712), + [anon_sym_NULL] = ACTIONS(3712), + [anon_sym_nullptr] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_export] = ACTIONS(3712), + [anon_sym_module] = ACTIONS(3712), + [anon_sym_import] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_delete] = ACTIONS(3712), + [anon_sym_throw] = ACTIONS(3712), + [anon_sym_namespace] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_concept] = ACTIONS(3712), + [anon_sym_co_return] = ACTIONS(3712), + [anon_sym_co_yield] = ACTIONS(3712), + [anon_sym_R_DQUOTE] = ACTIONS(3714), + [anon_sym_LR_DQUOTE] = ACTIONS(3714), + [anon_sym_uR_DQUOTE] = ACTIONS(3714), + [anon_sym_UR_DQUOTE] = ACTIONS(3714), + [anon_sym_u8R_DQUOTE] = ACTIONS(3714), + [anon_sym_co_await] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_requires] = ACTIONS(3712), + [anon_sym_CARET_CARET] = ACTIONS(3714), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), + [sym_this] = ACTIONS(3712), + }, + [STATE(702)] = { + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token2] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_export] = ACTIONS(3708), + [anon_sym_module] = ACTIONS(3708), + [anon_sym_import] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), + }, + [STATE(703)] = { + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token2] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_export] = ACTIONS(3708), + [anon_sym_module] = ACTIONS(3708), + [anon_sym_import] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), + }, + [STATE(704)] = { + [sym_identifier] = ACTIONS(3973), + [aux_sym_preproc_include_token1] = ACTIONS(3973), + [aux_sym_preproc_def_token1] = ACTIONS(3973), + [aux_sym_preproc_if_token1] = ACTIONS(3973), + [aux_sym_preproc_if_token2] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3973), + [sym_preproc_directive] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_BANG] = ACTIONS(3975), + [anon_sym_TILDE] = ACTIONS(3975), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3975), + [anon_sym___extension__] = ACTIONS(3973), + [anon_sym_typedef] = ACTIONS(3973), + [anon_sym_virtual] = ACTIONS(3973), + [anon_sym_extern] = ACTIONS(3973), + [anon_sym___attribute__] = ACTIONS(3973), + [anon_sym___attribute] = ACTIONS(3973), + [anon_sym_using] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3975), + [anon_sym___declspec] = ACTIONS(3973), + [anon_sym___based] = ACTIONS(3973), + [anon_sym___cdecl] = ACTIONS(3973), + [anon_sym___clrcall] = ACTIONS(3973), + [anon_sym___stdcall] = ACTIONS(3973), + [anon_sym___fastcall] = ACTIONS(3973), + [anon_sym___thiscall] = ACTIONS(3973), + [anon_sym___vectorcall] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3975), + [anon_sym_signed] = ACTIONS(3973), + [anon_sym_unsigned] = ACTIONS(3973), + [anon_sym_long] = ACTIONS(3973), + [anon_sym_short] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_static] = ACTIONS(3973), + [anon_sym_register] = ACTIONS(3973), + [anon_sym_inline] = ACTIONS(3973), + [anon_sym___inline] = ACTIONS(3973), + [anon_sym___inline__] = ACTIONS(3973), + [anon_sym___forceinline] = ACTIONS(3973), + [anon_sym_thread_local] = ACTIONS(3973), + [anon_sym___thread] = ACTIONS(3973), + [anon_sym_const] = ACTIONS(3973), + [anon_sym_constexpr] = ACTIONS(3973), + [anon_sym_volatile] = ACTIONS(3973), + [anon_sym_restrict] = ACTIONS(3973), + [anon_sym___restrict__] = ACTIONS(3973), + [anon_sym__Atomic] = ACTIONS(3973), + [anon_sym__Noreturn] = ACTIONS(3973), + [anon_sym_noreturn] = ACTIONS(3973), + [anon_sym__Nonnull] = ACTIONS(3973), + [anon_sym_mutable] = ACTIONS(3973), + [anon_sym_constinit] = ACTIONS(3973), + [anon_sym_consteval] = ACTIONS(3973), + [anon_sym_alignas] = ACTIONS(3973), + [anon_sym__Alignas] = ACTIONS(3973), + [sym_primitive_type] = ACTIONS(3973), + [anon_sym_enum] = ACTIONS(3973), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_struct] = ACTIONS(3973), + [anon_sym_union] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_switch] = ACTIONS(3973), + [anon_sym_case] = ACTIONS(3973), + [anon_sym_default] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_break] = ACTIONS(3973), + [anon_sym_continue] = ACTIONS(3973), + [anon_sym_goto] = ACTIONS(3973), + [anon_sym___try] = ACTIONS(3973), + [anon_sym___leave] = ACTIONS(3973), + [anon_sym_not] = ACTIONS(3973), + [anon_sym_compl] = ACTIONS(3973), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_sizeof] = ACTIONS(3973), + [anon_sym___alignof__] = ACTIONS(3973), + [anon_sym___alignof] = ACTIONS(3973), + [anon_sym__alignof] = ACTIONS(3973), + [anon_sym_alignof] = ACTIONS(3973), + [anon_sym__Alignof] = ACTIONS(3973), + [anon_sym_offsetof] = ACTIONS(3973), + [anon_sym__Generic] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3973), + [anon_sym_asm] = ACTIONS(3973), + [anon_sym___asm__] = ACTIONS(3973), + [anon_sym___asm] = ACTIONS(3973), + [sym_number_literal] = ACTIONS(3975), + [anon_sym_L_SQUOTE] = ACTIONS(3975), + [anon_sym_u_SQUOTE] = ACTIONS(3975), + [anon_sym_U_SQUOTE] = ACTIONS(3975), + [anon_sym_u8_SQUOTE] = ACTIONS(3975), + [anon_sym_SQUOTE] = ACTIONS(3975), + [anon_sym_L_DQUOTE] = ACTIONS(3975), + [anon_sym_u_DQUOTE] = ACTIONS(3975), + [anon_sym_U_DQUOTE] = ACTIONS(3975), + [anon_sym_u8_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [sym_true] = ACTIONS(3973), + [sym_false] = ACTIONS(3973), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3973), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_explicit] = ACTIONS(3973), + [anon_sym_export] = ACTIONS(3973), + [anon_sym_module] = ACTIONS(3973), + [anon_sym_import] = ACTIONS(3973), + [anon_sym_template] = ACTIONS(3973), + [anon_sym_operator] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_delete] = ACTIONS(3973), + [anon_sym_throw] = ACTIONS(3973), + [anon_sym_namespace] = ACTIONS(3973), + [anon_sym_static_assert] = ACTIONS(3973), + [anon_sym_concept] = ACTIONS(3973), + [anon_sym_co_return] = ACTIONS(3973), + [anon_sym_co_yield] = ACTIONS(3973), + [anon_sym_R_DQUOTE] = ACTIONS(3975), + [anon_sym_LR_DQUOTE] = ACTIONS(3975), + [anon_sym_uR_DQUOTE] = ACTIONS(3975), + [anon_sym_UR_DQUOTE] = ACTIONS(3975), + [anon_sym_u8R_DQUOTE] = ACTIONS(3975), + [anon_sym_co_await] = ACTIONS(3973), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_requires] = ACTIONS(3973), + [anon_sym_CARET_CARET] = ACTIONS(3975), + [anon_sym_LBRACK_COLON] = ACTIONS(3975), + [sym_this] = ACTIONS(3973), + }, + [STATE(705)] = { + [sym_identifier] = ACTIONS(4138), + [aux_sym_preproc_include_token1] = ACTIONS(4138), + [aux_sym_preproc_def_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token2] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), + [sym_preproc_directive] = ACTIONS(4138), + [anon_sym_LPAREN2] = ACTIONS(4140), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_TILDE] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym___extension__] = ACTIONS(4138), + [anon_sym_typedef] = ACTIONS(4138), + [anon_sym_virtual] = ACTIONS(4138), + [anon_sym_extern] = ACTIONS(4138), + [anon_sym___attribute__] = ACTIONS(4138), + [anon_sym___attribute] = ACTIONS(4138), + [anon_sym_using] = ACTIONS(4138), + [anon_sym_COLON_COLON] = ACTIONS(4140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4140), + [anon_sym___declspec] = ACTIONS(4138), + [anon_sym___based] = ACTIONS(4138), + [anon_sym___cdecl] = ACTIONS(4138), + [anon_sym___clrcall] = ACTIONS(4138), + [anon_sym___stdcall] = ACTIONS(4138), + [anon_sym___fastcall] = ACTIONS(4138), + [anon_sym___thiscall] = ACTIONS(4138), + [anon_sym___vectorcall] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4140), + [anon_sym_signed] = ACTIONS(4138), + [anon_sym_unsigned] = ACTIONS(4138), + [anon_sym_long] = ACTIONS(4138), + [anon_sym_short] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_static] = ACTIONS(4138), + [anon_sym_register] = ACTIONS(4138), + [anon_sym_inline] = ACTIONS(4138), + [anon_sym___inline] = ACTIONS(4138), + [anon_sym___inline__] = ACTIONS(4138), + [anon_sym___forceinline] = ACTIONS(4138), + [anon_sym_thread_local] = ACTIONS(4138), + [anon_sym___thread] = ACTIONS(4138), + [anon_sym_const] = ACTIONS(4138), + [anon_sym_constexpr] = ACTIONS(4138), + [anon_sym_volatile] = ACTIONS(4138), + [anon_sym_restrict] = ACTIONS(4138), + [anon_sym___restrict__] = ACTIONS(4138), + [anon_sym__Atomic] = ACTIONS(4138), + [anon_sym__Noreturn] = ACTIONS(4138), + [anon_sym_noreturn] = ACTIONS(4138), + [anon_sym__Nonnull] = ACTIONS(4138), + [anon_sym_mutable] = ACTIONS(4138), + [anon_sym_constinit] = ACTIONS(4138), + [anon_sym_consteval] = ACTIONS(4138), + [anon_sym_alignas] = ACTIONS(4138), + [anon_sym__Alignas] = ACTIONS(4138), + [sym_primitive_type] = ACTIONS(4138), + [anon_sym_enum] = ACTIONS(4138), + [anon_sym_class] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4138), + [anon_sym_union] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_switch] = ACTIONS(4138), + [anon_sym_case] = ACTIONS(4138), + [anon_sym_default] = ACTIONS(4138), + [anon_sym_while] = ACTIONS(4138), + [anon_sym_do] = ACTIONS(4138), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_return] = ACTIONS(4138), + [anon_sym_break] = ACTIONS(4138), + [anon_sym_continue] = ACTIONS(4138), + [anon_sym_goto] = ACTIONS(4138), + [anon_sym___try] = ACTIONS(4138), + [anon_sym___leave] = ACTIONS(4138), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_compl] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4140), + [anon_sym_PLUS_PLUS] = ACTIONS(4140), + [anon_sym_sizeof] = ACTIONS(4138), + [anon_sym___alignof__] = ACTIONS(4138), + [anon_sym___alignof] = ACTIONS(4138), + [anon_sym__alignof] = ACTIONS(4138), + [anon_sym_alignof] = ACTIONS(4138), + [anon_sym__Alignof] = ACTIONS(4138), + [anon_sym_offsetof] = ACTIONS(4138), + [anon_sym__Generic] = ACTIONS(4138), + [anon_sym_typename] = ACTIONS(4138), + [anon_sym_asm] = ACTIONS(4138), + [anon_sym___asm__] = ACTIONS(4138), + [anon_sym___asm] = ACTIONS(4138), + [sym_number_literal] = ACTIONS(4140), + [anon_sym_L_SQUOTE] = ACTIONS(4140), + [anon_sym_u_SQUOTE] = ACTIONS(4140), + [anon_sym_U_SQUOTE] = ACTIONS(4140), + [anon_sym_u8_SQUOTE] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4140), + [anon_sym_L_DQUOTE] = ACTIONS(4140), + [anon_sym_u_DQUOTE] = ACTIONS(4140), + [anon_sym_U_DQUOTE] = ACTIONS(4140), + [anon_sym_u8_DQUOTE] = ACTIONS(4140), + [anon_sym_DQUOTE] = ACTIONS(4140), + [sym_true] = ACTIONS(4138), + [sym_false] = ACTIONS(4138), + [anon_sym_NULL] = ACTIONS(4138), + [anon_sym_nullptr] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4138), + [anon_sym_decltype] = ACTIONS(4138), + [anon_sym_explicit] = ACTIONS(4138), + [anon_sym_export] = ACTIONS(4138), + [anon_sym_module] = ACTIONS(4138), + [anon_sym_import] = ACTIONS(4138), + [anon_sym_template] = ACTIONS(4138), + [anon_sym_operator] = ACTIONS(4138), + [anon_sym_try] = ACTIONS(4138), + [anon_sym_delete] = ACTIONS(4138), + [anon_sym_throw] = ACTIONS(4138), + [anon_sym_namespace] = ACTIONS(4138), + [anon_sym_static_assert] = ACTIONS(4138), + [anon_sym_concept] = ACTIONS(4138), + [anon_sym_co_return] = ACTIONS(4138), + [anon_sym_co_yield] = ACTIONS(4138), + [anon_sym_R_DQUOTE] = ACTIONS(4140), + [anon_sym_LR_DQUOTE] = ACTIONS(4140), + [anon_sym_uR_DQUOTE] = ACTIONS(4140), + [anon_sym_UR_DQUOTE] = ACTIONS(4140), + [anon_sym_u8R_DQUOTE] = ACTIONS(4140), + [anon_sym_co_await] = ACTIONS(4138), + [anon_sym_new] = ACTIONS(4138), + [anon_sym_requires] = ACTIONS(4138), + [anon_sym_CARET_CARET] = ACTIONS(4140), + [anon_sym_LBRACK_COLON] = ACTIONS(4140), + [sym_this] = ACTIONS(4138), + }, + [STATE(706)] = { + [sym_identifier] = ACTIONS(4158), + [aux_sym_preproc_include_token1] = ACTIONS(4158), + [aux_sym_preproc_def_token1] = ACTIONS(4158), + [aux_sym_preproc_if_token1] = ACTIONS(4158), + [aux_sym_preproc_if_token2] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4158), + [sym_preproc_directive] = ACTIONS(4158), + [anon_sym_LPAREN2] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_TILDE] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_AMP_AMP] = ACTIONS(4160), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym___extension__] = ACTIONS(4158), + [anon_sym_typedef] = ACTIONS(4158), + [anon_sym_virtual] = ACTIONS(4158), + [anon_sym_extern] = ACTIONS(4158), + [anon_sym___attribute__] = ACTIONS(4158), + [anon_sym___attribute] = ACTIONS(4158), + [anon_sym_using] = ACTIONS(4158), + [anon_sym_COLON_COLON] = ACTIONS(4160), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4160), + [anon_sym___declspec] = ACTIONS(4158), + [anon_sym___based] = ACTIONS(4158), + [anon_sym___cdecl] = ACTIONS(4158), + [anon_sym___clrcall] = ACTIONS(4158), + [anon_sym___stdcall] = ACTIONS(4158), + [anon_sym___fastcall] = ACTIONS(4158), + [anon_sym___thiscall] = ACTIONS(4158), + [anon_sym___vectorcall] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4160), + [anon_sym_signed] = ACTIONS(4158), + [anon_sym_unsigned] = ACTIONS(4158), + [anon_sym_long] = ACTIONS(4158), + [anon_sym_short] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_static] = ACTIONS(4158), + [anon_sym_register] = ACTIONS(4158), + [anon_sym_inline] = ACTIONS(4158), + [anon_sym___inline] = ACTIONS(4158), + [anon_sym___inline__] = ACTIONS(4158), + [anon_sym___forceinline] = ACTIONS(4158), + [anon_sym_thread_local] = ACTIONS(4158), + [anon_sym___thread] = ACTIONS(4158), + [anon_sym_const] = ACTIONS(4158), + [anon_sym_constexpr] = ACTIONS(4158), + [anon_sym_volatile] = ACTIONS(4158), + [anon_sym_restrict] = ACTIONS(4158), + [anon_sym___restrict__] = ACTIONS(4158), + [anon_sym__Atomic] = ACTIONS(4158), + [anon_sym__Noreturn] = ACTIONS(4158), + [anon_sym_noreturn] = ACTIONS(4158), + [anon_sym__Nonnull] = ACTIONS(4158), + [anon_sym_mutable] = ACTIONS(4158), + [anon_sym_constinit] = ACTIONS(4158), + [anon_sym_consteval] = ACTIONS(4158), + [anon_sym_alignas] = ACTIONS(4158), + [anon_sym__Alignas] = ACTIONS(4158), + [sym_primitive_type] = ACTIONS(4158), + [anon_sym_enum] = ACTIONS(4158), + [anon_sym_class] = ACTIONS(4158), + [anon_sym_struct] = ACTIONS(4158), + [anon_sym_union] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_switch] = ACTIONS(4158), + [anon_sym_case] = ACTIONS(4158), + [anon_sym_default] = ACTIONS(4158), + [anon_sym_while] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(4158), + [anon_sym_for] = ACTIONS(4158), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_break] = ACTIONS(4158), + [anon_sym_continue] = ACTIONS(4158), + [anon_sym_goto] = ACTIONS(4158), + [anon_sym___try] = ACTIONS(4158), + [anon_sym___leave] = ACTIONS(4158), + [anon_sym_not] = ACTIONS(4158), + [anon_sym_compl] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4160), + [anon_sym_PLUS_PLUS] = ACTIONS(4160), + [anon_sym_sizeof] = ACTIONS(4158), + [anon_sym___alignof__] = ACTIONS(4158), + [anon_sym___alignof] = ACTIONS(4158), + [anon_sym__alignof] = ACTIONS(4158), + [anon_sym_alignof] = ACTIONS(4158), + [anon_sym__Alignof] = ACTIONS(4158), + [anon_sym_offsetof] = ACTIONS(4158), + [anon_sym__Generic] = ACTIONS(4158), + [anon_sym_typename] = ACTIONS(4158), + [anon_sym_asm] = ACTIONS(4158), + [anon_sym___asm__] = ACTIONS(4158), + [anon_sym___asm] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4160), + [anon_sym_L_SQUOTE] = ACTIONS(4160), + [anon_sym_u_SQUOTE] = ACTIONS(4160), + [anon_sym_U_SQUOTE] = ACTIONS(4160), + [anon_sym_u8_SQUOTE] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4160), + [anon_sym_L_DQUOTE] = ACTIONS(4160), + [anon_sym_u_DQUOTE] = ACTIONS(4160), + [anon_sym_U_DQUOTE] = ACTIONS(4160), + [anon_sym_u8_DQUOTE] = ACTIONS(4160), + [anon_sym_DQUOTE] = ACTIONS(4160), + [sym_true] = ACTIONS(4158), + [sym_false] = ACTIONS(4158), + [anon_sym_NULL] = ACTIONS(4158), + [anon_sym_nullptr] = ACTIONS(4158), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4158), + [anon_sym_decltype] = ACTIONS(4158), + [anon_sym_explicit] = ACTIONS(4158), + [anon_sym_export] = ACTIONS(4158), + [anon_sym_module] = ACTIONS(4158), + [anon_sym_import] = ACTIONS(4158), + [anon_sym_template] = ACTIONS(4158), + [anon_sym_operator] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_delete] = ACTIONS(4158), + [anon_sym_throw] = ACTIONS(4158), + [anon_sym_namespace] = ACTIONS(4158), + [anon_sym_static_assert] = ACTIONS(4158), + [anon_sym_concept] = ACTIONS(4158), + [anon_sym_co_return] = ACTIONS(4158), + [anon_sym_co_yield] = ACTIONS(4158), + [anon_sym_R_DQUOTE] = ACTIONS(4160), + [anon_sym_LR_DQUOTE] = ACTIONS(4160), + [anon_sym_uR_DQUOTE] = ACTIONS(4160), + [anon_sym_UR_DQUOTE] = ACTIONS(4160), + [anon_sym_u8R_DQUOTE] = ACTIONS(4160), + [anon_sym_co_await] = ACTIONS(4158), + [anon_sym_new] = ACTIONS(4158), + [anon_sym_requires] = ACTIONS(4158), + [anon_sym_CARET_CARET] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4160), + [sym_this] = ACTIONS(4158), + }, + [STATE(707)] = { + [sym_identifier] = ACTIONS(3582), + [aux_sym_preproc_include_token1] = ACTIONS(3582), + [aux_sym_preproc_def_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token1] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3582), + [sym_preproc_directive] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_STAR] = ACTIONS(3584), + [anon_sym_AMP_AMP] = ACTIONS(3584), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym___extension__] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3582), + [anon_sym_virtual] = ACTIONS(3582), + [anon_sym_extern] = ACTIONS(3582), + [anon_sym___attribute__] = ACTIONS(3582), + [anon_sym___attribute] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_COLON_COLON] = ACTIONS(3584), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3584), + [anon_sym___declspec] = ACTIONS(3582), + [anon_sym___based] = ACTIONS(3582), + [anon_sym___cdecl] = ACTIONS(3582), + [anon_sym___clrcall] = ACTIONS(3582), + [anon_sym___stdcall] = ACTIONS(3582), + [anon_sym___fastcall] = ACTIONS(3582), + [anon_sym___thiscall] = ACTIONS(3582), + [anon_sym___vectorcall] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_signed] = ACTIONS(3582), + [anon_sym_unsigned] = ACTIONS(3582), + [anon_sym_long] = ACTIONS(3582), + [anon_sym_short] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_register] = ACTIONS(3582), + [anon_sym_inline] = ACTIONS(3582), + [anon_sym___inline] = ACTIONS(3582), + [anon_sym___inline__] = ACTIONS(3582), + [anon_sym___forceinline] = ACTIONS(3582), + [anon_sym_thread_local] = ACTIONS(3582), + [anon_sym___thread] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_constexpr] = ACTIONS(3582), + [anon_sym_volatile] = ACTIONS(3582), + [anon_sym_restrict] = ACTIONS(3582), + [anon_sym___restrict__] = ACTIONS(3582), + [anon_sym__Atomic] = ACTIONS(3582), + [anon_sym__Noreturn] = ACTIONS(3582), + [anon_sym_noreturn] = ACTIONS(3582), + [anon_sym__Nonnull] = ACTIONS(3582), + [anon_sym_mutable] = ACTIONS(3582), + [anon_sym_constinit] = ACTIONS(3582), + [anon_sym_consteval] = ACTIONS(3582), + [anon_sym_alignas] = ACTIONS(3582), + [anon_sym__Alignas] = ACTIONS(3582), + [sym_primitive_type] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_struct] = ACTIONS(3582), + [anon_sym_union] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_else] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_case] = ACTIONS(3582), + [anon_sym_default] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_goto] = ACTIONS(3582), + [anon_sym___try] = ACTIONS(3582), + [anon_sym___leave] = ACTIONS(3582), + [anon_sym_not] = ACTIONS(3582), + [anon_sym_compl] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_sizeof] = ACTIONS(3582), + [anon_sym___alignof__] = ACTIONS(3582), + [anon_sym___alignof] = ACTIONS(3582), + [anon_sym__alignof] = ACTIONS(3582), + [anon_sym_alignof] = ACTIONS(3582), + [anon_sym__Alignof] = ACTIONS(3582), + [anon_sym_offsetof] = ACTIONS(3582), + [anon_sym__Generic] = ACTIONS(3582), + [anon_sym_typename] = ACTIONS(3582), + [anon_sym_asm] = ACTIONS(3582), + [anon_sym___asm__] = ACTIONS(3582), + [anon_sym___asm] = ACTIONS(3582), + [sym_number_literal] = ACTIONS(3584), + [anon_sym_L_SQUOTE] = ACTIONS(3584), + [anon_sym_u_SQUOTE] = ACTIONS(3584), + [anon_sym_U_SQUOTE] = ACTIONS(3584), + [anon_sym_u8_SQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_L_DQUOTE] = ACTIONS(3584), + [anon_sym_u_DQUOTE] = ACTIONS(3584), + [anon_sym_U_DQUOTE] = ACTIONS(3584), + [anon_sym_u8_DQUOTE] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [anon_sym_NULL] = ACTIONS(3582), + [anon_sym_nullptr] = ACTIONS(3582), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(3582), + [anon_sym_explicit] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_template] = ACTIONS(3582), + [anon_sym_operator] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_static_assert] = ACTIONS(3582), + [anon_sym_concept] = ACTIONS(3582), + [anon_sym_co_return] = ACTIONS(3582), + [anon_sym_co_yield] = ACTIONS(3582), + [anon_sym_R_DQUOTE] = ACTIONS(3584), + [anon_sym_LR_DQUOTE] = ACTIONS(3584), + [anon_sym_uR_DQUOTE] = ACTIONS(3584), + [anon_sym_UR_DQUOTE] = ACTIONS(3584), + [anon_sym_u8R_DQUOTE] = ACTIONS(3584), + [anon_sym_co_await] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(3582), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(3584), + [sym_this] = ACTIONS(3582), + }, + [STATE(708)] = { + [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(709)] = { + [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(710)] = { + [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), @@ -153291,1981 +164678,1417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3941), [sym_this] = ACTIONS(3939), }, - [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), + [STATE(711)] = { + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_include_token1] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [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(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3176), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3176), + [anon_sym_RBRACE] = ACTIONS(3472), + [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(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [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(3176), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3176), + [anon_sym_u_DQUOTE] = ACTIONS(3176), + [anon_sym_U_DQUOTE] = ACTIONS(3176), + [anon_sym_u8_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [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(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), + [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_R_DQUOTE] = ACTIONS(3176), + [anon_sym_LR_DQUOTE] = ACTIONS(3176), + [anon_sym_uR_DQUOTE] = ACTIONS(3176), + [anon_sym_UR_DQUOTE] = ACTIONS(3176), + [anon_sym_u8R_DQUOTE] = ACTIONS(3176), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3176), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), }, - [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(712)] = { + [sym_identifier] = ACTIONS(3959), + [aux_sym_preproc_include_token1] = ACTIONS(3959), + [aux_sym_preproc_def_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token2] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3959), + [sym_preproc_directive] = ACTIONS(3959), + [anon_sym_LPAREN2] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym___extension__] = ACTIONS(3959), + [anon_sym_typedef] = ACTIONS(3959), + [anon_sym_virtual] = ACTIONS(3959), + [anon_sym_extern] = ACTIONS(3959), + [anon_sym___attribute__] = ACTIONS(3959), + [anon_sym___attribute] = ACTIONS(3959), + [anon_sym_using] = ACTIONS(3959), + [anon_sym_COLON_COLON] = ACTIONS(3961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3961), + [anon_sym___declspec] = ACTIONS(3959), + [anon_sym___based] = ACTIONS(3959), + [anon_sym___cdecl] = ACTIONS(3959), + [anon_sym___clrcall] = ACTIONS(3959), + [anon_sym___stdcall] = ACTIONS(3959), + [anon_sym___fastcall] = ACTIONS(3959), + [anon_sym___thiscall] = ACTIONS(3959), + [anon_sym___vectorcall] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_signed] = ACTIONS(3959), + [anon_sym_unsigned] = ACTIONS(3959), + [anon_sym_long] = ACTIONS(3959), + [anon_sym_short] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3959), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_register] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym___inline] = ACTIONS(3959), + [anon_sym___inline__] = ACTIONS(3959), + [anon_sym___forceinline] = ACTIONS(3959), + [anon_sym_thread_local] = ACTIONS(3959), + [anon_sym___thread] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_constexpr] = ACTIONS(3959), + [anon_sym_volatile] = ACTIONS(3959), + [anon_sym_restrict] = ACTIONS(3959), + [anon_sym___restrict__] = ACTIONS(3959), + [anon_sym__Atomic] = ACTIONS(3959), + [anon_sym__Noreturn] = ACTIONS(3959), + [anon_sym_noreturn] = ACTIONS(3959), + [anon_sym__Nonnull] = ACTIONS(3959), + [anon_sym_mutable] = ACTIONS(3959), + [anon_sym_constinit] = ACTIONS(3959), + [anon_sym_consteval] = ACTIONS(3959), + [anon_sym_alignas] = ACTIONS(3959), + [anon_sym__Alignas] = ACTIONS(3959), + [sym_primitive_type] = ACTIONS(3959), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_union] = ACTIONS(3959), + [anon_sym_if] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3959), + [anon_sym_case] = ACTIONS(3959), + [anon_sym_default] = ACTIONS(3959), + [anon_sym_while] = ACTIONS(3959), + [anon_sym_do] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3959), + [anon_sym_return] = ACTIONS(3959), + [anon_sym_break] = ACTIONS(3959), + [anon_sym_continue] = ACTIONS(3959), + [anon_sym_goto] = ACTIONS(3959), + [anon_sym___try] = ACTIONS(3959), + [anon_sym___leave] = ACTIONS(3959), + [anon_sym_not] = ACTIONS(3959), + [anon_sym_compl] = ACTIONS(3959), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_sizeof] = ACTIONS(3959), + [anon_sym___alignof__] = ACTIONS(3959), + [anon_sym___alignof] = ACTIONS(3959), + [anon_sym__alignof] = ACTIONS(3959), + [anon_sym_alignof] = ACTIONS(3959), + [anon_sym__Alignof] = ACTIONS(3959), + [anon_sym_offsetof] = ACTIONS(3959), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(3959), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3961), + [anon_sym_u_SQUOTE] = ACTIONS(3961), + [anon_sym_U_SQUOTE] = ACTIONS(3961), + [anon_sym_u8_SQUOTE] = ACTIONS(3961), + [anon_sym_SQUOTE] = ACTIONS(3961), + [anon_sym_L_DQUOTE] = ACTIONS(3961), + [anon_sym_u_DQUOTE] = ACTIONS(3961), + [anon_sym_U_DQUOTE] = ACTIONS(3961), + [anon_sym_u8_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [sym_true] = ACTIONS(3959), + [sym_false] = ACTIONS(3959), + [anon_sym_NULL] = ACTIONS(3959), + [anon_sym_nullptr] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3959), + [anon_sym_decltype] = ACTIONS(3959), + [anon_sym_explicit] = ACTIONS(3959), + [anon_sym_export] = ACTIONS(3959), + [anon_sym_module] = ACTIONS(3959), + [anon_sym_import] = ACTIONS(3959), + [anon_sym_template] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_try] = ACTIONS(3959), + [anon_sym_delete] = ACTIONS(3959), + [anon_sym_throw] = ACTIONS(3959), + [anon_sym_namespace] = ACTIONS(3959), + [anon_sym_static_assert] = ACTIONS(3959), + [anon_sym_concept] = ACTIONS(3959), + [anon_sym_co_return] = ACTIONS(3959), + [anon_sym_co_yield] = ACTIONS(3959), + [anon_sym_R_DQUOTE] = ACTIONS(3961), + [anon_sym_LR_DQUOTE] = ACTIONS(3961), + [anon_sym_uR_DQUOTE] = ACTIONS(3961), + [anon_sym_UR_DQUOTE] = ACTIONS(3961), + [anon_sym_u8R_DQUOTE] = ACTIONS(3961), + [anon_sym_co_await] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3959), + [anon_sym_requires] = ACTIONS(3959), + [anon_sym_CARET_CARET] = ACTIONS(3961), + [anon_sym_LBRACK_COLON] = ACTIONS(3961), + [sym_this] = ACTIONS(3959), }, - [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(713)] = { + [sym_identifier] = ACTIONS(3977), + [aux_sym_preproc_include_token1] = ACTIONS(3977), + [aux_sym_preproc_def_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token2] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3977), + [sym_preproc_directive] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_TILDE] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_typedef] = ACTIONS(3977), + [anon_sym_virtual] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_using] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym___based] = ACTIONS(3977), + [anon_sym___cdecl] = ACTIONS(3977), + [anon_sym___clrcall] = ACTIONS(3977), + [anon_sym___stdcall] = ACTIONS(3977), + [anon_sym___fastcall] = ACTIONS(3977), + [anon_sym___thiscall] = ACTIONS(3977), + [anon_sym___vectorcall] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_signed] = ACTIONS(3977), + [anon_sym_unsigned] = ACTIONS(3977), + [anon_sym_long] = ACTIONS(3977), + [anon_sym_short] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_mutable] = ACTIONS(3977), + [anon_sym_constinit] = ACTIONS(3977), + [anon_sym_consteval] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [sym_primitive_type] = ACTIONS(3977), + [anon_sym_enum] = ACTIONS(3977), + [anon_sym_class] = ACTIONS(3977), + [anon_sym_struct] = ACTIONS(3977), + [anon_sym_union] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_switch] = ACTIONS(3977), + [anon_sym_case] = ACTIONS(3977), + [anon_sym_default] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_break] = ACTIONS(3977), + [anon_sym_continue] = ACTIONS(3977), + [anon_sym_goto] = ACTIONS(3977), + [anon_sym___try] = ACTIONS(3977), + [anon_sym___leave] = ACTIONS(3977), + [anon_sym_not] = ACTIONS(3977), + [anon_sym_compl] = ACTIONS(3977), + [anon_sym_DASH_DASH] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3979), + [anon_sym_sizeof] = ACTIONS(3977), + [anon_sym___alignof__] = ACTIONS(3977), + [anon_sym___alignof] = ACTIONS(3977), + [anon_sym__alignof] = ACTIONS(3977), + [anon_sym_alignof] = ACTIONS(3977), + [anon_sym__Alignof] = ACTIONS(3977), + [anon_sym_offsetof] = ACTIONS(3977), + [anon_sym__Generic] = ACTIONS(3977), + [anon_sym_typename] = ACTIONS(3977), + [anon_sym_asm] = ACTIONS(3977), + [anon_sym___asm__] = ACTIONS(3977), + [anon_sym___asm] = ACTIONS(3977), + [sym_number_literal] = ACTIONS(3979), + [anon_sym_L_SQUOTE] = ACTIONS(3979), + [anon_sym_u_SQUOTE] = ACTIONS(3979), + [anon_sym_U_SQUOTE] = ACTIONS(3979), + [anon_sym_u8_SQUOTE] = ACTIONS(3979), + [anon_sym_SQUOTE] = ACTIONS(3979), + [anon_sym_L_DQUOTE] = ACTIONS(3979), + [anon_sym_u_DQUOTE] = ACTIONS(3979), + [anon_sym_U_DQUOTE] = ACTIONS(3979), + [anon_sym_u8_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [sym_true] = ACTIONS(3977), + [sym_false] = ACTIONS(3977), + [anon_sym_NULL] = ACTIONS(3977), + [anon_sym_nullptr] = ACTIONS(3977), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3977), + [anon_sym_decltype] = ACTIONS(3977), + [anon_sym_explicit] = ACTIONS(3977), + [anon_sym_export] = ACTIONS(3977), + [anon_sym_module] = ACTIONS(3977), + [anon_sym_import] = ACTIONS(3977), + [anon_sym_template] = ACTIONS(3977), + [anon_sym_operator] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_delete] = ACTIONS(3977), + [anon_sym_throw] = ACTIONS(3977), + [anon_sym_namespace] = ACTIONS(3977), + [anon_sym_static_assert] = ACTIONS(3977), + [anon_sym_concept] = ACTIONS(3977), + [anon_sym_co_return] = ACTIONS(3977), + [anon_sym_co_yield] = ACTIONS(3977), + [anon_sym_R_DQUOTE] = ACTIONS(3979), + [anon_sym_LR_DQUOTE] = ACTIONS(3979), + [anon_sym_uR_DQUOTE] = ACTIONS(3979), + [anon_sym_UR_DQUOTE] = ACTIONS(3979), + [anon_sym_u8R_DQUOTE] = ACTIONS(3979), + [anon_sym_co_await] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_requires] = ACTIONS(3977), + [anon_sym_CARET_CARET] = ACTIONS(3979), + [anon_sym_LBRACK_COLON] = ACTIONS(3979), + [sym_this] = ACTIONS(3977), }, - [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(714)] = { + [sym_identifier] = ACTIONS(3981), + [aux_sym_preproc_include_token1] = ACTIONS(3981), + [aux_sym_preproc_def_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token2] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3981), + [sym_preproc_directive] = ACTIONS(3981), + [anon_sym_LPAREN2] = ACTIONS(3983), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_TILDE] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3981), + [anon_sym_STAR] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym___extension__] = ACTIONS(3981), + [anon_sym_typedef] = ACTIONS(3981), + [anon_sym_virtual] = ACTIONS(3981), + [anon_sym_extern] = ACTIONS(3981), + [anon_sym___attribute__] = ACTIONS(3981), + [anon_sym___attribute] = ACTIONS(3981), + [anon_sym_using] = ACTIONS(3981), + [anon_sym_COLON_COLON] = ACTIONS(3983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3983), + [anon_sym___declspec] = ACTIONS(3981), + [anon_sym___based] = ACTIONS(3981), + [anon_sym___cdecl] = ACTIONS(3981), + [anon_sym___clrcall] = ACTIONS(3981), + [anon_sym___stdcall] = ACTIONS(3981), + [anon_sym___fastcall] = ACTIONS(3981), + [anon_sym___thiscall] = ACTIONS(3981), + [anon_sym___vectorcall] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_signed] = ACTIONS(3981), + [anon_sym_unsigned] = ACTIONS(3981), + [anon_sym_long] = ACTIONS(3981), + [anon_sym_short] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_register] = ACTIONS(3981), + [anon_sym_inline] = ACTIONS(3981), + [anon_sym___inline] = ACTIONS(3981), + [anon_sym___inline__] = ACTIONS(3981), + [anon_sym___forceinline] = ACTIONS(3981), + [anon_sym_thread_local] = ACTIONS(3981), + [anon_sym___thread] = ACTIONS(3981), + [anon_sym_const] = ACTIONS(3981), + [anon_sym_constexpr] = ACTIONS(3981), + [anon_sym_volatile] = ACTIONS(3981), + [anon_sym_restrict] = ACTIONS(3981), + [anon_sym___restrict__] = ACTIONS(3981), + [anon_sym__Atomic] = ACTIONS(3981), + [anon_sym__Noreturn] = ACTIONS(3981), + [anon_sym_noreturn] = ACTIONS(3981), + [anon_sym__Nonnull] = ACTIONS(3981), + [anon_sym_mutable] = ACTIONS(3981), + [anon_sym_constinit] = ACTIONS(3981), + [anon_sym_consteval] = ACTIONS(3981), + [anon_sym_alignas] = ACTIONS(3981), + [anon_sym__Alignas] = ACTIONS(3981), + [sym_primitive_type] = ACTIONS(3981), + [anon_sym_enum] = ACTIONS(3981), + [anon_sym_class] = ACTIONS(3981), + [anon_sym_struct] = ACTIONS(3981), + [anon_sym_union] = ACTIONS(3981), + [anon_sym_if] = ACTIONS(3981), + [anon_sym_switch] = ACTIONS(3981), + [anon_sym_case] = ACTIONS(3981), + [anon_sym_default] = ACTIONS(3981), + [anon_sym_while] = ACTIONS(3981), + [anon_sym_do] = ACTIONS(3981), + [anon_sym_for] = ACTIONS(3981), + [anon_sym_return] = ACTIONS(3981), + [anon_sym_break] = ACTIONS(3981), + [anon_sym_continue] = ACTIONS(3981), + [anon_sym_goto] = ACTIONS(3981), + [anon_sym___try] = ACTIONS(3981), + [anon_sym___leave] = ACTIONS(3981), + [anon_sym_not] = ACTIONS(3981), + [anon_sym_compl] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3983), + [anon_sym_sizeof] = ACTIONS(3981), + [anon_sym___alignof__] = ACTIONS(3981), + [anon_sym___alignof] = ACTIONS(3981), + [anon_sym__alignof] = ACTIONS(3981), + [anon_sym_alignof] = ACTIONS(3981), + [anon_sym__Alignof] = ACTIONS(3981), + [anon_sym_offsetof] = ACTIONS(3981), + [anon_sym__Generic] = ACTIONS(3981), + [anon_sym_typename] = ACTIONS(3981), + [anon_sym_asm] = ACTIONS(3981), + [anon_sym___asm__] = ACTIONS(3981), + [anon_sym___asm] = ACTIONS(3981), + [sym_number_literal] = ACTIONS(3983), + [anon_sym_L_SQUOTE] = ACTIONS(3983), + [anon_sym_u_SQUOTE] = ACTIONS(3983), + [anon_sym_U_SQUOTE] = ACTIONS(3983), + [anon_sym_u8_SQUOTE] = ACTIONS(3983), + [anon_sym_SQUOTE] = ACTIONS(3983), + [anon_sym_L_DQUOTE] = ACTIONS(3983), + [anon_sym_u_DQUOTE] = ACTIONS(3983), + [anon_sym_U_DQUOTE] = ACTIONS(3983), + [anon_sym_u8_DQUOTE] = ACTIONS(3983), + [anon_sym_DQUOTE] = ACTIONS(3983), + [sym_true] = ACTIONS(3981), + [sym_false] = ACTIONS(3981), + [anon_sym_NULL] = ACTIONS(3981), + [anon_sym_nullptr] = ACTIONS(3981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3981), + [anon_sym_decltype] = ACTIONS(3981), + [anon_sym_explicit] = ACTIONS(3981), + [anon_sym_export] = ACTIONS(3981), + [anon_sym_module] = ACTIONS(3981), + [anon_sym_import] = ACTIONS(3981), + [anon_sym_template] = ACTIONS(3981), + [anon_sym_operator] = ACTIONS(3981), + [anon_sym_try] = ACTIONS(3981), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_throw] = ACTIONS(3981), + [anon_sym_namespace] = ACTIONS(3981), + [anon_sym_static_assert] = ACTIONS(3981), + [anon_sym_concept] = ACTIONS(3981), + [anon_sym_co_return] = ACTIONS(3981), + [anon_sym_co_yield] = 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(3981), + [anon_sym_new] = ACTIONS(3981), + [anon_sym_requires] = ACTIONS(3981), + [anon_sym_CARET_CARET] = ACTIONS(3983), + [anon_sym_LBRACK_COLON] = ACTIONS(3983), + [sym_this] = ACTIONS(3981), }, - [STATE(657)] = { - [ts_builtin_sym_end] = ACTIONS(3919), - [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_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_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), + [STATE(715)] = { + [sym_identifier] = ACTIONS(3989), + [aux_sym_preproc_include_token1] = ACTIONS(3989), + [aux_sym_preproc_def_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token2] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3989), + [sym_preproc_directive] = ACTIONS(3989), + [anon_sym_LPAREN2] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3989), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_SEMI] = ACTIONS(3991), + [anon_sym___extension__] = ACTIONS(3989), + [anon_sym_typedef] = ACTIONS(3989), + [anon_sym_virtual] = ACTIONS(3989), + [anon_sym_extern] = ACTIONS(3989), + [anon_sym___attribute__] = ACTIONS(3989), + [anon_sym___attribute] = ACTIONS(3989), + [anon_sym_using] = ACTIONS(3989), + [anon_sym_COLON_COLON] = ACTIONS(3991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3991), + [anon_sym___declspec] = ACTIONS(3989), + [anon_sym___based] = ACTIONS(3989), + [anon_sym___cdecl] = ACTIONS(3989), + [anon_sym___clrcall] = ACTIONS(3989), + [anon_sym___stdcall] = ACTIONS(3989), + [anon_sym___fastcall] = ACTIONS(3989), + [anon_sym___thiscall] = ACTIONS(3989), + [anon_sym___vectorcall] = ACTIONS(3989), + [anon_sym_LBRACE] = ACTIONS(3991), + [anon_sym_signed] = ACTIONS(3989), + [anon_sym_unsigned] = ACTIONS(3989), + [anon_sym_long] = ACTIONS(3989), + [anon_sym_short] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_static] = ACTIONS(3989), + [anon_sym_register] = ACTIONS(3989), + [anon_sym_inline] = ACTIONS(3989), + [anon_sym___inline] = ACTIONS(3989), + [anon_sym___inline__] = ACTIONS(3989), + [anon_sym___forceinline] = ACTIONS(3989), + [anon_sym_thread_local] = ACTIONS(3989), + [anon_sym___thread] = ACTIONS(3989), + [anon_sym_const] = ACTIONS(3989), + [anon_sym_constexpr] = ACTIONS(3989), + [anon_sym_volatile] = ACTIONS(3989), + [anon_sym_restrict] = ACTIONS(3989), + [anon_sym___restrict__] = ACTIONS(3989), + [anon_sym__Atomic] = ACTIONS(3989), + [anon_sym__Noreturn] = ACTIONS(3989), + [anon_sym_noreturn] = ACTIONS(3989), + [anon_sym__Nonnull] = ACTIONS(3989), + [anon_sym_mutable] = ACTIONS(3989), + [anon_sym_constinit] = ACTIONS(3989), + [anon_sym_consteval] = ACTIONS(3989), + [anon_sym_alignas] = ACTIONS(3989), + [anon_sym__Alignas] = ACTIONS(3989), + [sym_primitive_type] = ACTIONS(3989), + [anon_sym_enum] = ACTIONS(3989), + [anon_sym_class] = ACTIONS(3989), + [anon_sym_struct] = ACTIONS(3989), + [anon_sym_union] = ACTIONS(3989), + [anon_sym_if] = ACTIONS(3989), + [anon_sym_switch] = ACTIONS(3989), + [anon_sym_case] = ACTIONS(3989), + [anon_sym_default] = ACTIONS(3989), + [anon_sym_while] = ACTIONS(3989), + [anon_sym_do] = ACTIONS(3989), + [anon_sym_for] = ACTIONS(3989), + [anon_sym_return] = ACTIONS(3989), + [anon_sym_break] = ACTIONS(3989), + [anon_sym_continue] = ACTIONS(3989), + [anon_sym_goto] = ACTIONS(3989), + [anon_sym___try] = ACTIONS(3989), + [anon_sym___leave] = ACTIONS(3989), + [anon_sym_not] = ACTIONS(3989), + [anon_sym_compl] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3991), + [anon_sym_sizeof] = ACTIONS(3989), + [anon_sym___alignof__] = ACTIONS(3989), + [anon_sym___alignof] = ACTIONS(3989), + [anon_sym__alignof] = ACTIONS(3989), + [anon_sym_alignof] = ACTIONS(3989), + [anon_sym__Alignof] = ACTIONS(3989), + [anon_sym_offsetof] = ACTIONS(3989), + [anon_sym__Generic] = ACTIONS(3989), + [anon_sym_typename] = ACTIONS(3989), + [anon_sym_asm] = ACTIONS(3989), + [anon_sym___asm__] = ACTIONS(3989), + [anon_sym___asm] = ACTIONS(3989), + [sym_number_literal] = ACTIONS(3991), + [anon_sym_L_SQUOTE] = ACTIONS(3991), + [anon_sym_u_SQUOTE] = ACTIONS(3991), + [anon_sym_U_SQUOTE] = ACTIONS(3991), + [anon_sym_u8_SQUOTE] = ACTIONS(3991), + [anon_sym_SQUOTE] = ACTIONS(3991), + [anon_sym_L_DQUOTE] = ACTIONS(3991), + [anon_sym_u_DQUOTE] = ACTIONS(3991), + [anon_sym_U_DQUOTE] = ACTIONS(3991), + [anon_sym_u8_DQUOTE] = ACTIONS(3991), + [anon_sym_DQUOTE] = ACTIONS(3991), + [sym_true] = ACTIONS(3989), + [sym_false] = ACTIONS(3989), + [anon_sym_NULL] = ACTIONS(3989), + [anon_sym_nullptr] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3989), + [anon_sym_decltype] = ACTIONS(3989), + [anon_sym_explicit] = ACTIONS(3989), + [anon_sym_export] = ACTIONS(3989), + [anon_sym_module] = ACTIONS(3989), + [anon_sym_import] = ACTIONS(3989), + [anon_sym_template] = ACTIONS(3989), + [anon_sym_operator] = ACTIONS(3989), + [anon_sym_try] = ACTIONS(3989), + [anon_sym_delete] = ACTIONS(3989), + [anon_sym_throw] = ACTIONS(3989), + [anon_sym_namespace] = ACTIONS(3989), + [anon_sym_static_assert] = ACTIONS(3989), + [anon_sym_concept] = ACTIONS(3989), + [anon_sym_co_return] = ACTIONS(3989), + [anon_sym_co_yield] = ACTIONS(3989), + [anon_sym_R_DQUOTE] = ACTIONS(3991), + [anon_sym_LR_DQUOTE] = ACTIONS(3991), + [anon_sym_uR_DQUOTE] = ACTIONS(3991), + [anon_sym_UR_DQUOTE] = ACTIONS(3991), + [anon_sym_u8R_DQUOTE] = ACTIONS(3991), + [anon_sym_co_await] = ACTIONS(3989), + [anon_sym_new] = ACTIONS(3989), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3991), + [sym_this] = ACTIONS(3989), }, - [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(716)] = { + [sym_identifier] = ACTIONS(3993), + [aux_sym_preproc_include_token1] = ACTIONS(3993), + [aux_sym_preproc_def_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token2] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3993), + [sym_preproc_directive] = ACTIONS(3993), + [anon_sym_LPAREN2] = ACTIONS(3995), + [anon_sym_BANG] = ACTIONS(3995), + [anon_sym_TILDE] = ACTIONS(3995), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_AMP_AMP] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3993), + [anon_sym_SEMI] = ACTIONS(3995), + [anon_sym___extension__] = ACTIONS(3993), + [anon_sym_typedef] = ACTIONS(3993), + [anon_sym_virtual] = ACTIONS(3993), + [anon_sym_extern] = ACTIONS(3993), + [anon_sym___attribute__] = ACTIONS(3993), + [anon_sym___attribute] = ACTIONS(3993), + [anon_sym_using] = ACTIONS(3993), + [anon_sym_COLON_COLON] = ACTIONS(3995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3995), + [anon_sym___declspec] = ACTIONS(3993), + [anon_sym___based] = ACTIONS(3993), + [anon_sym___cdecl] = ACTIONS(3993), + [anon_sym___clrcall] = ACTIONS(3993), + [anon_sym___stdcall] = ACTIONS(3993), + [anon_sym___fastcall] = ACTIONS(3993), + [anon_sym___thiscall] = ACTIONS(3993), + [anon_sym___vectorcall] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3995), + [anon_sym_signed] = ACTIONS(3993), + [anon_sym_unsigned] = ACTIONS(3993), + [anon_sym_long] = ACTIONS(3993), + [anon_sym_short] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_static] = ACTIONS(3993), + [anon_sym_register] = ACTIONS(3993), + [anon_sym_inline] = ACTIONS(3993), + [anon_sym___inline] = ACTIONS(3993), + [anon_sym___inline__] = ACTIONS(3993), + [anon_sym___forceinline] = ACTIONS(3993), + [anon_sym_thread_local] = ACTIONS(3993), + [anon_sym___thread] = ACTIONS(3993), + [anon_sym_const] = ACTIONS(3993), + [anon_sym_constexpr] = ACTIONS(3993), + [anon_sym_volatile] = ACTIONS(3993), + [anon_sym_restrict] = ACTIONS(3993), + [anon_sym___restrict__] = ACTIONS(3993), + [anon_sym__Atomic] = ACTIONS(3993), + [anon_sym__Noreturn] = ACTIONS(3993), + [anon_sym_noreturn] = ACTIONS(3993), + [anon_sym__Nonnull] = ACTIONS(3993), + [anon_sym_mutable] = ACTIONS(3993), + [anon_sym_constinit] = ACTIONS(3993), + [anon_sym_consteval] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(3993), + [anon_sym__Alignas] = ACTIONS(3993), + [sym_primitive_type] = ACTIONS(3993), + [anon_sym_enum] = ACTIONS(3993), + [anon_sym_class] = ACTIONS(3993), + [anon_sym_struct] = ACTIONS(3993), + [anon_sym_union] = ACTIONS(3993), + [anon_sym_if] = ACTIONS(3993), + [anon_sym_switch] = ACTIONS(3993), + [anon_sym_case] = ACTIONS(3993), + [anon_sym_default] = ACTIONS(3993), + [anon_sym_while] = ACTIONS(3993), + [anon_sym_do] = ACTIONS(3993), + [anon_sym_for] = ACTIONS(3993), + [anon_sym_return] = ACTIONS(3993), + [anon_sym_break] = ACTIONS(3993), + [anon_sym_continue] = ACTIONS(3993), + [anon_sym_goto] = ACTIONS(3993), + [anon_sym___try] = ACTIONS(3993), + [anon_sym___leave] = ACTIONS(3993), + [anon_sym_not] = ACTIONS(3993), + [anon_sym_compl] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3995), + [anon_sym_PLUS_PLUS] = ACTIONS(3995), + [anon_sym_sizeof] = ACTIONS(3993), + [anon_sym___alignof__] = ACTIONS(3993), + [anon_sym___alignof] = ACTIONS(3993), + [anon_sym__alignof] = ACTIONS(3993), + [anon_sym_alignof] = ACTIONS(3993), + [anon_sym__Alignof] = ACTIONS(3993), + [anon_sym_offsetof] = ACTIONS(3993), + [anon_sym__Generic] = ACTIONS(3993), + [anon_sym_typename] = ACTIONS(3993), + [anon_sym_asm] = ACTIONS(3993), + [anon_sym___asm__] = ACTIONS(3993), + [anon_sym___asm] = ACTIONS(3993), + [sym_number_literal] = ACTIONS(3995), + [anon_sym_L_SQUOTE] = ACTIONS(3995), + [anon_sym_u_SQUOTE] = ACTIONS(3995), + [anon_sym_U_SQUOTE] = ACTIONS(3995), + [anon_sym_u8_SQUOTE] = ACTIONS(3995), + [anon_sym_SQUOTE] = ACTIONS(3995), + [anon_sym_L_DQUOTE] = ACTIONS(3995), + [anon_sym_u_DQUOTE] = ACTIONS(3995), + [anon_sym_U_DQUOTE] = ACTIONS(3995), + [anon_sym_u8_DQUOTE] = ACTIONS(3995), + [anon_sym_DQUOTE] = ACTIONS(3995), + [sym_true] = ACTIONS(3993), + [sym_false] = ACTIONS(3993), + [anon_sym_NULL] = ACTIONS(3993), + [anon_sym_nullptr] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3993), + [anon_sym_decltype] = ACTIONS(3993), + [anon_sym_explicit] = ACTIONS(3993), + [anon_sym_export] = ACTIONS(3993), + [anon_sym_module] = ACTIONS(3993), + [anon_sym_import] = ACTIONS(3993), + [anon_sym_template] = ACTIONS(3993), + [anon_sym_operator] = ACTIONS(3993), + [anon_sym_try] = ACTIONS(3993), + [anon_sym_delete] = ACTIONS(3993), + [anon_sym_throw] = ACTIONS(3993), + [anon_sym_namespace] = ACTIONS(3993), + [anon_sym_static_assert] = ACTIONS(3993), + [anon_sym_concept] = ACTIONS(3993), + [anon_sym_co_return] = ACTIONS(3993), + [anon_sym_co_yield] = ACTIONS(3993), + [anon_sym_R_DQUOTE] = ACTIONS(3995), + [anon_sym_LR_DQUOTE] = ACTIONS(3995), + [anon_sym_uR_DQUOTE] = ACTIONS(3995), + [anon_sym_UR_DQUOTE] = ACTIONS(3995), + [anon_sym_u8R_DQUOTE] = ACTIONS(3995), + [anon_sym_co_await] = ACTIONS(3993), + [anon_sym_new] = ACTIONS(3993), + [anon_sym_requires] = ACTIONS(3993), + [anon_sym_CARET_CARET] = ACTIONS(3995), + [anon_sym_LBRACK_COLON] = ACTIONS(3995), + [sym_this] = ACTIONS(3993), }, - [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(717)] = { + [sym_identifier] = ACTIONS(4005), + [aux_sym_preproc_include_token1] = ACTIONS(4005), + [aux_sym_preproc_def_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token2] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4005), + [sym_preproc_directive] = ACTIONS(4005), + [anon_sym_LPAREN2] = ACTIONS(4007), + [anon_sym_BANG] = ACTIONS(4007), + [anon_sym_TILDE] = ACTIONS(4007), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_PLUS] = ACTIONS(4005), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_AMP_AMP] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_SEMI] = ACTIONS(4007), + [anon_sym___extension__] = ACTIONS(4005), + [anon_sym_typedef] = ACTIONS(4005), + [anon_sym_virtual] = ACTIONS(4005), + [anon_sym_extern] = ACTIONS(4005), + [anon_sym___attribute__] = ACTIONS(4005), + [anon_sym___attribute] = ACTIONS(4005), + [anon_sym_using] = ACTIONS(4005), + [anon_sym_COLON_COLON] = ACTIONS(4007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4007), + [anon_sym___declspec] = ACTIONS(4005), + [anon_sym___based] = ACTIONS(4005), + [anon_sym___cdecl] = ACTIONS(4005), + [anon_sym___clrcall] = ACTIONS(4005), + [anon_sym___stdcall] = ACTIONS(4005), + [anon_sym___fastcall] = ACTIONS(4005), + [anon_sym___thiscall] = ACTIONS(4005), + [anon_sym___vectorcall] = ACTIONS(4005), + [anon_sym_LBRACE] = ACTIONS(4007), + [anon_sym_signed] = ACTIONS(4005), + [anon_sym_unsigned] = ACTIONS(4005), + [anon_sym_long] = ACTIONS(4005), + [anon_sym_short] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4005), + [anon_sym_register] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym___inline] = ACTIONS(4005), + [anon_sym___inline__] = ACTIONS(4005), + [anon_sym___forceinline] = ACTIONS(4005), + [anon_sym_thread_local] = ACTIONS(4005), + [anon_sym___thread] = ACTIONS(4005), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_constexpr] = ACTIONS(4005), + [anon_sym_volatile] = ACTIONS(4005), + [anon_sym_restrict] = ACTIONS(4005), + [anon_sym___restrict__] = ACTIONS(4005), + [anon_sym__Atomic] = ACTIONS(4005), + [anon_sym__Noreturn] = ACTIONS(4005), + [anon_sym_noreturn] = ACTIONS(4005), + [anon_sym__Nonnull] = ACTIONS(4005), + [anon_sym_mutable] = ACTIONS(4005), + [anon_sym_constinit] = ACTIONS(4005), + [anon_sym_consteval] = ACTIONS(4005), + [anon_sym_alignas] = ACTIONS(4005), + [anon_sym__Alignas] = ACTIONS(4005), + [sym_primitive_type] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_class] = ACTIONS(4005), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_if] = ACTIONS(4005), + [anon_sym_switch] = ACTIONS(4005), + [anon_sym_case] = ACTIONS(4005), + [anon_sym_default] = ACTIONS(4005), + [anon_sym_while] = ACTIONS(4005), + [anon_sym_do] = ACTIONS(4005), + [anon_sym_for] = ACTIONS(4005), + [anon_sym_return] = ACTIONS(4005), + [anon_sym_break] = ACTIONS(4005), + [anon_sym_continue] = ACTIONS(4005), + [anon_sym_goto] = ACTIONS(4005), + [anon_sym___try] = ACTIONS(4005), + [anon_sym___leave] = ACTIONS(4005), + [anon_sym_not] = ACTIONS(4005), + [anon_sym_compl] = ACTIONS(4005), + [anon_sym_DASH_DASH] = ACTIONS(4007), + [anon_sym_PLUS_PLUS] = ACTIONS(4007), + [anon_sym_sizeof] = ACTIONS(4005), + [anon_sym___alignof__] = ACTIONS(4005), + [anon_sym___alignof] = ACTIONS(4005), + [anon_sym__alignof] = ACTIONS(4005), + [anon_sym_alignof] = ACTIONS(4005), + [anon_sym__Alignof] = ACTIONS(4005), + [anon_sym_offsetof] = ACTIONS(4005), + [anon_sym__Generic] = ACTIONS(4005), + [anon_sym_typename] = ACTIONS(4005), + [anon_sym_asm] = ACTIONS(4005), + [anon_sym___asm__] = ACTIONS(4005), + [anon_sym___asm] = ACTIONS(4005), + [sym_number_literal] = ACTIONS(4007), + [anon_sym_L_SQUOTE] = ACTIONS(4007), + [anon_sym_u_SQUOTE] = ACTIONS(4007), + [anon_sym_U_SQUOTE] = ACTIONS(4007), + [anon_sym_u8_SQUOTE] = ACTIONS(4007), + [anon_sym_SQUOTE] = ACTIONS(4007), + [anon_sym_L_DQUOTE] = ACTIONS(4007), + [anon_sym_u_DQUOTE] = ACTIONS(4007), + [anon_sym_U_DQUOTE] = ACTIONS(4007), + [anon_sym_u8_DQUOTE] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4007), + [sym_true] = ACTIONS(4005), + [sym_false] = ACTIONS(4005), + [anon_sym_NULL] = ACTIONS(4005), + [anon_sym_nullptr] = ACTIONS(4005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4005), + [anon_sym_decltype] = ACTIONS(4005), + [anon_sym_explicit] = ACTIONS(4005), + [anon_sym_export] = ACTIONS(4005), + [anon_sym_module] = ACTIONS(4005), + [anon_sym_import] = ACTIONS(4005), + [anon_sym_template] = ACTIONS(4005), + [anon_sym_operator] = ACTIONS(4005), + [anon_sym_try] = ACTIONS(4005), + [anon_sym_delete] = ACTIONS(4005), + [anon_sym_throw] = ACTIONS(4005), + [anon_sym_namespace] = ACTIONS(4005), + [anon_sym_static_assert] = ACTIONS(4005), + [anon_sym_concept] = ACTIONS(4005), + [anon_sym_co_return] = ACTIONS(4005), + [anon_sym_co_yield] = ACTIONS(4005), + [anon_sym_R_DQUOTE] = ACTIONS(4007), + [anon_sym_LR_DQUOTE] = ACTIONS(4007), + [anon_sym_uR_DQUOTE] = ACTIONS(4007), + [anon_sym_UR_DQUOTE] = ACTIONS(4007), + [anon_sym_u8R_DQUOTE] = ACTIONS(4007), + [anon_sym_co_await] = ACTIONS(4005), + [anon_sym_new] = ACTIONS(4005), + [anon_sym_requires] = ACTIONS(4005), + [anon_sym_CARET_CARET] = ACTIONS(4007), + [anon_sym_LBRACK_COLON] = ACTIONS(4007), + [sym_this] = ACTIONS(4005), }, - [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(718)] = { + [sym_identifier] = ACTIONS(4009), + [aux_sym_preproc_include_token1] = ACTIONS(4009), + [aux_sym_preproc_def_token1] = ACTIONS(4009), + [aux_sym_preproc_if_token1] = ACTIONS(4009), + [aux_sym_preproc_if_token2] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4009), + [sym_preproc_directive] = ACTIONS(4009), + [anon_sym_LPAREN2] = ACTIONS(4011), + [anon_sym_BANG] = ACTIONS(4011), + [anon_sym_TILDE] = ACTIONS(4011), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4011), + [anon_sym_AMP_AMP] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_SEMI] = ACTIONS(4011), + [anon_sym___extension__] = ACTIONS(4009), + [anon_sym_typedef] = ACTIONS(4009), + [anon_sym_virtual] = ACTIONS(4009), + [anon_sym_extern] = ACTIONS(4009), + [anon_sym___attribute__] = ACTIONS(4009), + [anon_sym___attribute] = ACTIONS(4009), + [anon_sym_using] = ACTIONS(4009), + [anon_sym_COLON_COLON] = ACTIONS(4011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4011), + [anon_sym___declspec] = ACTIONS(4009), + [anon_sym___based] = ACTIONS(4009), + [anon_sym___cdecl] = ACTIONS(4009), + [anon_sym___clrcall] = ACTIONS(4009), + [anon_sym___stdcall] = ACTIONS(4009), + [anon_sym___fastcall] = ACTIONS(4009), + [anon_sym___thiscall] = ACTIONS(4009), + [anon_sym___vectorcall] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4011), + [anon_sym_signed] = ACTIONS(4009), + [anon_sym_unsigned] = ACTIONS(4009), + [anon_sym_long] = ACTIONS(4009), + [anon_sym_short] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4009), + [anon_sym_register] = ACTIONS(4009), + [anon_sym_inline] = ACTIONS(4009), + [anon_sym___inline] = ACTIONS(4009), + [anon_sym___inline__] = ACTIONS(4009), + [anon_sym___forceinline] = ACTIONS(4009), + [anon_sym_thread_local] = ACTIONS(4009), + [anon_sym___thread] = ACTIONS(4009), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_constexpr] = ACTIONS(4009), + [anon_sym_volatile] = ACTIONS(4009), + [anon_sym_restrict] = ACTIONS(4009), + [anon_sym___restrict__] = ACTIONS(4009), + [anon_sym__Atomic] = ACTIONS(4009), + [anon_sym__Noreturn] = ACTIONS(4009), + [anon_sym_noreturn] = ACTIONS(4009), + [anon_sym__Nonnull] = ACTIONS(4009), + [anon_sym_mutable] = ACTIONS(4009), + [anon_sym_constinit] = ACTIONS(4009), + [anon_sym_consteval] = ACTIONS(4009), + [anon_sym_alignas] = ACTIONS(4009), + [anon_sym__Alignas] = ACTIONS(4009), + [sym_primitive_type] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_class] = ACTIONS(4009), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_if] = ACTIONS(4009), + [anon_sym_switch] = ACTIONS(4009), + [anon_sym_case] = ACTIONS(4009), + [anon_sym_default] = ACTIONS(4009), + [anon_sym_while] = ACTIONS(4009), + [anon_sym_do] = ACTIONS(4009), + [anon_sym_for] = ACTIONS(4009), + [anon_sym_return] = ACTIONS(4009), + [anon_sym_break] = ACTIONS(4009), + [anon_sym_continue] = ACTIONS(4009), + [anon_sym_goto] = ACTIONS(4009), + [anon_sym___try] = ACTIONS(4009), + [anon_sym___leave] = ACTIONS(4009), + [anon_sym_not] = ACTIONS(4009), + [anon_sym_compl] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4011), + [anon_sym_PLUS_PLUS] = ACTIONS(4011), + [anon_sym_sizeof] = ACTIONS(4009), + [anon_sym___alignof__] = ACTIONS(4009), + [anon_sym___alignof] = ACTIONS(4009), + [anon_sym__alignof] = ACTIONS(4009), + [anon_sym_alignof] = ACTIONS(4009), + [anon_sym__Alignof] = ACTIONS(4009), + [anon_sym_offsetof] = ACTIONS(4009), + [anon_sym__Generic] = ACTIONS(4009), + [anon_sym_typename] = ACTIONS(4009), + [anon_sym_asm] = ACTIONS(4009), + [anon_sym___asm__] = ACTIONS(4009), + [anon_sym___asm] = ACTIONS(4009), + [sym_number_literal] = ACTIONS(4011), + [anon_sym_L_SQUOTE] = ACTIONS(4011), + [anon_sym_u_SQUOTE] = ACTIONS(4011), + [anon_sym_U_SQUOTE] = ACTIONS(4011), + [anon_sym_u8_SQUOTE] = ACTIONS(4011), + [anon_sym_SQUOTE] = ACTIONS(4011), + [anon_sym_L_DQUOTE] = ACTIONS(4011), + [anon_sym_u_DQUOTE] = ACTIONS(4011), + [anon_sym_U_DQUOTE] = ACTIONS(4011), + [anon_sym_u8_DQUOTE] = ACTIONS(4011), + [anon_sym_DQUOTE] = ACTIONS(4011), + [sym_true] = ACTIONS(4009), + [sym_false] = ACTIONS(4009), + [anon_sym_NULL] = ACTIONS(4009), + [anon_sym_nullptr] = ACTIONS(4009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4009), + [anon_sym_decltype] = ACTIONS(4009), + [anon_sym_explicit] = ACTIONS(4009), + [anon_sym_export] = ACTIONS(4009), + [anon_sym_module] = ACTIONS(4009), + [anon_sym_import] = ACTIONS(4009), + [anon_sym_template] = ACTIONS(4009), + [anon_sym_operator] = ACTIONS(4009), + [anon_sym_try] = ACTIONS(4009), + [anon_sym_delete] = ACTIONS(4009), + [anon_sym_throw] = ACTIONS(4009), + [anon_sym_namespace] = ACTIONS(4009), + [anon_sym_static_assert] = ACTIONS(4009), + [anon_sym_concept] = ACTIONS(4009), + [anon_sym_co_return] = ACTIONS(4009), + [anon_sym_co_yield] = ACTIONS(4009), + [anon_sym_R_DQUOTE] = ACTIONS(4011), + [anon_sym_LR_DQUOTE] = ACTIONS(4011), + [anon_sym_uR_DQUOTE] = ACTIONS(4011), + [anon_sym_UR_DQUOTE] = ACTIONS(4011), + [anon_sym_u8R_DQUOTE] = ACTIONS(4011), + [anon_sym_co_await] = ACTIONS(4009), + [anon_sym_new] = ACTIONS(4009), + [anon_sym_requires] = ACTIONS(4009), + [anon_sym_CARET_CARET] = ACTIONS(4011), + [anon_sym_LBRACK_COLON] = ACTIONS(4011), + [sym_this] = ACTIONS(4009), }, - [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(719)] = { + [sym_identifier] = ACTIONS(4017), + [aux_sym_preproc_include_token1] = ACTIONS(4017), + [aux_sym_preproc_def_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token2] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4017), + [sym_preproc_directive] = ACTIONS(4017), + [anon_sym_LPAREN2] = ACTIONS(4019), + [anon_sym_BANG] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_AMP_AMP] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_SEMI] = ACTIONS(4019), + [anon_sym___extension__] = ACTIONS(4017), + [anon_sym_typedef] = ACTIONS(4017), + [anon_sym_virtual] = ACTIONS(4017), + [anon_sym_extern] = ACTIONS(4017), + [anon_sym___attribute__] = ACTIONS(4017), + [anon_sym___attribute] = ACTIONS(4017), + [anon_sym_using] = ACTIONS(4017), + [anon_sym_COLON_COLON] = ACTIONS(4019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4019), + [anon_sym___declspec] = ACTIONS(4017), + [anon_sym___based] = ACTIONS(4017), + [anon_sym___cdecl] = ACTIONS(4017), + [anon_sym___clrcall] = ACTIONS(4017), + [anon_sym___stdcall] = ACTIONS(4017), + [anon_sym___fastcall] = ACTIONS(4017), + [anon_sym___thiscall] = ACTIONS(4017), + [anon_sym___vectorcall] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_signed] = ACTIONS(4017), + [anon_sym_unsigned] = ACTIONS(4017), + [anon_sym_long] = ACTIONS(4017), + [anon_sym_short] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4017), + [anon_sym_static] = ACTIONS(4017), + [anon_sym_register] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym___inline] = ACTIONS(4017), + [anon_sym___inline__] = ACTIONS(4017), + [anon_sym___forceinline] = ACTIONS(4017), + [anon_sym_thread_local] = ACTIONS(4017), + [anon_sym___thread] = ACTIONS(4017), + [anon_sym_const] = ACTIONS(4017), + [anon_sym_constexpr] = ACTIONS(4017), + [anon_sym_volatile] = ACTIONS(4017), + [anon_sym_restrict] = ACTIONS(4017), + [anon_sym___restrict__] = ACTIONS(4017), + [anon_sym__Atomic] = ACTIONS(4017), + [anon_sym__Noreturn] = ACTIONS(4017), + [anon_sym_noreturn] = ACTIONS(4017), + [anon_sym__Nonnull] = ACTIONS(4017), + [anon_sym_mutable] = ACTIONS(4017), + [anon_sym_constinit] = ACTIONS(4017), + [anon_sym_consteval] = ACTIONS(4017), + [anon_sym_alignas] = ACTIONS(4017), + [anon_sym__Alignas] = ACTIONS(4017), + [sym_primitive_type] = ACTIONS(4017), + [anon_sym_enum] = ACTIONS(4017), + [anon_sym_class] = ACTIONS(4017), + [anon_sym_struct] = ACTIONS(4017), + [anon_sym_union] = ACTIONS(4017), + [anon_sym_if] = ACTIONS(4017), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_case] = ACTIONS(4017), + [anon_sym_default] = ACTIONS(4017), + [anon_sym_while] = ACTIONS(4017), + [anon_sym_do] = ACTIONS(4017), + [anon_sym_for] = ACTIONS(4017), + [anon_sym_return] = ACTIONS(4017), + [anon_sym_break] = ACTIONS(4017), + [anon_sym_continue] = ACTIONS(4017), + [anon_sym_goto] = ACTIONS(4017), + [anon_sym___try] = ACTIONS(4017), + [anon_sym___leave] = ACTIONS(4017), + [anon_sym_not] = ACTIONS(4017), + [anon_sym_compl] = ACTIONS(4017), + [anon_sym_DASH_DASH] = ACTIONS(4019), + [anon_sym_PLUS_PLUS] = ACTIONS(4019), + [anon_sym_sizeof] = ACTIONS(4017), + [anon_sym___alignof__] = ACTIONS(4017), + [anon_sym___alignof] = ACTIONS(4017), + [anon_sym__alignof] = ACTIONS(4017), + [anon_sym_alignof] = ACTIONS(4017), + [anon_sym__Alignof] = ACTIONS(4017), + [anon_sym_offsetof] = ACTIONS(4017), + [anon_sym__Generic] = ACTIONS(4017), + [anon_sym_typename] = ACTIONS(4017), + [anon_sym_asm] = ACTIONS(4017), + [anon_sym___asm__] = ACTIONS(4017), + [anon_sym___asm] = ACTIONS(4017), + [sym_number_literal] = ACTIONS(4019), + [anon_sym_L_SQUOTE] = ACTIONS(4019), + [anon_sym_u_SQUOTE] = ACTIONS(4019), + [anon_sym_U_SQUOTE] = ACTIONS(4019), + [anon_sym_u8_SQUOTE] = ACTIONS(4019), + [anon_sym_SQUOTE] = ACTIONS(4019), + [anon_sym_L_DQUOTE] = ACTIONS(4019), + [anon_sym_u_DQUOTE] = ACTIONS(4019), + [anon_sym_U_DQUOTE] = ACTIONS(4019), + [anon_sym_u8_DQUOTE] = ACTIONS(4019), + [anon_sym_DQUOTE] = ACTIONS(4019), + [sym_true] = ACTIONS(4017), + [sym_false] = ACTIONS(4017), + [anon_sym_NULL] = ACTIONS(4017), + [anon_sym_nullptr] = ACTIONS(4017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4017), + [anon_sym_decltype] = ACTIONS(4017), + [anon_sym_explicit] = ACTIONS(4017), + [anon_sym_export] = ACTIONS(4017), + [anon_sym_module] = ACTIONS(4017), + [anon_sym_import] = ACTIONS(4017), + [anon_sym_template] = ACTIONS(4017), + [anon_sym_operator] = ACTIONS(4017), + [anon_sym_try] = ACTIONS(4017), + [anon_sym_delete] = ACTIONS(4017), + [anon_sym_throw] = ACTIONS(4017), + [anon_sym_namespace] = ACTIONS(4017), + [anon_sym_static_assert] = ACTIONS(4017), + [anon_sym_concept] = ACTIONS(4017), + [anon_sym_co_return] = ACTIONS(4017), + [anon_sym_co_yield] = ACTIONS(4017), + [anon_sym_R_DQUOTE] = ACTIONS(4019), + [anon_sym_LR_DQUOTE] = ACTIONS(4019), + [anon_sym_uR_DQUOTE] = ACTIONS(4019), + [anon_sym_UR_DQUOTE] = ACTIONS(4019), + [anon_sym_u8R_DQUOTE] = ACTIONS(4019), + [anon_sym_co_await] = ACTIONS(4017), + [anon_sym_new] = ACTIONS(4017), + [anon_sym_requires] = ACTIONS(4017), + [anon_sym_CARET_CARET] = ACTIONS(4019), + [anon_sym_LBRACK_COLON] = ACTIONS(4019), + [sym_this] = ACTIONS(4017), }, - [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(720)] = { + [sym_identifier] = ACTIONS(4060), + [aux_sym_preproc_include_token1] = ACTIONS(4060), + [aux_sym_preproc_def_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token2] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4060), + [sym_preproc_directive] = ACTIONS(4060), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4060), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym___extension__] = ACTIONS(4060), + [anon_sym_typedef] = ACTIONS(4060), + [anon_sym_virtual] = ACTIONS(4060), + [anon_sym_extern] = ACTIONS(4060), + [anon_sym___attribute__] = ACTIONS(4060), + [anon_sym___attribute] = ACTIONS(4060), + [anon_sym_using] = ACTIONS(4060), + [anon_sym_COLON_COLON] = ACTIONS(4062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4062), + [anon_sym___declspec] = ACTIONS(4060), + [anon_sym___based] = ACTIONS(4060), + [anon_sym___cdecl] = ACTIONS(4060), + [anon_sym___clrcall] = ACTIONS(4060), + [anon_sym___stdcall] = ACTIONS(4060), + [anon_sym___fastcall] = ACTIONS(4060), + [anon_sym___thiscall] = ACTIONS(4060), + [anon_sym___vectorcall] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_signed] = ACTIONS(4060), + [anon_sym_unsigned] = ACTIONS(4060), + [anon_sym_long] = ACTIONS(4060), + [anon_sym_short] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_static] = ACTIONS(4060), + [anon_sym_register] = ACTIONS(4060), + [anon_sym_inline] = ACTIONS(4060), + [anon_sym___inline] = ACTIONS(4060), + [anon_sym___inline__] = ACTIONS(4060), + [anon_sym___forceinline] = ACTIONS(4060), + [anon_sym_thread_local] = ACTIONS(4060), + [anon_sym___thread] = ACTIONS(4060), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_constexpr] = ACTIONS(4060), + [anon_sym_volatile] = ACTIONS(4060), + [anon_sym_restrict] = ACTIONS(4060), + [anon_sym___restrict__] = ACTIONS(4060), + [anon_sym__Atomic] = ACTIONS(4060), + [anon_sym__Noreturn] = ACTIONS(4060), + [anon_sym_noreturn] = ACTIONS(4060), + [anon_sym__Nonnull] = ACTIONS(4060), + [anon_sym_mutable] = ACTIONS(4060), + [anon_sym_constinit] = ACTIONS(4060), + [anon_sym_consteval] = ACTIONS(4060), + [anon_sym_alignas] = ACTIONS(4060), + [anon_sym__Alignas] = ACTIONS(4060), + [sym_primitive_type] = ACTIONS(4060), + [anon_sym_enum] = ACTIONS(4060), + [anon_sym_class] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4060), + [anon_sym_union] = ACTIONS(4060), + [anon_sym_if] = ACTIONS(4060), + [anon_sym_switch] = ACTIONS(4060), + [anon_sym_case] = ACTIONS(4060), + [anon_sym_default] = ACTIONS(4060), + [anon_sym_while] = ACTIONS(4060), + [anon_sym_do] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4060), + [anon_sym_break] = ACTIONS(4060), + [anon_sym_continue] = ACTIONS(4060), + [anon_sym_goto] = ACTIONS(4060), + [anon_sym___try] = ACTIONS(4060), + [anon_sym___leave] = ACTIONS(4060), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_compl] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4062), + [anon_sym_PLUS_PLUS] = ACTIONS(4062), + [anon_sym_sizeof] = ACTIONS(4060), + [anon_sym___alignof__] = ACTIONS(4060), + [anon_sym___alignof] = ACTIONS(4060), + [anon_sym__alignof] = ACTIONS(4060), + [anon_sym_alignof] = ACTIONS(4060), + [anon_sym__Alignof] = ACTIONS(4060), + [anon_sym_offsetof] = ACTIONS(4060), + [anon_sym__Generic] = ACTIONS(4060), + [anon_sym_typename] = ACTIONS(4060), + [anon_sym_asm] = ACTIONS(4060), + [anon_sym___asm__] = ACTIONS(4060), + [anon_sym___asm] = ACTIONS(4060), + [sym_number_literal] = ACTIONS(4062), + [anon_sym_L_SQUOTE] = ACTIONS(4062), + [anon_sym_u_SQUOTE] = ACTIONS(4062), + [anon_sym_U_SQUOTE] = ACTIONS(4062), + [anon_sym_u8_SQUOTE] = ACTIONS(4062), + [anon_sym_SQUOTE] = ACTIONS(4062), + [anon_sym_L_DQUOTE] = ACTIONS(4062), + [anon_sym_u_DQUOTE] = ACTIONS(4062), + [anon_sym_U_DQUOTE] = ACTIONS(4062), + [anon_sym_u8_DQUOTE] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [anon_sym_NULL] = ACTIONS(4060), + [anon_sym_nullptr] = ACTIONS(4060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4060), + [anon_sym_decltype] = ACTIONS(4060), + [anon_sym_explicit] = ACTIONS(4060), + [anon_sym_export] = ACTIONS(4060), + [anon_sym_module] = ACTIONS(4060), + [anon_sym_import] = ACTIONS(4060), + [anon_sym_template] = ACTIONS(4060), + [anon_sym_operator] = ACTIONS(4060), + [anon_sym_try] = ACTIONS(4060), + [anon_sym_delete] = ACTIONS(4060), + [anon_sym_throw] = ACTIONS(4060), + [anon_sym_namespace] = ACTIONS(4060), + [anon_sym_static_assert] = ACTIONS(4060), + [anon_sym_concept] = ACTIONS(4060), + [anon_sym_co_return] = ACTIONS(4060), + [anon_sym_co_yield] = ACTIONS(4060), + [anon_sym_R_DQUOTE] = ACTIONS(4062), + [anon_sym_LR_DQUOTE] = ACTIONS(4062), + [anon_sym_uR_DQUOTE] = ACTIONS(4062), + [anon_sym_UR_DQUOTE] = ACTIONS(4062), + [anon_sym_u8R_DQUOTE] = ACTIONS(4062), + [anon_sym_co_await] = ACTIONS(4060), + [anon_sym_new] = ACTIONS(4060), + [anon_sym_requires] = ACTIONS(4060), + [anon_sym_CARET_CARET] = ACTIONS(4062), + [anon_sym_LBRACK_COLON] = ACTIONS(4062), + [sym_this] = ACTIONS(4060), }, - [STATE(667)] = { + [STATE(721)] = { [sym_identifier] = ACTIONS(4080), [aux_sym_preproc_include_token1] = ACTIONS(4080), [aux_sym_preproc_def_token1] = ACTIONS(4080), @@ -155406,7057 +166229,3814 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(722)] = { + [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_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_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___try] = ACTIONS(4088), + [anon_sym___leave] = 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(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), + [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(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), + [STATE(723)] = { + [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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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_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(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), + [STATE(724)] = { + [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(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), + [STATE(725)] = { + [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(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), + [STATE(726)] = { + [sym_identifier] = ACTIONS(4130), + [aux_sym_preproc_include_token1] = ACTIONS(4130), + [aux_sym_preproc_def_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token2] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4130), + [sym_preproc_directive] = ACTIONS(4130), + [anon_sym_LPAREN2] = ACTIONS(4132), + [anon_sym_BANG] = ACTIONS(4132), + [anon_sym_TILDE] = ACTIONS(4132), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym___extension__] = ACTIONS(4130), + [anon_sym_typedef] = ACTIONS(4130), + [anon_sym_virtual] = ACTIONS(4130), + [anon_sym_extern] = ACTIONS(4130), + [anon_sym___attribute__] = ACTIONS(4130), + [anon_sym___attribute] = ACTIONS(4130), + [anon_sym_using] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4132), + [anon_sym___declspec] = ACTIONS(4130), + [anon_sym___based] = ACTIONS(4130), + [anon_sym___cdecl] = ACTIONS(4130), + [anon_sym___clrcall] = ACTIONS(4130), + [anon_sym___stdcall] = ACTIONS(4130), + [anon_sym___fastcall] = ACTIONS(4130), + [anon_sym___thiscall] = ACTIONS(4130), + [anon_sym___vectorcall] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_signed] = ACTIONS(4130), + [anon_sym_unsigned] = ACTIONS(4130), + [anon_sym_long] = ACTIONS(4130), + [anon_sym_short] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4130), + [anon_sym_static] = ACTIONS(4130), + [anon_sym_register] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym___inline] = ACTIONS(4130), + [anon_sym___inline__] = ACTIONS(4130), + [anon_sym___forceinline] = ACTIONS(4130), + [anon_sym_thread_local] = ACTIONS(4130), + [anon_sym___thread] = ACTIONS(4130), + [anon_sym_const] = ACTIONS(4130), + [anon_sym_constexpr] = ACTIONS(4130), + [anon_sym_volatile] = ACTIONS(4130), + [anon_sym_restrict] = ACTIONS(4130), + [anon_sym___restrict__] = ACTIONS(4130), + [anon_sym__Atomic] = ACTIONS(4130), + [anon_sym__Noreturn] = ACTIONS(4130), + [anon_sym_noreturn] = ACTIONS(4130), + [anon_sym__Nonnull] = ACTIONS(4130), + [anon_sym_mutable] = ACTIONS(4130), + [anon_sym_constinit] = ACTIONS(4130), + [anon_sym_consteval] = ACTIONS(4130), + [anon_sym_alignas] = ACTIONS(4130), + [anon_sym__Alignas] = ACTIONS(4130), + [sym_primitive_type] = ACTIONS(4130), + [anon_sym_enum] = ACTIONS(4130), + [anon_sym_class] = ACTIONS(4130), + [anon_sym_struct] = ACTIONS(4130), + [anon_sym_union] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_switch] = ACTIONS(4130), + [anon_sym_case] = ACTIONS(4130), + [anon_sym_default] = ACTIONS(4130), + [anon_sym_while] = ACTIONS(4130), + [anon_sym_do] = ACTIONS(4130), + [anon_sym_for] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_break] = ACTIONS(4130), + [anon_sym_continue] = ACTIONS(4130), + [anon_sym_goto] = ACTIONS(4130), + [anon_sym___try] = ACTIONS(4130), + [anon_sym___leave] = ACTIONS(4130), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_compl] = ACTIONS(4130), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_sizeof] = ACTIONS(4130), + [anon_sym___alignof__] = ACTIONS(4130), + [anon_sym___alignof] = ACTIONS(4130), + [anon_sym__alignof] = ACTIONS(4130), + [anon_sym_alignof] = ACTIONS(4130), + [anon_sym__Alignof] = ACTIONS(4130), + [anon_sym_offsetof] = ACTIONS(4130), + [anon_sym__Generic] = ACTIONS(4130), + [anon_sym_typename] = ACTIONS(4130), + [anon_sym_asm] = ACTIONS(4130), + [anon_sym___asm__] = ACTIONS(4130), + [anon_sym___asm] = ACTIONS(4130), + [sym_number_literal] = ACTIONS(4132), + [anon_sym_L_SQUOTE] = ACTIONS(4132), + [anon_sym_u_SQUOTE] = ACTIONS(4132), + [anon_sym_U_SQUOTE] = ACTIONS(4132), + [anon_sym_u8_SQUOTE] = ACTIONS(4132), + [anon_sym_SQUOTE] = ACTIONS(4132), + [anon_sym_L_DQUOTE] = ACTIONS(4132), + [anon_sym_u_DQUOTE] = ACTIONS(4132), + [anon_sym_U_DQUOTE] = ACTIONS(4132), + [anon_sym_u8_DQUOTE] = ACTIONS(4132), + [anon_sym_DQUOTE] = ACTIONS(4132), + [sym_true] = ACTIONS(4130), + [sym_false] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_nullptr] = ACTIONS(4130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4130), + [anon_sym_decltype] = ACTIONS(4130), + [anon_sym_explicit] = ACTIONS(4130), + [anon_sym_export] = ACTIONS(4130), + [anon_sym_module] = ACTIONS(4130), + [anon_sym_import] = ACTIONS(4130), + [anon_sym_template] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_try] = ACTIONS(4130), + [anon_sym_delete] = ACTIONS(4130), + [anon_sym_throw] = ACTIONS(4130), + [anon_sym_namespace] = ACTIONS(4130), + [anon_sym_static_assert] = ACTIONS(4130), + [anon_sym_concept] = ACTIONS(4130), + [anon_sym_co_return] = ACTIONS(4130), + [anon_sym_co_yield] = ACTIONS(4130), + [anon_sym_R_DQUOTE] = ACTIONS(4132), + [anon_sym_LR_DQUOTE] = ACTIONS(4132), + [anon_sym_uR_DQUOTE] = ACTIONS(4132), + [anon_sym_UR_DQUOTE] = ACTIONS(4132), + [anon_sym_u8R_DQUOTE] = ACTIONS(4132), + [anon_sym_co_await] = ACTIONS(4130), + [anon_sym_new] = ACTIONS(4130), + [anon_sym_requires] = ACTIONS(4130), + [anon_sym_CARET_CARET] = ACTIONS(4132), + [anon_sym_LBRACK_COLON] = ACTIONS(4132), + [sym_this] = ACTIONS(4130), }, - [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), + [STATE(727)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_include_token1] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token2] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym___cdecl] = ACTIONS(4134), + [anon_sym___clrcall] = ACTIONS(4134), + [anon_sym___stdcall] = ACTIONS(4134), + [anon_sym___fastcall] = ACTIONS(4134), + [anon_sym___thiscall] = ACTIONS(4134), + [anon_sym___vectorcall] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_switch] = ACTIONS(4134), + [anon_sym_case] = ACTIONS(4134), + [anon_sym_default] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_do] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_goto] = ACTIONS(4134), + [anon_sym___try] = ACTIONS(4134), + [anon_sym___leave] = ACTIONS(4134), + [anon_sym_not] = ACTIONS(4134), + [anon_sym_compl] = ACTIONS(4134), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_sizeof] = ACTIONS(4134), + [anon_sym___alignof__] = ACTIONS(4134), + [anon_sym___alignof] = ACTIONS(4134), + [anon_sym__alignof] = ACTIONS(4134), + [anon_sym_alignof] = ACTIONS(4134), + [anon_sym__Alignof] = ACTIONS(4134), + [anon_sym_offsetof] = ACTIONS(4134), + [anon_sym__Generic] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [anon_sym_asm] = ACTIONS(4134), + [anon_sym___asm__] = ACTIONS(4134), + [anon_sym___asm] = ACTIONS(4134), + [sym_number_literal] = ACTIONS(4136), + [anon_sym_L_SQUOTE] = ACTIONS(4136), + [anon_sym_u_SQUOTE] = ACTIONS(4136), + [anon_sym_U_SQUOTE] = ACTIONS(4136), + [anon_sym_u8_SQUOTE] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4136), + [anon_sym_L_DQUOTE] = ACTIONS(4136), + [anon_sym_u_DQUOTE] = ACTIONS(4136), + [anon_sym_U_DQUOTE] = ACTIONS(4136), + [anon_sym_u8_DQUOTE] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [sym_true] = ACTIONS(4134), + [sym_false] = ACTIONS(4134), + [anon_sym_NULL] = ACTIONS(4134), + [anon_sym_nullptr] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_export] = ACTIONS(4134), + [anon_sym_module] = ACTIONS(4134), + [anon_sym_import] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_delete] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_namespace] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_concept] = ACTIONS(4134), + [anon_sym_co_return] = ACTIONS(4134), + [anon_sym_co_yield] = ACTIONS(4134), + [anon_sym_R_DQUOTE] = ACTIONS(4136), + [anon_sym_LR_DQUOTE] = ACTIONS(4136), + [anon_sym_uR_DQUOTE] = ACTIONS(4136), + [anon_sym_UR_DQUOTE] = ACTIONS(4136), + [anon_sym_u8R_DQUOTE] = ACTIONS(4136), + [anon_sym_co_await] = ACTIONS(4134), + [anon_sym_new] = ACTIONS(4134), + [anon_sym_requires] = ACTIONS(4134), + [anon_sym_CARET_CARET] = ACTIONS(4136), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + [sym_this] = ACTIONS(4134), }, - [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), + [STATE(728)] = { + [sym_identifier] = ACTIONS(4146), + [aux_sym_preproc_include_token1] = ACTIONS(4146), + [aux_sym_preproc_def_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token2] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4146), + [sym_preproc_directive] = ACTIONS(4146), + [anon_sym_LPAREN2] = ACTIONS(4148), + [anon_sym_BANG] = ACTIONS(4148), + [anon_sym_TILDE] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym___extension__] = ACTIONS(4146), + [anon_sym_typedef] = ACTIONS(4146), + [anon_sym_virtual] = ACTIONS(4146), + [anon_sym_extern] = ACTIONS(4146), + [anon_sym___attribute__] = ACTIONS(4146), + [anon_sym___attribute] = ACTIONS(4146), + [anon_sym_using] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4148), + [anon_sym___declspec] = ACTIONS(4146), + [anon_sym___based] = ACTIONS(4146), + [anon_sym___cdecl] = ACTIONS(4146), + [anon_sym___clrcall] = ACTIONS(4146), + [anon_sym___stdcall] = ACTIONS(4146), + [anon_sym___fastcall] = ACTIONS(4146), + [anon_sym___thiscall] = ACTIONS(4146), + [anon_sym___vectorcall] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_signed] = ACTIONS(4146), + [anon_sym_unsigned] = ACTIONS(4146), + [anon_sym_long] = ACTIONS(4146), + [anon_sym_short] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_static] = ACTIONS(4146), + [anon_sym_register] = ACTIONS(4146), + [anon_sym_inline] = ACTIONS(4146), + [anon_sym___inline] = ACTIONS(4146), + [anon_sym___inline__] = ACTIONS(4146), + [anon_sym___forceinline] = ACTIONS(4146), + [anon_sym_thread_local] = ACTIONS(4146), + [anon_sym___thread] = ACTIONS(4146), + [anon_sym_const] = ACTIONS(4146), + [anon_sym_constexpr] = ACTIONS(4146), + [anon_sym_volatile] = ACTIONS(4146), + [anon_sym_restrict] = ACTIONS(4146), + [anon_sym___restrict__] = ACTIONS(4146), + [anon_sym__Atomic] = ACTIONS(4146), + [anon_sym__Noreturn] = ACTIONS(4146), + [anon_sym_noreturn] = ACTIONS(4146), + [anon_sym__Nonnull] = ACTIONS(4146), + [anon_sym_mutable] = ACTIONS(4146), + [anon_sym_constinit] = ACTIONS(4146), + [anon_sym_consteval] = ACTIONS(4146), + [anon_sym_alignas] = ACTIONS(4146), + [anon_sym__Alignas] = ACTIONS(4146), + [sym_primitive_type] = ACTIONS(4146), + [anon_sym_enum] = ACTIONS(4146), + [anon_sym_class] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4146), + [anon_sym_union] = ACTIONS(4146), + [anon_sym_if] = ACTIONS(4146), + [anon_sym_switch] = ACTIONS(4146), + [anon_sym_case] = ACTIONS(4146), + [anon_sym_default] = ACTIONS(4146), + [anon_sym_while] = ACTIONS(4146), + [anon_sym_do] = ACTIONS(4146), + [anon_sym_for] = ACTIONS(4146), + [anon_sym_return] = ACTIONS(4146), + [anon_sym_break] = ACTIONS(4146), + [anon_sym_continue] = ACTIONS(4146), + [anon_sym_goto] = ACTIONS(4146), + [anon_sym___try] = ACTIONS(4146), + [anon_sym___leave] = ACTIONS(4146), + [anon_sym_not] = ACTIONS(4146), + [anon_sym_compl] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_sizeof] = ACTIONS(4146), + [anon_sym___alignof__] = ACTIONS(4146), + [anon_sym___alignof] = ACTIONS(4146), + [anon_sym__alignof] = ACTIONS(4146), + [anon_sym_alignof] = ACTIONS(4146), + [anon_sym__Alignof] = ACTIONS(4146), + [anon_sym_offsetof] = ACTIONS(4146), + [anon_sym__Generic] = ACTIONS(4146), + [anon_sym_typename] = ACTIONS(4146), + [anon_sym_asm] = ACTIONS(4146), + [anon_sym___asm__] = ACTIONS(4146), + [anon_sym___asm] = ACTIONS(4146), + [sym_number_literal] = ACTIONS(4148), + [anon_sym_L_SQUOTE] = ACTIONS(4148), + [anon_sym_u_SQUOTE] = ACTIONS(4148), + [anon_sym_U_SQUOTE] = ACTIONS(4148), + [anon_sym_u8_SQUOTE] = ACTIONS(4148), + [anon_sym_SQUOTE] = ACTIONS(4148), + [anon_sym_L_DQUOTE] = ACTIONS(4148), + [anon_sym_u_DQUOTE] = ACTIONS(4148), + [anon_sym_U_DQUOTE] = ACTIONS(4148), + [anon_sym_u8_DQUOTE] = ACTIONS(4148), + [anon_sym_DQUOTE] = ACTIONS(4148), + [sym_true] = ACTIONS(4146), + [sym_false] = ACTIONS(4146), + [anon_sym_NULL] = ACTIONS(4146), + [anon_sym_nullptr] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4146), + [anon_sym_decltype] = ACTIONS(4146), + [anon_sym_explicit] = ACTIONS(4146), + [anon_sym_export] = ACTIONS(4146), + [anon_sym_module] = ACTIONS(4146), + [anon_sym_import] = ACTIONS(4146), + [anon_sym_template] = ACTIONS(4146), + [anon_sym_operator] = ACTIONS(4146), + [anon_sym_try] = ACTIONS(4146), + [anon_sym_delete] = ACTIONS(4146), + [anon_sym_throw] = ACTIONS(4146), + [anon_sym_namespace] = ACTIONS(4146), + [anon_sym_static_assert] = ACTIONS(4146), + [anon_sym_concept] = ACTIONS(4146), + [anon_sym_co_return] = ACTIONS(4146), + [anon_sym_co_yield] = ACTIONS(4146), + [anon_sym_R_DQUOTE] = ACTIONS(4148), + [anon_sym_LR_DQUOTE] = ACTIONS(4148), + [anon_sym_uR_DQUOTE] = ACTIONS(4148), + [anon_sym_UR_DQUOTE] = ACTIONS(4148), + [anon_sym_u8R_DQUOTE] = ACTIONS(4148), + [anon_sym_co_await] = ACTIONS(4146), + [anon_sym_new] = ACTIONS(4146), + [anon_sym_requires] = ACTIONS(4146), + [anon_sym_CARET_CARET] = ACTIONS(4148), + [anon_sym_LBRACK_COLON] = ACTIONS(4148), + [sym_this] = ACTIONS(4146), }, - [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), + [STATE(729)] = { + [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(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(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_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), }, - [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), + [STATE(730)] = { + [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(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), + [STATE(731)] = { + [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(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), + [STATE(732)] = { + [sym_identifier] = ACTIONS(3468), + [aux_sym_preproc_include_token1] = ACTIONS(3468), + [aux_sym_preproc_def_token1] = ACTIONS(3468), + [aux_sym_preproc_if_token1] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3468), + [sym_preproc_directive] = ACTIONS(3468), + [anon_sym_LPAREN2] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), + [anon_sym_AMP_AMP] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3468), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym___extension__] = ACTIONS(3468), + [anon_sym_typedef] = ACTIONS(3468), + [anon_sym_virtual] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym___attribute__] = ACTIONS(3468), + [anon_sym___attribute] = ACTIONS(3468), + [anon_sym_using] = ACTIONS(3468), + [anon_sym_COLON_COLON] = ACTIONS(3470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3470), + [anon_sym___declspec] = ACTIONS(3468), + [anon_sym___based] = ACTIONS(3468), + [anon_sym___cdecl] = ACTIONS(3468), + [anon_sym___clrcall] = ACTIONS(3468), + [anon_sym___stdcall] = ACTIONS(3468), + [anon_sym___fastcall] = ACTIONS(3468), + [anon_sym___thiscall] = ACTIONS(3468), + [anon_sym___vectorcall] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_RBRACE] = ACTIONS(3470), + [anon_sym_signed] = ACTIONS(3468), + [anon_sym_unsigned] = ACTIONS(3468), + [anon_sym_long] = ACTIONS(3468), + [anon_sym_short] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_register] = ACTIONS(3468), + [anon_sym_inline] = ACTIONS(3468), + [anon_sym___inline] = ACTIONS(3468), + [anon_sym___inline__] = ACTIONS(3468), + [anon_sym___forceinline] = ACTIONS(3468), + [anon_sym_thread_local] = ACTIONS(3468), + [anon_sym___thread] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_constexpr] = ACTIONS(3468), + [anon_sym_volatile] = ACTIONS(3468), + [anon_sym_restrict] = ACTIONS(3468), + [anon_sym___restrict__] = ACTIONS(3468), + [anon_sym__Atomic] = ACTIONS(3468), + [anon_sym__Noreturn] = ACTIONS(3468), + [anon_sym_noreturn] = ACTIONS(3468), + [anon_sym__Nonnull] = ACTIONS(3468), + [anon_sym_mutable] = ACTIONS(3468), + [anon_sym_constinit] = ACTIONS(3468), + [anon_sym_consteval] = ACTIONS(3468), + [anon_sym_alignas] = ACTIONS(3468), + [anon_sym__Alignas] = ACTIONS(3468), + [sym_primitive_type] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_union] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3468), + [anon_sym_default] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_goto] = ACTIONS(3468), + [anon_sym___try] = ACTIONS(3468), + [anon_sym___leave] = ACTIONS(3468), + [anon_sym_not] = ACTIONS(3468), + [anon_sym_compl] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_sizeof] = ACTIONS(3468), + [anon_sym___alignof__] = ACTIONS(3468), + [anon_sym___alignof] = ACTIONS(3468), + [anon_sym__alignof] = ACTIONS(3468), + [anon_sym_alignof] = ACTIONS(3468), + [anon_sym__Alignof] = ACTIONS(3468), + [anon_sym_offsetof] = ACTIONS(3468), + [anon_sym__Generic] = ACTIONS(3468), + [anon_sym_typename] = ACTIONS(3468), + [anon_sym_asm] = ACTIONS(3468), + [anon_sym___asm__] = ACTIONS(3468), + [anon_sym___asm] = ACTIONS(3468), + [sym_number_literal] = ACTIONS(3470), + [anon_sym_L_SQUOTE] = ACTIONS(3470), + [anon_sym_u_SQUOTE] = ACTIONS(3470), + [anon_sym_U_SQUOTE] = ACTIONS(3470), + [anon_sym_u8_SQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_L_DQUOTE] = ACTIONS(3470), + [anon_sym_u_DQUOTE] = ACTIONS(3470), + [anon_sym_U_DQUOTE] = ACTIONS(3470), + [anon_sym_u8_DQUOTE] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [anon_sym_NULL] = ACTIONS(3468), + [anon_sym_nullptr] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3468), + [anon_sym_decltype] = ACTIONS(3468), + [anon_sym_explicit] = ACTIONS(3468), + [anon_sym_export] = ACTIONS(3468), + [anon_sym_import] = ACTIONS(3468), + [anon_sym_template] = ACTIONS(3468), + [anon_sym_operator] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_namespace] = ACTIONS(3468), + [anon_sym_static_assert] = ACTIONS(3468), + [anon_sym_concept] = ACTIONS(3468), + [anon_sym_co_return] = ACTIONS(3468), + [anon_sym_co_yield] = ACTIONS(3468), + [anon_sym_R_DQUOTE] = ACTIONS(3470), + [anon_sym_LR_DQUOTE] = ACTIONS(3470), + [anon_sym_uR_DQUOTE] = ACTIONS(3470), + [anon_sym_UR_DQUOTE] = ACTIONS(3470), + [anon_sym_u8R_DQUOTE] = ACTIONS(3470), + [anon_sym_co_await] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_requires] = ACTIONS(3468), + [anon_sym_CARET_CARET] = ACTIONS(3470), + [anon_sym_LBRACK_COLON] = ACTIONS(3470), + [sym_this] = ACTIONS(3468), }, - [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), + [STATE(733)] = { + [sym_identifier] = ACTIONS(4331), + [aux_sym_preproc_include_token1] = ACTIONS(4331), + [aux_sym_preproc_def_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token2] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), + [sym_preproc_directive] = ACTIONS(4331), + [anon_sym_LPAREN2] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym___extension__] = ACTIONS(4331), + [anon_sym_typedef] = ACTIONS(4331), + [anon_sym_virtual] = ACTIONS(4331), + [anon_sym_extern] = ACTIONS(4331), + [anon_sym___attribute__] = ACTIONS(4331), + [anon_sym___attribute] = ACTIONS(4331), + [anon_sym_using] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4333), + [anon_sym___declspec] = ACTIONS(4331), + [anon_sym___based] = ACTIONS(4331), + [anon_sym___cdecl] = ACTIONS(4331), + [anon_sym___clrcall] = ACTIONS(4331), + [anon_sym___stdcall] = ACTIONS(4331), + [anon_sym___fastcall] = ACTIONS(4331), + [anon_sym___thiscall] = ACTIONS(4331), + [anon_sym___vectorcall] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_signed] = ACTIONS(4331), + [anon_sym_unsigned] = ACTIONS(4331), + [anon_sym_long] = ACTIONS(4331), + [anon_sym_short] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_static] = ACTIONS(4331), + [anon_sym_register] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym___inline] = ACTIONS(4331), + [anon_sym___inline__] = ACTIONS(4331), + [anon_sym___forceinline] = ACTIONS(4331), + [anon_sym_thread_local] = ACTIONS(4331), + [anon_sym___thread] = ACTIONS(4331), + [anon_sym_const] = ACTIONS(4331), + [anon_sym_constexpr] = ACTIONS(4331), + [anon_sym_volatile] = ACTIONS(4331), + [anon_sym_restrict] = ACTIONS(4331), + [anon_sym___restrict__] = ACTIONS(4331), + [anon_sym__Atomic] = ACTIONS(4331), + [anon_sym__Noreturn] = ACTIONS(4331), + [anon_sym_noreturn] = ACTIONS(4331), + [anon_sym__Nonnull] = ACTIONS(4331), + [anon_sym_mutable] = ACTIONS(4331), + [anon_sym_constinit] = ACTIONS(4331), + [anon_sym_consteval] = ACTIONS(4331), + [anon_sym_alignas] = ACTIONS(4331), + [anon_sym__Alignas] = ACTIONS(4331), + [sym_primitive_type] = ACTIONS(4331), + [anon_sym_enum] = ACTIONS(4331), + [anon_sym_class] = ACTIONS(4331), + [anon_sym_struct] = ACTIONS(4331), + [anon_sym_union] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_case] = ACTIONS(4331), + [anon_sym_default] = ACTIONS(4331), + [anon_sym_while] = ACTIONS(4331), + [anon_sym_do] = ACTIONS(4331), + [anon_sym_for] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_goto] = ACTIONS(4331), + [anon_sym___try] = ACTIONS(4331), + [anon_sym___leave] = ACTIONS(4331), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_compl] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_sizeof] = ACTIONS(4331), + [anon_sym___alignof__] = ACTIONS(4331), + [anon_sym___alignof] = ACTIONS(4331), + [anon_sym__alignof] = ACTIONS(4331), + [anon_sym_alignof] = ACTIONS(4331), + [anon_sym__Alignof] = ACTIONS(4331), + [anon_sym_offsetof] = ACTIONS(4331), + [anon_sym__Generic] = ACTIONS(4331), + [anon_sym_typename] = ACTIONS(4331), + [anon_sym_asm] = ACTIONS(4331), + [anon_sym___asm__] = ACTIONS(4331), + [anon_sym___asm] = ACTIONS(4331), + [sym_number_literal] = ACTIONS(4333), + [anon_sym_L_SQUOTE] = ACTIONS(4333), + [anon_sym_u_SQUOTE] = ACTIONS(4333), + [anon_sym_U_SQUOTE] = ACTIONS(4333), + [anon_sym_u8_SQUOTE] = ACTIONS(4333), + [anon_sym_SQUOTE] = ACTIONS(4333), + [anon_sym_L_DQUOTE] = ACTIONS(4333), + [anon_sym_u_DQUOTE] = ACTIONS(4333), + [anon_sym_U_DQUOTE] = ACTIONS(4333), + [anon_sym_u8_DQUOTE] = ACTIONS(4333), + [anon_sym_DQUOTE] = ACTIONS(4333), + [sym_true] = ACTIONS(4331), + [sym_false] = ACTIONS(4331), + [anon_sym_NULL] = ACTIONS(4331), + [anon_sym_nullptr] = ACTIONS(4331), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4331), + [anon_sym_decltype] = ACTIONS(4331), + [anon_sym_explicit] = ACTIONS(4331), + [anon_sym_export] = ACTIONS(4331), + [anon_sym_module] = ACTIONS(4331), + [anon_sym_import] = ACTIONS(4331), + [anon_sym_template] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_delete] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_namespace] = ACTIONS(4331), + [anon_sym_static_assert] = ACTIONS(4331), + [anon_sym_concept] = ACTIONS(4331), + [anon_sym_co_return] = ACTIONS(4331), + [anon_sym_co_yield] = ACTIONS(4331), + [anon_sym_R_DQUOTE] = ACTIONS(4333), + [anon_sym_LR_DQUOTE] = ACTIONS(4333), + [anon_sym_uR_DQUOTE] = ACTIONS(4333), + [anon_sym_UR_DQUOTE] = ACTIONS(4333), + [anon_sym_u8R_DQUOTE] = ACTIONS(4333), + [anon_sym_co_await] = ACTIONS(4331), + [anon_sym_new] = ACTIONS(4331), + [anon_sym_requires] = ACTIONS(4331), + [anon_sym_CARET_CARET] = ACTIONS(4333), + [anon_sym_LBRACK_COLON] = ACTIONS(4333), + [sym_this] = ACTIONS(4331), }, - [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), + [STATE(734)] = { + [sym_identifier] = ACTIONS(4335), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4335), + [anon_sym_typedef] = ACTIONS(4335), + [anon_sym_virtual] = ACTIONS(4335), + [anon_sym_extern] = ACTIONS(4335), + [anon_sym___attribute__] = ACTIONS(4335), + [anon_sym___attribute] = ACTIONS(4335), + [anon_sym_using] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4337), + [anon_sym___declspec] = ACTIONS(4335), + [anon_sym___based] = ACTIONS(4335), + [anon_sym___cdecl] = ACTIONS(4335), + [anon_sym___clrcall] = ACTIONS(4335), + [anon_sym___stdcall] = ACTIONS(4335), + [anon_sym___fastcall] = ACTIONS(4335), + [anon_sym___thiscall] = ACTIONS(4335), + [anon_sym___vectorcall] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_signed] = ACTIONS(4335), + [anon_sym_unsigned] = ACTIONS(4335), + [anon_sym_long] = ACTIONS(4335), + [anon_sym_short] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4335), + [anon_sym_static] = ACTIONS(4335), + [anon_sym_register] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym___inline] = ACTIONS(4335), + [anon_sym___inline__] = ACTIONS(4335), + [anon_sym___forceinline] = ACTIONS(4335), + [anon_sym_thread_local] = ACTIONS(4335), + [anon_sym___thread] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(4335), + [anon_sym_constexpr] = ACTIONS(4335), + [anon_sym_volatile] = ACTIONS(4335), + [anon_sym_restrict] = ACTIONS(4335), + [anon_sym___restrict__] = ACTIONS(4335), + [anon_sym__Atomic] = ACTIONS(4335), + [anon_sym__Noreturn] = ACTIONS(4335), + [anon_sym_noreturn] = ACTIONS(4335), + [anon_sym__Nonnull] = ACTIONS(4335), + [anon_sym_mutable] = ACTIONS(4335), + [anon_sym_constinit] = ACTIONS(4335), + [anon_sym_consteval] = ACTIONS(4335), + [anon_sym_alignas] = ACTIONS(4335), + [anon_sym__Alignas] = ACTIONS(4335), + [sym_primitive_type] = ACTIONS(4335), + [anon_sym_enum] = ACTIONS(4335), + [anon_sym_class] = ACTIONS(4335), + [anon_sym_struct] = ACTIONS(4335), + [anon_sym_union] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_switch] = ACTIONS(4335), + [anon_sym_case] = ACTIONS(4335), + [anon_sym_default] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_do] = ACTIONS(4335), + [anon_sym_for] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_goto] = ACTIONS(4335), + [anon_sym___try] = ACTIONS(4335), + [anon_sym___leave] = ACTIONS(4335), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_sizeof] = ACTIONS(4335), + [anon_sym___alignof__] = ACTIONS(4335), + [anon_sym___alignof] = ACTIONS(4335), + [anon_sym__alignof] = ACTIONS(4335), + [anon_sym_alignof] = ACTIONS(4335), + [anon_sym__Alignof] = ACTIONS(4335), + [anon_sym_offsetof] = ACTIONS(4335), + [anon_sym__Generic] = ACTIONS(4335), + [anon_sym_typename] = ACTIONS(4335), + [anon_sym_asm] = ACTIONS(4335), + [anon_sym___asm__] = ACTIONS(4335), + [anon_sym___asm] = ACTIONS(4335), + [sym_number_literal] = ACTIONS(4337), + [anon_sym_L_SQUOTE] = ACTIONS(4337), + [anon_sym_u_SQUOTE] = ACTIONS(4337), + [anon_sym_U_SQUOTE] = ACTIONS(4337), + [anon_sym_u8_SQUOTE] = ACTIONS(4337), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_L_DQUOTE] = ACTIONS(4337), + [anon_sym_u_DQUOTE] = ACTIONS(4337), + [anon_sym_U_DQUOTE] = ACTIONS(4337), + [anon_sym_u8_DQUOTE] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym_true] = ACTIONS(4335), + [sym_false] = ACTIONS(4335), + [anon_sym_NULL] = ACTIONS(4335), + [anon_sym_nullptr] = ACTIONS(4335), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4335), + [anon_sym_decltype] = ACTIONS(4335), + [anon_sym_explicit] = ACTIONS(4335), + [anon_sym_export] = ACTIONS(4335), + [anon_sym_module] = ACTIONS(4335), + [anon_sym_import] = ACTIONS(4335), + [anon_sym_template] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_delete] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_namespace] = ACTIONS(4335), + [anon_sym_static_assert] = ACTIONS(4335), + [anon_sym_concept] = ACTIONS(4335), + [anon_sym_co_return] = ACTIONS(4335), + [anon_sym_co_yield] = ACTIONS(4335), + [anon_sym_R_DQUOTE] = ACTIONS(4337), + [anon_sym_LR_DQUOTE] = ACTIONS(4337), + [anon_sym_uR_DQUOTE] = ACTIONS(4337), + [anon_sym_UR_DQUOTE] = ACTIONS(4337), + [anon_sym_u8R_DQUOTE] = ACTIONS(4337), + [anon_sym_co_await] = ACTIONS(4335), + [anon_sym_new] = ACTIONS(4335), + [anon_sym_requires] = ACTIONS(4335), + [anon_sym_CARET_CARET] = ACTIONS(4337), + [anon_sym_LBRACK_COLON] = ACTIONS(4337), + [sym_this] = ACTIONS(4335), }, - [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), + [STATE(735)] = { + [sym_identifier] = ACTIONS(4339), + [aux_sym_preproc_include_token1] = ACTIONS(4339), + [aux_sym_preproc_def_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token2] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4339), + [sym_preproc_directive] = ACTIONS(4339), + [anon_sym_LPAREN2] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4341), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym___extension__] = ACTIONS(4339), + [anon_sym_typedef] = ACTIONS(4339), + [anon_sym_virtual] = ACTIONS(4339), + [anon_sym_extern] = ACTIONS(4339), + [anon_sym___attribute__] = ACTIONS(4339), + [anon_sym___attribute] = ACTIONS(4339), + [anon_sym_using] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4341), + [anon_sym___declspec] = ACTIONS(4339), + [anon_sym___based] = ACTIONS(4339), + [anon_sym___cdecl] = ACTIONS(4339), + [anon_sym___clrcall] = ACTIONS(4339), + [anon_sym___stdcall] = ACTIONS(4339), + [anon_sym___fastcall] = ACTIONS(4339), + [anon_sym___thiscall] = ACTIONS(4339), + [anon_sym___vectorcall] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_signed] = ACTIONS(4339), + [anon_sym_unsigned] = ACTIONS(4339), + [anon_sym_long] = ACTIONS(4339), + [anon_sym_short] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_static] = ACTIONS(4339), + [anon_sym_register] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym___inline] = ACTIONS(4339), + [anon_sym___inline__] = ACTIONS(4339), + [anon_sym___forceinline] = ACTIONS(4339), + [anon_sym_thread_local] = ACTIONS(4339), + [anon_sym___thread] = ACTIONS(4339), + [anon_sym_const] = ACTIONS(4339), + [anon_sym_constexpr] = ACTIONS(4339), + [anon_sym_volatile] = ACTIONS(4339), + [anon_sym_restrict] = ACTIONS(4339), + [anon_sym___restrict__] = ACTIONS(4339), + [anon_sym__Atomic] = ACTIONS(4339), + [anon_sym__Noreturn] = ACTIONS(4339), + [anon_sym_noreturn] = ACTIONS(4339), + [anon_sym__Nonnull] = ACTIONS(4339), + [anon_sym_mutable] = ACTIONS(4339), + [anon_sym_constinit] = ACTIONS(4339), + [anon_sym_consteval] = ACTIONS(4339), + [anon_sym_alignas] = ACTIONS(4339), + [anon_sym__Alignas] = ACTIONS(4339), + [sym_primitive_type] = ACTIONS(4339), + [anon_sym_enum] = ACTIONS(4339), + [anon_sym_class] = ACTIONS(4339), + [anon_sym_struct] = ACTIONS(4339), + [anon_sym_union] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_switch] = ACTIONS(4339), + [anon_sym_case] = ACTIONS(4339), + [anon_sym_default] = ACTIONS(4339), + [anon_sym_while] = ACTIONS(4339), + [anon_sym_do] = ACTIONS(4339), + [anon_sym_for] = ACTIONS(4339), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_break] = ACTIONS(4339), + [anon_sym_continue] = ACTIONS(4339), + [anon_sym_goto] = ACTIONS(4339), + [anon_sym___try] = ACTIONS(4339), + [anon_sym___leave] = ACTIONS(4339), + [anon_sym_not] = ACTIONS(4339), + [anon_sym_compl] = ACTIONS(4339), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_sizeof] = ACTIONS(4339), + [anon_sym___alignof__] = ACTIONS(4339), + [anon_sym___alignof] = ACTIONS(4339), + [anon_sym__alignof] = ACTIONS(4339), + [anon_sym_alignof] = ACTIONS(4339), + [anon_sym__Alignof] = ACTIONS(4339), + [anon_sym_offsetof] = ACTIONS(4339), + [anon_sym__Generic] = ACTIONS(4339), + [anon_sym_typename] = ACTIONS(4339), + [anon_sym_asm] = ACTIONS(4339), + [anon_sym___asm__] = ACTIONS(4339), + [anon_sym___asm] = ACTIONS(4339), + [sym_number_literal] = ACTIONS(4341), + [anon_sym_L_SQUOTE] = ACTIONS(4341), + [anon_sym_u_SQUOTE] = ACTIONS(4341), + [anon_sym_U_SQUOTE] = ACTIONS(4341), + [anon_sym_u8_SQUOTE] = ACTIONS(4341), + [anon_sym_SQUOTE] = ACTIONS(4341), + [anon_sym_L_DQUOTE] = ACTIONS(4341), + [anon_sym_u_DQUOTE] = ACTIONS(4341), + [anon_sym_U_DQUOTE] = ACTIONS(4341), + [anon_sym_u8_DQUOTE] = ACTIONS(4341), + [anon_sym_DQUOTE] = ACTIONS(4341), + [sym_true] = ACTIONS(4339), + [sym_false] = ACTIONS(4339), + [anon_sym_NULL] = ACTIONS(4339), + [anon_sym_nullptr] = ACTIONS(4339), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4339), + [anon_sym_decltype] = ACTIONS(4339), + [anon_sym_explicit] = ACTIONS(4339), + [anon_sym_export] = ACTIONS(4339), + [anon_sym_module] = ACTIONS(4339), + [anon_sym_import] = ACTIONS(4339), + [anon_sym_template] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_delete] = ACTIONS(4339), + [anon_sym_throw] = ACTIONS(4339), + [anon_sym_namespace] = ACTIONS(4339), + [anon_sym_static_assert] = ACTIONS(4339), + [anon_sym_concept] = ACTIONS(4339), + [anon_sym_co_return] = ACTIONS(4339), + [anon_sym_co_yield] = ACTIONS(4339), + [anon_sym_R_DQUOTE] = ACTIONS(4341), + [anon_sym_LR_DQUOTE] = ACTIONS(4341), + [anon_sym_uR_DQUOTE] = ACTIONS(4341), + [anon_sym_UR_DQUOTE] = ACTIONS(4341), + [anon_sym_u8R_DQUOTE] = ACTIONS(4341), + [anon_sym_co_await] = ACTIONS(4339), + [anon_sym_new] = ACTIONS(4339), + [anon_sym_requires] = ACTIONS(4339), + [anon_sym_CARET_CARET] = ACTIONS(4341), + [anon_sym_LBRACK_COLON] = ACTIONS(4341), + [sym_this] = ACTIONS(4339), }, - [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), + [STATE(736)] = { + [sym_identifier] = ACTIONS(3196), + [aux_sym_preproc_include_token1] = ACTIONS(3196), + [aux_sym_preproc_def_token1] = ACTIONS(3196), + [aux_sym_preproc_if_token1] = ACTIONS(3196), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3196), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3196), + [sym_preproc_directive] = ACTIONS(3196), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_typedef] = ACTIONS(3196), + [anon_sym_virtual] = ACTIONS(3196), + [anon_sym_extern] = ACTIONS(3196), + [anon_sym___attribute__] = ACTIONS(3196), + [anon_sym___attribute] = ACTIONS(3196), + [anon_sym_using] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3196), + [anon_sym___based] = ACTIONS(3196), + [anon_sym___cdecl] = ACTIONS(3196), + [anon_sym___clrcall] = ACTIONS(3196), + [anon_sym___stdcall] = ACTIONS(3196), + [anon_sym___fastcall] = ACTIONS(3196), + [anon_sym___thiscall] = ACTIONS(3196), + [anon_sym___vectorcall] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_RBRACE] = ACTIONS(3201), + [anon_sym_signed] = ACTIONS(3196), + [anon_sym_unsigned] = ACTIONS(3196), + [anon_sym_long] = ACTIONS(3196), + [anon_sym_short] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_register] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym___inline] = ACTIONS(3196), + [anon_sym___inline__] = ACTIONS(3196), + [anon_sym___forceinline] = ACTIONS(3196), + [anon_sym_thread_local] = ACTIONS(3196), + [anon_sym___thread] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_constexpr] = ACTIONS(3196), + [anon_sym_volatile] = ACTIONS(3196), + [anon_sym_restrict] = ACTIONS(3196), + [anon_sym___restrict__] = ACTIONS(3196), + [anon_sym__Atomic] = ACTIONS(3196), + [anon_sym__Noreturn] = ACTIONS(3196), + [anon_sym_noreturn] = ACTIONS(3196), + [anon_sym__Nonnull] = ACTIONS(3196), + [anon_sym_mutable] = ACTIONS(3196), + [anon_sym_constinit] = ACTIONS(3196), + [anon_sym_consteval] = ACTIONS(3196), + [anon_sym_alignas] = ACTIONS(3196), + [anon_sym__Alignas] = ACTIONS(3196), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), + [anon_sym_class] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3196), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3196), + [anon_sym_case] = ACTIONS(3196), + [anon_sym_default] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_do] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_goto] = ACTIONS(3196), + [anon_sym___try] = ACTIONS(3196), + [anon_sym___leave] = ACTIONS(3196), + [anon_sym_not] = ACTIONS(3196), + [anon_sym_compl] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3196), + [anon_sym___alignof__] = ACTIONS(3196), + [anon_sym___alignof] = ACTIONS(3196), + [anon_sym__alignof] = ACTIONS(3196), + [anon_sym_alignof] = ACTIONS(3196), + [anon_sym__Alignof] = ACTIONS(3196), + [anon_sym_offsetof] = ACTIONS(3196), + [anon_sym__Generic] = ACTIONS(3196), + [anon_sym_typename] = ACTIONS(3196), + [anon_sym_asm] = ACTIONS(3196), + [anon_sym___asm__] = ACTIONS(3196), + [anon_sym___asm] = ACTIONS(3196), + [sym_number_literal] = ACTIONS(3201), + [anon_sym_L_SQUOTE] = ACTIONS(3201), + [anon_sym_u_SQUOTE] = ACTIONS(3201), + [anon_sym_U_SQUOTE] = ACTIONS(3201), + [anon_sym_u8_SQUOTE] = ACTIONS(3201), + [anon_sym_SQUOTE] = ACTIONS(3201), + [anon_sym_L_DQUOTE] = ACTIONS(3201), + [anon_sym_u_DQUOTE] = ACTIONS(3201), + [anon_sym_U_DQUOTE] = ACTIONS(3201), + [anon_sym_u8_DQUOTE] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [sym_true] = ACTIONS(3196), + [sym_false] = ACTIONS(3196), + [anon_sym_NULL] = ACTIONS(3196), + [anon_sym_nullptr] = ACTIONS(3196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3196), + [anon_sym_decltype] = ACTIONS(3196), + [anon_sym_explicit] = ACTIONS(3196), + [anon_sym_export] = ACTIONS(3196), + [anon_sym_import] = ACTIONS(3196), + [anon_sym_template] = ACTIONS(3196), + [anon_sym_operator] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_delete] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_namespace] = ACTIONS(3196), + [anon_sym_static_assert] = ACTIONS(3196), + [anon_sym_concept] = ACTIONS(3196), + [anon_sym_co_return] = ACTIONS(3196), + [anon_sym_co_yield] = ACTIONS(3196), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3196), + [anon_sym_requires] = ACTIONS(3196), + [anon_sym_CARET_CARET] = ACTIONS(3201), + [anon_sym_LBRACK_COLON] = ACTIONS(3201), + [sym_this] = ACTIONS(3196), }, - [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), + [STATE(737)] = { + [sym_identifier] = ACTIONS(4343), + [aux_sym_preproc_include_token1] = ACTIONS(4343), + [aux_sym_preproc_def_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token2] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4343), + [sym_preproc_directive] = ACTIONS(4343), + [anon_sym_LPAREN2] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4345), + [anon_sym_TILDE] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym___extension__] = ACTIONS(4343), + [anon_sym_typedef] = ACTIONS(4343), + [anon_sym_virtual] = ACTIONS(4343), + [anon_sym_extern] = ACTIONS(4343), + [anon_sym___attribute__] = ACTIONS(4343), + [anon_sym___attribute] = ACTIONS(4343), + [anon_sym_using] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4345), + [anon_sym___declspec] = ACTIONS(4343), + [anon_sym___based] = ACTIONS(4343), + [anon_sym___cdecl] = ACTIONS(4343), + [anon_sym___clrcall] = ACTIONS(4343), + [anon_sym___stdcall] = ACTIONS(4343), + [anon_sym___fastcall] = ACTIONS(4343), + [anon_sym___thiscall] = ACTIONS(4343), + [anon_sym___vectorcall] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_signed] = ACTIONS(4343), + [anon_sym_unsigned] = ACTIONS(4343), + [anon_sym_long] = ACTIONS(4343), + [anon_sym_short] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4343), + [anon_sym_static] = ACTIONS(4343), + [anon_sym_register] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym___inline] = ACTIONS(4343), + [anon_sym___inline__] = ACTIONS(4343), + [anon_sym___forceinline] = ACTIONS(4343), + [anon_sym_thread_local] = ACTIONS(4343), + [anon_sym___thread] = ACTIONS(4343), + [anon_sym_const] = ACTIONS(4343), + [anon_sym_constexpr] = ACTIONS(4343), + [anon_sym_volatile] = ACTIONS(4343), + [anon_sym_restrict] = ACTIONS(4343), + [anon_sym___restrict__] = ACTIONS(4343), + [anon_sym__Atomic] = ACTIONS(4343), + [anon_sym__Noreturn] = ACTIONS(4343), + [anon_sym_noreturn] = ACTIONS(4343), + [anon_sym__Nonnull] = ACTIONS(4343), + [anon_sym_mutable] = ACTIONS(4343), + [anon_sym_constinit] = ACTIONS(4343), + [anon_sym_consteval] = ACTIONS(4343), + [anon_sym_alignas] = ACTIONS(4343), + [anon_sym__Alignas] = ACTIONS(4343), + [sym_primitive_type] = ACTIONS(4343), + [anon_sym_enum] = ACTIONS(4343), + [anon_sym_class] = ACTIONS(4343), + [anon_sym_struct] = ACTIONS(4343), + [anon_sym_union] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_switch] = ACTIONS(4343), + [anon_sym_case] = ACTIONS(4343), + [anon_sym_default] = ACTIONS(4343), + [anon_sym_while] = ACTIONS(4343), + [anon_sym_do] = ACTIONS(4343), + [anon_sym_for] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_goto] = ACTIONS(4343), + [anon_sym___try] = ACTIONS(4343), + [anon_sym___leave] = ACTIONS(4343), + [anon_sym_not] = ACTIONS(4343), + [anon_sym_compl] = ACTIONS(4343), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4343), + [anon_sym___alignof__] = ACTIONS(4343), + [anon_sym___alignof] = ACTIONS(4343), + [anon_sym__alignof] = ACTIONS(4343), + [anon_sym_alignof] = ACTIONS(4343), + [anon_sym__Alignof] = ACTIONS(4343), + [anon_sym_offsetof] = ACTIONS(4343), + [anon_sym__Generic] = ACTIONS(4343), + [anon_sym_typename] = ACTIONS(4343), + [anon_sym_asm] = ACTIONS(4343), + [anon_sym___asm__] = ACTIONS(4343), + [anon_sym___asm] = ACTIONS(4343), + [sym_number_literal] = ACTIONS(4345), + [anon_sym_L_SQUOTE] = ACTIONS(4345), + [anon_sym_u_SQUOTE] = ACTIONS(4345), + [anon_sym_U_SQUOTE] = ACTIONS(4345), + [anon_sym_u8_SQUOTE] = ACTIONS(4345), + [anon_sym_SQUOTE] = ACTIONS(4345), + [anon_sym_L_DQUOTE] = ACTIONS(4345), + [anon_sym_u_DQUOTE] = ACTIONS(4345), + [anon_sym_U_DQUOTE] = ACTIONS(4345), + [anon_sym_u8_DQUOTE] = ACTIONS(4345), + [anon_sym_DQUOTE] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [anon_sym_NULL] = ACTIONS(4343), + [anon_sym_nullptr] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4343), + [anon_sym_decltype] = ACTIONS(4343), + [anon_sym_explicit] = ACTIONS(4343), + [anon_sym_export] = ACTIONS(4343), + [anon_sym_module] = ACTIONS(4343), + [anon_sym_import] = ACTIONS(4343), + [anon_sym_template] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_delete] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_namespace] = ACTIONS(4343), + [anon_sym_static_assert] = ACTIONS(4343), + [anon_sym_concept] = ACTIONS(4343), + [anon_sym_co_return] = ACTIONS(4343), + [anon_sym_co_yield] = ACTIONS(4343), + [anon_sym_R_DQUOTE] = ACTIONS(4345), + [anon_sym_LR_DQUOTE] = ACTIONS(4345), + [anon_sym_uR_DQUOTE] = ACTIONS(4345), + [anon_sym_UR_DQUOTE] = ACTIONS(4345), + [anon_sym_u8R_DQUOTE] = ACTIONS(4345), + [anon_sym_co_await] = ACTIONS(4343), + [anon_sym_new] = ACTIONS(4343), + [anon_sym_requires] = ACTIONS(4343), + [anon_sym_CARET_CARET] = ACTIONS(4345), + [anon_sym_LBRACK_COLON] = ACTIONS(4345), + [sym_this] = ACTIONS(4343), }, - [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), + [STATE(738)] = { + [sym_identifier] = ACTIONS(4351), + [aux_sym_preproc_include_token1] = ACTIONS(4351), + [aux_sym_preproc_def_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token2] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4351), + [sym_preproc_directive] = ACTIONS(4351), + [anon_sym_LPAREN2] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_TILDE] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym___extension__] = ACTIONS(4351), + [anon_sym_typedef] = ACTIONS(4351), + [anon_sym_virtual] = ACTIONS(4351), + [anon_sym_extern] = ACTIONS(4351), + [anon_sym___attribute__] = ACTIONS(4351), + [anon_sym___attribute] = ACTIONS(4351), + [anon_sym_using] = ACTIONS(4351), + [anon_sym_COLON_COLON] = ACTIONS(4353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4353), + [anon_sym___declspec] = ACTIONS(4351), + [anon_sym___based] = ACTIONS(4351), + [anon_sym___cdecl] = ACTIONS(4351), + [anon_sym___clrcall] = ACTIONS(4351), + [anon_sym___stdcall] = ACTIONS(4351), + [anon_sym___fastcall] = ACTIONS(4351), + [anon_sym___thiscall] = ACTIONS(4351), + [anon_sym___vectorcall] = ACTIONS(4351), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_signed] = ACTIONS(4351), + [anon_sym_unsigned] = ACTIONS(4351), + [anon_sym_long] = ACTIONS(4351), + [anon_sym_short] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_static] = ACTIONS(4351), + [anon_sym_register] = ACTIONS(4351), + [anon_sym_inline] = ACTIONS(4351), + [anon_sym___inline] = ACTIONS(4351), + [anon_sym___inline__] = ACTIONS(4351), + [anon_sym___forceinline] = ACTIONS(4351), + [anon_sym_thread_local] = ACTIONS(4351), + [anon_sym___thread] = ACTIONS(4351), + [anon_sym_const] = ACTIONS(4351), + [anon_sym_constexpr] = ACTIONS(4351), + [anon_sym_volatile] = ACTIONS(4351), + [anon_sym_restrict] = ACTIONS(4351), + [anon_sym___restrict__] = ACTIONS(4351), + [anon_sym__Atomic] = ACTIONS(4351), + [anon_sym__Noreturn] = ACTIONS(4351), + [anon_sym_noreturn] = ACTIONS(4351), + [anon_sym__Nonnull] = ACTIONS(4351), + [anon_sym_mutable] = ACTIONS(4351), + [anon_sym_constinit] = ACTIONS(4351), + [anon_sym_consteval] = ACTIONS(4351), + [anon_sym_alignas] = ACTIONS(4351), + [anon_sym__Alignas] = ACTIONS(4351), + [sym_primitive_type] = ACTIONS(4351), + [anon_sym_enum] = ACTIONS(4351), + [anon_sym_class] = ACTIONS(4351), + [anon_sym_struct] = ACTIONS(4351), + [anon_sym_union] = ACTIONS(4351), + [anon_sym_if] = ACTIONS(4351), + [anon_sym_switch] = ACTIONS(4351), + [anon_sym_case] = ACTIONS(4351), + [anon_sym_default] = ACTIONS(4351), + [anon_sym_while] = ACTIONS(4351), + [anon_sym_do] = ACTIONS(4351), + [anon_sym_for] = ACTIONS(4351), + [anon_sym_return] = ACTIONS(4351), + [anon_sym_break] = ACTIONS(4351), + [anon_sym_continue] = ACTIONS(4351), + [anon_sym_goto] = ACTIONS(4351), + [anon_sym___try] = ACTIONS(4351), + [anon_sym___leave] = ACTIONS(4351), + [anon_sym_not] = ACTIONS(4351), + [anon_sym_compl] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4353), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_sizeof] = ACTIONS(4351), + [anon_sym___alignof__] = ACTIONS(4351), + [anon_sym___alignof] = ACTIONS(4351), + [anon_sym__alignof] = ACTIONS(4351), + [anon_sym_alignof] = ACTIONS(4351), + [anon_sym__Alignof] = ACTIONS(4351), + [anon_sym_offsetof] = ACTIONS(4351), + [anon_sym__Generic] = ACTIONS(4351), + [anon_sym_typename] = ACTIONS(4351), + [anon_sym_asm] = ACTIONS(4351), + [anon_sym___asm__] = ACTIONS(4351), + [anon_sym___asm] = ACTIONS(4351), + [sym_number_literal] = ACTIONS(4353), + [anon_sym_L_SQUOTE] = ACTIONS(4353), + [anon_sym_u_SQUOTE] = ACTIONS(4353), + [anon_sym_U_SQUOTE] = ACTIONS(4353), + [anon_sym_u8_SQUOTE] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4353), + [anon_sym_L_DQUOTE] = ACTIONS(4353), + [anon_sym_u_DQUOTE] = ACTIONS(4353), + [anon_sym_U_DQUOTE] = ACTIONS(4353), + [anon_sym_u8_DQUOTE] = ACTIONS(4353), + [anon_sym_DQUOTE] = ACTIONS(4353), + [sym_true] = ACTIONS(4351), + [sym_false] = ACTIONS(4351), + [anon_sym_NULL] = ACTIONS(4351), + [anon_sym_nullptr] = ACTIONS(4351), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4351), + [anon_sym_decltype] = ACTIONS(4351), + [anon_sym_explicit] = ACTIONS(4351), + [anon_sym_export] = ACTIONS(4351), + [anon_sym_module] = ACTIONS(4351), + [anon_sym_import] = ACTIONS(4351), + [anon_sym_template] = ACTIONS(4351), + [anon_sym_operator] = ACTIONS(4351), + [anon_sym_try] = ACTIONS(4351), + [anon_sym_delete] = ACTIONS(4351), + [anon_sym_throw] = ACTIONS(4351), + [anon_sym_namespace] = ACTIONS(4351), + [anon_sym_static_assert] = ACTIONS(4351), + [anon_sym_concept] = ACTIONS(4351), + [anon_sym_co_return] = ACTIONS(4351), + [anon_sym_co_yield] = ACTIONS(4351), + [anon_sym_R_DQUOTE] = ACTIONS(4353), + [anon_sym_LR_DQUOTE] = ACTIONS(4353), + [anon_sym_uR_DQUOTE] = ACTIONS(4353), + [anon_sym_UR_DQUOTE] = ACTIONS(4353), + [anon_sym_u8R_DQUOTE] = ACTIONS(4353), + [anon_sym_co_await] = ACTIONS(4351), + [anon_sym_new] = ACTIONS(4351), + [anon_sym_requires] = ACTIONS(4351), + [anon_sym_CARET_CARET] = ACTIONS(4353), + [anon_sym_LBRACK_COLON] = ACTIONS(4353), + [sym_this] = ACTIONS(4351), }, - [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), + [STATE(739)] = { + [sym_identifier] = ACTIONS(4068), + [aux_sym_preproc_include_token1] = ACTIONS(4068), + [aux_sym_preproc_def_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token2] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4068), + [sym_preproc_directive] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_TILDE] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym___extension__] = ACTIONS(4068), + [anon_sym_typedef] = ACTIONS(4068), + [anon_sym_virtual] = ACTIONS(4068), + [anon_sym_extern] = ACTIONS(4068), + [anon_sym___attribute__] = ACTIONS(4068), + [anon_sym___attribute] = ACTIONS(4068), + [anon_sym_using] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4070), + [anon_sym___declspec] = ACTIONS(4068), + [anon_sym___based] = ACTIONS(4068), + [anon_sym___cdecl] = ACTIONS(4068), + [anon_sym___clrcall] = ACTIONS(4068), + [anon_sym___stdcall] = ACTIONS(4068), + [anon_sym___fastcall] = ACTIONS(4068), + [anon_sym___thiscall] = ACTIONS(4068), + [anon_sym___vectorcall] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_signed] = ACTIONS(4068), + [anon_sym_unsigned] = ACTIONS(4068), + [anon_sym_long] = ACTIONS(4068), + [anon_sym_short] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_register] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym___inline] = ACTIONS(4068), + [anon_sym___inline__] = ACTIONS(4068), + [anon_sym___forceinline] = ACTIONS(4068), + [anon_sym_thread_local] = ACTIONS(4068), + [anon_sym___thread] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4068), + [anon_sym_constexpr] = ACTIONS(4068), + [anon_sym_volatile] = ACTIONS(4068), + [anon_sym_restrict] = ACTIONS(4068), + [anon_sym___restrict__] = ACTIONS(4068), + [anon_sym__Atomic] = ACTIONS(4068), + [anon_sym__Noreturn] = ACTIONS(4068), + [anon_sym_noreturn] = ACTIONS(4068), + [anon_sym__Nonnull] = ACTIONS(4068), + [anon_sym_mutable] = ACTIONS(4068), + [anon_sym_constinit] = ACTIONS(4068), + [anon_sym_consteval] = ACTIONS(4068), + [anon_sym_alignas] = ACTIONS(4068), + [anon_sym__Alignas] = ACTIONS(4068), + [sym_primitive_type] = ACTIONS(4068), + [anon_sym_enum] = ACTIONS(4068), + [anon_sym_class] = ACTIONS(4068), + [anon_sym_struct] = ACTIONS(4068), + [anon_sym_union] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_switch] = ACTIONS(4068), + [anon_sym_case] = ACTIONS(4068), + [anon_sym_default] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_do] = ACTIONS(4068), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_goto] = ACTIONS(4068), + [anon_sym___try] = ACTIONS(4068), + [anon_sym___leave] = ACTIONS(4068), + [anon_sym_not] = ACTIONS(4068), + [anon_sym_compl] = ACTIONS(4068), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4068), + [anon_sym___alignof__] = ACTIONS(4068), + [anon_sym___alignof] = ACTIONS(4068), + [anon_sym__alignof] = ACTIONS(4068), + [anon_sym_alignof] = ACTIONS(4068), + [anon_sym__Alignof] = ACTIONS(4068), + [anon_sym_offsetof] = ACTIONS(4068), + [anon_sym__Generic] = ACTIONS(4068), + [anon_sym_typename] = ACTIONS(4068), + [anon_sym_asm] = ACTIONS(4068), + [anon_sym___asm__] = ACTIONS(4068), + [anon_sym___asm] = ACTIONS(4068), + [sym_number_literal] = ACTIONS(4070), + [anon_sym_L_SQUOTE] = ACTIONS(4070), + [anon_sym_u_SQUOTE] = ACTIONS(4070), + [anon_sym_U_SQUOTE] = ACTIONS(4070), + [anon_sym_u8_SQUOTE] = ACTIONS(4070), + [anon_sym_SQUOTE] = ACTIONS(4070), + [anon_sym_L_DQUOTE] = ACTIONS(4070), + [anon_sym_u_DQUOTE] = ACTIONS(4070), + [anon_sym_U_DQUOTE] = ACTIONS(4070), + [anon_sym_u8_DQUOTE] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [sym_true] = ACTIONS(4068), + [sym_false] = ACTIONS(4068), + [anon_sym_NULL] = ACTIONS(4068), + [anon_sym_nullptr] = ACTIONS(4068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4068), + [anon_sym_decltype] = ACTIONS(4068), + [anon_sym_explicit] = ACTIONS(4068), + [anon_sym_export] = ACTIONS(4068), + [anon_sym_module] = ACTIONS(4068), + [anon_sym_import] = ACTIONS(4068), + [anon_sym_template] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_delete] = ACTIONS(4068), + [anon_sym_throw] = ACTIONS(4068), + [anon_sym_namespace] = ACTIONS(4068), + [anon_sym_static_assert] = ACTIONS(4068), + [anon_sym_concept] = ACTIONS(4068), + [anon_sym_co_return] = ACTIONS(4068), + [anon_sym_co_yield] = ACTIONS(4068), + [anon_sym_R_DQUOTE] = ACTIONS(4070), + [anon_sym_LR_DQUOTE] = ACTIONS(4070), + [anon_sym_uR_DQUOTE] = ACTIONS(4070), + [anon_sym_UR_DQUOTE] = ACTIONS(4070), + [anon_sym_u8R_DQUOTE] = ACTIONS(4070), + [anon_sym_co_await] = ACTIONS(4068), + [anon_sym_new] = ACTIONS(4068), + [anon_sym_requires] = ACTIONS(4068), + [anon_sym_CARET_CARET] = ACTIONS(4070), + [anon_sym_LBRACK_COLON] = ACTIONS(4070), + [sym_this] = ACTIONS(4068), }, - [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), + [STATE(740)] = { + [sym_expression] = STATE(6550), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [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(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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), - [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(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), - }, - [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), + [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(2728), + [anon_sym_COLON_RBRACK] = ACTIONS(2386), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(741)] = { + [sym_identifier] = ACTIONS(3716), + [aux_sym_preproc_include_token1] = ACTIONS(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token2] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym___cdecl] = ACTIONS(3716), + [anon_sym___clrcall] = ACTIONS(3716), + [anon_sym___stdcall] = ACTIONS(3716), + [anon_sym___fastcall] = ACTIONS(3716), + [anon_sym___thiscall] = ACTIONS(3716), + [anon_sym___vectorcall] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_case] = ACTIONS(3716), + [anon_sym_default] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_goto] = ACTIONS(3716), + [anon_sym___try] = ACTIONS(3716), + [anon_sym___leave] = ACTIONS(3716), + [anon_sym_not] = ACTIONS(3716), + [anon_sym_compl] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_sizeof] = ACTIONS(3716), + [anon_sym___alignof__] = ACTIONS(3716), + [anon_sym___alignof] = ACTIONS(3716), + [anon_sym__alignof] = ACTIONS(3716), + [anon_sym_alignof] = ACTIONS(3716), + [anon_sym__Alignof] = ACTIONS(3716), + [anon_sym_offsetof] = ACTIONS(3716), + [anon_sym__Generic] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(3716), + [anon_sym___asm__] = ACTIONS(3716), + [anon_sym___asm] = ACTIONS(3716), + [sym_number_literal] = ACTIONS(3718), + [anon_sym_L_SQUOTE] = ACTIONS(3718), + [anon_sym_u_SQUOTE] = ACTIONS(3718), + [anon_sym_U_SQUOTE] = ACTIONS(3718), + [anon_sym_u8_SQUOTE] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(3718), + [anon_sym_L_DQUOTE] = ACTIONS(3718), + [anon_sym_u_DQUOTE] = ACTIONS(3718), + [anon_sym_U_DQUOTE] = ACTIONS(3718), + [anon_sym_u8_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [anon_sym_NULL] = ACTIONS(3716), + [anon_sym_nullptr] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_concept] = ACTIONS(3716), + [anon_sym_co_return] = ACTIONS(3716), + [anon_sym_co_yield] = ACTIONS(3716), + [anon_sym_R_DQUOTE] = ACTIONS(3718), + [anon_sym_LR_DQUOTE] = ACTIONS(3718), + [anon_sym_uR_DQUOTE] = ACTIONS(3718), + [anon_sym_UR_DQUOTE] = ACTIONS(3718), + [anon_sym_u8R_DQUOTE] = ACTIONS(3718), + [anon_sym_co_await] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_requires] = ACTIONS(3716), + [anon_sym_CARET_CARET] = ACTIONS(3718), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), + [sym_this] = ACTIONS(3716), }, - [STATE(704)] = { - [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_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_RBRACE] = 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_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(742)] = { + [sym_identifier] = ACTIONS(3788), + [aux_sym_preproc_include_token1] = ACTIONS(3788), + [aux_sym_preproc_def_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token2] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3788), + [sym_preproc_directive] = ACTIONS(3788), + [anon_sym_LPAREN2] = ACTIONS(3790), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3788), + [anon_sym_PLUS] = ACTIONS(3788), + [anon_sym_STAR] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_AMP] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(3790), + [anon_sym___extension__] = ACTIONS(3788), + [anon_sym_typedef] = ACTIONS(3788), + [anon_sym_virtual] = ACTIONS(3788), + [anon_sym_extern] = ACTIONS(3788), + [anon_sym___attribute__] = ACTIONS(3788), + [anon_sym___attribute] = ACTIONS(3788), + [anon_sym_using] = ACTIONS(3788), + [anon_sym_COLON_COLON] = ACTIONS(3790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3790), + [anon_sym___declspec] = ACTIONS(3788), + [anon_sym___based] = ACTIONS(3788), + [anon_sym___cdecl] = ACTIONS(3788), + [anon_sym___clrcall] = ACTIONS(3788), + [anon_sym___stdcall] = ACTIONS(3788), + [anon_sym___fastcall] = ACTIONS(3788), + [anon_sym___thiscall] = ACTIONS(3788), + [anon_sym___vectorcall] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_signed] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3788), + [anon_sym_long] = ACTIONS(3788), + [anon_sym_short] = ACTIONS(3788), + [anon_sym_LBRACK] = ACTIONS(3788), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_register] = ACTIONS(3788), + [anon_sym_inline] = ACTIONS(3788), + [anon_sym___inline] = ACTIONS(3788), + [anon_sym___inline__] = ACTIONS(3788), + [anon_sym___forceinline] = ACTIONS(3788), + [anon_sym_thread_local] = ACTIONS(3788), + [anon_sym___thread] = ACTIONS(3788), + [anon_sym_const] = ACTIONS(3788), + [anon_sym_constexpr] = ACTIONS(3788), + [anon_sym_volatile] = ACTIONS(3788), + [anon_sym_restrict] = ACTIONS(3788), + [anon_sym___restrict__] = ACTIONS(3788), + [anon_sym__Atomic] = ACTIONS(3788), + [anon_sym__Noreturn] = ACTIONS(3788), + [anon_sym_noreturn] = ACTIONS(3788), + [anon_sym__Nonnull] = ACTIONS(3788), + [anon_sym_mutable] = ACTIONS(3788), + [anon_sym_constinit] = ACTIONS(3788), + [anon_sym_consteval] = ACTIONS(3788), + [anon_sym_alignas] = ACTIONS(3788), + [anon_sym__Alignas] = ACTIONS(3788), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_union] = ACTIONS(3788), + [anon_sym_if] = ACTIONS(3788), + [anon_sym_switch] = ACTIONS(3788), + [anon_sym_case] = ACTIONS(3788), + [anon_sym_default] = ACTIONS(3788), + [anon_sym_while] = ACTIONS(3788), + [anon_sym_do] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3788), + [anon_sym_return] = ACTIONS(3788), + [anon_sym_break] = ACTIONS(3788), + [anon_sym_continue] = ACTIONS(3788), + [anon_sym_goto] = ACTIONS(3788), + [anon_sym___try] = ACTIONS(3788), + [anon_sym___leave] = ACTIONS(3788), + [anon_sym_not] = ACTIONS(3788), + [anon_sym_compl] = ACTIONS(3788), + [anon_sym_DASH_DASH] = ACTIONS(3790), + [anon_sym_PLUS_PLUS] = ACTIONS(3790), + [anon_sym_sizeof] = ACTIONS(3788), + [anon_sym___alignof__] = ACTIONS(3788), + [anon_sym___alignof] = ACTIONS(3788), + [anon_sym__alignof] = ACTIONS(3788), + [anon_sym_alignof] = ACTIONS(3788), + [anon_sym__Alignof] = ACTIONS(3788), + [anon_sym_offsetof] = ACTIONS(3788), + [anon_sym__Generic] = ACTIONS(3788), + [anon_sym_typename] = ACTIONS(3788), + [anon_sym_asm] = ACTIONS(3788), + [anon_sym___asm__] = ACTIONS(3788), + [anon_sym___asm] = ACTIONS(3788), + [sym_number_literal] = ACTIONS(3790), + [anon_sym_L_SQUOTE] = ACTIONS(3790), + [anon_sym_u_SQUOTE] = ACTIONS(3790), + [anon_sym_U_SQUOTE] = ACTIONS(3790), + [anon_sym_u8_SQUOTE] = ACTIONS(3790), + [anon_sym_SQUOTE] = ACTIONS(3790), + [anon_sym_L_DQUOTE] = ACTIONS(3790), + [anon_sym_u_DQUOTE] = ACTIONS(3790), + [anon_sym_U_DQUOTE] = ACTIONS(3790), + [anon_sym_u8_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [sym_true] = ACTIONS(3788), + [sym_false] = ACTIONS(3788), + [anon_sym_NULL] = ACTIONS(3788), + [anon_sym_nullptr] = ACTIONS(3788), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3788), + [anon_sym_decltype] = ACTIONS(3788), + [anon_sym_explicit] = ACTIONS(3788), + [anon_sym_export] = ACTIONS(3788), + [anon_sym_module] = ACTIONS(3788), + [anon_sym_import] = ACTIONS(3788), + [anon_sym_template] = ACTIONS(3788), + [anon_sym_operator] = ACTIONS(3788), + [anon_sym_try] = ACTIONS(3788), + [anon_sym_delete] = ACTIONS(3788), + [anon_sym_throw] = ACTIONS(3788), + [anon_sym_namespace] = ACTIONS(3788), + [anon_sym_static_assert] = ACTIONS(3788), + [anon_sym_concept] = ACTIONS(3788), + [anon_sym_co_return] = ACTIONS(3788), + [anon_sym_co_yield] = ACTIONS(3788), + [anon_sym_R_DQUOTE] = ACTIONS(3790), + [anon_sym_LR_DQUOTE] = ACTIONS(3790), + [anon_sym_uR_DQUOTE] = ACTIONS(3790), + [anon_sym_UR_DQUOTE] = ACTIONS(3790), + [anon_sym_u8R_DQUOTE] = ACTIONS(3790), + [anon_sym_co_await] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3788), + [anon_sym_requires] = ACTIONS(3788), + [anon_sym_CARET_CARET] = ACTIONS(3790), + [anon_sym_LBRACK_COLON] = ACTIONS(3790), + [sym_this] = ACTIONS(3788), }, - [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), + [STATE(743)] = { + [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(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), + [STATE(744)] = { + [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(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_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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(745)] = { + [sym_identifier] = ACTIONS(4021), + [aux_sym_preproc_include_token1] = ACTIONS(4021), + [aux_sym_preproc_def_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token2] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4021), + [sym_preproc_directive] = ACTIONS(4021), + [anon_sym_LPAREN2] = ACTIONS(4023), + [anon_sym_BANG] = ACTIONS(4023), + [anon_sym_TILDE] = ACTIONS(4023), + [anon_sym_DASH] = ACTIONS(4021), + [anon_sym_PLUS] = ACTIONS(4021), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_AMP_AMP] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_SEMI] = ACTIONS(4023), + [anon_sym___extension__] = ACTIONS(4021), + [anon_sym_typedef] = ACTIONS(4021), + [anon_sym_virtual] = ACTIONS(4021), + [anon_sym_extern] = ACTIONS(4021), + [anon_sym___attribute__] = ACTIONS(4021), + [anon_sym___attribute] = ACTIONS(4021), + [anon_sym_using] = ACTIONS(4021), + [anon_sym_COLON_COLON] = ACTIONS(4023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4023), + [anon_sym___declspec] = ACTIONS(4021), + [anon_sym___based] = ACTIONS(4021), + [anon_sym___cdecl] = ACTIONS(4021), + [anon_sym___clrcall] = ACTIONS(4021), + [anon_sym___stdcall] = ACTIONS(4021), + [anon_sym___fastcall] = ACTIONS(4021), + [anon_sym___thiscall] = ACTIONS(4021), + [anon_sym___vectorcall] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4023), + [anon_sym_signed] = ACTIONS(4021), + [anon_sym_unsigned] = ACTIONS(4021), + [anon_sym_long] = ACTIONS(4021), + [anon_sym_short] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_register] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym___inline] = ACTIONS(4021), + [anon_sym___inline__] = ACTIONS(4021), + [anon_sym___forceinline] = ACTIONS(4021), + [anon_sym_thread_local] = ACTIONS(4021), + [anon_sym___thread] = ACTIONS(4021), + [anon_sym_const] = ACTIONS(4021), + [anon_sym_constexpr] = ACTIONS(4021), + [anon_sym_volatile] = ACTIONS(4021), + [anon_sym_restrict] = ACTIONS(4021), + [anon_sym___restrict__] = ACTIONS(4021), + [anon_sym__Atomic] = ACTIONS(4021), + [anon_sym__Noreturn] = ACTIONS(4021), + [anon_sym_noreturn] = ACTIONS(4021), + [anon_sym__Nonnull] = ACTIONS(4021), + [anon_sym_mutable] = ACTIONS(4021), + [anon_sym_constinit] = ACTIONS(4021), + [anon_sym_consteval] = ACTIONS(4021), + [anon_sym_alignas] = ACTIONS(4021), + [anon_sym__Alignas] = ACTIONS(4021), + [sym_primitive_type] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_struct] = ACTIONS(4021), + [anon_sym_union] = ACTIONS(4021), + [anon_sym_if] = ACTIONS(4021), + [anon_sym_switch] = ACTIONS(4021), + [anon_sym_case] = ACTIONS(4021), + [anon_sym_default] = ACTIONS(4021), + [anon_sym_while] = ACTIONS(4021), + [anon_sym_do] = ACTIONS(4021), + [anon_sym_for] = ACTIONS(4021), + [anon_sym_return] = ACTIONS(4021), + [anon_sym_break] = ACTIONS(4021), + [anon_sym_continue] = ACTIONS(4021), + [anon_sym_goto] = ACTIONS(4021), + [anon_sym___try] = ACTIONS(4021), + [anon_sym___leave] = ACTIONS(4021), + [anon_sym_not] = ACTIONS(4021), + [anon_sym_compl] = ACTIONS(4021), + [anon_sym_DASH_DASH] = ACTIONS(4023), + [anon_sym_PLUS_PLUS] = ACTIONS(4023), + [anon_sym_sizeof] = ACTIONS(4021), + [anon_sym___alignof__] = ACTIONS(4021), + [anon_sym___alignof] = ACTIONS(4021), + [anon_sym__alignof] = ACTIONS(4021), + [anon_sym_alignof] = ACTIONS(4021), + [anon_sym__Alignof] = ACTIONS(4021), + [anon_sym_offsetof] = ACTIONS(4021), + [anon_sym__Generic] = ACTIONS(4021), + [anon_sym_typename] = ACTIONS(4021), + [anon_sym_asm] = ACTIONS(4021), + [anon_sym___asm__] = ACTIONS(4021), + [anon_sym___asm] = ACTIONS(4021), + [sym_number_literal] = ACTIONS(4023), + [anon_sym_L_SQUOTE] = ACTIONS(4023), + [anon_sym_u_SQUOTE] = ACTIONS(4023), + [anon_sym_U_SQUOTE] = ACTIONS(4023), + [anon_sym_u8_SQUOTE] = ACTIONS(4023), + [anon_sym_SQUOTE] = ACTIONS(4023), + [anon_sym_L_DQUOTE] = ACTIONS(4023), + [anon_sym_u_DQUOTE] = ACTIONS(4023), + [anon_sym_U_DQUOTE] = ACTIONS(4023), + [anon_sym_u8_DQUOTE] = ACTIONS(4023), + [anon_sym_DQUOTE] = ACTIONS(4023), + [sym_true] = ACTIONS(4021), + [sym_false] = ACTIONS(4021), + [anon_sym_NULL] = ACTIONS(4021), + [anon_sym_nullptr] = ACTIONS(4021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4021), + [anon_sym_decltype] = ACTIONS(4021), + [anon_sym_explicit] = ACTIONS(4021), + [anon_sym_export] = ACTIONS(4021), + [anon_sym_module] = ACTIONS(4021), + [anon_sym_import] = ACTIONS(4021), + [anon_sym_template] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_try] = ACTIONS(4021), + [anon_sym_delete] = ACTIONS(4021), + [anon_sym_throw] = ACTIONS(4021), + [anon_sym_namespace] = ACTIONS(4021), + [anon_sym_static_assert] = ACTIONS(4021), + [anon_sym_concept] = ACTIONS(4021), + [anon_sym_co_return] = ACTIONS(4021), + [anon_sym_co_yield] = ACTIONS(4021), + [anon_sym_R_DQUOTE] = ACTIONS(4023), + [anon_sym_LR_DQUOTE] = ACTIONS(4023), + [anon_sym_uR_DQUOTE] = ACTIONS(4023), + [anon_sym_UR_DQUOTE] = ACTIONS(4023), + [anon_sym_u8R_DQUOTE] = ACTIONS(4023), + [anon_sym_co_await] = ACTIONS(4021), + [anon_sym_new] = ACTIONS(4021), + [anon_sym_requires] = ACTIONS(4021), + [anon_sym_CARET_CARET] = ACTIONS(4023), + [anon_sym_LBRACK_COLON] = ACTIONS(4023), + [sym_this] = ACTIONS(4021), }, - [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), + [STATE(746)] = { + [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(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), + [STATE(747)] = { + [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(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_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(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), + [STATE(748)] = { + [sym_identifier] = ACTIONS(4072), + [aux_sym_preproc_include_token1] = ACTIONS(4072), + [aux_sym_preproc_def_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token2] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4072), + [sym_preproc_directive] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4072), + [anon_sym_typedef] = ACTIONS(4072), + [anon_sym_virtual] = ACTIONS(4072), + [anon_sym_extern] = ACTIONS(4072), + [anon_sym___attribute__] = ACTIONS(4072), + [anon_sym___attribute] = ACTIONS(4072), + [anon_sym_using] = ACTIONS(4072), + [anon_sym_COLON_COLON] = ACTIONS(4074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4074), + [anon_sym___declspec] = ACTIONS(4072), + [anon_sym___based] = ACTIONS(4072), + [anon_sym___cdecl] = ACTIONS(4072), + [anon_sym___clrcall] = ACTIONS(4072), + [anon_sym___stdcall] = ACTIONS(4072), + [anon_sym___fastcall] = ACTIONS(4072), + [anon_sym___thiscall] = ACTIONS(4072), + [anon_sym___vectorcall] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_signed] = ACTIONS(4072), + [anon_sym_unsigned] = ACTIONS(4072), + [anon_sym_long] = ACTIONS(4072), + [anon_sym_short] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_static] = ACTIONS(4072), + [anon_sym_register] = ACTIONS(4072), + [anon_sym_inline] = ACTIONS(4072), + [anon_sym___inline] = ACTIONS(4072), + [anon_sym___inline__] = ACTIONS(4072), + [anon_sym___forceinline] = ACTIONS(4072), + [anon_sym_thread_local] = ACTIONS(4072), + [anon_sym___thread] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4072), + [anon_sym_constexpr] = ACTIONS(4072), + [anon_sym_volatile] = ACTIONS(4072), + [anon_sym_restrict] = ACTIONS(4072), + [anon_sym___restrict__] = ACTIONS(4072), + [anon_sym__Atomic] = ACTIONS(4072), + [anon_sym__Noreturn] = ACTIONS(4072), + [anon_sym_noreturn] = ACTIONS(4072), + [anon_sym__Nonnull] = ACTIONS(4072), + [anon_sym_mutable] = ACTIONS(4072), + [anon_sym_constinit] = ACTIONS(4072), + [anon_sym_consteval] = ACTIONS(4072), + [anon_sym_alignas] = ACTIONS(4072), + [anon_sym__Alignas] = ACTIONS(4072), + [sym_primitive_type] = ACTIONS(4072), + [anon_sym_enum] = ACTIONS(4072), + [anon_sym_class] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_union] = ACTIONS(4072), + [anon_sym_if] = ACTIONS(4072), + [anon_sym_switch] = ACTIONS(4072), + [anon_sym_case] = ACTIONS(4072), + [anon_sym_default] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(4072), + [anon_sym_do] = ACTIONS(4072), + [anon_sym_for] = ACTIONS(4072), + [anon_sym_return] = ACTIONS(4072), + [anon_sym_break] = ACTIONS(4072), + [anon_sym_continue] = ACTIONS(4072), + [anon_sym_goto] = ACTIONS(4072), + [anon_sym___try] = ACTIONS(4072), + [anon_sym___leave] = ACTIONS(4072), + [anon_sym_not] = ACTIONS(4072), + [anon_sym_compl] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4074), + [anon_sym_PLUS_PLUS] = ACTIONS(4074), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(4072), + [anon_sym___alignof] = ACTIONS(4072), + [anon_sym__alignof] = ACTIONS(4072), + [anon_sym_alignof] = ACTIONS(4072), + [anon_sym__Alignof] = ACTIONS(4072), + [anon_sym_offsetof] = ACTIONS(4072), + [anon_sym__Generic] = ACTIONS(4072), + [anon_sym_typename] = ACTIONS(4072), + [anon_sym_asm] = ACTIONS(4072), + [anon_sym___asm__] = ACTIONS(4072), + [anon_sym___asm] = ACTIONS(4072), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4074), + [anon_sym_u_SQUOTE] = ACTIONS(4074), + [anon_sym_U_SQUOTE] = ACTIONS(4074), + [anon_sym_u8_SQUOTE] = ACTIONS(4074), + [anon_sym_SQUOTE] = ACTIONS(4074), + [anon_sym_L_DQUOTE] = ACTIONS(4074), + [anon_sym_u_DQUOTE] = ACTIONS(4074), + [anon_sym_U_DQUOTE] = ACTIONS(4074), + [anon_sym_u8_DQUOTE] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [sym_true] = ACTIONS(4072), + [sym_false] = ACTIONS(4072), + [anon_sym_NULL] = ACTIONS(4072), + [anon_sym_nullptr] = ACTIONS(4072), [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_auto] = ACTIONS(4072), + [anon_sym_decltype] = ACTIONS(4072), + [anon_sym_explicit] = ACTIONS(4072), + [anon_sym_export] = ACTIONS(4072), + [anon_sym_module] = ACTIONS(4072), + [anon_sym_import] = ACTIONS(4072), + [anon_sym_template] = ACTIONS(4072), + [anon_sym_operator] = ACTIONS(4072), + [anon_sym_try] = ACTIONS(4072), + [anon_sym_delete] = ACTIONS(4072), + [anon_sym_throw] = ACTIONS(4072), + [anon_sym_namespace] = ACTIONS(4072), + [anon_sym_static_assert] = ACTIONS(4072), + [anon_sym_concept] = ACTIONS(4072), + [anon_sym_co_return] = ACTIONS(4072), + [anon_sym_co_yield] = ACTIONS(4072), + [anon_sym_R_DQUOTE] = ACTIONS(4074), + [anon_sym_LR_DQUOTE] = ACTIONS(4074), + [anon_sym_uR_DQUOTE] = ACTIONS(4074), + [anon_sym_UR_DQUOTE] = ACTIONS(4074), + [anon_sym_u8R_DQUOTE] = ACTIONS(4074), + [anon_sym_co_await] = ACTIONS(4072), + [anon_sym_new] = ACTIONS(4072), + [anon_sym_requires] = ACTIONS(4072), + [anon_sym_CARET_CARET] = ACTIONS(4074), + [anon_sym_LBRACK_COLON] = ACTIONS(4074), + [sym_this] = ACTIONS(4072), }, - [STATE(718)] = { + [STATE(749)] = { [sym_identifier] = ACTIONS(4084), [aux_sym_preproc_include_token1] = ACTIONS(4084), [aux_sym_preproc_def_token1] = ACTIONS(4084), @@ -162597,3398 +170177,6500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4086), [sym_this] = ACTIONS(4084), }, - [STATE(719)] = { - [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_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_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___try] = ACTIONS(4088), - [anon_sym___leave] = 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(750)] = { + [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(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(751)] = { + [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(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(752)] = { + [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(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(753)] = { + [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(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(754)] = { + [sym_identifier] = ACTIONS(4389), + [aux_sym_preproc_include_token1] = ACTIONS(4389), + [aux_sym_preproc_def_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token2] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4389), + [sym_preproc_directive] = ACTIONS(4389), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_typedef] = ACTIONS(4389), + [anon_sym_virtual] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym___attribute__] = ACTIONS(4389), + [anon_sym___attribute] = ACTIONS(4389), + [anon_sym_using] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4391), + [anon_sym___declspec] = ACTIONS(4389), + [anon_sym___based] = ACTIONS(4389), + [anon_sym___cdecl] = ACTIONS(4389), + [anon_sym___clrcall] = ACTIONS(4389), + [anon_sym___stdcall] = ACTIONS(4389), + [anon_sym___fastcall] = ACTIONS(4389), + [anon_sym___thiscall] = ACTIONS(4389), + [anon_sym___vectorcall] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_signed] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym___inline] = ACTIONS(4389), + [anon_sym___inline__] = ACTIONS(4389), + [anon_sym___forceinline] = ACTIONS(4389), + [anon_sym_thread_local] = ACTIONS(4389), + [anon_sym___thread] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_constinit] = ACTIONS(4389), + [anon_sym_consteval] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4389), + [anon_sym__Alignas] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_class] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_switch] = ACTIONS(4389), + [anon_sym_case] = ACTIONS(4389), + [anon_sym_default] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_do] = ACTIONS(4389), + [anon_sym_for] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_goto] = ACTIONS(4389), + [anon_sym___try] = ACTIONS(4389), + [anon_sym___leave] = ACTIONS(4389), + [anon_sym_not] = ACTIONS(4389), + [anon_sym_compl] = ACTIONS(4389), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_sizeof] = ACTIONS(4389), + [anon_sym___alignof__] = ACTIONS(4389), + [anon_sym___alignof] = ACTIONS(4389), + [anon_sym__alignof] = ACTIONS(4389), + [anon_sym_alignof] = ACTIONS(4389), + [anon_sym__Alignof] = ACTIONS(4389), + [anon_sym_offsetof] = ACTIONS(4389), + [anon_sym__Generic] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [anon_sym_asm] = ACTIONS(4389), + [anon_sym___asm__] = ACTIONS(4389), + [anon_sym___asm] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4391), + [anon_sym_L_SQUOTE] = ACTIONS(4391), + [anon_sym_u_SQUOTE] = ACTIONS(4391), + [anon_sym_U_SQUOTE] = ACTIONS(4391), + [anon_sym_u8_SQUOTE] = ACTIONS(4391), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_L_DQUOTE] = ACTIONS(4391), + [anon_sym_u_DQUOTE] = ACTIONS(4391), + [anon_sym_U_DQUOTE] = ACTIONS(4391), + [anon_sym_u8_DQUOTE] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [anon_sym_NULL] = ACTIONS(4389), + [anon_sym_nullptr] = ACTIONS(4389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4389), + [anon_sym_decltype] = ACTIONS(4389), + [anon_sym_explicit] = ACTIONS(4389), + [anon_sym_export] = ACTIONS(4389), + [anon_sym_module] = ACTIONS(4389), + [anon_sym_import] = ACTIONS(4389), + [anon_sym_template] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_delete] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_namespace] = ACTIONS(4389), + [anon_sym_static_assert] = ACTIONS(4389), + [anon_sym_concept] = ACTIONS(4389), + [anon_sym_co_return] = ACTIONS(4389), + [anon_sym_co_yield] = ACTIONS(4389), + [anon_sym_R_DQUOTE] = ACTIONS(4391), + [anon_sym_LR_DQUOTE] = ACTIONS(4391), + [anon_sym_uR_DQUOTE] = ACTIONS(4391), + [anon_sym_UR_DQUOTE] = ACTIONS(4391), + [anon_sym_u8R_DQUOTE] = ACTIONS(4391), + [anon_sym_co_await] = ACTIONS(4389), + [anon_sym_new] = ACTIONS(4389), + [anon_sym_requires] = ACTIONS(4389), + [anon_sym_CARET_CARET] = ACTIONS(4391), + [anon_sym_LBRACK_COLON] = ACTIONS(4391), + [sym_this] = ACTIONS(4389), }, - [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(755)] = { + [sym_identifier] = ACTIONS(3886), + [aux_sym_preproc_include_token1] = ACTIONS(3886), + [aux_sym_preproc_def_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token2] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3886), + [sym_preproc_directive] = ACTIONS(3886), + [anon_sym_LPAREN2] = ACTIONS(3888), + [anon_sym_BANG] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(3886), + [anon_sym_typedef] = ACTIONS(3886), + [anon_sym_virtual] = ACTIONS(3886), + [anon_sym_extern] = ACTIONS(3886), + [anon_sym___attribute__] = ACTIONS(3886), + [anon_sym___attribute] = ACTIONS(3886), + [anon_sym_using] = ACTIONS(3886), + [anon_sym_COLON_COLON] = ACTIONS(3888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3888), + [anon_sym___declspec] = ACTIONS(3886), + [anon_sym___based] = ACTIONS(3886), + [anon_sym___cdecl] = ACTIONS(3886), + [anon_sym___clrcall] = ACTIONS(3886), + [anon_sym___stdcall] = ACTIONS(3886), + [anon_sym___fastcall] = ACTIONS(3886), + [anon_sym___thiscall] = ACTIONS(3886), + [anon_sym___vectorcall] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_signed] = ACTIONS(3886), + [anon_sym_unsigned] = ACTIONS(3886), + [anon_sym_long] = ACTIONS(3886), + [anon_sym_short] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_static] = ACTIONS(3886), + [anon_sym_register] = ACTIONS(3886), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym___inline] = ACTIONS(3886), + [anon_sym___inline__] = ACTIONS(3886), + [anon_sym___forceinline] = ACTIONS(3886), + [anon_sym_thread_local] = ACTIONS(3886), + [anon_sym___thread] = ACTIONS(3886), + [anon_sym_const] = ACTIONS(3886), + [anon_sym_constexpr] = ACTIONS(3886), + [anon_sym_volatile] = ACTIONS(3886), + [anon_sym_restrict] = ACTIONS(3886), + [anon_sym___restrict__] = ACTIONS(3886), + [anon_sym__Atomic] = ACTIONS(3886), + [anon_sym__Noreturn] = ACTIONS(3886), + [anon_sym_noreturn] = ACTIONS(3886), + [anon_sym__Nonnull] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3886), + [anon_sym_constinit] = ACTIONS(3886), + [anon_sym_consteval] = ACTIONS(3886), + [anon_sym_alignas] = ACTIONS(3886), + [anon_sym__Alignas] = ACTIONS(3886), + [sym_primitive_type] = ACTIONS(3886), + [anon_sym_enum] = ACTIONS(3886), + [anon_sym_class] = ACTIONS(3886), + [anon_sym_struct] = ACTIONS(3886), + [anon_sym_union] = ACTIONS(3886), + [anon_sym_if] = ACTIONS(3886), + [anon_sym_switch] = ACTIONS(3886), + [anon_sym_case] = ACTIONS(3886), + [anon_sym_default] = ACTIONS(3886), + [anon_sym_while] = ACTIONS(3886), + [anon_sym_do] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3886), + [anon_sym_return] = ACTIONS(3886), + [anon_sym_break] = ACTIONS(3886), + [anon_sym_continue] = ACTIONS(3886), + [anon_sym_goto] = ACTIONS(3886), + [anon_sym___try] = ACTIONS(3886), + [anon_sym___leave] = ACTIONS(3886), + [anon_sym_not] = ACTIONS(3886), + [anon_sym_compl] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3888), + [anon_sym_sizeof] = ACTIONS(3886), + [anon_sym___alignof__] = ACTIONS(3886), + [anon_sym___alignof] = ACTIONS(3886), + [anon_sym__alignof] = ACTIONS(3886), + [anon_sym_alignof] = ACTIONS(3886), + [anon_sym__Alignof] = ACTIONS(3886), + [anon_sym_offsetof] = ACTIONS(3886), + [anon_sym__Generic] = ACTIONS(3886), + [anon_sym_typename] = ACTIONS(3886), + [anon_sym_asm] = ACTIONS(3886), + [anon_sym___asm__] = ACTIONS(3886), + [anon_sym___asm] = ACTIONS(3886), + [sym_number_literal] = ACTIONS(3888), + [anon_sym_L_SQUOTE] = ACTIONS(3888), + [anon_sym_u_SQUOTE] = ACTIONS(3888), + [anon_sym_U_SQUOTE] = ACTIONS(3888), + [anon_sym_u8_SQUOTE] = ACTIONS(3888), + [anon_sym_SQUOTE] = ACTIONS(3888), + [anon_sym_L_DQUOTE] = ACTIONS(3888), + [anon_sym_u_DQUOTE] = ACTIONS(3888), + [anon_sym_U_DQUOTE] = ACTIONS(3888), + [anon_sym_u8_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [sym_true] = ACTIONS(3886), + [sym_false] = ACTIONS(3886), + [anon_sym_NULL] = ACTIONS(3886), + [anon_sym_nullptr] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3886), + [anon_sym_decltype] = ACTIONS(3886), + [anon_sym_explicit] = ACTIONS(3886), + [anon_sym_export] = ACTIONS(3886), + [anon_sym_module] = ACTIONS(3886), + [anon_sym_import] = ACTIONS(3886), + [anon_sym_template] = ACTIONS(3886), + [anon_sym_operator] = ACTIONS(3886), + [anon_sym_try] = ACTIONS(3886), + [anon_sym_delete] = ACTIONS(3886), + [anon_sym_throw] = ACTIONS(3886), + [anon_sym_namespace] = ACTIONS(3886), + [anon_sym_static_assert] = ACTIONS(3886), + [anon_sym_concept] = ACTIONS(3886), + [anon_sym_co_return] = ACTIONS(3886), + [anon_sym_co_yield] = ACTIONS(3886), + [anon_sym_R_DQUOTE] = ACTIONS(3888), + [anon_sym_LR_DQUOTE] = ACTIONS(3888), + [anon_sym_uR_DQUOTE] = ACTIONS(3888), + [anon_sym_UR_DQUOTE] = ACTIONS(3888), + [anon_sym_u8R_DQUOTE] = ACTIONS(3888), + [anon_sym_co_await] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3886), + [anon_sym_requires] = ACTIONS(3886), + [anon_sym_CARET_CARET] = ACTIONS(3888), + [anon_sym_LBRACK_COLON] = ACTIONS(3888), + [sym_this] = ACTIONS(3886), }, - [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), + [STATE(756)] = { + [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(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), + [STATE(757)] = { + [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(758)] = { + [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(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_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), }, - [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), + [STATE(759)] = { + [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_else] = 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(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), + [STATE(760)] = { + [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_else] = 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(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), + [STATE(761)] = { + [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_else] = 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(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), + [STATE(762)] = { + [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_else] = 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(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), + [STATE(763)] = { + [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(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_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(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), + [STATE(764)] = { + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_include_token1] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym___cdecl] = ACTIONS(3452), + [anon_sym___clrcall] = ACTIONS(3452), + [anon_sym___stdcall] = ACTIONS(3452), + [anon_sym___fastcall] = ACTIONS(3452), + [anon_sym___thiscall] = ACTIONS(3452), + [anon_sym___vectorcall] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym___try] = ACTIONS(3452), + [anon_sym___leave] = ACTIONS(3452), + [anon_sym_not] = ACTIONS(3452), + [anon_sym_compl] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym___alignof__] = ACTIONS(3452), + [anon_sym___alignof] = ACTIONS(3452), + [anon_sym__alignof] = ACTIONS(3452), + [anon_sym_alignof] = ACTIONS(3452), + [anon_sym__Alignof] = ACTIONS(3452), + [anon_sym_offsetof] = ACTIONS(3452), + [anon_sym__Generic] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym___asm__] = ACTIONS(3452), + [anon_sym___asm] = ACTIONS(3452), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_L_SQUOTE] = ACTIONS(3454), + [anon_sym_u_SQUOTE] = ACTIONS(3454), + [anon_sym_U_SQUOTE] = ACTIONS(3454), + [anon_sym_u8_SQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_L_DQUOTE] = ACTIONS(3454), + [anon_sym_u_DQUOTE] = ACTIONS(3454), + [anon_sym_U_DQUOTE] = ACTIONS(3454), + [anon_sym_u8_DQUOTE] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [anon_sym_NULL] = ACTIONS(3452), + [anon_sym_nullptr] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_concept] = ACTIONS(3452), + [anon_sym_co_return] = ACTIONS(3452), + [anon_sym_co_yield] = ACTIONS(3452), + [anon_sym_R_DQUOTE] = ACTIONS(3454), + [anon_sym_LR_DQUOTE] = ACTIONS(3454), + [anon_sym_uR_DQUOTE] = ACTIONS(3454), + [anon_sym_UR_DQUOTE] = ACTIONS(3454), + [anon_sym_u8R_DQUOTE] = ACTIONS(3454), + [anon_sym_co_await] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_requires] = ACTIONS(3452), + [anon_sym_CARET_CARET] = ACTIONS(3454), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + [sym_this] = ACTIONS(3452), + }, + [STATE(765)] = { + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_include_token1] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym___cdecl] = ACTIONS(3452), + [anon_sym___clrcall] = ACTIONS(3452), + [anon_sym___stdcall] = ACTIONS(3452), + [anon_sym___fastcall] = ACTIONS(3452), + [anon_sym___thiscall] = ACTIONS(3452), + [anon_sym___vectorcall] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3452), + [anon_sym_default] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym___try] = ACTIONS(3452), + [anon_sym___leave] = ACTIONS(3452), + [anon_sym_not] = ACTIONS(3452), + [anon_sym_compl] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym___alignof__] = ACTIONS(3452), + [anon_sym___alignof] = ACTIONS(3452), + [anon_sym__alignof] = ACTIONS(3452), + [anon_sym_alignof] = ACTIONS(3452), + [anon_sym__Alignof] = ACTIONS(3452), + [anon_sym_offsetof] = ACTIONS(3452), + [anon_sym__Generic] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym___asm__] = ACTIONS(3452), + [anon_sym___asm] = ACTIONS(3452), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_L_SQUOTE] = ACTIONS(3454), + [anon_sym_u_SQUOTE] = ACTIONS(3454), + [anon_sym_U_SQUOTE] = ACTIONS(3454), + [anon_sym_u8_SQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_L_DQUOTE] = ACTIONS(3454), + [anon_sym_u_DQUOTE] = ACTIONS(3454), + [anon_sym_U_DQUOTE] = ACTIONS(3454), + [anon_sym_u8_DQUOTE] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [anon_sym_NULL] = ACTIONS(3452), + [anon_sym_nullptr] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_export] = ACTIONS(3452), + [anon_sym_import] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_namespace] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_concept] = ACTIONS(3452), + [anon_sym_co_return] = ACTIONS(3452), + [anon_sym_co_yield] = ACTIONS(3452), + [anon_sym_R_DQUOTE] = ACTIONS(3454), + [anon_sym_LR_DQUOTE] = ACTIONS(3454), + [anon_sym_uR_DQUOTE] = ACTIONS(3454), + [anon_sym_UR_DQUOTE] = ACTIONS(3454), + [anon_sym_u8R_DQUOTE] = ACTIONS(3454), + [anon_sym_co_await] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_requires] = ACTIONS(3452), + [anon_sym_CARET_CARET] = ACTIONS(3454), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + [sym_this] = ACTIONS(3452), + }, + [STATE(766)] = { + [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(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_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(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), + [STATE(767)] = { + [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(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_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(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), + [STATE(768)] = { + [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(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), + [STATE(769)] = { + [ts_builtin_sym_end] = ACTIONS(3941), + [sym_identifier] = ACTIONS(3939), + [aux_sym_preproc_include_token1] = ACTIONS(3939), + [aux_sym_preproc_def_token1] = ACTIONS(3939), + [anon_sym_COMMA] = ACTIONS(3941), + [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_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(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), + [STATE(770)] = { + [sym_identifier] = ACTIONS(3672), + [aux_sym_preproc_include_token1] = ACTIONS(3672), + [aux_sym_preproc_def_token1] = ACTIONS(3672), + [aux_sym_preproc_if_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3672), + [sym_preproc_directive] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym___attribute] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym___based] = ACTIONS(3672), + [anon_sym___cdecl] = ACTIONS(3672), + [anon_sym___clrcall] = ACTIONS(3672), + [anon_sym___stdcall] = ACTIONS(3672), + [anon_sym___fastcall] = ACTIONS(3672), + [anon_sym___thiscall] = ACTIONS(3672), + [anon_sym___vectorcall] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym__Nonnull] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym__Alignas] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [anon_sym___asm] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_explicit] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_operator] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_static_assert] = ACTIONS(3672), + [anon_sym_concept] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [anon_sym_CARET_CARET] = ACTIONS(3674), + [anon_sym_LBRACK_COLON] = ACTIONS(3674), + [sym_this] = ACTIONS(3672), }, - [STATE(737)] = { - [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_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_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_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_module] = 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(771)] = { + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_include_token1] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [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(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3472), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [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(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [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(3176), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3176), + [anon_sym_u_DQUOTE] = ACTIONS(3176), + [anon_sym_U_DQUOTE] = ACTIONS(3176), + [anon_sym_u8_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [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_R_DQUOTE] = ACTIONS(3176), + [anon_sym_LR_DQUOTE] = ACTIONS(3176), + [anon_sym_uR_DQUOTE] = ACTIONS(3176), + [anon_sym_UR_DQUOTE] = ACTIONS(3176), + [anon_sym_u8R_DQUOTE] = ACTIONS(3176), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3176), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), }, - [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(772)] = { + [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), }, - [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(773)] = { + [sym_identifier] = ACTIONS(3312), + [aux_sym_preproc_include_token1] = ACTIONS(3312), + [aux_sym_preproc_def_token1] = ACTIONS(3312), + [aux_sym_preproc_if_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3312), + [sym_preproc_directive] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym___extension__] = ACTIONS(3312), + [anon_sym_typedef] = ACTIONS(3312), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym___attribute] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3317), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym___based] = ACTIONS(3312), + [anon_sym___cdecl] = ACTIONS(3312), + [anon_sym___clrcall] = ACTIONS(3312), + [anon_sym___stdcall] = ACTIONS(3312), + [anon_sym___fastcall] = ACTIONS(3312), + [anon_sym___thiscall] = ACTIONS(3312), + [anon_sym___vectorcall] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym___inline] = ACTIONS(3312), + [anon_sym___inline__] = ACTIONS(3312), + [anon_sym___forceinline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym___thread] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym__Nonnull] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_alignas] = ACTIONS(3312), + [anon_sym__Alignas] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym___try] = ACTIONS(3312), + [anon_sym___leave] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_compl] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_sizeof] = ACTIONS(3312), + [anon_sym___alignof__] = ACTIONS(3312), + [anon_sym___alignof] = ACTIONS(3312), + [anon_sym__alignof] = ACTIONS(3312), + [anon_sym_alignof] = ACTIONS(3312), + [anon_sym__Alignof] = ACTIONS(3312), + [anon_sym_offsetof] = ACTIONS(3312), + [anon_sym__Generic] = ACTIONS(3312), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym___asm__] = ACTIONS(3312), + [anon_sym___asm] = ACTIONS(3312), + [sym_number_literal] = ACTIONS(3317), + [anon_sym_L_SQUOTE] = ACTIONS(3317), + [anon_sym_u_SQUOTE] = ACTIONS(3317), + [anon_sym_U_SQUOTE] = ACTIONS(3317), + [anon_sym_u8_SQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_L_DQUOTE] = ACTIONS(3317), + [anon_sym_u_DQUOTE] = ACTIONS(3317), + [anon_sym_U_DQUOTE] = ACTIONS(3317), + [anon_sym_u8_DQUOTE] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [anon_sym_NULL] = ACTIONS(3312), + [anon_sym_nullptr] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3312), + [anon_sym_decltype] = ACTIONS(3312), + [anon_sym_explicit] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3312), + [anon_sym_operator] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_static_assert] = ACTIONS(3312), + [anon_sym_concept] = ACTIONS(3312), + [anon_sym_co_return] = ACTIONS(3312), + [anon_sym_co_yield] = ACTIONS(3312), + [anon_sym_R_DQUOTE] = ACTIONS(3317), + [anon_sym_LR_DQUOTE] = ACTIONS(3317), + [anon_sym_uR_DQUOTE] = ACTIONS(3317), + [anon_sym_UR_DQUOTE] = ACTIONS(3317), + [anon_sym_u8R_DQUOTE] = ACTIONS(3317), + [anon_sym_co_await] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_requires] = ACTIONS(3312), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(3317), + [sym_this] = ACTIONS(3312), }, - [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(774)] = { + [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(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(775)] = { + [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_else] = 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(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(776)] = { + [sym_identifier] = ACTIONS(3448), + [aux_sym_preproc_include_token1] = ACTIONS(3448), + [aux_sym_preproc_def_token1] = ACTIONS(3448), + [aux_sym_preproc_if_token1] = ACTIONS(3448), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3448), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3448), + [sym_preproc_directive] = ACTIONS(3448), + [anon_sym_LPAREN2] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3450), + [anon_sym_AMP_AMP] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym___extension__] = ACTIONS(3448), + [anon_sym_typedef] = ACTIONS(3448), + [anon_sym_virtual] = ACTIONS(3448), + [anon_sym_extern] = ACTIONS(3448), + [anon_sym___attribute__] = ACTIONS(3448), + [anon_sym___attribute] = ACTIONS(3448), + [anon_sym_using] = ACTIONS(3448), + [anon_sym_COLON_COLON] = ACTIONS(3450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3450), + [anon_sym___declspec] = ACTIONS(3448), + [anon_sym___based] = ACTIONS(3448), + [anon_sym___cdecl] = ACTIONS(3448), + [anon_sym___clrcall] = ACTIONS(3448), + [anon_sym___stdcall] = ACTIONS(3448), + [anon_sym___fastcall] = ACTIONS(3448), + [anon_sym___thiscall] = ACTIONS(3448), + [anon_sym___vectorcall] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_RBRACE] = ACTIONS(3450), + [anon_sym_signed] = ACTIONS(3448), + [anon_sym_unsigned] = ACTIONS(3448), + [anon_sym_long] = ACTIONS(3448), + [anon_sym_short] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_register] = ACTIONS(3448), + [anon_sym_inline] = ACTIONS(3448), + [anon_sym___inline] = ACTIONS(3448), + [anon_sym___inline__] = ACTIONS(3448), + [anon_sym___forceinline] = ACTIONS(3448), + [anon_sym_thread_local] = ACTIONS(3448), + [anon_sym___thread] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_constexpr] = ACTIONS(3448), + [anon_sym_volatile] = ACTIONS(3448), + [anon_sym_restrict] = ACTIONS(3448), + [anon_sym___restrict__] = ACTIONS(3448), + [anon_sym__Atomic] = ACTIONS(3448), + [anon_sym__Noreturn] = ACTIONS(3448), + [anon_sym_noreturn] = ACTIONS(3448), + [anon_sym__Nonnull] = ACTIONS(3448), + [anon_sym_mutable] = ACTIONS(3448), + [anon_sym_constinit] = ACTIONS(3448), + [anon_sym_consteval] = ACTIONS(3448), + [anon_sym_alignas] = ACTIONS(3448), + [anon_sym__Alignas] = ACTIONS(3448), + [sym_primitive_type] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), + [anon_sym_class] = ACTIONS(3448), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_union] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3448), + [anon_sym_case] = ACTIONS(3448), + [anon_sym_default] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_do] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_goto] = ACTIONS(3448), + [anon_sym___try] = ACTIONS(3448), + [anon_sym___leave] = ACTIONS(3448), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_sizeof] = ACTIONS(3448), + [anon_sym___alignof__] = ACTIONS(3448), + [anon_sym___alignof] = ACTIONS(3448), + [anon_sym__alignof] = ACTIONS(3448), + [anon_sym_alignof] = ACTIONS(3448), + [anon_sym__Alignof] = ACTIONS(3448), + [anon_sym_offsetof] = ACTIONS(3448), + [anon_sym__Generic] = ACTIONS(3448), + [anon_sym_typename] = ACTIONS(3448), + [anon_sym_asm] = ACTIONS(3448), + [anon_sym___asm__] = ACTIONS(3448), + [anon_sym___asm] = ACTIONS(3448), + [sym_number_literal] = ACTIONS(3450), + [anon_sym_L_SQUOTE] = ACTIONS(3450), + [anon_sym_u_SQUOTE] = ACTIONS(3450), + [anon_sym_U_SQUOTE] = ACTIONS(3450), + [anon_sym_u8_SQUOTE] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3450), + [anon_sym_L_DQUOTE] = ACTIONS(3450), + [anon_sym_u_DQUOTE] = ACTIONS(3450), + [anon_sym_U_DQUOTE] = ACTIONS(3450), + [anon_sym_u8_DQUOTE] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(3450), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [anon_sym_NULL] = ACTIONS(3448), + [anon_sym_nullptr] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3448), + [anon_sym_decltype] = ACTIONS(3448), + [anon_sym_explicit] = ACTIONS(3448), + [anon_sym_export] = ACTIONS(3448), + [anon_sym_import] = ACTIONS(3448), + [anon_sym_template] = ACTIONS(3448), + [anon_sym_operator] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [anon_sym_delete] = ACTIONS(3448), + [anon_sym_throw] = ACTIONS(3448), + [anon_sym_namespace] = ACTIONS(3448), + [anon_sym_static_assert] = ACTIONS(3448), + [anon_sym_concept] = ACTIONS(3448), + [anon_sym_co_return] = ACTIONS(3448), + [anon_sym_co_yield] = ACTIONS(3448), + [anon_sym_R_DQUOTE] = ACTIONS(3450), + [anon_sym_LR_DQUOTE] = ACTIONS(3450), + [anon_sym_uR_DQUOTE] = ACTIONS(3450), + [anon_sym_UR_DQUOTE] = ACTIONS(3450), + [anon_sym_u8R_DQUOTE] = ACTIONS(3450), + [anon_sym_co_await] = ACTIONS(3448), + [anon_sym_new] = ACTIONS(3448), + [anon_sym_requires] = ACTIONS(3448), + [anon_sym_CARET_CARET] = ACTIONS(3450), + [anon_sym_LBRACK_COLON] = ACTIONS(3450), + [sym_this] = ACTIONS(3448), }, - [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), + [STATE(777)] = { + [sym_identifier] = ACTIONS(3456), + [aux_sym_preproc_include_token1] = ACTIONS(3456), + [aux_sym_preproc_def_token1] = ACTIONS(3456), + [aux_sym_preproc_if_token1] = ACTIONS(3456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3456), + [sym_preproc_directive] = ACTIONS(3456), + [anon_sym_LPAREN2] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(3458), + [anon_sym_AMP_AMP] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym___extension__] = ACTIONS(3456), + [anon_sym_typedef] = ACTIONS(3456), + [anon_sym_virtual] = ACTIONS(3456), + [anon_sym_extern] = ACTIONS(3456), + [anon_sym___attribute__] = ACTIONS(3456), + [anon_sym___attribute] = ACTIONS(3456), + [anon_sym_using] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3458), + [anon_sym___declspec] = ACTIONS(3456), + [anon_sym___based] = ACTIONS(3456), + [anon_sym___cdecl] = ACTIONS(3456), + [anon_sym___clrcall] = ACTIONS(3456), + [anon_sym___stdcall] = ACTIONS(3456), + [anon_sym___fastcall] = ACTIONS(3456), + [anon_sym___thiscall] = ACTIONS(3456), + [anon_sym___vectorcall] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(3458), + [anon_sym_signed] = ACTIONS(3456), + [anon_sym_unsigned] = ACTIONS(3456), + [anon_sym_long] = ACTIONS(3456), + [anon_sym_short] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_register] = ACTIONS(3456), + [anon_sym_inline] = ACTIONS(3456), + [anon_sym___inline] = ACTIONS(3456), + [anon_sym___inline__] = ACTIONS(3456), + [anon_sym___forceinline] = ACTIONS(3456), + [anon_sym_thread_local] = ACTIONS(3456), + [anon_sym___thread] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_constexpr] = ACTIONS(3456), + [anon_sym_volatile] = ACTIONS(3456), + [anon_sym_restrict] = ACTIONS(3456), + [anon_sym___restrict__] = ACTIONS(3456), + [anon_sym__Atomic] = ACTIONS(3456), + [anon_sym__Noreturn] = ACTIONS(3456), + [anon_sym_noreturn] = ACTIONS(3456), + [anon_sym__Nonnull] = ACTIONS(3456), + [anon_sym_mutable] = ACTIONS(3456), + [anon_sym_constinit] = ACTIONS(3456), + [anon_sym_consteval] = ACTIONS(3456), + [anon_sym_alignas] = ACTIONS(3456), + [anon_sym__Alignas] = ACTIONS(3456), + [sym_primitive_type] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), + [anon_sym_class] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(3456), + [anon_sym_union] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_case] = ACTIONS(3456), + [anon_sym_default] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_goto] = ACTIONS(3456), + [anon_sym___try] = ACTIONS(3456), + [anon_sym___leave] = ACTIONS(3456), + [anon_sym_not] = ACTIONS(3456), + [anon_sym_compl] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_sizeof] = ACTIONS(3456), + [anon_sym___alignof__] = ACTIONS(3456), + [anon_sym___alignof] = ACTIONS(3456), + [anon_sym__alignof] = ACTIONS(3456), + [anon_sym_alignof] = ACTIONS(3456), + [anon_sym__Alignof] = ACTIONS(3456), + [anon_sym_offsetof] = ACTIONS(3456), + [anon_sym__Generic] = ACTIONS(3456), + [anon_sym_typename] = ACTIONS(3456), + [anon_sym_asm] = ACTIONS(3456), + [anon_sym___asm__] = ACTIONS(3456), + [anon_sym___asm] = ACTIONS(3456), + [sym_number_literal] = ACTIONS(3458), + [anon_sym_L_SQUOTE] = ACTIONS(3458), + [anon_sym_u_SQUOTE] = ACTIONS(3458), + [anon_sym_U_SQUOTE] = ACTIONS(3458), + [anon_sym_u8_SQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_L_DQUOTE] = ACTIONS(3458), + [anon_sym_u_DQUOTE] = ACTIONS(3458), + [anon_sym_U_DQUOTE] = ACTIONS(3458), + [anon_sym_u8_DQUOTE] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [sym_true] = ACTIONS(3456), + [sym_false] = ACTIONS(3456), + [anon_sym_NULL] = ACTIONS(3456), + [anon_sym_nullptr] = ACTIONS(3456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3456), + [anon_sym_decltype] = ACTIONS(3456), + [anon_sym_explicit] = ACTIONS(3456), + [anon_sym_export] = ACTIONS(3456), + [anon_sym_import] = ACTIONS(3456), + [anon_sym_template] = ACTIONS(3456), + [anon_sym_operator] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_delete] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_namespace] = ACTIONS(3456), + [anon_sym_static_assert] = ACTIONS(3456), + [anon_sym_concept] = ACTIONS(3456), + [anon_sym_co_return] = ACTIONS(3456), + [anon_sym_co_yield] = ACTIONS(3456), + [anon_sym_R_DQUOTE] = ACTIONS(3458), + [anon_sym_LR_DQUOTE] = ACTIONS(3458), + [anon_sym_uR_DQUOTE] = ACTIONS(3458), + [anon_sym_UR_DQUOTE] = ACTIONS(3458), + [anon_sym_u8R_DQUOTE] = ACTIONS(3458), + [anon_sym_co_await] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_requires] = ACTIONS(3456), + [anon_sym_CARET_CARET] = ACTIONS(3458), + [anon_sym_LBRACK_COLON] = ACTIONS(3458), + [sym_this] = ACTIONS(3456), + }, + [STATE(778)] = { + [sym_identifier] = ACTIONS(3460), + [aux_sym_preproc_include_token1] = ACTIONS(3460), + [aux_sym_preproc_def_token1] = ACTIONS(3460), + [aux_sym_preproc_if_token1] = ACTIONS(3460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3460), + [sym_preproc_directive] = ACTIONS(3460), + [anon_sym_LPAREN2] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_PLUS] = ACTIONS(3460), + [anon_sym_STAR] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3460), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym___extension__] = ACTIONS(3460), + [anon_sym_typedef] = ACTIONS(3460), + [anon_sym_virtual] = ACTIONS(3460), + [anon_sym_extern] = ACTIONS(3460), + [anon_sym___attribute__] = ACTIONS(3460), + [anon_sym___attribute] = ACTIONS(3460), + [anon_sym_using] = ACTIONS(3460), + [anon_sym_COLON_COLON] = ACTIONS(3462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3462), + [anon_sym___declspec] = ACTIONS(3460), + [anon_sym___based] = ACTIONS(3460), + [anon_sym___cdecl] = ACTIONS(3460), + [anon_sym___clrcall] = ACTIONS(3460), + [anon_sym___stdcall] = ACTIONS(3460), + [anon_sym___fastcall] = ACTIONS(3460), + [anon_sym___thiscall] = ACTIONS(3460), + [anon_sym___vectorcall] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_RBRACE] = ACTIONS(3462), + [anon_sym_signed] = ACTIONS(3460), + [anon_sym_unsigned] = ACTIONS(3460), + [anon_sym_long] = ACTIONS(3460), + [anon_sym_short] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(3460), + [anon_sym_register] = ACTIONS(3460), + [anon_sym_inline] = ACTIONS(3460), + [anon_sym___inline] = ACTIONS(3460), + [anon_sym___inline__] = ACTIONS(3460), + [anon_sym___forceinline] = ACTIONS(3460), + [anon_sym_thread_local] = ACTIONS(3460), + [anon_sym___thread] = ACTIONS(3460), + [anon_sym_const] = ACTIONS(3460), + [anon_sym_constexpr] = ACTIONS(3460), + [anon_sym_volatile] = ACTIONS(3460), + [anon_sym_restrict] = ACTIONS(3460), + [anon_sym___restrict__] = ACTIONS(3460), + [anon_sym__Atomic] = ACTIONS(3460), + [anon_sym__Noreturn] = ACTIONS(3460), + [anon_sym_noreturn] = ACTIONS(3460), + [anon_sym__Nonnull] = ACTIONS(3460), + [anon_sym_mutable] = ACTIONS(3460), + [anon_sym_constinit] = ACTIONS(3460), + [anon_sym_consteval] = ACTIONS(3460), + [anon_sym_alignas] = ACTIONS(3460), + [anon_sym__Alignas] = ACTIONS(3460), + [sym_primitive_type] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), + [anon_sym_class] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(3460), + [anon_sym_union] = ACTIONS(3460), + [anon_sym_if] = ACTIONS(3460), + [anon_sym_else] = ACTIONS(3460), + [anon_sym_switch] = ACTIONS(3460), + [anon_sym_case] = ACTIONS(3460), + [anon_sym_default] = ACTIONS(3460), + [anon_sym_while] = ACTIONS(3460), + [anon_sym_do] = ACTIONS(3460), + [anon_sym_for] = ACTIONS(3460), + [anon_sym_return] = ACTIONS(3460), + [anon_sym_break] = ACTIONS(3460), + [anon_sym_continue] = ACTIONS(3460), + [anon_sym_goto] = ACTIONS(3460), + [anon_sym___try] = ACTIONS(3460), + [anon_sym___leave] = ACTIONS(3460), + [anon_sym_not] = ACTIONS(3460), + [anon_sym_compl] = ACTIONS(3460), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_sizeof] = ACTIONS(3460), + [anon_sym___alignof__] = ACTIONS(3460), + [anon_sym___alignof] = ACTIONS(3460), + [anon_sym__alignof] = ACTIONS(3460), + [anon_sym_alignof] = ACTIONS(3460), + [anon_sym__Alignof] = ACTIONS(3460), + [anon_sym_offsetof] = ACTIONS(3460), + [anon_sym__Generic] = ACTIONS(3460), + [anon_sym_typename] = ACTIONS(3460), + [anon_sym_asm] = ACTIONS(3460), + [anon_sym___asm__] = ACTIONS(3460), + [anon_sym___asm] = ACTIONS(3460), + [sym_number_literal] = ACTIONS(3462), + [anon_sym_L_SQUOTE] = ACTIONS(3462), + [anon_sym_u_SQUOTE] = ACTIONS(3462), + [anon_sym_U_SQUOTE] = ACTIONS(3462), + [anon_sym_u8_SQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_L_DQUOTE] = ACTIONS(3462), + [anon_sym_u_DQUOTE] = ACTIONS(3462), + [anon_sym_U_DQUOTE] = ACTIONS(3462), + [anon_sym_u8_DQUOTE] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [sym_true] = ACTIONS(3460), + [sym_false] = ACTIONS(3460), + [anon_sym_NULL] = ACTIONS(3460), + [anon_sym_nullptr] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3460), + [anon_sym_decltype] = ACTIONS(3460), + [anon_sym_explicit] = ACTIONS(3460), + [anon_sym_export] = ACTIONS(3460), + [anon_sym_import] = ACTIONS(3460), + [anon_sym_template] = ACTIONS(3460), + [anon_sym_operator] = ACTIONS(3460), + [anon_sym_try] = ACTIONS(3460), + [anon_sym_delete] = ACTIONS(3460), + [anon_sym_throw] = ACTIONS(3460), + [anon_sym_namespace] = ACTIONS(3460), + [anon_sym_static_assert] = ACTIONS(3460), + [anon_sym_concept] = ACTIONS(3460), + [anon_sym_co_return] = ACTIONS(3460), + [anon_sym_co_yield] = ACTIONS(3460), + [anon_sym_R_DQUOTE] = ACTIONS(3462), + [anon_sym_LR_DQUOTE] = ACTIONS(3462), + [anon_sym_uR_DQUOTE] = ACTIONS(3462), + [anon_sym_UR_DQUOTE] = ACTIONS(3462), + [anon_sym_u8R_DQUOTE] = ACTIONS(3462), + [anon_sym_co_await] = ACTIONS(3460), + [anon_sym_new] = ACTIONS(3460), + [anon_sym_requires] = ACTIONS(3460), + [anon_sym_CARET_CARET] = ACTIONS(3462), + [anon_sym_LBRACK_COLON] = ACTIONS(3462), + [sym_this] = ACTIONS(3460), + }, + [STATE(779)] = { + [sym_identifier] = ACTIONS(3464), + [aux_sym_preproc_include_token1] = ACTIONS(3464), + [aux_sym_preproc_def_token1] = ACTIONS(3464), + [aux_sym_preproc_if_token1] = ACTIONS(3464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3464), + [sym_preproc_directive] = ACTIONS(3464), + [anon_sym_LPAREN2] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_AMP_AMP] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym___extension__] = ACTIONS(3464), + [anon_sym_typedef] = ACTIONS(3464), + [anon_sym_virtual] = ACTIONS(3464), + [anon_sym_extern] = ACTIONS(3464), + [anon_sym___attribute__] = ACTIONS(3464), + [anon_sym___attribute] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_COLON_COLON] = ACTIONS(3466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3466), + [anon_sym___declspec] = ACTIONS(3464), + [anon_sym___based] = ACTIONS(3464), + [anon_sym___cdecl] = ACTIONS(3464), + [anon_sym___clrcall] = ACTIONS(3464), + [anon_sym___stdcall] = ACTIONS(3464), + [anon_sym___fastcall] = ACTIONS(3464), + [anon_sym___thiscall] = ACTIONS(3464), + [anon_sym___vectorcall] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_RBRACE] = ACTIONS(3466), + [anon_sym_signed] = ACTIONS(3464), + [anon_sym_unsigned] = ACTIONS(3464), + [anon_sym_long] = ACTIONS(3464), + [anon_sym_short] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_register] = ACTIONS(3464), + [anon_sym_inline] = ACTIONS(3464), + [anon_sym___inline] = ACTIONS(3464), + [anon_sym___inline__] = ACTIONS(3464), + [anon_sym___forceinline] = ACTIONS(3464), + [anon_sym_thread_local] = ACTIONS(3464), + [anon_sym___thread] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_constexpr] = ACTIONS(3464), + [anon_sym_volatile] = ACTIONS(3464), + [anon_sym_restrict] = ACTIONS(3464), + [anon_sym___restrict__] = ACTIONS(3464), + [anon_sym__Atomic] = ACTIONS(3464), + [anon_sym__Noreturn] = ACTIONS(3464), + [anon_sym_noreturn] = ACTIONS(3464), + [anon_sym__Nonnull] = ACTIONS(3464), + [anon_sym_mutable] = ACTIONS(3464), + [anon_sym_constinit] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(3464), + [anon_sym__Alignas] = ACTIONS(3464), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_struct] = ACTIONS(3464), + [anon_sym_union] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_goto] = ACTIONS(3464), + [anon_sym___try] = ACTIONS(3464), + [anon_sym___leave] = ACTIONS(3464), + [anon_sym_not] = ACTIONS(3464), + [anon_sym_compl] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(3464), + [anon_sym___alignof__] = ACTIONS(3464), + [anon_sym___alignof] = ACTIONS(3464), + [anon_sym__alignof] = ACTIONS(3464), + [anon_sym_alignof] = ACTIONS(3464), + [anon_sym__Alignof] = ACTIONS(3464), + [anon_sym_offsetof] = ACTIONS(3464), + [anon_sym__Generic] = ACTIONS(3464), + [anon_sym_typename] = ACTIONS(3464), + [anon_sym_asm] = ACTIONS(3464), + [anon_sym___asm__] = ACTIONS(3464), + [anon_sym___asm] = ACTIONS(3464), + [sym_number_literal] = ACTIONS(3466), + [anon_sym_L_SQUOTE] = ACTIONS(3466), + [anon_sym_u_SQUOTE] = ACTIONS(3466), + [anon_sym_U_SQUOTE] = ACTIONS(3466), + [anon_sym_u8_SQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_L_DQUOTE] = ACTIONS(3466), + [anon_sym_u_DQUOTE] = ACTIONS(3466), + [anon_sym_U_DQUOTE] = ACTIONS(3466), + [anon_sym_u8_DQUOTE] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [anon_sym_NULL] = ACTIONS(3464), + [anon_sym_nullptr] = ACTIONS(3464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3464), + [anon_sym_decltype] = ACTIONS(3464), + [anon_sym_explicit] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_template] = ACTIONS(3464), + [anon_sym_operator] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_static_assert] = ACTIONS(3464), + [anon_sym_concept] = ACTIONS(3464), + [anon_sym_co_return] = ACTIONS(3464), + [anon_sym_co_yield] = ACTIONS(3464), + [anon_sym_R_DQUOTE] = ACTIONS(3466), + [anon_sym_LR_DQUOTE] = ACTIONS(3466), + [anon_sym_uR_DQUOTE] = ACTIONS(3466), + [anon_sym_UR_DQUOTE] = ACTIONS(3466), + [anon_sym_u8R_DQUOTE] = ACTIONS(3466), + [anon_sym_co_await] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_requires] = ACTIONS(3464), + [anon_sym_CARET_CARET] = ACTIONS(3466), + [anon_sym_LBRACK_COLON] = ACTIONS(3466), + [sym_this] = ACTIONS(3464), + }, + [STATE(780)] = { + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_include_token1] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [anon_sym_RPAREN] = ACTIONS(3472), + [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(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3472), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3176), + [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(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [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(3176), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3176), + [anon_sym_u_DQUOTE] = ACTIONS(3176), + [anon_sym_U_DQUOTE] = ACTIONS(3176), + [anon_sym_u8_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [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_R_DQUOTE] = ACTIONS(3176), + [anon_sym_LR_DQUOTE] = ACTIONS(3176), + [anon_sym_uR_DQUOTE] = ACTIONS(3176), + [anon_sym_UR_DQUOTE] = ACTIONS(3176), + [anon_sym_u8R_DQUOTE] = ACTIONS(3176), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3176), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), + }, + [STATE(781)] = { + [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(3946), + [anon_sym_BANG] = ACTIONS(3946), + [anon_sym_TILDE] = ACTIONS(3946), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3946), + [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(3946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3946), + [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(3946), + [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(3946), + [anon_sym_PLUS_PLUS] = ACTIONS(3946), + [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(3946), + [anon_sym_L_SQUOTE] = ACTIONS(3946), + [anon_sym_u_SQUOTE] = ACTIONS(3946), + [anon_sym_U_SQUOTE] = ACTIONS(3946), + [anon_sym_u8_SQUOTE] = ACTIONS(3946), + [anon_sym_SQUOTE] = ACTIONS(3946), + [anon_sym_L_DQUOTE] = ACTIONS(3946), + [anon_sym_u_DQUOTE] = ACTIONS(3946), + [anon_sym_U_DQUOTE] = ACTIONS(3946), + [anon_sym_u8_DQUOTE] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3946), + [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(3946), + [anon_sym_LR_DQUOTE] = ACTIONS(3946), + [anon_sym_uR_DQUOTE] = ACTIONS(3946), + [anon_sym_UR_DQUOTE] = ACTIONS(3946), + [anon_sym_u8R_DQUOTE] = ACTIONS(3946), + [anon_sym_co_await] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_requires] = ACTIONS(3943), + [anon_sym_CARET_CARET] = ACTIONS(3946), + [anon_sym_LBRACK_COLON] = ACTIONS(3946), + [sym_this] = ACTIONS(3943), + }, + [STATE(782)] = { + [sym_identifier] = ACTIONS(3474), + [aux_sym_preproc_include_token1] = ACTIONS(3474), + [aux_sym_preproc_def_token1] = ACTIONS(3474), + [aux_sym_preproc_if_token1] = ACTIONS(3474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3474), + [sym_preproc_directive] = ACTIONS(3474), + [anon_sym_LPAREN2] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_STAR] = ACTIONS(3476), + [anon_sym_AMP_AMP] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3474), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym___extension__] = ACTIONS(3474), + [anon_sym_typedef] = ACTIONS(3474), + [anon_sym_virtual] = ACTIONS(3474), + [anon_sym_extern] = ACTIONS(3474), + [anon_sym___attribute__] = ACTIONS(3474), + [anon_sym___attribute] = ACTIONS(3474), + [anon_sym_using] = ACTIONS(3474), + [anon_sym_COLON_COLON] = ACTIONS(3476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3476), + [anon_sym___declspec] = ACTIONS(3474), + [anon_sym___based] = ACTIONS(3474), + [anon_sym___cdecl] = ACTIONS(3474), + [anon_sym___clrcall] = ACTIONS(3474), + [anon_sym___stdcall] = ACTIONS(3474), + [anon_sym___fastcall] = ACTIONS(3474), + [anon_sym___thiscall] = ACTIONS(3474), + [anon_sym___vectorcall] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_signed] = ACTIONS(3474), + [anon_sym_unsigned] = ACTIONS(3474), + [anon_sym_long] = ACTIONS(3474), + [anon_sym_short] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_register] = ACTIONS(3474), + [anon_sym_inline] = ACTIONS(3474), + [anon_sym___inline] = ACTIONS(3474), + [anon_sym___inline__] = ACTIONS(3474), + [anon_sym___forceinline] = ACTIONS(3474), + [anon_sym_thread_local] = ACTIONS(3474), + [anon_sym___thread] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_constexpr] = ACTIONS(3474), + [anon_sym_volatile] = ACTIONS(3474), + [anon_sym_restrict] = ACTIONS(3474), + [anon_sym___restrict__] = ACTIONS(3474), + [anon_sym__Atomic] = ACTIONS(3474), + [anon_sym__Noreturn] = ACTIONS(3474), + [anon_sym_noreturn] = ACTIONS(3474), + [anon_sym__Nonnull] = ACTIONS(3474), + [anon_sym_mutable] = ACTIONS(3474), + [anon_sym_constinit] = ACTIONS(3474), + [anon_sym_consteval] = ACTIONS(3474), + [anon_sym_alignas] = ACTIONS(3474), + [anon_sym__Alignas] = ACTIONS(3474), + [sym_primitive_type] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_struct] = ACTIONS(3474), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_else] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_case] = ACTIONS(3474), + [anon_sym_default] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_goto] = ACTIONS(3474), + [anon_sym___try] = ACTIONS(3474), + [anon_sym___leave] = ACTIONS(3474), + [anon_sym_not] = ACTIONS(3474), + [anon_sym_compl] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_sizeof] = ACTIONS(3474), + [anon_sym___alignof__] = ACTIONS(3474), + [anon_sym___alignof] = ACTIONS(3474), + [anon_sym__alignof] = ACTIONS(3474), + [anon_sym_alignof] = ACTIONS(3474), + [anon_sym__Alignof] = ACTIONS(3474), + [anon_sym_offsetof] = ACTIONS(3474), + [anon_sym__Generic] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3474), + [anon_sym_asm] = ACTIONS(3474), + [anon_sym___asm__] = ACTIONS(3474), + [anon_sym___asm] = ACTIONS(3474), + [sym_number_literal] = ACTIONS(3476), + [anon_sym_L_SQUOTE] = ACTIONS(3476), + [anon_sym_u_SQUOTE] = ACTIONS(3476), + [anon_sym_U_SQUOTE] = ACTIONS(3476), + [anon_sym_u8_SQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_L_DQUOTE] = ACTIONS(3476), + [anon_sym_u_DQUOTE] = ACTIONS(3476), + [anon_sym_U_DQUOTE] = ACTIONS(3476), + [anon_sym_u8_DQUOTE] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [anon_sym_NULL] = ACTIONS(3474), + [anon_sym_nullptr] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3474), + [anon_sym_decltype] = ACTIONS(3474), + [anon_sym_explicit] = ACTIONS(3474), + [anon_sym_export] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_template] = ACTIONS(3474), + [anon_sym_operator] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_namespace] = ACTIONS(3474), + [anon_sym_static_assert] = ACTIONS(3474), + [anon_sym_concept] = ACTIONS(3474), + [anon_sym_co_return] = ACTIONS(3474), + [anon_sym_co_yield] = ACTIONS(3474), + [anon_sym_R_DQUOTE] = ACTIONS(3476), + [anon_sym_LR_DQUOTE] = ACTIONS(3476), + [anon_sym_uR_DQUOTE] = ACTIONS(3476), + [anon_sym_UR_DQUOTE] = ACTIONS(3476), + [anon_sym_u8R_DQUOTE] = ACTIONS(3476), + [anon_sym_co_await] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_requires] = ACTIONS(3474), + [anon_sym_CARET_CARET] = ACTIONS(3476), + [anon_sym_LBRACK_COLON] = ACTIONS(3476), + [sym_this] = ACTIONS(3474), + }, + [STATE(783)] = { + [ts_builtin_sym_end] = ACTIONS(4011), + [sym_identifier] = ACTIONS(4009), + [aux_sym_preproc_include_token1] = ACTIONS(4009), + [aux_sym_preproc_def_token1] = ACTIONS(4009), + [anon_sym_COMMA] = ACTIONS(4011), + [aux_sym_preproc_if_token1] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4009), + [sym_preproc_directive] = ACTIONS(4009), + [anon_sym_LPAREN2] = ACTIONS(4011), + [anon_sym_BANG] = ACTIONS(4011), + [anon_sym_TILDE] = ACTIONS(4011), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4011), + [anon_sym_AMP_AMP] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_SEMI] = ACTIONS(4011), + [anon_sym___extension__] = ACTIONS(4009), + [anon_sym_typedef] = ACTIONS(4009), + [anon_sym_virtual] = ACTIONS(4009), + [anon_sym_extern] = ACTIONS(4009), + [anon_sym___attribute__] = ACTIONS(4009), + [anon_sym___attribute] = ACTIONS(4009), + [anon_sym_using] = ACTIONS(4009), + [anon_sym_COLON_COLON] = ACTIONS(4011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4011), + [anon_sym___declspec] = ACTIONS(4009), + [anon_sym___based] = ACTIONS(4009), + [anon_sym___cdecl] = ACTIONS(4009), + [anon_sym___clrcall] = ACTIONS(4009), + [anon_sym___stdcall] = ACTIONS(4009), + [anon_sym___fastcall] = ACTIONS(4009), + [anon_sym___thiscall] = ACTIONS(4009), + [anon_sym___vectorcall] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4011), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_signed] = ACTIONS(4009), + [anon_sym_unsigned] = ACTIONS(4009), + [anon_sym_long] = ACTIONS(4009), + [anon_sym_short] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4009), + [anon_sym_register] = ACTIONS(4009), + [anon_sym_inline] = ACTIONS(4009), + [anon_sym___inline] = ACTIONS(4009), + [anon_sym___inline__] = ACTIONS(4009), + [anon_sym___forceinline] = ACTIONS(4009), + [anon_sym_thread_local] = ACTIONS(4009), + [anon_sym___thread] = ACTIONS(4009), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_constexpr] = ACTIONS(4009), + [anon_sym_volatile] = ACTIONS(4009), + [anon_sym_restrict] = ACTIONS(4009), + [anon_sym___restrict__] = ACTIONS(4009), + [anon_sym__Atomic] = ACTIONS(4009), + [anon_sym__Noreturn] = ACTIONS(4009), + [anon_sym_noreturn] = ACTIONS(4009), + [anon_sym__Nonnull] = ACTIONS(4009), + [anon_sym_mutable] = ACTIONS(4009), + [anon_sym_constinit] = ACTIONS(4009), + [anon_sym_consteval] = ACTIONS(4009), + [anon_sym_alignas] = ACTIONS(4009), + [anon_sym__Alignas] = ACTIONS(4009), + [sym_primitive_type] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_class] = ACTIONS(4009), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_if] = ACTIONS(4009), + [anon_sym_switch] = ACTIONS(4009), + [anon_sym_case] = ACTIONS(4009), + [anon_sym_default] = ACTIONS(4009), + [anon_sym_while] = ACTIONS(4009), + [anon_sym_do] = ACTIONS(4009), + [anon_sym_for] = ACTIONS(4009), + [anon_sym_return] = ACTIONS(4009), + [anon_sym_break] = ACTIONS(4009), + [anon_sym_continue] = ACTIONS(4009), + [anon_sym_goto] = ACTIONS(4009), + [anon_sym_not] = ACTIONS(4009), + [anon_sym_compl] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4011), + [anon_sym_PLUS_PLUS] = ACTIONS(4011), + [anon_sym_sizeof] = ACTIONS(4009), + [anon_sym___alignof__] = ACTIONS(4009), + [anon_sym___alignof] = ACTIONS(4009), + [anon_sym__alignof] = ACTIONS(4009), + [anon_sym_alignof] = ACTIONS(4009), + [anon_sym__Alignof] = ACTIONS(4009), + [anon_sym_offsetof] = ACTIONS(4009), + [anon_sym__Generic] = ACTIONS(4009), + [anon_sym_typename] = ACTIONS(4009), + [anon_sym_asm] = ACTIONS(4009), + [anon_sym___asm__] = ACTIONS(4009), + [anon_sym___asm] = ACTIONS(4009), + [sym_number_literal] = ACTIONS(4011), + [anon_sym_L_SQUOTE] = ACTIONS(4011), + [anon_sym_u_SQUOTE] = ACTIONS(4011), + [anon_sym_U_SQUOTE] = ACTIONS(4011), + [anon_sym_u8_SQUOTE] = ACTIONS(4011), + [anon_sym_SQUOTE] = ACTIONS(4011), + [anon_sym_L_DQUOTE] = ACTIONS(4011), + [anon_sym_u_DQUOTE] = ACTIONS(4011), + [anon_sym_U_DQUOTE] = ACTIONS(4011), + [anon_sym_u8_DQUOTE] = ACTIONS(4011), + [anon_sym_DQUOTE] = ACTIONS(4011), + [sym_true] = ACTIONS(4009), + [sym_false] = ACTIONS(4009), + [anon_sym_NULL] = ACTIONS(4009), + [anon_sym_nullptr] = ACTIONS(4009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4009), + [anon_sym_decltype] = ACTIONS(4009), + [anon_sym_explicit] = ACTIONS(4009), + [anon_sym_export] = ACTIONS(4009), + [anon_sym_module] = ACTIONS(4009), + [anon_sym_import] = ACTIONS(4009), + [anon_sym_template] = ACTIONS(4009), + [anon_sym_operator] = ACTIONS(4009), + [anon_sym_try] = ACTIONS(4009), + [anon_sym_delete] = ACTIONS(4009), + [anon_sym_throw] = ACTIONS(4009), + [anon_sym_namespace] = ACTIONS(4009), + [anon_sym_static_assert] = ACTIONS(4009), + [anon_sym_concept] = ACTIONS(4009), + [anon_sym_co_return] = ACTIONS(4009), + [anon_sym_co_yield] = ACTIONS(4009), + [anon_sym_R_DQUOTE] = ACTIONS(4011), + [anon_sym_LR_DQUOTE] = ACTIONS(4011), + [anon_sym_uR_DQUOTE] = ACTIONS(4011), + [anon_sym_UR_DQUOTE] = ACTIONS(4011), + [anon_sym_u8R_DQUOTE] = ACTIONS(4011), + [anon_sym_co_await] = ACTIONS(4009), + [anon_sym_new] = ACTIONS(4009), + [anon_sym_requires] = ACTIONS(4009), + [anon_sym_CARET_CARET] = ACTIONS(4011), + [anon_sym_LBRACK_COLON] = ACTIONS(4011), + [sym_this] = ACTIONS(4009), + }, + [STATE(784)] = { + [sym_identifier] = ACTIONS(3965), + [aux_sym_preproc_include_token1] = ACTIONS(3965), + [aux_sym_preproc_def_token1] = ACTIONS(3965), + [aux_sym_preproc_if_token1] = ACTIONS(3965), + [aux_sym_preproc_if_token2] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3965), + [sym_preproc_directive] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3967), + [anon_sym_TILDE] = ACTIONS(3967), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_STAR] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym___extension__] = ACTIONS(3965), + [anon_sym_typedef] = ACTIONS(3965), + [anon_sym_virtual] = ACTIONS(3965), + [anon_sym_extern] = ACTIONS(3965), + [anon_sym___attribute__] = ACTIONS(3965), + [anon_sym___attribute] = ACTIONS(3965), + [anon_sym_using] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3967), + [anon_sym___declspec] = ACTIONS(3965), + [anon_sym___based] = ACTIONS(3965), + [anon_sym___cdecl] = ACTIONS(3965), + [anon_sym___clrcall] = ACTIONS(3965), + [anon_sym___stdcall] = ACTIONS(3965), + [anon_sym___fastcall] = ACTIONS(3965), + [anon_sym___thiscall] = ACTIONS(3965), + [anon_sym___vectorcall] = ACTIONS(3965), + [anon_sym_LBRACE] = ACTIONS(3967), + [anon_sym_signed] = ACTIONS(3965), + [anon_sym_unsigned] = ACTIONS(3965), + [anon_sym_long] = ACTIONS(3965), + [anon_sym_short] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_static] = ACTIONS(3965), + [anon_sym_register] = ACTIONS(3965), + [anon_sym_inline] = ACTIONS(3965), + [anon_sym___inline] = ACTIONS(3965), + [anon_sym___inline__] = ACTIONS(3965), + [anon_sym___forceinline] = ACTIONS(3965), + [anon_sym_thread_local] = ACTIONS(3965), + [anon_sym___thread] = ACTIONS(3965), + [anon_sym_const] = ACTIONS(3965), + [anon_sym_constexpr] = ACTIONS(3965), + [anon_sym_volatile] = ACTIONS(3965), + [anon_sym_restrict] = ACTIONS(3965), + [anon_sym___restrict__] = ACTIONS(3965), + [anon_sym__Atomic] = ACTIONS(3965), + [anon_sym__Noreturn] = ACTIONS(3965), + [anon_sym_noreturn] = ACTIONS(3965), + [anon_sym__Nonnull] = ACTIONS(3965), + [anon_sym_mutable] = ACTIONS(3965), + [anon_sym_constinit] = ACTIONS(3965), + [anon_sym_consteval] = ACTIONS(3965), + [anon_sym_alignas] = ACTIONS(3965), + [anon_sym__Alignas] = ACTIONS(3965), + [sym_primitive_type] = ACTIONS(3965), + [anon_sym_enum] = ACTIONS(3965), + [anon_sym_class] = ACTIONS(3965), + [anon_sym_struct] = ACTIONS(3965), + [anon_sym_union] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_switch] = ACTIONS(3965), + [anon_sym_case] = ACTIONS(3965), + [anon_sym_default] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_break] = ACTIONS(3965), + [anon_sym_continue] = ACTIONS(3965), + [anon_sym_goto] = ACTIONS(3965), + [anon_sym___try] = ACTIONS(3965), + [anon_sym___leave] = ACTIONS(3965), + [anon_sym_not] = ACTIONS(3965), + [anon_sym_compl] = ACTIONS(3965), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_sizeof] = ACTIONS(3965), + [anon_sym___alignof__] = ACTIONS(3965), + [anon_sym___alignof] = ACTIONS(3965), + [anon_sym__alignof] = ACTIONS(3965), + [anon_sym_alignof] = ACTIONS(3965), + [anon_sym__Alignof] = ACTIONS(3965), + [anon_sym_offsetof] = ACTIONS(3965), + [anon_sym__Generic] = ACTIONS(3965), + [anon_sym_typename] = ACTIONS(3965), + [anon_sym_asm] = ACTIONS(3965), + [anon_sym___asm__] = ACTIONS(3965), + [anon_sym___asm] = ACTIONS(3965), + [sym_number_literal] = ACTIONS(3967), + [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(3967), + [anon_sym_u_DQUOTE] = ACTIONS(3967), + [anon_sym_U_DQUOTE] = ACTIONS(3967), + [anon_sym_u8_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [sym_true] = ACTIONS(3965), + [sym_false] = ACTIONS(3965), + [anon_sym_NULL] = ACTIONS(3965), + [anon_sym_nullptr] = ACTIONS(3965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3965), + [anon_sym_decltype] = ACTIONS(3965), + [anon_sym_explicit] = ACTIONS(3965), + [anon_sym_export] = ACTIONS(3965), + [anon_sym_module] = ACTIONS(3965), + [anon_sym_import] = ACTIONS(3965), + [anon_sym_template] = ACTIONS(3965), + [anon_sym_operator] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_delete] = ACTIONS(3965), + [anon_sym_throw] = ACTIONS(3965), + [anon_sym_namespace] = ACTIONS(3965), + [anon_sym_static_assert] = ACTIONS(3965), + [anon_sym_concept] = ACTIONS(3965), + [anon_sym_co_return] = ACTIONS(3965), + [anon_sym_co_yield] = ACTIONS(3965), + [anon_sym_R_DQUOTE] = ACTIONS(3967), + [anon_sym_LR_DQUOTE] = ACTIONS(3967), + [anon_sym_uR_DQUOTE] = ACTIONS(3967), + [anon_sym_UR_DQUOTE] = ACTIONS(3967), + [anon_sym_u8R_DQUOTE] = ACTIONS(3967), + [anon_sym_co_await] = ACTIONS(3965), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_requires] = ACTIONS(3965), + [anon_sym_CARET_CARET] = ACTIONS(3967), + [anon_sym_LBRACK_COLON] = ACTIONS(3967), + [sym_this] = ACTIONS(3965), + }, + [STATE(785)] = { + [sym_identifier] = ACTIONS(3478), + [aux_sym_preproc_include_token1] = ACTIONS(3478), + [aux_sym_preproc_def_token1] = ACTIONS(3478), + [aux_sym_preproc_if_token1] = ACTIONS(3478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3478), + [sym_preproc_directive] = ACTIONS(3478), + [anon_sym_LPAREN2] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(3480), + [anon_sym_AMP_AMP] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym___extension__] = ACTIONS(3478), + [anon_sym_typedef] = ACTIONS(3478), + [anon_sym_virtual] = ACTIONS(3478), + [anon_sym_extern] = ACTIONS(3478), + [anon_sym___attribute__] = ACTIONS(3478), + [anon_sym___attribute] = ACTIONS(3478), + [anon_sym_using] = ACTIONS(3478), + [anon_sym_COLON_COLON] = ACTIONS(3480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3480), + [anon_sym___declspec] = ACTIONS(3478), + [anon_sym___based] = ACTIONS(3478), + [anon_sym___cdecl] = ACTIONS(3478), + [anon_sym___clrcall] = ACTIONS(3478), + [anon_sym___stdcall] = ACTIONS(3478), + [anon_sym___fastcall] = ACTIONS(3478), + [anon_sym___thiscall] = ACTIONS(3478), + [anon_sym___vectorcall] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_RBRACE] = ACTIONS(3480), + [anon_sym_signed] = ACTIONS(3478), + [anon_sym_unsigned] = ACTIONS(3478), + [anon_sym_long] = ACTIONS(3478), + [anon_sym_short] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_register] = ACTIONS(3478), + [anon_sym_inline] = ACTIONS(3478), + [anon_sym___inline] = ACTIONS(3478), + [anon_sym___inline__] = ACTIONS(3478), + [anon_sym___forceinline] = ACTIONS(3478), + [anon_sym_thread_local] = ACTIONS(3478), + [anon_sym___thread] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_constexpr] = ACTIONS(3478), + [anon_sym_volatile] = ACTIONS(3478), + [anon_sym_restrict] = ACTIONS(3478), + [anon_sym___restrict__] = ACTIONS(3478), + [anon_sym__Atomic] = ACTIONS(3478), + [anon_sym__Noreturn] = ACTIONS(3478), + [anon_sym_noreturn] = ACTIONS(3478), + [anon_sym__Nonnull] = ACTIONS(3478), + [anon_sym_mutable] = ACTIONS(3478), + [anon_sym_constinit] = ACTIONS(3478), + [anon_sym_consteval] = ACTIONS(3478), + [anon_sym_alignas] = ACTIONS(3478), + [anon_sym__Alignas] = ACTIONS(3478), + [sym_primitive_type] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_struct] = ACTIONS(3478), + [anon_sym_union] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_goto] = ACTIONS(3478), + [anon_sym___try] = ACTIONS(3478), + [anon_sym___leave] = ACTIONS(3478), + [anon_sym_not] = ACTIONS(3478), + [anon_sym_compl] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_sizeof] = ACTIONS(3478), + [anon_sym___alignof__] = ACTIONS(3478), + [anon_sym___alignof] = ACTIONS(3478), + [anon_sym__alignof] = ACTIONS(3478), + [anon_sym_alignof] = ACTIONS(3478), + [anon_sym__Alignof] = ACTIONS(3478), + [anon_sym_offsetof] = ACTIONS(3478), + [anon_sym__Generic] = ACTIONS(3478), + [anon_sym_typename] = ACTIONS(3478), + [anon_sym_asm] = ACTIONS(3478), + [anon_sym___asm__] = ACTIONS(3478), + [anon_sym___asm] = ACTIONS(3478), + [sym_number_literal] = ACTIONS(3480), + [anon_sym_L_SQUOTE] = ACTIONS(3480), + [anon_sym_u_SQUOTE] = ACTIONS(3480), + [anon_sym_U_SQUOTE] = ACTIONS(3480), + [anon_sym_u8_SQUOTE] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3480), + [anon_sym_L_DQUOTE] = ACTIONS(3480), + [anon_sym_u_DQUOTE] = ACTIONS(3480), + [anon_sym_U_DQUOTE] = ACTIONS(3480), + [anon_sym_u8_DQUOTE] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [anon_sym_NULL] = ACTIONS(3478), + [anon_sym_nullptr] = ACTIONS(3478), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3478), + [anon_sym_decltype] = ACTIONS(3478), + [anon_sym_explicit] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3478), + [anon_sym_operator] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_static_assert] = ACTIONS(3478), + [anon_sym_concept] = ACTIONS(3478), + [anon_sym_co_return] = ACTIONS(3478), + [anon_sym_co_yield] = ACTIONS(3478), + [anon_sym_R_DQUOTE] = ACTIONS(3480), + [anon_sym_LR_DQUOTE] = ACTIONS(3480), + [anon_sym_uR_DQUOTE] = ACTIONS(3480), + [anon_sym_UR_DQUOTE] = ACTIONS(3480), + [anon_sym_u8R_DQUOTE] = ACTIONS(3480), + [anon_sym_co_await] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_requires] = ACTIONS(3478), + [anon_sym_CARET_CARET] = ACTIONS(3480), + [anon_sym_LBRACK_COLON] = ACTIONS(3480), + [sym_this] = ACTIONS(3478), + }, + [STATE(786)] = { + [sym_identifier] = ACTIONS(3969), + [aux_sym_preproc_include_token1] = ACTIONS(3969), + [aux_sym_preproc_def_token1] = ACTIONS(3969), + [aux_sym_preproc_if_token1] = ACTIONS(3969), + [aux_sym_preproc_if_token2] = ACTIONS(3969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3969), + [sym_preproc_directive] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_BANG] = ACTIONS(3971), + [anon_sym_TILDE] = ACTIONS(3971), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_STAR] = ACTIONS(3971), + [anon_sym_AMP_AMP] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_SEMI] = ACTIONS(3971), + [anon_sym___extension__] = ACTIONS(3969), + [anon_sym_typedef] = ACTIONS(3969), + [anon_sym_virtual] = ACTIONS(3969), + [anon_sym_extern] = ACTIONS(3969), + [anon_sym___attribute__] = ACTIONS(3969), + [anon_sym___attribute] = ACTIONS(3969), + [anon_sym_using] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3971), + [anon_sym___declspec] = ACTIONS(3969), + [anon_sym___based] = ACTIONS(3969), + [anon_sym___cdecl] = ACTIONS(3969), + [anon_sym___clrcall] = ACTIONS(3969), + [anon_sym___stdcall] = ACTIONS(3969), + [anon_sym___fastcall] = ACTIONS(3969), + [anon_sym___thiscall] = ACTIONS(3969), + [anon_sym___vectorcall] = ACTIONS(3969), + [anon_sym_LBRACE] = ACTIONS(3971), + [anon_sym_signed] = ACTIONS(3969), + [anon_sym_unsigned] = ACTIONS(3969), + [anon_sym_long] = ACTIONS(3969), + [anon_sym_short] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_static] = ACTIONS(3969), + [anon_sym_register] = ACTIONS(3969), + [anon_sym_inline] = ACTIONS(3969), + [anon_sym___inline] = ACTIONS(3969), + [anon_sym___inline__] = ACTIONS(3969), + [anon_sym___forceinline] = ACTIONS(3969), + [anon_sym_thread_local] = ACTIONS(3969), + [anon_sym___thread] = ACTIONS(3969), + [anon_sym_const] = ACTIONS(3969), + [anon_sym_constexpr] = ACTIONS(3969), + [anon_sym_volatile] = ACTIONS(3969), + [anon_sym_restrict] = ACTIONS(3969), + [anon_sym___restrict__] = ACTIONS(3969), + [anon_sym__Atomic] = ACTIONS(3969), + [anon_sym__Noreturn] = ACTIONS(3969), + [anon_sym_noreturn] = ACTIONS(3969), + [anon_sym__Nonnull] = ACTIONS(3969), + [anon_sym_mutable] = ACTIONS(3969), + [anon_sym_constinit] = ACTIONS(3969), + [anon_sym_consteval] = ACTIONS(3969), + [anon_sym_alignas] = ACTIONS(3969), + [anon_sym__Alignas] = ACTIONS(3969), + [sym_primitive_type] = ACTIONS(3969), + [anon_sym_enum] = ACTIONS(3969), + [anon_sym_class] = ACTIONS(3969), + [anon_sym_struct] = ACTIONS(3969), + [anon_sym_union] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_switch] = ACTIONS(3969), + [anon_sym_case] = ACTIONS(3969), + [anon_sym_default] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_break] = ACTIONS(3969), + [anon_sym_continue] = ACTIONS(3969), + [anon_sym_goto] = ACTIONS(3969), + [anon_sym___try] = ACTIONS(3969), + [anon_sym___leave] = ACTIONS(3969), + [anon_sym_not] = ACTIONS(3969), + [anon_sym_compl] = ACTIONS(3969), + [anon_sym_DASH_DASH] = ACTIONS(3971), + [anon_sym_PLUS_PLUS] = ACTIONS(3971), + [anon_sym_sizeof] = ACTIONS(3969), + [anon_sym___alignof__] = ACTIONS(3969), + [anon_sym___alignof] = ACTIONS(3969), + [anon_sym__alignof] = ACTIONS(3969), + [anon_sym_alignof] = ACTIONS(3969), + [anon_sym__Alignof] = ACTIONS(3969), + [anon_sym_offsetof] = ACTIONS(3969), + [anon_sym__Generic] = ACTIONS(3969), + [anon_sym_typename] = ACTIONS(3969), + [anon_sym_asm] = ACTIONS(3969), + [anon_sym___asm__] = ACTIONS(3969), + [anon_sym___asm] = ACTIONS(3969), + [sym_number_literal] = ACTIONS(3971), + [anon_sym_L_SQUOTE] = ACTIONS(3971), + [anon_sym_u_SQUOTE] = ACTIONS(3971), + [anon_sym_U_SQUOTE] = ACTIONS(3971), + [anon_sym_u8_SQUOTE] = ACTIONS(3971), + [anon_sym_SQUOTE] = ACTIONS(3971), + [anon_sym_L_DQUOTE] = ACTIONS(3971), + [anon_sym_u_DQUOTE] = ACTIONS(3971), + [anon_sym_U_DQUOTE] = ACTIONS(3971), + [anon_sym_u8_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE] = ACTIONS(3971), + [sym_true] = ACTIONS(3969), + [sym_false] = ACTIONS(3969), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3969), + [anon_sym_decltype] = ACTIONS(3969), + [anon_sym_explicit] = ACTIONS(3969), + [anon_sym_export] = ACTIONS(3969), + [anon_sym_module] = ACTIONS(3969), + [anon_sym_import] = ACTIONS(3969), + [anon_sym_template] = ACTIONS(3969), + [anon_sym_operator] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_delete] = ACTIONS(3969), + [anon_sym_throw] = ACTIONS(3969), + [anon_sym_namespace] = ACTIONS(3969), + [anon_sym_static_assert] = ACTIONS(3969), + [anon_sym_concept] = ACTIONS(3969), + [anon_sym_co_return] = ACTIONS(3969), + [anon_sym_co_yield] = ACTIONS(3969), + [anon_sym_R_DQUOTE] = ACTIONS(3971), + [anon_sym_LR_DQUOTE] = ACTIONS(3971), + [anon_sym_uR_DQUOTE] = ACTIONS(3971), + [anon_sym_UR_DQUOTE] = ACTIONS(3971), + [anon_sym_u8R_DQUOTE] = ACTIONS(3971), + [anon_sym_co_await] = ACTIONS(3969), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_requires] = ACTIONS(3969), + [anon_sym_CARET_CARET] = ACTIONS(3971), + [anon_sym_LBRACK_COLON] = ACTIONS(3971), + [sym_this] = ACTIONS(3969), + }, + [STATE(787)] = { + [sym_identifier] = ACTIONS(3482), + [aux_sym_preproc_include_token1] = ACTIONS(3482), + [aux_sym_preproc_def_token1] = ACTIONS(3482), + [aux_sym_preproc_if_token1] = ACTIONS(3482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3482), + [sym_preproc_directive] = ACTIONS(3482), + [anon_sym_LPAREN2] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_AMP_AMP] = ACTIONS(3484), + [anon_sym_AMP] = ACTIONS(3482), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym___extension__] = ACTIONS(3482), + [anon_sym_typedef] = ACTIONS(3482), + [anon_sym_virtual] = ACTIONS(3482), + [anon_sym_extern] = ACTIONS(3482), + [anon_sym___attribute__] = ACTIONS(3482), + [anon_sym___attribute] = ACTIONS(3482), + [anon_sym_using] = ACTIONS(3482), + [anon_sym_COLON_COLON] = ACTIONS(3484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3484), + [anon_sym___declspec] = ACTIONS(3482), + [anon_sym___based] = ACTIONS(3482), + [anon_sym___cdecl] = ACTIONS(3482), + [anon_sym___clrcall] = ACTIONS(3482), + [anon_sym___stdcall] = ACTIONS(3482), + [anon_sym___fastcall] = ACTIONS(3482), + [anon_sym___thiscall] = ACTIONS(3482), + [anon_sym___vectorcall] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_RBRACE] = ACTIONS(3484), + [anon_sym_signed] = ACTIONS(3482), + [anon_sym_unsigned] = ACTIONS(3482), + [anon_sym_long] = ACTIONS(3482), + [anon_sym_short] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_register] = ACTIONS(3482), + [anon_sym_inline] = ACTIONS(3482), + [anon_sym___inline] = ACTIONS(3482), + [anon_sym___inline__] = ACTIONS(3482), + [anon_sym___forceinline] = ACTIONS(3482), + [anon_sym_thread_local] = ACTIONS(3482), + [anon_sym___thread] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_constexpr] = ACTIONS(3482), + [anon_sym_volatile] = ACTIONS(3482), + [anon_sym_restrict] = ACTIONS(3482), + [anon_sym___restrict__] = ACTIONS(3482), + [anon_sym__Atomic] = ACTIONS(3482), + [anon_sym__Noreturn] = ACTIONS(3482), + [anon_sym_noreturn] = ACTIONS(3482), + [anon_sym__Nonnull] = ACTIONS(3482), + [anon_sym_mutable] = ACTIONS(3482), + [anon_sym_constinit] = ACTIONS(3482), + [anon_sym_consteval] = ACTIONS(3482), + [anon_sym_alignas] = ACTIONS(3482), + [anon_sym__Alignas] = ACTIONS(3482), + [sym_primitive_type] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_struct] = ACTIONS(3482), + [anon_sym_union] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_case] = ACTIONS(3482), + [anon_sym_default] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_goto] = ACTIONS(3482), + [anon_sym___try] = ACTIONS(3482), + [anon_sym___leave] = ACTIONS(3482), + [anon_sym_not] = ACTIONS(3482), + [anon_sym_compl] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_sizeof] = ACTIONS(3482), + [anon_sym___alignof__] = ACTIONS(3482), + [anon_sym___alignof] = ACTIONS(3482), + [anon_sym__alignof] = ACTIONS(3482), + [anon_sym_alignof] = ACTIONS(3482), + [anon_sym__Alignof] = ACTIONS(3482), + [anon_sym_offsetof] = ACTIONS(3482), + [anon_sym__Generic] = ACTIONS(3482), + [anon_sym_typename] = ACTIONS(3482), + [anon_sym_asm] = ACTIONS(3482), + [anon_sym___asm__] = ACTIONS(3482), + [anon_sym___asm] = ACTIONS(3482), + [sym_number_literal] = ACTIONS(3484), + [anon_sym_L_SQUOTE] = ACTIONS(3484), + [anon_sym_u_SQUOTE] = ACTIONS(3484), + [anon_sym_U_SQUOTE] = ACTIONS(3484), + [anon_sym_u8_SQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [anon_sym_L_DQUOTE] = ACTIONS(3484), + [anon_sym_u_DQUOTE] = ACTIONS(3484), + [anon_sym_U_DQUOTE] = ACTIONS(3484), + [anon_sym_u8_DQUOTE] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [sym_true] = ACTIONS(3482), + [sym_false] = ACTIONS(3482), + [anon_sym_NULL] = ACTIONS(3482), + [anon_sym_nullptr] = ACTIONS(3482), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3482), + [anon_sym_decltype] = ACTIONS(3482), + [anon_sym_explicit] = ACTIONS(3482), + [anon_sym_export] = ACTIONS(3482), + [anon_sym_import] = ACTIONS(3482), + [anon_sym_template] = ACTIONS(3482), + [anon_sym_operator] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_delete] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_namespace] = ACTIONS(3482), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_concept] = ACTIONS(3482), + [anon_sym_co_return] = ACTIONS(3482), + [anon_sym_co_yield] = ACTIONS(3482), + [anon_sym_R_DQUOTE] = ACTIONS(3484), + [anon_sym_LR_DQUOTE] = ACTIONS(3484), + [anon_sym_uR_DQUOTE] = ACTIONS(3484), + [anon_sym_UR_DQUOTE] = ACTIONS(3484), + [anon_sym_u8R_DQUOTE] = ACTIONS(3484), + [anon_sym_co_await] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_requires] = ACTIONS(3482), + [anon_sym_CARET_CARET] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(3482), + }, + [STATE(788)] = { + [sym_identifier] = ACTIONS(3985), + [aux_sym_preproc_include_token1] = ACTIONS(3985), + [aux_sym_preproc_def_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token2] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3985), + [sym_preproc_directive] = ACTIONS(3985), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_TILDE] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3985), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym___extension__] = ACTIONS(3985), + [anon_sym_typedef] = ACTIONS(3985), + [anon_sym_virtual] = ACTIONS(3985), + [anon_sym_extern] = ACTIONS(3985), + [anon_sym___attribute__] = ACTIONS(3985), + [anon_sym___attribute] = ACTIONS(3985), + [anon_sym_using] = ACTIONS(3985), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(3985), + [anon_sym___based] = ACTIONS(3985), + [anon_sym___cdecl] = ACTIONS(3985), + [anon_sym___clrcall] = ACTIONS(3985), + [anon_sym___stdcall] = ACTIONS(3985), + [anon_sym___fastcall] = ACTIONS(3985), + [anon_sym___thiscall] = ACTIONS(3985), + [anon_sym___vectorcall] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_signed] = ACTIONS(3985), + [anon_sym_unsigned] = ACTIONS(3985), + [anon_sym_long] = ACTIONS(3985), + [anon_sym_short] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_static] = ACTIONS(3985), + [anon_sym_register] = ACTIONS(3985), + [anon_sym_inline] = ACTIONS(3985), + [anon_sym___inline] = ACTIONS(3985), + [anon_sym___inline__] = ACTIONS(3985), + [anon_sym___forceinline] = ACTIONS(3985), + [anon_sym_thread_local] = ACTIONS(3985), + [anon_sym___thread] = ACTIONS(3985), + [anon_sym_const] = ACTIONS(3985), + [anon_sym_constexpr] = ACTIONS(3985), + [anon_sym_volatile] = ACTIONS(3985), + [anon_sym_restrict] = ACTIONS(3985), + [anon_sym___restrict__] = ACTIONS(3985), + [anon_sym__Atomic] = ACTIONS(3985), + [anon_sym__Noreturn] = ACTIONS(3985), + [anon_sym_noreturn] = ACTIONS(3985), + [anon_sym__Nonnull] = ACTIONS(3985), + [anon_sym_mutable] = ACTIONS(3985), + [anon_sym_constinit] = ACTIONS(3985), + [anon_sym_consteval] = ACTIONS(3985), + [anon_sym_alignas] = ACTIONS(3985), + [anon_sym__Alignas] = ACTIONS(3985), + [sym_primitive_type] = ACTIONS(3985), + [anon_sym_enum] = ACTIONS(3985), + [anon_sym_class] = ACTIONS(3985), + [anon_sym_struct] = ACTIONS(3985), + [anon_sym_union] = ACTIONS(3985), + [anon_sym_if] = ACTIONS(3985), + [anon_sym_switch] = ACTIONS(3985), + [anon_sym_case] = ACTIONS(3985), + [anon_sym_default] = ACTIONS(3985), + [anon_sym_while] = ACTIONS(3985), + [anon_sym_do] = ACTIONS(3985), + [anon_sym_for] = ACTIONS(3985), + [anon_sym_return] = ACTIONS(3985), + [anon_sym_break] = ACTIONS(3985), + [anon_sym_continue] = ACTIONS(3985), + [anon_sym_goto] = ACTIONS(3985), + [anon_sym___try] = ACTIONS(3985), + [anon_sym___leave] = ACTIONS(3985), + [anon_sym_not] = ACTIONS(3985), + [anon_sym_compl] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_sizeof] = ACTIONS(3985), + [anon_sym___alignof__] = ACTIONS(3985), + [anon_sym___alignof] = ACTIONS(3985), + [anon_sym__alignof] = ACTIONS(3985), + [anon_sym_alignof] = ACTIONS(3985), + [anon_sym__Alignof] = ACTIONS(3985), + [anon_sym_offsetof] = ACTIONS(3985), + [anon_sym__Generic] = ACTIONS(3985), + [anon_sym_typename] = ACTIONS(3985), + [anon_sym_asm] = ACTIONS(3985), + [anon_sym___asm__] = ACTIONS(3985), + [anon_sym___asm] = ACTIONS(3985), + [sym_number_literal] = ACTIONS(3987), + [anon_sym_L_SQUOTE] = ACTIONS(3987), + [anon_sym_u_SQUOTE] = ACTIONS(3987), + [anon_sym_U_SQUOTE] = ACTIONS(3987), + [anon_sym_u8_SQUOTE] = ACTIONS(3987), + [anon_sym_SQUOTE] = ACTIONS(3987), + [anon_sym_L_DQUOTE] = ACTIONS(3987), + [anon_sym_u_DQUOTE] = ACTIONS(3987), + [anon_sym_U_DQUOTE] = ACTIONS(3987), + [anon_sym_u8_DQUOTE] = ACTIONS(3987), + [anon_sym_DQUOTE] = ACTIONS(3987), + [sym_true] = ACTIONS(3985), + [sym_false] = ACTIONS(3985), + [anon_sym_NULL] = ACTIONS(3985), + [anon_sym_nullptr] = ACTIONS(3985), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3985), + [anon_sym_decltype] = ACTIONS(3985), + [anon_sym_explicit] = ACTIONS(3985), + [anon_sym_export] = ACTIONS(3985), + [anon_sym_module] = ACTIONS(3985), + [anon_sym_import] = ACTIONS(3985), + [anon_sym_template] = ACTIONS(3985), + [anon_sym_operator] = ACTIONS(3985), + [anon_sym_try] = ACTIONS(3985), + [anon_sym_delete] = ACTIONS(3985), + [anon_sym_throw] = ACTIONS(3985), + [anon_sym_namespace] = ACTIONS(3985), + [anon_sym_static_assert] = ACTIONS(3985), + [anon_sym_concept] = ACTIONS(3985), + [anon_sym_co_return] = ACTIONS(3985), + [anon_sym_co_yield] = ACTIONS(3985), + [anon_sym_R_DQUOTE] = ACTIONS(3987), + [anon_sym_LR_DQUOTE] = ACTIONS(3987), + [anon_sym_uR_DQUOTE] = ACTIONS(3987), + [anon_sym_UR_DQUOTE] = ACTIONS(3987), + [anon_sym_u8R_DQUOTE] = ACTIONS(3987), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3985), + [anon_sym_CARET_CARET] = ACTIONS(3987), + [anon_sym_LBRACK_COLON] = ACTIONS(3987), + [sym_this] = ACTIONS(3985), + }, + [STATE(789)] = { + [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(790)] = { + [sym_identifier] = ACTIONS(4001), + [aux_sym_preproc_include_token1] = ACTIONS(4001), + [aux_sym_preproc_def_token1] = ACTIONS(4001), + [aux_sym_preproc_if_token1] = ACTIONS(4001), + [aux_sym_preproc_if_token2] = ACTIONS(4001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4001), + [sym_preproc_directive] = ACTIONS(4001), + [anon_sym_LPAREN2] = ACTIONS(4003), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_TILDE] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4001), + [anon_sym_STAR] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym___extension__] = ACTIONS(4001), + [anon_sym_typedef] = ACTIONS(4001), + [anon_sym_virtual] = ACTIONS(4001), + [anon_sym_extern] = ACTIONS(4001), + [anon_sym___attribute__] = ACTIONS(4001), + [anon_sym___attribute] = ACTIONS(4001), + [anon_sym_using] = ACTIONS(4001), + [anon_sym_COLON_COLON] = ACTIONS(4003), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4003), + [anon_sym___declspec] = ACTIONS(4001), + [anon_sym___based] = ACTIONS(4001), + [anon_sym___cdecl] = ACTIONS(4001), + [anon_sym___clrcall] = ACTIONS(4001), + [anon_sym___stdcall] = ACTIONS(4001), + [anon_sym___fastcall] = ACTIONS(4001), + [anon_sym___thiscall] = ACTIONS(4001), + [anon_sym___vectorcall] = ACTIONS(4001), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_signed] = ACTIONS(4001), + [anon_sym_unsigned] = ACTIONS(4001), + [anon_sym_long] = ACTIONS(4001), + [anon_sym_short] = ACTIONS(4001), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_static] = ACTIONS(4001), + [anon_sym_register] = ACTIONS(4001), + [anon_sym_inline] = ACTIONS(4001), + [anon_sym___inline] = ACTIONS(4001), + [anon_sym___inline__] = ACTIONS(4001), + [anon_sym___forceinline] = ACTIONS(4001), + [anon_sym_thread_local] = ACTIONS(4001), + [anon_sym___thread] = ACTIONS(4001), + [anon_sym_const] = ACTIONS(4001), + [anon_sym_constexpr] = ACTIONS(4001), + [anon_sym_volatile] = ACTIONS(4001), + [anon_sym_restrict] = ACTIONS(4001), + [anon_sym___restrict__] = ACTIONS(4001), + [anon_sym__Atomic] = ACTIONS(4001), + [anon_sym__Noreturn] = ACTIONS(4001), + [anon_sym_noreturn] = ACTIONS(4001), + [anon_sym__Nonnull] = ACTIONS(4001), + [anon_sym_mutable] = ACTIONS(4001), + [anon_sym_constinit] = ACTIONS(4001), + [anon_sym_consteval] = ACTIONS(4001), + [anon_sym_alignas] = ACTIONS(4001), + [anon_sym__Alignas] = ACTIONS(4001), + [sym_primitive_type] = ACTIONS(4001), + [anon_sym_enum] = ACTIONS(4001), + [anon_sym_class] = ACTIONS(4001), + [anon_sym_struct] = ACTIONS(4001), + [anon_sym_union] = ACTIONS(4001), + [anon_sym_if] = ACTIONS(4001), + [anon_sym_switch] = ACTIONS(4001), + [anon_sym_case] = ACTIONS(4001), + [anon_sym_default] = ACTIONS(4001), + [anon_sym_while] = ACTIONS(4001), + [anon_sym_do] = ACTIONS(4001), + [anon_sym_for] = ACTIONS(4001), + [anon_sym_return] = ACTIONS(4001), + [anon_sym_break] = ACTIONS(4001), + [anon_sym_continue] = ACTIONS(4001), + [anon_sym_goto] = ACTIONS(4001), + [anon_sym___try] = ACTIONS(4001), + [anon_sym___leave] = ACTIONS(4001), + [anon_sym_not] = ACTIONS(4001), + [anon_sym_compl] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4003), + [anon_sym_sizeof] = ACTIONS(4001), + [anon_sym___alignof__] = ACTIONS(4001), + [anon_sym___alignof] = ACTIONS(4001), + [anon_sym__alignof] = ACTIONS(4001), + [anon_sym_alignof] = ACTIONS(4001), + [anon_sym__Alignof] = ACTIONS(4001), + [anon_sym_offsetof] = ACTIONS(4001), + [anon_sym__Generic] = ACTIONS(4001), + [anon_sym_typename] = ACTIONS(4001), + [anon_sym_asm] = ACTIONS(4001), + [anon_sym___asm__] = ACTIONS(4001), + [anon_sym___asm] = ACTIONS(4001), + [sym_number_literal] = ACTIONS(4003), + [anon_sym_L_SQUOTE] = ACTIONS(4003), + [anon_sym_u_SQUOTE] = ACTIONS(4003), + [anon_sym_U_SQUOTE] = ACTIONS(4003), + [anon_sym_u8_SQUOTE] = ACTIONS(4003), + [anon_sym_SQUOTE] = ACTIONS(4003), + [anon_sym_L_DQUOTE] = ACTIONS(4003), + [anon_sym_u_DQUOTE] = ACTIONS(4003), + [anon_sym_U_DQUOTE] = ACTIONS(4003), + [anon_sym_u8_DQUOTE] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [sym_true] = ACTIONS(4001), + [sym_false] = ACTIONS(4001), + [anon_sym_NULL] = ACTIONS(4001), + [anon_sym_nullptr] = ACTIONS(4001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4001), + [anon_sym_decltype] = ACTIONS(4001), + [anon_sym_explicit] = ACTIONS(4001), + [anon_sym_export] = ACTIONS(4001), + [anon_sym_module] = ACTIONS(4001), + [anon_sym_import] = ACTIONS(4001), + [anon_sym_template] = ACTIONS(4001), + [anon_sym_operator] = ACTIONS(4001), + [anon_sym_try] = ACTIONS(4001), + [anon_sym_delete] = ACTIONS(4001), + [anon_sym_throw] = ACTIONS(4001), + [anon_sym_namespace] = ACTIONS(4001), + [anon_sym_static_assert] = ACTIONS(4001), + [anon_sym_concept] = ACTIONS(4001), + [anon_sym_co_return] = ACTIONS(4001), + [anon_sym_co_yield] = ACTIONS(4001), + [anon_sym_R_DQUOTE] = ACTIONS(4003), + [anon_sym_LR_DQUOTE] = ACTIONS(4003), + [anon_sym_uR_DQUOTE] = ACTIONS(4003), + [anon_sym_UR_DQUOTE] = ACTIONS(4003), + [anon_sym_u8R_DQUOTE] = ACTIONS(4003), + [anon_sym_co_await] = ACTIONS(4001), + [anon_sym_new] = ACTIONS(4001), + [anon_sym_requires] = ACTIONS(4001), + [anon_sym_CARET_CARET] = ACTIONS(4003), + [anon_sym_LBRACK_COLON] = ACTIONS(4003), + [sym_this] = ACTIONS(4001), + }, + [STATE(791)] = { + [sym_identifier] = ACTIONS(4013), + [aux_sym_preproc_include_token1] = ACTIONS(4013), + [aux_sym_preproc_def_token1] = ACTIONS(4013), + [aux_sym_preproc_if_token1] = ACTIONS(4013), + [aux_sym_preproc_if_token2] = ACTIONS(4013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4013), + [sym_preproc_directive] = ACTIONS(4013), + [anon_sym_LPAREN2] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4015), + [anon_sym_TILDE] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4013), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym___extension__] = ACTIONS(4013), + [anon_sym_typedef] = ACTIONS(4013), + [anon_sym_virtual] = ACTIONS(4013), + [anon_sym_extern] = ACTIONS(4013), + [anon_sym___attribute__] = ACTIONS(4013), + [anon_sym___attribute] = ACTIONS(4013), + [anon_sym_using] = ACTIONS(4013), + [anon_sym_COLON_COLON] = ACTIONS(4015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4015), + [anon_sym___declspec] = ACTIONS(4013), + [anon_sym___based] = ACTIONS(4013), + [anon_sym___cdecl] = ACTIONS(4013), + [anon_sym___clrcall] = ACTIONS(4013), + [anon_sym___stdcall] = ACTIONS(4013), + [anon_sym___fastcall] = ACTIONS(4013), + [anon_sym___thiscall] = ACTIONS(4013), + [anon_sym___vectorcall] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_signed] = ACTIONS(4013), + [anon_sym_unsigned] = ACTIONS(4013), + [anon_sym_long] = ACTIONS(4013), + [anon_sym_short] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4013), + [anon_sym_static] = ACTIONS(4013), + [anon_sym_register] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym___inline] = ACTIONS(4013), + [anon_sym___inline__] = ACTIONS(4013), + [anon_sym___forceinline] = ACTIONS(4013), + [anon_sym_thread_local] = ACTIONS(4013), + [anon_sym___thread] = ACTIONS(4013), + [anon_sym_const] = ACTIONS(4013), + [anon_sym_constexpr] = ACTIONS(4013), + [anon_sym_volatile] = ACTIONS(4013), + [anon_sym_restrict] = ACTIONS(4013), + [anon_sym___restrict__] = ACTIONS(4013), + [anon_sym__Atomic] = ACTIONS(4013), + [anon_sym__Noreturn] = ACTIONS(4013), + [anon_sym_noreturn] = ACTIONS(4013), + [anon_sym__Nonnull] = ACTIONS(4013), + [anon_sym_mutable] = ACTIONS(4013), + [anon_sym_constinit] = ACTIONS(4013), + [anon_sym_consteval] = ACTIONS(4013), + [anon_sym_alignas] = ACTIONS(4013), + [anon_sym__Alignas] = ACTIONS(4013), + [sym_primitive_type] = ACTIONS(4013), + [anon_sym_enum] = ACTIONS(4013), + [anon_sym_class] = ACTIONS(4013), + [anon_sym_struct] = ACTIONS(4013), + [anon_sym_union] = ACTIONS(4013), + [anon_sym_if] = ACTIONS(4013), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_case] = ACTIONS(4013), + [anon_sym_default] = ACTIONS(4013), + [anon_sym_while] = ACTIONS(4013), + [anon_sym_do] = ACTIONS(4013), + [anon_sym_for] = ACTIONS(4013), + [anon_sym_return] = ACTIONS(4013), + [anon_sym_break] = ACTIONS(4013), + [anon_sym_continue] = ACTIONS(4013), + [anon_sym_goto] = ACTIONS(4013), + [anon_sym___try] = ACTIONS(4013), + [anon_sym___leave] = ACTIONS(4013), + [anon_sym_not] = ACTIONS(4013), + [anon_sym_compl] = ACTIONS(4013), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_sizeof] = ACTIONS(4013), + [anon_sym___alignof__] = ACTIONS(4013), + [anon_sym___alignof] = ACTIONS(4013), + [anon_sym__alignof] = ACTIONS(4013), + [anon_sym_alignof] = ACTIONS(4013), + [anon_sym__Alignof] = ACTIONS(4013), + [anon_sym_offsetof] = ACTIONS(4013), + [anon_sym__Generic] = ACTIONS(4013), + [anon_sym_typename] = ACTIONS(4013), + [anon_sym_asm] = ACTIONS(4013), + [anon_sym___asm__] = ACTIONS(4013), + [anon_sym___asm] = ACTIONS(4013), + [sym_number_literal] = ACTIONS(4015), + [anon_sym_L_SQUOTE] = ACTIONS(4015), + [anon_sym_u_SQUOTE] = ACTIONS(4015), + [anon_sym_U_SQUOTE] = ACTIONS(4015), + [anon_sym_u8_SQUOTE] = ACTIONS(4015), + [anon_sym_SQUOTE] = ACTIONS(4015), + [anon_sym_L_DQUOTE] = ACTIONS(4015), + [anon_sym_u_DQUOTE] = ACTIONS(4015), + [anon_sym_U_DQUOTE] = ACTIONS(4015), + [anon_sym_u8_DQUOTE] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [sym_true] = ACTIONS(4013), + [sym_false] = ACTIONS(4013), + [anon_sym_NULL] = ACTIONS(4013), + [anon_sym_nullptr] = ACTIONS(4013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4013), + [anon_sym_decltype] = ACTIONS(4013), + [anon_sym_explicit] = ACTIONS(4013), + [anon_sym_export] = ACTIONS(4013), + [anon_sym_module] = ACTIONS(4013), + [anon_sym_import] = ACTIONS(4013), + [anon_sym_template] = ACTIONS(4013), + [anon_sym_operator] = ACTIONS(4013), + [anon_sym_try] = ACTIONS(4013), + [anon_sym_delete] = ACTIONS(4013), + [anon_sym_throw] = ACTIONS(4013), + [anon_sym_namespace] = ACTIONS(4013), + [anon_sym_static_assert] = ACTIONS(4013), + [anon_sym_concept] = ACTIONS(4013), + [anon_sym_co_return] = ACTIONS(4013), + [anon_sym_co_yield] = ACTIONS(4013), + [anon_sym_R_DQUOTE] = ACTIONS(4015), + [anon_sym_LR_DQUOTE] = ACTIONS(4015), + [anon_sym_uR_DQUOTE] = ACTIONS(4015), + [anon_sym_UR_DQUOTE] = ACTIONS(4015), + [anon_sym_u8R_DQUOTE] = ACTIONS(4015), + [anon_sym_co_await] = ACTIONS(4013), + [anon_sym_new] = ACTIONS(4013), + [anon_sym_requires] = ACTIONS(4013), + [anon_sym_CARET_CARET] = ACTIONS(4015), + [anon_sym_LBRACK_COLON] = ACTIONS(4015), + [sym_this] = ACTIONS(4013), + }, + [STATE(792)] = { + [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(793)] = { + [sym_identifier] = ACTIONS(4025), + [aux_sym_preproc_include_token1] = ACTIONS(4025), + [aux_sym_preproc_def_token1] = ACTIONS(4025), + [aux_sym_preproc_if_token1] = ACTIONS(4025), + [aux_sym_preproc_if_token2] = ACTIONS(4025), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4025), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4025), + [sym_preproc_directive] = ACTIONS(4025), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_BANG] = ACTIONS(4027), + [anon_sym_TILDE] = ACTIONS(4027), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_typedef] = ACTIONS(4025), + [anon_sym_virtual] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_using] = ACTIONS(4025), + [anon_sym_COLON_COLON] = ACTIONS(4027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4027), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym___based] = ACTIONS(4025), + [anon_sym___cdecl] = ACTIONS(4025), + [anon_sym___clrcall] = ACTIONS(4025), + [anon_sym___stdcall] = ACTIONS(4025), + [anon_sym___fastcall] = ACTIONS(4025), + [anon_sym___thiscall] = ACTIONS(4025), + [anon_sym___vectorcall] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_mutable] = ACTIONS(4025), + [anon_sym_constinit] = ACTIONS(4025), + [anon_sym_consteval] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_class] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_if] = ACTIONS(4025), + [anon_sym_switch] = ACTIONS(4025), + [anon_sym_case] = ACTIONS(4025), + [anon_sym_default] = ACTIONS(4025), + [anon_sym_while] = ACTIONS(4025), + [anon_sym_do] = ACTIONS(4025), + [anon_sym_for] = ACTIONS(4025), + [anon_sym_return] = ACTIONS(4025), + [anon_sym_break] = ACTIONS(4025), + [anon_sym_continue] = ACTIONS(4025), + [anon_sym_goto] = ACTIONS(4025), + [anon_sym___try] = ACTIONS(4025), + [anon_sym___leave] = ACTIONS(4025), + [anon_sym_not] = ACTIONS(4025), + [anon_sym_compl] = ACTIONS(4025), + [anon_sym_DASH_DASH] = ACTIONS(4027), + [anon_sym_PLUS_PLUS] = ACTIONS(4027), + [anon_sym_sizeof] = ACTIONS(4025), + [anon_sym___alignof__] = ACTIONS(4025), + [anon_sym___alignof] = ACTIONS(4025), + [anon_sym__alignof] = ACTIONS(4025), + [anon_sym_alignof] = ACTIONS(4025), + [anon_sym__Alignof] = ACTIONS(4025), + [anon_sym_offsetof] = ACTIONS(4025), + [anon_sym__Generic] = ACTIONS(4025), + [anon_sym_typename] = ACTIONS(4025), + [anon_sym_asm] = ACTIONS(4025), + [anon_sym___asm__] = ACTIONS(4025), + [anon_sym___asm] = ACTIONS(4025), + [sym_number_literal] = ACTIONS(4027), + [anon_sym_L_SQUOTE] = ACTIONS(4027), + [anon_sym_u_SQUOTE] = ACTIONS(4027), + [anon_sym_U_SQUOTE] = ACTIONS(4027), + [anon_sym_u8_SQUOTE] = ACTIONS(4027), + [anon_sym_SQUOTE] = ACTIONS(4027), + [anon_sym_L_DQUOTE] = ACTIONS(4027), + [anon_sym_u_DQUOTE] = ACTIONS(4027), + [anon_sym_U_DQUOTE] = ACTIONS(4027), + [anon_sym_u8_DQUOTE] = ACTIONS(4027), + [anon_sym_DQUOTE] = ACTIONS(4027), + [sym_true] = ACTIONS(4025), + [sym_false] = ACTIONS(4025), + [anon_sym_NULL] = ACTIONS(4025), + [anon_sym_nullptr] = ACTIONS(4025), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4025), + [anon_sym_decltype] = ACTIONS(4025), + [anon_sym_explicit] = ACTIONS(4025), + [anon_sym_export] = ACTIONS(4025), + [anon_sym_module] = ACTIONS(4025), + [anon_sym_import] = ACTIONS(4025), + [anon_sym_template] = ACTIONS(4025), + [anon_sym_operator] = ACTIONS(4025), + [anon_sym_try] = ACTIONS(4025), + [anon_sym_delete] = ACTIONS(4025), + [anon_sym_throw] = ACTIONS(4025), + [anon_sym_namespace] = ACTIONS(4025), + [anon_sym_static_assert] = ACTIONS(4025), + [anon_sym_concept] = ACTIONS(4025), + [anon_sym_co_return] = ACTIONS(4025), + [anon_sym_co_yield] = ACTIONS(4025), + [anon_sym_R_DQUOTE] = ACTIONS(4027), + [anon_sym_LR_DQUOTE] = ACTIONS(4027), + [anon_sym_uR_DQUOTE] = ACTIONS(4027), + [anon_sym_UR_DQUOTE] = ACTIONS(4027), + [anon_sym_u8R_DQUOTE] = ACTIONS(4027), + [anon_sym_co_await] = ACTIONS(4025), + [anon_sym_new] = ACTIONS(4025), + [anon_sym_requires] = ACTIONS(4025), + [anon_sym_CARET_CARET] = ACTIONS(4027), + [anon_sym_LBRACK_COLON] = ACTIONS(4027), + [sym_this] = ACTIONS(4025), + }, + [STATE(794)] = { + [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(795)] = { + [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(796)] = { + [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), @@ -166122,3306 +176804,6369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(797)] = { + [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(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(798)] = { + [sym_identifier] = ACTIONS(4056), + [aux_sym_preproc_include_token1] = ACTIONS(4056), + [aux_sym_preproc_def_token1] = ACTIONS(4056), + [aux_sym_preproc_if_token1] = ACTIONS(4056), + [aux_sym_preproc_if_token2] = ACTIONS(4056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4056), + [sym_preproc_directive] = ACTIONS(4056), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_TILDE] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4056), + [anon_sym_PLUS] = ACTIONS(4056), + [anon_sym_STAR] = ACTIONS(4058), + [anon_sym_AMP_AMP] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4056), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym___extension__] = ACTIONS(4056), + [anon_sym_typedef] = ACTIONS(4056), + [anon_sym_virtual] = ACTIONS(4056), + [anon_sym_extern] = ACTIONS(4056), + [anon_sym___attribute__] = ACTIONS(4056), + [anon_sym___attribute] = ACTIONS(4056), + [anon_sym_using] = ACTIONS(4056), + [anon_sym_COLON_COLON] = ACTIONS(4058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4058), + [anon_sym___declspec] = ACTIONS(4056), + [anon_sym___based] = ACTIONS(4056), + [anon_sym___cdecl] = ACTIONS(4056), + [anon_sym___clrcall] = ACTIONS(4056), + [anon_sym___stdcall] = ACTIONS(4056), + [anon_sym___fastcall] = ACTIONS(4056), + [anon_sym___thiscall] = ACTIONS(4056), + [anon_sym___vectorcall] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4058), + [anon_sym_signed] = ACTIONS(4056), + [anon_sym_unsigned] = ACTIONS(4056), + [anon_sym_long] = ACTIONS(4056), + [anon_sym_short] = ACTIONS(4056), + [anon_sym_LBRACK] = ACTIONS(4056), + [anon_sym_static] = ACTIONS(4056), + [anon_sym_register] = ACTIONS(4056), + [anon_sym_inline] = ACTIONS(4056), + [anon_sym___inline] = ACTIONS(4056), + [anon_sym___inline__] = ACTIONS(4056), + [anon_sym___forceinline] = ACTIONS(4056), + [anon_sym_thread_local] = ACTIONS(4056), + [anon_sym___thread] = ACTIONS(4056), + [anon_sym_const] = ACTIONS(4056), + [anon_sym_constexpr] = ACTIONS(4056), + [anon_sym_volatile] = ACTIONS(4056), + [anon_sym_restrict] = ACTIONS(4056), + [anon_sym___restrict__] = ACTIONS(4056), + [anon_sym__Atomic] = ACTIONS(4056), + [anon_sym__Noreturn] = ACTIONS(4056), + [anon_sym_noreturn] = ACTIONS(4056), + [anon_sym__Nonnull] = ACTIONS(4056), + [anon_sym_mutable] = ACTIONS(4056), + [anon_sym_constinit] = ACTIONS(4056), + [anon_sym_consteval] = ACTIONS(4056), + [anon_sym_alignas] = ACTIONS(4056), + [anon_sym__Alignas] = ACTIONS(4056), + [sym_primitive_type] = ACTIONS(4056), + [anon_sym_enum] = ACTIONS(4056), + [anon_sym_class] = ACTIONS(4056), + [anon_sym_struct] = ACTIONS(4056), + [anon_sym_union] = ACTIONS(4056), + [anon_sym_if] = ACTIONS(4056), + [anon_sym_switch] = ACTIONS(4056), + [anon_sym_case] = ACTIONS(4056), + [anon_sym_default] = ACTIONS(4056), + [anon_sym_while] = ACTIONS(4056), + [anon_sym_do] = ACTIONS(4056), + [anon_sym_for] = ACTIONS(4056), + [anon_sym_return] = ACTIONS(4056), + [anon_sym_break] = ACTIONS(4056), + [anon_sym_continue] = ACTIONS(4056), + [anon_sym_goto] = ACTIONS(4056), + [anon_sym___try] = ACTIONS(4056), + [anon_sym___leave] = ACTIONS(4056), + [anon_sym_not] = ACTIONS(4056), + [anon_sym_compl] = ACTIONS(4056), + [anon_sym_DASH_DASH] = ACTIONS(4058), + [anon_sym_PLUS_PLUS] = ACTIONS(4058), + [anon_sym_sizeof] = ACTIONS(4056), + [anon_sym___alignof__] = ACTIONS(4056), + [anon_sym___alignof] = ACTIONS(4056), + [anon_sym__alignof] = ACTIONS(4056), + [anon_sym_alignof] = ACTIONS(4056), + [anon_sym__Alignof] = ACTIONS(4056), + [anon_sym_offsetof] = ACTIONS(4056), + [anon_sym__Generic] = ACTIONS(4056), + [anon_sym_typename] = ACTIONS(4056), + [anon_sym_asm] = ACTIONS(4056), + [anon_sym___asm__] = ACTIONS(4056), + [anon_sym___asm] = ACTIONS(4056), + [sym_number_literal] = ACTIONS(4058), + [anon_sym_L_SQUOTE] = ACTIONS(4058), + [anon_sym_u_SQUOTE] = ACTIONS(4058), + [anon_sym_U_SQUOTE] = ACTIONS(4058), + [anon_sym_u8_SQUOTE] = ACTIONS(4058), + [anon_sym_SQUOTE] = ACTIONS(4058), + [anon_sym_L_DQUOTE] = ACTIONS(4058), + [anon_sym_u_DQUOTE] = ACTIONS(4058), + [anon_sym_U_DQUOTE] = ACTIONS(4058), + [anon_sym_u8_DQUOTE] = ACTIONS(4058), + [anon_sym_DQUOTE] = ACTIONS(4058), + [sym_true] = ACTIONS(4056), + [sym_false] = ACTIONS(4056), + [anon_sym_NULL] = ACTIONS(4056), + [anon_sym_nullptr] = ACTIONS(4056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4056), + [anon_sym_decltype] = ACTIONS(4056), + [anon_sym_explicit] = ACTIONS(4056), + [anon_sym_export] = ACTIONS(4056), + [anon_sym_module] = ACTIONS(4056), + [anon_sym_import] = ACTIONS(4056), + [anon_sym_template] = ACTIONS(4056), + [anon_sym_operator] = ACTIONS(4056), + [anon_sym_try] = ACTIONS(4056), + [anon_sym_delete] = ACTIONS(4056), + [anon_sym_throw] = ACTIONS(4056), + [anon_sym_namespace] = ACTIONS(4056), + [anon_sym_static_assert] = ACTIONS(4056), + [anon_sym_concept] = ACTIONS(4056), + [anon_sym_co_return] = ACTIONS(4056), + [anon_sym_co_yield] = ACTIONS(4056), + [anon_sym_R_DQUOTE] = ACTIONS(4058), + [anon_sym_LR_DQUOTE] = ACTIONS(4058), + [anon_sym_uR_DQUOTE] = ACTIONS(4058), + [anon_sym_UR_DQUOTE] = ACTIONS(4058), + [anon_sym_u8R_DQUOTE] = ACTIONS(4058), + [anon_sym_co_await] = ACTIONS(4056), + [anon_sym_new] = ACTIONS(4056), + [anon_sym_requires] = ACTIONS(4056), + [anon_sym_CARET_CARET] = ACTIONS(4058), + [anon_sym_LBRACK_COLON] = ACTIONS(4058), + [sym_this] = ACTIONS(4056), }, - [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), + [STATE(799)] = { + [sym_identifier] = ACTIONS(3444), + [aux_sym_preproc_include_token1] = ACTIONS(3444), + [aux_sym_preproc_def_token1] = ACTIONS(3444), + [aux_sym_preproc_if_token1] = ACTIONS(3444), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3444), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3444), + [sym_preproc_directive] = ACTIONS(3444), + [anon_sym_LPAREN2] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3444), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(3444), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_virtual] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(3444), + [anon_sym___attribute__] = ACTIONS(3444), + [anon_sym___attribute] = ACTIONS(3444), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_COLON_COLON] = ACTIONS(3446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), + [anon_sym___declspec] = ACTIONS(3444), + [anon_sym___based] = ACTIONS(3444), + [anon_sym___cdecl] = ACTIONS(3444), + [anon_sym___clrcall] = ACTIONS(3444), + [anon_sym___stdcall] = ACTIONS(3444), + [anon_sym___fastcall] = ACTIONS(3444), + [anon_sym___thiscall] = ACTIONS(3444), + [anon_sym___vectorcall] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_signed] = ACTIONS(3444), + [anon_sym_unsigned] = ACTIONS(3444), + [anon_sym_long] = ACTIONS(3444), + [anon_sym_short] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_register] = ACTIONS(3444), + [anon_sym_inline] = ACTIONS(3444), + [anon_sym___inline] = ACTIONS(3444), + [anon_sym___inline__] = ACTIONS(3444), + [anon_sym___forceinline] = ACTIONS(3444), + [anon_sym_thread_local] = ACTIONS(3444), + [anon_sym___thread] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_constexpr] = ACTIONS(3444), + [anon_sym_volatile] = ACTIONS(3444), + [anon_sym_restrict] = ACTIONS(3444), + [anon_sym___restrict__] = ACTIONS(3444), + [anon_sym__Atomic] = ACTIONS(3444), + [anon_sym__Noreturn] = ACTIONS(3444), + [anon_sym_noreturn] = ACTIONS(3444), + [anon_sym__Nonnull] = ACTIONS(3444), + [anon_sym_mutable] = ACTIONS(3444), + [anon_sym_constinit] = ACTIONS(3444), + [anon_sym_consteval] = ACTIONS(3444), + [anon_sym_alignas] = ACTIONS(3444), + [anon_sym__Alignas] = ACTIONS(3444), + [sym_primitive_type] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_struct] = ACTIONS(3444), + [anon_sym_union] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_else] = ACTIONS(3444), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_case] = ACTIONS(3444), + [anon_sym_default] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_goto] = ACTIONS(3444), + [anon_sym___try] = ACTIONS(3444), + [anon_sym___leave] = ACTIONS(3444), + [anon_sym_not] = ACTIONS(3444), + [anon_sym_compl] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_sizeof] = ACTIONS(3444), + [anon_sym___alignof__] = ACTIONS(3444), + [anon_sym___alignof] = ACTIONS(3444), + [anon_sym__alignof] = ACTIONS(3444), + [anon_sym_alignof] = ACTIONS(3444), + [anon_sym__Alignof] = ACTIONS(3444), + [anon_sym_offsetof] = ACTIONS(3444), + [anon_sym__Generic] = ACTIONS(3444), + [anon_sym_typename] = ACTIONS(3444), + [anon_sym_asm] = ACTIONS(3444), + [anon_sym___asm__] = ACTIONS(3444), + [anon_sym___asm] = ACTIONS(3444), + [sym_number_literal] = ACTIONS(3446), + [anon_sym_L_SQUOTE] = ACTIONS(3446), + [anon_sym_u_SQUOTE] = ACTIONS(3446), + [anon_sym_U_SQUOTE] = ACTIONS(3446), + [anon_sym_u8_SQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_L_DQUOTE] = ACTIONS(3446), + [anon_sym_u_DQUOTE] = ACTIONS(3446), + [anon_sym_U_DQUOTE] = ACTIONS(3446), + [anon_sym_u8_DQUOTE] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [anon_sym_NULL] = ACTIONS(3444), + [anon_sym_nullptr] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3444), + [anon_sym_decltype] = ACTIONS(3444), + [anon_sym_explicit] = ACTIONS(3444), + [anon_sym_export] = ACTIONS(3444), + [anon_sym_import] = ACTIONS(3444), + [anon_sym_template] = ACTIONS(3444), + [anon_sym_operator] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_delete] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_namespace] = ACTIONS(3444), + [anon_sym_static_assert] = ACTIONS(3444), + [anon_sym_concept] = ACTIONS(3444), + [anon_sym_co_return] = ACTIONS(3444), + [anon_sym_co_yield] = ACTIONS(3444), + [anon_sym_R_DQUOTE] = ACTIONS(3446), + [anon_sym_LR_DQUOTE] = ACTIONS(3446), + [anon_sym_uR_DQUOTE] = ACTIONS(3446), + [anon_sym_UR_DQUOTE] = ACTIONS(3446), + [anon_sym_u8R_DQUOTE] = ACTIONS(3446), + [anon_sym_co_await] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_requires] = ACTIONS(3444), + [anon_sym_CARET_CARET] = ACTIONS(3446), + [anon_sym_LBRACK_COLON] = ACTIONS(3446), + [sym_this] = ACTIONS(3444), + }, + [STATE(800)] = { + [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(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), + [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(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(801)] = { + [sym_identifier] = ACTIONS(4064), + [aux_sym_preproc_include_token1] = ACTIONS(4064), + [aux_sym_preproc_def_token1] = ACTIONS(4064), + [aux_sym_preproc_if_token1] = ACTIONS(4064), + [aux_sym_preproc_if_token2] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4064), + [sym_preproc_directive] = ACTIONS(4064), + [anon_sym_LPAREN2] = ACTIONS(4066), + [anon_sym_BANG] = ACTIONS(4066), + [anon_sym_TILDE] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4066), + [anon_sym_AMP_AMP] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym___extension__] = ACTIONS(4064), + [anon_sym_typedef] = ACTIONS(4064), + [anon_sym_virtual] = ACTIONS(4064), + [anon_sym_extern] = ACTIONS(4064), + [anon_sym___attribute__] = ACTIONS(4064), + [anon_sym___attribute] = ACTIONS(4064), + [anon_sym_using] = ACTIONS(4064), + [anon_sym_COLON_COLON] = ACTIONS(4066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4066), + [anon_sym___declspec] = ACTIONS(4064), + [anon_sym___based] = ACTIONS(4064), + [anon_sym___cdecl] = ACTIONS(4064), + [anon_sym___clrcall] = ACTIONS(4064), + [anon_sym___stdcall] = ACTIONS(4064), + [anon_sym___fastcall] = ACTIONS(4064), + [anon_sym___thiscall] = ACTIONS(4064), + [anon_sym___vectorcall] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4066), + [anon_sym_signed] = ACTIONS(4064), + [anon_sym_unsigned] = ACTIONS(4064), + [anon_sym_long] = ACTIONS(4064), + [anon_sym_short] = ACTIONS(4064), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_static] = ACTIONS(4064), + [anon_sym_register] = ACTIONS(4064), + [anon_sym_inline] = ACTIONS(4064), + [anon_sym___inline] = ACTIONS(4064), + [anon_sym___inline__] = ACTIONS(4064), + [anon_sym___forceinline] = ACTIONS(4064), + [anon_sym_thread_local] = ACTIONS(4064), + [anon_sym___thread] = ACTIONS(4064), + [anon_sym_const] = ACTIONS(4064), + [anon_sym_constexpr] = ACTIONS(4064), + [anon_sym_volatile] = ACTIONS(4064), + [anon_sym_restrict] = ACTIONS(4064), + [anon_sym___restrict__] = ACTIONS(4064), + [anon_sym__Atomic] = ACTIONS(4064), + [anon_sym__Noreturn] = ACTIONS(4064), + [anon_sym_noreturn] = ACTIONS(4064), + [anon_sym__Nonnull] = ACTIONS(4064), + [anon_sym_mutable] = ACTIONS(4064), + [anon_sym_constinit] = ACTIONS(4064), + [anon_sym_consteval] = ACTIONS(4064), + [anon_sym_alignas] = ACTIONS(4064), + [anon_sym__Alignas] = ACTIONS(4064), + [sym_primitive_type] = ACTIONS(4064), + [anon_sym_enum] = ACTIONS(4064), + [anon_sym_class] = ACTIONS(4064), + [anon_sym_struct] = ACTIONS(4064), + [anon_sym_union] = ACTIONS(4064), + [anon_sym_if] = ACTIONS(4064), + [anon_sym_switch] = ACTIONS(4064), + [anon_sym_case] = ACTIONS(4064), + [anon_sym_default] = ACTIONS(4064), + [anon_sym_while] = ACTIONS(4064), + [anon_sym_do] = ACTIONS(4064), + [anon_sym_for] = ACTIONS(4064), + [anon_sym_return] = ACTIONS(4064), + [anon_sym_break] = ACTIONS(4064), + [anon_sym_continue] = ACTIONS(4064), + [anon_sym_goto] = ACTIONS(4064), + [anon_sym___try] = ACTIONS(4064), + [anon_sym___leave] = ACTIONS(4064), + [anon_sym_not] = ACTIONS(4064), + [anon_sym_compl] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4066), + [anon_sym_PLUS_PLUS] = ACTIONS(4066), + [anon_sym_sizeof] = ACTIONS(4064), + [anon_sym___alignof__] = ACTIONS(4064), + [anon_sym___alignof] = ACTIONS(4064), + [anon_sym__alignof] = ACTIONS(4064), + [anon_sym_alignof] = ACTIONS(4064), + [anon_sym__Alignof] = ACTIONS(4064), + [anon_sym_offsetof] = ACTIONS(4064), + [anon_sym__Generic] = ACTIONS(4064), + [anon_sym_typename] = ACTIONS(4064), + [anon_sym_asm] = ACTIONS(4064), + [anon_sym___asm__] = ACTIONS(4064), + [anon_sym___asm] = ACTIONS(4064), + [sym_number_literal] = ACTIONS(4066), + [anon_sym_L_SQUOTE] = ACTIONS(4066), + [anon_sym_u_SQUOTE] = ACTIONS(4066), + [anon_sym_U_SQUOTE] = ACTIONS(4066), + [anon_sym_u8_SQUOTE] = ACTIONS(4066), + [anon_sym_SQUOTE] = ACTIONS(4066), + [anon_sym_L_DQUOTE] = ACTIONS(4066), + [anon_sym_u_DQUOTE] = ACTIONS(4066), + [anon_sym_U_DQUOTE] = ACTIONS(4066), + [anon_sym_u8_DQUOTE] = ACTIONS(4066), + [anon_sym_DQUOTE] = ACTIONS(4066), + [sym_true] = ACTIONS(4064), + [sym_false] = ACTIONS(4064), + [anon_sym_NULL] = ACTIONS(4064), + [anon_sym_nullptr] = ACTIONS(4064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4064), + [anon_sym_decltype] = ACTIONS(4064), + [anon_sym_explicit] = ACTIONS(4064), + [anon_sym_export] = ACTIONS(4064), + [anon_sym_module] = ACTIONS(4064), + [anon_sym_import] = ACTIONS(4064), + [anon_sym_template] = ACTIONS(4064), + [anon_sym_operator] = ACTIONS(4064), + [anon_sym_try] = ACTIONS(4064), + [anon_sym_delete] = ACTIONS(4064), + [anon_sym_throw] = ACTIONS(4064), + [anon_sym_namespace] = ACTIONS(4064), + [anon_sym_static_assert] = ACTIONS(4064), + [anon_sym_concept] = ACTIONS(4064), + [anon_sym_co_return] = ACTIONS(4064), + [anon_sym_co_yield] = ACTIONS(4064), + [anon_sym_R_DQUOTE] = ACTIONS(4066), + [anon_sym_LR_DQUOTE] = ACTIONS(4066), + [anon_sym_uR_DQUOTE] = ACTIONS(4066), + [anon_sym_UR_DQUOTE] = ACTIONS(4066), + [anon_sym_u8R_DQUOTE] = ACTIONS(4066), + [anon_sym_co_await] = ACTIONS(4064), + [anon_sym_new] = ACTIONS(4064), + [anon_sym_requires] = ACTIONS(4064), + [anon_sym_CARET_CARET] = ACTIONS(4066), + [anon_sym_LBRACK_COLON] = ACTIONS(4066), + [sym_this] = ACTIONS(4064), }, - [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(802)] = { + [sym_identifier] = ACTIONS(4449), + [aux_sym_preproc_include_token1] = ACTIONS(4449), + [aux_sym_preproc_def_token1] = ACTIONS(4449), + [aux_sym_preproc_if_token1] = ACTIONS(4449), + [aux_sym_preproc_if_token2] = ACTIONS(4449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), + [sym_preproc_directive] = ACTIONS(4449), + [anon_sym_LPAREN2] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_TILDE] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_AMP_AMP] = ACTIONS(4451), + [anon_sym_AMP] = ACTIONS(4449), + [anon_sym_SEMI] = ACTIONS(4451), + [anon_sym___extension__] = ACTIONS(4449), + [anon_sym_typedef] = ACTIONS(4449), + [anon_sym_virtual] = ACTIONS(4449), + [anon_sym_extern] = ACTIONS(4449), + [anon_sym___attribute__] = ACTIONS(4449), + [anon_sym___attribute] = ACTIONS(4449), + [anon_sym_using] = ACTIONS(4449), + [anon_sym_COLON_COLON] = ACTIONS(4451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4451), + [anon_sym___declspec] = ACTIONS(4449), + [anon_sym___based] = ACTIONS(4449), + [anon_sym___cdecl] = ACTIONS(4449), + [anon_sym___clrcall] = ACTIONS(4449), + [anon_sym___stdcall] = ACTIONS(4449), + [anon_sym___fastcall] = ACTIONS(4449), + [anon_sym___thiscall] = ACTIONS(4449), + [anon_sym___vectorcall] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(4451), + [anon_sym_signed] = ACTIONS(4449), + [anon_sym_unsigned] = ACTIONS(4449), + [anon_sym_long] = ACTIONS(4449), + [anon_sym_short] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_register] = ACTIONS(4449), + [anon_sym_inline] = ACTIONS(4449), + [anon_sym___inline] = ACTIONS(4449), + [anon_sym___inline__] = ACTIONS(4449), + [anon_sym___forceinline] = ACTIONS(4449), + [anon_sym_thread_local] = ACTIONS(4449), + [anon_sym___thread] = ACTIONS(4449), + [anon_sym_const] = ACTIONS(4449), + [anon_sym_constexpr] = ACTIONS(4449), + [anon_sym_volatile] = ACTIONS(4449), + [anon_sym_restrict] = ACTIONS(4449), + [anon_sym___restrict__] = ACTIONS(4449), + [anon_sym__Atomic] = ACTIONS(4449), + [anon_sym__Noreturn] = ACTIONS(4449), + [anon_sym_noreturn] = ACTIONS(4449), + [anon_sym__Nonnull] = ACTIONS(4449), + [anon_sym_mutable] = ACTIONS(4449), + [anon_sym_constinit] = ACTIONS(4449), + [anon_sym_consteval] = ACTIONS(4449), + [anon_sym_alignas] = ACTIONS(4449), + [anon_sym__Alignas] = ACTIONS(4449), + [sym_primitive_type] = ACTIONS(4449), + [anon_sym_enum] = ACTIONS(4449), + [anon_sym_class] = ACTIONS(4449), + [anon_sym_struct] = ACTIONS(4449), + [anon_sym_union] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(4449), + [anon_sym_switch] = ACTIONS(4449), + [anon_sym_case] = ACTIONS(4449), + [anon_sym_default] = ACTIONS(4449), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_do] = ACTIONS(4449), + [anon_sym_for] = ACTIONS(4449), + [anon_sym_return] = ACTIONS(4449), + [anon_sym_break] = ACTIONS(4449), + [anon_sym_continue] = ACTIONS(4449), + [anon_sym_goto] = ACTIONS(4449), + [anon_sym___try] = ACTIONS(4449), + [anon_sym___leave] = ACTIONS(4449), + [anon_sym_not] = ACTIONS(4449), + [anon_sym_compl] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4451), + [anon_sym_PLUS_PLUS] = ACTIONS(4451), + [anon_sym_sizeof] = ACTIONS(4449), + [anon_sym___alignof__] = ACTIONS(4449), + [anon_sym___alignof] = ACTIONS(4449), + [anon_sym__alignof] = ACTIONS(4449), + [anon_sym_alignof] = ACTIONS(4449), + [anon_sym__Alignof] = ACTIONS(4449), + [anon_sym_offsetof] = ACTIONS(4449), + [anon_sym__Generic] = ACTIONS(4449), + [anon_sym_typename] = ACTIONS(4449), + [anon_sym_asm] = ACTIONS(4449), + [anon_sym___asm__] = ACTIONS(4449), + [anon_sym___asm] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4451), + [anon_sym_L_SQUOTE] = ACTIONS(4451), + [anon_sym_u_SQUOTE] = ACTIONS(4451), + [anon_sym_U_SQUOTE] = ACTIONS(4451), + [anon_sym_u8_SQUOTE] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_L_DQUOTE] = ACTIONS(4451), + [anon_sym_u_DQUOTE] = ACTIONS(4451), + [anon_sym_U_DQUOTE] = ACTIONS(4451), + [anon_sym_u8_DQUOTE] = ACTIONS(4451), + [anon_sym_DQUOTE] = ACTIONS(4451), + [sym_true] = ACTIONS(4449), + [sym_false] = ACTIONS(4449), + [anon_sym_NULL] = ACTIONS(4449), + [anon_sym_nullptr] = ACTIONS(4449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4449), + [anon_sym_decltype] = ACTIONS(4449), + [anon_sym_explicit] = ACTIONS(4449), + [anon_sym_export] = ACTIONS(4449), + [anon_sym_module] = ACTIONS(4449), + [anon_sym_import] = ACTIONS(4449), + [anon_sym_template] = ACTIONS(4449), + [anon_sym_operator] = ACTIONS(4449), + [anon_sym_try] = ACTIONS(4449), + [anon_sym_delete] = ACTIONS(4449), + [anon_sym_throw] = ACTIONS(4449), + [anon_sym_namespace] = ACTIONS(4449), + [anon_sym_static_assert] = ACTIONS(4449), + [anon_sym_concept] = ACTIONS(4449), + [anon_sym_co_return] = ACTIONS(4449), + [anon_sym_co_yield] = ACTIONS(4449), + [anon_sym_R_DQUOTE] = ACTIONS(4451), + [anon_sym_LR_DQUOTE] = ACTIONS(4451), + [anon_sym_uR_DQUOTE] = ACTIONS(4451), + [anon_sym_UR_DQUOTE] = ACTIONS(4451), + [anon_sym_u8R_DQUOTE] = ACTIONS(4451), + [anon_sym_co_await] = ACTIONS(4449), + [anon_sym_new] = ACTIONS(4449), + [anon_sym_requires] = ACTIONS(4449), + [anon_sym_CARET_CARET] = ACTIONS(4451), + [anon_sym_LBRACK_COLON] = ACTIONS(4451), + [sym_this] = ACTIONS(4449), }, - [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(803)] = { + [sym_identifier] = ACTIONS(3997), + [aux_sym_preproc_include_token1] = ACTIONS(3997), + [aux_sym_preproc_def_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token2] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [sym_preproc_directive] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_TILDE] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_SEMI] = ACTIONS(3999), + [anon_sym___extension__] = ACTIONS(3997), + [anon_sym_typedef] = ACTIONS(3997), + [anon_sym_virtual] = ACTIONS(3997), + [anon_sym_extern] = ACTIONS(3997), + [anon_sym___attribute__] = ACTIONS(3997), + [anon_sym___attribute] = ACTIONS(3997), + [anon_sym_using] = ACTIONS(3997), + [anon_sym_COLON_COLON] = ACTIONS(3999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3999), + [anon_sym___declspec] = ACTIONS(3997), + [anon_sym___based] = ACTIONS(3997), + [anon_sym___cdecl] = ACTIONS(3997), + [anon_sym___clrcall] = ACTIONS(3997), + [anon_sym___stdcall] = ACTIONS(3997), + [anon_sym___fastcall] = ACTIONS(3997), + [anon_sym___thiscall] = ACTIONS(3997), + [anon_sym___vectorcall] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3999), + [anon_sym_signed] = ACTIONS(3997), + [anon_sym_unsigned] = ACTIONS(3997), + [anon_sym_long] = ACTIONS(3997), + [anon_sym_short] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_register] = ACTIONS(3997), + [anon_sym_inline] = ACTIONS(3997), + [anon_sym___inline] = ACTIONS(3997), + [anon_sym___inline__] = ACTIONS(3997), + [anon_sym___forceinline] = ACTIONS(3997), + [anon_sym_thread_local] = ACTIONS(3997), + [anon_sym___thread] = ACTIONS(3997), + [anon_sym_const] = ACTIONS(3997), + [anon_sym_constexpr] = ACTIONS(3997), + [anon_sym_volatile] = ACTIONS(3997), + [anon_sym_restrict] = ACTIONS(3997), + [anon_sym___restrict__] = ACTIONS(3997), + [anon_sym__Atomic] = ACTIONS(3997), + [anon_sym__Noreturn] = ACTIONS(3997), + [anon_sym_noreturn] = ACTIONS(3997), + [anon_sym__Nonnull] = ACTIONS(3997), + [anon_sym_mutable] = ACTIONS(3997), + [anon_sym_constinit] = ACTIONS(3997), + [anon_sym_consteval] = ACTIONS(3997), + [anon_sym_alignas] = ACTIONS(3997), + [anon_sym__Alignas] = ACTIONS(3997), + [sym_primitive_type] = ACTIONS(3997), + [anon_sym_enum] = ACTIONS(3997), + [anon_sym_class] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3997), + [anon_sym_union] = ACTIONS(3997), + [anon_sym_if] = ACTIONS(3997), + [anon_sym_switch] = ACTIONS(3997), + [anon_sym_case] = ACTIONS(3997), + [anon_sym_default] = ACTIONS(3997), + [anon_sym_while] = ACTIONS(3997), + [anon_sym_do] = ACTIONS(3997), + [anon_sym_for] = ACTIONS(3997), + [anon_sym_return] = ACTIONS(3997), + [anon_sym_break] = ACTIONS(3997), + [anon_sym_continue] = ACTIONS(3997), + [anon_sym_goto] = ACTIONS(3997), + [anon_sym___try] = ACTIONS(3997), + [anon_sym___leave] = ACTIONS(3997), + [anon_sym_not] = ACTIONS(3997), + [anon_sym_compl] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3999), + [anon_sym_sizeof] = ACTIONS(3997), + [anon_sym___alignof__] = ACTIONS(3997), + [anon_sym___alignof] = ACTIONS(3997), + [anon_sym__alignof] = ACTIONS(3997), + [anon_sym_alignof] = ACTIONS(3997), + [anon_sym__Alignof] = ACTIONS(3997), + [anon_sym_offsetof] = ACTIONS(3997), + [anon_sym__Generic] = ACTIONS(3997), + [anon_sym_typename] = ACTIONS(3997), + [anon_sym_asm] = ACTIONS(3997), + [anon_sym___asm__] = ACTIONS(3997), + [anon_sym___asm] = ACTIONS(3997), + [sym_number_literal] = ACTIONS(3999), + [anon_sym_L_SQUOTE] = ACTIONS(3999), + [anon_sym_u_SQUOTE] = ACTIONS(3999), + [anon_sym_U_SQUOTE] = ACTIONS(3999), + [anon_sym_u8_SQUOTE] = ACTIONS(3999), + [anon_sym_SQUOTE] = ACTIONS(3999), + [anon_sym_L_DQUOTE] = ACTIONS(3999), + [anon_sym_u_DQUOTE] = ACTIONS(3999), + [anon_sym_U_DQUOTE] = ACTIONS(3999), + [anon_sym_u8_DQUOTE] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(3999), + [sym_true] = ACTIONS(3997), + [sym_false] = ACTIONS(3997), + [anon_sym_NULL] = ACTIONS(3997), + [anon_sym_nullptr] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3997), + [anon_sym_decltype] = ACTIONS(3997), + [anon_sym_explicit] = ACTIONS(3997), + [anon_sym_export] = ACTIONS(3997), + [anon_sym_module] = ACTIONS(3997), + [anon_sym_import] = ACTIONS(3997), + [anon_sym_template] = ACTIONS(3997), + [anon_sym_operator] = ACTIONS(3997), + [anon_sym_try] = ACTIONS(3997), + [anon_sym_delete] = ACTIONS(3997), + [anon_sym_throw] = ACTIONS(3997), + [anon_sym_namespace] = ACTIONS(3997), + [anon_sym_static_assert] = ACTIONS(3997), + [anon_sym_concept] = ACTIONS(3997), + [anon_sym_co_return] = ACTIONS(3997), + [anon_sym_co_yield] = ACTIONS(3997), + [anon_sym_R_DQUOTE] = ACTIONS(3999), + [anon_sym_LR_DQUOTE] = ACTIONS(3999), + [anon_sym_uR_DQUOTE] = ACTIONS(3999), + [anon_sym_UR_DQUOTE] = ACTIONS(3999), + [anon_sym_u8R_DQUOTE] = ACTIONS(3999), + [anon_sym_co_await] = ACTIONS(3997), + [anon_sym_new] = ACTIONS(3997), + [anon_sym_requires] = ACTIONS(3997), + [anon_sym_CARET_CARET] = ACTIONS(3999), + [anon_sym_LBRACK_COLON] = ACTIONS(3999), + [sym_this] = ACTIONS(3997), }, - [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(804)] = { + [sym_identifier] = ACTIONS(4142), + [aux_sym_preproc_include_token1] = ACTIONS(4142), + [aux_sym_preproc_def_token1] = ACTIONS(4142), + [aux_sym_preproc_if_token1] = ACTIONS(4142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4142), + [sym_preproc_directive] = ACTIONS(4142), + [anon_sym_LPAREN2] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4144), + [anon_sym_TILDE] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym___extension__] = ACTIONS(4142), + [anon_sym_typedef] = ACTIONS(4142), + [anon_sym_virtual] = ACTIONS(4142), + [anon_sym_extern] = ACTIONS(4142), + [anon_sym___attribute__] = ACTIONS(4142), + [anon_sym___attribute] = ACTIONS(4142), + [anon_sym_using] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4144), + [anon_sym___declspec] = ACTIONS(4142), + [anon_sym___based] = ACTIONS(4142), + [anon_sym___cdecl] = ACTIONS(4142), + [anon_sym___clrcall] = ACTIONS(4142), + [anon_sym___stdcall] = ACTIONS(4142), + [anon_sym___fastcall] = ACTIONS(4142), + [anon_sym___thiscall] = ACTIONS(4142), + [anon_sym___vectorcall] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_RBRACE] = ACTIONS(4144), + [anon_sym_signed] = ACTIONS(4142), + [anon_sym_unsigned] = ACTIONS(4142), + [anon_sym_long] = ACTIONS(4142), + [anon_sym_short] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_static] = ACTIONS(4142), + [anon_sym_register] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym___inline] = ACTIONS(4142), + [anon_sym___inline__] = ACTIONS(4142), + [anon_sym___forceinline] = ACTIONS(4142), + [anon_sym_thread_local] = ACTIONS(4142), + [anon_sym___thread] = ACTIONS(4142), + [anon_sym_const] = ACTIONS(4142), + [anon_sym_constexpr] = ACTIONS(4142), + [anon_sym_volatile] = ACTIONS(4142), + [anon_sym_restrict] = ACTIONS(4142), + [anon_sym___restrict__] = ACTIONS(4142), + [anon_sym__Atomic] = ACTIONS(4142), + [anon_sym__Noreturn] = ACTIONS(4142), + [anon_sym_noreturn] = ACTIONS(4142), + [anon_sym__Nonnull] = ACTIONS(4142), + [anon_sym_mutable] = ACTIONS(4142), + [anon_sym_constinit] = ACTIONS(4142), + [anon_sym_consteval] = ACTIONS(4142), + [anon_sym_alignas] = ACTIONS(4142), + [anon_sym__Alignas] = ACTIONS(4142), + [sym_primitive_type] = ACTIONS(4142), + [anon_sym_enum] = ACTIONS(4142), + [anon_sym_class] = ACTIONS(4142), + [anon_sym_struct] = ACTIONS(4142), + [anon_sym_union] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4142), + [anon_sym_switch] = ACTIONS(4142), + [anon_sym_case] = ACTIONS(4142), + [anon_sym_default] = ACTIONS(4142), + [anon_sym_while] = ACTIONS(4142), + [anon_sym_do] = ACTIONS(4142), + [anon_sym_for] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4142), + [anon_sym_break] = ACTIONS(4142), + [anon_sym_continue] = ACTIONS(4142), + [anon_sym_goto] = ACTIONS(4142), + [anon_sym___try] = ACTIONS(4142), + [anon_sym___leave] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4142), + [anon_sym_compl] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_sizeof] = ACTIONS(4142), + [anon_sym___alignof__] = ACTIONS(4142), + [anon_sym___alignof] = ACTIONS(4142), + [anon_sym__alignof] = ACTIONS(4142), + [anon_sym_alignof] = ACTIONS(4142), + [anon_sym__Alignof] = ACTIONS(4142), + [anon_sym_offsetof] = ACTIONS(4142), + [anon_sym__Generic] = ACTIONS(4142), + [anon_sym_typename] = ACTIONS(4142), + [anon_sym_asm] = ACTIONS(4142), + [anon_sym___asm__] = ACTIONS(4142), + [anon_sym___asm] = ACTIONS(4142), + [sym_number_literal] = ACTIONS(4144), + [anon_sym_L_SQUOTE] = ACTIONS(4144), + [anon_sym_u_SQUOTE] = ACTIONS(4144), + [anon_sym_U_SQUOTE] = ACTIONS(4144), + [anon_sym_u8_SQUOTE] = ACTIONS(4144), + [anon_sym_SQUOTE] = ACTIONS(4144), + [anon_sym_L_DQUOTE] = ACTIONS(4144), + [anon_sym_u_DQUOTE] = ACTIONS(4144), + [anon_sym_U_DQUOTE] = ACTIONS(4144), + [anon_sym_u8_DQUOTE] = ACTIONS(4144), + [anon_sym_DQUOTE] = ACTIONS(4144), + [sym_true] = ACTIONS(4142), + [sym_false] = ACTIONS(4142), + [anon_sym_NULL] = ACTIONS(4142), + [anon_sym_nullptr] = ACTIONS(4142), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4142), + [anon_sym_decltype] = ACTIONS(4142), + [anon_sym_explicit] = ACTIONS(4142), + [anon_sym_export] = ACTIONS(4142), + [anon_sym_import] = ACTIONS(4142), + [anon_sym_template] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_try] = ACTIONS(4142), + [anon_sym_delete] = ACTIONS(4142), + [anon_sym_throw] = ACTIONS(4142), + [anon_sym_namespace] = ACTIONS(4142), + [anon_sym_static_assert] = ACTIONS(4142), + [anon_sym_concept] = ACTIONS(4142), + [anon_sym_co_return] = ACTIONS(4142), + [anon_sym_co_yield] = ACTIONS(4142), + [anon_sym_R_DQUOTE] = ACTIONS(4144), + [anon_sym_LR_DQUOTE] = ACTIONS(4144), + [anon_sym_uR_DQUOTE] = ACTIONS(4144), + [anon_sym_UR_DQUOTE] = ACTIONS(4144), + [anon_sym_u8R_DQUOTE] = ACTIONS(4144), + [anon_sym_co_await] = ACTIONS(4142), + [anon_sym_new] = ACTIONS(4142), + [anon_sym_requires] = ACTIONS(4142), + [anon_sym_CARET_CARET] = ACTIONS(4144), + [anon_sym_LBRACK_COLON] = ACTIONS(4144), + [sym_this] = ACTIONS(4142), }, - [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), + [STATE(805)] = { + [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_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_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(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), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_export] = 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(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), + [STATE(806)] = { + [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(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), + [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), }, - [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), + [STATE(807)] = { + [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(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), + [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), }, - [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), + [STATE(808)] = { + [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(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), + [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), }, - [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(809)] = { + [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), }, - [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(810)] = { + [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), }, - [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(811)] = { + [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(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), + [STATE(812)] = { + [sym_identifier] = ACTIONS(4130), + [aux_sym_preproc_include_token1] = ACTIONS(4130), + [aux_sym_preproc_def_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4130), + [sym_preproc_directive] = ACTIONS(4130), + [anon_sym_LPAREN2] = ACTIONS(4132), + [anon_sym_BANG] = ACTIONS(4132), + [anon_sym_TILDE] = ACTIONS(4132), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym___extension__] = ACTIONS(4130), + [anon_sym_typedef] = ACTIONS(4130), + [anon_sym_virtual] = ACTIONS(4130), + [anon_sym_extern] = ACTIONS(4130), + [anon_sym___attribute__] = ACTIONS(4130), + [anon_sym___attribute] = ACTIONS(4130), + [anon_sym_using] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4132), + [anon_sym___declspec] = ACTIONS(4130), + [anon_sym___based] = ACTIONS(4130), + [anon_sym___cdecl] = ACTIONS(4130), + [anon_sym___clrcall] = ACTIONS(4130), + [anon_sym___stdcall] = ACTIONS(4130), + [anon_sym___fastcall] = ACTIONS(4130), + [anon_sym___thiscall] = ACTIONS(4130), + [anon_sym___vectorcall] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_signed] = ACTIONS(4130), + [anon_sym_unsigned] = ACTIONS(4130), + [anon_sym_long] = ACTIONS(4130), + [anon_sym_short] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4130), + [anon_sym_static] = ACTIONS(4130), + [anon_sym_register] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym___inline] = ACTIONS(4130), + [anon_sym___inline__] = ACTIONS(4130), + [anon_sym___forceinline] = ACTIONS(4130), + [anon_sym_thread_local] = ACTIONS(4130), + [anon_sym___thread] = ACTIONS(4130), + [anon_sym_const] = ACTIONS(4130), + [anon_sym_constexpr] = ACTIONS(4130), + [anon_sym_volatile] = ACTIONS(4130), + [anon_sym_restrict] = ACTIONS(4130), + [anon_sym___restrict__] = ACTIONS(4130), + [anon_sym__Atomic] = ACTIONS(4130), + [anon_sym__Noreturn] = ACTIONS(4130), + [anon_sym_noreturn] = ACTIONS(4130), + [anon_sym__Nonnull] = ACTIONS(4130), + [anon_sym_mutable] = ACTIONS(4130), + [anon_sym_constinit] = ACTIONS(4130), + [anon_sym_consteval] = ACTIONS(4130), + [anon_sym_alignas] = ACTIONS(4130), + [anon_sym__Alignas] = ACTIONS(4130), + [sym_primitive_type] = ACTIONS(4130), + [anon_sym_enum] = ACTIONS(4130), + [anon_sym_class] = ACTIONS(4130), + [anon_sym_struct] = ACTIONS(4130), + [anon_sym_union] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_switch] = ACTIONS(4130), + [anon_sym_case] = ACTIONS(4130), + [anon_sym_default] = ACTIONS(4130), + [anon_sym_while] = ACTIONS(4130), + [anon_sym_do] = ACTIONS(4130), + [anon_sym_for] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_break] = ACTIONS(4130), + [anon_sym_continue] = ACTIONS(4130), + [anon_sym_goto] = ACTIONS(4130), + [anon_sym___try] = ACTIONS(4130), + [anon_sym___leave] = ACTIONS(4130), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_compl] = ACTIONS(4130), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_sizeof] = ACTIONS(4130), + [anon_sym___alignof__] = ACTIONS(4130), + [anon_sym___alignof] = ACTIONS(4130), + [anon_sym__alignof] = ACTIONS(4130), + [anon_sym_alignof] = ACTIONS(4130), + [anon_sym__Alignof] = ACTIONS(4130), + [anon_sym_offsetof] = ACTIONS(4130), + [anon_sym__Generic] = ACTIONS(4130), + [anon_sym_typename] = ACTIONS(4130), + [anon_sym_asm] = ACTIONS(4130), + [anon_sym___asm__] = ACTIONS(4130), + [anon_sym___asm] = ACTIONS(4130), + [sym_number_literal] = ACTIONS(4132), + [anon_sym_L_SQUOTE] = ACTIONS(4132), + [anon_sym_u_SQUOTE] = ACTIONS(4132), + [anon_sym_U_SQUOTE] = ACTIONS(4132), + [anon_sym_u8_SQUOTE] = ACTIONS(4132), + [anon_sym_SQUOTE] = ACTIONS(4132), + [anon_sym_L_DQUOTE] = ACTIONS(4132), + [anon_sym_u_DQUOTE] = ACTIONS(4132), + [anon_sym_U_DQUOTE] = ACTIONS(4132), + [anon_sym_u8_DQUOTE] = ACTIONS(4132), + [anon_sym_DQUOTE] = ACTIONS(4132), + [sym_true] = ACTIONS(4130), + [sym_false] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_nullptr] = ACTIONS(4130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4130), + [anon_sym_decltype] = ACTIONS(4130), + [anon_sym_explicit] = ACTIONS(4130), + [anon_sym_export] = ACTIONS(4130), + [anon_sym_import] = ACTIONS(4130), + [anon_sym_template] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_try] = ACTIONS(4130), + [anon_sym_delete] = ACTIONS(4130), + [anon_sym_throw] = ACTIONS(4130), + [anon_sym_namespace] = ACTIONS(4130), + [anon_sym_static_assert] = ACTIONS(4130), + [anon_sym_concept] = ACTIONS(4130), + [anon_sym_co_return] = ACTIONS(4130), + [anon_sym_co_yield] = ACTIONS(4130), + [anon_sym_R_DQUOTE] = ACTIONS(4132), + [anon_sym_LR_DQUOTE] = ACTIONS(4132), + [anon_sym_uR_DQUOTE] = ACTIONS(4132), + [anon_sym_UR_DQUOTE] = ACTIONS(4132), + [anon_sym_u8R_DQUOTE] = ACTIONS(4132), + [anon_sym_co_await] = ACTIONS(4130), + [anon_sym_new] = ACTIONS(4130), + [anon_sym_requires] = ACTIONS(4130), + [anon_sym_CARET_CARET] = ACTIONS(4132), + [anon_sym_LBRACK_COLON] = ACTIONS(4132), + [sym_this] = ACTIONS(4130), }, - [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), + [STATE(813)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_include_token1] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym___cdecl] = ACTIONS(4134), + [anon_sym___clrcall] = ACTIONS(4134), + [anon_sym___stdcall] = ACTIONS(4134), + [anon_sym___fastcall] = ACTIONS(4134), + [anon_sym___thiscall] = ACTIONS(4134), + [anon_sym___vectorcall] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_switch] = ACTIONS(4134), + [anon_sym_case] = ACTIONS(4134), + [anon_sym_default] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_do] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_goto] = ACTIONS(4134), + [anon_sym___try] = ACTIONS(4134), + [anon_sym___leave] = ACTIONS(4134), + [anon_sym_not] = ACTIONS(4134), + [anon_sym_compl] = ACTIONS(4134), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_sizeof] = ACTIONS(4134), + [anon_sym___alignof__] = ACTIONS(4134), + [anon_sym___alignof] = ACTIONS(4134), + [anon_sym__alignof] = ACTIONS(4134), + [anon_sym_alignof] = ACTIONS(4134), + [anon_sym__Alignof] = ACTIONS(4134), + [anon_sym_offsetof] = ACTIONS(4134), + [anon_sym__Generic] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [anon_sym_asm] = ACTIONS(4134), + [anon_sym___asm__] = ACTIONS(4134), + [anon_sym___asm] = ACTIONS(4134), + [sym_number_literal] = ACTIONS(4136), + [anon_sym_L_SQUOTE] = ACTIONS(4136), + [anon_sym_u_SQUOTE] = ACTIONS(4136), + [anon_sym_U_SQUOTE] = ACTIONS(4136), + [anon_sym_u8_SQUOTE] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4136), + [anon_sym_L_DQUOTE] = ACTIONS(4136), + [anon_sym_u_DQUOTE] = ACTIONS(4136), + [anon_sym_U_DQUOTE] = ACTIONS(4136), + [anon_sym_u8_DQUOTE] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [sym_true] = ACTIONS(4134), + [sym_false] = ACTIONS(4134), + [anon_sym_NULL] = ACTIONS(4134), + [anon_sym_nullptr] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_export] = ACTIONS(4134), + [anon_sym_import] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_delete] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_namespace] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_concept] = ACTIONS(4134), + [anon_sym_co_return] = ACTIONS(4134), + [anon_sym_co_yield] = ACTIONS(4134), + [anon_sym_R_DQUOTE] = ACTIONS(4136), + [anon_sym_LR_DQUOTE] = ACTIONS(4136), + [anon_sym_uR_DQUOTE] = ACTIONS(4136), + [anon_sym_UR_DQUOTE] = ACTIONS(4136), + [anon_sym_u8R_DQUOTE] = ACTIONS(4136), + [anon_sym_co_await] = ACTIONS(4134), + [anon_sym_new] = ACTIONS(4134), + [anon_sym_requires] = ACTIONS(4134), + [anon_sym_CARET_CARET] = ACTIONS(4136), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + [sym_this] = ACTIONS(4134), }, - [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), + [STATE(814)] = { + [sym_identifier] = ACTIONS(4226), + [aux_sym_preproc_include_token1] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym___cdecl] = ACTIONS(4226), + [anon_sym___clrcall] = ACTIONS(4226), + [anon_sym___stdcall] = ACTIONS(4226), + [anon_sym___fastcall] = ACTIONS(4226), + [anon_sym___thiscall] = ACTIONS(4226), + [anon_sym___vectorcall] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_case] = ACTIONS(4226), + [anon_sym_default] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_do] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym___try] = ACTIONS(4226), + [anon_sym___leave] = ACTIONS(4226), + [anon_sym_not] = ACTIONS(4226), + [anon_sym_compl] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_sizeof] = ACTIONS(4226), + [anon_sym___alignof__] = ACTIONS(4226), + [anon_sym___alignof] = ACTIONS(4226), + [anon_sym__alignof] = ACTIONS(4226), + [anon_sym_alignof] = ACTIONS(4226), + [anon_sym__Alignof] = ACTIONS(4226), + [anon_sym_offsetof] = ACTIONS(4226), + [anon_sym__Generic] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym___asm__] = ACTIONS(4226), + [anon_sym___asm] = ACTIONS(4226), + [sym_number_literal] = ACTIONS(4228), + [anon_sym_L_SQUOTE] = ACTIONS(4228), + [anon_sym_u_SQUOTE] = ACTIONS(4228), + [anon_sym_U_SQUOTE] = ACTIONS(4228), + [anon_sym_u8_SQUOTE] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4228), + [anon_sym_L_DQUOTE] = ACTIONS(4228), + [anon_sym_u_DQUOTE] = ACTIONS(4228), + [anon_sym_U_DQUOTE] = ACTIONS(4228), + [anon_sym_u8_DQUOTE] = ACTIONS(4228), + [anon_sym_DQUOTE] = ACTIONS(4228), + [sym_true] = ACTIONS(4226), + [sym_false] = ACTIONS(4226), + [anon_sym_NULL] = ACTIONS(4226), + [anon_sym_nullptr] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_export] = ACTIONS(4226), + [anon_sym_import] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_delete] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_namespace] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_concept] = ACTIONS(4226), + [anon_sym_co_return] = ACTIONS(4226), + [anon_sym_co_yield] = ACTIONS(4226), + [anon_sym_R_DQUOTE] = ACTIONS(4228), + [anon_sym_LR_DQUOTE] = ACTIONS(4228), + [anon_sym_uR_DQUOTE] = ACTIONS(4228), + [anon_sym_UR_DQUOTE] = ACTIONS(4228), + [anon_sym_u8R_DQUOTE] = ACTIONS(4228), + [anon_sym_co_await] = ACTIONS(4226), + [anon_sym_new] = ACTIONS(4226), + [anon_sym_requires] = ACTIONS(4226), + [anon_sym_CARET_CARET] = ACTIONS(4228), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), + [sym_this] = ACTIONS(4226), }, - [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), + [STATE(815)] = { + [sym_identifier] = ACTIONS(4226), + [aux_sym_preproc_include_token1] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym___cdecl] = ACTIONS(4226), + [anon_sym___clrcall] = ACTIONS(4226), + [anon_sym___stdcall] = ACTIONS(4226), + [anon_sym___fastcall] = ACTIONS(4226), + [anon_sym___thiscall] = ACTIONS(4226), + [anon_sym___vectorcall] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_case] = ACTIONS(4226), + [anon_sym_default] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_do] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym___try] = ACTIONS(4226), + [anon_sym___leave] = ACTIONS(4226), + [anon_sym_not] = ACTIONS(4226), + [anon_sym_compl] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_sizeof] = ACTIONS(4226), + [anon_sym___alignof__] = ACTIONS(4226), + [anon_sym___alignof] = ACTIONS(4226), + [anon_sym__alignof] = ACTIONS(4226), + [anon_sym_alignof] = ACTIONS(4226), + [anon_sym__Alignof] = ACTIONS(4226), + [anon_sym_offsetof] = ACTIONS(4226), + [anon_sym__Generic] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym___asm__] = ACTIONS(4226), + [anon_sym___asm] = ACTIONS(4226), + [sym_number_literal] = ACTIONS(4228), + [anon_sym_L_SQUOTE] = ACTIONS(4228), + [anon_sym_u_SQUOTE] = ACTIONS(4228), + [anon_sym_U_SQUOTE] = ACTIONS(4228), + [anon_sym_u8_SQUOTE] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4228), + [anon_sym_L_DQUOTE] = ACTIONS(4228), + [anon_sym_u_DQUOTE] = ACTIONS(4228), + [anon_sym_U_DQUOTE] = ACTIONS(4228), + [anon_sym_u8_DQUOTE] = ACTIONS(4228), + [anon_sym_DQUOTE] = ACTIONS(4228), + [sym_true] = ACTIONS(4226), + [sym_false] = ACTIONS(4226), + [anon_sym_NULL] = ACTIONS(4226), + [anon_sym_nullptr] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_export] = ACTIONS(4226), + [anon_sym_import] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_delete] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_namespace] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_concept] = ACTIONS(4226), + [anon_sym_co_return] = ACTIONS(4226), + [anon_sym_co_yield] = ACTIONS(4226), + [anon_sym_R_DQUOTE] = ACTIONS(4228), + [anon_sym_LR_DQUOTE] = ACTIONS(4228), + [anon_sym_uR_DQUOTE] = ACTIONS(4228), + [anon_sym_UR_DQUOTE] = ACTIONS(4228), + [anon_sym_u8R_DQUOTE] = ACTIONS(4228), + [anon_sym_co_await] = ACTIONS(4226), + [anon_sym_new] = ACTIONS(4226), + [anon_sym_requires] = ACTIONS(4226), + [anon_sym_CARET_CARET] = ACTIONS(4228), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), + [sym_this] = ACTIONS(4226), }, - [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), + [STATE(816)] = { + [sym_identifier] = ACTIONS(4327), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym___cdecl] = ACTIONS(4327), + [anon_sym___clrcall] = ACTIONS(4327), + [anon_sym___stdcall] = ACTIONS(4327), + [anon_sym___fastcall] = ACTIONS(4327), + [anon_sym___thiscall] = ACTIONS(4327), + [anon_sym___vectorcall] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_switch] = ACTIONS(4327), + [anon_sym_case] = ACTIONS(4327), + [anon_sym_default] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_do] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_goto] = ACTIONS(4327), + [anon_sym___try] = ACTIONS(4327), + [anon_sym___leave] = ACTIONS(4327), + [anon_sym_not] = ACTIONS(4327), + [anon_sym_compl] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_sizeof] = ACTIONS(4327), + [anon_sym___alignof__] = ACTIONS(4327), + [anon_sym___alignof] = ACTIONS(4327), + [anon_sym__alignof] = ACTIONS(4327), + [anon_sym_alignof] = ACTIONS(4327), + [anon_sym__Alignof] = ACTIONS(4327), + [anon_sym_offsetof] = ACTIONS(4327), + [anon_sym__Generic] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [anon_sym_asm] = ACTIONS(4327), + [anon_sym___asm__] = ACTIONS(4327), + [anon_sym___asm] = ACTIONS(4327), + [sym_number_literal] = ACTIONS(4329), + [anon_sym_L_SQUOTE] = ACTIONS(4329), + [anon_sym_u_SQUOTE] = ACTIONS(4329), + [anon_sym_U_SQUOTE] = ACTIONS(4329), + [anon_sym_u8_SQUOTE] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_L_DQUOTE] = ACTIONS(4329), + [anon_sym_u_DQUOTE] = ACTIONS(4329), + [anon_sym_U_DQUOTE] = ACTIONS(4329), + [anon_sym_u8_DQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym_true] = ACTIONS(4327), + [sym_false] = ACTIONS(4327), + [anon_sym_NULL] = ACTIONS(4327), + [anon_sym_nullptr] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_export] = ACTIONS(4327), + [anon_sym_import] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_delete] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_namespace] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_concept] = ACTIONS(4327), + [anon_sym_co_return] = ACTIONS(4327), + [anon_sym_co_yield] = ACTIONS(4327), + [anon_sym_R_DQUOTE] = ACTIONS(4329), + [anon_sym_LR_DQUOTE] = ACTIONS(4329), + [anon_sym_uR_DQUOTE] = ACTIONS(4329), + [anon_sym_UR_DQUOTE] = ACTIONS(4329), + [anon_sym_u8R_DQUOTE] = ACTIONS(4329), + [anon_sym_co_await] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4327), + [anon_sym_requires] = ACTIONS(4327), + [anon_sym_CARET_CARET] = ACTIONS(4329), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), + [sym_this] = ACTIONS(4327), + }, + [STATE(817)] = { + [sym_identifier] = ACTIONS(4327), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym___cdecl] = ACTIONS(4327), + [anon_sym___clrcall] = ACTIONS(4327), + [anon_sym___stdcall] = ACTIONS(4327), + [anon_sym___fastcall] = ACTIONS(4327), + [anon_sym___thiscall] = ACTIONS(4327), + [anon_sym___vectorcall] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_switch] = ACTIONS(4327), + [anon_sym_case] = ACTIONS(4327), + [anon_sym_default] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_do] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_goto] = ACTIONS(4327), + [anon_sym___try] = ACTIONS(4327), + [anon_sym___leave] = ACTIONS(4327), + [anon_sym_not] = ACTIONS(4327), + [anon_sym_compl] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_sizeof] = ACTIONS(4327), + [anon_sym___alignof__] = ACTIONS(4327), + [anon_sym___alignof] = ACTIONS(4327), + [anon_sym__alignof] = ACTIONS(4327), + [anon_sym_alignof] = ACTIONS(4327), + [anon_sym__Alignof] = ACTIONS(4327), + [anon_sym_offsetof] = ACTIONS(4327), + [anon_sym__Generic] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [anon_sym_asm] = ACTIONS(4327), + [anon_sym___asm__] = ACTIONS(4327), + [anon_sym___asm] = ACTIONS(4327), + [sym_number_literal] = ACTIONS(4329), + [anon_sym_L_SQUOTE] = ACTIONS(4329), + [anon_sym_u_SQUOTE] = ACTIONS(4329), + [anon_sym_U_SQUOTE] = ACTIONS(4329), + [anon_sym_u8_SQUOTE] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_L_DQUOTE] = ACTIONS(4329), + [anon_sym_u_DQUOTE] = ACTIONS(4329), + [anon_sym_U_DQUOTE] = ACTIONS(4329), + [anon_sym_u8_DQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym_true] = ACTIONS(4327), + [sym_false] = ACTIONS(4327), + [anon_sym_NULL] = ACTIONS(4327), + [anon_sym_nullptr] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_export] = ACTIONS(4327), + [anon_sym_import] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_delete] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_namespace] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_concept] = ACTIONS(4327), + [anon_sym_co_return] = ACTIONS(4327), + [anon_sym_co_yield] = ACTIONS(4327), + [anon_sym_R_DQUOTE] = ACTIONS(4329), + [anon_sym_LR_DQUOTE] = ACTIONS(4329), + [anon_sym_uR_DQUOTE] = ACTIONS(4329), + [anon_sym_UR_DQUOTE] = ACTIONS(4329), + [anon_sym_u8R_DQUOTE] = ACTIONS(4329), + [anon_sym_co_await] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4327), + [anon_sym_requires] = ACTIONS(4327), + [anon_sym_CARET_CARET] = ACTIONS(4329), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), + [sym_this] = ACTIONS(4327), + }, + [STATE(818)] = { + [sym_identifier] = ACTIONS(4331), + [aux_sym_preproc_include_token1] = ACTIONS(4331), + [aux_sym_preproc_def_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token1] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), + [sym_preproc_directive] = ACTIONS(4331), + [anon_sym_LPAREN2] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym___extension__] = ACTIONS(4331), + [anon_sym_typedef] = ACTIONS(4331), + [anon_sym_virtual] = ACTIONS(4331), + [anon_sym_extern] = ACTIONS(4331), + [anon_sym___attribute__] = ACTIONS(4331), + [anon_sym___attribute] = ACTIONS(4331), + [anon_sym_using] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4333), + [anon_sym___declspec] = ACTIONS(4331), + [anon_sym___based] = ACTIONS(4331), + [anon_sym___cdecl] = ACTIONS(4331), + [anon_sym___clrcall] = ACTIONS(4331), + [anon_sym___stdcall] = ACTIONS(4331), + [anon_sym___fastcall] = ACTIONS(4331), + [anon_sym___thiscall] = ACTIONS(4331), + [anon_sym___vectorcall] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_signed] = ACTIONS(4331), + [anon_sym_unsigned] = ACTIONS(4331), + [anon_sym_long] = ACTIONS(4331), + [anon_sym_short] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_static] = ACTIONS(4331), + [anon_sym_register] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym___inline] = ACTIONS(4331), + [anon_sym___inline__] = ACTIONS(4331), + [anon_sym___forceinline] = ACTIONS(4331), + [anon_sym_thread_local] = ACTIONS(4331), + [anon_sym___thread] = ACTIONS(4331), + [anon_sym_const] = ACTIONS(4331), + [anon_sym_constexpr] = ACTIONS(4331), + [anon_sym_volatile] = ACTIONS(4331), + [anon_sym_restrict] = ACTIONS(4331), + [anon_sym___restrict__] = ACTIONS(4331), + [anon_sym__Atomic] = ACTIONS(4331), + [anon_sym__Noreturn] = ACTIONS(4331), + [anon_sym_noreturn] = ACTIONS(4331), + [anon_sym__Nonnull] = ACTIONS(4331), + [anon_sym_mutable] = ACTIONS(4331), + [anon_sym_constinit] = ACTIONS(4331), + [anon_sym_consteval] = ACTIONS(4331), + [anon_sym_alignas] = ACTIONS(4331), + [anon_sym__Alignas] = ACTIONS(4331), + [sym_primitive_type] = ACTIONS(4331), + [anon_sym_enum] = ACTIONS(4331), + [anon_sym_class] = ACTIONS(4331), + [anon_sym_struct] = ACTIONS(4331), + [anon_sym_union] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_case] = ACTIONS(4331), + [anon_sym_default] = ACTIONS(4331), + [anon_sym_while] = ACTIONS(4331), + [anon_sym_do] = ACTIONS(4331), + [anon_sym_for] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_goto] = ACTIONS(4331), + [anon_sym___try] = ACTIONS(4331), + [anon_sym___leave] = ACTIONS(4331), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_compl] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_sizeof] = ACTIONS(4331), + [anon_sym___alignof__] = ACTIONS(4331), + [anon_sym___alignof] = ACTIONS(4331), + [anon_sym__alignof] = ACTIONS(4331), + [anon_sym_alignof] = ACTIONS(4331), + [anon_sym__Alignof] = ACTIONS(4331), + [anon_sym_offsetof] = ACTIONS(4331), + [anon_sym__Generic] = ACTIONS(4331), + [anon_sym_typename] = ACTIONS(4331), + [anon_sym_asm] = ACTIONS(4331), + [anon_sym___asm__] = ACTIONS(4331), + [anon_sym___asm] = ACTIONS(4331), + [sym_number_literal] = ACTIONS(4333), + [anon_sym_L_SQUOTE] = ACTIONS(4333), + [anon_sym_u_SQUOTE] = ACTIONS(4333), + [anon_sym_U_SQUOTE] = ACTIONS(4333), + [anon_sym_u8_SQUOTE] = ACTIONS(4333), + [anon_sym_SQUOTE] = ACTIONS(4333), + [anon_sym_L_DQUOTE] = ACTIONS(4333), + [anon_sym_u_DQUOTE] = ACTIONS(4333), + [anon_sym_U_DQUOTE] = ACTIONS(4333), + [anon_sym_u8_DQUOTE] = ACTIONS(4333), + [anon_sym_DQUOTE] = ACTIONS(4333), + [sym_true] = ACTIONS(4331), + [sym_false] = ACTIONS(4331), + [anon_sym_NULL] = ACTIONS(4331), + [anon_sym_nullptr] = ACTIONS(4331), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4331), + [anon_sym_decltype] = ACTIONS(4331), + [anon_sym_explicit] = ACTIONS(4331), + [anon_sym_export] = ACTIONS(4331), + [anon_sym_import] = ACTIONS(4331), + [anon_sym_template] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_delete] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_namespace] = ACTIONS(4331), + [anon_sym_static_assert] = ACTIONS(4331), + [anon_sym_concept] = ACTIONS(4331), + [anon_sym_co_return] = ACTIONS(4331), + [anon_sym_co_yield] = ACTIONS(4331), + [anon_sym_R_DQUOTE] = ACTIONS(4333), + [anon_sym_LR_DQUOTE] = ACTIONS(4333), + [anon_sym_uR_DQUOTE] = ACTIONS(4333), + [anon_sym_UR_DQUOTE] = ACTIONS(4333), + [anon_sym_u8R_DQUOTE] = ACTIONS(4333), + [anon_sym_co_await] = ACTIONS(4331), + [anon_sym_new] = ACTIONS(4331), + [anon_sym_requires] = ACTIONS(4331), + [anon_sym_CARET_CARET] = ACTIONS(4333), + [anon_sym_LBRACK_COLON] = ACTIONS(4333), + [sym_this] = ACTIONS(4331), + }, + [STATE(819)] = { + [sym_identifier] = ACTIONS(4335), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4335), + [anon_sym_typedef] = ACTIONS(4335), + [anon_sym_virtual] = ACTIONS(4335), + [anon_sym_extern] = ACTIONS(4335), + [anon_sym___attribute__] = ACTIONS(4335), + [anon_sym___attribute] = ACTIONS(4335), + [anon_sym_using] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4337), + [anon_sym___declspec] = ACTIONS(4335), + [anon_sym___based] = ACTIONS(4335), + [anon_sym___cdecl] = ACTIONS(4335), + [anon_sym___clrcall] = ACTIONS(4335), + [anon_sym___stdcall] = ACTIONS(4335), + [anon_sym___fastcall] = ACTIONS(4335), + [anon_sym___thiscall] = ACTIONS(4335), + [anon_sym___vectorcall] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_signed] = ACTIONS(4335), + [anon_sym_unsigned] = ACTIONS(4335), + [anon_sym_long] = ACTIONS(4335), + [anon_sym_short] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4335), + [anon_sym_static] = ACTIONS(4335), + [anon_sym_register] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym___inline] = ACTIONS(4335), + [anon_sym___inline__] = ACTIONS(4335), + [anon_sym___forceinline] = ACTIONS(4335), + [anon_sym_thread_local] = ACTIONS(4335), + [anon_sym___thread] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(4335), + [anon_sym_constexpr] = ACTIONS(4335), + [anon_sym_volatile] = ACTIONS(4335), + [anon_sym_restrict] = ACTIONS(4335), + [anon_sym___restrict__] = ACTIONS(4335), + [anon_sym__Atomic] = ACTIONS(4335), + [anon_sym__Noreturn] = ACTIONS(4335), + [anon_sym_noreturn] = ACTIONS(4335), + [anon_sym__Nonnull] = ACTIONS(4335), + [anon_sym_mutable] = ACTIONS(4335), + [anon_sym_constinit] = ACTIONS(4335), + [anon_sym_consteval] = ACTIONS(4335), + [anon_sym_alignas] = ACTIONS(4335), + [anon_sym__Alignas] = ACTIONS(4335), + [sym_primitive_type] = ACTIONS(4335), + [anon_sym_enum] = ACTIONS(4335), + [anon_sym_class] = ACTIONS(4335), + [anon_sym_struct] = ACTIONS(4335), + [anon_sym_union] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_switch] = ACTIONS(4335), + [anon_sym_case] = ACTIONS(4335), + [anon_sym_default] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_do] = ACTIONS(4335), + [anon_sym_for] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_goto] = ACTIONS(4335), + [anon_sym___try] = ACTIONS(4335), + [anon_sym___leave] = ACTIONS(4335), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_sizeof] = ACTIONS(4335), + [anon_sym___alignof__] = ACTIONS(4335), + [anon_sym___alignof] = ACTIONS(4335), + [anon_sym__alignof] = ACTIONS(4335), + [anon_sym_alignof] = ACTIONS(4335), + [anon_sym__Alignof] = ACTIONS(4335), + [anon_sym_offsetof] = ACTIONS(4335), + [anon_sym__Generic] = ACTIONS(4335), + [anon_sym_typename] = ACTIONS(4335), + [anon_sym_asm] = ACTIONS(4335), + [anon_sym___asm__] = ACTIONS(4335), + [anon_sym___asm] = ACTIONS(4335), + [sym_number_literal] = ACTIONS(4337), + [anon_sym_L_SQUOTE] = ACTIONS(4337), + [anon_sym_u_SQUOTE] = ACTIONS(4337), + [anon_sym_U_SQUOTE] = ACTIONS(4337), + [anon_sym_u8_SQUOTE] = ACTIONS(4337), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_L_DQUOTE] = ACTIONS(4337), + [anon_sym_u_DQUOTE] = ACTIONS(4337), + [anon_sym_U_DQUOTE] = ACTIONS(4337), + [anon_sym_u8_DQUOTE] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym_true] = ACTIONS(4335), + [sym_false] = ACTIONS(4335), + [anon_sym_NULL] = ACTIONS(4335), + [anon_sym_nullptr] = ACTIONS(4335), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4335), + [anon_sym_decltype] = ACTIONS(4335), + [anon_sym_explicit] = ACTIONS(4335), + [anon_sym_export] = ACTIONS(4335), + [anon_sym_import] = ACTIONS(4335), + [anon_sym_template] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_delete] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_namespace] = ACTIONS(4335), + [anon_sym_static_assert] = ACTIONS(4335), + [anon_sym_concept] = ACTIONS(4335), + [anon_sym_co_return] = ACTIONS(4335), + [anon_sym_co_yield] = ACTIONS(4335), + [anon_sym_R_DQUOTE] = ACTIONS(4337), + [anon_sym_LR_DQUOTE] = ACTIONS(4337), + [anon_sym_uR_DQUOTE] = ACTIONS(4337), + [anon_sym_UR_DQUOTE] = ACTIONS(4337), + [anon_sym_u8R_DQUOTE] = ACTIONS(4337), + [anon_sym_co_await] = ACTIONS(4335), + [anon_sym_new] = ACTIONS(4335), + [anon_sym_requires] = ACTIONS(4335), + [anon_sym_CARET_CARET] = ACTIONS(4337), + [anon_sym_LBRACK_COLON] = ACTIONS(4337), + [sym_this] = ACTIONS(4335), + }, + [STATE(820)] = { + [sym_identifier] = ACTIONS(4339), + [aux_sym_preproc_include_token1] = ACTIONS(4339), + [aux_sym_preproc_def_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token1] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4339), + [sym_preproc_directive] = ACTIONS(4339), + [anon_sym_LPAREN2] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4341), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym___extension__] = ACTIONS(4339), + [anon_sym_typedef] = ACTIONS(4339), + [anon_sym_virtual] = ACTIONS(4339), + [anon_sym_extern] = ACTIONS(4339), + [anon_sym___attribute__] = ACTIONS(4339), + [anon_sym___attribute] = ACTIONS(4339), + [anon_sym_using] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4341), + [anon_sym___declspec] = ACTIONS(4339), + [anon_sym___based] = ACTIONS(4339), + [anon_sym___cdecl] = ACTIONS(4339), + [anon_sym___clrcall] = ACTIONS(4339), + [anon_sym___stdcall] = ACTIONS(4339), + [anon_sym___fastcall] = ACTIONS(4339), + [anon_sym___thiscall] = ACTIONS(4339), + [anon_sym___vectorcall] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_signed] = ACTIONS(4339), + [anon_sym_unsigned] = ACTIONS(4339), + [anon_sym_long] = ACTIONS(4339), + [anon_sym_short] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_static] = ACTIONS(4339), + [anon_sym_register] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym___inline] = ACTIONS(4339), + [anon_sym___inline__] = ACTIONS(4339), + [anon_sym___forceinline] = ACTIONS(4339), + [anon_sym_thread_local] = ACTIONS(4339), + [anon_sym___thread] = ACTIONS(4339), + [anon_sym_const] = ACTIONS(4339), + [anon_sym_constexpr] = ACTIONS(4339), + [anon_sym_volatile] = ACTIONS(4339), + [anon_sym_restrict] = ACTIONS(4339), + [anon_sym___restrict__] = ACTIONS(4339), + [anon_sym__Atomic] = ACTIONS(4339), + [anon_sym__Noreturn] = ACTIONS(4339), + [anon_sym_noreturn] = ACTIONS(4339), + [anon_sym__Nonnull] = ACTIONS(4339), + [anon_sym_mutable] = ACTIONS(4339), + [anon_sym_constinit] = ACTIONS(4339), + [anon_sym_consteval] = ACTIONS(4339), + [anon_sym_alignas] = ACTIONS(4339), + [anon_sym__Alignas] = ACTIONS(4339), + [sym_primitive_type] = ACTIONS(4339), + [anon_sym_enum] = ACTIONS(4339), + [anon_sym_class] = ACTIONS(4339), + [anon_sym_struct] = ACTIONS(4339), + [anon_sym_union] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_switch] = ACTIONS(4339), + [anon_sym_case] = ACTIONS(4339), + [anon_sym_default] = ACTIONS(4339), + [anon_sym_while] = ACTIONS(4339), + [anon_sym_do] = ACTIONS(4339), + [anon_sym_for] = ACTIONS(4339), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_break] = ACTIONS(4339), + [anon_sym_continue] = ACTIONS(4339), + [anon_sym_goto] = ACTIONS(4339), + [anon_sym___try] = ACTIONS(4339), + [anon_sym___leave] = ACTIONS(4339), + [anon_sym_not] = ACTIONS(4339), + [anon_sym_compl] = ACTIONS(4339), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_sizeof] = ACTIONS(4339), + [anon_sym___alignof__] = ACTIONS(4339), + [anon_sym___alignof] = ACTIONS(4339), + [anon_sym__alignof] = ACTIONS(4339), + [anon_sym_alignof] = ACTIONS(4339), + [anon_sym__Alignof] = ACTIONS(4339), + [anon_sym_offsetof] = ACTIONS(4339), + [anon_sym__Generic] = ACTIONS(4339), + [anon_sym_typename] = ACTIONS(4339), + [anon_sym_asm] = ACTIONS(4339), + [anon_sym___asm__] = ACTIONS(4339), + [anon_sym___asm] = ACTIONS(4339), + [sym_number_literal] = ACTIONS(4341), + [anon_sym_L_SQUOTE] = ACTIONS(4341), + [anon_sym_u_SQUOTE] = ACTIONS(4341), + [anon_sym_U_SQUOTE] = ACTIONS(4341), + [anon_sym_u8_SQUOTE] = ACTIONS(4341), + [anon_sym_SQUOTE] = ACTIONS(4341), + [anon_sym_L_DQUOTE] = ACTIONS(4341), + [anon_sym_u_DQUOTE] = ACTIONS(4341), + [anon_sym_U_DQUOTE] = ACTIONS(4341), + [anon_sym_u8_DQUOTE] = ACTIONS(4341), + [anon_sym_DQUOTE] = ACTIONS(4341), + [sym_true] = ACTIONS(4339), + [sym_false] = ACTIONS(4339), + [anon_sym_NULL] = ACTIONS(4339), + [anon_sym_nullptr] = ACTIONS(4339), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4339), + [anon_sym_decltype] = ACTIONS(4339), + [anon_sym_explicit] = ACTIONS(4339), + [anon_sym_export] = ACTIONS(4339), + [anon_sym_import] = ACTIONS(4339), + [anon_sym_template] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_delete] = ACTIONS(4339), + [anon_sym_throw] = ACTIONS(4339), + [anon_sym_namespace] = ACTIONS(4339), + [anon_sym_static_assert] = ACTIONS(4339), + [anon_sym_concept] = ACTIONS(4339), + [anon_sym_co_return] = ACTIONS(4339), + [anon_sym_co_yield] = ACTIONS(4339), + [anon_sym_R_DQUOTE] = ACTIONS(4341), + [anon_sym_LR_DQUOTE] = ACTIONS(4341), + [anon_sym_uR_DQUOTE] = ACTIONS(4341), + [anon_sym_UR_DQUOTE] = ACTIONS(4341), + [anon_sym_u8R_DQUOTE] = ACTIONS(4341), + [anon_sym_co_await] = ACTIONS(4339), + [anon_sym_new] = ACTIONS(4339), + [anon_sym_requires] = ACTIONS(4339), + [anon_sym_CARET_CARET] = ACTIONS(4341), + [anon_sym_LBRACK_COLON] = ACTIONS(4341), + [sym_this] = ACTIONS(4339), + }, + [STATE(821)] = { + [sym_identifier] = ACTIONS(4343), + [aux_sym_preproc_include_token1] = ACTIONS(4343), + [aux_sym_preproc_def_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token1] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4343), + [sym_preproc_directive] = ACTIONS(4343), + [anon_sym_LPAREN2] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4345), + [anon_sym_TILDE] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym___extension__] = ACTIONS(4343), + [anon_sym_typedef] = ACTIONS(4343), + [anon_sym_virtual] = ACTIONS(4343), + [anon_sym_extern] = ACTIONS(4343), + [anon_sym___attribute__] = ACTIONS(4343), + [anon_sym___attribute] = ACTIONS(4343), + [anon_sym_using] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4345), + [anon_sym___declspec] = ACTIONS(4343), + [anon_sym___based] = ACTIONS(4343), + [anon_sym___cdecl] = ACTIONS(4343), + [anon_sym___clrcall] = ACTIONS(4343), + [anon_sym___stdcall] = ACTIONS(4343), + [anon_sym___fastcall] = ACTIONS(4343), + [anon_sym___thiscall] = ACTIONS(4343), + [anon_sym___vectorcall] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_signed] = ACTIONS(4343), + [anon_sym_unsigned] = ACTIONS(4343), + [anon_sym_long] = ACTIONS(4343), + [anon_sym_short] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4343), + [anon_sym_static] = ACTIONS(4343), + [anon_sym_register] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym___inline] = ACTIONS(4343), + [anon_sym___inline__] = ACTIONS(4343), + [anon_sym___forceinline] = ACTIONS(4343), + [anon_sym_thread_local] = ACTIONS(4343), + [anon_sym___thread] = ACTIONS(4343), + [anon_sym_const] = ACTIONS(4343), + [anon_sym_constexpr] = ACTIONS(4343), + [anon_sym_volatile] = ACTIONS(4343), + [anon_sym_restrict] = ACTIONS(4343), + [anon_sym___restrict__] = ACTIONS(4343), + [anon_sym__Atomic] = ACTIONS(4343), + [anon_sym__Noreturn] = ACTIONS(4343), + [anon_sym_noreturn] = ACTIONS(4343), + [anon_sym__Nonnull] = ACTIONS(4343), + [anon_sym_mutable] = ACTIONS(4343), + [anon_sym_constinit] = ACTIONS(4343), + [anon_sym_consteval] = ACTIONS(4343), + [anon_sym_alignas] = ACTIONS(4343), + [anon_sym__Alignas] = ACTIONS(4343), + [sym_primitive_type] = ACTIONS(4343), + [anon_sym_enum] = ACTIONS(4343), + [anon_sym_class] = ACTIONS(4343), + [anon_sym_struct] = ACTIONS(4343), + [anon_sym_union] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_switch] = ACTIONS(4343), + [anon_sym_case] = ACTIONS(4343), + [anon_sym_default] = ACTIONS(4343), + [anon_sym_while] = ACTIONS(4343), + [anon_sym_do] = ACTIONS(4343), + [anon_sym_for] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_goto] = ACTIONS(4343), + [anon_sym___try] = ACTIONS(4343), + [anon_sym___leave] = ACTIONS(4343), + [anon_sym_not] = ACTIONS(4343), + [anon_sym_compl] = ACTIONS(4343), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4343), + [anon_sym___alignof__] = ACTIONS(4343), + [anon_sym___alignof] = ACTIONS(4343), + [anon_sym__alignof] = ACTIONS(4343), + [anon_sym_alignof] = ACTIONS(4343), + [anon_sym__Alignof] = ACTIONS(4343), + [anon_sym_offsetof] = ACTIONS(4343), + [anon_sym__Generic] = ACTIONS(4343), + [anon_sym_typename] = ACTIONS(4343), + [anon_sym_asm] = ACTIONS(4343), + [anon_sym___asm__] = ACTIONS(4343), + [anon_sym___asm] = ACTIONS(4343), + [sym_number_literal] = ACTIONS(4345), + [anon_sym_L_SQUOTE] = ACTIONS(4345), + [anon_sym_u_SQUOTE] = ACTIONS(4345), + [anon_sym_U_SQUOTE] = ACTIONS(4345), + [anon_sym_u8_SQUOTE] = ACTIONS(4345), + [anon_sym_SQUOTE] = ACTIONS(4345), + [anon_sym_L_DQUOTE] = ACTIONS(4345), + [anon_sym_u_DQUOTE] = ACTIONS(4345), + [anon_sym_U_DQUOTE] = ACTIONS(4345), + [anon_sym_u8_DQUOTE] = ACTIONS(4345), + [anon_sym_DQUOTE] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [anon_sym_NULL] = ACTIONS(4343), + [anon_sym_nullptr] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4343), + [anon_sym_decltype] = ACTIONS(4343), + [anon_sym_explicit] = ACTIONS(4343), + [anon_sym_export] = ACTIONS(4343), + [anon_sym_import] = ACTIONS(4343), + [anon_sym_template] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_delete] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_namespace] = ACTIONS(4343), + [anon_sym_static_assert] = ACTIONS(4343), + [anon_sym_concept] = ACTIONS(4343), + [anon_sym_co_return] = ACTIONS(4343), + [anon_sym_co_yield] = ACTIONS(4343), + [anon_sym_R_DQUOTE] = ACTIONS(4345), + [anon_sym_LR_DQUOTE] = ACTIONS(4345), + [anon_sym_uR_DQUOTE] = ACTIONS(4345), + [anon_sym_UR_DQUOTE] = ACTIONS(4345), + [anon_sym_u8R_DQUOTE] = ACTIONS(4345), + [anon_sym_co_await] = ACTIONS(4343), + [anon_sym_new] = ACTIONS(4343), + [anon_sym_requires] = ACTIONS(4343), + [anon_sym_CARET_CARET] = ACTIONS(4345), + [anon_sym_LBRACK_COLON] = ACTIONS(4345), + [sym_this] = ACTIONS(4343), + }, + [STATE(822)] = { + [sym_identifier] = ACTIONS(4347), + [aux_sym_preproc_include_token1] = ACTIONS(4347), + [aux_sym_preproc_def_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token1] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), + [sym_preproc_directive] = ACTIONS(4347), + [anon_sym_LPAREN2] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_TILDE] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym___extension__] = ACTIONS(4347), + [anon_sym_typedef] = ACTIONS(4347), + [anon_sym_virtual] = ACTIONS(4347), + [anon_sym_extern] = ACTIONS(4347), + [anon_sym___attribute__] = ACTIONS(4347), + [anon_sym___attribute] = ACTIONS(4347), + [anon_sym_using] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4349), + [anon_sym___declspec] = ACTIONS(4347), + [anon_sym___based] = ACTIONS(4347), + [anon_sym___cdecl] = ACTIONS(4347), + [anon_sym___clrcall] = ACTIONS(4347), + [anon_sym___stdcall] = ACTIONS(4347), + [anon_sym___fastcall] = ACTIONS(4347), + [anon_sym___thiscall] = ACTIONS(4347), + [anon_sym___vectorcall] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_signed] = ACTIONS(4347), + [anon_sym_unsigned] = ACTIONS(4347), + [anon_sym_long] = ACTIONS(4347), + [anon_sym_short] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_static] = ACTIONS(4347), + [anon_sym_register] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym___inline] = ACTIONS(4347), + [anon_sym___inline__] = ACTIONS(4347), + [anon_sym___forceinline] = ACTIONS(4347), + [anon_sym_thread_local] = ACTIONS(4347), + [anon_sym___thread] = ACTIONS(4347), + [anon_sym_const] = ACTIONS(4347), + [anon_sym_constexpr] = ACTIONS(4347), + [anon_sym_volatile] = ACTIONS(4347), + [anon_sym_restrict] = ACTIONS(4347), + [anon_sym___restrict__] = ACTIONS(4347), + [anon_sym__Atomic] = ACTIONS(4347), + [anon_sym__Noreturn] = ACTIONS(4347), + [anon_sym_noreturn] = ACTIONS(4347), + [anon_sym__Nonnull] = ACTIONS(4347), + [anon_sym_mutable] = ACTIONS(4347), + [anon_sym_constinit] = ACTIONS(4347), + [anon_sym_consteval] = ACTIONS(4347), + [anon_sym_alignas] = ACTIONS(4347), + [anon_sym__Alignas] = ACTIONS(4347), + [sym_primitive_type] = ACTIONS(4347), + [anon_sym_enum] = ACTIONS(4347), + [anon_sym_class] = ACTIONS(4347), + [anon_sym_struct] = ACTIONS(4347), + [anon_sym_union] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_switch] = ACTIONS(4347), + [anon_sym_case] = ACTIONS(4347), + [anon_sym_default] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4347), + [anon_sym_do] = ACTIONS(4347), + [anon_sym_for] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_goto] = ACTIONS(4347), + [anon_sym___try] = ACTIONS(4347), + [anon_sym___leave] = ACTIONS(4347), + [anon_sym_not] = ACTIONS(4347), + [anon_sym_compl] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_sizeof] = ACTIONS(4347), + [anon_sym___alignof__] = ACTIONS(4347), + [anon_sym___alignof] = ACTIONS(4347), + [anon_sym__alignof] = ACTIONS(4347), + [anon_sym_alignof] = ACTIONS(4347), + [anon_sym__Alignof] = ACTIONS(4347), + [anon_sym_offsetof] = ACTIONS(4347), + [anon_sym__Generic] = ACTIONS(4347), + [anon_sym_typename] = ACTIONS(4347), + [anon_sym_asm] = ACTIONS(4347), + [anon_sym___asm__] = ACTIONS(4347), + [anon_sym___asm] = ACTIONS(4347), + [sym_number_literal] = ACTIONS(4349), + [anon_sym_L_SQUOTE] = ACTIONS(4349), + [anon_sym_u_SQUOTE] = ACTIONS(4349), + [anon_sym_U_SQUOTE] = ACTIONS(4349), + [anon_sym_u8_SQUOTE] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4349), + [anon_sym_L_DQUOTE] = ACTIONS(4349), + [anon_sym_u_DQUOTE] = ACTIONS(4349), + [anon_sym_U_DQUOTE] = ACTIONS(4349), + [anon_sym_u8_DQUOTE] = ACTIONS(4349), + [anon_sym_DQUOTE] = ACTIONS(4349), + [sym_true] = ACTIONS(4347), + [sym_false] = ACTIONS(4347), + [anon_sym_NULL] = ACTIONS(4347), + [anon_sym_nullptr] = ACTIONS(4347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4347), + [anon_sym_decltype] = ACTIONS(4347), + [anon_sym_explicit] = ACTIONS(4347), + [anon_sym_export] = ACTIONS(4347), + [anon_sym_import] = ACTIONS(4347), + [anon_sym_template] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_delete] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_namespace] = ACTIONS(4347), + [anon_sym_static_assert] = ACTIONS(4347), + [anon_sym_concept] = ACTIONS(4347), + [anon_sym_co_return] = ACTIONS(4347), + [anon_sym_co_yield] = ACTIONS(4347), + [anon_sym_R_DQUOTE] = ACTIONS(4349), + [anon_sym_LR_DQUOTE] = ACTIONS(4349), + [anon_sym_uR_DQUOTE] = ACTIONS(4349), + [anon_sym_UR_DQUOTE] = ACTIONS(4349), + [anon_sym_u8R_DQUOTE] = ACTIONS(4349), + [anon_sym_co_await] = ACTIONS(4347), + [anon_sym_new] = ACTIONS(4347), + [anon_sym_requires] = ACTIONS(4347), + [anon_sym_CARET_CARET] = ACTIONS(4349), + [anon_sym_LBRACK_COLON] = ACTIONS(4349), + [sym_this] = ACTIONS(4347), + }, + [STATE(823)] = { + [sym_identifier] = ACTIONS(4351), + [aux_sym_preproc_include_token1] = ACTIONS(4351), + [aux_sym_preproc_def_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token1] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4351), + [sym_preproc_directive] = ACTIONS(4351), + [anon_sym_LPAREN2] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_TILDE] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym___extension__] = ACTIONS(4351), + [anon_sym_typedef] = ACTIONS(4351), + [anon_sym_virtual] = ACTIONS(4351), + [anon_sym_extern] = ACTIONS(4351), + [anon_sym___attribute__] = ACTIONS(4351), + [anon_sym___attribute] = ACTIONS(4351), + [anon_sym_using] = ACTIONS(4351), + [anon_sym_COLON_COLON] = ACTIONS(4353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4353), + [anon_sym___declspec] = ACTIONS(4351), + [anon_sym___based] = ACTIONS(4351), + [anon_sym___cdecl] = ACTIONS(4351), + [anon_sym___clrcall] = ACTIONS(4351), + [anon_sym___stdcall] = ACTIONS(4351), + [anon_sym___fastcall] = ACTIONS(4351), + [anon_sym___thiscall] = ACTIONS(4351), + [anon_sym___vectorcall] = ACTIONS(4351), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_signed] = ACTIONS(4351), + [anon_sym_unsigned] = ACTIONS(4351), + [anon_sym_long] = ACTIONS(4351), + [anon_sym_short] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_static] = ACTIONS(4351), + [anon_sym_register] = ACTIONS(4351), + [anon_sym_inline] = ACTIONS(4351), + [anon_sym___inline] = ACTIONS(4351), + [anon_sym___inline__] = ACTIONS(4351), + [anon_sym___forceinline] = ACTIONS(4351), + [anon_sym_thread_local] = ACTIONS(4351), + [anon_sym___thread] = ACTIONS(4351), + [anon_sym_const] = ACTIONS(4351), + [anon_sym_constexpr] = ACTIONS(4351), + [anon_sym_volatile] = ACTIONS(4351), + [anon_sym_restrict] = ACTIONS(4351), + [anon_sym___restrict__] = ACTIONS(4351), + [anon_sym__Atomic] = ACTIONS(4351), + [anon_sym__Noreturn] = ACTIONS(4351), + [anon_sym_noreturn] = ACTIONS(4351), + [anon_sym__Nonnull] = ACTIONS(4351), + [anon_sym_mutable] = ACTIONS(4351), + [anon_sym_constinit] = ACTIONS(4351), + [anon_sym_consteval] = ACTIONS(4351), + [anon_sym_alignas] = ACTIONS(4351), + [anon_sym__Alignas] = ACTIONS(4351), + [sym_primitive_type] = ACTIONS(4351), + [anon_sym_enum] = ACTIONS(4351), + [anon_sym_class] = ACTIONS(4351), + [anon_sym_struct] = ACTIONS(4351), + [anon_sym_union] = ACTIONS(4351), + [anon_sym_if] = ACTIONS(4351), + [anon_sym_switch] = ACTIONS(4351), + [anon_sym_case] = ACTIONS(4351), + [anon_sym_default] = ACTIONS(4351), + [anon_sym_while] = ACTIONS(4351), + [anon_sym_do] = ACTIONS(4351), + [anon_sym_for] = ACTIONS(4351), + [anon_sym_return] = ACTIONS(4351), + [anon_sym_break] = ACTIONS(4351), + [anon_sym_continue] = ACTIONS(4351), + [anon_sym_goto] = ACTIONS(4351), + [anon_sym___try] = ACTIONS(4351), + [anon_sym___leave] = ACTIONS(4351), + [anon_sym_not] = ACTIONS(4351), + [anon_sym_compl] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4353), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_sizeof] = ACTIONS(4351), + [anon_sym___alignof__] = ACTIONS(4351), + [anon_sym___alignof] = ACTIONS(4351), + [anon_sym__alignof] = ACTIONS(4351), + [anon_sym_alignof] = ACTIONS(4351), + [anon_sym__Alignof] = ACTIONS(4351), + [anon_sym_offsetof] = ACTIONS(4351), + [anon_sym__Generic] = ACTIONS(4351), + [anon_sym_typename] = ACTIONS(4351), + [anon_sym_asm] = ACTIONS(4351), + [anon_sym___asm__] = ACTIONS(4351), + [anon_sym___asm] = ACTIONS(4351), + [sym_number_literal] = ACTIONS(4353), + [anon_sym_L_SQUOTE] = ACTIONS(4353), + [anon_sym_u_SQUOTE] = ACTIONS(4353), + [anon_sym_U_SQUOTE] = ACTIONS(4353), + [anon_sym_u8_SQUOTE] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4353), + [anon_sym_L_DQUOTE] = ACTIONS(4353), + [anon_sym_u_DQUOTE] = ACTIONS(4353), + [anon_sym_U_DQUOTE] = ACTIONS(4353), + [anon_sym_u8_DQUOTE] = ACTIONS(4353), + [anon_sym_DQUOTE] = ACTIONS(4353), + [sym_true] = ACTIONS(4351), + [sym_false] = ACTIONS(4351), + [anon_sym_NULL] = ACTIONS(4351), + [anon_sym_nullptr] = ACTIONS(4351), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4351), + [anon_sym_decltype] = ACTIONS(4351), + [anon_sym_explicit] = ACTIONS(4351), + [anon_sym_export] = ACTIONS(4351), + [anon_sym_import] = ACTIONS(4351), + [anon_sym_template] = ACTIONS(4351), + [anon_sym_operator] = ACTIONS(4351), + [anon_sym_try] = ACTIONS(4351), + [anon_sym_delete] = ACTIONS(4351), + [anon_sym_throw] = ACTIONS(4351), + [anon_sym_namespace] = ACTIONS(4351), + [anon_sym_static_assert] = ACTIONS(4351), + [anon_sym_concept] = ACTIONS(4351), + [anon_sym_co_return] = ACTIONS(4351), + [anon_sym_co_yield] = ACTIONS(4351), + [anon_sym_R_DQUOTE] = ACTIONS(4353), + [anon_sym_LR_DQUOTE] = ACTIONS(4353), + [anon_sym_uR_DQUOTE] = ACTIONS(4353), + [anon_sym_UR_DQUOTE] = ACTIONS(4353), + [anon_sym_u8R_DQUOTE] = ACTIONS(4353), + [anon_sym_co_await] = ACTIONS(4351), + [anon_sym_new] = ACTIONS(4351), + [anon_sym_requires] = ACTIONS(4351), + [anon_sym_CARET_CARET] = ACTIONS(4353), + [anon_sym_LBRACK_COLON] = ACTIONS(4353), + [sym_this] = ACTIONS(4351), + }, + [STATE(824)] = { + [sym_identifier] = ACTIONS(4154), + [aux_sym_preproc_include_token1] = ACTIONS(4154), + [aux_sym_preproc_def_token1] = ACTIONS(4154), + [aux_sym_preproc_if_token1] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4154), + [sym_preproc_directive] = ACTIONS(4154), + [anon_sym_LPAREN2] = ACTIONS(4156), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_TILDE] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_SEMI] = ACTIONS(4156), + [anon_sym___extension__] = ACTIONS(4154), + [anon_sym_typedef] = ACTIONS(4154), + [anon_sym_virtual] = ACTIONS(4154), + [anon_sym_extern] = ACTIONS(4154), + [anon_sym___attribute__] = ACTIONS(4154), + [anon_sym___attribute] = ACTIONS(4154), + [anon_sym_using] = ACTIONS(4154), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4156), + [anon_sym___declspec] = ACTIONS(4154), + [anon_sym___based] = ACTIONS(4154), + [anon_sym___cdecl] = ACTIONS(4154), + [anon_sym___clrcall] = ACTIONS(4154), + [anon_sym___stdcall] = ACTIONS(4154), + [anon_sym___fastcall] = ACTIONS(4154), + [anon_sym___thiscall] = ACTIONS(4154), + [anon_sym___vectorcall] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(4156), + [anon_sym_RBRACE] = ACTIONS(4156), + [anon_sym_signed] = ACTIONS(4154), + [anon_sym_unsigned] = ACTIONS(4154), + [anon_sym_long] = ACTIONS(4154), + [anon_sym_short] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_static] = ACTIONS(4154), + [anon_sym_register] = ACTIONS(4154), + [anon_sym_inline] = ACTIONS(4154), + [anon_sym___inline] = ACTIONS(4154), + [anon_sym___inline__] = ACTIONS(4154), + [anon_sym___forceinline] = ACTIONS(4154), + [anon_sym_thread_local] = ACTIONS(4154), + [anon_sym___thread] = ACTIONS(4154), + [anon_sym_const] = ACTIONS(4154), + [anon_sym_constexpr] = ACTIONS(4154), + [anon_sym_volatile] = ACTIONS(4154), + [anon_sym_restrict] = ACTIONS(4154), + [anon_sym___restrict__] = ACTIONS(4154), + [anon_sym__Atomic] = ACTIONS(4154), + [anon_sym__Noreturn] = ACTIONS(4154), + [anon_sym_noreturn] = ACTIONS(4154), + [anon_sym__Nonnull] = ACTIONS(4154), + [anon_sym_mutable] = ACTIONS(4154), + [anon_sym_constinit] = ACTIONS(4154), + [anon_sym_consteval] = ACTIONS(4154), + [anon_sym_alignas] = ACTIONS(4154), + [anon_sym__Alignas] = ACTIONS(4154), + [sym_primitive_type] = ACTIONS(4154), + [anon_sym_enum] = ACTIONS(4154), + [anon_sym_class] = ACTIONS(4154), + [anon_sym_struct] = ACTIONS(4154), + [anon_sym_union] = ACTIONS(4154), + [anon_sym_if] = ACTIONS(4154), + [anon_sym_switch] = ACTIONS(4154), + [anon_sym_case] = ACTIONS(4154), + [anon_sym_default] = ACTIONS(4154), + [anon_sym_while] = ACTIONS(4154), + [anon_sym_do] = ACTIONS(4154), + [anon_sym_for] = ACTIONS(4154), + [anon_sym_return] = ACTIONS(4154), + [anon_sym_break] = ACTIONS(4154), + [anon_sym_continue] = ACTIONS(4154), + [anon_sym_goto] = ACTIONS(4154), + [anon_sym___try] = ACTIONS(4154), + [anon_sym___leave] = ACTIONS(4154), + [anon_sym_not] = ACTIONS(4154), + [anon_sym_compl] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4156), + [anon_sym_PLUS_PLUS] = ACTIONS(4156), + [anon_sym_sizeof] = ACTIONS(4154), + [anon_sym___alignof__] = ACTIONS(4154), + [anon_sym___alignof] = ACTIONS(4154), + [anon_sym__alignof] = ACTIONS(4154), + [anon_sym_alignof] = ACTIONS(4154), + [anon_sym__Alignof] = ACTIONS(4154), + [anon_sym_offsetof] = ACTIONS(4154), + [anon_sym__Generic] = ACTIONS(4154), + [anon_sym_typename] = ACTIONS(4154), + [anon_sym_asm] = ACTIONS(4154), + [anon_sym___asm__] = ACTIONS(4154), + [anon_sym___asm] = ACTIONS(4154), + [sym_number_literal] = ACTIONS(4156), + [anon_sym_L_SQUOTE] = ACTIONS(4156), + [anon_sym_u_SQUOTE] = ACTIONS(4156), + [anon_sym_U_SQUOTE] = ACTIONS(4156), + [anon_sym_u8_SQUOTE] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4156), + [anon_sym_L_DQUOTE] = ACTIONS(4156), + [anon_sym_u_DQUOTE] = ACTIONS(4156), + [anon_sym_U_DQUOTE] = ACTIONS(4156), + [anon_sym_u8_DQUOTE] = ACTIONS(4156), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym_true] = ACTIONS(4154), + [sym_false] = ACTIONS(4154), + [anon_sym_NULL] = ACTIONS(4154), + [anon_sym_nullptr] = ACTIONS(4154), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4154), + [anon_sym_decltype] = ACTIONS(4154), + [anon_sym_explicit] = ACTIONS(4154), + [anon_sym_export] = ACTIONS(4154), + [anon_sym_import] = ACTIONS(4154), + [anon_sym_template] = ACTIONS(4154), + [anon_sym_operator] = ACTIONS(4154), + [anon_sym_try] = ACTIONS(4154), + [anon_sym_delete] = ACTIONS(4154), + [anon_sym_throw] = ACTIONS(4154), + [anon_sym_namespace] = ACTIONS(4154), + [anon_sym_static_assert] = ACTIONS(4154), + [anon_sym_concept] = ACTIONS(4154), + [anon_sym_co_return] = ACTIONS(4154), + [anon_sym_co_yield] = ACTIONS(4154), + [anon_sym_R_DQUOTE] = ACTIONS(4156), + [anon_sym_LR_DQUOTE] = ACTIONS(4156), + [anon_sym_uR_DQUOTE] = ACTIONS(4156), + [anon_sym_UR_DQUOTE] = ACTIONS(4156), + [anon_sym_u8R_DQUOTE] = ACTIONS(4156), + [anon_sym_co_await] = ACTIONS(4154), + [anon_sym_new] = ACTIONS(4154), + [anon_sym_requires] = ACTIONS(4154), + [anon_sym_CARET_CARET] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4156), + [sym_this] = ACTIONS(4154), + }, + [STATE(825)] = { + [sym_identifier] = ACTIONS(4385), + [aux_sym_preproc_include_token1] = ACTIONS(4385), + [aux_sym_preproc_def_token1] = ACTIONS(4385), + [aux_sym_preproc_if_token1] = ACTIONS(4385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4385), + [sym_preproc_directive] = ACTIONS(4385), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_BANG] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4387), + [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_STAR] = ACTIONS(4387), + [anon_sym_AMP_AMP] = ACTIONS(4387), + [anon_sym_AMP] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4387), + [anon_sym___extension__] = ACTIONS(4385), + [anon_sym_typedef] = ACTIONS(4385), + [anon_sym_virtual] = ACTIONS(4385), + [anon_sym_extern] = ACTIONS(4385), + [anon_sym___attribute__] = ACTIONS(4385), + [anon_sym___attribute] = ACTIONS(4385), + [anon_sym_using] = ACTIONS(4385), + [anon_sym_COLON_COLON] = ACTIONS(4387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4387), + [anon_sym___declspec] = ACTIONS(4385), + [anon_sym___based] = ACTIONS(4385), + [anon_sym___cdecl] = ACTIONS(4385), + [anon_sym___clrcall] = ACTIONS(4385), + [anon_sym___stdcall] = ACTIONS(4385), + [anon_sym___fastcall] = ACTIONS(4385), + [anon_sym___thiscall] = ACTIONS(4385), + [anon_sym___vectorcall] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(4387), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_signed] = ACTIONS(4385), + [anon_sym_unsigned] = ACTIONS(4385), + [anon_sym_long] = ACTIONS(4385), + [anon_sym_short] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [anon_sym_static] = ACTIONS(4385), + [anon_sym_register] = ACTIONS(4385), + [anon_sym_inline] = ACTIONS(4385), + [anon_sym___inline] = ACTIONS(4385), + [anon_sym___inline__] = ACTIONS(4385), + [anon_sym___forceinline] = ACTIONS(4385), + [anon_sym_thread_local] = ACTIONS(4385), + [anon_sym___thread] = ACTIONS(4385), + [anon_sym_const] = ACTIONS(4385), + [anon_sym_constexpr] = ACTIONS(4385), + [anon_sym_volatile] = ACTIONS(4385), + [anon_sym_restrict] = ACTIONS(4385), + [anon_sym___restrict__] = ACTIONS(4385), + [anon_sym__Atomic] = ACTIONS(4385), + [anon_sym__Noreturn] = ACTIONS(4385), + [anon_sym_noreturn] = ACTIONS(4385), + [anon_sym__Nonnull] = ACTIONS(4385), + [anon_sym_mutable] = ACTIONS(4385), + [anon_sym_constinit] = ACTIONS(4385), + [anon_sym_consteval] = ACTIONS(4385), + [anon_sym_alignas] = ACTIONS(4385), + [anon_sym__Alignas] = ACTIONS(4385), + [sym_primitive_type] = ACTIONS(4385), + [anon_sym_enum] = ACTIONS(4385), + [anon_sym_class] = ACTIONS(4385), + [anon_sym_struct] = ACTIONS(4385), + [anon_sym_union] = ACTIONS(4385), + [anon_sym_if] = ACTIONS(4385), + [anon_sym_switch] = ACTIONS(4385), + [anon_sym_case] = ACTIONS(4385), + [anon_sym_default] = ACTIONS(4385), + [anon_sym_while] = ACTIONS(4385), + [anon_sym_do] = ACTIONS(4385), + [anon_sym_for] = ACTIONS(4385), + [anon_sym_return] = ACTIONS(4385), + [anon_sym_break] = ACTIONS(4385), + [anon_sym_continue] = ACTIONS(4385), + [anon_sym_goto] = ACTIONS(4385), + [anon_sym___try] = ACTIONS(4385), + [anon_sym___leave] = ACTIONS(4385), + [anon_sym_not] = ACTIONS(4385), + [anon_sym_compl] = ACTIONS(4385), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_PLUS_PLUS] = ACTIONS(4387), + [anon_sym_sizeof] = ACTIONS(4385), + [anon_sym___alignof__] = ACTIONS(4385), + [anon_sym___alignof] = ACTIONS(4385), + [anon_sym__alignof] = ACTIONS(4385), + [anon_sym_alignof] = ACTIONS(4385), + [anon_sym__Alignof] = ACTIONS(4385), + [anon_sym_offsetof] = ACTIONS(4385), + [anon_sym__Generic] = ACTIONS(4385), + [anon_sym_typename] = ACTIONS(4385), + [anon_sym_asm] = ACTIONS(4385), + [anon_sym___asm__] = ACTIONS(4385), + [anon_sym___asm] = ACTIONS(4385), + [sym_number_literal] = ACTIONS(4387), + [anon_sym_L_SQUOTE] = ACTIONS(4387), + [anon_sym_u_SQUOTE] = ACTIONS(4387), + [anon_sym_U_SQUOTE] = ACTIONS(4387), + [anon_sym_u8_SQUOTE] = ACTIONS(4387), + [anon_sym_SQUOTE] = ACTIONS(4387), + [anon_sym_L_DQUOTE] = ACTIONS(4387), + [anon_sym_u_DQUOTE] = ACTIONS(4387), + [anon_sym_U_DQUOTE] = ACTIONS(4387), + [anon_sym_u8_DQUOTE] = ACTIONS(4387), + [anon_sym_DQUOTE] = ACTIONS(4387), + [sym_true] = ACTIONS(4385), + [sym_false] = ACTIONS(4385), + [anon_sym_NULL] = ACTIONS(4385), + [anon_sym_nullptr] = ACTIONS(4385), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4385), + [anon_sym_decltype] = ACTIONS(4385), + [anon_sym_explicit] = ACTIONS(4385), + [anon_sym_export] = ACTIONS(4385), + [anon_sym_import] = ACTIONS(4385), + [anon_sym_template] = ACTIONS(4385), + [anon_sym_operator] = ACTIONS(4385), + [anon_sym_try] = ACTIONS(4385), + [anon_sym_delete] = ACTIONS(4385), + [anon_sym_throw] = ACTIONS(4385), + [anon_sym_namespace] = ACTIONS(4385), + [anon_sym_static_assert] = ACTIONS(4385), + [anon_sym_concept] = ACTIONS(4385), + [anon_sym_co_return] = ACTIONS(4385), + [anon_sym_co_yield] = ACTIONS(4385), + [anon_sym_R_DQUOTE] = ACTIONS(4387), + [anon_sym_LR_DQUOTE] = ACTIONS(4387), + [anon_sym_uR_DQUOTE] = ACTIONS(4387), + [anon_sym_UR_DQUOTE] = ACTIONS(4387), + [anon_sym_u8R_DQUOTE] = ACTIONS(4387), + [anon_sym_co_await] = ACTIONS(4385), + [anon_sym_new] = ACTIONS(4385), + [anon_sym_requires] = ACTIONS(4385), + [anon_sym_CARET_CARET] = ACTIONS(4387), + [anon_sym_LBRACK_COLON] = ACTIONS(4387), + [sym_this] = ACTIONS(4385), + }, + [STATE(826)] = { + [sym_identifier] = ACTIONS(4389), + [aux_sym_preproc_include_token1] = ACTIONS(4389), + [aux_sym_preproc_def_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token1] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4389), + [sym_preproc_directive] = ACTIONS(4389), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_typedef] = ACTIONS(4389), + [anon_sym_virtual] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym___attribute__] = ACTIONS(4389), + [anon_sym___attribute] = ACTIONS(4389), + [anon_sym_using] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4391), + [anon_sym___declspec] = ACTIONS(4389), + [anon_sym___based] = ACTIONS(4389), + [anon_sym___cdecl] = ACTIONS(4389), + [anon_sym___clrcall] = ACTIONS(4389), + [anon_sym___stdcall] = ACTIONS(4389), + [anon_sym___fastcall] = ACTIONS(4389), + [anon_sym___thiscall] = ACTIONS(4389), + [anon_sym___vectorcall] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_signed] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym___inline] = ACTIONS(4389), + [anon_sym___inline__] = ACTIONS(4389), + [anon_sym___forceinline] = ACTIONS(4389), + [anon_sym_thread_local] = ACTIONS(4389), + [anon_sym___thread] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_constinit] = ACTIONS(4389), + [anon_sym_consteval] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4389), + [anon_sym__Alignas] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_class] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_switch] = ACTIONS(4389), + [anon_sym_case] = ACTIONS(4389), + [anon_sym_default] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_do] = ACTIONS(4389), + [anon_sym_for] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_goto] = ACTIONS(4389), + [anon_sym___try] = ACTIONS(4389), + [anon_sym___leave] = ACTIONS(4389), + [anon_sym_not] = ACTIONS(4389), + [anon_sym_compl] = ACTIONS(4389), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_sizeof] = ACTIONS(4389), + [anon_sym___alignof__] = ACTIONS(4389), + [anon_sym___alignof] = ACTIONS(4389), + [anon_sym__alignof] = ACTIONS(4389), + [anon_sym_alignof] = ACTIONS(4389), + [anon_sym__Alignof] = ACTIONS(4389), + [anon_sym_offsetof] = ACTIONS(4389), + [anon_sym__Generic] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [anon_sym_asm] = ACTIONS(4389), + [anon_sym___asm__] = ACTIONS(4389), + [anon_sym___asm] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4391), + [anon_sym_L_SQUOTE] = ACTIONS(4391), + [anon_sym_u_SQUOTE] = ACTIONS(4391), + [anon_sym_U_SQUOTE] = ACTIONS(4391), + [anon_sym_u8_SQUOTE] = ACTIONS(4391), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_L_DQUOTE] = ACTIONS(4391), + [anon_sym_u_DQUOTE] = ACTIONS(4391), + [anon_sym_U_DQUOTE] = ACTIONS(4391), + [anon_sym_u8_DQUOTE] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [anon_sym_NULL] = ACTIONS(4389), + [anon_sym_nullptr] = ACTIONS(4389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4389), + [anon_sym_decltype] = ACTIONS(4389), + [anon_sym_explicit] = ACTIONS(4389), + [anon_sym_export] = ACTIONS(4389), + [anon_sym_import] = ACTIONS(4389), + [anon_sym_template] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_delete] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_namespace] = ACTIONS(4389), + [anon_sym_static_assert] = ACTIONS(4389), + [anon_sym_concept] = ACTIONS(4389), + [anon_sym_co_return] = ACTIONS(4389), + [anon_sym_co_yield] = ACTIONS(4389), + [anon_sym_R_DQUOTE] = ACTIONS(4391), + [anon_sym_LR_DQUOTE] = ACTIONS(4391), + [anon_sym_uR_DQUOTE] = ACTIONS(4391), + [anon_sym_UR_DQUOTE] = ACTIONS(4391), + [anon_sym_u8R_DQUOTE] = ACTIONS(4391), + [anon_sym_co_await] = ACTIONS(4389), + [anon_sym_new] = ACTIONS(4389), + [anon_sym_requires] = ACTIONS(4389), + [anon_sym_CARET_CARET] = ACTIONS(4391), + [anon_sym_LBRACK_COLON] = ACTIONS(4391), + [sym_this] = ACTIONS(4389), + }, + [STATE(827)] = { + [sym_identifier] = ACTIONS(4405), + [aux_sym_preproc_include_token1] = ACTIONS(4405), + [aux_sym_preproc_def_token1] = ACTIONS(4405), + [aux_sym_preproc_if_token1] = ACTIONS(4405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4405), + [sym_preproc_directive] = ACTIONS(4405), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4407), + [anon_sym_AMP_AMP] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4405), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym___extension__] = ACTIONS(4405), + [anon_sym_typedef] = ACTIONS(4405), + [anon_sym_virtual] = ACTIONS(4405), + [anon_sym_extern] = ACTIONS(4405), + [anon_sym___attribute__] = ACTIONS(4405), + [anon_sym___attribute] = ACTIONS(4405), + [anon_sym_using] = ACTIONS(4405), + [anon_sym_COLON_COLON] = ACTIONS(4407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4407), + [anon_sym___declspec] = ACTIONS(4405), + [anon_sym___based] = ACTIONS(4405), + [anon_sym___cdecl] = ACTIONS(4405), + [anon_sym___clrcall] = ACTIONS(4405), + [anon_sym___stdcall] = ACTIONS(4405), + [anon_sym___fastcall] = ACTIONS(4405), + [anon_sym___thiscall] = ACTIONS(4405), + [anon_sym___vectorcall] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_RBRACE] = ACTIONS(4407), + [anon_sym_signed] = ACTIONS(4405), + [anon_sym_unsigned] = ACTIONS(4405), + [anon_sym_long] = ACTIONS(4405), + [anon_sym_short] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_static] = ACTIONS(4405), + [anon_sym_register] = ACTIONS(4405), + [anon_sym_inline] = ACTIONS(4405), + [anon_sym___inline] = ACTIONS(4405), + [anon_sym___inline__] = ACTIONS(4405), + [anon_sym___forceinline] = ACTIONS(4405), + [anon_sym_thread_local] = ACTIONS(4405), + [anon_sym___thread] = ACTIONS(4405), + [anon_sym_const] = ACTIONS(4405), + [anon_sym_constexpr] = ACTIONS(4405), + [anon_sym_volatile] = ACTIONS(4405), + [anon_sym_restrict] = ACTIONS(4405), + [anon_sym___restrict__] = ACTIONS(4405), + [anon_sym__Atomic] = ACTIONS(4405), + [anon_sym__Noreturn] = ACTIONS(4405), + [anon_sym_noreturn] = ACTIONS(4405), + [anon_sym__Nonnull] = ACTIONS(4405), + [anon_sym_mutable] = ACTIONS(4405), + [anon_sym_constinit] = ACTIONS(4405), + [anon_sym_consteval] = ACTIONS(4405), + [anon_sym_alignas] = ACTIONS(4405), + [anon_sym__Alignas] = ACTIONS(4405), + [sym_primitive_type] = ACTIONS(4405), + [anon_sym_enum] = ACTIONS(4405), + [anon_sym_class] = ACTIONS(4405), + [anon_sym_struct] = ACTIONS(4405), + [anon_sym_union] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(4405), + [anon_sym_switch] = ACTIONS(4405), + [anon_sym_case] = ACTIONS(4405), + [anon_sym_default] = ACTIONS(4405), + [anon_sym_while] = ACTIONS(4405), + [anon_sym_do] = ACTIONS(4405), + [anon_sym_for] = ACTIONS(4405), + [anon_sym_return] = ACTIONS(4405), + [anon_sym_break] = ACTIONS(4405), + [anon_sym_continue] = ACTIONS(4405), + [anon_sym_goto] = ACTIONS(4405), + [anon_sym___try] = ACTIONS(4405), + [anon_sym___leave] = ACTIONS(4405), + [anon_sym_not] = ACTIONS(4405), + [anon_sym_compl] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_sizeof] = ACTIONS(4405), + [anon_sym___alignof__] = ACTIONS(4405), + [anon_sym___alignof] = ACTIONS(4405), + [anon_sym__alignof] = ACTIONS(4405), + [anon_sym_alignof] = ACTIONS(4405), + [anon_sym__Alignof] = ACTIONS(4405), + [anon_sym_offsetof] = ACTIONS(4405), + [anon_sym__Generic] = ACTIONS(4405), + [anon_sym_typename] = ACTIONS(4405), + [anon_sym_asm] = ACTIONS(4405), + [anon_sym___asm__] = ACTIONS(4405), + [anon_sym___asm] = ACTIONS(4405), + [sym_number_literal] = ACTIONS(4407), + [anon_sym_L_SQUOTE] = ACTIONS(4407), + [anon_sym_u_SQUOTE] = ACTIONS(4407), + [anon_sym_U_SQUOTE] = ACTIONS(4407), + [anon_sym_u8_SQUOTE] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_L_DQUOTE] = ACTIONS(4407), + [anon_sym_u_DQUOTE] = ACTIONS(4407), + [anon_sym_U_DQUOTE] = ACTIONS(4407), + [anon_sym_u8_DQUOTE] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [sym_true] = ACTIONS(4405), + [sym_false] = ACTIONS(4405), + [anon_sym_NULL] = ACTIONS(4405), + [anon_sym_nullptr] = ACTIONS(4405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4405), + [anon_sym_decltype] = ACTIONS(4405), + [anon_sym_explicit] = ACTIONS(4405), + [anon_sym_export] = ACTIONS(4405), + [anon_sym_import] = ACTIONS(4405), + [anon_sym_template] = ACTIONS(4405), + [anon_sym_operator] = ACTIONS(4405), + [anon_sym_try] = ACTIONS(4405), + [anon_sym_delete] = ACTIONS(4405), + [anon_sym_throw] = ACTIONS(4405), + [anon_sym_namespace] = ACTIONS(4405), + [anon_sym_static_assert] = ACTIONS(4405), + [anon_sym_concept] = ACTIONS(4405), + [anon_sym_co_return] = ACTIONS(4405), + [anon_sym_co_yield] = ACTIONS(4405), + [anon_sym_R_DQUOTE] = ACTIONS(4407), + [anon_sym_LR_DQUOTE] = ACTIONS(4407), + [anon_sym_uR_DQUOTE] = ACTIONS(4407), + [anon_sym_UR_DQUOTE] = ACTIONS(4407), + [anon_sym_u8R_DQUOTE] = ACTIONS(4407), + [anon_sym_co_await] = ACTIONS(4405), + [anon_sym_new] = ACTIONS(4405), + [anon_sym_requires] = ACTIONS(4405), + [anon_sym_CARET_CARET] = ACTIONS(4407), + [anon_sym_LBRACK_COLON] = ACTIONS(4407), + [sym_this] = ACTIONS(4405), + }, + [STATE(828)] = { + [sym_identifier] = ACTIONS(4419), + [aux_sym_preproc_include_token1] = ACTIONS(4419), + [aux_sym_preproc_def_token1] = ACTIONS(4419), + [aux_sym_preproc_if_token1] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4419), + [sym_preproc_directive] = ACTIONS(4419), + [anon_sym_LPAREN2] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_TILDE] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_AMP] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym___extension__] = ACTIONS(4419), + [anon_sym_typedef] = ACTIONS(4419), + [anon_sym_virtual] = ACTIONS(4419), + [anon_sym_extern] = ACTIONS(4419), + [anon_sym___attribute__] = ACTIONS(4419), + [anon_sym___attribute] = ACTIONS(4419), + [anon_sym_using] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4421), + [anon_sym___declspec] = ACTIONS(4419), + [anon_sym___based] = ACTIONS(4419), + [anon_sym___cdecl] = ACTIONS(4419), + [anon_sym___clrcall] = ACTIONS(4419), + [anon_sym___stdcall] = ACTIONS(4419), + [anon_sym___fastcall] = ACTIONS(4419), + [anon_sym___thiscall] = ACTIONS(4419), + [anon_sym___vectorcall] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_RBRACE] = ACTIONS(4421), + [anon_sym_signed] = ACTIONS(4419), + [anon_sym_unsigned] = ACTIONS(4419), + [anon_sym_long] = ACTIONS(4419), + [anon_sym_short] = ACTIONS(4419), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_static] = ACTIONS(4419), + [anon_sym_register] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym___inline] = ACTIONS(4419), + [anon_sym___inline__] = ACTIONS(4419), + [anon_sym___forceinline] = ACTIONS(4419), + [anon_sym_thread_local] = ACTIONS(4419), + [anon_sym___thread] = ACTIONS(4419), + [anon_sym_const] = ACTIONS(4419), + [anon_sym_constexpr] = ACTIONS(4419), + [anon_sym_volatile] = ACTIONS(4419), + [anon_sym_restrict] = ACTIONS(4419), + [anon_sym___restrict__] = ACTIONS(4419), + [anon_sym__Atomic] = ACTIONS(4419), + [anon_sym__Noreturn] = ACTIONS(4419), + [anon_sym_noreturn] = ACTIONS(4419), + [anon_sym__Nonnull] = ACTIONS(4419), + [anon_sym_mutable] = ACTIONS(4419), + [anon_sym_constinit] = ACTIONS(4419), + [anon_sym_consteval] = ACTIONS(4419), + [anon_sym_alignas] = ACTIONS(4419), + [anon_sym__Alignas] = ACTIONS(4419), + [sym_primitive_type] = ACTIONS(4419), + [anon_sym_enum] = ACTIONS(4419), + [anon_sym_class] = ACTIONS(4419), + [anon_sym_struct] = ACTIONS(4419), + [anon_sym_union] = ACTIONS(4419), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4419), + [anon_sym_default] = ACTIONS(4419), + [anon_sym_while] = ACTIONS(4419), + [anon_sym_do] = ACTIONS(4419), + [anon_sym_for] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_goto] = ACTIONS(4419), + [anon_sym___try] = ACTIONS(4419), + [anon_sym___leave] = ACTIONS(4419), + [anon_sym_not] = ACTIONS(4419), + [anon_sym_compl] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_sizeof] = ACTIONS(4419), + [anon_sym___alignof__] = ACTIONS(4419), + [anon_sym___alignof] = ACTIONS(4419), + [anon_sym__alignof] = ACTIONS(4419), + [anon_sym_alignof] = ACTIONS(4419), + [anon_sym__Alignof] = ACTIONS(4419), + [anon_sym_offsetof] = ACTIONS(4419), + [anon_sym__Generic] = ACTIONS(4419), + [anon_sym_typename] = ACTIONS(4419), + [anon_sym_asm] = ACTIONS(4419), + [anon_sym___asm__] = ACTIONS(4419), + [anon_sym___asm] = ACTIONS(4419), + [sym_number_literal] = ACTIONS(4421), + [anon_sym_L_SQUOTE] = ACTIONS(4421), + [anon_sym_u_SQUOTE] = ACTIONS(4421), + [anon_sym_U_SQUOTE] = ACTIONS(4421), + [anon_sym_u8_SQUOTE] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4421), + [anon_sym_L_DQUOTE] = ACTIONS(4421), + [anon_sym_u_DQUOTE] = ACTIONS(4421), + [anon_sym_U_DQUOTE] = ACTIONS(4421), + [anon_sym_u8_DQUOTE] = ACTIONS(4421), + [anon_sym_DQUOTE] = ACTIONS(4421), + [sym_true] = ACTIONS(4419), + [sym_false] = ACTIONS(4419), + [anon_sym_NULL] = ACTIONS(4419), + [anon_sym_nullptr] = ACTIONS(4419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4419), + [anon_sym_decltype] = ACTIONS(4419), + [anon_sym_explicit] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_import] = ACTIONS(4419), + [anon_sym_template] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_delete] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_namespace] = ACTIONS(4419), + [anon_sym_static_assert] = ACTIONS(4419), + [anon_sym_concept] = ACTIONS(4419), + [anon_sym_co_return] = ACTIONS(4419), + [anon_sym_co_yield] = ACTIONS(4419), + [anon_sym_R_DQUOTE] = ACTIONS(4421), + [anon_sym_LR_DQUOTE] = ACTIONS(4421), + [anon_sym_uR_DQUOTE] = ACTIONS(4421), + [anon_sym_UR_DQUOTE] = ACTIONS(4421), + [anon_sym_u8R_DQUOTE] = ACTIONS(4421), + [anon_sym_co_await] = ACTIONS(4419), + [anon_sym_new] = ACTIONS(4419), + [anon_sym_requires] = ACTIONS(4419), + [anon_sym_CARET_CARET] = ACTIONS(4421), + [anon_sym_LBRACK_COLON] = ACTIONS(4421), + [sym_this] = ACTIONS(4419), + }, + [STATE(829)] = { + [sym_identifier] = ACTIONS(4162), + [aux_sym_preproc_include_token1] = ACTIONS(4162), + [aux_sym_preproc_def_token1] = ACTIONS(4162), + [aux_sym_preproc_if_token1] = ACTIONS(4162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4162), + [sym_preproc_directive] = ACTIONS(4162), + [anon_sym_LPAREN2] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_TILDE] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym___extension__] = ACTIONS(4162), + [anon_sym_typedef] = ACTIONS(4162), + [anon_sym_virtual] = ACTIONS(4162), + [anon_sym_extern] = ACTIONS(4162), + [anon_sym___attribute__] = ACTIONS(4162), + [anon_sym___attribute] = ACTIONS(4162), + [anon_sym_using] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4164), + [anon_sym___declspec] = ACTIONS(4162), + [anon_sym___based] = ACTIONS(4162), + [anon_sym___cdecl] = ACTIONS(4162), + [anon_sym___clrcall] = ACTIONS(4162), + [anon_sym___stdcall] = ACTIONS(4162), + [anon_sym___fastcall] = ACTIONS(4162), + [anon_sym___thiscall] = ACTIONS(4162), + [anon_sym___vectorcall] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_signed] = ACTIONS(4162), + [anon_sym_unsigned] = ACTIONS(4162), + [anon_sym_long] = ACTIONS(4162), + [anon_sym_short] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_static] = ACTIONS(4162), + [anon_sym_register] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym___inline] = ACTIONS(4162), + [anon_sym___inline__] = ACTIONS(4162), + [anon_sym___forceinline] = ACTIONS(4162), + [anon_sym_thread_local] = ACTIONS(4162), + [anon_sym___thread] = ACTIONS(4162), + [anon_sym_const] = ACTIONS(4162), + [anon_sym_constexpr] = ACTIONS(4162), + [anon_sym_volatile] = ACTIONS(4162), + [anon_sym_restrict] = ACTIONS(4162), + [anon_sym___restrict__] = ACTIONS(4162), + [anon_sym__Atomic] = ACTIONS(4162), + [anon_sym__Noreturn] = ACTIONS(4162), + [anon_sym_noreturn] = ACTIONS(4162), + [anon_sym__Nonnull] = ACTIONS(4162), + [anon_sym_mutable] = ACTIONS(4162), + [anon_sym_constinit] = ACTIONS(4162), + [anon_sym_consteval] = ACTIONS(4162), + [anon_sym_alignas] = ACTIONS(4162), + [anon_sym__Alignas] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(4162), + [anon_sym_enum] = ACTIONS(4162), + [anon_sym_class] = ACTIONS(4162), + [anon_sym_struct] = ACTIONS(4162), + [anon_sym_union] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_switch] = ACTIONS(4162), + [anon_sym_case] = ACTIONS(4162), + [anon_sym_default] = ACTIONS(4162), + [anon_sym_while] = ACTIONS(4162), + [anon_sym_do] = ACTIONS(4162), + [anon_sym_for] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_goto] = ACTIONS(4162), + [anon_sym___try] = ACTIONS(4162), + [anon_sym___leave] = ACTIONS(4162), + [anon_sym_not] = ACTIONS(4162), + [anon_sym_compl] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_sizeof] = ACTIONS(4162), + [anon_sym___alignof__] = ACTIONS(4162), + [anon_sym___alignof] = ACTIONS(4162), + [anon_sym__alignof] = ACTIONS(4162), + [anon_sym_alignof] = ACTIONS(4162), + [anon_sym__Alignof] = ACTIONS(4162), + [anon_sym_offsetof] = ACTIONS(4162), + [anon_sym__Generic] = ACTIONS(4162), + [anon_sym_typename] = ACTIONS(4162), + [anon_sym_asm] = ACTIONS(4162), + [anon_sym___asm__] = ACTIONS(4162), + [anon_sym___asm] = ACTIONS(4162), + [sym_number_literal] = ACTIONS(4164), + [anon_sym_L_SQUOTE] = ACTIONS(4164), + [anon_sym_u_SQUOTE] = ACTIONS(4164), + [anon_sym_U_SQUOTE] = ACTIONS(4164), + [anon_sym_u8_SQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4164), + [anon_sym_L_DQUOTE] = ACTIONS(4164), + [anon_sym_u_DQUOTE] = ACTIONS(4164), + [anon_sym_U_DQUOTE] = ACTIONS(4164), + [anon_sym_u8_DQUOTE] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [sym_true] = ACTIONS(4162), + [sym_false] = ACTIONS(4162), + [anon_sym_NULL] = ACTIONS(4162), + [anon_sym_nullptr] = ACTIONS(4162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4162), + [anon_sym_decltype] = ACTIONS(4162), + [anon_sym_explicit] = ACTIONS(4162), + [anon_sym_export] = ACTIONS(4162), + [anon_sym_import] = ACTIONS(4162), + [anon_sym_template] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_delete] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_namespace] = ACTIONS(4162), + [anon_sym_static_assert] = ACTIONS(4162), + [anon_sym_concept] = ACTIONS(4162), + [anon_sym_co_return] = ACTIONS(4162), + [anon_sym_co_yield] = ACTIONS(4162), + [anon_sym_R_DQUOTE] = ACTIONS(4164), + [anon_sym_LR_DQUOTE] = ACTIONS(4164), + [anon_sym_uR_DQUOTE] = ACTIONS(4164), + [anon_sym_UR_DQUOTE] = ACTIONS(4164), + [anon_sym_u8R_DQUOTE] = ACTIONS(4164), + [anon_sym_co_await] = ACTIONS(4162), + [anon_sym_new] = ACTIONS(4162), + [anon_sym_requires] = ACTIONS(4162), + [anon_sym_CARET_CARET] = ACTIONS(4164), + [anon_sym_LBRACK_COLON] = ACTIONS(4164), + [sym_this] = ACTIONS(4162), + }, + [STATE(830)] = { + [sym_identifier] = ACTIONS(4166), + [aux_sym_preproc_include_token1] = ACTIONS(4166), + [aux_sym_preproc_def_token1] = ACTIONS(4166), + [aux_sym_preproc_if_token1] = ACTIONS(4166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4166), + [sym_preproc_directive] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4168), + [anon_sym_TILDE] = ACTIONS(4168), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym___extension__] = ACTIONS(4166), + [anon_sym_typedef] = ACTIONS(4166), + [anon_sym_virtual] = ACTIONS(4166), + [anon_sym_extern] = ACTIONS(4166), + [anon_sym___attribute__] = ACTIONS(4166), + [anon_sym___attribute] = ACTIONS(4166), + [anon_sym_using] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4168), + [anon_sym___declspec] = ACTIONS(4166), + [anon_sym___based] = ACTIONS(4166), + [anon_sym___cdecl] = ACTIONS(4166), + [anon_sym___clrcall] = ACTIONS(4166), + [anon_sym___stdcall] = ACTIONS(4166), + [anon_sym___fastcall] = ACTIONS(4166), + [anon_sym___thiscall] = ACTIONS(4166), + [anon_sym___vectorcall] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_RBRACE] = ACTIONS(4168), + [anon_sym_signed] = ACTIONS(4166), + [anon_sym_unsigned] = ACTIONS(4166), + [anon_sym_long] = ACTIONS(4166), + [anon_sym_short] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_static] = ACTIONS(4166), + [anon_sym_register] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym___inline] = ACTIONS(4166), + [anon_sym___inline__] = ACTIONS(4166), + [anon_sym___forceinline] = ACTIONS(4166), + [anon_sym_thread_local] = ACTIONS(4166), + [anon_sym___thread] = ACTIONS(4166), + [anon_sym_const] = ACTIONS(4166), + [anon_sym_constexpr] = ACTIONS(4166), + [anon_sym_volatile] = ACTIONS(4166), + [anon_sym_restrict] = ACTIONS(4166), + [anon_sym___restrict__] = ACTIONS(4166), + [anon_sym__Atomic] = ACTIONS(4166), + [anon_sym__Noreturn] = ACTIONS(4166), + [anon_sym_noreturn] = ACTIONS(4166), + [anon_sym__Nonnull] = ACTIONS(4166), + [anon_sym_mutable] = ACTIONS(4166), + [anon_sym_constinit] = ACTIONS(4166), + [anon_sym_consteval] = ACTIONS(4166), + [anon_sym_alignas] = ACTIONS(4166), + [anon_sym__Alignas] = ACTIONS(4166), + [sym_primitive_type] = ACTIONS(4166), + [anon_sym_enum] = ACTIONS(4166), + [anon_sym_class] = ACTIONS(4166), + [anon_sym_struct] = ACTIONS(4166), + [anon_sym_union] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_switch] = ACTIONS(4166), + [anon_sym_case] = ACTIONS(4166), + [anon_sym_default] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_do] = ACTIONS(4166), + [anon_sym_for] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_goto] = ACTIONS(4166), + [anon_sym___try] = ACTIONS(4166), + [anon_sym___leave] = ACTIONS(4166), + [anon_sym_not] = ACTIONS(4166), + [anon_sym_compl] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_sizeof] = ACTIONS(4166), + [anon_sym___alignof__] = ACTIONS(4166), + [anon_sym___alignof] = ACTIONS(4166), + [anon_sym__alignof] = ACTIONS(4166), + [anon_sym_alignof] = ACTIONS(4166), + [anon_sym__Alignof] = ACTIONS(4166), + [anon_sym_offsetof] = ACTIONS(4166), + [anon_sym__Generic] = ACTIONS(4166), + [anon_sym_typename] = ACTIONS(4166), + [anon_sym_asm] = ACTIONS(4166), + [anon_sym___asm__] = ACTIONS(4166), + [anon_sym___asm] = ACTIONS(4166), + [sym_number_literal] = ACTIONS(4168), + [anon_sym_L_SQUOTE] = ACTIONS(4168), + [anon_sym_u_SQUOTE] = ACTIONS(4168), + [anon_sym_U_SQUOTE] = ACTIONS(4168), + [anon_sym_u8_SQUOTE] = ACTIONS(4168), + [anon_sym_SQUOTE] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(4168), + [anon_sym_u_DQUOTE] = ACTIONS(4168), + [anon_sym_U_DQUOTE] = ACTIONS(4168), + [anon_sym_u8_DQUOTE] = ACTIONS(4168), + [anon_sym_DQUOTE] = ACTIONS(4168), + [sym_true] = ACTIONS(4166), + [sym_false] = ACTIONS(4166), + [anon_sym_NULL] = ACTIONS(4166), + [anon_sym_nullptr] = ACTIONS(4166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4166), + [anon_sym_decltype] = ACTIONS(4166), + [anon_sym_explicit] = ACTIONS(4166), + [anon_sym_export] = ACTIONS(4166), + [anon_sym_import] = ACTIONS(4166), + [anon_sym_template] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_delete] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_namespace] = ACTIONS(4166), + [anon_sym_static_assert] = ACTIONS(4166), + [anon_sym_concept] = ACTIONS(4166), + [anon_sym_co_return] = ACTIONS(4166), + [anon_sym_co_yield] = ACTIONS(4166), + [anon_sym_R_DQUOTE] = ACTIONS(4168), + [anon_sym_LR_DQUOTE] = ACTIONS(4168), + [anon_sym_uR_DQUOTE] = ACTIONS(4168), + [anon_sym_UR_DQUOTE] = ACTIONS(4168), + [anon_sym_u8R_DQUOTE] = ACTIONS(4168), + [anon_sym_co_await] = ACTIONS(4166), + [anon_sym_new] = ACTIONS(4166), + [anon_sym_requires] = ACTIONS(4166), + [anon_sym_CARET_CARET] = ACTIONS(4168), + [anon_sym_LBRACK_COLON] = ACTIONS(4168), + [sym_this] = ACTIONS(4166), + }, + [STATE(831)] = { + [sym_identifier] = ACTIONS(4445), + [aux_sym_preproc_include_token1] = ACTIONS(4445), + [aux_sym_preproc_def_token1] = ACTIONS(4445), + [aux_sym_preproc_if_token1] = ACTIONS(4445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), + [sym_preproc_directive] = ACTIONS(4445), + [anon_sym_LPAREN2] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_TILDE] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_AMP_AMP] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4445), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym___extension__] = ACTIONS(4445), + [anon_sym_typedef] = ACTIONS(4445), + [anon_sym_virtual] = ACTIONS(4445), + [anon_sym_extern] = ACTIONS(4445), + [anon_sym___attribute__] = ACTIONS(4445), + [anon_sym___attribute] = ACTIONS(4445), + [anon_sym_using] = ACTIONS(4445), + [anon_sym_COLON_COLON] = ACTIONS(4447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4447), + [anon_sym___declspec] = ACTIONS(4445), + [anon_sym___based] = ACTIONS(4445), + [anon_sym___cdecl] = ACTIONS(4445), + [anon_sym___clrcall] = ACTIONS(4445), + [anon_sym___stdcall] = ACTIONS(4445), + [anon_sym___fastcall] = ACTIONS(4445), + [anon_sym___thiscall] = ACTIONS(4445), + [anon_sym___vectorcall] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4447), + [anon_sym_RBRACE] = ACTIONS(4447), + [anon_sym_signed] = ACTIONS(4445), + [anon_sym_unsigned] = ACTIONS(4445), + [anon_sym_long] = ACTIONS(4445), + [anon_sym_short] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_static] = ACTIONS(4445), + [anon_sym_register] = ACTIONS(4445), + [anon_sym_inline] = ACTIONS(4445), + [anon_sym___inline] = ACTIONS(4445), + [anon_sym___inline__] = ACTIONS(4445), + [anon_sym___forceinline] = ACTIONS(4445), + [anon_sym_thread_local] = ACTIONS(4445), + [anon_sym___thread] = ACTIONS(4445), + [anon_sym_const] = ACTIONS(4445), + [anon_sym_constexpr] = ACTIONS(4445), + [anon_sym_volatile] = ACTIONS(4445), + [anon_sym_restrict] = ACTIONS(4445), + [anon_sym___restrict__] = ACTIONS(4445), + [anon_sym__Atomic] = ACTIONS(4445), + [anon_sym__Noreturn] = ACTIONS(4445), + [anon_sym_noreturn] = ACTIONS(4445), + [anon_sym__Nonnull] = ACTIONS(4445), + [anon_sym_mutable] = ACTIONS(4445), + [anon_sym_constinit] = ACTIONS(4445), + [anon_sym_consteval] = ACTIONS(4445), + [anon_sym_alignas] = ACTIONS(4445), + [anon_sym__Alignas] = ACTIONS(4445), + [sym_primitive_type] = ACTIONS(4445), + [anon_sym_enum] = ACTIONS(4445), + [anon_sym_class] = ACTIONS(4445), + [anon_sym_struct] = ACTIONS(4445), + [anon_sym_union] = ACTIONS(4445), + [anon_sym_if] = ACTIONS(4445), + [anon_sym_switch] = ACTIONS(4445), + [anon_sym_case] = ACTIONS(4445), + [anon_sym_default] = ACTIONS(4445), + [anon_sym_while] = ACTIONS(4445), + [anon_sym_do] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(4445), + [anon_sym_return] = ACTIONS(4445), + [anon_sym_break] = ACTIONS(4445), + [anon_sym_continue] = ACTIONS(4445), + [anon_sym_goto] = ACTIONS(4445), + [anon_sym___try] = ACTIONS(4445), + [anon_sym___leave] = ACTIONS(4445), + [anon_sym_not] = ACTIONS(4445), + [anon_sym_compl] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4447), + [anon_sym_PLUS_PLUS] = ACTIONS(4447), + [anon_sym_sizeof] = ACTIONS(4445), + [anon_sym___alignof__] = ACTIONS(4445), + [anon_sym___alignof] = ACTIONS(4445), + [anon_sym__alignof] = ACTIONS(4445), + [anon_sym_alignof] = ACTIONS(4445), + [anon_sym__Alignof] = ACTIONS(4445), + [anon_sym_offsetof] = ACTIONS(4445), + [anon_sym__Generic] = ACTIONS(4445), + [anon_sym_typename] = ACTIONS(4445), + [anon_sym_asm] = ACTIONS(4445), + [anon_sym___asm__] = ACTIONS(4445), + [anon_sym___asm] = ACTIONS(4445), + [sym_number_literal] = ACTIONS(4447), + [anon_sym_L_SQUOTE] = ACTIONS(4447), + [anon_sym_u_SQUOTE] = ACTIONS(4447), + [anon_sym_U_SQUOTE] = ACTIONS(4447), + [anon_sym_u8_SQUOTE] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_L_DQUOTE] = ACTIONS(4447), + [anon_sym_u_DQUOTE] = ACTIONS(4447), + [anon_sym_U_DQUOTE] = ACTIONS(4447), + [anon_sym_u8_DQUOTE] = ACTIONS(4447), + [anon_sym_DQUOTE] = ACTIONS(4447), + [sym_true] = ACTIONS(4445), + [sym_false] = ACTIONS(4445), + [anon_sym_NULL] = ACTIONS(4445), + [anon_sym_nullptr] = ACTIONS(4445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4445), + [anon_sym_decltype] = ACTIONS(4445), + [anon_sym_explicit] = ACTIONS(4445), + [anon_sym_export] = ACTIONS(4445), + [anon_sym_import] = ACTIONS(4445), + [anon_sym_template] = ACTIONS(4445), + [anon_sym_operator] = ACTIONS(4445), + [anon_sym_try] = ACTIONS(4445), + [anon_sym_delete] = ACTIONS(4445), + [anon_sym_throw] = ACTIONS(4445), + [anon_sym_namespace] = ACTIONS(4445), + [anon_sym_static_assert] = ACTIONS(4445), + [anon_sym_concept] = ACTIONS(4445), + [anon_sym_co_return] = ACTIONS(4445), + [anon_sym_co_yield] = ACTIONS(4445), + [anon_sym_R_DQUOTE] = ACTIONS(4447), + [anon_sym_LR_DQUOTE] = ACTIONS(4447), + [anon_sym_uR_DQUOTE] = ACTIONS(4447), + [anon_sym_UR_DQUOTE] = ACTIONS(4447), + [anon_sym_u8R_DQUOTE] = ACTIONS(4447), + [anon_sym_co_await] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4445), + [anon_sym_requires] = ACTIONS(4445), + [anon_sym_CARET_CARET] = ACTIONS(4447), + [anon_sym_LBRACK_COLON] = ACTIONS(4447), + [sym_this] = ACTIONS(4445), + }, + [STATE(832)] = { + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_RBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym___try] = ACTIONS(3704), + [anon_sym___leave] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_export] = ACTIONS(3704), + [anon_sym_import] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), + }, + [STATE(833)] = { + [sym_identifier] = ACTIONS(4068), + [aux_sym_preproc_include_token1] = ACTIONS(4068), + [aux_sym_preproc_def_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4068), + [sym_preproc_directive] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_TILDE] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym___extension__] = ACTIONS(4068), + [anon_sym_typedef] = ACTIONS(4068), + [anon_sym_virtual] = ACTIONS(4068), + [anon_sym_extern] = ACTIONS(4068), + [anon_sym___attribute__] = ACTIONS(4068), + [anon_sym___attribute] = ACTIONS(4068), + [anon_sym_using] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4070), + [anon_sym___declspec] = ACTIONS(4068), + [anon_sym___based] = ACTIONS(4068), + [anon_sym___cdecl] = ACTIONS(4068), + [anon_sym___clrcall] = ACTIONS(4068), + [anon_sym___stdcall] = ACTIONS(4068), + [anon_sym___fastcall] = ACTIONS(4068), + [anon_sym___thiscall] = ACTIONS(4068), + [anon_sym___vectorcall] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_signed] = ACTIONS(4068), + [anon_sym_unsigned] = ACTIONS(4068), + [anon_sym_long] = ACTIONS(4068), + [anon_sym_short] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_register] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym___inline] = ACTIONS(4068), + [anon_sym___inline__] = ACTIONS(4068), + [anon_sym___forceinline] = ACTIONS(4068), + [anon_sym_thread_local] = ACTIONS(4068), + [anon_sym___thread] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4068), + [anon_sym_constexpr] = ACTIONS(4068), + [anon_sym_volatile] = ACTIONS(4068), + [anon_sym_restrict] = ACTIONS(4068), + [anon_sym___restrict__] = ACTIONS(4068), + [anon_sym__Atomic] = ACTIONS(4068), + [anon_sym__Noreturn] = ACTIONS(4068), + [anon_sym_noreturn] = ACTIONS(4068), + [anon_sym__Nonnull] = ACTIONS(4068), + [anon_sym_mutable] = ACTIONS(4068), + [anon_sym_constinit] = ACTIONS(4068), + [anon_sym_consteval] = ACTIONS(4068), + [anon_sym_alignas] = ACTIONS(4068), + [anon_sym__Alignas] = ACTIONS(4068), + [sym_primitive_type] = ACTIONS(4068), + [anon_sym_enum] = ACTIONS(4068), + [anon_sym_class] = ACTIONS(4068), + [anon_sym_struct] = ACTIONS(4068), + [anon_sym_union] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_switch] = ACTIONS(4068), + [anon_sym_case] = ACTIONS(4068), + [anon_sym_default] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_do] = ACTIONS(4068), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_goto] = ACTIONS(4068), + [anon_sym___try] = ACTIONS(4068), + [anon_sym___leave] = ACTIONS(4068), + [anon_sym_not] = ACTIONS(4068), + [anon_sym_compl] = ACTIONS(4068), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4068), + [anon_sym___alignof__] = ACTIONS(4068), + [anon_sym___alignof] = ACTIONS(4068), + [anon_sym__alignof] = ACTIONS(4068), + [anon_sym_alignof] = ACTIONS(4068), + [anon_sym__Alignof] = ACTIONS(4068), + [anon_sym_offsetof] = ACTIONS(4068), + [anon_sym__Generic] = ACTIONS(4068), + [anon_sym_typename] = ACTIONS(4068), + [anon_sym_asm] = ACTIONS(4068), + [anon_sym___asm__] = ACTIONS(4068), + [anon_sym___asm] = ACTIONS(4068), + [sym_number_literal] = ACTIONS(4070), + [anon_sym_L_SQUOTE] = ACTIONS(4070), + [anon_sym_u_SQUOTE] = ACTIONS(4070), + [anon_sym_U_SQUOTE] = ACTIONS(4070), + [anon_sym_u8_SQUOTE] = ACTIONS(4070), + [anon_sym_SQUOTE] = ACTIONS(4070), + [anon_sym_L_DQUOTE] = ACTIONS(4070), + [anon_sym_u_DQUOTE] = ACTIONS(4070), + [anon_sym_U_DQUOTE] = ACTIONS(4070), + [anon_sym_u8_DQUOTE] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [sym_true] = ACTIONS(4068), + [sym_false] = ACTIONS(4068), + [anon_sym_NULL] = ACTIONS(4068), + [anon_sym_nullptr] = ACTIONS(4068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4068), + [anon_sym_decltype] = ACTIONS(4068), + [anon_sym_explicit] = ACTIONS(4068), + [anon_sym_export] = ACTIONS(4068), + [anon_sym_import] = ACTIONS(4068), + [anon_sym_template] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_delete] = ACTIONS(4068), + [anon_sym_throw] = ACTIONS(4068), + [anon_sym_namespace] = ACTIONS(4068), + [anon_sym_static_assert] = ACTIONS(4068), + [anon_sym_concept] = ACTIONS(4068), + [anon_sym_co_return] = ACTIONS(4068), + [anon_sym_co_yield] = ACTIONS(4068), + [anon_sym_R_DQUOTE] = ACTIONS(4070), + [anon_sym_LR_DQUOTE] = ACTIONS(4070), + [anon_sym_uR_DQUOTE] = ACTIONS(4070), + [anon_sym_UR_DQUOTE] = ACTIONS(4070), + [anon_sym_u8R_DQUOTE] = ACTIONS(4070), + [anon_sym_co_await] = ACTIONS(4068), + [anon_sym_new] = ACTIONS(4068), + [anon_sym_requires] = ACTIONS(4068), + [anon_sym_CARET_CARET] = ACTIONS(4070), + [anon_sym_LBRACK_COLON] = ACTIONS(4070), + [sym_this] = ACTIONS(4068), + }, + [STATE(834)] = { + [sym_identifier] = ACTIONS(3712), + [aux_sym_preproc_include_token1] = ACTIONS(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym___cdecl] = ACTIONS(3712), + [anon_sym___clrcall] = ACTIONS(3712), + [anon_sym___stdcall] = ACTIONS(3712), + [anon_sym___fastcall] = ACTIONS(3712), + [anon_sym___thiscall] = ACTIONS(3712), + [anon_sym___vectorcall] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3714), + [anon_sym_RBRACE] = ACTIONS(3714), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3712), + [anon_sym_case] = ACTIONS(3712), + [anon_sym_default] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_break] = ACTIONS(3712), + [anon_sym_continue] = ACTIONS(3712), + [anon_sym_goto] = ACTIONS(3712), + [anon_sym___try] = ACTIONS(3712), + [anon_sym___leave] = ACTIONS(3712), + [anon_sym_not] = ACTIONS(3712), + [anon_sym_compl] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_PLUS_PLUS] = ACTIONS(3714), + [anon_sym_sizeof] = ACTIONS(3712), + [anon_sym___alignof__] = ACTIONS(3712), + [anon_sym___alignof] = ACTIONS(3712), + [anon_sym__alignof] = ACTIONS(3712), + [anon_sym_alignof] = ACTIONS(3712), + [anon_sym__Alignof] = ACTIONS(3712), + [anon_sym_offsetof] = ACTIONS(3712), + [anon_sym__Generic] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [anon_sym_asm] = ACTIONS(3712), + [anon_sym___asm__] = ACTIONS(3712), + [anon_sym___asm] = ACTIONS(3712), + [sym_number_literal] = ACTIONS(3714), + [anon_sym_L_SQUOTE] = ACTIONS(3714), + [anon_sym_u_SQUOTE] = ACTIONS(3714), + [anon_sym_U_SQUOTE] = ACTIONS(3714), + [anon_sym_u8_SQUOTE] = ACTIONS(3714), + [anon_sym_SQUOTE] = ACTIONS(3714), + [anon_sym_L_DQUOTE] = ACTIONS(3714), + [anon_sym_u_DQUOTE] = ACTIONS(3714), + [anon_sym_U_DQUOTE] = ACTIONS(3714), + [anon_sym_u8_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE] = ACTIONS(3714), + [sym_true] = ACTIONS(3712), + [sym_false] = ACTIONS(3712), + [anon_sym_NULL] = ACTIONS(3712), + [anon_sym_nullptr] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_export] = ACTIONS(3712), + [anon_sym_import] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_delete] = ACTIONS(3712), + [anon_sym_throw] = ACTIONS(3712), + [anon_sym_namespace] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_concept] = ACTIONS(3712), + [anon_sym_co_return] = ACTIONS(3712), + [anon_sym_co_yield] = ACTIONS(3712), + [anon_sym_R_DQUOTE] = ACTIONS(3714), + [anon_sym_LR_DQUOTE] = ACTIONS(3714), + [anon_sym_uR_DQUOTE] = ACTIONS(3714), + [anon_sym_UR_DQUOTE] = ACTIONS(3714), + [anon_sym_u8R_DQUOTE] = ACTIONS(3714), + [anon_sym_co_await] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_requires] = ACTIONS(3712), + [anon_sym_CARET_CARET] = ACTIONS(3714), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), + [sym_this] = ACTIONS(3712), + }, + [STATE(835)] = { + [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(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_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), }, - [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), + [STATE(836)] = { + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_export] = ACTIONS(3708), + [anon_sym_import] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), + }, + [STATE(837)] = { + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym___try] = ACTIONS(3708), + [anon_sym___leave] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_export] = ACTIONS(3708), + [anon_sym_import] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), + }, + [STATE(838)] = { + [sym_identifier] = ACTIONS(3716), + [aux_sym_preproc_include_token1] = ACTIONS(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym___cdecl] = ACTIONS(3716), + [anon_sym___clrcall] = ACTIONS(3716), + [anon_sym___stdcall] = ACTIONS(3716), + [anon_sym___fastcall] = ACTIONS(3716), + [anon_sym___thiscall] = ACTIONS(3716), + [anon_sym___vectorcall] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_RBRACE] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_case] = ACTIONS(3716), + [anon_sym_default] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_goto] = ACTIONS(3716), + [anon_sym___try] = ACTIONS(3716), + [anon_sym___leave] = ACTIONS(3716), + [anon_sym_not] = ACTIONS(3716), + [anon_sym_compl] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_sizeof] = ACTIONS(3716), + [anon_sym___alignof__] = ACTIONS(3716), + [anon_sym___alignof] = ACTIONS(3716), + [anon_sym__alignof] = ACTIONS(3716), + [anon_sym_alignof] = ACTIONS(3716), + [anon_sym__Alignof] = ACTIONS(3716), + [anon_sym_offsetof] = ACTIONS(3716), + [anon_sym__Generic] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(3716), + [anon_sym___asm__] = ACTIONS(3716), + [anon_sym___asm] = ACTIONS(3716), + [sym_number_literal] = ACTIONS(3718), + [anon_sym_L_SQUOTE] = ACTIONS(3718), + [anon_sym_u_SQUOTE] = ACTIONS(3718), + [anon_sym_U_SQUOTE] = ACTIONS(3718), + [anon_sym_u8_SQUOTE] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(3718), + [anon_sym_L_DQUOTE] = ACTIONS(3718), + [anon_sym_u_DQUOTE] = ACTIONS(3718), + [anon_sym_U_DQUOTE] = ACTIONS(3718), + [anon_sym_u8_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [anon_sym_NULL] = ACTIONS(3716), + [anon_sym_nullptr] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_concept] = ACTIONS(3716), + [anon_sym_co_return] = ACTIONS(3716), + [anon_sym_co_yield] = ACTIONS(3716), + [anon_sym_R_DQUOTE] = ACTIONS(3718), + [anon_sym_LR_DQUOTE] = ACTIONS(3718), + [anon_sym_uR_DQUOTE] = ACTIONS(3718), + [anon_sym_UR_DQUOTE] = ACTIONS(3718), + [anon_sym_u8R_DQUOTE] = ACTIONS(3718), + [anon_sym_co_await] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_requires] = ACTIONS(3716), + [anon_sym_CARET_CARET] = ACTIONS(3718), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), + [sym_this] = ACTIONS(3716), + }, + [STATE(839)] = { + [sym_identifier] = ACTIONS(3788), + [aux_sym_preproc_include_token1] = ACTIONS(3788), + [aux_sym_preproc_def_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token1] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3788), + [sym_preproc_directive] = ACTIONS(3788), + [anon_sym_LPAREN2] = ACTIONS(3790), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3788), + [anon_sym_PLUS] = ACTIONS(3788), + [anon_sym_STAR] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_AMP] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(3790), + [anon_sym___extension__] = ACTIONS(3788), + [anon_sym_typedef] = ACTIONS(3788), + [anon_sym_virtual] = ACTIONS(3788), + [anon_sym_extern] = ACTIONS(3788), + [anon_sym___attribute__] = ACTIONS(3788), + [anon_sym___attribute] = ACTIONS(3788), + [anon_sym_using] = ACTIONS(3788), + [anon_sym_COLON_COLON] = ACTIONS(3790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3790), + [anon_sym___declspec] = ACTIONS(3788), + [anon_sym___based] = ACTIONS(3788), + [anon_sym___cdecl] = ACTIONS(3788), + [anon_sym___clrcall] = ACTIONS(3788), + [anon_sym___stdcall] = ACTIONS(3788), + [anon_sym___fastcall] = ACTIONS(3788), + [anon_sym___thiscall] = ACTIONS(3788), + [anon_sym___vectorcall] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_RBRACE] = ACTIONS(3790), + [anon_sym_signed] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3788), + [anon_sym_long] = ACTIONS(3788), + [anon_sym_short] = ACTIONS(3788), + [anon_sym_LBRACK] = ACTIONS(3788), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_register] = ACTIONS(3788), + [anon_sym_inline] = ACTIONS(3788), + [anon_sym___inline] = ACTIONS(3788), + [anon_sym___inline__] = ACTIONS(3788), + [anon_sym___forceinline] = ACTIONS(3788), + [anon_sym_thread_local] = ACTIONS(3788), + [anon_sym___thread] = ACTIONS(3788), + [anon_sym_const] = ACTIONS(3788), + [anon_sym_constexpr] = ACTIONS(3788), + [anon_sym_volatile] = ACTIONS(3788), + [anon_sym_restrict] = ACTIONS(3788), + [anon_sym___restrict__] = ACTIONS(3788), + [anon_sym__Atomic] = ACTIONS(3788), + [anon_sym__Noreturn] = ACTIONS(3788), + [anon_sym_noreturn] = ACTIONS(3788), + [anon_sym__Nonnull] = ACTIONS(3788), + [anon_sym_mutable] = ACTIONS(3788), + [anon_sym_constinit] = ACTIONS(3788), + [anon_sym_consteval] = ACTIONS(3788), + [anon_sym_alignas] = ACTIONS(3788), + [anon_sym__Alignas] = ACTIONS(3788), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_union] = ACTIONS(3788), + [anon_sym_if] = ACTIONS(3788), + [anon_sym_switch] = ACTIONS(3788), + [anon_sym_case] = ACTIONS(3788), + [anon_sym_default] = ACTIONS(3788), + [anon_sym_while] = ACTIONS(3788), + [anon_sym_do] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3788), + [anon_sym_return] = ACTIONS(3788), + [anon_sym_break] = ACTIONS(3788), + [anon_sym_continue] = ACTIONS(3788), + [anon_sym_goto] = ACTIONS(3788), + [anon_sym___try] = ACTIONS(3788), + [anon_sym___leave] = ACTIONS(3788), + [anon_sym_not] = ACTIONS(3788), + [anon_sym_compl] = ACTIONS(3788), + [anon_sym_DASH_DASH] = ACTIONS(3790), + [anon_sym_PLUS_PLUS] = ACTIONS(3790), + [anon_sym_sizeof] = ACTIONS(3788), + [anon_sym___alignof__] = ACTIONS(3788), + [anon_sym___alignof] = ACTIONS(3788), + [anon_sym__alignof] = ACTIONS(3788), + [anon_sym_alignof] = ACTIONS(3788), + [anon_sym__Alignof] = ACTIONS(3788), + [anon_sym_offsetof] = ACTIONS(3788), + [anon_sym__Generic] = ACTIONS(3788), + [anon_sym_typename] = ACTIONS(3788), + [anon_sym_asm] = ACTIONS(3788), + [anon_sym___asm__] = ACTIONS(3788), + [anon_sym___asm] = ACTIONS(3788), + [sym_number_literal] = ACTIONS(3790), + [anon_sym_L_SQUOTE] = ACTIONS(3790), + [anon_sym_u_SQUOTE] = ACTIONS(3790), + [anon_sym_U_SQUOTE] = ACTIONS(3790), + [anon_sym_u8_SQUOTE] = ACTIONS(3790), + [anon_sym_SQUOTE] = ACTIONS(3790), + [anon_sym_L_DQUOTE] = ACTIONS(3790), + [anon_sym_u_DQUOTE] = ACTIONS(3790), + [anon_sym_U_DQUOTE] = ACTIONS(3790), + [anon_sym_u8_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [sym_true] = ACTIONS(3788), + [sym_false] = ACTIONS(3788), + [anon_sym_NULL] = ACTIONS(3788), + [anon_sym_nullptr] = ACTIONS(3788), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3788), + [anon_sym_decltype] = ACTIONS(3788), + [anon_sym_explicit] = ACTIONS(3788), + [anon_sym_export] = ACTIONS(3788), + [anon_sym_import] = ACTIONS(3788), + [anon_sym_template] = ACTIONS(3788), + [anon_sym_operator] = ACTIONS(3788), + [anon_sym_try] = ACTIONS(3788), + [anon_sym_delete] = ACTIONS(3788), + [anon_sym_throw] = ACTIONS(3788), + [anon_sym_namespace] = ACTIONS(3788), + [anon_sym_static_assert] = ACTIONS(3788), + [anon_sym_concept] = ACTIONS(3788), + [anon_sym_co_return] = ACTIONS(3788), + [anon_sym_co_yield] = ACTIONS(3788), + [anon_sym_R_DQUOTE] = ACTIONS(3790), + [anon_sym_LR_DQUOTE] = ACTIONS(3790), + [anon_sym_uR_DQUOTE] = ACTIONS(3790), + [anon_sym_UR_DQUOTE] = ACTIONS(3790), + [anon_sym_u8R_DQUOTE] = ACTIONS(3790), + [anon_sym_co_await] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3788), + [anon_sym_requires] = ACTIONS(3788), + [anon_sym_CARET_CARET] = ACTIONS(3790), + [anon_sym_LBRACK_COLON] = ACTIONS(3790), + [sym_this] = ACTIONS(3788), + }, + [STATE(840)] = { + [sym_identifier] = ACTIONS(3886), + [aux_sym_preproc_include_token1] = ACTIONS(3886), + [aux_sym_preproc_def_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token1] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3886), + [sym_preproc_directive] = ACTIONS(3886), + [anon_sym_LPAREN2] = ACTIONS(3888), + [anon_sym_BANG] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(3886), + [anon_sym_typedef] = ACTIONS(3886), + [anon_sym_virtual] = ACTIONS(3886), + [anon_sym_extern] = ACTIONS(3886), + [anon_sym___attribute__] = ACTIONS(3886), + [anon_sym___attribute] = ACTIONS(3886), + [anon_sym_using] = ACTIONS(3886), + [anon_sym_COLON_COLON] = ACTIONS(3888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3888), + [anon_sym___declspec] = ACTIONS(3886), + [anon_sym___based] = ACTIONS(3886), + [anon_sym___cdecl] = ACTIONS(3886), + [anon_sym___clrcall] = ACTIONS(3886), + [anon_sym___stdcall] = ACTIONS(3886), + [anon_sym___fastcall] = ACTIONS(3886), + [anon_sym___thiscall] = ACTIONS(3886), + [anon_sym___vectorcall] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_signed] = ACTIONS(3886), + [anon_sym_unsigned] = ACTIONS(3886), + [anon_sym_long] = ACTIONS(3886), + [anon_sym_short] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_static] = ACTIONS(3886), + [anon_sym_register] = ACTIONS(3886), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym___inline] = ACTIONS(3886), + [anon_sym___inline__] = ACTIONS(3886), + [anon_sym___forceinline] = ACTIONS(3886), + [anon_sym_thread_local] = ACTIONS(3886), + [anon_sym___thread] = ACTIONS(3886), + [anon_sym_const] = ACTIONS(3886), + [anon_sym_constexpr] = ACTIONS(3886), + [anon_sym_volatile] = ACTIONS(3886), + [anon_sym_restrict] = ACTIONS(3886), + [anon_sym___restrict__] = ACTIONS(3886), + [anon_sym__Atomic] = ACTIONS(3886), + [anon_sym__Noreturn] = ACTIONS(3886), + [anon_sym_noreturn] = ACTIONS(3886), + [anon_sym__Nonnull] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3886), + [anon_sym_constinit] = ACTIONS(3886), + [anon_sym_consteval] = ACTIONS(3886), + [anon_sym_alignas] = ACTIONS(3886), + [anon_sym__Alignas] = ACTIONS(3886), + [sym_primitive_type] = ACTIONS(3886), + [anon_sym_enum] = ACTIONS(3886), + [anon_sym_class] = ACTIONS(3886), + [anon_sym_struct] = ACTIONS(3886), + [anon_sym_union] = ACTIONS(3886), + [anon_sym_if] = ACTIONS(3886), + [anon_sym_switch] = ACTIONS(3886), + [anon_sym_case] = ACTIONS(3886), + [anon_sym_default] = ACTIONS(3886), + [anon_sym_while] = ACTIONS(3886), + [anon_sym_do] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3886), + [anon_sym_return] = ACTIONS(3886), + [anon_sym_break] = ACTIONS(3886), + [anon_sym_continue] = ACTIONS(3886), + [anon_sym_goto] = ACTIONS(3886), + [anon_sym___try] = ACTIONS(3886), + [anon_sym___leave] = ACTIONS(3886), + [anon_sym_not] = ACTIONS(3886), + [anon_sym_compl] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3888), + [anon_sym_sizeof] = ACTIONS(3886), + [anon_sym___alignof__] = ACTIONS(3886), + [anon_sym___alignof] = ACTIONS(3886), + [anon_sym__alignof] = ACTIONS(3886), + [anon_sym_alignof] = ACTIONS(3886), + [anon_sym__Alignof] = ACTIONS(3886), + [anon_sym_offsetof] = ACTIONS(3886), + [anon_sym__Generic] = ACTIONS(3886), + [anon_sym_typename] = ACTIONS(3886), + [anon_sym_asm] = ACTIONS(3886), + [anon_sym___asm__] = ACTIONS(3886), + [anon_sym___asm] = ACTIONS(3886), + [sym_number_literal] = ACTIONS(3888), + [anon_sym_L_SQUOTE] = ACTIONS(3888), + [anon_sym_u_SQUOTE] = ACTIONS(3888), + [anon_sym_U_SQUOTE] = ACTIONS(3888), + [anon_sym_u8_SQUOTE] = ACTIONS(3888), + [anon_sym_SQUOTE] = ACTIONS(3888), + [anon_sym_L_DQUOTE] = ACTIONS(3888), + [anon_sym_u_DQUOTE] = ACTIONS(3888), + [anon_sym_U_DQUOTE] = ACTIONS(3888), + [anon_sym_u8_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [sym_true] = ACTIONS(3886), + [sym_false] = ACTIONS(3886), + [anon_sym_NULL] = ACTIONS(3886), + [anon_sym_nullptr] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3886), + [anon_sym_decltype] = ACTIONS(3886), + [anon_sym_explicit] = ACTIONS(3886), + [anon_sym_export] = ACTIONS(3886), + [anon_sym_import] = ACTIONS(3886), + [anon_sym_template] = ACTIONS(3886), + [anon_sym_operator] = ACTIONS(3886), + [anon_sym_try] = ACTIONS(3886), + [anon_sym_delete] = ACTIONS(3886), + [anon_sym_throw] = ACTIONS(3886), + [anon_sym_namespace] = ACTIONS(3886), + [anon_sym_static_assert] = ACTIONS(3886), + [anon_sym_concept] = ACTIONS(3886), + [anon_sym_co_return] = ACTIONS(3886), + [anon_sym_co_yield] = ACTIONS(3886), + [anon_sym_R_DQUOTE] = ACTIONS(3888), + [anon_sym_LR_DQUOTE] = ACTIONS(3888), + [anon_sym_uR_DQUOTE] = ACTIONS(3888), + [anon_sym_UR_DQUOTE] = ACTIONS(3888), + [anon_sym_u8R_DQUOTE] = ACTIONS(3888), + [anon_sym_co_await] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3886), + [anon_sym_requires] = ACTIONS(3886), + [anon_sym_CARET_CARET] = ACTIONS(3888), + [anon_sym_LBRACK_COLON] = ACTIONS(3888), + [sym_this] = ACTIONS(3886), + }, + [STATE(841)] = { + [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(842)] = { + [sym_expression] = STATE(6550), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), [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_BANG] = ACTIONS(3726), + [anon_sym_TILDE] = ACTIONS(3724), [anon_sym_DASH] = ACTIONS(2384), [anon_sym_PLUS] = ACTIONS(2384), [anon_sym_STAR] = ACTIONS(2386), @@ -169441,15 +183186,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(4688), + [anon_sym___attribute__] = ACTIONS(2384), + [anon_sym___attribute] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4682), [anon_sym_LBRACK] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2598), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), [anon_sym_LT_EQ_GT] = ACTIONS(2386), [anon_sym_or] = ACTIONS(2384), [anon_sym_and] = ACTIONS(2384), @@ -169459,7 +183205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -169467,24 +183213,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -169492,5074 +183238,1700 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [sym_this] = ACTIONS(237), }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(843)] = { + [sym_identifier] = ACTIONS(4393), + [aux_sym_preproc_include_token1] = ACTIONS(4393), + [aux_sym_preproc_def_token1] = ACTIONS(4393), + [aux_sym_preproc_if_token1] = ACTIONS(4393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4393), + [sym_preproc_directive] = ACTIONS(4393), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_TILDE] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym___extension__] = ACTIONS(4393), + [anon_sym_typedef] = ACTIONS(4393), + [anon_sym_virtual] = ACTIONS(4393), + [anon_sym_extern] = ACTIONS(4393), + [anon_sym___attribute__] = ACTIONS(4393), + [anon_sym___attribute] = ACTIONS(4393), + [anon_sym_using] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4395), + [anon_sym___declspec] = ACTIONS(4393), + [anon_sym___based] = ACTIONS(4393), + [anon_sym___cdecl] = ACTIONS(4393), + [anon_sym___clrcall] = ACTIONS(4393), + [anon_sym___stdcall] = ACTIONS(4393), + [anon_sym___fastcall] = ACTIONS(4393), + [anon_sym___thiscall] = ACTIONS(4393), + [anon_sym___vectorcall] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_RBRACE] = ACTIONS(4395), + [anon_sym_signed] = ACTIONS(4393), + [anon_sym_unsigned] = ACTIONS(4393), + [anon_sym_long] = ACTIONS(4393), + [anon_sym_short] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_static] = ACTIONS(4393), + [anon_sym_register] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym___inline] = ACTIONS(4393), + [anon_sym___inline__] = ACTIONS(4393), + [anon_sym___forceinline] = ACTIONS(4393), + [anon_sym_thread_local] = ACTIONS(4393), + [anon_sym___thread] = ACTIONS(4393), + [anon_sym_const] = ACTIONS(4393), + [anon_sym_constexpr] = ACTIONS(4393), + [anon_sym_volatile] = ACTIONS(4393), + [anon_sym_restrict] = ACTIONS(4393), + [anon_sym___restrict__] = ACTIONS(4393), + [anon_sym__Atomic] = ACTIONS(4393), + [anon_sym__Noreturn] = ACTIONS(4393), + [anon_sym_noreturn] = ACTIONS(4393), + [anon_sym__Nonnull] = ACTIONS(4393), + [anon_sym_mutable] = ACTIONS(4393), + [anon_sym_constinit] = ACTIONS(4393), + [anon_sym_consteval] = ACTIONS(4393), + [anon_sym_alignas] = ACTIONS(4393), + [anon_sym__Alignas] = ACTIONS(4393), + [sym_primitive_type] = ACTIONS(4393), + [anon_sym_enum] = ACTIONS(4393), + [anon_sym_class] = ACTIONS(4393), + [anon_sym_struct] = ACTIONS(4393), + [anon_sym_union] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_switch] = ACTIONS(4393), + [anon_sym_case] = ACTIONS(4393), + [anon_sym_default] = ACTIONS(4393), + [anon_sym_while] = ACTIONS(4393), + [anon_sym_do] = ACTIONS(4393), + [anon_sym_for] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_goto] = ACTIONS(4393), + [anon_sym___try] = ACTIONS(4393), + [anon_sym___leave] = ACTIONS(4393), + [anon_sym_not] = ACTIONS(4393), + [anon_sym_compl] = ACTIONS(4393), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_sizeof] = ACTIONS(4393), + [anon_sym___alignof__] = ACTIONS(4393), + [anon_sym___alignof] = ACTIONS(4393), + [anon_sym__alignof] = ACTIONS(4393), + [anon_sym_alignof] = ACTIONS(4393), + [anon_sym__Alignof] = ACTIONS(4393), + [anon_sym_offsetof] = ACTIONS(4393), + [anon_sym__Generic] = ACTIONS(4393), + [anon_sym_typename] = ACTIONS(4393), + [anon_sym_asm] = ACTIONS(4393), + [anon_sym___asm__] = ACTIONS(4393), + [anon_sym___asm] = ACTIONS(4393), + [sym_number_literal] = ACTIONS(4395), + [anon_sym_L_SQUOTE] = ACTIONS(4395), + [anon_sym_u_SQUOTE] = ACTIONS(4395), + [anon_sym_U_SQUOTE] = ACTIONS(4395), + [anon_sym_u8_SQUOTE] = ACTIONS(4395), + [anon_sym_SQUOTE] = ACTIONS(4395), + [anon_sym_L_DQUOTE] = ACTIONS(4395), + [anon_sym_u_DQUOTE] = ACTIONS(4395), + [anon_sym_U_DQUOTE] = ACTIONS(4395), + [anon_sym_u8_DQUOTE] = ACTIONS(4395), + [anon_sym_DQUOTE] = ACTIONS(4395), + [sym_true] = ACTIONS(4393), + [sym_false] = ACTIONS(4393), + [anon_sym_NULL] = ACTIONS(4393), + [anon_sym_nullptr] = ACTIONS(4393), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4393), + [anon_sym_decltype] = ACTIONS(4393), + [anon_sym_explicit] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4393), + [anon_sym_import] = ACTIONS(4393), + [anon_sym_template] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_delete] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_namespace] = ACTIONS(4393), + [anon_sym_static_assert] = ACTIONS(4393), + [anon_sym_concept] = ACTIONS(4393), + [anon_sym_co_return] = ACTIONS(4393), + [anon_sym_co_yield] = ACTIONS(4393), + [anon_sym_R_DQUOTE] = ACTIONS(4395), + [anon_sym_LR_DQUOTE] = ACTIONS(4395), + [anon_sym_uR_DQUOTE] = ACTIONS(4395), + [anon_sym_UR_DQUOTE] = ACTIONS(4395), + [anon_sym_u8R_DQUOTE] = ACTIONS(4395), + [anon_sym_co_await] = ACTIONS(4393), + [anon_sym_new] = ACTIONS(4393), + [anon_sym_requires] = ACTIONS(4393), + [anon_sym_CARET_CARET] = ACTIONS(4395), + [anon_sym_LBRACK_COLON] = ACTIONS(4395), + [sym_this] = ACTIONS(4393), }, - [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), + [STATE(844)] = { + [sym_identifier] = ACTIONS(4397), + [aux_sym_preproc_include_token1] = ACTIONS(4397), + [aux_sym_preproc_def_token1] = ACTIONS(4397), + [aux_sym_preproc_if_token1] = ACTIONS(4397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4397), + [sym_preproc_directive] = ACTIONS(4397), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_AMP] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym___extension__] = ACTIONS(4397), + [anon_sym_typedef] = ACTIONS(4397), + [anon_sym_virtual] = ACTIONS(4397), + [anon_sym_extern] = ACTIONS(4397), + [anon_sym___attribute__] = ACTIONS(4397), + [anon_sym___attribute] = ACTIONS(4397), + [anon_sym_using] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4399), + [anon_sym___declspec] = ACTIONS(4397), + [anon_sym___based] = ACTIONS(4397), + [anon_sym___cdecl] = ACTIONS(4397), + [anon_sym___clrcall] = ACTIONS(4397), + [anon_sym___stdcall] = ACTIONS(4397), + [anon_sym___fastcall] = ACTIONS(4397), + [anon_sym___thiscall] = ACTIONS(4397), + [anon_sym___vectorcall] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_RBRACE] = ACTIONS(4399), + [anon_sym_signed] = ACTIONS(4397), + [anon_sym_unsigned] = ACTIONS(4397), + [anon_sym_long] = ACTIONS(4397), + [anon_sym_short] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_static] = ACTIONS(4397), + [anon_sym_register] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym___inline] = ACTIONS(4397), + [anon_sym___inline__] = ACTIONS(4397), + [anon_sym___forceinline] = ACTIONS(4397), + [anon_sym_thread_local] = ACTIONS(4397), + [anon_sym___thread] = ACTIONS(4397), + [anon_sym_const] = ACTIONS(4397), + [anon_sym_constexpr] = ACTIONS(4397), + [anon_sym_volatile] = ACTIONS(4397), + [anon_sym_restrict] = ACTIONS(4397), + [anon_sym___restrict__] = ACTIONS(4397), + [anon_sym__Atomic] = ACTIONS(4397), + [anon_sym__Noreturn] = ACTIONS(4397), + [anon_sym_noreturn] = ACTIONS(4397), + [anon_sym__Nonnull] = ACTIONS(4397), + [anon_sym_mutable] = ACTIONS(4397), + [anon_sym_constinit] = ACTIONS(4397), + [anon_sym_consteval] = ACTIONS(4397), + [anon_sym_alignas] = ACTIONS(4397), + [anon_sym__Alignas] = ACTIONS(4397), + [sym_primitive_type] = ACTIONS(4397), + [anon_sym_enum] = ACTIONS(4397), + [anon_sym_class] = ACTIONS(4397), + [anon_sym_struct] = ACTIONS(4397), + [anon_sym_union] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_switch] = ACTIONS(4397), + [anon_sym_case] = ACTIONS(4397), + [anon_sym_default] = ACTIONS(4397), + [anon_sym_while] = ACTIONS(4397), + [anon_sym_do] = ACTIONS(4397), + [anon_sym_for] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_goto] = ACTIONS(4397), + [anon_sym___try] = ACTIONS(4397), + [anon_sym___leave] = ACTIONS(4397), + [anon_sym_not] = ACTIONS(4397), + [anon_sym_compl] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_sizeof] = ACTIONS(4397), + [anon_sym___alignof__] = ACTIONS(4397), + [anon_sym___alignof] = ACTIONS(4397), + [anon_sym__alignof] = ACTIONS(4397), + [anon_sym_alignof] = ACTIONS(4397), + [anon_sym__Alignof] = ACTIONS(4397), + [anon_sym_offsetof] = ACTIONS(4397), + [anon_sym__Generic] = ACTIONS(4397), + [anon_sym_typename] = ACTIONS(4397), + [anon_sym_asm] = ACTIONS(4397), + [anon_sym___asm__] = ACTIONS(4397), + [anon_sym___asm] = ACTIONS(4397), + [sym_number_literal] = ACTIONS(4399), + [anon_sym_L_SQUOTE] = ACTIONS(4399), + [anon_sym_u_SQUOTE] = ACTIONS(4399), + [anon_sym_U_SQUOTE] = ACTIONS(4399), + [anon_sym_u8_SQUOTE] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4399), + [anon_sym_L_DQUOTE] = ACTIONS(4399), + [anon_sym_u_DQUOTE] = ACTIONS(4399), + [anon_sym_U_DQUOTE] = ACTIONS(4399), + [anon_sym_u8_DQUOTE] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4399), + [sym_true] = ACTIONS(4397), + [sym_false] = ACTIONS(4397), + [anon_sym_NULL] = ACTIONS(4397), + [anon_sym_nullptr] = ACTIONS(4397), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4397), + [anon_sym_decltype] = ACTIONS(4397), + [anon_sym_explicit] = ACTIONS(4397), + [anon_sym_export] = ACTIONS(4397), + [anon_sym_import] = ACTIONS(4397), + [anon_sym_template] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_delete] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_namespace] = ACTIONS(4397), + [anon_sym_static_assert] = ACTIONS(4397), + [anon_sym_concept] = ACTIONS(4397), + [anon_sym_co_return] = ACTIONS(4397), + [anon_sym_co_yield] = ACTIONS(4397), + [anon_sym_R_DQUOTE] = ACTIONS(4399), + [anon_sym_LR_DQUOTE] = ACTIONS(4399), + [anon_sym_uR_DQUOTE] = ACTIONS(4399), + [anon_sym_UR_DQUOTE] = ACTIONS(4399), + [anon_sym_u8R_DQUOTE] = ACTIONS(4399), + [anon_sym_co_await] = ACTIONS(4397), + [anon_sym_new] = ACTIONS(4397), + [anon_sym_requires] = ACTIONS(4397), + [anon_sym_CARET_CARET] = ACTIONS(4399), + [anon_sym_LBRACK_COLON] = ACTIONS(4399), + [sym_this] = ACTIONS(4397), }, - [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), + [STATE(845)] = { + [sym_identifier] = ACTIONS(4401), + [aux_sym_preproc_include_token1] = ACTIONS(4401), + [aux_sym_preproc_def_token1] = ACTIONS(4401), + [aux_sym_preproc_if_token1] = ACTIONS(4401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4401), + [sym_preproc_directive] = ACTIONS(4401), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_TILDE] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym___extension__] = ACTIONS(4401), + [anon_sym_typedef] = ACTIONS(4401), + [anon_sym_virtual] = ACTIONS(4401), + [anon_sym_extern] = ACTIONS(4401), + [anon_sym___attribute__] = ACTIONS(4401), + [anon_sym___attribute] = ACTIONS(4401), + [anon_sym_using] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4403), + [anon_sym___declspec] = ACTIONS(4401), + [anon_sym___based] = ACTIONS(4401), + [anon_sym___cdecl] = ACTIONS(4401), + [anon_sym___clrcall] = ACTIONS(4401), + [anon_sym___stdcall] = ACTIONS(4401), + [anon_sym___fastcall] = ACTIONS(4401), + [anon_sym___thiscall] = ACTIONS(4401), + [anon_sym___vectorcall] = ACTIONS(4401), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_RBRACE] = ACTIONS(4403), + [anon_sym_signed] = ACTIONS(4401), + [anon_sym_unsigned] = ACTIONS(4401), + [anon_sym_long] = ACTIONS(4401), + [anon_sym_short] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [anon_sym_static] = ACTIONS(4401), + [anon_sym_register] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym___inline] = ACTIONS(4401), + [anon_sym___inline__] = ACTIONS(4401), + [anon_sym___forceinline] = ACTIONS(4401), + [anon_sym_thread_local] = ACTIONS(4401), + [anon_sym___thread] = ACTIONS(4401), + [anon_sym_const] = ACTIONS(4401), + [anon_sym_constexpr] = ACTIONS(4401), + [anon_sym_volatile] = ACTIONS(4401), + [anon_sym_restrict] = ACTIONS(4401), + [anon_sym___restrict__] = ACTIONS(4401), + [anon_sym__Atomic] = ACTIONS(4401), + [anon_sym__Noreturn] = ACTIONS(4401), + [anon_sym_noreturn] = ACTIONS(4401), + [anon_sym__Nonnull] = ACTIONS(4401), + [anon_sym_mutable] = ACTIONS(4401), + [anon_sym_constinit] = ACTIONS(4401), + [anon_sym_consteval] = ACTIONS(4401), + [anon_sym_alignas] = ACTIONS(4401), + [anon_sym__Alignas] = ACTIONS(4401), + [sym_primitive_type] = ACTIONS(4401), + [anon_sym_enum] = ACTIONS(4401), + [anon_sym_class] = ACTIONS(4401), + [anon_sym_struct] = ACTIONS(4401), + [anon_sym_union] = ACTIONS(4401), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_switch] = ACTIONS(4401), + [anon_sym_case] = ACTIONS(4401), + [anon_sym_default] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(4401), + [anon_sym_do] = ACTIONS(4401), + [anon_sym_for] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_goto] = ACTIONS(4401), + [anon_sym___try] = ACTIONS(4401), + [anon_sym___leave] = ACTIONS(4401), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_sizeof] = ACTIONS(4401), + [anon_sym___alignof__] = ACTIONS(4401), + [anon_sym___alignof] = ACTIONS(4401), + [anon_sym__alignof] = ACTIONS(4401), + [anon_sym_alignof] = ACTIONS(4401), + [anon_sym__Alignof] = ACTIONS(4401), + [anon_sym_offsetof] = ACTIONS(4401), + [anon_sym__Generic] = ACTIONS(4401), + [anon_sym_typename] = ACTIONS(4401), + [anon_sym_asm] = ACTIONS(4401), + [anon_sym___asm__] = ACTIONS(4401), + [anon_sym___asm] = ACTIONS(4401), + [sym_number_literal] = ACTIONS(4403), + [anon_sym_L_SQUOTE] = ACTIONS(4403), + [anon_sym_u_SQUOTE] = ACTIONS(4403), + [anon_sym_U_SQUOTE] = ACTIONS(4403), + [anon_sym_u8_SQUOTE] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4403), + [anon_sym_L_DQUOTE] = ACTIONS(4403), + [anon_sym_u_DQUOTE] = ACTIONS(4403), + [anon_sym_U_DQUOTE] = ACTIONS(4403), + [anon_sym_u8_DQUOTE] = ACTIONS(4403), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym_true] = ACTIONS(4401), + [sym_false] = ACTIONS(4401), + [anon_sym_NULL] = ACTIONS(4401), + [anon_sym_nullptr] = ACTIONS(4401), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4401), + [anon_sym_decltype] = ACTIONS(4401), + [anon_sym_explicit] = ACTIONS(4401), + [anon_sym_export] = ACTIONS(4401), + [anon_sym_import] = ACTIONS(4401), + [anon_sym_template] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_delete] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_namespace] = ACTIONS(4401), + [anon_sym_static_assert] = ACTIONS(4401), + [anon_sym_concept] = ACTIONS(4401), + [anon_sym_co_return] = ACTIONS(4401), + [anon_sym_co_yield] = ACTIONS(4401), + [anon_sym_R_DQUOTE] = ACTIONS(4403), + [anon_sym_LR_DQUOTE] = ACTIONS(4403), + [anon_sym_uR_DQUOTE] = ACTIONS(4403), + [anon_sym_UR_DQUOTE] = ACTIONS(4403), + [anon_sym_u8R_DQUOTE] = ACTIONS(4403), + [anon_sym_co_await] = ACTIONS(4401), + [anon_sym_new] = ACTIONS(4401), + [anon_sym_requires] = ACTIONS(4401), + [anon_sym_CARET_CARET] = ACTIONS(4403), + [anon_sym_LBRACK_COLON] = ACTIONS(4403), + [sym_this] = ACTIONS(4401), }, - [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), + [STATE(846)] = { + [sym_identifier] = ACTIONS(4064), + [aux_sym_preproc_include_token1] = ACTIONS(4064), + [aux_sym_preproc_def_token1] = ACTIONS(4064), + [aux_sym_preproc_if_token1] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4064), + [sym_preproc_directive] = ACTIONS(4064), + [anon_sym_LPAREN2] = ACTIONS(4066), + [anon_sym_BANG] = ACTIONS(4066), + [anon_sym_TILDE] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4066), + [anon_sym_AMP_AMP] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym___extension__] = ACTIONS(4064), + [anon_sym_typedef] = ACTIONS(4064), + [anon_sym_virtual] = ACTIONS(4064), + [anon_sym_extern] = ACTIONS(4064), + [anon_sym___attribute__] = ACTIONS(4064), + [anon_sym___attribute] = ACTIONS(4064), + [anon_sym_using] = ACTIONS(4064), + [anon_sym_COLON_COLON] = ACTIONS(4066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4066), + [anon_sym___declspec] = ACTIONS(4064), + [anon_sym___based] = ACTIONS(4064), + [anon_sym___cdecl] = ACTIONS(4064), + [anon_sym___clrcall] = ACTIONS(4064), + [anon_sym___stdcall] = ACTIONS(4064), + [anon_sym___fastcall] = ACTIONS(4064), + [anon_sym___thiscall] = ACTIONS(4064), + [anon_sym___vectorcall] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4066), + [anon_sym_RBRACE] = ACTIONS(4066), + [anon_sym_signed] = ACTIONS(4064), + [anon_sym_unsigned] = ACTIONS(4064), + [anon_sym_long] = ACTIONS(4064), + [anon_sym_short] = ACTIONS(4064), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_static] = ACTIONS(4064), + [anon_sym_register] = ACTIONS(4064), + [anon_sym_inline] = ACTIONS(4064), + [anon_sym___inline] = ACTIONS(4064), + [anon_sym___inline__] = ACTIONS(4064), + [anon_sym___forceinline] = ACTIONS(4064), + [anon_sym_thread_local] = ACTIONS(4064), + [anon_sym___thread] = ACTIONS(4064), + [anon_sym_const] = ACTIONS(4064), + [anon_sym_constexpr] = ACTIONS(4064), + [anon_sym_volatile] = ACTIONS(4064), + [anon_sym_restrict] = ACTIONS(4064), + [anon_sym___restrict__] = ACTIONS(4064), + [anon_sym__Atomic] = ACTIONS(4064), + [anon_sym__Noreturn] = ACTIONS(4064), + [anon_sym_noreturn] = ACTIONS(4064), + [anon_sym__Nonnull] = ACTIONS(4064), + [anon_sym_mutable] = ACTIONS(4064), + [anon_sym_constinit] = ACTIONS(4064), + [anon_sym_consteval] = ACTIONS(4064), + [anon_sym_alignas] = ACTIONS(4064), + [anon_sym__Alignas] = ACTIONS(4064), + [sym_primitive_type] = ACTIONS(4064), + [anon_sym_enum] = ACTIONS(4064), + [anon_sym_class] = ACTIONS(4064), + [anon_sym_struct] = ACTIONS(4064), + [anon_sym_union] = ACTIONS(4064), + [anon_sym_if] = ACTIONS(4064), + [anon_sym_switch] = ACTIONS(4064), + [anon_sym_case] = ACTIONS(4064), + [anon_sym_default] = ACTIONS(4064), + [anon_sym_while] = ACTIONS(4064), + [anon_sym_do] = ACTIONS(4064), + [anon_sym_for] = ACTIONS(4064), + [anon_sym_return] = ACTIONS(4064), + [anon_sym_break] = ACTIONS(4064), + [anon_sym_continue] = ACTIONS(4064), + [anon_sym_goto] = ACTIONS(4064), + [anon_sym___try] = ACTIONS(4064), + [anon_sym___leave] = ACTIONS(4064), + [anon_sym_not] = ACTIONS(4064), + [anon_sym_compl] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4066), + [anon_sym_PLUS_PLUS] = ACTIONS(4066), + [anon_sym_sizeof] = ACTIONS(4064), + [anon_sym___alignof__] = ACTIONS(4064), + [anon_sym___alignof] = ACTIONS(4064), + [anon_sym__alignof] = ACTIONS(4064), + [anon_sym_alignof] = ACTIONS(4064), + [anon_sym__Alignof] = ACTIONS(4064), + [anon_sym_offsetof] = ACTIONS(4064), + [anon_sym__Generic] = ACTIONS(4064), + [anon_sym_typename] = ACTIONS(4064), + [anon_sym_asm] = ACTIONS(4064), + [anon_sym___asm__] = ACTIONS(4064), + [anon_sym___asm] = ACTIONS(4064), + [sym_number_literal] = ACTIONS(4066), + [anon_sym_L_SQUOTE] = ACTIONS(4066), + [anon_sym_u_SQUOTE] = ACTIONS(4066), + [anon_sym_U_SQUOTE] = ACTIONS(4066), + [anon_sym_u8_SQUOTE] = ACTIONS(4066), + [anon_sym_SQUOTE] = ACTIONS(4066), + [anon_sym_L_DQUOTE] = ACTIONS(4066), + [anon_sym_u_DQUOTE] = ACTIONS(4066), + [anon_sym_U_DQUOTE] = ACTIONS(4066), + [anon_sym_u8_DQUOTE] = ACTIONS(4066), + [anon_sym_DQUOTE] = ACTIONS(4066), + [sym_true] = ACTIONS(4064), + [sym_false] = ACTIONS(4064), + [anon_sym_NULL] = ACTIONS(4064), + [anon_sym_nullptr] = ACTIONS(4064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4064), + [anon_sym_decltype] = ACTIONS(4064), + [anon_sym_explicit] = ACTIONS(4064), + [anon_sym_export] = ACTIONS(4064), + [anon_sym_import] = ACTIONS(4064), + [anon_sym_template] = ACTIONS(4064), + [anon_sym_operator] = ACTIONS(4064), + [anon_sym_try] = ACTIONS(4064), + [anon_sym_delete] = ACTIONS(4064), + [anon_sym_throw] = ACTIONS(4064), + [anon_sym_namespace] = ACTIONS(4064), + [anon_sym_static_assert] = ACTIONS(4064), + [anon_sym_concept] = ACTIONS(4064), + [anon_sym_co_return] = ACTIONS(4064), + [anon_sym_co_yield] = ACTIONS(4064), + [anon_sym_R_DQUOTE] = ACTIONS(4066), + [anon_sym_LR_DQUOTE] = ACTIONS(4066), + [anon_sym_uR_DQUOTE] = ACTIONS(4066), + [anon_sym_UR_DQUOTE] = ACTIONS(4066), + [anon_sym_u8R_DQUOTE] = ACTIONS(4066), + [anon_sym_co_await] = ACTIONS(4064), + [anon_sym_new] = ACTIONS(4064), + [anon_sym_requires] = ACTIONS(4064), + [anon_sym_CARET_CARET] = ACTIONS(4066), + [anon_sym_LBRACK_COLON] = ACTIONS(4066), + [sym_this] = ACTIONS(4064), }, - [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), + [STATE(847)] = { + [sym_identifier] = ACTIONS(3997), + [aux_sym_preproc_include_token1] = ACTIONS(3997), + [aux_sym_preproc_def_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [sym_preproc_directive] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_TILDE] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_SEMI] = ACTIONS(3999), + [anon_sym___extension__] = ACTIONS(3997), + [anon_sym_typedef] = ACTIONS(3997), + [anon_sym_virtual] = ACTIONS(3997), + [anon_sym_extern] = ACTIONS(3997), + [anon_sym___attribute__] = ACTIONS(3997), + [anon_sym___attribute] = ACTIONS(3997), + [anon_sym_using] = ACTIONS(3997), + [anon_sym_COLON_COLON] = ACTIONS(3999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3999), + [anon_sym___declspec] = ACTIONS(3997), + [anon_sym___based] = ACTIONS(3997), + [anon_sym___cdecl] = ACTIONS(3997), + [anon_sym___clrcall] = ACTIONS(3997), + [anon_sym___stdcall] = ACTIONS(3997), + [anon_sym___fastcall] = ACTIONS(3997), + [anon_sym___thiscall] = ACTIONS(3997), + [anon_sym___vectorcall] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3999), + [anon_sym_RBRACE] = ACTIONS(3999), + [anon_sym_signed] = ACTIONS(3997), + [anon_sym_unsigned] = ACTIONS(3997), + [anon_sym_long] = ACTIONS(3997), + [anon_sym_short] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_register] = ACTIONS(3997), + [anon_sym_inline] = ACTIONS(3997), + [anon_sym___inline] = ACTIONS(3997), + [anon_sym___inline__] = ACTIONS(3997), + [anon_sym___forceinline] = ACTIONS(3997), + [anon_sym_thread_local] = ACTIONS(3997), + [anon_sym___thread] = ACTIONS(3997), + [anon_sym_const] = ACTIONS(3997), + [anon_sym_constexpr] = ACTIONS(3997), + [anon_sym_volatile] = ACTIONS(3997), + [anon_sym_restrict] = ACTIONS(3997), + [anon_sym___restrict__] = ACTIONS(3997), + [anon_sym__Atomic] = ACTIONS(3997), + [anon_sym__Noreturn] = ACTIONS(3997), + [anon_sym_noreturn] = ACTIONS(3997), + [anon_sym__Nonnull] = ACTIONS(3997), + [anon_sym_mutable] = ACTIONS(3997), + [anon_sym_constinit] = ACTIONS(3997), + [anon_sym_consteval] = ACTIONS(3997), + [anon_sym_alignas] = ACTIONS(3997), + [anon_sym__Alignas] = ACTIONS(3997), + [sym_primitive_type] = ACTIONS(3997), + [anon_sym_enum] = ACTIONS(3997), + [anon_sym_class] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3997), + [anon_sym_union] = ACTIONS(3997), + [anon_sym_if] = ACTIONS(3997), + [anon_sym_switch] = ACTIONS(3997), + [anon_sym_case] = ACTIONS(3997), + [anon_sym_default] = ACTIONS(3997), + [anon_sym_while] = ACTIONS(3997), + [anon_sym_do] = ACTIONS(3997), + [anon_sym_for] = ACTIONS(3997), + [anon_sym_return] = ACTIONS(3997), + [anon_sym_break] = ACTIONS(3997), + [anon_sym_continue] = ACTIONS(3997), + [anon_sym_goto] = ACTIONS(3997), + [anon_sym___try] = ACTIONS(3997), + [anon_sym___leave] = ACTIONS(3997), + [anon_sym_not] = ACTIONS(3997), + [anon_sym_compl] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3999), + [anon_sym_sizeof] = ACTIONS(3997), + [anon_sym___alignof__] = ACTIONS(3997), + [anon_sym___alignof] = ACTIONS(3997), + [anon_sym__alignof] = ACTIONS(3997), + [anon_sym_alignof] = ACTIONS(3997), + [anon_sym__Alignof] = ACTIONS(3997), + [anon_sym_offsetof] = ACTIONS(3997), + [anon_sym__Generic] = ACTIONS(3997), + [anon_sym_typename] = ACTIONS(3997), + [anon_sym_asm] = ACTIONS(3997), + [anon_sym___asm__] = ACTIONS(3997), + [anon_sym___asm] = ACTIONS(3997), + [sym_number_literal] = ACTIONS(3999), + [anon_sym_L_SQUOTE] = ACTIONS(3999), + [anon_sym_u_SQUOTE] = ACTIONS(3999), + [anon_sym_U_SQUOTE] = ACTIONS(3999), + [anon_sym_u8_SQUOTE] = ACTIONS(3999), + [anon_sym_SQUOTE] = ACTIONS(3999), + [anon_sym_L_DQUOTE] = ACTIONS(3999), + [anon_sym_u_DQUOTE] = ACTIONS(3999), + [anon_sym_U_DQUOTE] = ACTIONS(3999), + [anon_sym_u8_DQUOTE] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(3999), + [sym_true] = ACTIONS(3997), + [sym_false] = ACTIONS(3997), + [anon_sym_NULL] = ACTIONS(3997), + [anon_sym_nullptr] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3997), + [anon_sym_decltype] = ACTIONS(3997), + [anon_sym_explicit] = ACTIONS(3997), + [anon_sym_export] = ACTIONS(3997), + [anon_sym_import] = ACTIONS(3997), + [anon_sym_template] = ACTIONS(3997), + [anon_sym_operator] = ACTIONS(3997), + [anon_sym_try] = ACTIONS(3997), + [anon_sym_delete] = ACTIONS(3997), + [anon_sym_throw] = ACTIONS(3997), + [anon_sym_namespace] = ACTIONS(3997), + [anon_sym_static_assert] = ACTIONS(3997), + [anon_sym_concept] = ACTIONS(3997), + [anon_sym_co_return] = ACTIONS(3997), + [anon_sym_co_yield] = ACTIONS(3997), + [anon_sym_R_DQUOTE] = ACTIONS(3999), + [anon_sym_LR_DQUOTE] = ACTIONS(3999), + [anon_sym_uR_DQUOTE] = ACTIONS(3999), + [anon_sym_UR_DQUOTE] = ACTIONS(3999), + [anon_sym_u8R_DQUOTE] = ACTIONS(3999), + [anon_sym_co_await] = ACTIONS(3997), + [anon_sym_new] = ACTIONS(3997), + [anon_sym_requires] = ACTIONS(3997), + [anon_sym_CARET_CARET] = ACTIONS(3999), + [anon_sym_LBRACK_COLON] = ACTIONS(3999), + [sym_this] = ACTIONS(3997), }, - [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), + [STATE(848)] = { + [sym_identifier] = ACTIONS(4021), + [aux_sym_preproc_include_token1] = ACTIONS(4021), + [aux_sym_preproc_def_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token1] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4021), + [sym_preproc_directive] = ACTIONS(4021), + [anon_sym_LPAREN2] = ACTIONS(4023), + [anon_sym_BANG] = ACTIONS(4023), + [anon_sym_TILDE] = ACTIONS(4023), + [anon_sym_DASH] = ACTIONS(4021), + [anon_sym_PLUS] = ACTIONS(4021), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_AMP_AMP] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_SEMI] = ACTIONS(4023), + [anon_sym___extension__] = ACTIONS(4021), + [anon_sym_typedef] = ACTIONS(4021), + [anon_sym_virtual] = ACTIONS(4021), + [anon_sym_extern] = ACTIONS(4021), + [anon_sym___attribute__] = ACTIONS(4021), + [anon_sym___attribute] = ACTIONS(4021), + [anon_sym_using] = ACTIONS(4021), + [anon_sym_COLON_COLON] = ACTIONS(4023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4023), + [anon_sym___declspec] = ACTIONS(4021), + [anon_sym___based] = ACTIONS(4021), + [anon_sym___cdecl] = ACTIONS(4021), + [anon_sym___clrcall] = ACTIONS(4021), + [anon_sym___stdcall] = ACTIONS(4021), + [anon_sym___fastcall] = ACTIONS(4021), + [anon_sym___thiscall] = ACTIONS(4021), + [anon_sym___vectorcall] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4023), + [anon_sym_RBRACE] = ACTIONS(4023), + [anon_sym_signed] = ACTIONS(4021), + [anon_sym_unsigned] = ACTIONS(4021), + [anon_sym_long] = ACTIONS(4021), + [anon_sym_short] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_register] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym___inline] = ACTIONS(4021), + [anon_sym___inline__] = ACTIONS(4021), + [anon_sym___forceinline] = ACTIONS(4021), + [anon_sym_thread_local] = ACTIONS(4021), + [anon_sym___thread] = ACTIONS(4021), + [anon_sym_const] = ACTIONS(4021), + [anon_sym_constexpr] = ACTIONS(4021), + [anon_sym_volatile] = ACTIONS(4021), + [anon_sym_restrict] = ACTIONS(4021), + [anon_sym___restrict__] = ACTIONS(4021), + [anon_sym__Atomic] = ACTIONS(4021), + [anon_sym__Noreturn] = ACTIONS(4021), + [anon_sym_noreturn] = ACTIONS(4021), + [anon_sym__Nonnull] = ACTIONS(4021), + [anon_sym_mutable] = ACTIONS(4021), + [anon_sym_constinit] = ACTIONS(4021), + [anon_sym_consteval] = ACTIONS(4021), + [anon_sym_alignas] = ACTIONS(4021), + [anon_sym__Alignas] = ACTIONS(4021), + [sym_primitive_type] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_struct] = ACTIONS(4021), + [anon_sym_union] = ACTIONS(4021), + [anon_sym_if] = ACTIONS(4021), + [anon_sym_switch] = ACTIONS(4021), + [anon_sym_case] = ACTIONS(4021), + [anon_sym_default] = ACTIONS(4021), + [anon_sym_while] = ACTIONS(4021), + [anon_sym_do] = ACTIONS(4021), + [anon_sym_for] = ACTIONS(4021), + [anon_sym_return] = ACTIONS(4021), + [anon_sym_break] = ACTIONS(4021), + [anon_sym_continue] = ACTIONS(4021), + [anon_sym_goto] = ACTIONS(4021), + [anon_sym___try] = ACTIONS(4021), + [anon_sym___leave] = ACTIONS(4021), + [anon_sym_not] = ACTIONS(4021), + [anon_sym_compl] = ACTIONS(4021), + [anon_sym_DASH_DASH] = ACTIONS(4023), + [anon_sym_PLUS_PLUS] = ACTIONS(4023), + [anon_sym_sizeof] = ACTIONS(4021), + [anon_sym___alignof__] = ACTIONS(4021), + [anon_sym___alignof] = ACTIONS(4021), + [anon_sym__alignof] = ACTIONS(4021), + [anon_sym_alignof] = ACTIONS(4021), + [anon_sym__Alignof] = ACTIONS(4021), + [anon_sym_offsetof] = ACTIONS(4021), + [anon_sym__Generic] = ACTIONS(4021), + [anon_sym_typename] = ACTIONS(4021), + [anon_sym_asm] = ACTIONS(4021), + [anon_sym___asm__] = ACTIONS(4021), + [anon_sym___asm] = ACTIONS(4021), + [sym_number_literal] = ACTIONS(4023), + [anon_sym_L_SQUOTE] = ACTIONS(4023), + [anon_sym_u_SQUOTE] = ACTIONS(4023), + [anon_sym_U_SQUOTE] = ACTIONS(4023), + [anon_sym_u8_SQUOTE] = ACTIONS(4023), + [anon_sym_SQUOTE] = ACTIONS(4023), + [anon_sym_L_DQUOTE] = ACTIONS(4023), + [anon_sym_u_DQUOTE] = ACTIONS(4023), + [anon_sym_U_DQUOTE] = ACTIONS(4023), + [anon_sym_u8_DQUOTE] = ACTIONS(4023), + [anon_sym_DQUOTE] = ACTIONS(4023), + [sym_true] = ACTIONS(4021), + [sym_false] = ACTIONS(4021), + [anon_sym_NULL] = ACTIONS(4021), + [anon_sym_nullptr] = ACTIONS(4021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4021), + [anon_sym_decltype] = ACTIONS(4021), + [anon_sym_explicit] = ACTIONS(4021), + [anon_sym_export] = ACTIONS(4021), + [anon_sym_import] = ACTIONS(4021), + [anon_sym_template] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_try] = ACTIONS(4021), + [anon_sym_delete] = ACTIONS(4021), + [anon_sym_throw] = ACTIONS(4021), + [anon_sym_namespace] = ACTIONS(4021), + [anon_sym_static_assert] = ACTIONS(4021), + [anon_sym_concept] = ACTIONS(4021), + [anon_sym_co_return] = ACTIONS(4021), + [anon_sym_co_yield] = ACTIONS(4021), + [anon_sym_R_DQUOTE] = ACTIONS(4023), + [anon_sym_LR_DQUOTE] = ACTIONS(4023), + [anon_sym_uR_DQUOTE] = ACTIONS(4023), + [anon_sym_UR_DQUOTE] = ACTIONS(4023), + [anon_sym_u8R_DQUOTE] = ACTIONS(4023), + [anon_sym_co_await] = ACTIONS(4021), + [anon_sym_new] = ACTIONS(4021), + [anon_sym_requires] = ACTIONS(4021), + [anon_sym_CARET_CARET] = ACTIONS(4023), + [anon_sym_LBRACK_COLON] = ACTIONS(4023), + [sym_this] = ACTIONS(4021), }, - [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), + [STATE(849)] = { + [sym_identifier] = ACTIONS(3973), + [aux_sym_preproc_include_token1] = ACTIONS(3973), + [aux_sym_preproc_def_token1] = ACTIONS(3973), + [aux_sym_preproc_if_token1] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3973), + [sym_preproc_directive] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_BANG] = ACTIONS(3975), + [anon_sym_TILDE] = ACTIONS(3975), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3975), + [anon_sym___extension__] = ACTIONS(3973), + [anon_sym_typedef] = ACTIONS(3973), + [anon_sym_virtual] = ACTIONS(3973), + [anon_sym_extern] = ACTIONS(3973), + [anon_sym___attribute__] = ACTIONS(3973), + [anon_sym___attribute] = ACTIONS(3973), + [anon_sym_using] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3975), + [anon_sym___declspec] = ACTIONS(3973), + [anon_sym___based] = ACTIONS(3973), + [anon_sym___cdecl] = ACTIONS(3973), + [anon_sym___clrcall] = ACTIONS(3973), + [anon_sym___stdcall] = ACTIONS(3973), + [anon_sym___fastcall] = ACTIONS(3973), + [anon_sym___thiscall] = ACTIONS(3973), + [anon_sym___vectorcall] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3975), + [anon_sym_RBRACE] = ACTIONS(3975), + [anon_sym_signed] = ACTIONS(3973), + [anon_sym_unsigned] = ACTIONS(3973), + [anon_sym_long] = ACTIONS(3973), + [anon_sym_short] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_static] = ACTIONS(3973), + [anon_sym_register] = ACTIONS(3973), + [anon_sym_inline] = ACTIONS(3973), + [anon_sym___inline] = ACTIONS(3973), + [anon_sym___inline__] = ACTIONS(3973), + [anon_sym___forceinline] = ACTIONS(3973), + [anon_sym_thread_local] = ACTIONS(3973), + [anon_sym___thread] = ACTIONS(3973), + [anon_sym_const] = ACTIONS(3973), + [anon_sym_constexpr] = ACTIONS(3973), + [anon_sym_volatile] = ACTIONS(3973), + [anon_sym_restrict] = ACTIONS(3973), + [anon_sym___restrict__] = ACTIONS(3973), + [anon_sym__Atomic] = ACTIONS(3973), + [anon_sym__Noreturn] = ACTIONS(3973), + [anon_sym_noreturn] = ACTIONS(3973), + [anon_sym__Nonnull] = ACTIONS(3973), + [anon_sym_mutable] = ACTIONS(3973), + [anon_sym_constinit] = ACTIONS(3973), + [anon_sym_consteval] = ACTIONS(3973), + [anon_sym_alignas] = ACTIONS(3973), + [anon_sym__Alignas] = ACTIONS(3973), + [sym_primitive_type] = ACTIONS(3973), + [anon_sym_enum] = ACTIONS(3973), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_struct] = ACTIONS(3973), + [anon_sym_union] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_switch] = ACTIONS(3973), + [anon_sym_case] = ACTIONS(3973), + [anon_sym_default] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_break] = ACTIONS(3973), + [anon_sym_continue] = ACTIONS(3973), + [anon_sym_goto] = ACTIONS(3973), + [anon_sym___try] = ACTIONS(3973), + [anon_sym___leave] = ACTIONS(3973), + [anon_sym_not] = ACTIONS(3973), + [anon_sym_compl] = ACTIONS(3973), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_sizeof] = ACTIONS(3973), + [anon_sym___alignof__] = ACTIONS(3973), + [anon_sym___alignof] = ACTIONS(3973), + [anon_sym__alignof] = ACTIONS(3973), + [anon_sym_alignof] = ACTIONS(3973), + [anon_sym__Alignof] = ACTIONS(3973), + [anon_sym_offsetof] = ACTIONS(3973), + [anon_sym__Generic] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3973), + [anon_sym_asm] = ACTIONS(3973), + [anon_sym___asm__] = ACTIONS(3973), + [anon_sym___asm] = ACTIONS(3973), + [sym_number_literal] = ACTIONS(3975), + [anon_sym_L_SQUOTE] = ACTIONS(3975), + [anon_sym_u_SQUOTE] = ACTIONS(3975), + [anon_sym_U_SQUOTE] = ACTIONS(3975), + [anon_sym_u8_SQUOTE] = ACTIONS(3975), + [anon_sym_SQUOTE] = ACTIONS(3975), + [anon_sym_L_DQUOTE] = ACTIONS(3975), + [anon_sym_u_DQUOTE] = ACTIONS(3975), + [anon_sym_U_DQUOTE] = ACTIONS(3975), + [anon_sym_u8_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [sym_true] = ACTIONS(3973), + [sym_false] = ACTIONS(3973), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3973), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_explicit] = ACTIONS(3973), + [anon_sym_export] = ACTIONS(3973), + [anon_sym_import] = ACTIONS(3973), + [anon_sym_template] = ACTIONS(3973), + [anon_sym_operator] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_delete] = ACTIONS(3973), + [anon_sym_throw] = ACTIONS(3973), + [anon_sym_namespace] = ACTIONS(3973), + [anon_sym_static_assert] = ACTIONS(3973), + [anon_sym_concept] = ACTIONS(3973), + [anon_sym_co_return] = ACTIONS(3973), + [anon_sym_co_yield] = ACTIONS(3973), + [anon_sym_R_DQUOTE] = ACTIONS(3975), + [anon_sym_LR_DQUOTE] = ACTIONS(3975), + [anon_sym_uR_DQUOTE] = ACTIONS(3975), + [anon_sym_UR_DQUOTE] = ACTIONS(3975), + [anon_sym_u8R_DQUOTE] = ACTIONS(3975), + [anon_sym_co_await] = ACTIONS(3973), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_requires] = ACTIONS(3973), + [anon_sym_CARET_CARET] = ACTIONS(3975), + [anon_sym_LBRACK_COLON] = ACTIONS(3975), + [sym_this] = ACTIONS(3973), }, - [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), + [STATE(850)] = { + [sym_identifier] = ACTIONS(4138), + [aux_sym_preproc_include_token1] = ACTIONS(4138), + [aux_sym_preproc_def_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), + [sym_preproc_directive] = ACTIONS(4138), + [anon_sym_LPAREN2] = ACTIONS(4140), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_TILDE] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym___extension__] = ACTIONS(4138), + [anon_sym_typedef] = ACTIONS(4138), + [anon_sym_virtual] = ACTIONS(4138), + [anon_sym_extern] = ACTIONS(4138), + [anon_sym___attribute__] = ACTIONS(4138), + [anon_sym___attribute] = ACTIONS(4138), + [anon_sym_using] = ACTIONS(4138), + [anon_sym_COLON_COLON] = ACTIONS(4140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4140), + [anon_sym___declspec] = ACTIONS(4138), + [anon_sym___based] = ACTIONS(4138), + [anon_sym___cdecl] = ACTIONS(4138), + [anon_sym___clrcall] = ACTIONS(4138), + [anon_sym___stdcall] = ACTIONS(4138), + [anon_sym___fastcall] = ACTIONS(4138), + [anon_sym___thiscall] = ACTIONS(4138), + [anon_sym___vectorcall] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4140), + [anon_sym_RBRACE] = ACTIONS(4140), + [anon_sym_signed] = ACTIONS(4138), + [anon_sym_unsigned] = ACTIONS(4138), + [anon_sym_long] = ACTIONS(4138), + [anon_sym_short] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_static] = ACTIONS(4138), + [anon_sym_register] = ACTIONS(4138), + [anon_sym_inline] = ACTIONS(4138), + [anon_sym___inline] = ACTIONS(4138), + [anon_sym___inline__] = ACTIONS(4138), + [anon_sym___forceinline] = ACTIONS(4138), + [anon_sym_thread_local] = ACTIONS(4138), + [anon_sym___thread] = ACTIONS(4138), + [anon_sym_const] = ACTIONS(4138), + [anon_sym_constexpr] = ACTIONS(4138), + [anon_sym_volatile] = ACTIONS(4138), + [anon_sym_restrict] = ACTIONS(4138), + [anon_sym___restrict__] = ACTIONS(4138), + [anon_sym__Atomic] = ACTIONS(4138), + [anon_sym__Noreturn] = ACTIONS(4138), + [anon_sym_noreturn] = ACTIONS(4138), + [anon_sym__Nonnull] = ACTIONS(4138), + [anon_sym_mutable] = ACTIONS(4138), + [anon_sym_constinit] = ACTIONS(4138), + [anon_sym_consteval] = ACTIONS(4138), + [anon_sym_alignas] = ACTIONS(4138), + [anon_sym__Alignas] = ACTIONS(4138), + [sym_primitive_type] = ACTIONS(4138), + [anon_sym_enum] = ACTIONS(4138), + [anon_sym_class] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4138), + [anon_sym_union] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_switch] = ACTIONS(4138), + [anon_sym_case] = ACTIONS(4138), + [anon_sym_default] = ACTIONS(4138), + [anon_sym_while] = ACTIONS(4138), + [anon_sym_do] = ACTIONS(4138), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_return] = ACTIONS(4138), + [anon_sym_break] = ACTIONS(4138), + [anon_sym_continue] = ACTIONS(4138), + [anon_sym_goto] = ACTIONS(4138), + [anon_sym___try] = ACTIONS(4138), + [anon_sym___leave] = ACTIONS(4138), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_compl] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4140), + [anon_sym_PLUS_PLUS] = ACTIONS(4140), + [anon_sym_sizeof] = ACTIONS(4138), + [anon_sym___alignof__] = ACTIONS(4138), + [anon_sym___alignof] = ACTIONS(4138), + [anon_sym__alignof] = ACTIONS(4138), + [anon_sym_alignof] = ACTIONS(4138), + [anon_sym__Alignof] = ACTIONS(4138), + [anon_sym_offsetof] = ACTIONS(4138), + [anon_sym__Generic] = ACTIONS(4138), + [anon_sym_typename] = ACTIONS(4138), + [anon_sym_asm] = ACTIONS(4138), + [anon_sym___asm__] = ACTIONS(4138), + [anon_sym___asm] = ACTIONS(4138), + [sym_number_literal] = ACTIONS(4140), + [anon_sym_L_SQUOTE] = ACTIONS(4140), + [anon_sym_u_SQUOTE] = ACTIONS(4140), + [anon_sym_U_SQUOTE] = ACTIONS(4140), + [anon_sym_u8_SQUOTE] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4140), + [anon_sym_L_DQUOTE] = ACTIONS(4140), + [anon_sym_u_DQUOTE] = ACTIONS(4140), + [anon_sym_U_DQUOTE] = ACTIONS(4140), + [anon_sym_u8_DQUOTE] = ACTIONS(4140), + [anon_sym_DQUOTE] = ACTIONS(4140), + [sym_true] = ACTIONS(4138), + [sym_false] = ACTIONS(4138), + [anon_sym_NULL] = ACTIONS(4138), + [anon_sym_nullptr] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4138), + [anon_sym_decltype] = ACTIONS(4138), + [anon_sym_explicit] = ACTIONS(4138), + [anon_sym_export] = ACTIONS(4138), + [anon_sym_import] = ACTIONS(4138), + [anon_sym_template] = ACTIONS(4138), + [anon_sym_operator] = ACTIONS(4138), + [anon_sym_try] = ACTIONS(4138), + [anon_sym_delete] = ACTIONS(4138), + [anon_sym_throw] = ACTIONS(4138), + [anon_sym_namespace] = ACTIONS(4138), + [anon_sym_static_assert] = ACTIONS(4138), + [anon_sym_concept] = ACTIONS(4138), + [anon_sym_co_return] = ACTIONS(4138), + [anon_sym_co_yield] = ACTIONS(4138), + [anon_sym_R_DQUOTE] = ACTIONS(4140), + [anon_sym_LR_DQUOTE] = ACTIONS(4140), + [anon_sym_uR_DQUOTE] = ACTIONS(4140), + [anon_sym_UR_DQUOTE] = ACTIONS(4140), + [anon_sym_u8R_DQUOTE] = ACTIONS(4140), + [anon_sym_co_await] = ACTIONS(4138), + [anon_sym_new] = ACTIONS(4138), + [anon_sym_requires] = ACTIONS(4138), + [anon_sym_CARET_CARET] = ACTIONS(4140), + [anon_sym_LBRACK_COLON] = ACTIONS(4140), + [sym_this] = ACTIONS(4138), }, - [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), + [STATE(851)] = { + [sym_identifier] = ACTIONS(4158), + [aux_sym_preproc_include_token1] = ACTIONS(4158), + [aux_sym_preproc_def_token1] = ACTIONS(4158), + [aux_sym_preproc_if_token1] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4158), + [sym_preproc_directive] = ACTIONS(4158), + [anon_sym_LPAREN2] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_TILDE] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_AMP_AMP] = ACTIONS(4160), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym___extension__] = ACTIONS(4158), + [anon_sym_typedef] = ACTIONS(4158), + [anon_sym_virtual] = ACTIONS(4158), + [anon_sym_extern] = ACTIONS(4158), + [anon_sym___attribute__] = ACTIONS(4158), + [anon_sym___attribute] = ACTIONS(4158), + [anon_sym_using] = ACTIONS(4158), + [anon_sym_COLON_COLON] = ACTIONS(4160), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4160), + [anon_sym___declspec] = ACTIONS(4158), + [anon_sym___based] = ACTIONS(4158), + [anon_sym___cdecl] = ACTIONS(4158), + [anon_sym___clrcall] = ACTIONS(4158), + [anon_sym___stdcall] = ACTIONS(4158), + [anon_sym___fastcall] = ACTIONS(4158), + [anon_sym___thiscall] = ACTIONS(4158), + [anon_sym___vectorcall] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4160), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_signed] = ACTIONS(4158), + [anon_sym_unsigned] = ACTIONS(4158), + [anon_sym_long] = ACTIONS(4158), + [anon_sym_short] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_static] = ACTIONS(4158), + [anon_sym_register] = ACTIONS(4158), + [anon_sym_inline] = ACTIONS(4158), + [anon_sym___inline] = ACTIONS(4158), + [anon_sym___inline__] = ACTIONS(4158), + [anon_sym___forceinline] = ACTIONS(4158), + [anon_sym_thread_local] = ACTIONS(4158), + [anon_sym___thread] = ACTIONS(4158), + [anon_sym_const] = ACTIONS(4158), + [anon_sym_constexpr] = ACTIONS(4158), + [anon_sym_volatile] = ACTIONS(4158), + [anon_sym_restrict] = ACTIONS(4158), + [anon_sym___restrict__] = ACTIONS(4158), + [anon_sym__Atomic] = ACTIONS(4158), + [anon_sym__Noreturn] = ACTIONS(4158), + [anon_sym_noreturn] = ACTIONS(4158), + [anon_sym__Nonnull] = ACTIONS(4158), + [anon_sym_mutable] = ACTIONS(4158), + [anon_sym_constinit] = ACTIONS(4158), + [anon_sym_consteval] = ACTIONS(4158), + [anon_sym_alignas] = ACTIONS(4158), + [anon_sym__Alignas] = ACTIONS(4158), + [sym_primitive_type] = ACTIONS(4158), + [anon_sym_enum] = ACTIONS(4158), + [anon_sym_class] = ACTIONS(4158), + [anon_sym_struct] = ACTIONS(4158), + [anon_sym_union] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_switch] = ACTIONS(4158), + [anon_sym_case] = ACTIONS(4158), + [anon_sym_default] = ACTIONS(4158), + [anon_sym_while] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(4158), + [anon_sym_for] = ACTIONS(4158), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_break] = ACTIONS(4158), + [anon_sym_continue] = ACTIONS(4158), + [anon_sym_goto] = ACTIONS(4158), + [anon_sym___try] = ACTIONS(4158), + [anon_sym___leave] = ACTIONS(4158), + [anon_sym_not] = ACTIONS(4158), + [anon_sym_compl] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4160), + [anon_sym_PLUS_PLUS] = ACTIONS(4160), + [anon_sym_sizeof] = ACTIONS(4158), + [anon_sym___alignof__] = ACTIONS(4158), + [anon_sym___alignof] = ACTIONS(4158), + [anon_sym__alignof] = ACTIONS(4158), + [anon_sym_alignof] = ACTIONS(4158), + [anon_sym__Alignof] = ACTIONS(4158), + [anon_sym_offsetof] = ACTIONS(4158), + [anon_sym__Generic] = ACTIONS(4158), + [anon_sym_typename] = ACTIONS(4158), + [anon_sym_asm] = ACTIONS(4158), + [anon_sym___asm__] = ACTIONS(4158), + [anon_sym___asm] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4160), + [anon_sym_L_SQUOTE] = ACTIONS(4160), + [anon_sym_u_SQUOTE] = ACTIONS(4160), + [anon_sym_U_SQUOTE] = ACTIONS(4160), + [anon_sym_u8_SQUOTE] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4160), + [anon_sym_L_DQUOTE] = ACTIONS(4160), + [anon_sym_u_DQUOTE] = ACTIONS(4160), + [anon_sym_U_DQUOTE] = ACTIONS(4160), + [anon_sym_u8_DQUOTE] = ACTIONS(4160), + [anon_sym_DQUOTE] = ACTIONS(4160), + [sym_true] = ACTIONS(4158), + [sym_false] = ACTIONS(4158), + [anon_sym_NULL] = ACTIONS(4158), + [anon_sym_nullptr] = ACTIONS(4158), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4158), + [anon_sym_decltype] = ACTIONS(4158), + [anon_sym_explicit] = ACTIONS(4158), + [anon_sym_export] = ACTIONS(4158), + [anon_sym_import] = ACTIONS(4158), + [anon_sym_template] = ACTIONS(4158), + [anon_sym_operator] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_delete] = ACTIONS(4158), + [anon_sym_throw] = ACTIONS(4158), + [anon_sym_namespace] = ACTIONS(4158), + [anon_sym_static_assert] = ACTIONS(4158), + [anon_sym_concept] = ACTIONS(4158), + [anon_sym_co_return] = ACTIONS(4158), + [anon_sym_co_yield] = ACTIONS(4158), + [anon_sym_R_DQUOTE] = ACTIONS(4160), + [anon_sym_LR_DQUOTE] = ACTIONS(4160), + [anon_sym_uR_DQUOTE] = ACTIONS(4160), + [anon_sym_UR_DQUOTE] = ACTIONS(4160), + [anon_sym_u8R_DQUOTE] = ACTIONS(4160), + [anon_sym_co_await] = ACTIONS(4158), + [anon_sym_new] = ACTIONS(4158), + [anon_sym_requires] = ACTIONS(4158), + [anon_sym_CARET_CARET] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4160), + [sym_this] = ACTIONS(4158), }, - [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), + [STATE(852)] = { + [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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(853)] = { + [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(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_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), }, - [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), + [STATE(854)] = { + [sym_identifier] = ACTIONS(3959), + [aux_sym_preproc_include_token1] = ACTIONS(3959), + [aux_sym_preproc_def_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token1] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3959), + [sym_preproc_directive] = ACTIONS(3959), + [anon_sym_LPAREN2] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym___extension__] = ACTIONS(3959), + [anon_sym_typedef] = ACTIONS(3959), + [anon_sym_virtual] = ACTIONS(3959), + [anon_sym_extern] = ACTIONS(3959), + [anon_sym___attribute__] = ACTIONS(3959), + [anon_sym___attribute] = ACTIONS(3959), + [anon_sym_using] = ACTIONS(3959), + [anon_sym_COLON_COLON] = ACTIONS(3961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3961), + [anon_sym___declspec] = ACTIONS(3959), + [anon_sym___based] = ACTIONS(3959), + [anon_sym___cdecl] = ACTIONS(3959), + [anon_sym___clrcall] = ACTIONS(3959), + [anon_sym___stdcall] = ACTIONS(3959), + [anon_sym___fastcall] = ACTIONS(3959), + [anon_sym___thiscall] = ACTIONS(3959), + [anon_sym___vectorcall] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_RBRACE] = ACTIONS(3961), + [anon_sym_signed] = ACTIONS(3959), + [anon_sym_unsigned] = ACTIONS(3959), + [anon_sym_long] = ACTIONS(3959), + [anon_sym_short] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3959), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_register] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym___inline] = ACTIONS(3959), + [anon_sym___inline__] = ACTIONS(3959), + [anon_sym___forceinline] = ACTIONS(3959), + [anon_sym_thread_local] = ACTIONS(3959), + [anon_sym___thread] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_constexpr] = ACTIONS(3959), + [anon_sym_volatile] = ACTIONS(3959), + [anon_sym_restrict] = ACTIONS(3959), + [anon_sym___restrict__] = ACTIONS(3959), + [anon_sym__Atomic] = ACTIONS(3959), + [anon_sym__Noreturn] = ACTIONS(3959), + [anon_sym_noreturn] = ACTIONS(3959), + [anon_sym__Nonnull] = ACTIONS(3959), + [anon_sym_mutable] = ACTIONS(3959), + [anon_sym_constinit] = ACTIONS(3959), + [anon_sym_consteval] = ACTIONS(3959), + [anon_sym_alignas] = ACTIONS(3959), + [anon_sym__Alignas] = ACTIONS(3959), + [sym_primitive_type] = ACTIONS(3959), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_union] = ACTIONS(3959), + [anon_sym_if] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3959), + [anon_sym_case] = ACTIONS(3959), + [anon_sym_default] = ACTIONS(3959), + [anon_sym_while] = ACTIONS(3959), + [anon_sym_do] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3959), + [anon_sym_return] = ACTIONS(3959), + [anon_sym_break] = ACTIONS(3959), + [anon_sym_continue] = ACTIONS(3959), + [anon_sym_goto] = ACTIONS(3959), + [anon_sym___try] = ACTIONS(3959), + [anon_sym___leave] = ACTIONS(3959), + [anon_sym_not] = ACTIONS(3959), + [anon_sym_compl] = ACTIONS(3959), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_sizeof] = ACTIONS(3959), + [anon_sym___alignof__] = ACTIONS(3959), + [anon_sym___alignof] = ACTIONS(3959), + [anon_sym__alignof] = ACTIONS(3959), + [anon_sym_alignof] = ACTIONS(3959), + [anon_sym__Alignof] = ACTIONS(3959), + [anon_sym_offsetof] = ACTIONS(3959), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(3959), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3961), + [anon_sym_u_SQUOTE] = ACTIONS(3961), + [anon_sym_U_SQUOTE] = ACTIONS(3961), + [anon_sym_u8_SQUOTE] = ACTIONS(3961), + [anon_sym_SQUOTE] = ACTIONS(3961), + [anon_sym_L_DQUOTE] = ACTIONS(3961), + [anon_sym_u_DQUOTE] = ACTIONS(3961), + [anon_sym_U_DQUOTE] = ACTIONS(3961), + [anon_sym_u8_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [sym_true] = ACTIONS(3959), + [sym_false] = ACTIONS(3959), + [anon_sym_NULL] = ACTIONS(3959), + [anon_sym_nullptr] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3959), + [anon_sym_decltype] = ACTIONS(3959), + [anon_sym_explicit] = ACTIONS(3959), + [anon_sym_export] = ACTIONS(3959), + [anon_sym_import] = ACTIONS(3959), + [anon_sym_template] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_try] = ACTIONS(3959), + [anon_sym_delete] = ACTIONS(3959), + [anon_sym_throw] = ACTIONS(3959), + [anon_sym_namespace] = ACTIONS(3959), + [anon_sym_static_assert] = ACTIONS(3959), + [anon_sym_concept] = ACTIONS(3959), + [anon_sym_co_return] = ACTIONS(3959), + [anon_sym_co_yield] = ACTIONS(3959), + [anon_sym_R_DQUOTE] = ACTIONS(3961), + [anon_sym_LR_DQUOTE] = ACTIONS(3961), + [anon_sym_uR_DQUOTE] = ACTIONS(3961), + [anon_sym_UR_DQUOTE] = ACTIONS(3961), + [anon_sym_u8R_DQUOTE] = ACTIONS(3961), + [anon_sym_co_await] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3959), + [anon_sym_requires] = ACTIONS(3959), + [anon_sym_CARET_CARET] = ACTIONS(3961), + [anon_sym_LBRACK_COLON] = ACTIONS(3961), + [sym_this] = ACTIONS(3959), }, - [STATE(804)] = { + [STATE(855)] = { [sym_identifier] = ACTIONS(4032), [aux_sym_preproc_include_token1] = ACTIONS(4032), [aux_sym_preproc_def_token1] = ACTIONS(4032), @@ -174699,7 +185071,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4034), [sym_this] = ACTIONS(4032), }, - [STATE(805)] = { + [STATE(856)] = { [sym_identifier] = ACTIONS(4036), [aux_sym_preproc_include_token1] = ACTIONS(4036), [aux_sym_preproc_def_token1] = ACTIONS(4036), @@ -174839,987 +185211,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4038), [sym_this] = ACTIONS(4036), }, - [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), - }, - [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), + [STATE(857)] = { + [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(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_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), }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(858)] = { + [sym_identifier] = ACTIONS(4449), + [aux_sym_preproc_include_token1] = ACTIONS(4449), + [aux_sym_preproc_def_token1] = ACTIONS(4449), + [aux_sym_preproc_if_token1] = ACTIONS(4449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), + [sym_preproc_directive] = ACTIONS(4449), + [anon_sym_LPAREN2] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_TILDE] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_AMP_AMP] = ACTIONS(4451), + [anon_sym_AMP] = ACTIONS(4449), + [anon_sym_SEMI] = ACTIONS(4451), + [anon_sym___extension__] = ACTIONS(4449), + [anon_sym_typedef] = ACTIONS(4449), + [anon_sym_virtual] = ACTIONS(4449), + [anon_sym_extern] = ACTIONS(4449), + [anon_sym___attribute__] = ACTIONS(4449), + [anon_sym___attribute] = ACTIONS(4449), + [anon_sym_using] = ACTIONS(4449), + [anon_sym_COLON_COLON] = ACTIONS(4451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4451), + [anon_sym___declspec] = ACTIONS(4449), + [anon_sym___based] = ACTIONS(4449), + [anon_sym___cdecl] = ACTIONS(4449), + [anon_sym___clrcall] = ACTIONS(4449), + [anon_sym___stdcall] = ACTIONS(4449), + [anon_sym___fastcall] = ACTIONS(4449), + [anon_sym___thiscall] = ACTIONS(4449), + [anon_sym___vectorcall] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(4451), + [anon_sym_RBRACE] = ACTIONS(4451), + [anon_sym_signed] = ACTIONS(4449), + [anon_sym_unsigned] = ACTIONS(4449), + [anon_sym_long] = ACTIONS(4449), + [anon_sym_short] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_register] = ACTIONS(4449), + [anon_sym_inline] = ACTIONS(4449), + [anon_sym___inline] = ACTIONS(4449), + [anon_sym___inline__] = ACTIONS(4449), + [anon_sym___forceinline] = ACTIONS(4449), + [anon_sym_thread_local] = ACTIONS(4449), + [anon_sym___thread] = ACTIONS(4449), + [anon_sym_const] = ACTIONS(4449), + [anon_sym_constexpr] = ACTIONS(4449), + [anon_sym_volatile] = ACTIONS(4449), + [anon_sym_restrict] = ACTIONS(4449), + [anon_sym___restrict__] = ACTIONS(4449), + [anon_sym__Atomic] = ACTIONS(4449), + [anon_sym__Noreturn] = ACTIONS(4449), + [anon_sym_noreturn] = ACTIONS(4449), + [anon_sym__Nonnull] = ACTIONS(4449), + [anon_sym_mutable] = ACTIONS(4449), + [anon_sym_constinit] = ACTIONS(4449), + [anon_sym_consteval] = ACTIONS(4449), + [anon_sym_alignas] = ACTIONS(4449), + [anon_sym__Alignas] = ACTIONS(4449), + [sym_primitive_type] = ACTIONS(4449), + [anon_sym_enum] = ACTIONS(4449), + [anon_sym_class] = ACTIONS(4449), + [anon_sym_struct] = ACTIONS(4449), + [anon_sym_union] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(4449), + [anon_sym_switch] = ACTIONS(4449), + [anon_sym_case] = ACTIONS(4449), + [anon_sym_default] = ACTIONS(4449), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_do] = ACTIONS(4449), + [anon_sym_for] = ACTIONS(4449), + [anon_sym_return] = ACTIONS(4449), + [anon_sym_break] = ACTIONS(4449), + [anon_sym_continue] = ACTIONS(4449), + [anon_sym_goto] = ACTIONS(4449), + [anon_sym___try] = ACTIONS(4449), + [anon_sym___leave] = ACTIONS(4449), + [anon_sym_not] = ACTIONS(4449), + [anon_sym_compl] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4451), + [anon_sym_PLUS_PLUS] = ACTIONS(4451), + [anon_sym_sizeof] = ACTIONS(4449), + [anon_sym___alignof__] = ACTIONS(4449), + [anon_sym___alignof] = ACTIONS(4449), + [anon_sym__alignof] = ACTIONS(4449), + [anon_sym_alignof] = ACTIONS(4449), + [anon_sym__Alignof] = ACTIONS(4449), + [anon_sym_offsetof] = ACTIONS(4449), + [anon_sym__Generic] = ACTIONS(4449), + [anon_sym_typename] = ACTIONS(4449), + [anon_sym_asm] = ACTIONS(4449), + [anon_sym___asm__] = ACTIONS(4449), + [anon_sym___asm] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4451), + [anon_sym_L_SQUOTE] = ACTIONS(4451), + [anon_sym_u_SQUOTE] = ACTIONS(4451), + [anon_sym_U_SQUOTE] = ACTIONS(4451), + [anon_sym_u8_SQUOTE] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_L_DQUOTE] = ACTIONS(4451), + [anon_sym_u_DQUOTE] = ACTIONS(4451), + [anon_sym_U_DQUOTE] = ACTIONS(4451), + [anon_sym_u8_DQUOTE] = ACTIONS(4451), + [anon_sym_DQUOTE] = ACTIONS(4451), + [sym_true] = ACTIONS(4449), + [sym_false] = ACTIONS(4449), + [anon_sym_NULL] = ACTIONS(4449), + [anon_sym_nullptr] = ACTIONS(4449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4449), + [anon_sym_decltype] = ACTIONS(4449), + [anon_sym_explicit] = ACTIONS(4449), + [anon_sym_export] = ACTIONS(4449), + [anon_sym_import] = ACTIONS(4449), + [anon_sym_template] = ACTIONS(4449), + [anon_sym_operator] = ACTIONS(4449), + [anon_sym_try] = ACTIONS(4449), + [anon_sym_delete] = ACTIONS(4449), + [anon_sym_throw] = ACTIONS(4449), + [anon_sym_namespace] = ACTIONS(4449), + [anon_sym_static_assert] = ACTIONS(4449), + [anon_sym_concept] = ACTIONS(4449), + [anon_sym_co_return] = ACTIONS(4449), + [anon_sym_co_yield] = ACTIONS(4449), + [anon_sym_R_DQUOTE] = ACTIONS(4451), + [anon_sym_LR_DQUOTE] = ACTIONS(4451), + [anon_sym_uR_DQUOTE] = ACTIONS(4451), + [anon_sym_UR_DQUOTE] = ACTIONS(4451), + [anon_sym_u8R_DQUOTE] = ACTIONS(4451), + [anon_sym_co_await] = ACTIONS(4449), + [anon_sym_new] = ACTIONS(4449), + [anon_sym_requires] = ACTIONS(4449), + [anon_sym_CARET_CARET] = ACTIONS(4451), + [anon_sym_LBRACK_COLON] = ACTIONS(4451), + [sym_this] = ACTIONS(4449), }, - [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_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), + [STATE(859)] = { + [sym_identifier] = ACTIONS(3965), + [aux_sym_preproc_include_token1] = ACTIONS(3965), + [aux_sym_preproc_def_token1] = ACTIONS(3965), + [aux_sym_preproc_if_token1] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3965), + [sym_preproc_directive] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3967), + [anon_sym_TILDE] = ACTIONS(3967), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_STAR] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym___extension__] = ACTIONS(3965), + [anon_sym_typedef] = ACTIONS(3965), + [anon_sym_virtual] = ACTIONS(3965), + [anon_sym_extern] = ACTIONS(3965), + [anon_sym___attribute__] = ACTIONS(3965), + [anon_sym___attribute] = ACTIONS(3965), + [anon_sym_using] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3967), + [anon_sym___declspec] = ACTIONS(3965), + [anon_sym___based] = ACTIONS(3965), + [anon_sym___cdecl] = ACTIONS(3965), + [anon_sym___clrcall] = ACTIONS(3965), + [anon_sym___stdcall] = ACTIONS(3965), + [anon_sym___fastcall] = ACTIONS(3965), + [anon_sym___thiscall] = ACTIONS(3965), + [anon_sym___vectorcall] = ACTIONS(3965), + [anon_sym_LBRACE] = ACTIONS(3967), + [anon_sym_RBRACE] = ACTIONS(3967), + [anon_sym_signed] = ACTIONS(3965), + [anon_sym_unsigned] = ACTIONS(3965), + [anon_sym_long] = ACTIONS(3965), + [anon_sym_short] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_static] = ACTIONS(3965), + [anon_sym_register] = ACTIONS(3965), + [anon_sym_inline] = ACTIONS(3965), + [anon_sym___inline] = ACTIONS(3965), + [anon_sym___inline__] = ACTIONS(3965), + [anon_sym___forceinline] = ACTIONS(3965), + [anon_sym_thread_local] = ACTIONS(3965), + [anon_sym___thread] = ACTIONS(3965), + [anon_sym_const] = ACTIONS(3965), + [anon_sym_constexpr] = ACTIONS(3965), + [anon_sym_volatile] = ACTIONS(3965), + [anon_sym_restrict] = ACTIONS(3965), + [anon_sym___restrict__] = ACTIONS(3965), + [anon_sym__Atomic] = ACTIONS(3965), + [anon_sym__Noreturn] = ACTIONS(3965), + [anon_sym_noreturn] = ACTIONS(3965), + [anon_sym__Nonnull] = ACTIONS(3965), + [anon_sym_mutable] = ACTIONS(3965), + [anon_sym_constinit] = ACTIONS(3965), + [anon_sym_consteval] = ACTIONS(3965), + [anon_sym_alignas] = ACTIONS(3965), + [anon_sym__Alignas] = ACTIONS(3965), + [sym_primitive_type] = ACTIONS(3965), + [anon_sym_enum] = ACTIONS(3965), + [anon_sym_class] = ACTIONS(3965), + [anon_sym_struct] = ACTIONS(3965), + [anon_sym_union] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_switch] = ACTIONS(3965), + [anon_sym_case] = ACTIONS(3965), + [anon_sym_default] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_break] = ACTIONS(3965), + [anon_sym_continue] = ACTIONS(3965), + [anon_sym_goto] = ACTIONS(3965), + [anon_sym___try] = ACTIONS(3965), + [anon_sym___leave] = ACTIONS(3965), + [anon_sym_not] = ACTIONS(3965), + [anon_sym_compl] = ACTIONS(3965), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_sizeof] = ACTIONS(3965), + [anon_sym___alignof__] = ACTIONS(3965), + [anon_sym___alignof] = ACTIONS(3965), + [anon_sym__alignof] = ACTIONS(3965), + [anon_sym_alignof] = ACTIONS(3965), + [anon_sym__Alignof] = ACTIONS(3965), + [anon_sym_offsetof] = ACTIONS(3965), + [anon_sym__Generic] = ACTIONS(3965), + [anon_sym_typename] = ACTIONS(3965), + [anon_sym_asm] = ACTIONS(3965), + [anon_sym___asm__] = ACTIONS(3965), + [anon_sym___asm] = ACTIONS(3965), + [sym_number_literal] = ACTIONS(3967), + [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(3967), + [anon_sym_u_DQUOTE] = ACTIONS(3967), + [anon_sym_U_DQUOTE] = ACTIONS(3967), + [anon_sym_u8_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [sym_true] = ACTIONS(3965), + [sym_false] = ACTIONS(3965), + [anon_sym_NULL] = ACTIONS(3965), + [anon_sym_nullptr] = ACTIONS(3965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3965), + [anon_sym_decltype] = ACTIONS(3965), + [anon_sym_explicit] = ACTIONS(3965), + [anon_sym_export] = ACTIONS(3965), + [anon_sym_import] = ACTIONS(3965), + [anon_sym_template] = ACTIONS(3965), + [anon_sym_operator] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_delete] = ACTIONS(3965), + [anon_sym_throw] = ACTIONS(3965), + [anon_sym_namespace] = ACTIONS(3965), + [anon_sym_static_assert] = ACTIONS(3965), + [anon_sym_concept] = ACTIONS(3965), + [anon_sym_co_return] = ACTIONS(3965), + [anon_sym_co_yield] = ACTIONS(3965), + [anon_sym_R_DQUOTE] = ACTIONS(3967), + [anon_sym_LR_DQUOTE] = ACTIONS(3967), + [anon_sym_uR_DQUOTE] = ACTIONS(3967), + [anon_sym_UR_DQUOTE] = ACTIONS(3967), + [anon_sym_u8R_DQUOTE] = ACTIONS(3967), + [anon_sym_co_await] = ACTIONS(3965), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_requires] = ACTIONS(3965), + [anon_sym_CARET_CARET] = ACTIONS(3967), + [anon_sym_LBRACK_COLON] = ACTIONS(3967), + [sym_this] = ACTIONS(3965), }, - [STATE(813)] = { + [STATE(860)] = { [sym_identifier] = ACTIONS(4080), [aux_sym_preproc_include_token1] = ACTIONS(4080), [aux_sym_preproc_def_token1] = ACTIONS(4080), @@ -175959,3787 +185771,1687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4082), [sym_this] = ACTIONS(4080), }, - [STATE(814)] = { - [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_RBRACE] = 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_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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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(861)] = { + [sym_identifier] = ACTIONS(3969), + [aux_sym_preproc_include_token1] = ACTIONS(3969), + [aux_sym_preproc_def_token1] = ACTIONS(3969), + [aux_sym_preproc_if_token1] = ACTIONS(3969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3969), + [sym_preproc_directive] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_BANG] = ACTIONS(3971), + [anon_sym_TILDE] = ACTIONS(3971), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_STAR] = ACTIONS(3971), + [anon_sym_AMP_AMP] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_SEMI] = ACTIONS(3971), + [anon_sym___extension__] = ACTIONS(3969), + [anon_sym_typedef] = ACTIONS(3969), + [anon_sym_virtual] = ACTIONS(3969), + [anon_sym_extern] = ACTIONS(3969), + [anon_sym___attribute__] = ACTIONS(3969), + [anon_sym___attribute] = ACTIONS(3969), + [anon_sym_using] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3971), + [anon_sym___declspec] = ACTIONS(3969), + [anon_sym___based] = ACTIONS(3969), + [anon_sym___cdecl] = ACTIONS(3969), + [anon_sym___clrcall] = ACTIONS(3969), + [anon_sym___stdcall] = ACTIONS(3969), + [anon_sym___fastcall] = ACTIONS(3969), + [anon_sym___thiscall] = ACTIONS(3969), + [anon_sym___vectorcall] = ACTIONS(3969), + [anon_sym_LBRACE] = ACTIONS(3971), + [anon_sym_RBRACE] = ACTIONS(3971), + [anon_sym_signed] = ACTIONS(3969), + [anon_sym_unsigned] = ACTIONS(3969), + [anon_sym_long] = ACTIONS(3969), + [anon_sym_short] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_static] = ACTIONS(3969), + [anon_sym_register] = ACTIONS(3969), + [anon_sym_inline] = ACTIONS(3969), + [anon_sym___inline] = ACTIONS(3969), + [anon_sym___inline__] = ACTIONS(3969), + [anon_sym___forceinline] = ACTIONS(3969), + [anon_sym_thread_local] = ACTIONS(3969), + [anon_sym___thread] = ACTIONS(3969), + [anon_sym_const] = ACTIONS(3969), + [anon_sym_constexpr] = ACTIONS(3969), + [anon_sym_volatile] = ACTIONS(3969), + [anon_sym_restrict] = ACTIONS(3969), + [anon_sym___restrict__] = ACTIONS(3969), + [anon_sym__Atomic] = ACTIONS(3969), + [anon_sym__Noreturn] = ACTIONS(3969), + [anon_sym_noreturn] = ACTIONS(3969), + [anon_sym__Nonnull] = ACTIONS(3969), + [anon_sym_mutable] = ACTIONS(3969), + [anon_sym_constinit] = ACTIONS(3969), + [anon_sym_consteval] = ACTIONS(3969), + [anon_sym_alignas] = ACTIONS(3969), + [anon_sym__Alignas] = ACTIONS(3969), + [sym_primitive_type] = ACTIONS(3969), + [anon_sym_enum] = ACTIONS(3969), + [anon_sym_class] = ACTIONS(3969), + [anon_sym_struct] = ACTIONS(3969), + [anon_sym_union] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_switch] = ACTIONS(3969), + [anon_sym_case] = ACTIONS(3969), + [anon_sym_default] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_break] = ACTIONS(3969), + [anon_sym_continue] = ACTIONS(3969), + [anon_sym_goto] = ACTIONS(3969), + [anon_sym___try] = ACTIONS(3969), + [anon_sym___leave] = ACTIONS(3969), + [anon_sym_not] = ACTIONS(3969), + [anon_sym_compl] = ACTIONS(3969), + [anon_sym_DASH_DASH] = ACTIONS(3971), + [anon_sym_PLUS_PLUS] = ACTIONS(3971), + [anon_sym_sizeof] = ACTIONS(3969), + [anon_sym___alignof__] = ACTIONS(3969), + [anon_sym___alignof] = ACTIONS(3969), + [anon_sym__alignof] = ACTIONS(3969), + [anon_sym_alignof] = ACTIONS(3969), + [anon_sym__Alignof] = ACTIONS(3969), + [anon_sym_offsetof] = ACTIONS(3969), + [anon_sym__Generic] = ACTIONS(3969), + [anon_sym_typename] = ACTIONS(3969), + [anon_sym_asm] = ACTIONS(3969), + [anon_sym___asm__] = ACTIONS(3969), + [anon_sym___asm] = ACTIONS(3969), + [sym_number_literal] = ACTIONS(3971), + [anon_sym_L_SQUOTE] = ACTIONS(3971), + [anon_sym_u_SQUOTE] = ACTIONS(3971), + [anon_sym_U_SQUOTE] = ACTIONS(3971), + [anon_sym_u8_SQUOTE] = ACTIONS(3971), + [anon_sym_SQUOTE] = ACTIONS(3971), + [anon_sym_L_DQUOTE] = ACTIONS(3971), + [anon_sym_u_DQUOTE] = ACTIONS(3971), + [anon_sym_U_DQUOTE] = ACTIONS(3971), + [anon_sym_u8_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE] = ACTIONS(3971), + [sym_true] = ACTIONS(3969), + [sym_false] = ACTIONS(3969), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3969), + [anon_sym_decltype] = ACTIONS(3969), + [anon_sym_explicit] = ACTIONS(3969), + [anon_sym_export] = ACTIONS(3969), + [anon_sym_import] = ACTIONS(3969), + [anon_sym_template] = ACTIONS(3969), + [anon_sym_operator] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_delete] = ACTIONS(3969), + [anon_sym_throw] = ACTIONS(3969), + [anon_sym_namespace] = ACTIONS(3969), + [anon_sym_static_assert] = ACTIONS(3969), + [anon_sym_concept] = ACTIONS(3969), + [anon_sym_co_return] = ACTIONS(3969), + [anon_sym_co_yield] = ACTIONS(3969), + [anon_sym_R_DQUOTE] = ACTIONS(3971), + [anon_sym_LR_DQUOTE] = ACTIONS(3971), + [anon_sym_uR_DQUOTE] = ACTIONS(3971), + [anon_sym_UR_DQUOTE] = ACTIONS(3971), + [anon_sym_u8R_DQUOTE] = ACTIONS(3971), + [anon_sym_co_await] = ACTIONS(3969), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_requires] = ACTIONS(3969), + [anon_sym_CARET_CARET] = ACTIONS(3971), + [anon_sym_LBRACK_COLON] = ACTIONS(3971), + [sym_this] = ACTIONS(3969), }, - [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(862)] = { + [sym_identifier] = ACTIONS(3977), + [aux_sym_preproc_include_token1] = ACTIONS(3977), + [aux_sym_preproc_def_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token1] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3977), + [sym_preproc_directive] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_TILDE] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_typedef] = ACTIONS(3977), + [anon_sym_virtual] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_using] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym___based] = ACTIONS(3977), + [anon_sym___cdecl] = ACTIONS(3977), + [anon_sym___clrcall] = ACTIONS(3977), + [anon_sym___stdcall] = ACTIONS(3977), + [anon_sym___fastcall] = ACTIONS(3977), + [anon_sym___thiscall] = ACTIONS(3977), + [anon_sym___vectorcall] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_signed] = ACTIONS(3977), + [anon_sym_unsigned] = ACTIONS(3977), + [anon_sym_long] = ACTIONS(3977), + [anon_sym_short] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_mutable] = ACTIONS(3977), + [anon_sym_constinit] = ACTIONS(3977), + [anon_sym_consteval] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [sym_primitive_type] = ACTIONS(3977), + [anon_sym_enum] = ACTIONS(3977), + [anon_sym_class] = ACTIONS(3977), + [anon_sym_struct] = ACTIONS(3977), + [anon_sym_union] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_switch] = ACTIONS(3977), + [anon_sym_case] = ACTIONS(3977), + [anon_sym_default] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_break] = ACTIONS(3977), + [anon_sym_continue] = ACTIONS(3977), + [anon_sym_goto] = ACTIONS(3977), + [anon_sym___try] = ACTIONS(3977), + [anon_sym___leave] = ACTIONS(3977), + [anon_sym_not] = ACTIONS(3977), + [anon_sym_compl] = ACTIONS(3977), + [anon_sym_DASH_DASH] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3979), + [anon_sym_sizeof] = ACTIONS(3977), + [anon_sym___alignof__] = ACTIONS(3977), + [anon_sym___alignof] = ACTIONS(3977), + [anon_sym__alignof] = ACTIONS(3977), + [anon_sym_alignof] = ACTIONS(3977), + [anon_sym__Alignof] = ACTIONS(3977), + [anon_sym_offsetof] = ACTIONS(3977), + [anon_sym__Generic] = ACTIONS(3977), + [anon_sym_typename] = ACTIONS(3977), + [anon_sym_asm] = ACTIONS(3977), + [anon_sym___asm__] = ACTIONS(3977), + [anon_sym___asm] = ACTIONS(3977), + [sym_number_literal] = ACTIONS(3979), + [anon_sym_L_SQUOTE] = ACTIONS(3979), + [anon_sym_u_SQUOTE] = ACTIONS(3979), + [anon_sym_U_SQUOTE] = ACTIONS(3979), + [anon_sym_u8_SQUOTE] = ACTIONS(3979), + [anon_sym_SQUOTE] = ACTIONS(3979), + [anon_sym_L_DQUOTE] = ACTIONS(3979), + [anon_sym_u_DQUOTE] = ACTIONS(3979), + [anon_sym_U_DQUOTE] = ACTIONS(3979), + [anon_sym_u8_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [sym_true] = ACTIONS(3977), + [sym_false] = ACTIONS(3977), + [anon_sym_NULL] = ACTIONS(3977), + [anon_sym_nullptr] = ACTIONS(3977), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3977), + [anon_sym_decltype] = ACTIONS(3977), + [anon_sym_explicit] = ACTIONS(3977), + [anon_sym_export] = ACTIONS(3977), + [anon_sym_import] = ACTIONS(3977), + [anon_sym_template] = ACTIONS(3977), + [anon_sym_operator] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_delete] = ACTIONS(3977), + [anon_sym_throw] = ACTIONS(3977), + [anon_sym_namespace] = ACTIONS(3977), + [anon_sym_static_assert] = ACTIONS(3977), + [anon_sym_concept] = ACTIONS(3977), + [anon_sym_co_return] = ACTIONS(3977), + [anon_sym_co_yield] = ACTIONS(3977), + [anon_sym_R_DQUOTE] = ACTIONS(3979), + [anon_sym_LR_DQUOTE] = ACTIONS(3979), + [anon_sym_uR_DQUOTE] = ACTIONS(3979), + [anon_sym_UR_DQUOTE] = ACTIONS(3979), + [anon_sym_u8R_DQUOTE] = ACTIONS(3979), + [anon_sym_co_await] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_requires] = ACTIONS(3977), + [anon_sym_CARET_CARET] = ACTIONS(3979), + [anon_sym_LBRACK_COLON] = ACTIONS(3979), + [sym_this] = ACTIONS(3977), }, - [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(863)] = { + [sym_identifier] = ACTIONS(3981), + [aux_sym_preproc_include_token1] = ACTIONS(3981), + [aux_sym_preproc_def_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token1] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3981), + [sym_preproc_directive] = ACTIONS(3981), + [anon_sym_LPAREN2] = ACTIONS(3983), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_TILDE] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3981), + [anon_sym_STAR] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym___extension__] = ACTIONS(3981), + [anon_sym_typedef] = ACTIONS(3981), + [anon_sym_virtual] = ACTIONS(3981), + [anon_sym_extern] = ACTIONS(3981), + [anon_sym___attribute__] = ACTIONS(3981), + [anon_sym___attribute] = ACTIONS(3981), + [anon_sym_using] = ACTIONS(3981), + [anon_sym_COLON_COLON] = ACTIONS(3983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3983), + [anon_sym___declspec] = ACTIONS(3981), + [anon_sym___based] = ACTIONS(3981), + [anon_sym___cdecl] = ACTIONS(3981), + [anon_sym___clrcall] = ACTIONS(3981), + [anon_sym___stdcall] = ACTIONS(3981), + [anon_sym___fastcall] = ACTIONS(3981), + [anon_sym___thiscall] = ACTIONS(3981), + [anon_sym___vectorcall] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_RBRACE] = ACTIONS(3983), + [anon_sym_signed] = ACTIONS(3981), + [anon_sym_unsigned] = ACTIONS(3981), + [anon_sym_long] = ACTIONS(3981), + [anon_sym_short] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_register] = ACTIONS(3981), + [anon_sym_inline] = ACTIONS(3981), + [anon_sym___inline] = ACTIONS(3981), + [anon_sym___inline__] = ACTIONS(3981), + [anon_sym___forceinline] = ACTIONS(3981), + [anon_sym_thread_local] = ACTIONS(3981), + [anon_sym___thread] = ACTIONS(3981), + [anon_sym_const] = ACTIONS(3981), + [anon_sym_constexpr] = ACTIONS(3981), + [anon_sym_volatile] = ACTIONS(3981), + [anon_sym_restrict] = ACTIONS(3981), + [anon_sym___restrict__] = ACTIONS(3981), + [anon_sym__Atomic] = ACTIONS(3981), + [anon_sym__Noreturn] = ACTIONS(3981), + [anon_sym_noreturn] = ACTIONS(3981), + [anon_sym__Nonnull] = ACTIONS(3981), + [anon_sym_mutable] = ACTIONS(3981), + [anon_sym_constinit] = ACTIONS(3981), + [anon_sym_consteval] = ACTIONS(3981), + [anon_sym_alignas] = ACTIONS(3981), + [anon_sym__Alignas] = ACTIONS(3981), + [sym_primitive_type] = ACTIONS(3981), + [anon_sym_enum] = ACTIONS(3981), + [anon_sym_class] = ACTIONS(3981), + [anon_sym_struct] = ACTIONS(3981), + [anon_sym_union] = ACTIONS(3981), + [anon_sym_if] = ACTIONS(3981), + [anon_sym_switch] = ACTIONS(3981), + [anon_sym_case] = ACTIONS(3981), + [anon_sym_default] = ACTIONS(3981), + [anon_sym_while] = ACTIONS(3981), + [anon_sym_do] = ACTIONS(3981), + [anon_sym_for] = ACTIONS(3981), + [anon_sym_return] = ACTIONS(3981), + [anon_sym_break] = ACTIONS(3981), + [anon_sym_continue] = ACTIONS(3981), + [anon_sym_goto] = ACTIONS(3981), + [anon_sym___try] = ACTIONS(3981), + [anon_sym___leave] = ACTIONS(3981), + [anon_sym_not] = ACTIONS(3981), + [anon_sym_compl] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3983), + [anon_sym_sizeof] = ACTIONS(3981), + [anon_sym___alignof__] = ACTIONS(3981), + [anon_sym___alignof] = ACTIONS(3981), + [anon_sym__alignof] = ACTIONS(3981), + [anon_sym_alignof] = ACTIONS(3981), + [anon_sym__Alignof] = ACTIONS(3981), + [anon_sym_offsetof] = ACTIONS(3981), + [anon_sym__Generic] = ACTIONS(3981), + [anon_sym_typename] = ACTIONS(3981), + [anon_sym_asm] = ACTIONS(3981), + [anon_sym___asm__] = ACTIONS(3981), + [anon_sym___asm] = ACTIONS(3981), + [sym_number_literal] = ACTIONS(3983), + [anon_sym_L_SQUOTE] = ACTIONS(3983), + [anon_sym_u_SQUOTE] = ACTIONS(3983), + [anon_sym_U_SQUOTE] = ACTIONS(3983), + [anon_sym_u8_SQUOTE] = ACTIONS(3983), + [anon_sym_SQUOTE] = ACTIONS(3983), + [anon_sym_L_DQUOTE] = ACTIONS(3983), + [anon_sym_u_DQUOTE] = ACTIONS(3983), + [anon_sym_U_DQUOTE] = ACTIONS(3983), + [anon_sym_u8_DQUOTE] = ACTIONS(3983), + [anon_sym_DQUOTE] = ACTIONS(3983), + [sym_true] = ACTIONS(3981), + [sym_false] = ACTIONS(3981), + [anon_sym_NULL] = ACTIONS(3981), + [anon_sym_nullptr] = ACTIONS(3981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3981), + [anon_sym_decltype] = ACTIONS(3981), + [anon_sym_explicit] = ACTIONS(3981), + [anon_sym_export] = ACTIONS(3981), + [anon_sym_import] = ACTIONS(3981), + [anon_sym_template] = ACTIONS(3981), + [anon_sym_operator] = ACTIONS(3981), + [anon_sym_try] = ACTIONS(3981), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_throw] = ACTIONS(3981), + [anon_sym_namespace] = ACTIONS(3981), + [anon_sym_static_assert] = ACTIONS(3981), + [anon_sym_concept] = ACTIONS(3981), + [anon_sym_co_return] = ACTIONS(3981), + [anon_sym_co_yield] = 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(3981), + [anon_sym_new] = ACTIONS(3981), + [anon_sym_requires] = ACTIONS(3981), + [anon_sym_CARET_CARET] = ACTIONS(3983), + [anon_sym_LBRACK_COLON] = ACTIONS(3983), + [sym_this] = ACTIONS(3981), }, - [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(864)] = { + [sym_identifier] = ACTIONS(3985), + [aux_sym_preproc_include_token1] = ACTIONS(3985), + [aux_sym_preproc_def_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token1] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3985), + [sym_preproc_directive] = ACTIONS(3985), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_TILDE] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3985), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym___extension__] = ACTIONS(3985), + [anon_sym_typedef] = ACTIONS(3985), + [anon_sym_virtual] = ACTIONS(3985), + [anon_sym_extern] = ACTIONS(3985), + [anon_sym___attribute__] = ACTIONS(3985), + [anon_sym___attribute] = ACTIONS(3985), + [anon_sym_using] = ACTIONS(3985), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(3985), + [anon_sym___based] = ACTIONS(3985), + [anon_sym___cdecl] = ACTIONS(3985), + [anon_sym___clrcall] = ACTIONS(3985), + [anon_sym___stdcall] = ACTIONS(3985), + [anon_sym___fastcall] = ACTIONS(3985), + [anon_sym___thiscall] = ACTIONS(3985), + [anon_sym___vectorcall] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_RBRACE] = ACTIONS(3987), + [anon_sym_signed] = ACTIONS(3985), + [anon_sym_unsigned] = ACTIONS(3985), + [anon_sym_long] = ACTIONS(3985), + [anon_sym_short] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_static] = ACTIONS(3985), + [anon_sym_register] = ACTIONS(3985), + [anon_sym_inline] = ACTIONS(3985), + [anon_sym___inline] = ACTIONS(3985), + [anon_sym___inline__] = ACTIONS(3985), + [anon_sym___forceinline] = ACTIONS(3985), + [anon_sym_thread_local] = ACTIONS(3985), + [anon_sym___thread] = ACTIONS(3985), + [anon_sym_const] = ACTIONS(3985), + [anon_sym_constexpr] = ACTIONS(3985), + [anon_sym_volatile] = ACTIONS(3985), + [anon_sym_restrict] = ACTIONS(3985), + [anon_sym___restrict__] = ACTIONS(3985), + [anon_sym__Atomic] = ACTIONS(3985), + [anon_sym__Noreturn] = ACTIONS(3985), + [anon_sym_noreturn] = ACTIONS(3985), + [anon_sym__Nonnull] = ACTIONS(3985), + [anon_sym_mutable] = ACTIONS(3985), + [anon_sym_constinit] = ACTIONS(3985), + [anon_sym_consteval] = ACTIONS(3985), + [anon_sym_alignas] = ACTIONS(3985), + [anon_sym__Alignas] = ACTIONS(3985), + [sym_primitive_type] = ACTIONS(3985), + [anon_sym_enum] = ACTIONS(3985), + [anon_sym_class] = ACTIONS(3985), + [anon_sym_struct] = ACTIONS(3985), + [anon_sym_union] = ACTIONS(3985), + [anon_sym_if] = ACTIONS(3985), + [anon_sym_switch] = ACTIONS(3985), + [anon_sym_case] = ACTIONS(3985), + [anon_sym_default] = ACTIONS(3985), + [anon_sym_while] = ACTIONS(3985), + [anon_sym_do] = ACTIONS(3985), + [anon_sym_for] = ACTIONS(3985), + [anon_sym_return] = ACTIONS(3985), + [anon_sym_break] = ACTIONS(3985), + [anon_sym_continue] = ACTIONS(3985), + [anon_sym_goto] = ACTIONS(3985), + [anon_sym___try] = ACTIONS(3985), + [anon_sym___leave] = ACTIONS(3985), + [anon_sym_not] = ACTIONS(3985), + [anon_sym_compl] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_sizeof] = ACTIONS(3985), + [anon_sym___alignof__] = ACTIONS(3985), + [anon_sym___alignof] = ACTIONS(3985), + [anon_sym__alignof] = ACTIONS(3985), + [anon_sym_alignof] = ACTIONS(3985), + [anon_sym__Alignof] = ACTIONS(3985), + [anon_sym_offsetof] = ACTIONS(3985), + [anon_sym__Generic] = ACTIONS(3985), + [anon_sym_typename] = ACTIONS(3985), + [anon_sym_asm] = ACTIONS(3985), + [anon_sym___asm__] = ACTIONS(3985), + [anon_sym___asm] = ACTIONS(3985), + [sym_number_literal] = ACTIONS(3987), + [anon_sym_L_SQUOTE] = ACTIONS(3987), + [anon_sym_u_SQUOTE] = ACTIONS(3987), + [anon_sym_U_SQUOTE] = ACTIONS(3987), + [anon_sym_u8_SQUOTE] = ACTIONS(3987), + [anon_sym_SQUOTE] = ACTIONS(3987), + [anon_sym_L_DQUOTE] = ACTIONS(3987), + [anon_sym_u_DQUOTE] = ACTIONS(3987), + [anon_sym_U_DQUOTE] = ACTIONS(3987), + [anon_sym_u8_DQUOTE] = ACTIONS(3987), + [anon_sym_DQUOTE] = ACTIONS(3987), + [sym_true] = ACTIONS(3985), + [sym_false] = ACTIONS(3985), + [anon_sym_NULL] = ACTIONS(3985), + [anon_sym_nullptr] = ACTIONS(3985), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3985), + [anon_sym_decltype] = ACTIONS(3985), + [anon_sym_explicit] = ACTIONS(3985), + [anon_sym_export] = ACTIONS(3985), + [anon_sym_import] = ACTIONS(3985), + [anon_sym_template] = ACTIONS(3985), + [anon_sym_operator] = ACTIONS(3985), + [anon_sym_try] = ACTIONS(3985), + [anon_sym_delete] = ACTIONS(3985), + [anon_sym_throw] = ACTIONS(3985), + [anon_sym_namespace] = ACTIONS(3985), + [anon_sym_static_assert] = ACTIONS(3985), + [anon_sym_concept] = ACTIONS(3985), + [anon_sym_co_return] = ACTIONS(3985), + [anon_sym_co_yield] = ACTIONS(3985), + [anon_sym_R_DQUOTE] = ACTIONS(3987), + [anon_sym_LR_DQUOTE] = ACTIONS(3987), + [anon_sym_uR_DQUOTE] = ACTIONS(3987), + [anon_sym_UR_DQUOTE] = ACTIONS(3987), + [anon_sym_u8R_DQUOTE] = ACTIONS(3987), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3985), + [anon_sym_CARET_CARET] = ACTIONS(3987), + [anon_sym_LBRACK_COLON] = ACTIONS(3987), + [sym_this] = ACTIONS(3985), }, - [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(865)] = { + [sym_identifier] = ACTIONS(3989), + [aux_sym_preproc_include_token1] = ACTIONS(3989), + [aux_sym_preproc_def_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token1] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3989), + [sym_preproc_directive] = ACTIONS(3989), + [anon_sym_LPAREN2] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3989), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_SEMI] = ACTIONS(3991), + [anon_sym___extension__] = ACTIONS(3989), + [anon_sym_typedef] = ACTIONS(3989), + [anon_sym_virtual] = ACTIONS(3989), + [anon_sym_extern] = ACTIONS(3989), + [anon_sym___attribute__] = ACTIONS(3989), + [anon_sym___attribute] = ACTIONS(3989), + [anon_sym_using] = ACTIONS(3989), + [anon_sym_COLON_COLON] = ACTIONS(3991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3991), + [anon_sym___declspec] = ACTIONS(3989), + [anon_sym___based] = ACTIONS(3989), + [anon_sym___cdecl] = ACTIONS(3989), + [anon_sym___clrcall] = ACTIONS(3989), + [anon_sym___stdcall] = ACTIONS(3989), + [anon_sym___fastcall] = ACTIONS(3989), + [anon_sym___thiscall] = ACTIONS(3989), + [anon_sym___vectorcall] = ACTIONS(3989), + [anon_sym_LBRACE] = ACTIONS(3991), + [anon_sym_RBRACE] = ACTIONS(3991), + [anon_sym_signed] = ACTIONS(3989), + [anon_sym_unsigned] = ACTIONS(3989), + [anon_sym_long] = ACTIONS(3989), + [anon_sym_short] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_static] = ACTIONS(3989), + [anon_sym_register] = ACTIONS(3989), + [anon_sym_inline] = ACTIONS(3989), + [anon_sym___inline] = ACTIONS(3989), + [anon_sym___inline__] = ACTIONS(3989), + [anon_sym___forceinline] = ACTIONS(3989), + [anon_sym_thread_local] = ACTIONS(3989), + [anon_sym___thread] = ACTIONS(3989), + [anon_sym_const] = ACTIONS(3989), + [anon_sym_constexpr] = ACTIONS(3989), + [anon_sym_volatile] = ACTIONS(3989), + [anon_sym_restrict] = ACTIONS(3989), + [anon_sym___restrict__] = ACTIONS(3989), + [anon_sym__Atomic] = ACTIONS(3989), + [anon_sym__Noreturn] = ACTIONS(3989), + [anon_sym_noreturn] = ACTIONS(3989), + [anon_sym__Nonnull] = ACTIONS(3989), + [anon_sym_mutable] = ACTIONS(3989), + [anon_sym_constinit] = ACTIONS(3989), + [anon_sym_consteval] = ACTIONS(3989), + [anon_sym_alignas] = ACTIONS(3989), + [anon_sym__Alignas] = ACTIONS(3989), + [sym_primitive_type] = ACTIONS(3989), + [anon_sym_enum] = ACTIONS(3989), + [anon_sym_class] = ACTIONS(3989), + [anon_sym_struct] = ACTIONS(3989), + [anon_sym_union] = ACTIONS(3989), + [anon_sym_if] = ACTIONS(3989), + [anon_sym_switch] = ACTIONS(3989), + [anon_sym_case] = ACTIONS(3989), + [anon_sym_default] = ACTIONS(3989), + [anon_sym_while] = ACTIONS(3989), + [anon_sym_do] = ACTIONS(3989), + [anon_sym_for] = ACTIONS(3989), + [anon_sym_return] = ACTIONS(3989), + [anon_sym_break] = ACTIONS(3989), + [anon_sym_continue] = ACTIONS(3989), + [anon_sym_goto] = ACTIONS(3989), + [anon_sym___try] = ACTIONS(3989), + [anon_sym___leave] = ACTIONS(3989), + [anon_sym_not] = ACTIONS(3989), + [anon_sym_compl] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3991), + [anon_sym_sizeof] = ACTIONS(3989), + [anon_sym___alignof__] = ACTIONS(3989), + [anon_sym___alignof] = ACTIONS(3989), + [anon_sym__alignof] = ACTIONS(3989), + [anon_sym_alignof] = ACTIONS(3989), + [anon_sym__Alignof] = ACTIONS(3989), + [anon_sym_offsetof] = ACTIONS(3989), + [anon_sym__Generic] = ACTIONS(3989), + [anon_sym_typename] = ACTIONS(3989), + [anon_sym_asm] = ACTIONS(3989), + [anon_sym___asm__] = ACTIONS(3989), + [anon_sym___asm] = ACTIONS(3989), + [sym_number_literal] = ACTIONS(3991), + [anon_sym_L_SQUOTE] = ACTIONS(3991), + [anon_sym_u_SQUOTE] = ACTIONS(3991), + [anon_sym_U_SQUOTE] = ACTIONS(3991), + [anon_sym_u8_SQUOTE] = ACTIONS(3991), + [anon_sym_SQUOTE] = ACTIONS(3991), + [anon_sym_L_DQUOTE] = ACTIONS(3991), + [anon_sym_u_DQUOTE] = ACTIONS(3991), + [anon_sym_U_DQUOTE] = ACTIONS(3991), + [anon_sym_u8_DQUOTE] = ACTIONS(3991), + [anon_sym_DQUOTE] = ACTIONS(3991), + [sym_true] = ACTIONS(3989), + [sym_false] = ACTIONS(3989), + [anon_sym_NULL] = ACTIONS(3989), + [anon_sym_nullptr] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3989), + [anon_sym_decltype] = ACTIONS(3989), + [anon_sym_explicit] = ACTIONS(3989), + [anon_sym_export] = ACTIONS(3989), + [anon_sym_import] = ACTIONS(3989), + [anon_sym_template] = ACTIONS(3989), + [anon_sym_operator] = ACTIONS(3989), + [anon_sym_try] = ACTIONS(3989), + [anon_sym_delete] = ACTIONS(3989), + [anon_sym_throw] = ACTIONS(3989), + [anon_sym_namespace] = ACTIONS(3989), + [anon_sym_static_assert] = ACTIONS(3989), + [anon_sym_concept] = ACTIONS(3989), + [anon_sym_co_return] = ACTIONS(3989), + [anon_sym_co_yield] = ACTIONS(3989), + [anon_sym_R_DQUOTE] = ACTIONS(3991), + [anon_sym_LR_DQUOTE] = ACTIONS(3991), + [anon_sym_uR_DQUOTE] = ACTIONS(3991), + [anon_sym_UR_DQUOTE] = ACTIONS(3991), + [anon_sym_u8R_DQUOTE] = ACTIONS(3991), + [anon_sym_co_await] = ACTIONS(3989), + [anon_sym_new] = ACTIONS(3989), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3991), + [sym_this] = ACTIONS(3989), }, - [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(866)] = { + [sym_identifier] = ACTIONS(3993), + [aux_sym_preproc_include_token1] = ACTIONS(3993), + [aux_sym_preproc_def_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token1] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3993), + [sym_preproc_directive] = ACTIONS(3993), + [anon_sym_LPAREN2] = ACTIONS(3995), + [anon_sym_BANG] = ACTIONS(3995), + [anon_sym_TILDE] = ACTIONS(3995), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_AMP_AMP] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3993), + [anon_sym_SEMI] = ACTIONS(3995), + [anon_sym___extension__] = ACTIONS(3993), + [anon_sym_typedef] = ACTIONS(3993), + [anon_sym_virtual] = ACTIONS(3993), + [anon_sym_extern] = ACTIONS(3993), + [anon_sym___attribute__] = ACTIONS(3993), + [anon_sym___attribute] = ACTIONS(3993), + [anon_sym_using] = ACTIONS(3993), + [anon_sym_COLON_COLON] = ACTIONS(3995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3995), + [anon_sym___declspec] = ACTIONS(3993), + [anon_sym___based] = ACTIONS(3993), + [anon_sym___cdecl] = ACTIONS(3993), + [anon_sym___clrcall] = ACTIONS(3993), + [anon_sym___stdcall] = ACTIONS(3993), + [anon_sym___fastcall] = ACTIONS(3993), + [anon_sym___thiscall] = ACTIONS(3993), + [anon_sym___vectorcall] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3995), + [anon_sym_RBRACE] = ACTIONS(3995), + [anon_sym_signed] = ACTIONS(3993), + [anon_sym_unsigned] = ACTIONS(3993), + [anon_sym_long] = ACTIONS(3993), + [anon_sym_short] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_static] = ACTIONS(3993), + [anon_sym_register] = ACTIONS(3993), + [anon_sym_inline] = ACTIONS(3993), + [anon_sym___inline] = ACTIONS(3993), + [anon_sym___inline__] = ACTIONS(3993), + [anon_sym___forceinline] = ACTIONS(3993), + [anon_sym_thread_local] = ACTIONS(3993), + [anon_sym___thread] = ACTIONS(3993), + [anon_sym_const] = ACTIONS(3993), + [anon_sym_constexpr] = ACTIONS(3993), + [anon_sym_volatile] = ACTIONS(3993), + [anon_sym_restrict] = ACTIONS(3993), + [anon_sym___restrict__] = ACTIONS(3993), + [anon_sym__Atomic] = ACTIONS(3993), + [anon_sym__Noreturn] = ACTIONS(3993), + [anon_sym_noreturn] = ACTIONS(3993), + [anon_sym__Nonnull] = ACTIONS(3993), + [anon_sym_mutable] = ACTIONS(3993), + [anon_sym_constinit] = ACTIONS(3993), + [anon_sym_consteval] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(3993), + [anon_sym__Alignas] = ACTIONS(3993), + [sym_primitive_type] = ACTIONS(3993), + [anon_sym_enum] = ACTIONS(3993), + [anon_sym_class] = ACTIONS(3993), + [anon_sym_struct] = ACTIONS(3993), + [anon_sym_union] = ACTIONS(3993), + [anon_sym_if] = ACTIONS(3993), + [anon_sym_switch] = ACTIONS(3993), + [anon_sym_case] = ACTIONS(3993), + [anon_sym_default] = ACTIONS(3993), + [anon_sym_while] = ACTIONS(3993), + [anon_sym_do] = ACTIONS(3993), + [anon_sym_for] = ACTIONS(3993), + [anon_sym_return] = ACTIONS(3993), + [anon_sym_break] = ACTIONS(3993), + [anon_sym_continue] = ACTIONS(3993), + [anon_sym_goto] = ACTIONS(3993), + [anon_sym___try] = ACTIONS(3993), + [anon_sym___leave] = ACTIONS(3993), + [anon_sym_not] = ACTIONS(3993), + [anon_sym_compl] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3995), + [anon_sym_PLUS_PLUS] = ACTIONS(3995), + [anon_sym_sizeof] = ACTIONS(3993), + [anon_sym___alignof__] = ACTIONS(3993), + [anon_sym___alignof] = ACTIONS(3993), + [anon_sym__alignof] = ACTIONS(3993), + [anon_sym_alignof] = ACTIONS(3993), + [anon_sym__Alignof] = ACTIONS(3993), + [anon_sym_offsetof] = ACTIONS(3993), + [anon_sym__Generic] = ACTIONS(3993), + [anon_sym_typename] = ACTIONS(3993), + [anon_sym_asm] = ACTIONS(3993), + [anon_sym___asm__] = ACTIONS(3993), + [anon_sym___asm] = ACTIONS(3993), + [sym_number_literal] = ACTIONS(3995), + [anon_sym_L_SQUOTE] = ACTIONS(3995), + [anon_sym_u_SQUOTE] = ACTIONS(3995), + [anon_sym_U_SQUOTE] = ACTIONS(3995), + [anon_sym_u8_SQUOTE] = ACTIONS(3995), + [anon_sym_SQUOTE] = ACTIONS(3995), + [anon_sym_L_DQUOTE] = ACTIONS(3995), + [anon_sym_u_DQUOTE] = ACTIONS(3995), + [anon_sym_U_DQUOTE] = ACTIONS(3995), + [anon_sym_u8_DQUOTE] = ACTIONS(3995), + [anon_sym_DQUOTE] = ACTIONS(3995), + [sym_true] = ACTIONS(3993), + [sym_false] = ACTIONS(3993), + [anon_sym_NULL] = ACTIONS(3993), + [anon_sym_nullptr] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3993), + [anon_sym_decltype] = ACTIONS(3993), + [anon_sym_explicit] = ACTIONS(3993), + [anon_sym_export] = ACTIONS(3993), + [anon_sym_import] = ACTIONS(3993), + [anon_sym_template] = ACTIONS(3993), + [anon_sym_operator] = ACTIONS(3993), + [anon_sym_try] = ACTIONS(3993), + [anon_sym_delete] = ACTIONS(3993), + [anon_sym_throw] = ACTIONS(3993), + [anon_sym_namespace] = ACTIONS(3993), + [anon_sym_static_assert] = ACTIONS(3993), + [anon_sym_concept] = ACTIONS(3993), + [anon_sym_co_return] = ACTIONS(3993), + [anon_sym_co_yield] = ACTIONS(3993), + [anon_sym_R_DQUOTE] = ACTIONS(3995), + [anon_sym_LR_DQUOTE] = ACTIONS(3995), + [anon_sym_uR_DQUOTE] = ACTIONS(3995), + [anon_sym_UR_DQUOTE] = ACTIONS(3995), + [anon_sym_u8R_DQUOTE] = ACTIONS(3995), + [anon_sym_co_await] = ACTIONS(3993), + [anon_sym_new] = ACTIONS(3993), + [anon_sym_requires] = ACTIONS(3993), + [anon_sym_CARET_CARET] = ACTIONS(3995), + [anon_sym_LBRACK_COLON] = ACTIONS(3995), + [sym_this] = ACTIONS(3993), }, - [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(867)] = { + [sym_identifier] = ACTIONS(4001), + [aux_sym_preproc_include_token1] = ACTIONS(4001), + [aux_sym_preproc_def_token1] = ACTIONS(4001), + [aux_sym_preproc_if_token1] = ACTIONS(4001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4001), + [sym_preproc_directive] = ACTIONS(4001), + [anon_sym_LPAREN2] = ACTIONS(4003), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_TILDE] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4001), + [anon_sym_STAR] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym___extension__] = ACTIONS(4001), + [anon_sym_typedef] = ACTIONS(4001), + [anon_sym_virtual] = ACTIONS(4001), + [anon_sym_extern] = ACTIONS(4001), + [anon_sym___attribute__] = ACTIONS(4001), + [anon_sym___attribute] = ACTIONS(4001), + [anon_sym_using] = ACTIONS(4001), + [anon_sym_COLON_COLON] = ACTIONS(4003), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4003), + [anon_sym___declspec] = ACTIONS(4001), + [anon_sym___based] = ACTIONS(4001), + [anon_sym___cdecl] = ACTIONS(4001), + [anon_sym___clrcall] = ACTIONS(4001), + [anon_sym___stdcall] = ACTIONS(4001), + [anon_sym___fastcall] = ACTIONS(4001), + [anon_sym___thiscall] = ACTIONS(4001), + [anon_sym___vectorcall] = ACTIONS(4001), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_RBRACE] = ACTIONS(4003), + [anon_sym_signed] = ACTIONS(4001), + [anon_sym_unsigned] = ACTIONS(4001), + [anon_sym_long] = ACTIONS(4001), + [anon_sym_short] = ACTIONS(4001), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_static] = ACTIONS(4001), + [anon_sym_register] = ACTIONS(4001), + [anon_sym_inline] = ACTIONS(4001), + [anon_sym___inline] = ACTIONS(4001), + [anon_sym___inline__] = ACTIONS(4001), + [anon_sym___forceinline] = ACTIONS(4001), + [anon_sym_thread_local] = ACTIONS(4001), + [anon_sym___thread] = ACTIONS(4001), + [anon_sym_const] = ACTIONS(4001), + [anon_sym_constexpr] = ACTIONS(4001), + [anon_sym_volatile] = ACTIONS(4001), + [anon_sym_restrict] = ACTIONS(4001), + [anon_sym___restrict__] = ACTIONS(4001), + [anon_sym__Atomic] = ACTIONS(4001), + [anon_sym__Noreturn] = ACTIONS(4001), + [anon_sym_noreturn] = ACTIONS(4001), + [anon_sym__Nonnull] = ACTIONS(4001), + [anon_sym_mutable] = ACTIONS(4001), + [anon_sym_constinit] = ACTIONS(4001), + [anon_sym_consteval] = ACTIONS(4001), + [anon_sym_alignas] = ACTIONS(4001), + [anon_sym__Alignas] = ACTIONS(4001), + [sym_primitive_type] = ACTIONS(4001), + [anon_sym_enum] = ACTIONS(4001), + [anon_sym_class] = ACTIONS(4001), + [anon_sym_struct] = ACTIONS(4001), + [anon_sym_union] = ACTIONS(4001), + [anon_sym_if] = ACTIONS(4001), + [anon_sym_switch] = ACTIONS(4001), + [anon_sym_case] = ACTIONS(4001), + [anon_sym_default] = ACTIONS(4001), + [anon_sym_while] = ACTIONS(4001), + [anon_sym_do] = ACTIONS(4001), + [anon_sym_for] = ACTIONS(4001), + [anon_sym_return] = ACTIONS(4001), + [anon_sym_break] = ACTIONS(4001), + [anon_sym_continue] = ACTIONS(4001), + [anon_sym_goto] = ACTIONS(4001), + [anon_sym___try] = ACTIONS(4001), + [anon_sym___leave] = ACTIONS(4001), + [anon_sym_not] = ACTIONS(4001), + [anon_sym_compl] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4003), + [anon_sym_sizeof] = ACTIONS(4001), + [anon_sym___alignof__] = ACTIONS(4001), + [anon_sym___alignof] = ACTIONS(4001), + [anon_sym__alignof] = ACTIONS(4001), + [anon_sym_alignof] = ACTIONS(4001), + [anon_sym__Alignof] = ACTIONS(4001), + [anon_sym_offsetof] = ACTIONS(4001), + [anon_sym__Generic] = ACTIONS(4001), + [anon_sym_typename] = ACTIONS(4001), + [anon_sym_asm] = ACTIONS(4001), + [anon_sym___asm__] = ACTIONS(4001), + [anon_sym___asm] = ACTIONS(4001), + [sym_number_literal] = ACTIONS(4003), + [anon_sym_L_SQUOTE] = ACTIONS(4003), + [anon_sym_u_SQUOTE] = ACTIONS(4003), + [anon_sym_U_SQUOTE] = ACTIONS(4003), + [anon_sym_u8_SQUOTE] = ACTIONS(4003), + [anon_sym_SQUOTE] = ACTIONS(4003), + [anon_sym_L_DQUOTE] = ACTIONS(4003), + [anon_sym_u_DQUOTE] = ACTIONS(4003), + [anon_sym_U_DQUOTE] = ACTIONS(4003), + [anon_sym_u8_DQUOTE] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [sym_true] = ACTIONS(4001), + [sym_false] = ACTIONS(4001), + [anon_sym_NULL] = ACTIONS(4001), + [anon_sym_nullptr] = ACTIONS(4001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4001), + [anon_sym_decltype] = ACTIONS(4001), + [anon_sym_explicit] = ACTIONS(4001), + [anon_sym_export] = ACTIONS(4001), + [anon_sym_import] = ACTIONS(4001), + [anon_sym_template] = ACTIONS(4001), + [anon_sym_operator] = ACTIONS(4001), + [anon_sym_try] = ACTIONS(4001), + [anon_sym_delete] = ACTIONS(4001), + [anon_sym_throw] = ACTIONS(4001), + [anon_sym_namespace] = ACTIONS(4001), + [anon_sym_static_assert] = ACTIONS(4001), + [anon_sym_concept] = ACTIONS(4001), + [anon_sym_co_return] = ACTIONS(4001), + [anon_sym_co_yield] = ACTIONS(4001), + [anon_sym_R_DQUOTE] = ACTIONS(4003), + [anon_sym_LR_DQUOTE] = ACTIONS(4003), + [anon_sym_uR_DQUOTE] = ACTIONS(4003), + [anon_sym_UR_DQUOTE] = ACTIONS(4003), + [anon_sym_u8R_DQUOTE] = ACTIONS(4003), + [anon_sym_co_await] = ACTIONS(4001), + [anon_sym_new] = ACTIONS(4001), + [anon_sym_requires] = ACTIONS(4001), + [anon_sym_CARET_CARET] = ACTIONS(4003), + [anon_sym_LBRACK_COLON] = ACTIONS(4003), + [sym_this] = ACTIONS(4001), }, - [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(868)] = { + [sym_identifier] = ACTIONS(4005), + [aux_sym_preproc_include_token1] = ACTIONS(4005), + [aux_sym_preproc_def_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token1] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4005), + [sym_preproc_directive] = ACTIONS(4005), + [anon_sym_LPAREN2] = ACTIONS(4007), + [anon_sym_BANG] = ACTIONS(4007), + [anon_sym_TILDE] = ACTIONS(4007), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_PLUS] = ACTIONS(4005), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_AMP_AMP] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_SEMI] = ACTIONS(4007), + [anon_sym___extension__] = ACTIONS(4005), + [anon_sym_typedef] = ACTIONS(4005), + [anon_sym_virtual] = ACTIONS(4005), + [anon_sym_extern] = ACTIONS(4005), + [anon_sym___attribute__] = ACTIONS(4005), + [anon_sym___attribute] = ACTIONS(4005), + [anon_sym_using] = ACTIONS(4005), + [anon_sym_COLON_COLON] = ACTIONS(4007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4007), + [anon_sym___declspec] = ACTIONS(4005), + [anon_sym___based] = ACTIONS(4005), + [anon_sym___cdecl] = ACTIONS(4005), + [anon_sym___clrcall] = ACTIONS(4005), + [anon_sym___stdcall] = ACTIONS(4005), + [anon_sym___fastcall] = ACTIONS(4005), + [anon_sym___thiscall] = ACTIONS(4005), + [anon_sym___vectorcall] = ACTIONS(4005), + [anon_sym_LBRACE] = ACTIONS(4007), + [anon_sym_RBRACE] = ACTIONS(4007), + [anon_sym_signed] = ACTIONS(4005), + [anon_sym_unsigned] = ACTIONS(4005), + [anon_sym_long] = ACTIONS(4005), + [anon_sym_short] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4005), + [anon_sym_register] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym___inline] = ACTIONS(4005), + [anon_sym___inline__] = ACTIONS(4005), + [anon_sym___forceinline] = ACTIONS(4005), + [anon_sym_thread_local] = ACTIONS(4005), + [anon_sym___thread] = ACTIONS(4005), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_constexpr] = ACTIONS(4005), + [anon_sym_volatile] = ACTIONS(4005), + [anon_sym_restrict] = ACTIONS(4005), + [anon_sym___restrict__] = ACTIONS(4005), + [anon_sym__Atomic] = ACTIONS(4005), + [anon_sym__Noreturn] = ACTIONS(4005), + [anon_sym_noreturn] = ACTIONS(4005), + [anon_sym__Nonnull] = ACTIONS(4005), + [anon_sym_mutable] = ACTIONS(4005), + [anon_sym_constinit] = ACTIONS(4005), + [anon_sym_consteval] = ACTIONS(4005), + [anon_sym_alignas] = ACTIONS(4005), + [anon_sym__Alignas] = ACTIONS(4005), + [sym_primitive_type] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_class] = ACTIONS(4005), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_if] = ACTIONS(4005), + [anon_sym_switch] = ACTIONS(4005), + [anon_sym_case] = ACTIONS(4005), + [anon_sym_default] = ACTIONS(4005), + [anon_sym_while] = ACTIONS(4005), + [anon_sym_do] = ACTIONS(4005), + [anon_sym_for] = ACTIONS(4005), + [anon_sym_return] = ACTIONS(4005), + [anon_sym_break] = ACTIONS(4005), + [anon_sym_continue] = ACTIONS(4005), + [anon_sym_goto] = ACTIONS(4005), + [anon_sym___try] = ACTIONS(4005), + [anon_sym___leave] = ACTIONS(4005), + [anon_sym_not] = ACTIONS(4005), + [anon_sym_compl] = ACTIONS(4005), + [anon_sym_DASH_DASH] = ACTIONS(4007), + [anon_sym_PLUS_PLUS] = ACTIONS(4007), + [anon_sym_sizeof] = ACTIONS(4005), + [anon_sym___alignof__] = ACTIONS(4005), + [anon_sym___alignof] = ACTIONS(4005), + [anon_sym__alignof] = ACTIONS(4005), + [anon_sym_alignof] = ACTIONS(4005), + [anon_sym__Alignof] = ACTIONS(4005), + [anon_sym_offsetof] = ACTIONS(4005), + [anon_sym__Generic] = ACTIONS(4005), + [anon_sym_typename] = ACTIONS(4005), + [anon_sym_asm] = ACTIONS(4005), + [anon_sym___asm__] = ACTIONS(4005), + [anon_sym___asm] = ACTIONS(4005), + [sym_number_literal] = ACTIONS(4007), + [anon_sym_L_SQUOTE] = ACTIONS(4007), + [anon_sym_u_SQUOTE] = ACTIONS(4007), + [anon_sym_U_SQUOTE] = ACTIONS(4007), + [anon_sym_u8_SQUOTE] = ACTIONS(4007), + [anon_sym_SQUOTE] = ACTIONS(4007), + [anon_sym_L_DQUOTE] = ACTIONS(4007), + [anon_sym_u_DQUOTE] = ACTIONS(4007), + [anon_sym_U_DQUOTE] = ACTIONS(4007), + [anon_sym_u8_DQUOTE] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4007), + [sym_true] = ACTIONS(4005), + [sym_false] = ACTIONS(4005), + [anon_sym_NULL] = ACTIONS(4005), + [anon_sym_nullptr] = ACTIONS(4005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4005), + [anon_sym_decltype] = ACTIONS(4005), + [anon_sym_explicit] = ACTIONS(4005), + [anon_sym_export] = ACTIONS(4005), + [anon_sym_import] = ACTIONS(4005), + [anon_sym_template] = ACTIONS(4005), + [anon_sym_operator] = ACTIONS(4005), + [anon_sym_try] = ACTIONS(4005), + [anon_sym_delete] = ACTIONS(4005), + [anon_sym_throw] = ACTIONS(4005), + [anon_sym_namespace] = ACTIONS(4005), + [anon_sym_static_assert] = ACTIONS(4005), + [anon_sym_concept] = ACTIONS(4005), + [anon_sym_co_return] = ACTIONS(4005), + [anon_sym_co_yield] = ACTIONS(4005), + [anon_sym_R_DQUOTE] = ACTIONS(4007), + [anon_sym_LR_DQUOTE] = ACTIONS(4007), + [anon_sym_uR_DQUOTE] = ACTIONS(4007), + [anon_sym_UR_DQUOTE] = ACTIONS(4007), + [anon_sym_u8R_DQUOTE] = ACTIONS(4007), + [anon_sym_co_await] = ACTIONS(4005), + [anon_sym_new] = ACTIONS(4005), + [anon_sym_requires] = ACTIONS(4005), + [anon_sym_CARET_CARET] = ACTIONS(4007), + [anon_sym_LBRACK_COLON] = ACTIONS(4007), + [sym_this] = ACTIONS(4005), }, - [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(869)] = { + [sym_identifier] = ACTIONS(4009), + [aux_sym_preproc_include_token1] = ACTIONS(4009), + [aux_sym_preproc_def_token1] = ACTIONS(4009), + [aux_sym_preproc_if_token1] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4009), + [sym_preproc_directive] = ACTIONS(4009), + [anon_sym_LPAREN2] = ACTIONS(4011), + [anon_sym_BANG] = ACTIONS(4011), + [anon_sym_TILDE] = ACTIONS(4011), + [anon_sym_DASH] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4009), + [anon_sym_STAR] = ACTIONS(4011), + [anon_sym_AMP_AMP] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_SEMI] = ACTIONS(4011), + [anon_sym___extension__] = ACTIONS(4009), + [anon_sym_typedef] = ACTIONS(4009), + [anon_sym_virtual] = ACTIONS(4009), + [anon_sym_extern] = ACTIONS(4009), + [anon_sym___attribute__] = ACTIONS(4009), + [anon_sym___attribute] = ACTIONS(4009), + [anon_sym_using] = ACTIONS(4009), + [anon_sym_COLON_COLON] = ACTIONS(4011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4011), + [anon_sym___declspec] = ACTIONS(4009), + [anon_sym___based] = ACTIONS(4009), + [anon_sym___cdecl] = ACTIONS(4009), + [anon_sym___clrcall] = ACTIONS(4009), + [anon_sym___stdcall] = ACTIONS(4009), + [anon_sym___fastcall] = ACTIONS(4009), + [anon_sym___thiscall] = ACTIONS(4009), + [anon_sym___vectorcall] = ACTIONS(4009), + [anon_sym_LBRACE] = ACTIONS(4011), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_signed] = ACTIONS(4009), + [anon_sym_unsigned] = ACTIONS(4009), + [anon_sym_long] = ACTIONS(4009), + [anon_sym_short] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4009), + [anon_sym_register] = ACTIONS(4009), + [anon_sym_inline] = ACTIONS(4009), + [anon_sym___inline] = ACTIONS(4009), + [anon_sym___inline__] = ACTIONS(4009), + [anon_sym___forceinline] = ACTIONS(4009), + [anon_sym_thread_local] = ACTIONS(4009), + [anon_sym___thread] = ACTIONS(4009), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_constexpr] = ACTIONS(4009), + [anon_sym_volatile] = ACTIONS(4009), + [anon_sym_restrict] = ACTIONS(4009), + [anon_sym___restrict__] = ACTIONS(4009), + [anon_sym__Atomic] = ACTIONS(4009), + [anon_sym__Noreturn] = ACTIONS(4009), + [anon_sym_noreturn] = ACTIONS(4009), + [anon_sym__Nonnull] = ACTIONS(4009), + [anon_sym_mutable] = ACTIONS(4009), + [anon_sym_constinit] = ACTIONS(4009), + [anon_sym_consteval] = ACTIONS(4009), + [anon_sym_alignas] = ACTIONS(4009), + [anon_sym__Alignas] = ACTIONS(4009), + [sym_primitive_type] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_class] = ACTIONS(4009), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_if] = ACTIONS(4009), + [anon_sym_switch] = ACTIONS(4009), + [anon_sym_case] = ACTIONS(4009), + [anon_sym_default] = ACTIONS(4009), + [anon_sym_while] = ACTIONS(4009), + [anon_sym_do] = ACTIONS(4009), + [anon_sym_for] = ACTIONS(4009), + [anon_sym_return] = ACTIONS(4009), + [anon_sym_break] = ACTIONS(4009), + [anon_sym_continue] = ACTIONS(4009), + [anon_sym_goto] = ACTIONS(4009), + [anon_sym___try] = ACTIONS(4009), + [anon_sym___leave] = ACTIONS(4009), + [anon_sym_not] = ACTIONS(4009), + [anon_sym_compl] = ACTIONS(4009), + [anon_sym_DASH_DASH] = ACTIONS(4011), + [anon_sym_PLUS_PLUS] = ACTIONS(4011), + [anon_sym_sizeof] = ACTIONS(4009), + [anon_sym___alignof__] = ACTIONS(4009), + [anon_sym___alignof] = ACTIONS(4009), + [anon_sym__alignof] = ACTIONS(4009), + [anon_sym_alignof] = ACTIONS(4009), + [anon_sym__Alignof] = ACTIONS(4009), + [anon_sym_offsetof] = ACTIONS(4009), + [anon_sym__Generic] = ACTIONS(4009), + [anon_sym_typename] = ACTIONS(4009), + [anon_sym_asm] = ACTIONS(4009), + [anon_sym___asm__] = ACTIONS(4009), + [anon_sym___asm] = ACTIONS(4009), + [sym_number_literal] = ACTIONS(4011), + [anon_sym_L_SQUOTE] = ACTIONS(4011), + [anon_sym_u_SQUOTE] = ACTIONS(4011), + [anon_sym_U_SQUOTE] = ACTIONS(4011), + [anon_sym_u8_SQUOTE] = ACTIONS(4011), + [anon_sym_SQUOTE] = ACTIONS(4011), + [anon_sym_L_DQUOTE] = ACTIONS(4011), + [anon_sym_u_DQUOTE] = ACTIONS(4011), + [anon_sym_U_DQUOTE] = ACTIONS(4011), + [anon_sym_u8_DQUOTE] = ACTIONS(4011), + [anon_sym_DQUOTE] = ACTIONS(4011), + [sym_true] = ACTIONS(4009), + [sym_false] = ACTIONS(4009), + [anon_sym_NULL] = ACTIONS(4009), + [anon_sym_nullptr] = ACTIONS(4009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4009), + [anon_sym_decltype] = ACTIONS(4009), + [anon_sym_explicit] = ACTIONS(4009), + [anon_sym_export] = ACTIONS(4009), + [anon_sym_import] = ACTIONS(4009), + [anon_sym_template] = ACTIONS(4009), + [anon_sym_operator] = ACTIONS(4009), + [anon_sym_try] = ACTIONS(4009), + [anon_sym_delete] = ACTIONS(4009), + [anon_sym_throw] = ACTIONS(4009), + [anon_sym_namespace] = ACTIONS(4009), + [anon_sym_static_assert] = ACTIONS(4009), + [anon_sym_concept] = ACTIONS(4009), + [anon_sym_co_return] = ACTIONS(4009), + [anon_sym_co_yield] = ACTIONS(4009), + [anon_sym_R_DQUOTE] = ACTIONS(4011), + [anon_sym_LR_DQUOTE] = ACTIONS(4011), + [anon_sym_uR_DQUOTE] = ACTIONS(4011), + [anon_sym_UR_DQUOTE] = ACTIONS(4011), + [anon_sym_u8R_DQUOTE] = ACTIONS(4011), + [anon_sym_co_await] = ACTIONS(4009), + [anon_sym_new] = ACTIONS(4009), + [anon_sym_requires] = ACTIONS(4009), + [anon_sym_CARET_CARET] = ACTIONS(4011), + [anon_sym_LBRACK_COLON] = ACTIONS(4011), + [sym_this] = ACTIONS(4009), }, - [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(870)] = { + [sym_identifier] = ACTIONS(4013), + [aux_sym_preproc_include_token1] = ACTIONS(4013), + [aux_sym_preproc_def_token1] = ACTIONS(4013), + [aux_sym_preproc_if_token1] = ACTIONS(4013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4013), + [sym_preproc_directive] = ACTIONS(4013), + [anon_sym_LPAREN2] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4015), + [anon_sym_TILDE] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4013), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym___extension__] = ACTIONS(4013), + [anon_sym_typedef] = ACTIONS(4013), + [anon_sym_virtual] = ACTIONS(4013), + [anon_sym_extern] = ACTIONS(4013), + [anon_sym___attribute__] = ACTIONS(4013), + [anon_sym___attribute] = ACTIONS(4013), + [anon_sym_using] = ACTIONS(4013), + [anon_sym_COLON_COLON] = ACTIONS(4015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4015), + [anon_sym___declspec] = ACTIONS(4013), + [anon_sym___based] = ACTIONS(4013), + [anon_sym___cdecl] = ACTIONS(4013), + [anon_sym___clrcall] = ACTIONS(4013), + [anon_sym___stdcall] = ACTIONS(4013), + [anon_sym___fastcall] = ACTIONS(4013), + [anon_sym___thiscall] = ACTIONS(4013), + [anon_sym___vectorcall] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_signed] = ACTIONS(4013), + [anon_sym_unsigned] = ACTIONS(4013), + [anon_sym_long] = ACTIONS(4013), + [anon_sym_short] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4013), + [anon_sym_static] = ACTIONS(4013), + [anon_sym_register] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym___inline] = ACTIONS(4013), + [anon_sym___inline__] = ACTIONS(4013), + [anon_sym___forceinline] = ACTIONS(4013), + [anon_sym_thread_local] = ACTIONS(4013), + [anon_sym___thread] = ACTIONS(4013), + [anon_sym_const] = ACTIONS(4013), + [anon_sym_constexpr] = ACTIONS(4013), + [anon_sym_volatile] = ACTIONS(4013), + [anon_sym_restrict] = ACTIONS(4013), + [anon_sym___restrict__] = ACTIONS(4013), + [anon_sym__Atomic] = ACTIONS(4013), + [anon_sym__Noreturn] = ACTIONS(4013), + [anon_sym_noreturn] = ACTIONS(4013), + [anon_sym__Nonnull] = ACTIONS(4013), + [anon_sym_mutable] = ACTIONS(4013), + [anon_sym_constinit] = ACTIONS(4013), + [anon_sym_consteval] = ACTIONS(4013), + [anon_sym_alignas] = ACTIONS(4013), + [anon_sym__Alignas] = ACTIONS(4013), + [sym_primitive_type] = ACTIONS(4013), + [anon_sym_enum] = ACTIONS(4013), + [anon_sym_class] = ACTIONS(4013), + [anon_sym_struct] = ACTIONS(4013), + [anon_sym_union] = ACTIONS(4013), + [anon_sym_if] = ACTIONS(4013), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_case] = ACTIONS(4013), + [anon_sym_default] = ACTIONS(4013), + [anon_sym_while] = ACTIONS(4013), + [anon_sym_do] = ACTIONS(4013), + [anon_sym_for] = ACTIONS(4013), + [anon_sym_return] = ACTIONS(4013), + [anon_sym_break] = ACTIONS(4013), + [anon_sym_continue] = ACTIONS(4013), + [anon_sym_goto] = ACTIONS(4013), + [anon_sym___try] = ACTIONS(4013), + [anon_sym___leave] = ACTIONS(4013), + [anon_sym_not] = ACTIONS(4013), + [anon_sym_compl] = ACTIONS(4013), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_sizeof] = ACTIONS(4013), + [anon_sym___alignof__] = ACTIONS(4013), + [anon_sym___alignof] = ACTIONS(4013), + [anon_sym__alignof] = ACTIONS(4013), + [anon_sym_alignof] = ACTIONS(4013), + [anon_sym__Alignof] = ACTIONS(4013), + [anon_sym_offsetof] = ACTIONS(4013), + [anon_sym__Generic] = ACTIONS(4013), + [anon_sym_typename] = ACTIONS(4013), + [anon_sym_asm] = ACTIONS(4013), + [anon_sym___asm__] = ACTIONS(4013), + [anon_sym___asm] = ACTIONS(4013), + [sym_number_literal] = ACTIONS(4015), + [anon_sym_L_SQUOTE] = ACTIONS(4015), + [anon_sym_u_SQUOTE] = ACTIONS(4015), + [anon_sym_U_SQUOTE] = ACTIONS(4015), + [anon_sym_u8_SQUOTE] = ACTIONS(4015), + [anon_sym_SQUOTE] = ACTIONS(4015), + [anon_sym_L_DQUOTE] = ACTIONS(4015), + [anon_sym_u_DQUOTE] = ACTIONS(4015), + [anon_sym_U_DQUOTE] = ACTIONS(4015), + [anon_sym_u8_DQUOTE] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [sym_true] = ACTIONS(4013), + [sym_false] = ACTIONS(4013), + [anon_sym_NULL] = ACTIONS(4013), + [anon_sym_nullptr] = ACTIONS(4013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4013), + [anon_sym_decltype] = ACTIONS(4013), + [anon_sym_explicit] = ACTIONS(4013), + [anon_sym_export] = ACTIONS(4013), + [anon_sym_import] = ACTIONS(4013), + [anon_sym_template] = ACTIONS(4013), + [anon_sym_operator] = ACTIONS(4013), + [anon_sym_try] = ACTIONS(4013), + [anon_sym_delete] = ACTIONS(4013), + [anon_sym_throw] = ACTIONS(4013), + [anon_sym_namespace] = ACTIONS(4013), + [anon_sym_static_assert] = ACTIONS(4013), + [anon_sym_concept] = ACTIONS(4013), + [anon_sym_co_return] = ACTIONS(4013), + [anon_sym_co_yield] = ACTIONS(4013), + [anon_sym_R_DQUOTE] = ACTIONS(4015), + [anon_sym_LR_DQUOTE] = ACTIONS(4015), + [anon_sym_uR_DQUOTE] = ACTIONS(4015), + [anon_sym_UR_DQUOTE] = ACTIONS(4015), + [anon_sym_u8R_DQUOTE] = ACTIONS(4015), + [anon_sym_co_await] = ACTIONS(4013), + [anon_sym_new] = ACTIONS(4013), + [anon_sym_requires] = ACTIONS(4013), + [anon_sym_CARET_CARET] = ACTIONS(4015), + [anon_sym_LBRACK_COLON] = ACTIONS(4015), + [sym_this] = ACTIONS(4013), }, - [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), + [STATE(871)] = { + [sym_identifier] = ACTIONS(4072), + [aux_sym_preproc_include_token1] = ACTIONS(4072), + [aux_sym_preproc_def_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4072), + [sym_preproc_directive] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4072), + [anon_sym_typedef] = ACTIONS(4072), + [anon_sym_virtual] = ACTIONS(4072), + [anon_sym_extern] = ACTIONS(4072), + [anon_sym___attribute__] = ACTIONS(4072), + [anon_sym___attribute] = ACTIONS(4072), + [anon_sym_using] = ACTIONS(4072), + [anon_sym_COLON_COLON] = ACTIONS(4074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4074), + [anon_sym___declspec] = ACTIONS(4072), + [anon_sym___based] = ACTIONS(4072), + [anon_sym___cdecl] = ACTIONS(4072), + [anon_sym___clrcall] = ACTIONS(4072), + [anon_sym___stdcall] = ACTIONS(4072), + [anon_sym___fastcall] = ACTIONS(4072), + [anon_sym___thiscall] = ACTIONS(4072), + [anon_sym___vectorcall] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4074), + [anon_sym_signed] = ACTIONS(4072), + [anon_sym_unsigned] = ACTIONS(4072), + [anon_sym_long] = ACTIONS(4072), + [anon_sym_short] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_static] = ACTIONS(4072), + [anon_sym_register] = ACTIONS(4072), + [anon_sym_inline] = ACTIONS(4072), + [anon_sym___inline] = ACTIONS(4072), + [anon_sym___inline__] = ACTIONS(4072), + [anon_sym___forceinline] = ACTIONS(4072), + [anon_sym_thread_local] = ACTIONS(4072), + [anon_sym___thread] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4072), + [anon_sym_constexpr] = ACTIONS(4072), + [anon_sym_volatile] = ACTIONS(4072), + [anon_sym_restrict] = ACTIONS(4072), + [anon_sym___restrict__] = ACTIONS(4072), + [anon_sym__Atomic] = ACTIONS(4072), + [anon_sym__Noreturn] = ACTIONS(4072), + [anon_sym_noreturn] = ACTIONS(4072), + [anon_sym__Nonnull] = ACTIONS(4072), + [anon_sym_mutable] = ACTIONS(4072), + [anon_sym_constinit] = ACTIONS(4072), + [anon_sym_consteval] = ACTIONS(4072), + [anon_sym_alignas] = ACTIONS(4072), + [anon_sym__Alignas] = ACTIONS(4072), + [sym_primitive_type] = ACTIONS(4072), + [anon_sym_enum] = ACTIONS(4072), + [anon_sym_class] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_union] = ACTIONS(4072), + [anon_sym_if] = ACTIONS(4072), + [anon_sym_switch] = ACTIONS(4072), + [anon_sym_case] = ACTIONS(4072), + [anon_sym_default] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(4072), + [anon_sym_do] = ACTIONS(4072), + [anon_sym_for] = ACTIONS(4072), + [anon_sym_return] = ACTIONS(4072), + [anon_sym_break] = ACTIONS(4072), + [anon_sym_continue] = ACTIONS(4072), + [anon_sym_goto] = ACTIONS(4072), + [anon_sym___try] = ACTIONS(4072), + [anon_sym___leave] = ACTIONS(4072), + [anon_sym_not] = ACTIONS(4072), + [anon_sym_compl] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4074), + [anon_sym_PLUS_PLUS] = ACTIONS(4074), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(4072), + [anon_sym___alignof] = ACTIONS(4072), + [anon_sym__alignof] = ACTIONS(4072), + [anon_sym_alignof] = ACTIONS(4072), + [anon_sym__Alignof] = ACTIONS(4072), + [anon_sym_offsetof] = ACTIONS(4072), + [anon_sym__Generic] = ACTIONS(4072), + [anon_sym_typename] = ACTIONS(4072), + [anon_sym_asm] = ACTIONS(4072), + [anon_sym___asm__] = ACTIONS(4072), + [anon_sym___asm] = ACTIONS(4072), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4074), + [anon_sym_u_SQUOTE] = ACTIONS(4074), + [anon_sym_U_SQUOTE] = ACTIONS(4074), + [anon_sym_u8_SQUOTE] = ACTIONS(4074), + [anon_sym_SQUOTE] = ACTIONS(4074), + [anon_sym_L_DQUOTE] = ACTIONS(4074), + [anon_sym_u_DQUOTE] = ACTIONS(4074), + [anon_sym_U_DQUOTE] = ACTIONS(4074), + [anon_sym_u8_DQUOTE] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [sym_true] = ACTIONS(4072), + [sym_false] = ACTIONS(4072), + [anon_sym_NULL] = ACTIONS(4072), + [anon_sym_nullptr] = ACTIONS(4072), [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), + [sym_auto] = ACTIONS(4072), + [anon_sym_decltype] = ACTIONS(4072), + [anon_sym_explicit] = ACTIONS(4072), + [anon_sym_export] = ACTIONS(4072), + [anon_sym_import] = ACTIONS(4072), + [anon_sym_template] = ACTIONS(4072), + [anon_sym_operator] = ACTIONS(4072), + [anon_sym_try] = ACTIONS(4072), + [anon_sym_delete] = ACTIONS(4072), + [anon_sym_throw] = ACTIONS(4072), + [anon_sym_namespace] = ACTIONS(4072), + [anon_sym_static_assert] = ACTIONS(4072), + [anon_sym_concept] = ACTIONS(4072), + [anon_sym_co_return] = ACTIONS(4072), + [anon_sym_co_yield] = ACTIONS(4072), + [anon_sym_R_DQUOTE] = ACTIONS(4074), + [anon_sym_LR_DQUOTE] = ACTIONS(4074), + [anon_sym_uR_DQUOTE] = ACTIONS(4074), + [anon_sym_UR_DQUOTE] = ACTIONS(4074), + [anon_sym_u8R_DQUOTE] = ACTIONS(4074), + [anon_sym_co_await] = ACTIONS(4072), + [anon_sym_new] = ACTIONS(4072), + [anon_sym_requires] = ACTIONS(4072), + [anon_sym_CARET_CARET] = ACTIONS(4074), + [anon_sym_LBRACK_COLON] = ACTIONS(4074), + [sym_this] = ACTIONS(4072), }, - [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(872)] = { + [sym_identifier] = ACTIONS(4017), + [aux_sym_preproc_include_token1] = ACTIONS(4017), + [aux_sym_preproc_def_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token1] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4017), + [sym_preproc_directive] = ACTIONS(4017), + [anon_sym_LPAREN2] = ACTIONS(4019), + [anon_sym_BANG] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_AMP_AMP] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_SEMI] = ACTIONS(4019), + [anon_sym___extension__] = ACTIONS(4017), + [anon_sym_typedef] = ACTIONS(4017), + [anon_sym_virtual] = ACTIONS(4017), + [anon_sym_extern] = ACTIONS(4017), + [anon_sym___attribute__] = ACTIONS(4017), + [anon_sym___attribute] = ACTIONS(4017), + [anon_sym_using] = ACTIONS(4017), + [anon_sym_COLON_COLON] = ACTIONS(4019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4019), + [anon_sym___declspec] = ACTIONS(4017), + [anon_sym___based] = ACTIONS(4017), + [anon_sym___cdecl] = ACTIONS(4017), + [anon_sym___clrcall] = ACTIONS(4017), + [anon_sym___stdcall] = ACTIONS(4017), + [anon_sym___fastcall] = ACTIONS(4017), + [anon_sym___thiscall] = ACTIONS(4017), + [anon_sym___vectorcall] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_RBRACE] = ACTIONS(4019), + [anon_sym_signed] = ACTIONS(4017), + [anon_sym_unsigned] = ACTIONS(4017), + [anon_sym_long] = ACTIONS(4017), + [anon_sym_short] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4017), + [anon_sym_static] = ACTIONS(4017), + [anon_sym_register] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym___inline] = ACTIONS(4017), + [anon_sym___inline__] = ACTIONS(4017), + [anon_sym___forceinline] = ACTIONS(4017), + [anon_sym_thread_local] = ACTIONS(4017), + [anon_sym___thread] = ACTIONS(4017), + [anon_sym_const] = ACTIONS(4017), + [anon_sym_constexpr] = ACTIONS(4017), + [anon_sym_volatile] = ACTIONS(4017), + [anon_sym_restrict] = ACTIONS(4017), + [anon_sym___restrict__] = ACTIONS(4017), + [anon_sym__Atomic] = ACTIONS(4017), + [anon_sym__Noreturn] = ACTIONS(4017), + [anon_sym_noreturn] = ACTIONS(4017), + [anon_sym__Nonnull] = ACTIONS(4017), + [anon_sym_mutable] = ACTIONS(4017), + [anon_sym_constinit] = ACTIONS(4017), + [anon_sym_consteval] = ACTIONS(4017), + [anon_sym_alignas] = ACTIONS(4017), + [anon_sym__Alignas] = ACTIONS(4017), + [sym_primitive_type] = ACTIONS(4017), + [anon_sym_enum] = ACTIONS(4017), + [anon_sym_class] = ACTIONS(4017), + [anon_sym_struct] = ACTIONS(4017), + [anon_sym_union] = ACTIONS(4017), + [anon_sym_if] = ACTIONS(4017), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_case] = ACTIONS(4017), + [anon_sym_default] = ACTIONS(4017), + [anon_sym_while] = ACTIONS(4017), + [anon_sym_do] = ACTIONS(4017), + [anon_sym_for] = ACTIONS(4017), + [anon_sym_return] = ACTIONS(4017), + [anon_sym_break] = ACTIONS(4017), + [anon_sym_continue] = ACTIONS(4017), + [anon_sym_goto] = ACTIONS(4017), + [anon_sym___try] = ACTIONS(4017), + [anon_sym___leave] = ACTIONS(4017), + [anon_sym_not] = ACTIONS(4017), + [anon_sym_compl] = ACTIONS(4017), + [anon_sym_DASH_DASH] = ACTIONS(4019), + [anon_sym_PLUS_PLUS] = ACTIONS(4019), + [anon_sym_sizeof] = ACTIONS(4017), + [anon_sym___alignof__] = ACTIONS(4017), + [anon_sym___alignof] = ACTIONS(4017), + [anon_sym__alignof] = ACTIONS(4017), + [anon_sym_alignof] = ACTIONS(4017), + [anon_sym__Alignof] = ACTIONS(4017), + [anon_sym_offsetof] = ACTIONS(4017), + [anon_sym__Generic] = ACTIONS(4017), + [anon_sym_typename] = ACTIONS(4017), + [anon_sym_asm] = ACTIONS(4017), + [anon_sym___asm__] = ACTIONS(4017), + [anon_sym___asm] = ACTIONS(4017), + [sym_number_literal] = ACTIONS(4019), + [anon_sym_L_SQUOTE] = ACTIONS(4019), + [anon_sym_u_SQUOTE] = ACTIONS(4019), + [anon_sym_U_SQUOTE] = ACTIONS(4019), + [anon_sym_u8_SQUOTE] = ACTIONS(4019), + [anon_sym_SQUOTE] = ACTIONS(4019), + [anon_sym_L_DQUOTE] = ACTIONS(4019), + [anon_sym_u_DQUOTE] = ACTIONS(4019), + [anon_sym_U_DQUOTE] = ACTIONS(4019), + [anon_sym_u8_DQUOTE] = ACTIONS(4019), + [anon_sym_DQUOTE] = ACTIONS(4019), + [sym_true] = ACTIONS(4017), + [sym_false] = ACTIONS(4017), + [anon_sym_NULL] = ACTIONS(4017), + [anon_sym_nullptr] = ACTIONS(4017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4017), + [anon_sym_decltype] = ACTIONS(4017), + [anon_sym_explicit] = ACTIONS(4017), + [anon_sym_export] = ACTIONS(4017), + [anon_sym_import] = ACTIONS(4017), + [anon_sym_template] = ACTIONS(4017), + [anon_sym_operator] = ACTIONS(4017), + [anon_sym_try] = ACTIONS(4017), + [anon_sym_delete] = ACTIONS(4017), + [anon_sym_throw] = ACTIONS(4017), + [anon_sym_namespace] = ACTIONS(4017), + [anon_sym_static_assert] = ACTIONS(4017), + [anon_sym_concept] = ACTIONS(4017), + [anon_sym_co_return] = ACTIONS(4017), + [anon_sym_co_yield] = ACTIONS(4017), + [anon_sym_R_DQUOTE] = ACTIONS(4019), + [anon_sym_LR_DQUOTE] = ACTIONS(4019), + [anon_sym_uR_DQUOTE] = ACTIONS(4019), + [anon_sym_UR_DQUOTE] = ACTIONS(4019), + [anon_sym_u8R_DQUOTE] = ACTIONS(4019), + [anon_sym_co_await] = ACTIONS(4017), + [anon_sym_new] = ACTIONS(4017), + [anon_sym_requires] = ACTIONS(4017), + [anon_sym_CARET_CARET] = ACTIONS(4019), + [anon_sym_LBRACK_COLON] = ACTIONS(4019), + [sym_this] = ACTIONS(4017), }, - [STATE(841)] = { + [STATE(873)] = { [sym_identifier] = ACTIONS(4084), [aux_sym_preproc_include_token1] = ACTIONS(4084), [aux_sym_preproc_def_token1] = ACTIONS(4084), @@ -179879,2807 +187591,707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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_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_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___try] = ACTIONS(4088), - [anon_sym___leave] = 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_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(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(874)] = { + [sym_identifier] = ACTIONS(4025), + [aux_sym_preproc_include_token1] = ACTIONS(4025), + [aux_sym_preproc_def_token1] = ACTIONS(4025), + [aux_sym_preproc_if_token1] = ACTIONS(4025), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4025), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4025), + [sym_preproc_directive] = ACTIONS(4025), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_BANG] = ACTIONS(4027), + [anon_sym_TILDE] = ACTIONS(4027), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_typedef] = ACTIONS(4025), + [anon_sym_virtual] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_using] = ACTIONS(4025), + [anon_sym_COLON_COLON] = ACTIONS(4027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4027), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym___based] = ACTIONS(4025), + [anon_sym___cdecl] = ACTIONS(4025), + [anon_sym___clrcall] = ACTIONS(4025), + [anon_sym___stdcall] = ACTIONS(4025), + [anon_sym___fastcall] = ACTIONS(4025), + [anon_sym___thiscall] = ACTIONS(4025), + [anon_sym___vectorcall] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_RBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_mutable] = ACTIONS(4025), + [anon_sym_constinit] = ACTIONS(4025), + [anon_sym_consteval] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_class] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_if] = ACTIONS(4025), + [anon_sym_switch] = ACTIONS(4025), + [anon_sym_case] = ACTIONS(4025), + [anon_sym_default] = ACTIONS(4025), + [anon_sym_while] = ACTIONS(4025), + [anon_sym_do] = ACTIONS(4025), + [anon_sym_for] = ACTIONS(4025), + [anon_sym_return] = ACTIONS(4025), + [anon_sym_break] = ACTIONS(4025), + [anon_sym_continue] = ACTIONS(4025), + [anon_sym_goto] = ACTIONS(4025), + [anon_sym___try] = ACTIONS(4025), + [anon_sym___leave] = ACTIONS(4025), + [anon_sym_not] = ACTIONS(4025), + [anon_sym_compl] = ACTIONS(4025), + [anon_sym_DASH_DASH] = ACTIONS(4027), + [anon_sym_PLUS_PLUS] = ACTIONS(4027), + [anon_sym_sizeof] = ACTIONS(4025), + [anon_sym___alignof__] = ACTIONS(4025), + [anon_sym___alignof] = ACTIONS(4025), + [anon_sym__alignof] = ACTIONS(4025), + [anon_sym_alignof] = ACTIONS(4025), + [anon_sym__Alignof] = ACTIONS(4025), + [anon_sym_offsetof] = ACTIONS(4025), + [anon_sym__Generic] = ACTIONS(4025), + [anon_sym_typename] = ACTIONS(4025), + [anon_sym_asm] = ACTIONS(4025), + [anon_sym___asm__] = ACTIONS(4025), + [anon_sym___asm] = ACTIONS(4025), + [sym_number_literal] = ACTIONS(4027), + [anon_sym_L_SQUOTE] = ACTIONS(4027), + [anon_sym_u_SQUOTE] = ACTIONS(4027), + [anon_sym_U_SQUOTE] = ACTIONS(4027), + [anon_sym_u8_SQUOTE] = ACTIONS(4027), + [anon_sym_SQUOTE] = ACTIONS(4027), + [anon_sym_L_DQUOTE] = ACTIONS(4027), + [anon_sym_u_DQUOTE] = ACTIONS(4027), + [anon_sym_U_DQUOTE] = ACTIONS(4027), + [anon_sym_u8_DQUOTE] = ACTIONS(4027), + [anon_sym_DQUOTE] = ACTIONS(4027), + [sym_true] = ACTIONS(4025), + [sym_false] = ACTIONS(4025), + [anon_sym_NULL] = ACTIONS(4025), + [anon_sym_nullptr] = ACTIONS(4025), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4025), + [anon_sym_decltype] = ACTIONS(4025), + [anon_sym_explicit] = ACTIONS(4025), + [anon_sym_export] = ACTIONS(4025), + [anon_sym_import] = ACTIONS(4025), + [anon_sym_template] = ACTIONS(4025), + [anon_sym_operator] = ACTIONS(4025), + [anon_sym_try] = ACTIONS(4025), + [anon_sym_delete] = ACTIONS(4025), + [anon_sym_throw] = ACTIONS(4025), + [anon_sym_namespace] = ACTIONS(4025), + [anon_sym_static_assert] = ACTIONS(4025), + [anon_sym_concept] = ACTIONS(4025), + [anon_sym_co_return] = ACTIONS(4025), + [anon_sym_co_yield] = ACTIONS(4025), + [anon_sym_R_DQUOTE] = ACTIONS(4027), + [anon_sym_LR_DQUOTE] = ACTIONS(4027), + [anon_sym_uR_DQUOTE] = ACTIONS(4027), + [anon_sym_UR_DQUOTE] = ACTIONS(4027), + [anon_sym_u8R_DQUOTE] = ACTIONS(4027), + [anon_sym_co_await] = ACTIONS(4025), + [anon_sym_new] = ACTIONS(4025), + [anon_sym_requires] = ACTIONS(4025), + [anon_sym_CARET_CARET] = ACTIONS(4027), + [anon_sym_LBRACK_COLON] = ACTIONS(4027), + [sym_this] = ACTIONS(4025), }, - [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(875)] = { + [sym_identifier] = ACTIONS(4150), + [aux_sym_preproc_include_token1] = ACTIONS(4150), + [aux_sym_preproc_def_token1] = ACTIONS(4150), + [aux_sym_preproc_if_token1] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4150), + [sym_preproc_directive] = ACTIONS(4150), + [anon_sym_LPAREN2] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_TILDE] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym___extension__] = ACTIONS(4150), + [anon_sym_typedef] = ACTIONS(4150), + [anon_sym_virtual] = ACTIONS(4150), + [anon_sym_extern] = ACTIONS(4150), + [anon_sym___attribute__] = ACTIONS(4150), + [anon_sym___attribute] = ACTIONS(4150), + [anon_sym_using] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), + [anon_sym___declspec] = ACTIONS(4150), + [anon_sym___based] = ACTIONS(4150), + [anon_sym___cdecl] = ACTIONS(4150), + [anon_sym___clrcall] = ACTIONS(4150), + [anon_sym___stdcall] = ACTIONS(4150), + [anon_sym___fastcall] = ACTIONS(4150), + [anon_sym___thiscall] = ACTIONS(4150), + [anon_sym___vectorcall] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_RBRACE] = ACTIONS(4152), + [anon_sym_signed] = ACTIONS(4150), + [anon_sym_unsigned] = ACTIONS(4150), + [anon_sym_long] = ACTIONS(4150), + [anon_sym_short] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_static] = ACTIONS(4150), + [anon_sym_register] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym___inline] = ACTIONS(4150), + [anon_sym___inline__] = ACTIONS(4150), + [anon_sym___forceinline] = ACTIONS(4150), + [anon_sym_thread_local] = ACTIONS(4150), + [anon_sym___thread] = ACTIONS(4150), + [anon_sym_const] = ACTIONS(4150), + [anon_sym_constexpr] = ACTIONS(4150), + [anon_sym_volatile] = ACTIONS(4150), + [anon_sym_restrict] = ACTIONS(4150), + [anon_sym___restrict__] = ACTIONS(4150), + [anon_sym__Atomic] = ACTIONS(4150), + [anon_sym__Noreturn] = ACTIONS(4150), + [anon_sym_noreturn] = ACTIONS(4150), + [anon_sym__Nonnull] = ACTIONS(4150), + [anon_sym_mutable] = ACTIONS(4150), + [anon_sym_constinit] = ACTIONS(4150), + [anon_sym_consteval] = ACTIONS(4150), + [anon_sym_alignas] = ACTIONS(4150), + [anon_sym__Alignas] = ACTIONS(4150), + [sym_primitive_type] = ACTIONS(4150), + [anon_sym_enum] = ACTIONS(4150), + [anon_sym_class] = ACTIONS(4150), + [anon_sym_struct] = ACTIONS(4150), + [anon_sym_union] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_switch] = ACTIONS(4150), + [anon_sym_case] = ACTIONS(4150), + [anon_sym_default] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_do] = ACTIONS(4150), + [anon_sym_for] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_goto] = ACTIONS(4150), + [anon_sym___try] = ACTIONS(4150), + [anon_sym___leave] = ACTIONS(4150), + [anon_sym_not] = ACTIONS(4150), + [anon_sym_compl] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_sizeof] = ACTIONS(4150), + [anon_sym___alignof__] = ACTIONS(4150), + [anon_sym___alignof] = ACTIONS(4150), + [anon_sym__alignof] = ACTIONS(4150), + [anon_sym_alignof] = ACTIONS(4150), + [anon_sym__Alignof] = ACTIONS(4150), + [anon_sym_offsetof] = ACTIONS(4150), + [anon_sym__Generic] = ACTIONS(4150), + [anon_sym_typename] = ACTIONS(4150), + [anon_sym_asm] = ACTIONS(4150), + [anon_sym___asm__] = ACTIONS(4150), + [anon_sym___asm] = ACTIONS(4150), + [sym_number_literal] = ACTIONS(4152), + [anon_sym_L_SQUOTE] = ACTIONS(4152), + [anon_sym_u_SQUOTE] = ACTIONS(4152), + [anon_sym_U_SQUOTE] = ACTIONS(4152), + [anon_sym_u8_SQUOTE] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4152), + [anon_sym_L_DQUOTE] = ACTIONS(4152), + [anon_sym_u_DQUOTE] = ACTIONS(4152), + [anon_sym_U_DQUOTE] = ACTIONS(4152), + [anon_sym_u8_DQUOTE] = ACTIONS(4152), + [anon_sym_DQUOTE] = ACTIONS(4152), + [sym_true] = ACTIONS(4150), + [sym_false] = ACTIONS(4150), + [anon_sym_NULL] = ACTIONS(4150), + [anon_sym_nullptr] = ACTIONS(4150), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4150), + [anon_sym_decltype] = ACTIONS(4150), + [anon_sym_explicit] = ACTIONS(4150), + [anon_sym_export] = ACTIONS(4150), + [anon_sym_import] = ACTIONS(4150), + [anon_sym_template] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_delete] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_namespace] = ACTIONS(4150), + [anon_sym_static_assert] = ACTIONS(4150), + [anon_sym_concept] = ACTIONS(4150), + [anon_sym_co_return] = ACTIONS(4150), + [anon_sym_co_yield] = ACTIONS(4150), + [anon_sym_R_DQUOTE] = ACTIONS(4152), + [anon_sym_LR_DQUOTE] = ACTIONS(4152), + [anon_sym_uR_DQUOTE] = ACTIONS(4152), + [anon_sym_UR_DQUOTE] = ACTIONS(4152), + [anon_sym_u8R_DQUOTE] = ACTIONS(4152), + [anon_sym_co_await] = ACTIONS(4150), + [anon_sym_new] = ACTIONS(4150), + [anon_sym_requires] = ACTIONS(4150), + [anon_sym_CARET_CARET] = ACTIONS(4152), + [anon_sym_LBRACK_COLON] = ACTIONS(4152), + [sym_this] = ACTIONS(4150), }, - [STATE(850)] = { - [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_RBRACE] = 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_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(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(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(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(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), - [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), - }, - [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(856)] = { - [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_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_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), + [STATE(876)] = { + [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(3946), + [anon_sym_BANG] = ACTIONS(3946), + [anon_sym_TILDE] = ACTIONS(3946), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3946), + [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(3946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3946), + [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(3946), + [anon_sym_RBRACE] = ACTIONS(3946), + [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(3946), + [anon_sym_PLUS_PLUS] = ACTIONS(3946), + [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(3946), + [anon_sym_L_SQUOTE] = ACTIONS(3946), + [anon_sym_u_SQUOTE] = ACTIONS(3946), + [anon_sym_U_SQUOTE] = ACTIONS(3946), + [anon_sym_u8_SQUOTE] = ACTIONS(3946), + [anon_sym_SQUOTE] = ACTIONS(3946), + [anon_sym_L_DQUOTE] = ACTIONS(3946), + [anon_sym_u_DQUOTE] = ACTIONS(3946), + [anon_sym_U_DQUOTE] = ACTIONS(3946), + [anon_sym_u8_DQUOTE] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3946), + [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(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_export] = 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(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), - }, - [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), - }, - [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_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(3946), + [anon_sym_LR_DQUOTE] = ACTIONS(3946), + [anon_sym_uR_DQUOTE] = ACTIONS(3946), + [anon_sym_UR_DQUOTE] = ACTIONS(3946), + [anon_sym_u8R_DQUOTE] = ACTIONS(3946), + [anon_sym_co_await] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_requires] = ACTIONS(3943), + [anon_sym_CARET_CARET] = ACTIONS(3946), + [anon_sym_LBRACK_COLON] = ACTIONS(3946), + [sym_this] = ACTIONS(3943), }, - [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), + [STATE(877)] = { + [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_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_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), }, - [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), + [STATE(878)] = { + [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_RBRACE] = 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(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_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_export] = 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(862)] = { + [STATE(879)] = { [sym_identifier] = ACTIONS(4048), [aux_sym_preproc_include_token1] = ACTIONS(4048), [aux_sym_preproc_def_token1] = ACTIONS(4048), @@ -182819,1540 +188431,847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4050), [sym_this] = ACTIONS(4048), }, - [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), + [STATE(880)] = { + [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(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), + [STATE(881)] = { + [sym_identifier] = ACTIONS(4056), + [aux_sym_preproc_include_token1] = ACTIONS(4056), + [aux_sym_preproc_def_token1] = ACTIONS(4056), + [aux_sym_preproc_if_token1] = ACTIONS(4056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4056), + [sym_preproc_directive] = ACTIONS(4056), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_TILDE] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4056), + [anon_sym_PLUS] = ACTIONS(4056), + [anon_sym_STAR] = ACTIONS(4058), + [anon_sym_AMP_AMP] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4056), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym___extension__] = ACTIONS(4056), + [anon_sym_typedef] = ACTIONS(4056), + [anon_sym_virtual] = ACTIONS(4056), + [anon_sym_extern] = ACTIONS(4056), + [anon_sym___attribute__] = ACTIONS(4056), + [anon_sym___attribute] = ACTIONS(4056), + [anon_sym_using] = ACTIONS(4056), + [anon_sym_COLON_COLON] = ACTIONS(4058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4058), + [anon_sym___declspec] = ACTIONS(4056), + [anon_sym___based] = ACTIONS(4056), + [anon_sym___cdecl] = ACTIONS(4056), + [anon_sym___clrcall] = ACTIONS(4056), + [anon_sym___stdcall] = ACTIONS(4056), + [anon_sym___fastcall] = ACTIONS(4056), + [anon_sym___thiscall] = ACTIONS(4056), + [anon_sym___vectorcall] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4058), + [anon_sym_RBRACE] = ACTIONS(4058), + [anon_sym_signed] = ACTIONS(4056), + [anon_sym_unsigned] = ACTIONS(4056), + [anon_sym_long] = ACTIONS(4056), + [anon_sym_short] = ACTIONS(4056), + [anon_sym_LBRACK] = ACTIONS(4056), + [anon_sym_static] = ACTIONS(4056), + [anon_sym_register] = ACTIONS(4056), + [anon_sym_inline] = ACTIONS(4056), + [anon_sym___inline] = ACTIONS(4056), + [anon_sym___inline__] = ACTIONS(4056), + [anon_sym___forceinline] = ACTIONS(4056), + [anon_sym_thread_local] = ACTIONS(4056), + [anon_sym___thread] = ACTIONS(4056), + [anon_sym_const] = ACTIONS(4056), + [anon_sym_constexpr] = ACTIONS(4056), + [anon_sym_volatile] = ACTIONS(4056), + [anon_sym_restrict] = ACTIONS(4056), + [anon_sym___restrict__] = ACTIONS(4056), + [anon_sym__Atomic] = ACTIONS(4056), + [anon_sym__Noreturn] = ACTIONS(4056), + [anon_sym_noreturn] = ACTIONS(4056), + [anon_sym__Nonnull] = ACTIONS(4056), + [anon_sym_mutable] = ACTIONS(4056), + [anon_sym_constinit] = ACTIONS(4056), + [anon_sym_consteval] = ACTIONS(4056), + [anon_sym_alignas] = ACTIONS(4056), + [anon_sym__Alignas] = ACTIONS(4056), + [sym_primitive_type] = ACTIONS(4056), + [anon_sym_enum] = ACTIONS(4056), + [anon_sym_class] = ACTIONS(4056), + [anon_sym_struct] = ACTIONS(4056), + [anon_sym_union] = ACTIONS(4056), + [anon_sym_if] = ACTIONS(4056), + [anon_sym_switch] = ACTIONS(4056), + [anon_sym_case] = ACTIONS(4056), + [anon_sym_default] = ACTIONS(4056), + [anon_sym_while] = ACTIONS(4056), + [anon_sym_do] = ACTIONS(4056), + [anon_sym_for] = ACTIONS(4056), + [anon_sym_return] = ACTIONS(4056), + [anon_sym_break] = ACTIONS(4056), + [anon_sym_continue] = ACTIONS(4056), + [anon_sym_goto] = ACTIONS(4056), + [anon_sym___try] = ACTIONS(4056), + [anon_sym___leave] = ACTIONS(4056), + [anon_sym_not] = ACTIONS(4056), + [anon_sym_compl] = ACTIONS(4056), + [anon_sym_DASH_DASH] = ACTIONS(4058), + [anon_sym_PLUS_PLUS] = ACTIONS(4058), + [anon_sym_sizeof] = ACTIONS(4056), + [anon_sym___alignof__] = ACTIONS(4056), + [anon_sym___alignof] = ACTIONS(4056), + [anon_sym__alignof] = ACTIONS(4056), + [anon_sym_alignof] = ACTIONS(4056), + [anon_sym__Alignof] = ACTIONS(4056), + [anon_sym_offsetof] = ACTIONS(4056), + [anon_sym__Generic] = ACTIONS(4056), + [anon_sym_typename] = ACTIONS(4056), + [anon_sym_asm] = ACTIONS(4056), + [anon_sym___asm__] = ACTIONS(4056), + [anon_sym___asm] = ACTIONS(4056), + [sym_number_literal] = ACTIONS(4058), + [anon_sym_L_SQUOTE] = ACTIONS(4058), + [anon_sym_u_SQUOTE] = ACTIONS(4058), + [anon_sym_U_SQUOTE] = ACTIONS(4058), + [anon_sym_u8_SQUOTE] = ACTIONS(4058), + [anon_sym_SQUOTE] = ACTIONS(4058), + [anon_sym_L_DQUOTE] = ACTIONS(4058), + [anon_sym_u_DQUOTE] = ACTIONS(4058), + [anon_sym_U_DQUOTE] = ACTIONS(4058), + [anon_sym_u8_DQUOTE] = ACTIONS(4058), + [anon_sym_DQUOTE] = ACTIONS(4058), + [sym_true] = ACTIONS(4056), + [sym_false] = ACTIONS(4056), + [anon_sym_NULL] = ACTIONS(4056), + [anon_sym_nullptr] = ACTIONS(4056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4056), + [anon_sym_decltype] = ACTIONS(4056), + [anon_sym_explicit] = ACTIONS(4056), + [anon_sym_export] = ACTIONS(4056), + [anon_sym_import] = ACTIONS(4056), + [anon_sym_template] = ACTIONS(4056), + [anon_sym_operator] = ACTIONS(4056), + [anon_sym_try] = ACTIONS(4056), + [anon_sym_delete] = ACTIONS(4056), + [anon_sym_throw] = ACTIONS(4056), + [anon_sym_namespace] = ACTIONS(4056), + [anon_sym_static_assert] = ACTIONS(4056), + [anon_sym_concept] = ACTIONS(4056), + [anon_sym_co_return] = ACTIONS(4056), + [anon_sym_co_yield] = ACTIONS(4056), + [anon_sym_R_DQUOTE] = ACTIONS(4058), + [anon_sym_LR_DQUOTE] = ACTIONS(4058), + [anon_sym_uR_DQUOTE] = ACTIONS(4058), + [anon_sym_UR_DQUOTE] = ACTIONS(4058), + [anon_sym_u8R_DQUOTE] = ACTIONS(4058), + [anon_sym_co_await] = ACTIONS(4056), + [anon_sym_new] = ACTIONS(4056), + [anon_sym_requires] = ACTIONS(4056), + [anon_sym_CARET_CARET] = ACTIONS(4058), + [anon_sym_LBRACK_COLON] = ACTIONS(4058), + [sym_this] = ACTIONS(4056), }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(882)] = { + [sym_identifier] = ACTIONS(4060), + [aux_sym_preproc_include_token1] = ACTIONS(4060), + [aux_sym_preproc_def_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4060), + [sym_preproc_directive] = ACTIONS(4060), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4060), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym___extension__] = ACTIONS(4060), + [anon_sym_typedef] = ACTIONS(4060), + [anon_sym_virtual] = ACTIONS(4060), + [anon_sym_extern] = ACTIONS(4060), + [anon_sym___attribute__] = ACTIONS(4060), + [anon_sym___attribute] = ACTIONS(4060), + [anon_sym_using] = ACTIONS(4060), + [anon_sym_COLON_COLON] = ACTIONS(4062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4062), + [anon_sym___declspec] = ACTIONS(4060), + [anon_sym___based] = ACTIONS(4060), + [anon_sym___cdecl] = ACTIONS(4060), + [anon_sym___clrcall] = ACTIONS(4060), + [anon_sym___stdcall] = ACTIONS(4060), + [anon_sym___fastcall] = ACTIONS(4060), + [anon_sym___thiscall] = ACTIONS(4060), + [anon_sym___vectorcall] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_RBRACE] = ACTIONS(4062), + [anon_sym_signed] = ACTIONS(4060), + [anon_sym_unsigned] = ACTIONS(4060), + [anon_sym_long] = ACTIONS(4060), + [anon_sym_short] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_static] = ACTIONS(4060), + [anon_sym_register] = ACTIONS(4060), + [anon_sym_inline] = ACTIONS(4060), + [anon_sym___inline] = ACTIONS(4060), + [anon_sym___inline__] = ACTIONS(4060), + [anon_sym___forceinline] = ACTIONS(4060), + [anon_sym_thread_local] = ACTIONS(4060), + [anon_sym___thread] = ACTIONS(4060), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_constexpr] = ACTIONS(4060), + [anon_sym_volatile] = ACTIONS(4060), + [anon_sym_restrict] = ACTIONS(4060), + [anon_sym___restrict__] = ACTIONS(4060), + [anon_sym__Atomic] = ACTIONS(4060), + [anon_sym__Noreturn] = ACTIONS(4060), + [anon_sym_noreturn] = ACTIONS(4060), + [anon_sym__Nonnull] = ACTIONS(4060), + [anon_sym_mutable] = ACTIONS(4060), + [anon_sym_constinit] = ACTIONS(4060), + [anon_sym_consteval] = ACTIONS(4060), + [anon_sym_alignas] = ACTIONS(4060), + [anon_sym__Alignas] = ACTIONS(4060), + [sym_primitive_type] = ACTIONS(4060), + [anon_sym_enum] = ACTIONS(4060), + [anon_sym_class] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4060), + [anon_sym_union] = ACTIONS(4060), + [anon_sym_if] = ACTIONS(4060), + [anon_sym_switch] = ACTIONS(4060), + [anon_sym_case] = ACTIONS(4060), + [anon_sym_default] = ACTIONS(4060), + [anon_sym_while] = ACTIONS(4060), + [anon_sym_do] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4060), + [anon_sym_break] = ACTIONS(4060), + [anon_sym_continue] = ACTIONS(4060), + [anon_sym_goto] = ACTIONS(4060), + [anon_sym___try] = ACTIONS(4060), + [anon_sym___leave] = ACTIONS(4060), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_compl] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4062), + [anon_sym_PLUS_PLUS] = ACTIONS(4062), + [anon_sym_sizeof] = ACTIONS(4060), + [anon_sym___alignof__] = ACTIONS(4060), + [anon_sym___alignof] = ACTIONS(4060), + [anon_sym__alignof] = ACTIONS(4060), + [anon_sym_alignof] = ACTIONS(4060), + [anon_sym__Alignof] = ACTIONS(4060), + [anon_sym_offsetof] = ACTIONS(4060), + [anon_sym__Generic] = ACTIONS(4060), + [anon_sym_typename] = ACTIONS(4060), + [anon_sym_asm] = ACTIONS(4060), + [anon_sym___asm__] = ACTIONS(4060), + [anon_sym___asm] = ACTIONS(4060), + [sym_number_literal] = ACTIONS(4062), + [anon_sym_L_SQUOTE] = ACTIONS(4062), + [anon_sym_u_SQUOTE] = ACTIONS(4062), + [anon_sym_U_SQUOTE] = ACTIONS(4062), + [anon_sym_u8_SQUOTE] = ACTIONS(4062), + [anon_sym_SQUOTE] = ACTIONS(4062), + [anon_sym_L_DQUOTE] = ACTIONS(4062), + [anon_sym_u_DQUOTE] = ACTIONS(4062), + [anon_sym_U_DQUOTE] = ACTIONS(4062), + [anon_sym_u8_DQUOTE] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [anon_sym_NULL] = ACTIONS(4060), + [anon_sym_nullptr] = ACTIONS(4060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4060), + [anon_sym_decltype] = ACTIONS(4060), + [anon_sym_explicit] = ACTIONS(4060), + [anon_sym_export] = ACTIONS(4060), + [anon_sym_import] = ACTIONS(4060), + [anon_sym_template] = ACTIONS(4060), + [anon_sym_operator] = ACTIONS(4060), + [anon_sym_try] = ACTIONS(4060), + [anon_sym_delete] = ACTIONS(4060), + [anon_sym_throw] = ACTIONS(4060), + [anon_sym_namespace] = ACTIONS(4060), + [anon_sym_static_assert] = ACTIONS(4060), + [anon_sym_concept] = ACTIONS(4060), + [anon_sym_co_return] = ACTIONS(4060), + [anon_sym_co_yield] = ACTIONS(4060), + [anon_sym_R_DQUOTE] = ACTIONS(4062), + [anon_sym_LR_DQUOTE] = ACTIONS(4062), + [anon_sym_uR_DQUOTE] = ACTIONS(4062), + [anon_sym_UR_DQUOTE] = ACTIONS(4062), + [anon_sym_u8R_DQUOTE] = ACTIONS(4062), + [anon_sym_co_await] = ACTIONS(4060), + [anon_sym_new] = ACTIONS(4060), + [anon_sym_requires] = ACTIONS(4060), + [anon_sym_CARET_CARET] = ACTIONS(4062), + [anon_sym_LBRACK_COLON] = ACTIONS(4062), + [sym_this] = ACTIONS(4060), }, - [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), + [STATE(883)] = { + [sym_identifier] = ACTIONS(4146), + [aux_sym_preproc_include_token1] = ACTIONS(4146), + [aux_sym_preproc_def_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4146), + [sym_preproc_directive] = ACTIONS(4146), + [anon_sym_LPAREN2] = ACTIONS(4148), + [anon_sym_BANG] = ACTIONS(4148), + [anon_sym_TILDE] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym___extension__] = ACTIONS(4146), + [anon_sym_typedef] = ACTIONS(4146), + [anon_sym_virtual] = ACTIONS(4146), + [anon_sym_extern] = ACTIONS(4146), + [anon_sym___attribute__] = ACTIONS(4146), + [anon_sym___attribute] = ACTIONS(4146), + [anon_sym_using] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4148), + [anon_sym___declspec] = ACTIONS(4146), + [anon_sym___based] = ACTIONS(4146), + [anon_sym___cdecl] = ACTIONS(4146), + [anon_sym___clrcall] = ACTIONS(4146), + [anon_sym___stdcall] = ACTIONS(4146), + [anon_sym___fastcall] = ACTIONS(4146), + [anon_sym___thiscall] = ACTIONS(4146), + [anon_sym___vectorcall] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_signed] = ACTIONS(4146), + [anon_sym_unsigned] = ACTIONS(4146), + [anon_sym_long] = ACTIONS(4146), + [anon_sym_short] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_static] = ACTIONS(4146), + [anon_sym_register] = ACTIONS(4146), + [anon_sym_inline] = ACTIONS(4146), + [anon_sym___inline] = ACTIONS(4146), + [anon_sym___inline__] = ACTIONS(4146), + [anon_sym___forceinline] = ACTIONS(4146), + [anon_sym_thread_local] = ACTIONS(4146), + [anon_sym___thread] = ACTIONS(4146), + [anon_sym_const] = ACTIONS(4146), + [anon_sym_constexpr] = ACTIONS(4146), + [anon_sym_volatile] = ACTIONS(4146), + [anon_sym_restrict] = ACTIONS(4146), + [anon_sym___restrict__] = ACTIONS(4146), + [anon_sym__Atomic] = ACTIONS(4146), + [anon_sym__Noreturn] = ACTIONS(4146), + [anon_sym_noreturn] = ACTIONS(4146), + [anon_sym__Nonnull] = ACTIONS(4146), + [anon_sym_mutable] = ACTIONS(4146), + [anon_sym_constinit] = ACTIONS(4146), + [anon_sym_consteval] = ACTIONS(4146), + [anon_sym_alignas] = ACTIONS(4146), + [anon_sym__Alignas] = ACTIONS(4146), + [sym_primitive_type] = ACTIONS(4146), + [anon_sym_enum] = ACTIONS(4146), + [anon_sym_class] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4146), + [anon_sym_union] = ACTIONS(4146), + [anon_sym_if] = ACTIONS(4146), + [anon_sym_switch] = ACTIONS(4146), + [anon_sym_case] = ACTIONS(4146), + [anon_sym_default] = ACTIONS(4146), + [anon_sym_while] = ACTIONS(4146), + [anon_sym_do] = ACTIONS(4146), + [anon_sym_for] = ACTIONS(4146), + [anon_sym_return] = ACTIONS(4146), + [anon_sym_break] = ACTIONS(4146), + [anon_sym_continue] = ACTIONS(4146), + [anon_sym_goto] = ACTIONS(4146), + [anon_sym___try] = ACTIONS(4146), + [anon_sym___leave] = ACTIONS(4146), + [anon_sym_not] = ACTIONS(4146), + [anon_sym_compl] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_sizeof] = ACTIONS(4146), + [anon_sym___alignof__] = ACTIONS(4146), + [anon_sym___alignof] = ACTIONS(4146), + [anon_sym__alignof] = ACTIONS(4146), + [anon_sym_alignof] = ACTIONS(4146), + [anon_sym__Alignof] = ACTIONS(4146), + [anon_sym_offsetof] = ACTIONS(4146), + [anon_sym__Generic] = ACTIONS(4146), + [anon_sym_typename] = ACTIONS(4146), + [anon_sym_asm] = ACTIONS(4146), + [anon_sym___asm__] = ACTIONS(4146), + [anon_sym___asm] = ACTIONS(4146), + [sym_number_literal] = ACTIONS(4148), + [anon_sym_L_SQUOTE] = ACTIONS(4148), + [anon_sym_u_SQUOTE] = ACTIONS(4148), + [anon_sym_U_SQUOTE] = ACTIONS(4148), + [anon_sym_u8_SQUOTE] = ACTIONS(4148), + [anon_sym_SQUOTE] = ACTIONS(4148), + [anon_sym_L_DQUOTE] = ACTIONS(4148), + [anon_sym_u_DQUOTE] = ACTIONS(4148), + [anon_sym_U_DQUOTE] = ACTIONS(4148), + [anon_sym_u8_DQUOTE] = ACTIONS(4148), + [anon_sym_DQUOTE] = ACTIONS(4148), + [sym_true] = ACTIONS(4146), + [sym_false] = ACTIONS(4146), + [anon_sym_NULL] = ACTIONS(4146), + [anon_sym_nullptr] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4146), + [anon_sym_decltype] = ACTIONS(4146), + [anon_sym_explicit] = ACTIONS(4146), + [anon_sym_export] = ACTIONS(4146), + [anon_sym_import] = ACTIONS(4146), + [anon_sym_template] = ACTIONS(4146), + [anon_sym_operator] = ACTIONS(4146), + [anon_sym_try] = ACTIONS(4146), + [anon_sym_delete] = ACTIONS(4146), + [anon_sym_throw] = ACTIONS(4146), + [anon_sym_namespace] = ACTIONS(4146), + [anon_sym_static_assert] = ACTIONS(4146), + [anon_sym_concept] = ACTIONS(4146), + [anon_sym_co_return] = ACTIONS(4146), + [anon_sym_co_yield] = ACTIONS(4146), + [anon_sym_R_DQUOTE] = ACTIONS(4148), + [anon_sym_LR_DQUOTE] = ACTIONS(4148), + [anon_sym_uR_DQUOTE] = ACTIONS(4148), + [anon_sym_UR_DQUOTE] = ACTIONS(4148), + [anon_sym_u8R_DQUOTE] = ACTIONS(4148), + [anon_sym_co_await] = ACTIONS(4146), + [anon_sym_new] = ACTIONS(4146), + [anon_sym_requires] = ACTIONS(4146), + [anon_sym_CARET_CARET] = ACTIONS(4148), + [anon_sym_LBRACK_COLON] = ACTIONS(4148), + [sym_this] = ACTIONS(4146), }, - [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), - [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_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(4702), - [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(884)] = { + [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_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_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___try] = ACTIONS(4088), + [anon_sym___leave] = 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(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(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), + [sym_auto] = ACTIONS(4088), + [anon_sym_decltype] = ACTIONS(4088), + [anon_sym_explicit] = ACTIONS(4088), + [anon_sym_export] = 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(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), - [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(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_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(885)] = { + [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(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(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), + [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), }, - [STATE(874)] = { - [ts_builtin_sym_end] = ACTIONS(4094), + [STATE(886)] = { [sym_identifier] = ACTIONS(4092), [aux_sym_preproc_include_token1] = ACTIONS(4092), [aux_sym_preproc_def_token1] = ACTIONS(4092), @@ -184387,6 +189306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(4092), [anon_sym___vectorcall] = ACTIONS(4092), [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_RBRACE] = ACTIONS(4094), [anon_sym_signed] = ACTIONS(4092), [anon_sym_unsigned] = ACTIONS(4092), [anon_sym_long] = ACTIONS(4092), @@ -184430,6 +189350,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -184466,7 +189388,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -184490,1633 +189411,1357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(887)] = { + [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_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), }, - [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(888)] = { + [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), }, - [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(889)] = { + [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), }, - [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(890)] = { + [ts_builtin_sym_end] = ACTIONS(4345), + [sym_identifier] = ACTIONS(4343), + [aux_sym_preproc_include_token1] = ACTIONS(4343), + [aux_sym_preproc_def_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token1] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4343), + [sym_preproc_directive] = ACTIONS(4343), + [anon_sym_LPAREN2] = ACTIONS(4345), + [anon_sym_BANG] = ACTIONS(4345), + [anon_sym_TILDE] = ACTIONS(4345), + [anon_sym_DASH] = ACTIONS(4343), + [anon_sym_PLUS] = ACTIONS(4343), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym___extension__] = ACTIONS(4343), + [anon_sym_typedef] = ACTIONS(4343), + [anon_sym_virtual] = ACTIONS(4343), + [anon_sym_extern] = ACTIONS(4343), + [anon_sym___attribute__] = ACTIONS(4343), + [anon_sym___attribute] = ACTIONS(4343), + [anon_sym_using] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4345), + [anon_sym___declspec] = ACTIONS(4343), + [anon_sym___based] = ACTIONS(4343), + [anon_sym___cdecl] = ACTIONS(4343), + [anon_sym___clrcall] = ACTIONS(4343), + [anon_sym___stdcall] = ACTIONS(4343), + [anon_sym___fastcall] = ACTIONS(4343), + [anon_sym___thiscall] = ACTIONS(4343), + [anon_sym___vectorcall] = ACTIONS(4343), + [anon_sym_LBRACE] = ACTIONS(4345), + [anon_sym_signed] = ACTIONS(4343), + [anon_sym_unsigned] = ACTIONS(4343), + [anon_sym_long] = ACTIONS(4343), + [anon_sym_short] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4343), + [anon_sym_static] = ACTIONS(4343), + [anon_sym_register] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym___inline] = ACTIONS(4343), + [anon_sym___inline__] = ACTIONS(4343), + [anon_sym___forceinline] = ACTIONS(4343), + [anon_sym_thread_local] = ACTIONS(4343), + [anon_sym___thread] = ACTIONS(4343), + [anon_sym_const] = ACTIONS(4343), + [anon_sym_constexpr] = ACTIONS(4343), + [anon_sym_volatile] = ACTIONS(4343), + [anon_sym_restrict] = ACTIONS(4343), + [anon_sym___restrict__] = ACTIONS(4343), + [anon_sym__Atomic] = ACTIONS(4343), + [anon_sym__Noreturn] = ACTIONS(4343), + [anon_sym_noreturn] = ACTIONS(4343), + [anon_sym__Nonnull] = ACTIONS(4343), + [anon_sym_mutable] = ACTIONS(4343), + [anon_sym_constinit] = ACTIONS(4343), + [anon_sym_consteval] = ACTIONS(4343), + [anon_sym_alignas] = ACTIONS(4343), + [anon_sym__Alignas] = ACTIONS(4343), + [sym_primitive_type] = ACTIONS(4343), + [anon_sym_enum] = ACTIONS(4343), + [anon_sym_class] = ACTIONS(4343), + [anon_sym_struct] = ACTIONS(4343), + [anon_sym_union] = ACTIONS(4343), + [anon_sym_if] = ACTIONS(4343), + [anon_sym_switch] = ACTIONS(4343), + [anon_sym_case] = ACTIONS(4343), + [anon_sym_default] = ACTIONS(4343), + [anon_sym_while] = ACTIONS(4343), + [anon_sym_do] = ACTIONS(4343), + [anon_sym_for] = ACTIONS(4343), + [anon_sym_return] = ACTIONS(4343), + [anon_sym_break] = ACTIONS(4343), + [anon_sym_continue] = ACTIONS(4343), + [anon_sym_goto] = ACTIONS(4343), + [anon_sym_not] = ACTIONS(4343), + [anon_sym_compl] = ACTIONS(4343), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4343), + [anon_sym___alignof__] = ACTIONS(4343), + [anon_sym___alignof] = ACTIONS(4343), + [anon_sym__alignof] = ACTIONS(4343), + [anon_sym_alignof] = ACTIONS(4343), + [anon_sym__Alignof] = ACTIONS(4343), + [anon_sym_offsetof] = ACTIONS(4343), + [anon_sym__Generic] = ACTIONS(4343), + [anon_sym_typename] = ACTIONS(4343), + [anon_sym_asm] = ACTIONS(4343), + [anon_sym___asm__] = ACTIONS(4343), + [anon_sym___asm] = ACTIONS(4343), + [sym_number_literal] = ACTIONS(4345), + [anon_sym_L_SQUOTE] = ACTIONS(4345), + [anon_sym_u_SQUOTE] = ACTIONS(4345), + [anon_sym_U_SQUOTE] = ACTIONS(4345), + [anon_sym_u8_SQUOTE] = ACTIONS(4345), + [anon_sym_SQUOTE] = ACTIONS(4345), + [anon_sym_L_DQUOTE] = ACTIONS(4345), + [anon_sym_u_DQUOTE] = ACTIONS(4345), + [anon_sym_U_DQUOTE] = ACTIONS(4345), + [anon_sym_u8_DQUOTE] = ACTIONS(4345), + [anon_sym_DQUOTE] = ACTIONS(4345), + [sym_true] = ACTIONS(4343), + [sym_false] = ACTIONS(4343), + [anon_sym_NULL] = ACTIONS(4343), + [anon_sym_nullptr] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4343), + [anon_sym_decltype] = ACTIONS(4343), + [anon_sym_explicit] = ACTIONS(4343), + [anon_sym_export] = ACTIONS(4343), + [anon_sym_module] = ACTIONS(4343), + [anon_sym_import] = ACTIONS(4343), + [anon_sym_template] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_try] = ACTIONS(4343), + [anon_sym_delete] = ACTIONS(4343), + [anon_sym_throw] = ACTIONS(4343), + [anon_sym_namespace] = ACTIONS(4343), + [anon_sym_static_assert] = ACTIONS(4343), + [anon_sym_concept] = ACTIONS(4343), + [anon_sym_co_return] = ACTIONS(4343), + [anon_sym_co_yield] = ACTIONS(4343), + [anon_sym_R_DQUOTE] = ACTIONS(4345), + [anon_sym_LR_DQUOTE] = ACTIONS(4345), + [anon_sym_uR_DQUOTE] = ACTIONS(4345), + [anon_sym_UR_DQUOTE] = ACTIONS(4345), + [anon_sym_u8R_DQUOTE] = ACTIONS(4345), + [anon_sym_co_await] = ACTIONS(4343), + [anon_sym_new] = ACTIONS(4343), + [anon_sym_requires] = ACTIONS(4343), + [anon_sym_CARET_CARET] = ACTIONS(4345), + [anon_sym_LBRACK_COLON] = ACTIONS(4345), + [sym_this] = ACTIONS(4343), }, - [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(891)] = { + [ts_builtin_sym_end] = ACTIONS(4349), + [sym_identifier] = ACTIONS(4347), + [aux_sym_preproc_include_token1] = ACTIONS(4347), + [aux_sym_preproc_def_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token1] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), + [sym_preproc_directive] = ACTIONS(4347), + [anon_sym_LPAREN2] = ACTIONS(4349), + [anon_sym_BANG] = ACTIONS(4349), + [anon_sym_TILDE] = ACTIONS(4349), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym___extension__] = ACTIONS(4347), + [anon_sym_typedef] = ACTIONS(4347), + [anon_sym_virtual] = ACTIONS(4347), + [anon_sym_extern] = ACTIONS(4347), + [anon_sym___attribute__] = ACTIONS(4347), + [anon_sym___attribute] = ACTIONS(4347), + [anon_sym_using] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4349), + [anon_sym___declspec] = ACTIONS(4347), + [anon_sym___based] = ACTIONS(4347), + [anon_sym___cdecl] = ACTIONS(4347), + [anon_sym___clrcall] = ACTIONS(4347), + [anon_sym___stdcall] = ACTIONS(4347), + [anon_sym___fastcall] = ACTIONS(4347), + [anon_sym___thiscall] = ACTIONS(4347), + [anon_sym___vectorcall] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4349), + [anon_sym_signed] = ACTIONS(4347), + [anon_sym_unsigned] = ACTIONS(4347), + [anon_sym_long] = ACTIONS(4347), + [anon_sym_short] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_static] = ACTIONS(4347), + [anon_sym_register] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym___inline] = ACTIONS(4347), + [anon_sym___inline__] = ACTIONS(4347), + [anon_sym___forceinline] = ACTIONS(4347), + [anon_sym_thread_local] = ACTIONS(4347), + [anon_sym___thread] = ACTIONS(4347), + [anon_sym_const] = ACTIONS(4347), + [anon_sym_constexpr] = ACTIONS(4347), + [anon_sym_volatile] = ACTIONS(4347), + [anon_sym_restrict] = ACTIONS(4347), + [anon_sym___restrict__] = ACTIONS(4347), + [anon_sym__Atomic] = ACTIONS(4347), + [anon_sym__Noreturn] = ACTIONS(4347), + [anon_sym_noreturn] = ACTIONS(4347), + [anon_sym__Nonnull] = ACTIONS(4347), + [anon_sym_mutable] = ACTIONS(4347), + [anon_sym_constinit] = ACTIONS(4347), + [anon_sym_consteval] = ACTIONS(4347), + [anon_sym_alignas] = ACTIONS(4347), + [anon_sym__Alignas] = ACTIONS(4347), + [sym_primitive_type] = ACTIONS(4347), + [anon_sym_enum] = ACTIONS(4347), + [anon_sym_class] = ACTIONS(4347), + [anon_sym_struct] = ACTIONS(4347), + [anon_sym_union] = ACTIONS(4347), + [anon_sym_if] = ACTIONS(4347), + [anon_sym_switch] = ACTIONS(4347), + [anon_sym_case] = ACTIONS(4347), + [anon_sym_default] = ACTIONS(4347), + [anon_sym_while] = ACTIONS(4347), + [anon_sym_do] = ACTIONS(4347), + [anon_sym_for] = ACTIONS(4347), + [anon_sym_return] = ACTIONS(4347), + [anon_sym_break] = ACTIONS(4347), + [anon_sym_continue] = ACTIONS(4347), + [anon_sym_goto] = ACTIONS(4347), + [anon_sym_not] = ACTIONS(4347), + [anon_sym_compl] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4349), + [anon_sym_PLUS_PLUS] = ACTIONS(4349), + [anon_sym_sizeof] = ACTIONS(4347), + [anon_sym___alignof__] = ACTIONS(4347), + [anon_sym___alignof] = ACTIONS(4347), + [anon_sym__alignof] = ACTIONS(4347), + [anon_sym_alignof] = ACTIONS(4347), + [anon_sym__Alignof] = ACTIONS(4347), + [anon_sym_offsetof] = ACTIONS(4347), + [anon_sym__Generic] = ACTIONS(4347), + [anon_sym_typename] = ACTIONS(4347), + [anon_sym_asm] = ACTIONS(4347), + [anon_sym___asm__] = ACTIONS(4347), + [anon_sym___asm] = ACTIONS(4347), + [sym_number_literal] = ACTIONS(4349), + [anon_sym_L_SQUOTE] = ACTIONS(4349), + [anon_sym_u_SQUOTE] = ACTIONS(4349), + [anon_sym_U_SQUOTE] = ACTIONS(4349), + [anon_sym_u8_SQUOTE] = ACTIONS(4349), + [anon_sym_SQUOTE] = ACTIONS(4349), + [anon_sym_L_DQUOTE] = ACTIONS(4349), + [anon_sym_u_DQUOTE] = ACTIONS(4349), + [anon_sym_U_DQUOTE] = ACTIONS(4349), + [anon_sym_u8_DQUOTE] = ACTIONS(4349), + [anon_sym_DQUOTE] = ACTIONS(4349), + [sym_true] = ACTIONS(4347), + [sym_false] = ACTIONS(4347), + [anon_sym_NULL] = ACTIONS(4347), + [anon_sym_nullptr] = ACTIONS(4347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4347), + [anon_sym_decltype] = ACTIONS(4347), + [anon_sym_explicit] = ACTIONS(4347), + [anon_sym_export] = ACTIONS(4347), + [anon_sym_module] = ACTIONS(4347), + [anon_sym_import] = ACTIONS(4347), + [anon_sym_template] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_try] = ACTIONS(4347), + [anon_sym_delete] = ACTIONS(4347), + [anon_sym_throw] = ACTIONS(4347), + [anon_sym_namespace] = ACTIONS(4347), + [anon_sym_static_assert] = ACTIONS(4347), + [anon_sym_concept] = ACTIONS(4347), + [anon_sym_co_return] = ACTIONS(4347), + [anon_sym_co_yield] = ACTIONS(4347), + [anon_sym_R_DQUOTE] = ACTIONS(4349), + [anon_sym_LR_DQUOTE] = ACTIONS(4349), + [anon_sym_uR_DQUOTE] = ACTIONS(4349), + [anon_sym_UR_DQUOTE] = ACTIONS(4349), + [anon_sym_u8R_DQUOTE] = ACTIONS(4349), + [anon_sym_co_await] = ACTIONS(4347), + [anon_sym_new] = ACTIONS(4347), + [anon_sym_requires] = ACTIONS(4347), + [anon_sym_CARET_CARET] = ACTIONS(4349), + [anon_sym_LBRACK_COLON] = ACTIONS(4349), + [sym_this] = ACTIONS(4347), }, - [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(892)] = { + [ts_builtin_sym_end] = ACTIONS(4353), + [sym_identifier] = ACTIONS(4351), + [aux_sym_preproc_include_token1] = ACTIONS(4351), + [aux_sym_preproc_def_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token1] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4351), + [sym_preproc_directive] = ACTIONS(4351), + [anon_sym_LPAREN2] = ACTIONS(4353), + [anon_sym_BANG] = ACTIONS(4353), + [anon_sym_TILDE] = ACTIONS(4353), + [anon_sym_DASH] = ACTIONS(4351), + [anon_sym_PLUS] = ACTIONS(4351), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym___extension__] = ACTIONS(4351), + [anon_sym_typedef] = ACTIONS(4351), + [anon_sym_virtual] = ACTIONS(4351), + [anon_sym_extern] = ACTIONS(4351), + [anon_sym___attribute__] = ACTIONS(4351), + [anon_sym___attribute] = ACTIONS(4351), + [anon_sym_using] = ACTIONS(4351), + [anon_sym_COLON_COLON] = ACTIONS(4353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4353), + [anon_sym___declspec] = ACTIONS(4351), + [anon_sym___based] = ACTIONS(4351), + [anon_sym___cdecl] = ACTIONS(4351), + [anon_sym___clrcall] = ACTIONS(4351), + [anon_sym___stdcall] = ACTIONS(4351), + [anon_sym___fastcall] = ACTIONS(4351), + [anon_sym___thiscall] = ACTIONS(4351), + [anon_sym___vectorcall] = ACTIONS(4351), + [anon_sym_LBRACE] = ACTIONS(4353), + [anon_sym_signed] = ACTIONS(4351), + [anon_sym_unsigned] = ACTIONS(4351), + [anon_sym_long] = ACTIONS(4351), + [anon_sym_short] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_static] = ACTIONS(4351), + [anon_sym_register] = ACTIONS(4351), + [anon_sym_inline] = ACTIONS(4351), + [anon_sym___inline] = ACTIONS(4351), + [anon_sym___inline__] = ACTIONS(4351), + [anon_sym___forceinline] = ACTIONS(4351), + [anon_sym_thread_local] = ACTIONS(4351), + [anon_sym___thread] = ACTIONS(4351), + [anon_sym_const] = ACTIONS(4351), + [anon_sym_constexpr] = ACTIONS(4351), + [anon_sym_volatile] = ACTIONS(4351), + [anon_sym_restrict] = ACTIONS(4351), + [anon_sym___restrict__] = ACTIONS(4351), + [anon_sym__Atomic] = ACTIONS(4351), + [anon_sym__Noreturn] = ACTIONS(4351), + [anon_sym_noreturn] = ACTIONS(4351), + [anon_sym__Nonnull] = ACTIONS(4351), + [anon_sym_mutable] = ACTIONS(4351), + [anon_sym_constinit] = ACTIONS(4351), + [anon_sym_consteval] = ACTIONS(4351), + [anon_sym_alignas] = ACTIONS(4351), + [anon_sym__Alignas] = ACTIONS(4351), + [sym_primitive_type] = ACTIONS(4351), + [anon_sym_enum] = ACTIONS(4351), + [anon_sym_class] = ACTIONS(4351), + [anon_sym_struct] = ACTIONS(4351), + [anon_sym_union] = ACTIONS(4351), + [anon_sym_if] = ACTIONS(4351), + [anon_sym_switch] = ACTIONS(4351), + [anon_sym_case] = ACTIONS(4351), + [anon_sym_default] = ACTIONS(4351), + [anon_sym_while] = ACTIONS(4351), + [anon_sym_do] = ACTIONS(4351), + [anon_sym_for] = ACTIONS(4351), + [anon_sym_return] = ACTIONS(4351), + [anon_sym_break] = ACTIONS(4351), + [anon_sym_continue] = ACTIONS(4351), + [anon_sym_goto] = ACTIONS(4351), + [anon_sym_not] = ACTIONS(4351), + [anon_sym_compl] = ACTIONS(4351), + [anon_sym_DASH_DASH] = ACTIONS(4353), + [anon_sym_PLUS_PLUS] = ACTIONS(4353), + [anon_sym_sizeof] = ACTIONS(4351), + [anon_sym___alignof__] = ACTIONS(4351), + [anon_sym___alignof] = ACTIONS(4351), + [anon_sym__alignof] = ACTIONS(4351), + [anon_sym_alignof] = ACTIONS(4351), + [anon_sym__Alignof] = ACTIONS(4351), + [anon_sym_offsetof] = ACTIONS(4351), + [anon_sym__Generic] = ACTIONS(4351), + [anon_sym_typename] = ACTIONS(4351), + [anon_sym_asm] = ACTIONS(4351), + [anon_sym___asm__] = ACTIONS(4351), + [anon_sym___asm] = ACTIONS(4351), + [sym_number_literal] = ACTIONS(4353), + [anon_sym_L_SQUOTE] = ACTIONS(4353), + [anon_sym_u_SQUOTE] = ACTIONS(4353), + [anon_sym_U_SQUOTE] = ACTIONS(4353), + [anon_sym_u8_SQUOTE] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4353), + [anon_sym_L_DQUOTE] = ACTIONS(4353), + [anon_sym_u_DQUOTE] = ACTIONS(4353), + [anon_sym_U_DQUOTE] = ACTIONS(4353), + [anon_sym_u8_DQUOTE] = ACTIONS(4353), + [anon_sym_DQUOTE] = ACTIONS(4353), + [sym_true] = ACTIONS(4351), + [sym_false] = ACTIONS(4351), + [anon_sym_NULL] = ACTIONS(4351), + [anon_sym_nullptr] = ACTIONS(4351), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4351), + [anon_sym_decltype] = ACTIONS(4351), + [anon_sym_explicit] = ACTIONS(4351), + [anon_sym_export] = ACTIONS(4351), + [anon_sym_module] = ACTIONS(4351), + [anon_sym_import] = ACTIONS(4351), + [anon_sym_template] = ACTIONS(4351), + [anon_sym_operator] = ACTIONS(4351), + [anon_sym_try] = ACTIONS(4351), + [anon_sym_delete] = ACTIONS(4351), + [anon_sym_throw] = ACTIONS(4351), + [anon_sym_namespace] = ACTIONS(4351), + [anon_sym_static_assert] = ACTIONS(4351), + [anon_sym_concept] = ACTIONS(4351), + [anon_sym_co_return] = ACTIONS(4351), + [anon_sym_co_yield] = ACTIONS(4351), + [anon_sym_R_DQUOTE] = ACTIONS(4353), + [anon_sym_LR_DQUOTE] = ACTIONS(4353), + [anon_sym_uR_DQUOTE] = ACTIONS(4353), + [anon_sym_UR_DQUOTE] = ACTIONS(4353), + [anon_sym_u8R_DQUOTE] = ACTIONS(4353), + [anon_sym_co_await] = ACTIONS(4351), + [anon_sym_new] = ACTIONS(4351), + [anon_sym_requires] = ACTIONS(4351), + [anon_sym_CARET_CARET] = ACTIONS(4353), + [anon_sym_LBRACK_COLON] = ACTIONS(4353), + [sym_this] = ACTIONS(4351), }, - [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(893)] = { + [ts_builtin_sym_end] = ACTIONS(4470), + [sym_identifier] = ACTIONS(4468), + [aux_sym_preproc_include_token1] = ACTIONS(4468), + [aux_sym_preproc_def_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token1] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4468), + [sym_preproc_directive] = ACTIONS(4468), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_BANG] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4468), + [anon_sym_typedef] = ACTIONS(4468), + [anon_sym_virtual] = ACTIONS(4468), + [anon_sym_extern] = ACTIONS(4468), + [anon_sym___attribute__] = ACTIONS(4468), + [anon_sym___attribute] = ACTIONS(4468), + [anon_sym_using] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4470), + [anon_sym___declspec] = ACTIONS(4468), + [anon_sym___based] = ACTIONS(4468), + [anon_sym___cdecl] = ACTIONS(4468), + [anon_sym___clrcall] = ACTIONS(4468), + [anon_sym___stdcall] = ACTIONS(4468), + [anon_sym___fastcall] = ACTIONS(4468), + [anon_sym___thiscall] = ACTIONS(4468), + [anon_sym___vectorcall] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_signed] = ACTIONS(4468), + [anon_sym_unsigned] = ACTIONS(4468), + [anon_sym_long] = ACTIONS(4468), + [anon_sym_short] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_static] = ACTIONS(4468), + [anon_sym_register] = ACTIONS(4468), + [anon_sym_inline] = ACTIONS(4468), + [anon_sym___inline] = ACTIONS(4468), + [anon_sym___inline__] = ACTIONS(4468), + [anon_sym___forceinline] = ACTIONS(4468), + [anon_sym_thread_local] = ACTIONS(4468), + [anon_sym___thread] = ACTIONS(4468), + [anon_sym_const] = ACTIONS(4468), + [anon_sym_constexpr] = ACTIONS(4468), + [anon_sym_volatile] = ACTIONS(4468), + [anon_sym_restrict] = ACTIONS(4468), + [anon_sym___restrict__] = ACTIONS(4468), + [anon_sym__Atomic] = ACTIONS(4468), + [anon_sym__Noreturn] = ACTIONS(4468), + [anon_sym_noreturn] = ACTIONS(4468), + [anon_sym__Nonnull] = ACTIONS(4468), + [anon_sym_mutable] = ACTIONS(4468), + [anon_sym_constinit] = ACTIONS(4468), + [anon_sym_consteval] = ACTIONS(4468), + [anon_sym_alignas] = ACTIONS(4468), + [anon_sym__Alignas] = ACTIONS(4468), + [sym_primitive_type] = ACTIONS(4468), + [anon_sym_enum] = ACTIONS(4468), + [anon_sym_class] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_union] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_switch] = ACTIONS(4468), + [anon_sym_case] = ACTIONS(4468), + [anon_sym_default] = ACTIONS(4468), + [anon_sym_while] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_for] = ACTIONS(4468), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_break] = ACTIONS(4468), + [anon_sym_continue] = ACTIONS(4468), + [anon_sym_goto] = ACTIONS(4468), + [anon_sym_not] = ACTIONS(4468), + [anon_sym_compl] = ACTIONS(4468), + [anon_sym_DASH_DASH] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4470), + [anon_sym_sizeof] = ACTIONS(4468), + [anon_sym___alignof__] = ACTIONS(4468), + [anon_sym___alignof] = ACTIONS(4468), + [anon_sym__alignof] = ACTIONS(4468), + [anon_sym_alignof] = ACTIONS(4468), + [anon_sym__Alignof] = ACTIONS(4468), + [anon_sym_offsetof] = ACTIONS(4468), + [anon_sym__Generic] = ACTIONS(4468), + [anon_sym_typename] = ACTIONS(4468), + [anon_sym_asm] = ACTIONS(4468), + [anon_sym___asm__] = ACTIONS(4468), + [anon_sym___asm] = ACTIONS(4468), + [sym_number_literal] = ACTIONS(4470), + [anon_sym_L_SQUOTE] = ACTIONS(4470), + [anon_sym_u_SQUOTE] = ACTIONS(4470), + [anon_sym_U_SQUOTE] = ACTIONS(4470), + [anon_sym_u8_SQUOTE] = ACTIONS(4470), + [anon_sym_SQUOTE] = ACTIONS(4470), + [anon_sym_L_DQUOTE] = ACTIONS(4470), + [anon_sym_u_DQUOTE] = ACTIONS(4470), + [anon_sym_U_DQUOTE] = ACTIONS(4470), + [anon_sym_u8_DQUOTE] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_true] = ACTIONS(4468), + [sym_false] = ACTIONS(4468), + [anon_sym_NULL] = ACTIONS(4468), + [anon_sym_nullptr] = ACTIONS(4468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4468), + [anon_sym_decltype] = ACTIONS(4468), + [anon_sym_explicit] = ACTIONS(4468), + [anon_sym_export] = ACTIONS(4468), + [anon_sym_module] = ACTIONS(4468), + [anon_sym_import] = ACTIONS(4468), + [anon_sym_template] = ACTIONS(4468), + [anon_sym_operator] = ACTIONS(4468), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_delete] = ACTIONS(4468), + [anon_sym_throw] = ACTIONS(4468), + [anon_sym_namespace] = ACTIONS(4468), + [anon_sym_static_assert] = ACTIONS(4468), + [anon_sym_concept] = ACTIONS(4468), + [anon_sym_co_return] = ACTIONS(4468), + [anon_sym_co_yield] = ACTIONS(4468), + [anon_sym_R_DQUOTE] = ACTIONS(4470), + [anon_sym_LR_DQUOTE] = ACTIONS(4470), + [anon_sym_uR_DQUOTE] = ACTIONS(4470), + [anon_sym_UR_DQUOTE] = ACTIONS(4470), + [anon_sym_u8R_DQUOTE] = ACTIONS(4470), + [anon_sym_co_await] = ACTIONS(4468), + [anon_sym_new] = ACTIONS(4468), + [anon_sym_requires] = ACTIONS(4468), + [anon_sym_CARET_CARET] = ACTIONS(4470), + [anon_sym_LBRACK_COLON] = ACTIONS(4470), + [sym_this] = ACTIONS(4468), }, - [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), + [STATE(894)] = { + [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(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), + [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(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(895)] = { + [ts_builtin_sym_end] = ACTIONS(4152), + [sym_identifier] = ACTIONS(4150), + [aux_sym_preproc_include_token1] = ACTIONS(4150), + [aux_sym_preproc_def_token1] = ACTIONS(4150), + [aux_sym_preproc_if_token1] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4150), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4150), + [sym_preproc_directive] = ACTIONS(4150), + [anon_sym_LPAREN2] = ACTIONS(4152), + [anon_sym_BANG] = ACTIONS(4152), + [anon_sym_TILDE] = ACTIONS(4152), + [anon_sym_DASH] = ACTIONS(4150), + [anon_sym_PLUS] = ACTIONS(4150), + [anon_sym_STAR] = ACTIONS(4152), + [anon_sym_AMP_AMP] = ACTIONS(4152), + [anon_sym_AMP] = ACTIONS(4150), + [anon_sym_SEMI] = ACTIONS(4152), + [anon_sym___extension__] = ACTIONS(4150), + [anon_sym_typedef] = ACTIONS(4150), + [anon_sym_virtual] = ACTIONS(4150), + [anon_sym_extern] = ACTIONS(4150), + [anon_sym___attribute__] = ACTIONS(4150), + [anon_sym___attribute] = ACTIONS(4150), + [anon_sym_using] = ACTIONS(4150), + [anon_sym_COLON_COLON] = ACTIONS(4152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4152), + [anon_sym___declspec] = ACTIONS(4150), + [anon_sym___based] = ACTIONS(4150), + [anon_sym___cdecl] = ACTIONS(4150), + [anon_sym___clrcall] = ACTIONS(4150), + [anon_sym___stdcall] = ACTIONS(4150), + [anon_sym___fastcall] = ACTIONS(4150), + [anon_sym___thiscall] = ACTIONS(4150), + [anon_sym___vectorcall] = ACTIONS(4150), + [anon_sym_LBRACE] = ACTIONS(4152), + [anon_sym_signed] = ACTIONS(4150), + [anon_sym_unsigned] = ACTIONS(4150), + [anon_sym_long] = ACTIONS(4150), + [anon_sym_short] = ACTIONS(4150), + [anon_sym_LBRACK] = ACTIONS(4150), + [anon_sym_static] = ACTIONS(4150), + [anon_sym_register] = ACTIONS(4150), + [anon_sym_inline] = ACTIONS(4150), + [anon_sym___inline] = ACTIONS(4150), + [anon_sym___inline__] = ACTIONS(4150), + [anon_sym___forceinline] = ACTIONS(4150), + [anon_sym_thread_local] = ACTIONS(4150), + [anon_sym___thread] = ACTIONS(4150), + [anon_sym_const] = ACTIONS(4150), + [anon_sym_constexpr] = ACTIONS(4150), + [anon_sym_volatile] = ACTIONS(4150), + [anon_sym_restrict] = ACTIONS(4150), + [anon_sym___restrict__] = ACTIONS(4150), + [anon_sym__Atomic] = ACTIONS(4150), + [anon_sym__Noreturn] = ACTIONS(4150), + [anon_sym_noreturn] = ACTIONS(4150), + [anon_sym__Nonnull] = ACTIONS(4150), + [anon_sym_mutable] = ACTIONS(4150), + [anon_sym_constinit] = ACTIONS(4150), + [anon_sym_consteval] = ACTIONS(4150), + [anon_sym_alignas] = ACTIONS(4150), + [anon_sym__Alignas] = ACTIONS(4150), + [sym_primitive_type] = ACTIONS(4150), + [anon_sym_enum] = ACTIONS(4150), + [anon_sym_class] = ACTIONS(4150), + [anon_sym_struct] = ACTIONS(4150), + [anon_sym_union] = ACTIONS(4150), + [anon_sym_if] = ACTIONS(4150), + [anon_sym_switch] = ACTIONS(4150), + [anon_sym_case] = ACTIONS(4150), + [anon_sym_default] = ACTIONS(4150), + [anon_sym_while] = ACTIONS(4150), + [anon_sym_do] = ACTIONS(4150), + [anon_sym_for] = ACTIONS(4150), + [anon_sym_return] = ACTIONS(4150), + [anon_sym_break] = ACTIONS(4150), + [anon_sym_continue] = ACTIONS(4150), + [anon_sym_goto] = ACTIONS(4150), + [anon_sym_not] = ACTIONS(4150), + [anon_sym_compl] = ACTIONS(4150), + [anon_sym_DASH_DASH] = ACTIONS(4152), + [anon_sym_PLUS_PLUS] = ACTIONS(4152), + [anon_sym_sizeof] = ACTIONS(4150), + [anon_sym___alignof__] = ACTIONS(4150), + [anon_sym___alignof] = ACTIONS(4150), + [anon_sym__alignof] = ACTIONS(4150), + [anon_sym_alignof] = ACTIONS(4150), + [anon_sym__Alignof] = ACTIONS(4150), + [anon_sym_offsetof] = ACTIONS(4150), + [anon_sym__Generic] = ACTIONS(4150), + [anon_sym_typename] = ACTIONS(4150), + [anon_sym_asm] = ACTIONS(4150), + [anon_sym___asm__] = ACTIONS(4150), + [anon_sym___asm] = ACTIONS(4150), + [sym_number_literal] = ACTIONS(4152), + [anon_sym_L_SQUOTE] = ACTIONS(4152), + [anon_sym_u_SQUOTE] = ACTIONS(4152), + [anon_sym_U_SQUOTE] = ACTIONS(4152), + [anon_sym_u8_SQUOTE] = ACTIONS(4152), + [anon_sym_SQUOTE] = ACTIONS(4152), + [anon_sym_L_DQUOTE] = ACTIONS(4152), + [anon_sym_u_DQUOTE] = ACTIONS(4152), + [anon_sym_U_DQUOTE] = ACTIONS(4152), + [anon_sym_u8_DQUOTE] = ACTIONS(4152), + [anon_sym_DQUOTE] = ACTIONS(4152), + [sym_true] = ACTIONS(4150), + [sym_false] = ACTIONS(4150), + [anon_sym_NULL] = ACTIONS(4150), + [anon_sym_nullptr] = ACTIONS(4150), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4150), + [anon_sym_decltype] = ACTIONS(4150), + [anon_sym_explicit] = ACTIONS(4150), + [anon_sym_export] = ACTIONS(4150), + [anon_sym_module] = ACTIONS(4150), + [anon_sym_import] = ACTIONS(4150), + [anon_sym_template] = ACTIONS(4150), + [anon_sym_operator] = ACTIONS(4150), + [anon_sym_try] = ACTIONS(4150), + [anon_sym_delete] = ACTIONS(4150), + [anon_sym_throw] = ACTIONS(4150), + [anon_sym_namespace] = ACTIONS(4150), + [anon_sym_static_assert] = ACTIONS(4150), + [anon_sym_concept] = ACTIONS(4150), + [anon_sym_co_return] = ACTIONS(4150), + [anon_sym_co_yield] = ACTIONS(4150), + [anon_sym_R_DQUOTE] = ACTIONS(4152), + [anon_sym_LR_DQUOTE] = ACTIONS(4152), + [anon_sym_uR_DQUOTE] = ACTIONS(4152), + [anon_sym_UR_DQUOTE] = ACTIONS(4152), + [anon_sym_u8R_DQUOTE] = ACTIONS(4152), + [anon_sym_co_await] = ACTIONS(4150), + [anon_sym_new] = ACTIONS(4150), + [anon_sym_requires] = ACTIONS(4150), + [anon_sym_CARET_CARET] = ACTIONS(4152), + [anon_sym_LBRACK_COLON] = ACTIONS(4152), + [sym_this] = ACTIONS(4150), }, - [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), + [STATE(896)] = { + [sym_preproc_def] = STATE(1014), + [sym_preproc_function_def] = STATE(1014), + [sym_preproc_call] = STATE(1014), + [sym_preproc_if_in_field_declaration_list] = STATE(1014), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1014), + [sym_type_definition] = STATE(1014), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1014), + [sym_field_declaration] = STATE(1014), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1014), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1014), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1014), + [sym_operator_cast_declaration] = STATE(1014), + [sym_constructor_or_destructor_definition] = STATE(1014), + [sym_constructor_or_destructor_declaration] = STATE(1014), + [sym_friend_declaration] = STATE(1014), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1014), + [sym_alias_declaration] = STATE(1014), + [sym_static_assert_declaration] = STATE(1014), + [sym_consteval_block_declaration] = STATE(1014), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1014), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4700), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4761), + [anon_sym_RBRACE] = ACTIONS(4708), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -186126,7 +190771,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -186136,1238 +190781,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(897)] = { + [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(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), + [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(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), + [STATE(898)] = { + [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(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), + [STATE(899)] = { + [ts_builtin_sym_end] = ACTIONS(3971), + [sym_identifier] = ACTIONS(3969), + [aux_sym_preproc_include_token1] = ACTIONS(3969), + [aux_sym_preproc_def_token1] = ACTIONS(3969), + [aux_sym_preproc_if_token1] = ACTIONS(3969), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3969), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3969), + [sym_preproc_directive] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3971), + [anon_sym_BANG] = ACTIONS(3971), + [anon_sym_TILDE] = ACTIONS(3971), + [anon_sym_DASH] = ACTIONS(3969), + [anon_sym_PLUS] = ACTIONS(3969), + [anon_sym_STAR] = ACTIONS(3971), + [anon_sym_AMP_AMP] = ACTIONS(3971), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_SEMI] = ACTIONS(3971), + [anon_sym___extension__] = ACTIONS(3969), + [anon_sym_typedef] = ACTIONS(3969), + [anon_sym_virtual] = ACTIONS(3969), + [anon_sym_extern] = ACTIONS(3969), + [anon_sym___attribute__] = ACTIONS(3969), + [anon_sym___attribute] = ACTIONS(3969), + [anon_sym_using] = ACTIONS(3969), + [anon_sym_COLON_COLON] = ACTIONS(3971), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3971), + [anon_sym___declspec] = ACTIONS(3969), + [anon_sym___based] = ACTIONS(3969), + [anon_sym___cdecl] = ACTIONS(3969), + [anon_sym___clrcall] = ACTIONS(3969), + [anon_sym___stdcall] = ACTIONS(3969), + [anon_sym___fastcall] = ACTIONS(3969), + [anon_sym___thiscall] = ACTIONS(3969), + [anon_sym___vectorcall] = ACTIONS(3969), + [anon_sym_LBRACE] = ACTIONS(3971), + [anon_sym_signed] = ACTIONS(3969), + [anon_sym_unsigned] = ACTIONS(3969), + [anon_sym_long] = ACTIONS(3969), + [anon_sym_short] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3969), + [anon_sym_static] = ACTIONS(3969), + [anon_sym_register] = ACTIONS(3969), + [anon_sym_inline] = ACTIONS(3969), + [anon_sym___inline] = ACTIONS(3969), + [anon_sym___inline__] = ACTIONS(3969), + [anon_sym___forceinline] = ACTIONS(3969), + [anon_sym_thread_local] = ACTIONS(3969), + [anon_sym___thread] = ACTIONS(3969), + [anon_sym_const] = ACTIONS(3969), + [anon_sym_constexpr] = ACTIONS(3969), + [anon_sym_volatile] = ACTIONS(3969), + [anon_sym_restrict] = ACTIONS(3969), + [anon_sym___restrict__] = ACTIONS(3969), + [anon_sym__Atomic] = ACTIONS(3969), + [anon_sym__Noreturn] = ACTIONS(3969), + [anon_sym_noreturn] = ACTIONS(3969), + [anon_sym__Nonnull] = ACTIONS(3969), + [anon_sym_mutable] = ACTIONS(3969), + [anon_sym_constinit] = ACTIONS(3969), + [anon_sym_consteval] = ACTIONS(3969), + [anon_sym_alignas] = ACTIONS(3969), + [anon_sym__Alignas] = ACTIONS(3969), + [sym_primitive_type] = ACTIONS(3969), + [anon_sym_enum] = ACTIONS(3969), + [anon_sym_class] = ACTIONS(3969), + [anon_sym_struct] = ACTIONS(3969), + [anon_sym_union] = ACTIONS(3969), + [anon_sym_if] = ACTIONS(3969), + [anon_sym_switch] = ACTIONS(3969), + [anon_sym_case] = ACTIONS(3969), + [anon_sym_default] = ACTIONS(3969), + [anon_sym_while] = ACTIONS(3969), + [anon_sym_do] = ACTIONS(3969), + [anon_sym_for] = ACTIONS(3969), + [anon_sym_return] = ACTIONS(3969), + [anon_sym_break] = ACTIONS(3969), + [anon_sym_continue] = ACTIONS(3969), + [anon_sym_goto] = ACTIONS(3969), + [anon_sym_not] = ACTIONS(3969), + [anon_sym_compl] = ACTIONS(3969), + [anon_sym_DASH_DASH] = ACTIONS(3971), + [anon_sym_PLUS_PLUS] = ACTIONS(3971), + [anon_sym_sizeof] = ACTIONS(3969), + [anon_sym___alignof__] = ACTIONS(3969), + [anon_sym___alignof] = ACTIONS(3969), + [anon_sym__alignof] = ACTIONS(3969), + [anon_sym_alignof] = ACTIONS(3969), + [anon_sym__Alignof] = ACTIONS(3969), + [anon_sym_offsetof] = ACTIONS(3969), + [anon_sym__Generic] = ACTIONS(3969), + [anon_sym_typename] = ACTIONS(3969), + [anon_sym_asm] = ACTIONS(3969), + [anon_sym___asm__] = ACTIONS(3969), + [anon_sym___asm] = ACTIONS(3969), + [sym_number_literal] = ACTIONS(3971), + [anon_sym_L_SQUOTE] = ACTIONS(3971), + [anon_sym_u_SQUOTE] = ACTIONS(3971), + [anon_sym_U_SQUOTE] = ACTIONS(3971), + [anon_sym_u8_SQUOTE] = ACTIONS(3971), + [anon_sym_SQUOTE] = ACTIONS(3971), + [anon_sym_L_DQUOTE] = ACTIONS(3971), + [anon_sym_u_DQUOTE] = ACTIONS(3971), + [anon_sym_U_DQUOTE] = ACTIONS(3971), + [anon_sym_u8_DQUOTE] = ACTIONS(3971), + [anon_sym_DQUOTE] = ACTIONS(3971), + [sym_true] = ACTIONS(3969), + [sym_false] = ACTIONS(3969), + [anon_sym_NULL] = ACTIONS(3969), + [anon_sym_nullptr] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3969), + [anon_sym_decltype] = ACTIONS(3969), + [anon_sym_explicit] = ACTIONS(3969), + [anon_sym_export] = ACTIONS(3969), + [anon_sym_module] = ACTIONS(3969), + [anon_sym_import] = ACTIONS(3969), + [anon_sym_template] = ACTIONS(3969), + [anon_sym_operator] = ACTIONS(3969), + [anon_sym_try] = ACTIONS(3969), + [anon_sym_delete] = ACTIONS(3969), + [anon_sym_throw] = ACTIONS(3969), + [anon_sym_namespace] = ACTIONS(3969), + [anon_sym_static_assert] = ACTIONS(3969), + [anon_sym_concept] = ACTIONS(3969), + [anon_sym_co_return] = ACTIONS(3969), + [anon_sym_co_yield] = ACTIONS(3969), + [anon_sym_R_DQUOTE] = ACTIONS(3971), + [anon_sym_LR_DQUOTE] = ACTIONS(3971), + [anon_sym_uR_DQUOTE] = ACTIONS(3971), + [anon_sym_UR_DQUOTE] = ACTIONS(3971), + [anon_sym_u8R_DQUOTE] = ACTIONS(3971), + [anon_sym_co_await] = ACTIONS(3969), + [anon_sym_new] = ACTIONS(3969), + [anon_sym_requires] = ACTIONS(3969), + [anon_sym_CARET_CARET] = ACTIONS(3971), + [anon_sym_LBRACK_COLON] = ACTIONS(3971), + [sym_this] = ACTIONS(3969), }, - [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(900)] = { + [ts_builtin_sym_end] = ACTIONS(4387), + [sym_identifier] = ACTIONS(4385), + [aux_sym_preproc_include_token1] = ACTIONS(4385), + [aux_sym_preproc_def_token1] = ACTIONS(4385), + [aux_sym_preproc_if_token1] = ACTIONS(4385), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4385), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4385), + [sym_preproc_directive] = ACTIONS(4385), + [anon_sym_LPAREN2] = ACTIONS(4387), + [anon_sym_BANG] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4387), + [anon_sym_DASH] = ACTIONS(4385), + [anon_sym_PLUS] = ACTIONS(4385), + [anon_sym_STAR] = ACTIONS(4387), + [anon_sym_AMP_AMP] = ACTIONS(4387), + [anon_sym_AMP] = ACTIONS(4385), + [anon_sym_SEMI] = ACTIONS(4387), + [anon_sym___extension__] = ACTIONS(4385), + [anon_sym_typedef] = ACTIONS(4385), + [anon_sym_virtual] = ACTIONS(4385), + [anon_sym_extern] = ACTIONS(4385), + [anon_sym___attribute__] = ACTIONS(4385), + [anon_sym___attribute] = ACTIONS(4385), + [anon_sym_using] = ACTIONS(4385), + [anon_sym_COLON_COLON] = ACTIONS(4387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4387), + [anon_sym___declspec] = ACTIONS(4385), + [anon_sym___based] = ACTIONS(4385), + [anon_sym___cdecl] = ACTIONS(4385), + [anon_sym___clrcall] = ACTIONS(4385), + [anon_sym___stdcall] = ACTIONS(4385), + [anon_sym___fastcall] = ACTIONS(4385), + [anon_sym___thiscall] = ACTIONS(4385), + [anon_sym___vectorcall] = ACTIONS(4385), + [anon_sym_LBRACE] = ACTIONS(4387), + [anon_sym_signed] = ACTIONS(4385), + [anon_sym_unsigned] = ACTIONS(4385), + [anon_sym_long] = ACTIONS(4385), + [anon_sym_short] = ACTIONS(4385), + [anon_sym_LBRACK] = ACTIONS(4385), + [anon_sym_static] = ACTIONS(4385), + [anon_sym_register] = ACTIONS(4385), + [anon_sym_inline] = ACTIONS(4385), + [anon_sym___inline] = ACTIONS(4385), + [anon_sym___inline__] = ACTIONS(4385), + [anon_sym___forceinline] = ACTIONS(4385), + [anon_sym_thread_local] = ACTIONS(4385), + [anon_sym___thread] = ACTIONS(4385), + [anon_sym_const] = ACTIONS(4385), + [anon_sym_constexpr] = ACTIONS(4385), + [anon_sym_volatile] = ACTIONS(4385), + [anon_sym_restrict] = ACTIONS(4385), + [anon_sym___restrict__] = ACTIONS(4385), + [anon_sym__Atomic] = ACTIONS(4385), + [anon_sym__Noreturn] = ACTIONS(4385), + [anon_sym_noreturn] = ACTIONS(4385), + [anon_sym__Nonnull] = ACTIONS(4385), + [anon_sym_mutable] = ACTIONS(4385), + [anon_sym_constinit] = ACTIONS(4385), + [anon_sym_consteval] = ACTIONS(4385), + [anon_sym_alignas] = ACTIONS(4385), + [anon_sym__Alignas] = ACTIONS(4385), + [sym_primitive_type] = ACTIONS(4385), + [anon_sym_enum] = ACTIONS(4385), + [anon_sym_class] = ACTIONS(4385), + [anon_sym_struct] = ACTIONS(4385), + [anon_sym_union] = ACTIONS(4385), + [anon_sym_if] = ACTIONS(4385), + [anon_sym_switch] = ACTIONS(4385), + [anon_sym_case] = ACTIONS(4385), + [anon_sym_default] = ACTIONS(4385), + [anon_sym_while] = ACTIONS(4385), + [anon_sym_do] = ACTIONS(4385), + [anon_sym_for] = ACTIONS(4385), + [anon_sym_return] = ACTIONS(4385), + [anon_sym_break] = ACTIONS(4385), + [anon_sym_continue] = ACTIONS(4385), + [anon_sym_goto] = ACTIONS(4385), + [anon_sym_not] = ACTIONS(4385), + [anon_sym_compl] = ACTIONS(4385), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_PLUS_PLUS] = ACTIONS(4387), + [anon_sym_sizeof] = ACTIONS(4385), + [anon_sym___alignof__] = ACTIONS(4385), + [anon_sym___alignof] = ACTIONS(4385), + [anon_sym__alignof] = ACTIONS(4385), + [anon_sym_alignof] = ACTIONS(4385), + [anon_sym__Alignof] = ACTIONS(4385), + [anon_sym_offsetof] = ACTIONS(4385), + [anon_sym__Generic] = ACTIONS(4385), + [anon_sym_typename] = ACTIONS(4385), + [anon_sym_asm] = ACTIONS(4385), + [anon_sym___asm__] = ACTIONS(4385), + [anon_sym___asm] = ACTIONS(4385), + [sym_number_literal] = ACTIONS(4387), + [anon_sym_L_SQUOTE] = ACTIONS(4387), + [anon_sym_u_SQUOTE] = ACTIONS(4387), + [anon_sym_U_SQUOTE] = ACTIONS(4387), + [anon_sym_u8_SQUOTE] = ACTIONS(4387), + [anon_sym_SQUOTE] = ACTIONS(4387), + [anon_sym_L_DQUOTE] = ACTIONS(4387), + [anon_sym_u_DQUOTE] = ACTIONS(4387), + [anon_sym_U_DQUOTE] = ACTIONS(4387), + [anon_sym_u8_DQUOTE] = ACTIONS(4387), + [anon_sym_DQUOTE] = ACTIONS(4387), + [sym_true] = ACTIONS(4385), + [sym_false] = ACTIONS(4385), + [anon_sym_NULL] = ACTIONS(4385), + [anon_sym_nullptr] = ACTIONS(4385), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4385), + [anon_sym_decltype] = ACTIONS(4385), + [anon_sym_explicit] = ACTIONS(4385), + [anon_sym_export] = ACTIONS(4385), + [anon_sym_module] = ACTIONS(4385), + [anon_sym_import] = ACTIONS(4385), + [anon_sym_template] = ACTIONS(4385), + [anon_sym_operator] = ACTIONS(4385), + [anon_sym_try] = ACTIONS(4385), + [anon_sym_delete] = ACTIONS(4385), + [anon_sym_throw] = ACTIONS(4385), + [anon_sym_namespace] = ACTIONS(4385), + [anon_sym_static_assert] = ACTIONS(4385), + [anon_sym_concept] = ACTIONS(4385), + [anon_sym_co_return] = ACTIONS(4385), + [anon_sym_co_yield] = ACTIONS(4385), + [anon_sym_R_DQUOTE] = ACTIONS(4387), + [anon_sym_LR_DQUOTE] = ACTIONS(4387), + [anon_sym_uR_DQUOTE] = ACTIONS(4387), + [anon_sym_UR_DQUOTE] = ACTIONS(4387), + [anon_sym_u8R_DQUOTE] = ACTIONS(4387), + [anon_sym_co_await] = ACTIONS(4385), + [anon_sym_new] = ACTIONS(4385), + [anon_sym_requires] = ACTIONS(4385), + [anon_sym_CARET_CARET] = ACTIONS(4387), + [anon_sym_LBRACK_COLON] = ACTIONS(4387), + [sym_this] = ACTIONS(4385), }, - [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), + [STATE(901)] = { + [sym_preproc_def] = STATE(909), + [sym_preproc_function_def] = STATE(909), + [sym_preproc_call] = STATE(909), + [sym_preproc_if_in_field_declaration_list] = STATE(909), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(909), + [sym_type_definition] = STATE(909), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(909), + [sym_field_declaration] = STATE(909), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(909), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(909), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(909), + [sym_operator_cast_declaration] = STATE(909), + [sym_constructor_or_destructor_definition] = STATE(909), + [sym_constructor_or_destructor_declaration] = STATE(909), + [sym_friend_declaration] = STATE(909), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(909), + [sym_alias_declaration] = STATE(909), + [sym_static_assert_declaration] = STATE(909), + [sym_consteval_block_declaration] = STATE(909), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(909), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4720), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4763), + [anon_sym_RBRACE] = ACTIONS(4722), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -187377,7 +191466,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -187387,57 +191476,1169 @@ 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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(902)] = { + [ts_builtin_sym_end] = ACTIONS(4391), + [sym_identifier] = ACTIONS(4389), + [aux_sym_preproc_include_token1] = ACTIONS(4389), + [aux_sym_preproc_def_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token1] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4389), + [sym_preproc_directive] = ACTIONS(4389), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_typedef] = ACTIONS(4389), + [anon_sym_virtual] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym___attribute__] = ACTIONS(4389), + [anon_sym___attribute] = ACTIONS(4389), + [anon_sym_using] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4391), + [anon_sym___declspec] = ACTIONS(4389), + [anon_sym___based] = ACTIONS(4389), + [anon_sym___cdecl] = ACTIONS(4389), + [anon_sym___clrcall] = ACTIONS(4389), + [anon_sym___stdcall] = ACTIONS(4389), + [anon_sym___fastcall] = ACTIONS(4389), + [anon_sym___thiscall] = ACTIONS(4389), + [anon_sym___vectorcall] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4391), + [anon_sym_signed] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym___inline] = ACTIONS(4389), + [anon_sym___inline__] = ACTIONS(4389), + [anon_sym___forceinline] = ACTIONS(4389), + [anon_sym_thread_local] = ACTIONS(4389), + [anon_sym___thread] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_constinit] = ACTIONS(4389), + [anon_sym_consteval] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4389), + [anon_sym__Alignas] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_class] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_switch] = ACTIONS(4389), + [anon_sym_case] = ACTIONS(4389), + [anon_sym_default] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_do] = ACTIONS(4389), + [anon_sym_for] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_goto] = ACTIONS(4389), + [anon_sym_not] = ACTIONS(4389), + [anon_sym_compl] = ACTIONS(4389), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_sizeof] = ACTIONS(4389), + [anon_sym___alignof__] = ACTIONS(4389), + [anon_sym___alignof] = ACTIONS(4389), + [anon_sym__alignof] = ACTIONS(4389), + [anon_sym_alignof] = ACTIONS(4389), + [anon_sym__Alignof] = ACTIONS(4389), + [anon_sym_offsetof] = ACTIONS(4389), + [anon_sym__Generic] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [anon_sym_asm] = ACTIONS(4389), + [anon_sym___asm__] = ACTIONS(4389), + [anon_sym___asm] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4391), + [anon_sym_L_SQUOTE] = ACTIONS(4391), + [anon_sym_u_SQUOTE] = ACTIONS(4391), + [anon_sym_U_SQUOTE] = ACTIONS(4391), + [anon_sym_u8_SQUOTE] = ACTIONS(4391), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_L_DQUOTE] = ACTIONS(4391), + [anon_sym_u_DQUOTE] = ACTIONS(4391), + [anon_sym_U_DQUOTE] = ACTIONS(4391), + [anon_sym_u8_DQUOTE] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [anon_sym_NULL] = ACTIONS(4389), + [anon_sym_nullptr] = ACTIONS(4389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4389), + [anon_sym_decltype] = ACTIONS(4389), + [anon_sym_explicit] = ACTIONS(4389), + [anon_sym_export] = ACTIONS(4389), + [anon_sym_module] = ACTIONS(4389), + [anon_sym_import] = ACTIONS(4389), + [anon_sym_template] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_try] = ACTIONS(4389), + [anon_sym_delete] = ACTIONS(4389), + [anon_sym_throw] = ACTIONS(4389), + [anon_sym_namespace] = ACTIONS(4389), + [anon_sym_static_assert] = ACTIONS(4389), + [anon_sym_concept] = ACTIONS(4389), + [anon_sym_co_return] = ACTIONS(4389), + [anon_sym_co_yield] = ACTIONS(4389), + [anon_sym_R_DQUOTE] = ACTIONS(4391), + [anon_sym_LR_DQUOTE] = ACTIONS(4391), + [anon_sym_uR_DQUOTE] = ACTIONS(4391), + [anon_sym_UR_DQUOTE] = ACTIONS(4391), + [anon_sym_u8R_DQUOTE] = ACTIONS(4391), + [anon_sym_co_await] = ACTIONS(4389), + [anon_sym_new] = ACTIONS(4389), + [anon_sym_requires] = ACTIONS(4389), + [anon_sym_CARET_CARET] = ACTIONS(4391), + [anon_sym_LBRACK_COLON] = ACTIONS(4391), + [sym_this] = ACTIONS(4389), + }, + [STATE(903)] = { + [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), + }, + [STATE(904)] = { + [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), + }, + [STATE(905)] = { + [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(906)] = { + [ts_builtin_sym_end] = ACTIONS(4168), + [sym_identifier] = ACTIONS(4166), + [aux_sym_preproc_include_token1] = ACTIONS(4166), + [aux_sym_preproc_def_token1] = ACTIONS(4166), + [aux_sym_preproc_if_token1] = ACTIONS(4166), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4166), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4166), + [sym_preproc_directive] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4168), + [anon_sym_BANG] = ACTIONS(4168), + [anon_sym_TILDE] = ACTIONS(4168), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_SEMI] = ACTIONS(4168), + [anon_sym___extension__] = ACTIONS(4166), + [anon_sym_typedef] = ACTIONS(4166), + [anon_sym_virtual] = ACTIONS(4166), + [anon_sym_extern] = ACTIONS(4166), + [anon_sym___attribute__] = ACTIONS(4166), + [anon_sym___attribute] = ACTIONS(4166), + [anon_sym_using] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4168), + [anon_sym___declspec] = ACTIONS(4166), + [anon_sym___based] = ACTIONS(4166), + [anon_sym___cdecl] = ACTIONS(4166), + [anon_sym___clrcall] = ACTIONS(4166), + [anon_sym___stdcall] = ACTIONS(4166), + [anon_sym___fastcall] = ACTIONS(4166), + [anon_sym___thiscall] = ACTIONS(4166), + [anon_sym___vectorcall] = ACTIONS(4166), + [anon_sym_LBRACE] = ACTIONS(4168), + [anon_sym_signed] = ACTIONS(4166), + [anon_sym_unsigned] = ACTIONS(4166), + [anon_sym_long] = ACTIONS(4166), + [anon_sym_short] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_static] = ACTIONS(4166), + [anon_sym_register] = ACTIONS(4166), + [anon_sym_inline] = ACTIONS(4166), + [anon_sym___inline] = ACTIONS(4166), + [anon_sym___inline__] = ACTIONS(4166), + [anon_sym___forceinline] = ACTIONS(4166), + [anon_sym_thread_local] = ACTIONS(4166), + [anon_sym___thread] = ACTIONS(4166), + [anon_sym_const] = ACTIONS(4166), + [anon_sym_constexpr] = ACTIONS(4166), + [anon_sym_volatile] = ACTIONS(4166), + [anon_sym_restrict] = ACTIONS(4166), + [anon_sym___restrict__] = ACTIONS(4166), + [anon_sym__Atomic] = ACTIONS(4166), + [anon_sym__Noreturn] = ACTIONS(4166), + [anon_sym_noreturn] = ACTIONS(4166), + [anon_sym__Nonnull] = ACTIONS(4166), + [anon_sym_mutable] = ACTIONS(4166), + [anon_sym_constinit] = ACTIONS(4166), + [anon_sym_consteval] = ACTIONS(4166), + [anon_sym_alignas] = ACTIONS(4166), + [anon_sym__Alignas] = ACTIONS(4166), + [sym_primitive_type] = ACTIONS(4166), + [anon_sym_enum] = ACTIONS(4166), + [anon_sym_class] = ACTIONS(4166), + [anon_sym_struct] = ACTIONS(4166), + [anon_sym_union] = ACTIONS(4166), + [anon_sym_if] = ACTIONS(4166), + [anon_sym_switch] = ACTIONS(4166), + [anon_sym_case] = ACTIONS(4166), + [anon_sym_default] = ACTIONS(4166), + [anon_sym_while] = ACTIONS(4166), + [anon_sym_do] = ACTIONS(4166), + [anon_sym_for] = ACTIONS(4166), + [anon_sym_return] = ACTIONS(4166), + [anon_sym_break] = ACTIONS(4166), + [anon_sym_continue] = ACTIONS(4166), + [anon_sym_goto] = ACTIONS(4166), + [anon_sym_not] = ACTIONS(4166), + [anon_sym_compl] = ACTIONS(4166), + [anon_sym_DASH_DASH] = ACTIONS(4168), + [anon_sym_PLUS_PLUS] = ACTIONS(4168), + [anon_sym_sizeof] = ACTIONS(4166), + [anon_sym___alignof__] = ACTIONS(4166), + [anon_sym___alignof] = ACTIONS(4166), + [anon_sym__alignof] = ACTIONS(4166), + [anon_sym_alignof] = ACTIONS(4166), + [anon_sym__Alignof] = ACTIONS(4166), + [anon_sym_offsetof] = ACTIONS(4166), + [anon_sym__Generic] = ACTIONS(4166), + [anon_sym_typename] = ACTIONS(4166), + [anon_sym_asm] = ACTIONS(4166), + [anon_sym___asm__] = ACTIONS(4166), + [anon_sym___asm] = ACTIONS(4166), + [sym_number_literal] = ACTIONS(4168), + [anon_sym_L_SQUOTE] = ACTIONS(4168), + [anon_sym_u_SQUOTE] = ACTIONS(4168), + [anon_sym_U_SQUOTE] = ACTIONS(4168), + [anon_sym_u8_SQUOTE] = ACTIONS(4168), + [anon_sym_SQUOTE] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(4168), + [anon_sym_u_DQUOTE] = ACTIONS(4168), + [anon_sym_U_DQUOTE] = ACTIONS(4168), + [anon_sym_u8_DQUOTE] = ACTIONS(4168), + [anon_sym_DQUOTE] = ACTIONS(4168), + [sym_true] = ACTIONS(4166), + [sym_false] = ACTIONS(4166), + [anon_sym_NULL] = ACTIONS(4166), + [anon_sym_nullptr] = ACTIONS(4166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4166), + [anon_sym_decltype] = ACTIONS(4166), + [anon_sym_explicit] = ACTIONS(4166), + [anon_sym_export] = ACTIONS(4166), + [anon_sym_module] = ACTIONS(4166), + [anon_sym_import] = ACTIONS(4166), + [anon_sym_template] = ACTIONS(4166), + [anon_sym_operator] = ACTIONS(4166), + [anon_sym_try] = ACTIONS(4166), + [anon_sym_delete] = ACTIONS(4166), + [anon_sym_throw] = ACTIONS(4166), + [anon_sym_namespace] = ACTIONS(4166), + [anon_sym_static_assert] = ACTIONS(4166), + [anon_sym_concept] = ACTIONS(4166), + [anon_sym_co_return] = ACTIONS(4166), + [anon_sym_co_yield] = ACTIONS(4166), + [anon_sym_R_DQUOTE] = ACTIONS(4168), + [anon_sym_LR_DQUOTE] = ACTIONS(4168), + [anon_sym_uR_DQUOTE] = ACTIONS(4168), + [anon_sym_UR_DQUOTE] = ACTIONS(4168), + [anon_sym_u8R_DQUOTE] = ACTIONS(4168), + [anon_sym_co_await] = ACTIONS(4166), + [anon_sym_new] = ACTIONS(4166), + [anon_sym_requires] = ACTIONS(4166), + [anon_sym_CARET_CARET] = ACTIONS(4168), + [anon_sym_LBRACK_COLON] = ACTIONS(4168), + [sym_this] = ACTIONS(4166), + }, + [STATE(907)] = { + [ts_builtin_sym_end] = ACTIONS(3999), + [sym_identifier] = ACTIONS(3997), + [aux_sym_preproc_include_token1] = ACTIONS(3997), + [aux_sym_preproc_def_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [sym_preproc_directive] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3999), + [anon_sym_BANG] = ACTIONS(3999), + [anon_sym_TILDE] = ACTIONS(3999), + [anon_sym_DASH] = ACTIONS(3997), + [anon_sym_PLUS] = ACTIONS(3997), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_SEMI] = ACTIONS(3999), + [anon_sym___extension__] = ACTIONS(3997), + [anon_sym_typedef] = ACTIONS(3997), + [anon_sym_virtual] = ACTIONS(3997), + [anon_sym_extern] = ACTIONS(3997), + [anon_sym___attribute__] = ACTIONS(3997), + [anon_sym___attribute] = ACTIONS(3997), + [anon_sym_using] = ACTIONS(3997), + [anon_sym_COLON_COLON] = ACTIONS(3999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3999), + [anon_sym___declspec] = ACTIONS(3997), + [anon_sym___based] = ACTIONS(3997), + [anon_sym___cdecl] = ACTIONS(3997), + [anon_sym___clrcall] = ACTIONS(3997), + [anon_sym___stdcall] = ACTIONS(3997), + [anon_sym___fastcall] = ACTIONS(3997), + [anon_sym___thiscall] = ACTIONS(3997), + [anon_sym___vectorcall] = ACTIONS(3997), + [anon_sym_LBRACE] = ACTIONS(3999), + [anon_sym_signed] = ACTIONS(3997), + [anon_sym_unsigned] = ACTIONS(3997), + [anon_sym_long] = ACTIONS(3997), + [anon_sym_short] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_register] = ACTIONS(3997), + [anon_sym_inline] = ACTIONS(3997), + [anon_sym___inline] = ACTIONS(3997), + [anon_sym___inline__] = ACTIONS(3997), + [anon_sym___forceinline] = ACTIONS(3997), + [anon_sym_thread_local] = ACTIONS(3997), + [anon_sym___thread] = ACTIONS(3997), + [anon_sym_const] = ACTIONS(3997), + [anon_sym_constexpr] = ACTIONS(3997), + [anon_sym_volatile] = ACTIONS(3997), + [anon_sym_restrict] = ACTIONS(3997), + [anon_sym___restrict__] = ACTIONS(3997), + [anon_sym__Atomic] = ACTIONS(3997), + [anon_sym__Noreturn] = ACTIONS(3997), + [anon_sym_noreturn] = ACTIONS(3997), + [anon_sym__Nonnull] = ACTIONS(3997), + [anon_sym_mutable] = ACTIONS(3997), + [anon_sym_constinit] = ACTIONS(3997), + [anon_sym_consteval] = ACTIONS(3997), + [anon_sym_alignas] = ACTIONS(3997), + [anon_sym__Alignas] = ACTIONS(3997), + [sym_primitive_type] = ACTIONS(3997), + [anon_sym_enum] = ACTIONS(3997), + [anon_sym_class] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3997), + [anon_sym_union] = ACTIONS(3997), + [anon_sym_if] = ACTIONS(3997), + [anon_sym_switch] = ACTIONS(3997), + [anon_sym_case] = ACTIONS(3997), + [anon_sym_default] = ACTIONS(3997), + [anon_sym_while] = ACTIONS(3997), + [anon_sym_do] = ACTIONS(3997), + [anon_sym_for] = ACTIONS(3997), + [anon_sym_return] = ACTIONS(3997), + [anon_sym_break] = ACTIONS(3997), + [anon_sym_continue] = ACTIONS(3997), + [anon_sym_goto] = ACTIONS(3997), + [anon_sym_not] = ACTIONS(3997), + [anon_sym_compl] = ACTIONS(3997), + [anon_sym_DASH_DASH] = ACTIONS(3999), + [anon_sym_PLUS_PLUS] = ACTIONS(3999), + [anon_sym_sizeof] = ACTIONS(3997), + [anon_sym___alignof__] = ACTIONS(3997), + [anon_sym___alignof] = ACTIONS(3997), + [anon_sym__alignof] = ACTIONS(3997), + [anon_sym_alignof] = ACTIONS(3997), + [anon_sym__Alignof] = ACTIONS(3997), + [anon_sym_offsetof] = ACTIONS(3997), + [anon_sym__Generic] = ACTIONS(3997), + [anon_sym_typename] = ACTIONS(3997), + [anon_sym_asm] = ACTIONS(3997), + [anon_sym___asm__] = ACTIONS(3997), + [anon_sym___asm] = ACTIONS(3997), + [sym_number_literal] = ACTIONS(3999), + [anon_sym_L_SQUOTE] = ACTIONS(3999), + [anon_sym_u_SQUOTE] = ACTIONS(3999), + [anon_sym_U_SQUOTE] = ACTIONS(3999), + [anon_sym_u8_SQUOTE] = ACTIONS(3999), + [anon_sym_SQUOTE] = ACTIONS(3999), + [anon_sym_L_DQUOTE] = ACTIONS(3999), + [anon_sym_u_DQUOTE] = ACTIONS(3999), + [anon_sym_U_DQUOTE] = ACTIONS(3999), + [anon_sym_u8_DQUOTE] = ACTIONS(3999), + [anon_sym_DQUOTE] = ACTIONS(3999), + [sym_true] = ACTIONS(3997), + [sym_false] = ACTIONS(3997), + [anon_sym_NULL] = ACTIONS(3997), + [anon_sym_nullptr] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3997), + [anon_sym_decltype] = ACTIONS(3997), + [anon_sym_explicit] = ACTIONS(3997), + [anon_sym_export] = ACTIONS(3997), + [anon_sym_module] = ACTIONS(3997), + [anon_sym_import] = ACTIONS(3997), + [anon_sym_template] = ACTIONS(3997), + [anon_sym_operator] = ACTIONS(3997), + [anon_sym_try] = ACTIONS(3997), + [anon_sym_delete] = ACTIONS(3997), + [anon_sym_throw] = ACTIONS(3997), + [anon_sym_namespace] = ACTIONS(3997), + [anon_sym_static_assert] = ACTIONS(3997), + [anon_sym_concept] = ACTIONS(3997), + [anon_sym_co_return] = ACTIONS(3997), + [anon_sym_co_yield] = ACTIONS(3997), + [anon_sym_R_DQUOTE] = ACTIONS(3999), + [anon_sym_LR_DQUOTE] = ACTIONS(3999), + [anon_sym_uR_DQUOTE] = ACTIONS(3999), + [anon_sym_UR_DQUOTE] = ACTIONS(3999), + [anon_sym_u8R_DQUOTE] = ACTIONS(3999), + [anon_sym_co_await] = ACTIONS(3997), + [anon_sym_new] = ACTIONS(3997), + [anon_sym_requires] = ACTIONS(3997), + [anon_sym_CARET_CARET] = ACTIONS(3999), + [anon_sym_LBRACK_COLON] = ACTIONS(3999), + [sym_this] = ACTIONS(3997), + }, + [STATE(908)] = { + [ts_builtin_sym_end] = ACTIONS(4407), + [sym_identifier] = ACTIONS(4405), + [aux_sym_preproc_include_token1] = ACTIONS(4405), + [aux_sym_preproc_def_token1] = ACTIONS(4405), + [aux_sym_preproc_if_token1] = ACTIONS(4405), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4405), + [sym_preproc_directive] = ACTIONS(4405), + [anon_sym_LPAREN2] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4407), + [anon_sym_AMP_AMP] = ACTIONS(4407), + [anon_sym_AMP] = ACTIONS(4405), + [anon_sym_SEMI] = ACTIONS(4407), + [anon_sym___extension__] = ACTIONS(4405), + [anon_sym_typedef] = ACTIONS(4405), + [anon_sym_virtual] = ACTIONS(4405), + [anon_sym_extern] = ACTIONS(4405), + [anon_sym___attribute__] = ACTIONS(4405), + [anon_sym___attribute] = ACTIONS(4405), + [anon_sym_using] = ACTIONS(4405), + [anon_sym_COLON_COLON] = ACTIONS(4407), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4407), + [anon_sym___declspec] = ACTIONS(4405), + [anon_sym___based] = ACTIONS(4405), + [anon_sym___cdecl] = ACTIONS(4405), + [anon_sym___clrcall] = ACTIONS(4405), + [anon_sym___stdcall] = ACTIONS(4405), + [anon_sym___fastcall] = ACTIONS(4405), + [anon_sym___thiscall] = ACTIONS(4405), + [anon_sym___vectorcall] = ACTIONS(4405), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_signed] = ACTIONS(4405), + [anon_sym_unsigned] = ACTIONS(4405), + [anon_sym_long] = ACTIONS(4405), + [anon_sym_short] = ACTIONS(4405), + [anon_sym_LBRACK] = ACTIONS(4405), + [anon_sym_static] = ACTIONS(4405), + [anon_sym_register] = ACTIONS(4405), + [anon_sym_inline] = ACTIONS(4405), + [anon_sym___inline] = ACTIONS(4405), + [anon_sym___inline__] = ACTIONS(4405), + [anon_sym___forceinline] = ACTIONS(4405), + [anon_sym_thread_local] = ACTIONS(4405), + [anon_sym___thread] = ACTIONS(4405), + [anon_sym_const] = ACTIONS(4405), + [anon_sym_constexpr] = ACTIONS(4405), + [anon_sym_volatile] = ACTIONS(4405), + [anon_sym_restrict] = ACTIONS(4405), + [anon_sym___restrict__] = ACTIONS(4405), + [anon_sym__Atomic] = ACTIONS(4405), + [anon_sym__Noreturn] = ACTIONS(4405), + [anon_sym_noreturn] = ACTIONS(4405), + [anon_sym__Nonnull] = ACTIONS(4405), + [anon_sym_mutable] = ACTIONS(4405), + [anon_sym_constinit] = ACTIONS(4405), + [anon_sym_consteval] = ACTIONS(4405), + [anon_sym_alignas] = ACTIONS(4405), + [anon_sym__Alignas] = ACTIONS(4405), + [sym_primitive_type] = ACTIONS(4405), + [anon_sym_enum] = ACTIONS(4405), + [anon_sym_class] = ACTIONS(4405), + [anon_sym_struct] = ACTIONS(4405), + [anon_sym_union] = ACTIONS(4405), + [anon_sym_if] = ACTIONS(4405), + [anon_sym_switch] = ACTIONS(4405), + [anon_sym_case] = ACTIONS(4405), + [anon_sym_default] = ACTIONS(4405), + [anon_sym_while] = ACTIONS(4405), + [anon_sym_do] = ACTIONS(4405), + [anon_sym_for] = ACTIONS(4405), + [anon_sym_return] = ACTIONS(4405), + [anon_sym_break] = ACTIONS(4405), + [anon_sym_continue] = ACTIONS(4405), + [anon_sym_goto] = ACTIONS(4405), + [anon_sym_not] = ACTIONS(4405), + [anon_sym_compl] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_sizeof] = ACTIONS(4405), + [anon_sym___alignof__] = ACTIONS(4405), + [anon_sym___alignof] = ACTIONS(4405), + [anon_sym__alignof] = ACTIONS(4405), + [anon_sym_alignof] = ACTIONS(4405), + [anon_sym__Alignof] = ACTIONS(4405), + [anon_sym_offsetof] = ACTIONS(4405), + [anon_sym__Generic] = ACTIONS(4405), + [anon_sym_typename] = ACTIONS(4405), + [anon_sym_asm] = ACTIONS(4405), + [anon_sym___asm__] = ACTIONS(4405), + [anon_sym___asm] = ACTIONS(4405), + [sym_number_literal] = ACTIONS(4407), + [anon_sym_L_SQUOTE] = ACTIONS(4407), + [anon_sym_u_SQUOTE] = ACTIONS(4407), + [anon_sym_U_SQUOTE] = ACTIONS(4407), + [anon_sym_u8_SQUOTE] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_L_DQUOTE] = ACTIONS(4407), + [anon_sym_u_DQUOTE] = ACTIONS(4407), + [anon_sym_U_DQUOTE] = ACTIONS(4407), + [anon_sym_u8_DQUOTE] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [sym_true] = ACTIONS(4405), + [sym_false] = ACTIONS(4405), + [anon_sym_NULL] = ACTIONS(4405), + [anon_sym_nullptr] = ACTIONS(4405), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4405), + [anon_sym_decltype] = ACTIONS(4405), + [anon_sym_explicit] = ACTIONS(4405), + [anon_sym_export] = ACTIONS(4405), + [anon_sym_module] = ACTIONS(4405), + [anon_sym_import] = ACTIONS(4405), + [anon_sym_template] = ACTIONS(4405), + [anon_sym_operator] = ACTIONS(4405), + [anon_sym_try] = ACTIONS(4405), + [anon_sym_delete] = ACTIONS(4405), + [anon_sym_throw] = ACTIONS(4405), + [anon_sym_namespace] = ACTIONS(4405), + [anon_sym_static_assert] = ACTIONS(4405), + [anon_sym_concept] = ACTIONS(4405), + [anon_sym_co_return] = ACTIONS(4405), + [anon_sym_co_yield] = ACTIONS(4405), + [anon_sym_R_DQUOTE] = ACTIONS(4407), + [anon_sym_LR_DQUOTE] = ACTIONS(4407), + [anon_sym_uR_DQUOTE] = ACTIONS(4407), + [anon_sym_UR_DQUOTE] = ACTIONS(4407), + [anon_sym_u8R_DQUOTE] = ACTIONS(4407), + [anon_sym_co_await] = ACTIONS(4405), + [anon_sym_new] = ACTIONS(4405), + [anon_sym_requires] = ACTIONS(4405), + [anon_sym_CARET_CARET] = ACTIONS(4407), + [anon_sym_LBRACK_COLON] = ACTIONS(4407), + [sym_this] = ACTIONS(4405), + }, + [STATE(909)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(910)] = { + [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), @@ -187548,1633 +192749,1216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4524), [sym_this] = ACTIONS(4522), }, - [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), - }, - [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), - }, - [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), + [STATE(911)] = { + [ts_builtin_sym_end] = ACTIONS(4421), + [sym_identifier] = ACTIONS(4419), + [aux_sym_preproc_include_token1] = ACTIONS(4419), + [aux_sym_preproc_def_token1] = ACTIONS(4419), + [aux_sym_preproc_if_token1] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4419), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4419), + [sym_preproc_directive] = ACTIONS(4419), + [anon_sym_LPAREN2] = ACTIONS(4421), + [anon_sym_BANG] = ACTIONS(4421), + [anon_sym_TILDE] = ACTIONS(4421), + [anon_sym_DASH] = ACTIONS(4419), + [anon_sym_PLUS] = ACTIONS(4419), + [anon_sym_STAR] = ACTIONS(4421), + [anon_sym_AMP_AMP] = ACTIONS(4421), + [anon_sym_AMP] = ACTIONS(4419), + [anon_sym_SEMI] = ACTIONS(4421), + [anon_sym___extension__] = ACTIONS(4419), + [anon_sym_typedef] = ACTIONS(4419), + [anon_sym_virtual] = ACTIONS(4419), + [anon_sym_extern] = ACTIONS(4419), + [anon_sym___attribute__] = ACTIONS(4419), + [anon_sym___attribute] = ACTIONS(4419), + [anon_sym_using] = ACTIONS(4419), + [anon_sym_COLON_COLON] = ACTIONS(4421), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4421), + [anon_sym___declspec] = ACTIONS(4419), + [anon_sym___based] = ACTIONS(4419), + [anon_sym___cdecl] = ACTIONS(4419), + [anon_sym___clrcall] = ACTIONS(4419), + [anon_sym___stdcall] = ACTIONS(4419), + [anon_sym___fastcall] = ACTIONS(4419), + [anon_sym___thiscall] = ACTIONS(4419), + [anon_sym___vectorcall] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4421), + [anon_sym_signed] = ACTIONS(4419), + [anon_sym_unsigned] = ACTIONS(4419), + [anon_sym_long] = ACTIONS(4419), + [anon_sym_short] = ACTIONS(4419), + [anon_sym_LBRACK] = ACTIONS(4419), + [anon_sym_static] = ACTIONS(4419), + [anon_sym_register] = ACTIONS(4419), + [anon_sym_inline] = ACTIONS(4419), + [anon_sym___inline] = ACTIONS(4419), + [anon_sym___inline__] = ACTIONS(4419), + [anon_sym___forceinline] = ACTIONS(4419), + [anon_sym_thread_local] = ACTIONS(4419), + [anon_sym___thread] = ACTIONS(4419), + [anon_sym_const] = ACTIONS(4419), + [anon_sym_constexpr] = ACTIONS(4419), + [anon_sym_volatile] = ACTIONS(4419), + [anon_sym_restrict] = ACTIONS(4419), + [anon_sym___restrict__] = ACTIONS(4419), + [anon_sym__Atomic] = ACTIONS(4419), + [anon_sym__Noreturn] = ACTIONS(4419), + [anon_sym_noreturn] = ACTIONS(4419), + [anon_sym__Nonnull] = ACTIONS(4419), + [anon_sym_mutable] = ACTIONS(4419), + [anon_sym_constinit] = ACTIONS(4419), + [anon_sym_consteval] = ACTIONS(4419), + [anon_sym_alignas] = ACTIONS(4419), + [anon_sym__Alignas] = ACTIONS(4419), + [sym_primitive_type] = ACTIONS(4419), + [anon_sym_enum] = ACTIONS(4419), + [anon_sym_class] = ACTIONS(4419), + [anon_sym_struct] = ACTIONS(4419), + [anon_sym_union] = ACTIONS(4419), + [anon_sym_if] = ACTIONS(4419), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4419), + [anon_sym_default] = ACTIONS(4419), + [anon_sym_while] = ACTIONS(4419), + [anon_sym_do] = ACTIONS(4419), + [anon_sym_for] = ACTIONS(4419), + [anon_sym_return] = ACTIONS(4419), + [anon_sym_break] = ACTIONS(4419), + [anon_sym_continue] = ACTIONS(4419), + [anon_sym_goto] = ACTIONS(4419), + [anon_sym_not] = ACTIONS(4419), + [anon_sym_compl] = ACTIONS(4419), + [anon_sym_DASH_DASH] = ACTIONS(4421), + [anon_sym_PLUS_PLUS] = ACTIONS(4421), + [anon_sym_sizeof] = ACTIONS(4419), + [anon_sym___alignof__] = ACTIONS(4419), + [anon_sym___alignof] = ACTIONS(4419), + [anon_sym__alignof] = ACTIONS(4419), + [anon_sym_alignof] = ACTIONS(4419), + [anon_sym__Alignof] = ACTIONS(4419), + [anon_sym_offsetof] = ACTIONS(4419), + [anon_sym__Generic] = ACTIONS(4419), + [anon_sym_typename] = ACTIONS(4419), + [anon_sym_asm] = ACTIONS(4419), + [anon_sym___asm__] = ACTIONS(4419), + [anon_sym___asm] = ACTIONS(4419), + [sym_number_literal] = ACTIONS(4421), + [anon_sym_L_SQUOTE] = ACTIONS(4421), + [anon_sym_u_SQUOTE] = ACTIONS(4421), + [anon_sym_U_SQUOTE] = ACTIONS(4421), + [anon_sym_u8_SQUOTE] = ACTIONS(4421), + [anon_sym_SQUOTE] = ACTIONS(4421), + [anon_sym_L_DQUOTE] = ACTIONS(4421), + [anon_sym_u_DQUOTE] = ACTIONS(4421), + [anon_sym_U_DQUOTE] = ACTIONS(4421), + [anon_sym_u8_DQUOTE] = ACTIONS(4421), + [anon_sym_DQUOTE] = ACTIONS(4421), + [sym_true] = ACTIONS(4419), + [sym_false] = ACTIONS(4419), + [anon_sym_NULL] = ACTIONS(4419), + [anon_sym_nullptr] = ACTIONS(4419), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4419), + [anon_sym_decltype] = ACTIONS(4419), + [anon_sym_explicit] = ACTIONS(4419), + [anon_sym_export] = ACTIONS(4419), + [anon_sym_module] = ACTIONS(4419), + [anon_sym_import] = ACTIONS(4419), + [anon_sym_template] = ACTIONS(4419), + [anon_sym_operator] = ACTIONS(4419), + [anon_sym_try] = ACTIONS(4419), + [anon_sym_delete] = ACTIONS(4419), + [anon_sym_throw] = ACTIONS(4419), + [anon_sym_namespace] = ACTIONS(4419), + [anon_sym_static_assert] = ACTIONS(4419), + [anon_sym_concept] = ACTIONS(4419), + [anon_sym_co_return] = ACTIONS(4419), + [anon_sym_co_yield] = ACTIONS(4419), + [anon_sym_R_DQUOTE] = ACTIONS(4421), + [anon_sym_LR_DQUOTE] = ACTIONS(4421), + [anon_sym_uR_DQUOTE] = ACTIONS(4421), + [anon_sym_UR_DQUOTE] = ACTIONS(4421), + [anon_sym_u8R_DQUOTE] = ACTIONS(4421), + [anon_sym_co_await] = ACTIONS(4419), + [anon_sym_new] = ACTIONS(4419), + [anon_sym_requires] = ACTIONS(4419), + [anon_sym_CARET_CARET] = ACTIONS(4421), + [anon_sym_LBRACK_COLON] = ACTIONS(4421), + [sym_this] = ACTIONS(4419), }, - [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), + [STATE(912)] = { + [ts_builtin_sym_end] = ACTIONS(3979), + [sym_identifier] = ACTIONS(3977), + [aux_sym_preproc_include_token1] = ACTIONS(3977), + [aux_sym_preproc_def_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token1] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3977), + [sym_preproc_directive] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_TILDE] = ACTIONS(3979), + [anon_sym_DASH] = ACTIONS(3977), + [anon_sym_PLUS] = ACTIONS(3977), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_typedef] = ACTIONS(3977), + [anon_sym_virtual] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_using] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym___based] = ACTIONS(3977), + [anon_sym___cdecl] = ACTIONS(3977), + [anon_sym___clrcall] = ACTIONS(3977), + [anon_sym___stdcall] = ACTIONS(3977), + [anon_sym___fastcall] = ACTIONS(3977), + [anon_sym___thiscall] = ACTIONS(3977), + [anon_sym___vectorcall] = ACTIONS(3977), + [anon_sym_LBRACE] = ACTIONS(3979), + [anon_sym_signed] = ACTIONS(3977), + [anon_sym_unsigned] = ACTIONS(3977), + [anon_sym_long] = ACTIONS(3977), + [anon_sym_short] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_mutable] = ACTIONS(3977), + [anon_sym_constinit] = ACTIONS(3977), + [anon_sym_consteval] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [sym_primitive_type] = ACTIONS(3977), + [anon_sym_enum] = ACTIONS(3977), + [anon_sym_class] = ACTIONS(3977), + [anon_sym_struct] = ACTIONS(3977), + [anon_sym_union] = ACTIONS(3977), + [anon_sym_if] = ACTIONS(3977), + [anon_sym_switch] = ACTIONS(3977), + [anon_sym_case] = ACTIONS(3977), + [anon_sym_default] = ACTIONS(3977), + [anon_sym_while] = ACTIONS(3977), + [anon_sym_do] = ACTIONS(3977), + [anon_sym_for] = ACTIONS(3977), + [anon_sym_return] = ACTIONS(3977), + [anon_sym_break] = ACTIONS(3977), + [anon_sym_continue] = ACTIONS(3977), + [anon_sym_goto] = ACTIONS(3977), + [anon_sym_not] = ACTIONS(3977), + [anon_sym_compl] = ACTIONS(3977), + [anon_sym_DASH_DASH] = ACTIONS(3979), + [anon_sym_PLUS_PLUS] = ACTIONS(3979), + [anon_sym_sizeof] = ACTIONS(3977), + [anon_sym___alignof__] = ACTIONS(3977), + [anon_sym___alignof] = ACTIONS(3977), + [anon_sym__alignof] = ACTIONS(3977), + [anon_sym_alignof] = ACTIONS(3977), + [anon_sym__Alignof] = ACTIONS(3977), + [anon_sym_offsetof] = ACTIONS(3977), + [anon_sym__Generic] = ACTIONS(3977), + [anon_sym_typename] = ACTIONS(3977), + [anon_sym_asm] = ACTIONS(3977), + [anon_sym___asm__] = ACTIONS(3977), + [anon_sym___asm] = ACTIONS(3977), + [sym_number_literal] = ACTIONS(3979), + [anon_sym_L_SQUOTE] = ACTIONS(3979), + [anon_sym_u_SQUOTE] = ACTIONS(3979), + [anon_sym_U_SQUOTE] = ACTIONS(3979), + [anon_sym_u8_SQUOTE] = ACTIONS(3979), + [anon_sym_SQUOTE] = ACTIONS(3979), + [anon_sym_L_DQUOTE] = ACTIONS(3979), + [anon_sym_u_DQUOTE] = ACTIONS(3979), + [anon_sym_U_DQUOTE] = ACTIONS(3979), + [anon_sym_u8_DQUOTE] = ACTIONS(3979), + [anon_sym_DQUOTE] = ACTIONS(3979), + [sym_true] = ACTIONS(3977), + [sym_false] = ACTIONS(3977), + [anon_sym_NULL] = ACTIONS(3977), + [anon_sym_nullptr] = ACTIONS(3977), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3977), + [anon_sym_decltype] = ACTIONS(3977), + [anon_sym_explicit] = ACTIONS(3977), + [anon_sym_export] = ACTIONS(3977), + [anon_sym_module] = ACTIONS(3977), + [anon_sym_import] = ACTIONS(3977), + [anon_sym_template] = ACTIONS(3977), + [anon_sym_operator] = ACTIONS(3977), + [anon_sym_try] = ACTIONS(3977), + [anon_sym_delete] = ACTIONS(3977), + [anon_sym_throw] = ACTIONS(3977), + [anon_sym_namespace] = ACTIONS(3977), + [anon_sym_static_assert] = ACTIONS(3977), + [anon_sym_concept] = ACTIONS(3977), + [anon_sym_co_return] = ACTIONS(3977), + [anon_sym_co_yield] = ACTIONS(3977), + [anon_sym_R_DQUOTE] = ACTIONS(3979), + [anon_sym_LR_DQUOTE] = ACTIONS(3979), + [anon_sym_uR_DQUOTE] = ACTIONS(3979), + [anon_sym_UR_DQUOTE] = ACTIONS(3979), + [anon_sym_u8R_DQUOTE] = ACTIONS(3979), + [anon_sym_co_await] = ACTIONS(3977), + [anon_sym_new] = ACTIONS(3977), + [anon_sym_requires] = ACTIONS(3977), + [anon_sym_CARET_CARET] = ACTIONS(3979), + [anon_sym_LBRACK_COLON] = ACTIONS(3979), + [sym_this] = ACTIONS(3977), }, - [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), + [STATE(913)] = { + [sym_preproc_def] = STATE(971), + [sym_preproc_function_def] = STATE(971), + [sym_preproc_call] = STATE(971), + [sym_preproc_if_in_field_declaration_list] = STATE(971), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(971), + [sym_type_definition] = STATE(971), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9123), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9792), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(971), + [sym_field_declaration] = STATE(971), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2816), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(971), + [sym_operator_cast] = STATE(10372), + [sym_inline_method_definition] = STATE(971), + [sym__constructor_specifiers] = STATE(2816), + [sym_operator_cast_definition] = STATE(971), + [sym_operator_cast_declaration] = STATE(971), + [sym_constructor_or_destructor_definition] = STATE(971), + [sym_constructor_or_destructor_declaration] = STATE(971), + [sym_friend_declaration] = STATE(971), + [sym_access_specifier] = STATE(12347), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(971), + [sym_alias_declaration] = STATE(971), + [sym_static_assert_declaration] = STATE(971), + [sym_consteval_block_declaration] = STATE(971), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10372), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(971), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10759), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2816), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4728), + [aux_sym_preproc_if_token1] = ACTIONS(4730), + [aux_sym_preproc_if_token2] = ACTIONS(4732), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4734), + [sym_preproc_directive] = ACTIONS(4736), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4738), + [anon_sym___extension__] = ACTIONS(4740), + [anon_sym_typedef] = ACTIONS(4742), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4744), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [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(3530), + [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(4746), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4748), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(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), - }, - [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), - }, - [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), - }, - [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4752), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4754), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(914)] = { + [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(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_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), }, - [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), + [STATE(915)] = { + [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(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_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(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), + [STATE(916)] = { + [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(917)] = { + [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(918)] = { + [ts_builtin_sym_end] = ACTIONS(3983), + [sym_identifier] = ACTIONS(3981), + [aux_sym_preproc_include_token1] = ACTIONS(3981), + [aux_sym_preproc_def_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token1] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3981), + [sym_preproc_directive] = ACTIONS(3981), + [anon_sym_LPAREN2] = ACTIONS(3983), + [anon_sym_BANG] = ACTIONS(3983), + [anon_sym_TILDE] = ACTIONS(3983), + [anon_sym_DASH] = ACTIONS(3981), + [anon_sym_PLUS] = ACTIONS(3981), + [anon_sym_STAR] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym___extension__] = ACTIONS(3981), + [anon_sym_typedef] = ACTIONS(3981), + [anon_sym_virtual] = ACTIONS(3981), + [anon_sym_extern] = ACTIONS(3981), + [anon_sym___attribute__] = ACTIONS(3981), + [anon_sym___attribute] = ACTIONS(3981), + [anon_sym_using] = ACTIONS(3981), + [anon_sym_COLON_COLON] = ACTIONS(3983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3983), + [anon_sym___declspec] = ACTIONS(3981), + [anon_sym___based] = ACTIONS(3981), + [anon_sym___cdecl] = ACTIONS(3981), + [anon_sym___clrcall] = ACTIONS(3981), + [anon_sym___stdcall] = ACTIONS(3981), + [anon_sym___fastcall] = ACTIONS(3981), + [anon_sym___thiscall] = ACTIONS(3981), + [anon_sym___vectorcall] = ACTIONS(3981), + [anon_sym_LBRACE] = ACTIONS(3983), + [anon_sym_signed] = ACTIONS(3981), + [anon_sym_unsigned] = ACTIONS(3981), + [anon_sym_long] = ACTIONS(3981), + [anon_sym_short] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_register] = ACTIONS(3981), + [anon_sym_inline] = ACTIONS(3981), + [anon_sym___inline] = ACTIONS(3981), + [anon_sym___inline__] = ACTIONS(3981), + [anon_sym___forceinline] = ACTIONS(3981), + [anon_sym_thread_local] = ACTIONS(3981), + [anon_sym___thread] = ACTIONS(3981), + [anon_sym_const] = ACTIONS(3981), + [anon_sym_constexpr] = ACTIONS(3981), + [anon_sym_volatile] = ACTIONS(3981), + [anon_sym_restrict] = ACTIONS(3981), + [anon_sym___restrict__] = ACTIONS(3981), + [anon_sym__Atomic] = ACTIONS(3981), + [anon_sym__Noreturn] = ACTIONS(3981), + [anon_sym_noreturn] = ACTIONS(3981), + [anon_sym__Nonnull] = ACTIONS(3981), + [anon_sym_mutable] = ACTIONS(3981), + [anon_sym_constinit] = ACTIONS(3981), + [anon_sym_consteval] = ACTIONS(3981), + [anon_sym_alignas] = ACTIONS(3981), + [anon_sym__Alignas] = ACTIONS(3981), + [sym_primitive_type] = ACTIONS(3981), + [anon_sym_enum] = ACTIONS(3981), + [anon_sym_class] = ACTIONS(3981), + [anon_sym_struct] = ACTIONS(3981), + [anon_sym_union] = ACTIONS(3981), + [anon_sym_if] = ACTIONS(3981), + [anon_sym_switch] = ACTIONS(3981), + [anon_sym_case] = ACTIONS(3981), + [anon_sym_default] = ACTIONS(3981), + [anon_sym_while] = ACTIONS(3981), + [anon_sym_do] = ACTIONS(3981), + [anon_sym_for] = ACTIONS(3981), + [anon_sym_return] = ACTIONS(3981), + [anon_sym_break] = ACTIONS(3981), + [anon_sym_continue] = ACTIONS(3981), + [anon_sym_goto] = ACTIONS(3981), + [anon_sym_not] = ACTIONS(3981), + [anon_sym_compl] = ACTIONS(3981), + [anon_sym_DASH_DASH] = ACTIONS(3983), + [anon_sym_PLUS_PLUS] = ACTIONS(3983), + [anon_sym_sizeof] = ACTIONS(3981), + [anon_sym___alignof__] = ACTIONS(3981), + [anon_sym___alignof] = ACTIONS(3981), + [anon_sym__alignof] = ACTIONS(3981), + [anon_sym_alignof] = ACTIONS(3981), + [anon_sym__Alignof] = ACTIONS(3981), + [anon_sym_offsetof] = ACTIONS(3981), + [anon_sym__Generic] = ACTIONS(3981), + [anon_sym_typename] = ACTIONS(3981), + [anon_sym_asm] = ACTIONS(3981), + [anon_sym___asm__] = ACTIONS(3981), + [anon_sym___asm] = ACTIONS(3981), + [sym_number_literal] = ACTIONS(3983), + [anon_sym_L_SQUOTE] = ACTIONS(3983), + [anon_sym_u_SQUOTE] = ACTIONS(3983), + [anon_sym_U_SQUOTE] = ACTIONS(3983), + [anon_sym_u8_SQUOTE] = ACTIONS(3983), + [anon_sym_SQUOTE] = ACTIONS(3983), + [anon_sym_L_DQUOTE] = ACTIONS(3983), + [anon_sym_u_DQUOTE] = ACTIONS(3983), + [anon_sym_U_DQUOTE] = ACTIONS(3983), + [anon_sym_u8_DQUOTE] = ACTIONS(3983), + [anon_sym_DQUOTE] = ACTIONS(3983), + [sym_true] = ACTIONS(3981), + [sym_false] = ACTIONS(3981), + [anon_sym_NULL] = ACTIONS(3981), + [anon_sym_nullptr] = ACTIONS(3981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3981), + [anon_sym_decltype] = ACTIONS(3981), + [anon_sym_explicit] = ACTIONS(3981), + [anon_sym_export] = ACTIONS(3981), + [anon_sym_module] = ACTIONS(3981), + [anon_sym_import] = ACTIONS(3981), + [anon_sym_template] = ACTIONS(3981), + [anon_sym_operator] = ACTIONS(3981), + [anon_sym_try] = ACTIONS(3981), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_throw] = ACTIONS(3981), + [anon_sym_namespace] = ACTIONS(3981), + [anon_sym_static_assert] = ACTIONS(3981), + [anon_sym_concept] = ACTIONS(3981), + [anon_sym_co_return] = ACTIONS(3981), + [anon_sym_co_yield] = 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(3981), + [anon_sym_new] = ACTIONS(3981), + [anon_sym_requires] = ACTIONS(3981), + [anon_sym_CARET_CARET] = ACTIONS(3983), + [anon_sym_LBRACK_COLON] = ACTIONS(3983), + [sym_this] = ACTIONS(3981), + }, + [STATE(919)] = { + [sym_preproc_def] = STATE(924), + [sym_preproc_function_def] = STATE(924), + [sym_preproc_call] = STATE(924), + [sym_preproc_if_in_field_declaration_list] = STATE(924), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(924), + [sym_type_definition] = STATE(924), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(924), + [sym_field_declaration] = STATE(924), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(924), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(924), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(924), + [sym_operator_cast_declaration] = STATE(924), + [sym_constructor_or_destructor_definition] = STATE(924), + [sym_constructor_or_destructor_declaration] = STATE(924), + [sym_friend_declaration] = STATE(924), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(924), + [sym_alias_declaration] = STATE(924), + [sym_static_assert_declaration] = STATE(924), + [sym_consteval_block_declaration] = STATE(924), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(924), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4756), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4767), + [anon_sym_RBRACE] = ACTIONS(4758), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -189184,7 +193968,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -189194,821 +193978,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(920)] = { + [ts_builtin_sym_end] = ACTIONS(4058), + [sym_identifier] = ACTIONS(4056), + [aux_sym_preproc_include_token1] = ACTIONS(4056), + [aux_sym_preproc_def_token1] = ACTIONS(4056), + [aux_sym_preproc_if_token1] = ACTIONS(4056), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4056), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4056), + [sym_preproc_directive] = ACTIONS(4056), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_TILDE] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4056), + [anon_sym_PLUS] = ACTIONS(4056), + [anon_sym_STAR] = ACTIONS(4058), + [anon_sym_AMP_AMP] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4056), + [anon_sym_SEMI] = ACTIONS(4058), + [anon_sym___extension__] = ACTIONS(4056), + [anon_sym_typedef] = ACTIONS(4056), + [anon_sym_virtual] = ACTIONS(4056), + [anon_sym_extern] = ACTIONS(4056), + [anon_sym___attribute__] = ACTIONS(4056), + [anon_sym___attribute] = ACTIONS(4056), + [anon_sym_using] = ACTIONS(4056), + [anon_sym_COLON_COLON] = ACTIONS(4058), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4058), + [anon_sym___declspec] = ACTIONS(4056), + [anon_sym___based] = ACTIONS(4056), + [anon_sym___cdecl] = ACTIONS(4056), + [anon_sym___clrcall] = ACTIONS(4056), + [anon_sym___stdcall] = ACTIONS(4056), + [anon_sym___fastcall] = ACTIONS(4056), + [anon_sym___thiscall] = ACTIONS(4056), + [anon_sym___vectorcall] = ACTIONS(4056), + [anon_sym_LBRACE] = ACTIONS(4058), + [anon_sym_signed] = ACTIONS(4056), + [anon_sym_unsigned] = ACTIONS(4056), + [anon_sym_long] = ACTIONS(4056), + [anon_sym_short] = ACTIONS(4056), + [anon_sym_LBRACK] = ACTIONS(4056), + [anon_sym_static] = ACTIONS(4056), + [anon_sym_register] = ACTIONS(4056), + [anon_sym_inline] = ACTIONS(4056), + [anon_sym___inline] = ACTIONS(4056), + [anon_sym___inline__] = ACTIONS(4056), + [anon_sym___forceinline] = ACTIONS(4056), + [anon_sym_thread_local] = ACTIONS(4056), + [anon_sym___thread] = ACTIONS(4056), + [anon_sym_const] = ACTIONS(4056), + [anon_sym_constexpr] = ACTIONS(4056), + [anon_sym_volatile] = ACTIONS(4056), + [anon_sym_restrict] = ACTIONS(4056), + [anon_sym___restrict__] = ACTIONS(4056), + [anon_sym__Atomic] = ACTIONS(4056), + [anon_sym__Noreturn] = ACTIONS(4056), + [anon_sym_noreturn] = ACTIONS(4056), + [anon_sym__Nonnull] = ACTIONS(4056), + [anon_sym_mutable] = ACTIONS(4056), + [anon_sym_constinit] = ACTIONS(4056), + [anon_sym_consteval] = ACTIONS(4056), + [anon_sym_alignas] = ACTIONS(4056), + [anon_sym__Alignas] = ACTIONS(4056), + [sym_primitive_type] = ACTIONS(4056), + [anon_sym_enum] = ACTIONS(4056), + [anon_sym_class] = ACTIONS(4056), + [anon_sym_struct] = ACTIONS(4056), + [anon_sym_union] = ACTIONS(4056), + [anon_sym_if] = ACTIONS(4056), + [anon_sym_switch] = ACTIONS(4056), + [anon_sym_case] = ACTIONS(4056), + [anon_sym_default] = ACTIONS(4056), + [anon_sym_while] = ACTIONS(4056), + [anon_sym_do] = ACTIONS(4056), + [anon_sym_for] = ACTIONS(4056), + [anon_sym_return] = ACTIONS(4056), + [anon_sym_break] = ACTIONS(4056), + [anon_sym_continue] = ACTIONS(4056), + [anon_sym_goto] = ACTIONS(4056), + [anon_sym_not] = ACTIONS(4056), + [anon_sym_compl] = ACTIONS(4056), + [anon_sym_DASH_DASH] = ACTIONS(4058), + [anon_sym_PLUS_PLUS] = ACTIONS(4058), + [anon_sym_sizeof] = ACTIONS(4056), + [anon_sym___alignof__] = ACTIONS(4056), + [anon_sym___alignof] = ACTIONS(4056), + [anon_sym__alignof] = ACTIONS(4056), + [anon_sym_alignof] = ACTIONS(4056), + [anon_sym__Alignof] = ACTIONS(4056), + [anon_sym_offsetof] = ACTIONS(4056), + [anon_sym__Generic] = ACTIONS(4056), + [anon_sym_typename] = ACTIONS(4056), + [anon_sym_asm] = ACTIONS(4056), + [anon_sym___asm__] = ACTIONS(4056), + [anon_sym___asm] = ACTIONS(4056), + [sym_number_literal] = ACTIONS(4058), + [anon_sym_L_SQUOTE] = ACTIONS(4058), + [anon_sym_u_SQUOTE] = ACTIONS(4058), + [anon_sym_U_SQUOTE] = ACTIONS(4058), + [anon_sym_u8_SQUOTE] = ACTIONS(4058), + [anon_sym_SQUOTE] = ACTIONS(4058), + [anon_sym_L_DQUOTE] = ACTIONS(4058), + [anon_sym_u_DQUOTE] = ACTIONS(4058), + [anon_sym_U_DQUOTE] = ACTIONS(4058), + [anon_sym_u8_DQUOTE] = ACTIONS(4058), + [anon_sym_DQUOTE] = ACTIONS(4058), + [sym_true] = ACTIONS(4056), + [sym_false] = ACTIONS(4056), + [anon_sym_NULL] = ACTIONS(4056), + [anon_sym_nullptr] = ACTIONS(4056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4056), + [anon_sym_decltype] = ACTIONS(4056), + [anon_sym_explicit] = ACTIONS(4056), + [anon_sym_export] = ACTIONS(4056), + [anon_sym_module] = ACTIONS(4056), + [anon_sym_import] = ACTIONS(4056), + [anon_sym_template] = ACTIONS(4056), + [anon_sym_operator] = ACTIONS(4056), + [anon_sym_try] = ACTIONS(4056), + [anon_sym_delete] = ACTIONS(4056), + [anon_sym_throw] = ACTIONS(4056), + [anon_sym_namespace] = ACTIONS(4056), + [anon_sym_static_assert] = ACTIONS(4056), + [anon_sym_concept] = ACTIONS(4056), + [anon_sym_co_return] = ACTIONS(4056), + [anon_sym_co_yield] = ACTIONS(4056), + [anon_sym_R_DQUOTE] = ACTIONS(4058), + [anon_sym_LR_DQUOTE] = ACTIONS(4058), + [anon_sym_uR_DQUOTE] = ACTIONS(4058), + [anon_sym_UR_DQUOTE] = ACTIONS(4058), + [anon_sym_u8R_DQUOTE] = ACTIONS(4058), + [anon_sym_co_await] = ACTIONS(4056), + [anon_sym_new] = ACTIONS(4056), + [anon_sym_requires] = ACTIONS(4056), + [anon_sym_CARET_CARET] = ACTIONS(4058), + [anon_sym_LBRACK_COLON] = ACTIONS(4058), + [sym_this] = ACTIONS(4056), }, - [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), + [STATE(921)] = { + [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(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(922)] = { + [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(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(923)] = { + [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(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(924)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(925)] = { + [ts_builtin_sym_end] = ACTIONS(4062), + [sym_identifier] = ACTIONS(4060), + [aux_sym_preproc_include_token1] = ACTIONS(4060), + [aux_sym_preproc_def_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4060), + [sym_preproc_directive] = ACTIONS(4060), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4060), + [anon_sym_PLUS] = ACTIONS(4060), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym___extension__] = ACTIONS(4060), + [anon_sym_typedef] = ACTIONS(4060), + [anon_sym_virtual] = ACTIONS(4060), + [anon_sym_extern] = ACTIONS(4060), + [anon_sym___attribute__] = ACTIONS(4060), + [anon_sym___attribute] = ACTIONS(4060), + [anon_sym_using] = ACTIONS(4060), + [anon_sym_COLON_COLON] = ACTIONS(4062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4062), + [anon_sym___declspec] = ACTIONS(4060), + [anon_sym___based] = ACTIONS(4060), + [anon_sym___cdecl] = ACTIONS(4060), + [anon_sym___clrcall] = ACTIONS(4060), + [anon_sym___stdcall] = ACTIONS(4060), + [anon_sym___fastcall] = ACTIONS(4060), + [anon_sym___thiscall] = ACTIONS(4060), + [anon_sym___vectorcall] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(4062), + [anon_sym_signed] = ACTIONS(4060), + [anon_sym_unsigned] = ACTIONS(4060), + [anon_sym_long] = ACTIONS(4060), + [anon_sym_short] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_static] = ACTIONS(4060), + [anon_sym_register] = ACTIONS(4060), + [anon_sym_inline] = ACTIONS(4060), + [anon_sym___inline] = ACTIONS(4060), + [anon_sym___inline__] = ACTIONS(4060), + [anon_sym___forceinline] = ACTIONS(4060), + [anon_sym_thread_local] = ACTIONS(4060), + [anon_sym___thread] = ACTIONS(4060), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_constexpr] = ACTIONS(4060), + [anon_sym_volatile] = ACTIONS(4060), + [anon_sym_restrict] = ACTIONS(4060), + [anon_sym___restrict__] = ACTIONS(4060), + [anon_sym__Atomic] = ACTIONS(4060), + [anon_sym__Noreturn] = ACTIONS(4060), + [anon_sym_noreturn] = ACTIONS(4060), + [anon_sym__Nonnull] = ACTIONS(4060), + [anon_sym_mutable] = ACTIONS(4060), + [anon_sym_constinit] = ACTIONS(4060), + [anon_sym_consteval] = ACTIONS(4060), + [anon_sym_alignas] = ACTIONS(4060), + [anon_sym__Alignas] = ACTIONS(4060), + [sym_primitive_type] = ACTIONS(4060), + [anon_sym_enum] = ACTIONS(4060), + [anon_sym_class] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4060), + [anon_sym_union] = ACTIONS(4060), + [anon_sym_if] = ACTIONS(4060), + [anon_sym_switch] = ACTIONS(4060), + [anon_sym_case] = ACTIONS(4060), + [anon_sym_default] = ACTIONS(4060), + [anon_sym_while] = ACTIONS(4060), + [anon_sym_do] = ACTIONS(4060), + [anon_sym_for] = ACTIONS(4060), + [anon_sym_return] = ACTIONS(4060), + [anon_sym_break] = ACTIONS(4060), + [anon_sym_continue] = ACTIONS(4060), + [anon_sym_goto] = ACTIONS(4060), + [anon_sym_not] = ACTIONS(4060), + [anon_sym_compl] = ACTIONS(4060), + [anon_sym_DASH_DASH] = ACTIONS(4062), + [anon_sym_PLUS_PLUS] = ACTIONS(4062), + [anon_sym_sizeof] = ACTIONS(4060), + [anon_sym___alignof__] = ACTIONS(4060), + [anon_sym___alignof] = ACTIONS(4060), + [anon_sym__alignof] = ACTIONS(4060), + [anon_sym_alignof] = ACTIONS(4060), + [anon_sym__Alignof] = ACTIONS(4060), + [anon_sym_offsetof] = ACTIONS(4060), + [anon_sym__Generic] = ACTIONS(4060), + [anon_sym_typename] = ACTIONS(4060), + [anon_sym_asm] = ACTIONS(4060), + [anon_sym___asm__] = ACTIONS(4060), + [anon_sym___asm] = ACTIONS(4060), + [sym_number_literal] = ACTIONS(4062), + [anon_sym_L_SQUOTE] = ACTIONS(4062), + [anon_sym_u_SQUOTE] = ACTIONS(4062), + [anon_sym_U_SQUOTE] = ACTIONS(4062), + [anon_sym_u8_SQUOTE] = ACTIONS(4062), + [anon_sym_SQUOTE] = ACTIONS(4062), + [anon_sym_L_DQUOTE] = ACTIONS(4062), + [anon_sym_u_DQUOTE] = ACTIONS(4062), + [anon_sym_U_DQUOTE] = ACTIONS(4062), + [anon_sym_u8_DQUOTE] = ACTIONS(4062), + [anon_sym_DQUOTE] = ACTIONS(4062), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [anon_sym_NULL] = ACTIONS(4060), + [anon_sym_nullptr] = ACTIONS(4060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4060), + [anon_sym_decltype] = ACTIONS(4060), + [anon_sym_explicit] = ACTIONS(4060), + [anon_sym_export] = ACTIONS(4060), + [anon_sym_module] = ACTIONS(4060), + [anon_sym_import] = ACTIONS(4060), + [anon_sym_template] = ACTIONS(4060), + [anon_sym_operator] = ACTIONS(4060), + [anon_sym_try] = ACTIONS(4060), + [anon_sym_delete] = ACTIONS(4060), + [anon_sym_throw] = ACTIONS(4060), + [anon_sym_namespace] = ACTIONS(4060), + [anon_sym_static_assert] = ACTIONS(4060), + [anon_sym_concept] = ACTIONS(4060), + [anon_sym_co_return] = ACTIONS(4060), + [anon_sym_co_yield] = ACTIONS(4060), + [anon_sym_R_DQUOTE] = ACTIONS(4062), + [anon_sym_LR_DQUOTE] = ACTIONS(4062), + [anon_sym_uR_DQUOTE] = ACTIONS(4062), + [anon_sym_UR_DQUOTE] = ACTIONS(4062), + [anon_sym_u8R_DQUOTE] = ACTIONS(4062), + [anon_sym_co_await] = ACTIONS(4060), + [anon_sym_new] = ACTIONS(4060), + [anon_sym_requires] = ACTIONS(4060), + [anon_sym_CARET_CARET] = ACTIONS(4062), + [anon_sym_LBRACK_COLON] = ACTIONS(4062), + [sym_this] = ACTIONS(4060), + }, + [STATE(926)] = { + [ts_builtin_sym_end] = ACTIONS(4447), + [sym_identifier] = ACTIONS(4445), + [aux_sym_preproc_include_token1] = ACTIONS(4445), + [aux_sym_preproc_def_token1] = ACTIONS(4445), + [aux_sym_preproc_if_token1] = ACTIONS(4445), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4445), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4445), + [sym_preproc_directive] = ACTIONS(4445), + [anon_sym_LPAREN2] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_TILDE] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4445), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_AMP_AMP] = ACTIONS(4447), + [anon_sym_AMP] = ACTIONS(4445), + [anon_sym_SEMI] = ACTIONS(4447), + [anon_sym___extension__] = ACTIONS(4445), + [anon_sym_typedef] = ACTIONS(4445), + [anon_sym_virtual] = ACTIONS(4445), + [anon_sym_extern] = ACTIONS(4445), + [anon_sym___attribute__] = ACTIONS(4445), + [anon_sym___attribute] = ACTIONS(4445), + [anon_sym_using] = ACTIONS(4445), + [anon_sym_COLON_COLON] = ACTIONS(4447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4447), + [anon_sym___declspec] = ACTIONS(4445), + [anon_sym___based] = ACTIONS(4445), + [anon_sym___cdecl] = ACTIONS(4445), + [anon_sym___clrcall] = ACTIONS(4445), + [anon_sym___stdcall] = ACTIONS(4445), + [anon_sym___fastcall] = ACTIONS(4445), + [anon_sym___thiscall] = ACTIONS(4445), + [anon_sym___vectorcall] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4447), + [anon_sym_signed] = ACTIONS(4445), + [anon_sym_unsigned] = ACTIONS(4445), + [anon_sym_long] = ACTIONS(4445), + [anon_sym_short] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_static] = ACTIONS(4445), + [anon_sym_register] = ACTIONS(4445), + [anon_sym_inline] = ACTIONS(4445), + [anon_sym___inline] = ACTIONS(4445), + [anon_sym___inline__] = ACTIONS(4445), + [anon_sym___forceinline] = ACTIONS(4445), + [anon_sym_thread_local] = ACTIONS(4445), + [anon_sym___thread] = ACTIONS(4445), + [anon_sym_const] = ACTIONS(4445), + [anon_sym_constexpr] = ACTIONS(4445), + [anon_sym_volatile] = ACTIONS(4445), + [anon_sym_restrict] = ACTIONS(4445), + [anon_sym___restrict__] = ACTIONS(4445), + [anon_sym__Atomic] = ACTIONS(4445), + [anon_sym__Noreturn] = ACTIONS(4445), + [anon_sym_noreturn] = ACTIONS(4445), + [anon_sym__Nonnull] = ACTIONS(4445), + [anon_sym_mutable] = ACTIONS(4445), + [anon_sym_constinit] = ACTIONS(4445), + [anon_sym_consteval] = ACTIONS(4445), + [anon_sym_alignas] = ACTIONS(4445), + [anon_sym__Alignas] = ACTIONS(4445), + [sym_primitive_type] = ACTIONS(4445), + [anon_sym_enum] = ACTIONS(4445), + [anon_sym_class] = ACTIONS(4445), + [anon_sym_struct] = ACTIONS(4445), + [anon_sym_union] = ACTIONS(4445), + [anon_sym_if] = ACTIONS(4445), + [anon_sym_switch] = ACTIONS(4445), + [anon_sym_case] = ACTIONS(4445), + [anon_sym_default] = ACTIONS(4445), + [anon_sym_while] = ACTIONS(4445), + [anon_sym_do] = ACTIONS(4445), + [anon_sym_for] = ACTIONS(4445), + [anon_sym_return] = ACTIONS(4445), + [anon_sym_break] = ACTIONS(4445), + [anon_sym_continue] = ACTIONS(4445), + [anon_sym_goto] = ACTIONS(4445), + [anon_sym_not] = ACTIONS(4445), + [anon_sym_compl] = ACTIONS(4445), + [anon_sym_DASH_DASH] = ACTIONS(4447), + [anon_sym_PLUS_PLUS] = ACTIONS(4447), + [anon_sym_sizeof] = ACTIONS(4445), + [anon_sym___alignof__] = ACTIONS(4445), + [anon_sym___alignof] = ACTIONS(4445), + [anon_sym__alignof] = ACTIONS(4445), + [anon_sym_alignof] = ACTIONS(4445), + [anon_sym__Alignof] = ACTIONS(4445), + [anon_sym_offsetof] = ACTIONS(4445), + [anon_sym__Generic] = ACTIONS(4445), + [anon_sym_typename] = ACTIONS(4445), + [anon_sym_asm] = ACTIONS(4445), + [anon_sym___asm__] = ACTIONS(4445), + [anon_sym___asm] = ACTIONS(4445), + [sym_number_literal] = ACTIONS(4447), + [anon_sym_L_SQUOTE] = ACTIONS(4447), + [anon_sym_u_SQUOTE] = ACTIONS(4447), + [anon_sym_U_SQUOTE] = ACTIONS(4447), + [anon_sym_u8_SQUOTE] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_L_DQUOTE] = ACTIONS(4447), + [anon_sym_u_DQUOTE] = ACTIONS(4447), + [anon_sym_U_DQUOTE] = ACTIONS(4447), + [anon_sym_u8_DQUOTE] = ACTIONS(4447), + [anon_sym_DQUOTE] = ACTIONS(4447), + [sym_true] = ACTIONS(4445), + [sym_false] = ACTIONS(4445), + [anon_sym_NULL] = ACTIONS(4445), + [anon_sym_nullptr] = ACTIONS(4445), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4445), + [anon_sym_decltype] = ACTIONS(4445), + [anon_sym_explicit] = ACTIONS(4445), + [anon_sym_export] = ACTIONS(4445), + [anon_sym_module] = ACTIONS(4445), + [anon_sym_import] = ACTIONS(4445), + [anon_sym_template] = ACTIONS(4445), + [anon_sym_operator] = ACTIONS(4445), + [anon_sym_try] = ACTIONS(4445), + [anon_sym_delete] = ACTIONS(4445), + [anon_sym_throw] = ACTIONS(4445), + [anon_sym_namespace] = ACTIONS(4445), + [anon_sym_static_assert] = ACTIONS(4445), + [anon_sym_concept] = ACTIONS(4445), + [anon_sym_co_return] = ACTIONS(4445), + [anon_sym_co_yield] = ACTIONS(4445), + [anon_sym_R_DQUOTE] = ACTIONS(4447), + [anon_sym_LR_DQUOTE] = ACTIONS(4447), + [anon_sym_uR_DQUOTE] = ACTIONS(4447), + [anon_sym_UR_DQUOTE] = ACTIONS(4447), + [anon_sym_u8R_DQUOTE] = ACTIONS(4447), + [anon_sym_co_await] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4445), + [anon_sym_requires] = ACTIONS(4445), + [anon_sym_CARET_CARET] = ACTIONS(4447), + [anon_sym_LBRACK_COLON] = ACTIONS(4447), + [sym_this] = ACTIONS(4445), + }, + [STATE(927)] = { + [sym_preproc_def] = STATE(932), + [sym_preproc_function_def] = STATE(932), + [sym_preproc_call] = STATE(932), + [sym_preproc_if_in_field_declaration_list] = STATE(932), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(932), + [sym_type_definition] = STATE(932), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(932), + [sym_field_declaration] = STATE(932), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(932), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(932), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(932), + [sym_operator_cast_declaration] = STATE(932), + [sym_constructor_or_destructor_definition] = STATE(932), + [sym_constructor_or_destructor_declaration] = STATE(932), + [sym_friend_declaration] = STATE(932), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(932), + [sym_alias_declaration] = STATE(932), + [sym_static_assert_declaration] = STATE(932), + [sym_consteval_block_declaration] = STATE(932), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(932), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4769), + [anon_sym_RBRACE] = ACTIONS(4764), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -190018,7 +195080,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -190028,1377 +195090,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(928)] = { + [ts_builtin_sym_end] = ACTIONS(3706), + [sym_identifier] = ACTIONS(3704), + [aux_sym_preproc_include_token1] = ACTIONS(3704), + [aux_sym_preproc_def_token1] = ACTIONS(3704), + [aux_sym_preproc_if_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3704), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3704), + [sym_preproc_directive] = ACTIONS(3704), + [anon_sym_LPAREN2] = ACTIONS(3706), + [anon_sym_BANG] = ACTIONS(3706), + [anon_sym_TILDE] = ACTIONS(3706), + [anon_sym_DASH] = ACTIONS(3704), + [anon_sym_PLUS] = ACTIONS(3704), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AMP_AMP] = ACTIONS(3706), + [anon_sym_AMP] = ACTIONS(3704), + [anon_sym_SEMI] = ACTIONS(3706), + [anon_sym___extension__] = ACTIONS(3704), + [anon_sym_typedef] = ACTIONS(3704), + [anon_sym_virtual] = ACTIONS(3704), + [anon_sym_extern] = ACTIONS(3704), + [anon_sym___attribute__] = ACTIONS(3704), + [anon_sym___attribute] = ACTIONS(3704), + [anon_sym_using] = ACTIONS(3704), + [anon_sym_COLON_COLON] = ACTIONS(3706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3706), + [anon_sym___declspec] = ACTIONS(3704), + [anon_sym___based] = ACTIONS(3704), + [anon_sym___cdecl] = ACTIONS(3704), + [anon_sym___clrcall] = ACTIONS(3704), + [anon_sym___stdcall] = ACTIONS(3704), + [anon_sym___fastcall] = ACTIONS(3704), + [anon_sym___thiscall] = ACTIONS(3704), + [anon_sym___vectorcall] = ACTIONS(3704), + [anon_sym_LBRACE] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3704), + [anon_sym_unsigned] = ACTIONS(3704), + [anon_sym_long] = ACTIONS(3704), + [anon_sym_short] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3704), + [anon_sym_static] = ACTIONS(3704), + [anon_sym_register] = ACTIONS(3704), + [anon_sym_inline] = ACTIONS(3704), + [anon_sym___inline] = ACTIONS(3704), + [anon_sym___inline__] = ACTIONS(3704), + [anon_sym___forceinline] = ACTIONS(3704), + [anon_sym_thread_local] = ACTIONS(3704), + [anon_sym___thread] = ACTIONS(3704), + [anon_sym_const] = ACTIONS(3704), + [anon_sym_constexpr] = ACTIONS(3704), + [anon_sym_volatile] = ACTIONS(3704), + [anon_sym_restrict] = ACTIONS(3704), + [anon_sym___restrict__] = ACTIONS(3704), + [anon_sym__Atomic] = ACTIONS(3704), + [anon_sym__Noreturn] = ACTIONS(3704), + [anon_sym_noreturn] = ACTIONS(3704), + [anon_sym__Nonnull] = ACTIONS(3704), + [anon_sym_mutable] = ACTIONS(3704), + [anon_sym_constinit] = ACTIONS(3704), + [anon_sym_consteval] = ACTIONS(3704), + [anon_sym_alignas] = ACTIONS(3704), + [anon_sym__Alignas] = ACTIONS(3704), + [sym_primitive_type] = ACTIONS(3704), + [anon_sym_enum] = ACTIONS(3704), + [anon_sym_class] = ACTIONS(3704), + [anon_sym_struct] = ACTIONS(3704), + [anon_sym_union] = ACTIONS(3704), + [anon_sym_if] = ACTIONS(3704), + [anon_sym_switch] = ACTIONS(3704), + [anon_sym_case] = ACTIONS(3704), + [anon_sym_default] = ACTIONS(3704), + [anon_sym_while] = ACTIONS(3704), + [anon_sym_do] = ACTIONS(3704), + [anon_sym_for] = ACTIONS(3704), + [anon_sym_return] = ACTIONS(3704), + [anon_sym_break] = ACTIONS(3704), + [anon_sym_continue] = ACTIONS(3704), + [anon_sym_goto] = ACTIONS(3704), + [anon_sym_not] = ACTIONS(3704), + [anon_sym_compl] = ACTIONS(3704), + [anon_sym_DASH_DASH] = ACTIONS(3706), + [anon_sym_PLUS_PLUS] = ACTIONS(3706), + [anon_sym_sizeof] = ACTIONS(3704), + [anon_sym___alignof__] = ACTIONS(3704), + [anon_sym___alignof] = ACTIONS(3704), + [anon_sym__alignof] = ACTIONS(3704), + [anon_sym_alignof] = ACTIONS(3704), + [anon_sym__Alignof] = ACTIONS(3704), + [anon_sym_offsetof] = ACTIONS(3704), + [anon_sym__Generic] = ACTIONS(3704), + [anon_sym_typename] = ACTIONS(3704), + [anon_sym_asm] = ACTIONS(3704), + [anon_sym___asm__] = ACTIONS(3704), + [anon_sym___asm] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3706), + [anon_sym_L_SQUOTE] = ACTIONS(3706), + [anon_sym_u_SQUOTE] = ACTIONS(3706), + [anon_sym_U_SQUOTE] = ACTIONS(3706), + [anon_sym_u8_SQUOTE] = ACTIONS(3706), + [anon_sym_SQUOTE] = ACTIONS(3706), + [anon_sym_L_DQUOTE] = ACTIONS(3706), + [anon_sym_u_DQUOTE] = ACTIONS(3706), + [anon_sym_U_DQUOTE] = ACTIONS(3706), + [anon_sym_u8_DQUOTE] = ACTIONS(3706), + [anon_sym_DQUOTE] = ACTIONS(3706), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [anon_sym_NULL] = ACTIONS(3704), + [anon_sym_nullptr] = ACTIONS(3704), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3704), + [anon_sym_decltype] = ACTIONS(3704), + [anon_sym_explicit] = ACTIONS(3704), + [anon_sym_export] = ACTIONS(3704), + [anon_sym_module] = ACTIONS(3704), + [anon_sym_import] = ACTIONS(3704), + [anon_sym_template] = ACTIONS(3704), + [anon_sym_operator] = ACTIONS(3704), + [anon_sym_try] = ACTIONS(3704), + [anon_sym_delete] = ACTIONS(3704), + [anon_sym_throw] = ACTIONS(3704), + [anon_sym_namespace] = ACTIONS(3704), + [anon_sym_static_assert] = ACTIONS(3704), + [anon_sym_concept] = ACTIONS(3704), + [anon_sym_co_return] = ACTIONS(3704), + [anon_sym_co_yield] = ACTIONS(3704), + [anon_sym_R_DQUOTE] = ACTIONS(3706), + [anon_sym_LR_DQUOTE] = ACTIONS(3706), + [anon_sym_uR_DQUOTE] = ACTIONS(3706), + [anon_sym_UR_DQUOTE] = ACTIONS(3706), + [anon_sym_u8R_DQUOTE] = ACTIONS(3706), + [anon_sym_co_await] = ACTIONS(3704), + [anon_sym_new] = ACTIONS(3704), + [anon_sym_requires] = ACTIONS(3704), + [anon_sym_CARET_CARET] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3706), + [sym_this] = ACTIONS(3704), }, - [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(929)] = { + [ts_builtin_sym_end] = ACTIONS(4070), + [sym_identifier] = ACTIONS(4068), + [aux_sym_preproc_include_token1] = ACTIONS(4068), + [aux_sym_preproc_def_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4068), + [sym_preproc_directive] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4070), + [anon_sym_BANG] = ACTIONS(4070), + [anon_sym_TILDE] = ACTIONS(4070), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_PLUS] = ACTIONS(4068), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym___extension__] = ACTIONS(4068), + [anon_sym_typedef] = ACTIONS(4068), + [anon_sym_virtual] = ACTIONS(4068), + [anon_sym_extern] = ACTIONS(4068), + [anon_sym___attribute__] = ACTIONS(4068), + [anon_sym___attribute] = ACTIONS(4068), + [anon_sym_using] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4070), + [anon_sym___declspec] = ACTIONS(4068), + [anon_sym___based] = ACTIONS(4068), + [anon_sym___cdecl] = ACTIONS(4068), + [anon_sym___clrcall] = ACTIONS(4068), + [anon_sym___stdcall] = ACTIONS(4068), + [anon_sym___fastcall] = ACTIONS(4068), + [anon_sym___thiscall] = ACTIONS(4068), + [anon_sym___vectorcall] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_signed] = ACTIONS(4068), + [anon_sym_unsigned] = ACTIONS(4068), + [anon_sym_long] = ACTIONS(4068), + [anon_sym_short] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_register] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym___inline] = ACTIONS(4068), + [anon_sym___inline__] = ACTIONS(4068), + [anon_sym___forceinline] = ACTIONS(4068), + [anon_sym_thread_local] = ACTIONS(4068), + [anon_sym___thread] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4068), + [anon_sym_constexpr] = ACTIONS(4068), + [anon_sym_volatile] = ACTIONS(4068), + [anon_sym_restrict] = ACTIONS(4068), + [anon_sym___restrict__] = ACTIONS(4068), + [anon_sym__Atomic] = ACTIONS(4068), + [anon_sym__Noreturn] = ACTIONS(4068), + [anon_sym_noreturn] = ACTIONS(4068), + [anon_sym__Nonnull] = ACTIONS(4068), + [anon_sym_mutable] = ACTIONS(4068), + [anon_sym_constinit] = ACTIONS(4068), + [anon_sym_consteval] = ACTIONS(4068), + [anon_sym_alignas] = ACTIONS(4068), + [anon_sym__Alignas] = ACTIONS(4068), + [sym_primitive_type] = ACTIONS(4068), + [anon_sym_enum] = ACTIONS(4068), + [anon_sym_class] = ACTIONS(4068), + [anon_sym_struct] = ACTIONS(4068), + [anon_sym_union] = ACTIONS(4068), + [anon_sym_if] = ACTIONS(4068), + [anon_sym_switch] = ACTIONS(4068), + [anon_sym_case] = ACTIONS(4068), + [anon_sym_default] = ACTIONS(4068), + [anon_sym_while] = ACTIONS(4068), + [anon_sym_do] = ACTIONS(4068), + [anon_sym_for] = ACTIONS(4068), + [anon_sym_return] = ACTIONS(4068), + [anon_sym_break] = ACTIONS(4068), + [anon_sym_continue] = ACTIONS(4068), + [anon_sym_goto] = ACTIONS(4068), + [anon_sym_not] = ACTIONS(4068), + [anon_sym_compl] = ACTIONS(4068), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4068), + [anon_sym___alignof__] = ACTIONS(4068), + [anon_sym___alignof] = ACTIONS(4068), + [anon_sym__alignof] = ACTIONS(4068), + [anon_sym_alignof] = ACTIONS(4068), + [anon_sym__Alignof] = ACTIONS(4068), + [anon_sym_offsetof] = ACTIONS(4068), + [anon_sym__Generic] = ACTIONS(4068), + [anon_sym_typename] = ACTIONS(4068), + [anon_sym_asm] = ACTIONS(4068), + [anon_sym___asm__] = ACTIONS(4068), + [anon_sym___asm] = ACTIONS(4068), + [sym_number_literal] = ACTIONS(4070), + [anon_sym_L_SQUOTE] = ACTIONS(4070), + [anon_sym_u_SQUOTE] = ACTIONS(4070), + [anon_sym_U_SQUOTE] = ACTIONS(4070), + [anon_sym_u8_SQUOTE] = ACTIONS(4070), + [anon_sym_SQUOTE] = ACTIONS(4070), + [anon_sym_L_DQUOTE] = ACTIONS(4070), + [anon_sym_u_DQUOTE] = ACTIONS(4070), + [anon_sym_U_DQUOTE] = ACTIONS(4070), + [anon_sym_u8_DQUOTE] = ACTIONS(4070), + [anon_sym_DQUOTE] = ACTIONS(4070), + [sym_true] = ACTIONS(4068), + [sym_false] = ACTIONS(4068), + [anon_sym_NULL] = ACTIONS(4068), + [anon_sym_nullptr] = ACTIONS(4068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4068), + [anon_sym_decltype] = ACTIONS(4068), + [anon_sym_explicit] = ACTIONS(4068), + [anon_sym_export] = ACTIONS(4068), + [anon_sym_module] = ACTIONS(4068), + [anon_sym_import] = ACTIONS(4068), + [anon_sym_template] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_try] = ACTIONS(4068), + [anon_sym_delete] = ACTIONS(4068), + [anon_sym_throw] = ACTIONS(4068), + [anon_sym_namespace] = ACTIONS(4068), + [anon_sym_static_assert] = ACTIONS(4068), + [anon_sym_concept] = ACTIONS(4068), + [anon_sym_co_return] = ACTIONS(4068), + [anon_sym_co_yield] = ACTIONS(4068), + [anon_sym_R_DQUOTE] = ACTIONS(4070), + [anon_sym_LR_DQUOTE] = ACTIONS(4070), + [anon_sym_uR_DQUOTE] = ACTIONS(4070), + [anon_sym_UR_DQUOTE] = ACTIONS(4070), + [anon_sym_u8R_DQUOTE] = ACTIONS(4070), + [anon_sym_co_await] = ACTIONS(4068), + [anon_sym_new] = ACTIONS(4068), + [anon_sym_requires] = ACTIONS(4068), + [anon_sym_CARET_CARET] = ACTIONS(4070), + [anon_sym_LBRACK_COLON] = ACTIONS(4070), + [sym_this] = ACTIONS(4068), }, - [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(930)] = { + [ts_builtin_sym_end] = ACTIONS(3714), + [sym_identifier] = ACTIONS(3712), + [aux_sym_preproc_include_token1] = ACTIONS(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_BANG] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_DASH] = ACTIONS(3712), + [anon_sym_PLUS] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym___cdecl] = ACTIONS(3712), + [anon_sym___clrcall] = ACTIONS(3712), + [anon_sym___stdcall] = ACTIONS(3712), + [anon_sym___fastcall] = ACTIONS(3712), + [anon_sym___thiscall] = ACTIONS(3712), + [anon_sym___vectorcall] = ACTIONS(3712), + [anon_sym_LBRACE] = ACTIONS(3714), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3712), + [anon_sym_switch] = ACTIONS(3712), + [anon_sym_case] = ACTIONS(3712), + [anon_sym_default] = ACTIONS(3712), + [anon_sym_while] = ACTIONS(3712), + [anon_sym_do] = ACTIONS(3712), + [anon_sym_for] = ACTIONS(3712), + [anon_sym_return] = ACTIONS(3712), + [anon_sym_break] = ACTIONS(3712), + [anon_sym_continue] = ACTIONS(3712), + [anon_sym_goto] = ACTIONS(3712), + [anon_sym_not] = ACTIONS(3712), + [anon_sym_compl] = ACTIONS(3712), + [anon_sym_DASH_DASH] = ACTIONS(3714), + [anon_sym_PLUS_PLUS] = ACTIONS(3714), + [anon_sym_sizeof] = ACTIONS(3712), + [anon_sym___alignof__] = ACTIONS(3712), + [anon_sym___alignof] = ACTIONS(3712), + [anon_sym__alignof] = ACTIONS(3712), + [anon_sym_alignof] = ACTIONS(3712), + [anon_sym__Alignof] = ACTIONS(3712), + [anon_sym_offsetof] = ACTIONS(3712), + [anon_sym__Generic] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [anon_sym_asm] = ACTIONS(3712), + [anon_sym___asm__] = ACTIONS(3712), + [anon_sym___asm] = ACTIONS(3712), + [sym_number_literal] = ACTIONS(3714), + [anon_sym_L_SQUOTE] = ACTIONS(3714), + [anon_sym_u_SQUOTE] = ACTIONS(3714), + [anon_sym_U_SQUOTE] = ACTIONS(3714), + [anon_sym_u8_SQUOTE] = ACTIONS(3714), + [anon_sym_SQUOTE] = ACTIONS(3714), + [anon_sym_L_DQUOTE] = ACTIONS(3714), + [anon_sym_u_DQUOTE] = ACTIONS(3714), + [anon_sym_U_DQUOTE] = ACTIONS(3714), + [anon_sym_u8_DQUOTE] = ACTIONS(3714), + [anon_sym_DQUOTE] = ACTIONS(3714), + [sym_true] = ACTIONS(3712), + [sym_false] = ACTIONS(3712), + [anon_sym_NULL] = ACTIONS(3712), + [anon_sym_nullptr] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_export] = ACTIONS(3712), + [anon_sym_module] = ACTIONS(3712), + [anon_sym_import] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_try] = ACTIONS(3712), + [anon_sym_delete] = ACTIONS(3712), + [anon_sym_throw] = ACTIONS(3712), + [anon_sym_namespace] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_concept] = ACTIONS(3712), + [anon_sym_co_return] = ACTIONS(3712), + [anon_sym_co_yield] = ACTIONS(3712), + [anon_sym_R_DQUOTE] = ACTIONS(3714), + [anon_sym_LR_DQUOTE] = ACTIONS(3714), + [anon_sym_uR_DQUOTE] = ACTIONS(3714), + [anon_sym_UR_DQUOTE] = ACTIONS(3714), + [anon_sym_u8R_DQUOTE] = ACTIONS(3714), + [anon_sym_co_await] = ACTIONS(3712), + [anon_sym_new] = ACTIONS(3712), + [anon_sym_requires] = ACTIONS(3712), + [anon_sym_CARET_CARET] = ACTIONS(3714), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), + [sym_this] = ACTIONS(3712), }, - [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(931)] = { + [ts_builtin_sym_end] = ACTIONS(3987), + [sym_identifier] = ACTIONS(3985), + [aux_sym_preproc_include_token1] = ACTIONS(3985), + [aux_sym_preproc_def_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token1] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3985), + [sym_preproc_directive] = ACTIONS(3985), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_BANG] = ACTIONS(3987), + [anon_sym_TILDE] = ACTIONS(3987), + [anon_sym_DASH] = ACTIONS(3985), + [anon_sym_PLUS] = ACTIONS(3985), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym___extension__] = ACTIONS(3985), + [anon_sym_typedef] = ACTIONS(3985), + [anon_sym_virtual] = ACTIONS(3985), + [anon_sym_extern] = ACTIONS(3985), + [anon_sym___attribute__] = ACTIONS(3985), + [anon_sym___attribute] = ACTIONS(3985), + [anon_sym_using] = ACTIONS(3985), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(3985), + [anon_sym___based] = ACTIONS(3985), + [anon_sym___cdecl] = ACTIONS(3985), + [anon_sym___clrcall] = ACTIONS(3985), + [anon_sym___stdcall] = ACTIONS(3985), + [anon_sym___fastcall] = ACTIONS(3985), + [anon_sym___thiscall] = ACTIONS(3985), + [anon_sym___vectorcall] = ACTIONS(3985), + [anon_sym_LBRACE] = ACTIONS(3987), + [anon_sym_signed] = ACTIONS(3985), + [anon_sym_unsigned] = ACTIONS(3985), + [anon_sym_long] = ACTIONS(3985), + [anon_sym_short] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_static] = ACTIONS(3985), + [anon_sym_register] = ACTIONS(3985), + [anon_sym_inline] = ACTIONS(3985), + [anon_sym___inline] = ACTIONS(3985), + [anon_sym___inline__] = ACTIONS(3985), + [anon_sym___forceinline] = ACTIONS(3985), + [anon_sym_thread_local] = ACTIONS(3985), + [anon_sym___thread] = ACTIONS(3985), + [anon_sym_const] = ACTIONS(3985), + [anon_sym_constexpr] = ACTIONS(3985), + [anon_sym_volatile] = ACTIONS(3985), + [anon_sym_restrict] = ACTIONS(3985), + [anon_sym___restrict__] = ACTIONS(3985), + [anon_sym__Atomic] = ACTIONS(3985), + [anon_sym__Noreturn] = ACTIONS(3985), + [anon_sym_noreturn] = ACTIONS(3985), + [anon_sym__Nonnull] = ACTIONS(3985), + [anon_sym_mutable] = ACTIONS(3985), + [anon_sym_constinit] = ACTIONS(3985), + [anon_sym_consteval] = ACTIONS(3985), + [anon_sym_alignas] = ACTIONS(3985), + [anon_sym__Alignas] = ACTIONS(3985), + [sym_primitive_type] = ACTIONS(3985), + [anon_sym_enum] = ACTIONS(3985), + [anon_sym_class] = ACTIONS(3985), + [anon_sym_struct] = ACTIONS(3985), + [anon_sym_union] = ACTIONS(3985), + [anon_sym_if] = ACTIONS(3985), + [anon_sym_switch] = ACTIONS(3985), + [anon_sym_case] = ACTIONS(3985), + [anon_sym_default] = ACTIONS(3985), + [anon_sym_while] = ACTIONS(3985), + [anon_sym_do] = ACTIONS(3985), + [anon_sym_for] = ACTIONS(3985), + [anon_sym_return] = ACTIONS(3985), + [anon_sym_break] = ACTIONS(3985), + [anon_sym_continue] = ACTIONS(3985), + [anon_sym_goto] = ACTIONS(3985), + [anon_sym_not] = ACTIONS(3985), + [anon_sym_compl] = ACTIONS(3985), + [anon_sym_DASH_DASH] = ACTIONS(3987), + [anon_sym_PLUS_PLUS] = ACTIONS(3987), + [anon_sym_sizeof] = ACTIONS(3985), + [anon_sym___alignof__] = ACTIONS(3985), + [anon_sym___alignof] = ACTIONS(3985), + [anon_sym__alignof] = ACTIONS(3985), + [anon_sym_alignof] = ACTIONS(3985), + [anon_sym__Alignof] = ACTIONS(3985), + [anon_sym_offsetof] = ACTIONS(3985), + [anon_sym__Generic] = ACTIONS(3985), + [anon_sym_typename] = ACTIONS(3985), + [anon_sym_asm] = ACTIONS(3985), + [anon_sym___asm__] = ACTIONS(3985), + [anon_sym___asm] = ACTIONS(3985), + [sym_number_literal] = ACTIONS(3987), + [anon_sym_L_SQUOTE] = ACTIONS(3987), + [anon_sym_u_SQUOTE] = ACTIONS(3987), + [anon_sym_U_SQUOTE] = ACTIONS(3987), + [anon_sym_u8_SQUOTE] = ACTIONS(3987), + [anon_sym_SQUOTE] = ACTIONS(3987), + [anon_sym_L_DQUOTE] = ACTIONS(3987), + [anon_sym_u_DQUOTE] = ACTIONS(3987), + [anon_sym_U_DQUOTE] = ACTIONS(3987), + [anon_sym_u8_DQUOTE] = ACTIONS(3987), + [anon_sym_DQUOTE] = ACTIONS(3987), + [sym_true] = ACTIONS(3985), + [sym_false] = ACTIONS(3985), + [anon_sym_NULL] = ACTIONS(3985), + [anon_sym_nullptr] = ACTIONS(3985), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3985), + [anon_sym_decltype] = ACTIONS(3985), + [anon_sym_explicit] = ACTIONS(3985), + [anon_sym_export] = ACTIONS(3985), + [anon_sym_module] = ACTIONS(3985), + [anon_sym_import] = ACTIONS(3985), + [anon_sym_template] = ACTIONS(3985), + [anon_sym_operator] = ACTIONS(3985), + [anon_sym_try] = ACTIONS(3985), + [anon_sym_delete] = ACTIONS(3985), + [anon_sym_throw] = ACTIONS(3985), + [anon_sym_namespace] = ACTIONS(3985), + [anon_sym_static_assert] = ACTIONS(3985), + [anon_sym_concept] = ACTIONS(3985), + [anon_sym_co_return] = ACTIONS(3985), + [anon_sym_co_yield] = ACTIONS(3985), + [anon_sym_R_DQUOTE] = ACTIONS(3987), + [anon_sym_LR_DQUOTE] = ACTIONS(3987), + [anon_sym_uR_DQUOTE] = ACTIONS(3987), + [anon_sym_UR_DQUOTE] = ACTIONS(3987), + [anon_sym_u8R_DQUOTE] = ACTIONS(3987), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3985), + [anon_sym_requires] = ACTIONS(3985), + [anon_sym_CARET_CARET] = ACTIONS(3987), + [anon_sym_LBRACK_COLON] = ACTIONS(3987), + [sym_this] = ACTIONS(3985), }, - [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(932)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4766), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(933)] = { + [ts_builtin_sym_end] = ACTIONS(4466), + [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(4466), + [anon_sym_BANG] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [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(4466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4466), + [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(4466), + [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(4466), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [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(4466), + [anon_sym_L_SQUOTE] = ACTIONS(4466), + [anon_sym_u_SQUOTE] = ACTIONS(4466), + [anon_sym_U_SQUOTE] = ACTIONS(4466), + [anon_sym_u8_SQUOTE] = ACTIONS(4466), + [anon_sym_SQUOTE] = ACTIONS(4466), + [anon_sym_L_DQUOTE] = ACTIONS(4466), + [anon_sym_u_DQUOTE] = ACTIONS(4466), + [anon_sym_U_DQUOTE] = ACTIONS(4466), + [anon_sym_u8_DQUOTE] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [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(4466), + [anon_sym_LR_DQUOTE] = ACTIONS(4466), + [anon_sym_uR_DQUOTE] = ACTIONS(4466), + [anon_sym_UR_DQUOTE] = ACTIONS(4466), + [anon_sym_u8R_DQUOTE] = ACTIONS(4466), + [anon_sym_co_await] = ACTIONS(4464), + [anon_sym_new] = ACTIONS(4464), + [anon_sym_requires] = ACTIONS(4464), + [anon_sym_CARET_CARET] = ACTIONS(4466), + [anon_sym_LBRACK_COLON] = ACTIONS(4466), + [sym_this] = ACTIONS(4464), }, - [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(934)] = { + [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(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), + [STATE(935)] = { + [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(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(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(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), + [STATE(936)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(941), + [sym_field_declaration] = STATE(941), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(941), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(941), + [sym__constructor_specifiers] = STATE(2797), + [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(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [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(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(941), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4768), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4773), + [anon_sym_RBRACE] = ACTIONS(4770), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -191408,7 +196331,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -191418,682 +196341,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(937)] = { + [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(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(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(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(938)] = { + [ts_builtin_sym_end] = ACTIONS(3991), + [sym_identifier] = ACTIONS(3989), + [aux_sym_preproc_include_token1] = ACTIONS(3989), + [aux_sym_preproc_def_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token1] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3989), + [sym_preproc_directive] = ACTIONS(3989), + [anon_sym_LPAREN2] = ACTIONS(3991), + [anon_sym_BANG] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3989), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_SEMI] = ACTIONS(3991), + [anon_sym___extension__] = ACTIONS(3989), + [anon_sym_typedef] = ACTIONS(3989), + [anon_sym_virtual] = ACTIONS(3989), + [anon_sym_extern] = ACTIONS(3989), + [anon_sym___attribute__] = ACTIONS(3989), + [anon_sym___attribute] = ACTIONS(3989), + [anon_sym_using] = ACTIONS(3989), + [anon_sym_COLON_COLON] = ACTIONS(3991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3991), + [anon_sym___declspec] = ACTIONS(3989), + [anon_sym___based] = ACTIONS(3989), + [anon_sym___cdecl] = ACTIONS(3989), + [anon_sym___clrcall] = ACTIONS(3989), + [anon_sym___stdcall] = ACTIONS(3989), + [anon_sym___fastcall] = ACTIONS(3989), + [anon_sym___thiscall] = ACTIONS(3989), + [anon_sym___vectorcall] = ACTIONS(3989), + [anon_sym_LBRACE] = ACTIONS(3991), + [anon_sym_signed] = ACTIONS(3989), + [anon_sym_unsigned] = ACTIONS(3989), + [anon_sym_long] = ACTIONS(3989), + [anon_sym_short] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_static] = ACTIONS(3989), + [anon_sym_register] = ACTIONS(3989), + [anon_sym_inline] = ACTIONS(3989), + [anon_sym___inline] = ACTIONS(3989), + [anon_sym___inline__] = ACTIONS(3989), + [anon_sym___forceinline] = ACTIONS(3989), + [anon_sym_thread_local] = ACTIONS(3989), + [anon_sym___thread] = ACTIONS(3989), + [anon_sym_const] = ACTIONS(3989), + [anon_sym_constexpr] = ACTIONS(3989), + [anon_sym_volatile] = ACTIONS(3989), + [anon_sym_restrict] = ACTIONS(3989), + [anon_sym___restrict__] = ACTIONS(3989), + [anon_sym__Atomic] = ACTIONS(3989), + [anon_sym__Noreturn] = ACTIONS(3989), + [anon_sym_noreturn] = ACTIONS(3989), + [anon_sym__Nonnull] = ACTIONS(3989), + [anon_sym_mutable] = ACTIONS(3989), + [anon_sym_constinit] = ACTIONS(3989), + [anon_sym_consteval] = ACTIONS(3989), + [anon_sym_alignas] = ACTIONS(3989), + [anon_sym__Alignas] = ACTIONS(3989), + [sym_primitive_type] = ACTIONS(3989), + [anon_sym_enum] = ACTIONS(3989), + [anon_sym_class] = ACTIONS(3989), + [anon_sym_struct] = ACTIONS(3989), + [anon_sym_union] = ACTIONS(3989), + [anon_sym_if] = ACTIONS(3989), + [anon_sym_switch] = ACTIONS(3989), + [anon_sym_case] = ACTIONS(3989), + [anon_sym_default] = ACTIONS(3989), + [anon_sym_while] = ACTIONS(3989), + [anon_sym_do] = ACTIONS(3989), + [anon_sym_for] = ACTIONS(3989), + [anon_sym_return] = ACTIONS(3989), + [anon_sym_break] = ACTIONS(3989), + [anon_sym_continue] = ACTIONS(3989), + [anon_sym_goto] = ACTIONS(3989), + [anon_sym_not] = ACTIONS(3989), + [anon_sym_compl] = ACTIONS(3989), + [anon_sym_DASH_DASH] = ACTIONS(3991), + [anon_sym_PLUS_PLUS] = ACTIONS(3991), + [anon_sym_sizeof] = ACTIONS(3989), + [anon_sym___alignof__] = ACTIONS(3989), + [anon_sym___alignof] = ACTIONS(3989), + [anon_sym__alignof] = ACTIONS(3989), + [anon_sym_alignof] = ACTIONS(3989), + [anon_sym__Alignof] = ACTIONS(3989), + [anon_sym_offsetof] = ACTIONS(3989), + [anon_sym__Generic] = ACTIONS(3989), + [anon_sym_typename] = ACTIONS(3989), + [anon_sym_asm] = ACTIONS(3989), + [anon_sym___asm__] = ACTIONS(3989), + [anon_sym___asm] = ACTIONS(3989), + [sym_number_literal] = ACTIONS(3991), + [anon_sym_L_SQUOTE] = ACTIONS(3991), + [anon_sym_u_SQUOTE] = ACTIONS(3991), + [anon_sym_U_SQUOTE] = ACTIONS(3991), + [anon_sym_u8_SQUOTE] = ACTIONS(3991), + [anon_sym_SQUOTE] = ACTIONS(3991), + [anon_sym_L_DQUOTE] = ACTIONS(3991), + [anon_sym_u_DQUOTE] = ACTIONS(3991), + [anon_sym_U_DQUOTE] = ACTIONS(3991), + [anon_sym_u8_DQUOTE] = ACTIONS(3991), + [anon_sym_DQUOTE] = ACTIONS(3991), + [sym_true] = ACTIONS(3989), + [sym_false] = ACTIONS(3989), + [anon_sym_NULL] = ACTIONS(3989), + [anon_sym_nullptr] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3989), + [anon_sym_decltype] = ACTIONS(3989), + [anon_sym_explicit] = ACTIONS(3989), + [anon_sym_export] = ACTIONS(3989), + [anon_sym_module] = ACTIONS(3989), + [anon_sym_import] = ACTIONS(3989), + [anon_sym_template] = ACTIONS(3989), + [anon_sym_operator] = ACTIONS(3989), + [anon_sym_try] = ACTIONS(3989), + [anon_sym_delete] = ACTIONS(3989), + [anon_sym_throw] = ACTIONS(3989), + [anon_sym_namespace] = ACTIONS(3989), + [anon_sym_static_assert] = ACTIONS(3989), + [anon_sym_concept] = ACTIONS(3989), + [anon_sym_co_return] = ACTIONS(3989), + [anon_sym_co_yield] = ACTIONS(3989), + [anon_sym_R_DQUOTE] = ACTIONS(3991), + [anon_sym_LR_DQUOTE] = ACTIONS(3991), + [anon_sym_uR_DQUOTE] = ACTIONS(3991), + [anon_sym_UR_DQUOTE] = ACTIONS(3991), + [anon_sym_u8R_DQUOTE] = ACTIONS(3991), + [anon_sym_co_await] = ACTIONS(3989), + [anon_sym_new] = ACTIONS(3989), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3991), + [sym_this] = ACTIONS(3989), }, - [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(939)] = { + [ts_builtin_sym_end] = ACTIONS(3710), + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_export] = ACTIONS(3708), + [anon_sym_module] = ACTIONS(3708), + [anon_sym_import] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), }, - [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(940)] = { + [ts_builtin_sym_end] = ACTIONS(3710), + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_include_token1] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_DASH] = ACTIONS(3708), + [anon_sym_PLUS] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym___cdecl] = ACTIONS(3708), + [anon_sym___clrcall] = ACTIONS(3708), + [anon_sym___stdcall] = ACTIONS(3708), + [anon_sym___fastcall] = ACTIONS(3708), + [anon_sym___thiscall] = ACTIONS(3708), + [anon_sym___vectorcall] = ACTIONS(3708), + [anon_sym_LBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_if] = ACTIONS(3708), + [anon_sym_switch] = ACTIONS(3708), + [anon_sym_case] = ACTIONS(3708), + [anon_sym_default] = ACTIONS(3708), + [anon_sym_while] = ACTIONS(3708), + [anon_sym_do] = ACTIONS(3708), + [anon_sym_for] = ACTIONS(3708), + [anon_sym_return] = ACTIONS(3708), + [anon_sym_break] = ACTIONS(3708), + [anon_sym_continue] = ACTIONS(3708), + [anon_sym_goto] = ACTIONS(3708), + [anon_sym_not] = ACTIONS(3708), + [anon_sym_compl] = ACTIONS(3708), + [anon_sym_DASH_DASH] = ACTIONS(3710), + [anon_sym_PLUS_PLUS] = ACTIONS(3710), + [anon_sym_sizeof] = ACTIONS(3708), + [anon_sym___alignof__] = ACTIONS(3708), + [anon_sym___alignof] = ACTIONS(3708), + [anon_sym__alignof] = ACTIONS(3708), + [anon_sym_alignof] = ACTIONS(3708), + [anon_sym__Alignof] = ACTIONS(3708), + [anon_sym_offsetof] = ACTIONS(3708), + [anon_sym__Generic] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [anon_sym_asm] = ACTIONS(3708), + [anon_sym___asm__] = ACTIONS(3708), + [anon_sym___asm] = ACTIONS(3708), + [sym_number_literal] = ACTIONS(3710), + [anon_sym_L_SQUOTE] = ACTIONS(3710), + [anon_sym_u_SQUOTE] = ACTIONS(3710), + [anon_sym_U_SQUOTE] = ACTIONS(3710), + [anon_sym_u8_SQUOTE] = ACTIONS(3710), + [anon_sym_SQUOTE] = ACTIONS(3710), + [anon_sym_L_DQUOTE] = ACTIONS(3710), + [anon_sym_u_DQUOTE] = ACTIONS(3710), + [anon_sym_U_DQUOTE] = ACTIONS(3710), + [anon_sym_u8_DQUOTE] = ACTIONS(3710), + [anon_sym_DQUOTE] = ACTIONS(3710), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [anon_sym_NULL] = ACTIONS(3708), + [anon_sym_nullptr] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_export] = ACTIONS(3708), + [anon_sym_module] = ACTIONS(3708), + [anon_sym_import] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_try] = ACTIONS(3708), + [anon_sym_delete] = ACTIONS(3708), + [anon_sym_throw] = ACTIONS(3708), + [anon_sym_namespace] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_concept] = ACTIONS(3708), + [anon_sym_co_return] = ACTIONS(3708), + [anon_sym_co_yield] = ACTIONS(3708), + [anon_sym_R_DQUOTE] = ACTIONS(3710), + [anon_sym_LR_DQUOTE] = ACTIONS(3710), + [anon_sym_uR_DQUOTE] = ACTIONS(3710), + [anon_sym_UR_DQUOTE] = ACTIONS(3710), + [anon_sym_u8R_DQUOTE] = ACTIONS(3710), + [anon_sym_co_await] = ACTIONS(3708), + [anon_sym_new] = ACTIONS(3708), + [anon_sym_requires] = ACTIONS(3708), + [anon_sym_CARET_CARET] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), + [sym_this] = ACTIONS(3708), }, - [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(941)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4775), + [anon_sym_RBRACE] = ACTIONS(4772), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -192103,7 +197026,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -192113,404 +197036,265 @@ 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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(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), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(942)] = { + [ts_builtin_sym_end] = ACTIONS(4023), + [sym_identifier] = ACTIONS(4021), + [aux_sym_preproc_include_token1] = ACTIONS(4021), + [aux_sym_preproc_def_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token1] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4021), + [sym_preproc_directive] = ACTIONS(4021), + [anon_sym_LPAREN2] = ACTIONS(4023), + [anon_sym_BANG] = ACTIONS(4023), + [anon_sym_TILDE] = ACTIONS(4023), + [anon_sym_DASH] = ACTIONS(4021), + [anon_sym_PLUS] = ACTIONS(4021), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_AMP_AMP] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_SEMI] = ACTIONS(4023), + [anon_sym___extension__] = ACTIONS(4021), + [anon_sym_typedef] = ACTIONS(4021), + [anon_sym_virtual] = ACTIONS(4021), + [anon_sym_extern] = ACTIONS(4021), + [anon_sym___attribute__] = ACTIONS(4021), + [anon_sym___attribute] = ACTIONS(4021), + [anon_sym_using] = ACTIONS(4021), + [anon_sym_COLON_COLON] = ACTIONS(4023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4023), + [anon_sym___declspec] = ACTIONS(4021), + [anon_sym___based] = ACTIONS(4021), + [anon_sym___cdecl] = ACTIONS(4021), + [anon_sym___clrcall] = ACTIONS(4021), + [anon_sym___stdcall] = ACTIONS(4021), + [anon_sym___fastcall] = ACTIONS(4021), + [anon_sym___thiscall] = ACTIONS(4021), + [anon_sym___vectorcall] = ACTIONS(4021), + [anon_sym_LBRACE] = ACTIONS(4023), + [anon_sym_signed] = ACTIONS(4021), + [anon_sym_unsigned] = ACTIONS(4021), + [anon_sym_long] = ACTIONS(4021), + [anon_sym_short] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_register] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym___inline] = ACTIONS(4021), + [anon_sym___inline__] = ACTIONS(4021), + [anon_sym___forceinline] = ACTIONS(4021), + [anon_sym_thread_local] = ACTIONS(4021), + [anon_sym___thread] = ACTIONS(4021), + [anon_sym_const] = ACTIONS(4021), + [anon_sym_constexpr] = ACTIONS(4021), + [anon_sym_volatile] = ACTIONS(4021), + [anon_sym_restrict] = ACTIONS(4021), + [anon_sym___restrict__] = ACTIONS(4021), + [anon_sym__Atomic] = ACTIONS(4021), + [anon_sym__Noreturn] = ACTIONS(4021), + [anon_sym_noreturn] = ACTIONS(4021), + [anon_sym__Nonnull] = ACTIONS(4021), + [anon_sym_mutable] = ACTIONS(4021), + [anon_sym_constinit] = ACTIONS(4021), + [anon_sym_consteval] = ACTIONS(4021), + [anon_sym_alignas] = ACTIONS(4021), + [anon_sym__Alignas] = ACTIONS(4021), + [sym_primitive_type] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_struct] = ACTIONS(4021), + [anon_sym_union] = ACTIONS(4021), + [anon_sym_if] = ACTIONS(4021), + [anon_sym_switch] = ACTIONS(4021), + [anon_sym_case] = ACTIONS(4021), + [anon_sym_default] = ACTIONS(4021), + [anon_sym_while] = ACTIONS(4021), + [anon_sym_do] = ACTIONS(4021), + [anon_sym_for] = ACTIONS(4021), + [anon_sym_return] = ACTIONS(4021), + [anon_sym_break] = ACTIONS(4021), + [anon_sym_continue] = ACTIONS(4021), + [anon_sym_goto] = ACTIONS(4021), + [anon_sym_not] = ACTIONS(4021), + [anon_sym_compl] = ACTIONS(4021), + [anon_sym_DASH_DASH] = ACTIONS(4023), + [anon_sym_PLUS_PLUS] = ACTIONS(4023), + [anon_sym_sizeof] = ACTIONS(4021), + [anon_sym___alignof__] = ACTIONS(4021), + [anon_sym___alignof] = ACTIONS(4021), + [anon_sym__alignof] = ACTIONS(4021), + [anon_sym_alignof] = ACTIONS(4021), + [anon_sym__Alignof] = ACTIONS(4021), + [anon_sym_offsetof] = ACTIONS(4021), + [anon_sym__Generic] = ACTIONS(4021), + [anon_sym_typename] = ACTIONS(4021), + [anon_sym_asm] = ACTIONS(4021), + [anon_sym___asm__] = ACTIONS(4021), + [anon_sym___asm] = ACTIONS(4021), + [sym_number_literal] = ACTIONS(4023), + [anon_sym_L_SQUOTE] = ACTIONS(4023), + [anon_sym_u_SQUOTE] = ACTIONS(4023), + [anon_sym_U_SQUOTE] = ACTIONS(4023), + [anon_sym_u8_SQUOTE] = ACTIONS(4023), + [anon_sym_SQUOTE] = ACTIONS(4023), + [anon_sym_L_DQUOTE] = ACTIONS(4023), + [anon_sym_u_DQUOTE] = ACTIONS(4023), + [anon_sym_U_DQUOTE] = ACTIONS(4023), + [anon_sym_u8_DQUOTE] = ACTIONS(4023), + [anon_sym_DQUOTE] = ACTIONS(4023), + [sym_true] = ACTIONS(4021), + [sym_false] = ACTIONS(4021), + [anon_sym_NULL] = ACTIONS(4021), + [anon_sym_nullptr] = ACTIONS(4021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4021), + [anon_sym_decltype] = ACTIONS(4021), + [anon_sym_explicit] = ACTIONS(4021), + [anon_sym_export] = ACTIONS(4021), + [anon_sym_module] = ACTIONS(4021), + [anon_sym_import] = ACTIONS(4021), + [anon_sym_template] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_try] = ACTIONS(4021), + [anon_sym_delete] = ACTIONS(4021), + [anon_sym_throw] = ACTIONS(4021), + [anon_sym_namespace] = ACTIONS(4021), + [anon_sym_static_assert] = ACTIONS(4021), + [anon_sym_concept] = ACTIONS(4021), + [anon_sym_co_return] = ACTIONS(4021), + [anon_sym_co_yield] = ACTIONS(4021), + [anon_sym_R_DQUOTE] = ACTIONS(4023), + [anon_sym_LR_DQUOTE] = ACTIONS(4023), + [anon_sym_uR_DQUOTE] = ACTIONS(4023), + [anon_sym_UR_DQUOTE] = ACTIONS(4023), + [anon_sym_u8R_DQUOTE] = ACTIONS(4023), + [anon_sym_co_await] = ACTIONS(4021), + [anon_sym_new] = ACTIONS(4021), + [anon_sym_requires] = ACTIONS(4021), + [anon_sym_CARET_CARET] = ACTIONS(4023), + [anon_sym_LBRACK_COLON] = ACTIONS(4023), + [sym_this] = ACTIONS(4021), }, - [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), + [STATE(943)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(948), + [sym_field_declaration] = STATE(948), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(948), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(948), + [sym__constructor_specifiers] = STATE(2797), + [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(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [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(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(948), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4774), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4779), + [anon_sym_RBRACE] = ACTIONS(4776), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -192520,7 +197304,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -192530,404 +197314,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [STATE(933)] = { - [ts_builtin_sym_end] = ACTIONS(3923), - [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_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_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(944)] = { + [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), }, - [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), + [STATE(945)] = { + [ts_builtin_sym_end] = ACTIONS(3718), + [sym_identifier] = ACTIONS(3716), + [aux_sym_preproc_include_token1] = ACTIONS(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_BANG] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym___cdecl] = ACTIONS(3716), + [anon_sym___clrcall] = ACTIONS(3716), + [anon_sym___stdcall] = ACTIONS(3716), + [anon_sym___fastcall] = ACTIONS(3716), + [anon_sym___thiscall] = ACTIONS(3716), + [anon_sym___vectorcall] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_case] = ACTIONS(3716), + [anon_sym_default] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_goto] = ACTIONS(3716), + [anon_sym_not] = ACTIONS(3716), + [anon_sym_compl] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3718), + [anon_sym_PLUS_PLUS] = ACTIONS(3718), + [anon_sym_sizeof] = ACTIONS(3716), + [anon_sym___alignof__] = ACTIONS(3716), + [anon_sym___alignof] = ACTIONS(3716), + [anon_sym__alignof] = ACTIONS(3716), + [anon_sym_alignof] = ACTIONS(3716), + [anon_sym__Alignof] = ACTIONS(3716), + [anon_sym_offsetof] = ACTIONS(3716), + [anon_sym__Generic] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [anon_sym_asm] = ACTIONS(3716), + [anon_sym___asm__] = ACTIONS(3716), + [anon_sym___asm] = ACTIONS(3716), + [sym_number_literal] = ACTIONS(3718), + [anon_sym_L_SQUOTE] = ACTIONS(3718), + [anon_sym_u_SQUOTE] = ACTIONS(3718), + [anon_sym_U_SQUOTE] = ACTIONS(3718), + [anon_sym_u8_SQUOTE] = ACTIONS(3718), + [anon_sym_SQUOTE] = ACTIONS(3718), + [anon_sym_L_DQUOTE] = ACTIONS(3718), + [anon_sym_u_DQUOTE] = ACTIONS(3718), + [anon_sym_U_DQUOTE] = ACTIONS(3718), + [anon_sym_u8_DQUOTE] = ACTIONS(3718), + [anon_sym_DQUOTE] = ACTIONS(3718), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [anon_sym_NULL] = ACTIONS(3716), + [anon_sym_nullptr] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_concept] = ACTIONS(3716), + [anon_sym_co_return] = ACTIONS(3716), + [anon_sym_co_yield] = ACTIONS(3716), + [anon_sym_R_DQUOTE] = ACTIONS(3718), + [anon_sym_LR_DQUOTE] = ACTIONS(3718), + [anon_sym_uR_DQUOTE] = ACTIONS(3718), + [anon_sym_UR_DQUOTE] = ACTIONS(3718), + [anon_sym_u8R_DQUOTE] = ACTIONS(3718), + [anon_sym_co_await] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_requires] = ACTIONS(3716), + [anon_sym_CARET_CARET] = ACTIONS(3718), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), + [sym_this] = ACTIONS(3716), + }, + [STATE(946)] = { + [ts_builtin_sym_end] = ACTIONS(3790), + [sym_identifier] = ACTIONS(3788), + [aux_sym_preproc_include_token1] = ACTIONS(3788), + [aux_sym_preproc_def_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token1] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3788), + [sym_preproc_directive] = ACTIONS(3788), + [anon_sym_LPAREN2] = ACTIONS(3790), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3788), + [anon_sym_PLUS] = ACTIONS(3788), + [anon_sym_STAR] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_AMP] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(3790), + [anon_sym___extension__] = ACTIONS(3788), + [anon_sym_typedef] = ACTIONS(3788), + [anon_sym_virtual] = ACTIONS(3788), + [anon_sym_extern] = ACTIONS(3788), + [anon_sym___attribute__] = ACTIONS(3788), + [anon_sym___attribute] = ACTIONS(3788), + [anon_sym_using] = ACTIONS(3788), + [anon_sym_COLON_COLON] = ACTIONS(3790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3790), + [anon_sym___declspec] = ACTIONS(3788), + [anon_sym___based] = ACTIONS(3788), + [anon_sym___cdecl] = ACTIONS(3788), + [anon_sym___clrcall] = ACTIONS(3788), + [anon_sym___stdcall] = ACTIONS(3788), + [anon_sym___fastcall] = ACTIONS(3788), + [anon_sym___thiscall] = ACTIONS(3788), + [anon_sym___vectorcall] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_signed] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3788), + [anon_sym_long] = ACTIONS(3788), + [anon_sym_short] = ACTIONS(3788), + [anon_sym_LBRACK] = ACTIONS(3788), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_register] = ACTIONS(3788), + [anon_sym_inline] = ACTIONS(3788), + [anon_sym___inline] = ACTIONS(3788), + [anon_sym___inline__] = ACTIONS(3788), + [anon_sym___forceinline] = ACTIONS(3788), + [anon_sym_thread_local] = ACTIONS(3788), + [anon_sym___thread] = ACTIONS(3788), + [anon_sym_const] = ACTIONS(3788), + [anon_sym_constexpr] = ACTIONS(3788), + [anon_sym_volatile] = ACTIONS(3788), + [anon_sym_restrict] = ACTIONS(3788), + [anon_sym___restrict__] = ACTIONS(3788), + [anon_sym__Atomic] = ACTIONS(3788), + [anon_sym__Noreturn] = ACTIONS(3788), + [anon_sym_noreturn] = ACTIONS(3788), + [anon_sym__Nonnull] = ACTIONS(3788), + [anon_sym_mutable] = ACTIONS(3788), + [anon_sym_constinit] = ACTIONS(3788), + [anon_sym_consteval] = ACTIONS(3788), + [anon_sym_alignas] = ACTIONS(3788), + [anon_sym__Alignas] = ACTIONS(3788), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_union] = ACTIONS(3788), + [anon_sym_if] = ACTIONS(3788), + [anon_sym_switch] = ACTIONS(3788), + [anon_sym_case] = ACTIONS(3788), + [anon_sym_default] = ACTIONS(3788), + [anon_sym_while] = ACTIONS(3788), + [anon_sym_do] = ACTIONS(3788), + [anon_sym_for] = ACTIONS(3788), + [anon_sym_return] = ACTIONS(3788), + [anon_sym_break] = ACTIONS(3788), + [anon_sym_continue] = ACTIONS(3788), + [anon_sym_goto] = ACTIONS(3788), + [anon_sym_not] = ACTIONS(3788), + [anon_sym_compl] = ACTIONS(3788), + [anon_sym_DASH_DASH] = ACTIONS(3790), + [anon_sym_PLUS_PLUS] = ACTIONS(3790), + [anon_sym_sizeof] = ACTIONS(3788), + [anon_sym___alignof__] = ACTIONS(3788), + [anon_sym___alignof] = ACTIONS(3788), + [anon_sym__alignof] = ACTIONS(3788), + [anon_sym_alignof] = ACTIONS(3788), + [anon_sym__Alignof] = ACTIONS(3788), + [anon_sym_offsetof] = ACTIONS(3788), + [anon_sym__Generic] = ACTIONS(3788), + [anon_sym_typename] = ACTIONS(3788), + [anon_sym_asm] = ACTIONS(3788), + [anon_sym___asm__] = ACTIONS(3788), + [anon_sym___asm] = ACTIONS(3788), + [sym_number_literal] = ACTIONS(3790), + [anon_sym_L_SQUOTE] = ACTIONS(3790), + [anon_sym_u_SQUOTE] = ACTIONS(3790), + [anon_sym_U_SQUOTE] = ACTIONS(3790), + [anon_sym_u8_SQUOTE] = ACTIONS(3790), + [anon_sym_SQUOTE] = ACTIONS(3790), + [anon_sym_L_DQUOTE] = ACTIONS(3790), + [anon_sym_u_DQUOTE] = ACTIONS(3790), + [anon_sym_U_DQUOTE] = ACTIONS(3790), + [anon_sym_u8_DQUOTE] = ACTIONS(3790), + [anon_sym_DQUOTE] = ACTIONS(3790), + [sym_true] = ACTIONS(3788), + [sym_false] = ACTIONS(3788), + [anon_sym_NULL] = ACTIONS(3788), + [anon_sym_nullptr] = ACTIONS(3788), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3788), + [anon_sym_decltype] = ACTIONS(3788), + [anon_sym_explicit] = ACTIONS(3788), + [anon_sym_export] = ACTIONS(3788), + [anon_sym_module] = ACTIONS(3788), + [anon_sym_import] = ACTIONS(3788), + [anon_sym_template] = ACTIONS(3788), + [anon_sym_operator] = ACTIONS(3788), + [anon_sym_try] = ACTIONS(3788), + [anon_sym_delete] = ACTIONS(3788), + [anon_sym_throw] = ACTIONS(3788), + [anon_sym_namespace] = ACTIONS(3788), + [anon_sym_static_assert] = ACTIONS(3788), + [anon_sym_concept] = ACTIONS(3788), + [anon_sym_co_return] = ACTIONS(3788), + [anon_sym_co_yield] = ACTIONS(3788), + [anon_sym_R_DQUOTE] = ACTIONS(3790), + [anon_sym_LR_DQUOTE] = ACTIONS(3790), + [anon_sym_uR_DQUOTE] = ACTIONS(3790), + [anon_sym_UR_DQUOTE] = ACTIONS(3790), + [anon_sym_u8R_DQUOTE] = ACTIONS(3790), + [anon_sym_co_await] = ACTIONS(3788), + [anon_sym_new] = ACTIONS(3788), + [anon_sym_requires] = ACTIONS(3788), + [anon_sym_CARET_CARET] = ACTIONS(3790), + [anon_sym_LBRACK_COLON] = ACTIONS(3790), + [sym_this] = ACTIONS(3788), + }, + [STATE(947)] = { + [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(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_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(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(948)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_RBRACE] = ACTIONS(4778), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -192937,7 +197999,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -192947,682 +198009,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [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_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(4785), - [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(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), + [STATE(949)] = { + [ts_builtin_sym_end] = ACTIONS(3995), + [sym_identifier] = ACTIONS(3993), + [aux_sym_preproc_include_token1] = ACTIONS(3993), + [aux_sym_preproc_def_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token1] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3993), + [sym_preproc_directive] = ACTIONS(3993), + [anon_sym_LPAREN2] = ACTIONS(3995), + [anon_sym_BANG] = ACTIONS(3995), + [anon_sym_TILDE] = ACTIONS(3995), + [anon_sym_DASH] = ACTIONS(3993), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_AMP_AMP] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3993), + [anon_sym_SEMI] = ACTIONS(3995), + [anon_sym___extension__] = ACTIONS(3993), + [anon_sym_typedef] = ACTIONS(3993), + [anon_sym_virtual] = ACTIONS(3993), + [anon_sym_extern] = ACTIONS(3993), + [anon_sym___attribute__] = ACTIONS(3993), + [anon_sym___attribute] = ACTIONS(3993), + [anon_sym_using] = ACTIONS(3993), + [anon_sym_COLON_COLON] = ACTIONS(3995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3995), + [anon_sym___declspec] = ACTIONS(3993), + [anon_sym___based] = ACTIONS(3993), + [anon_sym___cdecl] = ACTIONS(3993), + [anon_sym___clrcall] = ACTIONS(3993), + [anon_sym___stdcall] = ACTIONS(3993), + [anon_sym___fastcall] = ACTIONS(3993), + [anon_sym___thiscall] = ACTIONS(3993), + [anon_sym___vectorcall] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3995), + [anon_sym_signed] = ACTIONS(3993), + [anon_sym_unsigned] = ACTIONS(3993), + [anon_sym_long] = ACTIONS(3993), + [anon_sym_short] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_static] = ACTIONS(3993), + [anon_sym_register] = ACTIONS(3993), + [anon_sym_inline] = ACTIONS(3993), + [anon_sym___inline] = ACTIONS(3993), + [anon_sym___inline__] = ACTIONS(3993), + [anon_sym___forceinline] = ACTIONS(3993), + [anon_sym_thread_local] = ACTIONS(3993), + [anon_sym___thread] = ACTIONS(3993), + [anon_sym_const] = ACTIONS(3993), + [anon_sym_constexpr] = ACTIONS(3993), + [anon_sym_volatile] = ACTIONS(3993), + [anon_sym_restrict] = ACTIONS(3993), + [anon_sym___restrict__] = ACTIONS(3993), + [anon_sym__Atomic] = ACTIONS(3993), + [anon_sym__Noreturn] = ACTIONS(3993), + [anon_sym_noreturn] = ACTIONS(3993), + [anon_sym__Nonnull] = ACTIONS(3993), + [anon_sym_mutable] = ACTIONS(3993), + [anon_sym_constinit] = ACTIONS(3993), + [anon_sym_consteval] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(3993), + [anon_sym__Alignas] = ACTIONS(3993), + [sym_primitive_type] = ACTIONS(3993), + [anon_sym_enum] = ACTIONS(3993), + [anon_sym_class] = ACTIONS(3993), + [anon_sym_struct] = ACTIONS(3993), + [anon_sym_union] = ACTIONS(3993), + [anon_sym_if] = ACTIONS(3993), + [anon_sym_switch] = ACTIONS(3993), + [anon_sym_case] = ACTIONS(3993), + [anon_sym_default] = ACTIONS(3993), + [anon_sym_while] = ACTIONS(3993), + [anon_sym_do] = ACTIONS(3993), + [anon_sym_for] = ACTIONS(3993), + [anon_sym_return] = ACTIONS(3993), + [anon_sym_break] = ACTIONS(3993), + [anon_sym_continue] = ACTIONS(3993), + [anon_sym_goto] = ACTIONS(3993), + [anon_sym_not] = ACTIONS(3993), + [anon_sym_compl] = ACTIONS(3993), + [anon_sym_DASH_DASH] = ACTIONS(3995), + [anon_sym_PLUS_PLUS] = ACTIONS(3995), + [anon_sym_sizeof] = ACTIONS(3993), + [anon_sym___alignof__] = ACTIONS(3993), + [anon_sym___alignof] = ACTIONS(3993), + [anon_sym__alignof] = ACTIONS(3993), + [anon_sym_alignof] = ACTIONS(3993), + [anon_sym__Alignof] = ACTIONS(3993), + [anon_sym_offsetof] = ACTIONS(3993), + [anon_sym__Generic] = ACTIONS(3993), + [anon_sym_typename] = ACTIONS(3993), + [anon_sym_asm] = ACTIONS(3993), + [anon_sym___asm__] = ACTIONS(3993), + [anon_sym___asm] = ACTIONS(3993), + [sym_number_literal] = ACTIONS(3995), + [anon_sym_L_SQUOTE] = ACTIONS(3995), + [anon_sym_u_SQUOTE] = ACTIONS(3995), + [anon_sym_U_SQUOTE] = ACTIONS(3995), + [anon_sym_u8_SQUOTE] = ACTIONS(3995), + [anon_sym_SQUOTE] = ACTIONS(3995), + [anon_sym_L_DQUOTE] = ACTIONS(3995), + [anon_sym_u_DQUOTE] = ACTIONS(3995), + [anon_sym_U_DQUOTE] = ACTIONS(3995), + [anon_sym_u8_DQUOTE] = ACTIONS(3995), + [anon_sym_DQUOTE] = ACTIONS(3995), + [sym_true] = ACTIONS(3993), + [sym_false] = ACTIONS(3993), + [anon_sym_NULL] = ACTIONS(3993), + [anon_sym_nullptr] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3993), + [anon_sym_decltype] = ACTIONS(3993), + [anon_sym_explicit] = ACTIONS(3993), + [anon_sym_export] = ACTIONS(3993), + [anon_sym_module] = ACTIONS(3993), + [anon_sym_import] = ACTIONS(3993), + [anon_sym_template] = ACTIONS(3993), + [anon_sym_operator] = ACTIONS(3993), + [anon_sym_try] = ACTIONS(3993), + [anon_sym_delete] = ACTIONS(3993), + [anon_sym_throw] = ACTIONS(3993), + [anon_sym_namespace] = ACTIONS(3993), + [anon_sym_static_assert] = ACTIONS(3993), + [anon_sym_concept] = ACTIONS(3993), + [anon_sym_co_return] = ACTIONS(3993), + [anon_sym_co_yield] = ACTIONS(3993), + [anon_sym_R_DQUOTE] = ACTIONS(3995), + [anon_sym_LR_DQUOTE] = ACTIONS(3995), + [anon_sym_uR_DQUOTE] = ACTIONS(3995), + [anon_sym_UR_DQUOTE] = ACTIONS(3995), + [anon_sym_u8R_DQUOTE] = ACTIONS(3995), + [anon_sym_co_await] = ACTIONS(3993), + [anon_sym_new] = ACTIONS(3993), + [anon_sym_requires] = ACTIONS(3993), + [anon_sym_CARET_CARET] = ACTIONS(3995), + [anon_sym_LBRACK_COLON] = ACTIONS(3995), + [sym_this] = ACTIONS(3993), }, - [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), + [STATE(950)] = { + [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(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(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), + [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), }, - [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), + [STATE(951)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4787), + [anon_sym_RBRACE] = ACTIONS(4780), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -193632,7 +198416,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -193642,126 +198426,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(952)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2797), + [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(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [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(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4782), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4789), + [anon_sym_RBRACE] = ACTIONS(4784), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -193771,7 +198555,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -193781,126 +198565,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(953)] = { + [sym_preproc_def] = STATE(953), + [sym_preproc_function_def] = STATE(953), + [sym_preproc_call] = STATE(953), + [sym_preproc_if_in_field_declaration_list] = STATE(953), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(953), + [sym_type_definition] = STATE(953), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9123), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9792), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(953), + [sym_field_declaration] = STATE(953), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2816), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(953), + [sym_operator_cast] = STATE(10372), + [sym_inline_method_definition] = STATE(953), + [sym__constructor_specifiers] = STATE(2816), + [sym_operator_cast_definition] = STATE(953), + [sym_operator_cast_declaration] = STATE(953), + [sym_constructor_or_destructor_definition] = STATE(953), + [sym_constructor_or_destructor_declaration] = STATE(953), + [sym_friend_declaration] = STATE(953), + [sym_access_specifier] = STATE(12347), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(953), + [sym_alias_declaration] = STATE(953), + [sym_static_assert_declaration] = STATE(953), + [sym_consteval_block_declaration] = STATE(953), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10372), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(953), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10759), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2816), + [sym_identifier] = ACTIONS(4542), + [aux_sym_preproc_def_token1] = ACTIONS(4786), + [aux_sym_preproc_if_token1] = ACTIONS(4789), + [aux_sym_preproc_if_token2] = ACTIONS(4551), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4792), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4792), + [sym_preproc_directive] = ACTIONS(4795), + [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(4798), + [anon_sym___extension__] = ACTIONS(4801), + [anon_sym_typedef] = ACTIONS(4804), + [anon_sym_virtual] = ACTIONS(4583), + [anon_sym_extern] = ACTIONS(4586), + [anon_sym___attribute__] = ACTIONS(4589), + [anon_sym___attribute] = ACTIONS(4589), + [anon_sym_using] = ACTIONS(4807), + [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(4810), + [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(4813), + [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(4816), + [anon_sym_operator] = ACTIONS(4658), + [anon_sym_friend] = ACTIONS(4819), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_static_assert] = ACTIONS(4822), + [anon_sym_LBRACK_COLON] = ACTIONS(4667), + }, + [STATE(954)] = { + [ts_builtin_sym_end] = ACTIONS(4066), + [sym_identifier] = ACTIONS(4064), + [aux_sym_preproc_include_token1] = ACTIONS(4064), + [aux_sym_preproc_def_token1] = ACTIONS(4064), + [aux_sym_preproc_if_token1] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4064), + [sym_preproc_directive] = ACTIONS(4064), + [anon_sym_LPAREN2] = ACTIONS(4066), + [anon_sym_BANG] = ACTIONS(4066), + [anon_sym_TILDE] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4066), + [anon_sym_AMP_AMP] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(4066), + [anon_sym___extension__] = ACTIONS(4064), + [anon_sym_typedef] = ACTIONS(4064), + [anon_sym_virtual] = ACTIONS(4064), + [anon_sym_extern] = ACTIONS(4064), + [anon_sym___attribute__] = ACTIONS(4064), + [anon_sym___attribute] = ACTIONS(4064), + [anon_sym_using] = ACTIONS(4064), + [anon_sym_COLON_COLON] = ACTIONS(4066), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4066), + [anon_sym___declspec] = ACTIONS(4064), + [anon_sym___based] = ACTIONS(4064), + [anon_sym___cdecl] = ACTIONS(4064), + [anon_sym___clrcall] = ACTIONS(4064), + [anon_sym___stdcall] = ACTIONS(4064), + [anon_sym___fastcall] = ACTIONS(4064), + [anon_sym___thiscall] = ACTIONS(4064), + [anon_sym___vectorcall] = ACTIONS(4064), + [anon_sym_LBRACE] = ACTIONS(4066), + [anon_sym_signed] = ACTIONS(4064), + [anon_sym_unsigned] = ACTIONS(4064), + [anon_sym_long] = ACTIONS(4064), + [anon_sym_short] = ACTIONS(4064), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_static] = ACTIONS(4064), + [anon_sym_register] = ACTIONS(4064), + [anon_sym_inline] = ACTIONS(4064), + [anon_sym___inline] = ACTIONS(4064), + [anon_sym___inline__] = ACTIONS(4064), + [anon_sym___forceinline] = ACTIONS(4064), + [anon_sym_thread_local] = ACTIONS(4064), + [anon_sym___thread] = ACTIONS(4064), + [anon_sym_const] = ACTIONS(4064), + [anon_sym_constexpr] = ACTIONS(4064), + [anon_sym_volatile] = ACTIONS(4064), + [anon_sym_restrict] = ACTIONS(4064), + [anon_sym___restrict__] = ACTIONS(4064), + [anon_sym__Atomic] = ACTIONS(4064), + [anon_sym__Noreturn] = ACTIONS(4064), + [anon_sym_noreturn] = ACTIONS(4064), + [anon_sym__Nonnull] = ACTIONS(4064), + [anon_sym_mutable] = ACTIONS(4064), + [anon_sym_constinit] = ACTIONS(4064), + [anon_sym_consteval] = ACTIONS(4064), + [anon_sym_alignas] = ACTIONS(4064), + [anon_sym__Alignas] = ACTIONS(4064), + [sym_primitive_type] = ACTIONS(4064), + [anon_sym_enum] = ACTIONS(4064), + [anon_sym_class] = ACTIONS(4064), + [anon_sym_struct] = ACTIONS(4064), + [anon_sym_union] = ACTIONS(4064), + [anon_sym_if] = ACTIONS(4064), + [anon_sym_switch] = ACTIONS(4064), + [anon_sym_case] = ACTIONS(4064), + [anon_sym_default] = ACTIONS(4064), + [anon_sym_while] = ACTIONS(4064), + [anon_sym_do] = ACTIONS(4064), + [anon_sym_for] = ACTIONS(4064), + [anon_sym_return] = ACTIONS(4064), + [anon_sym_break] = ACTIONS(4064), + [anon_sym_continue] = ACTIONS(4064), + [anon_sym_goto] = ACTIONS(4064), + [anon_sym_not] = ACTIONS(4064), + [anon_sym_compl] = ACTIONS(4064), + [anon_sym_DASH_DASH] = ACTIONS(4066), + [anon_sym_PLUS_PLUS] = ACTIONS(4066), + [anon_sym_sizeof] = ACTIONS(4064), + [anon_sym___alignof__] = ACTIONS(4064), + [anon_sym___alignof] = ACTIONS(4064), + [anon_sym__alignof] = ACTIONS(4064), + [anon_sym_alignof] = ACTIONS(4064), + [anon_sym__Alignof] = ACTIONS(4064), + [anon_sym_offsetof] = ACTIONS(4064), + [anon_sym__Generic] = ACTIONS(4064), + [anon_sym_typename] = ACTIONS(4064), + [anon_sym_asm] = ACTIONS(4064), + [anon_sym___asm__] = ACTIONS(4064), + [anon_sym___asm] = ACTIONS(4064), + [sym_number_literal] = ACTIONS(4066), + [anon_sym_L_SQUOTE] = ACTIONS(4066), + [anon_sym_u_SQUOTE] = ACTIONS(4066), + [anon_sym_U_SQUOTE] = ACTIONS(4066), + [anon_sym_u8_SQUOTE] = ACTIONS(4066), + [anon_sym_SQUOTE] = ACTIONS(4066), + [anon_sym_L_DQUOTE] = ACTIONS(4066), + [anon_sym_u_DQUOTE] = ACTIONS(4066), + [anon_sym_U_DQUOTE] = ACTIONS(4066), + [anon_sym_u8_DQUOTE] = ACTIONS(4066), + [anon_sym_DQUOTE] = ACTIONS(4066), + [sym_true] = ACTIONS(4064), + [sym_false] = ACTIONS(4064), + [anon_sym_NULL] = ACTIONS(4064), + [anon_sym_nullptr] = ACTIONS(4064), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4064), + [anon_sym_decltype] = ACTIONS(4064), + [anon_sym_explicit] = ACTIONS(4064), + [anon_sym_export] = ACTIONS(4064), + [anon_sym_module] = ACTIONS(4064), + [anon_sym_import] = ACTIONS(4064), + [anon_sym_template] = ACTIONS(4064), + [anon_sym_operator] = ACTIONS(4064), + [anon_sym_try] = ACTIONS(4064), + [anon_sym_delete] = ACTIONS(4064), + [anon_sym_throw] = ACTIONS(4064), + [anon_sym_namespace] = ACTIONS(4064), + [anon_sym_static_assert] = ACTIONS(4064), + [anon_sym_concept] = ACTIONS(4064), + [anon_sym_co_return] = ACTIONS(4064), + [anon_sym_co_yield] = ACTIONS(4064), + [anon_sym_R_DQUOTE] = ACTIONS(4066), + [anon_sym_LR_DQUOTE] = ACTIONS(4066), + [anon_sym_uR_DQUOTE] = ACTIONS(4066), + [anon_sym_UR_DQUOTE] = ACTIONS(4066), + [anon_sym_u8R_DQUOTE] = ACTIONS(4066), + [anon_sym_co_await] = ACTIONS(4064), + [anon_sym_new] = ACTIONS(4064), + [anon_sym_requires] = ACTIONS(4064), + [anon_sym_CARET_CARET] = ACTIONS(4066), + [anon_sym_LBRACK_COLON] = ACTIONS(4066), + [sym_this] = ACTIONS(4064), + }, + [STATE(955)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4793), + [anon_sym_RBRACE] = ACTIONS(4825), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -193910,7 +198972,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -193920,682 +198982,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(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), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(956)] = { + [ts_builtin_sym_end] = ACTIONS(3888), + [sym_identifier] = ACTIONS(3886), + [aux_sym_preproc_include_token1] = ACTIONS(3886), + [aux_sym_preproc_def_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token1] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3886), + [sym_preproc_directive] = ACTIONS(3886), + [anon_sym_LPAREN2] = ACTIONS(3888), + [anon_sym_BANG] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(3886), + [anon_sym_typedef] = ACTIONS(3886), + [anon_sym_virtual] = ACTIONS(3886), + [anon_sym_extern] = ACTIONS(3886), + [anon_sym___attribute__] = ACTIONS(3886), + [anon_sym___attribute] = ACTIONS(3886), + [anon_sym_using] = ACTIONS(3886), + [anon_sym_COLON_COLON] = ACTIONS(3888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3888), + [anon_sym___declspec] = ACTIONS(3886), + [anon_sym___based] = ACTIONS(3886), + [anon_sym___cdecl] = ACTIONS(3886), + [anon_sym___clrcall] = ACTIONS(3886), + [anon_sym___stdcall] = ACTIONS(3886), + [anon_sym___fastcall] = ACTIONS(3886), + [anon_sym___thiscall] = ACTIONS(3886), + [anon_sym___vectorcall] = ACTIONS(3886), + [anon_sym_LBRACE] = ACTIONS(3888), + [anon_sym_signed] = ACTIONS(3886), + [anon_sym_unsigned] = ACTIONS(3886), + [anon_sym_long] = ACTIONS(3886), + [anon_sym_short] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_static] = ACTIONS(3886), + [anon_sym_register] = ACTIONS(3886), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym___inline] = ACTIONS(3886), + [anon_sym___inline__] = ACTIONS(3886), + [anon_sym___forceinline] = ACTIONS(3886), + [anon_sym_thread_local] = ACTIONS(3886), + [anon_sym___thread] = ACTIONS(3886), + [anon_sym_const] = ACTIONS(3886), + [anon_sym_constexpr] = ACTIONS(3886), + [anon_sym_volatile] = ACTIONS(3886), + [anon_sym_restrict] = ACTIONS(3886), + [anon_sym___restrict__] = ACTIONS(3886), + [anon_sym__Atomic] = ACTIONS(3886), + [anon_sym__Noreturn] = ACTIONS(3886), + [anon_sym_noreturn] = ACTIONS(3886), + [anon_sym__Nonnull] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3886), + [anon_sym_constinit] = ACTIONS(3886), + [anon_sym_consteval] = ACTIONS(3886), + [anon_sym_alignas] = ACTIONS(3886), + [anon_sym__Alignas] = ACTIONS(3886), + [sym_primitive_type] = ACTIONS(3886), + [anon_sym_enum] = ACTIONS(3886), + [anon_sym_class] = ACTIONS(3886), + [anon_sym_struct] = ACTIONS(3886), + [anon_sym_union] = ACTIONS(3886), + [anon_sym_if] = ACTIONS(3886), + [anon_sym_switch] = ACTIONS(3886), + [anon_sym_case] = ACTIONS(3886), + [anon_sym_default] = ACTIONS(3886), + [anon_sym_while] = ACTIONS(3886), + [anon_sym_do] = ACTIONS(3886), + [anon_sym_for] = ACTIONS(3886), + [anon_sym_return] = ACTIONS(3886), + [anon_sym_break] = ACTIONS(3886), + [anon_sym_continue] = ACTIONS(3886), + [anon_sym_goto] = ACTIONS(3886), + [anon_sym_not] = ACTIONS(3886), + [anon_sym_compl] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3888), + [anon_sym_sizeof] = ACTIONS(3886), + [anon_sym___alignof__] = ACTIONS(3886), + [anon_sym___alignof] = ACTIONS(3886), + [anon_sym__alignof] = ACTIONS(3886), + [anon_sym_alignof] = ACTIONS(3886), + [anon_sym__Alignof] = ACTIONS(3886), + [anon_sym_offsetof] = ACTIONS(3886), + [anon_sym__Generic] = ACTIONS(3886), + [anon_sym_typename] = ACTIONS(3886), + [anon_sym_asm] = ACTIONS(3886), + [anon_sym___asm__] = ACTIONS(3886), + [anon_sym___asm] = ACTIONS(3886), + [sym_number_literal] = ACTIONS(3888), + [anon_sym_L_SQUOTE] = ACTIONS(3888), + [anon_sym_u_SQUOTE] = ACTIONS(3888), + [anon_sym_U_SQUOTE] = ACTIONS(3888), + [anon_sym_u8_SQUOTE] = ACTIONS(3888), + [anon_sym_SQUOTE] = ACTIONS(3888), + [anon_sym_L_DQUOTE] = ACTIONS(3888), + [anon_sym_u_DQUOTE] = ACTIONS(3888), + [anon_sym_U_DQUOTE] = ACTIONS(3888), + [anon_sym_u8_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [sym_true] = ACTIONS(3886), + [sym_false] = ACTIONS(3886), + [anon_sym_NULL] = ACTIONS(3886), + [anon_sym_nullptr] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3886), + [anon_sym_decltype] = ACTIONS(3886), + [anon_sym_explicit] = ACTIONS(3886), + [anon_sym_export] = ACTIONS(3886), + [anon_sym_module] = ACTIONS(3886), + [anon_sym_import] = ACTIONS(3886), + [anon_sym_template] = ACTIONS(3886), + [anon_sym_operator] = ACTIONS(3886), + [anon_sym_try] = ACTIONS(3886), + [anon_sym_delete] = ACTIONS(3886), + [anon_sym_throw] = ACTIONS(3886), + [anon_sym_namespace] = ACTIONS(3886), + [anon_sym_static_assert] = ACTIONS(3886), + [anon_sym_concept] = ACTIONS(3886), + [anon_sym_co_return] = ACTIONS(3886), + [anon_sym_co_yield] = ACTIONS(3886), + [anon_sym_R_DQUOTE] = ACTIONS(3888), + [anon_sym_LR_DQUOTE] = ACTIONS(3888), + [anon_sym_uR_DQUOTE] = ACTIONS(3888), + [anon_sym_UR_DQUOTE] = ACTIONS(3888), + [anon_sym_u8R_DQUOTE] = ACTIONS(3888), + [anon_sym_co_await] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3886), + [anon_sym_requires] = ACTIONS(3886), + [anon_sym_CARET_CARET] = ACTIONS(3888), + [anon_sym_LBRACK_COLON] = ACTIONS(3888), + [sym_this] = ACTIONS(3886), }, - [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(957)] = { + [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(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(958)] = { + [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(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(959)] = { + [sym_preproc_def] = STATE(961), + [sym_preproc_function_def] = STATE(961), + [sym_preproc_call] = STATE(961), + [sym_preproc_if_in_field_declaration_list] = STATE(961), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(961), + [sym_type_definition] = STATE(961), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(961), + [sym_field_declaration] = STATE(961), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(961), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(961), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(961), + [sym_operator_cast_declaration] = STATE(961), + [sym_constructor_or_destructor_definition] = STATE(961), + [sym_constructor_or_destructor_declaration] = STATE(961), + [sym_friend_declaration] = STATE(961), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(961), + [sym_alias_declaration] = STATE(961), + [sym_static_assert_declaration] = STATE(961), + [sym_consteval_block_declaration] = STATE(961), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(961), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4797), + [anon_sym_RBRACE] = ACTIONS(4829), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -194605,7 +199528,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -194615,126 +199538,265 @@ 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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(960)] = { + [ts_builtin_sym_end] = ACTIONS(4451), + [sym_identifier] = ACTIONS(4449), + [aux_sym_preproc_include_token1] = ACTIONS(4449), + [aux_sym_preproc_def_token1] = ACTIONS(4449), + [aux_sym_preproc_if_token1] = ACTIONS(4449), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4449), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4449), + [sym_preproc_directive] = ACTIONS(4449), + [anon_sym_LPAREN2] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_TILDE] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4449), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_AMP_AMP] = ACTIONS(4451), + [anon_sym_AMP] = ACTIONS(4449), + [anon_sym_SEMI] = ACTIONS(4451), + [anon_sym___extension__] = ACTIONS(4449), + [anon_sym_typedef] = ACTIONS(4449), + [anon_sym_virtual] = ACTIONS(4449), + [anon_sym_extern] = ACTIONS(4449), + [anon_sym___attribute__] = ACTIONS(4449), + [anon_sym___attribute] = ACTIONS(4449), + [anon_sym_using] = ACTIONS(4449), + [anon_sym_COLON_COLON] = ACTIONS(4451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4451), + [anon_sym___declspec] = ACTIONS(4449), + [anon_sym___based] = ACTIONS(4449), + [anon_sym___cdecl] = ACTIONS(4449), + [anon_sym___clrcall] = ACTIONS(4449), + [anon_sym___stdcall] = ACTIONS(4449), + [anon_sym___fastcall] = ACTIONS(4449), + [anon_sym___thiscall] = ACTIONS(4449), + [anon_sym___vectorcall] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(4451), + [anon_sym_signed] = ACTIONS(4449), + [anon_sym_unsigned] = ACTIONS(4449), + [anon_sym_long] = ACTIONS(4449), + [anon_sym_short] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_register] = ACTIONS(4449), + [anon_sym_inline] = ACTIONS(4449), + [anon_sym___inline] = ACTIONS(4449), + [anon_sym___inline__] = ACTIONS(4449), + [anon_sym___forceinline] = ACTIONS(4449), + [anon_sym_thread_local] = ACTIONS(4449), + [anon_sym___thread] = ACTIONS(4449), + [anon_sym_const] = ACTIONS(4449), + [anon_sym_constexpr] = ACTIONS(4449), + [anon_sym_volatile] = ACTIONS(4449), + [anon_sym_restrict] = ACTIONS(4449), + [anon_sym___restrict__] = ACTIONS(4449), + [anon_sym__Atomic] = ACTIONS(4449), + [anon_sym__Noreturn] = ACTIONS(4449), + [anon_sym_noreturn] = ACTIONS(4449), + [anon_sym__Nonnull] = ACTIONS(4449), + [anon_sym_mutable] = ACTIONS(4449), + [anon_sym_constinit] = ACTIONS(4449), + [anon_sym_consteval] = ACTIONS(4449), + [anon_sym_alignas] = ACTIONS(4449), + [anon_sym__Alignas] = ACTIONS(4449), + [sym_primitive_type] = ACTIONS(4449), + [anon_sym_enum] = ACTIONS(4449), + [anon_sym_class] = ACTIONS(4449), + [anon_sym_struct] = ACTIONS(4449), + [anon_sym_union] = ACTIONS(4449), + [anon_sym_if] = ACTIONS(4449), + [anon_sym_switch] = ACTIONS(4449), + [anon_sym_case] = ACTIONS(4449), + [anon_sym_default] = ACTIONS(4449), + [anon_sym_while] = ACTIONS(4449), + [anon_sym_do] = ACTIONS(4449), + [anon_sym_for] = ACTIONS(4449), + [anon_sym_return] = ACTIONS(4449), + [anon_sym_break] = ACTIONS(4449), + [anon_sym_continue] = ACTIONS(4449), + [anon_sym_goto] = ACTIONS(4449), + [anon_sym_not] = ACTIONS(4449), + [anon_sym_compl] = ACTIONS(4449), + [anon_sym_DASH_DASH] = ACTIONS(4451), + [anon_sym_PLUS_PLUS] = ACTIONS(4451), + [anon_sym_sizeof] = ACTIONS(4449), + [anon_sym___alignof__] = ACTIONS(4449), + [anon_sym___alignof] = ACTIONS(4449), + [anon_sym__alignof] = ACTIONS(4449), + [anon_sym_alignof] = ACTIONS(4449), + [anon_sym__Alignof] = ACTIONS(4449), + [anon_sym_offsetof] = ACTIONS(4449), + [anon_sym__Generic] = ACTIONS(4449), + [anon_sym_typename] = ACTIONS(4449), + [anon_sym_asm] = ACTIONS(4449), + [anon_sym___asm__] = ACTIONS(4449), + [anon_sym___asm] = ACTIONS(4449), + [sym_number_literal] = ACTIONS(4451), + [anon_sym_L_SQUOTE] = ACTIONS(4451), + [anon_sym_u_SQUOTE] = ACTIONS(4451), + [anon_sym_U_SQUOTE] = ACTIONS(4451), + [anon_sym_u8_SQUOTE] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_L_DQUOTE] = ACTIONS(4451), + [anon_sym_u_DQUOTE] = ACTIONS(4451), + [anon_sym_U_DQUOTE] = ACTIONS(4451), + [anon_sym_u8_DQUOTE] = ACTIONS(4451), + [anon_sym_DQUOTE] = ACTIONS(4451), + [sym_true] = ACTIONS(4449), + [sym_false] = ACTIONS(4449), + [anon_sym_NULL] = ACTIONS(4449), + [anon_sym_nullptr] = ACTIONS(4449), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4449), + [anon_sym_decltype] = ACTIONS(4449), + [anon_sym_explicit] = ACTIONS(4449), + [anon_sym_export] = ACTIONS(4449), + [anon_sym_module] = ACTIONS(4449), + [anon_sym_import] = ACTIONS(4449), + [anon_sym_template] = ACTIONS(4449), + [anon_sym_operator] = ACTIONS(4449), + [anon_sym_try] = ACTIONS(4449), + [anon_sym_delete] = ACTIONS(4449), + [anon_sym_throw] = ACTIONS(4449), + [anon_sym_namespace] = ACTIONS(4449), + [anon_sym_static_assert] = ACTIONS(4449), + [anon_sym_concept] = ACTIONS(4449), + [anon_sym_co_return] = ACTIONS(4449), + [anon_sym_co_yield] = ACTIONS(4449), + [anon_sym_R_DQUOTE] = ACTIONS(4451), + [anon_sym_LR_DQUOTE] = ACTIONS(4451), + [anon_sym_uR_DQUOTE] = ACTIONS(4451), + [anon_sym_UR_DQUOTE] = ACTIONS(4451), + [anon_sym_u8R_DQUOTE] = ACTIONS(4451), + [anon_sym_co_await] = ACTIONS(4449), + [anon_sym_new] = ACTIONS(4449), + [anon_sym_requires] = ACTIONS(4449), + [anon_sym_CARET_CARET] = ACTIONS(4451), + [anon_sym_LBRACK_COLON] = ACTIONS(4451), + [sym_this] = ACTIONS(4449), + }, + [STATE(961)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4799), + [anon_sym_RBRACE] = ACTIONS(4831), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -194744,7 +199806,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -194754,136 +199816,414 @@ 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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [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_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___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), + [STATE(962)] = { + [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(4466), + [anon_sym_BANG] = ACTIONS(4466), + [anon_sym_TILDE] = ACTIONS(4466), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4466), + [anon_sym_AMP_AMP] = ACTIONS(4466), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4466), + [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(4466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4466), + [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(4466), + [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(4466), + [anon_sym_PLUS_PLUS] = ACTIONS(4466), + [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(4466), + [anon_sym_L_SQUOTE] = ACTIONS(4466), + [anon_sym_u_SQUOTE] = ACTIONS(4466), + [anon_sym_U_SQUOTE] = ACTIONS(4466), + [anon_sym_u8_SQUOTE] = ACTIONS(4466), + [anon_sym_SQUOTE] = ACTIONS(4466), + [anon_sym_L_DQUOTE] = ACTIONS(4466), + [anon_sym_u_DQUOTE] = ACTIONS(4466), + [anon_sym_U_DQUOTE] = ACTIONS(4466), + [anon_sym_u8_DQUOTE] = ACTIONS(4466), + [anon_sym_DQUOTE] = ACTIONS(4466), + [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(4466), + [anon_sym_LR_DQUOTE] = ACTIONS(4466), + [anon_sym_uR_DQUOTE] = ACTIONS(4466), + [anon_sym_UR_DQUOTE] = ACTIONS(4466), + [anon_sym_u8R_DQUOTE] = ACTIONS(4466), + [anon_sym_co_await] = ACTIONS(4464), + [anon_sym_new] = ACTIONS(4464), + [anon_sym_requires] = ACTIONS(4464), + [anon_sym_CARET_CARET] = ACTIONS(4466), + [anon_sym_LBRACK_COLON] = ACTIONS(4466), + [sym_this] = ACTIONS(4464), + }, + [STATE(963)] = { + [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), + }, + [STATE(964)] = { + [sym_preproc_def] = STATE(967), + [sym_preproc_function_def] = STATE(967), + [sym_preproc_call] = STATE(967), + [sym_preproc_if_in_field_declaration_list] = STATE(967), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(967), + [sym_type_definition] = STATE(967), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(967), + [sym_field_declaration] = STATE(967), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(967), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(967), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(967), + [sym_operator_cast_declaration] = STATE(967), + [sym_constructor_or_destructor_definition] = STATE(967), + [sym_constructor_or_destructor_declaration] = STATE(967), + [sym_friend_declaration] = STATE(967), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(967), + [sym_alias_declaration] = STATE(967), + [sym_static_assert_declaration] = STATE(967), + [sym_consteval_block_declaration] = STATE(967), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(967), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4833), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4835), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4819), + [anon_sym_constexpr] = ACTIONS(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -194893,404 +200233,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(965)] = { + [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(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_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), }, - [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), + [STATE(966)] = { + [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(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_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(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(967)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_RBRACE] = ACTIONS(4837), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -195300,7 +200640,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -195310,265 +200650,265 @@ 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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(968)] = { + [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(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_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(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(969)] = { + [sym_preproc_def] = STATE(970), + [sym_preproc_function_def] = STATE(970), + [sym_preproc_call] = STATE(970), + [sym_preproc_if_in_field_declaration_list] = STATE(970), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(970), + [sym_type_definition] = STATE(970), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(970), + [sym_field_declaration] = STATE(970), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(970), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(970), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(970), + [sym_operator_cast_declaration] = STATE(970), + [sym_constructor_or_destructor_definition] = STATE(970), + [sym_constructor_or_destructor_declaration] = STATE(970), + [sym_friend_declaration] = STATE(970), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(970), + [sym_alias_declaration] = STATE(970), + [sym_static_assert_declaration] = STATE(970), + [sym_consteval_block_declaration] = STATE(970), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(970), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4839), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4833), + [anon_sym_RBRACE] = ACTIONS(4841), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -195578,7 +200918,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -195588,126 +200928,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(970)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4837), + [anon_sym_RBRACE] = ACTIONS(4843), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -195717,7 +201057,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -195727,126 +201067,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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(971)] = { + [sym_preproc_def] = STATE(953), + [sym_preproc_function_def] = STATE(953), + [sym_preproc_call] = STATE(953), + [sym_preproc_if_in_field_declaration_list] = STATE(953), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(953), + [sym_type_definition] = STATE(953), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9123), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9792), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(953), + [sym_field_declaration] = STATE(953), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2816), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(953), + [sym_operator_cast] = STATE(10372), + [sym_inline_method_definition] = STATE(953), + [sym__constructor_specifiers] = STATE(2816), + [sym_operator_cast_definition] = STATE(953), + [sym_operator_cast_declaration] = STATE(953), + [sym_constructor_or_destructor_definition] = STATE(953), + [sym_constructor_or_destructor_declaration] = STATE(953), + [sym_friend_declaration] = STATE(953), + [sym_access_specifier] = STATE(12347), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(953), + [sym_alias_declaration] = STATE(953), + [sym_static_assert_declaration] = STATE(953), + [sym_consteval_block_declaration] = STATE(953), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10372), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(953), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10759), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2816), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4728), + [aux_sym_preproc_if_token1] = ACTIONS(4730), + [aux_sym_preproc_if_token2] = ACTIONS(4845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4734), + [sym_preproc_directive] = ACTIONS(4736), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4847), + [anon_sym___extension__] = ACTIONS(4740), + [anon_sym_typedef] = ACTIONS(4742), [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_using] = ACTIONS(4744), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4839), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -195856,7 +201196,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(4746), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -195866,863 +201206,307 @@ 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(4748), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4750), [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(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(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), + [anon_sym_friend] = ACTIONS(4752), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4754), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(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), - [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), - }, - [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(972)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(973), + [sym_field_declaration] = STATE(973), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(973), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(973), + [sym__constructor_specifiers] = STATE(2797), + [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(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [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(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(973), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4849), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4851), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(973)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4853), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [STATE(963)] = { + [STATE(974)] = { [ts_builtin_sym_end] = ACTIONS(4494), [sym_identifier] = ACTIONS(4492), [aux_sym_preproc_include_token1] = ACTIONS(4492), @@ -196861,1494 +201645,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(975)] = { + [sym_preproc_def] = STATE(976), + [sym_preproc_function_def] = STATE(976), + [sym_preproc_call] = STATE(976), + [sym_preproc_if_in_field_declaration_list] = STATE(976), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(976), + [sym_type_definition] = STATE(976), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(976), + [sym_field_declaration] = STATE(976), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(976), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(976), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(976), + [sym_operator_cast_declaration] = STATE(976), + [sym_constructor_or_destructor_definition] = STATE(976), + [sym_constructor_or_destructor_declaration] = STATE(976), + [sym_friend_declaration] = STATE(976), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(976), + [sym_alias_declaration] = STATE(976), + [sym_static_assert_declaration] = STATE(976), + [sym_consteval_block_declaration] = STATE(976), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(976), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4855), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4857), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(976)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4859), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(977)] = { + [ts_builtin_sym_end] = ACTIONS(4003), + [sym_identifier] = ACTIONS(4001), + [aux_sym_preproc_include_token1] = ACTIONS(4001), + [aux_sym_preproc_def_token1] = ACTIONS(4001), + [aux_sym_preproc_if_token1] = ACTIONS(4001), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4001), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4001), + [sym_preproc_directive] = ACTIONS(4001), + [anon_sym_LPAREN2] = ACTIONS(4003), + [anon_sym_BANG] = ACTIONS(4003), + [anon_sym_TILDE] = ACTIONS(4003), + [anon_sym_DASH] = ACTIONS(4001), + [anon_sym_PLUS] = ACTIONS(4001), + [anon_sym_STAR] = ACTIONS(4003), + [anon_sym_AMP_AMP] = ACTIONS(4003), + [anon_sym_AMP] = ACTIONS(4001), + [anon_sym_SEMI] = ACTIONS(4003), + [anon_sym___extension__] = ACTIONS(4001), + [anon_sym_typedef] = ACTIONS(4001), + [anon_sym_virtual] = ACTIONS(4001), + [anon_sym_extern] = ACTIONS(4001), + [anon_sym___attribute__] = ACTIONS(4001), + [anon_sym___attribute] = ACTIONS(4001), + [anon_sym_using] = ACTIONS(4001), + [anon_sym_COLON_COLON] = ACTIONS(4003), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4003), + [anon_sym___declspec] = ACTIONS(4001), + [anon_sym___based] = ACTIONS(4001), + [anon_sym___cdecl] = ACTIONS(4001), + [anon_sym___clrcall] = ACTIONS(4001), + [anon_sym___stdcall] = ACTIONS(4001), + [anon_sym___fastcall] = ACTIONS(4001), + [anon_sym___thiscall] = ACTIONS(4001), + [anon_sym___vectorcall] = ACTIONS(4001), + [anon_sym_LBRACE] = ACTIONS(4003), + [anon_sym_signed] = ACTIONS(4001), + [anon_sym_unsigned] = ACTIONS(4001), + [anon_sym_long] = ACTIONS(4001), + [anon_sym_short] = ACTIONS(4001), + [anon_sym_LBRACK] = ACTIONS(4001), + [anon_sym_static] = ACTIONS(4001), + [anon_sym_register] = ACTIONS(4001), + [anon_sym_inline] = ACTIONS(4001), + [anon_sym___inline] = ACTIONS(4001), + [anon_sym___inline__] = ACTIONS(4001), + [anon_sym___forceinline] = ACTIONS(4001), + [anon_sym_thread_local] = ACTIONS(4001), + [anon_sym___thread] = ACTIONS(4001), + [anon_sym_const] = ACTIONS(4001), + [anon_sym_constexpr] = ACTIONS(4001), + [anon_sym_volatile] = ACTIONS(4001), + [anon_sym_restrict] = ACTIONS(4001), + [anon_sym___restrict__] = ACTIONS(4001), + [anon_sym__Atomic] = ACTIONS(4001), + [anon_sym__Noreturn] = ACTIONS(4001), + [anon_sym_noreturn] = ACTIONS(4001), + [anon_sym__Nonnull] = ACTIONS(4001), + [anon_sym_mutable] = ACTIONS(4001), + [anon_sym_constinit] = ACTIONS(4001), + [anon_sym_consteval] = ACTIONS(4001), + [anon_sym_alignas] = ACTIONS(4001), + [anon_sym__Alignas] = ACTIONS(4001), + [sym_primitive_type] = ACTIONS(4001), + [anon_sym_enum] = ACTIONS(4001), + [anon_sym_class] = ACTIONS(4001), + [anon_sym_struct] = ACTIONS(4001), + [anon_sym_union] = ACTIONS(4001), + [anon_sym_if] = ACTIONS(4001), + [anon_sym_switch] = ACTIONS(4001), + [anon_sym_case] = ACTIONS(4001), + [anon_sym_default] = ACTIONS(4001), + [anon_sym_while] = ACTIONS(4001), + [anon_sym_do] = ACTIONS(4001), + [anon_sym_for] = ACTIONS(4001), + [anon_sym_return] = ACTIONS(4001), + [anon_sym_break] = ACTIONS(4001), + [anon_sym_continue] = ACTIONS(4001), + [anon_sym_goto] = ACTIONS(4001), + [anon_sym_not] = ACTIONS(4001), + [anon_sym_compl] = ACTIONS(4001), + [anon_sym_DASH_DASH] = ACTIONS(4003), + [anon_sym_PLUS_PLUS] = ACTIONS(4003), + [anon_sym_sizeof] = ACTIONS(4001), + [anon_sym___alignof__] = ACTIONS(4001), + [anon_sym___alignof] = ACTIONS(4001), + [anon_sym__alignof] = ACTIONS(4001), + [anon_sym_alignof] = ACTIONS(4001), + [anon_sym__Alignof] = ACTIONS(4001), + [anon_sym_offsetof] = ACTIONS(4001), + [anon_sym__Generic] = ACTIONS(4001), + [anon_sym_typename] = ACTIONS(4001), + [anon_sym_asm] = ACTIONS(4001), + [anon_sym___asm__] = ACTIONS(4001), + [anon_sym___asm] = ACTIONS(4001), + [sym_number_literal] = ACTIONS(4003), + [anon_sym_L_SQUOTE] = ACTIONS(4003), + [anon_sym_u_SQUOTE] = ACTIONS(4003), + [anon_sym_U_SQUOTE] = ACTIONS(4003), + [anon_sym_u8_SQUOTE] = ACTIONS(4003), + [anon_sym_SQUOTE] = ACTIONS(4003), + [anon_sym_L_DQUOTE] = ACTIONS(4003), + [anon_sym_u_DQUOTE] = ACTIONS(4003), + [anon_sym_U_DQUOTE] = ACTIONS(4003), + [anon_sym_u8_DQUOTE] = ACTIONS(4003), + [anon_sym_DQUOTE] = ACTIONS(4003), + [sym_true] = ACTIONS(4001), + [sym_false] = ACTIONS(4001), + [anon_sym_NULL] = ACTIONS(4001), + [anon_sym_nullptr] = ACTIONS(4001), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4001), + [anon_sym_decltype] = ACTIONS(4001), + [anon_sym_explicit] = ACTIONS(4001), + [anon_sym_export] = ACTIONS(4001), + [anon_sym_module] = ACTIONS(4001), + [anon_sym_import] = ACTIONS(4001), + [anon_sym_template] = ACTIONS(4001), + [anon_sym_operator] = ACTIONS(4001), + [anon_sym_try] = ACTIONS(4001), + [anon_sym_delete] = ACTIONS(4001), + [anon_sym_throw] = ACTIONS(4001), + [anon_sym_namespace] = ACTIONS(4001), + [anon_sym_static_assert] = ACTIONS(4001), + [anon_sym_concept] = ACTIONS(4001), + [anon_sym_co_return] = ACTIONS(4001), + [anon_sym_co_yield] = ACTIONS(4001), + [anon_sym_R_DQUOTE] = ACTIONS(4003), + [anon_sym_LR_DQUOTE] = ACTIONS(4003), + [anon_sym_uR_DQUOTE] = ACTIONS(4003), + [anon_sym_UR_DQUOTE] = ACTIONS(4003), + [anon_sym_u8R_DQUOTE] = ACTIONS(4003), + [anon_sym_co_await] = ACTIONS(4001), + [anon_sym_new] = ACTIONS(4001), + [anon_sym_requires] = ACTIONS(4001), + [anon_sym_CARET_CARET] = ACTIONS(4003), + [anon_sym_LBRACK_COLON] = ACTIONS(4003), + [sym_this] = ACTIONS(4001), }, - [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(978)] = { + [sym_preproc_def] = STATE(1052), + [sym_preproc_function_def] = STATE(1052), + [sym_preproc_call] = STATE(1052), + [sym_preproc_if_in_field_declaration_list] = STATE(1052), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1052), + [sym_type_definition] = STATE(1052), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1052), + [sym_field_declaration] = STATE(1052), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1052), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1052), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1052), + [sym_operator_cast_declaration] = STATE(1052), + [sym_constructor_or_destructor_definition] = STATE(1052), + [sym_constructor_or_destructor_declaration] = STATE(1052), + [sym_friend_declaration] = STATE(1052), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1052), + [sym_alias_declaration] = STATE(1052), + [sym_static_assert_declaration] = STATE(1052), + [sym_consteval_block_declaration] = STATE(1052), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1052), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [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(3518), + [anon_sym_SEMI] = ACTIONS(4861), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4863), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -198358,7 +202169,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -198368,1533 +202179,2645 @@ 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(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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(3548), + [anon_sym_template] = ACTIONS(4714), [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), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [ts_builtin_sym_end] = ACTIONS(4337), + [sym_identifier] = ACTIONS(4335), + [aux_sym_preproc_include_token1] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4337), + [anon_sym_BANG] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4335), + [anon_sym_typedef] = ACTIONS(4335), + [anon_sym_virtual] = ACTIONS(4335), + [anon_sym_extern] = ACTIONS(4335), + [anon_sym___attribute__] = ACTIONS(4335), + [anon_sym___attribute] = ACTIONS(4335), + [anon_sym_using] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4337), + [anon_sym___declspec] = ACTIONS(4335), + [anon_sym___based] = ACTIONS(4335), + [anon_sym___cdecl] = ACTIONS(4335), + [anon_sym___clrcall] = ACTIONS(4335), + [anon_sym___stdcall] = ACTIONS(4335), + [anon_sym___fastcall] = ACTIONS(4335), + [anon_sym___thiscall] = ACTIONS(4335), + [anon_sym___vectorcall] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4337), + [anon_sym_signed] = ACTIONS(4335), + [anon_sym_unsigned] = ACTIONS(4335), + [anon_sym_long] = ACTIONS(4335), + [anon_sym_short] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4335), + [anon_sym_static] = ACTIONS(4335), + [anon_sym_register] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym___inline] = ACTIONS(4335), + [anon_sym___inline__] = ACTIONS(4335), + [anon_sym___forceinline] = ACTIONS(4335), + [anon_sym_thread_local] = ACTIONS(4335), + [anon_sym___thread] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(4335), + [anon_sym_constexpr] = ACTIONS(4335), + [anon_sym_volatile] = ACTIONS(4335), + [anon_sym_restrict] = ACTIONS(4335), + [anon_sym___restrict__] = ACTIONS(4335), + [anon_sym__Atomic] = ACTIONS(4335), + [anon_sym__Noreturn] = ACTIONS(4335), + [anon_sym_noreturn] = ACTIONS(4335), + [anon_sym__Nonnull] = ACTIONS(4335), + [anon_sym_mutable] = ACTIONS(4335), + [anon_sym_constinit] = ACTIONS(4335), + [anon_sym_consteval] = ACTIONS(4335), + [anon_sym_alignas] = ACTIONS(4335), + [anon_sym__Alignas] = ACTIONS(4335), + [sym_primitive_type] = ACTIONS(4335), + [anon_sym_enum] = ACTIONS(4335), + [anon_sym_class] = ACTIONS(4335), + [anon_sym_struct] = ACTIONS(4335), + [anon_sym_union] = ACTIONS(4335), + [anon_sym_if] = ACTIONS(4335), + [anon_sym_switch] = ACTIONS(4335), + [anon_sym_case] = ACTIONS(4335), + [anon_sym_default] = ACTIONS(4335), + [anon_sym_while] = ACTIONS(4335), + [anon_sym_do] = ACTIONS(4335), + [anon_sym_for] = ACTIONS(4335), + [anon_sym_return] = ACTIONS(4335), + [anon_sym_break] = ACTIONS(4335), + [anon_sym_continue] = ACTIONS(4335), + [anon_sym_goto] = ACTIONS(4335), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4337), + [anon_sym_PLUS_PLUS] = ACTIONS(4337), + [anon_sym_sizeof] = ACTIONS(4335), + [anon_sym___alignof__] = ACTIONS(4335), + [anon_sym___alignof] = ACTIONS(4335), + [anon_sym__alignof] = ACTIONS(4335), + [anon_sym_alignof] = ACTIONS(4335), + [anon_sym__Alignof] = ACTIONS(4335), + [anon_sym_offsetof] = ACTIONS(4335), + [anon_sym__Generic] = ACTIONS(4335), + [anon_sym_typename] = ACTIONS(4335), + [anon_sym_asm] = ACTIONS(4335), + [anon_sym___asm__] = ACTIONS(4335), + [anon_sym___asm] = ACTIONS(4335), + [sym_number_literal] = ACTIONS(4337), + [anon_sym_L_SQUOTE] = ACTIONS(4337), + [anon_sym_u_SQUOTE] = ACTIONS(4337), + [anon_sym_U_SQUOTE] = ACTIONS(4337), + [anon_sym_u8_SQUOTE] = ACTIONS(4337), + [anon_sym_SQUOTE] = ACTIONS(4337), + [anon_sym_L_DQUOTE] = ACTIONS(4337), + [anon_sym_u_DQUOTE] = ACTIONS(4337), + [anon_sym_U_DQUOTE] = ACTIONS(4337), + [anon_sym_u8_DQUOTE] = ACTIONS(4337), + [anon_sym_DQUOTE] = ACTIONS(4337), + [sym_true] = ACTIONS(4335), + [sym_false] = ACTIONS(4335), + [anon_sym_NULL] = ACTIONS(4335), + [anon_sym_nullptr] = ACTIONS(4335), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4335), + [anon_sym_decltype] = ACTIONS(4335), + [anon_sym_explicit] = ACTIONS(4335), + [anon_sym_export] = ACTIONS(4335), + [anon_sym_module] = ACTIONS(4335), + [anon_sym_import] = ACTIONS(4335), + [anon_sym_template] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_try] = ACTIONS(4335), + [anon_sym_delete] = ACTIONS(4335), + [anon_sym_throw] = ACTIONS(4335), + [anon_sym_namespace] = ACTIONS(4335), + [anon_sym_static_assert] = ACTIONS(4335), + [anon_sym_concept] = ACTIONS(4335), + [anon_sym_co_return] = ACTIONS(4335), + [anon_sym_co_yield] = ACTIONS(4335), + [anon_sym_R_DQUOTE] = ACTIONS(4337), + [anon_sym_LR_DQUOTE] = ACTIONS(4337), + [anon_sym_uR_DQUOTE] = ACTIONS(4337), + [anon_sym_UR_DQUOTE] = ACTIONS(4337), + [anon_sym_u8R_DQUOTE] = ACTIONS(4337), + [anon_sym_co_await] = ACTIONS(4335), + [anon_sym_new] = ACTIONS(4335), + [anon_sym_requires] = ACTIONS(4335), + [anon_sym_CARET_CARET] = ACTIONS(4337), + [anon_sym_LBRACK_COLON] = ACTIONS(4337), + [sym_this] = ACTIONS(4335), }, [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), + [ts_builtin_sym_end] = ACTIONS(4341), + [sym_identifier] = ACTIONS(4339), + [aux_sym_preproc_include_token1] = ACTIONS(4339), + [aux_sym_preproc_def_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token1] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4339), + [sym_preproc_directive] = ACTIONS(4339), + [anon_sym_LPAREN2] = ACTIONS(4341), + [anon_sym_BANG] = ACTIONS(4341), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_DASH] = ACTIONS(4339), + [anon_sym_PLUS] = ACTIONS(4339), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym___extension__] = ACTIONS(4339), + [anon_sym_typedef] = ACTIONS(4339), + [anon_sym_virtual] = ACTIONS(4339), + [anon_sym_extern] = ACTIONS(4339), + [anon_sym___attribute__] = ACTIONS(4339), + [anon_sym___attribute] = ACTIONS(4339), + [anon_sym_using] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4341), + [anon_sym___declspec] = ACTIONS(4339), + [anon_sym___based] = ACTIONS(4339), + [anon_sym___cdecl] = ACTIONS(4339), + [anon_sym___clrcall] = ACTIONS(4339), + [anon_sym___stdcall] = ACTIONS(4339), + [anon_sym___fastcall] = ACTIONS(4339), + [anon_sym___thiscall] = ACTIONS(4339), + [anon_sym___vectorcall] = ACTIONS(4339), + [anon_sym_LBRACE] = ACTIONS(4341), + [anon_sym_signed] = ACTIONS(4339), + [anon_sym_unsigned] = ACTIONS(4339), + [anon_sym_long] = ACTIONS(4339), + [anon_sym_short] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_static] = ACTIONS(4339), + [anon_sym_register] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym___inline] = ACTIONS(4339), + [anon_sym___inline__] = ACTIONS(4339), + [anon_sym___forceinline] = ACTIONS(4339), + [anon_sym_thread_local] = ACTIONS(4339), + [anon_sym___thread] = ACTIONS(4339), + [anon_sym_const] = ACTIONS(4339), + [anon_sym_constexpr] = ACTIONS(4339), + [anon_sym_volatile] = ACTIONS(4339), + [anon_sym_restrict] = ACTIONS(4339), + [anon_sym___restrict__] = ACTIONS(4339), + [anon_sym__Atomic] = ACTIONS(4339), + [anon_sym__Noreturn] = ACTIONS(4339), + [anon_sym_noreturn] = ACTIONS(4339), + [anon_sym__Nonnull] = ACTIONS(4339), + [anon_sym_mutable] = ACTIONS(4339), + [anon_sym_constinit] = ACTIONS(4339), + [anon_sym_consteval] = ACTIONS(4339), + [anon_sym_alignas] = ACTIONS(4339), + [anon_sym__Alignas] = ACTIONS(4339), + [sym_primitive_type] = ACTIONS(4339), + [anon_sym_enum] = ACTIONS(4339), + [anon_sym_class] = ACTIONS(4339), + [anon_sym_struct] = ACTIONS(4339), + [anon_sym_union] = ACTIONS(4339), + [anon_sym_if] = ACTIONS(4339), + [anon_sym_switch] = ACTIONS(4339), + [anon_sym_case] = ACTIONS(4339), + [anon_sym_default] = ACTIONS(4339), + [anon_sym_while] = ACTIONS(4339), + [anon_sym_do] = ACTIONS(4339), + [anon_sym_for] = ACTIONS(4339), + [anon_sym_return] = ACTIONS(4339), + [anon_sym_break] = ACTIONS(4339), + [anon_sym_continue] = ACTIONS(4339), + [anon_sym_goto] = ACTIONS(4339), + [anon_sym_not] = ACTIONS(4339), + [anon_sym_compl] = ACTIONS(4339), + [anon_sym_DASH_DASH] = ACTIONS(4341), + [anon_sym_PLUS_PLUS] = ACTIONS(4341), + [anon_sym_sizeof] = ACTIONS(4339), + [anon_sym___alignof__] = ACTIONS(4339), + [anon_sym___alignof] = ACTIONS(4339), + [anon_sym__alignof] = ACTIONS(4339), + [anon_sym_alignof] = ACTIONS(4339), + [anon_sym__Alignof] = ACTIONS(4339), + [anon_sym_offsetof] = ACTIONS(4339), + [anon_sym__Generic] = ACTIONS(4339), + [anon_sym_typename] = ACTIONS(4339), + [anon_sym_asm] = ACTIONS(4339), + [anon_sym___asm__] = ACTIONS(4339), + [anon_sym___asm] = ACTIONS(4339), + [sym_number_literal] = ACTIONS(4341), + [anon_sym_L_SQUOTE] = ACTIONS(4341), + [anon_sym_u_SQUOTE] = ACTIONS(4341), + [anon_sym_U_SQUOTE] = ACTIONS(4341), + [anon_sym_u8_SQUOTE] = ACTIONS(4341), + [anon_sym_SQUOTE] = ACTIONS(4341), + [anon_sym_L_DQUOTE] = ACTIONS(4341), + [anon_sym_u_DQUOTE] = ACTIONS(4341), + [anon_sym_U_DQUOTE] = ACTIONS(4341), + [anon_sym_u8_DQUOTE] = ACTIONS(4341), + [anon_sym_DQUOTE] = ACTIONS(4341), + [sym_true] = ACTIONS(4339), + [sym_false] = ACTIONS(4339), + [anon_sym_NULL] = ACTIONS(4339), + [anon_sym_nullptr] = ACTIONS(4339), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4339), + [anon_sym_decltype] = ACTIONS(4339), + [anon_sym_explicit] = ACTIONS(4339), + [anon_sym_export] = ACTIONS(4339), + [anon_sym_module] = ACTIONS(4339), + [anon_sym_import] = ACTIONS(4339), + [anon_sym_template] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_try] = ACTIONS(4339), + [anon_sym_delete] = ACTIONS(4339), + [anon_sym_throw] = ACTIONS(4339), + [anon_sym_namespace] = ACTIONS(4339), + [anon_sym_static_assert] = ACTIONS(4339), + [anon_sym_concept] = ACTIONS(4339), + [anon_sym_co_return] = ACTIONS(4339), + [anon_sym_co_yield] = ACTIONS(4339), + [anon_sym_R_DQUOTE] = ACTIONS(4341), + [anon_sym_LR_DQUOTE] = ACTIONS(4341), + [anon_sym_uR_DQUOTE] = ACTIONS(4341), + [anon_sym_UR_DQUOTE] = ACTIONS(4341), + [anon_sym_u8R_DQUOTE] = ACTIONS(4341), + [anon_sym_co_await] = ACTIONS(4339), + [anon_sym_new] = ACTIONS(4339), + [anon_sym_requires] = ACTIONS(4339), + [anon_sym_CARET_CARET] = ACTIONS(4341), + [anon_sym_LBRACK_COLON] = ACTIONS(4341), + [sym_this] = ACTIONS(4339), }, [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), + [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(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_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(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(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(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(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(985), + [sym_field_declaration] = STATE(985), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(985), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(985), + [sym__constructor_specifiers] = STATE(2797), + [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(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [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(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(985), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4865), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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(4007), + [sym_identifier] = ACTIONS(4005), + [aux_sym_preproc_include_token1] = ACTIONS(4005), + [aux_sym_preproc_def_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token1] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4005), + [sym_preproc_directive] = ACTIONS(4005), + [anon_sym_LPAREN2] = ACTIONS(4007), + [anon_sym_BANG] = ACTIONS(4007), + [anon_sym_TILDE] = ACTIONS(4007), + [anon_sym_DASH] = ACTIONS(4005), + [anon_sym_PLUS] = ACTIONS(4005), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_AMP_AMP] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_SEMI] = ACTIONS(4007), + [anon_sym___extension__] = ACTIONS(4005), + [anon_sym_typedef] = ACTIONS(4005), + [anon_sym_virtual] = ACTIONS(4005), + [anon_sym_extern] = ACTIONS(4005), + [anon_sym___attribute__] = ACTIONS(4005), + [anon_sym___attribute] = ACTIONS(4005), + [anon_sym_using] = ACTIONS(4005), + [anon_sym_COLON_COLON] = ACTIONS(4007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4007), + [anon_sym___declspec] = ACTIONS(4005), + [anon_sym___based] = ACTIONS(4005), + [anon_sym___cdecl] = ACTIONS(4005), + [anon_sym___clrcall] = ACTIONS(4005), + [anon_sym___stdcall] = ACTIONS(4005), + [anon_sym___fastcall] = ACTIONS(4005), + [anon_sym___thiscall] = ACTIONS(4005), + [anon_sym___vectorcall] = ACTIONS(4005), + [anon_sym_LBRACE] = ACTIONS(4007), + [anon_sym_signed] = ACTIONS(4005), + [anon_sym_unsigned] = ACTIONS(4005), + [anon_sym_long] = ACTIONS(4005), + [anon_sym_short] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4005), + [anon_sym_register] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym___inline] = ACTIONS(4005), + [anon_sym___inline__] = ACTIONS(4005), + [anon_sym___forceinline] = ACTIONS(4005), + [anon_sym_thread_local] = ACTIONS(4005), + [anon_sym___thread] = ACTIONS(4005), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_constexpr] = ACTIONS(4005), + [anon_sym_volatile] = ACTIONS(4005), + [anon_sym_restrict] = ACTIONS(4005), + [anon_sym___restrict__] = ACTIONS(4005), + [anon_sym__Atomic] = ACTIONS(4005), + [anon_sym__Noreturn] = ACTIONS(4005), + [anon_sym_noreturn] = ACTIONS(4005), + [anon_sym__Nonnull] = ACTIONS(4005), + [anon_sym_mutable] = ACTIONS(4005), + [anon_sym_constinit] = ACTIONS(4005), + [anon_sym_consteval] = ACTIONS(4005), + [anon_sym_alignas] = ACTIONS(4005), + [anon_sym__Alignas] = ACTIONS(4005), + [sym_primitive_type] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_class] = ACTIONS(4005), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_if] = ACTIONS(4005), + [anon_sym_switch] = ACTIONS(4005), + [anon_sym_case] = ACTIONS(4005), + [anon_sym_default] = ACTIONS(4005), + [anon_sym_while] = ACTIONS(4005), + [anon_sym_do] = ACTIONS(4005), + [anon_sym_for] = ACTIONS(4005), + [anon_sym_return] = ACTIONS(4005), + [anon_sym_break] = ACTIONS(4005), + [anon_sym_continue] = ACTIONS(4005), + [anon_sym_goto] = ACTIONS(4005), + [anon_sym_not] = ACTIONS(4005), + [anon_sym_compl] = ACTIONS(4005), + [anon_sym_DASH_DASH] = ACTIONS(4007), + [anon_sym_PLUS_PLUS] = ACTIONS(4007), + [anon_sym_sizeof] = ACTIONS(4005), + [anon_sym___alignof__] = ACTIONS(4005), + [anon_sym___alignof] = ACTIONS(4005), + [anon_sym__alignof] = ACTIONS(4005), + [anon_sym_alignof] = ACTIONS(4005), + [anon_sym__Alignof] = ACTIONS(4005), + [anon_sym_offsetof] = ACTIONS(4005), + [anon_sym__Generic] = ACTIONS(4005), + [anon_sym_typename] = ACTIONS(4005), + [anon_sym_asm] = ACTIONS(4005), + [anon_sym___asm__] = ACTIONS(4005), + [anon_sym___asm] = ACTIONS(4005), + [sym_number_literal] = ACTIONS(4007), + [anon_sym_L_SQUOTE] = ACTIONS(4007), + [anon_sym_u_SQUOTE] = ACTIONS(4007), + [anon_sym_U_SQUOTE] = ACTIONS(4007), + [anon_sym_u8_SQUOTE] = ACTIONS(4007), + [anon_sym_SQUOTE] = ACTIONS(4007), + [anon_sym_L_DQUOTE] = ACTIONS(4007), + [anon_sym_u_DQUOTE] = ACTIONS(4007), + [anon_sym_U_DQUOTE] = ACTIONS(4007), + [anon_sym_u8_DQUOTE] = ACTIONS(4007), + [anon_sym_DQUOTE] = ACTIONS(4007), + [sym_true] = ACTIONS(4005), + [sym_false] = ACTIONS(4005), + [anon_sym_NULL] = ACTIONS(4005), + [anon_sym_nullptr] = ACTIONS(4005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4005), + [anon_sym_decltype] = ACTIONS(4005), + [anon_sym_explicit] = ACTIONS(4005), + [anon_sym_export] = ACTIONS(4005), + [anon_sym_module] = ACTIONS(4005), + [anon_sym_import] = ACTIONS(4005), + [anon_sym_template] = ACTIONS(4005), + [anon_sym_operator] = ACTIONS(4005), + [anon_sym_try] = ACTIONS(4005), + [anon_sym_delete] = ACTIONS(4005), + [anon_sym_throw] = ACTIONS(4005), + [anon_sym_namespace] = ACTIONS(4005), + [anon_sym_static_assert] = ACTIONS(4005), + [anon_sym_concept] = ACTIONS(4005), + [anon_sym_co_return] = ACTIONS(4005), + [anon_sym_co_yield] = ACTIONS(4005), + [anon_sym_R_DQUOTE] = ACTIONS(4007), + [anon_sym_LR_DQUOTE] = ACTIONS(4007), + [anon_sym_uR_DQUOTE] = ACTIONS(4007), + [anon_sym_UR_DQUOTE] = ACTIONS(4007), + [anon_sym_u8R_DQUOTE] = ACTIONS(4007), + [anon_sym_co_await] = ACTIONS(4005), + [anon_sym_new] = ACTIONS(4005), + [anon_sym_requires] = ACTIONS(4005), + [anon_sym_CARET_CARET] = ACTIONS(4007), + [anon_sym_LBRACK_COLON] = ACTIONS(4007), + [sym_this] = ACTIONS(4005), }, [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), + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4869), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(986)] = { + [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(987)] = { + [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(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(989), + [sym_field_declaration] = STATE(989), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(989), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(989), + [sym__constructor_specifiers] = STATE(2797), + [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(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [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(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(989), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4871), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4873), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(988)] = { + [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), + }, + [STATE(989)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4875), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(990)] = { + [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(991)] = { + [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(992)] = { + [sym_preproc_def] = STATE(994), + [sym_preproc_function_def] = STATE(994), + [sym_preproc_call] = STATE(994), + [sym_preproc_if_in_field_declaration_list] = STATE(994), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(994), + [sym_type_definition] = STATE(994), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(994), + [sym_field_declaration] = STATE(994), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(994), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(994), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(994), + [sym_operator_cast_declaration] = STATE(994), + [sym_constructor_or_destructor_definition] = STATE(994), + [sym_constructor_or_destructor_declaration] = STATE(994), + [sym_friend_declaration] = STATE(994), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(994), + [sym_alias_declaration] = STATE(994), + [sym_static_assert_declaration] = STATE(994), + [sym_consteval_block_declaration] = STATE(994), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(994), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4877), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4879), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(993)] = { + [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(994)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(995)] = { + [ts_builtin_sym_end] = ACTIONS(4156), + [sym_identifier] = ACTIONS(4154), + [aux_sym_preproc_include_token1] = ACTIONS(4154), + [aux_sym_preproc_def_token1] = ACTIONS(4154), + [aux_sym_preproc_if_token1] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4154), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4154), + [sym_preproc_directive] = ACTIONS(4154), + [anon_sym_LPAREN2] = ACTIONS(4156), + [anon_sym_BANG] = ACTIONS(4156), + [anon_sym_TILDE] = ACTIONS(4156), + [anon_sym_DASH] = ACTIONS(4154), + [anon_sym_PLUS] = ACTIONS(4154), + [anon_sym_STAR] = ACTIONS(4156), + [anon_sym_AMP_AMP] = ACTIONS(4156), + [anon_sym_AMP] = ACTIONS(4154), + [anon_sym_SEMI] = ACTIONS(4156), + [anon_sym___extension__] = ACTIONS(4154), + [anon_sym_typedef] = ACTIONS(4154), + [anon_sym_virtual] = ACTIONS(4154), + [anon_sym_extern] = ACTIONS(4154), + [anon_sym___attribute__] = ACTIONS(4154), + [anon_sym___attribute] = ACTIONS(4154), + [anon_sym_using] = ACTIONS(4154), + [anon_sym_COLON_COLON] = ACTIONS(4156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4156), + [anon_sym___declspec] = ACTIONS(4154), + [anon_sym___based] = ACTIONS(4154), + [anon_sym___cdecl] = ACTIONS(4154), + [anon_sym___clrcall] = ACTIONS(4154), + [anon_sym___stdcall] = ACTIONS(4154), + [anon_sym___fastcall] = ACTIONS(4154), + [anon_sym___thiscall] = ACTIONS(4154), + [anon_sym___vectorcall] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(4156), + [anon_sym_signed] = ACTIONS(4154), + [anon_sym_unsigned] = ACTIONS(4154), + [anon_sym_long] = ACTIONS(4154), + [anon_sym_short] = ACTIONS(4154), + [anon_sym_LBRACK] = ACTIONS(4154), + [anon_sym_static] = ACTIONS(4154), + [anon_sym_register] = ACTIONS(4154), + [anon_sym_inline] = ACTIONS(4154), + [anon_sym___inline] = ACTIONS(4154), + [anon_sym___inline__] = ACTIONS(4154), + [anon_sym___forceinline] = ACTIONS(4154), + [anon_sym_thread_local] = ACTIONS(4154), + [anon_sym___thread] = ACTIONS(4154), + [anon_sym_const] = ACTIONS(4154), + [anon_sym_constexpr] = ACTIONS(4154), + [anon_sym_volatile] = ACTIONS(4154), + [anon_sym_restrict] = ACTIONS(4154), + [anon_sym___restrict__] = ACTIONS(4154), + [anon_sym__Atomic] = ACTIONS(4154), + [anon_sym__Noreturn] = ACTIONS(4154), + [anon_sym_noreturn] = ACTIONS(4154), + [anon_sym__Nonnull] = ACTIONS(4154), + [anon_sym_mutable] = ACTIONS(4154), + [anon_sym_constinit] = ACTIONS(4154), + [anon_sym_consteval] = ACTIONS(4154), + [anon_sym_alignas] = ACTIONS(4154), + [anon_sym__Alignas] = ACTIONS(4154), + [sym_primitive_type] = ACTIONS(4154), + [anon_sym_enum] = ACTIONS(4154), + [anon_sym_class] = ACTIONS(4154), + [anon_sym_struct] = ACTIONS(4154), + [anon_sym_union] = ACTIONS(4154), + [anon_sym_if] = ACTIONS(4154), + [anon_sym_switch] = ACTIONS(4154), + [anon_sym_case] = ACTIONS(4154), + [anon_sym_default] = ACTIONS(4154), + [anon_sym_while] = ACTIONS(4154), + [anon_sym_do] = ACTIONS(4154), + [anon_sym_for] = ACTIONS(4154), + [anon_sym_return] = ACTIONS(4154), + [anon_sym_break] = ACTIONS(4154), + [anon_sym_continue] = ACTIONS(4154), + [anon_sym_goto] = ACTIONS(4154), + [anon_sym_not] = ACTIONS(4154), + [anon_sym_compl] = ACTIONS(4154), + [anon_sym_DASH_DASH] = ACTIONS(4156), + [anon_sym_PLUS_PLUS] = ACTIONS(4156), + [anon_sym_sizeof] = ACTIONS(4154), + [anon_sym___alignof__] = ACTIONS(4154), + [anon_sym___alignof] = ACTIONS(4154), + [anon_sym__alignof] = ACTIONS(4154), + [anon_sym_alignof] = ACTIONS(4154), + [anon_sym__Alignof] = ACTIONS(4154), + [anon_sym_offsetof] = ACTIONS(4154), + [anon_sym__Generic] = ACTIONS(4154), + [anon_sym_typename] = ACTIONS(4154), + [anon_sym_asm] = ACTIONS(4154), + [anon_sym___asm__] = ACTIONS(4154), + [anon_sym___asm] = ACTIONS(4154), + [sym_number_literal] = ACTIONS(4156), + [anon_sym_L_SQUOTE] = ACTIONS(4156), + [anon_sym_u_SQUOTE] = ACTIONS(4156), + [anon_sym_U_SQUOTE] = ACTIONS(4156), + [anon_sym_u8_SQUOTE] = ACTIONS(4156), + [anon_sym_SQUOTE] = ACTIONS(4156), + [anon_sym_L_DQUOTE] = ACTIONS(4156), + [anon_sym_u_DQUOTE] = ACTIONS(4156), + [anon_sym_U_DQUOTE] = ACTIONS(4156), + [anon_sym_u8_DQUOTE] = ACTIONS(4156), + [anon_sym_DQUOTE] = ACTIONS(4156), + [sym_true] = ACTIONS(4154), + [sym_false] = ACTIONS(4154), + [anon_sym_NULL] = ACTIONS(4154), + [anon_sym_nullptr] = ACTIONS(4154), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4154), + [anon_sym_decltype] = ACTIONS(4154), + [anon_sym_explicit] = ACTIONS(4154), + [anon_sym_export] = ACTIONS(4154), + [anon_sym_module] = ACTIONS(4154), + [anon_sym_import] = ACTIONS(4154), + [anon_sym_template] = ACTIONS(4154), + [anon_sym_operator] = ACTIONS(4154), + [anon_sym_try] = ACTIONS(4154), + [anon_sym_delete] = ACTIONS(4154), + [anon_sym_throw] = ACTIONS(4154), + [anon_sym_namespace] = ACTIONS(4154), + [anon_sym_static_assert] = ACTIONS(4154), + [anon_sym_concept] = ACTIONS(4154), + [anon_sym_co_return] = ACTIONS(4154), + [anon_sym_co_yield] = ACTIONS(4154), + [anon_sym_R_DQUOTE] = ACTIONS(4156), + [anon_sym_LR_DQUOTE] = ACTIONS(4156), + [anon_sym_uR_DQUOTE] = ACTIONS(4156), + [anon_sym_UR_DQUOTE] = ACTIONS(4156), + [anon_sym_u8R_DQUOTE] = ACTIONS(4156), + [anon_sym_co_await] = ACTIONS(4154), + [anon_sym_new] = ACTIONS(4154), + [anon_sym_requires] = ACTIONS(4154), + [anon_sym_CARET_CARET] = ACTIONS(4156), + [anon_sym_LBRACK_COLON] = ACTIONS(4156), + [sym_this] = ACTIONS(4154), + }, + [STATE(996)] = { + [sym_identifier] = ACTIONS(4468), + [aux_sym_preproc_include_token1] = ACTIONS(4468), + [aux_sym_preproc_def_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token1] = ACTIONS(4468), + [aux_sym_preproc_if_token2] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4468), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4468), + [sym_preproc_directive] = ACTIONS(4468), + [anon_sym_LPAREN2] = ACTIONS(4470), + [anon_sym_BANG] = ACTIONS(4470), + [anon_sym_TILDE] = ACTIONS(4470), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4470), + [anon_sym_AMP_AMP] = ACTIONS(4470), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4470), + [anon_sym___extension__] = ACTIONS(4468), + [anon_sym_typedef] = ACTIONS(4468), + [anon_sym_virtual] = ACTIONS(4468), + [anon_sym_extern] = ACTIONS(4468), + [anon_sym___attribute__] = ACTIONS(4468), + [anon_sym___attribute] = ACTIONS(4468), + [anon_sym_using] = ACTIONS(4468), + [anon_sym_COLON_COLON] = ACTIONS(4470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4470), + [anon_sym___declspec] = ACTIONS(4468), + [anon_sym___based] = ACTIONS(4468), + [anon_sym___cdecl] = ACTIONS(4468), + [anon_sym___clrcall] = ACTIONS(4468), + [anon_sym___stdcall] = ACTIONS(4468), + [anon_sym___fastcall] = ACTIONS(4468), + [anon_sym___thiscall] = ACTIONS(4468), + [anon_sym___vectorcall] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_signed] = ACTIONS(4468), + [anon_sym_unsigned] = ACTIONS(4468), + [anon_sym_long] = ACTIONS(4468), + [anon_sym_short] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_static] = ACTIONS(4468), + [anon_sym_register] = ACTIONS(4468), + [anon_sym_inline] = ACTIONS(4468), + [anon_sym___inline] = ACTIONS(4468), + [anon_sym___inline__] = ACTIONS(4468), + [anon_sym___forceinline] = ACTIONS(4468), + [anon_sym_thread_local] = ACTIONS(4468), + [anon_sym___thread] = ACTIONS(4468), + [anon_sym_const] = ACTIONS(4468), + [anon_sym_constexpr] = ACTIONS(4468), + [anon_sym_volatile] = ACTIONS(4468), + [anon_sym_restrict] = ACTIONS(4468), + [anon_sym___restrict__] = ACTIONS(4468), + [anon_sym__Atomic] = ACTIONS(4468), + [anon_sym__Noreturn] = ACTIONS(4468), + [anon_sym_noreturn] = ACTIONS(4468), + [anon_sym__Nonnull] = ACTIONS(4468), + [anon_sym_mutable] = ACTIONS(4468), + [anon_sym_constinit] = ACTIONS(4468), + [anon_sym_consteval] = ACTIONS(4468), + [anon_sym_alignas] = ACTIONS(4468), + [anon_sym__Alignas] = ACTIONS(4468), + [sym_primitive_type] = ACTIONS(4468), + [anon_sym_enum] = ACTIONS(4468), + [anon_sym_class] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_union] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_switch] = ACTIONS(4468), + [anon_sym_case] = ACTIONS(4468), + [anon_sym_default] = ACTIONS(4468), + [anon_sym_while] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_for] = ACTIONS(4468), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_break] = ACTIONS(4468), + [anon_sym_continue] = ACTIONS(4468), + [anon_sym_goto] = ACTIONS(4468), + [anon_sym_not] = ACTIONS(4468), + [anon_sym_compl] = ACTIONS(4468), + [anon_sym_DASH_DASH] = ACTIONS(4470), + [anon_sym_PLUS_PLUS] = ACTIONS(4470), + [anon_sym_sizeof] = ACTIONS(4468), + [anon_sym___alignof__] = ACTIONS(4468), + [anon_sym___alignof] = ACTIONS(4468), + [anon_sym__alignof] = ACTIONS(4468), + [anon_sym_alignof] = ACTIONS(4468), + [anon_sym__Alignof] = ACTIONS(4468), + [anon_sym_offsetof] = ACTIONS(4468), + [anon_sym__Generic] = ACTIONS(4468), + [anon_sym_typename] = ACTIONS(4468), + [anon_sym_asm] = ACTIONS(4468), + [anon_sym___asm__] = ACTIONS(4468), + [anon_sym___asm] = ACTIONS(4468), + [sym_number_literal] = ACTIONS(4470), + [anon_sym_L_SQUOTE] = ACTIONS(4470), + [anon_sym_u_SQUOTE] = ACTIONS(4470), + [anon_sym_U_SQUOTE] = ACTIONS(4470), + [anon_sym_u8_SQUOTE] = ACTIONS(4470), + [anon_sym_SQUOTE] = ACTIONS(4470), + [anon_sym_L_DQUOTE] = ACTIONS(4470), + [anon_sym_u_DQUOTE] = ACTIONS(4470), + [anon_sym_U_DQUOTE] = ACTIONS(4470), + [anon_sym_u8_DQUOTE] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4470), + [sym_true] = ACTIONS(4468), + [sym_false] = ACTIONS(4468), + [anon_sym_NULL] = ACTIONS(4468), + [anon_sym_nullptr] = ACTIONS(4468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4468), + [anon_sym_decltype] = ACTIONS(4468), + [anon_sym_explicit] = ACTIONS(4468), + [anon_sym_export] = ACTIONS(4468), + [anon_sym_module] = ACTIONS(4468), + [anon_sym_import] = ACTIONS(4468), + [anon_sym_template] = ACTIONS(4468), + [anon_sym_operator] = ACTIONS(4468), + [anon_sym_try] = ACTIONS(4468), + [anon_sym_delete] = ACTIONS(4468), + [anon_sym_throw] = ACTIONS(4468), + [anon_sym_namespace] = ACTIONS(4468), + [anon_sym_static_assert] = ACTIONS(4468), + [anon_sym_concept] = ACTIONS(4468), + [anon_sym_co_return] = ACTIONS(4468), + [anon_sym_co_yield] = ACTIONS(4468), + [anon_sym_R_DQUOTE] = ACTIONS(4470), + [anon_sym_LR_DQUOTE] = ACTIONS(4470), + [anon_sym_uR_DQUOTE] = ACTIONS(4470), + [anon_sym_UR_DQUOTE] = ACTIONS(4470), + [anon_sym_u8R_DQUOTE] = ACTIONS(4470), + [anon_sym_co_await] = ACTIONS(4468), + [anon_sym_new] = ACTIONS(4468), + [anon_sym_requires] = ACTIONS(4468), + [anon_sym_CARET_CARET] = ACTIONS(4470), + [anon_sym_LBRACK_COLON] = ACTIONS(4470), + [sym_this] = ACTIONS(4468), + }, + [STATE(997)] = { + [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), @@ -199919,7 +204842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4474), [sym_this] = ACTIONS(4472), }, - [STATE(986)] = { + [STATE(998)] = { [sym_identifier] = ACTIONS(4476), [aux_sym_preproc_include_token1] = ACTIONS(4476), [aux_sym_preproc_def_token1] = ACTIONS(4476), @@ -200058,841 +204981,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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_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___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(4819), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4821), - [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(4823), - [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), - }, - [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), + [STATE(999)] = { + [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(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), + [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(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), + [STATE(1000)] = { + [ts_builtin_sym_end] = ACTIONS(4132), + [sym_identifier] = ACTIONS(4130), + [aux_sym_preproc_include_token1] = ACTIONS(4130), + [aux_sym_preproc_def_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4130), + [sym_preproc_directive] = ACTIONS(4130), + [anon_sym_LPAREN2] = ACTIONS(4132), + [anon_sym_BANG] = ACTIONS(4132), + [anon_sym_TILDE] = ACTIONS(4132), + [anon_sym_DASH] = ACTIONS(4130), + [anon_sym_PLUS] = ACTIONS(4130), + [anon_sym_STAR] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym___extension__] = ACTIONS(4130), + [anon_sym_typedef] = ACTIONS(4130), + [anon_sym_virtual] = ACTIONS(4130), + [anon_sym_extern] = ACTIONS(4130), + [anon_sym___attribute__] = ACTIONS(4130), + [anon_sym___attribute] = ACTIONS(4130), + [anon_sym_using] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4132), + [anon_sym___declspec] = ACTIONS(4130), + [anon_sym___based] = ACTIONS(4130), + [anon_sym___cdecl] = ACTIONS(4130), + [anon_sym___clrcall] = ACTIONS(4130), + [anon_sym___stdcall] = ACTIONS(4130), + [anon_sym___fastcall] = ACTIONS(4130), + [anon_sym___thiscall] = ACTIONS(4130), + [anon_sym___vectorcall] = ACTIONS(4130), + [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_signed] = ACTIONS(4130), + [anon_sym_unsigned] = ACTIONS(4130), + [anon_sym_long] = ACTIONS(4130), + [anon_sym_short] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4130), + [anon_sym_static] = ACTIONS(4130), + [anon_sym_register] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym___inline] = ACTIONS(4130), + [anon_sym___inline__] = ACTIONS(4130), + [anon_sym___forceinline] = ACTIONS(4130), + [anon_sym_thread_local] = ACTIONS(4130), + [anon_sym___thread] = ACTIONS(4130), + [anon_sym_const] = ACTIONS(4130), + [anon_sym_constexpr] = ACTIONS(4130), + [anon_sym_volatile] = ACTIONS(4130), + [anon_sym_restrict] = ACTIONS(4130), + [anon_sym___restrict__] = ACTIONS(4130), + [anon_sym__Atomic] = ACTIONS(4130), + [anon_sym__Noreturn] = ACTIONS(4130), + [anon_sym_noreturn] = ACTIONS(4130), + [anon_sym__Nonnull] = ACTIONS(4130), + [anon_sym_mutable] = ACTIONS(4130), + [anon_sym_constinit] = ACTIONS(4130), + [anon_sym_consteval] = ACTIONS(4130), + [anon_sym_alignas] = ACTIONS(4130), + [anon_sym__Alignas] = ACTIONS(4130), + [sym_primitive_type] = ACTIONS(4130), + [anon_sym_enum] = ACTIONS(4130), + [anon_sym_class] = ACTIONS(4130), + [anon_sym_struct] = ACTIONS(4130), + [anon_sym_union] = ACTIONS(4130), + [anon_sym_if] = ACTIONS(4130), + [anon_sym_switch] = ACTIONS(4130), + [anon_sym_case] = ACTIONS(4130), + [anon_sym_default] = ACTIONS(4130), + [anon_sym_while] = ACTIONS(4130), + [anon_sym_do] = ACTIONS(4130), + [anon_sym_for] = ACTIONS(4130), + [anon_sym_return] = ACTIONS(4130), + [anon_sym_break] = ACTIONS(4130), + [anon_sym_continue] = ACTIONS(4130), + [anon_sym_goto] = ACTIONS(4130), + [anon_sym_not] = ACTIONS(4130), + [anon_sym_compl] = ACTIONS(4130), + [anon_sym_DASH_DASH] = ACTIONS(4132), + [anon_sym_PLUS_PLUS] = ACTIONS(4132), + [anon_sym_sizeof] = ACTIONS(4130), + [anon_sym___alignof__] = ACTIONS(4130), + [anon_sym___alignof] = ACTIONS(4130), + [anon_sym__alignof] = ACTIONS(4130), + [anon_sym_alignof] = ACTIONS(4130), + [anon_sym__Alignof] = ACTIONS(4130), + [anon_sym_offsetof] = ACTIONS(4130), + [anon_sym__Generic] = ACTIONS(4130), + [anon_sym_typename] = ACTIONS(4130), + [anon_sym_asm] = ACTIONS(4130), + [anon_sym___asm__] = ACTIONS(4130), + [anon_sym___asm] = ACTIONS(4130), + [sym_number_literal] = ACTIONS(4132), + [anon_sym_L_SQUOTE] = ACTIONS(4132), + [anon_sym_u_SQUOTE] = ACTIONS(4132), + [anon_sym_U_SQUOTE] = ACTIONS(4132), + [anon_sym_u8_SQUOTE] = ACTIONS(4132), + [anon_sym_SQUOTE] = ACTIONS(4132), + [anon_sym_L_DQUOTE] = ACTIONS(4132), + [anon_sym_u_DQUOTE] = ACTIONS(4132), + [anon_sym_U_DQUOTE] = ACTIONS(4132), + [anon_sym_u8_DQUOTE] = ACTIONS(4132), + [anon_sym_DQUOTE] = ACTIONS(4132), + [sym_true] = ACTIONS(4130), + [sym_false] = ACTIONS(4130), + [anon_sym_NULL] = ACTIONS(4130), + [anon_sym_nullptr] = ACTIONS(4130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4130), + [anon_sym_decltype] = ACTIONS(4130), + [anon_sym_explicit] = ACTIONS(4130), + [anon_sym_export] = ACTIONS(4130), + [anon_sym_module] = ACTIONS(4130), + [anon_sym_import] = ACTIONS(4130), + [anon_sym_template] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_try] = ACTIONS(4130), + [anon_sym_delete] = ACTIONS(4130), + [anon_sym_throw] = ACTIONS(4130), + [anon_sym_namespace] = ACTIONS(4130), + [anon_sym_static_assert] = ACTIONS(4130), + [anon_sym_concept] = ACTIONS(4130), + [anon_sym_co_return] = ACTIONS(4130), + [anon_sym_co_yield] = ACTIONS(4130), + [anon_sym_R_DQUOTE] = ACTIONS(4132), + [anon_sym_LR_DQUOTE] = ACTIONS(4132), + [anon_sym_uR_DQUOTE] = ACTIONS(4132), + [anon_sym_UR_DQUOTE] = ACTIONS(4132), + [anon_sym_u8R_DQUOTE] = ACTIONS(4132), + [anon_sym_co_await] = ACTIONS(4130), + [anon_sym_new] = ACTIONS(4130), + [anon_sym_requires] = ACTIONS(4130), + [anon_sym_CARET_CARET] = ACTIONS(4132), + [anon_sym_LBRACK_COLON] = ACTIONS(4132), + [sym_this] = ACTIONS(4130), }, - [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), + [STATE(1001)] = { + [ts_builtin_sym_end] = ACTIONS(4136), + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_include_token1] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_BANG] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_DASH] = ACTIONS(4134), + [anon_sym_PLUS] = ACTIONS(4134), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym___cdecl] = ACTIONS(4134), + [anon_sym___clrcall] = ACTIONS(4134), + [anon_sym___stdcall] = ACTIONS(4134), + [anon_sym___fastcall] = ACTIONS(4134), + [anon_sym___thiscall] = ACTIONS(4134), + [anon_sym___vectorcall] = ACTIONS(4134), + [anon_sym_LBRACE] = ACTIONS(4136), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_if] = ACTIONS(4134), + [anon_sym_switch] = ACTIONS(4134), + [anon_sym_case] = ACTIONS(4134), + [anon_sym_default] = ACTIONS(4134), + [anon_sym_while] = ACTIONS(4134), + [anon_sym_do] = ACTIONS(4134), + [anon_sym_for] = ACTIONS(4134), + [anon_sym_return] = ACTIONS(4134), + [anon_sym_break] = ACTIONS(4134), + [anon_sym_continue] = ACTIONS(4134), + [anon_sym_goto] = ACTIONS(4134), + [anon_sym_not] = ACTIONS(4134), + [anon_sym_compl] = ACTIONS(4134), + [anon_sym_DASH_DASH] = ACTIONS(4136), + [anon_sym_PLUS_PLUS] = ACTIONS(4136), + [anon_sym_sizeof] = ACTIONS(4134), + [anon_sym___alignof__] = ACTIONS(4134), + [anon_sym___alignof] = ACTIONS(4134), + [anon_sym__alignof] = ACTIONS(4134), + [anon_sym_alignof] = ACTIONS(4134), + [anon_sym__Alignof] = ACTIONS(4134), + [anon_sym_offsetof] = ACTIONS(4134), + [anon_sym__Generic] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [anon_sym_asm] = ACTIONS(4134), + [anon_sym___asm__] = ACTIONS(4134), + [anon_sym___asm] = ACTIONS(4134), + [sym_number_literal] = ACTIONS(4136), + [anon_sym_L_SQUOTE] = ACTIONS(4136), + [anon_sym_u_SQUOTE] = ACTIONS(4136), + [anon_sym_U_SQUOTE] = ACTIONS(4136), + [anon_sym_u8_SQUOTE] = ACTIONS(4136), + [anon_sym_SQUOTE] = ACTIONS(4136), + [anon_sym_L_DQUOTE] = ACTIONS(4136), + [anon_sym_u_DQUOTE] = ACTIONS(4136), + [anon_sym_U_DQUOTE] = ACTIONS(4136), + [anon_sym_u8_DQUOTE] = ACTIONS(4136), + [anon_sym_DQUOTE] = ACTIONS(4136), + [sym_true] = ACTIONS(4134), + [sym_false] = ACTIONS(4134), + [anon_sym_NULL] = ACTIONS(4134), + [anon_sym_nullptr] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_export] = ACTIONS(4134), + [anon_sym_module] = ACTIONS(4134), + [anon_sym_import] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_try] = ACTIONS(4134), + [anon_sym_delete] = ACTIONS(4134), + [anon_sym_throw] = ACTIONS(4134), + [anon_sym_namespace] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_concept] = ACTIONS(4134), + [anon_sym_co_return] = ACTIONS(4134), + [anon_sym_co_yield] = ACTIONS(4134), + [anon_sym_R_DQUOTE] = ACTIONS(4136), + [anon_sym_LR_DQUOTE] = ACTIONS(4136), + [anon_sym_uR_DQUOTE] = ACTIONS(4136), + [anon_sym_UR_DQUOTE] = ACTIONS(4136), + [anon_sym_u8R_DQUOTE] = ACTIONS(4136), + [anon_sym_co_await] = ACTIONS(4134), + [anon_sym_new] = ACTIONS(4134), + [anon_sym_requires] = ACTIONS(4134), + [anon_sym_CARET_CARET] = ACTIONS(4136), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + [sym_this] = ACTIONS(4134), }, - [STATE(993)] = { + [STATE(1002)] = { [ts_builtin_sym_end] = ACTIONS(4532), [sym_identifier] = ACTIONS(4530), [aux_sym_preproc_include_token1] = ACTIONS(4530), @@ -201031,708 +205537,1264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4532), [sym_this] = ACTIONS(4530), }, - [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), - }, - [STATE(995)] = { - [ts_builtin_sym_end] = ACTIONS(4389), - [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_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_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_module] = 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(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(1003)] = { + [ts_builtin_sym_end] = ACTIONS(3946), + [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(3946), + [anon_sym_BANG] = ACTIONS(3946), + [anon_sym_TILDE] = ACTIONS(3946), + [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_STAR] = ACTIONS(3946), + [anon_sym_AMP_AMP] = ACTIONS(3946), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_SEMI] = ACTIONS(3946), + [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(3946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3946), + [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(3946), + [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(3946), + [anon_sym_PLUS_PLUS] = ACTIONS(3946), + [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(3946), + [anon_sym_L_SQUOTE] = ACTIONS(3946), + [anon_sym_u_SQUOTE] = ACTIONS(3946), + [anon_sym_U_SQUOTE] = ACTIONS(3946), + [anon_sym_u8_SQUOTE] = ACTIONS(3946), + [anon_sym_SQUOTE] = ACTIONS(3946), + [anon_sym_L_DQUOTE] = ACTIONS(3946), + [anon_sym_u_DQUOTE] = ACTIONS(3946), + [anon_sym_U_DQUOTE] = ACTIONS(3946), + [anon_sym_u8_DQUOTE] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(3946), + [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(3946), + [anon_sym_LR_DQUOTE] = ACTIONS(3946), + [anon_sym_uR_DQUOTE] = ACTIONS(3946), + [anon_sym_UR_DQUOTE] = ACTIONS(3946), + [anon_sym_u8R_DQUOTE] = ACTIONS(3946), + [anon_sym_co_await] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3943), + [anon_sym_requires] = ACTIONS(3943), + [anon_sym_CARET_CARET] = ACTIONS(3946), + [anon_sym_LBRACK_COLON] = ACTIONS(3946), + [sym_this] = ACTIONS(3943), }, - [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(1004)] = { + [ts_builtin_sym_end] = ACTIONS(4027), + [sym_identifier] = ACTIONS(4025), + [aux_sym_preproc_include_token1] = ACTIONS(4025), + [aux_sym_preproc_def_token1] = ACTIONS(4025), + [aux_sym_preproc_if_token1] = ACTIONS(4025), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4025), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4025), + [sym_preproc_directive] = ACTIONS(4025), + [anon_sym_LPAREN2] = ACTIONS(4027), + [anon_sym_BANG] = ACTIONS(4027), + [anon_sym_TILDE] = ACTIONS(4027), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4027), + [anon_sym_AMP_AMP] = ACTIONS(4027), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_SEMI] = ACTIONS(4027), + [anon_sym___extension__] = ACTIONS(4025), + [anon_sym_typedef] = ACTIONS(4025), + [anon_sym_virtual] = ACTIONS(4025), + [anon_sym_extern] = ACTIONS(4025), + [anon_sym___attribute__] = ACTIONS(4025), + [anon_sym___attribute] = ACTIONS(4025), + [anon_sym_using] = ACTIONS(4025), + [anon_sym_COLON_COLON] = ACTIONS(4027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4027), + [anon_sym___declspec] = ACTIONS(4025), + [anon_sym___based] = ACTIONS(4025), + [anon_sym___cdecl] = ACTIONS(4025), + [anon_sym___clrcall] = ACTIONS(4025), + [anon_sym___stdcall] = ACTIONS(4025), + [anon_sym___fastcall] = ACTIONS(4025), + [anon_sym___thiscall] = ACTIONS(4025), + [anon_sym___vectorcall] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4027), + [anon_sym_signed] = ACTIONS(4025), + [anon_sym_unsigned] = ACTIONS(4025), + [anon_sym_long] = ACTIONS(4025), + [anon_sym_short] = ACTIONS(4025), + [anon_sym_LBRACK] = ACTIONS(4025), + [anon_sym_static] = ACTIONS(4025), + [anon_sym_register] = ACTIONS(4025), + [anon_sym_inline] = ACTIONS(4025), + [anon_sym___inline] = ACTIONS(4025), + [anon_sym___inline__] = ACTIONS(4025), + [anon_sym___forceinline] = ACTIONS(4025), + [anon_sym_thread_local] = ACTIONS(4025), + [anon_sym___thread] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_constexpr] = ACTIONS(4025), + [anon_sym_volatile] = ACTIONS(4025), + [anon_sym_restrict] = ACTIONS(4025), + [anon_sym___restrict__] = ACTIONS(4025), + [anon_sym__Atomic] = ACTIONS(4025), + [anon_sym__Noreturn] = ACTIONS(4025), + [anon_sym_noreturn] = ACTIONS(4025), + [anon_sym__Nonnull] = ACTIONS(4025), + [anon_sym_mutable] = ACTIONS(4025), + [anon_sym_constinit] = ACTIONS(4025), + [anon_sym_consteval] = ACTIONS(4025), + [anon_sym_alignas] = ACTIONS(4025), + [anon_sym__Alignas] = ACTIONS(4025), + [sym_primitive_type] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_class] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_if] = ACTIONS(4025), + [anon_sym_switch] = ACTIONS(4025), + [anon_sym_case] = ACTIONS(4025), + [anon_sym_default] = ACTIONS(4025), + [anon_sym_while] = ACTIONS(4025), + [anon_sym_do] = ACTIONS(4025), + [anon_sym_for] = ACTIONS(4025), + [anon_sym_return] = ACTIONS(4025), + [anon_sym_break] = ACTIONS(4025), + [anon_sym_continue] = ACTIONS(4025), + [anon_sym_goto] = ACTIONS(4025), + [anon_sym_not] = ACTIONS(4025), + [anon_sym_compl] = ACTIONS(4025), + [anon_sym_DASH_DASH] = ACTIONS(4027), + [anon_sym_PLUS_PLUS] = ACTIONS(4027), + [anon_sym_sizeof] = ACTIONS(4025), + [anon_sym___alignof__] = ACTIONS(4025), + [anon_sym___alignof] = ACTIONS(4025), + [anon_sym__alignof] = ACTIONS(4025), + [anon_sym_alignof] = ACTIONS(4025), + [anon_sym__Alignof] = ACTIONS(4025), + [anon_sym_offsetof] = ACTIONS(4025), + [anon_sym__Generic] = ACTIONS(4025), + [anon_sym_typename] = ACTIONS(4025), + [anon_sym_asm] = ACTIONS(4025), + [anon_sym___asm__] = ACTIONS(4025), + [anon_sym___asm] = ACTIONS(4025), + [sym_number_literal] = ACTIONS(4027), + [anon_sym_L_SQUOTE] = ACTIONS(4027), + [anon_sym_u_SQUOTE] = ACTIONS(4027), + [anon_sym_U_SQUOTE] = ACTIONS(4027), + [anon_sym_u8_SQUOTE] = ACTIONS(4027), + [anon_sym_SQUOTE] = ACTIONS(4027), + [anon_sym_L_DQUOTE] = ACTIONS(4027), + [anon_sym_u_DQUOTE] = ACTIONS(4027), + [anon_sym_U_DQUOTE] = ACTIONS(4027), + [anon_sym_u8_DQUOTE] = ACTIONS(4027), + [anon_sym_DQUOTE] = ACTIONS(4027), + [sym_true] = ACTIONS(4025), + [sym_false] = ACTIONS(4025), + [anon_sym_NULL] = ACTIONS(4025), + [anon_sym_nullptr] = ACTIONS(4025), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4025), + [anon_sym_decltype] = ACTIONS(4025), + [anon_sym_explicit] = ACTIONS(4025), + [anon_sym_export] = ACTIONS(4025), + [anon_sym_module] = ACTIONS(4025), + [anon_sym_import] = ACTIONS(4025), + [anon_sym_template] = ACTIONS(4025), + [anon_sym_operator] = ACTIONS(4025), + [anon_sym_try] = ACTIONS(4025), + [anon_sym_delete] = ACTIONS(4025), + [anon_sym_throw] = ACTIONS(4025), + [anon_sym_namespace] = ACTIONS(4025), + [anon_sym_static_assert] = ACTIONS(4025), + [anon_sym_concept] = ACTIONS(4025), + [anon_sym_co_return] = ACTIONS(4025), + [anon_sym_co_yield] = ACTIONS(4025), + [anon_sym_R_DQUOTE] = ACTIONS(4027), + [anon_sym_LR_DQUOTE] = ACTIONS(4027), + [anon_sym_uR_DQUOTE] = ACTIONS(4027), + [anon_sym_UR_DQUOTE] = ACTIONS(4027), + [anon_sym_u8R_DQUOTE] = ACTIONS(4027), + [anon_sym_co_await] = ACTIONS(4025), + [anon_sym_new] = ACTIONS(4025), + [anon_sym_requires] = ACTIONS(4025), + [anon_sym_CARET_CARET] = ACTIONS(4027), + [anon_sym_LBRACK_COLON] = ACTIONS(4027), + [sym_this] = ACTIONS(4025), }, - [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(1005)] = { + [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), }, - [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), + [STATE(1006)] = { + [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), + }, + [STATE(1007)] = { + [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(1008)] = { + [sym_preproc_def] = STATE(951), + [sym_preproc_function_def] = STATE(951), + [sym_preproc_call] = STATE(951), + [sym_preproc_if_in_field_declaration_list] = STATE(951), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(951), + [sym_type_definition] = STATE(951), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(951), + [sym_field_declaration] = STATE(951), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(951), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(951), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(951), + [sym_operator_cast_declaration] = STATE(951), + [sym_constructor_or_destructor_definition] = STATE(951), + [sym_constructor_or_destructor_declaration] = STATE(951), + [sym_friend_declaration] = STATE(951), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(951), + [sym_alias_declaration] = STATE(951), + [sym_static_assert_declaration] = STATE(951), + [sym_consteval_block_declaration] = STATE(951), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(951), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4883), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4885), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(1009)] = { + [ts_builtin_sym_end] = ACTIONS(4395), + [sym_identifier] = ACTIONS(4393), + [aux_sym_preproc_include_token1] = ACTIONS(4393), + [aux_sym_preproc_def_token1] = ACTIONS(4393), + [aux_sym_preproc_if_token1] = ACTIONS(4393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4393), + [sym_preproc_directive] = ACTIONS(4393), + [anon_sym_LPAREN2] = ACTIONS(4395), + [anon_sym_BANG] = ACTIONS(4395), + [anon_sym_TILDE] = ACTIONS(4395), + [anon_sym_DASH] = ACTIONS(4393), + [anon_sym_PLUS] = ACTIONS(4393), + [anon_sym_STAR] = ACTIONS(4395), + [anon_sym_AMP_AMP] = ACTIONS(4395), + [anon_sym_AMP] = ACTIONS(4393), + [anon_sym_SEMI] = ACTIONS(4395), + [anon_sym___extension__] = ACTIONS(4393), + [anon_sym_typedef] = ACTIONS(4393), + [anon_sym_virtual] = ACTIONS(4393), + [anon_sym_extern] = ACTIONS(4393), + [anon_sym___attribute__] = ACTIONS(4393), + [anon_sym___attribute] = ACTIONS(4393), + [anon_sym_using] = ACTIONS(4393), + [anon_sym_COLON_COLON] = ACTIONS(4395), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4395), + [anon_sym___declspec] = ACTIONS(4393), + [anon_sym___based] = ACTIONS(4393), + [anon_sym___cdecl] = ACTIONS(4393), + [anon_sym___clrcall] = ACTIONS(4393), + [anon_sym___stdcall] = ACTIONS(4393), + [anon_sym___fastcall] = ACTIONS(4393), + [anon_sym___thiscall] = ACTIONS(4393), + [anon_sym___vectorcall] = ACTIONS(4393), + [anon_sym_LBRACE] = ACTIONS(4395), + [anon_sym_signed] = ACTIONS(4393), + [anon_sym_unsigned] = ACTIONS(4393), + [anon_sym_long] = ACTIONS(4393), + [anon_sym_short] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(4393), + [anon_sym_static] = ACTIONS(4393), + [anon_sym_register] = ACTIONS(4393), + [anon_sym_inline] = ACTIONS(4393), + [anon_sym___inline] = ACTIONS(4393), + [anon_sym___inline__] = ACTIONS(4393), + [anon_sym___forceinline] = ACTIONS(4393), + [anon_sym_thread_local] = ACTIONS(4393), + [anon_sym___thread] = ACTIONS(4393), + [anon_sym_const] = ACTIONS(4393), + [anon_sym_constexpr] = ACTIONS(4393), + [anon_sym_volatile] = ACTIONS(4393), + [anon_sym_restrict] = ACTIONS(4393), + [anon_sym___restrict__] = ACTIONS(4393), + [anon_sym__Atomic] = ACTIONS(4393), + [anon_sym__Noreturn] = ACTIONS(4393), + [anon_sym_noreturn] = ACTIONS(4393), + [anon_sym__Nonnull] = ACTIONS(4393), + [anon_sym_mutable] = ACTIONS(4393), + [anon_sym_constinit] = ACTIONS(4393), + [anon_sym_consteval] = ACTIONS(4393), + [anon_sym_alignas] = ACTIONS(4393), + [anon_sym__Alignas] = ACTIONS(4393), + [sym_primitive_type] = ACTIONS(4393), + [anon_sym_enum] = ACTIONS(4393), + [anon_sym_class] = ACTIONS(4393), + [anon_sym_struct] = ACTIONS(4393), + [anon_sym_union] = ACTIONS(4393), + [anon_sym_if] = ACTIONS(4393), + [anon_sym_switch] = ACTIONS(4393), + [anon_sym_case] = ACTIONS(4393), + [anon_sym_default] = ACTIONS(4393), + [anon_sym_while] = ACTIONS(4393), + [anon_sym_do] = ACTIONS(4393), + [anon_sym_for] = ACTIONS(4393), + [anon_sym_return] = ACTIONS(4393), + [anon_sym_break] = ACTIONS(4393), + [anon_sym_continue] = ACTIONS(4393), + [anon_sym_goto] = ACTIONS(4393), + [anon_sym_not] = ACTIONS(4393), + [anon_sym_compl] = ACTIONS(4393), + [anon_sym_DASH_DASH] = ACTIONS(4395), + [anon_sym_PLUS_PLUS] = ACTIONS(4395), + [anon_sym_sizeof] = ACTIONS(4393), + [anon_sym___alignof__] = ACTIONS(4393), + [anon_sym___alignof] = ACTIONS(4393), + [anon_sym__alignof] = ACTIONS(4393), + [anon_sym_alignof] = ACTIONS(4393), + [anon_sym__Alignof] = ACTIONS(4393), + [anon_sym_offsetof] = ACTIONS(4393), + [anon_sym__Generic] = ACTIONS(4393), + [anon_sym_typename] = ACTIONS(4393), + [anon_sym_asm] = ACTIONS(4393), + [anon_sym___asm__] = ACTIONS(4393), + [anon_sym___asm] = ACTIONS(4393), + [sym_number_literal] = ACTIONS(4395), + [anon_sym_L_SQUOTE] = ACTIONS(4395), + [anon_sym_u_SQUOTE] = ACTIONS(4395), + [anon_sym_U_SQUOTE] = ACTIONS(4395), + [anon_sym_u8_SQUOTE] = ACTIONS(4395), + [anon_sym_SQUOTE] = ACTIONS(4395), + [anon_sym_L_DQUOTE] = ACTIONS(4395), + [anon_sym_u_DQUOTE] = ACTIONS(4395), + [anon_sym_U_DQUOTE] = ACTIONS(4395), + [anon_sym_u8_DQUOTE] = ACTIONS(4395), + [anon_sym_DQUOTE] = ACTIONS(4395), + [sym_true] = ACTIONS(4393), + [sym_false] = ACTIONS(4393), + [anon_sym_NULL] = ACTIONS(4393), + [anon_sym_nullptr] = ACTIONS(4393), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4393), + [anon_sym_decltype] = ACTIONS(4393), + [anon_sym_explicit] = ACTIONS(4393), + [anon_sym_export] = ACTIONS(4393), + [anon_sym_module] = ACTIONS(4393), + [anon_sym_import] = ACTIONS(4393), + [anon_sym_template] = ACTIONS(4393), + [anon_sym_operator] = ACTIONS(4393), + [anon_sym_try] = ACTIONS(4393), + [anon_sym_delete] = ACTIONS(4393), + [anon_sym_throw] = ACTIONS(4393), + [anon_sym_namespace] = ACTIONS(4393), + [anon_sym_static_assert] = ACTIONS(4393), + [anon_sym_concept] = ACTIONS(4393), + [anon_sym_co_return] = ACTIONS(4393), + [anon_sym_co_yield] = ACTIONS(4393), + [anon_sym_R_DQUOTE] = ACTIONS(4395), + [anon_sym_LR_DQUOTE] = ACTIONS(4395), + [anon_sym_uR_DQUOTE] = ACTIONS(4395), + [anon_sym_UR_DQUOTE] = ACTIONS(4395), + [anon_sym_u8R_DQUOTE] = ACTIONS(4395), + [anon_sym_co_await] = ACTIONS(4393), + [anon_sym_new] = ACTIONS(4393), + [anon_sym_requires] = ACTIONS(4393), + [anon_sym_CARET_CARET] = ACTIONS(4395), + [anon_sym_LBRACK_COLON] = ACTIONS(4395), + [sym_this] = ACTIONS(4393), + }, + [STATE(1010)] = { + [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(1011)] = { + [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(1012)] = { + [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), @@ -201865,7 +206927,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4486), [sym_this] = ACTIONS(4484), }, - [STATE(1000)] = { + [STATE(1013)] = { [sym_identifier] = ACTIONS(4488), [aux_sym_preproc_include_token1] = ACTIONS(4488), [aux_sym_preproc_def_token1] = ACTIONS(4488), @@ -202004,5069 +207066,3441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(1014)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4887), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [anon_sym__Nonnull] = ACTIONS(67), + [anon_sym_mutable] = ACTIONS(67), + [anon_sym_constinit] = ACTIONS(67), + [anon_sym_consteval] = ACTIONS(4712), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(1015)] = { + [ts_builtin_sym_end] = ACTIONS(4399), + [sym_identifier] = ACTIONS(4397), + [aux_sym_preproc_include_token1] = ACTIONS(4397), + [aux_sym_preproc_def_token1] = ACTIONS(4397), + [aux_sym_preproc_if_token1] = ACTIONS(4397), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4397), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4397), + [sym_preproc_directive] = ACTIONS(4397), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4397), + [anon_sym_PLUS] = ACTIONS(4397), + [anon_sym_STAR] = ACTIONS(4399), + [anon_sym_AMP_AMP] = ACTIONS(4399), + [anon_sym_AMP] = ACTIONS(4397), + [anon_sym_SEMI] = ACTIONS(4399), + [anon_sym___extension__] = ACTIONS(4397), + [anon_sym_typedef] = ACTIONS(4397), + [anon_sym_virtual] = ACTIONS(4397), + [anon_sym_extern] = ACTIONS(4397), + [anon_sym___attribute__] = ACTIONS(4397), + [anon_sym___attribute] = ACTIONS(4397), + [anon_sym_using] = ACTIONS(4397), + [anon_sym_COLON_COLON] = ACTIONS(4399), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4399), + [anon_sym___declspec] = ACTIONS(4397), + [anon_sym___based] = ACTIONS(4397), + [anon_sym___cdecl] = ACTIONS(4397), + [anon_sym___clrcall] = ACTIONS(4397), + [anon_sym___stdcall] = ACTIONS(4397), + [anon_sym___fastcall] = ACTIONS(4397), + [anon_sym___thiscall] = ACTIONS(4397), + [anon_sym___vectorcall] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_signed] = ACTIONS(4397), + [anon_sym_unsigned] = ACTIONS(4397), + [anon_sym_long] = ACTIONS(4397), + [anon_sym_short] = ACTIONS(4397), + [anon_sym_LBRACK] = ACTIONS(4397), + [anon_sym_static] = ACTIONS(4397), + [anon_sym_register] = ACTIONS(4397), + [anon_sym_inline] = ACTIONS(4397), + [anon_sym___inline] = ACTIONS(4397), + [anon_sym___inline__] = ACTIONS(4397), + [anon_sym___forceinline] = ACTIONS(4397), + [anon_sym_thread_local] = ACTIONS(4397), + [anon_sym___thread] = ACTIONS(4397), + [anon_sym_const] = ACTIONS(4397), + [anon_sym_constexpr] = ACTIONS(4397), + [anon_sym_volatile] = ACTIONS(4397), + [anon_sym_restrict] = ACTIONS(4397), + [anon_sym___restrict__] = ACTIONS(4397), + [anon_sym__Atomic] = ACTIONS(4397), + [anon_sym__Noreturn] = ACTIONS(4397), + [anon_sym_noreturn] = ACTIONS(4397), + [anon_sym__Nonnull] = ACTIONS(4397), + [anon_sym_mutable] = ACTIONS(4397), + [anon_sym_constinit] = ACTIONS(4397), + [anon_sym_consteval] = ACTIONS(4397), + [anon_sym_alignas] = ACTIONS(4397), + [anon_sym__Alignas] = ACTIONS(4397), + [sym_primitive_type] = ACTIONS(4397), + [anon_sym_enum] = ACTIONS(4397), + [anon_sym_class] = ACTIONS(4397), + [anon_sym_struct] = ACTIONS(4397), + [anon_sym_union] = ACTIONS(4397), + [anon_sym_if] = ACTIONS(4397), + [anon_sym_switch] = ACTIONS(4397), + [anon_sym_case] = ACTIONS(4397), + [anon_sym_default] = ACTIONS(4397), + [anon_sym_while] = ACTIONS(4397), + [anon_sym_do] = ACTIONS(4397), + [anon_sym_for] = ACTIONS(4397), + [anon_sym_return] = ACTIONS(4397), + [anon_sym_break] = ACTIONS(4397), + [anon_sym_continue] = ACTIONS(4397), + [anon_sym_goto] = ACTIONS(4397), + [anon_sym_not] = ACTIONS(4397), + [anon_sym_compl] = ACTIONS(4397), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_sizeof] = ACTIONS(4397), + [anon_sym___alignof__] = ACTIONS(4397), + [anon_sym___alignof] = ACTIONS(4397), + [anon_sym__alignof] = ACTIONS(4397), + [anon_sym_alignof] = ACTIONS(4397), + [anon_sym__Alignof] = ACTIONS(4397), + [anon_sym_offsetof] = ACTIONS(4397), + [anon_sym__Generic] = ACTIONS(4397), + [anon_sym_typename] = ACTIONS(4397), + [anon_sym_asm] = ACTIONS(4397), + [anon_sym___asm__] = ACTIONS(4397), + [anon_sym___asm] = ACTIONS(4397), + [sym_number_literal] = ACTIONS(4399), + [anon_sym_L_SQUOTE] = ACTIONS(4399), + [anon_sym_u_SQUOTE] = ACTIONS(4399), + [anon_sym_U_SQUOTE] = ACTIONS(4399), + [anon_sym_u8_SQUOTE] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4399), + [anon_sym_L_DQUOTE] = ACTIONS(4399), + [anon_sym_u_DQUOTE] = ACTIONS(4399), + [anon_sym_U_DQUOTE] = ACTIONS(4399), + [anon_sym_u8_DQUOTE] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4399), + [sym_true] = ACTIONS(4397), + [sym_false] = ACTIONS(4397), + [anon_sym_NULL] = ACTIONS(4397), + [anon_sym_nullptr] = ACTIONS(4397), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4397), + [anon_sym_decltype] = ACTIONS(4397), + [anon_sym_explicit] = ACTIONS(4397), + [anon_sym_export] = ACTIONS(4397), + [anon_sym_module] = ACTIONS(4397), + [anon_sym_import] = ACTIONS(4397), + [anon_sym_template] = ACTIONS(4397), + [anon_sym_operator] = ACTIONS(4397), + [anon_sym_try] = ACTIONS(4397), + [anon_sym_delete] = ACTIONS(4397), + [anon_sym_throw] = ACTIONS(4397), + [anon_sym_namespace] = ACTIONS(4397), + [anon_sym_static_assert] = ACTIONS(4397), + [anon_sym_concept] = ACTIONS(4397), + [anon_sym_co_return] = ACTIONS(4397), + [anon_sym_co_yield] = ACTIONS(4397), + [anon_sym_R_DQUOTE] = ACTIONS(4399), + [anon_sym_LR_DQUOTE] = ACTIONS(4399), + [anon_sym_uR_DQUOTE] = ACTIONS(4399), + [anon_sym_UR_DQUOTE] = ACTIONS(4399), + [anon_sym_u8R_DQUOTE] = ACTIONS(4399), + [anon_sym_co_await] = ACTIONS(4397), + [anon_sym_new] = ACTIONS(4397), + [anon_sym_requires] = ACTIONS(4397), + [anon_sym_CARET_CARET] = ACTIONS(4399), + [anon_sym_LBRACK_COLON] = ACTIONS(4399), + [sym_this] = ACTIONS(4397), }, - [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), + [STATE(1016)] = { + [ts_builtin_sym_end] = ACTIONS(4403), + [sym_identifier] = ACTIONS(4401), + [aux_sym_preproc_include_token1] = ACTIONS(4401), + [aux_sym_preproc_def_token1] = ACTIONS(4401), + [aux_sym_preproc_if_token1] = ACTIONS(4401), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4401), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4401), + [sym_preproc_directive] = ACTIONS(4401), + [anon_sym_LPAREN2] = ACTIONS(4403), + [anon_sym_BANG] = ACTIONS(4403), + [anon_sym_TILDE] = ACTIONS(4403), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4403), + [anon_sym_AMP_AMP] = ACTIONS(4403), + [anon_sym_AMP] = ACTIONS(4401), + [anon_sym_SEMI] = ACTIONS(4403), + [anon_sym___extension__] = ACTIONS(4401), + [anon_sym_typedef] = ACTIONS(4401), + [anon_sym_virtual] = ACTIONS(4401), + [anon_sym_extern] = ACTIONS(4401), + [anon_sym___attribute__] = ACTIONS(4401), + [anon_sym___attribute] = ACTIONS(4401), + [anon_sym_using] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4403), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4403), + [anon_sym___declspec] = ACTIONS(4401), + [anon_sym___based] = ACTIONS(4401), + [anon_sym___cdecl] = ACTIONS(4401), + [anon_sym___clrcall] = ACTIONS(4401), + [anon_sym___stdcall] = ACTIONS(4401), + [anon_sym___fastcall] = ACTIONS(4401), + [anon_sym___thiscall] = ACTIONS(4401), + [anon_sym___vectorcall] = ACTIONS(4401), + [anon_sym_LBRACE] = ACTIONS(4403), + [anon_sym_signed] = ACTIONS(4401), + [anon_sym_unsigned] = ACTIONS(4401), + [anon_sym_long] = ACTIONS(4401), + [anon_sym_short] = ACTIONS(4401), + [anon_sym_LBRACK] = ACTIONS(4401), + [anon_sym_static] = ACTIONS(4401), + [anon_sym_register] = ACTIONS(4401), + [anon_sym_inline] = ACTIONS(4401), + [anon_sym___inline] = ACTIONS(4401), + [anon_sym___inline__] = ACTIONS(4401), + [anon_sym___forceinline] = ACTIONS(4401), + [anon_sym_thread_local] = ACTIONS(4401), + [anon_sym___thread] = ACTIONS(4401), + [anon_sym_const] = ACTIONS(4401), + [anon_sym_constexpr] = ACTIONS(4401), + [anon_sym_volatile] = ACTIONS(4401), + [anon_sym_restrict] = ACTIONS(4401), + [anon_sym___restrict__] = ACTIONS(4401), + [anon_sym__Atomic] = ACTIONS(4401), + [anon_sym__Noreturn] = ACTIONS(4401), + [anon_sym_noreturn] = ACTIONS(4401), + [anon_sym__Nonnull] = ACTIONS(4401), + [anon_sym_mutable] = ACTIONS(4401), + [anon_sym_constinit] = ACTIONS(4401), + [anon_sym_consteval] = ACTIONS(4401), + [anon_sym_alignas] = ACTIONS(4401), + [anon_sym__Alignas] = ACTIONS(4401), + [sym_primitive_type] = ACTIONS(4401), + [anon_sym_enum] = ACTIONS(4401), + [anon_sym_class] = ACTIONS(4401), + [anon_sym_struct] = ACTIONS(4401), + [anon_sym_union] = ACTIONS(4401), + [anon_sym_if] = ACTIONS(4401), + [anon_sym_switch] = ACTIONS(4401), + [anon_sym_case] = ACTIONS(4401), + [anon_sym_default] = ACTIONS(4401), + [anon_sym_while] = ACTIONS(4401), + [anon_sym_do] = ACTIONS(4401), + [anon_sym_for] = ACTIONS(4401), + [anon_sym_return] = ACTIONS(4401), + [anon_sym_break] = ACTIONS(4401), + [anon_sym_continue] = ACTIONS(4401), + [anon_sym_goto] = ACTIONS(4401), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4403), + [anon_sym_PLUS_PLUS] = ACTIONS(4403), + [anon_sym_sizeof] = ACTIONS(4401), + [anon_sym___alignof__] = ACTIONS(4401), + [anon_sym___alignof] = ACTIONS(4401), + [anon_sym__alignof] = ACTIONS(4401), + [anon_sym_alignof] = ACTIONS(4401), + [anon_sym__Alignof] = ACTIONS(4401), + [anon_sym_offsetof] = ACTIONS(4401), + [anon_sym__Generic] = ACTIONS(4401), + [anon_sym_typename] = ACTIONS(4401), + [anon_sym_asm] = ACTIONS(4401), + [anon_sym___asm__] = ACTIONS(4401), + [anon_sym___asm] = ACTIONS(4401), + [sym_number_literal] = ACTIONS(4403), + [anon_sym_L_SQUOTE] = ACTIONS(4403), + [anon_sym_u_SQUOTE] = ACTIONS(4403), + [anon_sym_U_SQUOTE] = ACTIONS(4403), + [anon_sym_u8_SQUOTE] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4403), + [anon_sym_L_DQUOTE] = ACTIONS(4403), + [anon_sym_u_DQUOTE] = ACTIONS(4403), + [anon_sym_U_DQUOTE] = ACTIONS(4403), + [anon_sym_u8_DQUOTE] = ACTIONS(4403), + [anon_sym_DQUOTE] = ACTIONS(4403), + [sym_true] = ACTIONS(4401), + [sym_false] = ACTIONS(4401), + [anon_sym_NULL] = ACTIONS(4401), + [anon_sym_nullptr] = ACTIONS(4401), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4401), + [anon_sym_decltype] = ACTIONS(4401), + [anon_sym_explicit] = ACTIONS(4401), + [anon_sym_export] = ACTIONS(4401), + [anon_sym_module] = ACTIONS(4401), + [anon_sym_import] = ACTIONS(4401), + [anon_sym_template] = ACTIONS(4401), + [anon_sym_operator] = ACTIONS(4401), + [anon_sym_try] = ACTIONS(4401), + [anon_sym_delete] = ACTIONS(4401), + [anon_sym_throw] = ACTIONS(4401), + [anon_sym_namespace] = ACTIONS(4401), + [anon_sym_static_assert] = ACTIONS(4401), + [anon_sym_concept] = ACTIONS(4401), + [anon_sym_co_return] = ACTIONS(4401), + [anon_sym_co_yield] = ACTIONS(4401), + [anon_sym_R_DQUOTE] = ACTIONS(4403), + [anon_sym_LR_DQUOTE] = ACTIONS(4403), + [anon_sym_uR_DQUOTE] = ACTIONS(4403), + [anon_sym_UR_DQUOTE] = ACTIONS(4403), + [anon_sym_u8R_DQUOTE] = ACTIONS(4403), + [anon_sym_co_await] = ACTIONS(4401), + [anon_sym_new] = ACTIONS(4401), + [anon_sym_requires] = ACTIONS(4401), + [anon_sym_CARET_CARET] = ACTIONS(4403), + [anon_sym_LBRACK_COLON] = ACTIONS(4403), + [sym_this] = ACTIONS(4401), }, - [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), + [STATE(1017)] = { + [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(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), + [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(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), + [STATE(1018)] = { + [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(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), + [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(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), + [STATE(1019)] = { + [ts_builtin_sym_end] = ACTIONS(3975), + [sym_identifier] = ACTIONS(3973), + [aux_sym_preproc_include_token1] = ACTIONS(3973), + [aux_sym_preproc_def_token1] = ACTIONS(3973), + [aux_sym_preproc_if_token1] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3973), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3973), + [sym_preproc_directive] = ACTIONS(3973), + [anon_sym_LPAREN2] = ACTIONS(3975), + [anon_sym_BANG] = ACTIONS(3975), + [anon_sym_TILDE] = ACTIONS(3975), + [anon_sym_DASH] = ACTIONS(3973), + [anon_sym_PLUS] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_AMP_AMP] = ACTIONS(3975), + [anon_sym_AMP] = ACTIONS(3973), + [anon_sym_SEMI] = ACTIONS(3975), + [anon_sym___extension__] = ACTIONS(3973), + [anon_sym_typedef] = ACTIONS(3973), + [anon_sym_virtual] = ACTIONS(3973), + [anon_sym_extern] = ACTIONS(3973), + [anon_sym___attribute__] = ACTIONS(3973), + [anon_sym___attribute] = ACTIONS(3973), + [anon_sym_using] = ACTIONS(3973), + [anon_sym_COLON_COLON] = ACTIONS(3975), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3975), + [anon_sym___declspec] = ACTIONS(3973), + [anon_sym___based] = ACTIONS(3973), + [anon_sym___cdecl] = ACTIONS(3973), + [anon_sym___clrcall] = ACTIONS(3973), + [anon_sym___stdcall] = ACTIONS(3973), + [anon_sym___fastcall] = ACTIONS(3973), + [anon_sym___thiscall] = ACTIONS(3973), + [anon_sym___vectorcall] = ACTIONS(3973), + [anon_sym_LBRACE] = ACTIONS(3975), + [anon_sym_signed] = ACTIONS(3973), + [anon_sym_unsigned] = ACTIONS(3973), + [anon_sym_long] = ACTIONS(3973), + [anon_sym_short] = ACTIONS(3973), + [anon_sym_LBRACK] = ACTIONS(3973), + [anon_sym_static] = ACTIONS(3973), + [anon_sym_register] = ACTIONS(3973), + [anon_sym_inline] = ACTIONS(3973), + [anon_sym___inline] = ACTIONS(3973), + [anon_sym___inline__] = ACTIONS(3973), + [anon_sym___forceinline] = ACTIONS(3973), + [anon_sym_thread_local] = ACTIONS(3973), + [anon_sym___thread] = ACTIONS(3973), + [anon_sym_const] = ACTIONS(3973), + [anon_sym_constexpr] = ACTIONS(3973), + [anon_sym_volatile] = ACTIONS(3973), + [anon_sym_restrict] = ACTIONS(3973), + [anon_sym___restrict__] = ACTIONS(3973), + [anon_sym__Atomic] = ACTIONS(3973), + [anon_sym__Noreturn] = ACTIONS(3973), + [anon_sym_noreturn] = ACTIONS(3973), + [anon_sym__Nonnull] = ACTIONS(3973), + [anon_sym_mutable] = ACTIONS(3973), + [anon_sym_constinit] = ACTIONS(3973), + [anon_sym_consteval] = ACTIONS(3973), + [anon_sym_alignas] = ACTIONS(3973), + [anon_sym__Alignas] = ACTIONS(3973), + [sym_primitive_type] = ACTIONS(3973), + [anon_sym_enum] = ACTIONS(3973), + [anon_sym_class] = ACTIONS(3973), + [anon_sym_struct] = ACTIONS(3973), + [anon_sym_union] = ACTIONS(3973), + [anon_sym_if] = ACTIONS(3973), + [anon_sym_switch] = ACTIONS(3973), + [anon_sym_case] = ACTIONS(3973), + [anon_sym_default] = ACTIONS(3973), + [anon_sym_while] = ACTIONS(3973), + [anon_sym_do] = ACTIONS(3973), + [anon_sym_for] = ACTIONS(3973), + [anon_sym_return] = ACTIONS(3973), + [anon_sym_break] = ACTIONS(3973), + [anon_sym_continue] = ACTIONS(3973), + [anon_sym_goto] = ACTIONS(3973), + [anon_sym_not] = ACTIONS(3973), + [anon_sym_compl] = ACTIONS(3973), + [anon_sym_DASH_DASH] = ACTIONS(3975), + [anon_sym_PLUS_PLUS] = ACTIONS(3975), + [anon_sym_sizeof] = ACTIONS(3973), + [anon_sym___alignof__] = ACTIONS(3973), + [anon_sym___alignof] = ACTIONS(3973), + [anon_sym__alignof] = ACTIONS(3973), + [anon_sym_alignof] = ACTIONS(3973), + [anon_sym__Alignof] = ACTIONS(3973), + [anon_sym_offsetof] = ACTIONS(3973), + [anon_sym__Generic] = ACTIONS(3973), + [anon_sym_typename] = ACTIONS(3973), + [anon_sym_asm] = ACTIONS(3973), + [anon_sym___asm__] = ACTIONS(3973), + [anon_sym___asm] = ACTIONS(3973), + [sym_number_literal] = ACTIONS(3975), + [anon_sym_L_SQUOTE] = ACTIONS(3975), + [anon_sym_u_SQUOTE] = ACTIONS(3975), + [anon_sym_U_SQUOTE] = ACTIONS(3975), + [anon_sym_u8_SQUOTE] = ACTIONS(3975), + [anon_sym_SQUOTE] = ACTIONS(3975), + [anon_sym_L_DQUOTE] = ACTIONS(3975), + [anon_sym_u_DQUOTE] = ACTIONS(3975), + [anon_sym_U_DQUOTE] = ACTIONS(3975), + [anon_sym_u8_DQUOTE] = ACTIONS(3975), + [anon_sym_DQUOTE] = ACTIONS(3975), + [sym_true] = ACTIONS(3973), + [sym_false] = ACTIONS(3973), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3973), + [anon_sym_decltype] = ACTIONS(3973), + [anon_sym_explicit] = ACTIONS(3973), + [anon_sym_export] = ACTIONS(3973), + [anon_sym_module] = ACTIONS(3973), + [anon_sym_import] = ACTIONS(3973), + [anon_sym_template] = ACTIONS(3973), + [anon_sym_operator] = ACTIONS(3973), + [anon_sym_try] = ACTIONS(3973), + [anon_sym_delete] = ACTIONS(3973), + [anon_sym_throw] = ACTIONS(3973), + [anon_sym_namespace] = ACTIONS(3973), + [anon_sym_static_assert] = ACTIONS(3973), + [anon_sym_concept] = ACTIONS(3973), + [anon_sym_co_return] = ACTIONS(3973), + [anon_sym_co_yield] = ACTIONS(3973), + [anon_sym_R_DQUOTE] = ACTIONS(3975), + [anon_sym_LR_DQUOTE] = ACTIONS(3975), + [anon_sym_uR_DQUOTE] = ACTIONS(3975), + [anon_sym_UR_DQUOTE] = ACTIONS(3975), + [anon_sym_u8R_DQUOTE] = ACTIONS(3975), + [anon_sym_co_await] = ACTIONS(3973), + [anon_sym_new] = ACTIONS(3973), + [anon_sym_requires] = ACTIONS(3973), + [anon_sym_CARET_CARET] = ACTIONS(3975), + [anon_sym_LBRACK_COLON] = ACTIONS(3975), + [sym_this] = ACTIONS(3973), }, - [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), + [STATE(1020)] = { + [ts_builtin_sym_end] = ACTIONS(4140), + [sym_identifier] = ACTIONS(4138), + [aux_sym_preproc_include_token1] = ACTIONS(4138), + [aux_sym_preproc_def_token1] = ACTIONS(4138), + [aux_sym_preproc_if_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4138), + [sym_preproc_directive] = ACTIONS(4138), + [anon_sym_LPAREN2] = ACTIONS(4140), + [anon_sym_BANG] = ACTIONS(4140), + [anon_sym_TILDE] = ACTIONS(4140), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_PLUS] = ACTIONS(4138), + [anon_sym_STAR] = ACTIONS(4140), + [anon_sym_AMP_AMP] = ACTIONS(4140), + [anon_sym_AMP] = ACTIONS(4138), + [anon_sym_SEMI] = ACTIONS(4140), + [anon_sym___extension__] = ACTIONS(4138), + [anon_sym_typedef] = ACTIONS(4138), + [anon_sym_virtual] = ACTIONS(4138), + [anon_sym_extern] = ACTIONS(4138), + [anon_sym___attribute__] = ACTIONS(4138), + [anon_sym___attribute] = ACTIONS(4138), + [anon_sym_using] = ACTIONS(4138), + [anon_sym_COLON_COLON] = ACTIONS(4140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4140), + [anon_sym___declspec] = ACTIONS(4138), + [anon_sym___based] = ACTIONS(4138), + [anon_sym___cdecl] = ACTIONS(4138), + [anon_sym___clrcall] = ACTIONS(4138), + [anon_sym___stdcall] = ACTIONS(4138), + [anon_sym___fastcall] = ACTIONS(4138), + [anon_sym___thiscall] = ACTIONS(4138), + [anon_sym___vectorcall] = ACTIONS(4138), + [anon_sym_LBRACE] = ACTIONS(4140), + [anon_sym_signed] = ACTIONS(4138), + [anon_sym_unsigned] = ACTIONS(4138), + [anon_sym_long] = ACTIONS(4138), + [anon_sym_short] = ACTIONS(4138), + [anon_sym_LBRACK] = ACTIONS(4138), + [anon_sym_static] = ACTIONS(4138), + [anon_sym_register] = ACTIONS(4138), + [anon_sym_inline] = ACTIONS(4138), + [anon_sym___inline] = ACTIONS(4138), + [anon_sym___inline__] = ACTIONS(4138), + [anon_sym___forceinline] = ACTIONS(4138), + [anon_sym_thread_local] = ACTIONS(4138), + [anon_sym___thread] = ACTIONS(4138), + [anon_sym_const] = ACTIONS(4138), + [anon_sym_constexpr] = ACTIONS(4138), + [anon_sym_volatile] = ACTIONS(4138), + [anon_sym_restrict] = ACTIONS(4138), + [anon_sym___restrict__] = ACTIONS(4138), + [anon_sym__Atomic] = ACTIONS(4138), + [anon_sym__Noreturn] = ACTIONS(4138), + [anon_sym_noreturn] = ACTIONS(4138), + [anon_sym__Nonnull] = ACTIONS(4138), + [anon_sym_mutable] = ACTIONS(4138), + [anon_sym_constinit] = ACTIONS(4138), + [anon_sym_consteval] = ACTIONS(4138), + [anon_sym_alignas] = ACTIONS(4138), + [anon_sym__Alignas] = ACTIONS(4138), + [sym_primitive_type] = ACTIONS(4138), + [anon_sym_enum] = ACTIONS(4138), + [anon_sym_class] = ACTIONS(4138), + [anon_sym_struct] = ACTIONS(4138), + [anon_sym_union] = ACTIONS(4138), + [anon_sym_if] = ACTIONS(4138), + [anon_sym_switch] = ACTIONS(4138), + [anon_sym_case] = ACTIONS(4138), + [anon_sym_default] = ACTIONS(4138), + [anon_sym_while] = ACTIONS(4138), + [anon_sym_do] = ACTIONS(4138), + [anon_sym_for] = ACTIONS(4138), + [anon_sym_return] = ACTIONS(4138), + [anon_sym_break] = ACTIONS(4138), + [anon_sym_continue] = ACTIONS(4138), + [anon_sym_goto] = ACTIONS(4138), + [anon_sym_not] = ACTIONS(4138), + [anon_sym_compl] = ACTIONS(4138), + [anon_sym_DASH_DASH] = ACTIONS(4140), + [anon_sym_PLUS_PLUS] = ACTIONS(4140), + [anon_sym_sizeof] = ACTIONS(4138), + [anon_sym___alignof__] = ACTIONS(4138), + [anon_sym___alignof] = ACTIONS(4138), + [anon_sym__alignof] = ACTIONS(4138), + [anon_sym_alignof] = ACTIONS(4138), + [anon_sym__Alignof] = ACTIONS(4138), + [anon_sym_offsetof] = ACTIONS(4138), + [anon_sym__Generic] = ACTIONS(4138), + [anon_sym_typename] = ACTIONS(4138), + [anon_sym_asm] = ACTIONS(4138), + [anon_sym___asm__] = ACTIONS(4138), + [anon_sym___asm] = ACTIONS(4138), + [sym_number_literal] = ACTIONS(4140), + [anon_sym_L_SQUOTE] = ACTIONS(4140), + [anon_sym_u_SQUOTE] = ACTIONS(4140), + [anon_sym_U_SQUOTE] = ACTIONS(4140), + [anon_sym_u8_SQUOTE] = ACTIONS(4140), + [anon_sym_SQUOTE] = ACTIONS(4140), + [anon_sym_L_DQUOTE] = ACTIONS(4140), + [anon_sym_u_DQUOTE] = ACTIONS(4140), + [anon_sym_U_DQUOTE] = ACTIONS(4140), + [anon_sym_u8_DQUOTE] = ACTIONS(4140), + [anon_sym_DQUOTE] = ACTIONS(4140), + [sym_true] = ACTIONS(4138), + [sym_false] = ACTIONS(4138), + [anon_sym_NULL] = ACTIONS(4138), + [anon_sym_nullptr] = ACTIONS(4138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4138), + [anon_sym_decltype] = ACTIONS(4138), + [anon_sym_explicit] = ACTIONS(4138), + [anon_sym_export] = ACTIONS(4138), + [anon_sym_module] = ACTIONS(4138), + [anon_sym_import] = ACTIONS(4138), + [anon_sym_template] = ACTIONS(4138), + [anon_sym_operator] = ACTIONS(4138), + [anon_sym_try] = ACTIONS(4138), + [anon_sym_delete] = ACTIONS(4138), + [anon_sym_throw] = ACTIONS(4138), + [anon_sym_namespace] = ACTIONS(4138), + [anon_sym_static_assert] = ACTIONS(4138), + [anon_sym_concept] = ACTIONS(4138), + [anon_sym_co_return] = ACTIONS(4138), + [anon_sym_co_yield] = ACTIONS(4138), + [anon_sym_R_DQUOTE] = ACTIONS(4140), + [anon_sym_LR_DQUOTE] = ACTIONS(4140), + [anon_sym_uR_DQUOTE] = ACTIONS(4140), + [anon_sym_UR_DQUOTE] = ACTIONS(4140), + [anon_sym_u8R_DQUOTE] = ACTIONS(4140), + [anon_sym_co_await] = ACTIONS(4138), + [anon_sym_new] = ACTIONS(4138), + [anon_sym_requires] = ACTIONS(4138), + [anon_sym_CARET_CARET] = ACTIONS(4140), + [anon_sym_LBRACK_COLON] = ACTIONS(4140), + [sym_this] = ACTIONS(4138), }, - [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), + [STATE(1021)] = { + [ts_builtin_sym_end] = ACTIONS(4160), + [sym_identifier] = ACTIONS(4158), + [aux_sym_preproc_include_token1] = ACTIONS(4158), + [aux_sym_preproc_def_token1] = ACTIONS(4158), + [aux_sym_preproc_if_token1] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4158), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4158), + [sym_preproc_directive] = ACTIONS(4158), + [anon_sym_LPAREN2] = ACTIONS(4160), + [anon_sym_BANG] = ACTIONS(4160), + [anon_sym_TILDE] = ACTIONS(4160), + [anon_sym_DASH] = ACTIONS(4158), + [anon_sym_PLUS] = ACTIONS(4158), + [anon_sym_STAR] = ACTIONS(4160), + [anon_sym_AMP_AMP] = ACTIONS(4160), + [anon_sym_AMP] = ACTIONS(4158), + [anon_sym_SEMI] = ACTIONS(4160), + [anon_sym___extension__] = ACTIONS(4158), + [anon_sym_typedef] = ACTIONS(4158), + [anon_sym_virtual] = ACTIONS(4158), + [anon_sym_extern] = ACTIONS(4158), + [anon_sym___attribute__] = ACTIONS(4158), + [anon_sym___attribute] = ACTIONS(4158), + [anon_sym_using] = ACTIONS(4158), + [anon_sym_COLON_COLON] = ACTIONS(4160), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4160), + [anon_sym___declspec] = ACTIONS(4158), + [anon_sym___based] = ACTIONS(4158), + [anon_sym___cdecl] = ACTIONS(4158), + [anon_sym___clrcall] = ACTIONS(4158), + [anon_sym___stdcall] = ACTIONS(4158), + [anon_sym___fastcall] = ACTIONS(4158), + [anon_sym___thiscall] = ACTIONS(4158), + [anon_sym___vectorcall] = ACTIONS(4158), + [anon_sym_LBRACE] = ACTIONS(4160), + [anon_sym_signed] = ACTIONS(4158), + [anon_sym_unsigned] = ACTIONS(4158), + [anon_sym_long] = ACTIONS(4158), + [anon_sym_short] = ACTIONS(4158), + [anon_sym_LBRACK] = ACTIONS(4158), + [anon_sym_static] = ACTIONS(4158), + [anon_sym_register] = ACTIONS(4158), + [anon_sym_inline] = ACTIONS(4158), + [anon_sym___inline] = ACTIONS(4158), + [anon_sym___inline__] = ACTIONS(4158), + [anon_sym___forceinline] = ACTIONS(4158), + [anon_sym_thread_local] = ACTIONS(4158), + [anon_sym___thread] = ACTIONS(4158), + [anon_sym_const] = ACTIONS(4158), + [anon_sym_constexpr] = ACTIONS(4158), + [anon_sym_volatile] = ACTIONS(4158), + [anon_sym_restrict] = ACTIONS(4158), + [anon_sym___restrict__] = ACTIONS(4158), + [anon_sym__Atomic] = ACTIONS(4158), + [anon_sym__Noreturn] = ACTIONS(4158), + [anon_sym_noreturn] = ACTIONS(4158), + [anon_sym__Nonnull] = ACTIONS(4158), + [anon_sym_mutable] = ACTIONS(4158), + [anon_sym_constinit] = ACTIONS(4158), + [anon_sym_consteval] = ACTIONS(4158), + [anon_sym_alignas] = ACTIONS(4158), + [anon_sym__Alignas] = ACTIONS(4158), + [sym_primitive_type] = ACTIONS(4158), + [anon_sym_enum] = ACTIONS(4158), + [anon_sym_class] = ACTIONS(4158), + [anon_sym_struct] = ACTIONS(4158), + [anon_sym_union] = ACTIONS(4158), + [anon_sym_if] = ACTIONS(4158), + [anon_sym_switch] = ACTIONS(4158), + [anon_sym_case] = ACTIONS(4158), + [anon_sym_default] = ACTIONS(4158), + [anon_sym_while] = ACTIONS(4158), + [anon_sym_do] = ACTIONS(4158), + [anon_sym_for] = ACTIONS(4158), + [anon_sym_return] = ACTIONS(4158), + [anon_sym_break] = ACTIONS(4158), + [anon_sym_continue] = ACTIONS(4158), + [anon_sym_goto] = ACTIONS(4158), + [anon_sym_not] = ACTIONS(4158), + [anon_sym_compl] = ACTIONS(4158), + [anon_sym_DASH_DASH] = ACTIONS(4160), + [anon_sym_PLUS_PLUS] = ACTIONS(4160), + [anon_sym_sizeof] = ACTIONS(4158), + [anon_sym___alignof__] = ACTIONS(4158), + [anon_sym___alignof] = ACTIONS(4158), + [anon_sym__alignof] = ACTIONS(4158), + [anon_sym_alignof] = ACTIONS(4158), + [anon_sym__Alignof] = ACTIONS(4158), + [anon_sym_offsetof] = ACTIONS(4158), + [anon_sym__Generic] = ACTIONS(4158), + [anon_sym_typename] = ACTIONS(4158), + [anon_sym_asm] = ACTIONS(4158), + [anon_sym___asm__] = ACTIONS(4158), + [anon_sym___asm] = ACTIONS(4158), + [sym_number_literal] = ACTIONS(4160), + [anon_sym_L_SQUOTE] = ACTIONS(4160), + [anon_sym_u_SQUOTE] = ACTIONS(4160), + [anon_sym_U_SQUOTE] = ACTIONS(4160), + [anon_sym_u8_SQUOTE] = ACTIONS(4160), + [anon_sym_SQUOTE] = ACTIONS(4160), + [anon_sym_L_DQUOTE] = ACTIONS(4160), + [anon_sym_u_DQUOTE] = ACTIONS(4160), + [anon_sym_U_DQUOTE] = ACTIONS(4160), + [anon_sym_u8_DQUOTE] = ACTIONS(4160), + [anon_sym_DQUOTE] = ACTIONS(4160), + [sym_true] = ACTIONS(4158), + [sym_false] = ACTIONS(4158), + [anon_sym_NULL] = ACTIONS(4158), + [anon_sym_nullptr] = ACTIONS(4158), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4158), + [anon_sym_decltype] = ACTIONS(4158), + [anon_sym_explicit] = ACTIONS(4158), + [anon_sym_export] = ACTIONS(4158), + [anon_sym_module] = ACTIONS(4158), + [anon_sym_import] = ACTIONS(4158), + [anon_sym_template] = ACTIONS(4158), + [anon_sym_operator] = ACTIONS(4158), + [anon_sym_try] = ACTIONS(4158), + [anon_sym_delete] = ACTIONS(4158), + [anon_sym_throw] = ACTIONS(4158), + [anon_sym_namespace] = ACTIONS(4158), + [anon_sym_static_assert] = ACTIONS(4158), + [anon_sym_concept] = ACTIONS(4158), + [anon_sym_co_return] = ACTIONS(4158), + [anon_sym_co_yield] = ACTIONS(4158), + [anon_sym_R_DQUOTE] = ACTIONS(4160), + [anon_sym_LR_DQUOTE] = ACTIONS(4160), + [anon_sym_uR_DQUOTE] = ACTIONS(4160), + [anon_sym_UR_DQUOTE] = ACTIONS(4160), + [anon_sym_u8R_DQUOTE] = ACTIONS(4160), + [anon_sym_co_await] = ACTIONS(4158), + [anon_sym_new] = ACTIONS(4158), + [anon_sym_requires] = ACTIONS(4158), + [anon_sym_CARET_CARET] = ACTIONS(4160), + [anon_sym_LBRACK_COLON] = ACTIONS(4160), + [sym_this] = ACTIONS(4158), }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - [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(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(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), - [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_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___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), - [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(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), - [sym_this] = ACTIONS(237), - }, - [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), - }, - [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), - [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(4946), - [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(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(3148), - [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(1022)] = { + [ts_builtin_sym_end] = ACTIONS(4673), + [sym_identifier] = ACTIONS(4670), + [aux_sym_preproc_include_token1] = ACTIONS(4670), + [aux_sym_preproc_def_token1] = ACTIONS(4670), + [aux_sym_preproc_if_token1] = ACTIONS(4670), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4670), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4670), + [sym_preproc_directive] = ACTIONS(4670), + [anon_sym_LPAREN2] = ACTIONS(4673), + [anon_sym_BANG] = ACTIONS(4673), + [anon_sym_TILDE] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4673), + [anon_sym_AMP_AMP] = ACTIONS(4673), + [anon_sym_AMP] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_typedef] = ACTIONS(4670), + [anon_sym_virtual] = ACTIONS(4670), + [anon_sym_extern] = ACTIONS(4670), + [anon_sym___attribute__] = ACTIONS(4670), + [anon_sym___attribute] = ACTIONS(4670), + [anon_sym_using] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4673), + [anon_sym___declspec] = ACTIONS(4670), + [anon_sym___based] = ACTIONS(4670), + [anon_sym___cdecl] = ACTIONS(4670), + [anon_sym___clrcall] = ACTIONS(4670), + [anon_sym___stdcall] = ACTIONS(4670), + [anon_sym___fastcall] = ACTIONS(4670), + [anon_sym___thiscall] = ACTIONS(4670), + [anon_sym___vectorcall] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4673), + [anon_sym_signed] = ACTIONS(4670), + [anon_sym_unsigned] = ACTIONS(4670), + [anon_sym_long] = ACTIONS(4670), + [anon_sym_short] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_static] = ACTIONS(4670), + [anon_sym_register] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym___inline] = ACTIONS(4670), + [anon_sym___inline__] = ACTIONS(4670), + [anon_sym___forceinline] = ACTIONS(4670), + [anon_sym_thread_local] = ACTIONS(4670), + [anon_sym___thread] = ACTIONS(4670), + [anon_sym_const] = ACTIONS(4670), + [anon_sym_constexpr] = ACTIONS(4670), + [anon_sym_volatile] = ACTIONS(4670), + [anon_sym_restrict] = ACTIONS(4670), + [anon_sym___restrict__] = ACTIONS(4670), + [anon_sym__Atomic] = ACTIONS(4670), + [anon_sym__Noreturn] = ACTIONS(4670), + [anon_sym_noreturn] = ACTIONS(4670), + [anon_sym__Nonnull] = ACTIONS(4670), + [anon_sym_mutable] = ACTIONS(4670), + [anon_sym_constinit] = ACTIONS(4670), + [anon_sym_consteval] = ACTIONS(4670), + [anon_sym_alignas] = ACTIONS(4670), + [anon_sym__Alignas] = ACTIONS(4670), + [sym_primitive_type] = ACTIONS(4670), + [anon_sym_enum] = ACTIONS(4670), + [anon_sym_class] = ACTIONS(4670), + [anon_sym_struct] = ACTIONS(4670), + [anon_sym_union] = ACTIONS(4670), + [anon_sym_if] = ACTIONS(4670), + [anon_sym_switch] = ACTIONS(4670), + [anon_sym_case] = ACTIONS(4670), + [anon_sym_default] = ACTIONS(4670), + [anon_sym_while] = ACTIONS(4670), + [anon_sym_do] = ACTIONS(4670), + [anon_sym_for] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4670), + [anon_sym_continue] = ACTIONS(4670), + [anon_sym_goto] = ACTIONS(4670), + [anon_sym_not] = ACTIONS(4670), + [anon_sym_compl] = ACTIONS(4670), + [anon_sym_DASH_DASH] = ACTIONS(4673), + [anon_sym_PLUS_PLUS] = ACTIONS(4673), + [anon_sym_sizeof] = ACTIONS(4670), + [anon_sym___alignof__] = ACTIONS(4670), + [anon_sym___alignof] = ACTIONS(4670), + [anon_sym__alignof] = ACTIONS(4670), + [anon_sym_alignof] = ACTIONS(4670), + [anon_sym__Alignof] = ACTIONS(4670), + [anon_sym_offsetof] = ACTIONS(4670), + [anon_sym__Generic] = ACTIONS(4670), + [anon_sym_typename] = ACTIONS(4670), + [anon_sym_asm] = ACTIONS(4670), + [anon_sym___asm__] = ACTIONS(4670), + [anon_sym___asm] = ACTIONS(4670), + [sym_number_literal] = ACTIONS(4673), + [anon_sym_L_SQUOTE] = ACTIONS(4673), + [anon_sym_u_SQUOTE] = ACTIONS(4673), + [anon_sym_U_SQUOTE] = ACTIONS(4673), + [anon_sym_u8_SQUOTE] = ACTIONS(4673), + [anon_sym_SQUOTE] = ACTIONS(4673), + [anon_sym_L_DQUOTE] = ACTIONS(4673), + [anon_sym_u_DQUOTE] = ACTIONS(4673), + [anon_sym_U_DQUOTE] = ACTIONS(4673), + [anon_sym_u8_DQUOTE] = ACTIONS(4673), + [anon_sym_DQUOTE] = ACTIONS(4673), + [sym_true] = ACTIONS(4670), + [sym_false] = ACTIONS(4670), + [anon_sym_NULL] = ACTIONS(4670), + [anon_sym_nullptr] = ACTIONS(4670), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4670), + [anon_sym_decltype] = ACTIONS(4670), + [anon_sym_explicit] = ACTIONS(4670), + [anon_sym_export] = ACTIONS(4670), + [anon_sym_module] = ACTIONS(4670), + [anon_sym_import] = ACTIONS(4670), + [anon_sym_template] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4670), + [anon_sym_delete] = ACTIONS(4670), + [anon_sym_throw] = ACTIONS(4670), + [anon_sym_namespace] = ACTIONS(4670), + [anon_sym_static_assert] = ACTIONS(4670), + [anon_sym_concept] = ACTIONS(4670), + [anon_sym_co_return] = ACTIONS(4670), + [anon_sym_co_yield] = ACTIONS(4670), + [anon_sym_R_DQUOTE] = ACTIONS(4673), + [anon_sym_LR_DQUOTE] = ACTIONS(4673), + [anon_sym_uR_DQUOTE] = ACTIONS(4673), + [anon_sym_UR_DQUOTE] = ACTIONS(4673), + [anon_sym_u8R_DQUOTE] = ACTIONS(4673), + [anon_sym_co_await] = ACTIONS(4670), + [anon_sym_new] = ACTIONS(4670), + [anon_sym_requires] = ACTIONS(4670), + [anon_sym_CARET_CARET] = ACTIONS(4673), + [anon_sym_LBRACK_COLON] = ACTIONS(4673), + [sym_this] = ACTIONS(4670), }, [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_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(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), + [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(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), + [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(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), + [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(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), - [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(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), + [ts_builtin_sym_end] = ACTIONS(4074), + [sym_identifier] = ACTIONS(4072), + [aux_sym_preproc_include_token1] = ACTIONS(4072), + [aux_sym_preproc_def_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4072), + [sym_preproc_directive] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [anon_sym_DASH] = ACTIONS(4072), + [anon_sym_PLUS] = ACTIONS(4072), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4072), + [anon_sym_typedef] = ACTIONS(4072), + [anon_sym_virtual] = ACTIONS(4072), + [anon_sym_extern] = ACTIONS(4072), + [anon_sym___attribute__] = ACTIONS(4072), + [anon_sym___attribute] = ACTIONS(4072), + [anon_sym_using] = ACTIONS(4072), + [anon_sym_COLON_COLON] = ACTIONS(4074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4074), + [anon_sym___declspec] = ACTIONS(4072), + [anon_sym___based] = ACTIONS(4072), + [anon_sym___cdecl] = ACTIONS(4072), + [anon_sym___clrcall] = ACTIONS(4072), + [anon_sym___stdcall] = ACTIONS(4072), + [anon_sym___fastcall] = ACTIONS(4072), + [anon_sym___thiscall] = ACTIONS(4072), + [anon_sym___vectorcall] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_signed] = ACTIONS(4072), + [anon_sym_unsigned] = ACTIONS(4072), + [anon_sym_long] = ACTIONS(4072), + [anon_sym_short] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_static] = ACTIONS(4072), + [anon_sym_register] = ACTIONS(4072), + [anon_sym_inline] = ACTIONS(4072), + [anon_sym___inline] = ACTIONS(4072), + [anon_sym___inline__] = ACTIONS(4072), + [anon_sym___forceinline] = ACTIONS(4072), + [anon_sym_thread_local] = ACTIONS(4072), + [anon_sym___thread] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4072), + [anon_sym_constexpr] = ACTIONS(4072), + [anon_sym_volatile] = ACTIONS(4072), + [anon_sym_restrict] = ACTIONS(4072), + [anon_sym___restrict__] = ACTIONS(4072), + [anon_sym__Atomic] = ACTIONS(4072), + [anon_sym__Noreturn] = ACTIONS(4072), + [anon_sym_noreturn] = ACTIONS(4072), + [anon_sym__Nonnull] = ACTIONS(4072), + [anon_sym_mutable] = ACTIONS(4072), + [anon_sym_constinit] = ACTIONS(4072), + [anon_sym_consteval] = ACTIONS(4072), + [anon_sym_alignas] = ACTIONS(4072), + [anon_sym__Alignas] = ACTIONS(4072), + [sym_primitive_type] = ACTIONS(4072), + [anon_sym_enum] = ACTIONS(4072), + [anon_sym_class] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_union] = ACTIONS(4072), + [anon_sym_if] = ACTIONS(4072), + [anon_sym_switch] = ACTIONS(4072), + [anon_sym_case] = ACTIONS(4072), + [anon_sym_default] = ACTIONS(4072), + [anon_sym_while] = ACTIONS(4072), + [anon_sym_do] = ACTIONS(4072), + [anon_sym_for] = ACTIONS(4072), + [anon_sym_return] = ACTIONS(4072), + [anon_sym_break] = ACTIONS(4072), + [anon_sym_continue] = ACTIONS(4072), + [anon_sym_goto] = ACTIONS(4072), + [anon_sym_not] = ACTIONS(4072), + [anon_sym_compl] = ACTIONS(4072), + [anon_sym_DASH_DASH] = ACTIONS(4074), + [anon_sym_PLUS_PLUS] = ACTIONS(4074), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(4072), + [anon_sym___alignof] = ACTIONS(4072), + [anon_sym__alignof] = ACTIONS(4072), + [anon_sym_alignof] = ACTIONS(4072), + [anon_sym__Alignof] = ACTIONS(4072), + [anon_sym_offsetof] = ACTIONS(4072), + [anon_sym__Generic] = ACTIONS(4072), + [anon_sym_typename] = ACTIONS(4072), + [anon_sym_asm] = ACTIONS(4072), + [anon_sym___asm__] = ACTIONS(4072), + [anon_sym___asm] = ACTIONS(4072), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4074), + [anon_sym_u_SQUOTE] = ACTIONS(4074), + [anon_sym_U_SQUOTE] = ACTIONS(4074), + [anon_sym_u8_SQUOTE] = ACTIONS(4074), + [anon_sym_SQUOTE] = ACTIONS(4074), + [anon_sym_L_DQUOTE] = ACTIONS(4074), + [anon_sym_u_DQUOTE] = ACTIONS(4074), + [anon_sym_U_DQUOTE] = ACTIONS(4074), + [anon_sym_u8_DQUOTE] = ACTIONS(4074), + [anon_sym_DQUOTE] = ACTIONS(4074), + [sym_true] = ACTIONS(4072), + [sym_false] = ACTIONS(4072), + [anon_sym_NULL] = ACTIONS(4072), + [anon_sym_nullptr] = ACTIONS(4072), [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_this] = ACTIONS(237), + [sym_auto] = ACTIONS(4072), + [anon_sym_decltype] = ACTIONS(4072), + [anon_sym_explicit] = ACTIONS(4072), + [anon_sym_export] = ACTIONS(4072), + [anon_sym_module] = ACTIONS(4072), + [anon_sym_import] = ACTIONS(4072), + [anon_sym_template] = ACTIONS(4072), + [anon_sym_operator] = ACTIONS(4072), + [anon_sym_try] = ACTIONS(4072), + [anon_sym_delete] = ACTIONS(4072), + [anon_sym_throw] = ACTIONS(4072), + [anon_sym_namespace] = ACTIONS(4072), + [anon_sym_static_assert] = ACTIONS(4072), + [anon_sym_concept] = ACTIONS(4072), + [anon_sym_co_return] = ACTIONS(4072), + [anon_sym_co_yield] = ACTIONS(4072), + [anon_sym_R_DQUOTE] = ACTIONS(4074), + [anon_sym_LR_DQUOTE] = ACTIONS(4074), + [anon_sym_uR_DQUOTE] = ACTIONS(4074), + [anon_sym_UR_DQUOTE] = ACTIONS(4074), + [anon_sym_u8R_DQUOTE] = ACTIONS(4074), + [anon_sym_co_await] = ACTIONS(4072), + [anon_sym_new] = ACTIONS(4072), + [anon_sym_requires] = ACTIONS(4072), + [anon_sym_CARET_CARET] = ACTIONS(4074), + [anon_sym_LBRACK_COLON] = ACTIONS(4074), + [sym_this] = ACTIONS(4072), }, [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), + [ts_builtin_sym_end] = ACTIONS(4144), + [sym_identifier] = ACTIONS(4142), + [aux_sym_preproc_include_token1] = ACTIONS(4142), + [aux_sym_preproc_def_token1] = ACTIONS(4142), + [aux_sym_preproc_if_token1] = ACTIONS(4142), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4142), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4142), + [sym_preproc_directive] = ACTIONS(4142), + [anon_sym_LPAREN2] = ACTIONS(4144), + [anon_sym_BANG] = ACTIONS(4144), + [anon_sym_TILDE] = ACTIONS(4144), + [anon_sym_DASH] = ACTIONS(4142), + [anon_sym_PLUS] = ACTIONS(4142), + [anon_sym_STAR] = ACTIONS(4144), + [anon_sym_AMP_AMP] = ACTIONS(4144), + [anon_sym_AMP] = ACTIONS(4142), + [anon_sym_SEMI] = ACTIONS(4144), + [anon_sym___extension__] = ACTIONS(4142), + [anon_sym_typedef] = ACTIONS(4142), + [anon_sym_virtual] = ACTIONS(4142), + [anon_sym_extern] = ACTIONS(4142), + [anon_sym___attribute__] = ACTIONS(4142), + [anon_sym___attribute] = ACTIONS(4142), + [anon_sym_using] = ACTIONS(4142), + [anon_sym_COLON_COLON] = ACTIONS(4144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4144), + [anon_sym___declspec] = ACTIONS(4142), + [anon_sym___based] = ACTIONS(4142), + [anon_sym___cdecl] = ACTIONS(4142), + [anon_sym___clrcall] = ACTIONS(4142), + [anon_sym___stdcall] = ACTIONS(4142), + [anon_sym___fastcall] = ACTIONS(4142), + [anon_sym___thiscall] = ACTIONS(4142), + [anon_sym___vectorcall] = ACTIONS(4142), + [anon_sym_LBRACE] = ACTIONS(4144), + [anon_sym_signed] = ACTIONS(4142), + [anon_sym_unsigned] = ACTIONS(4142), + [anon_sym_long] = ACTIONS(4142), + [anon_sym_short] = ACTIONS(4142), + [anon_sym_LBRACK] = ACTIONS(4142), + [anon_sym_static] = ACTIONS(4142), + [anon_sym_register] = ACTIONS(4142), + [anon_sym_inline] = ACTIONS(4142), + [anon_sym___inline] = ACTIONS(4142), + [anon_sym___inline__] = ACTIONS(4142), + [anon_sym___forceinline] = ACTIONS(4142), + [anon_sym_thread_local] = ACTIONS(4142), + [anon_sym___thread] = ACTIONS(4142), + [anon_sym_const] = ACTIONS(4142), + [anon_sym_constexpr] = ACTIONS(4142), + [anon_sym_volatile] = ACTIONS(4142), + [anon_sym_restrict] = ACTIONS(4142), + [anon_sym___restrict__] = ACTIONS(4142), + [anon_sym__Atomic] = ACTIONS(4142), + [anon_sym__Noreturn] = ACTIONS(4142), + [anon_sym_noreturn] = ACTIONS(4142), + [anon_sym__Nonnull] = ACTIONS(4142), + [anon_sym_mutable] = ACTIONS(4142), + [anon_sym_constinit] = ACTIONS(4142), + [anon_sym_consteval] = ACTIONS(4142), + [anon_sym_alignas] = ACTIONS(4142), + [anon_sym__Alignas] = ACTIONS(4142), + [sym_primitive_type] = ACTIONS(4142), + [anon_sym_enum] = ACTIONS(4142), + [anon_sym_class] = ACTIONS(4142), + [anon_sym_struct] = ACTIONS(4142), + [anon_sym_union] = ACTIONS(4142), + [anon_sym_if] = ACTIONS(4142), + [anon_sym_switch] = ACTIONS(4142), + [anon_sym_case] = ACTIONS(4142), + [anon_sym_default] = ACTIONS(4142), + [anon_sym_while] = ACTIONS(4142), + [anon_sym_do] = ACTIONS(4142), + [anon_sym_for] = ACTIONS(4142), + [anon_sym_return] = ACTIONS(4142), + [anon_sym_break] = ACTIONS(4142), + [anon_sym_continue] = ACTIONS(4142), + [anon_sym_goto] = ACTIONS(4142), + [anon_sym_not] = ACTIONS(4142), + [anon_sym_compl] = ACTIONS(4142), + [anon_sym_DASH_DASH] = ACTIONS(4144), + [anon_sym_PLUS_PLUS] = ACTIONS(4144), + [anon_sym_sizeof] = ACTIONS(4142), + [anon_sym___alignof__] = ACTIONS(4142), + [anon_sym___alignof] = ACTIONS(4142), + [anon_sym__alignof] = ACTIONS(4142), + [anon_sym_alignof] = ACTIONS(4142), + [anon_sym__Alignof] = ACTIONS(4142), + [anon_sym_offsetof] = ACTIONS(4142), + [anon_sym__Generic] = ACTIONS(4142), + [anon_sym_typename] = ACTIONS(4142), + [anon_sym_asm] = ACTIONS(4142), + [anon_sym___asm__] = ACTIONS(4142), + [anon_sym___asm] = ACTIONS(4142), + [sym_number_literal] = ACTIONS(4144), + [anon_sym_L_SQUOTE] = ACTIONS(4144), + [anon_sym_u_SQUOTE] = ACTIONS(4144), + [anon_sym_U_SQUOTE] = ACTIONS(4144), + [anon_sym_u8_SQUOTE] = ACTIONS(4144), + [anon_sym_SQUOTE] = ACTIONS(4144), + [anon_sym_L_DQUOTE] = ACTIONS(4144), + [anon_sym_u_DQUOTE] = ACTIONS(4144), + [anon_sym_U_DQUOTE] = ACTIONS(4144), + [anon_sym_u8_DQUOTE] = ACTIONS(4144), + [anon_sym_DQUOTE] = ACTIONS(4144), + [sym_true] = ACTIONS(4142), + [sym_false] = ACTIONS(4142), + [anon_sym_NULL] = ACTIONS(4142), + [anon_sym_nullptr] = ACTIONS(4142), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4142), + [anon_sym_decltype] = ACTIONS(4142), + [anon_sym_explicit] = ACTIONS(4142), + [anon_sym_export] = ACTIONS(4142), + [anon_sym_module] = ACTIONS(4142), + [anon_sym_import] = ACTIONS(4142), + [anon_sym_template] = ACTIONS(4142), + [anon_sym_operator] = ACTIONS(4142), + [anon_sym_try] = ACTIONS(4142), + [anon_sym_delete] = ACTIONS(4142), + [anon_sym_throw] = ACTIONS(4142), + [anon_sym_namespace] = ACTIONS(4142), + [anon_sym_static_assert] = ACTIONS(4142), + [anon_sym_concept] = ACTIONS(4142), + [anon_sym_co_return] = ACTIONS(4142), + [anon_sym_co_yield] = ACTIONS(4142), + [anon_sym_R_DQUOTE] = ACTIONS(4144), + [anon_sym_LR_DQUOTE] = ACTIONS(4144), + [anon_sym_uR_DQUOTE] = ACTIONS(4144), + [anon_sym_UR_DQUOTE] = ACTIONS(4144), + [anon_sym_u8R_DQUOTE] = ACTIONS(4144), + [anon_sym_co_await] = ACTIONS(4142), + [anon_sym_new] = ACTIONS(4142), + [anon_sym_requires] = ACTIONS(4142), + [anon_sym_CARET_CARET] = ACTIONS(4144), + [anon_sym_LBRACK_COLON] = ACTIONS(4144), + [sym_this] = ACTIONS(4142), }, [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), + [ts_builtin_sym_end] = ACTIONS(3961), + [sym_identifier] = ACTIONS(3959), + [aux_sym_preproc_include_token1] = ACTIONS(3959), + [aux_sym_preproc_def_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token1] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3959), + [sym_preproc_directive] = ACTIONS(3959), + [anon_sym_LPAREN2] = ACTIONS(3961), + [anon_sym_BANG] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_DASH] = ACTIONS(3959), + [anon_sym_PLUS] = ACTIONS(3959), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym___extension__] = ACTIONS(3959), + [anon_sym_typedef] = ACTIONS(3959), + [anon_sym_virtual] = ACTIONS(3959), + [anon_sym_extern] = ACTIONS(3959), + [anon_sym___attribute__] = ACTIONS(3959), + [anon_sym___attribute] = ACTIONS(3959), + [anon_sym_using] = ACTIONS(3959), + [anon_sym_COLON_COLON] = ACTIONS(3961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3961), + [anon_sym___declspec] = ACTIONS(3959), + [anon_sym___based] = ACTIONS(3959), + [anon_sym___cdecl] = ACTIONS(3959), + [anon_sym___clrcall] = ACTIONS(3959), + [anon_sym___stdcall] = ACTIONS(3959), + [anon_sym___fastcall] = ACTIONS(3959), + [anon_sym___thiscall] = ACTIONS(3959), + [anon_sym___vectorcall] = ACTIONS(3959), + [anon_sym_LBRACE] = ACTIONS(3961), + [anon_sym_signed] = ACTIONS(3959), + [anon_sym_unsigned] = ACTIONS(3959), + [anon_sym_long] = ACTIONS(3959), + [anon_sym_short] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3959), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_register] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym___inline] = ACTIONS(3959), + [anon_sym___inline__] = ACTIONS(3959), + [anon_sym___forceinline] = ACTIONS(3959), + [anon_sym_thread_local] = ACTIONS(3959), + [anon_sym___thread] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_constexpr] = ACTIONS(3959), + [anon_sym_volatile] = ACTIONS(3959), + [anon_sym_restrict] = ACTIONS(3959), + [anon_sym___restrict__] = ACTIONS(3959), + [anon_sym__Atomic] = ACTIONS(3959), + [anon_sym__Noreturn] = ACTIONS(3959), + [anon_sym_noreturn] = ACTIONS(3959), + [anon_sym__Nonnull] = ACTIONS(3959), + [anon_sym_mutable] = ACTIONS(3959), + [anon_sym_constinit] = ACTIONS(3959), + [anon_sym_consteval] = ACTIONS(3959), + [anon_sym_alignas] = ACTIONS(3959), + [anon_sym__Alignas] = ACTIONS(3959), + [sym_primitive_type] = ACTIONS(3959), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_union] = ACTIONS(3959), + [anon_sym_if] = ACTIONS(3959), + [anon_sym_switch] = ACTIONS(3959), + [anon_sym_case] = ACTIONS(3959), + [anon_sym_default] = ACTIONS(3959), + [anon_sym_while] = ACTIONS(3959), + [anon_sym_do] = ACTIONS(3959), + [anon_sym_for] = ACTIONS(3959), + [anon_sym_return] = ACTIONS(3959), + [anon_sym_break] = ACTIONS(3959), + [anon_sym_continue] = ACTIONS(3959), + [anon_sym_goto] = ACTIONS(3959), + [anon_sym_not] = ACTIONS(3959), + [anon_sym_compl] = ACTIONS(3959), + [anon_sym_DASH_DASH] = ACTIONS(3961), + [anon_sym_PLUS_PLUS] = ACTIONS(3961), + [anon_sym_sizeof] = ACTIONS(3959), + [anon_sym___alignof__] = ACTIONS(3959), + [anon_sym___alignof] = ACTIONS(3959), + [anon_sym__alignof] = ACTIONS(3959), + [anon_sym_alignof] = ACTIONS(3959), + [anon_sym__Alignof] = ACTIONS(3959), + [anon_sym_offsetof] = ACTIONS(3959), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(3959), + [anon_sym_asm] = ACTIONS(3959), + [anon_sym___asm__] = ACTIONS(3959), + [anon_sym___asm] = ACTIONS(3959), + [sym_number_literal] = ACTIONS(3961), + [anon_sym_L_SQUOTE] = ACTIONS(3961), + [anon_sym_u_SQUOTE] = ACTIONS(3961), + [anon_sym_U_SQUOTE] = ACTIONS(3961), + [anon_sym_u8_SQUOTE] = ACTIONS(3961), + [anon_sym_SQUOTE] = ACTIONS(3961), + [anon_sym_L_DQUOTE] = ACTIONS(3961), + [anon_sym_u_DQUOTE] = ACTIONS(3961), + [anon_sym_U_DQUOTE] = ACTIONS(3961), + [anon_sym_u8_DQUOTE] = ACTIONS(3961), + [anon_sym_DQUOTE] = ACTIONS(3961), + [sym_true] = ACTIONS(3959), + [sym_false] = ACTIONS(3959), + [anon_sym_NULL] = ACTIONS(3959), + [anon_sym_nullptr] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3959), + [anon_sym_decltype] = ACTIONS(3959), + [anon_sym_explicit] = ACTIONS(3959), + [anon_sym_export] = ACTIONS(3959), + [anon_sym_module] = ACTIONS(3959), + [anon_sym_import] = ACTIONS(3959), + [anon_sym_template] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_try] = ACTIONS(3959), + [anon_sym_delete] = ACTIONS(3959), + [anon_sym_throw] = ACTIONS(3959), + [anon_sym_namespace] = ACTIONS(3959), + [anon_sym_static_assert] = ACTIONS(3959), + [anon_sym_concept] = ACTIONS(3959), + [anon_sym_co_return] = ACTIONS(3959), + [anon_sym_co_yield] = ACTIONS(3959), + [anon_sym_R_DQUOTE] = ACTIONS(3961), + [anon_sym_LR_DQUOTE] = ACTIONS(3961), + [anon_sym_uR_DQUOTE] = ACTIONS(3961), + [anon_sym_UR_DQUOTE] = ACTIONS(3961), + [anon_sym_u8R_DQUOTE] = ACTIONS(3961), + [anon_sym_co_await] = ACTIONS(3959), + [anon_sym_new] = ACTIONS(3959), + [anon_sym_requires] = ACTIONS(3959), + [anon_sym_CARET_CARET] = ACTIONS(3961), + [anon_sym_LBRACK_COLON] = ACTIONS(3961), + [sym_this] = ACTIONS(3959), }, [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), - [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(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), - [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(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), + [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(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_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), + [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(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), + [STATE(1029)] = { + [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(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), + [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), + }, + [STATE(1030)] = { + [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(1031)] = { + [ts_builtin_sym_end] = ACTIONS(4148), + [sym_identifier] = ACTIONS(4146), + [aux_sym_preproc_include_token1] = ACTIONS(4146), + [aux_sym_preproc_def_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4146), + [sym_preproc_directive] = ACTIONS(4146), + [anon_sym_LPAREN2] = ACTIONS(4148), + [anon_sym_BANG] = ACTIONS(4148), + [anon_sym_TILDE] = ACTIONS(4148), + [anon_sym_DASH] = ACTIONS(4146), + [anon_sym_PLUS] = ACTIONS(4146), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym___extension__] = ACTIONS(4146), + [anon_sym_typedef] = ACTIONS(4146), + [anon_sym_virtual] = ACTIONS(4146), + [anon_sym_extern] = ACTIONS(4146), + [anon_sym___attribute__] = ACTIONS(4146), + [anon_sym___attribute] = ACTIONS(4146), + [anon_sym_using] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4148), + [anon_sym___declspec] = ACTIONS(4146), + [anon_sym___based] = ACTIONS(4146), + [anon_sym___cdecl] = ACTIONS(4146), + [anon_sym___clrcall] = ACTIONS(4146), + [anon_sym___stdcall] = ACTIONS(4146), + [anon_sym___fastcall] = ACTIONS(4146), + [anon_sym___thiscall] = ACTIONS(4146), + [anon_sym___vectorcall] = ACTIONS(4146), + [anon_sym_LBRACE] = ACTIONS(4148), + [anon_sym_signed] = ACTIONS(4146), + [anon_sym_unsigned] = ACTIONS(4146), + [anon_sym_long] = ACTIONS(4146), + [anon_sym_short] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_static] = ACTIONS(4146), + [anon_sym_register] = ACTIONS(4146), + [anon_sym_inline] = ACTIONS(4146), + [anon_sym___inline] = ACTIONS(4146), + [anon_sym___inline__] = ACTIONS(4146), + [anon_sym___forceinline] = ACTIONS(4146), + [anon_sym_thread_local] = ACTIONS(4146), + [anon_sym___thread] = ACTIONS(4146), + [anon_sym_const] = ACTIONS(4146), + [anon_sym_constexpr] = ACTIONS(4146), + [anon_sym_volatile] = ACTIONS(4146), + [anon_sym_restrict] = ACTIONS(4146), + [anon_sym___restrict__] = ACTIONS(4146), + [anon_sym__Atomic] = ACTIONS(4146), + [anon_sym__Noreturn] = ACTIONS(4146), + [anon_sym_noreturn] = ACTIONS(4146), + [anon_sym__Nonnull] = ACTIONS(4146), + [anon_sym_mutable] = ACTIONS(4146), + [anon_sym_constinit] = ACTIONS(4146), + [anon_sym_consteval] = ACTIONS(4146), + [anon_sym_alignas] = ACTIONS(4146), + [anon_sym__Alignas] = ACTIONS(4146), + [sym_primitive_type] = ACTIONS(4146), + [anon_sym_enum] = ACTIONS(4146), + [anon_sym_class] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4146), + [anon_sym_union] = ACTIONS(4146), + [anon_sym_if] = ACTIONS(4146), + [anon_sym_switch] = ACTIONS(4146), + [anon_sym_case] = ACTIONS(4146), + [anon_sym_default] = ACTIONS(4146), + [anon_sym_while] = ACTIONS(4146), + [anon_sym_do] = ACTIONS(4146), + [anon_sym_for] = ACTIONS(4146), + [anon_sym_return] = ACTIONS(4146), + [anon_sym_break] = ACTIONS(4146), + [anon_sym_continue] = ACTIONS(4146), + [anon_sym_goto] = ACTIONS(4146), + [anon_sym_not] = ACTIONS(4146), + [anon_sym_compl] = ACTIONS(4146), + [anon_sym_DASH_DASH] = ACTIONS(4148), + [anon_sym_PLUS_PLUS] = ACTIONS(4148), + [anon_sym_sizeof] = ACTIONS(4146), + [anon_sym___alignof__] = ACTIONS(4146), + [anon_sym___alignof] = ACTIONS(4146), + [anon_sym__alignof] = ACTIONS(4146), + [anon_sym_alignof] = ACTIONS(4146), + [anon_sym__Alignof] = ACTIONS(4146), + [anon_sym_offsetof] = ACTIONS(4146), + [anon_sym__Generic] = ACTIONS(4146), + [anon_sym_typename] = ACTIONS(4146), + [anon_sym_asm] = ACTIONS(4146), + [anon_sym___asm__] = ACTIONS(4146), + [anon_sym___asm] = ACTIONS(4146), + [sym_number_literal] = ACTIONS(4148), + [anon_sym_L_SQUOTE] = ACTIONS(4148), + [anon_sym_u_SQUOTE] = ACTIONS(4148), + [anon_sym_U_SQUOTE] = ACTIONS(4148), + [anon_sym_u8_SQUOTE] = ACTIONS(4148), + [anon_sym_SQUOTE] = ACTIONS(4148), + [anon_sym_L_DQUOTE] = ACTIONS(4148), + [anon_sym_u_DQUOTE] = ACTIONS(4148), + [anon_sym_U_DQUOTE] = ACTIONS(4148), + [anon_sym_u8_DQUOTE] = ACTIONS(4148), + [anon_sym_DQUOTE] = ACTIONS(4148), + [sym_true] = ACTIONS(4146), + [sym_false] = ACTIONS(4146), + [anon_sym_NULL] = ACTIONS(4146), + [anon_sym_nullptr] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4146), + [anon_sym_decltype] = ACTIONS(4146), + [anon_sym_explicit] = ACTIONS(4146), + [anon_sym_export] = ACTIONS(4146), + [anon_sym_module] = ACTIONS(4146), + [anon_sym_import] = ACTIONS(4146), + [anon_sym_template] = ACTIONS(4146), + [anon_sym_operator] = ACTIONS(4146), + [anon_sym_try] = ACTIONS(4146), + [anon_sym_delete] = ACTIONS(4146), + [anon_sym_throw] = ACTIONS(4146), + [anon_sym_namespace] = ACTIONS(4146), + [anon_sym_static_assert] = ACTIONS(4146), + [anon_sym_concept] = ACTIONS(4146), + [anon_sym_co_return] = ACTIONS(4146), + [anon_sym_co_yield] = ACTIONS(4146), + [anon_sym_R_DQUOTE] = ACTIONS(4148), + [anon_sym_LR_DQUOTE] = ACTIONS(4148), + [anon_sym_uR_DQUOTE] = ACTIONS(4148), + [anon_sym_UR_DQUOTE] = ACTIONS(4148), + [anon_sym_u8R_DQUOTE] = ACTIONS(4148), + [anon_sym_co_await] = ACTIONS(4146), + [anon_sym_new] = ACTIONS(4146), + [anon_sym_requires] = ACTIONS(4146), + [anon_sym_CARET_CARET] = ACTIONS(4148), + [anon_sym_LBRACK_COLON] = ACTIONS(4148), + [sym_this] = ACTIONS(4146), + }, + [STATE(1032)] = { + [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(4506), + [anon_sym_BANG] = ACTIONS(4506), + [anon_sym_TILDE] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_STAR] = ACTIONS(4506), + [anon_sym_AMP_AMP] = ACTIONS(4506), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_SEMI] = ACTIONS(4506), + [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(4506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4506), + [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(4506), + [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(4506), + [anon_sym_PLUS_PLUS] = ACTIONS(4506), + [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(4506), + [anon_sym_L_SQUOTE] = ACTIONS(4506), + [anon_sym_u_SQUOTE] = ACTIONS(4506), + [anon_sym_U_SQUOTE] = ACTIONS(4506), + [anon_sym_u8_SQUOTE] = ACTIONS(4506), + [anon_sym_SQUOTE] = ACTIONS(4506), + [anon_sym_L_DQUOTE] = ACTIONS(4506), + [anon_sym_u_DQUOTE] = ACTIONS(4506), + [anon_sym_U_DQUOTE] = ACTIONS(4506), + [anon_sym_u8_DQUOTE] = ACTIONS(4506), + [anon_sym_DQUOTE] = ACTIONS(4506), + [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(4506), + [anon_sym_LR_DQUOTE] = ACTIONS(4506), + [anon_sym_uR_DQUOTE] = ACTIONS(4506), + [anon_sym_UR_DQUOTE] = ACTIONS(4506), + [anon_sym_u8R_DQUOTE] = ACTIONS(4506), + [anon_sym_co_await] = ACTIONS(4504), + [anon_sym_new] = ACTIONS(4504), + [anon_sym_requires] = ACTIONS(4504), + [anon_sym_CARET_CARET] = ACTIONS(4506), + [anon_sym_LBRACK_COLON] = ACTIONS(4506), + [sym_this] = ACTIONS(4504), }, [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), - [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), + [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(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), - [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(3148), - [sym_this] = ACTIONS(237), + [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), }, [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), + [sym_identifier] = ACTIONS(4670), + [aux_sym_preproc_include_token1] = ACTIONS(4670), + [aux_sym_preproc_def_token1] = ACTIONS(4670), + [aux_sym_preproc_if_token1] = ACTIONS(4670), + [aux_sym_preproc_if_token2] = ACTIONS(4670), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4670), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4670), + [sym_preproc_directive] = ACTIONS(4670), + [anon_sym_LPAREN2] = ACTIONS(4673), + [anon_sym_BANG] = ACTIONS(4673), + [anon_sym_TILDE] = ACTIONS(4673), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_PLUS] = ACTIONS(4670), + [anon_sym_STAR] = ACTIONS(4673), + [anon_sym_AMP_AMP] = ACTIONS(4673), + [anon_sym_AMP] = ACTIONS(4670), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_typedef] = ACTIONS(4670), + [anon_sym_virtual] = ACTIONS(4670), + [anon_sym_extern] = ACTIONS(4670), + [anon_sym___attribute__] = ACTIONS(4670), + [anon_sym___attribute] = ACTIONS(4670), + [anon_sym_using] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4673), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4673), + [anon_sym___declspec] = ACTIONS(4670), + [anon_sym___based] = ACTIONS(4670), + [anon_sym___cdecl] = ACTIONS(4670), + [anon_sym___clrcall] = ACTIONS(4670), + [anon_sym___stdcall] = ACTIONS(4670), + [anon_sym___fastcall] = ACTIONS(4670), + [anon_sym___thiscall] = ACTIONS(4670), + [anon_sym___vectorcall] = ACTIONS(4670), + [anon_sym_LBRACE] = ACTIONS(4673), + [anon_sym_signed] = ACTIONS(4670), + [anon_sym_unsigned] = ACTIONS(4670), + [anon_sym_long] = ACTIONS(4670), + [anon_sym_short] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4670), + [anon_sym_static] = ACTIONS(4670), + [anon_sym_register] = ACTIONS(4670), + [anon_sym_inline] = ACTIONS(4670), + [anon_sym___inline] = ACTIONS(4670), + [anon_sym___inline__] = ACTIONS(4670), + [anon_sym___forceinline] = ACTIONS(4670), + [anon_sym_thread_local] = ACTIONS(4670), + [anon_sym___thread] = ACTIONS(4670), + [anon_sym_const] = ACTIONS(4670), + [anon_sym_constexpr] = ACTIONS(4670), + [anon_sym_volatile] = ACTIONS(4670), + [anon_sym_restrict] = ACTIONS(4670), + [anon_sym___restrict__] = ACTIONS(4670), + [anon_sym__Atomic] = ACTIONS(4670), + [anon_sym__Noreturn] = ACTIONS(4670), + [anon_sym_noreturn] = ACTIONS(4670), + [anon_sym__Nonnull] = ACTIONS(4670), + [anon_sym_mutable] = ACTIONS(4670), + [anon_sym_constinit] = ACTIONS(4670), + [anon_sym_consteval] = ACTIONS(4670), + [anon_sym_alignas] = ACTIONS(4670), + [anon_sym__Alignas] = ACTIONS(4670), + [sym_primitive_type] = ACTIONS(4670), + [anon_sym_enum] = ACTIONS(4670), + [anon_sym_class] = ACTIONS(4670), + [anon_sym_struct] = ACTIONS(4670), + [anon_sym_union] = ACTIONS(4670), + [anon_sym_if] = ACTIONS(4670), + [anon_sym_switch] = ACTIONS(4670), + [anon_sym_case] = ACTIONS(4670), + [anon_sym_default] = ACTIONS(4670), + [anon_sym_while] = ACTIONS(4670), + [anon_sym_do] = ACTIONS(4670), + [anon_sym_for] = ACTIONS(4670), + [anon_sym_return] = ACTIONS(4670), + [anon_sym_break] = ACTIONS(4670), + [anon_sym_continue] = ACTIONS(4670), + [anon_sym_goto] = ACTIONS(4670), + [anon_sym_not] = ACTIONS(4670), + [anon_sym_compl] = ACTIONS(4670), + [anon_sym_DASH_DASH] = ACTIONS(4673), + [anon_sym_PLUS_PLUS] = ACTIONS(4673), + [anon_sym_sizeof] = ACTIONS(4670), + [anon_sym___alignof__] = ACTIONS(4670), + [anon_sym___alignof] = ACTIONS(4670), + [anon_sym__alignof] = ACTIONS(4670), + [anon_sym_alignof] = ACTIONS(4670), + [anon_sym__Alignof] = ACTIONS(4670), + [anon_sym_offsetof] = ACTIONS(4670), + [anon_sym__Generic] = ACTIONS(4670), + [anon_sym_typename] = ACTIONS(4670), + [anon_sym_asm] = ACTIONS(4670), + [anon_sym___asm__] = ACTIONS(4670), + [anon_sym___asm] = ACTIONS(4670), + [sym_number_literal] = ACTIONS(4673), + [anon_sym_L_SQUOTE] = ACTIONS(4673), + [anon_sym_u_SQUOTE] = ACTIONS(4673), + [anon_sym_U_SQUOTE] = ACTIONS(4673), + [anon_sym_u8_SQUOTE] = ACTIONS(4673), + [anon_sym_SQUOTE] = ACTIONS(4673), + [anon_sym_L_DQUOTE] = ACTIONS(4673), + [anon_sym_u_DQUOTE] = ACTIONS(4673), + [anon_sym_U_DQUOTE] = ACTIONS(4673), + [anon_sym_u8_DQUOTE] = ACTIONS(4673), + [anon_sym_DQUOTE] = ACTIONS(4673), + [sym_true] = ACTIONS(4670), + [sym_false] = ACTIONS(4670), + [anon_sym_NULL] = ACTIONS(4670), + [anon_sym_nullptr] = ACTIONS(4670), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4670), + [anon_sym_decltype] = ACTIONS(4670), + [anon_sym_explicit] = ACTIONS(4670), + [anon_sym_export] = ACTIONS(4670), + [anon_sym_module] = ACTIONS(4670), + [anon_sym_import] = ACTIONS(4670), + [anon_sym_template] = ACTIONS(4670), + [anon_sym_operator] = ACTIONS(4670), + [anon_sym_try] = ACTIONS(4670), + [anon_sym_delete] = ACTIONS(4670), + [anon_sym_throw] = ACTIONS(4670), + [anon_sym_namespace] = ACTIONS(4670), + [anon_sym_static_assert] = ACTIONS(4670), + [anon_sym_concept] = ACTIONS(4670), + [anon_sym_co_return] = ACTIONS(4670), + [anon_sym_co_yield] = ACTIONS(4670), + [anon_sym_R_DQUOTE] = ACTIONS(4673), + [anon_sym_LR_DQUOTE] = ACTIONS(4673), + [anon_sym_uR_DQUOTE] = ACTIONS(4673), + [anon_sym_UR_DQUOTE] = ACTIONS(4673), + [anon_sym_u8R_DQUOTE] = ACTIONS(4673), + [anon_sym_co_await] = ACTIONS(4670), + [anon_sym_new] = ACTIONS(4670), + [anon_sym_requires] = ACTIONS(4670), + [anon_sym_CARET_CARET] = ACTIONS(4673), + [anon_sym_LBRACK_COLON] = ACTIONS(4673), + [sym_this] = ACTIONS(4670), }, [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), + [ts_builtin_sym_end] = ACTIONS(4019), + [sym_identifier] = ACTIONS(4017), + [aux_sym_preproc_include_token1] = ACTIONS(4017), + [aux_sym_preproc_def_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token1] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4017), + [sym_preproc_directive] = ACTIONS(4017), + [anon_sym_LPAREN2] = ACTIONS(4019), + [anon_sym_BANG] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_DASH] = ACTIONS(4017), + [anon_sym_PLUS] = ACTIONS(4017), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_AMP_AMP] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_SEMI] = ACTIONS(4019), + [anon_sym___extension__] = ACTIONS(4017), + [anon_sym_typedef] = ACTIONS(4017), + [anon_sym_virtual] = ACTIONS(4017), + [anon_sym_extern] = ACTIONS(4017), + [anon_sym___attribute__] = ACTIONS(4017), + [anon_sym___attribute] = ACTIONS(4017), + [anon_sym_using] = ACTIONS(4017), + [anon_sym_COLON_COLON] = ACTIONS(4019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4019), + [anon_sym___declspec] = ACTIONS(4017), + [anon_sym___based] = ACTIONS(4017), + [anon_sym___cdecl] = ACTIONS(4017), + [anon_sym___clrcall] = ACTIONS(4017), + [anon_sym___stdcall] = ACTIONS(4017), + [anon_sym___fastcall] = ACTIONS(4017), + [anon_sym___thiscall] = ACTIONS(4017), + [anon_sym___vectorcall] = ACTIONS(4017), + [anon_sym_LBRACE] = ACTIONS(4019), + [anon_sym_signed] = ACTIONS(4017), + [anon_sym_unsigned] = ACTIONS(4017), + [anon_sym_long] = ACTIONS(4017), + [anon_sym_short] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4017), + [anon_sym_static] = ACTIONS(4017), + [anon_sym_register] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym___inline] = ACTIONS(4017), + [anon_sym___inline__] = ACTIONS(4017), + [anon_sym___forceinline] = ACTIONS(4017), + [anon_sym_thread_local] = ACTIONS(4017), + [anon_sym___thread] = ACTIONS(4017), + [anon_sym_const] = ACTIONS(4017), + [anon_sym_constexpr] = ACTIONS(4017), + [anon_sym_volatile] = ACTIONS(4017), + [anon_sym_restrict] = ACTIONS(4017), + [anon_sym___restrict__] = ACTIONS(4017), + [anon_sym__Atomic] = ACTIONS(4017), + [anon_sym__Noreturn] = ACTIONS(4017), + [anon_sym_noreturn] = ACTIONS(4017), + [anon_sym__Nonnull] = ACTIONS(4017), + [anon_sym_mutable] = ACTIONS(4017), + [anon_sym_constinit] = ACTIONS(4017), + [anon_sym_consteval] = ACTIONS(4017), + [anon_sym_alignas] = ACTIONS(4017), + [anon_sym__Alignas] = ACTIONS(4017), + [sym_primitive_type] = ACTIONS(4017), + [anon_sym_enum] = ACTIONS(4017), + [anon_sym_class] = ACTIONS(4017), + [anon_sym_struct] = ACTIONS(4017), + [anon_sym_union] = ACTIONS(4017), + [anon_sym_if] = ACTIONS(4017), + [anon_sym_switch] = ACTIONS(4017), + [anon_sym_case] = ACTIONS(4017), + [anon_sym_default] = ACTIONS(4017), + [anon_sym_while] = ACTIONS(4017), + [anon_sym_do] = ACTIONS(4017), + [anon_sym_for] = ACTIONS(4017), + [anon_sym_return] = ACTIONS(4017), + [anon_sym_break] = ACTIONS(4017), + [anon_sym_continue] = ACTIONS(4017), + [anon_sym_goto] = ACTIONS(4017), + [anon_sym_not] = ACTIONS(4017), + [anon_sym_compl] = ACTIONS(4017), + [anon_sym_DASH_DASH] = ACTIONS(4019), + [anon_sym_PLUS_PLUS] = ACTIONS(4019), + [anon_sym_sizeof] = ACTIONS(4017), + [anon_sym___alignof__] = ACTIONS(4017), + [anon_sym___alignof] = ACTIONS(4017), + [anon_sym__alignof] = ACTIONS(4017), + [anon_sym_alignof] = ACTIONS(4017), + [anon_sym__Alignof] = ACTIONS(4017), + [anon_sym_offsetof] = ACTIONS(4017), + [anon_sym__Generic] = ACTIONS(4017), + [anon_sym_typename] = ACTIONS(4017), + [anon_sym_asm] = ACTIONS(4017), + [anon_sym___asm__] = ACTIONS(4017), + [anon_sym___asm] = ACTIONS(4017), + [sym_number_literal] = ACTIONS(4019), + [anon_sym_L_SQUOTE] = ACTIONS(4019), + [anon_sym_u_SQUOTE] = ACTIONS(4019), + [anon_sym_U_SQUOTE] = ACTIONS(4019), + [anon_sym_u8_SQUOTE] = ACTIONS(4019), + [anon_sym_SQUOTE] = ACTIONS(4019), + [anon_sym_L_DQUOTE] = ACTIONS(4019), + [anon_sym_u_DQUOTE] = ACTIONS(4019), + [anon_sym_U_DQUOTE] = ACTIONS(4019), + [anon_sym_u8_DQUOTE] = ACTIONS(4019), + [anon_sym_DQUOTE] = ACTIONS(4019), + [sym_true] = ACTIONS(4017), + [sym_false] = ACTIONS(4017), + [anon_sym_NULL] = ACTIONS(4017), + [anon_sym_nullptr] = ACTIONS(4017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4017), + [anon_sym_decltype] = ACTIONS(4017), + [anon_sym_explicit] = ACTIONS(4017), + [anon_sym_export] = ACTIONS(4017), + [anon_sym_module] = ACTIONS(4017), + [anon_sym_import] = ACTIONS(4017), + [anon_sym_template] = ACTIONS(4017), + [anon_sym_operator] = ACTIONS(4017), + [anon_sym_try] = ACTIONS(4017), + [anon_sym_delete] = ACTIONS(4017), + [anon_sym_throw] = ACTIONS(4017), + [anon_sym_namespace] = ACTIONS(4017), + [anon_sym_static_assert] = ACTIONS(4017), + [anon_sym_concept] = ACTIONS(4017), + [anon_sym_co_return] = ACTIONS(4017), + [anon_sym_co_yield] = ACTIONS(4017), + [anon_sym_R_DQUOTE] = ACTIONS(4019), + [anon_sym_LR_DQUOTE] = ACTIONS(4019), + [anon_sym_uR_DQUOTE] = ACTIONS(4019), + [anon_sym_UR_DQUOTE] = ACTIONS(4019), + [anon_sym_u8R_DQUOTE] = ACTIONS(4019), + [anon_sym_co_await] = ACTIONS(4017), + [anon_sym_new] = ACTIONS(4017), + [anon_sym_requires] = ACTIONS(4017), + [anon_sym_CARET_CARET] = ACTIONS(4019), + [anon_sym_LBRACK_COLON] = ACTIONS(4019), + [sym_this] = ACTIONS(4017), }, [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), + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(4542), + [aux_sym_preproc_def_token1] = ACTIONS(4889), + [aux_sym_preproc_if_token1] = ACTIONS(4892), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4895), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4895), + [sym_preproc_directive] = ACTIONS(4898), + [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(4901), + [anon_sym___extension__] = ACTIONS(4904), + [anon_sym_typedef] = ACTIONS(4907), + [anon_sym_virtual] = ACTIONS(4583), + [anon_sym_extern] = ACTIONS(4586), + [anon_sym___attribute__] = ACTIONS(4589), + [anon_sym___attribute] = ACTIONS(4589), + [anon_sym_using] = ACTIONS(4910), + [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(4913), + [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(4915), + [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(4918), + [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(4921), + [anon_sym_operator] = ACTIONS(4658), + [anon_sym_friend] = ACTIONS(4924), + [anon_sym_public] = ACTIONS(4652), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_static_assert] = ACTIONS(4927), + [anon_sym_LBRACK_COLON] = ACTIONS(4667), }, [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), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5138), - [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_EQ] = ACTIONS(5136), - [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_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), + [ts_builtin_sym_end] = ACTIONS(4164), + [sym_identifier] = ACTIONS(4162), + [aux_sym_preproc_include_token1] = ACTIONS(4162), + [aux_sym_preproc_def_token1] = ACTIONS(4162), + [aux_sym_preproc_if_token1] = ACTIONS(4162), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4162), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4162), + [sym_preproc_directive] = ACTIONS(4162), + [anon_sym_LPAREN2] = ACTIONS(4164), + [anon_sym_BANG] = ACTIONS(4164), + [anon_sym_TILDE] = ACTIONS(4164), + [anon_sym_DASH] = ACTIONS(4162), + [anon_sym_PLUS] = ACTIONS(4162), + [anon_sym_STAR] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_AMP] = ACTIONS(4162), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym___extension__] = ACTIONS(4162), + [anon_sym_typedef] = ACTIONS(4162), + [anon_sym_virtual] = ACTIONS(4162), + [anon_sym_extern] = ACTIONS(4162), + [anon_sym___attribute__] = ACTIONS(4162), + [anon_sym___attribute] = ACTIONS(4162), + [anon_sym_using] = ACTIONS(4162), + [anon_sym_COLON_COLON] = ACTIONS(4164), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4164), + [anon_sym___declspec] = ACTIONS(4162), + [anon_sym___based] = ACTIONS(4162), + [anon_sym___cdecl] = ACTIONS(4162), + [anon_sym___clrcall] = ACTIONS(4162), + [anon_sym___stdcall] = ACTIONS(4162), + [anon_sym___fastcall] = ACTIONS(4162), + [anon_sym___thiscall] = ACTIONS(4162), + [anon_sym___vectorcall] = ACTIONS(4162), + [anon_sym_LBRACE] = ACTIONS(4164), + [anon_sym_signed] = ACTIONS(4162), + [anon_sym_unsigned] = ACTIONS(4162), + [anon_sym_long] = ACTIONS(4162), + [anon_sym_short] = ACTIONS(4162), + [anon_sym_LBRACK] = ACTIONS(4162), + [anon_sym_static] = ACTIONS(4162), + [anon_sym_register] = ACTIONS(4162), + [anon_sym_inline] = ACTIONS(4162), + [anon_sym___inline] = ACTIONS(4162), + [anon_sym___inline__] = ACTIONS(4162), + [anon_sym___forceinline] = ACTIONS(4162), + [anon_sym_thread_local] = ACTIONS(4162), + [anon_sym___thread] = ACTIONS(4162), + [anon_sym_const] = ACTIONS(4162), + [anon_sym_constexpr] = ACTIONS(4162), + [anon_sym_volatile] = ACTIONS(4162), + [anon_sym_restrict] = ACTIONS(4162), + [anon_sym___restrict__] = ACTIONS(4162), + [anon_sym__Atomic] = ACTIONS(4162), + [anon_sym__Noreturn] = ACTIONS(4162), + [anon_sym_noreturn] = ACTIONS(4162), + [anon_sym__Nonnull] = ACTIONS(4162), + [anon_sym_mutable] = ACTIONS(4162), + [anon_sym_constinit] = ACTIONS(4162), + [anon_sym_consteval] = ACTIONS(4162), + [anon_sym_alignas] = ACTIONS(4162), + [anon_sym__Alignas] = ACTIONS(4162), + [sym_primitive_type] = ACTIONS(4162), + [anon_sym_enum] = ACTIONS(4162), + [anon_sym_class] = ACTIONS(4162), + [anon_sym_struct] = ACTIONS(4162), + [anon_sym_union] = ACTIONS(4162), + [anon_sym_if] = ACTIONS(4162), + [anon_sym_switch] = ACTIONS(4162), + [anon_sym_case] = ACTIONS(4162), + [anon_sym_default] = ACTIONS(4162), + [anon_sym_while] = ACTIONS(4162), + [anon_sym_do] = ACTIONS(4162), + [anon_sym_for] = ACTIONS(4162), + [anon_sym_return] = ACTIONS(4162), + [anon_sym_break] = ACTIONS(4162), + [anon_sym_continue] = ACTIONS(4162), + [anon_sym_goto] = ACTIONS(4162), + [anon_sym_not] = ACTIONS(4162), + [anon_sym_compl] = ACTIONS(4162), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_sizeof] = ACTIONS(4162), + [anon_sym___alignof__] = ACTIONS(4162), + [anon_sym___alignof] = ACTIONS(4162), + [anon_sym__alignof] = ACTIONS(4162), + [anon_sym_alignof] = ACTIONS(4162), + [anon_sym__Alignof] = ACTIONS(4162), + [anon_sym_offsetof] = ACTIONS(4162), + [anon_sym__Generic] = ACTIONS(4162), + [anon_sym_typename] = ACTIONS(4162), + [anon_sym_asm] = ACTIONS(4162), + [anon_sym___asm__] = ACTIONS(4162), + [anon_sym___asm] = ACTIONS(4162), + [sym_number_literal] = ACTIONS(4164), + [anon_sym_L_SQUOTE] = ACTIONS(4164), + [anon_sym_u_SQUOTE] = ACTIONS(4164), + [anon_sym_U_SQUOTE] = ACTIONS(4164), + [anon_sym_u8_SQUOTE] = ACTIONS(4164), + [anon_sym_SQUOTE] = ACTIONS(4164), + [anon_sym_L_DQUOTE] = ACTIONS(4164), + [anon_sym_u_DQUOTE] = ACTIONS(4164), + [anon_sym_U_DQUOTE] = ACTIONS(4164), + [anon_sym_u8_DQUOTE] = ACTIONS(4164), + [anon_sym_DQUOTE] = ACTIONS(4164), + [sym_true] = ACTIONS(4162), + [sym_false] = ACTIONS(4162), + [anon_sym_NULL] = ACTIONS(4162), + [anon_sym_nullptr] = ACTIONS(4162), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4162), + [anon_sym_decltype] = ACTIONS(4162), + [anon_sym_explicit] = ACTIONS(4162), + [anon_sym_export] = ACTIONS(4162), + [anon_sym_module] = ACTIONS(4162), + [anon_sym_import] = ACTIONS(4162), + [anon_sym_template] = ACTIONS(4162), + [anon_sym_operator] = ACTIONS(4162), + [anon_sym_try] = ACTIONS(4162), + [anon_sym_delete] = ACTIONS(4162), + [anon_sym_throw] = ACTIONS(4162), + [anon_sym_namespace] = ACTIONS(4162), + [anon_sym_static_assert] = ACTIONS(4162), + [anon_sym_concept] = ACTIONS(4162), + [anon_sym_co_return] = ACTIONS(4162), + [anon_sym_co_yield] = ACTIONS(4162), + [anon_sym_R_DQUOTE] = ACTIONS(4164), + [anon_sym_LR_DQUOTE] = ACTIONS(4164), + [anon_sym_uR_DQUOTE] = ACTIONS(4164), + [anon_sym_UR_DQUOTE] = ACTIONS(4164), + [anon_sym_u8R_DQUOTE] = ACTIONS(4164), + [anon_sym_co_await] = ACTIONS(4162), + [anon_sym_new] = ACTIONS(4162), + [anon_sym_requires] = ACTIONS(4162), + [anon_sym_CARET_CARET] = ACTIONS(4164), + [anon_sym_LBRACK_COLON] = ACTIONS(4164), + [sym_this] = ACTIONS(4162), }, [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), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5138), + [sym_preproc_def] = STATE(1049), + [sym_preproc_function_def] = STATE(1049), + [sym_preproc_call] = STATE(1049), + [sym_preproc_if_in_field_declaration_list] = STATE(1049), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1049), + [sym_type_definition] = STATE(1049), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1049), + [sym_field_declaration] = STATE(1049), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1049), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1049), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1049), + [sym_operator_cast_declaration] = STATE(1049), + [sym_constructor_or_destructor_definition] = STATE(1049), + [sym_constructor_or_destructor_declaration] = STATE(1049), + [sym_friend_declaration] = STATE(1049), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1049), + [sym_alias_declaration] = STATE(1049), + [sym_static_assert_declaration] = STATE(1049), + [sym_consteval_block_declaration] = STATE(1049), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1049), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4930), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5140), + [anon_sym_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [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___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4932), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(5170), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), [anon_sym___inline] = ACTIONS(63), @@ -207075,7 +210509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_thread_local] = ACTIONS(63), [anon_sym___thread] = ACTIONS(63), [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), + [anon_sym_constexpr] = ACTIONS(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -207085,7377 +210519,1516 @@ 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(67), + [anon_sym_consteval] = ACTIONS(4712), [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [ts_builtin_sym_end] = ACTIONS(4506), + [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(4506), + [anon_sym_BANG] = ACTIONS(4506), + [anon_sym_TILDE] = ACTIONS(4506), + [anon_sym_DASH] = ACTIONS(4504), + [anon_sym_PLUS] = ACTIONS(4504), + [anon_sym_STAR] = ACTIONS(4506), + [anon_sym_AMP_AMP] = ACTIONS(4506), + [anon_sym_AMP] = ACTIONS(4504), + [anon_sym_SEMI] = ACTIONS(4506), + [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(4506), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4506), + [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(4506), + [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(4506), + [anon_sym_PLUS_PLUS] = ACTIONS(4506), + [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(4506), + [anon_sym_L_SQUOTE] = ACTIONS(4506), + [anon_sym_u_SQUOTE] = ACTIONS(4506), + [anon_sym_U_SQUOTE] = ACTIONS(4506), + [anon_sym_u8_SQUOTE] = ACTIONS(4506), + [anon_sym_SQUOTE] = ACTIONS(4506), + [anon_sym_L_DQUOTE] = ACTIONS(4506), + [anon_sym_u_DQUOTE] = ACTIONS(4506), + [anon_sym_U_DQUOTE] = ACTIONS(4506), + [anon_sym_u8_DQUOTE] = ACTIONS(4506), + [anon_sym_DQUOTE] = ACTIONS(4506), + [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(4506), + [anon_sym_LR_DQUOTE] = ACTIONS(4506), + [anon_sym_uR_DQUOTE] = ACTIONS(4506), + [anon_sym_UR_DQUOTE] = ACTIONS(4506), + [anon_sym_u8R_DQUOTE] = ACTIONS(4506), + [anon_sym_co_await] = ACTIONS(4504), + [anon_sym_new] = ACTIONS(4504), + [anon_sym_requires] = ACTIONS(4504), + [anon_sym_CARET_CARET] = ACTIONS(4506), + [anon_sym_LBRACK_COLON] = ACTIONS(4506), + [sym_this] = ACTIONS(4504), }, [STATE(1040)] = { - [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), - [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), + [ts_builtin_sym_end] = ACTIONS(4228), + [sym_identifier] = ACTIONS(4226), + [aux_sym_preproc_include_token1] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym___cdecl] = ACTIONS(4226), + [anon_sym___clrcall] = ACTIONS(4226), + [anon_sym___stdcall] = ACTIONS(4226), + [anon_sym___fastcall] = ACTIONS(4226), + [anon_sym___thiscall] = ACTIONS(4226), + [anon_sym___vectorcall] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_case] = ACTIONS(4226), + [anon_sym_default] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_do] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym_not] = ACTIONS(4226), + [anon_sym_compl] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_sizeof] = ACTIONS(4226), + [anon_sym___alignof__] = ACTIONS(4226), + [anon_sym___alignof] = ACTIONS(4226), + [anon_sym__alignof] = ACTIONS(4226), + [anon_sym_alignof] = ACTIONS(4226), + [anon_sym__Alignof] = ACTIONS(4226), + [anon_sym_offsetof] = ACTIONS(4226), + [anon_sym__Generic] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym___asm__] = ACTIONS(4226), + [anon_sym___asm] = ACTIONS(4226), + [sym_number_literal] = ACTIONS(4228), + [anon_sym_L_SQUOTE] = ACTIONS(4228), + [anon_sym_u_SQUOTE] = ACTIONS(4228), + [anon_sym_U_SQUOTE] = ACTIONS(4228), + [anon_sym_u8_SQUOTE] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4228), + [anon_sym_L_DQUOTE] = ACTIONS(4228), + [anon_sym_u_DQUOTE] = ACTIONS(4228), + [anon_sym_U_DQUOTE] = ACTIONS(4228), + [anon_sym_u8_DQUOTE] = ACTIONS(4228), + [anon_sym_DQUOTE] = ACTIONS(4228), + [sym_true] = ACTIONS(4226), + [sym_false] = ACTIONS(4226), + [anon_sym_NULL] = ACTIONS(4226), + [anon_sym_nullptr] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_export] = ACTIONS(4226), + [anon_sym_module] = ACTIONS(4226), + [anon_sym_import] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_delete] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_namespace] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_concept] = ACTIONS(4226), + [anon_sym_co_return] = ACTIONS(4226), + [anon_sym_co_yield] = ACTIONS(4226), + [anon_sym_R_DQUOTE] = ACTIONS(4228), + [anon_sym_LR_DQUOTE] = ACTIONS(4228), + [anon_sym_uR_DQUOTE] = ACTIONS(4228), + [anon_sym_UR_DQUOTE] = ACTIONS(4228), + [anon_sym_u8R_DQUOTE] = ACTIONS(4228), + [anon_sym_co_await] = ACTIONS(4226), + [anon_sym_new] = ACTIONS(4226), + [anon_sym_requires] = ACTIONS(4226), + [anon_sym_CARET_CARET] = ACTIONS(4228), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), + [sym_this] = ACTIONS(4226), }, [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), + [ts_builtin_sym_end] = ACTIONS(4228), + [sym_identifier] = ACTIONS(4226), + [aux_sym_preproc_include_token1] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4226), + [anon_sym_PLUS] = ACTIONS(4226), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym___cdecl] = ACTIONS(4226), + [anon_sym___clrcall] = ACTIONS(4226), + [anon_sym___stdcall] = ACTIONS(4226), + [anon_sym___fastcall] = ACTIONS(4226), + [anon_sym___thiscall] = ACTIONS(4226), + [anon_sym___vectorcall] = ACTIONS(4226), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_if] = ACTIONS(4226), + [anon_sym_switch] = ACTIONS(4226), + [anon_sym_case] = ACTIONS(4226), + [anon_sym_default] = ACTIONS(4226), + [anon_sym_while] = ACTIONS(4226), + [anon_sym_do] = ACTIONS(4226), + [anon_sym_for] = ACTIONS(4226), + [anon_sym_return] = ACTIONS(4226), + [anon_sym_break] = ACTIONS(4226), + [anon_sym_continue] = ACTIONS(4226), + [anon_sym_goto] = ACTIONS(4226), + [anon_sym_not] = ACTIONS(4226), + [anon_sym_compl] = ACTIONS(4226), + [anon_sym_DASH_DASH] = ACTIONS(4228), + [anon_sym_PLUS_PLUS] = ACTIONS(4228), + [anon_sym_sizeof] = ACTIONS(4226), + [anon_sym___alignof__] = ACTIONS(4226), + [anon_sym___alignof] = ACTIONS(4226), + [anon_sym__alignof] = ACTIONS(4226), + [anon_sym_alignof] = ACTIONS(4226), + [anon_sym__Alignof] = ACTIONS(4226), + [anon_sym_offsetof] = ACTIONS(4226), + [anon_sym__Generic] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [anon_sym_asm] = ACTIONS(4226), + [anon_sym___asm__] = ACTIONS(4226), + [anon_sym___asm] = ACTIONS(4226), + [sym_number_literal] = ACTIONS(4228), + [anon_sym_L_SQUOTE] = ACTIONS(4228), + [anon_sym_u_SQUOTE] = ACTIONS(4228), + [anon_sym_U_SQUOTE] = ACTIONS(4228), + [anon_sym_u8_SQUOTE] = ACTIONS(4228), + [anon_sym_SQUOTE] = ACTIONS(4228), + [anon_sym_L_DQUOTE] = ACTIONS(4228), + [anon_sym_u_DQUOTE] = ACTIONS(4228), + [anon_sym_U_DQUOTE] = ACTIONS(4228), + [anon_sym_u8_DQUOTE] = ACTIONS(4228), + [anon_sym_DQUOTE] = ACTIONS(4228), + [sym_true] = ACTIONS(4226), + [sym_false] = ACTIONS(4226), + [anon_sym_NULL] = ACTIONS(4226), + [anon_sym_nullptr] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_export] = ACTIONS(4226), + [anon_sym_module] = ACTIONS(4226), + [anon_sym_import] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_try] = ACTIONS(4226), + [anon_sym_delete] = ACTIONS(4226), + [anon_sym_throw] = ACTIONS(4226), + [anon_sym_namespace] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_concept] = ACTIONS(4226), + [anon_sym_co_return] = ACTIONS(4226), + [anon_sym_co_yield] = ACTIONS(4226), + [anon_sym_R_DQUOTE] = ACTIONS(4228), + [anon_sym_LR_DQUOTE] = ACTIONS(4228), + [anon_sym_uR_DQUOTE] = ACTIONS(4228), + [anon_sym_UR_DQUOTE] = ACTIONS(4228), + [anon_sym_u8R_DQUOTE] = ACTIONS(4228), + [anon_sym_co_await] = ACTIONS(4226), + [anon_sym_new] = ACTIONS(4226), + [anon_sym_requires] = ACTIONS(4226), + [anon_sym_CARET_CARET] = ACTIONS(4228), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), + [sym_this] = ACTIONS(4226), }, [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), - [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), + [ts_builtin_sym_end] = ACTIONS(3967), + [sym_identifier] = ACTIONS(3965), + [aux_sym_preproc_include_token1] = ACTIONS(3965), + [aux_sym_preproc_def_token1] = ACTIONS(3965), + [aux_sym_preproc_if_token1] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3965), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3965), + [sym_preproc_directive] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3967), + [anon_sym_BANG] = ACTIONS(3967), + [anon_sym_TILDE] = ACTIONS(3967), + [anon_sym_DASH] = ACTIONS(3965), + [anon_sym_PLUS] = ACTIONS(3965), + [anon_sym_STAR] = ACTIONS(3967), + [anon_sym_AMP_AMP] = ACTIONS(3967), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_SEMI] = ACTIONS(3967), + [anon_sym___extension__] = ACTIONS(3965), + [anon_sym_typedef] = ACTIONS(3965), + [anon_sym_virtual] = ACTIONS(3965), + [anon_sym_extern] = ACTIONS(3965), + [anon_sym___attribute__] = ACTIONS(3965), + [anon_sym___attribute] = ACTIONS(3965), + [anon_sym_using] = ACTIONS(3965), + [anon_sym_COLON_COLON] = ACTIONS(3967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3967), + [anon_sym___declspec] = ACTIONS(3965), + [anon_sym___based] = ACTIONS(3965), + [anon_sym___cdecl] = ACTIONS(3965), + [anon_sym___clrcall] = ACTIONS(3965), + [anon_sym___stdcall] = ACTIONS(3965), + [anon_sym___fastcall] = ACTIONS(3965), + [anon_sym___thiscall] = ACTIONS(3965), + [anon_sym___vectorcall] = ACTIONS(3965), + [anon_sym_LBRACE] = ACTIONS(3967), + [anon_sym_signed] = ACTIONS(3965), + [anon_sym_unsigned] = ACTIONS(3965), + [anon_sym_long] = ACTIONS(3965), + [anon_sym_short] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3965), + [anon_sym_static] = ACTIONS(3965), + [anon_sym_register] = ACTIONS(3965), + [anon_sym_inline] = ACTIONS(3965), + [anon_sym___inline] = ACTIONS(3965), + [anon_sym___inline__] = ACTIONS(3965), + [anon_sym___forceinline] = ACTIONS(3965), + [anon_sym_thread_local] = ACTIONS(3965), + [anon_sym___thread] = ACTIONS(3965), + [anon_sym_const] = ACTIONS(3965), + [anon_sym_constexpr] = ACTIONS(3965), + [anon_sym_volatile] = ACTIONS(3965), + [anon_sym_restrict] = ACTIONS(3965), + [anon_sym___restrict__] = ACTIONS(3965), + [anon_sym__Atomic] = ACTIONS(3965), + [anon_sym__Noreturn] = ACTIONS(3965), + [anon_sym_noreturn] = ACTIONS(3965), + [anon_sym__Nonnull] = ACTIONS(3965), + [anon_sym_mutable] = ACTIONS(3965), + [anon_sym_constinit] = ACTIONS(3965), + [anon_sym_consteval] = ACTIONS(3965), + [anon_sym_alignas] = ACTIONS(3965), + [anon_sym__Alignas] = ACTIONS(3965), + [sym_primitive_type] = ACTIONS(3965), + [anon_sym_enum] = ACTIONS(3965), + [anon_sym_class] = ACTIONS(3965), + [anon_sym_struct] = ACTIONS(3965), + [anon_sym_union] = ACTIONS(3965), + [anon_sym_if] = ACTIONS(3965), + [anon_sym_switch] = ACTIONS(3965), + [anon_sym_case] = ACTIONS(3965), + [anon_sym_default] = ACTIONS(3965), + [anon_sym_while] = ACTIONS(3965), + [anon_sym_do] = ACTIONS(3965), + [anon_sym_for] = ACTIONS(3965), + [anon_sym_return] = ACTIONS(3965), + [anon_sym_break] = ACTIONS(3965), + [anon_sym_continue] = ACTIONS(3965), + [anon_sym_goto] = ACTIONS(3965), + [anon_sym_not] = ACTIONS(3965), + [anon_sym_compl] = ACTIONS(3965), + [anon_sym_DASH_DASH] = ACTIONS(3967), + [anon_sym_PLUS_PLUS] = ACTIONS(3967), + [anon_sym_sizeof] = ACTIONS(3965), + [anon_sym___alignof__] = ACTIONS(3965), + [anon_sym___alignof] = ACTIONS(3965), + [anon_sym__alignof] = ACTIONS(3965), + [anon_sym_alignof] = ACTIONS(3965), + [anon_sym__Alignof] = ACTIONS(3965), + [anon_sym_offsetof] = ACTIONS(3965), + [anon_sym__Generic] = ACTIONS(3965), + [anon_sym_typename] = ACTIONS(3965), + [anon_sym_asm] = ACTIONS(3965), + [anon_sym___asm__] = ACTIONS(3965), + [anon_sym___asm] = ACTIONS(3965), + [sym_number_literal] = ACTIONS(3967), + [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(3967), + [anon_sym_u_DQUOTE] = ACTIONS(3967), + [anon_sym_U_DQUOTE] = ACTIONS(3967), + [anon_sym_u8_DQUOTE] = ACTIONS(3967), + [anon_sym_DQUOTE] = ACTIONS(3967), + [sym_true] = ACTIONS(3965), + [sym_false] = ACTIONS(3965), + [anon_sym_NULL] = ACTIONS(3965), + [anon_sym_nullptr] = ACTIONS(3965), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3965), + [anon_sym_decltype] = ACTIONS(3965), + [anon_sym_explicit] = ACTIONS(3965), + [anon_sym_export] = ACTIONS(3965), + [anon_sym_module] = ACTIONS(3965), + [anon_sym_import] = ACTIONS(3965), + [anon_sym_template] = ACTIONS(3965), + [anon_sym_operator] = ACTIONS(3965), + [anon_sym_try] = ACTIONS(3965), + [anon_sym_delete] = ACTIONS(3965), + [anon_sym_throw] = ACTIONS(3965), + [anon_sym_namespace] = ACTIONS(3965), + [anon_sym_static_assert] = ACTIONS(3965), + [anon_sym_concept] = ACTIONS(3965), + [anon_sym_co_return] = ACTIONS(3965), + [anon_sym_co_yield] = ACTIONS(3965), + [anon_sym_R_DQUOTE] = ACTIONS(3967), + [anon_sym_LR_DQUOTE] = ACTIONS(3967), + [anon_sym_uR_DQUOTE] = ACTIONS(3967), + [anon_sym_UR_DQUOTE] = ACTIONS(3967), + [anon_sym_u8R_DQUOTE] = ACTIONS(3967), + [anon_sym_co_await] = ACTIONS(3965), + [anon_sym_new] = ACTIONS(3965), + [anon_sym_requires] = ACTIONS(3965), + [anon_sym_CARET_CARET] = ACTIONS(3967), + [anon_sym_LBRACK_COLON] = ACTIONS(3967), + [sym_this] = ACTIONS(3965), }, [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - [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), - }, - [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), - [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), - }, - [STATE(1059)] = { - [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), - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - }, - [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), - }, - [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), - [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), - }, - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - [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_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), - }, - [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), - [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), - }, - [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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - [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), - }, - [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), - [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_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), - }, - [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), - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [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(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), - [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), + [STATE(1044)] = { + [ts_builtin_sym_end] = ACTIONS(4329), + [sym_identifier] = ACTIONS(4327), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym___cdecl] = ACTIONS(4327), + [anon_sym___clrcall] = ACTIONS(4327), + [anon_sym___stdcall] = ACTIONS(4327), + [anon_sym___fastcall] = ACTIONS(4327), + [anon_sym___thiscall] = ACTIONS(4327), + [anon_sym___vectorcall] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_switch] = ACTIONS(4327), + [anon_sym_case] = ACTIONS(4327), + [anon_sym_default] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_do] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_goto] = ACTIONS(4327), + [anon_sym_not] = ACTIONS(4327), + [anon_sym_compl] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_sizeof] = ACTIONS(4327), + [anon_sym___alignof__] = ACTIONS(4327), + [anon_sym___alignof] = ACTIONS(4327), + [anon_sym__alignof] = ACTIONS(4327), + [anon_sym_alignof] = ACTIONS(4327), + [anon_sym__Alignof] = ACTIONS(4327), + [anon_sym_offsetof] = ACTIONS(4327), + [anon_sym__Generic] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [anon_sym_asm] = ACTIONS(4327), + [anon_sym___asm__] = ACTIONS(4327), + [anon_sym___asm] = ACTIONS(4327), + [sym_number_literal] = ACTIONS(4329), + [anon_sym_L_SQUOTE] = ACTIONS(4329), + [anon_sym_u_SQUOTE] = ACTIONS(4329), + [anon_sym_U_SQUOTE] = ACTIONS(4329), + [anon_sym_u8_SQUOTE] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_L_DQUOTE] = ACTIONS(4329), + [anon_sym_u_DQUOTE] = ACTIONS(4329), + [anon_sym_U_DQUOTE] = ACTIONS(4329), + [anon_sym_u8_DQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym_true] = ACTIONS(4327), + [sym_false] = ACTIONS(4327), + [anon_sym_NULL] = ACTIONS(4327), + [anon_sym_nullptr] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_export] = ACTIONS(4327), + [anon_sym_module] = ACTIONS(4327), + [anon_sym_import] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_delete] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_namespace] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_concept] = ACTIONS(4327), + [anon_sym_co_return] = ACTIONS(4327), + [anon_sym_co_yield] = ACTIONS(4327), + [anon_sym_R_DQUOTE] = ACTIONS(4329), + [anon_sym_LR_DQUOTE] = ACTIONS(4329), + [anon_sym_uR_DQUOTE] = ACTIONS(4329), + [anon_sym_UR_DQUOTE] = ACTIONS(4329), + [anon_sym_u8R_DQUOTE] = ACTIONS(4329), + [anon_sym_co_await] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4327), + [anon_sym_requires] = ACTIONS(4327), + [anon_sym_CARET_CARET] = ACTIONS(4329), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), + [sym_this] = ACTIONS(4327), }, - [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), - [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), + [STATE(1045)] = { + [ts_builtin_sym_end] = ACTIONS(4015), + [sym_identifier] = ACTIONS(4013), + [aux_sym_preproc_include_token1] = ACTIONS(4013), + [aux_sym_preproc_def_token1] = ACTIONS(4013), + [aux_sym_preproc_if_token1] = ACTIONS(4013), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4013), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4013), + [sym_preproc_directive] = ACTIONS(4013), + [anon_sym_LPAREN2] = ACTIONS(4015), + [anon_sym_BANG] = ACTIONS(4015), + [anon_sym_TILDE] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(4013), + [anon_sym_PLUS] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(4015), + [anon_sym_AMP_AMP] = ACTIONS(4015), + [anon_sym_AMP] = ACTIONS(4013), + [anon_sym_SEMI] = ACTIONS(4015), + [anon_sym___extension__] = ACTIONS(4013), + [anon_sym_typedef] = ACTIONS(4013), + [anon_sym_virtual] = ACTIONS(4013), + [anon_sym_extern] = ACTIONS(4013), + [anon_sym___attribute__] = ACTIONS(4013), + [anon_sym___attribute] = ACTIONS(4013), + [anon_sym_using] = ACTIONS(4013), + [anon_sym_COLON_COLON] = ACTIONS(4015), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4015), + [anon_sym___declspec] = ACTIONS(4013), + [anon_sym___based] = ACTIONS(4013), + [anon_sym___cdecl] = ACTIONS(4013), + [anon_sym___clrcall] = ACTIONS(4013), + [anon_sym___stdcall] = ACTIONS(4013), + [anon_sym___fastcall] = ACTIONS(4013), + [anon_sym___thiscall] = ACTIONS(4013), + [anon_sym___vectorcall] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(4015), + [anon_sym_signed] = ACTIONS(4013), + [anon_sym_unsigned] = ACTIONS(4013), + [anon_sym_long] = ACTIONS(4013), + [anon_sym_short] = ACTIONS(4013), + [anon_sym_LBRACK] = ACTIONS(4013), + [anon_sym_static] = ACTIONS(4013), + [anon_sym_register] = ACTIONS(4013), + [anon_sym_inline] = ACTIONS(4013), + [anon_sym___inline] = ACTIONS(4013), + [anon_sym___inline__] = ACTIONS(4013), + [anon_sym___forceinline] = ACTIONS(4013), + [anon_sym_thread_local] = ACTIONS(4013), + [anon_sym___thread] = ACTIONS(4013), + [anon_sym_const] = ACTIONS(4013), + [anon_sym_constexpr] = ACTIONS(4013), + [anon_sym_volatile] = ACTIONS(4013), + [anon_sym_restrict] = ACTIONS(4013), + [anon_sym___restrict__] = ACTIONS(4013), + [anon_sym__Atomic] = ACTIONS(4013), + [anon_sym__Noreturn] = ACTIONS(4013), + [anon_sym_noreturn] = ACTIONS(4013), + [anon_sym__Nonnull] = ACTIONS(4013), + [anon_sym_mutable] = ACTIONS(4013), + [anon_sym_constinit] = ACTIONS(4013), + [anon_sym_consteval] = ACTIONS(4013), + [anon_sym_alignas] = ACTIONS(4013), + [anon_sym__Alignas] = ACTIONS(4013), + [sym_primitive_type] = ACTIONS(4013), + [anon_sym_enum] = ACTIONS(4013), + [anon_sym_class] = ACTIONS(4013), + [anon_sym_struct] = ACTIONS(4013), + [anon_sym_union] = ACTIONS(4013), + [anon_sym_if] = ACTIONS(4013), + [anon_sym_switch] = ACTIONS(4013), + [anon_sym_case] = ACTIONS(4013), + [anon_sym_default] = ACTIONS(4013), + [anon_sym_while] = ACTIONS(4013), + [anon_sym_do] = ACTIONS(4013), + [anon_sym_for] = ACTIONS(4013), + [anon_sym_return] = ACTIONS(4013), + [anon_sym_break] = ACTIONS(4013), + [anon_sym_continue] = ACTIONS(4013), + [anon_sym_goto] = ACTIONS(4013), + [anon_sym_not] = ACTIONS(4013), + [anon_sym_compl] = ACTIONS(4013), + [anon_sym_DASH_DASH] = ACTIONS(4015), + [anon_sym_PLUS_PLUS] = ACTIONS(4015), + [anon_sym_sizeof] = ACTIONS(4013), + [anon_sym___alignof__] = ACTIONS(4013), + [anon_sym___alignof] = ACTIONS(4013), + [anon_sym__alignof] = ACTIONS(4013), + [anon_sym_alignof] = ACTIONS(4013), + [anon_sym__Alignof] = ACTIONS(4013), + [anon_sym_offsetof] = ACTIONS(4013), + [anon_sym__Generic] = ACTIONS(4013), + [anon_sym_typename] = ACTIONS(4013), + [anon_sym_asm] = ACTIONS(4013), + [anon_sym___asm__] = ACTIONS(4013), + [anon_sym___asm] = ACTIONS(4013), + [sym_number_literal] = ACTIONS(4015), + [anon_sym_L_SQUOTE] = ACTIONS(4015), + [anon_sym_u_SQUOTE] = ACTIONS(4015), + [anon_sym_U_SQUOTE] = ACTIONS(4015), + [anon_sym_u8_SQUOTE] = ACTIONS(4015), + [anon_sym_SQUOTE] = ACTIONS(4015), + [anon_sym_L_DQUOTE] = ACTIONS(4015), + [anon_sym_u_DQUOTE] = ACTIONS(4015), + [anon_sym_U_DQUOTE] = ACTIONS(4015), + [anon_sym_u8_DQUOTE] = ACTIONS(4015), + [anon_sym_DQUOTE] = ACTIONS(4015), + [sym_true] = ACTIONS(4013), + [sym_false] = ACTIONS(4013), + [anon_sym_NULL] = ACTIONS(4013), + [anon_sym_nullptr] = ACTIONS(4013), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4013), + [anon_sym_decltype] = ACTIONS(4013), + [anon_sym_explicit] = ACTIONS(4013), + [anon_sym_export] = ACTIONS(4013), + [anon_sym_module] = ACTIONS(4013), + [anon_sym_import] = ACTIONS(4013), + [anon_sym_template] = ACTIONS(4013), + [anon_sym_operator] = ACTIONS(4013), + [anon_sym_try] = ACTIONS(4013), + [anon_sym_delete] = ACTIONS(4013), + [anon_sym_throw] = ACTIONS(4013), + [anon_sym_namespace] = ACTIONS(4013), + [anon_sym_static_assert] = ACTIONS(4013), + [anon_sym_concept] = ACTIONS(4013), + [anon_sym_co_return] = ACTIONS(4013), + [anon_sym_co_yield] = ACTIONS(4013), + [anon_sym_R_DQUOTE] = ACTIONS(4015), + [anon_sym_LR_DQUOTE] = ACTIONS(4015), + [anon_sym_uR_DQUOTE] = ACTIONS(4015), + [anon_sym_UR_DQUOTE] = ACTIONS(4015), + [anon_sym_u8R_DQUOTE] = ACTIONS(4015), + [anon_sym_co_await] = ACTIONS(4013), + [anon_sym_new] = ACTIONS(4013), + [anon_sym_requires] = ACTIONS(4013), + [anon_sym_CARET_CARET] = ACTIONS(4015), + [anon_sym_LBRACK_COLON] = ACTIONS(4015), + [sym_this] = ACTIONS(4013), }, - [STATE(1093)] = { - [sym_type_qualifier] = STATE(1069), - [sym_alignas_qualifier] = STATE(2724), - [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), + [STATE(1046)] = { + [ts_builtin_sym_end] = ACTIONS(4329), + [sym_identifier] = ACTIONS(4327), + [aux_sym_preproc_include_token1] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_BANG] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_DASH] = ACTIONS(4327), + [anon_sym_PLUS] = ACTIONS(4327), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym___cdecl] = ACTIONS(4327), + [anon_sym___clrcall] = ACTIONS(4327), + [anon_sym___stdcall] = ACTIONS(4327), + [anon_sym___fastcall] = ACTIONS(4327), + [anon_sym___thiscall] = ACTIONS(4327), + [anon_sym___vectorcall] = ACTIONS(4327), + [anon_sym_LBRACE] = ACTIONS(4329), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_if] = ACTIONS(4327), + [anon_sym_switch] = ACTIONS(4327), + [anon_sym_case] = ACTIONS(4327), + [anon_sym_default] = ACTIONS(4327), + [anon_sym_while] = ACTIONS(4327), + [anon_sym_do] = ACTIONS(4327), + [anon_sym_for] = ACTIONS(4327), + [anon_sym_return] = ACTIONS(4327), + [anon_sym_break] = ACTIONS(4327), + [anon_sym_continue] = ACTIONS(4327), + [anon_sym_goto] = ACTIONS(4327), + [anon_sym_not] = ACTIONS(4327), + [anon_sym_compl] = ACTIONS(4327), + [anon_sym_DASH_DASH] = ACTIONS(4329), + [anon_sym_PLUS_PLUS] = ACTIONS(4329), + [anon_sym_sizeof] = ACTIONS(4327), + [anon_sym___alignof__] = ACTIONS(4327), + [anon_sym___alignof] = ACTIONS(4327), + [anon_sym__alignof] = ACTIONS(4327), + [anon_sym_alignof] = ACTIONS(4327), + [anon_sym__Alignof] = ACTIONS(4327), + [anon_sym_offsetof] = ACTIONS(4327), + [anon_sym__Generic] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [anon_sym_asm] = ACTIONS(4327), + [anon_sym___asm__] = ACTIONS(4327), + [anon_sym___asm] = ACTIONS(4327), + [sym_number_literal] = ACTIONS(4329), + [anon_sym_L_SQUOTE] = ACTIONS(4329), + [anon_sym_u_SQUOTE] = ACTIONS(4329), + [anon_sym_U_SQUOTE] = ACTIONS(4329), + [anon_sym_u8_SQUOTE] = ACTIONS(4329), + [anon_sym_SQUOTE] = ACTIONS(4329), + [anon_sym_L_DQUOTE] = ACTIONS(4329), + [anon_sym_u_DQUOTE] = ACTIONS(4329), + [anon_sym_U_DQUOTE] = ACTIONS(4329), + [anon_sym_u8_DQUOTE] = ACTIONS(4329), + [anon_sym_DQUOTE] = ACTIONS(4329), + [sym_true] = ACTIONS(4327), + [sym_false] = ACTIONS(4327), + [anon_sym_NULL] = ACTIONS(4327), + [anon_sym_nullptr] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_export] = ACTIONS(4327), + [anon_sym_module] = ACTIONS(4327), + [anon_sym_import] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_try] = ACTIONS(4327), + [anon_sym_delete] = ACTIONS(4327), + [anon_sym_throw] = ACTIONS(4327), + [anon_sym_namespace] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_concept] = ACTIONS(4327), + [anon_sym_co_return] = ACTIONS(4327), + [anon_sym_co_yield] = ACTIONS(4327), + [anon_sym_R_DQUOTE] = ACTIONS(4329), + [anon_sym_LR_DQUOTE] = ACTIONS(4329), + [anon_sym_uR_DQUOTE] = ACTIONS(4329), + [anon_sym_UR_DQUOTE] = ACTIONS(4329), + [anon_sym_u8R_DQUOTE] = ACTIONS(4329), + [anon_sym_co_await] = ACTIONS(4327), + [anon_sym_new] = ACTIONS(4327), + [anon_sym_requires] = ACTIONS(4327), + [anon_sym_CARET_CARET] = ACTIONS(4329), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), + [sym_this] = ACTIONS(4327), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(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(5462), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [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), + [STATE(1047)] = { + [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(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5466), - [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), + [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(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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(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(5474), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [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_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5476), - [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), + [STATE(1048)] = { + [ts_builtin_sym_end] = ACTIONS(4333), + [sym_identifier] = ACTIONS(4331), + [aux_sym_preproc_include_token1] = ACTIONS(4331), + [aux_sym_preproc_def_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token1] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), + [sym_preproc_directive] = ACTIONS(4331), + [anon_sym_LPAREN2] = ACTIONS(4333), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4331), + [anon_sym_PLUS] = ACTIONS(4331), + [anon_sym_STAR] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym___extension__] = ACTIONS(4331), + [anon_sym_typedef] = ACTIONS(4331), + [anon_sym_virtual] = ACTIONS(4331), + [anon_sym_extern] = ACTIONS(4331), + [anon_sym___attribute__] = ACTIONS(4331), + [anon_sym___attribute] = ACTIONS(4331), + [anon_sym_using] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4333), + [anon_sym___declspec] = ACTIONS(4331), + [anon_sym___based] = ACTIONS(4331), + [anon_sym___cdecl] = ACTIONS(4331), + [anon_sym___clrcall] = ACTIONS(4331), + [anon_sym___stdcall] = ACTIONS(4331), + [anon_sym___fastcall] = ACTIONS(4331), + [anon_sym___thiscall] = ACTIONS(4331), + [anon_sym___vectorcall] = ACTIONS(4331), + [anon_sym_LBRACE] = ACTIONS(4333), + [anon_sym_signed] = ACTIONS(4331), + [anon_sym_unsigned] = ACTIONS(4331), + [anon_sym_long] = ACTIONS(4331), + [anon_sym_short] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_static] = ACTIONS(4331), + [anon_sym_register] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym___inline] = ACTIONS(4331), + [anon_sym___inline__] = ACTIONS(4331), + [anon_sym___forceinline] = ACTIONS(4331), + [anon_sym_thread_local] = ACTIONS(4331), + [anon_sym___thread] = ACTIONS(4331), + [anon_sym_const] = ACTIONS(4331), + [anon_sym_constexpr] = ACTIONS(4331), + [anon_sym_volatile] = ACTIONS(4331), + [anon_sym_restrict] = ACTIONS(4331), + [anon_sym___restrict__] = ACTIONS(4331), + [anon_sym__Atomic] = ACTIONS(4331), + [anon_sym__Noreturn] = ACTIONS(4331), + [anon_sym_noreturn] = ACTIONS(4331), + [anon_sym__Nonnull] = ACTIONS(4331), + [anon_sym_mutable] = ACTIONS(4331), + [anon_sym_constinit] = ACTIONS(4331), + [anon_sym_consteval] = ACTIONS(4331), + [anon_sym_alignas] = ACTIONS(4331), + [anon_sym__Alignas] = ACTIONS(4331), + [sym_primitive_type] = ACTIONS(4331), + [anon_sym_enum] = ACTIONS(4331), + [anon_sym_class] = ACTIONS(4331), + [anon_sym_struct] = ACTIONS(4331), + [anon_sym_union] = ACTIONS(4331), + [anon_sym_if] = ACTIONS(4331), + [anon_sym_switch] = ACTIONS(4331), + [anon_sym_case] = ACTIONS(4331), + [anon_sym_default] = ACTIONS(4331), + [anon_sym_while] = ACTIONS(4331), + [anon_sym_do] = ACTIONS(4331), + [anon_sym_for] = ACTIONS(4331), + [anon_sym_return] = ACTIONS(4331), + [anon_sym_break] = ACTIONS(4331), + [anon_sym_continue] = ACTIONS(4331), + [anon_sym_goto] = ACTIONS(4331), + [anon_sym_not] = ACTIONS(4331), + [anon_sym_compl] = ACTIONS(4331), + [anon_sym_DASH_DASH] = ACTIONS(4333), + [anon_sym_PLUS_PLUS] = ACTIONS(4333), + [anon_sym_sizeof] = ACTIONS(4331), + [anon_sym___alignof__] = ACTIONS(4331), + [anon_sym___alignof] = ACTIONS(4331), + [anon_sym__alignof] = ACTIONS(4331), + [anon_sym_alignof] = ACTIONS(4331), + [anon_sym__Alignof] = ACTIONS(4331), + [anon_sym_offsetof] = ACTIONS(4331), + [anon_sym__Generic] = ACTIONS(4331), + [anon_sym_typename] = ACTIONS(4331), + [anon_sym_asm] = ACTIONS(4331), + [anon_sym___asm__] = ACTIONS(4331), + [anon_sym___asm] = ACTIONS(4331), + [sym_number_literal] = ACTIONS(4333), + [anon_sym_L_SQUOTE] = ACTIONS(4333), + [anon_sym_u_SQUOTE] = ACTIONS(4333), + [anon_sym_U_SQUOTE] = ACTIONS(4333), + [anon_sym_u8_SQUOTE] = ACTIONS(4333), + [anon_sym_SQUOTE] = ACTIONS(4333), + [anon_sym_L_DQUOTE] = ACTIONS(4333), + [anon_sym_u_DQUOTE] = ACTIONS(4333), + [anon_sym_U_DQUOTE] = ACTIONS(4333), + [anon_sym_u8_DQUOTE] = ACTIONS(4333), + [anon_sym_DQUOTE] = ACTIONS(4333), + [sym_true] = ACTIONS(4331), + [sym_false] = ACTIONS(4331), + [anon_sym_NULL] = ACTIONS(4331), + [anon_sym_nullptr] = ACTIONS(4331), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4331), + [anon_sym_decltype] = ACTIONS(4331), + [anon_sym_explicit] = ACTIONS(4331), + [anon_sym_export] = ACTIONS(4331), + [anon_sym_module] = ACTIONS(4331), + [anon_sym_import] = ACTIONS(4331), + [anon_sym_template] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_try] = ACTIONS(4331), + [anon_sym_delete] = ACTIONS(4331), + [anon_sym_throw] = ACTIONS(4331), + [anon_sym_namespace] = ACTIONS(4331), + [anon_sym_static_assert] = ACTIONS(4331), + [anon_sym_concept] = ACTIONS(4331), + [anon_sym_co_return] = ACTIONS(4331), + [anon_sym_co_yield] = ACTIONS(4331), + [anon_sym_R_DQUOTE] = ACTIONS(4333), + [anon_sym_LR_DQUOTE] = ACTIONS(4333), + [anon_sym_uR_DQUOTE] = ACTIONS(4333), + [anon_sym_UR_DQUOTE] = ACTIONS(4333), + [anon_sym_u8R_DQUOTE] = ACTIONS(4333), + [anon_sym_co_await] = ACTIONS(4331), + [anon_sym_new] = ACTIONS(4331), + [anon_sym_requires] = ACTIONS(4331), + [anon_sym_CARET_CARET] = ACTIONS(4333), + [anon_sym_LBRACK_COLON] = ACTIONS(4333), + [sym_this] = ACTIONS(4331), }, - [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), - [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), + [STATE(1049)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(4934), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -214465,7 +212038,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -214475,365 +212048,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(67), + [anon_sym_consteval] = ACTIONS(4712), [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_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(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(5486), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [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), + [STATE(1050)] = { + [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(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5488), - [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), + [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(1098)] = { - [sym_function_definition] = STATE(3357), - [sym_declaration] = STATE(3357), - [sym__declaration_modifiers] = STATE(4781), - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(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(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), + [STATE(1051)] = { + [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(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4708), - [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), + [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(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(1052)] = { + [sym_preproc_def] = STATE(1036), + [sym_preproc_function_def] = STATE(1036), + [sym_preproc_call] = STATE(1036), + [sym_preproc_if_in_field_declaration_list] = STATE(1036), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(1036), + [sym_type_definition] = STATE(1036), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(9132), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5142), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__field_declaration_list_item] = STATE(1036), + [sym_field_declaration] = STATE(1036), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1036), + [sym_operator_cast] = STATE(10290), + [sym_inline_method_definition] = STATE(1036), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(1036), + [sym_operator_cast_declaration] = STATE(1036), + [sym_constructor_or_destructor_definition] = STATE(1036), + [sym_constructor_or_destructor_declaration] = STATE(1036), + [sym_friend_declaration] = STATE(1036), + [sym_access_specifier] = STATE(12999), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_using_declaration] = STATE(1036), + [sym_alias_declaration] = STATE(1036), + [sym_static_assert_declaration] = STATE(1036), + [sym_consteval_block_declaration] = STATE(1036), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8733), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1036), + [aux_sym__declaration_specifiers_repeat1] = STATE(3203), + [aux_sym_attributed_declarator_repeat1] = STATE(10635), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(4692), + [aux_sym_preproc_if_token1] = ACTIONS(4694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4696), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4696), + [sym_preproc_directive] = ACTIONS(4698), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(4702), + [anon_sym_typedef] = ACTIONS(4704), [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_using] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(3528), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_RBRACE] = ACTIONS(4936), [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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -214843,7 +212455,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(4710), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -214853,354 +212465,1584 @@ 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(67), + [anon_sym_consteval] = ACTIONS(4712), [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_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), [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_private] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(4714), [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(4716), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(4718), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(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(5502), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [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), + [STATE(1053)] = { + [sym_expression] = STATE(7626), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_initializer_list] = STATE(8207), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_TILDE] = ACTIONS(4242), + [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(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(2384), + [anon_sym_RBRACK] = ACTIONS(2386), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [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(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym___asm__] = ACTIONS(4274), + [anon_sym___asm] = ACTIONS(4274), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(4276), + [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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_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_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1054)] = { + [sym_expression] = STATE(7753), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(4429), + [anon_sym_TILDE] = ACTIONS(4427), + [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(4952), + [anon_sym_COLON] = ACTIONS(2384), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [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(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1055)] = { + [sym_expression] = STATE(7780), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_initializer_list] = STATE(8340), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3234), + [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(2384), + [anon_sym_LT_EQ] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [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(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [anon_sym_DOT] = ACTIONS(2384), + [anon_sym_DOT_STAR] = ACTIONS(2386), + [anon_sym_DASH_GT] = ACTIONS(2386), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_GT2] = ACTIONS(2386), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), + }, + [STATE(1056)] = { + [sym_expression] = STATE(6550), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2386), + [anon_sym_LPAREN2] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(4202), + [anon_sym_TILDE] = ACTIONS(4200), + [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(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(2386), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [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(4214), + [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(4978), + [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(4218), + [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(4220), + [anon_sym_new] = ACTIONS(4222), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1057)] = { + [sym_expression] = STATE(7793), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4980), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4244), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_SLASH] = ACTIONS(4982), + [anon_sym_PERCENT] = ACTIONS(4980), + [anon_sym_PIPE_PIPE] = ACTIONS(4980), + [anon_sym_AMP_AMP] = ACTIONS(4980), + [anon_sym_PIPE] = ACTIONS(4982), + [anon_sym_CARET] = ACTIONS(4982), + [anon_sym_AMP] = ACTIONS(4984), + [anon_sym_EQ_EQ] = ACTIONS(4980), + [anon_sym_BANG_EQ] = ACTIONS(4980), + [anon_sym_GT] = ACTIONS(4982), + [anon_sym_GT_EQ] = ACTIONS(4980), + [anon_sym_LT_EQ] = ACTIONS(4982), + [anon_sym_LT] = ACTIONS(4982), + [anon_sym_LT_LT] = ACTIONS(4980), + [anon_sym_GT_GT] = ACTIONS(4980), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(4980), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_QMARK] = ACTIONS(4980), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_LT_EQ_GT] = ACTIONS(4980), + [anon_sym_or] = ACTIONS(4982), + [anon_sym_and] = ACTIONS(4982), + [anon_sym_bitor] = ACTIONS(4982), + [anon_sym_xor] = ACTIONS(4982), + [anon_sym_bitand] = ACTIONS(4982), + [anon_sym_not_eq] = ACTIONS(4982), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym___asm__] = ACTIONS(4274), + [anon_sym___asm] = ACTIONS(4274), + [anon_sym_DOT] = ACTIONS(4982), + [anon_sym_DOT_STAR] = ACTIONS(4980), + [anon_sym_DASH_GT] = ACTIONS(4980), + [sym_number_literal] = ACTIONS(4276), + [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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1058)] = { + [sym_expression] = STATE(5827), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(4986), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4989), + [anon_sym_COLON_COLON] = ACTIONS(4992), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(4995), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(4998), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5001), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(5004), + [sym_this] = ACTIONS(3060), + }, + [STATE(1059)] = { + [sym_expression] = STATE(6116), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(5007), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(5010), + [anon_sym_COLON_COLON] = ACTIONS(5013), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5016), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(5019), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5022), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(5025), + [sym_this] = ACTIONS(2992), + }, + [STATE(1060)] = { + [sym_expression] = STATE(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(3096), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3120), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [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(3129), + [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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), + [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(3138), + [sym_this] = ACTIONS(237), + }, + [STATE(1061)] = { + [sym_expression] = STATE(4956), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(5031), + [anon_sym_COLON_COLON] = ACTIONS(5034), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5037), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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_typename] = ACTIONS(5040), [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_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(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), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5043), + [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(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(4988), + [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_LBRACK_COLON] = ACTIONS(5046), [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1062)] = { + [sym_expression] = STATE(6555), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(4306), + [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(4309), + [anon_sym_COLON_COLON] = ACTIONS(4312), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(4315), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [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(4318), + [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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(4321), + [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(4324), + [sym_this] = ACTIONS(2364), + }, + [STATE(1063)] = { + [sym_expression] = STATE(7382), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(5049), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(5052), + [anon_sym_COLON_COLON] = ACTIONS(5055), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(3129), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), + [anon_sym_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(3138), + [sym_this] = ACTIONS(237), + }, + [STATE(1064)] = { + [sym_expression] = STATE(5634), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(5058), + [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(5517), + [anon_sym_TILDE] = ACTIONS(2228), [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_STAR] = ACTIONS(2336), + [anon_sym_AMP] = ACTIONS(2336), + [anon_sym___extension__] = ACTIONS(5061), + [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5067), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), [anon_sym_DASH_DASH] = ACTIONS(2256), @@ -215213,7 +214055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2260), [anon_sym_offsetof] = ACTIONS(2262), [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), + [anon_sym_typename] = ACTIONS(5070), [anon_sym_asm] = ACTIONS(2268), [anon_sym___asm__] = ACTIONS(2268), [anon_sym___asm] = ACTIONS(2268), @@ -215233,9 +214075,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5073), [anon_sym_delete] = ACTIONS(2288), [anon_sym_R_DQUOTE] = ACTIONS(2290), [anon_sym_LR_DQUOTE] = ACTIONS(2290), @@ -215246,716 +214088,1253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(5108), + [anon_sym_LBRACK_COLON] = ACTIONS(5076), [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(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(5502), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [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), + [STATE(1065)] = { + [sym_expression] = STATE(5170), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(5079), + [anon_sym_COLON_COLON] = ACTIONS(5082), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5037), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), + [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(5040), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5506), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5043), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(5046), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1066)] = { + [sym_expression] = STATE(7735), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(5085), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(5088), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5094), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), + [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(5097), + [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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), + [anon_sym_delete] = ACTIONS(4218), + [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(4220), + [anon_sym_new] = ACTIONS(4222), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(3138), + [sym_this] = ACTIONS(237), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(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(5462), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [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), + [STATE(1067)] = { + [sym_expression] = STATE(7150), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5100), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(5103), + [anon_sym_COLON_COLON] = ACTIONS(5106), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(3129), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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_template] = ACTIONS(5466), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5468), - [anon_sym_concept] = ACTIONS(155), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5109), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(3138), + [sym_this] = ACTIONS(237), }, - [STATE(1106)] = { - [sym_function_definition] = STATE(3380), - [sym_declaration] = STATE(3380), - [sym__declaration_modifiers] = STATE(4781), - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(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(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), + [STATE(1068)] = { + [sym_expression] = STATE(7700), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(5112), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(5115), + [anon_sym_COLON_COLON] = ACTIONS(5118), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5121), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(5124), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5127), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(5130), + [sym_this] = ACTIONS(3276), + }, + [STATE(1069)] = { + [sym_expression] = STATE(7665), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(5133), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5136), + [anon_sym_COLON_COLON] = ACTIONS(5139), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5142), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(5145), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5148), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(5151), + [sym_this] = ACTIONS(4282), + }, + [STATE(1070)] = { + [sym_expression] = STATE(5969), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(5154), + [anon_sym_COLON_COLON] = ACTIONS(5157), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5037), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(5040), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_concept] = ACTIONS(5494), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5043), + [anon_sym_delete] = ACTIONS(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(5046), + [sym_this] = ACTIONS(2418), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(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(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), + [STATE(1071)] = { + [sym_expression] = STATE(5422), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(5160), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(5163), + [anon_sym_COLON_COLON] = ACTIONS(5166), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5037), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(5040), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [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(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_concept] = ACTIONS(5498), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5043), + [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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(5046), + [sym_this] = ACTIONS(2418), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [STATE(1072)] = { + [sym_expression] = STATE(6066), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(5169), + [anon_sym_COLON_COLON] = ACTIONS(5172), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5037), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(5040), + [anon_sym_asm] = ACTIONS(2410), + [anon_sym___asm__] = ACTIONS(2410), + [anon_sym___asm] = ACTIONS(2410), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5043), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(5046), + [sym_this] = ACTIONS(2418), + }, + [STATE(1073)] = { + [sym_expression] = STATE(7775), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(5175), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(5181), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(3129), + [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(3118), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3135), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(3138), + [sym_this] = ACTIONS(237), + }, + [STATE(1074)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8689), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym_COMMA] = ACTIONS(5186), + [anon_sym_BANG] = ACTIONS(5188), + [anon_sym_TILDE] = ACTIONS(5186), + [anon_sym_DASH] = ACTIONS(5188), + [anon_sym_PLUS] = ACTIONS(5188), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5188), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5186), + [anon_sym_PIPE] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym_AMP] = ACTIONS(5188), + [anon_sym_EQ_EQ] = ACTIONS(5186), + [anon_sym_BANG_EQ] = ACTIONS(5186), + [anon_sym_GT] = ACTIONS(5188), + [anon_sym_GT_EQ] = ACTIONS(5186), + [anon_sym_LT_EQ] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5188), + [anon_sym_LT_LT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5188), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), + [anon_sym_virtual] = ACTIONS(1856), [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_COLON_COLON] = ACTIONS(5190), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(5188), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), [anon_sym___inline] = ACTIONS(63), @@ -215964,7 +215343,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(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -215977,109 +215356,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(3466), + [sym_primitive_type] = ACTIONS(3536), [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_STAR_EQ] = ACTIONS(5186), + [anon_sym_SLASH_EQ] = ACTIONS(5186), + [anon_sym_PERCENT_EQ] = ACTIONS(5186), + [anon_sym_PLUS_EQ] = ACTIONS(5186), + [anon_sym_DASH_EQ] = ACTIONS(5186), + [anon_sym_LT_LT_EQ] = ACTIONS(5186), + [anon_sym_GT_GT_EQ] = ACTIONS(5186), + [anon_sym_AMP_EQ] = ACTIONS(5186), + [anon_sym_CARET_EQ] = ACTIONS(5186), + [anon_sym_PIPE_EQ] = ACTIONS(5186), + [anon_sym_and_eq] = ACTIONS(5188), + [anon_sym_or_eq] = ACTIONS(5188), + [anon_sym_xor_eq] = ACTIONS(5188), + [anon_sym_not] = ACTIONS(5188), + [anon_sym_compl] = ACTIONS(5188), + [anon_sym_LT_EQ_GT] = ACTIONS(5186), + [anon_sym_or] = ACTIONS(5188), + [anon_sym_and] = ACTIONS(5188), + [anon_sym_bitor] = ACTIONS(5188), + [anon_sym_xor] = ACTIONS(5188), + [anon_sym_bitand] = ACTIONS(5188), + [anon_sym_not_eq] = ACTIONS(5188), + [anon_sym_DASH_DASH] = ACTIONS(5186), + [anon_sym_PLUS_PLUS] = ACTIONS(5186), + [anon_sym_typename] = ACTIONS(5192), + [anon_sym_DASH_GT] = ACTIONS(5188), [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_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4825), - [anon_sym_concept] = ACTIONS(5482), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_delete] = ACTIONS(5196), + [anon_sym_co_await] = ACTIONS(5188), + [anon_sym_new] = ACTIONS(5196), + [anon_sym_DASH_GT_STAR] = ACTIONS(5186), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [anon_sym_LPAREN_RPAREN] = ACTIONS(5186), + [anon_sym_LBRACK_RBRACK] = ACTIONS(5186), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(5198), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [STATE(1075)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8689), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym_COMMA] = ACTIONS(5200), + [anon_sym_BANG] = ACTIONS(5202), + [anon_sym_TILDE] = ACTIONS(5200), + [anon_sym_DASH] = ACTIONS(5202), + [anon_sym_PLUS] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5202), + [anon_sym_SLASH] = ACTIONS(5202), + [anon_sym_PERCENT] = ACTIONS(5202), + [anon_sym_PIPE_PIPE] = ACTIONS(5200), + [anon_sym_AMP_AMP] = ACTIONS(5200), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_CARET] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5202), + [anon_sym_EQ_EQ] = ACTIONS(5200), + [anon_sym_BANG_EQ] = ACTIONS(5200), + [anon_sym_GT] = ACTIONS(5202), + [anon_sym_GT_EQ] = ACTIONS(5200), + [anon_sym_LT_EQ] = ACTIONS(5202), + [anon_sym_LT] = ACTIONS(5202), + [anon_sym_LT_LT] = ACTIONS(5202), + [anon_sym_GT_GT] = ACTIONS(5202), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(39), + [anon_sym_virtual] = ACTIONS(1856), [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_COLON_COLON] = ACTIONS(5190), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), [anon_sym_static] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(5202), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), [anon_sym___inline] = ACTIONS(63), @@ -216088,7 +215473,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(67), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -216101,9430 +215486,10556 @@ 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(3536), [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_STAR_EQ] = ACTIONS(5200), + [anon_sym_SLASH_EQ] = ACTIONS(5200), + [anon_sym_PERCENT_EQ] = ACTIONS(5200), + [anon_sym_PLUS_EQ] = ACTIONS(5200), + [anon_sym_DASH_EQ] = ACTIONS(5200), + [anon_sym_LT_LT_EQ] = ACTIONS(5200), + [anon_sym_GT_GT_EQ] = ACTIONS(5200), + [anon_sym_AMP_EQ] = ACTIONS(5200), + [anon_sym_CARET_EQ] = ACTIONS(5200), + [anon_sym_PIPE_EQ] = ACTIONS(5200), + [anon_sym_and_eq] = ACTIONS(5202), + [anon_sym_or_eq] = ACTIONS(5202), + [anon_sym_xor_eq] = ACTIONS(5202), + [anon_sym_not] = ACTIONS(5202), + [anon_sym_compl] = ACTIONS(5202), + [anon_sym_LT_EQ_GT] = ACTIONS(5200), + [anon_sym_or] = ACTIONS(5202), + [anon_sym_and] = ACTIONS(5202), + [anon_sym_bitor] = ACTIONS(5202), + [anon_sym_xor] = ACTIONS(5202), + [anon_sym_bitand] = ACTIONS(5202), + [anon_sym_not_eq] = ACTIONS(5202), + [anon_sym_DASH_DASH] = ACTIONS(5200), + [anon_sym_PLUS_PLUS] = ACTIONS(5200), + [anon_sym_typename] = ACTIONS(5192), + [anon_sym_DASH_GT] = ACTIONS(5202), [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_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5478), - [anon_sym_concept] = ACTIONS(253), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_delete] = ACTIONS(5204), + [anon_sym_co_await] = ACTIONS(5202), + [anon_sym_new] = ACTIONS(5204), + [anon_sym_DASH_GT_STAR] = ACTIONS(5200), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [anon_sym_LPAREN_RPAREN] = ACTIONS(5200), + [anon_sym_LBRACK_RBRACK] = ACTIONS(5200), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(5206), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(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(5486), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [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), + [STATE(1076)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7901), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5208), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5214), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5490), - [anon_sym_concept] = ACTIONS(355), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [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), + [STATE(1077)] = { + [sym_type_qualifier] = STATE(1079), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7903), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1079), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5224), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), - }, - [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [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), + [STATE(1078)] = { + [sym_type_qualifier] = STATE(1089), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7994), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1089), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5228), + [anon_sym_RBRACK] = ACTIONS(5230), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), - }, - [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), - }, - [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), - [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___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_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_explicit] = ACTIONS(5609), - [anon_sym_template] = ACTIONS(5597), - [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), - }, - [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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(5625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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_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_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(1079)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7907), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5232), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5234), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), - }, - [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), - }, - [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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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(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), + [STATE(1080)] = { + [sym_type_qualifier] = STATE(1083), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8003), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1083), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5238), + [anon_sym_RBRACK] = ACTIONS(5240), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1081)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7962), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5242), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5244), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), - [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5692), - [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), + [STATE(1082)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8110), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5248), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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(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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(1083)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8031), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5252), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(1084)] = { + [sym_type_qualifier] = STATE(1087), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8034), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1087), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5254), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5256), + [anon_sym_RBRACK] = ACTIONS(5258), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5702), - [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), + [STATE(1085)] = { + [sym_type_qualifier] = STATE(1088), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8037), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1088), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5260), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5262), + [anon_sym_RBRACK] = ACTIONS(5264), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(1086)] = { + [sym_type_qualifier] = STATE(1106), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8097), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(5266), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5272), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(1087)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8042), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5274), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5276), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1088)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8043), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5278), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5280), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1089)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7925), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5284), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(1090)] = { + [sym_type_qualifier] = STATE(1081), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7813), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1081), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5288), + [anon_sym_RBRACK] = ACTIONS(5290), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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), - [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(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), + [STATE(1091)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7805), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5292), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5294), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5710), - [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), + [STATE(1092)] = { + [sym_type_qualifier] = STATE(1076), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7897), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1076), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5296), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5298), + [anon_sym_RBRACK] = ACTIONS(5300), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(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), + [STATE(1093)] = { + [sym_type_qualifier] = STATE(1091), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8092), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5302), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5304), + [anon_sym_RBRACK] = ACTIONS(5306), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1094)] = { + [sym_type_qualifier] = STATE(1104), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7807), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1104), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5308), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5310), + [anon_sym_RBRACK] = ACTIONS(5312), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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), + [STATE(1095)] = { + [sym_type_qualifier] = STATE(1130), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7810), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1130), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5316), + [anon_sym_RBRACK] = ACTIONS(5318), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), - [sym_this] = ACTIONS(237), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5714), - [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), + [STATE(1096)] = { + [sym_type_qualifier] = STATE(1097), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8127), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1097), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5320), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5322), + [anon_sym_RBRACK] = ACTIONS(5324), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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(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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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(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), + [STATE(1097)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7792), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5326), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5328), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1098)] = { + [sym_type_qualifier] = STATE(1100), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7794), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1100), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5330), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5332), + [anon_sym_RBRACK] = ACTIONS(5334), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1099)] = { + [sym_type_qualifier] = STATE(1101), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7795), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1101), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5336), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5338), + [anon_sym_RBRACK] = ACTIONS(5340), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1100)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7796), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5342), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5344), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1101)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7797), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5346), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5348), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5720), - [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), + [STATE(1102)] = { + [sym_type_qualifier] = STATE(1120), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7916), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1120), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5350), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5352), + [anon_sym_RBRACK] = ACTIONS(5354), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5724), - [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), + [STATE(1103)] = { + [sym_type_qualifier] = STATE(1113), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8055), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1113), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5356), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5358), + [anon_sym_RBRACK] = ACTIONS(5360), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1104)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7817), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5362), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5364), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(1105)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8087), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5366), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5368), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(1106)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8049), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5370), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5372), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1107)] = { + [sym_type_qualifier] = STATE(1105), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8050), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1105), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5374), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5376), + [anon_sym_RBRACK] = ACTIONS(5378), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5728), - [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), + [STATE(1108)] = { + [sym_type_qualifier] = STATE(1109), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7816), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1109), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5380), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5382), + [anon_sym_RBRACK] = ACTIONS(5384), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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(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), + [STATE(1109)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7824), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5386), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5388), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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(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), + [STATE(1110)] = { + [sym_type_qualifier] = STATE(1111), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7825), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1111), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5392), + [anon_sym_RBRACK] = ACTIONS(5394), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1111)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7826), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5398), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5730), - [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), + [STATE(1112)] = { + [sym_type_qualifier] = STATE(1082), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8124), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5402), + [anon_sym_RBRACK] = ACTIONS(5404), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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), + [STATE(1113)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8100), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5406), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5408), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1114)] = { + [sym_type_qualifier] = STATE(1126), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8102), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1126), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5410), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5412), + [anon_sym_RBRACK] = ACTIONS(5414), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1115)] = { + [sym_type_qualifier] = STATE(1123), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8103), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1123), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5416), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5418), + [anon_sym_RBRACK] = ACTIONS(5420), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1116)] = { + [sym_type_qualifier] = STATE(1117), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7837), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1117), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5422), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5424), + [anon_sym_RBRACK] = ACTIONS(5426), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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(1163)] = { - [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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), - [anon_sym_DASH_GT] = ACTIONS(5682), - [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), + [STATE(1117)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7843), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5428), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5430), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_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), - [sym_this] = ACTIONS(237), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1118)] = { + [sym_type_qualifier] = STATE(1119), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7845), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1119), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5432), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5434), + [anon_sym_RBRACK] = ACTIONS(5436), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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), - [anon_sym_DASH_GT] = ACTIONS(5682), - [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), + [STATE(1119)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7848), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5438), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5440), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_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), - [sym_this] = ACTIONS(237), - }, - [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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(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), + [STATE(1120)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7917), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5442), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5444), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(1121)] = { + [sym_type_qualifier] = STATE(1125), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7918), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1125), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5446), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5448), + [anon_sym_RBRACK] = ACTIONS(5450), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1122)] = { + [sym_type_qualifier] = STATE(1106), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8097), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5268), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5270), + [anon_sym_RBRACK] = ACTIONS(5272), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5734), - [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), + [STATE(1123)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8121), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5452), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5454), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5736), - [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), + [STATE(1124)] = { + [sym_type_qualifier] = STATE(1127), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7873), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1127), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5456), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5458), + [anon_sym_RBRACK] = ACTIONS(5460), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(1125)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7920), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5462), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5464), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5742), - [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), + [STATE(1126)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(8119), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5466), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5468), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5746), - [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), + [STATE(1127)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7879), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5470), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5472), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5748), - [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), + [STATE(1128)] = { + [sym_type_qualifier] = STATE(1129), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7880), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(1129), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5474), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5476), + [anon_sym_RBRACK] = ACTIONS(5478), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5750), - [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), + [STATE(1129)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7881), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5480), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5482), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5752), - [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), + [STATE(1130)] = { + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [sym_expression] = STATE(7818), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5484), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(5210), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5212), + [anon_sym_RBRACK] = ACTIONS(5486), + [anon_sym_const] = ACTIONS(5216), + [anon_sym_constexpr] = ACTIONS(5216), + [anon_sym_volatile] = ACTIONS(5216), + [anon_sym_restrict] = ACTIONS(5216), + [anon_sym___restrict__] = ACTIONS(5216), + [anon_sym__Atomic] = ACTIONS(5216), + [anon_sym__Noreturn] = ACTIONS(5216), + [anon_sym_noreturn] = ACTIONS(5216), + [anon_sym__Nonnull] = ACTIONS(5216), + [anon_sym_mutable] = ACTIONS(5216), + [anon_sym_constinit] = ACTIONS(5216), + [anon_sym_consteval] = ACTIONS(5216), + [anon_sym_alignas] = ACTIONS(5218), + [anon_sym__Alignas] = ACTIONS(5218), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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(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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5754), - [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), + [STATE(1131)] = { + [sym_function_definition] = STATE(447), + [sym_declaration] = STATE(447), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9747), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(447), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2813), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(447), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2813), + [sym_operator_cast_definition] = STATE(447), + [sym_operator_cast_declaration] = STATE(447), + [sym_constructor_or_destructor_definition] = STATE(447), + [sym_constructor_or_destructor_declaration] = STATE(447), + [sym_friend_declaration] = STATE(447), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(447), + [sym_concept_definition] = STATE(447), + [sym_requires_clause] = STATE(1147), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2813), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5490), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(5494), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5496), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5498), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_requires] = ACTIONS(5500), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5756), - [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), + [STATE(1132)] = { + [sym_function_definition] = STATE(720), + [sym_declaration] = STATE(720), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7241), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3132), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9821), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4959), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(720), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2717), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(720), + [sym_operator_cast] = STATE(10336), + [sym__constructor_specifiers] = STATE(2717), + [sym_operator_cast_definition] = STATE(720), + [sym_operator_cast_declaration] = STATE(720), + [sym_constructor_or_destructor_definition] = STATE(720), + [sym_constructor_or_destructor_declaration] = STATE(720), + [sym_friend_declaration] = STATE(720), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(720), + [sym_concept_definition] = STATE(720), + [sym_requires_clause] = STATE(1143), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10336), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2717), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5502), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(5504), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5506), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5508), + [anon_sym_concept] = ACTIONS(1159), + [anon_sym_requires] = ACTIONS(5500), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5758), - [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), + [STATE(1133)] = { + [sym_function_definition] = STATE(3566), + [sym_declaration] = STATE(3566), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7200), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3135), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9792), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5001), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(3566), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2816), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(3566), + [sym_operator_cast] = STATE(10372), + [sym__constructor_specifiers] = STATE(2816), + [sym_operator_cast_definition] = STATE(3566), + [sym_operator_cast_declaration] = STATE(3566), + [sym_constructor_or_destructor_definition] = STATE(3566), + [sym_constructor_or_destructor_declaration] = STATE(3566), + [sym_friend_declaration] = STATE(3566), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(3566), + [sym_concept_definition] = STATE(3566), + [sym_requires_clause] = STATE(1141), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10372), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2816), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5510), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4746), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4752), + [anon_sym_concept] = ACTIONS(5512), + [anon_sym_requires] = ACTIONS(5500), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5760), - [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), + [STATE(1134)] = { + [sym_function_definition] = STATE(925), + [sym_declaration] = STATE(925), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7235), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3077), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9753), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4972), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(925), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2787), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(925), + [sym_operator_cast] = STATE(10373), + [sym__constructor_specifiers] = STATE(2787), + [sym_operator_cast_definition] = STATE(925), + [sym_operator_cast_declaration] = STATE(925), + [sym_constructor_or_destructor_definition] = STATE(925), + [sym_constructor_or_destructor_declaration] = STATE(925), + [sym_friend_declaration] = STATE(925), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(925), + [sym_concept_definition] = STATE(925), + [sym_requires_clause] = STATE(1142), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10373), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2787), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5514), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(5516), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5518), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5520), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(5500), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5762), - [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), + [STATE(1135)] = { + [sym_function_definition] = STATE(3244), + [sym_declaration] = STATE(3244), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7218), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3134), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4993), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(3244), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(3244), + [sym_operator_cast] = STATE(10361), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(3244), + [sym_operator_cast_declaration] = STATE(3244), + [sym_constructor_or_destructor_definition] = STATE(3244), + [sym_constructor_or_destructor_declaration] = STATE(3244), + [sym_friend_declaration] = STATE(3244), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(3244), + [sym_concept_definition] = STATE(3244), + [sym_requires_clause] = STATE(1146), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5522), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_concept] = ACTIONS(5524), + [anon_sym_requires] = ACTIONS(5500), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5764), - [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), + [STATE(1136)] = { + [sym_function_definition] = STATE(882), + [sym_declaration] = STATE(882), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9762), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(882), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2810), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(882), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2810), + [sym_operator_cast_definition] = STATE(882), + [sym_operator_cast_declaration] = STATE(882), + [sym_constructor_or_destructor_definition] = STATE(882), + [sym_constructor_or_destructor_declaration] = STATE(882), + [sym_friend_declaration] = STATE(882), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(882), + [sym_concept_definition] = STATE(882), + [sym_requires_clause] = STATE(1145), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2810), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5526), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(5528), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5530), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5532), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_requires] = ACTIONS(5500), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5766), - [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), + [STATE(1137)] = { + [sym_function_definition] = STATE(3631), + [sym_declaration] = STATE(3631), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7211), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3133), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4984), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(3631), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(3631), + [sym_operator_cast] = STATE(10290), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(3631), + [sym_operator_cast_declaration] = STATE(3631), + [sym_constructor_or_destructor_definition] = STATE(3631), + [sym_constructor_or_destructor_declaration] = STATE(3631), + [sym_friend_declaration] = STATE(3631), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(3631), + [sym_concept_definition] = STATE(3631), + [sym_requires_clause] = STATE(1140), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5534), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_concept] = ACTIONS(5536), + [anon_sym_requires] = ACTIONS(5500), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5768), - [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), + [STATE(1138)] = { + [sym_expression] = STATE(5634), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(5058), + [anon_sym_LPAREN2] = ACTIONS(5538), + [anon_sym_BANG] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(5541), + [anon_sym_DASH] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(5544), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(5547), + [anon_sym___extension__] = ACTIONS(5061), + [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym___based] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3118), + [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), + [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(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), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5073), + [anon_sym_operator] = ACTIONS(3118), + [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(5076), + [sym_this] = ACTIONS(2276), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5770), - [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), + [STATE(1139)] = { + [sym_expression] = STATE(5170), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(5028), + [anon_sym_LPAREN2] = ACTIONS(5550), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(5553), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3110), + [anon_sym___extension__] = ACTIONS(5079), + [anon_sym_COLON_COLON] = ACTIONS(5082), + [anon_sym___based] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5043), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(5046), + [sym_this] = ACTIONS(2418), + }, + [STATE(1140)] = { + [sym_function_definition] = STATE(3660), + [sym_declaration] = STATE(3660), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7211), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3133), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9797), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4984), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(3660), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2797), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(3660), + [sym_operator_cast] = STATE(10290), + [sym__constructor_specifiers] = STATE(2797), + [sym_operator_cast_definition] = STATE(3660), + [sym_operator_cast_declaration] = STATE(3660), + [sym_constructor_or_destructor_definition] = STATE(3660), + [sym_constructor_or_destructor_declaration] = STATE(3660), + [sym_friend_declaration] = STATE(3660), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(3660), + [sym_concept_definition] = STATE(3660), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10290), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2797), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5534), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4710), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4714), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4716), + [anon_sym_concept] = ACTIONS(5536), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(1141)] = { + [sym_function_definition] = STATE(3753), + [sym_declaration] = STATE(3753), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7200), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3135), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9792), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5001), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(3753), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2816), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(3753), + [sym_operator_cast] = STATE(10372), + [sym__constructor_specifiers] = STATE(2816), + [sym_operator_cast_definition] = STATE(3753), + [sym_operator_cast_declaration] = STATE(3753), + [sym_constructor_or_destructor_definition] = STATE(3753), + [sym_constructor_or_destructor_declaration] = STATE(3753), + [sym_friend_declaration] = STATE(3753), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(3753), + [sym_concept_definition] = STATE(3753), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10372), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2816), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5510), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(4746), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(4750), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4752), + [anon_sym_concept] = ACTIONS(5512), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(1142)] = { + [sym_function_definition] = STATE(1024), + [sym_declaration] = STATE(1024), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7235), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3077), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9753), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4972), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(1024), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2787), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(1024), + [sym_operator_cast] = STATE(10373), + [sym__constructor_specifiers] = STATE(2787), + [sym_operator_cast_definition] = STATE(1024), + [sym_operator_cast_declaration] = STATE(1024), + [sym_constructor_or_destructor_definition] = STATE(1024), + [sym_constructor_or_destructor_declaration] = STATE(1024), + [sym_friend_declaration] = STATE(1024), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(1024), + [sym_concept_definition] = STATE(1024), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10373), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2787), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5514), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(5516), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5518), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5520), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(1143)] = { + [sym_function_definition] = STATE(730), + [sym_declaration] = STATE(730), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7241), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3132), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9821), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4959), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(730), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2717), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(730), + [sym_operator_cast] = STATE(10336), + [sym__constructor_specifiers] = STATE(2717), + [sym_operator_cast_definition] = STATE(730), + [sym_operator_cast_declaration] = STATE(730), + [sym_constructor_or_destructor_definition] = STATE(730), + [sym_constructor_or_destructor_declaration] = STATE(730), + [sym_friend_declaration] = STATE(730), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(730), + [sym_concept_definition] = STATE(730), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10336), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2717), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5502), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(5504), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5506), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5508), + [anon_sym_concept] = ACTIONS(1159), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(1144)] = { + [sym_expression] = STATE(7665), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(5133), + [anon_sym_LPAREN2] = ACTIONS(5556), + [anon_sym_BANG] = ACTIONS(5559), + [anon_sym_TILDE] = ACTIONS(5559), + [anon_sym_DASH] = ACTIONS(5562), + [anon_sym_PLUS] = ACTIONS(5562), + [anon_sym_STAR] = ACTIONS(5565), + [anon_sym_AMP] = ACTIONS(5565), + [anon_sym___extension__] = ACTIONS(5136), + [anon_sym_COLON_COLON] = ACTIONS(5139), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(5142), + [anon_sym_not] = ACTIONS(5562), + [anon_sym_compl] = ACTIONS(5562), + [anon_sym_DASH_DASH] = ACTIONS(5568), + [anon_sym_PLUS_PLUS] = ACTIONS(5568), + [anon_sym_sizeof] = ACTIONS(5571), + [anon_sym___alignof__] = ACTIONS(5574), + [anon_sym___alignof] = ACTIONS(5574), + [anon_sym__alignof] = ACTIONS(5574), + [anon_sym_alignof] = ACTIONS(5574), + [anon_sym__Alignof] = ACTIONS(5574), + [anon_sym_offsetof] = ACTIONS(5577), + [anon_sym__Generic] = ACTIONS(5580), + [anon_sym_typename] = ACTIONS(5145), + [anon_sym_asm] = ACTIONS(5583), + [anon_sym___asm__] = ACTIONS(5583), + [anon_sym___asm] = ACTIONS(5583), + [sym_number_literal] = ACTIONS(5586), + [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(5592), + [anon_sym_u_DQUOTE] = ACTIONS(5592), + [anon_sym_U_DQUOTE] = ACTIONS(5592), + [anon_sym_u8_DQUOTE] = ACTIONS(5592), + [anon_sym_DQUOTE] = ACTIONS(5592), + [sym_true] = ACTIONS(5595), + [sym_false] = ACTIONS(5595), + [anon_sym_NULL] = ACTIONS(5598), + [anon_sym_nullptr] = ACTIONS(5598), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(5148), + [anon_sym_delete] = ACTIONS(5601), + [anon_sym_R_DQUOTE] = ACTIONS(5604), + [anon_sym_LR_DQUOTE] = ACTIONS(5604), + [anon_sym_uR_DQUOTE] = ACTIONS(5604), + [anon_sym_UR_DQUOTE] = ACTIONS(5604), + [anon_sym_u8R_DQUOTE] = ACTIONS(5604), + [anon_sym_co_await] = ACTIONS(5607), + [anon_sym_new] = ACTIONS(5610), + [anon_sym_requires] = ACTIONS(5613), + [anon_sym_CARET_CARET] = ACTIONS(5616), + [anon_sym_LBRACK_COLON] = ACTIONS(5151), + [sym_this] = ACTIONS(5595), + }, + [STATE(1145)] = { + [sym_function_definition] = STATE(810), + [sym_declaration] = STATE(810), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7227), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3128), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9762), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(5022), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(810), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2810), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(810), + [sym_operator_cast] = STATE(10388), + [sym__constructor_specifiers] = STATE(2810), + [sym_operator_cast_definition] = STATE(810), + [sym_operator_cast_declaration] = STATE(810), + [sym_constructor_or_destructor_definition] = STATE(810), + [sym_constructor_or_destructor_declaration] = STATE(810), + [sym_friend_declaration] = STATE(810), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(810), + [sym_concept_definition] = STATE(810), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10388), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2810), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5526), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(5528), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5530), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5532), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(1146)] = { + [sym_function_definition] = STATE(3223), + [sym_declaration] = STATE(3223), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7218), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3134), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9754), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4993), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(3223), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2815), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(3223), + [sym_operator_cast] = STATE(10361), + [sym__constructor_specifiers] = STATE(2815), + [sym_operator_cast_definition] = STATE(3223), + [sym_operator_cast_declaration] = STATE(3223), + [sym_constructor_or_destructor_definition] = STATE(3223), + [sym_constructor_or_destructor_declaration] = STATE(3223), + [sym_friend_declaration] = STATE(3223), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(3223), + [sym_concept_definition] = STATE(3223), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10361), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2815), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5522), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(3532), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(3550), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_concept] = ACTIONS(5524), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(1147)] = { + [sym_function_definition] = STATE(478), + [sym_declaration] = STATE(478), + [sym__declaration_modifiers] = STATE(5385), + [sym__declaration_specifiers] = STATE(7220), + [sym_attribute_specifier] = STATE(5385), + [sym_attribute_declaration] = STATE(5385), + [sym_ms_declspec_modifier] = STATE(5385), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(3131), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9747), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5385), + [sym_type_qualifier] = STATE(5385), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4949), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym__empty_declaration] = STATE(478), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_explicit_function_specifier] = STATE(2813), + [sym_dependent_type] = STATE(4346), + [sym_template_declaration] = STATE(478), + [sym_operator_cast] = STATE(10319), + [sym__constructor_specifiers] = STATE(2813), + [sym_operator_cast_definition] = STATE(478), + [sym_operator_cast_declaration] = STATE(478), + [sym_constructor_or_destructor_definition] = STATE(478), + [sym_constructor_or_destructor_declaration] = STATE(478), + [sym_friend_declaration] = STATE(478), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_alias_declaration] = STATE(478), + [sym_concept_definition] = STATE(478), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8673), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_qualified_operator_cast_identifier] = STATE(10319), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [aux_sym_operator_cast_definition_repeat1] = STATE(2813), + [sym_identifier] = ACTIONS(5488), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [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(5490), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(55), + [anon_sym___clrcall] = ACTIONS(55), + [anon_sym___stdcall] = ACTIONS(55), + [anon_sym___fastcall] = ACTIONS(55), + [anon_sym___thiscall] = ACTIONS(55), + [anon_sym___vectorcall] = ACTIONS(55), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3530), + [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(5494), + [anon_sym_volatile] = ACTIONS(67), + [anon_sym_restrict] = ACTIONS(67), + [anon_sym___restrict__] = ACTIONS(67), + [anon_sym__Atomic] = ACTIONS(67), + [anon_sym__Noreturn] = ACTIONS(67), + [anon_sym_noreturn] = ACTIONS(67), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5496), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(5498), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(1148)] = { + [sym_identifier] = ACTIONS(5619), + [anon_sym_LPAREN2] = ACTIONS(5621), + [anon_sym_BANG] = ACTIONS(5621), + [anon_sym_TILDE] = ACTIONS(5621), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_AMP_AMP] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5619), + [anon_sym_virtual] = ACTIONS(5619), + [anon_sym_extern] = ACTIONS(5619), + [anon_sym___attribute__] = ACTIONS(5619), + [anon_sym___attribute] = ACTIONS(5619), + [anon_sym_using] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5621), + [anon_sym___declspec] = ACTIONS(5619), + [anon_sym___based] = ACTIONS(5619), + [anon_sym_LBRACE] = ACTIONS(5621), + [anon_sym_signed] = ACTIONS(5619), + [anon_sym_unsigned] = ACTIONS(5619), + [anon_sym_long] = ACTIONS(5619), + [anon_sym_short] = ACTIONS(5619), + [anon_sym_LBRACK] = ACTIONS(5619), + [anon_sym_static] = ACTIONS(5619), + [anon_sym_EQ] = ACTIONS(5621), + [anon_sym_register] = ACTIONS(5619), + [anon_sym_inline] = ACTIONS(5619), + [anon_sym___inline] = ACTIONS(5619), + [anon_sym___inline__] = ACTIONS(5619), + [anon_sym___forceinline] = ACTIONS(5619), + [anon_sym_thread_local] = ACTIONS(5619), + [anon_sym___thread] = ACTIONS(5619), + [anon_sym_const] = ACTIONS(5619), + [anon_sym_constexpr] = ACTIONS(5619), + [anon_sym_volatile] = ACTIONS(5619), + [anon_sym_restrict] = ACTIONS(5619), + [anon_sym___restrict__] = ACTIONS(5619), + [anon_sym__Atomic] = ACTIONS(5619), + [anon_sym__Noreturn] = ACTIONS(5619), + [anon_sym_noreturn] = ACTIONS(5619), + [anon_sym__Nonnull] = ACTIONS(5619), + [anon_sym_mutable] = ACTIONS(5619), + [anon_sym_constinit] = ACTIONS(5619), + [anon_sym_consteval] = ACTIONS(5619), + [anon_sym_alignas] = ACTIONS(5619), + [anon_sym__Alignas] = ACTIONS(5619), + [sym_primitive_type] = ACTIONS(5619), + [anon_sym_enum] = ACTIONS(5619), + [anon_sym_class] = ACTIONS(5619), + [anon_sym_struct] = ACTIONS(5619), + [anon_sym_union] = ACTIONS(5619), + [anon_sym_if] = ACTIONS(5619), + [anon_sym_switch] = ACTIONS(5619), + [anon_sym_case] = ACTIONS(5619), + [anon_sym_default] = ACTIONS(5619), + [anon_sym_while] = ACTIONS(5619), + [anon_sym_do] = ACTIONS(5619), + [anon_sym_for] = ACTIONS(5619), + [anon_sym_return] = ACTIONS(5619), + [anon_sym_break] = ACTIONS(5619), + [anon_sym_continue] = ACTIONS(5619), + [anon_sym_goto] = ACTIONS(5619), + [anon_sym___try] = ACTIONS(5619), + [anon_sym___leave] = ACTIONS(5619), + [anon_sym_not] = ACTIONS(5619), + [anon_sym_compl] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5621), + [anon_sym_PLUS_PLUS] = ACTIONS(5621), + [anon_sym_sizeof] = ACTIONS(5619), + [anon_sym___alignof__] = ACTIONS(5619), + [anon_sym___alignof] = ACTIONS(5619), + [anon_sym__alignof] = ACTIONS(5619), + [anon_sym_alignof] = ACTIONS(5619), + [anon_sym__Alignof] = ACTIONS(5619), + [anon_sym_offsetof] = ACTIONS(5619), + [anon_sym__Generic] = ACTIONS(5619), + [anon_sym_typename] = ACTIONS(5619), + [anon_sym_asm] = ACTIONS(5619), + [anon_sym___asm__] = ACTIONS(5619), + [anon_sym___asm] = ACTIONS(5619), + [sym_number_literal] = ACTIONS(5621), + [anon_sym_L_SQUOTE] = ACTIONS(5621), + [anon_sym_u_SQUOTE] = ACTIONS(5621), + [anon_sym_U_SQUOTE] = ACTIONS(5621), + [anon_sym_u8_SQUOTE] = ACTIONS(5621), + [anon_sym_SQUOTE] = ACTIONS(5621), + [anon_sym_L_DQUOTE] = ACTIONS(5621), + [anon_sym_u_DQUOTE] = ACTIONS(5621), + [anon_sym_U_DQUOTE] = ACTIONS(5621), + [anon_sym_u8_DQUOTE] = ACTIONS(5621), + [anon_sym_DQUOTE] = ACTIONS(5621), + [sym_true] = ACTIONS(5619), + [sym_false] = ACTIONS(5619), + [anon_sym_NULL] = ACTIONS(5619), + [anon_sym_nullptr] = ACTIONS(5619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5619), + [anon_sym_decltype] = ACTIONS(5619), + [anon_sym_explicit] = ACTIONS(5619), + [anon_sym_template] = ACTIONS(5619), + [anon_sym_operator] = ACTIONS(5619), + [anon_sym_try] = ACTIONS(5619), + [anon_sym_delete] = ACTIONS(5619), + [anon_sym_throw] = ACTIONS(5619), + [anon_sym_co_return] = ACTIONS(5619), + [anon_sym_co_yield] = ACTIONS(5619), + [anon_sym_R_DQUOTE] = ACTIONS(5621), + [anon_sym_LR_DQUOTE] = ACTIONS(5621), + [anon_sym_uR_DQUOTE] = ACTIONS(5621), + [anon_sym_UR_DQUOTE] = ACTIONS(5621), + [anon_sym_u8R_DQUOTE] = ACTIONS(5621), + [anon_sym_co_await] = ACTIONS(5619), + [anon_sym_new] = ACTIONS(5619), + [anon_sym_requires] = ACTIONS(5619), + [anon_sym_CARET_CARET] = ACTIONS(5621), + [anon_sym_LBRACK_COLON] = ACTIONS(5621), + [sym_this] = ACTIONS(5619), + }, + [STATE(1149)] = { + [sym_identifier] = ACTIONS(5623), + [anon_sym_LPAREN2] = ACTIONS(5625), + [anon_sym_BANG] = ACTIONS(5625), + [anon_sym_TILDE] = ACTIONS(5625), + [anon_sym_DASH] = ACTIONS(5623), + [anon_sym_PLUS] = ACTIONS(5623), + [anon_sym_STAR] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5625), + [anon_sym_AMP] = ACTIONS(5623), + [anon_sym_SEMI] = ACTIONS(5625), + [anon_sym___extension__] = ACTIONS(5623), + [anon_sym_virtual] = ACTIONS(5623), + [anon_sym_extern] = ACTIONS(5623), + [anon_sym___attribute__] = ACTIONS(5623), + [anon_sym___attribute] = ACTIONS(5623), + [anon_sym_using] = ACTIONS(5623), + [anon_sym_COLON_COLON] = ACTIONS(5625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5625), + [anon_sym___declspec] = ACTIONS(5623), + [anon_sym___based] = ACTIONS(5623), + [anon_sym_LBRACE] = ACTIONS(5625), + [anon_sym_signed] = ACTIONS(5623), + [anon_sym_unsigned] = ACTIONS(5623), + [anon_sym_long] = ACTIONS(5623), + [anon_sym_short] = ACTIONS(5623), + [anon_sym_LBRACK] = ACTIONS(5623), + [anon_sym_static] = ACTIONS(5623), + [anon_sym_EQ] = ACTIONS(5625), + [anon_sym_register] = ACTIONS(5623), + [anon_sym_inline] = ACTIONS(5623), + [anon_sym___inline] = ACTIONS(5623), + [anon_sym___inline__] = ACTIONS(5623), + [anon_sym___forceinline] = ACTIONS(5623), + [anon_sym_thread_local] = ACTIONS(5623), + [anon_sym___thread] = ACTIONS(5623), + [anon_sym_const] = ACTIONS(5623), + [anon_sym_constexpr] = ACTIONS(5623), + [anon_sym_volatile] = ACTIONS(5623), + [anon_sym_restrict] = ACTIONS(5623), + [anon_sym___restrict__] = ACTIONS(5623), + [anon_sym__Atomic] = ACTIONS(5623), + [anon_sym__Noreturn] = ACTIONS(5623), + [anon_sym_noreturn] = ACTIONS(5623), + [anon_sym__Nonnull] = ACTIONS(5623), + [anon_sym_mutable] = ACTIONS(5623), + [anon_sym_constinit] = ACTIONS(5623), + [anon_sym_consteval] = ACTIONS(5623), + [anon_sym_alignas] = ACTIONS(5623), + [anon_sym__Alignas] = ACTIONS(5623), + [sym_primitive_type] = ACTIONS(5623), + [anon_sym_enum] = ACTIONS(5623), + [anon_sym_class] = ACTIONS(5623), + [anon_sym_struct] = ACTIONS(5623), + [anon_sym_union] = ACTIONS(5623), + [anon_sym_if] = ACTIONS(5623), + [anon_sym_switch] = ACTIONS(5623), + [anon_sym_case] = ACTIONS(5623), + [anon_sym_default] = ACTIONS(5623), + [anon_sym_while] = ACTIONS(5623), + [anon_sym_do] = ACTIONS(5623), + [anon_sym_for] = ACTIONS(5623), + [anon_sym_return] = ACTIONS(5623), + [anon_sym_break] = ACTIONS(5623), + [anon_sym_continue] = ACTIONS(5623), + [anon_sym_goto] = ACTIONS(5623), + [anon_sym___try] = ACTIONS(5623), + [anon_sym___leave] = ACTIONS(5623), + [anon_sym_not] = ACTIONS(5623), + [anon_sym_compl] = ACTIONS(5623), + [anon_sym_DASH_DASH] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_sizeof] = ACTIONS(5623), + [anon_sym___alignof__] = ACTIONS(5623), + [anon_sym___alignof] = ACTIONS(5623), + [anon_sym__alignof] = ACTIONS(5623), + [anon_sym_alignof] = ACTIONS(5623), + [anon_sym__Alignof] = ACTIONS(5623), + [anon_sym_offsetof] = ACTIONS(5623), + [anon_sym__Generic] = ACTIONS(5623), + [anon_sym_typename] = ACTIONS(5623), + [anon_sym_asm] = ACTIONS(5623), + [anon_sym___asm__] = ACTIONS(5623), + [anon_sym___asm] = ACTIONS(5623), + [sym_number_literal] = ACTIONS(5625), + [anon_sym_L_SQUOTE] = ACTIONS(5625), + [anon_sym_u_SQUOTE] = ACTIONS(5625), + [anon_sym_U_SQUOTE] = ACTIONS(5625), + [anon_sym_u8_SQUOTE] = ACTIONS(5625), + [anon_sym_SQUOTE] = ACTIONS(5625), + [anon_sym_L_DQUOTE] = ACTIONS(5625), + [anon_sym_u_DQUOTE] = ACTIONS(5625), + [anon_sym_U_DQUOTE] = ACTIONS(5625), + [anon_sym_u8_DQUOTE] = ACTIONS(5625), + [anon_sym_DQUOTE] = ACTIONS(5625), + [sym_true] = ACTIONS(5623), + [sym_false] = ACTIONS(5623), + [anon_sym_NULL] = ACTIONS(5623), + [anon_sym_nullptr] = ACTIONS(5623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5623), + [anon_sym_decltype] = ACTIONS(5623), + [anon_sym_explicit] = ACTIONS(5623), + [anon_sym_template] = ACTIONS(5623), + [anon_sym_operator] = ACTIONS(5623), + [anon_sym_try] = ACTIONS(5623), + [anon_sym_delete] = ACTIONS(5623), + [anon_sym_throw] = ACTIONS(5623), + [anon_sym_co_return] = ACTIONS(5623), + [anon_sym_co_yield] = ACTIONS(5623), + [anon_sym_R_DQUOTE] = ACTIONS(5625), + [anon_sym_LR_DQUOTE] = ACTIONS(5625), + [anon_sym_uR_DQUOTE] = ACTIONS(5625), + [anon_sym_UR_DQUOTE] = ACTIONS(5625), + [anon_sym_u8R_DQUOTE] = ACTIONS(5625), + [anon_sym_co_await] = ACTIONS(5623), + [anon_sym_new] = ACTIONS(5623), + [anon_sym_requires] = ACTIONS(5623), + [anon_sym_CARET_CARET] = ACTIONS(5625), + [anon_sym_LBRACK_COLON] = ACTIONS(5625), + [sym_this] = ACTIONS(5623), + }, + [STATE(1150)] = { + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(9941), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_expression] = STATE(4170), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6051), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8896), + [sym_qualified_identifier] = STATE(6053), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(3364), + [anon_sym_LPAREN2] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(27), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(61), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1151)] = { + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(9941), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_expression] = STATE(5632), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(5900), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8888), + [sym_qualified_identifier] = STATE(5924), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_operator_name] = STATE(9532), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(3218), + [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(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1152)] = { + [sym_identifier] = ACTIONS(5627), + [anon_sym_LPAREN2] = ACTIONS(5630), + [anon_sym_BANG] = ACTIONS(5633), + [anon_sym_TILDE] = ACTIONS(5630), + [anon_sym_DASH] = ACTIONS(5635), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_STAR] = ACTIONS(5630), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_AMP] = ACTIONS(5627), + [anon_sym_SEMI] = ACTIONS(5633), + [anon_sym___extension__] = ACTIONS(5627), + [anon_sym_virtual] = ACTIONS(5639), + [anon_sym_extern] = ACTIONS(5639), + [anon_sym___attribute__] = ACTIONS(5639), + [anon_sym___attribute] = ACTIONS(5639), + [anon_sym_using] = ACTIONS(5635), + [anon_sym_COLON_COLON] = ACTIONS(5630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5630), + [anon_sym___declspec] = ACTIONS(5639), + [anon_sym___based] = ACTIONS(5639), + [anon_sym_LBRACE] = ACTIONS(5633), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5627), + [anon_sym_static] = ACTIONS(5639), + [anon_sym_register] = ACTIONS(5639), + [anon_sym_inline] = ACTIONS(5639), + [anon_sym___inline] = ACTIONS(5639), + [anon_sym___inline__] = ACTIONS(5639), + [anon_sym___forceinline] = ACTIONS(5639), + [anon_sym_thread_local] = ACTIONS(5639), + [anon_sym___thread] = ACTIONS(5639), + [anon_sym_const] = ACTIONS(5639), + [anon_sym_constexpr] = ACTIONS(5639), + [anon_sym_volatile] = ACTIONS(5639), + [anon_sym_restrict] = ACTIONS(5639), + [anon_sym___restrict__] = ACTIONS(5639), + [anon_sym__Atomic] = ACTIONS(5639), + [anon_sym__Noreturn] = ACTIONS(5639), + [anon_sym_noreturn] = ACTIONS(5639), + [anon_sym__Nonnull] = ACTIONS(5639), + [anon_sym_mutable] = ACTIONS(5639), + [anon_sym_constinit] = ACTIONS(5639), + [anon_sym_consteval] = ACTIONS(5639), + [anon_sym_alignas] = ACTIONS(5639), + [anon_sym__Alignas] = ACTIONS(5639), + [sym_primitive_type] = ACTIONS(5627), + [anon_sym_enum] = ACTIONS(5639), + [anon_sym_class] = ACTIONS(5639), + [anon_sym_struct] = ACTIONS(5639), + [anon_sym_union] = ACTIONS(5639), + [anon_sym_if] = ACTIONS(5635), + [anon_sym_switch] = ACTIONS(5635), + [anon_sym_case] = ACTIONS(5635), + [anon_sym_default] = ACTIONS(5635), + [anon_sym_while] = ACTIONS(5635), + [anon_sym_do] = ACTIONS(5635), + [anon_sym_for] = ACTIONS(5635), + [anon_sym_return] = ACTIONS(5635), + [anon_sym_break] = ACTIONS(5635), + [anon_sym_continue] = ACTIONS(5635), + [anon_sym_goto] = ACTIONS(5635), + [anon_sym___try] = ACTIONS(5635), + [anon_sym___leave] = ACTIONS(5635), + [anon_sym_not] = ACTIONS(5635), + [anon_sym_compl] = ACTIONS(5635), + [anon_sym_DASH_DASH] = ACTIONS(5633), + [anon_sym_PLUS_PLUS] = ACTIONS(5633), + [anon_sym_sizeof] = ACTIONS(5635), + [anon_sym___alignof__] = ACTIONS(5635), + [anon_sym___alignof] = ACTIONS(5635), + [anon_sym__alignof] = ACTIONS(5635), + [anon_sym_alignof] = ACTIONS(5635), + [anon_sym__Alignof] = ACTIONS(5635), + [anon_sym_offsetof] = ACTIONS(5635), + [anon_sym__Generic] = ACTIONS(5635), + [anon_sym_typename] = ACTIONS(5627), + [anon_sym_asm] = ACTIONS(5635), + [anon_sym___asm__] = ACTIONS(5635), + [anon_sym___asm] = ACTIONS(5635), + [sym_number_literal] = ACTIONS(5633), + [anon_sym_L_SQUOTE] = ACTIONS(5633), + [anon_sym_u_SQUOTE] = ACTIONS(5633), + [anon_sym_U_SQUOTE] = ACTIONS(5633), + [anon_sym_u8_SQUOTE] = ACTIONS(5633), + [anon_sym_SQUOTE] = ACTIONS(5633), + [anon_sym_L_DQUOTE] = ACTIONS(5633), + [anon_sym_u_DQUOTE] = ACTIONS(5633), + [anon_sym_U_DQUOTE] = ACTIONS(5633), + [anon_sym_u8_DQUOTE] = ACTIONS(5633), + [anon_sym_DQUOTE] = ACTIONS(5633), + [sym_true] = ACTIONS(5635), + [sym_false] = ACTIONS(5635), + [anon_sym_NULL] = ACTIONS(5635), + [anon_sym_nullptr] = ACTIONS(5635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5639), + [anon_sym_decltype] = ACTIONS(5627), + [anon_sym_explicit] = ACTIONS(5639), + [anon_sym_template] = ACTIONS(5627), + [anon_sym_operator] = ACTIONS(5639), + [anon_sym_try] = ACTIONS(5635), + [anon_sym_delete] = ACTIONS(5635), + [anon_sym_throw] = ACTIONS(5635), + [anon_sym_co_return] = ACTIONS(5635), + [anon_sym_co_yield] = ACTIONS(5635), + [anon_sym_R_DQUOTE] = ACTIONS(5633), + [anon_sym_LR_DQUOTE] = ACTIONS(5633), + [anon_sym_uR_DQUOTE] = ACTIONS(5633), + [anon_sym_UR_DQUOTE] = ACTIONS(5633), + [anon_sym_u8R_DQUOTE] = ACTIONS(5633), + [anon_sym_co_await] = ACTIONS(5635), + [anon_sym_new] = ACTIONS(5635), + [anon_sym_requires] = ACTIONS(5635), + [anon_sym_CARET_CARET] = ACTIONS(5633), + [anon_sym_LBRACK_COLON] = ACTIONS(5630), + [sym_this] = ACTIONS(5635), + }, + [STATE(1153)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_based_modifier] = STATE(11956), + [sym_ms_call_modifier] = STATE(7078), + [sym__declarator] = STATE(10175), + [sym__abstract_declarator] = STATE(10509), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11014), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11014), + [sym_optional_parameter_declaration] = STATE(11014), + [sym_variadic_parameter_declaration] = STATE(11014), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8674), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_AMP_AMP] = ACTIONS(5649), + [anon_sym_AMP] = ACTIONS(5651), + [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(5653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [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_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(5655), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), + }, + [STATE(1154)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2394), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5665), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5682), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5686), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5693), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1155)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2398), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5705), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1156)] = { + [sym_catch_clause] = STATE(1157), + [aux_sym_constructor_try_statement_repeat1] = STATE(1157), + [sym_identifier] = ACTIONS(3163), + [anon_sym_LPAREN2] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3163), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_SEMI] = ACTIONS(3165), + [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(3165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3165), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym_LBRACE] = ACTIONS(3165), + [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(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3165), + [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(3165), + [anon_sym_L_SQUOTE] = ACTIONS(3165), + [anon_sym_u_SQUOTE] = ACTIONS(3165), + [anon_sym_U_SQUOTE] = ACTIONS(3165), + [anon_sym_u8_SQUOTE] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3165), + [anon_sym_L_DQUOTE] = ACTIONS(3165), + [anon_sym_u_DQUOTE] = ACTIONS(3165), + [anon_sym_U_DQUOTE] = ACTIONS(3165), + [anon_sym_u8_DQUOTE] = ACTIONS(3165), + [anon_sym_DQUOTE] = ACTIONS(3165), + [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(5707), + [anon_sym_R_DQUOTE] = ACTIONS(3165), + [anon_sym_LR_DQUOTE] = ACTIONS(3165), + [anon_sym_uR_DQUOTE] = ACTIONS(3165), + [anon_sym_UR_DQUOTE] = ACTIONS(3165), + [anon_sym_u8R_DQUOTE] = ACTIONS(3165), + [anon_sym_co_await] = ACTIONS(3163), + [anon_sym_new] = ACTIONS(3163), + [anon_sym_requires] = ACTIONS(3163), + [anon_sym_CARET_CARET] = ACTIONS(3165), + [anon_sym_LBRACK_COLON] = ACTIONS(3165), + [sym_this] = ACTIONS(3163), + }, + [STATE(1157)] = { + [sym_catch_clause] = STATE(1157), + [aux_sym_constructor_try_statement_repeat1] = STATE(1157), + [sym_identifier] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym___extension__] = ACTIONS(3169), + [anon_sym_typedef] = ACTIONS(3169), + [anon_sym_virtual] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym___attribute__] = ACTIONS(3169), + [anon_sym___attribute] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3171), + [anon_sym___declspec] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_register] = ACTIONS(3169), + [anon_sym_inline] = ACTIONS(3169), + [anon_sym___inline] = ACTIONS(3169), + [anon_sym___inline__] = ACTIONS(3169), + [anon_sym___forceinline] = ACTIONS(3169), + [anon_sym_thread_local] = ACTIONS(3169), + [anon_sym___thread] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_constexpr] = ACTIONS(3169), + [anon_sym_volatile] = ACTIONS(3169), + [anon_sym_restrict] = ACTIONS(3169), + [anon_sym___restrict__] = ACTIONS(3169), + [anon_sym__Atomic] = ACTIONS(3169), + [anon_sym__Noreturn] = ACTIONS(3169), + [anon_sym_noreturn] = ACTIONS(3169), + [anon_sym__Nonnull] = ACTIONS(3169), + [anon_sym_mutable] = ACTIONS(3169), + [anon_sym_constinit] = ACTIONS(3169), + [anon_sym_consteval] = ACTIONS(3169), + [anon_sym_alignas] = ACTIONS(3169), + [anon_sym__Alignas] = ACTIONS(3169), + [sym_primitive_type] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_goto] = ACTIONS(3169), + [anon_sym___try] = ACTIONS(3169), + [anon_sym___leave] = ACTIONS(3169), + [anon_sym_not] = ACTIONS(3169), + [anon_sym_compl] = ACTIONS(3169), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_sizeof] = ACTIONS(3169), + [anon_sym___alignof__] = ACTIONS(3169), + [anon_sym___alignof] = ACTIONS(3169), + [anon_sym__alignof] = ACTIONS(3169), + [anon_sym_alignof] = ACTIONS(3169), + [anon_sym__Alignof] = ACTIONS(3169), + [anon_sym_offsetof] = ACTIONS(3169), + [anon_sym__Generic] = ACTIONS(3169), + [anon_sym_typename] = ACTIONS(3169), + [anon_sym_asm] = ACTIONS(3169), + [anon_sym___asm__] = ACTIONS(3169), + [anon_sym___asm] = ACTIONS(3169), + [sym_number_literal] = ACTIONS(3171), + [anon_sym_L_SQUOTE] = ACTIONS(3171), + [anon_sym_u_SQUOTE] = ACTIONS(3171), + [anon_sym_U_SQUOTE] = ACTIONS(3171), + [anon_sym_u8_SQUOTE] = ACTIONS(3171), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_L_DQUOTE] = ACTIONS(3171), + [anon_sym_u_DQUOTE] = ACTIONS(3171), + [anon_sym_U_DQUOTE] = ACTIONS(3171), + [anon_sym_u8_DQUOTE] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(3171), + [sym_true] = ACTIONS(3169), + [sym_false] = ACTIONS(3169), + [anon_sym_NULL] = ACTIONS(3169), + [anon_sym_nullptr] = ACTIONS(3169), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3169), + [anon_sym_decltype] = ACTIONS(3169), + [anon_sym_template] = ACTIONS(3169), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_delete] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_co_return] = ACTIONS(3169), + [anon_sym_co_yield] = ACTIONS(3169), + [anon_sym_catch] = ACTIONS(5709), + [anon_sym_R_DQUOTE] = ACTIONS(3171), + [anon_sym_LR_DQUOTE] = ACTIONS(3171), + [anon_sym_uR_DQUOTE] = ACTIONS(3171), + [anon_sym_UR_DQUOTE] = ACTIONS(3171), + [anon_sym_u8R_DQUOTE] = ACTIONS(3171), + [anon_sym_co_await] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_requires] = ACTIONS(3169), + [anon_sym_CARET_CARET] = ACTIONS(3171), + [anon_sym_LBRACK_COLON] = ACTIONS(3171), + [sym_this] = ACTIONS(3169), + }, + [STATE(1158)] = { + [sym_expression] = STATE(6465), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(5712), + [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(5712), + [anon_sym___extension__] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [anon_sym_DASH_GT] = ACTIONS(5712), + [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(5714), + [anon_sym_throw] = ACTIONS(5714), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1159)] = { + [sym_expression] = STATE(7414), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11308), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -225533,7 +226044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -225566,79 +226077,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1160)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2394), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5665), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5705), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5686), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5693), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1161)] = { + [sym_expression] = STATE(7081), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1162)] = { + [sym_expression] = STATE(5940), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1163)] = { + [sym_expression] = STATE(7441), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11285), + [sym_initializer_pair] = STATE(11285), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5724), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5726), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225651,10 +226516,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(2726), [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), @@ -225683,78 +226549,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(2728), [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(1164)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2398), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5728), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1165)] = { + [sym_expression] = STATE(7533), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11275), + [sym_initializer_pair] = STATE(11275), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5730), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225767,7 +226752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -225800,79 +226785,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1166)] = { + [sym_expression] = STATE(4947), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(5712), + [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(5714), + [anon_sym_throw] = ACTIONS(5714), + [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(1167)] = { + [sym_expression] = STATE(5465), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(5712), + [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(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(2853), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1168)] = { + [sym_expression] = STATE(7581), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11053), + [sym_initializer_pair] = STATE(11053), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5734), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5736), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225885,10 +227106,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(2726), [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), @@ -225917,79 +227139,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(2728), [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(1169)] = { + [sym_expression] = STATE(7285), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(5712), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(2720), [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_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -226002,10 +227222,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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5712), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -226025,6 +227246,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -226034,84 +227257,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(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5780), - [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(1170)] = { + [sym_expression] = STATE(7392), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -226119,21 +227340,22 @@ static const uint16_t ts_parse_table[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(2726), [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), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -226141,88 +227363,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1171)] = { + [sym_expression] = STATE(5806), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1172)] = { + [sym_expression] = STATE(7428), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11171), + [sym_initializer_pair] = STATE(11171), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5738), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5740), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -226235,7 +227578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -226268,84 +227611,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(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5784), - [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(1173)] = { + [sym_expression] = STATE(7075), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -226353,115 +227694,235 @@ static const uint16_t ts_parse_table[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(2726), [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), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), [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_template] = ACTIONS(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5786), - [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(1174)] = { + [sym_expression] = STATE(6431), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN2] = ACTIONS(5712), + [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(5712), + [anon_sym___extension__] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [anon_sym_asm] = ACTIONS(2356), + [anon_sym___asm__] = ACTIONS(2356), + [anon_sym___asm] = ACTIONS(2356), + [anon_sym_DASH_GT] = ACTIONS(5712), + [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(5714), + [anon_sym_throw] = ACTIONS(5714), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1175)] = { + [sym_expression] = STATE(7693), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -226469,11 +227930,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(4978), [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(5712), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -226492,211 +227953,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1176)] = { + [sym_expression] = STATE(7695), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -226704,10 +228048,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(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5712), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -226726,206 +228071,679 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5792), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [STATE(1177)] = { + [sym_expression] = STATE(7635), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym___asm__] = ACTIONS(4274), + [anon_sym___asm] = ACTIONS(4274), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(4276), + [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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1178)] = { + [sym_expression] = STATE(5357), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(5712), + [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(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(2853), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1179)] = { + [sym_expression] = STATE(5988), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(5712), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1180)] = { + [sym_expression] = STATE(5991), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(5712), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1181)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2394), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5665), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5728), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5686), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5693), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1182)] = { + [sym_expression] = STATE(7264), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -226938,10 +228756,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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5712), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -226961,6 +228780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -226970,78 +228791,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1183)] = { + [sym_expression] = STATE(5134), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), + [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(5712), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(2823), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1184)] = { + [sym_expression] = STATE(7602), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), + }, + [STATE(1185)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2398), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5742), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1186)] = { + [sym_expression] = STATE(7475), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11118), + [sym_initializer_pair] = STATE(11118), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5744), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5746), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227054,7 +229230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -227087,78 +229263,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1187)] = { + [sym_expression] = STATE(5125), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), + [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(5712), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(2823), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1188)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2398), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5748), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1189)] = { + [sym_expression] = STATE(7460), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11380), + [sym_initializer_pair] = STATE(11380), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5750), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5752), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227171,7 +229584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -227204,313 +229617,787 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1190)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2398), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, - [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), + [STATE(1191)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2394), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5665), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5742), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5686), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5693), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, - [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), + [STATE(1192)] = { + [sym_expression] = STATE(6110), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1193)] = { + [sym_expression] = STATE(7452), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10869), + [sym_initializer_pair] = STATE(10869), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1194)] = { + [sym_expression] = STATE(7754), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5712), + [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(4439), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1195)] = { + [sym_expression] = STATE(7756), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5712), + [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(4439), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1196)] = { + [sym_expression] = STATE(7467), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11016), + [sym_initializer_pair] = STATE(11016), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_COMMA] = ACTIONS(5756), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(5758), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227523,10 +230410,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(2726), [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), @@ -227555,313 +230443,1495 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1197)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2398), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5760), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1198)] = { + [sym_expression] = STATE(7630), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [anon_sym_asm] = ACTIONS(4274), + [anon_sym___asm__] = ACTIONS(4274), + [anon_sym___asm] = ACTIONS(4274), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(4276), + [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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1199)] = { + [sym_expression] = STATE(6086), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(5712), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3090), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1200)] = { + [sym_expression] = STATE(6088), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(5712), + [sym_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3090), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1201)] = { + [sym_expression] = STATE(5598), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(5712), + [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(5712), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [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(5712), + [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(5714), + [anon_sym_throw] = ACTIONS(5714), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1202)] = { + [sym_expression] = STATE(7389), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [sym_this] = ACTIONS(237), }, + [STATE(1203)] = { + [sym_expression] = STATE(5630), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_LPAREN2] = ACTIONS(5712), + [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(5712), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [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(5712), + [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(5714), + [anon_sym_throw] = ACTIONS(5714), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1204)] = { + [sym_expression] = STATE(7585), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), + }, + [STATE(1205)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2398), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5762), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1206)] = { + [sym_expression] = STATE(6112), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [anon_sym_DASH_GT] = ACTIONS(5712), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_noexcept] = ACTIONS(5714), + [anon_sym_throw] = ACTIONS(5714), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, [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), + [sym_expression] = STATE(4945), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(5712), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym_LT] = ACTIONS(5712), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5712), + [anon_sym_LBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(5714), + [anon_sym_constexpr] = ACTIONS(5714), + [anon_sym_mutable] = ACTIONS(5714), + [anon_sym_consteval] = ACTIONS(5714), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(5712), + [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(5714), + [anon_sym_throw] = ACTIONS(5714), + [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(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), + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2394), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5665), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5760), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5686), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5693), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, [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), + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(5768), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227874,7 +231944,7 @@ static const uint16_t ts_parse_table[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(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -227906,79 +231976,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(2728), [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] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227991,10 +232060,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(2726), [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), @@ -228023,79 +232093,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(2728), [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), + [sym_identifier] = ACTIONS(5623), + [anon_sym_LPAREN2] = ACTIONS(5625), + [anon_sym_BANG] = ACTIONS(5625), + [anon_sym_TILDE] = ACTIONS(5625), + [anon_sym_DASH] = ACTIONS(5623), + [anon_sym_PLUS] = ACTIONS(5623), + [anon_sym_STAR] = ACTIONS(5625), + [anon_sym_AMP] = ACTIONS(5625), + [anon_sym_SEMI] = ACTIONS(5625), + [anon_sym___extension__] = ACTIONS(5623), + [anon_sym_virtual] = ACTIONS(5623), + [anon_sym_extern] = ACTIONS(5623), + [anon_sym___attribute__] = ACTIONS(5623), + [anon_sym___attribute] = ACTIONS(5623), + [anon_sym_using] = ACTIONS(5623), + [anon_sym_COLON_COLON] = ACTIONS(5625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5625), + [anon_sym___declspec] = ACTIONS(5623), + [anon_sym_LBRACE] = ACTIONS(5625), + [anon_sym_signed] = ACTIONS(5623), + [anon_sym_unsigned] = ACTIONS(5623), + [anon_sym_long] = ACTIONS(5623), + [anon_sym_short] = ACTIONS(5623), + [anon_sym_LBRACK] = ACTIONS(5623), + [anon_sym_static] = ACTIONS(5623), + [anon_sym_register] = ACTIONS(5623), + [anon_sym_inline] = ACTIONS(5623), + [anon_sym___inline] = ACTIONS(5623), + [anon_sym___inline__] = ACTIONS(5623), + [anon_sym___forceinline] = ACTIONS(5623), + [anon_sym_thread_local] = ACTIONS(5623), + [anon_sym___thread] = ACTIONS(5623), + [anon_sym_const] = ACTIONS(5623), + [anon_sym_constexpr] = ACTIONS(5623), + [anon_sym_volatile] = ACTIONS(5623), + [anon_sym_restrict] = ACTIONS(5623), + [anon_sym___restrict__] = ACTIONS(5623), + [anon_sym__Atomic] = ACTIONS(5623), + [anon_sym__Noreturn] = ACTIONS(5623), + [anon_sym_noreturn] = ACTIONS(5623), + [anon_sym__Nonnull] = ACTIONS(5623), + [anon_sym_mutable] = ACTIONS(5623), + [anon_sym_constinit] = ACTIONS(5623), + [anon_sym_consteval] = ACTIONS(5623), + [anon_sym_alignas] = ACTIONS(5623), + [anon_sym__Alignas] = ACTIONS(5623), + [sym_primitive_type] = ACTIONS(5623), + [anon_sym_enum] = ACTIONS(5623), + [anon_sym_class] = ACTIONS(5623), + [anon_sym_struct] = ACTIONS(5623), + [anon_sym_union] = ACTIONS(5623), + [anon_sym_if] = ACTIONS(5623), + [anon_sym_switch] = ACTIONS(5623), + [anon_sym_case] = ACTIONS(5623), + [anon_sym_default] = ACTIONS(5623), + [anon_sym_while] = ACTIONS(5623), + [anon_sym_do] = ACTIONS(5623), + [anon_sym_for] = ACTIONS(5623), + [anon_sym_return] = ACTIONS(5623), + [anon_sym_break] = ACTIONS(5623), + [anon_sym_continue] = ACTIONS(5623), + [anon_sym_goto] = ACTIONS(5623), + [anon_sym___try] = ACTIONS(5623), + [anon_sym___leave] = ACTIONS(5623), + [anon_sym_not] = ACTIONS(5623), + [anon_sym_compl] = ACTIONS(5623), + [anon_sym_DASH_DASH] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_sizeof] = ACTIONS(5623), + [anon_sym___alignof__] = ACTIONS(5623), + [anon_sym___alignof] = ACTIONS(5623), + [anon_sym__alignof] = ACTIONS(5623), + [anon_sym_alignof] = ACTIONS(5623), + [anon_sym__Alignof] = ACTIONS(5623), + [anon_sym_offsetof] = ACTIONS(5623), + [anon_sym__Generic] = ACTIONS(5623), + [anon_sym_typename] = ACTIONS(5623), + [anon_sym_asm] = ACTIONS(5623), + [anon_sym___asm__] = ACTIONS(5623), + [anon_sym___asm] = ACTIONS(5623), + [sym_number_literal] = ACTIONS(5625), + [anon_sym_L_SQUOTE] = ACTIONS(5625), + [anon_sym_u_SQUOTE] = ACTIONS(5625), + [anon_sym_U_SQUOTE] = ACTIONS(5625), + [anon_sym_u8_SQUOTE] = ACTIONS(5625), + [anon_sym_SQUOTE] = ACTIONS(5625), + [anon_sym_L_DQUOTE] = ACTIONS(5625), + [anon_sym_u_DQUOTE] = ACTIONS(5625), + [anon_sym_U_DQUOTE] = ACTIONS(5625), + [anon_sym_u8_DQUOTE] = ACTIONS(5625), + [anon_sym_DQUOTE] = ACTIONS(5625), + [sym_true] = ACTIONS(5623), + [sym_false] = ACTIONS(5623), + [anon_sym_NULL] = ACTIONS(5623), + [anon_sym_nullptr] = ACTIONS(5623), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5623), + [anon_sym_decltype] = ACTIONS(5623), + [anon_sym_template] = ACTIONS(5623), + [anon_sym_try] = ACTIONS(5623), + [anon_sym_delete] = ACTIONS(5623), + [anon_sym_throw] = ACTIONS(5623), + [anon_sym_co_return] = ACTIONS(5623), + [anon_sym_co_yield] = ACTIONS(5623), + [anon_sym_R_DQUOTE] = ACTIONS(5625), + [anon_sym_LR_DQUOTE] = ACTIONS(5625), + [anon_sym_uR_DQUOTE] = ACTIONS(5625), + [anon_sym_UR_DQUOTE] = ACTIONS(5625), + [anon_sym_u8R_DQUOTE] = ACTIONS(5625), + [anon_sym_co_await] = ACTIONS(5623), + [anon_sym_new] = ACTIONS(5623), + [anon_sym_requires] = ACTIONS(5623), + [anon_sym_CARET_CARET] = ACTIONS(5625), + [anon_sym_LBRACK_COLON] = ACTIONS(5625), + [sym_this] = ACTIONS(5623), + }, + [STATE(1212)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228108,7 +232295,7 @@ static const uint16_t ts_parse_table[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(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -228140,195 +232327,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(2728), [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), + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5776), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228341,7 +232411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -228374,78 +232444,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(2728), [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), + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2394), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5665), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5778), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5760), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5686), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5693), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1215)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1217), + [sym_compound_requirement] = STATE(1217), + [sym__requirement] = STATE(1217), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1217), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5780), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228458,11 +232646,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(5770), [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), @@ -228491,312 +232678,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(2728), [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_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(5782), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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), - [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), + [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(2728), + [sym_this] = ACTIONS(237), }, [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), + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5784), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228809,11 +232880,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(5770), [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), @@ -228842,79 +232912,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(2728), [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), + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228927,10 +232996,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(2726), [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), @@ -228959,79 +233029,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(2728), [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), + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1235), + [sym_compound_requirement] = STATE(1235), + [sym__requirement] = STATE(1235), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1235), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5788), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -229044,7 +233114,7 @@ static const uint16_t ts_parse_table[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(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -229076,78 +233146,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(2728), [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), + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1234), + [sym_compound_requirement] = STATE(1234), + [sym__requirement] = STATE(1234), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1234), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -229160,11 +233231,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(5770), [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), @@ -229193,1817 +233263,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(2728), [sym_this] = ACTIONS(237), }, [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [STATE(1226)] = { - [sym_identifier] = 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] = ACTIONS(3594), - [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_COLON_COLON] = ACTIONS(3594), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), - [anon_sym___declspec] = 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_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_template] = ACTIONS(3592), - [anon_sym_try] = ACTIONS(3592), - [anon_sym_delete] = ACTIONS(3592), - [anon_sym_throw] = 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(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(1233)] = { - [sym_identifier] = 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] = ACTIONS(3680), - [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_COLON_COLON] = ACTIONS(3680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), - [anon_sym___declspec] = 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_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_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1222), + [sym_compound_requirement] = STATE(1222), + [sym__requirement] = STATE(1222), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1222), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(5792), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(5770), + [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(3678), - [anon_sym_decltype] = ACTIONS(3678), - [anon_sym_template] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_throw] = 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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1222)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5766), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -231016,11 +233465,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(5770), [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), @@ -231049,3667 +233497,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(2728), [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - [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_LBRACK] = ACTIONS(5645), - [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_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), - [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(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(1223)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1209), + [sym_compound_requirement] = STATE(1209), + [sym__requirement] = STATE(1209), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1209), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5796), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -234722,7 +233582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -234754,74 +233614,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(2728), [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(1224)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1257), + [sym_compound_requirement] = STATE(1257), + [sym__requirement] = STATE(1257), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1257), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5798), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -234834,7 +233699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -234866,298 +233731,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1225)] = { + [sym_else_clause] = STATE(1265), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LPAREN2] = ACTIONS(3380), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3380), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym___extension__] = ACTIONS(3378), + [anon_sym_typedef] = ACTIONS(3378), + [anon_sym_virtual] = ACTIONS(3378), + [anon_sym_extern] = ACTIONS(3378), + [anon_sym___attribute__] = ACTIONS(3378), + [anon_sym___attribute] = ACTIONS(3378), + [anon_sym_COLON_COLON] = ACTIONS(3380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3380), + [anon_sym___declspec] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_signed] = ACTIONS(3378), + [anon_sym_unsigned] = ACTIONS(3378), + [anon_sym_long] = ACTIONS(3378), + [anon_sym_short] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3378), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_register] = ACTIONS(3378), + [anon_sym_inline] = ACTIONS(3378), + [anon_sym___inline] = ACTIONS(3378), + [anon_sym___inline__] = ACTIONS(3378), + [anon_sym___forceinline] = ACTIONS(3378), + [anon_sym_thread_local] = ACTIONS(3378), + [anon_sym___thread] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_constexpr] = ACTIONS(3378), + [anon_sym_volatile] = ACTIONS(3378), + [anon_sym_restrict] = ACTIONS(3378), + [anon_sym___restrict__] = ACTIONS(3378), + [anon_sym__Atomic] = ACTIONS(3378), + [anon_sym__Noreturn] = ACTIONS(3378), + [anon_sym_noreturn] = ACTIONS(3378), + [anon_sym__Nonnull] = ACTIONS(3378), + [anon_sym_mutable] = ACTIONS(3378), + [anon_sym_constinit] = ACTIONS(3378), + [anon_sym_consteval] = ACTIONS(3378), + [anon_sym_alignas] = ACTIONS(3378), + [anon_sym__Alignas] = ACTIONS(3378), + [sym_primitive_type] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym___try] = ACTIONS(3378), + [anon_sym___leave] = ACTIONS(3378), + [anon_sym_not] = ACTIONS(3378), + [anon_sym_compl] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_sizeof] = ACTIONS(3378), + [anon_sym___alignof__] = ACTIONS(3378), + [anon_sym___alignof] = ACTIONS(3378), + [anon_sym__alignof] = ACTIONS(3378), + [anon_sym_alignof] = ACTIONS(3378), + [anon_sym__Alignof] = ACTIONS(3378), + [anon_sym_offsetof] = ACTIONS(3378), + [anon_sym__Generic] = ACTIONS(3378), + [anon_sym_typename] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym___asm__] = ACTIONS(3378), + [anon_sym___asm] = ACTIONS(3378), + [sym_number_literal] = ACTIONS(3380), + [anon_sym_L_SQUOTE] = ACTIONS(3380), + [anon_sym_u_SQUOTE] = ACTIONS(3380), + [anon_sym_U_SQUOTE] = ACTIONS(3380), + [anon_sym_u8_SQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [anon_sym_L_DQUOTE] = ACTIONS(3380), + [anon_sym_u_DQUOTE] = ACTIONS(3380), + [anon_sym_U_DQUOTE] = ACTIONS(3380), + [anon_sym_u8_DQUOTE] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [anon_sym_NULL] = ACTIONS(3378), + [anon_sym_nullptr] = ACTIONS(3378), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3378), + [anon_sym_decltype] = ACTIONS(3378), + [anon_sym_template] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_co_return] = ACTIONS(3378), + [anon_sym_co_yield] = ACTIONS(3378), + [anon_sym_R_DQUOTE] = ACTIONS(3380), + [anon_sym_LR_DQUOTE] = ACTIONS(3380), + [anon_sym_uR_DQUOTE] = ACTIONS(3380), + [anon_sym_UR_DQUOTE] = ACTIONS(3380), + [anon_sym_u8R_DQUOTE] = ACTIONS(3380), + [anon_sym_co_await] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_requires] = ACTIONS(3378), + [anon_sym_CARET_CARET] = ACTIONS(3380), + [anon_sym_LBRACK_COLON] = ACTIONS(3380), + [sym_this] = ACTIONS(3378), }, - [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(1226)] = { + [sym_identifier] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym___attribute] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym__Nonnull] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym__Alignas] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_else] = ACTIONS(3392), + [anon_sym_switch] = ACTIONS(3392), + [anon_sym_while] = ACTIONS(3392), + [anon_sym_do] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_goto] = ACTIONS(3392), + [anon_sym___try] = ACTIONS(3392), + [anon_sym___leave] = ACTIONS(3392), + [anon_sym_not] = ACTIONS(3392), + [anon_sym_compl] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_sizeof] = ACTIONS(3392), + [anon_sym___alignof__] = ACTIONS(3392), + [anon_sym___alignof] = ACTIONS(3392), + [anon_sym__alignof] = ACTIONS(3392), + [anon_sym_alignof] = ACTIONS(3392), + [anon_sym__Alignof] = ACTIONS(3392), + [anon_sym_offsetof] = ACTIONS(3392), + [anon_sym__Generic] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [anon_sym_asm] = ACTIONS(3392), + [anon_sym___asm__] = ACTIONS(3392), + [anon_sym___asm] = ACTIONS(3392), + [sym_number_literal] = ACTIONS(3394), + [anon_sym_L_SQUOTE] = ACTIONS(3394), + [anon_sym_u_SQUOTE] = ACTIONS(3394), + [anon_sym_U_SQUOTE] = ACTIONS(3394), + [anon_sym_u8_SQUOTE] = ACTIONS(3394), + [anon_sym_SQUOTE] = ACTIONS(3394), + [anon_sym_L_DQUOTE] = ACTIONS(3394), + [anon_sym_u_DQUOTE] = ACTIONS(3394), + [anon_sym_U_DQUOTE] = ACTIONS(3394), + [anon_sym_u8_DQUOTE] = ACTIONS(3394), + [anon_sym_DQUOTE] = ACTIONS(3394), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [anon_sym_NULL] = ACTIONS(3392), + [anon_sym_nullptr] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_try] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3392), + [anon_sym_throw] = ACTIONS(3392), + [anon_sym_co_return] = ACTIONS(3392), + [anon_sym_co_yield] = ACTIONS(3392), + [anon_sym_catch] = ACTIONS(3392), + [anon_sym_R_DQUOTE] = ACTIONS(3394), + [anon_sym_LR_DQUOTE] = ACTIONS(3394), + [anon_sym_uR_DQUOTE] = ACTIONS(3394), + [anon_sym_UR_DQUOTE] = ACTIONS(3394), + [anon_sym_u8R_DQUOTE] = ACTIONS(3394), + [anon_sym_co_await] = ACTIONS(3392), + [anon_sym_new] = ACTIONS(3392), + [anon_sym_requires] = ACTIONS(3392), + [anon_sym_CARET_CARET] = ACTIONS(3394), + [anon_sym_LBRACK_COLON] = ACTIONS(3394), + [sym_this] = ACTIONS(3392), }, - [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(1227)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1229), + [sym_compound_requirement] = STATE(1229), + [sym__requirement] = STATE(1229), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1229), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5802), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -235170,7 +234050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -235202,74 +234082,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(2728), [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(1228)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5804), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -235282,10 +234166,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(2726), [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), @@ -235314,298 +234199,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), - [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(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), - [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(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_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(2728), [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(1229)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -235618,7 +234284,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -235650,298 +234316,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(2728), [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(1230)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5808), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -235954,7 +234401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -235986,298 +234433,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), - [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(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), - [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(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_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(2728), [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(1231)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -236290,10 +234517,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(2726), [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), @@ -236322,74 +234550,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(2728), [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(1232)] = { + [sym_identifier] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3176), + [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_COLON_COLON] = ACTIONS(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3176), + [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_else] = ACTIONS(3178), + [anon_sym_switch] = 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(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [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(3176), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3176), + [anon_sym_u_DQUOTE] = ACTIONS(3176), + [anon_sym_U_DQUOTE] = ACTIONS(3176), + [anon_sym_u8_DQUOTE] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [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_template] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_co_return] = ACTIONS(3178), + [anon_sym_co_yield] = ACTIONS(3178), + [anon_sym_catch] = ACTIONS(3178), + [anon_sym_R_DQUOTE] = ACTIONS(3176), + [anon_sym_LR_DQUOTE] = ACTIONS(3176), + [anon_sym_uR_DQUOTE] = ACTIONS(3176), + [anon_sym_UR_DQUOTE] = ACTIONS(3176), + [anon_sym_u8R_DQUOTE] = ACTIONS(3176), + [anon_sym_co_await] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_CARET_CARET] = ACTIONS(3176), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), + }, + [STATE(1233)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1230), + [sym_compound_requirement] = STATE(1230), + [sym__requirement] = STATE(1230), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1230), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5812), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -236402,7 +234752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -236434,298 +234784,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), - [sym_this] = ACTIONS(237), - }, - [STATE(1284)] = { - [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), - [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(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_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(2728), [sym_this] = ACTIONS(237), }, - [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), - }, - [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), + [STATE(1234)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5814), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -236738,7 +234869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -236770,522 +234901,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(2728), [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), + [STATE(1235)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5816), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -237298,7 +234986,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -237330,186 +235018,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(2728), [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), + [STATE(1236)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -237522,10 +235102,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(2726), [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), @@ -237554,74 +235135,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(2728), [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_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1237)] = { + [sym_else_clause] = STATE(1302), + [sym_identifier] = ACTIONS(3406), + [anon_sym_LPAREN2] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3408), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym___extension__] = ACTIONS(3406), + [anon_sym_typedef] = ACTIONS(3406), + [anon_sym_virtual] = ACTIONS(3406), + [anon_sym_extern] = ACTIONS(3406), + [anon_sym___attribute__] = ACTIONS(3406), + [anon_sym___attribute] = ACTIONS(3406), + [anon_sym_COLON_COLON] = ACTIONS(3408), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3408), + [anon_sym___declspec] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_signed] = ACTIONS(3406), + [anon_sym_unsigned] = ACTIONS(3406), + [anon_sym_long] = ACTIONS(3406), + [anon_sym_short] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_register] = ACTIONS(3406), + [anon_sym_inline] = ACTIONS(3406), + [anon_sym___inline] = ACTIONS(3406), + [anon_sym___inline__] = ACTIONS(3406), + [anon_sym___forceinline] = ACTIONS(3406), + [anon_sym_thread_local] = ACTIONS(3406), + [anon_sym___thread] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_constexpr] = ACTIONS(3406), + [anon_sym_volatile] = ACTIONS(3406), + [anon_sym_restrict] = ACTIONS(3406), + [anon_sym___restrict__] = ACTIONS(3406), + [anon_sym__Atomic] = ACTIONS(3406), + [anon_sym__Noreturn] = ACTIONS(3406), + [anon_sym_noreturn] = ACTIONS(3406), + [anon_sym__Nonnull] = ACTIONS(3406), + [anon_sym_mutable] = ACTIONS(3406), + [anon_sym_constinit] = ACTIONS(3406), + [anon_sym_consteval] = ACTIONS(3406), + [anon_sym_alignas] = ACTIONS(3406), + [anon_sym__Alignas] = ACTIONS(3406), + [sym_primitive_type] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3406), + [anon_sym_union] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_else] = ACTIONS(5800), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_goto] = ACTIONS(3406), + [anon_sym___try] = ACTIONS(3406), + [anon_sym___leave] = ACTIONS(3406), + [anon_sym_not] = ACTIONS(3406), + [anon_sym_compl] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_sizeof] = ACTIONS(3406), + [anon_sym___alignof__] = ACTIONS(3406), + [anon_sym___alignof] = ACTIONS(3406), + [anon_sym__alignof] = ACTIONS(3406), + [anon_sym_alignof] = ACTIONS(3406), + [anon_sym__Alignof] = ACTIONS(3406), + [anon_sym_offsetof] = ACTIONS(3406), + [anon_sym__Generic] = ACTIONS(3406), + [anon_sym_typename] = ACTIONS(3406), + [anon_sym_asm] = ACTIONS(3406), + [anon_sym___asm__] = ACTIONS(3406), + [anon_sym___asm] = ACTIONS(3406), + [sym_number_literal] = ACTIONS(3408), + [anon_sym_L_SQUOTE] = ACTIONS(3408), + [anon_sym_u_SQUOTE] = ACTIONS(3408), + [anon_sym_U_SQUOTE] = ACTIONS(3408), + [anon_sym_u8_SQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [anon_sym_L_DQUOTE] = ACTIONS(3408), + [anon_sym_u_DQUOTE] = ACTIONS(3408), + [anon_sym_U_DQUOTE] = ACTIONS(3408), + [anon_sym_u8_DQUOTE] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [anon_sym_NULL] = ACTIONS(3406), + [anon_sym_nullptr] = ACTIONS(3406), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3406), + [anon_sym_decltype] = ACTIONS(3406), + [anon_sym_template] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_co_return] = ACTIONS(3406), + [anon_sym_co_yield] = ACTIONS(3406), + [anon_sym_R_DQUOTE] = ACTIONS(3408), + [anon_sym_LR_DQUOTE] = ACTIONS(3408), + [anon_sym_uR_DQUOTE] = ACTIONS(3408), + [anon_sym_UR_DQUOTE] = ACTIONS(3408), + [anon_sym_u8R_DQUOTE] = ACTIONS(3408), + [anon_sym_co_await] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_requires] = ACTIONS(3406), + [anon_sym_CARET_CARET] = ACTIONS(3408), + [anon_sym_LBRACK_COLON] = ACTIONS(3408), + [sym_this] = ACTIONS(3406), + }, + [STATE(1238)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5818), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -237634,10 +235336,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(2726), [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), @@ -237666,74 +235369,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(2728), [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), + [STATE(1239)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5820), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -237746,10 +235453,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(2726), [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), @@ -237778,186 +235486,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(2728), [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), + [STATE(1240)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1242), + [sym_compound_requirement] = STATE(1242), + [sym__requirement] = STATE(1242), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1242), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5822), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -237970,7 +235571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -238002,185 +235603,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(2728), [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(1241)] = { + [sym_identifier] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym___attribute__] = ACTIONS(3149), + [anon_sym___attribute] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), + [anon_sym___declspec] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_signed] = ACTIONS(3149), + [anon_sym_unsigned] = ACTIONS(3149), + [anon_sym_long] = ACTIONS(3149), + [anon_sym_short] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_register] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym___inline] = ACTIONS(3149), + [anon_sym___inline__] = ACTIONS(3149), + [anon_sym___forceinline] = ACTIONS(3149), + [anon_sym_thread_local] = ACTIONS(3149), + [anon_sym___thread] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_constexpr] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_restrict] = ACTIONS(3149), + [anon_sym___restrict__] = ACTIONS(3149), + [anon_sym__Atomic] = ACTIONS(3149), + [anon_sym__Noreturn] = ACTIONS(3149), + [anon_sym_noreturn] = ACTIONS(3149), + [anon_sym__Nonnull] = ACTIONS(3149), + [anon_sym_mutable] = ACTIONS(3149), + [anon_sym_constinit] = ACTIONS(3149), + [anon_sym_consteval] = ACTIONS(3149), + [anon_sym_alignas] = ACTIONS(3149), + [anon_sym__Alignas] = ACTIONS(3149), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_goto] = ACTIONS(3149), + [anon_sym___try] = ACTIONS(3149), + [anon_sym___leave] = ACTIONS(3149), + [anon_sym_not] = ACTIONS(3149), + [anon_sym_compl] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_sizeof] = ACTIONS(3149), + [anon_sym___alignof__] = ACTIONS(3149), + [anon_sym___alignof] = ACTIONS(3149), + [anon_sym__alignof] = ACTIONS(3149), + [anon_sym_alignof] = ACTIONS(3149), + [anon_sym__Alignof] = ACTIONS(3149), + [anon_sym_offsetof] = ACTIONS(3149), + [anon_sym__Generic] = ACTIONS(3149), + [anon_sym_typename] = ACTIONS(3149), + [anon_sym_asm] = ACTIONS(3149), + [anon_sym___asm__] = ACTIONS(3149), + [anon_sym___asm] = ACTIONS(3149), + [sym_number_literal] = ACTIONS(3147), + [anon_sym_L_SQUOTE] = ACTIONS(3147), + [anon_sym_u_SQUOTE] = ACTIONS(3147), + [anon_sym_U_SQUOTE] = ACTIONS(3147), + [anon_sym_u8_SQUOTE] = ACTIONS(3147), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_L_DQUOTE] = ACTIONS(3147), + [anon_sym_u_DQUOTE] = ACTIONS(3147), + [anon_sym_U_DQUOTE] = ACTIONS(3147), + [anon_sym_u8_DQUOTE] = ACTIONS(3147), + [anon_sym_DQUOTE] = ACTIONS(3147), + [sym_true] = ACTIONS(3149), + [sym_false] = ACTIONS(3149), + [anon_sym_NULL] = ACTIONS(3149), + [anon_sym_nullptr] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3149), + [anon_sym_decltype] = ACTIONS(3149), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_delete] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_co_return] = ACTIONS(3149), + [anon_sym_co_yield] = ACTIONS(3149), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_R_DQUOTE] = ACTIONS(3147), + [anon_sym_LR_DQUOTE] = ACTIONS(3147), + [anon_sym_uR_DQUOTE] = ACTIONS(3147), + [anon_sym_UR_DQUOTE] = ACTIONS(3147), + [anon_sym_u8R_DQUOTE] = ACTIONS(3147), + [anon_sym_co_await] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_requires] = ACTIONS(3149), + [anon_sym_CARET_CARET] = ACTIONS(3147), + [anon_sym_LBRACK_COLON] = ACTIONS(3147), + [sym_this] = ACTIONS(3149), }, - [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(1242)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5824), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -238193,7 +235805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -238225,73 +235837,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(2728), [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(1243)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5826), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -238304,10 +235921,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(2726), [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), @@ -238336,184 +235954,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(2728), [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(1244)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2394), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5665), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5828), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5728), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5686), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5693), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, - [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(1245)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5830), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -238526,10 +236155,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(2726), [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), @@ -238558,184 +236188,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(2728), [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(1246)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5832), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -238748,10 +236272,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(2726), [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), @@ -238780,184 +236305,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(2728), [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(1247)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5834), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -238970,10 +236389,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(2726), [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), @@ -239002,73 +236422,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(2728), [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(1248)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2394), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5665), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5836), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5742), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5686), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5693), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1249)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5838), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239081,10 +236623,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(2726), [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), @@ -239113,184 +236656,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(2728), [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(1250)] = { + [sym_identifier] = ACTIONS(5619), + [anon_sym_LPAREN2] = ACTIONS(5621), + [anon_sym_BANG] = ACTIONS(5621), + [anon_sym_TILDE] = ACTIONS(5621), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_SEMI] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5619), + [anon_sym_virtual] = ACTIONS(5619), + [anon_sym_extern] = ACTIONS(5619), + [anon_sym___attribute__] = ACTIONS(5619), + [anon_sym___attribute] = ACTIONS(5619), + [anon_sym_using] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5621), + [anon_sym___declspec] = ACTIONS(5619), + [anon_sym_LBRACE] = ACTIONS(5621), + [anon_sym_signed] = ACTIONS(5619), + [anon_sym_unsigned] = ACTIONS(5619), + [anon_sym_long] = ACTIONS(5619), + [anon_sym_short] = ACTIONS(5619), + [anon_sym_LBRACK] = ACTIONS(5619), + [anon_sym_static] = ACTIONS(5619), + [anon_sym_register] = ACTIONS(5619), + [anon_sym_inline] = ACTIONS(5619), + [anon_sym___inline] = ACTIONS(5619), + [anon_sym___inline__] = ACTIONS(5619), + [anon_sym___forceinline] = ACTIONS(5619), + [anon_sym_thread_local] = ACTIONS(5619), + [anon_sym___thread] = ACTIONS(5619), + [anon_sym_const] = ACTIONS(5619), + [anon_sym_constexpr] = ACTIONS(5619), + [anon_sym_volatile] = ACTIONS(5619), + [anon_sym_restrict] = ACTIONS(5619), + [anon_sym___restrict__] = ACTIONS(5619), + [anon_sym__Atomic] = ACTIONS(5619), + [anon_sym__Noreturn] = ACTIONS(5619), + [anon_sym_noreturn] = ACTIONS(5619), + [anon_sym__Nonnull] = ACTIONS(5619), + [anon_sym_mutable] = ACTIONS(5619), + [anon_sym_constinit] = ACTIONS(5619), + [anon_sym_consteval] = ACTIONS(5619), + [anon_sym_alignas] = ACTIONS(5619), + [anon_sym__Alignas] = ACTIONS(5619), + [sym_primitive_type] = ACTIONS(5619), + [anon_sym_enum] = ACTIONS(5619), + [anon_sym_class] = ACTIONS(5619), + [anon_sym_struct] = ACTIONS(5619), + [anon_sym_union] = ACTIONS(5619), + [anon_sym_if] = ACTIONS(5619), + [anon_sym_switch] = ACTIONS(5619), + [anon_sym_case] = ACTIONS(5619), + [anon_sym_default] = ACTIONS(5619), + [anon_sym_while] = ACTIONS(5619), + [anon_sym_do] = ACTIONS(5619), + [anon_sym_for] = ACTIONS(5619), + [anon_sym_return] = ACTIONS(5619), + [anon_sym_break] = ACTIONS(5619), + [anon_sym_continue] = ACTIONS(5619), + [anon_sym_goto] = ACTIONS(5619), + [anon_sym___try] = ACTIONS(5619), + [anon_sym___leave] = ACTIONS(5619), + [anon_sym_not] = ACTIONS(5619), + [anon_sym_compl] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5621), + [anon_sym_PLUS_PLUS] = ACTIONS(5621), + [anon_sym_sizeof] = ACTIONS(5619), + [anon_sym___alignof__] = ACTIONS(5619), + [anon_sym___alignof] = ACTIONS(5619), + [anon_sym__alignof] = ACTIONS(5619), + [anon_sym_alignof] = ACTIONS(5619), + [anon_sym__Alignof] = ACTIONS(5619), + [anon_sym_offsetof] = ACTIONS(5619), + [anon_sym__Generic] = ACTIONS(5619), + [anon_sym_typename] = ACTIONS(5619), + [anon_sym_asm] = ACTIONS(5619), + [anon_sym___asm__] = ACTIONS(5619), + [anon_sym___asm] = ACTIONS(5619), + [sym_number_literal] = ACTIONS(5621), + [anon_sym_L_SQUOTE] = ACTIONS(5621), + [anon_sym_u_SQUOTE] = ACTIONS(5621), + [anon_sym_U_SQUOTE] = ACTIONS(5621), + [anon_sym_u8_SQUOTE] = ACTIONS(5621), + [anon_sym_SQUOTE] = ACTIONS(5621), + [anon_sym_L_DQUOTE] = ACTIONS(5621), + [anon_sym_u_DQUOTE] = ACTIONS(5621), + [anon_sym_U_DQUOTE] = ACTIONS(5621), + [anon_sym_u8_DQUOTE] = ACTIONS(5621), + [anon_sym_DQUOTE] = ACTIONS(5621), + [sym_true] = ACTIONS(5619), + [sym_false] = ACTIONS(5619), + [anon_sym_NULL] = ACTIONS(5619), + [anon_sym_nullptr] = ACTIONS(5619), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5619), + [anon_sym_decltype] = ACTIONS(5619), + [anon_sym_template] = ACTIONS(5619), + [anon_sym_try] = ACTIONS(5619), + [anon_sym_delete] = ACTIONS(5619), + [anon_sym_throw] = ACTIONS(5619), + [anon_sym_co_return] = ACTIONS(5619), + [anon_sym_co_yield] = ACTIONS(5619), + [anon_sym_R_DQUOTE] = ACTIONS(5621), + [anon_sym_LR_DQUOTE] = ACTIONS(5621), + [anon_sym_uR_DQUOTE] = ACTIONS(5621), + [anon_sym_UR_DQUOTE] = ACTIONS(5621), + [anon_sym_u8R_DQUOTE] = ACTIONS(5621), + [anon_sym_co_await] = ACTIONS(5619), + [anon_sym_new] = ACTIONS(5619), + [anon_sym_requires] = ACTIONS(5619), + [anon_sym_CARET_CARET] = ACTIONS(5621), + [anon_sym_LBRACK_COLON] = ACTIONS(5621), + [sym_this] = ACTIONS(5619), }, - [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(1251)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5840), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239303,10 +236857,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(2726), [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), @@ -239335,73 +236890,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(2728), [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(1252)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1254), + [sym_compound_requirement] = STATE(1254), + [sym__requirement] = STATE(1254), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1254), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5842), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239414,7 +236975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -239446,73 +237007,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(2728), [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(1253)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(5844), + [anon_sym_LPAREN2] = ACTIONS(5847), + [anon_sym_BANG] = ACTIONS(5850), + [anon_sym_TILDE] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5853), + [anon_sym_PLUS] = ACTIONS(5853), + [anon_sym_STAR] = ACTIONS(5856), + [anon_sym_AMP] = ACTIONS(5856), + [anon_sym_SEMI] = ACTIONS(5859), + [anon_sym___extension__] = ACTIONS(5862), + [anon_sym_COLON_COLON] = ACTIONS(5865), + [anon_sym_LBRACE] = ACTIONS(5868), + [anon_sym_RBRACE] = ACTIONS(5871), + [anon_sym_LBRACK] = ACTIONS(5873), + [sym_primitive_type] = ACTIONS(5876), + [anon_sym_not] = ACTIONS(5853), + [anon_sym_compl] = ACTIONS(5853), + [anon_sym_DASH_DASH] = ACTIONS(5879), + [anon_sym_PLUS_PLUS] = ACTIONS(5879), + [anon_sym_sizeof] = ACTIONS(5882), + [anon_sym___alignof__] = ACTIONS(5885), + [anon_sym___alignof] = ACTIONS(5885), + [anon_sym__alignof] = ACTIONS(5885), + [anon_sym_alignof] = ACTIONS(5885), + [anon_sym__Alignof] = ACTIONS(5885), + [anon_sym_offsetof] = ACTIONS(5888), + [anon_sym__Generic] = ACTIONS(5891), + [anon_sym_typename] = ACTIONS(5894), + [anon_sym_asm] = ACTIONS(5897), + [anon_sym___asm__] = ACTIONS(5897), + [anon_sym___asm] = ACTIONS(5897), + [sym_number_literal] = ACTIONS(5900), + [anon_sym_L_SQUOTE] = ACTIONS(5903), + [anon_sym_u_SQUOTE] = ACTIONS(5903), + [anon_sym_U_SQUOTE] = ACTIONS(5903), + [anon_sym_u8_SQUOTE] = ACTIONS(5903), + [anon_sym_SQUOTE] = ACTIONS(5903), + [anon_sym_L_DQUOTE] = ACTIONS(5906), + [anon_sym_u_DQUOTE] = ACTIONS(5906), + [anon_sym_U_DQUOTE] = ACTIONS(5906), + [anon_sym_u8_DQUOTE] = ACTIONS(5906), + [anon_sym_DQUOTE] = ACTIONS(5906), + [sym_true] = ACTIONS(5909), + [sym_false] = ACTIONS(5909), + [anon_sym_NULL] = ACTIONS(5912), + [anon_sym_nullptr] = ACTIONS(5912), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5915), + [anon_sym_template] = ACTIONS(5918), + [anon_sym_delete] = ACTIONS(5921), + [anon_sym_R_DQUOTE] = ACTIONS(5924), + [anon_sym_LR_DQUOTE] = ACTIONS(5924), + [anon_sym_uR_DQUOTE] = ACTIONS(5924), + [anon_sym_UR_DQUOTE] = ACTIONS(5924), + [anon_sym_u8R_DQUOTE] = ACTIONS(5924), + [anon_sym_co_await] = ACTIONS(5927), + [anon_sym_new] = ACTIONS(5930), + [anon_sym_requires] = ACTIONS(5933), + [anon_sym_CARET_CARET] = ACTIONS(5936), + [anon_sym_LBRACK_COLON] = ACTIONS(5939), + [sym_this] = ACTIONS(5909), + }, + [STATE(1254)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239525,7 +237209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -239557,73 +237241,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(2728), [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(1255)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1212), + [sym_compound_requirement] = STATE(1212), + [sym__requirement] = STATE(1212), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1212), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5944), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239636,7 +237326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -239668,184 +237358,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(2728), [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(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), + [STATE(1256)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239858,10 +237442,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(2726), [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), @@ -239890,73 +237475,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(2728), [sym_this] = ACTIONS(237), }, - [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(1257)] = { + [sym_expression_statement] = STATE(4633), + [sym_expression] = STATE(7784), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12295), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_type_requirement] = STATE(1253), + [sym_compound_requirement] = STATE(1253), + [sym__requirement] = STATE(1253), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_requirement_seq_repeat1] = STATE(1253), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(5764), + [anon_sym___extension__] = ACTIONS(2720), [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(5766), + [anon_sym_RBRACE] = ACTIONS(5948), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239969,7 +237560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5770), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -240001,952 +237592,3789 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [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(1258)] = { + [sym_identifier] = ACTIONS(3448), + [anon_sym_LPAREN2] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3450), + [anon_sym___extension__] = ACTIONS(3448), + [anon_sym_typedef] = ACTIONS(3448), + [anon_sym_virtual] = ACTIONS(3448), + [anon_sym_extern] = ACTIONS(3448), + [anon_sym___attribute__] = ACTIONS(3448), + [anon_sym___attribute] = ACTIONS(3448), + [anon_sym_COLON_COLON] = ACTIONS(3450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3450), + [anon_sym___declspec] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_signed] = ACTIONS(3448), + [anon_sym_unsigned] = ACTIONS(3448), + [anon_sym_long] = ACTIONS(3448), + [anon_sym_short] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3448), + [anon_sym_register] = ACTIONS(3448), + [anon_sym_inline] = ACTIONS(3448), + [anon_sym___inline] = ACTIONS(3448), + [anon_sym___inline__] = ACTIONS(3448), + [anon_sym___forceinline] = ACTIONS(3448), + [anon_sym_thread_local] = ACTIONS(3448), + [anon_sym___thread] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_constexpr] = ACTIONS(3448), + [anon_sym_volatile] = ACTIONS(3448), + [anon_sym_restrict] = ACTIONS(3448), + [anon_sym___restrict__] = ACTIONS(3448), + [anon_sym__Atomic] = ACTIONS(3448), + [anon_sym__Noreturn] = ACTIONS(3448), + [anon_sym_noreturn] = ACTIONS(3448), + [anon_sym__Nonnull] = ACTIONS(3448), + [anon_sym_mutable] = ACTIONS(3448), + [anon_sym_constinit] = ACTIONS(3448), + [anon_sym_consteval] = ACTIONS(3448), + [anon_sym_alignas] = ACTIONS(3448), + [anon_sym__Alignas] = ACTIONS(3448), + [sym_primitive_type] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), + [anon_sym_class] = ACTIONS(3448), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_union] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3448), + [anon_sym_switch] = ACTIONS(3448), + [anon_sym_while] = ACTIONS(3448), + [anon_sym_do] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_goto] = ACTIONS(3448), + [anon_sym___try] = ACTIONS(3448), + [anon_sym___leave] = ACTIONS(3448), + [anon_sym_not] = ACTIONS(3448), + [anon_sym_compl] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_sizeof] = ACTIONS(3448), + [anon_sym___alignof__] = ACTIONS(3448), + [anon_sym___alignof] = ACTIONS(3448), + [anon_sym__alignof] = ACTIONS(3448), + [anon_sym_alignof] = ACTIONS(3448), + [anon_sym__Alignof] = ACTIONS(3448), + [anon_sym_offsetof] = ACTIONS(3448), + [anon_sym__Generic] = ACTIONS(3448), + [anon_sym_typename] = ACTIONS(3448), + [anon_sym_asm] = ACTIONS(3448), + [anon_sym___asm__] = ACTIONS(3448), + [anon_sym___asm] = ACTIONS(3448), + [sym_number_literal] = ACTIONS(3450), + [anon_sym_L_SQUOTE] = ACTIONS(3450), + [anon_sym_u_SQUOTE] = ACTIONS(3450), + [anon_sym_U_SQUOTE] = ACTIONS(3450), + [anon_sym_u8_SQUOTE] = ACTIONS(3450), + [anon_sym_SQUOTE] = ACTIONS(3450), + [anon_sym_L_DQUOTE] = ACTIONS(3450), + [anon_sym_u_DQUOTE] = ACTIONS(3450), + [anon_sym_U_DQUOTE] = ACTIONS(3450), + [anon_sym_u8_DQUOTE] = ACTIONS(3450), + [anon_sym_DQUOTE] = ACTIONS(3450), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [anon_sym_NULL] = ACTIONS(3448), + [anon_sym_nullptr] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3448), + [anon_sym_decltype] = ACTIONS(3448), + [anon_sym_template] = ACTIONS(3448), + [anon_sym_try] = ACTIONS(3448), + [anon_sym_delete] = ACTIONS(3448), + [anon_sym_throw] = ACTIONS(3448), + [anon_sym_co_return] = ACTIONS(3448), + [anon_sym_co_yield] = ACTIONS(3448), + [anon_sym_R_DQUOTE] = ACTIONS(3450), + [anon_sym_LR_DQUOTE] = ACTIONS(3450), + [anon_sym_uR_DQUOTE] = ACTIONS(3450), + [anon_sym_UR_DQUOTE] = ACTIONS(3450), + [anon_sym_u8R_DQUOTE] = ACTIONS(3450), + [anon_sym_co_await] = ACTIONS(3448), + [anon_sym_new] = ACTIONS(3448), + [anon_sym_requires] = ACTIONS(3448), + [anon_sym_CARET_CARET] = ACTIONS(3450), + [anon_sym_LBRACK_COLON] = ACTIONS(3450), + [sym_this] = ACTIONS(3448), }, - [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), - [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), + [STATE(1259)] = { + [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(1260)] = { + [sym_expression] = STATE(7799), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_lambda_default_capture] = STATE(11746), + [sym__lambda_capture_identifier] = STATE(11279), + [sym_lambda_capture_initializer] = STATE(11279), + [sym__lambda_capture] = STATE(11279), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_identifier_parameter_pack_expansion] = STATE(11279), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6430), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(5950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5952), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5954), + [anon_sym_AMP] = ACTIONS(5956), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(5958), + [anon_sym_EQ] = ACTIONS(5960), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(5962), }, - [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(1261)] = { + [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(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(1262)] = { + [sym_identifier] = ACTIONS(3312), + [anon_sym_LPAREN2] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym___extension__] = ACTIONS(3312), + [anon_sym_typedef] = ACTIONS(3312), + [anon_sym_virtual] = ACTIONS(3312), + [anon_sym_extern] = ACTIONS(3312), + [anon_sym___attribute__] = ACTIONS(3312), + [anon_sym___attribute] = ACTIONS(3312), + [anon_sym_COLON_COLON] = ACTIONS(3317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3317), + [anon_sym___declspec] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_signed] = ACTIONS(3312), + [anon_sym_unsigned] = ACTIONS(3312), + [anon_sym_long] = ACTIONS(3312), + [anon_sym_short] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_register] = ACTIONS(3312), + [anon_sym_inline] = ACTIONS(3312), + [anon_sym___inline] = ACTIONS(3312), + [anon_sym___inline__] = ACTIONS(3312), + [anon_sym___forceinline] = ACTIONS(3312), + [anon_sym_thread_local] = ACTIONS(3312), + [anon_sym___thread] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_constexpr] = ACTIONS(3312), + [anon_sym_volatile] = ACTIONS(3312), + [anon_sym_restrict] = ACTIONS(3312), + [anon_sym___restrict__] = ACTIONS(3312), + [anon_sym__Atomic] = ACTIONS(3312), + [anon_sym__Noreturn] = ACTIONS(3312), + [anon_sym_noreturn] = ACTIONS(3312), + [anon_sym__Nonnull] = ACTIONS(3312), + [anon_sym_mutable] = ACTIONS(3312), + [anon_sym_constinit] = ACTIONS(3312), + [anon_sym_consteval] = ACTIONS(3312), + [anon_sym_alignas] = ACTIONS(3312), + [anon_sym__Alignas] = ACTIONS(3312), + [sym_primitive_type] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_struct] = ACTIONS(3312), + [anon_sym_union] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_goto] = ACTIONS(3312), + [anon_sym___try] = ACTIONS(3312), + [anon_sym___leave] = ACTIONS(3312), + [anon_sym_not] = ACTIONS(3312), + [anon_sym_compl] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_sizeof] = ACTIONS(3312), + [anon_sym___alignof__] = ACTIONS(3312), + [anon_sym___alignof] = ACTIONS(3312), + [anon_sym__alignof] = ACTIONS(3312), + [anon_sym_alignof] = ACTIONS(3312), + [anon_sym__Alignof] = ACTIONS(3312), + [anon_sym_offsetof] = ACTIONS(3312), + [anon_sym__Generic] = ACTIONS(3312), + [anon_sym_typename] = ACTIONS(3312), + [anon_sym_asm] = ACTIONS(3312), + [anon_sym___asm__] = ACTIONS(3312), + [anon_sym___asm] = ACTIONS(3312), + [sym_number_literal] = ACTIONS(3317), + [anon_sym_L_SQUOTE] = ACTIONS(3317), + [anon_sym_u_SQUOTE] = ACTIONS(3317), + [anon_sym_U_SQUOTE] = ACTIONS(3317), + [anon_sym_u8_SQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_L_DQUOTE] = ACTIONS(3317), + [anon_sym_u_DQUOTE] = ACTIONS(3317), + [anon_sym_U_DQUOTE] = ACTIONS(3317), + [anon_sym_u8_DQUOTE] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [anon_sym_NULL] = ACTIONS(3312), + [anon_sym_nullptr] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3312), + [anon_sym_decltype] = ACTIONS(3312), + [anon_sym_template] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_co_return] = ACTIONS(3312), + [anon_sym_co_yield] = ACTIONS(3312), + [anon_sym_R_DQUOTE] = ACTIONS(3317), + [anon_sym_LR_DQUOTE] = ACTIONS(3317), + [anon_sym_uR_DQUOTE] = ACTIONS(3317), + [anon_sym_UR_DQUOTE] = ACTIONS(3317), + [anon_sym_u8R_DQUOTE] = ACTIONS(3317), + [anon_sym_co_await] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_requires] = ACTIONS(3312), + [anon_sym_CARET_CARET] = ACTIONS(3317), + [anon_sym_LBRACK_COLON] = ACTIONS(3317), + [sym_this] = ACTIONS(3312), }, - [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), + [STATE(1263)] = { + [sym_identifier] = ACTIONS(3478), + [anon_sym_LPAREN2] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(3480), + [anon_sym_AMP] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym___extension__] = ACTIONS(3478), + [anon_sym_typedef] = ACTIONS(3478), + [anon_sym_virtual] = ACTIONS(3478), + [anon_sym_extern] = ACTIONS(3478), + [anon_sym___attribute__] = ACTIONS(3478), + [anon_sym___attribute] = ACTIONS(3478), + [anon_sym_COLON_COLON] = ACTIONS(3480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3480), + [anon_sym___declspec] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_signed] = ACTIONS(3478), + [anon_sym_unsigned] = ACTIONS(3478), + [anon_sym_long] = ACTIONS(3478), + [anon_sym_short] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_register] = ACTIONS(3478), + [anon_sym_inline] = ACTIONS(3478), + [anon_sym___inline] = ACTIONS(3478), + [anon_sym___inline__] = ACTIONS(3478), + [anon_sym___forceinline] = ACTIONS(3478), + [anon_sym_thread_local] = ACTIONS(3478), + [anon_sym___thread] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_constexpr] = ACTIONS(3478), + [anon_sym_volatile] = ACTIONS(3478), + [anon_sym_restrict] = ACTIONS(3478), + [anon_sym___restrict__] = ACTIONS(3478), + [anon_sym__Atomic] = ACTIONS(3478), + [anon_sym__Noreturn] = ACTIONS(3478), + [anon_sym_noreturn] = ACTIONS(3478), + [anon_sym__Nonnull] = ACTIONS(3478), + [anon_sym_mutable] = ACTIONS(3478), + [anon_sym_constinit] = ACTIONS(3478), + [anon_sym_consteval] = ACTIONS(3478), + [anon_sym_alignas] = ACTIONS(3478), + [anon_sym__Alignas] = ACTIONS(3478), + [sym_primitive_type] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_struct] = ACTIONS(3478), + [anon_sym_union] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_goto] = ACTIONS(3478), + [anon_sym___try] = ACTIONS(3478), + [anon_sym___leave] = ACTIONS(3478), + [anon_sym_not] = ACTIONS(3478), + [anon_sym_compl] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_sizeof] = ACTIONS(3478), + [anon_sym___alignof__] = ACTIONS(3478), + [anon_sym___alignof] = ACTIONS(3478), + [anon_sym__alignof] = ACTIONS(3478), + [anon_sym_alignof] = ACTIONS(3478), + [anon_sym__Alignof] = ACTIONS(3478), + [anon_sym_offsetof] = ACTIONS(3478), + [anon_sym__Generic] = ACTIONS(3478), + [anon_sym_typename] = ACTIONS(3478), + [anon_sym_asm] = ACTIONS(3478), + [anon_sym___asm__] = ACTIONS(3478), + [anon_sym___asm] = ACTIONS(3478), + [sym_number_literal] = ACTIONS(3480), + [anon_sym_L_SQUOTE] = ACTIONS(3480), + [anon_sym_u_SQUOTE] = ACTIONS(3480), + [anon_sym_U_SQUOTE] = ACTIONS(3480), + [anon_sym_u8_SQUOTE] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3480), + [anon_sym_L_DQUOTE] = ACTIONS(3480), + [anon_sym_u_DQUOTE] = ACTIONS(3480), + [anon_sym_U_DQUOTE] = ACTIONS(3480), + [anon_sym_u8_DQUOTE] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [anon_sym_NULL] = ACTIONS(3478), + [anon_sym_nullptr] = ACTIONS(3478), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3478), + [anon_sym_decltype] = ACTIONS(3478), + [anon_sym_template] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_co_return] = ACTIONS(3478), + [anon_sym_co_yield] = ACTIONS(3478), + [anon_sym_R_DQUOTE] = ACTIONS(3480), + [anon_sym_LR_DQUOTE] = ACTIONS(3480), + [anon_sym_uR_DQUOTE] = ACTIONS(3480), + [anon_sym_UR_DQUOTE] = ACTIONS(3480), + [anon_sym_u8R_DQUOTE] = ACTIONS(3480), + [anon_sym_co_await] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_requires] = ACTIONS(3478), + [anon_sym_CARET_CARET] = ACTIONS(3480), + [anon_sym_LBRACK_COLON] = ACTIONS(3480), + [sym_this] = ACTIONS(3478), + }, + [STATE(1264)] = { + [sym_identifier] = 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] = ACTIONS(3700), + [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_COLON_COLON] = ACTIONS(3700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym___declspec] = 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_else] = ACTIONS(3698), + [anon_sym_switch] = 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_template] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_throw] = 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(1265)] = { + [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), - [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_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), }, - [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(1266)] = { + [sym_identifier] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym___try] = ACTIONS(3452), + [anon_sym___leave] = ACTIONS(3452), + [anon_sym_not] = ACTIONS(3452), + [anon_sym_compl] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym___alignof__] = ACTIONS(3452), + [anon_sym___alignof] = ACTIONS(3452), + [anon_sym__alignof] = ACTIONS(3452), + [anon_sym_alignof] = ACTIONS(3452), + [anon_sym__Alignof] = ACTIONS(3452), + [anon_sym_offsetof] = ACTIONS(3452), + [anon_sym__Generic] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym___asm__] = ACTIONS(3452), + [anon_sym___asm] = ACTIONS(3452), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_L_SQUOTE] = ACTIONS(3454), + [anon_sym_u_SQUOTE] = ACTIONS(3454), + [anon_sym_U_SQUOTE] = ACTIONS(3454), + [anon_sym_u8_SQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_L_DQUOTE] = ACTIONS(3454), + [anon_sym_u_DQUOTE] = ACTIONS(3454), + [anon_sym_U_DQUOTE] = ACTIONS(3454), + [anon_sym_u8_DQUOTE] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [anon_sym_NULL] = ACTIONS(3452), + [anon_sym_nullptr] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_co_return] = ACTIONS(3452), + [anon_sym_co_yield] = ACTIONS(3452), + [anon_sym_R_DQUOTE] = ACTIONS(3454), + [anon_sym_LR_DQUOTE] = ACTIONS(3454), + [anon_sym_uR_DQUOTE] = ACTIONS(3454), + [anon_sym_UR_DQUOTE] = ACTIONS(3454), + [anon_sym_u8R_DQUOTE] = ACTIONS(3454), + [anon_sym_co_await] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_requires] = ACTIONS(3452), + [anon_sym_CARET_CARET] = ACTIONS(3454), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + [sym_this] = ACTIONS(3452), }, - [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(1267)] = { + [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(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), + [STATE(1268)] = { + [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(1269)] = { + [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(1270)] = { + [sym_identifier] = ACTIONS(3672), + [anon_sym_LPAREN2] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_STAR] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3672), + [anon_sym_typedef] = ACTIONS(3672), + [anon_sym_virtual] = ACTIONS(3672), + [anon_sym_extern] = ACTIONS(3672), + [anon_sym___attribute__] = ACTIONS(3672), + [anon_sym___attribute] = ACTIONS(3672), + [anon_sym_COLON_COLON] = ACTIONS(3674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3674), + [anon_sym___declspec] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_signed] = ACTIONS(3672), + [anon_sym_unsigned] = ACTIONS(3672), + [anon_sym_long] = ACTIONS(3672), + [anon_sym_short] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_register] = ACTIONS(3672), + [anon_sym_inline] = ACTIONS(3672), + [anon_sym___inline] = ACTIONS(3672), + [anon_sym___inline__] = ACTIONS(3672), + [anon_sym___forceinline] = ACTIONS(3672), + [anon_sym_thread_local] = ACTIONS(3672), + [anon_sym___thread] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_constexpr] = ACTIONS(3672), + [anon_sym_volatile] = ACTIONS(3672), + [anon_sym_restrict] = ACTIONS(3672), + [anon_sym___restrict__] = ACTIONS(3672), + [anon_sym__Atomic] = ACTIONS(3672), + [anon_sym__Noreturn] = ACTIONS(3672), + [anon_sym_noreturn] = ACTIONS(3672), + [anon_sym__Nonnull] = ACTIONS(3672), + [anon_sym_mutable] = ACTIONS(3672), + [anon_sym_constinit] = ACTIONS(3672), + [anon_sym_consteval] = ACTIONS(3672), + [anon_sym_alignas] = ACTIONS(3672), + [anon_sym__Alignas] = ACTIONS(3672), + [sym_primitive_type] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_struct] = ACTIONS(3672), + [anon_sym_union] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_goto] = ACTIONS(3672), + [anon_sym___try] = ACTIONS(3672), + [anon_sym___leave] = ACTIONS(3672), + [anon_sym_not] = ACTIONS(3672), + [anon_sym_compl] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_sizeof] = ACTIONS(3672), + [anon_sym___alignof__] = ACTIONS(3672), + [anon_sym___alignof] = ACTIONS(3672), + [anon_sym__alignof] = ACTIONS(3672), + [anon_sym_alignof] = ACTIONS(3672), + [anon_sym__Alignof] = ACTIONS(3672), + [anon_sym_offsetof] = ACTIONS(3672), + [anon_sym__Generic] = ACTIONS(3672), + [anon_sym_typename] = ACTIONS(3672), + [anon_sym_asm] = ACTIONS(3672), + [anon_sym___asm__] = ACTIONS(3672), + [anon_sym___asm] = ACTIONS(3672), + [sym_number_literal] = ACTIONS(3674), + [anon_sym_L_SQUOTE] = ACTIONS(3674), + [anon_sym_u_SQUOTE] = ACTIONS(3674), + [anon_sym_U_SQUOTE] = ACTIONS(3674), + [anon_sym_u8_SQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_L_DQUOTE] = ACTIONS(3674), + [anon_sym_u_DQUOTE] = ACTIONS(3674), + [anon_sym_U_DQUOTE] = ACTIONS(3674), + [anon_sym_u8_DQUOTE] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [anon_sym_NULL] = ACTIONS(3672), + [anon_sym_nullptr] = ACTIONS(3672), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3672), + [anon_sym_decltype] = ACTIONS(3672), + [anon_sym_template] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_co_return] = ACTIONS(3672), + [anon_sym_co_yield] = ACTIONS(3672), + [anon_sym_R_DQUOTE] = ACTIONS(3674), + [anon_sym_LR_DQUOTE] = ACTIONS(3674), + [anon_sym_uR_DQUOTE] = ACTIONS(3674), + [anon_sym_UR_DQUOTE] = ACTIONS(3674), + [anon_sym_u8R_DQUOTE] = ACTIONS(3674), + [anon_sym_co_await] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_requires] = ACTIONS(3672), + [anon_sym_CARET_CARET] = ACTIONS(3674), + [anon_sym_LBRACK_COLON] = ACTIONS(3674), + [sym_this] = ACTIONS(3672), + }, + [STATE(1271)] = { + [sym_identifier] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_STAR] = ACTIONS(3584), + [anon_sym_AMP] = ACTIONS(3584), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym___extension__] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3582), + [anon_sym_virtual] = ACTIONS(3582), + [anon_sym_extern] = ACTIONS(3582), + [anon_sym___attribute__] = ACTIONS(3582), + [anon_sym___attribute] = ACTIONS(3582), + [anon_sym_COLON_COLON] = ACTIONS(3584), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3584), + [anon_sym___declspec] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_signed] = ACTIONS(3582), + [anon_sym_unsigned] = ACTIONS(3582), + [anon_sym_long] = ACTIONS(3582), + [anon_sym_short] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_register] = ACTIONS(3582), + [anon_sym_inline] = ACTIONS(3582), + [anon_sym___inline] = ACTIONS(3582), + [anon_sym___inline__] = ACTIONS(3582), + [anon_sym___forceinline] = ACTIONS(3582), + [anon_sym_thread_local] = ACTIONS(3582), + [anon_sym___thread] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_constexpr] = ACTIONS(3582), + [anon_sym_volatile] = ACTIONS(3582), + [anon_sym_restrict] = ACTIONS(3582), + [anon_sym___restrict__] = ACTIONS(3582), + [anon_sym__Atomic] = ACTIONS(3582), + [anon_sym__Noreturn] = ACTIONS(3582), + [anon_sym_noreturn] = ACTIONS(3582), + [anon_sym__Nonnull] = ACTIONS(3582), + [anon_sym_mutable] = ACTIONS(3582), + [anon_sym_constinit] = ACTIONS(3582), + [anon_sym_consteval] = ACTIONS(3582), + [anon_sym_alignas] = ACTIONS(3582), + [anon_sym__Alignas] = ACTIONS(3582), + [sym_primitive_type] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_struct] = ACTIONS(3582), + [anon_sym_union] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_else] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_goto] = ACTIONS(3582), + [anon_sym___try] = ACTIONS(3582), + [anon_sym___leave] = ACTIONS(3582), + [anon_sym_not] = ACTIONS(3582), + [anon_sym_compl] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_sizeof] = ACTIONS(3582), + [anon_sym___alignof__] = ACTIONS(3582), + [anon_sym___alignof] = ACTIONS(3582), + [anon_sym__alignof] = ACTIONS(3582), + [anon_sym_alignof] = ACTIONS(3582), + [anon_sym__Alignof] = ACTIONS(3582), + [anon_sym_offsetof] = ACTIONS(3582), + [anon_sym__Generic] = ACTIONS(3582), + [anon_sym_typename] = ACTIONS(3582), + [anon_sym_asm] = ACTIONS(3582), + [anon_sym___asm__] = ACTIONS(3582), + [anon_sym___asm] = ACTIONS(3582), + [sym_number_literal] = ACTIONS(3584), + [anon_sym_L_SQUOTE] = ACTIONS(3584), + [anon_sym_u_SQUOTE] = ACTIONS(3584), + [anon_sym_U_SQUOTE] = ACTIONS(3584), + [anon_sym_u8_SQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_L_DQUOTE] = ACTIONS(3584), + [anon_sym_u_DQUOTE] = ACTIONS(3584), + [anon_sym_U_DQUOTE] = ACTIONS(3584), + [anon_sym_u8_DQUOTE] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [anon_sym_NULL] = ACTIONS(3582), + [anon_sym_nullptr] = ACTIONS(3582), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(3582), + [anon_sym_template] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_co_return] = ACTIONS(3582), + [anon_sym_co_yield] = ACTIONS(3582), + [anon_sym_R_DQUOTE] = ACTIONS(3584), + [anon_sym_LR_DQUOTE] = ACTIONS(3584), + [anon_sym_uR_DQUOTE] = ACTIONS(3584), + [anon_sym_UR_DQUOTE] = ACTIONS(3584), + [anon_sym_u8R_DQUOTE] = ACTIONS(3584), + [anon_sym_co_await] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_requires] = ACTIONS(3582), + [anon_sym_CARET_CARET] = ACTIONS(3584), + [anon_sym_LBRACK_COLON] = ACTIONS(3584), + [sym_this] = ACTIONS(3582), + }, + [STATE(1272)] = { + [sym_identifier] = ACTIONS(3468), + [anon_sym_LPAREN2] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_PLUS] = ACTIONS(3468), + [anon_sym_STAR] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym___extension__] = ACTIONS(3468), + [anon_sym_typedef] = ACTIONS(3468), + [anon_sym_virtual] = ACTIONS(3468), + [anon_sym_extern] = ACTIONS(3468), + [anon_sym___attribute__] = ACTIONS(3468), + [anon_sym___attribute] = ACTIONS(3468), + [anon_sym_COLON_COLON] = ACTIONS(3470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3470), + [anon_sym___declspec] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_signed] = ACTIONS(3468), + [anon_sym_unsigned] = ACTIONS(3468), + [anon_sym_long] = ACTIONS(3468), + [anon_sym_short] = ACTIONS(3468), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3468), + [anon_sym_register] = ACTIONS(3468), + [anon_sym_inline] = ACTIONS(3468), + [anon_sym___inline] = ACTIONS(3468), + [anon_sym___inline__] = ACTIONS(3468), + [anon_sym___forceinline] = ACTIONS(3468), + [anon_sym_thread_local] = ACTIONS(3468), + [anon_sym___thread] = ACTIONS(3468), + [anon_sym_const] = ACTIONS(3468), + [anon_sym_constexpr] = ACTIONS(3468), + [anon_sym_volatile] = ACTIONS(3468), + [anon_sym_restrict] = ACTIONS(3468), + [anon_sym___restrict__] = ACTIONS(3468), + [anon_sym__Atomic] = ACTIONS(3468), + [anon_sym__Noreturn] = ACTIONS(3468), + [anon_sym_noreturn] = ACTIONS(3468), + [anon_sym__Nonnull] = ACTIONS(3468), + [anon_sym_mutable] = ACTIONS(3468), + [anon_sym_constinit] = ACTIONS(3468), + [anon_sym_consteval] = ACTIONS(3468), + [anon_sym_alignas] = ACTIONS(3468), + [anon_sym__Alignas] = ACTIONS(3468), + [sym_primitive_type] = ACTIONS(3468), + [anon_sym_enum] = ACTIONS(3468), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3468), + [anon_sym_union] = ACTIONS(3468), + [anon_sym_if] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3468), + [anon_sym_switch] = ACTIONS(3468), + [anon_sym_while] = ACTIONS(3468), + [anon_sym_do] = ACTIONS(3468), + [anon_sym_for] = ACTIONS(3468), + [anon_sym_return] = ACTIONS(3468), + [anon_sym_break] = ACTIONS(3468), + [anon_sym_continue] = ACTIONS(3468), + [anon_sym_goto] = ACTIONS(3468), + [anon_sym___try] = ACTIONS(3468), + [anon_sym___leave] = ACTIONS(3468), + [anon_sym_not] = ACTIONS(3468), + [anon_sym_compl] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3470), + [anon_sym_sizeof] = ACTIONS(3468), + [anon_sym___alignof__] = ACTIONS(3468), + [anon_sym___alignof] = ACTIONS(3468), + [anon_sym__alignof] = ACTIONS(3468), + [anon_sym_alignof] = ACTIONS(3468), + [anon_sym__Alignof] = ACTIONS(3468), + [anon_sym_offsetof] = ACTIONS(3468), + [anon_sym__Generic] = ACTIONS(3468), + [anon_sym_typename] = ACTIONS(3468), + [anon_sym_asm] = ACTIONS(3468), + [anon_sym___asm__] = ACTIONS(3468), + [anon_sym___asm] = ACTIONS(3468), + [sym_number_literal] = ACTIONS(3470), + [anon_sym_L_SQUOTE] = ACTIONS(3470), + [anon_sym_u_SQUOTE] = ACTIONS(3470), + [anon_sym_U_SQUOTE] = ACTIONS(3470), + [anon_sym_u8_SQUOTE] = ACTIONS(3470), + [anon_sym_SQUOTE] = ACTIONS(3470), + [anon_sym_L_DQUOTE] = ACTIONS(3470), + [anon_sym_u_DQUOTE] = ACTIONS(3470), + [anon_sym_U_DQUOTE] = ACTIONS(3470), + [anon_sym_u8_DQUOTE] = ACTIONS(3470), + [anon_sym_DQUOTE] = ACTIONS(3470), + [sym_true] = ACTIONS(3468), + [sym_false] = ACTIONS(3468), + [anon_sym_NULL] = ACTIONS(3468), + [anon_sym_nullptr] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3468), + [anon_sym_decltype] = ACTIONS(3468), + [anon_sym_template] = ACTIONS(3468), + [anon_sym_try] = ACTIONS(3468), + [anon_sym_delete] = ACTIONS(3468), + [anon_sym_throw] = ACTIONS(3468), + [anon_sym_co_return] = ACTIONS(3468), + [anon_sym_co_yield] = ACTIONS(3468), + [anon_sym_R_DQUOTE] = ACTIONS(3470), + [anon_sym_LR_DQUOTE] = ACTIONS(3470), + [anon_sym_uR_DQUOTE] = ACTIONS(3470), + [anon_sym_UR_DQUOTE] = ACTIONS(3470), + [anon_sym_u8R_DQUOTE] = ACTIONS(3470), + [anon_sym_co_await] = ACTIONS(3468), + [anon_sym_new] = ACTIONS(3468), + [anon_sym_requires] = ACTIONS(3468), + [anon_sym_CARET_CARET] = ACTIONS(3470), + [anon_sym_LBRACK_COLON] = ACTIONS(3470), + [sym_this] = ACTIONS(3468), + }, + [STATE(1273)] = { + [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(1274)] = { + [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(1275)] = { + [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(1276)] = { + [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(1277)] = { + [sym_identifier] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym___try] = ACTIONS(3570), + [anon_sym___leave] = ACTIONS(3570), + [anon_sym_not] = ACTIONS(3570), + [anon_sym_compl] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3570), + [anon_sym___alignof__] = ACTIONS(3570), + [anon_sym___alignof] = ACTIONS(3570), + [anon_sym__alignof] = ACTIONS(3570), + [anon_sym_alignof] = ACTIONS(3570), + [anon_sym__Alignof] = ACTIONS(3570), + [anon_sym_offsetof] = ACTIONS(3570), + [anon_sym__Generic] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym___asm__] = ACTIONS(3570), + [anon_sym___asm] = ACTIONS(3570), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_L_SQUOTE] = ACTIONS(3572), + [anon_sym_u_SQUOTE] = ACTIONS(3572), + [anon_sym_U_SQUOTE] = ACTIONS(3572), + [anon_sym_u8_SQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_L_DQUOTE] = ACTIONS(3572), + [anon_sym_u_DQUOTE] = ACTIONS(3572), + [anon_sym_U_DQUOTE] = ACTIONS(3572), + [anon_sym_u8_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [anon_sym_NULL] = ACTIONS(3570), + [anon_sym_nullptr] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_co_return] = ACTIONS(3570), + [anon_sym_co_yield] = ACTIONS(3570), + [anon_sym_R_DQUOTE] = ACTIONS(3572), + [anon_sym_LR_DQUOTE] = ACTIONS(3572), + [anon_sym_uR_DQUOTE] = ACTIONS(3572), + [anon_sym_UR_DQUOTE] = ACTIONS(3572), + [anon_sym_u8R_DQUOTE] = ACTIONS(3572), + [anon_sym_co_await] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_requires] = ACTIONS(3570), + [anon_sym_CARET_CARET] = ACTIONS(3572), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), + [sym_this] = ACTIONS(3570), + }, + [STATE(1278)] = { + [sym_identifier] = 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] = ACTIONS(3692), + [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_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3692), + [anon_sym___declspec] = 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_else] = ACTIONS(3690), + [anon_sym_switch] = 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_template] = ACTIONS(3690), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_delete] = ACTIONS(3690), + [anon_sym_throw] = 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(1279)] = { + [sym_identifier] = 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_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_COLON_COLON] = ACTIONS(3696), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3696), + [anon_sym___declspec] = 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_else] = ACTIONS(3694), + [anon_sym_switch] = 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_template] = ACTIONS(3694), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_delete] = ACTIONS(3694), + [anon_sym_throw] = 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(1280)] = { + [sym_identifier] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3452), + [anon_sym_switch] = ACTIONS(3452), + [anon_sym_while] = ACTIONS(3452), + [anon_sym_do] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym___try] = ACTIONS(3452), + [anon_sym___leave] = ACTIONS(3452), + [anon_sym_not] = ACTIONS(3452), + [anon_sym_compl] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_sizeof] = ACTIONS(3452), + [anon_sym___alignof__] = ACTIONS(3452), + [anon_sym___alignof] = ACTIONS(3452), + [anon_sym__alignof] = ACTIONS(3452), + [anon_sym_alignof] = ACTIONS(3452), + [anon_sym__Alignof] = ACTIONS(3452), + [anon_sym_offsetof] = ACTIONS(3452), + [anon_sym__Generic] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym___asm__] = ACTIONS(3452), + [anon_sym___asm] = ACTIONS(3452), + [sym_number_literal] = ACTIONS(3454), + [anon_sym_L_SQUOTE] = ACTIONS(3454), + [anon_sym_u_SQUOTE] = ACTIONS(3454), + [anon_sym_U_SQUOTE] = ACTIONS(3454), + [anon_sym_u8_SQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_L_DQUOTE] = ACTIONS(3454), + [anon_sym_u_DQUOTE] = ACTIONS(3454), + [anon_sym_U_DQUOTE] = ACTIONS(3454), + [anon_sym_u8_DQUOTE] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [anon_sym_NULL] = ACTIONS(3452), + [anon_sym_nullptr] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_try] = ACTIONS(3452), + [anon_sym_delete] = ACTIONS(3452), + [anon_sym_throw] = ACTIONS(3452), + [anon_sym_co_return] = ACTIONS(3452), + [anon_sym_co_yield] = ACTIONS(3452), + [anon_sym_R_DQUOTE] = ACTIONS(3454), + [anon_sym_LR_DQUOTE] = ACTIONS(3454), + [anon_sym_uR_DQUOTE] = ACTIONS(3454), + [anon_sym_UR_DQUOTE] = ACTIONS(3454), + [anon_sym_u8R_DQUOTE] = ACTIONS(3454), + [anon_sym_co_await] = ACTIONS(3452), + [anon_sym_new] = ACTIONS(3452), + [anon_sym_requires] = ACTIONS(3452), + [anon_sym_CARET_CARET] = ACTIONS(3454), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + [sym_this] = ACTIONS(3452), + }, + [STATE(1281)] = { + [sym_identifier] = ACTIONS(3196), + [anon_sym_LPAREN2] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym___extension__] = ACTIONS(3196), + [anon_sym_typedef] = ACTIONS(3196), + [anon_sym_virtual] = ACTIONS(3196), + [anon_sym_extern] = ACTIONS(3196), + [anon_sym___attribute__] = ACTIONS(3196), + [anon_sym___attribute] = ACTIONS(3196), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3201), + [anon_sym___declspec] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_signed] = ACTIONS(3196), + [anon_sym_unsigned] = ACTIONS(3196), + [anon_sym_long] = ACTIONS(3196), + [anon_sym_short] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_register] = ACTIONS(3196), + [anon_sym_inline] = ACTIONS(3196), + [anon_sym___inline] = ACTIONS(3196), + [anon_sym___inline__] = ACTIONS(3196), + [anon_sym___forceinline] = ACTIONS(3196), + [anon_sym_thread_local] = ACTIONS(3196), + [anon_sym___thread] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_constexpr] = ACTIONS(3196), + [anon_sym_volatile] = ACTIONS(3196), + [anon_sym_restrict] = ACTIONS(3196), + [anon_sym___restrict__] = ACTIONS(3196), + [anon_sym__Atomic] = ACTIONS(3196), + [anon_sym__Noreturn] = ACTIONS(3196), + [anon_sym_noreturn] = ACTIONS(3196), + [anon_sym__Nonnull] = ACTIONS(3196), + [anon_sym_mutable] = ACTIONS(3196), + [anon_sym_constinit] = ACTIONS(3196), + [anon_sym_consteval] = ACTIONS(3196), + [anon_sym_alignas] = ACTIONS(3196), + [anon_sym__Alignas] = ACTIONS(3196), + [sym_primitive_type] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), + [anon_sym_class] = ACTIONS(3196), + [anon_sym_struct] = ACTIONS(3196), + [anon_sym_union] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_do] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_goto] = ACTIONS(3196), + [anon_sym___try] = ACTIONS(3196), + [anon_sym___leave] = ACTIONS(3196), + [anon_sym_not] = ACTIONS(3196), + [anon_sym_compl] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3196), + [anon_sym___alignof__] = ACTIONS(3196), + [anon_sym___alignof] = ACTIONS(3196), + [anon_sym__alignof] = ACTIONS(3196), + [anon_sym_alignof] = ACTIONS(3196), + [anon_sym__Alignof] = ACTIONS(3196), + [anon_sym_offsetof] = ACTIONS(3196), + [anon_sym__Generic] = ACTIONS(3196), + [anon_sym_typename] = ACTIONS(3196), + [anon_sym_asm] = ACTIONS(3196), + [anon_sym___asm__] = ACTIONS(3196), + [anon_sym___asm] = ACTIONS(3196), + [sym_number_literal] = ACTIONS(3201), + [anon_sym_L_SQUOTE] = ACTIONS(3201), + [anon_sym_u_SQUOTE] = ACTIONS(3201), + [anon_sym_U_SQUOTE] = ACTIONS(3201), + [anon_sym_u8_SQUOTE] = ACTIONS(3201), + [anon_sym_SQUOTE] = ACTIONS(3201), + [anon_sym_L_DQUOTE] = ACTIONS(3201), + [anon_sym_u_DQUOTE] = ACTIONS(3201), + [anon_sym_U_DQUOTE] = ACTIONS(3201), + [anon_sym_u8_DQUOTE] = ACTIONS(3201), + [anon_sym_DQUOTE] = ACTIONS(3201), + [sym_true] = ACTIONS(3196), + [sym_false] = ACTIONS(3196), + [anon_sym_NULL] = ACTIONS(3196), + [anon_sym_nullptr] = ACTIONS(3196), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3196), + [anon_sym_decltype] = ACTIONS(3196), + [anon_sym_template] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_delete] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_co_return] = ACTIONS(3196), + [anon_sym_co_yield] = ACTIONS(3196), + [anon_sym_R_DQUOTE] = ACTIONS(3201), + [anon_sym_LR_DQUOTE] = ACTIONS(3201), + [anon_sym_uR_DQUOTE] = ACTIONS(3201), + [anon_sym_UR_DQUOTE] = ACTIONS(3201), + [anon_sym_u8R_DQUOTE] = ACTIONS(3201), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3196), + [anon_sym_requires] = ACTIONS(3196), + [anon_sym_CARET_CARET] = ACTIONS(3201), + [anon_sym_LBRACK_COLON] = ACTIONS(3201), + [sym_this] = ACTIONS(3196), + }, + [STATE(1282)] = { + [sym_identifier] = ACTIONS(3482), + [anon_sym_LPAREN2] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_STAR] = ACTIONS(3484), + [anon_sym_AMP] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym___extension__] = ACTIONS(3482), + [anon_sym_typedef] = ACTIONS(3482), + [anon_sym_virtual] = ACTIONS(3482), + [anon_sym_extern] = ACTIONS(3482), + [anon_sym___attribute__] = ACTIONS(3482), + [anon_sym___attribute] = ACTIONS(3482), + [anon_sym_COLON_COLON] = ACTIONS(3484), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3484), + [anon_sym___declspec] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_signed] = ACTIONS(3482), + [anon_sym_unsigned] = ACTIONS(3482), + [anon_sym_long] = ACTIONS(3482), + [anon_sym_short] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_register] = ACTIONS(3482), + [anon_sym_inline] = ACTIONS(3482), + [anon_sym___inline] = ACTIONS(3482), + [anon_sym___inline__] = ACTIONS(3482), + [anon_sym___forceinline] = ACTIONS(3482), + [anon_sym_thread_local] = ACTIONS(3482), + [anon_sym___thread] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_constexpr] = ACTIONS(3482), + [anon_sym_volatile] = ACTIONS(3482), + [anon_sym_restrict] = ACTIONS(3482), + [anon_sym___restrict__] = ACTIONS(3482), + [anon_sym__Atomic] = ACTIONS(3482), + [anon_sym__Noreturn] = ACTIONS(3482), + [anon_sym_noreturn] = ACTIONS(3482), + [anon_sym__Nonnull] = ACTIONS(3482), + [anon_sym_mutable] = ACTIONS(3482), + [anon_sym_constinit] = ACTIONS(3482), + [anon_sym_consteval] = ACTIONS(3482), + [anon_sym_alignas] = ACTIONS(3482), + [anon_sym__Alignas] = ACTIONS(3482), + [sym_primitive_type] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_struct] = ACTIONS(3482), + [anon_sym_union] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_goto] = ACTIONS(3482), + [anon_sym___try] = ACTIONS(3482), + [anon_sym___leave] = ACTIONS(3482), + [anon_sym_not] = ACTIONS(3482), + [anon_sym_compl] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_sizeof] = ACTIONS(3482), + [anon_sym___alignof__] = ACTIONS(3482), + [anon_sym___alignof] = ACTIONS(3482), + [anon_sym__alignof] = ACTIONS(3482), + [anon_sym_alignof] = ACTIONS(3482), + [anon_sym__Alignof] = ACTIONS(3482), + [anon_sym_offsetof] = ACTIONS(3482), + [anon_sym__Generic] = ACTIONS(3482), + [anon_sym_typename] = ACTIONS(3482), + [anon_sym_asm] = ACTIONS(3482), + [anon_sym___asm__] = ACTIONS(3482), + [anon_sym___asm] = ACTIONS(3482), + [sym_number_literal] = ACTIONS(3484), + [anon_sym_L_SQUOTE] = ACTIONS(3484), + [anon_sym_u_SQUOTE] = ACTIONS(3484), + [anon_sym_U_SQUOTE] = ACTIONS(3484), + [anon_sym_u8_SQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [anon_sym_L_DQUOTE] = ACTIONS(3484), + [anon_sym_u_DQUOTE] = ACTIONS(3484), + [anon_sym_U_DQUOTE] = ACTIONS(3484), + [anon_sym_u8_DQUOTE] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [sym_true] = ACTIONS(3482), + [sym_false] = ACTIONS(3482), + [anon_sym_NULL] = ACTIONS(3482), + [anon_sym_nullptr] = ACTIONS(3482), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3482), + [anon_sym_decltype] = ACTIONS(3482), + [anon_sym_template] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_delete] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_co_return] = ACTIONS(3482), + [anon_sym_co_yield] = ACTIONS(3482), + [anon_sym_R_DQUOTE] = ACTIONS(3484), + [anon_sym_LR_DQUOTE] = ACTIONS(3484), + [anon_sym_uR_DQUOTE] = ACTIONS(3484), + [anon_sym_UR_DQUOTE] = ACTIONS(3484), + [anon_sym_u8R_DQUOTE] = ACTIONS(3484), + [anon_sym_co_await] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_requires] = ACTIONS(3482), + [anon_sym_CARET_CARET] = ACTIONS(3484), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(3482), + }, + [STATE(1283)] = { + [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(1284)] = { + [sym_identifier] = ACTIONS(3590), + [anon_sym_LPAREN2] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(3592), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym___extension__] = ACTIONS(3590), + [anon_sym_typedef] = ACTIONS(3590), + [anon_sym_virtual] = ACTIONS(3590), + [anon_sym_extern] = ACTIONS(3590), + [anon_sym___attribute__] = ACTIONS(3590), + [anon_sym___attribute] = ACTIONS(3590), + [anon_sym_COLON_COLON] = ACTIONS(3592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3592), + [anon_sym___declspec] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_signed] = ACTIONS(3590), + [anon_sym_unsigned] = ACTIONS(3590), + [anon_sym_long] = ACTIONS(3590), + [anon_sym_short] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_register] = ACTIONS(3590), + [anon_sym_inline] = ACTIONS(3590), + [anon_sym___inline] = ACTIONS(3590), + [anon_sym___inline__] = ACTIONS(3590), + [anon_sym___forceinline] = ACTIONS(3590), + [anon_sym_thread_local] = ACTIONS(3590), + [anon_sym___thread] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_constexpr] = ACTIONS(3590), + [anon_sym_volatile] = ACTIONS(3590), + [anon_sym_restrict] = ACTIONS(3590), + [anon_sym___restrict__] = ACTIONS(3590), + [anon_sym__Atomic] = ACTIONS(3590), + [anon_sym__Noreturn] = ACTIONS(3590), + [anon_sym_noreturn] = ACTIONS(3590), + [anon_sym__Nonnull] = ACTIONS(3590), + [anon_sym_mutable] = ACTIONS(3590), + [anon_sym_constinit] = ACTIONS(3590), + [anon_sym_consteval] = ACTIONS(3590), + [anon_sym_alignas] = ACTIONS(3590), + [anon_sym__Alignas] = ACTIONS(3590), + [sym_primitive_type] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_struct] = ACTIONS(3590), + [anon_sym_union] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_else] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_goto] = ACTIONS(3590), + [anon_sym___try] = ACTIONS(3590), + [anon_sym___leave] = ACTIONS(3590), + [anon_sym_not] = ACTIONS(3590), + [anon_sym_compl] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_sizeof] = ACTIONS(3590), + [anon_sym___alignof__] = ACTIONS(3590), + [anon_sym___alignof] = ACTIONS(3590), + [anon_sym__alignof] = ACTIONS(3590), + [anon_sym_alignof] = ACTIONS(3590), + [anon_sym__Alignof] = ACTIONS(3590), + [anon_sym_offsetof] = ACTIONS(3590), + [anon_sym__Generic] = ACTIONS(3590), + [anon_sym_typename] = ACTIONS(3590), + [anon_sym_asm] = ACTIONS(3590), + [anon_sym___asm__] = ACTIONS(3590), + [anon_sym___asm] = ACTIONS(3590), + [sym_number_literal] = ACTIONS(3592), + [anon_sym_L_SQUOTE] = ACTIONS(3592), + [anon_sym_u_SQUOTE] = ACTIONS(3592), + [anon_sym_U_SQUOTE] = ACTIONS(3592), + [anon_sym_u8_SQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_L_DQUOTE] = ACTIONS(3592), + [anon_sym_u_DQUOTE] = ACTIONS(3592), + [anon_sym_U_DQUOTE] = ACTIONS(3592), + [anon_sym_u8_DQUOTE] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [anon_sym_NULL] = ACTIONS(3590), + [anon_sym_nullptr] = ACTIONS(3590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3590), + [anon_sym_decltype] = ACTIONS(3590), + [anon_sym_template] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_co_return] = ACTIONS(3590), + [anon_sym_co_yield] = ACTIONS(3590), + [anon_sym_R_DQUOTE] = ACTIONS(3592), + [anon_sym_LR_DQUOTE] = ACTIONS(3592), + [anon_sym_uR_DQUOTE] = ACTIONS(3592), + [anon_sym_UR_DQUOTE] = ACTIONS(3592), + [anon_sym_u8R_DQUOTE] = ACTIONS(3592), + [anon_sym_co_await] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_requires] = ACTIONS(3590), + [anon_sym_CARET_CARET] = ACTIONS(3592), + [anon_sym_LBRACK_COLON] = ACTIONS(3592), + [sym_this] = ACTIONS(3590), + }, + [STATE(1285)] = { + [sym_identifier] = ACTIONS(3464), + [anon_sym_LPAREN2] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym___extension__] = ACTIONS(3464), + [anon_sym_typedef] = ACTIONS(3464), + [anon_sym_virtual] = ACTIONS(3464), + [anon_sym_extern] = ACTIONS(3464), + [anon_sym___attribute__] = ACTIONS(3464), + [anon_sym___attribute] = ACTIONS(3464), + [anon_sym_COLON_COLON] = ACTIONS(3466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3466), + [anon_sym___declspec] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3466), + [anon_sym_signed] = ACTIONS(3464), + [anon_sym_unsigned] = ACTIONS(3464), + [anon_sym_long] = ACTIONS(3464), + [anon_sym_short] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_register] = ACTIONS(3464), + [anon_sym_inline] = ACTIONS(3464), + [anon_sym___inline] = ACTIONS(3464), + [anon_sym___inline__] = ACTIONS(3464), + [anon_sym___forceinline] = ACTIONS(3464), + [anon_sym_thread_local] = ACTIONS(3464), + [anon_sym___thread] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_constexpr] = ACTIONS(3464), + [anon_sym_volatile] = ACTIONS(3464), + [anon_sym_restrict] = ACTIONS(3464), + [anon_sym___restrict__] = ACTIONS(3464), + [anon_sym__Atomic] = ACTIONS(3464), + [anon_sym__Noreturn] = ACTIONS(3464), + [anon_sym_noreturn] = ACTIONS(3464), + [anon_sym__Nonnull] = ACTIONS(3464), + [anon_sym_mutable] = ACTIONS(3464), + [anon_sym_constinit] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_alignas] = ACTIONS(3464), + [anon_sym__Alignas] = ACTIONS(3464), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_struct] = ACTIONS(3464), + [anon_sym_union] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_goto] = ACTIONS(3464), + [anon_sym___try] = ACTIONS(3464), + [anon_sym___leave] = ACTIONS(3464), + [anon_sym_not] = ACTIONS(3464), + [anon_sym_compl] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3466), + [anon_sym_sizeof] = ACTIONS(3464), + [anon_sym___alignof__] = ACTIONS(3464), + [anon_sym___alignof] = ACTIONS(3464), + [anon_sym__alignof] = ACTIONS(3464), + [anon_sym_alignof] = ACTIONS(3464), + [anon_sym__Alignof] = ACTIONS(3464), + [anon_sym_offsetof] = ACTIONS(3464), + [anon_sym__Generic] = ACTIONS(3464), + [anon_sym_typename] = ACTIONS(3464), + [anon_sym_asm] = ACTIONS(3464), + [anon_sym___asm__] = ACTIONS(3464), + [anon_sym___asm] = ACTIONS(3464), + [sym_number_literal] = ACTIONS(3466), + [anon_sym_L_SQUOTE] = ACTIONS(3466), + [anon_sym_u_SQUOTE] = ACTIONS(3466), + [anon_sym_U_SQUOTE] = ACTIONS(3466), + [anon_sym_u8_SQUOTE] = ACTIONS(3466), + [anon_sym_SQUOTE] = ACTIONS(3466), + [anon_sym_L_DQUOTE] = ACTIONS(3466), + [anon_sym_u_DQUOTE] = ACTIONS(3466), + [anon_sym_U_DQUOTE] = ACTIONS(3466), + [anon_sym_u8_DQUOTE] = ACTIONS(3466), + [anon_sym_DQUOTE] = ACTIONS(3466), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [anon_sym_NULL] = ACTIONS(3464), + [anon_sym_nullptr] = ACTIONS(3464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3464), + [anon_sym_decltype] = ACTIONS(3464), + [anon_sym_template] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_co_return] = ACTIONS(3464), + [anon_sym_co_yield] = ACTIONS(3464), + [anon_sym_R_DQUOTE] = ACTIONS(3466), + [anon_sym_LR_DQUOTE] = ACTIONS(3466), + [anon_sym_uR_DQUOTE] = ACTIONS(3466), + [anon_sym_UR_DQUOTE] = ACTIONS(3466), + [anon_sym_u8R_DQUOTE] = ACTIONS(3466), + [anon_sym_co_await] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_requires] = ACTIONS(3464), + [anon_sym_CARET_CARET] = ACTIONS(3466), + [anon_sym_LBRACK_COLON] = ACTIONS(3466), + [sym_this] = ACTIONS(3464), + }, + [STATE(1286)] = { + [sym_expression] = STATE(7799), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_lambda_default_capture] = STATE(11746), + [sym__lambda_capture_identifier] = STATE(11279), + [sym_lambda_capture_initializer] = STATE(11279), + [sym__lambda_capture] = STATE(11279), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_identifier_parameter_pack_expansion] = STATE(11279), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6430), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(5964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5952), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(5954), + [anon_sym_AMP] = ACTIONS(5956), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(5958), + [anon_sym_EQ] = ACTIONS(5960), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(5962), }, - [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(1287)] = { + [sym_identifier] = ACTIONS(5627), + [anon_sym_LPAREN2] = ACTIONS(5633), + [anon_sym_BANG] = ACTIONS(5633), + [anon_sym_TILDE] = ACTIONS(5633), + [anon_sym_DASH] = ACTIONS(5635), + [anon_sym_PLUS] = ACTIONS(5635), + [anon_sym_STAR] = ACTIONS(5633), + [anon_sym_AMP] = ACTIONS(5633), + [anon_sym_SEMI] = ACTIONS(5633), + [anon_sym___extension__] = ACTIONS(5627), + [anon_sym_virtual] = ACTIONS(5639), + [anon_sym_extern] = ACTIONS(5639), + [anon_sym___attribute__] = ACTIONS(5639), + [anon_sym___attribute] = ACTIONS(5639), + [anon_sym_COLON_COLON] = ACTIONS(5630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5630), + [anon_sym___declspec] = ACTIONS(5639), + [anon_sym_LBRACE] = ACTIONS(5633), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5635), + [anon_sym_static] = ACTIONS(5639), + [anon_sym_register] = ACTIONS(5639), + [anon_sym_inline] = ACTIONS(5639), + [anon_sym___inline] = ACTIONS(5639), + [anon_sym___inline__] = ACTIONS(5639), + [anon_sym___forceinline] = ACTIONS(5639), + [anon_sym_thread_local] = ACTIONS(5639), + [anon_sym___thread] = ACTIONS(5639), + [anon_sym_const] = ACTIONS(5639), + [anon_sym_constexpr] = ACTIONS(5639), + [anon_sym_volatile] = ACTIONS(5639), + [anon_sym_restrict] = ACTIONS(5639), + [anon_sym___restrict__] = ACTIONS(5639), + [anon_sym__Atomic] = ACTIONS(5639), + [anon_sym__Noreturn] = ACTIONS(5639), + [anon_sym_noreturn] = ACTIONS(5639), + [anon_sym__Nonnull] = ACTIONS(5639), + [anon_sym_mutable] = ACTIONS(5639), + [anon_sym_constinit] = ACTIONS(5639), + [anon_sym_consteval] = ACTIONS(5639), + [anon_sym_alignas] = ACTIONS(5639), + [anon_sym__Alignas] = ACTIONS(5639), + [sym_primitive_type] = ACTIONS(5627), + [anon_sym_enum] = ACTIONS(5639), + [anon_sym_class] = ACTIONS(5639), + [anon_sym_struct] = ACTIONS(5639), + [anon_sym_union] = ACTIONS(5639), + [anon_sym_if] = ACTIONS(5635), + [anon_sym_switch] = ACTIONS(5635), + [anon_sym_case] = ACTIONS(5635), + [anon_sym_default] = ACTIONS(5635), + [anon_sym_while] = ACTIONS(5635), + [anon_sym_do] = ACTIONS(5635), + [anon_sym_for] = ACTIONS(5635), + [anon_sym_return] = ACTIONS(5635), + [anon_sym_break] = ACTIONS(5635), + [anon_sym_continue] = ACTIONS(5635), + [anon_sym_goto] = ACTIONS(5635), + [anon_sym___try] = ACTIONS(5635), + [anon_sym___leave] = ACTIONS(5635), + [anon_sym_not] = ACTIONS(5635), + [anon_sym_compl] = ACTIONS(5635), + [anon_sym_DASH_DASH] = ACTIONS(5633), + [anon_sym_PLUS_PLUS] = ACTIONS(5633), + [anon_sym_sizeof] = ACTIONS(5635), + [anon_sym___alignof__] = ACTIONS(5635), + [anon_sym___alignof] = ACTIONS(5635), + [anon_sym__alignof] = ACTIONS(5635), + [anon_sym_alignof] = ACTIONS(5635), + [anon_sym__Alignof] = ACTIONS(5635), + [anon_sym_offsetof] = ACTIONS(5635), + [anon_sym__Generic] = ACTIONS(5635), + [anon_sym_typename] = ACTIONS(5627), + [anon_sym_asm] = ACTIONS(5635), + [anon_sym___asm__] = ACTIONS(5635), + [anon_sym___asm] = ACTIONS(5635), + [sym_number_literal] = ACTIONS(5633), + [anon_sym_L_SQUOTE] = ACTIONS(5633), + [anon_sym_u_SQUOTE] = ACTIONS(5633), + [anon_sym_U_SQUOTE] = ACTIONS(5633), + [anon_sym_u8_SQUOTE] = ACTIONS(5633), + [anon_sym_SQUOTE] = ACTIONS(5633), + [anon_sym_L_DQUOTE] = ACTIONS(5633), + [anon_sym_u_DQUOTE] = ACTIONS(5633), + [anon_sym_U_DQUOTE] = ACTIONS(5633), + [anon_sym_u8_DQUOTE] = ACTIONS(5633), + [anon_sym_DQUOTE] = ACTIONS(5633), + [sym_true] = ACTIONS(5635), + [sym_false] = ACTIONS(5635), + [anon_sym_NULL] = ACTIONS(5635), + [anon_sym_nullptr] = ACTIONS(5635), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5639), + [anon_sym_decltype] = ACTIONS(5627), + [anon_sym_template] = ACTIONS(5627), + [anon_sym_try] = ACTIONS(5635), + [anon_sym_delete] = ACTIONS(5635), + [anon_sym_throw] = ACTIONS(5635), + [anon_sym_co_return] = ACTIONS(5635), + [anon_sym_co_yield] = ACTIONS(5635), + [anon_sym_R_DQUOTE] = ACTIONS(5633), + [anon_sym_LR_DQUOTE] = ACTIONS(5633), + [anon_sym_uR_DQUOTE] = ACTIONS(5633), + [anon_sym_UR_DQUOTE] = ACTIONS(5633), + [anon_sym_u8R_DQUOTE] = ACTIONS(5633), + [anon_sym_co_await] = ACTIONS(5635), + [anon_sym_new] = ACTIONS(5635), + [anon_sym_requires] = ACTIONS(5635), + [anon_sym_CARET_CARET] = ACTIONS(5633), + [anon_sym_LBRACK_COLON] = ACTIONS(5630), + [sym_this] = ACTIONS(5635), + }, + [STATE(1288)] = { + [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(1289)] = { + [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(1290)] = { + [sym_expression] = STATE(7587), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11521), + [sym_initializer_pair] = STATE(11521), + [sym_subscript_designator] = STATE(10276), + [sym_subscript_range_designator] = STATE(10276), + [sym_field_designator] = STATE(10276), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [aux_sym_initializer_pair_repeat1] = STATE(10276), + [sym_identifier] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_LBRACK] = ACTIONS(5720), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -240959,10 +241387,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(2726), [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), @@ -240991,842 +241420,2149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [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), - [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(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), - [sym_this] = ACTIONS(237), + [STATE(1291)] = { + [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(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), - [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(1292)] = { + [sym_identifier] = 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] = ACTIONS(3684), + [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_COLON_COLON] = ACTIONS(3684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = 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_else] = ACTIONS(3682), + [anon_sym_switch] = 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_template] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_throw] = 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(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), - [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), - [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(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), - [sym_this] = ACTIONS(237), + [STATE(1293)] = { + [sym_identifier] = 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] = ACTIONS(3688), + [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_COLON_COLON] = ACTIONS(3688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3688), + [anon_sym___declspec] = 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_else] = ACTIONS(3686), + [anon_sym_switch] = 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_template] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_throw] = 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(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(1294)] = { + [sym_identifier] = ACTIONS(3456), + [anon_sym_LPAREN2] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3456), + [anon_sym_PLUS] = ACTIONS(3456), + [anon_sym_STAR] = ACTIONS(3458), + [anon_sym_AMP] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3458), + [anon_sym___extension__] = ACTIONS(3456), + [anon_sym_typedef] = ACTIONS(3456), + [anon_sym_virtual] = ACTIONS(3456), + [anon_sym_extern] = ACTIONS(3456), + [anon_sym___attribute__] = ACTIONS(3456), + [anon_sym___attribute] = ACTIONS(3456), + [anon_sym_COLON_COLON] = ACTIONS(3458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3458), + [anon_sym___declspec] = ACTIONS(3456), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_signed] = ACTIONS(3456), + [anon_sym_unsigned] = ACTIONS(3456), + [anon_sym_long] = ACTIONS(3456), + [anon_sym_short] = ACTIONS(3456), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3456), + [anon_sym_register] = ACTIONS(3456), + [anon_sym_inline] = ACTIONS(3456), + [anon_sym___inline] = ACTIONS(3456), + [anon_sym___inline__] = ACTIONS(3456), + [anon_sym___forceinline] = ACTIONS(3456), + [anon_sym_thread_local] = ACTIONS(3456), + [anon_sym___thread] = ACTIONS(3456), + [anon_sym_const] = ACTIONS(3456), + [anon_sym_constexpr] = ACTIONS(3456), + [anon_sym_volatile] = ACTIONS(3456), + [anon_sym_restrict] = ACTIONS(3456), + [anon_sym___restrict__] = ACTIONS(3456), + [anon_sym__Atomic] = ACTIONS(3456), + [anon_sym__Noreturn] = ACTIONS(3456), + [anon_sym_noreturn] = ACTIONS(3456), + [anon_sym__Nonnull] = ACTIONS(3456), + [anon_sym_mutable] = ACTIONS(3456), + [anon_sym_constinit] = ACTIONS(3456), + [anon_sym_consteval] = ACTIONS(3456), + [anon_sym_alignas] = ACTIONS(3456), + [anon_sym__Alignas] = ACTIONS(3456), + [sym_primitive_type] = ACTIONS(3456), + [anon_sym_enum] = ACTIONS(3456), + [anon_sym_class] = ACTIONS(3456), + [anon_sym_struct] = ACTIONS(3456), + [anon_sym_union] = ACTIONS(3456), + [anon_sym_if] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3456), + [anon_sym_switch] = ACTIONS(3456), + [anon_sym_while] = ACTIONS(3456), + [anon_sym_do] = ACTIONS(3456), + [anon_sym_for] = ACTIONS(3456), + [anon_sym_return] = ACTIONS(3456), + [anon_sym_break] = ACTIONS(3456), + [anon_sym_continue] = ACTIONS(3456), + [anon_sym_goto] = ACTIONS(3456), + [anon_sym___try] = ACTIONS(3456), + [anon_sym___leave] = ACTIONS(3456), + [anon_sym_not] = ACTIONS(3456), + [anon_sym_compl] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3458), + [anon_sym_sizeof] = ACTIONS(3456), + [anon_sym___alignof__] = ACTIONS(3456), + [anon_sym___alignof] = ACTIONS(3456), + [anon_sym__alignof] = ACTIONS(3456), + [anon_sym_alignof] = ACTIONS(3456), + [anon_sym__Alignof] = ACTIONS(3456), + [anon_sym_offsetof] = ACTIONS(3456), + [anon_sym__Generic] = ACTIONS(3456), + [anon_sym_typename] = ACTIONS(3456), + [anon_sym_asm] = ACTIONS(3456), + [anon_sym___asm__] = ACTIONS(3456), + [anon_sym___asm] = ACTIONS(3456), + [sym_number_literal] = ACTIONS(3458), + [anon_sym_L_SQUOTE] = ACTIONS(3458), + [anon_sym_u_SQUOTE] = ACTIONS(3458), + [anon_sym_U_SQUOTE] = ACTIONS(3458), + [anon_sym_u8_SQUOTE] = ACTIONS(3458), + [anon_sym_SQUOTE] = ACTIONS(3458), + [anon_sym_L_DQUOTE] = ACTIONS(3458), + [anon_sym_u_DQUOTE] = ACTIONS(3458), + [anon_sym_U_DQUOTE] = ACTIONS(3458), + [anon_sym_u8_DQUOTE] = ACTIONS(3458), + [anon_sym_DQUOTE] = ACTIONS(3458), + [sym_true] = ACTIONS(3456), + [sym_false] = ACTIONS(3456), + [anon_sym_NULL] = ACTIONS(3456), + [anon_sym_nullptr] = ACTIONS(3456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3456), + [anon_sym_decltype] = ACTIONS(3456), + [anon_sym_template] = ACTIONS(3456), + [anon_sym_try] = ACTIONS(3456), + [anon_sym_delete] = ACTIONS(3456), + [anon_sym_throw] = ACTIONS(3456), + [anon_sym_co_return] = ACTIONS(3456), + [anon_sym_co_yield] = ACTIONS(3456), + [anon_sym_R_DQUOTE] = ACTIONS(3458), + [anon_sym_LR_DQUOTE] = ACTIONS(3458), + [anon_sym_uR_DQUOTE] = ACTIONS(3458), + [anon_sym_UR_DQUOTE] = ACTIONS(3458), + [anon_sym_u8R_DQUOTE] = ACTIONS(3458), + [anon_sym_co_await] = ACTIONS(3456), + [anon_sym_new] = ACTIONS(3456), + [anon_sym_requires] = ACTIONS(3456), + [anon_sym_CARET_CARET] = ACTIONS(3458), + [anon_sym_LBRACK_COLON] = ACTIONS(3458), + [sym_this] = ACTIONS(3456), }, - [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), - [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), + [STATE(1295)] = { + [sym_identifier] = ACTIONS(3444), + [anon_sym_LPAREN2] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(3444), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_virtual] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(3444), + [anon_sym___attribute__] = ACTIONS(3444), + [anon_sym___attribute] = ACTIONS(3444), + [anon_sym_COLON_COLON] = ACTIONS(3446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3446), + [anon_sym___declspec] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_signed] = ACTIONS(3444), + [anon_sym_unsigned] = ACTIONS(3444), + [anon_sym_long] = ACTIONS(3444), + [anon_sym_short] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_register] = ACTIONS(3444), + [anon_sym_inline] = ACTIONS(3444), + [anon_sym___inline] = ACTIONS(3444), + [anon_sym___inline__] = ACTIONS(3444), + [anon_sym___forceinline] = ACTIONS(3444), + [anon_sym_thread_local] = ACTIONS(3444), + [anon_sym___thread] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_constexpr] = ACTIONS(3444), + [anon_sym_volatile] = ACTIONS(3444), + [anon_sym_restrict] = ACTIONS(3444), + [anon_sym___restrict__] = ACTIONS(3444), + [anon_sym__Atomic] = ACTIONS(3444), + [anon_sym__Noreturn] = ACTIONS(3444), + [anon_sym_noreturn] = ACTIONS(3444), + [anon_sym__Nonnull] = ACTIONS(3444), + [anon_sym_mutable] = ACTIONS(3444), + [anon_sym_constinit] = ACTIONS(3444), + [anon_sym_consteval] = ACTIONS(3444), + [anon_sym_alignas] = ACTIONS(3444), + [anon_sym__Alignas] = ACTIONS(3444), + [sym_primitive_type] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_struct] = ACTIONS(3444), + [anon_sym_union] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_else] = ACTIONS(3444), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_goto] = ACTIONS(3444), + [anon_sym___try] = ACTIONS(3444), + [anon_sym___leave] = ACTIONS(3444), + [anon_sym_not] = ACTIONS(3444), + [anon_sym_compl] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_sizeof] = ACTIONS(3444), + [anon_sym___alignof__] = ACTIONS(3444), + [anon_sym___alignof] = ACTIONS(3444), + [anon_sym__alignof] = ACTIONS(3444), + [anon_sym_alignof] = ACTIONS(3444), + [anon_sym__Alignof] = ACTIONS(3444), + [anon_sym_offsetof] = ACTIONS(3444), + [anon_sym__Generic] = ACTIONS(3444), + [anon_sym_typename] = ACTIONS(3444), + [anon_sym_asm] = ACTIONS(3444), + [anon_sym___asm__] = ACTIONS(3444), + [anon_sym___asm] = ACTIONS(3444), + [sym_number_literal] = ACTIONS(3446), + [anon_sym_L_SQUOTE] = ACTIONS(3446), + [anon_sym_u_SQUOTE] = ACTIONS(3446), + [anon_sym_U_SQUOTE] = ACTIONS(3446), + [anon_sym_u8_SQUOTE] = ACTIONS(3446), + [anon_sym_SQUOTE] = ACTIONS(3446), + [anon_sym_L_DQUOTE] = ACTIONS(3446), + [anon_sym_u_DQUOTE] = ACTIONS(3446), + [anon_sym_U_DQUOTE] = ACTIONS(3446), + [anon_sym_u8_DQUOTE] = ACTIONS(3446), + [anon_sym_DQUOTE] = ACTIONS(3446), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [anon_sym_NULL] = ACTIONS(3444), + [anon_sym_nullptr] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3444), + [anon_sym_decltype] = ACTIONS(3444), + [anon_sym_template] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_delete] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_co_return] = ACTIONS(3444), + [anon_sym_co_yield] = ACTIONS(3444), + [anon_sym_R_DQUOTE] = ACTIONS(3446), + [anon_sym_LR_DQUOTE] = ACTIONS(3446), + [anon_sym_uR_DQUOTE] = ACTIONS(3446), + [anon_sym_UR_DQUOTE] = ACTIONS(3446), + [anon_sym_u8R_DQUOTE] = ACTIONS(3446), + [anon_sym_co_await] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_requires] = ACTIONS(3444), + [anon_sym_CARET_CARET] = ACTIONS(3446), + [anon_sym_LBRACK_COLON] = ACTIONS(3446), + [sym_this] = ACTIONS(3444), + }, + [STATE(1296)] = { + [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(1297)] = { + [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(1298)] = { + [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(1299)] = { + [sym_identifier] = ACTIONS(3474), + [anon_sym_LPAREN2] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_STAR] = ACTIONS(3476), + [anon_sym_AMP] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym___extension__] = ACTIONS(3474), + [anon_sym_typedef] = ACTIONS(3474), + [anon_sym_virtual] = ACTIONS(3474), + [anon_sym_extern] = ACTIONS(3474), + [anon_sym___attribute__] = ACTIONS(3474), + [anon_sym___attribute] = ACTIONS(3474), + [anon_sym_COLON_COLON] = ACTIONS(3476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3476), + [anon_sym___declspec] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_signed] = ACTIONS(3474), + [anon_sym_unsigned] = ACTIONS(3474), + [anon_sym_long] = ACTIONS(3474), + [anon_sym_short] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3474), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_register] = ACTIONS(3474), + [anon_sym_inline] = ACTIONS(3474), + [anon_sym___inline] = ACTIONS(3474), + [anon_sym___inline__] = ACTIONS(3474), + [anon_sym___forceinline] = ACTIONS(3474), + [anon_sym_thread_local] = ACTIONS(3474), + [anon_sym___thread] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_constexpr] = ACTIONS(3474), + [anon_sym_volatile] = ACTIONS(3474), + [anon_sym_restrict] = ACTIONS(3474), + [anon_sym___restrict__] = ACTIONS(3474), + [anon_sym__Atomic] = ACTIONS(3474), + [anon_sym__Noreturn] = ACTIONS(3474), + [anon_sym_noreturn] = ACTIONS(3474), + [anon_sym__Nonnull] = ACTIONS(3474), + [anon_sym_mutable] = ACTIONS(3474), + [anon_sym_constinit] = ACTIONS(3474), + [anon_sym_consteval] = ACTIONS(3474), + [anon_sym_alignas] = ACTIONS(3474), + [anon_sym__Alignas] = ACTIONS(3474), + [sym_primitive_type] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_struct] = ACTIONS(3474), + [anon_sym_union] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_else] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_goto] = ACTIONS(3474), + [anon_sym___try] = ACTIONS(3474), + [anon_sym___leave] = ACTIONS(3474), + [anon_sym_not] = ACTIONS(3474), + [anon_sym_compl] = ACTIONS(3474), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_sizeof] = ACTIONS(3474), + [anon_sym___alignof__] = ACTIONS(3474), + [anon_sym___alignof] = ACTIONS(3474), + [anon_sym__alignof] = ACTIONS(3474), + [anon_sym_alignof] = ACTIONS(3474), + [anon_sym__Alignof] = ACTIONS(3474), + [anon_sym_offsetof] = ACTIONS(3474), + [anon_sym__Generic] = ACTIONS(3474), + [anon_sym_typename] = ACTIONS(3474), + [anon_sym_asm] = ACTIONS(3474), + [anon_sym___asm__] = ACTIONS(3474), + [anon_sym___asm] = ACTIONS(3474), + [sym_number_literal] = ACTIONS(3476), + [anon_sym_L_SQUOTE] = ACTIONS(3476), + [anon_sym_u_SQUOTE] = ACTIONS(3476), + [anon_sym_U_SQUOTE] = ACTIONS(3476), + [anon_sym_u8_SQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_L_DQUOTE] = ACTIONS(3476), + [anon_sym_u_DQUOTE] = ACTIONS(3476), + [anon_sym_U_DQUOTE] = ACTIONS(3476), + [anon_sym_u8_DQUOTE] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [anon_sym_NULL] = ACTIONS(3474), + [anon_sym_nullptr] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3474), + [anon_sym_decltype] = ACTIONS(3474), + [anon_sym_template] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_co_return] = ACTIONS(3474), + [anon_sym_co_yield] = ACTIONS(3474), + [anon_sym_R_DQUOTE] = ACTIONS(3476), + [anon_sym_LR_DQUOTE] = ACTIONS(3476), + [anon_sym_uR_DQUOTE] = ACTIONS(3476), + [anon_sym_UR_DQUOTE] = ACTIONS(3476), + [anon_sym_u8R_DQUOTE] = ACTIONS(3476), + [anon_sym_co_await] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_requires] = ACTIONS(3474), + [anon_sym_CARET_CARET] = ACTIONS(3476), + [anon_sym_LBRACK_COLON] = ACTIONS(3476), + [sym_this] = ACTIONS(3474), + }, + [STATE(1300)] = { + [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(1301)] = { + [sym_identifier] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3570), + [anon_sym_PLUS] = ACTIONS(3570), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_if] = ACTIONS(3570), + [anon_sym_else] = ACTIONS(3570), + [anon_sym_switch] = ACTIONS(3570), + [anon_sym_while] = ACTIONS(3570), + [anon_sym_do] = ACTIONS(3570), + [anon_sym_for] = ACTIONS(3570), + [anon_sym_return] = ACTIONS(3570), + [anon_sym_break] = ACTIONS(3570), + [anon_sym_continue] = ACTIONS(3570), + [anon_sym_goto] = ACTIONS(3570), + [anon_sym___try] = ACTIONS(3570), + [anon_sym___leave] = ACTIONS(3570), + [anon_sym_not] = ACTIONS(3570), + [anon_sym_compl] = ACTIONS(3570), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_sizeof] = ACTIONS(3570), + [anon_sym___alignof__] = ACTIONS(3570), + [anon_sym___alignof] = ACTIONS(3570), + [anon_sym__alignof] = ACTIONS(3570), + [anon_sym_alignof] = ACTIONS(3570), + [anon_sym__Alignof] = ACTIONS(3570), + [anon_sym_offsetof] = ACTIONS(3570), + [anon_sym__Generic] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [anon_sym_asm] = ACTIONS(3570), + [anon_sym___asm__] = ACTIONS(3570), + [anon_sym___asm] = ACTIONS(3570), + [sym_number_literal] = ACTIONS(3572), + [anon_sym_L_SQUOTE] = ACTIONS(3572), + [anon_sym_u_SQUOTE] = ACTIONS(3572), + [anon_sym_U_SQUOTE] = ACTIONS(3572), + [anon_sym_u8_SQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_L_DQUOTE] = ACTIONS(3572), + [anon_sym_u_DQUOTE] = ACTIONS(3572), + [anon_sym_U_DQUOTE] = ACTIONS(3572), + [anon_sym_u8_DQUOTE] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [sym_true] = ACTIONS(3570), + [sym_false] = ACTIONS(3570), + [anon_sym_NULL] = ACTIONS(3570), + [anon_sym_nullptr] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_try] = ACTIONS(3570), + [anon_sym_delete] = ACTIONS(3570), + [anon_sym_throw] = ACTIONS(3570), + [anon_sym_co_return] = ACTIONS(3570), + [anon_sym_co_yield] = ACTIONS(3570), + [anon_sym_R_DQUOTE] = ACTIONS(3572), + [anon_sym_LR_DQUOTE] = ACTIONS(3572), + [anon_sym_uR_DQUOTE] = ACTIONS(3572), + [anon_sym_UR_DQUOTE] = ACTIONS(3572), + [anon_sym_u8R_DQUOTE] = ACTIONS(3572), + [anon_sym_co_await] = ACTIONS(3570), + [anon_sym_new] = ACTIONS(3570), + [anon_sym_requires] = ACTIONS(3570), + [anon_sym_CARET_CARET] = ACTIONS(3572), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), + [sym_this] = ACTIONS(3570), + }, + [STATE(1302)] = { + [sym_identifier] = 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] = ACTIONS(3680), + [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_COLON_COLON] = ACTIONS(3680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), + [anon_sym___declspec] = 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_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), - [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), + [sym_auto] = ACTIONS(3678), + [anon_sym_decltype] = ACTIONS(3678), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_throw] = 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(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(1303)] = { + [sym_identifier] = ACTIONS(3460), + [anon_sym_LPAREN2] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3460), + [anon_sym_PLUS] = ACTIONS(3460), + [anon_sym_STAR] = ACTIONS(3462), + [anon_sym_AMP] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3462), + [anon_sym___extension__] = ACTIONS(3460), + [anon_sym_typedef] = ACTIONS(3460), + [anon_sym_virtual] = ACTIONS(3460), + [anon_sym_extern] = ACTIONS(3460), + [anon_sym___attribute__] = ACTIONS(3460), + [anon_sym___attribute] = ACTIONS(3460), + [anon_sym_COLON_COLON] = ACTIONS(3462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3462), + [anon_sym___declspec] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_signed] = ACTIONS(3460), + [anon_sym_unsigned] = ACTIONS(3460), + [anon_sym_long] = ACTIONS(3460), + [anon_sym_short] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(3460), + [anon_sym_register] = ACTIONS(3460), + [anon_sym_inline] = ACTIONS(3460), + [anon_sym___inline] = ACTIONS(3460), + [anon_sym___inline__] = ACTIONS(3460), + [anon_sym___forceinline] = ACTIONS(3460), + [anon_sym_thread_local] = ACTIONS(3460), + [anon_sym___thread] = ACTIONS(3460), + [anon_sym_const] = ACTIONS(3460), + [anon_sym_constexpr] = ACTIONS(3460), + [anon_sym_volatile] = ACTIONS(3460), + [anon_sym_restrict] = ACTIONS(3460), + [anon_sym___restrict__] = ACTIONS(3460), + [anon_sym__Atomic] = ACTIONS(3460), + [anon_sym__Noreturn] = ACTIONS(3460), + [anon_sym_noreturn] = ACTIONS(3460), + [anon_sym__Nonnull] = ACTIONS(3460), + [anon_sym_mutable] = ACTIONS(3460), + [anon_sym_constinit] = ACTIONS(3460), + [anon_sym_consteval] = ACTIONS(3460), + [anon_sym_alignas] = ACTIONS(3460), + [anon_sym__Alignas] = ACTIONS(3460), + [sym_primitive_type] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), + [anon_sym_class] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(3460), + [anon_sym_union] = ACTIONS(3460), + [anon_sym_if] = ACTIONS(3460), + [anon_sym_else] = ACTIONS(3460), + [anon_sym_switch] = ACTIONS(3460), + [anon_sym_while] = ACTIONS(3460), + [anon_sym_do] = ACTIONS(3460), + [anon_sym_for] = ACTIONS(3460), + [anon_sym_return] = ACTIONS(3460), + [anon_sym_break] = ACTIONS(3460), + [anon_sym_continue] = ACTIONS(3460), + [anon_sym_goto] = ACTIONS(3460), + [anon_sym___try] = ACTIONS(3460), + [anon_sym___leave] = ACTIONS(3460), + [anon_sym_not] = ACTIONS(3460), + [anon_sym_compl] = ACTIONS(3460), + [anon_sym_DASH_DASH] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3462), + [anon_sym_sizeof] = ACTIONS(3460), + [anon_sym___alignof__] = ACTIONS(3460), + [anon_sym___alignof] = ACTIONS(3460), + [anon_sym__alignof] = ACTIONS(3460), + [anon_sym_alignof] = ACTIONS(3460), + [anon_sym__Alignof] = ACTIONS(3460), + [anon_sym_offsetof] = ACTIONS(3460), + [anon_sym__Generic] = ACTIONS(3460), + [anon_sym_typename] = ACTIONS(3460), + [anon_sym_asm] = ACTIONS(3460), + [anon_sym___asm__] = ACTIONS(3460), + [anon_sym___asm] = ACTIONS(3460), + [sym_number_literal] = ACTIONS(3462), + [anon_sym_L_SQUOTE] = ACTIONS(3462), + [anon_sym_u_SQUOTE] = ACTIONS(3462), + [anon_sym_U_SQUOTE] = ACTIONS(3462), + [anon_sym_u8_SQUOTE] = ACTIONS(3462), + [anon_sym_SQUOTE] = ACTIONS(3462), + [anon_sym_L_DQUOTE] = ACTIONS(3462), + [anon_sym_u_DQUOTE] = ACTIONS(3462), + [anon_sym_U_DQUOTE] = ACTIONS(3462), + [anon_sym_u8_DQUOTE] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(3462), + [sym_true] = ACTIONS(3460), + [sym_false] = ACTIONS(3460), + [anon_sym_NULL] = ACTIONS(3460), + [anon_sym_nullptr] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3460), + [anon_sym_decltype] = ACTIONS(3460), + [anon_sym_template] = ACTIONS(3460), + [anon_sym_try] = ACTIONS(3460), + [anon_sym_delete] = ACTIONS(3460), + [anon_sym_throw] = ACTIONS(3460), + [anon_sym_co_return] = ACTIONS(3460), + [anon_sym_co_yield] = ACTIONS(3460), + [anon_sym_R_DQUOTE] = ACTIONS(3462), + [anon_sym_LR_DQUOTE] = ACTIONS(3462), + [anon_sym_uR_DQUOTE] = ACTIONS(3462), + [anon_sym_UR_DQUOTE] = ACTIONS(3462), + [anon_sym_u8R_DQUOTE] = ACTIONS(3462), + [anon_sym_co_await] = ACTIONS(3460), + [anon_sym_new] = ACTIONS(3460), + [anon_sym_requires] = ACTIONS(3460), + [anon_sym_CARET_CARET] = ACTIONS(3462), + [anon_sym_LBRACK_COLON] = ACTIONS(3462), + [sym_this] = ACTIONS(3460), }, - [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), + [STATE(1304)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2194), + [sym_ms_pointer_modifier] = STATE(2122), + [sym__abstract_declarator] = STATE(3885), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2006), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1537), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9583), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2006), + [aux_sym_pointer_declarator_repeat1] = STATE(2122), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [aux_sym_preproc_if_token2] = ACTIONS(5968), + [aux_sym_preproc_else_token1] = ACTIONS(5968), + [aux_sym_preproc_elif_token1] = ACTIONS(5970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5968), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(5976), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(5982), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5968), + [sym_ms_restrict_modifier] = ACTIONS(5984), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5984), + [sym_ms_signed_ptr_modifier] = ACTIONS(5984), + [anon_sym__unaligned] = ACTIONS(5986), + [anon_sym___unaligned] = ACTIONS(5986), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), [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), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5968), }, - [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), + [STATE(1305)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2194), + [sym_ms_pointer_modifier] = STATE(1304), + [sym__abstract_declarator] = STATE(3882), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2012), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1537), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9583), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2012), + [aux_sym_pointer_declarator_repeat1] = STATE(1304), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [aux_sym_preproc_if_token2] = ACTIONS(5994), + [aux_sym_preproc_else_token1] = ACTIONS(5994), + [aux_sym_preproc_elif_token1] = ACTIONS(5996), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(5976), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(5982), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5994), + [sym_ms_restrict_modifier] = ACTIONS(5984), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5984), + [sym_ms_signed_ptr_modifier] = ACTIONS(5984), + [anon_sym__unaligned] = ACTIONS(5986), + [anon_sym___unaligned] = ACTIONS(5986), + [anon_sym_RBRACE] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5994), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_and_eq] = ACTIONS(5996), + [anon_sym_or_eq] = ACTIONS(5996), + [anon_sym_xor_eq] = ACTIONS(5996), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5994), + }, + [STATE(1306)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(6728), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11722), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5663), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5663), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5663), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5671), + [anon_sym_LT_LT] = ACTIONS(5663), + [anon_sym_GT_GT] = ACTIONS(5663), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(5671), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_typename] = ACTIONS(5192), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(1307)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_based_modifier] = STATE(12437), + [sym_ms_call_modifier] = STATE(7305), + [sym__type_declarator] = STATE(10242), + [sym__abstract_declarator] = STATE(10509), + [sym_parenthesized_type_declarator] = STATE(3501), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(3501), + [sym_pointer_type_declarator] = STATE(3478), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(3501), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(3501), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11014), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11014), + [sym_optional_parameter_declaration] = STATE(11014), + [sym_variadic_parameter_declaration] = STATE(11014), + [sym_reference_type_declarator] = STATE(3501), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(6000), + [anon_sym_STAR] = ACTIONS(6002), + [anon_sym_AMP_AMP] = ACTIONS(6004), + [anon_sym_AMP] = ACTIONS(6006), + [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(6008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(6010), + [anon_sym___clrcall] = ACTIONS(6010), + [anon_sym___stdcall] = ACTIONS(6010), + [anon_sym___fastcall] = ACTIONS(6010), + [anon_sym___thiscall] = ACTIONS(6010), + [anon_sym___vectorcall] = ACTIONS(6010), + [anon_sym_signed] = ACTIONS(6012), + [anon_sym_unsigned] = ACTIONS(6012), + [anon_sym_long] = ACTIONS(6012), + [anon_sym_short] = ACTIONS(6012), + [anon_sym_LBRACK] = ACTIONS(6014), + [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(6016), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), + }, + [STATE(1308)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_based_modifier] = STATE(12437), + [sym_ms_call_modifier] = STATE(7265), + [sym__type_declarator] = STATE(10208), + [sym__abstract_declarator] = STATE(10509), + [sym_parenthesized_type_declarator] = STATE(3501), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(3501), + [sym_pointer_type_declarator] = STATE(3478), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(3501), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(3501), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11014), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11014), + [sym_optional_parameter_declaration] = STATE(11014), + [sym_variadic_parameter_declaration] = STATE(11014), + [sym_reference_type_declarator] = STATE(3501), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(6000), + [anon_sym_STAR] = ACTIONS(6002), + [anon_sym_AMP_AMP] = ACTIONS(6004), + [anon_sym_AMP] = ACTIONS(6006), + [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(6008), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(6010), + [anon_sym___clrcall] = ACTIONS(6010), + [anon_sym___stdcall] = ACTIONS(6010), + [anon_sym___fastcall] = ACTIONS(6010), + [anon_sym___thiscall] = ACTIONS(6010), + [anon_sym___vectorcall] = ACTIONS(6010), + [anon_sym_signed] = ACTIONS(6012), + [anon_sym_unsigned] = ACTIONS(6012), + [anon_sym_long] = ACTIONS(6012), + [anon_sym_short] = ACTIONS(6012), + [anon_sym_LBRACK] = ACTIONS(6014), + [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(6016), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), + }, + [STATE(1309)] = { + [sym_compound_statement] = STATE(10950), + [sym_expression] = STATE(7451), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10950), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6018), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(2312), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -241839,7 +243575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -241871,187 +243607,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(2728), [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), + [STATE(1310)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_identifier_parameter_pack_expansion] = STATE(11867), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6489), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(6020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6022), + [anon_sym_COMMA] = ACTIONS(6024), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6024), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1311)] = { + [sym_expression] = STATE(7706), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11939), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11939), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6026), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -242059,7 +243799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242081,302 +243821,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1312)] = { + [sym_compound_statement] = STATE(12346), + [sym_expression] = STATE(6008), + [sym__string] = STATE(5086), + [sym_comma_expression] = STATE(12346), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym__assignment_expression_lhs] = STATE(12008), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), - [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), + [STATE(1313)] = { + [sym_expression] = STATE(6028), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(11952), + [sym__unary_right_fold] = STATE(12444), + [sym__binary_fold] = STATE(12195), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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(1314)] = { + [sym_expression] = STATE(7654), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12063), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12063), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6028), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -242389,7 +244135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242421,72 +244167,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(2728), [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(1315)] = { + [sym_expression] = STATE(7786), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12867), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12867), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6030), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -242499,7 +244247,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242531,72 +244279,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(2728), [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), - [anon_sym_RPAREN] = ACTIONS(6053), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1316)] = { + [sym_compound_statement] = STATE(11104), + [sym_expression] = STATE(7472), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11104), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6032), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -242609,7 +244359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242641,72 +244391,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(2728), [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), + [STATE(1317)] = { + [sym_expression] = STATE(5815), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12843), + [sym__unary_right_fold] = STATE(12844), + [sym__binary_fold] = STATE(12845), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1318)] = { + [sym_expression] = STATE(7600), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12822), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12822), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6034), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -242719,7 +244583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242751,72 +244615,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(2728), [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), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1319)] = { + [sym_compound_statement] = STATE(11250), + [sym_expression] = STATE(7532), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11250), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6036), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -242829,7 +244695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242861,732 +244727,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), - [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), - [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), - }, - [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), - [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(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), - [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), - }, - [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(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), - [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), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1320)] = { + [sym_expression] = STATE(7617), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11929), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11929), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6038), + [anon_sym___extension__] = ACTIONS(2720), [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(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -243599,7 +244807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243631,182 +244839,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), - [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), - [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), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1321)] = { + [sym_compound_statement] = STATE(11050), + [sym_expression] = STATE(7580), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11050), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6040), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(2312), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -243819,7 +244919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243851,292 +244951,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), - [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), - [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(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), - [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), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1322)] = { + [sym_compound_statement] = STATE(11282), + [sym_expression] = STATE(7422), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11282), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6042), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(2312), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244149,7 +245031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244181,72 +245063,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(2728), [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(1323)] = { + [sym_compound_statement] = STATE(11169), + [sym_expression] = STATE(7427), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11169), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6044), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(2312), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244259,7 +245143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244291,77 +245175,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(2728), [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(1324)] = { + [sym_compound_statement] = STATE(11283), + [sym_expression] = STATE(7440), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11283), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6046), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -244369,7 +245255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244391,87 +245277,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1325)] = { + [sym_expression] = STATE(7196), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_initializer_list] = STATE(10367), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(6048), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -244479,21 +245366,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -244501,82 +245388,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(6050), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(6052), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1326)] = { + [sym_compound_statement] = STATE(11377), + [sym_expression] = STATE(7459), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11377), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6054), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244589,7 +245479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244621,72 +245511,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(2728), [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(1327)] = { + [sym_compound_statement] = STATE(10872), + [sym_expression] = STATE(7479), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(10872), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6056), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [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(2312), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244699,7 +245591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244731,77 +245623,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(2728), [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(1328)] = { + [sym_expression] = STATE(5894), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12484), + [sym__unary_right_fold] = STATE(12562), + [sym__binary_fold] = STATE(12602), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1329)] = { + [sym_expression] = STATE(7229), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_initializer_list] = STATE(10286), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(6058), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -244809,21 +245814,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -244831,197 +245836,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(6060), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(6062), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1330)] = { + [sym_expression] = STATE(6097), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(11947), + [sym__unary_right_fold] = STATE(12832), + [sym__binary_fold] = STATE(12297), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1331)] = { + [sym_expression] = STATE(7222), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_initializer_list] = STATE(10381), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_default] = ACTIONS(6064), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -245029,21 +246038,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -245051,82 +246060,980 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(6066), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(6068), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1332)] = { + [sym_expression] = STATE(5945), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(11890), + [sym__unary_right_fold] = STATE(11903), + [sym__binary_fold] = STATE(11904), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1333)] = { + [sym_expression] = STATE(5914), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(11955), + [sym__unary_right_fold] = STATE(11958), + [sym__binary_fold] = STATE(11959), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1334)] = { + [sym_expression] = STATE(6056), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12545), + [sym__unary_right_fold] = STATE(12546), + [sym__binary_fold] = STATE(12893), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1335)] = { + [sym_expression] = STATE(5848), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12858), + [sym__unary_right_fold] = STATE(12860), + [sym__binary_fold] = STATE(12864), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1336)] = { + [sym_expression] = STATE(5870), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12856), + [sym__unary_right_fold] = STATE(12871), + [sym__binary_fold] = STATE(12880), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1337)] = { + [sym_expression] = STATE(5903), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12210), + [sym__unary_right_fold] = STATE(12213), + [sym__binary_fold] = STATE(12216), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1338)] = { + [sym_expression] = STATE(5917), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym__unary_left_fold] = STATE(12480), + [sym__unary_right_fold] = STATE(13061), + [sym__binary_fold] = STATE(12552), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1339)] = { + [sym_string_literal] = STATE(4289), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2248), + [sym_raw_string_literal] = STATE(4289), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_RPAREN] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(6070), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5673), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [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(6073), + [anon_sym_or_eq] = ACTIONS(6073), + [anon_sym_xor_eq] = ACTIONS(6073), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5671), + [anon_sym_L_DQUOTE] = ACTIONS(6075), + [anon_sym_u_DQUOTE] = ACTIONS(6075), + [anon_sym_U_DQUOTE] = ACTIONS(6075), + [anon_sym_u8_DQUOTE] = ACTIONS(6075), + [anon_sym_DQUOTE] = ACTIONS(6075), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(6077), + [anon_sym_LR_DQUOTE] = ACTIONS(6077), + [anon_sym_uR_DQUOTE] = ACTIONS(6077), + [anon_sym_UR_DQUOTE] = ACTIONS(6077), + [anon_sym_u8R_DQUOTE] = ACTIONS(6077), + [anon_sym_DASH_GT_STAR] = ACTIONS(5663), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1340)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6079), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -245139,7 +247046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245171,72 +247078,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(2728), [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), + [STATE(1341)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6082), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -245249,7 +247157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245281,77 +247189,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(2728), [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(1342)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6085), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -245359,7 +247268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245381,87 +247290,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1343)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6088), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -245469,7 +247379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245491,87 +247401,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1344)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6091), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -245579,7 +247490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245601,197 +247512,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [sym_this] = ACTIONS(237), }, - [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), + [STATE(1345)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(2771), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_RPAREN] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5679), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(1346)] = { + [sym_expression] = STATE(7478), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_initializer_list] = STATE(11159), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6094), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1347)] = { + [sym_compound_statement] = STATE(11840), + [sym_expression] = STATE(7787), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11840), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -245799,7 +247823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245821,197 +247845,532 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [STATE(1348)] = { + [sym_expression] = STATE(7426), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_initializer_list] = STATE(11217), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6096), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1349)] = { + [sym_expression] = STATE(7535), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_initializer_list] = STATE(11157), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6098), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1350)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2194), + [sym_ms_pointer_modifier] = STATE(1353), + [sym__abstract_declarator] = STATE(4322), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2034), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1521), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9606), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2034), + [aux_sym_pointer_declarator_repeat1] = STATE(1353), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [aux_sym_preproc_if_token2] = ACTIONS(5994), + [aux_sym_preproc_else_token1] = ACTIONS(5994), + [aux_sym_preproc_elif_token1] = ACTIONS(5996), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(6106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5994), + [sym_ms_restrict_modifier] = ACTIONS(5984), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5984), + [sym_ms_signed_ptr_modifier] = ACTIONS(5984), + [anon_sym__unaligned] = ACTIONS(5986), + [anon_sym___unaligned] = ACTIONS(5986), + [anon_sym_RBRACE] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5994), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_and_eq] = ACTIONS(5996), + [anon_sym_or_eq] = ACTIONS(5996), + [anon_sym_xor_eq] = ACTIONS(5996), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5994), + }, + [STATE(1351)] = { + [sym_expression] = STATE(7552), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_initializer_list] = STATE(11140), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6108), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1352)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6110), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -246019,7 +248378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -246041,87 +248400,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [sym_this] = ACTIONS(237), }, - [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), + [STATE(1353)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2194), + [sym_ms_pointer_modifier] = STATE(2122), + [sym__abstract_declarator] = STATE(4190), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2029), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1521), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9606), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2029), + [aux_sym_pointer_declarator_repeat1] = STATE(2122), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [aux_sym_preproc_if_token2] = ACTIONS(5968), + [aux_sym_preproc_else_token1] = ACTIONS(5968), + [aux_sym_preproc_elif_token1] = ACTIONS(5970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5968), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(6106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5968), + [sym_ms_restrict_modifier] = ACTIONS(5984), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5984), + [sym_ms_signed_ptr_modifier] = ACTIONS(5984), + [anon_sym__unaligned] = ACTIONS(5986), + [anon_sym___unaligned] = ACTIONS(5986), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5968), + }, + [STATE(1354)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6113), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -246129,7 +248600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -246151,1063 +248622,746 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [STATE(1355)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6116), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1356)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6119), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1357)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6122), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1358)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6125), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1359)] = { + [sym_expression] = STATE(7633), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11982), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6128), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1360)] = { + [sym_expression] = STATE(7344), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_initializer_list] = STATE(6722), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1361)] = { + [sym_expression] = STATE(7989), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12447), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -247220,7 +249374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -247252,71 +249406,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(2728), [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(1362)] = { + [sym_expression] = STATE(7592), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(13030), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6130), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1363)] = { + [sym_expression] = STATE(6550), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1364)] = { + [sym_expression] = STATE(7715), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11940), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6132), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1365)] = { + [sym_expression] = STATE(6550), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -247329,7 +249814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -247361,169 +249846,500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1366)] = { + [sym_expression] = STATE(4072), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_initializer_list] = STATE(4245), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(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), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1367)] = { + [sym_expression] = STATE(7136), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_initializer_list] = STATE(6722), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1368)] = { + [sym_expression] = STATE(7603), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(13012), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6134), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1369)] = { + [sym_expression] = STATE(6550), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1370)] = { + [sym_expression] = STATE(6447), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_initializer_list] = STATE(6817), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), [anon_sym_LPAREN2] = ACTIONS(2330), [anon_sym_BANG] = ACTIONS(2332), [anon_sym_TILDE] = ACTIONS(2332), @@ -247531,10 +250347,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2334), [anon_sym_STAR] = ACTIONS(2336), [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), + [anon_sym___extension__] = ACTIONS(3153), [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), [anon_sym_not] = ACTIONS(2334), [anon_sym_compl] = ACTIONS(2334), [anon_sym_DASH_DASH] = ACTIONS(2344), @@ -247547,7 +250364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2348), [anon_sym_offsetof] = ACTIONS(2350), [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), + [anon_sym_typename] = ACTIONS(3159), [anon_sym_asm] = ACTIONS(2356), [anon_sym___asm__] = ACTIONS(2356), [anon_sym___asm] = ACTIONS(2356), @@ -247579,278 +250396,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2376), [anon_sym_requires] = ACTIONS(2378), [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1371)] = { + [sym_expression] = STATE(7680), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_initializer_list] = STATE(6722), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), + [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(4978), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4218), + [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(4220), + [anon_sym_new] = ACTIONS(4222), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1372)] = { + [sym_expression] = STATE(7386), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_initializer_list] = STATE(10576), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1373)] = { + [sym_expression] = STATE(5535), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_initializer_list] = STATE(6237), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [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), @@ -247860,7 +250679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -247906,398 +250726,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [sym_this] = ACTIONS(2276), }, - [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(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), + [STATE(1374)] = { + [sym_expression] = STATE(6603), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_initializer_list] = STATE(6768), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(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), + [anon_sym___extension__] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1375)] = { + [sym_expression] = STATE(7624), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11906), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6136), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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(1376)] = { + [sym_expression] = STATE(7605), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_initializer_list] = STATE(11503), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1377)] = { + [sym_expression] = STATE(7290), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(6722), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -248310,7 +251134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -248342,1052 +251166,292 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(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(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(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(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(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(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), + [STATE(1378)] = { + [sym_expression] = STATE(7607), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12088), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6138), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1379)] = { + [sym_expression] = STATE(7789), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(13015), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6140), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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(1380)] = { + [sym_expression] = STATE(7656), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11574), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -249400,7 +251464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -249432,71 +251496,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(2728), [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(1381)] = { + [sym_expression] = STATE(7553), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11308), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6142), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -249509,7 +251574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -249541,1275 +251606,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1382)] = { + [sym_expression] = STATE(7628), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_initializer_list] = STATE(8182), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1383)] = { + [sym_expression] = STATE(7642), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12462), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6145), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1384)] = { + [sym_expression] = STATE(7437), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11574), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1385)] = { + [sym_expression] = STATE(6550), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), + [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(4978), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4218), + [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(4220), + [anon_sym_new] = ACTIONS(4222), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1386)] = { + [sym_expression] = STATE(7637), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12160), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6147), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -250817,21 +252124,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), @@ -250839,190 +252146,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2728), [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(1387)] = { + [sym_expression] = STATE(6007), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_initializer_list] = STATE(6507), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1388)] = { + [sym_expression] = STATE(7827), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12177), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -251035,7 +252344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -251067,71 +252376,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(2728), [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(1389)] = { + [sym_expression] = STATE(7639), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12220), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6149), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -251144,7 +252454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -251176,403 +252486,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(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), + [STATE(1390)] = { + [sym_expression] = STATE(7653), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(13050), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6151), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1391)] = { + [sym_expression] = STATE(7734), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_initializer_list] = STATE(8310), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), [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), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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(1392)] = { + [sym_expression] = STATE(7659), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6153), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -251580,7 +252784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -251602,958 +252806,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(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), + [STATE(1393)] = { + [sym_expression] = STATE(7606), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_initializer_list] = STATE(8182), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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(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(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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1394)] = { + [sym_expression] = STATE(7626), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_initializer_list] = STATE(8207), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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(6212), - [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(1395)] = { + [sym_expression] = STATE(7663), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12353), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6155), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -252561,7 +253114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -252583,81 +253136,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1396)] = { + [sym_expression] = STATE(7593), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12898), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6157), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -252670,7 +253224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -252702,180 +253256,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1397)] = { + [sym_expression] = STATE(4072), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_initializer_list] = STATE(4245), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(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(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(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), + [anon_sym_template] = ACTIONS(2424), + [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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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(1398)] = { + [sym_expression] = STATE(7588), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11529), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -252888,7 +253444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -252920,511 +253476,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1399)] = { + [sym_expression] = STATE(6090), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_initializer_list] = STATE(6495), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), }, - [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(1400)] = { + [sym_expression] = STATE(7780), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_initializer_list] = STATE(8340), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1401)] = { + [sym_expression] = STATE(7691), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12386), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6159), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -253432,7 +253774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -253452,847 +253794,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), - [sym_auto] = ACTIONS(6226), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(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(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(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), + [STATE(1402)] = { + [sym_expression] = STATE(4072), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_initializer_list] = STATE(4245), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(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), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1403)] = { + [sym_expression] = STATE(7707), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12469), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6161), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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(1404)] = { + [sym_expression] = STATE(7594), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12915), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6163), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -254305,7 +254104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -254337,512 +254136,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(2728), [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(1405)] = { + [sym_expression] = STATE(7717), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11901), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6165), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1406)] = { + [sym_expression] = STATE(4072), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_initializer_list] = STATE(4245), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -254854,17 +254328,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -254872,849 +254346,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3024), + [anon_sym_CARET_CARET] = ACTIONS(2436), [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), + [STATE(1407)] = { + [sym_expression] = STATE(7676), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(13024), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6167), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1408)] = { + [sym_expression] = STATE(8112), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(12547), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1409)] = { + [sym_expression] = STATE(7750), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12465), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6169), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1410)] = { + [sym_expression] = STATE(7739), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_initializer_list] = STATE(6722), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1411)] = { + [sym_expression] = STATE(7753), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_initializer_list] = STATE(6697), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -255722,7 +254874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -255744,740 +254896,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1412)] = { + [sym_expression] = STATE(6085), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_initializer_list] = STATE(4245), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1413)] = { + [sym_expression] = STATE(7788), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12907), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON] = ACTIONS(6171), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), [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(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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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_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_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -256485,7 +255094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -256507,190 +255116,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(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(1414)] = { + [sym_expression] = STATE(7586), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_initializer_list] = STATE(11515), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -256703,7 +255204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -256735,725 +255236,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(2728), [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(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(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(1415)] = { + [sym_expression] = STATE(7638), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(12169), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6173), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -257466,7 +255314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -257498,180 +255346,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(2728), [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(1416)] = { + [sym_expression] = STATE(5641), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6175), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1417)] = { + [sym_expression] = STATE(7383), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(6178), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(6180), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1418)] = { + [sym_expression] = STATE(6564), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6182), + [anon_sym_LPAREN2] = ACTIONS(6184), [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___extension__] = ACTIONS(3153), [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), [anon_sym_not] = ACTIONS(2334), [anon_sym_compl] = ACTIONS(2334), [anon_sym_DASH_DASH] = ACTIONS(2344), @@ -257684,7 +255641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2348), [anon_sym_offsetof] = ACTIONS(2350), [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), + [anon_sym_typename] = ACTIONS(3159), [anon_sym_asm] = ACTIONS(2356), [anon_sym___asm__] = ACTIONS(2356), [anon_sym___asm] = ACTIONS(2356), @@ -257716,71 +255673,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2376), [anon_sym_requires] = ACTIONS(2378), [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), [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(1419)] = { + [sym_expression] = STATE(8104), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6186), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -257793,7 +255750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -257825,621 +255782,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(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(1420)] = { + [sym_expression] = STATE(8105), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6188), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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,21 +255859,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), @@ -258469,70 +255881,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2728), [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), + [STATE(1421)] = { + [sym_expression] = STATE(6500), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6190), [anon_sym_LPAREN2] = ACTIONS(2330), [anon_sym_BANG] = ACTIONS(2332), [anon_sym_TILDE] = ACTIONS(2332), @@ -258540,10 +255952,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2334), [anon_sym_STAR] = ACTIONS(2336), [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), + [anon_sym___extension__] = ACTIONS(3153), [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), [anon_sym_not] = ACTIONS(2334), [anon_sym_compl] = ACTIONS(2334), [anon_sym_DASH_DASH] = ACTIONS(2344), @@ -258556,7 +255968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2348), [anon_sym_offsetof] = ACTIONS(2350), [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), + [anon_sym_typename] = ACTIONS(3159), [anon_sym_asm] = ACTIONS(2356), [anon_sym___asm__] = ACTIONS(2356), [anon_sym___asm] = ACTIONS(2356), @@ -258588,180 +256000,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2376), [anon_sym_requires] = ACTIONS(2378), [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), [sym_this] = ACTIONS(2364), }, - [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), - [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(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(1422)] = { + [sym_expression] = STATE(8047), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6193), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -258774,7 +256077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -258806,616 +256109,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(2728), [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), + [STATE(1423)] = { + [sym_expression] = STATE(7705), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6195), + [anon_sym_LPAREN2] = ACTIONS(6197), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), [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), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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(1424)] = { + [sym_expression] = STATE(7952), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6199), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -259428,7 +256295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -259460,289 +256327,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(2728), [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(1425)] = { + [sym_expression] = STATE(7976), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6201), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -259755,7 +256404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -259787,179 +256436,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(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), - [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), - [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(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_LBRACK_COLON] = ACTIONS(2728), [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(1426)] = { + [sym_expression] = STATE(8048), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6203), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -259972,7 +256513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -259992,7 +256533,6 @@ static const 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), [anon_sym_delete] = ACTIONS(147), @@ -260005,289 +256545,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(2728), [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(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(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(1427)] = { + [sym_expression] = STATE(8136), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6205), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -260300,7 +256622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -260332,169 +256654,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1428)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6207), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1429)] = { + [sym_expression] = STATE(5626), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6190), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -260504,7 +256826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -260550,288 +256872,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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(1430)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6209), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1431)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6211), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1432)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6213), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1433)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6215), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1434)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6217), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1435)] = { + [sym_expression] = STATE(8098), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6219), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -260844,7 +257494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -260864,7 +257514,6 @@ static const 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), [anon_sym_delete] = ACTIONS(147), @@ -260877,179 +257526,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1436)] = { + [sym_expression] = STATE(7668), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6221), + [anon_sym_LPAREN2] = ACTIONS(6223), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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(1437)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6225), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1438)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6227), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1439)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6229), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1440)] = { + [sym_expression] = STATE(8010), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -261062,7 +258038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -261082,7 +258058,7 @@ static const 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), + [sym_auto] = ACTIONS(6231), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), @@ -261095,70 +258071,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(2728), [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(1441)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6233), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1442)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6235), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1443)] = { + [sym_expression] = STATE(7822), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6237), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -261171,7 +258366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -261191,7 +258386,6 @@ static const 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_delete] = ACTIONS(147), @@ -261204,1041 +258398,605 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [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), + [STATE(1444)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6239), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6363), [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(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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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), - [sym_auto] = ACTIONS(6365), - [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(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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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), - [sym_auto] = ACTIONS(6367), - [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), - [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), + [STATE(1445)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6241), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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_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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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), + [STATE(1446)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6243), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6371), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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), + [STATE(1447)] = { + [sym_expression] = STATE(6593), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6245), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(6373), [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(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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1448)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6248), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(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), + [STATE(1449)] = { + [sym_expression] = STATE(6593), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6250), [anon_sym_LPAREN2] = ACTIONS(2330), [anon_sym_BANG] = ACTIONS(2332), [anon_sym_TILDE] = ACTIONS(2332), @@ -262246,10 +259004,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2334), [anon_sym_STAR] = ACTIONS(2336), [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), + [anon_sym___extension__] = ACTIONS(3153), [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), [anon_sym_not] = ACTIONS(2334), [anon_sym_compl] = ACTIONS(2334), [anon_sym_DASH_DASH] = ACTIONS(2344), @@ -262262,7 +259020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2348), [anon_sym_offsetof] = ACTIONS(2350), [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), + [anon_sym_typename] = ACTIONS(3159), [anon_sym_asm] = ACTIONS(2356), [anon_sym___asm__] = ACTIONS(2356), [anon_sym___asm] = ACTIONS(2356), @@ -262294,278 +259052,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2376), [anon_sym_requires] = ACTIONS(2378), [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), [sym_this] = ACTIONS(2364), }, - [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), - [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), + [STATE(1450)] = { + [sym_expression] = STATE(4063), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6253), + [anon_sym_LPAREN2] = ACTIONS(6255), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(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), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), - [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), + [STATE(1451)] = { + [sym_expression] = STATE(5785), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6245), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1452)] = { + [sym_expression] = STATE(5785), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6250), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -262575,7 +259333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -262621,169 +259379,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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), - [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), + [STATE(1453)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6257), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1454)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6259), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1455)] = { + [sym_expression] = STATE(5671), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6261), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -262793,7 +259660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -262839,287 +259706,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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), + [STATE(1456)] = { + [sym_expression] = STATE(5671), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [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(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), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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), + [STATE(1457)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6267), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1458)] = { + [sym_expression] = STATE(7993), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6269), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -263132,7 +260001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -263164,167 +260033,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [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), + [STATE(1459)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6271), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1460)] = { + [sym_expression] = STATE(5671), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6273), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -263334,7 +260205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -263380,59 +260251,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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), + [STATE(1461)] = { + [sym_expression] = STATE(5673), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6276), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -263442,7 +260314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -263488,59 +260360,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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), + [STATE(1462)] = { + [sym_expression] = STATE(5551), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6279), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -263550,7 +260423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -263596,275 +260469,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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(1463)] = { + [sym_expression] = STATE(7841), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6282), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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(1464)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6284), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1465)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6286), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1466)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6288), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1467)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6290), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1468)] = { + [sym_expression] = STATE(6401), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6261), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1469)] = { + [sym_expression] = STATE(5553), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6292), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -263874,7 +261186,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -263920,59 +261232,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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), + [STATE(1470)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6295), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1471)] = { + [sym_expression] = STATE(5825), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6297), + [anon_sym_LPAREN2] = ACTIONS(6299), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1472)] = { + [sym_expression] = STATE(6401), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6264), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1473)] = { + [sym_expression] = STATE(5578), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6301), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -263982,7 +261622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -264028,167 +261668,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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(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), + [STATE(1474)] = { + [sym_expression] = STATE(5580), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6304), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -264198,7 +261731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -264244,394 +261777,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [sym_this] = ACTIONS(2276), }, - [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), - [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(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), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1475)] = { + [sym_expression] = STATE(6397), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6307), + [anon_sym_LPAREN2] = ACTIONS(6309), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -264644,7 +261854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -264676,383 +261886,605 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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), + [STATE(1476)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6311), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1477)] = { + [sym_expression] = STATE(6401), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6273), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1478)] = { + [sym_expression] = STATE(5626), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6313), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1479)] = { + [sym_expression] = STATE(6402), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6276), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1480)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6316), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1481)] = { + [sym_expression] = STATE(5626), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6318), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -265062,7 +262494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -265108,59 +262540,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1482)] = { + [sym_expression] = STATE(7878), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6321), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1483)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6323), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1484)] = { + [sym_expression] = STATE(5641), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6325), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -265170,7 +262821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -265216,167 +262867,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1485)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6328), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1486)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6330), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1487)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6332), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1488)] = { + [sym_expression] = STATE(5580), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6334), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -265386,7 +263257,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -265432,59 +263303,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1489)] = { + [sym_expression] = STATE(5866), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6337), + [anon_sym_LPAREN2] = ACTIONS(6339), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1490)] = { + [sym_expression] = STATE(5641), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6341), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -265494,7 +263475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -265540,286 +263521,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1491)] = { + [sym_expression] = STATE(6403), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6279), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1492)] = { + [sym_expression] = STATE(6404), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6292), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1493)] = { + [sym_expression] = STATE(6406), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6301), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1494)] = { + [sym_expression] = STATE(7899), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6344), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -265832,7 +263925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -265864,1155 +263957,1384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1495)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6346), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1496)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6348), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1497)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6350), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1498)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6352), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1499)] = { + [sym_expression] = STATE(6397), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6307), + [anon_sym_LPAREN2] = ACTIONS(6354), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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(1500)] = { + [sym_expression] = STATE(6494), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6304), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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(1501)] = { + [sym_expression] = STATE(6500), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6313), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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(1502)] = { + [sym_expression] = STATE(5641), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6356), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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(1503)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6359), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1504)] = { + [sym_expression] = STATE(5654), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6361), + [anon_sym_LPAREN2] = ACTIONS(6363), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1505)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6365), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1506)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6367), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1507)] = { + [sym_expression] = STATE(6397), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6307), + [anon_sym_LPAREN2] = ACTIONS(6369), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -267020,210 +265342,539 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), [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_template] = ACTIONS(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1508)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6371), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1509)] = { + [sym_expression] = STATE(4063), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6253), + [anon_sym_LPAREN2] = ACTIONS(6373), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(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(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(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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1510)] = { + [sym_expression] = STATE(5537), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6375), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1511)] = { + [sym_expression] = STATE(5537), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6378), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1512)] = { + [sym_expression] = STATE(7800), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6381), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -267236,7 +265887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -267268,75 +265919,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1513)] = { + [sym_expression] = STATE(4063), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6253), + [anon_sym_LPAREN2] = ACTIONS(6383), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -267348,17 +266000,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -267366,1381 +266018,1067 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2924), + [anon_sym_CARET_CARET] = ACTIONS(2436), [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), + [STATE(1514)] = { + [sym_expression] = STATE(6500), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6318), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(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), - [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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1515)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6385), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1516)] = { + [sym_expression] = STATE(8020), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_RPAREN] = ACTIONS(6387), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1517)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6389), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1518)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6391), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1519)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6393), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1520)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6395), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1521)] = { + [sym_attribute_specifier] = STATE(2098), + [sym_attribute_declaration] = STATE(3515), + [sym_type_qualifier] = STATE(2188), + [sym_alignas_qualifier] = STATE(2254), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym_ref_qualifier] = STATE(2279), + [sym__function_attributes_start] = STATE(2252), + [sym__function_exception_specification] = STATE(2440), + [sym__function_attributes_end] = STATE(3510), + [sym__function_postfix] = STATE(3894), + [sym_trailing_return_type] = STATE(3448), + [sym_noexcept] = STATE(2440), + [sym_throw_specifier] = STATE(2440), + [sym_requires_clause] = STATE(3894), + [aux_sym_type_definition_repeat1] = STATE(2098), + [aux_sym__type_definition_type_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(6397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_RPAREN] = ACTIONS(6399), + [aux_sym_preproc_if_token2] = ACTIONS(6399), + [aux_sym_preproc_else_token1] = ACTIONS(6399), + [aux_sym_preproc_elif_token1] = ACTIONS(6397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6401), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym_SEMI] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(6407), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(6397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6399), + [anon_sym_RBRACE] = ACTIONS(6399), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(6407), + [anon_sym_constexpr] = ACTIONS(6407), + [anon_sym_volatile] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6407), + [anon_sym___restrict__] = ACTIONS(6407), + [anon_sym__Atomic] = ACTIONS(6407), + [anon_sym__Noreturn] = ACTIONS(6407), + [anon_sym_noreturn] = ACTIONS(6407), + [anon_sym__Nonnull] = ACTIONS(6407), + [anon_sym_mutable] = ACTIONS(6407), + [anon_sym_constinit] = ACTIONS(6407), + [anon_sym_consteval] = ACTIONS(6407), + [anon_sym_alignas] = ACTIONS(6413), + [anon_sym__Alignas] = ACTIONS(6413), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6397), + [anon_sym_or_eq] = ACTIONS(6397), + [anon_sym_xor_eq] = ACTIONS(6397), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6397), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6397), + [anon_sym_not_eq] = ACTIONS(6397), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(6417), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_noexcept] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(6424), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(6399), }, - [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), + [STATE(1522)] = { + [sym_expression] = STATE(6543), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6325), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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(1523)] = { + [sym_expression] = STATE(6397), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6307), + [anon_sym_LPAREN2] = ACTIONS(6428), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -268748,102 +267086,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [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_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4218), + [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(4220), + [anon_sym_new] = ACTIONS(4222), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1524)] = { + [sym_expression] = STATE(6543), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6175), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1525)] = { + [sym_expression] = STATE(7886), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(6401), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -268856,7 +267303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -268876,6 +267323,7 @@ static const 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(6430), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), @@ -268888,75 +267336,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1526)] = { + [sym_expression] = STATE(6543), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6341), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1527)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6432), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1528)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6434), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1529)] = { + [sym_expression] = STATE(6543), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6356), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1530)] = { + [sym_expression] = STATE(6618), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6375), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1531)] = { + [sym_expression] = STATE(6618), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6378), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1532)] = { + [sym_expression] = STATE(7838), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +268066,7 @@ static const uint16_t ts_parse_table[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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -268984,87 +268086,198 @@ static const 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(6436), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [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(2728), [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(1533)] = { + [sym_expression] = STATE(6402), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6438), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1534)] = { + [sym_expression] = STATE(7383), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(6441), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(6180), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -269072,539 +268285,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [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_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1535)] = { + [sym_expression] = STATE(7553), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11308), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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(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), - [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), - }, - [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), - [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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(1536)] = { + [sym_expression] = STATE(7999), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +268502,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), + [sym_auto] = ACTIONS(6443), [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_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(2728), [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(1537)] = { + [sym_attribute_specifier] = STATE(2098), + [sym_attribute_declaration] = STATE(3515), + [sym_type_qualifier] = STATE(2188), + [sym_alignas_qualifier] = STATE(2254), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym_ref_qualifier] = STATE(2268), + [sym__function_attributes_start] = STATE(2232), + [sym__function_exception_specification] = STATE(2471), + [sym__function_attributes_end] = STATE(3484), + [sym__function_postfix] = STATE(3894), + [sym_trailing_return_type] = STATE(3437), + [sym_noexcept] = STATE(2471), + [sym_throw_specifier] = STATE(2471), + [sym_requires_clause] = STATE(3894), + [aux_sym_type_definition_repeat1] = STATE(2098), + [aux_sym__type_definition_type_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(6397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_RPAREN] = ACTIONS(6399), + [aux_sym_preproc_if_token2] = ACTIONS(6399), + [aux_sym_preproc_else_token1] = ACTIONS(6399), + [aux_sym_preproc_elif_token1] = ACTIONS(6397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6401), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym_SEMI] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(6407), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(6397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6399), + [anon_sym_RBRACE] = ACTIONS(6399), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(6407), + [anon_sym_constexpr] = ACTIONS(6407), + [anon_sym_volatile] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6407), + [anon_sym___restrict__] = ACTIONS(6407), + [anon_sym__Atomic] = ACTIONS(6407), + [anon_sym__Noreturn] = ACTIONS(6407), + [anon_sym_noreturn] = ACTIONS(6407), + [anon_sym__Nonnull] = ACTIONS(6407), + [anon_sym_mutable] = ACTIONS(6407), + [anon_sym_constinit] = ACTIONS(6407), + [anon_sym_consteval] = ACTIONS(6407), + [anon_sym_alignas] = ACTIONS(6413), + [anon_sym__Alignas] = ACTIONS(6413), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6397), + [anon_sym_or_eq] = ACTIONS(6397), + [anon_sym_xor_eq] = ACTIONS(6397), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6397), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6397), + [anon_sym_not_eq] = ACTIONS(6397), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(6417), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6445), + [anon_sym_override] = ACTIONS(6445), + [anon_sym_noexcept] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(6424), + [anon_sym_requires] = ACTIONS(6448), + [anon_sym_COLON_RBRACK] = ACTIONS(6399), + }, + [STATE(1538)] = { + [sym_expression] = STATE(8118), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +268720,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(2726), [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), + [sym_auto] = ACTIONS(6451), [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_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(2728), [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), - [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), - }, - [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(1539)] = { + [sym_expression] = STATE(8093), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6453), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -269936,7 +268830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -269968,178 +268862,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(2728), [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), - [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(1540)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6455), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1541)] = { + [sym_expression] = STATE(7812), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -270152,7 +269047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -270172,6 +269067,7 @@ static const 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(6457), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), @@ -270184,291 +269080,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [sym_this] = ACTIONS(237), }, - [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), - }, - [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), - }, - [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), + [STATE(1542)] = { + [sym_expression] = STATE(7383), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym_SEMI] = ACTIONS(6459), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(6180), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -270476,107 +269157,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [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_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1543)] = { + [sym_expression] = STATE(4063), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6253), + [anon_sym_LPAREN2] = ACTIONS(6461), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1544)] = { + [sym_expression] = STATE(7833), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +269374,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(2726), [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), + [sym_auto] = ACTIONS(6463), [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_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(2728), [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(1545)] = { + [sym_expression] = STATE(7808), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6465), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -270692,107 +269484,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(2726), [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_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(2728), [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(1546)] = { + [sym_expression] = STATE(7865), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -270800,107 +269592,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(2726), [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), + [sym_auto] = ACTIONS(6467), [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_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(2728), [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(1547)] = { + [sym_expression] = STATE(8131), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -270908,107 +269702,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(2726), [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_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(2728), [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(1548)] = { + [sym_expression] = STATE(7895), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -271016,107 +269810,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(2726), [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), + [sym_auto] = ACTIONS(6471), [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_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(2728), [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(1549)] = { + [sym_expression] = STATE(8132), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(6473), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +269920,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(2726), [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_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(2728), [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(1550)] = { + [sym_expression] = STATE(7915), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +270028,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), + [sym_auto] = ACTIONS(6475), [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_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(2728), [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(1551)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6477), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1552)] = { + [sym_expression] = STATE(7924), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +270246,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), + [sym_auto] = ACTIONS(6479), [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_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(2728), [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(1553)] = { + [sym_expression] = STATE(7928), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -271448,323 +270355,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), + [sym_auto] = ACTIONS(6481), [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_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(2728), [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(1554)] = { + [sym_expression] = STATE(7932), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -271772,318 +270464,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), + [sym_auto] = ACTIONS(6483), [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_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(2728), [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), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1555)] = { + [sym_expression] = STATE(7935), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -272096,7 +270573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -272116,6 +270593,7 @@ static const 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(6485), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), [anon_sym_delete] = ACTIONS(147), @@ -272128,291 +270606,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(2728), [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(1556)] = { + [sym_expression] = STATE(7940), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -272420,7 +270682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -272440,87 +270702,88 @@ static const 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(6487), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1557)] = { + [sym_expression] = STATE(7946), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -272528,215 +270791,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), + [sym_auto] = ACTIONS(6489), [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_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(2728), [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(1558)] = { + [sym_expression] = STATE(7949), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -272744,431 +270900,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), + [sym_auto] = ACTIONS(6491), [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_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(2728), [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(1559)] = { + [sym_expression] = STATE(7953), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -273176,415 +271009,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), + [sym_auto] = ACTIONS(6493), [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_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(2728), [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), + [STATE(1560)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6495), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1561)] = { + [sym_expression] = STATE(6403), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), [anon_sym_LPAREN2] = ACTIONS(2330), [anon_sym_BANG] = ACTIONS(2332), [anon_sym_TILDE] = ACTIONS(2332), @@ -273592,10 +271212,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2334), [anon_sym_STAR] = ACTIONS(2336), [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), + [anon_sym___extension__] = ACTIONS(3153), [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), [anon_sym_not] = ACTIONS(2334), [anon_sym_compl] = ACTIONS(2334), [anon_sym_DASH_DASH] = ACTIONS(2344), @@ -273608,7 +271228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2348), [anon_sym_offsetof] = ACTIONS(2350), [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), + [anon_sym_typename] = ACTIONS(3159), [anon_sym_asm] = ACTIONS(2356), [anon_sym___asm__] = ACTIONS(2356), [anon_sym___asm] = ACTIONS(2356), @@ -273640,59 +271260,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2376), [anon_sym_requires] = ACTIONS(2378), [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), [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), + [STATE(1562)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6500), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1563)] = { + [sym_expression] = STATE(5673), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6438), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), [anon_sym_TILDE] = ACTIONS(2228), @@ -273702,7 +271432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -273748,1479 +271478,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(1564)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6502), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1565)] = { + [sym_expression] = STATE(6068), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6253), + [anon_sym_LPAREN2] = ACTIONS(6504), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -275232,17 +271668,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -275250,717 +271686,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(3094), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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), + [STATE(1566)] = { + [sym_expression] = STATE(5551), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6497), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1567)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6506), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1568)] = { + [sym_expression] = STATE(6404), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6508), [anon_sym_LPAREN2] = ACTIONS(2330), [anon_sym_BANG] = ACTIONS(2332), [anon_sym_TILDE] = ACTIONS(2332), @@ -275968,10 +271975,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(2334), [anon_sym_STAR] = ACTIONS(2336), [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), + [anon_sym___extension__] = ACTIONS(3153), [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), [anon_sym_not] = ACTIONS(2334), [anon_sym_compl] = ACTIONS(2334), [anon_sym_DASH_DASH] = ACTIONS(2344), @@ -275984,7 +271991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(2348), [anon_sym_offsetof] = ACTIONS(2350), [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), + [anon_sym_typename] = ACTIONS(3159), [anon_sym_asm] = ACTIONS(2356), [anon_sym___asm__] = ACTIONS(2356), [anon_sym___asm] = ACTIONS(2356), @@ -276016,75 +272023,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2376), [anon_sym_requires] = ACTIONS(2378), [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1569)] = { + [sym_expression] = STATE(7752), + [sym__string] = STATE(7246), + [sym_comma_expression] = STATE(11308), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -276092,7 +272100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276114,193 +272122,631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1570)] = { + [sym_expression] = STATE(5553), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6508), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1571)] = { + [sym_expression] = STATE(6406), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6511), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1572)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6514), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1573)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6516), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1574)] = { + [sym_expression] = STATE(6494), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6334), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1575)] = { + [sym_expression] = STATE(7777), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6307), + [anon_sym_LPAREN2] = ACTIONS(6518), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -276308,7 +272754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276330,188 +272776,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1576)] = { + [sym_expression] = STATE(5578), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(2948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6511), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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(1577)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [anon_sym_RBRACK] = ACTIONS(6520), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1578)] = { + [sym_expression] = STATE(7267), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(6522), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -276524,7 +273080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276556,70 +273112,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(2728), [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(1579)] = { + [sym_expression] = STATE(5533), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1580)] = { + [sym_expression] = STATE(7799), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1581)] = { + [sym_expression] = STATE(5267), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(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(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(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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1582)] = { + [sym_expression] = STATE(5656), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(6524), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1583)] = { + [sym_expression] = STATE(7665), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1584)] = { + [sym_expression] = STATE(5660), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1585)] = { + [sym_expression] = STATE(6536), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(6526), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(6417), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -276632,7 +273836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276664,1587 +273868,1263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1586)] = { + [sym_expression] = STATE(7759), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), [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), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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(1587)] = { + [sym_expression] = STATE(7760), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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(1588)] = { + [sym_expression] = STATE(7761), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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(1589)] = { + [sym_expression] = STATE(7762), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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(1590)] = { + [sym_expression] = STATE(7763), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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(1591)] = { + [sym_expression] = STATE(7764), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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(1592)] = { + [sym_expression] = STATE(7765), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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(1593)] = { + [sym_expression] = STATE(7766), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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(1594)] = { + [sym_expression] = STATE(7767), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(1595)] = { + [sym_expression] = STATE(7768), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), [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), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(1596)] = { + [sym_expression] = STATE(5632), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(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), + [anon_sym___extension__] = ACTIONS(2950), + [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1597)] = { + [sym_expression] = STATE(5170), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -278256,17 +275136,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -278274,68 +275154,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1598)] = { + [sym_expression] = STATE(5743), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), @@ -278346,7 +275226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(6421), + [anon_sym_LBRACK] = ACTIONS(6528), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -278392,183 +275272,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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), + [STATE(1599)] = { + [sym_expression] = STATE(5433), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(6530), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(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(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(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), + [anon_sym_template] = ACTIONS(2424), + [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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1600)] = { + [sym_expression] = STATE(4048), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -278580,17 +275460,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -278598,1057 +275478,625 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1601)] = { + [sym_expression] = STATE(7636), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1602)] = { + [sym_expression] = STATE(7286), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(6532), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1603)] = { + [sym_expression] = STATE(7673), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1604)] = { + [sym_expression] = STATE(5872), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(6534), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1605)] = { + [sym_expression] = STATE(5875), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1606)] = { + [sym_expression] = STATE(4936), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(6536), [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_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -279660,17 +276108,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -279678,193 +276126,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2924), + [anon_sym_CARET_CARET] = ACTIONS(2436), [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), + [STATE(1607)] = { + [sym_expression] = STATE(5015), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -279876,17 +276216,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -279894,1705 +276234,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2924), + [anon_sym_CARET_CARET] = ACTIONS(2436), [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), + [STATE(1608)] = { + [sym_expression] = STATE(4946), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -281604,17 +276324,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -281622,85 +276342,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2924), + [anon_sym_CARET_CARET] = ACTIONS(2436), [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), + [STATE(1609)] = { + [sym_expression] = STATE(4948), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -281712,17 +276432,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -281730,85 +276450,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2924), + [anon_sym_CARET_CARET] = ACTIONS(2436), [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), + [STATE(1610)] = { + [sym_expression] = STATE(4167), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -281820,17 +276540,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -281838,85 +276558,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1611)] = { + [sym_expression] = STATE(4167), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(6538), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -281928,17 +276648,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -281946,85 +276666,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1612)] = { + [sym_expression] = STATE(4062), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -282036,17 +276756,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -282054,85 +276774,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1613)] = { + [sym_expression] = STATE(4170), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -282144,17 +276864,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -282162,625 +276882,1057 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1614)] = { + [sym_expression] = STATE(7157), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(6540), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(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), + [anon_sym_template] = ACTIONS(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1615)] = { + [sym_expression] = STATE(6439), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(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), + [anon_sym_template] = ACTIONS(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1616)] = { + [sym_expression] = STATE(7300), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1617)] = { + [sym_expression] = STATE(7601), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), [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), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(1618)] = { + [sym_expression] = STATE(7306), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1619)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1620)] = { + [sym_expression] = STATE(7150), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1621)] = { + [sym_expression] = STATE(7168), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(6542), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1622)] = { + [sym_expression] = STATE(7591), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), + }, + [STATE(1623)] = { + [sym_expression] = STATE(5133), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(6544), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -282792,17 +277944,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -282810,85 +277962,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1624)] = { + [sym_expression] = STATE(4048), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -282900,17 +278052,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -282918,80 +278070,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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(1625)] = { + [sym_expression] = STATE(6419), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -283004,7 +278156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -283036,70 +278188,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(2728), [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(1626)] = { + [sym_expression] = STATE(7307), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -283112,7 +278264,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -283144,291 +278296,1479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1627)] = { + [sym_expression] = STATE(7308), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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(1628)] = { + [sym_expression] = STATE(7083), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1629)] = { + [sym_expression] = STATE(6419), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1630)] = { + [sym_expression] = STATE(7111), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1631)] = { + [sym_expression] = STATE(7166), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1632)] = { + [sym_expression] = STATE(7190), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1633)] = { + [sym_expression] = STATE(7130), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1634)] = { + [sym_expression] = STATE(7085), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1635)] = { + [sym_expression] = STATE(7169), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1636)] = { + [sym_expression] = STATE(7112), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1637)] = { + [sym_expression] = STATE(7165), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1638)] = { + [sym_expression] = STATE(7191), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1639)] = { + [sym_expression] = STATE(5634), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1640)] = { + [sym_expression] = STATE(5155), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(6546), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -283440,17 +279780,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -283458,85 +279798,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1641)] = { + [sym_expression] = STATE(7309), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1642)] = { + [sym_expression] = STATE(7310), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1643)] = { + [sym_expression] = STATE(5162), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -283548,17 +280104,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -283566,85 +280122,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1644)] = { + [sym_expression] = STATE(4059), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -283656,17 +280212,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -283674,85 +280230,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1645)] = { + [sym_expression] = STATE(5165), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -283764,17 +280320,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -283782,85 +280338,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1646)] = { + [sym_expression] = STATE(5166), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -283872,17 +280428,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -283890,85 +280446,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1647)] = { + [sym_expression] = STATE(5167), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -283980,17 +280536,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -283998,85 +280554,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1648)] = { + [sym_expression] = STATE(5168), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -284088,17 +280644,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -284106,85 +280662,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1649)] = { + [sym_expression] = STATE(5171), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -284196,17 +280752,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -284214,85 +280770,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1650)] = { + [sym_expression] = STATE(5173), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -284304,17 +280860,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -284322,85 +280878,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1651)] = { + [sym_expression] = STATE(5174), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -284412,17 +280968,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -284430,85 +280986,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1652)] = { + [sym_expression] = STATE(5176), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -284520,17 +281076,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -284538,284 +281094,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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(1653)] = { + [sym_expression] = STATE(7099), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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(1654)] = { + [sym_expression] = STATE(6102), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1655)] = { + [sym_expression] = STATE(5603), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), [sym_identifier] = ACTIONS(2948), [anon_sym_LPAREN2] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(2228), @@ -284826,7 +281382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -284872,394 +281428,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [sym_this] = ACTIONS(2276), }, - [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(1656)] = { + [sym_expression] = STATE(7311), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -285272,7 +281504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -285304,723 +281536,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(2728), [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(1657)] = { + [sym_expression] = STATE(7312), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -286028,21 +281612,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), @@ -286050,80 +281634,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2728), [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(1658)] = { + [sym_expression] = STATE(7313), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -286136,7 +281720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286168,178 +281752,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(2728), [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(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), + [STATE(1659)] = { + [sym_expression] = STATE(7314), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -286352,7 +281828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286384,80 +281860,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1660)] = { + [sym_expression] = STATE(7645), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), + }, + [STATE(1661)] = { + [sym_expression] = STATE(7115), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1662)] = { + [sym_expression] = STATE(5785), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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), @@ -286492,1046 +282184,2018 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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), - [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), + [STATE(1663)] = { + [sym_expression] = STATE(5671), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), - [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), + [STATE(1664)] = { + [sym_expression] = STATE(5673), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), - [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), + [STATE(1665)] = { + [sym_expression] = STATE(5551), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), - [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), + [STATE(1666)] = { + [sym_expression] = STATE(5553), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), - [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), + [STATE(1667)] = { + [sym_expression] = STATE(5578), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), - [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), + [STATE(1668)] = { + [sym_expression] = STATE(5580), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), - [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), + [STATE(1669)] = { + [sym_expression] = STATE(5626), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1670)] = { + [sym_expression] = STATE(7700), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), [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), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(1671)] = { + [sym_expression] = STATE(7608), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), + [STATE(1672)] = { + [sym_expression] = STATE(7609), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1673)] = { + [sym_expression] = STATE(7610), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1674)] = { + [sym_expression] = STATE(7611), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1675)] = { + [sym_expression] = STATE(7613), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1676)] = { + [sym_expression] = STATE(7614), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1677)] = { + [sym_expression] = STATE(7615), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1678)] = { + [sym_expression] = STATE(7616), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1679)] = { + [sym_expression] = STATE(7618), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1680)] = { + [sym_expression] = STATE(7619), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1681)] = { + [sym_expression] = STATE(4957), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), [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_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), [anon_sym___extension__] = ACTIONS(2392), [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(6548), [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_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), @@ -287575,71 +284239,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [STATE(1682)] = { + [sym_expression] = STATE(4048), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), [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_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), [anon_sym___extension__] = ACTIONS(2392), [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [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_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), @@ -287683,391 +284347,715 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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(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), - [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), + [STATE(1683)] = { + [sym_expression] = STATE(5641), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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(1684)] = { + [sym_expression] = STATE(7698), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(1685)] = { + [sym_expression] = STATE(5537), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1686)] = { + [sym_expression] = STATE(7703), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), + }, + [STATE(1687)] = { + [sym_expression] = STATE(5178), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2831), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1688)] = { + [sym_expression] = STATE(4170), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(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(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(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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1689)] = { + [sym_expression] = STATE(7317), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -288080,7 +285068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -288112,183 +285100,1911 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1690)] = { + [sym_expression] = STATE(6578), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(6550), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1691)] = { + [sym_expression] = STATE(6580), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1692)] = { + [sym_expression] = STATE(6605), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(6552), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1693)] = { + [sym_expression] = STATE(6116), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1694)] = { + [sym_expression] = STATE(6099), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1695)] = { + [sym_expression] = STATE(6100), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1696)] = { + [sym_expression] = STATE(6111), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1697)] = { + [sym_expression] = STATE(6117), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1698)] = { + [sym_expression] = STATE(6054), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1699)] = { + [sym_expression] = STATE(5789), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1700)] = { + [sym_expression] = STATE(6062), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1701)] = { + [sym_expression] = STATE(5919), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1702)] = { + [sym_expression] = STATE(6059), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1703)] = { + [sym_expression] = STATE(5850), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1704)] = { + [sym_expression] = STATE(6553), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1705)] = { + [sym_expression] = STATE(6563), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1706)] = { + [sym_expression] = STATE(6424), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1707)] = { + [sym_expression] = STATE(4170), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -288300,17 +287016,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -288318,85 +287034,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2634), + [anon_sym_CARET_CARET] = ACTIONS(2436), [anon_sym_LBRACK_COLON] = ACTIONS(2438), [sym_this] = ACTIONS(2418), }, - [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(1708)] = { + [sym_expression] = STATE(8078), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -288404,7 +287120,7 @@ static const uint16_t ts_parse_table[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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -288426,85 +287142,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [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(2728), [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(1709)] = { + [sym_expression] = STATE(6536), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -288512,7 +287228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -288534,85 +287250,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1710)] = { + [sym_expression] = STATE(7291), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -288620,7 +287336,7 @@ static const uint16_t ts_parse_table[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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -288642,193 +287358,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [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_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [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), - [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(2728), [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(1711)] = { + [sym_expression] = STATE(7651), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -288836,7 +287444,7 @@ static const uint16_t ts_parse_table[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(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -288858,80 +287466,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1712)] = { + [sym_expression] = STATE(7921), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -288944,7 +287552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -288976,178 +287584,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(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), - [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), - [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(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_LBRACK_COLON] = ACTIONS(2728), [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(1713)] = { + [sym_expression] = STATE(7814), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -289160,7 +287660,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289192,75 +287692,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(2728), [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), + [STATE(1714)] = { + [sym_expression] = STATE(5129), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -289272,17 +287772,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -289290,85 +287790,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2831), [anon_sym_LBRACK_COLON] = ACTIONS(2438), [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1715)] = { + [sym_expression] = STATE(6439), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -289376,7 +287876,7 @@ static const uint16_t ts_parse_table[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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289398,85 +287898,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [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(2728), [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(1716)] = { + [sym_expression] = STATE(6607), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +287984,7 @@ static const uint16_t ts_parse_table[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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289506,85 +288006,1489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [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(2728), [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(1717)] = { + [sym_expression] = STATE(5827), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1718)] = { + [sym_expression] = STATE(5957), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1719)] = { + [sym_expression] = STATE(5958), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1720)] = { + [sym_expression] = STATE(5959), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1721)] = { + [sym_expression] = STATE(5960), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1722)] = { + [sym_expression] = STATE(5963), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1723)] = { + [sym_expression] = STATE(5964), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1724)] = { + [sym_expression] = STATE(5966), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1725)] = { + [sym_expression] = STATE(5967), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1726)] = { + [sym_expression] = STATE(5968), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1727)] = { + [sym_expression] = STATE(5974), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1728)] = { + [sym_expression] = STATE(7664), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1729)] = { + [sym_expression] = STATE(7667), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1730)] = { + [sym_expression] = STATE(7832), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +289496,7 @@ static const uint16_t ts_parse_table[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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289614,85 +289518,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [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(2728), [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(1731)] = { + [sym_expression] = STATE(6463), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1732)] = { + [sym_expression] = STATE(8011), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +289712,7 @@ static const uint16_t ts_parse_table[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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289722,85 +289734,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [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(2728), [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(1733)] = { + [sym_expression] = STATE(7836), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1734)] = { + [sym_expression] = STATE(7861), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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 +289928,7 @@ static const uint16_t ts_parse_table[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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289830,85 +289950,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [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(2728), [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(1735)] = { + [sym_expression] = STATE(8091), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -289916,7 +290036,7 @@ static const uint16_t ts_parse_table[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(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289938,1916 +290058,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [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(2728), [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), - [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), - [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(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), - [sym_this] = ACTIONS(237), - }, - [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), - [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), - [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(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), - [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), - [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), - [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(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), - [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), - [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), - [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(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), - [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), - [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), - [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(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), - [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), - [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), - [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(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), - [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), - [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(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), - [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), - [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(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), - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(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), - [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(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), - [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), - [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(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), - [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), - [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(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), - [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(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), - [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(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), - [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), - [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(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), - [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), + [STATE(1736)] = { + [sym_expression] = STATE(8009), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -291860,7 +290144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -291892,75 +290176,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(2728), [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), + [STATE(1737)] = { + [sym_expression] = STATE(5422), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -291972,17 +290256,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -291990,85 +290274,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1738)] = { + [sym_expression] = STATE(5449), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -292080,17 +290364,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -292098,85 +290382,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1739)] = { + [sym_expression] = STATE(4059), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -292188,17 +290472,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -292206,85 +290490,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1740)] = { + [sym_expression] = STATE(5313), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -292296,17 +290580,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -292314,85 +290598,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1741)] = { + [sym_expression] = STATE(5315), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -292404,17 +290688,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -292422,85 +290706,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [anon_sym_LBRACK_COLON] = ACTIONS(2438), [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1742)] = { + [sym_expression] = STATE(5327), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -292512,17 +290796,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -292530,85 +290814,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1743)] = { + [sym_expression] = STATE(5361), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -292620,17 +290904,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -292638,85 +290922,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1744)] = { + [sym_expression] = STATE(5372), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -292728,17 +291012,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -292746,85 +291030,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1745)] = { + [sym_expression] = STATE(5421), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -292836,17 +291120,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -292854,85 +291138,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1746)] = { + [sym_expression] = STATE(5444), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -292944,17 +291228,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -292962,85 +291246,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1747)] = { + [sym_expression] = STATE(5452), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -293052,17 +291336,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -293070,85 +291354,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(2859), [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), + [STATE(1748)] = { + [sym_expression] = STATE(4167), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -293160,17 +291444,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -293178,85 +291462,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(3026), [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), + [STATE(1749)] = { + [sym_expression] = STATE(4062), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -293268,17 +291552,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -293286,80 +291570,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), + [anon_sym_CARET_CARET] = ACTIONS(3026), [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), + [STATE(1750)] = { + [sym_expression] = STATE(7627), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1751)] = { + [sym_expression] = STATE(7276), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -293372,7 +291764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -293404,291 +291796,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1752)] = { + [sym_expression] = STATE(5552), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1753)] = { + [sym_expression] = STATE(5826), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(6554), }, - [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(1754)] = { + [sym_expression] = STATE(6411), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1755)] = { + [sym_expression] = STATE(7360), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -293696,21 +292196,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -293718,80 +292218,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1756)] = { + [sym_expression] = STATE(8030), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -293804,7 +292304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -293836,75 +292336,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(2728), [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), + [STATE(1757)] = { + [sym_expression] = STATE(4956), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [anon_sym_sizeof] = ACTIONS(2400), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -293916,17 +292416,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -293934,179 +292434,1367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(3024), + [anon_sym_CARET_CARET] = ACTIONS(2436), [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), - [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), + [STATE(1758)] = { + [sym_expression] = STATE(5013), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(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), + [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(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), + [STATE(1759)] = { + [sym_expression] = STATE(4059), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1760)] = { + [sym_expression] = STATE(4938), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1761)] = { + [sym_expression] = STATE(4939), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1762)] = { + [sym_expression] = STATE(4940), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1763)] = { + [sym_expression] = STATE(4941), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1764)] = { + [sym_expression] = STATE(4942), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1765)] = { + [sym_expression] = STATE(4943), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1766)] = { + [sym_expression] = STATE(4944), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1767)] = { + [sym_expression] = STATE(5014), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1768)] = { + [sym_expression] = STATE(6106), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1769)] = { + [sym_expression] = STATE(5824), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1770)] = { + [sym_expression] = STATE(5629), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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), @@ -294114,7 +293802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2336), [anon_sym___extension__] = ACTIONS(2950), [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1860), [sym_primitive_type] = ACTIONS(2954), [anon_sym_not] = ACTIONS(2232), [anon_sym_compl] = ACTIONS(2232), @@ -294160,183 +293848,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(2294), [anon_sym_requires] = ACTIONS(2296), [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), + [anon_sym_LBRACK_COLON] = ACTIONS(2958), [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), + [STATE(1771)] = { + [sym_expression] = STATE(5629), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [sym_identifier] = ACTIONS(6556), + [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(1860), + [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(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), + [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(2958), + [sym_this] = ACTIONS(2276), }, - [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), + [STATE(1772)] = { + [sym_expression] = STATE(5149), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3933), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2807), + [anon_sym_PLUS] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2811), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(1860), [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_not] = ACTIONS(2807), + [anon_sym_compl] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_sizeof] = ACTIONS(2815), [anon_sym___alignof__] = ACTIONS(2402), [anon_sym___alignof] = ACTIONS(2402), [anon_sym__alignof] = ACTIONS(2402), @@ -294348,17 +294036,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_number_literal] = ACTIONS(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), [sym_true] = ACTIONS(2418), [sym_false] = ACTIONS(2418), [anon_sym_NULL] = ACTIONS(2420), @@ -294366,80 +294054,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2823), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(2827), + [anon_sym_new] = ACTIONS(2829), [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), + [anon_sym_CARET_CARET] = ACTIONS(2831), [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), + [STATE(1773)] = { + [sym_expression] = STATE(6118), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1774)] = { + [sym_expression] = STATE(7987), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -294452,7 +294248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -294484,70 +294280,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(2728), [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(1775)] = { + [sym_expression] = STATE(7669), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(6558), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1776)] = { + [sym_expression] = STATE(7670), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1777)] = { + [sym_expression] = STATE(5823), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1778)] = { + [sym_expression] = STATE(5865), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), + }, + [STATE(1779)] = { + [sym_expression] = STATE(5653), + [sym__string] = STATE(5860), + [sym_conditional_expression] = STATE(6219), + [sym_assignment_expression] = STATE(6219), + [sym_pointer_expression] = STATE(6354), + [sym_unary_expression] = STATE(6219), + [sym_binary_expression] = STATE(6219), + [sym_update_expression] = STATE(6219), + [sym_cast_expression] = STATE(6219), + [sym_sizeof_expression] = STATE(6219), + [sym_alignof_expression] = STATE(6219), + [sym_offsetof_expression] = STATE(6219), + [sym_generic_expression] = STATE(6219), + [sym_subscript_expression] = STATE(6354), + [sym_call_expression] = STATE(6354), + [sym_gnu_asm_expression] = STATE(6219), + [sym_extension_expression] = STATE(6219), + [sym_field_expression] = STATE(6354), + [sym_compound_literal_expression] = STATE(6219), + [sym_parenthesized_expression] = STATE(6354), + [sym_char_literal] = STATE(5860), + [sym_concatenated_string] = STATE(5860), + [sym_string_literal] = STATE(4101), + [sym_null] = STATE(6219), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11801), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6219), + [sym_raw_string_literal] = STATE(4101), + [sym_co_await_expression] = STATE(6219), + [sym_new_expression] = STATE(6219), + [sym_delete_expression] = STATE(6219), + [sym_requires_clause] = STATE(6219), + [sym_requires_expression] = STATE(6219), + [sym_lambda_expression] = STATE(6219), + [sym_lambda_capture_specifier] = STATE(8991), + [sym_fold_expression] = STATE(6219), + [sym_parameter_pack_expansion] = STATE(6219), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6354), + [sym_qualified_type_identifier] = STATE(11801), + [sym_reflect_expression] = STATE(6219), + [sym_splice_specifier] = STATE(5415), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10429), + [sym_splice_expression] = STATE(5925), + [sym_user_defined_literal] = STATE(6354), + [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(1860), + [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(2958), + [sym_this] = ACTIONS(2276), + }, + [STATE(1780)] = { + [sym_expression] = STATE(7604), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(6560), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1781)] = { + [sym_expression] = STATE(5316), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(6562), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(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(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(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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1782)] = { + [sym_expression] = STATE(7773), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -294560,7 +295112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -294592,183 +295144,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(2728), [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), + [STATE(1783)] = { + [sym_expression] = STATE(7648), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), [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), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1784)] = { + [sym_expression] = STATE(7383), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(6180), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -294776,21 +295328,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -294798,85 +295350,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1785)] = { + [sym_expression] = STATE(7620), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1786)] = { + [sym_expression] = STATE(6439), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -294884,21 +295544,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -294906,80 +295566,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1787)] = { + [sym_expression] = STATE(7991), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -294992,7 +295652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295024,75 +295684,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(2728), [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(1788)] = { + [sym_expression] = STATE(6536), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -295100,21 +295760,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -295122,85 +295782,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1789)] = { + [sym_expression] = STATE(6607), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -295208,21 +295868,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -295230,80 +295890,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [sym_this] = ACTIONS(237), }, - [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), + [STATE(1790)] = { + [sym_expression] = STATE(7590), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -295316,7 +295976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295348,178 +296008,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(2728), [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), - }, - [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), + [STATE(1791)] = { + [sym_expression] = STATE(8122), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -295532,7 +296084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295564,75 +296116,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1792)] = { + [sym_expression] = STATE(7649), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), + }, + [STATE(1793)] = { + [sym_expression] = STATE(7632), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1794)] = { + [sym_expression] = STATE(6017), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1795)] = { + [sym_expression] = STATE(7382), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -295640,21 +296516,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -295662,80 +296538,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1796)] = { + [sym_expression] = STATE(6536), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1797)] = { + [sym_expression] = STATE(6607), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1798)] = { + [sym_expression] = STATE(7337), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(6564), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1799)] = { + [sym_expression] = STATE(8010), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -295748,7 +296948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295780,183 +296980,939 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1800)] = { + [sym_expression] = STATE(4167), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(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(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(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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(4062), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(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(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(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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1802)] = { + [sym_expression] = STATE(7712), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(6566), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), + }, + [STATE(1803)] = { + [sym_expression] = STATE(7713), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), + }, + [STATE(1804)] = { + [sym_expression] = STATE(5471), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(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(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(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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1805)] = { + [sym_expression] = STATE(4167), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1806)] = { + [sym_expression] = STATE(7641), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1807)] = { + [sym_expression] = STATE(4062), + [sym__string] = STATE(5068), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5068), + [sym_concatenated_string] = STATE(5068), + [sym_string_literal] = STATE(3746), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3746), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(3951), + [anon_sym_BANG] = ACTIONS(2390), + [anon_sym_TILDE] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(2392), + [anon_sym_COLON_COLON] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2388), + [anon_sym_compl] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(3957), + [anon_sym_PLUS_PLUS] = ACTIONS(3957), + [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(1808)] = { + [sym_expression] = STATE(7811), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -295964,7 +297920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295986,85 +297942,733 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(5932), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(6568), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1810)] = { + [sym_expression] = STATE(5937), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1811)] = { + [sym_expression] = STATE(6555), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), + }, + [STATE(1812)] = { + [sym_expression] = STATE(5834), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(6570), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1813)] = { + [sym_expression] = STATE(5951), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), + }, + [STATE(1814)] = { + [sym_expression] = STATE(7733), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(6572), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), + }, + [STATE(1815)] = { + [sym_expression] = STATE(6536), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -296072,7 +298676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296094,85 +298698,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1816)] = { + [sym_expression] = STATE(8012), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -296180,7 +298784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296202,85 +298806,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1817)] = { + [sym_expression] = STATE(6607), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -296288,7 +298892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296310,85 +298914,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1818)] = { + [sym_expression] = STATE(7736), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(6574), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -296396,7 +299000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296418,80 +299022,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1819)] = { + [sym_expression] = STATE(8054), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -296504,7 +299108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296536,75 +299140,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(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1820)] = { + [sym_expression] = STATE(6439), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -296612,7 +299216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296634,80 +299238,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1821)] = { + [sym_expression] = STATE(8082), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -296720,7 +299324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296752,75 +299356,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(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1822)] = { + [sym_expression] = STATE(4170), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1823)] = { + [sym_expression] = STATE(7735), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -296828,7 +299540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296850,193 +299562,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1824)] = { + [sym_expression] = STATE(7679), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(6576), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -297044,7 +299648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297066,80 +299670,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [sym_this] = ACTIONS(237), }, - [STATE(1842)] = { - [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), + [STATE(1825)] = { + [sym_expression] = STATE(7678), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -297152,7 +299756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297184,75 +299788,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(2728), [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(1826)] = { + [sym_expression] = STATE(7682), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -297260,7 +299864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297282,85 +299886,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1827)] = { + [sym_expression] = STATE(6419), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -297368,7 +299972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297390,85 +299994,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1828)] = { + [sym_expression] = STATE(7683), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -297476,7 +300080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297498,193 +300102,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(7684), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -297692,7 +300188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297714,85 +300210,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1830)] = { + [sym_expression] = STATE(7685), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -297800,7 +300296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297822,193 +300318,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1831)] = { + [sym_expression] = STATE(7686), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -298016,7 +300404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298038,85 +300426,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1832)] = { + [sym_expression] = STATE(7687), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -298124,7 +300512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298146,85 +300534,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1833)] = { + [sym_expression] = STATE(7688), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -298232,7 +300620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298254,193 +300642,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1834)] = { + [sym_expression] = STATE(7689), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -298448,7 +300728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298470,193 +300750,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1835)] = { + [sym_expression] = STATE(7690), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -298664,7 +300836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298686,85 +300858,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1836)] = { + [sym_expression] = STATE(7348), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -298772,21 +300944,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -298794,85 +300966,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1837)] = { + [sym_expression] = STATE(7692), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -298880,7 +301052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298902,80 +301074,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1838)] = { + [sym_expression] = STATE(8088), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -298988,7 +301160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299020,70 +301192,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(2728), [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(1839)] = { + [sym_expression] = STATE(8125), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -299096,7 +301268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299128,75 +301300,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(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1840)] = { + [sym_expression] = STATE(7798), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1841)] = { + [sym_expression] = STATE(7694), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -299204,7 +301484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299226,80 +301506,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1842)] = { + [sym_expression] = STATE(7801), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -299312,7 +301592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299344,183 +301624,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(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1843)] = { + [sym_expression] = STATE(6419), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -299528,21 +301700,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -299550,85 +301722,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1844)] = { + [sym_expression] = STATE(7696), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6592), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6592), + [sym_call_expression] = STATE(6592), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6592), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6592), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11870), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(6592), + [sym_qualified_type_identifier] = STATE(11870), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10449), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6592), + [sym_identifier] = ACTIONS(4968), + [anon_sym_LPAREN2] = ACTIONS(4198), + [anon_sym_BANG] = ACTIONS(4200), + [anon_sym_TILDE] = ACTIONS(4200), + [anon_sym_DASH] = ACTIONS(4202), + [anon_sym_PLUS] = ACTIONS(4202), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(4970), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4976), + [anon_sym_not] = ACTIONS(4202), + [anon_sym_compl] = ACTIONS(4202), + [anon_sym_DASH_DASH] = ACTIONS(4212), + [anon_sym_PLUS_PLUS] = ACTIONS(4212), + [anon_sym_sizeof] = ACTIONS(4214), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -299636,7 +301808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4978), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299658,80 +301830,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4218), [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(4220), + [anon_sym_new] = ACTIONS(4222), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4224), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1845)] = { + [sym_expression] = STATE(7350), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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(1846)] = { + [sym_expression] = STATE(7541), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -299744,7 +302024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299776,286 +302056,2230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1847)] = { + [sym_expression] = STATE(5969), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(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), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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(1848)] = { + [sym_expression] = STATE(5977), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1849)] = { + [sym_expression] = STATE(4059), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1850)] = { + [sym_expression] = STATE(5978), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1851)] = { + [sym_expression] = STATE(5979), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1852)] = { + [sym_expression] = STATE(5980), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1853)] = { + [sym_expression] = STATE(5981), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1854)] = { + [sym_expression] = STATE(5982), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1855)] = { + [sym_expression] = STATE(5983), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1856)] = { + [sym_expression] = STATE(5984), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1857)] = { + [sym_expression] = STATE(5985), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1858)] = { + [sym_expression] = STATE(5970), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(6578), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1859)] = { + [sym_expression] = STATE(4048), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1860)] = { + [sym_expression] = STATE(5975), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(6580), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1861)] = { + [sym_expression] = STATE(5986), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1862)] = { + [sym_expression] = STATE(7351), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1863)] = { + [sym_expression] = STATE(5989), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1864)] = { + [sym_expression] = STATE(5992), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8929), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4230), + [anon_sym_BANG] = ACTIONS(3014), + [anon_sym_TILDE] = ACTIONS(3014), + [anon_sym_DASH] = ACTIONS(3012), + [anon_sym_PLUS] = ACTIONS(3012), + [anon_sym_STAR] = ACTIONS(4204), + [anon_sym_AMP] = ACTIONS(4204), + [anon_sym___extension__] = ACTIONS(3016), + [anon_sym_COLON_COLON] = ACTIONS(3018), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3012), + [anon_sym_compl] = ACTIONS(3012), + [anon_sym_DASH_DASH] = ACTIONS(4236), + [anon_sym_PLUS_PLUS] = ACTIONS(4236), + [anon_sym_sizeof] = ACTIONS(3020), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3022), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3024), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3026), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), + }, + [STATE(1865)] = { + [sym_expression] = STATE(7352), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1866)] = { + [sym_expression] = STATE(8128), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1867)] = { + [sym_expression] = STATE(8133), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300068,7 +304292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300100,70 +304324,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(2728), [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(1868)] = { + [sym_expression] = STATE(8134), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300176,7 +304400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300208,178 +304432,394 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1869)] = { + [sym_expression] = STATE(7353), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1870)] = { + [sym_expression] = STATE(7356), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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_expression] = STATE(7357), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, [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(7998), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300392,7 +304832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300424,70 +304864,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(2728), [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(8094), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300500,7 +304940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300532,70 +304972,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(2728), [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(8096), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1875)] = { + [sym_expression] = STATE(8099), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300608,7 +305156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300640,75 +305188,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(2728), [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), + [STATE(1876)] = { + [sym_expression] = STATE(7358), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -300716,21 +305264,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -300738,80 +305286,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [STATE(1877)] = { + [sym_expression] = STATE(7359), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), + }, + [STATE(1878)] = { + [sym_expression] = STATE(7483), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300824,7 +305480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300856,75 +305512,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(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(1879)] = { + [sym_expression] = STATE(7937), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -300932,7 +305588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300954,80 +305610,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [sym_this] = ACTIONS(237), }, - [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), + [STATE(1880)] = { + [sym_expression] = STATE(7988), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -301040,7 +305696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -301072,70 +305728,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(2728), [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(1881)] = { + [sym_expression] = STATE(7995), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -301148,7 +305804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -301180,178 +305836,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(2728), [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), + [STATE(1882)] = { + [sym_expression] = STATE(5901), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), [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), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), }, - [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(1883)] = { + [sym_expression] = STATE(8002), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -301364,7 +306020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -301396,75 +306052,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(2728), [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), + [STATE(1884)] = { + [sym_expression] = STATE(8017), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -301472,21 +306128,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), @@ -301494,404 +306150,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2728), [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_expression] = STATE(8019), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, [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), + [sym_expression] = STATE(8023), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -301904,7 +306344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -301936,70 +306376,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(2728), [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), + [sym_expression] = STATE(7569), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -302012,7 +306452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302044,75 +306484,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(2728), [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), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = 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(8101), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -302120,7 +306560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302142,80 +306582,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_delete] = ACTIONS(4439), [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(4441), [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(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [sym_expression] = STATE(8106), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -302228,7 +306668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302260,70 +306700,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(2728), [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), + [sym_expression] = STATE(8107), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -302336,7 +306776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302368,75 +306808,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(2728), [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), + [sym_expression] = STATE(7364), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -302444,21 +306884,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), @@ -302466,193 +306906,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), [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(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [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), + [sym_expression] = STATE(8120), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -302660,7 +306992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302682,85 +307014,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1893)] = { + [sym_expression] = STATE(8129), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -302768,7 +307100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302790,85 +307122,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [sym_this] = ACTIONS(237), }, + [STATE(1894)] = { + [sym_expression] = STATE(8130), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, [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), + [sym_expression] = STATE(8116), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -302876,21 +307316,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), @@ -302898,85 +307338,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2728), [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), + [sym_expression] = STATE(7419), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -302984,7 +307424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303006,85 +307446,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [sym_expression] = STATE(7806), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -303092,7 +307532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303114,85 +307554,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [sym_expression] = STATE(8006), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -303200,7 +307640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303222,85 +307662,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [sym_expression] = STATE(7815), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -303308,7 +307748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303330,85 +307770,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [sym_expression] = STATE(7820), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -303416,7 +307856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303438,85 +307878,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [sym_expression] = STATE(7821), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1902)] = { + [sym_expression] = STATE(7823), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -303524,7 +308072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303546,85 +308094,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [STATE(1903)] = { + [sym_expression] = STATE(7436), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -303632,7 +308180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303654,85 +308202,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [STATE(1904)] = { + [sym_expression] = STATE(7830), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -303740,7 +308288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303762,85 +308310,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [STATE(1905)] = { + [sym_expression] = STATE(7835), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -303848,7 +308396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303870,85 +308418,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1906)] = { + [sym_expression] = STATE(7839), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -303956,7 +308504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303978,85 +308526,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1907)] = { + [sym_expression] = STATE(7840), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), + }, + [STATE(1908)] = { + [sym_expression] = STATE(7842), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -304064,7 +308720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -304086,85 +308742,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [STATE(1909)] = { + [sym_expression] = STATE(8013), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -304172,21 +308828,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), @@ -304194,85 +308850,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2728), [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(1910)] = { + [sym_expression] = STATE(7450), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -304280,7 +308936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -304302,85 +308958,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1911)] = { + [sym_expression] = STATE(7862), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -304388,7 +309044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -304410,1705 +309066,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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_expression] = STATE(7877), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, [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_expression] = STATE(7470), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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_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(2728), + [sym_this] = ACTIONS(237), }, [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_expression] = STATE(7887), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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_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(2728), + [sym_this] = ACTIONS(237), }, [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [sym_expression] = STATE(7913), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -306116,21 +309476,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), @@ -306138,409 +309498,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2728), [sym_this] = ACTIONS(237), }, - [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), - }, - [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), - }, - [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), + [STATE(1916)] = { + [sym_expression] = STATE(7922), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(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_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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1917)] = { + [sym_expression] = STATE(7701), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -306548,21 +309692,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), @@ -306570,85 +309714,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2728), [sym_this] = ACTIONS(237), }, - [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), + [STATE(1918)] = { + [sym_expression] = STATE(7926), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -306656,7 +309800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -306678,85 +309822,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [STATE(1919)] = { + [sym_expression] = STATE(8018), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -306764,7 +309908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -306786,85 +309930,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [STATE(1920)] = { + [sym_expression] = STATE(7930), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -306872,21 +310016,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), @@ -306894,85 +310038,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2728), [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), + [STATE(1921)] = { + [sym_expression] = STATE(7933), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -306980,7 +310124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307002,85 +310146,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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(1922)] = { + [sym_expression] = STATE(7938), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -307088,7 +310232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307110,193 +310254,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2422), [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [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(2728), [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), + [STATE(1923)] = { + [sym_expression] = STATE(7390), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(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), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1924)] = { + [sym_expression] = STATE(7942), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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), @@ -307304,21 +310448,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [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), @@ -307326,80 +310470,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(2728), [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(1925)] = { + [sym_expression] = STATE(7947), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307412,7 +310556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307444,70 +310588,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(2728), [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(1926)] = { + [sym_expression] = STATE(7950), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307520,7 +310664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307552,70 +310696,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(2728), [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(1927)] = { + [sym_expression] = STATE(7954), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307628,7 +310772,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307660,70 +310804,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(2728), [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(1928)] = { + [sym_expression] = STATE(7957), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307736,7 +310880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307768,70 +310912,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(2728), [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(1929)] = { + [sym_expression] = STATE(7959), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307844,7 +310988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307876,70 +311020,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(2728), [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(1930)] = { + [sym_expression] = STATE(7963), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307952,7 +311096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307984,70 +311128,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(2728), [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), + [STATE(1931)] = { + [sym_expression] = STATE(7965), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = 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(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -308060,7 +311204,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2726), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -308092,15452 +311236,9020 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), [sym_this] = ACTIONS(237), }, - [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), - [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___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_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_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(1932)] = { + [sym_expression] = STATE(7967), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), - [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___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_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_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(1933)] = { + [sym_expression] = STATE(6593), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1934)] = { + [sym_expression] = STATE(6043), + [sym__string] = STATE(6199), + [sym_conditional_expression] = STATE(6412), + [sym_assignment_expression] = STATE(6412), + [sym_pointer_expression] = STATE(6534), + [sym_unary_expression] = STATE(6412), + [sym_binary_expression] = STATE(6412), + [sym_update_expression] = STATE(6412), + [sym_cast_expression] = STATE(6412), + [sym_sizeof_expression] = STATE(6412), + [sym_alignof_expression] = STATE(6412), + [sym_offsetof_expression] = STATE(6412), + [sym_generic_expression] = STATE(6412), + [sym_subscript_expression] = STATE(6534), + [sym_call_expression] = STATE(6534), + [sym_gnu_asm_expression] = STATE(6412), + [sym_extension_expression] = STATE(6412), + [sym_field_expression] = STATE(6534), + [sym_compound_literal_expression] = STATE(6412), + [sym_parenthesized_expression] = STATE(6534), + [sym_char_literal] = STATE(6199), + [sym_concatenated_string] = STATE(6199), + [sym_string_literal] = STATE(4318), + [sym_null] = STATE(6412), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11676), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6412), + [sym_raw_string_literal] = STATE(4318), + [sym_co_await_expression] = STATE(6412), + [sym_new_expression] = STATE(6412), + [sym_delete_expression] = STATE(6412), + [sym_requires_clause] = STATE(6412), + [sym_requires_expression] = STATE(6412), + [sym_lambda_expression] = STATE(6412), + [sym_lambda_capture_specifier] = STATE(8995), + [sym_fold_expression] = STATE(6412), + [sym_parameter_pack_expansion] = STATE(6412), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6534), + [sym_qualified_type_identifier] = STATE(11676), + [sym_reflect_expression] = STATE(6412), + [sym_splice_specifier] = STATE(5610), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10472), + [sym_splice_expression] = STATE(6366), + [sym_user_defined_literal] = STATE(6534), + [sym_identifier] = ACTIONS(2960), + [anon_sym_LPAREN2] = ACTIONS(4357), + [anon_sym_BANG] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2962), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(2966), + [anon_sym_COLON_COLON] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2972), + [anon_sym_not] = ACTIONS(2962), + [anon_sym_compl] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(4375), + [anon_sym_PLUS_PLUS] = ACTIONS(4375), + [anon_sym_sizeof] = ACTIONS(2974), + [anon_sym___alignof__] = ACTIONS(2976), + [anon_sym___alignof] = ACTIONS(2976), + [anon_sym__alignof] = ACTIONS(2976), + [anon_sym_alignof] = ACTIONS(2976), + [anon_sym__Alignof] = ACTIONS(2976), + [anon_sym_offsetof] = ACTIONS(2978), + [anon_sym__Generic] = ACTIONS(2980), + [anon_sym_typename] = ACTIONS(2982), + [anon_sym_asm] = ACTIONS(2984), + [anon_sym___asm__] = ACTIONS(2984), + [anon_sym___asm] = ACTIONS(2984), + [sym_number_literal] = ACTIONS(2986), + [anon_sym_L_SQUOTE] = ACTIONS(2988), + [anon_sym_u_SQUOTE] = ACTIONS(2988), + [anon_sym_U_SQUOTE] = ACTIONS(2988), + [anon_sym_u8_SQUOTE] = ACTIONS(2988), + [anon_sym_SQUOTE] = ACTIONS(2988), + [anon_sym_L_DQUOTE] = ACTIONS(2990), + [anon_sym_u_DQUOTE] = ACTIONS(2990), + [anon_sym_U_DQUOTE] = ACTIONS(2990), + [anon_sym_u8_DQUOTE] = ACTIONS(2990), + [anon_sym_DQUOTE] = ACTIONS(2990), + [sym_true] = ACTIONS(2992), + [sym_false] = ACTIONS(2992), + [anon_sym_NULL] = ACTIONS(2994), + [anon_sym_nullptr] = ACTIONS(2994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2996), + [anon_sym_delete] = ACTIONS(2998), + [anon_sym_R_DQUOTE] = ACTIONS(3000), + [anon_sym_LR_DQUOTE] = ACTIONS(3000), + [anon_sym_uR_DQUOTE] = ACTIONS(3000), + [anon_sym_UR_DQUOTE] = ACTIONS(3000), + [anon_sym_u8R_DQUOTE] = ACTIONS(3000), + [anon_sym_co_await] = ACTIONS(3002), + [anon_sym_new] = ACTIONS(3004), + [anon_sym_requires] = ACTIONS(3006), + [anon_sym_CARET_CARET] = ACTIONS(3008), + [anon_sym_LBRACK_COLON] = ACTIONS(3010), + [sym_this] = ACTIONS(2992), }, - [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), - [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___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_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_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(1935)] = { + [sym_expression] = STATE(6401), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), - [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___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_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_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(1936)] = { + [sym_expression] = STATE(6402), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), - [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___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_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_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(1937)] = { + [sym_expression] = STATE(6403), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), - [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___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_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_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(1938)] = { + [sym_expression] = STATE(7681), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), - [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___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_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_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(1939)] = { + [sym_expression] = STATE(6404), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), - }, - [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), - [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_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(3161), + [sym_this] = ACTIONS(2364), }, - [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), - [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___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_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_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(1940)] = { + [sym_expression] = STATE(6065), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), - [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___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_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_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(1941)] = { + [sym_expression] = STATE(6067), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), - [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___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_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_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(1942)] = { + [sym_expression] = STATE(6406), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), - }, - [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), - [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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1943)] = { + [sym_expression] = STATE(7716), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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(1944)] = { + [sym_expression] = STATE(6494), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), - [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(6588), - [anon_sym_typename] = ACTIONS(5464), + [STATE(1945)] = { + [sym_expression] = STATE(7724), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), - [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(6590), - [anon_sym_typename] = ACTIONS(5464), + [STATE(1946)] = { + [sym_expression] = STATE(7697), + [sym__string] = STATE(7847), + [sym_conditional_expression] = STATE(8231), + [sym_assignment_expression] = STATE(8231), + [sym_pointer_expression] = STATE(6599), + [sym_unary_expression] = STATE(8231), + [sym_binary_expression] = STATE(8231), + [sym_update_expression] = STATE(8231), + [sym_cast_expression] = STATE(8231), + [sym_sizeof_expression] = STATE(8231), + [sym_alignof_expression] = STATE(8231), + [sym_offsetof_expression] = STATE(8231), + [sym_generic_expression] = STATE(8231), + [sym_subscript_expression] = STATE(6599), + [sym_call_expression] = STATE(6599), + [sym_gnu_asm_expression] = STATE(8231), + [sym_extension_expression] = STATE(8231), + [sym_field_expression] = STATE(6599), + [sym_compound_literal_expression] = STATE(8231), + [sym_parenthesized_expression] = STATE(6599), + [sym_char_literal] = STATE(7847), + [sym_concatenated_string] = STATE(7847), + [sym_string_literal] = STATE(6756), + [sym_null] = STATE(8231), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11540), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8231), + [sym_raw_string_literal] = STATE(6756), + [sym_co_await_expression] = STATE(8231), + [sym_new_expression] = STATE(8231), + [sym_delete_expression] = STATE(8231), + [sym_requires_clause] = STATE(8231), + [sym_requires_expression] = STATE(8231), + [sym_lambda_expression] = STATE(8231), + [sym_lambda_capture_specifier] = STATE(9037), + [sym_fold_expression] = STATE(8231), + [sym_parameter_pack_expansion] = STATE(8231), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6599), + [sym_qualified_type_identifier] = STATE(11540), + [sym_reflect_expression] = STATE(8231), + [sym_splice_specifier] = STATE(7507), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10417), + [sym_splice_expression] = STATE(7919), + [sym_user_defined_literal] = STATE(6599), + [sym_identifier] = ACTIONS(4938), + [anon_sym_LPAREN2] = ACTIONS(4240), + [anon_sym_BANG] = ACTIONS(4242), + [anon_sym_TILDE] = ACTIONS(4242), + [anon_sym_DASH] = ACTIONS(4244), + [anon_sym_PLUS] = ACTIONS(4244), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4942), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4944), + [anon_sym_not] = ACTIONS(4244), + [anon_sym_compl] = ACTIONS(4244), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4264), + [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(4268), + [anon_sym__Generic] = ACTIONS(4270), + [anon_sym_typename] = ACTIONS(4946), + [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(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(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(4282), + [sym_false] = ACTIONS(4282), + [anon_sym_NULL] = ACTIONS(4284), + [anon_sym_nullptr] = ACTIONS(4284), [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_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(4290), + [anon_sym_delete] = ACTIONS(4292), + [anon_sym_R_DQUOTE] = ACTIONS(4294), + [anon_sym_LR_DQUOTE] = ACTIONS(4294), + [anon_sym_uR_DQUOTE] = ACTIONS(4294), + [anon_sym_UR_DQUOTE] = ACTIONS(4294), + [anon_sym_u8R_DQUOTE] = ACTIONS(4294), + [anon_sym_co_await] = ACTIONS(4296), + [anon_sym_new] = ACTIONS(4298), + [anon_sym_requires] = ACTIONS(4300), + [anon_sym_CARET_CARET] = ACTIONS(4302), + [anon_sym_LBRACK_COLON] = ACTIONS(4948), + [sym_this] = ACTIONS(4282), }, - [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), - [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(6592), - [anon_sym_typename] = ACTIONS(5464), + [STATE(1947)] = { + [sym_expression] = STATE(7726), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [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(2728), + [sym_this] = ACTIONS(237), }, - [STATE(1963)] = { - [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(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(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), - [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(1948)] = { + [sym_expression] = STATE(7727), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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(1949)] = { + [sym_expression] = STATE(7729), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(6608), - [anon_sym_decltype] = ACTIONS(6608), - [anon_sym_template] = ACTIONS(6608), - [anon_sym_operator] = ACTIONS(6608), - [anon_sym_LBRACK_COLON] = ACTIONS(6610), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1950)] = { + [sym_expression] = STATE(6098), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1951)] = { + [sym_expression] = STATE(7775), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(6616), - [anon_sym_decltype] = ACTIONS(6616), - [anon_sym_template] = ACTIONS(6616), - [anon_sym_operator] = ACTIONS(6616), - [anon_sym_LBRACK_COLON] = ACTIONS(6618), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1952)] = { + [sym_expression] = STATE(7738), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(6582), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), - [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_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_template] = ACTIONS(6624), - [anon_sym_operator] = ACTIONS(6624), - [anon_sym_LBRACK_COLON] = ACTIONS(6626), + [STATE(1953)] = { + [sym_expression] = STATE(7174), + [sym__string] = STATE(7217), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5154), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5154), + [sym_call_expression] = STATE(5154), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5154), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5154), + [sym_char_literal] = STATE(7217), + [sym_concatenated_string] = STATE(7217), + [sym_string_literal] = STATE(5369), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5369), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5154), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5154), + [sym_identifier] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(3892), + [anon_sym_BANG] = ACTIONS(3894), + [anon_sym_TILDE] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_STAR] = ACTIONS(3898), + [anon_sym_AMP] = ACTIONS(3898), + [anon_sym___extension__] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4680), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3896), + [anon_sym_compl] = ACTIONS(3896), + [anon_sym_DASH_DASH] = ACTIONS(3904), + [anon_sym_PLUS_PLUS] = ACTIONS(3904), + [anon_sym_sizeof] = ACTIONS(3906), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3908), + [anon_sym_L_SQUOTE] = ACTIONS(3910), + [anon_sym_u_SQUOTE] = ACTIONS(3910), + [anon_sym_U_SQUOTE] = ACTIONS(3910), + [anon_sym_u8_SQUOTE] = ACTIONS(3910), + [anon_sym_SQUOTE] = ACTIONS(3910), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [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(3914), + [anon_sym_delete] = ACTIONS(3916), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_co_await] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), + [anon_sym_requires] = ACTIONS(3924), + [anon_sym_CARET_CARET] = ACTIONS(3926), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1954)] = { + [sym_expression] = STATE(7740), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), - [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), + [STATE(1955)] = { + [sym_expression] = STATE(7741), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1956)] = { + [sym_expression] = STATE(7742), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [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), - }, - [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), - }, - [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_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), - }, - [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), - [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), - }, - [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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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(1957)] = { + [sym_expression] = STATE(7743), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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(1958)] = { + [sym_expression] = STATE(7744), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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_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), + [STATE(1959)] = { + [sym_expression] = STATE(7745), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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_typename] = ACTIONS(5464), + [STATE(1960)] = { + [sym_expression] = STATE(7746), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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(1961)] = { + [sym_expression] = STATE(7747), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1962)] = { + [sym_expression] = STATE(7748), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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(1963)] = { + [sym_expression] = STATE(7749), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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_typename] = ACTIONS(5464), + [STATE(1964)] = { + [sym_expression] = STATE(7751), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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_typename] = ACTIONS(5464), + [STATE(1965)] = { + [sym_expression] = STATE(6500), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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(1966)] = { + [sym_expression] = STATE(7755), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [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_typename] = ACTIONS(5464), + [STATE(1967)] = { + [sym_expression] = STATE(6543), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1968)] = { + [sym_expression] = STATE(7757), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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_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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1969)] = { + [sym_expression] = STATE(6066), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1970)] = { + [sym_expression] = STATE(6074), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1971)] = { + [sym_expression] = STATE(6075), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1972)] = { + [sym_expression] = STATE(6076), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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_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), - [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), - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(1973)] = { + [sym_expression] = STATE(6077), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1974)] = { + [sym_expression] = STATE(6078), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1975)] = { + [sym_expression] = STATE(6079), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1976)] = { + [sym_expression] = STATE(6080), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1977)] = { + [sym_expression] = STATE(6081), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1978)] = { + [sym_expression] = STATE(6082), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1979)] = { + [sym_expression] = STATE(6083), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1980)] = { + [sym_expression] = STATE(6069), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(6584), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), - }, - [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), - }, - [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), - }, - [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_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_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), - [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), + [STATE(1981)] = { + [sym_expression] = STATE(6070), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), - [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), - [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), - [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_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_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), - [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), - }, - [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), - [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), - }, - [STATE(2036)] = { - [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_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), - }, - [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), - [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), - [anon_sym_COLON_RBRACK] = ACTIONS(7001), - }, - [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), - [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), - }, - [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), - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(1982)] = { + [sym_expression] = STATE(5916), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(6586), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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(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), - }, - [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), - [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_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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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(1983)] = { + [sym_expression] = STATE(6072), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(6588), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), - }, - [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(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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1984)] = { + [sym_expression] = STATE(6084), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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(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), - [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_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_GT2] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1985)] = { + [sym_expression] = STATE(6618), + [sym__string] = STATE(6699), + [sym_conditional_expression] = STATE(6827), + [sym_assignment_expression] = STATE(6827), + [sym_pointer_expression] = STATE(6254), + [sym_unary_expression] = STATE(6827), + [sym_binary_expression] = STATE(6827), + [sym_update_expression] = STATE(6827), + [sym_cast_expression] = STATE(6827), + [sym_sizeof_expression] = STATE(6827), + [sym_alignof_expression] = STATE(6827), + [sym_offsetof_expression] = STATE(6827), + [sym_generic_expression] = STATE(6827), + [sym_subscript_expression] = STATE(6254), + [sym_call_expression] = STATE(6254), + [sym_gnu_asm_expression] = STATE(6827), + [sym_extension_expression] = STATE(6827), + [sym_field_expression] = STATE(6254), + [sym_compound_literal_expression] = STATE(6827), + [sym_parenthesized_expression] = STATE(6254), + [sym_char_literal] = STATE(6699), + [sym_concatenated_string] = STATE(6699), + [sym_string_literal] = STATE(4546), + [sym_null] = STATE(6827), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11799), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6827), + [sym_raw_string_literal] = STATE(4546), + [sym_co_await_expression] = STATE(6827), + [sym_new_expression] = STATE(6827), + [sym_delete_expression] = STATE(6827), + [sym_requires_clause] = STATE(6827), + [sym_requires_expression] = STATE(6827), + [sym_lambda_expression] = STATE(6827), + [sym_lambda_capture_specifier] = STATE(9033), + [sym_fold_expression] = STATE(6827), + [sym_parameter_pack_expansion] = STATE(6827), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8960), + [sym_qualified_identifier] = STATE(6254), + [sym_qualified_type_identifier] = STATE(11799), + [sym_reflect_expression] = STATE(6827), + [sym_splice_specifier] = STATE(6228), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10496), + [sym_splice_expression] = STATE(6700), + [sym_user_defined_literal] = STATE(6254), + [sym_identifier] = ACTIONS(3151), + [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(3153), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3157), + [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(3159), + [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(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), - }, - [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), + [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(3161), + [sym_this] = ACTIONS(2364), }, - [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), + [STATE(1986)] = { + [sym_expression] = STATE(6087), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [anon_sym_NULL] = ACTIONS(2420), + [anon_sym_nullptr] = ACTIONS(2420), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2424), + [anon_sym_delete] = ACTIONS(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1987)] = { + [sym_expression] = STATE(6089), + [sym__string] = STATE(5086), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5086), + [sym_concatenated_string] = STATE(5086), + [sym_string_literal] = STATE(3649), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(3649), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2805), + [anon_sym_LPAREN2] = ACTIONS(4409), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3080), + [anon_sym_PLUS] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(3080), + [anon_sym_compl] = ACTIONS(3080), + [anon_sym_DASH_DASH] = ACTIONS(4417), + [anon_sym_PLUS_PLUS] = ACTIONS(4417), + [anon_sym_sizeof] = ACTIONS(3088), + [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(2817), + [anon_sym_L_SQUOTE] = ACTIONS(2819), + [anon_sym_u_SQUOTE] = ACTIONS(2819), + [anon_sym_U_SQUOTE] = ACTIONS(2819), + [anon_sym_u8_SQUOTE] = ACTIONS(2819), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_L_DQUOTE] = ACTIONS(2821), + [anon_sym_u_DQUOTE] = ACTIONS(2821), + [anon_sym_U_DQUOTE] = ACTIONS(2821), + [anon_sym_u8_DQUOTE] = ACTIONS(2821), + [anon_sym_DQUOTE] = ACTIONS(2821), + [sym_true] = ACTIONS(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(3090), + [anon_sym_R_DQUOTE] = ACTIONS(2825), + [anon_sym_LR_DQUOTE] = ACTIONS(2825), + [anon_sym_uR_DQUOTE] = ACTIONS(2825), + [anon_sym_UR_DQUOTE] = ACTIONS(2825), + [anon_sym_u8R_DQUOTE] = ACTIONS(2825), + [anon_sym_co_await] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(3094), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), + [STATE(1988)] = { + [sym_expression] = STATE(7772), + [sym__string] = STATE(8007), + [sym_conditional_expression] = STATE(8202), + [sym_assignment_expression] = STATE(8202), + [sym_pointer_expression] = STATE(6562), + [sym_unary_expression] = STATE(8202), + [sym_binary_expression] = STATE(8202), + [sym_update_expression] = STATE(8202), + [sym_cast_expression] = STATE(8202), + [sym_sizeof_expression] = STATE(8202), + [sym_alignof_expression] = STATE(8202), + [sym_offsetof_expression] = STATE(8202), + [sym_generic_expression] = STATE(8202), + [sym_subscript_expression] = STATE(6562), + [sym_call_expression] = STATE(6562), + [sym_gnu_asm_expression] = STATE(8202), + [sym_extension_expression] = STATE(8202), + [sym_field_expression] = STATE(6562), + [sym_compound_literal_expression] = STATE(8202), + [sym_parenthesized_expression] = STATE(6562), + [sym_char_literal] = STATE(8007), + [sym_concatenated_string] = STATE(8007), + [sym_string_literal] = STATE(6702), + [sym_null] = STATE(8202), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11714), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(8202), + [sym_raw_string_literal] = STATE(6702), + [sym_co_await_expression] = STATE(8202), + [sym_new_expression] = STATE(8202), + [sym_delete_expression] = STATE(8202), + [sym_requires_clause] = STATE(8202), + [sym_requires_expression] = STATE(8202), + [sym_lambda_expression] = STATE(8202), + [sym_lambda_capture_specifier] = STATE(8992), + [sym_fold_expression] = STATE(8202), + [sym_parameter_pack_expansion] = STATE(8202), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8910), + [sym_qualified_identifier] = STATE(6562), + [sym_qualified_type_identifier] = STATE(11714), + [sym_reflect_expression] = STATE(8202), + [sym_splice_specifier] = STATE(7558), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10446), + [sym_splice_expression] = STATE(8008), + [sym_user_defined_literal] = STATE(6562), + [sym_identifier] = ACTIONS(4956), + [anon_sym_LPAREN2] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_STAR] = ACTIONS(3238), + [anon_sym_AMP] = ACTIONS(3238), + [anon_sym___extension__] = ACTIONS(4958), + [anon_sym_COLON_COLON] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(4962), + [anon_sym_not] = ACTIONS(3236), + [anon_sym_compl] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_sizeof] = ACTIONS(3258), + [anon_sym___alignof__] = ACTIONS(3260), + [anon_sym___alignof] = ACTIONS(3260), + [anon_sym__alignof] = ACTIONS(3260), + [anon_sym_alignof] = ACTIONS(3260), + [anon_sym__Alignof] = ACTIONS(3260), + [anon_sym_offsetof] = ACTIONS(3262), + [anon_sym__Generic] = ACTIONS(3264), + [anon_sym_typename] = ACTIONS(4964), + [anon_sym_asm] = ACTIONS(3268), + [anon_sym___asm__] = ACTIONS(3268), + [anon_sym___asm] = ACTIONS(3268), + [sym_number_literal] = ACTIONS(3270), + [anon_sym_L_SQUOTE] = ACTIONS(3272), + [anon_sym_u_SQUOTE] = ACTIONS(3272), + [anon_sym_U_SQUOTE] = ACTIONS(3272), + [anon_sym_u8_SQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_L_DQUOTE] = ACTIONS(3274), + [anon_sym_u_DQUOTE] = ACTIONS(3274), + [anon_sym_U_DQUOTE] = ACTIONS(3274), + [anon_sym_u8_DQUOTE] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [sym_true] = ACTIONS(3276), + [sym_false] = ACTIONS(3276), + [anon_sym_NULL] = ACTIONS(3278), + [anon_sym_nullptr] = ACTIONS(3278), [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), - }, - [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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_R_DQUOTE] = ACTIONS(3290), + [anon_sym_LR_DQUOTE] = ACTIONS(3290), + [anon_sym_uR_DQUOTE] = ACTIONS(3290), + [anon_sym_UR_DQUOTE] = ACTIONS(3290), + [anon_sym_u8R_DQUOTE] = ACTIONS(3290), + [anon_sym_co_await] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_requires] = ACTIONS(3296), + [anon_sym_CARET_CARET] = ACTIONS(3298), + [anon_sym_LBRACK_COLON] = ACTIONS(4966), + [sym_this] = ACTIONS(3276), }, - [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), + [STATE(1989)] = { + [sym_expression] = STATE(7769), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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_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), - [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), - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1990)] = { + [sym_expression] = STATE(5987), + [sym__string] = STATE(6132), + [sym_conditional_expression] = STATE(6533), + [sym_assignment_expression] = STATE(6533), + [sym_pointer_expression] = STATE(6558), + [sym_unary_expression] = STATE(6533), + [sym_binary_expression] = STATE(6533), + [sym_update_expression] = STATE(6533), + [sym_cast_expression] = STATE(6533), + [sym_sizeof_expression] = STATE(6533), + [sym_alignof_expression] = STATE(6533), + [sym_offsetof_expression] = STATE(6533), + [sym_generic_expression] = STATE(6533), + [sym_subscript_expression] = STATE(6558), + [sym_call_expression] = STATE(6558), + [sym_gnu_asm_expression] = STATE(6533), + [sym_extension_expression] = STATE(6533), + [sym_field_expression] = STATE(6558), + [sym_compound_literal_expression] = STATE(6533), + [sym_parenthesized_expression] = STATE(6558), + [sym_char_literal] = STATE(6132), + [sym_concatenated_string] = STATE(6132), + [sym_string_literal] = STATE(4281), + [sym_null] = STATE(6533), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11809), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6533), + [sym_raw_string_literal] = STATE(4281), + [sym_co_await_expression] = STATE(6533), + [sym_new_expression] = STATE(6533), + [sym_delete_expression] = STATE(6533), + [sym_requires_clause] = STATE(6533), + [sym_requires_expression] = STATE(6533), + [sym_lambda_expression] = STATE(6533), + [sym_lambda_capture_specifier] = STATE(9052), + [sym_fold_expression] = STATE(6533), + [sym_parameter_pack_expansion] = STATE(6533), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8904), + [sym_qualified_identifier] = STATE(6558), + [sym_qualified_type_identifier] = STATE(11809), + [sym_reflect_expression] = STATE(6533), + [sym_splice_specifier] = STATE(5720), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10536), + [sym_splice_expression] = STATE(6164), + [sym_user_defined_literal] = STATE(6558), + [sym_identifier] = ACTIONS(3028), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3032), + [anon_sym_TILDE] = ACTIONS(3032), + [anon_sym_DASH] = ACTIONS(3030), + [anon_sym_PLUS] = ACTIONS(3030), + [anon_sym_STAR] = ACTIONS(3858), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym___extension__] = ACTIONS(3034), + [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(3040), + [anon_sym_not] = ACTIONS(3030), + [anon_sym_compl] = ACTIONS(3030), + [anon_sym_DASH_DASH] = ACTIONS(3876), + [anon_sym_PLUS_PLUS] = ACTIONS(3876), + [anon_sym_sizeof] = ACTIONS(3042), + [anon_sym___alignof__] = ACTIONS(3044), + [anon_sym___alignof] = ACTIONS(3044), + [anon_sym__alignof] = ACTIONS(3044), + [anon_sym_alignof] = ACTIONS(3044), + [anon_sym__Alignof] = ACTIONS(3044), + [anon_sym_offsetof] = ACTIONS(3046), + [anon_sym__Generic] = ACTIONS(3048), + [anon_sym_typename] = ACTIONS(3050), + [anon_sym_asm] = ACTIONS(3052), + [anon_sym___asm__] = ACTIONS(3052), + [anon_sym___asm] = ACTIONS(3052), + [sym_number_literal] = ACTIONS(3054), + [anon_sym_L_SQUOTE] = ACTIONS(3056), + [anon_sym_u_SQUOTE] = ACTIONS(3056), + [anon_sym_U_SQUOTE] = ACTIONS(3056), + [anon_sym_u8_SQUOTE] = ACTIONS(3056), + [anon_sym_SQUOTE] = ACTIONS(3056), + [anon_sym_L_DQUOTE] = ACTIONS(3058), + [anon_sym_u_DQUOTE] = ACTIONS(3058), + [anon_sym_U_DQUOTE] = ACTIONS(3058), + [anon_sym_u8_DQUOTE] = ACTIONS(3058), + [anon_sym_DQUOTE] = ACTIONS(3058), + [sym_true] = ACTIONS(3060), + [sym_false] = ACTIONS(3060), + [anon_sym_NULL] = ACTIONS(3062), + [anon_sym_nullptr] = ACTIONS(3062), [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), - }, - [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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(3064), + [anon_sym_delete] = ACTIONS(3066), + [anon_sym_R_DQUOTE] = ACTIONS(3068), + [anon_sym_LR_DQUOTE] = ACTIONS(3068), + [anon_sym_uR_DQUOTE] = ACTIONS(3068), + [anon_sym_UR_DQUOTE] = ACTIONS(3068), + [anon_sym_u8R_DQUOTE] = ACTIONS(3068), + [anon_sym_co_await] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3072), + [anon_sym_requires] = ACTIONS(3074), + [anon_sym_CARET_CARET] = ACTIONS(3076), + [anon_sym_LBRACK_COLON] = ACTIONS(3078), + [sym_this] = ACTIONS(3060), }, - [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), + [STATE(1991)] = { + [sym_expression] = STATE(5314), + [sym__string] = STATE(5532), + [sym_conditional_expression] = STATE(4218), + [sym_assignment_expression] = STATE(4218), + [sym_pointer_expression] = STATE(4330), + [sym_unary_expression] = STATE(4218), + [sym_binary_expression] = STATE(4218), + [sym_update_expression] = STATE(4218), + [sym_cast_expression] = STATE(4218), + [sym_sizeof_expression] = STATE(4218), + [sym_alignof_expression] = STATE(4218), + [sym_offsetof_expression] = STATE(4218), + [sym_generic_expression] = STATE(4218), + [sym_subscript_expression] = STATE(4330), + [sym_call_expression] = STATE(4330), + [sym_gnu_asm_expression] = STATE(4218), + [sym_extension_expression] = STATE(4218), + [sym_field_expression] = STATE(4330), + [sym_compound_literal_expression] = STATE(4218), + [sym_parenthesized_expression] = STATE(4330), + [sym_char_literal] = STATE(5532), + [sym_concatenated_string] = STATE(5532), + [sym_string_literal] = STATE(4019), + [sym_null] = STATE(4218), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11509), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(4218), + [sym_raw_string_literal] = STATE(4019), + [sym_co_await_expression] = STATE(4218), + [sym_new_expression] = STATE(4218), + [sym_delete_expression] = STATE(4218), + [sym_requires_clause] = STATE(4218), + [sym_requires_expression] = STATE(4218), + [sym_lambda_expression] = STATE(4218), + [sym_lambda_capture_specifier] = STATE(9002), + [sym_fold_expression] = STATE(4218), + [sym_parameter_pack_expansion] = STATE(4218), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(4330), + [sym_qualified_type_identifier] = STATE(11509), + [sym_reflect_expression] = STATE(4218), + [sym_splice_specifier] = STATE(3946), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10399), + [sym_splice_expression] = STATE(4166), + [sym_user_defined_literal] = STATE(4330), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2398), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(2845), + [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(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(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(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(2829), + [anon_sym_requires] = ACTIONS(2434), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2438), + [sym_this] = ACTIONS(2418), }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(1992)] = { + [sym_expression] = STATE(7774), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1993)] = { + [sym_expression] = STATE(7776), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1994)] = { + [sym_expression] = STATE(7394), + [sym__string] = STATE(7515), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5973), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5973), + [sym_call_expression] = STATE(5973), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5973), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5973), + [sym_char_literal] = STATE(7515), + [sym_concatenated_string] = STATE(7515), + [sym_string_literal] = STATE(6306), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(6306), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5973), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5973), + [sym_identifier] = ACTIONS(4686), + [anon_sym_LPAREN2] = ACTIONS(3722), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(4688), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3746), + [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(2726), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(3750), + [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(3754), + [anon_sym_u_DQUOTE] = ACTIONS(3754), + [anon_sym_U_DQUOTE] = ACTIONS(3754), + [anon_sym_u8_DQUOTE] = ACTIONS(3754), + [anon_sym_DQUOTE] = ACTIONS(3754), + [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(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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(3756), + [anon_sym_R_DQUOTE] = ACTIONS(3758), + [anon_sym_LR_DQUOTE] = ACTIONS(3758), + [anon_sym_uR_DQUOTE] = ACTIONS(3758), + [anon_sym_UR_DQUOTE] = ACTIONS(3758), + [anon_sym_u8R_DQUOTE] = ACTIONS(3758), + [anon_sym_co_await] = ACTIONS(3760), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3762), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1995)] = { + [sym_expression] = STATE(7778), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(6590), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(2218), + [anon_sym_delete] = ACTIONS(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1996)] = { + [sym_expression] = STATE(7779), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(6597), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(6597), + [sym_call_expression] = STATE(6597), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(6597), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(6597), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(6597), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(6597), + [sym_identifier] = ACTIONS(4950), + [anon_sym_LPAREN2] = ACTIONS(4425), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_STAR] = ACTIONS(4411), + [anon_sym_AMP] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4954), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [anon_sym_not] = ACTIONS(4429), + [anon_sym_compl] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4435), + [anon_sym_PLUS_PLUS] = ACTIONS(4435), + [anon_sym_sizeof] = ACTIONS(4437), + [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(2726), + [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(4439), + [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(4441), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(1997)] = { + [sym_expression] = STATE(8135), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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_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), - [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_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), - [anon_sym_final] = ACTIONS(7341), - [anon_sym_override] = ACTIONS(7341), - [anon_sym_requires] = ACTIONS(7341), + [STATE(1998)] = { + [sym_expression] = STATE(8137), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(6843), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(6845), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(6847), - [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_COLON] = ACTIONS(7347), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), - [anon_sym_RBRACE] = ACTIONS(7345), - [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), - [anon_sym_COLON_RBRACK] = ACTIONS(7345), + [STATE(1999)] = { + [sym_expression] = STATE(8138), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(2000)] = { + [sym_expression] = STATE(8139), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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), + [STATE(2001)] = { + [sym_expression] = STATE(8140), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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(2002)] = { + [sym_expression] = STATE(8141), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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(2003)] = { + [sym_expression] = STATE(7983), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [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_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7347), - [anon_sym_override] = ACTIONS(7347), - [anon_sym_requires] = ACTIONS(7347), + [STATE(2004)] = { + [sym_expression] = STATE(7508), + [sym__string] = STATE(7246), + [sym_conditional_expression] = STATE(6753), + [sym_assignment_expression] = STATE(6753), + [sym_pointer_expression] = STATE(5619), + [sym_unary_expression] = STATE(6753), + [sym_binary_expression] = STATE(6753), + [sym_update_expression] = STATE(6753), + [sym_cast_expression] = STATE(6753), + [sym_sizeof_expression] = STATE(6753), + [sym_alignof_expression] = STATE(6753), + [sym_offsetof_expression] = STATE(6753), + [sym_generic_expression] = STATE(6753), + [sym_subscript_expression] = STATE(5619), + [sym_call_expression] = STATE(5619), + [sym_gnu_asm_expression] = STATE(6753), + [sym_extension_expression] = STATE(6753), + [sym_field_expression] = STATE(5619), + [sym_compound_literal_expression] = STATE(6753), + [sym_parenthesized_expression] = STATE(5619), + [sym_char_literal] = STATE(7246), + [sym_concatenated_string] = STATE(7246), + [sym_string_literal] = STATE(5370), + [sym_null] = STATE(6753), + [sym_decltype] = STATE(13053), + [sym__class_name] = STATE(11689), + [sym_template_type] = STATE(3486), + [sym_template_function] = STATE(6753), + [sym_raw_string_literal] = STATE(5370), + [sym_co_await_expression] = STATE(6753), + [sym_new_expression] = STATE(6753), + [sym_delete_expression] = STATE(6753), + [sym_requires_clause] = STATE(6753), + [sym_requires_expression] = STATE(6753), + [sym_lambda_expression] = STATE(6753), + [sym_lambda_capture_specifier] = STATE(9051), + [sym_fold_expression] = STATE(6753), + [sym_parameter_pack_expansion] = STATE(6753), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8933), + [sym_qualified_identifier] = STATE(5619), + [sym_qualified_type_identifier] = STATE(11689), + [sym_reflect_expression] = STATE(6753), + [sym_splice_specifier] = STATE(6046), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(10534), + [sym_splice_expression] = STATE(6478), + [sym_user_defined_literal] = STATE(5619), + [sym_identifier] = ACTIONS(4684), + [anon_sym_LPAREN2] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1848), + [anon_sym_AMP] = ACTIONS(1848), + [anon_sym___extension__] = ACTIONS(2720), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1860), + [sym_primitive_type] = ACTIONS(2724), + [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(2726), + [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(2728), + [sym_this] = ACTIONS(237), }, - [STATE(2108)] = { - [sym_template_argument_list] = STATE(3735), - [aux_sym_sized_type_specifier_repeat1] = STATE(2209), - [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(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(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(6815), - [anon_sym_unsigned] = ACTIONS(6815), - [anon_sym_long] = ACTIONS(6815), - [anon_sym_short] = ACTIONS(6815), - [anon_sym_LBRACK] = ACTIONS(7359), - [anon_sym_RBRACK] = ACTIONS(7359), - [anon_sym_EQ] = ACTIONS(7357), - [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_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(7357), - [anon_sym_or_eq] = ACTIONS(7357), - [anon_sym_xor_eq] = ACTIONS(7357), - [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), + [STATE(2005)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2194), + [sym_ms_pointer_modifier] = STATE(2007), + [sym__abstract_declarator] = STATE(4979), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2072), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2081), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9554), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2072), + [aux_sym_pointer_declarator_repeat1] = STATE(2007), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6594), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [sym_ms_restrict_modifier] = ACTIONS(5984), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5984), + [sym_ms_signed_ptr_modifier] = ACTIONS(5984), + [anon_sym__unaligned] = ACTIONS(5986), + [anon_sym___unaligned] = ACTIONS(5986), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5994), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_and_eq] = ACTIONS(5996), + [anon_sym_or_eq] = ACTIONS(5996), + [anon_sym_xor_eq] = ACTIONS(5996), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7357), - [anon_sym_override] = ACTIONS(7357), - [anon_sym_requires] = ACTIONS(7357), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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(2006)] = { + [sym__abstract_declarator] = STATE(3886), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1537), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9583), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [aux_sym_preproc_if_token2] = ACTIONS(6600), + [aux_sym_preproc_else_token1] = ACTIONS(6600), + [aux_sym_preproc_elif_token1] = ACTIONS(6602), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(5976), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [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(6600), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(5982), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6600), + [anon_sym_RBRACE] = ACTIONS(6600), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6600), + }, + [STATE(2007)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2194), + [sym_ms_pointer_modifier] = STATE(2122), + [sym__abstract_declarator] = STATE(4981), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2070), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2081), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9554), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2070), + [aux_sym_pointer_declarator_repeat1] = STATE(2122), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6594), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [sym_ms_restrict_modifier] = ACTIONS(5984), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5984), + [sym_ms_signed_ptr_modifier] = ACTIONS(5984), + [anon_sym__unaligned] = ACTIONS(5986), + [anon_sym___unaligned] = ACTIONS(5986), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2008)] = { + [sym__abstract_declarator] = STATE(3878), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2011), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1537), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9583), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2011), + [sym_identifier] = ACTIONS(5966), + [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(6606), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6604), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(5976), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [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(6604), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(5982), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6604), + [anon_sym_RBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6604), + }, + [STATE(2009)] = { + [sym__abstract_declarator] = STATE(3880), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2010), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1537), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9583), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2010), + [sym_identifier] = ACTIONS(5966), + [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(6610), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6608), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(5976), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [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(6608), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(5982), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6608), + [anon_sym_RBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6608), + }, + [STATE(2010)] = { + [sym__abstract_declarator] = STATE(3881), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1537), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9583), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [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(6614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(5976), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [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(6612), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(5982), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6612), + [anon_sym_RBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6612), + }, + [STATE(2011)] = { + [sym__abstract_declarator] = STATE(3879), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1537), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9583), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [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(6618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(5976), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(6618), + [anon_sym_COLON_COLON] = ACTIONS(5982), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6616), + [anon_sym_RBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6616), + }, + [STATE(2012)] = { + [sym__abstract_declarator] = STATE(3885), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1537), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9583), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [aux_sym_preproc_if_token2] = ACTIONS(5968), + [aux_sym_preproc_else_token1] = ACTIONS(5968), + [aux_sym_preproc_elif_token1] = ACTIONS(5970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5968), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(5976), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(5982), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5968), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5968), + }, + [STATE(2013)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2526), + [sym_ms_pointer_modifier] = STATE(2014), + [sym__abstract_declarator] = STATE(5079), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2091), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2063), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9538), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2091), + [aux_sym_pointer_declarator_repeat1] = STATE(2014), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6624), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6626), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [sym_ms_restrict_modifier] = ACTIONS(6632), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6632), + [sym_ms_signed_ptr_modifier] = ACTIONS(6632), + [anon_sym__unaligned] = ACTIONS(6634), + [anon_sym___unaligned] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(5996), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5994), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_and_eq] = ACTIONS(5996), + [anon_sym_or_eq] = ACTIONS(5996), + [anon_sym_xor_eq] = ACTIONS(5996), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5996), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_DASH_GT_STAR] = ACTIONS(5994), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2014)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2526), + [sym_ms_pointer_modifier] = STATE(2421), + [sym__abstract_declarator] = STATE(5094), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2089), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2063), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9538), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2089), + [aux_sym_pointer_declarator_repeat1] = STATE(2421), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6624), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6626), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [sym_ms_restrict_modifier] = ACTIONS(6632), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6632), + [sym_ms_signed_ptr_modifier] = ACTIONS(6632), + [anon_sym__unaligned] = ACTIONS(6634), + [anon_sym___unaligned] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(5970), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5970), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_DASH_GT_STAR] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2015)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_call_modifier] = STATE(8718), + [sym__abstract_declarator] = STATE(10455), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_abstract_function_declarator] = STATE(9556), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(10901), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(10901), + [sym_optional_parameter_declaration] = STATE(10901), + [sym_variadic_parameter_declaration] = STATE(10901), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6642), + [anon_sym_RPAREN] = ACTIONS(6644), + [anon_sym_LPAREN2] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_AMP_AMP] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6652), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(6008), [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_LBRACE] = ACTIONS(7361), + [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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6014), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -323560,158 +320272,88 @@ 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(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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(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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [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(2016)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_call_modifier] = STATE(8694), + [sym__abstract_declarator] = STATE(10475), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_abstract_function_declarator] = STATE(9556), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11145), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11145), + [sym_optional_parameter_declaration] = STATE(11145), + [sym_variadic_parameter_declaration] = STATE(11145), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6654), + [anon_sym_RPAREN] = ACTIONS(6656), + [anon_sym_LPAREN2] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_AMP_AMP] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6652), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(6008), [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_LBRACE] = ACTIONS(7369), + [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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6014), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -323734,419 +320376,192 @@ 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(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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(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), - [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), - }, - [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), - }, - [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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [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), + [STATE(2017)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2596), + [sym_ms_pointer_modifier] = STATE(2483), + [sym__abstract_declarator] = STATE(5242), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2109), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2076), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9623), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2109), + [aux_sym_pointer_declarator_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6662), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6664), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6666), + [anon_sym_COLON_COLON] = ACTIONS(6668), + [sym_ms_restrict_modifier] = ACTIONS(6670), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6670), + [sym_ms_signed_ptr_modifier] = ACTIONS(6670), + [anon_sym__unaligned] = ACTIONS(6672), + [anon_sym___unaligned] = ACTIONS(6672), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(5968), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2018)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_call_modifier] = STATE(8709), + [sym__abstract_declarator] = STATE(10481), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_abstract_function_declarator] = STATE(9556), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11184), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11184), + [sym_optional_parameter_declaration] = STATE(11184), + [sym_variadic_parameter_declaration] = STATE(11184), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6678), + [anon_sym_RPAREN] = ACTIONS(6680), + [anon_sym_LPAREN2] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_AMP_AMP] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6652), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(6008), [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_LBRACE] = ACTIONS(7373), + [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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6014), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -324169,593 +320584,88 @@ 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(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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(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), - [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), - }, - [STATE(2118)] = { - [sym_attribute_specifier] = STATE(2195), - [sym_enumerator_list] = STATE(2161), - [sym_identifier] = ACTIONS(7381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), - [anon_sym_COMMA] = ACTIONS(7383), - [anon_sym_RPAREN] = ACTIONS(7383), - [aux_sym_preproc_if_token2] = ACTIONS(7383), - [aux_sym_preproc_else_token1] = ACTIONS(7383), - [aux_sym_preproc_elif_token1] = ACTIONS(7381), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7383), - [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(7383), - [anon_sym___extension__] = ACTIONS(7381), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7381), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7383), - [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7383), - [anon_sym_LBRACK] = ACTIONS(7383), - [anon_sym_EQ] = ACTIONS(7381), - [anon_sym_const] = ACTIONS(7381), - [anon_sym_constexpr] = ACTIONS(7381), - [anon_sym_volatile] = ACTIONS(7381), - [anon_sym_restrict] = ACTIONS(7381), - [anon_sym___restrict__] = ACTIONS(7381), - [anon_sym__Atomic] = ACTIONS(7381), - [anon_sym__Noreturn] = ACTIONS(7381), - [anon_sym_noreturn] = ACTIONS(7381), - [anon_sym__Nonnull] = ACTIONS(7381), - [anon_sym_mutable] = ACTIONS(7381), - [anon_sym_constinit] = ACTIONS(7381), - [anon_sym_consteval] = ACTIONS(7381), - [anon_sym_alignas] = ACTIONS(7381), - [anon_sym__Alignas] = ACTIONS(7381), - [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(7381), - [anon_sym_or_eq] = ACTIONS(7381), - [anon_sym_xor_eq] = ACTIONS(7381), - [anon_sym_LT_EQ_GT] = ACTIONS(7383), - [anon_sym_or] = ACTIONS(7381), - [anon_sym_and] = ACTIONS(7381), - [anon_sym_bitor] = ACTIONS(7381), - [anon_sym_xor] = ACTIONS(7381), - [anon_sym_bitand] = ACTIONS(7381), - [anon_sym_not_eq] = ACTIONS(7381), - [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(7381), - [anon_sym_override] = ACTIONS(7381), - [anon_sym_requires] = ACTIONS(7381), - [anon_sym_COLON_RBRACK] = ACTIONS(7383), - }, - [STATE(2119)] = { - [sym_attribute_specifier] = STATE(2178), - [sym_enumerator_list] = STATE(2139), - [sym_identifier] = ACTIONS(7387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [anon_sym_RPAREN] = ACTIONS(7389), - [aux_sym_preproc_if_token2] = ACTIONS(7389), - [aux_sym_preproc_else_token1] = ACTIONS(7389), - [aux_sym_preproc_elif_token1] = ACTIONS(7387), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7389), - [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(7389), - [anon_sym___extension__] = ACTIONS(7387), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7387), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7389), - [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(7389), - [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_EQ] = ACTIONS(7387), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7387), - [anon_sym_volatile] = ACTIONS(7387), - [anon_sym_restrict] = ACTIONS(7387), - [anon_sym___restrict__] = ACTIONS(7387), - [anon_sym__Atomic] = ACTIONS(7387), - [anon_sym__Noreturn] = ACTIONS(7387), - [anon_sym_noreturn] = ACTIONS(7387), - [anon_sym__Nonnull] = ACTIONS(7387), - [anon_sym_mutable] = ACTIONS(7387), - [anon_sym_constinit] = ACTIONS(7387), - [anon_sym_consteval] = ACTIONS(7387), - [anon_sym_alignas] = ACTIONS(7387), - [anon_sym__Alignas] = ACTIONS(7387), - [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(7387), - [anon_sym_or_eq] = ACTIONS(7387), - [anon_sym_xor_eq] = ACTIONS(7387), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7387), - [anon_sym_and] = ACTIONS(7387), - [anon_sym_bitor] = ACTIONS(7387), - [anon_sym_xor] = ACTIONS(7387), - [anon_sym_bitand] = ACTIONS(7387), - [anon_sym_not_eq] = ACTIONS(7387), - [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(7387), - [anon_sym_override] = ACTIONS(7387), - [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), - [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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [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(2019)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_call_modifier] = STATE(8722), + [sym__abstract_declarator] = STATE(10509), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_abstract_function_declarator] = STATE(9556), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11014), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11014), + [sym_optional_parameter_declaration] = STATE(11014), + [sym_variadic_parameter_declaration] = STATE(11014), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_AMP_AMP] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6652), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(6008), [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_LBRACE] = ACTIONS(7395), + [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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6014), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -324778,849 +320688,88 @@ 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(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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), - }, - [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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [STATE(2129)] = { - [sym_attribute_specifier] = STATE(2186), - [sym_identifier] = ACTIONS(7397), - [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_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_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_RBRACK_RBRACK] = ACTIONS(7399), - [anon_sym_LBRACE] = ACTIONS(7399), - [anon_sym_RBRACE] = ACTIONS(7399), - [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_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(7397), - [anon_sym_or_eq] = ACTIONS(7397), - [anon_sym_xor_eq] = ACTIONS(7397), - [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_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(7397), - [anon_sym_override] = ACTIONS(7397), - [anon_sym_requires] = ACTIONS(7397), - [anon_sym_COLON_RBRACK] = ACTIONS(7399), - }, - [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), - }, - [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_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(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), - }, - [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), + [STATE(2020)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_call_modifier] = STATE(8676), + [sym__abstract_declarator] = STATE(10507), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_abstract_function_declarator] = STATE(9556), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11158), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11158), + [sym_optional_parameter_declaration] = STATE(11158), + [sym_variadic_parameter_declaration] = STATE(11158), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6682), + [anon_sym_RPAREN] = ACTIONS(6684), + [anon_sym_LPAREN2] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_AMP_AMP] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6652), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(6008), [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___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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6014), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -325643,156 +320792,88 @@ 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(75), - [anon_sym_class] = ACTIONS(7407), - [anon_sym_struct] = ACTIONS(7409), - [anon_sym_union] = ACTIONS(7411), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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(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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [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), + [STATE(2021)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_call_modifier] = STATE(8707), + [sym__abstract_declarator] = STATE(10454), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_abstract_function_declarator] = STATE(9556), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11065), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11065), + [sym_optional_parameter_declaration] = STATE(11065), + [sym_variadic_parameter_declaration] = STATE(11065), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6686), + [anon_sym_RPAREN] = ACTIONS(6688), + [anon_sym_LPAREN2] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_AMP_AMP] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6652), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(6008), [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___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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6014), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -325815,500 +320896,192 @@ 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(75), - [anon_sym_class] = ACTIONS(7417), - [anon_sym_struct] = ACTIONS(7419), - [anon_sym_union] = ACTIONS(7421), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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), - }, - [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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [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(2022)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2596), + [sym_ms_pointer_modifier] = STATE(2017), + [sym__abstract_declarator] = STATE(5240), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2120), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2076), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9623), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2120), + [aux_sym_pointer_declarator_repeat1] = STATE(2017), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6662), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6664), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym___extension__] = ACTIONS(6666), + [anon_sym_COLON_COLON] = ACTIONS(6668), + [sym_ms_restrict_modifier] = ACTIONS(6670), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6670), + [sym_ms_signed_ptr_modifier] = ACTIONS(6670), + [anon_sym__unaligned] = ACTIONS(6672), + [anon_sym___unaligned] = ACTIONS(6672), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(5994), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5994), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_and_eq] = ACTIONS(5996), + [anon_sym_or_eq] = ACTIONS(5996), + [anon_sym_xor_eq] = ACTIONS(5996), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2023)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_call_modifier] = STATE(8715), + [sym__abstract_declarator] = STATE(10546), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_abstract_function_declarator] = STATE(9556), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11014), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11014), + [sym_optional_parameter_declaration] = STATE(11014), + [sym_variadic_parameter_declaration] = STATE(11014), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(5643), + [anon_sym_LPAREN2] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_AMP_AMP] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6652), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(6008), [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___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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6014), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -326331,156 +321104,88 @@ 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(75), - [anon_sym_class] = ACTIONS(7439), - [anon_sym_struct] = ACTIONS(7441), - [anon_sym_union] = ACTIONS(7443), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [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(2024)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_call_modifier] = STATE(8712), + [sym__abstract_declarator] = STATE(10520), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_abstract_function_declarator] = STATE(9556), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11297), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11297), + [sym_optional_parameter_declaration] = STATE(11297), + [sym_variadic_parameter_declaration] = STATE(11297), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6690), + [anon_sym_RPAREN] = ACTIONS(6692), + [anon_sym_LPAREN2] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_AMP_AMP] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6652), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(6008), [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___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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6014), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -326503,500 +321208,88 @@ 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(75), - [anon_sym_class] = ACTIONS(7447), - [anon_sym_struct] = ACTIONS(7449), - [anon_sym_union] = ACTIONS(7451), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [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(2025)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_call_modifier] = STATE(8705), + [sym__abstract_declarator] = STATE(10545), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_abstract_function_declarator] = STATE(9556), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11362), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11362), + [sym_optional_parameter_declaration] = STATE(11362), + [sym_variadic_parameter_declaration] = STATE(11362), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6694), + [anon_sym_RPAREN] = ACTIONS(6696), + [anon_sym_LPAREN2] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_AMP_AMP] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6652), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(6008), [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___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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6014), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -327019,70 +321312,192 @@ 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(75), - [anon_sym_class] = ACTIONS(7461), - [anon_sym_struct] = ACTIONS(7463), - [anon_sym_union] = ACTIONS(7465), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [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(2026)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2641), + [sym_ms_pointer_modifier] = STATE(2028), + [sym__abstract_declarator] = STATE(5199), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2118), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2075), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9569), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2118), + [aux_sym_pointer_declarator_repeat1] = STATE(2028), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6700), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6702), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6704), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5996), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym___extension__] = ACTIONS(6706), + [anon_sym_COLON_COLON] = ACTIONS(6708), + [sym_ms_restrict_modifier] = ACTIONS(6710), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6710), + [sym_ms_signed_ptr_modifier] = ACTIONS(6710), + [anon_sym__unaligned] = ACTIONS(6712), + [anon_sym___unaligned] = ACTIONS(6712), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5996), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_and_eq] = ACTIONS(5996), + [anon_sym_or_eq] = ACTIONS(5996), + [anon_sym_xor_eq] = ACTIONS(5996), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5994), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2027)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_ms_call_modifier] = STATE(8716), + [sym__abstract_declarator] = STATE(10420), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_abstract_function_declarator] = STATE(9556), + [sym_abstract_array_declarator] = STATE(9556), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_list] = STATE(5186), + [sym_parameter_declaration] = STATE(11392), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11392), + [sym_optional_parameter_declaration] = STATE(11392), + [sym_variadic_parameter_declaration] = STATE(11392), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9474), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6720), + [anon_sym_LPAREN2] = ACTIONS(6646), + [anon_sym_STAR] = ACTIONS(6648), + [anon_sym_AMP_AMP] = ACTIONS(6650), + [anon_sym_AMP] = ACTIONS(6652), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(6008), [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___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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(6014), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -327105,156 +321520,2824 @@ 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(75), - [anon_sym_class] = ACTIONS(7467), - [anon_sym_struct] = ACTIONS(7469), - [anon_sym_union] = ACTIONS(7471), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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(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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [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(2028)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2641), + [sym_ms_pointer_modifier] = STATE(2474), + [sym__abstract_declarator] = STATE(5205), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2119), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2075), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9569), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2119), + [aux_sym_pointer_declarator_repeat1] = STATE(2474), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6700), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6702), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6704), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6706), + [anon_sym_COLON_COLON] = ACTIONS(6708), + [sym_ms_restrict_modifier] = ACTIONS(6710), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6710), + [sym_ms_signed_ptr_modifier] = ACTIONS(6710), + [anon_sym__unaligned] = ACTIONS(6712), + [anon_sym___unaligned] = ACTIONS(6712), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5970), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2029)] = { + [sym__abstract_declarator] = STATE(4208), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1521), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9606), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [aux_sym_preproc_if_token2] = ACTIONS(6600), + [aux_sym_preproc_else_token1] = ACTIONS(6600), + [aux_sym_preproc_elif_token1] = ACTIONS(6602), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [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(6600), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6600), + [anon_sym_RBRACE] = ACTIONS(6600), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6600), + }, + [STATE(2030)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2194), + [sym_ms_pointer_modifier] = STATE(2031), + [sym__abstract_declarator] = STATE(5373), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2126), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2074), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9605), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2126), + [aux_sym_pointer_declarator_repeat1] = STATE(2031), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6722), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6724), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6726), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(6728), + [sym_ms_restrict_modifier] = ACTIONS(5984), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5984), + [sym_ms_signed_ptr_modifier] = ACTIONS(5984), + [anon_sym__unaligned] = ACTIONS(5986), + [anon_sym___unaligned] = ACTIONS(5986), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5994), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_and_eq] = ACTIONS(5996), + [anon_sym_or_eq] = ACTIONS(5996), + [anon_sym_xor_eq] = ACTIONS(5996), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2031)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2194), + [sym_ms_pointer_modifier] = STATE(2122), + [sym__abstract_declarator] = STATE(5430), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2129), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2074), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9605), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2129), + [aux_sym_pointer_declarator_repeat1] = STATE(2122), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6722), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6724), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6726), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(6728), + [sym_ms_restrict_modifier] = ACTIONS(5984), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(5984), + [sym_ms_signed_ptr_modifier] = ACTIONS(5984), + [anon_sym__unaligned] = ACTIONS(5986), + [anon_sym___unaligned] = ACTIONS(5986), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2032)] = { + [sym__abstract_declarator] = STATE(4251), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2033), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1521), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9606), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2033), + [sym_identifier] = ACTIONS(5966), + [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(6606), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6604), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [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(6604), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6604), + [anon_sym_RBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6604), + }, + [STATE(2033)] = { + [sym__abstract_declarator] = STATE(4265), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1521), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9606), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [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(6618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(6618), + [anon_sym_COLON_COLON] = ACTIONS(6106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6616), + [anon_sym_RBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6616), + }, + [STATE(2034)] = { + [sym__abstract_declarator] = STATE(4190), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1521), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9606), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [aux_sym_preproc_if_token2] = ACTIONS(5968), + [aux_sym_preproc_else_token1] = ACTIONS(5968), + [aux_sym_preproc_elif_token1] = ACTIONS(5970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5968), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(6106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5968), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5968), + }, + [STATE(2035)] = { + [sym__abstract_declarator] = STATE(4295), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1521), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9606), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [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(6614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [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(6612), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6612), + [anon_sym_RBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6612), + }, + [STATE(2036)] = { + [sym__abstract_declarator] = STATE(4266), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2035), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(1521), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9606), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2035), + [sym_identifier] = ACTIONS(5966), + [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(6610), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6608), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [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(6608), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6608), + [anon_sym_RBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6608), + }, + [STATE(2037)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2526), + [sym_ms_pointer_modifier] = STATE(2421), + [sym__abstract_declarator] = STATE(5716), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2158), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2062), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9530), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2158), + [aux_sym_pointer_declarator_repeat1] = STATE(2421), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6730), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6732), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6736), + [sym_ms_restrict_modifier] = ACTIONS(6632), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6632), + [sym_ms_signed_ptr_modifier] = ACTIONS(6632), + [anon_sym__unaligned] = ACTIONS(6634), + [anon_sym___unaligned] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(5970), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5970), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2038)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2819), + [sym_ms_pointer_modifier] = STATE(2536), + [sym__abstract_declarator] = STATE(5570), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2161), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2107), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9628), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2161), + [aux_sym_pointer_declarator_repeat1] = STATE(2536), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6740), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6742), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [sym_ms_restrict_modifier] = ACTIONS(6750), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6750), + [sym_ms_signed_ptr_modifier] = ACTIONS(6750), + [anon_sym__unaligned] = ACTIONS(6752), + [anon_sym___unaligned] = ACTIONS(6752), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5970), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_DASH_GT_STAR] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2039)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2526), + [sym_ms_pointer_modifier] = STATE(2037), + [sym__abstract_declarator] = STATE(5681), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2147), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2062), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9530), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2147), + [aux_sym_pointer_declarator_repeat1] = STATE(2037), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6730), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6732), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6736), + [sym_ms_restrict_modifier] = ACTIONS(6632), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6632), + [sym_ms_signed_ptr_modifier] = ACTIONS(6632), + [anon_sym__unaligned] = ACTIONS(6634), + [anon_sym___unaligned] = ACTIONS(6634), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(5996), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5994), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_and_eq] = ACTIONS(5996), + [anon_sym_or_eq] = ACTIONS(5996), + [anon_sym_xor_eq] = ACTIONS(5996), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5996), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(5994), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2040)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2819), + [sym_ms_pointer_modifier] = STATE(2038), + [sym__abstract_declarator] = STATE(5567), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2150), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2107), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9628), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2150), + [aux_sym_pointer_declarator_repeat1] = STATE(2038), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6740), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6742), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [sym_ms_restrict_modifier] = ACTIONS(6750), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6750), + [sym_ms_signed_ptr_modifier] = ACTIONS(6750), + [anon_sym__unaligned] = ACTIONS(6752), + [anon_sym___unaligned] = ACTIONS(6752), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5994), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5996), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_DASH_GT_STAR] = ACTIONS(5994), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2041)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2641), + [sym_ms_pointer_modifier] = STATE(2045), + [sym__abstract_declarator] = STATE(5994), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2202), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2068), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9573), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2202), + [aux_sym_pointer_declarator_repeat1] = STATE(2045), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6760), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5996), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym___extension__] = ACTIONS(6706), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [sym_ms_restrict_modifier] = ACTIONS(6710), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6710), + [sym_ms_signed_ptr_modifier] = ACTIONS(6710), + [anon_sym__unaligned] = ACTIONS(6712), + [anon_sym___unaligned] = ACTIONS(6712), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5996), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_and_eq] = ACTIONS(5996), + [anon_sym_or_eq] = ACTIONS(5996), + [anon_sym_xor_eq] = ACTIONS(5996), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5994), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2042)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2596), + [sym_ms_pointer_modifier] = STATE(2044), + [sym__abstract_declarator] = STATE(5998), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2185), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2085), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9653), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2185), + [aux_sym_pointer_declarator_repeat1] = STATE(2044), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6766), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6768), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym___extension__] = ACTIONS(6666), + [anon_sym_COLON_COLON] = ACTIONS(6772), + [sym_ms_restrict_modifier] = ACTIONS(6670), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6670), + [sym_ms_signed_ptr_modifier] = ACTIONS(6670), + [anon_sym__unaligned] = ACTIONS(6672), + [anon_sym___unaligned] = ACTIONS(6672), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(5994), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5994), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_and_eq] = ACTIONS(5996), + [anon_sym_or_eq] = ACTIONS(5996), + [anon_sym_xor_eq] = ACTIONS(5996), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2043)] = { + [sym_template_argument_list] = STATE(2053), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6776), + [anon_sym_COMMA] = ACTIONS(6776), + [anon_sym_RPAREN] = ACTIONS(6776), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_TILDE] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6783), + [anon_sym_PERCENT] = ACTIONS(6783), + [anon_sym_PIPE_PIPE] = ACTIONS(6776), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6783), + [anon_sym_CARET] = ACTIONS(6783), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6776), + [anon_sym_BANG_EQ] = ACTIONS(6776), + [anon_sym_GT] = ACTIONS(6783), + [anon_sym_GT_EQ] = ACTIONS(6776), + [anon_sym_LT_EQ] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(6788), + [anon_sym_LT_LT] = ACTIONS(6783), + [anon_sym_GT_GT] = ACTIONS(6783), + [anon_sym_SEMI] = ACTIONS(6776), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_virtual] = ACTIONS(6774), + [anon_sym_extern] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6781), + [anon_sym___declspec] = ACTIONS(6774), + [anon_sym___based] = ACTIONS(6774), + [anon_sym___cdecl] = ACTIONS(6774), + [anon_sym___clrcall] = ACTIONS(6774), + [anon_sym___stdcall] = ACTIONS(6774), + [anon_sym___fastcall] = ACTIONS(6774), + [anon_sym___thiscall] = ACTIONS(6774), + [anon_sym___vectorcall] = ACTIONS(6774), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_RBRACE] = ACTIONS(6776), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_static] = ACTIONS(6774), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_register] = ACTIONS(6774), + [anon_sym_inline] = ACTIONS(6774), + [anon_sym___inline] = ACTIONS(6774), + [anon_sym___inline__] = ACTIONS(6774), + [anon_sym___forceinline] = ACTIONS(6774), + [anon_sym_thread_local] = ACTIONS(6774), + [anon_sym___thread] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6776), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6776), + [anon_sym_or] = ACTIONS(6783), + [anon_sym_and] = ACTIONS(6783), + [anon_sym_bitor] = ACTIONS(6783), + [anon_sym_xor] = ACTIONS(6783), + [anon_sym_bitand] = ACTIONS(6783), + [anon_sym_not_eq] = ACTIONS(6783), + [anon_sym_DASH_DASH] = ACTIONS(6776), + [anon_sym_PLUS_PLUS] = ACTIONS(6776), + [anon_sym_DOT] = ACTIONS(6783), + [anon_sym_DOT_STAR] = ACTIONS(6776), + [anon_sym_DASH_GT] = ACTIONS(6776), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_operator] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(2044)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2596), + [sym_ms_pointer_modifier] = STATE(2483), + [sym__abstract_declarator] = STATE(6047), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2195), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2085), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9653), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2195), + [aux_sym_pointer_declarator_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6766), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6768), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6666), + [anon_sym_COLON_COLON] = ACTIONS(6772), + [sym_ms_restrict_modifier] = ACTIONS(6670), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6670), + [sym_ms_signed_ptr_modifier] = ACTIONS(6670), + [anon_sym__unaligned] = ACTIONS(6672), + [anon_sym___unaligned] = ACTIONS(6672), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(5968), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2045)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2641), + [sym_ms_pointer_modifier] = STATE(2474), + [sym__abstract_declarator] = STATE(6020), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2176), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2068), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9573), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2176), + [aux_sym_pointer_declarator_repeat1] = STATE(2474), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6760), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6706), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [sym_ms_restrict_modifier] = ACTIONS(6710), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6710), + [sym_ms_signed_ptr_modifier] = ACTIONS(6710), + [anon_sym__unaligned] = ACTIONS(6712), + [anon_sym___unaligned] = ACTIONS(6712), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5970), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2046)] = { + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_RPAREN] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_TILDE] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6791), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6791), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6791), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6791), + [anon_sym_GT_GT] = ACTIONS(6791), + [anon_sym_SEMI] = ACTIONS(6793), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym_virtual] = ACTIONS(6791), + [anon_sym_extern] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6793), + [anon_sym___declspec] = ACTIONS(6791), + [anon_sym___based] = ACTIONS(6791), + [anon_sym___cdecl] = ACTIONS(6791), + [anon_sym___clrcall] = ACTIONS(6791), + [anon_sym___stdcall] = ACTIONS(6791), + [anon_sym___fastcall] = ACTIONS(6791), + [anon_sym___thiscall] = ACTIONS(6791), + [anon_sym___vectorcall] = ACTIONS(6791), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_RBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_static] = ACTIONS(6791), + [anon_sym_EQ] = ACTIONS(6791), + [anon_sym_register] = ACTIONS(6791), + [anon_sym_inline] = ACTIONS(6791), + [anon_sym___inline] = ACTIONS(6791), + [anon_sym___inline__] = ACTIONS(6791), + [anon_sym___forceinline] = ACTIONS(6791), + [anon_sym_thread_local] = ACTIONS(6791), + [anon_sym___thread] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_STAR_EQ] = ACTIONS(6793), + [anon_sym_SLASH_EQ] = ACTIONS(6793), + [anon_sym_PERCENT_EQ] = ACTIONS(6793), + [anon_sym_PLUS_EQ] = ACTIONS(6793), + [anon_sym_DASH_EQ] = ACTIONS(6793), + [anon_sym_LT_LT_EQ] = ACTIONS(6793), + [anon_sym_GT_GT_EQ] = ACTIONS(6793), + [anon_sym_AMP_EQ] = ACTIONS(6793), + [anon_sym_CARET_EQ] = ACTIONS(6793), + [anon_sym_PIPE_EQ] = ACTIONS(6793), + [anon_sym_and_eq] = ACTIONS(6791), + [anon_sym_or_eq] = ACTIONS(6791), + [anon_sym_xor_eq] = ACTIONS(6791), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_operator] = ACTIONS(6791), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), + }, + [STATE(2047)] = { + [sym_template_argument_list] = STATE(2059), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6776), + [anon_sym_COMMA] = ACTIONS(6776), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_TILDE] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6783), + [anon_sym_PERCENT] = ACTIONS(6783), + [anon_sym_PIPE_PIPE] = ACTIONS(6776), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6783), + [anon_sym_CARET] = ACTIONS(6783), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6776), + [anon_sym_BANG_EQ] = ACTIONS(6776), + [anon_sym_GT] = ACTIONS(6783), + [anon_sym_GT_EQ] = ACTIONS(6776), + [anon_sym_LT_EQ] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(6788), + [anon_sym_LT_LT] = ACTIONS(6783), + [anon_sym_GT_GT] = ACTIONS(6783), + [anon_sym_SEMI] = ACTIONS(6778), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_virtual] = ACTIONS(6774), + [anon_sym_extern] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6778), + [anon_sym___declspec] = ACTIONS(6774), + [anon_sym___based] = ACTIONS(6774), + [anon_sym___cdecl] = ACTIONS(6774), + [anon_sym___clrcall] = ACTIONS(6774), + [anon_sym___stdcall] = ACTIONS(6774), + [anon_sym___fastcall] = ACTIONS(6774), + [anon_sym___thiscall] = ACTIONS(6774), + [anon_sym___vectorcall] = ACTIONS(6774), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_RBRACE] = ACTIONS(6776), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_static] = ACTIONS(6774), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_register] = ACTIONS(6774), + [anon_sym_inline] = ACTIONS(6774), + [anon_sym___inline] = ACTIONS(6774), + [anon_sym___inline__] = ACTIONS(6774), + [anon_sym___forceinline] = ACTIONS(6774), + [anon_sym_thread_local] = ACTIONS(6774), + [anon_sym___thread] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6776), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6776), + [anon_sym_or] = ACTIONS(6783), + [anon_sym_and] = ACTIONS(6783), + [anon_sym_bitor] = ACTIONS(6783), + [anon_sym_xor] = ACTIONS(6783), + [anon_sym_bitand] = ACTIONS(6783), + [anon_sym_not_eq] = ACTIONS(6783), + [anon_sym_DASH_DASH] = ACTIONS(6776), + [anon_sym_PLUS_PLUS] = ACTIONS(6776), + [anon_sym_DOT] = ACTIONS(6783), + [anon_sym_DOT_STAR] = ACTIONS(6776), + [anon_sym_DASH_GT] = ACTIONS(6776), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_operator] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(2048)] = { + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_TILDE] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6795), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6795), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6795), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6795), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym_SEMI] = ACTIONS(6797), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym_virtual] = ACTIONS(6795), + [anon_sym_extern] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6797), + [anon_sym___declspec] = ACTIONS(6795), + [anon_sym___based] = ACTIONS(6795), + [anon_sym___cdecl] = ACTIONS(6795), + [anon_sym___clrcall] = ACTIONS(6795), + [anon_sym___stdcall] = ACTIONS(6795), + [anon_sym___fastcall] = ACTIONS(6795), + [anon_sym___thiscall] = ACTIONS(6795), + [anon_sym___vectorcall] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_RBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_static] = ACTIONS(6795), + [anon_sym_EQ] = ACTIONS(6795), + [anon_sym_register] = ACTIONS(6795), + [anon_sym_inline] = ACTIONS(6795), + [anon_sym___inline] = ACTIONS(6795), + [anon_sym___inline__] = ACTIONS(6795), + [anon_sym___forceinline] = ACTIONS(6795), + [anon_sym_thread_local] = ACTIONS(6795), + [anon_sym___thread] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_STAR_EQ] = ACTIONS(6797), + [anon_sym_SLASH_EQ] = ACTIONS(6797), + [anon_sym_PERCENT_EQ] = ACTIONS(6797), + [anon_sym_PLUS_EQ] = ACTIONS(6797), + [anon_sym_DASH_EQ] = ACTIONS(6797), + [anon_sym_LT_LT_EQ] = ACTIONS(6797), + [anon_sym_GT_GT_EQ] = ACTIONS(6797), + [anon_sym_AMP_EQ] = ACTIONS(6797), + [anon_sym_CARET_EQ] = ACTIONS(6797), + [anon_sym_PIPE_EQ] = ACTIONS(6797), + [anon_sym_and_eq] = ACTIONS(6795), + [anon_sym_or_eq] = ACTIONS(6795), + [anon_sym_xor_eq] = ACTIONS(6795), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_operator] = ACTIONS(6795), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), + }, + [STATE(2049)] = { + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_TILDE] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6799), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6799), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6799), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6799), + [anon_sym_GT_GT] = ACTIONS(6799), + [anon_sym_SEMI] = ACTIONS(6801), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym_virtual] = ACTIONS(6799), + [anon_sym_extern] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6801), + [anon_sym___declspec] = ACTIONS(6799), + [anon_sym___based] = ACTIONS(6799), + [anon_sym___cdecl] = ACTIONS(6799), + [anon_sym___clrcall] = ACTIONS(6799), + [anon_sym___stdcall] = ACTIONS(6799), + [anon_sym___fastcall] = ACTIONS(6799), + [anon_sym___thiscall] = ACTIONS(6799), + [anon_sym___vectorcall] = ACTIONS(6799), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_RBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_static] = ACTIONS(6799), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_register] = ACTIONS(6799), + [anon_sym_inline] = ACTIONS(6799), + [anon_sym___inline] = ACTIONS(6799), + [anon_sym___inline__] = ACTIONS(6799), + [anon_sym___forceinline] = ACTIONS(6799), + [anon_sym_thread_local] = ACTIONS(6799), + [anon_sym___thread] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_and_eq] = ACTIONS(6799), + [anon_sym_or_eq] = ACTIONS(6799), + [anon_sym_xor_eq] = ACTIONS(6799), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_operator] = ACTIONS(6799), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), + }, + [STATE(2050)] = { + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_RPAREN] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_TILDE] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6803), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym_SEMI] = ACTIONS(6805), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym_virtual] = ACTIONS(6803), + [anon_sym_extern] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6805), + [anon_sym___declspec] = ACTIONS(6803), + [anon_sym___based] = ACTIONS(6803), + [anon_sym___cdecl] = ACTIONS(6803), + [anon_sym___clrcall] = ACTIONS(6803), + [anon_sym___stdcall] = ACTIONS(6803), + [anon_sym___fastcall] = ACTIONS(6803), + [anon_sym___thiscall] = ACTIONS(6803), + [anon_sym___vectorcall] = ACTIONS(6803), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_RBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_static] = ACTIONS(6803), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_register] = ACTIONS(6803), + [anon_sym_inline] = ACTIONS(6803), + [anon_sym___inline] = ACTIONS(6803), + [anon_sym___inline__] = ACTIONS(6803), + [anon_sym___forceinline] = ACTIONS(6803), + [anon_sym_thread_local] = ACTIONS(6803), + [anon_sym___thread] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_STAR_EQ] = ACTIONS(6805), + [anon_sym_SLASH_EQ] = ACTIONS(6805), + [anon_sym_PERCENT_EQ] = ACTIONS(6805), + [anon_sym_PLUS_EQ] = ACTIONS(6805), + [anon_sym_DASH_EQ] = ACTIONS(6805), + [anon_sym_LT_LT_EQ] = ACTIONS(6805), + [anon_sym_GT_GT_EQ] = ACTIONS(6805), + [anon_sym_AMP_EQ] = ACTIONS(6805), + [anon_sym_CARET_EQ] = ACTIONS(6805), + [anon_sym_PIPE_EQ] = ACTIONS(6805), + [anon_sym_and_eq] = ACTIONS(6803), + [anon_sym_or_eq] = ACTIONS(6803), + [anon_sym_xor_eq] = ACTIONS(6803), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_operator] = ACTIONS(6803), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), + }, + [STATE(2051)] = { + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_RPAREN] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_TILDE] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6807), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6807), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6807), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6807), + [anon_sym_GT_GT] = ACTIONS(6807), + [anon_sym_SEMI] = ACTIONS(6809), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym_virtual] = ACTIONS(6807), + [anon_sym_extern] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6809), + [anon_sym___declspec] = ACTIONS(6807), + [anon_sym___based] = ACTIONS(6807), + [anon_sym___cdecl] = ACTIONS(6807), + [anon_sym___clrcall] = ACTIONS(6807), + [anon_sym___stdcall] = ACTIONS(6807), + [anon_sym___fastcall] = ACTIONS(6807), + [anon_sym___thiscall] = ACTIONS(6807), + [anon_sym___vectorcall] = ACTIONS(6807), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_RBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_static] = ACTIONS(6807), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_register] = ACTIONS(6807), + [anon_sym_inline] = ACTIONS(6807), + [anon_sym___inline] = ACTIONS(6807), + [anon_sym___inline__] = ACTIONS(6807), + [anon_sym___forceinline] = ACTIONS(6807), + [anon_sym_thread_local] = ACTIONS(6807), + [anon_sym___thread] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [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(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_operator] = ACTIONS(6807), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), + }, + [STATE(2052)] = { + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_RPAREN] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_TILDE] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6811), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6811), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6811), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6811), + [anon_sym_GT_GT] = ACTIONS(6811), + [anon_sym_SEMI] = ACTIONS(6813), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym_virtual] = ACTIONS(6811), + [anon_sym_extern] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6811), + [anon_sym___based] = ACTIONS(6811), + [anon_sym___cdecl] = ACTIONS(6811), + [anon_sym___clrcall] = ACTIONS(6811), + [anon_sym___stdcall] = ACTIONS(6811), + [anon_sym___fastcall] = ACTIONS(6811), + [anon_sym___thiscall] = ACTIONS(6811), + [anon_sym___vectorcall] = ACTIONS(6811), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_RBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_static] = ACTIONS(6811), + [anon_sym_EQ] = ACTIONS(6811), + [anon_sym_register] = ACTIONS(6811), + [anon_sym_inline] = ACTIONS(6811), + [anon_sym___inline] = ACTIONS(6811), + [anon_sym___inline__] = ACTIONS(6811), + [anon_sym___forceinline] = ACTIONS(6811), + [anon_sym_thread_local] = ACTIONS(6811), + [anon_sym___thread] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_STAR_EQ] = ACTIONS(6813), + [anon_sym_SLASH_EQ] = ACTIONS(6813), + [anon_sym_PERCENT_EQ] = ACTIONS(6813), + [anon_sym_PLUS_EQ] = ACTIONS(6813), + [anon_sym_DASH_EQ] = ACTIONS(6813), + [anon_sym_LT_LT_EQ] = ACTIONS(6813), + [anon_sym_GT_GT_EQ] = ACTIONS(6813), + [anon_sym_AMP_EQ] = ACTIONS(6813), + [anon_sym_CARET_EQ] = ACTIONS(6813), + [anon_sym_PIPE_EQ] = ACTIONS(6813), + [anon_sym_and_eq] = ACTIONS(6811), + [anon_sym_or_eq] = ACTIONS(6811), + [anon_sym_xor_eq] = ACTIONS(6811), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_operator] = ACTIONS(6811), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), + }, + [STATE(2053)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6817), + [anon_sym_COMMA] = ACTIONS(6817), + [anon_sym_RPAREN] = ACTIONS(6817), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_TILDE] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6824), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6824), + [anon_sym_GT_GT] = ACTIONS(6824), + [anon_sym_SEMI] = ACTIONS(6817), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_virtual] = ACTIONS(6815), + [anon_sym_extern] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6822), + [anon_sym___declspec] = ACTIONS(6815), + [anon_sym___based] = ACTIONS(6815), + [anon_sym___cdecl] = ACTIONS(6815), + [anon_sym___clrcall] = ACTIONS(6815), + [anon_sym___stdcall] = ACTIONS(6815), + [anon_sym___fastcall] = ACTIONS(6815), + [anon_sym___thiscall] = ACTIONS(6815), + [anon_sym___vectorcall] = ACTIONS(6815), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6817), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_static] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_register] = ACTIONS(6815), + [anon_sym_inline] = ACTIONS(6815), + [anon_sym___inline] = ACTIONS(6815), + [anon_sym___inline__] = ACTIONS(6815), + [anon_sym___forceinline] = ACTIONS(6815), + [anon_sym_thread_local] = ACTIONS(6815), + [anon_sym___thread] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(2054)] = { + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_RPAREN] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_TILDE] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6829), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6829), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6829), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6829), + [anon_sym_GT_GT] = ACTIONS(6829), + [anon_sym_SEMI] = ACTIONS(6831), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym_virtual] = ACTIONS(6829), + [anon_sym_extern] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6831), + [anon_sym___declspec] = ACTIONS(6829), + [anon_sym___based] = ACTIONS(6829), + [anon_sym___cdecl] = ACTIONS(6829), + [anon_sym___clrcall] = ACTIONS(6829), + [anon_sym___stdcall] = ACTIONS(6829), + [anon_sym___fastcall] = ACTIONS(6829), + [anon_sym___thiscall] = ACTIONS(6829), + [anon_sym___vectorcall] = ACTIONS(6829), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_RBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_static] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_register] = ACTIONS(6829), + [anon_sym_inline] = ACTIONS(6829), + [anon_sym___inline] = ACTIONS(6829), + [anon_sym___inline__] = ACTIONS(6829), + [anon_sym___forceinline] = ACTIONS(6829), + [anon_sym_thread_local] = ACTIONS(6829), + [anon_sym___thread] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_STAR_EQ] = ACTIONS(6831), + [anon_sym_SLASH_EQ] = ACTIONS(6831), + [anon_sym_PERCENT_EQ] = ACTIONS(6831), + [anon_sym_PLUS_EQ] = ACTIONS(6831), + [anon_sym_DASH_EQ] = ACTIONS(6831), + [anon_sym_LT_LT_EQ] = ACTIONS(6831), + [anon_sym_GT_GT_EQ] = ACTIONS(6831), + [anon_sym_AMP_EQ] = ACTIONS(6831), + [anon_sym_CARET_EQ] = ACTIONS(6831), + [anon_sym_PIPE_EQ] = ACTIONS(6831), + [anon_sym_and_eq] = ACTIONS(6829), + [anon_sym_or_eq] = ACTIONS(6829), + [anon_sym_xor_eq] = ACTIONS(6829), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_operator] = ACTIONS(6829), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), + }, + [STATE(2055)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8520), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10156), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_parameter_list] = STATE(1131), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(7051), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8913), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(2925), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(6835), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(6837), [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___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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -327277,156 +324360,84 @@ 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(3536), [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(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6839), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(2056)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8505), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10168), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_parameter_list] = STATE(1134), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(7051), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8913), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(2925), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(6835), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(6837), [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___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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -327449,156 +324460,84 @@ 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(3536), [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(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6841), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(2057)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8496), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10165), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_parameter_list] = STATE(1136), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(7051), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8913), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(2925), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(6835), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(6837), [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___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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -327621,70 +324560,84 @@ 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(3536), [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(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6843), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(2058)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8498), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10188), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_parameter_list] = STATE(1132), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(7051), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8913), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(2925), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(6835), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(6837), [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___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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -327707,156 +324660,3706 @@ 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(3536), [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(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6845), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [STATE(2158)] = { - [sym_attribute_specifier] = STATE(2191), - [sym_identifier] = ACTIONS(7505), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), - [anon_sym_COMMA] = ACTIONS(7507), - [anon_sym_RPAREN] = ACTIONS(7507), - [aux_sym_preproc_if_token2] = ACTIONS(7507), - [aux_sym_preproc_else_token1] = ACTIONS(7507), - [aux_sym_preproc_elif_token1] = ACTIONS(7505), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7507), - [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(7507), - [anon_sym___extension__] = ACTIONS(7505), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7505), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7507), - [anon_sym_LBRACE] = ACTIONS(7507), - [anon_sym_RBRACE] = ACTIONS(7507), - [anon_sym_LBRACK] = ACTIONS(7507), - [anon_sym_EQ] = ACTIONS(7505), - [anon_sym_const] = ACTIONS(7505), - [anon_sym_constexpr] = ACTIONS(7505), - [anon_sym_volatile] = ACTIONS(7505), - [anon_sym_restrict] = ACTIONS(7505), - [anon_sym___restrict__] = ACTIONS(7505), - [anon_sym__Atomic] = ACTIONS(7505), - [anon_sym__Noreturn] = ACTIONS(7505), - [anon_sym_noreturn] = ACTIONS(7505), - [anon_sym__Nonnull] = ACTIONS(7505), - [anon_sym_mutable] = ACTIONS(7505), - [anon_sym_constinit] = ACTIONS(7505), - [anon_sym_consteval] = ACTIONS(7505), - [anon_sym_alignas] = ACTIONS(7505), - [anon_sym__Alignas] = ACTIONS(7505), - [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(7505), - [anon_sym_or_eq] = ACTIONS(7505), - [anon_sym_xor_eq] = ACTIONS(7505), - [anon_sym_LT_EQ_GT] = ACTIONS(7507), - [anon_sym_or] = ACTIONS(7505), - [anon_sym_and] = ACTIONS(7505), - [anon_sym_bitor] = ACTIONS(7505), - [anon_sym_xor] = ACTIONS(7505), - [anon_sym_bitand] = ACTIONS(7505), - [anon_sym_not_eq] = ACTIONS(7505), - [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(7505), - [anon_sym_override] = ACTIONS(7505), - [anon_sym_requires] = ACTIONS(7505), - [anon_sym_COLON_RBRACK] = ACTIONS(7507), + [STATE(2059)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6817), + [anon_sym_COMMA] = ACTIONS(6817), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_TILDE] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6824), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6824), + [anon_sym_GT_GT] = ACTIONS(6824), + [anon_sym_SEMI] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_virtual] = ACTIONS(6815), + [anon_sym_extern] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6819), + [anon_sym___declspec] = ACTIONS(6815), + [anon_sym___based] = ACTIONS(6815), + [anon_sym___cdecl] = ACTIONS(6815), + [anon_sym___clrcall] = ACTIONS(6815), + [anon_sym___stdcall] = ACTIONS(6815), + [anon_sym___fastcall] = ACTIONS(6815), + [anon_sym___thiscall] = ACTIONS(6815), + [anon_sym___vectorcall] = ACTIONS(6815), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6817), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_static] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_register] = ACTIONS(6815), + [anon_sym_inline] = ACTIONS(6815), + [anon_sym___inline] = ACTIONS(6815), + [anon_sym___inline__] = ACTIONS(6815), + [anon_sym___forceinline] = ACTIONS(6815), + [anon_sym_thread_local] = ACTIONS(6815), + [anon_sym___thread] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, - [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), + [STATE(2060)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2819), + [sym_ms_pointer_modifier] = STATE(2061), + [sym__abstract_declarator] = STATE(6527), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2222), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2116), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9528), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2222), + [aux_sym_pointer_declarator_repeat1] = STATE(2061), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(6847), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(6849), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5996), + [anon_sym_AMP] = ACTIONS(6851), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5996), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6853), + [sym_ms_restrict_modifier] = ACTIONS(6750), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6750), + [sym_ms_signed_ptr_modifier] = ACTIONS(6750), + [anon_sym__unaligned] = ACTIONS(6752), + [anon_sym___unaligned] = ACTIONS(6752), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_STAR_EQ] = ACTIONS(5994), + [anon_sym_SLASH_EQ] = ACTIONS(5994), + [anon_sym_PERCENT_EQ] = ACTIONS(5994), + [anon_sym_PLUS_EQ] = ACTIONS(5994), + [anon_sym_DASH_EQ] = ACTIONS(5994), + [anon_sym_LT_LT_EQ] = ACTIONS(5994), + [anon_sym_GT_GT_EQ] = ACTIONS(5994), + [anon_sym_AMP_EQ] = ACTIONS(5994), + [anon_sym_CARET_EQ] = ACTIONS(5994), + [anon_sym_PIPE_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5996), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(5994), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2061)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2819), + [sym_ms_pointer_modifier] = STATE(2536), + [sym__abstract_declarator] = STATE(6574), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2214), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2116), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9528), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2214), + [aux_sym_pointer_declarator_repeat1] = STATE(2536), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6847), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6849), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6851), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6853), + [sym_ms_restrict_modifier] = ACTIONS(6750), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6750), + [sym_ms_signed_ptr_modifier] = ACTIONS(6750), + [anon_sym__unaligned] = ACTIONS(6752), + [anon_sym___unaligned] = ACTIONS(6752), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5970), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2062)] = { + [sym_attribute_specifier] = STATE(2356), + [sym_attribute_declaration] = STATE(4929), + [sym_type_qualifier] = STATE(2512), + [sym_alignas_qualifier] = STATE(2680), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym_ref_qualifier] = STATE(2736), + [sym__function_attributes_start] = STATE(2668), + [sym__function_exception_specification] = STATE(3366), + [sym__function_attributes_end] = STATE(4734), + [sym__function_postfix] = STATE(5330), + [sym_trailing_return_type] = STATE(4912), + [sym_noexcept] = STATE(3366), + [sym_throw_specifier] = STATE(3366), + [sym_requires_clause] = STATE(5330), + [aux_sym_type_definition_repeat1] = STATE(2356), + [aux_sym__type_definition_type_repeat1] = STATE(2512), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_RPAREN] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6855), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6858), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(6869), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_mutable] = ACTIONS(6861), + [anon_sym_constinit] = ACTIONS(6861), + [anon_sym_consteval] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6399), + [anon_sym_or_eq] = ACTIONS(6399), + [anon_sym_xor_eq] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(6875), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6882), + [anon_sym_requires] = ACTIONS(6884), + [anon_sym_DASH_GT_STAR] = ACTIONS(6399), + }, + [STATE(2063)] = { + [sym_attribute_specifier] = STATE(2356), + [sym_attribute_declaration] = STATE(4929), + [sym_type_qualifier] = STATE(2512), + [sym_alignas_qualifier] = STATE(2680), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym_ref_qualifier] = STATE(2752), + [sym__function_attributes_start] = STATE(2709), + [sym__function_exception_specification] = STATE(3320), + [sym__function_attributes_end] = STATE(4768), + [sym__function_postfix] = STATE(5330), + [sym_trailing_return_type] = STATE(4812), + [sym_noexcept] = STATE(3320), + [sym_throw_specifier] = STATE(3320), + [sym_requires_clause] = STATE(5330), + [aux_sym_type_definition_repeat1] = STATE(2356), + [aux_sym__type_definition_type_repeat1] = STATE(2512), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_RPAREN] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6855), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6858), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(6869), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_mutable] = ACTIONS(6861), + [anon_sym_constinit] = ACTIONS(6861), + [anon_sym_consteval] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6399), + [anon_sym_or_eq] = ACTIONS(6399), + [anon_sym_xor_eq] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(6875), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6886), + [anon_sym_override] = ACTIONS(6886), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6882), + [anon_sym_requires] = ACTIONS(6889), + [anon_sym_DASH_GT_STAR] = ACTIONS(6399), + }, + [STATE(2064)] = { + [sym_string_literal] = STATE(2884), + [sym_decltype_auto] = STATE(2319), + [sym_template_argument_list] = STATE(2537), + [sym_raw_string_literal] = STATE(2884), + [aux_sym_sized_type_specifier_repeat1] = STATE(2170), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_RPAREN] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(6892), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5673), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5676), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5676), + [anon_sym_signed] = ACTIONS(6896), + [anon_sym_unsigned] = ACTIONS(6896), + [anon_sym_long] = ACTIONS(6896), + [anon_sym_short] = ACTIONS(6896), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(5673), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(5676), + [anon_sym_SLASH_EQ] = ACTIONS(5676), + [anon_sym_PERCENT_EQ] = ACTIONS(5676), + [anon_sym_PLUS_EQ] = ACTIONS(5676), + [anon_sym_DASH_EQ] = ACTIONS(5676), + [anon_sym_LT_LT_EQ] = ACTIONS(5676), + [anon_sym_GT_GT_EQ] = ACTIONS(5676), + [anon_sym_AMP_EQ] = ACTIONS(5676), + [anon_sym_CARET_EQ] = ACTIONS(5676), + [anon_sym_PIPE_EQ] = ACTIONS(5676), + [anon_sym_and_eq] = ACTIONS(5673), + [anon_sym_or_eq] = ACTIONS(5673), + [anon_sym_xor_eq] = ACTIONS(5673), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [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(6898), + [anon_sym_decltype] = ACTIONS(6900), + [anon_sym_template] = ACTIONS(5661), + [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_LBRACK_COLON] = ACTIONS(5669), + [anon_sym_COLON_RBRACK] = ACTIONS(5676), + }, + [STATE(2065)] = { + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_RPAREN] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_TILDE] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6813), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6813), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6813), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6813), + [anon_sym_GT_GT] = ACTIONS(6813), + [anon_sym_SEMI] = ACTIONS(6813), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym_virtual] = ACTIONS(6811), + [anon_sym_extern] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6811), + [anon_sym___based] = ACTIONS(6811), + [anon_sym___cdecl] = ACTIONS(6811), + [anon_sym___clrcall] = ACTIONS(6811), + [anon_sym___stdcall] = ACTIONS(6811), + [anon_sym___fastcall] = ACTIONS(6811), + [anon_sym___thiscall] = ACTIONS(6811), + [anon_sym___vectorcall] = ACTIONS(6811), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_RBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_static] = ACTIONS(6811), + [anon_sym_RBRACK] = ACTIONS(6813), + [anon_sym_EQ] = ACTIONS(6811), + [anon_sym_register] = ACTIONS(6811), + [anon_sym_inline] = ACTIONS(6811), + [anon_sym___inline] = ACTIONS(6811), + [anon_sym___inline__] = ACTIONS(6811), + [anon_sym___forceinline] = ACTIONS(6811), + [anon_sym_thread_local] = ACTIONS(6811), + [anon_sym___thread] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_asm] = ACTIONS(6811), + [anon_sym___asm__] = ACTIONS(6811), + [anon_sym___asm] = ACTIONS(6811), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_operator] = ACTIONS(6811), + [anon_sym_try] = ACTIONS(6811), + [anon_sym_noexcept] = ACTIONS(6811), + [anon_sym_throw] = ACTIONS(6811), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), + }, + [STATE(2066)] = { + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_TILDE] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6801), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6801), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6801), + [anon_sym_SEMI] = ACTIONS(6801), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym_virtual] = ACTIONS(6799), + [anon_sym_extern] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6801), + [anon_sym___declspec] = ACTIONS(6799), + [anon_sym___based] = ACTIONS(6799), + [anon_sym___cdecl] = ACTIONS(6799), + [anon_sym___clrcall] = ACTIONS(6799), + [anon_sym___stdcall] = ACTIONS(6799), + [anon_sym___fastcall] = ACTIONS(6799), + [anon_sym___thiscall] = ACTIONS(6799), + [anon_sym___vectorcall] = ACTIONS(6799), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_RBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_static] = ACTIONS(6799), + [anon_sym_RBRACK] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_register] = ACTIONS(6799), + [anon_sym_inline] = ACTIONS(6799), + [anon_sym___inline] = ACTIONS(6799), + [anon_sym___inline__] = ACTIONS(6799), + [anon_sym___forceinline] = ACTIONS(6799), + [anon_sym_thread_local] = ACTIONS(6799), + [anon_sym___thread] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_asm] = ACTIONS(6799), + [anon_sym___asm__] = ACTIONS(6799), + [anon_sym___asm] = ACTIONS(6799), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_operator] = ACTIONS(6799), + [anon_sym_try] = ACTIONS(6799), + [anon_sym_noexcept] = ACTIONS(6799), + [anon_sym_throw] = ACTIONS(6799), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), + }, + [STATE(2067)] = { + [sym__abstract_declarator] = STATE(4978), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2081), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9554), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6594), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [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(6612), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2068)] = { + [sym_attribute_specifier] = STATE(2367), + [sym_attribute_declaration] = STATE(5078), + [sym_type_qualifier] = STATE(2538), + [sym_alignas_qualifier] = STATE(2762), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym_ref_qualifier] = STATE(2838), + [sym__function_attributes_start] = STATE(2725), + [sym__function_exception_specification] = STATE(3395), + [sym__function_attributes_end] = STATE(4881), + [sym__function_postfix] = STATE(5710), + [sym_trailing_return_type] = STATE(4985), + [sym_noexcept] = STATE(3395), + [sym_throw_specifier] = STATE(3395), + [sym_requires_clause] = STATE(5710), + [aux_sym_type_definition_repeat1] = STATE(2367), + [aux_sym__type_definition_type_repeat1] = STATE(2538), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6902), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6905), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6397), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym___extension__] = ACTIONS(6908), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(6916), + [anon_sym_constexpr] = ACTIONS(6908), + [anon_sym_volatile] = ACTIONS(6908), + [anon_sym_restrict] = ACTIONS(6908), + [anon_sym___restrict__] = ACTIONS(6908), + [anon_sym__Atomic] = ACTIONS(6908), + [anon_sym__Noreturn] = ACTIONS(6908), + [anon_sym_noreturn] = ACTIONS(6908), + [anon_sym__Nonnull] = ACTIONS(6908), + [anon_sym_mutable] = ACTIONS(6908), + [anon_sym_constinit] = ACTIONS(6908), + [anon_sym_consteval] = ACTIONS(6908), + [anon_sym_alignas] = ACTIONS(6918), + [anon_sym__Alignas] = ACTIONS(6918), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6397), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6399), + [anon_sym_or_eq] = ACTIONS(6399), + [anon_sym_xor_eq] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(6920), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6923), + [anon_sym_override] = ACTIONS(6923), + [anon_sym_GT2] = ACTIONS(6399), + [anon_sym_noexcept] = ACTIONS(6925), + [anon_sym_throw] = ACTIONS(6927), + [anon_sym_requires] = ACTIONS(6929), + }, + [STATE(2069)] = { + [sym_type_qualifier] = STATE(2079), + [sym_alignas_qualifier] = STATE(2153), + [aux_sym__type_definition_type_repeat1] = STATE(2079), + [aux_sym_sized_type_specifier_repeat1] = STATE(2136), + [sym_identifier] = ACTIONS(6931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6934), + [aux_sym_preproc_if_token2] = ACTIONS(6934), + [aux_sym_preproc_else_token1] = ACTIONS(6934), + [aux_sym_preproc_elif_token1] = ACTIONS(6936), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6934), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym_SEMI] = ACTIONS(6934), + [anon_sym___extension__] = ACTIONS(6938), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON] = ACTIONS(6936), + [anon_sym_COLON_COLON] = ACTIONS(6934), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_RBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(6941), + [anon_sym_unsigned] = ACTIONS(6941), + [anon_sym_long] = ACTIONS(6941), + [anon_sym_short] = ACTIONS(6941), + [anon_sym_LBRACK] = ACTIONS(6936), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(6938), + [anon_sym_constexpr] = ACTIONS(6938), + [anon_sym_volatile] = ACTIONS(6938), + [anon_sym_restrict] = ACTIONS(6938), + [anon_sym___restrict__] = ACTIONS(6938), + [anon_sym__Atomic] = ACTIONS(6938), + [anon_sym__Noreturn] = ACTIONS(6938), + [anon_sym_noreturn] = ACTIONS(6938), + [anon_sym__Nonnull] = ACTIONS(6938), + [anon_sym_mutable] = ACTIONS(6938), + [anon_sym_constinit] = ACTIONS(6938), + [anon_sym_consteval] = ACTIONS(6938), + [anon_sym_alignas] = ACTIONS(6943), + [anon_sym__Alignas] = ACTIONS(6943), + [sym_primitive_type] = ACTIONS(6946), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6934), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_and_eq] = ACTIONS(6936), + [anon_sym_or_eq] = ACTIONS(6936), + [anon_sym_xor_eq] = ACTIONS(6936), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6936), + [anon_sym_final] = ACTIONS(6936), + [anon_sym_override] = ACTIONS(6936), + [anon_sym_template] = ACTIONS(6936), + [anon_sym_requires] = ACTIONS(6936), + [anon_sym_LBRACK_COLON] = ACTIONS(6934), + [anon_sym_COLON_RBRACK] = ACTIONS(6934), + }, + [STATE(2070)] = { + [sym__abstract_declarator] = STATE(4982), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2081), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9554), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6594), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [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(6600), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2071)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(3255), + [sym_template_argument_list] = STATE(4442), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(5673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [aux_sym_preproc_if_token2] = ACTIONS(5676), + [aux_sym_preproc_else_token1] = ACTIONS(5676), + [aux_sym_preproc_elif_token1] = ACTIONS(5673), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5676), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(6952), + [anon_sym_unsigned] = ACTIONS(6952), + [anon_sym_long] = ACTIONS(6952), + [anon_sym_short] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(6954), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(6956), + [anon_sym_SLASH_EQ] = ACTIONS(6956), + [anon_sym_PERCENT_EQ] = ACTIONS(6956), + [anon_sym_PLUS_EQ] = ACTIONS(6956), + [anon_sym_DASH_EQ] = ACTIONS(6956), + [anon_sym_LT_LT_EQ] = ACTIONS(6956), + [anon_sym_GT_GT_EQ] = ACTIONS(6956), + [anon_sym_AMP_EQ] = ACTIONS(6956), + [anon_sym_CARET_EQ] = ACTIONS(6956), + [anon_sym_PIPE_EQ] = ACTIONS(6956), + [anon_sym_and_eq] = ACTIONS(6954), + [anon_sym_or_eq] = ACTIONS(6954), + [anon_sym_xor_eq] = ACTIONS(6954), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6958), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2072)] = { + [sym__abstract_declarator] = STATE(4981), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2081), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9554), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6594), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2073)] = { + [sym_string_literal] = STATE(2884), + [sym_decltype_auto] = STATE(2319), + [sym_template_argument_list] = STATE(2784), + [sym_raw_string_literal] = STATE(2884), + [aux_sym_sized_type_specifier_repeat1] = STATE(2170), + [sym_identifier] = ACTIONS(5673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [aux_sym_preproc_if_token2] = ACTIONS(5676), + [aux_sym_preproc_else_token1] = ACTIONS(5676), + [aux_sym_preproc_elif_token1] = ACTIONS(5673), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5676), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(6892), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(6896), + [anon_sym_unsigned] = ACTIONS(6896), + [anon_sym_long] = ACTIONS(6896), + [anon_sym_short] = ACTIONS(6896), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(5673), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(5676), + [anon_sym_SLASH_EQ] = ACTIONS(5676), + [anon_sym_PERCENT_EQ] = ACTIONS(5676), + [anon_sym_PLUS_EQ] = ACTIONS(5676), + [anon_sym_DASH_EQ] = ACTIONS(5676), + [anon_sym_LT_LT_EQ] = ACTIONS(5676), + [anon_sym_GT_GT_EQ] = ACTIONS(5676), + [anon_sym_AMP_EQ] = ACTIONS(5676), + [anon_sym_CARET_EQ] = ACTIONS(5676), + [anon_sym_PIPE_EQ] = ACTIONS(5676), + [anon_sym_and_eq] = ACTIONS(5673), + [anon_sym_or_eq] = ACTIONS(5673), + [anon_sym_xor_eq] = ACTIONS(5673), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [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(6898), + [anon_sym_decltype] = ACTIONS(6900), + [anon_sym_template] = ACTIONS(5661), + [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_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2074)] = { + [sym_attribute_specifier] = STATE(2098), + [sym_attribute_declaration] = STATE(3515), + [sym_type_qualifier] = STATE(2188), + [sym_alignas_qualifier] = STATE(2254), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym_ref_qualifier] = STATE(2886), + [sym__function_attributes_start] = STATE(2773), + [sym__function_exception_specification] = STATE(3398), + [sym__function_attributes_end] = STATE(4614), + [sym__function_postfix] = STATE(3894), + [sym_trailing_return_type] = STATE(3448), + [sym_noexcept] = STATE(3398), + [sym_throw_specifier] = STATE(3398), + [sym_requires_clause] = STATE(3894), + [aux_sym_type_definition_repeat1] = STATE(2098), + [aux_sym__type_definition_type_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6401), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym_SEMI] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(6962), + [anon_sym___attribute__] = ACTIONS(6964), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(6407), + [anon_sym_constexpr] = ACTIONS(6962), + [anon_sym_volatile] = ACTIONS(6962), + [anon_sym_restrict] = ACTIONS(6962), + [anon_sym___restrict__] = ACTIONS(6962), + [anon_sym__Atomic] = ACTIONS(6962), + [anon_sym__Noreturn] = ACTIONS(6962), + [anon_sym_noreturn] = ACTIONS(6962), + [anon_sym__Nonnull] = ACTIONS(6962), + [anon_sym_mutable] = ACTIONS(6962), + [anon_sym_constinit] = ACTIONS(6962), + [anon_sym_consteval] = ACTIONS(6962), + [anon_sym_alignas] = ACTIONS(6970), + [anon_sym__Alignas] = ACTIONS(6970), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6399), + [anon_sym_or_eq] = ACTIONS(6399), + [anon_sym_xor_eq] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(6972), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6975), + [anon_sym_override] = ACTIONS(6975), + [anon_sym_noexcept] = ACTIONS(6977), + [anon_sym_throw] = ACTIONS(6979), + [anon_sym_requires] = ACTIONS(6981), + }, + [STATE(2075)] = { + [sym_attribute_specifier] = STATE(2367), + [sym_attribute_declaration] = STATE(5078), + [sym_type_qualifier] = STATE(2538), + [sym_alignas_qualifier] = STATE(2762), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym_ref_qualifier] = STATE(2889), + [sym__function_attributes_start] = STATE(2775), + [sym__function_exception_specification] = STATE(3403), + [sym__function_attributes_end] = STATE(4841), + [sym__function_postfix] = STATE(5710), + [sym_trailing_return_type] = STATE(4924), + [sym_noexcept] = STATE(3403), + [sym_throw_specifier] = STATE(3403), + [sym_requires_clause] = STATE(5710), + [aux_sym_type_definition_repeat1] = STATE(2367), + [aux_sym__type_definition_type_repeat1] = STATE(2538), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6902), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6905), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6397), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym___extension__] = ACTIONS(6908), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(6916), + [anon_sym_constexpr] = ACTIONS(6908), + [anon_sym_volatile] = ACTIONS(6908), + [anon_sym_restrict] = ACTIONS(6908), + [anon_sym___restrict__] = ACTIONS(6908), + [anon_sym__Atomic] = ACTIONS(6908), + [anon_sym__Noreturn] = ACTIONS(6908), + [anon_sym_noreturn] = ACTIONS(6908), + [anon_sym__Nonnull] = ACTIONS(6908), + [anon_sym_mutable] = ACTIONS(6908), + [anon_sym_constinit] = ACTIONS(6908), + [anon_sym_consteval] = ACTIONS(6908), + [anon_sym_alignas] = ACTIONS(6918), + [anon_sym__Alignas] = ACTIONS(6918), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6397), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6399), + [anon_sym_or_eq] = ACTIONS(6399), + [anon_sym_xor_eq] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(6920), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6983), + [anon_sym_override] = ACTIONS(6983), + [anon_sym_GT2] = ACTIONS(6399), + [anon_sym_noexcept] = ACTIONS(6925), + [anon_sym_throw] = ACTIONS(6927), + [anon_sym_requires] = ACTIONS(6986), + }, + [STATE(2076)] = { + [sym_attribute_specifier] = STATE(2376), + [sym_attribute_declaration] = STATE(5053), + [sym_type_qualifier] = STATE(2551), + [sym_alignas_qualifier] = STATE(2780), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym_ref_qualifier] = STATE(2892), + [sym__function_attributes_start] = STATE(2776), + [sym__function_exception_specification] = STATE(3426), + [sym__function_attributes_end] = STATE(4845), + [sym__function_postfix] = STATE(5713), + [sym_trailing_return_type] = STATE(4935), + [sym_noexcept] = STATE(3426), + [sym_throw_specifier] = STATE(3426), + [sym_requires_clause] = STATE(5713), + [aux_sym_type_definition_repeat1] = STATE(2376), + [aux_sym__type_definition_type_repeat1] = STATE(2551), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6989), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6992), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym___extension__] = ACTIONS(6995), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_RBRACK] = ACTIONS(6399), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(7003), + [anon_sym_constexpr] = ACTIONS(6995), + [anon_sym_volatile] = ACTIONS(6995), + [anon_sym_restrict] = ACTIONS(6995), + [anon_sym___restrict__] = ACTIONS(6995), + [anon_sym__Atomic] = ACTIONS(6995), + [anon_sym__Noreturn] = ACTIONS(6995), + [anon_sym_noreturn] = ACTIONS(6995), + [anon_sym__Nonnull] = ACTIONS(6995), + [anon_sym_mutable] = ACTIONS(6995), + [anon_sym_constinit] = ACTIONS(6995), + [anon_sym_consteval] = ACTIONS(6995), + [anon_sym_alignas] = ACTIONS(7005), + [anon_sym__Alignas] = ACTIONS(7005), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6399), + [anon_sym_or_eq] = ACTIONS(6399), + [anon_sym_xor_eq] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7010), + [anon_sym_override] = ACTIONS(7010), + [anon_sym_noexcept] = ACTIONS(7013), + [anon_sym_throw] = ACTIONS(7015), + [anon_sym_requires] = ACTIONS(7017), + }, + [STATE(2077)] = { + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_RPAREN] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_TILDE] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6809), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6809), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6809), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6809), + [anon_sym_GT_GT] = ACTIONS(6809), + [anon_sym_SEMI] = ACTIONS(6809), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym_virtual] = ACTIONS(6807), + [anon_sym_extern] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6809), + [anon_sym___declspec] = ACTIONS(6807), + [anon_sym___based] = ACTIONS(6807), + [anon_sym___cdecl] = ACTIONS(6807), + [anon_sym___clrcall] = ACTIONS(6807), + [anon_sym___stdcall] = ACTIONS(6807), + [anon_sym___fastcall] = ACTIONS(6807), + [anon_sym___thiscall] = ACTIONS(6807), + [anon_sym___vectorcall] = ACTIONS(6807), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_RBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_static] = ACTIONS(6807), + [anon_sym_RBRACK] = ACTIONS(6809), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_register] = ACTIONS(6807), + [anon_sym_inline] = ACTIONS(6807), + [anon_sym___inline] = ACTIONS(6807), + [anon_sym___inline__] = ACTIONS(6807), + [anon_sym___forceinline] = ACTIONS(6807), + [anon_sym_thread_local] = ACTIONS(6807), + [anon_sym___thread] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [anon_sym_LT_EQ_GT] = ACTIONS(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_asm] = ACTIONS(6807), + [anon_sym___asm__] = ACTIONS(6807), + [anon_sym___asm] = ACTIONS(6807), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_operator] = ACTIONS(6807), + [anon_sym_try] = ACTIONS(6807), + [anon_sym_noexcept] = ACTIONS(6807), + [anon_sym_throw] = ACTIONS(6807), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), + }, + [STATE(2078)] = { + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_TILDE] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6797), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6797), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6797), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6797), + [anon_sym_GT_GT] = ACTIONS(6797), + [anon_sym_SEMI] = ACTIONS(6797), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym_virtual] = ACTIONS(6795), + [anon_sym_extern] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6797), + [anon_sym___declspec] = ACTIONS(6795), + [anon_sym___based] = ACTIONS(6795), + [anon_sym___cdecl] = ACTIONS(6795), + [anon_sym___clrcall] = ACTIONS(6795), + [anon_sym___stdcall] = ACTIONS(6795), + [anon_sym___fastcall] = ACTIONS(6795), + [anon_sym___thiscall] = ACTIONS(6795), + [anon_sym___vectorcall] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_RBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_static] = ACTIONS(6795), + [anon_sym_RBRACK] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6795), + [anon_sym_register] = ACTIONS(6795), + [anon_sym_inline] = ACTIONS(6795), + [anon_sym___inline] = ACTIONS(6795), + [anon_sym___inline__] = ACTIONS(6795), + [anon_sym___forceinline] = ACTIONS(6795), + [anon_sym_thread_local] = ACTIONS(6795), + [anon_sym___thread] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_asm] = ACTIONS(6795), + [anon_sym___asm__] = ACTIONS(6795), + [anon_sym___asm] = ACTIONS(6795), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_operator] = ACTIONS(6795), + [anon_sym_try] = ACTIONS(6795), + [anon_sym_noexcept] = ACTIONS(6795), + [anon_sym_throw] = ACTIONS(6795), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), + }, + [STATE(2079)] = { + [sym_type_qualifier] = STATE(2097), + [sym_alignas_qualifier] = STATE(2153), + [aux_sym__type_definition_type_repeat1] = STATE(2097), + [aux_sym_sized_type_specifier_repeat1] = STATE(2168), + [sym_identifier] = ACTIONS(7020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_RPAREN] = ACTIONS(7023), + [aux_sym_preproc_if_token2] = ACTIONS(7023), + [aux_sym_preproc_else_token1] = ACTIONS(7023), + [aux_sym_preproc_elif_token1] = ACTIONS(7025), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7023), + [anon_sym___extension__] = ACTIONS(7027), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON] = ACTIONS(7025), + [anon_sym_COLON_COLON] = ACTIONS(7023), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7023), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_RBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(7030), + [anon_sym_unsigned] = ACTIONS(7030), + [anon_sym_long] = ACTIONS(7030), + [anon_sym_short] = ACTIONS(7030), + [anon_sym_LBRACK] = ACTIONS(7025), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(7027), + [anon_sym_constexpr] = ACTIONS(7027), + [anon_sym_volatile] = ACTIONS(7027), + [anon_sym_restrict] = ACTIONS(7027), + [anon_sym___restrict__] = ACTIONS(7027), + [anon_sym__Atomic] = ACTIONS(7027), + [anon_sym__Noreturn] = ACTIONS(7027), + [anon_sym_noreturn] = ACTIONS(7027), + [anon_sym__Nonnull] = ACTIONS(7027), + [anon_sym_mutable] = ACTIONS(7027), + [anon_sym_constinit] = ACTIONS(7027), + [anon_sym_consteval] = ACTIONS(7027), + [anon_sym_alignas] = ACTIONS(7032), + [anon_sym__Alignas] = ACTIONS(7032), + [sym_primitive_type] = ACTIONS(7035), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7023), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_and_eq] = ACTIONS(7025), + [anon_sym_or_eq] = ACTIONS(7025), + [anon_sym_xor_eq] = ACTIONS(7025), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7025), + [anon_sym_final] = ACTIONS(7025), + [anon_sym_override] = ACTIONS(7025), + [anon_sym_template] = ACTIONS(7025), + [anon_sym_requires] = ACTIONS(7025), + [anon_sym_LBRACK_COLON] = ACTIONS(7023), + [anon_sym_COLON_RBRACK] = ACTIONS(7023), + }, + [STATE(2080)] = { + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_RPAREN] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_TILDE] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6793), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6793), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6793), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6793), + [anon_sym_GT_GT] = ACTIONS(6793), + [anon_sym_SEMI] = ACTIONS(6793), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym_virtual] = ACTIONS(6791), + [anon_sym_extern] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6793), + [anon_sym___declspec] = ACTIONS(6791), + [anon_sym___based] = ACTIONS(6791), + [anon_sym___cdecl] = ACTIONS(6791), + [anon_sym___clrcall] = ACTIONS(6791), + [anon_sym___stdcall] = ACTIONS(6791), + [anon_sym___fastcall] = ACTIONS(6791), + [anon_sym___thiscall] = ACTIONS(6791), + [anon_sym___vectorcall] = ACTIONS(6791), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_RBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_static] = ACTIONS(6791), + [anon_sym_RBRACK] = ACTIONS(6793), + [anon_sym_EQ] = ACTIONS(6791), + [anon_sym_register] = ACTIONS(6791), + [anon_sym_inline] = ACTIONS(6791), + [anon_sym___inline] = ACTIONS(6791), + [anon_sym___inline__] = ACTIONS(6791), + [anon_sym___forceinline] = ACTIONS(6791), + [anon_sym_thread_local] = ACTIONS(6791), + [anon_sym___thread] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_asm] = ACTIONS(6791), + [anon_sym___asm__] = ACTIONS(6791), + [anon_sym___asm] = ACTIONS(6791), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_operator] = ACTIONS(6791), + [anon_sym_try] = ACTIONS(6791), + [anon_sym_noexcept] = ACTIONS(6791), + [anon_sym_throw] = ACTIONS(6791), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), + }, + [STATE(2081)] = { + [sym_attribute_specifier] = STATE(2098), + [sym_attribute_declaration] = STATE(3515), + [sym_type_qualifier] = STATE(2188), + [sym_alignas_qualifier] = STATE(2254), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym_ref_qualifier] = STATE(2840), + [sym__function_attributes_start] = STATE(2779), + [sym__function_exception_specification] = STATE(3431), + [sym__function_attributes_end] = STATE(4619), + [sym__function_postfix] = STATE(3894), + [sym_trailing_return_type] = STATE(3437), + [sym_noexcept] = STATE(3431), + [sym_throw_specifier] = STATE(3431), + [sym_requires_clause] = STATE(3894), + [aux_sym_type_definition_repeat1] = STATE(2098), + [aux_sym__type_definition_type_repeat1] = STATE(2188), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6401), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6404), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym_SEMI] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(6962), + [anon_sym___attribute__] = ACTIONS(6964), + [anon_sym___attribute] = ACTIONS(6967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(6407), + [anon_sym_constexpr] = ACTIONS(6962), + [anon_sym_volatile] = ACTIONS(6962), + [anon_sym_restrict] = ACTIONS(6962), + [anon_sym___restrict__] = ACTIONS(6962), + [anon_sym__Atomic] = ACTIONS(6962), + [anon_sym__Noreturn] = ACTIONS(6962), + [anon_sym_noreturn] = ACTIONS(6962), + [anon_sym__Nonnull] = ACTIONS(6962), + [anon_sym_mutable] = ACTIONS(6962), + [anon_sym_constinit] = ACTIONS(6962), + [anon_sym_consteval] = ACTIONS(6962), + [anon_sym_alignas] = ACTIONS(6970), + [anon_sym__Alignas] = ACTIONS(6970), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6399), + [anon_sym_or_eq] = ACTIONS(6399), + [anon_sym_xor_eq] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(6972), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7037), + [anon_sym_override] = ACTIONS(7037), + [anon_sym_noexcept] = ACTIONS(6977), + [anon_sym_throw] = ACTIONS(6979), + [anon_sym_requires] = ACTIONS(7040), + }, + [STATE(2082)] = { + [sym__abstract_declarator] = STATE(4975), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2087), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2081), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9554), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2087), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6594), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [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(6604), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2083)] = { + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_RPAREN] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_TILDE] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6805), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6805), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6805), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6805), + [anon_sym_GT_GT] = ACTIONS(6805), + [anon_sym_SEMI] = ACTIONS(6805), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym_virtual] = ACTIONS(6803), + [anon_sym_extern] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6805), + [anon_sym___declspec] = ACTIONS(6803), + [anon_sym___based] = ACTIONS(6803), + [anon_sym___cdecl] = ACTIONS(6803), + [anon_sym___clrcall] = ACTIONS(6803), + [anon_sym___stdcall] = ACTIONS(6803), + [anon_sym___fastcall] = ACTIONS(6803), + [anon_sym___thiscall] = ACTIONS(6803), + [anon_sym___vectorcall] = ACTIONS(6803), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_RBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_static] = ACTIONS(6803), + [anon_sym_RBRACK] = ACTIONS(6805), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_register] = ACTIONS(6803), + [anon_sym_inline] = ACTIONS(6803), + [anon_sym___inline] = ACTIONS(6803), + [anon_sym___inline__] = ACTIONS(6803), + [anon_sym___forceinline] = ACTIONS(6803), + [anon_sym_thread_local] = ACTIONS(6803), + [anon_sym___thread] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_asm] = ACTIONS(6803), + [anon_sym___asm__] = ACTIONS(6803), + [anon_sym___asm] = ACTIONS(6803), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_operator] = ACTIONS(6803), + [anon_sym_try] = ACTIONS(6803), + [anon_sym_noexcept] = ACTIONS(6803), + [anon_sym_throw] = ACTIONS(6803), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), + }, + [STATE(2084)] = { + [sym__abstract_declarator] = STATE(5025), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2067), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2081), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9554), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2067), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6594), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [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(6608), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2085)] = { + [sym_attribute_specifier] = STATE(2376), + [sym_attribute_declaration] = STATE(5053), + [sym_type_qualifier] = STATE(2551), + [sym_alignas_qualifier] = STATE(2780), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym_ref_qualifier] = STATE(2894), + [sym__function_attributes_start] = STATE(2748), + [sym__function_exception_specification] = STATE(3391), + [sym__function_attributes_end] = STATE(4911), + [sym__function_postfix] = STATE(5713), + [sym_trailing_return_type] = STATE(5017), + [sym_noexcept] = STATE(3391), + [sym_throw_specifier] = STATE(3391), + [sym_requires_clause] = STATE(5713), + [aux_sym_type_definition_repeat1] = STATE(2376), + [aux_sym__type_definition_type_repeat1] = STATE(2551), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(6989), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(6992), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym___extension__] = ACTIONS(6995), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_RBRACK] = ACTIONS(6399), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(7003), + [anon_sym_constexpr] = ACTIONS(6995), + [anon_sym_volatile] = ACTIONS(6995), + [anon_sym_restrict] = ACTIONS(6995), + [anon_sym___restrict__] = ACTIONS(6995), + [anon_sym__Atomic] = ACTIONS(6995), + [anon_sym__Noreturn] = ACTIONS(6995), + [anon_sym_noreturn] = ACTIONS(6995), + [anon_sym__Nonnull] = ACTIONS(6995), + [anon_sym_mutable] = ACTIONS(6995), + [anon_sym_constinit] = ACTIONS(6995), + [anon_sym_consteval] = ACTIONS(6995), + [anon_sym_alignas] = ACTIONS(7005), + [anon_sym__Alignas] = ACTIONS(7005), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_and_eq] = ACTIONS(6399), + [anon_sym_or_eq] = ACTIONS(6399), + [anon_sym_xor_eq] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(7007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7043), + [anon_sym_override] = ACTIONS(7043), + [anon_sym_noexcept] = ACTIONS(7013), + [anon_sym_throw] = ACTIONS(7015), + [anon_sym_requires] = ACTIONS(7045), + }, + [STATE(2086)] = { + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_RPAREN] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_TILDE] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6831), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6831), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6831), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6831), + [anon_sym_GT_GT] = ACTIONS(6831), + [anon_sym_SEMI] = ACTIONS(6831), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym_virtual] = ACTIONS(6829), + [anon_sym_extern] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6831), + [anon_sym___declspec] = ACTIONS(6829), + [anon_sym___based] = ACTIONS(6829), + [anon_sym___cdecl] = ACTIONS(6829), + [anon_sym___clrcall] = ACTIONS(6829), + [anon_sym___stdcall] = ACTIONS(6829), + [anon_sym___fastcall] = ACTIONS(6829), + [anon_sym___thiscall] = ACTIONS(6829), + [anon_sym___vectorcall] = ACTIONS(6829), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_RBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_static] = ACTIONS(6829), + [anon_sym_RBRACK] = ACTIONS(6831), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_register] = ACTIONS(6829), + [anon_sym_inline] = ACTIONS(6829), + [anon_sym___inline] = ACTIONS(6829), + [anon_sym___inline__] = ACTIONS(6829), + [anon_sym___forceinline] = ACTIONS(6829), + [anon_sym_thread_local] = ACTIONS(6829), + [anon_sym___thread] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_asm] = ACTIONS(6829), + [anon_sym___asm__] = ACTIONS(6829), + [anon_sym___asm] = ACTIONS(6829), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_operator] = ACTIONS(6829), + [anon_sym_try] = ACTIONS(6829), + [anon_sym_noexcept] = ACTIONS(6829), + [anon_sym_throw] = ACTIONS(6829), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), + }, + [STATE(2087)] = { + [sym__abstract_declarator] = STATE(4976), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2081), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9554), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6594), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(6618), + [anon_sym___attribute] = ACTIONS(6618), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2088)] = { + [sym__abstract_declarator] = STATE(5062), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2100), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2063), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9538), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2100), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6624), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6626), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [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(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(6610), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [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(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_DASH_GT_STAR] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2089)] = { + [sym__abstract_declarator] = STATE(5099), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2681), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2063), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9538), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2681), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6624), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6626), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [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(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(6602), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_DASH_GT_STAR] = ACTIONS(6600), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2090)] = { + [sym__abstract_declarator] = STATE(5109), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2094), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2063), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9538), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2094), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6624), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6626), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [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(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(6606), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [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(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6606), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_DASH_GT_STAR] = ACTIONS(6604), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2091)] = { + [sym__abstract_declarator] = STATE(5094), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2681), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2063), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9538), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2681), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6624), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6626), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(5970), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5970), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_DASH_GT_STAR] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2092)] = { + [sym_identifier] = ACTIONS(3886), + [anon_sym_LPAREN2] = ACTIONS(3888), + [anon_sym_BANG] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3888), + [anon_sym_DASH] = ACTIONS(3886), + [anon_sym_PLUS] = ACTIONS(3886), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(3886), + [anon_sym_virtual] = ACTIONS(3886), + [anon_sym_extern] = ACTIONS(3886), + [anon_sym___attribute__] = ACTIONS(3886), + [anon_sym___attribute] = ACTIONS(3886), + [anon_sym_COLON_COLON] = ACTIONS(3888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3888), + [anon_sym___declspec] = ACTIONS(3886), + [anon_sym_signed] = ACTIONS(3886), + [anon_sym_unsigned] = ACTIONS(3886), + [anon_sym_long] = ACTIONS(3886), + [anon_sym_short] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_static] = ACTIONS(3886), + [anon_sym_register] = ACTIONS(3886), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym___inline] = ACTIONS(3886), + [anon_sym___inline__] = ACTIONS(3886), + [anon_sym___forceinline] = ACTIONS(3886), + [anon_sym_thread_local] = ACTIONS(3886), + [anon_sym___thread] = ACTIONS(3886), + [anon_sym_const] = ACTIONS(3886), + [anon_sym_constexpr] = ACTIONS(3886), + [anon_sym_volatile] = ACTIONS(3886), + [anon_sym_restrict] = ACTIONS(3886), + [anon_sym___restrict__] = ACTIONS(3886), + [anon_sym__Atomic] = ACTIONS(3886), + [anon_sym__Noreturn] = ACTIONS(3886), + [anon_sym_noreturn] = ACTIONS(3886), + [anon_sym__Nonnull] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3886), + [anon_sym_constinit] = ACTIONS(3886), + [anon_sym_consteval] = ACTIONS(3886), + [anon_sym_alignas] = ACTIONS(3886), + [anon_sym__Alignas] = ACTIONS(3886), + [sym_primitive_type] = ACTIONS(3886), + [anon_sym_enum] = ACTIONS(3886), + [anon_sym_class] = ACTIONS(3886), + [anon_sym_struct] = ACTIONS(3886), + [anon_sym_union] = ACTIONS(3886), + [anon_sym_not] = ACTIONS(3886), + [anon_sym_compl] = ACTIONS(3886), + [anon_sym_DASH_DASH] = ACTIONS(3888), + [anon_sym_PLUS_PLUS] = ACTIONS(3888), + [anon_sym_sizeof] = ACTIONS(3886), + [anon_sym___alignof__] = ACTIONS(3886), + [anon_sym___alignof] = ACTIONS(3886), + [anon_sym__alignof] = ACTIONS(3886), + [anon_sym_alignof] = ACTIONS(3886), + [anon_sym__Alignof] = ACTIONS(3886), + [anon_sym_offsetof] = ACTIONS(3886), + [anon_sym__Generic] = ACTIONS(3886), + [anon_sym_typename] = ACTIONS(3886), + [anon_sym_asm] = ACTIONS(3886), + [anon_sym___asm__] = ACTIONS(3886), + [anon_sym___asm] = ACTIONS(3886), + [sym_number_literal] = ACTIONS(3888), + [anon_sym_L_SQUOTE] = ACTIONS(3888), + [anon_sym_u_SQUOTE] = ACTIONS(3888), + [anon_sym_U_SQUOTE] = ACTIONS(3888), + [anon_sym_u8_SQUOTE] = ACTIONS(3888), + [anon_sym_SQUOTE] = ACTIONS(3888), + [anon_sym_L_DQUOTE] = ACTIONS(3888), + [anon_sym_u_DQUOTE] = ACTIONS(3888), + [anon_sym_U_DQUOTE] = ACTIONS(3888), + [anon_sym_u8_DQUOTE] = ACTIONS(3888), + [anon_sym_DQUOTE] = ACTIONS(3888), + [sym_true] = ACTIONS(3886), + [sym_false] = ACTIONS(3886), + [anon_sym_NULL] = ACTIONS(3886), + [anon_sym_nullptr] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3886), + [anon_sym_decltype] = ACTIONS(3886), + [anon_sym_template] = ACTIONS(3886), + [anon_sym_delete] = ACTIONS(3886), + [anon_sym_R_DQUOTE] = ACTIONS(3888), + [anon_sym_LR_DQUOTE] = ACTIONS(3888), + [anon_sym_uR_DQUOTE] = ACTIONS(3888), + [anon_sym_UR_DQUOTE] = ACTIONS(3888), + [anon_sym_u8R_DQUOTE] = ACTIONS(3888), + [anon_sym_co_await] = ACTIONS(3886), + [anon_sym_new] = ACTIONS(3886), + [anon_sym_requires] = ACTIONS(3886), + [anon_sym_CARET_CARET] = ACTIONS(3888), + [anon_sym_LBRACK_COLON] = ACTIONS(3888), + [sym_this] = ACTIONS(3886), + }, + [STATE(2093)] = { + [sym_identifier] = ACTIONS(4389), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_BANG] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4391), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_virtual] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym___attribute__] = ACTIONS(4389), + [anon_sym___attribute] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4391), + [anon_sym___declspec] = ACTIONS(4389), + [anon_sym_signed] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym___inline] = ACTIONS(4389), + [anon_sym___inline__] = ACTIONS(4389), + [anon_sym___forceinline] = ACTIONS(4389), + [anon_sym_thread_local] = ACTIONS(4389), + [anon_sym___thread] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_constinit] = ACTIONS(4389), + [anon_sym_consteval] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4389), + [anon_sym__Alignas] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_class] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_not] = ACTIONS(4389), + [anon_sym_compl] = ACTIONS(4389), + [anon_sym_DASH_DASH] = ACTIONS(4391), + [anon_sym_PLUS_PLUS] = ACTIONS(4391), + [anon_sym_sizeof] = ACTIONS(4389), + [anon_sym___alignof__] = ACTIONS(4389), + [anon_sym___alignof] = ACTIONS(4389), + [anon_sym__alignof] = ACTIONS(4389), + [anon_sym_alignof] = ACTIONS(4389), + [anon_sym__Alignof] = ACTIONS(4389), + [anon_sym_offsetof] = ACTIONS(4389), + [anon_sym__Generic] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [anon_sym_asm] = ACTIONS(4389), + [anon_sym___asm__] = ACTIONS(4389), + [anon_sym___asm] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4391), + [anon_sym_L_SQUOTE] = ACTIONS(4391), + [anon_sym_u_SQUOTE] = ACTIONS(4391), + [anon_sym_U_SQUOTE] = ACTIONS(4391), + [anon_sym_u8_SQUOTE] = ACTIONS(4391), + [anon_sym_SQUOTE] = ACTIONS(4391), + [anon_sym_L_DQUOTE] = ACTIONS(4391), + [anon_sym_u_DQUOTE] = ACTIONS(4391), + [anon_sym_U_DQUOTE] = ACTIONS(4391), + [anon_sym_u8_DQUOTE] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4391), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [anon_sym_NULL] = ACTIONS(4389), + [anon_sym_nullptr] = ACTIONS(4389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4389), + [anon_sym_decltype] = ACTIONS(4389), + [anon_sym_template] = ACTIONS(4389), + [anon_sym_delete] = ACTIONS(4389), + [anon_sym_R_DQUOTE] = ACTIONS(4391), + [anon_sym_LR_DQUOTE] = ACTIONS(4391), + [anon_sym_uR_DQUOTE] = ACTIONS(4391), + [anon_sym_UR_DQUOTE] = ACTIONS(4391), + [anon_sym_u8R_DQUOTE] = ACTIONS(4391), + [anon_sym_co_await] = ACTIONS(4389), + [anon_sym_new] = ACTIONS(4389), + [anon_sym_requires] = ACTIONS(4389), + [anon_sym_CARET_CARET] = ACTIONS(4391), + [anon_sym_LBRACK_COLON] = ACTIONS(4391), + [sym_this] = ACTIONS(4389), + }, + [STATE(2094)] = { + [sym__abstract_declarator] = STATE(5052), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2681), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2063), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9538), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2681), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6624), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6626), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(6618), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [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(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_DASH_GT_STAR] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2095)] = { + [sym_identifier] = ACTIONS(3342), + [anon_sym_LPAREN2] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3347), + [anon_sym_AMP] = ACTIONS(3347), + [anon_sym___extension__] = ACTIONS(3342), + [anon_sym_virtual] = ACTIONS(3342), + [anon_sym_extern] = ACTIONS(3342), + [anon_sym___attribute__] = ACTIONS(3342), + [anon_sym___attribute] = ACTIONS(3342), + [anon_sym_COLON_COLON] = ACTIONS(3347), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3347), + [anon_sym___declspec] = ACTIONS(3342), + [anon_sym_signed] = ACTIONS(3342), + [anon_sym_unsigned] = ACTIONS(3342), + [anon_sym_long] = ACTIONS(3342), + [anon_sym_short] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_register] = ACTIONS(3342), + [anon_sym_inline] = ACTIONS(3342), + [anon_sym___inline] = ACTIONS(3342), + [anon_sym___inline__] = ACTIONS(3342), + [anon_sym___forceinline] = ACTIONS(3342), + [anon_sym_thread_local] = ACTIONS(3342), + [anon_sym___thread] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_constexpr] = ACTIONS(3342), + [anon_sym_volatile] = ACTIONS(3342), + [anon_sym_restrict] = ACTIONS(3342), + [anon_sym___restrict__] = ACTIONS(3342), + [anon_sym__Atomic] = ACTIONS(3342), + [anon_sym__Noreturn] = ACTIONS(3342), + [anon_sym_noreturn] = ACTIONS(3342), + [anon_sym__Nonnull] = ACTIONS(3342), + [anon_sym_mutable] = ACTIONS(3342), + [anon_sym_constinit] = ACTIONS(3342), + [anon_sym_consteval] = ACTIONS(3342), + [anon_sym_alignas] = ACTIONS(3342), + [anon_sym__Alignas] = ACTIONS(3342), + [sym_primitive_type] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3342), + [anon_sym_union] = ACTIONS(3342), + [anon_sym_not] = ACTIONS(3342), + [anon_sym_compl] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_sizeof] = ACTIONS(3342), + [anon_sym___alignof__] = ACTIONS(3342), + [anon_sym___alignof] = ACTIONS(3342), + [anon_sym__alignof] = ACTIONS(3342), + [anon_sym_alignof] = ACTIONS(3342), + [anon_sym__Alignof] = ACTIONS(3342), + [anon_sym_offsetof] = ACTIONS(3342), + [anon_sym__Generic] = ACTIONS(3342), + [anon_sym_typename] = ACTIONS(3342), + [anon_sym_asm] = ACTIONS(3342), + [anon_sym___asm__] = ACTIONS(3342), + [anon_sym___asm] = ACTIONS(3342), + [sym_number_literal] = ACTIONS(3347), + [anon_sym_L_SQUOTE] = ACTIONS(3347), + [anon_sym_u_SQUOTE] = ACTIONS(3347), + [anon_sym_U_SQUOTE] = ACTIONS(3347), + [anon_sym_u8_SQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_L_DQUOTE] = ACTIONS(3347), + [anon_sym_u_DQUOTE] = ACTIONS(3347), + [anon_sym_U_DQUOTE] = ACTIONS(3347), + [anon_sym_u8_DQUOTE] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [anon_sym_NULL] = ACTIONS(3342), + [anon_sym_nullptr] = ACTIONS(3342), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3342), + [anon_sym_decltype] = ACTIONS(3342), + [anon_sym_template] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_R_DQUOTE] = ACTIONS(3347), + [anon_sym_LR_DQUOTE] = ACTIONS(3347), + [anon_sym_uR_DQUOTE] = ACTIONS(3347), + [anon_sym_UR_DQUOTE] = ACTIONS(3347), + [anon_sym_u8R_DQUOTE] = ACTIONS(3347), + [anon_sym_co_await] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_requires] = ACTIONS(3342), + [anon_sym_CARET_CARET] = ACTIONS(3347), + [anon_sym_LBRACK_COLON] = ACTIONS(3347), + [sym_this] = ACTIONS(3342), + }, + [STATE(2096)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8518), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10187), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8913), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(6837), [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___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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -327879,70 +328382,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(3536), [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), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(2097)] = { + [sym_type_qualifier] = STATE(2097), + [sym_alignas_qualifier] = STATE(2153), + [aux_sym__type_definition_type_repeat1] = STATE(2097), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [aux_sym_preproc_if_token2] = ACTIONS(7049), + [aux_sym_preproc_else_token1] = ACTIONS(7049), + [aux_sym_preproc_elif_token1] = ACTIONS(7047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7049), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym_SEMI] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(7051), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7049), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_RBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(7051), + [anon_sym_constexpr] = ACTIONS(7051), + [anon_sym_volatile] = ACTIONS(7051), + [anon_sym_restrict] = ACTIONS(7051), + [anon_sym___restrict__] = ACTIONS(7051), + [anon_sym__Atomic] = ACTIONS(7051), + [anon_sym__Noreturn] = ACTIONS(7051), + [anon_sym_noreturn] = ACTIONS(7051), + [anon_sym__Nonnull] = ACTIONS(7051), + [anon_sym_mutable] = ACTIONS(7051), + [anon_sym_constinit] = ACTIONS(7051), + [anon_sym_consteval] = ACTIONS(7051), + [anon_sym_alignas] = ACTIONS(7054), + [anon_sym__Alignas] = ACTIONS(7054), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), + [anon_sym_COLON_RBRACK] = ACTIONS(7049), + }, + [STATE(2098)] = { + [sym_attribute_specifier] = STATE(2209), + [sym_attribute_declaration] = STATE(3497), + [sym_type_qualifier] = STATE(2175), + [sym_alignas_qualifier] = STATE(2254), + [aux_sym_type_definition_repeat1] = STATE(2209), + [aux_sym__type_definition_type_repeat1] = STATE(2175), + [aux_sym_attributed_declarator_repeat1] = STATE(3497), + [sym_identifier] = ACTIONS(7057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [aux_sym_preproc_if_token2] = ACTIONS(7059), + [aux_sym_preproc_else_token1] = ACTIONS(7059), + [aux_sym_preproc_elif_token1] = ACTIONS(7057), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym_SEMI] = ACTIONS(7059), + [anon_sym___extension__] = ACTIONS(6407), + [anon_sym___attribute__] = ACTIONS(7057), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_COLON] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7059), + [anon_sym_RBRACE] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(6407), + [anon_sym_constexpr] = ACTIONS(6407), + [anon_sym_volatile] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6407), + [anon_sym___restrict__] = ACTIONS(6407), + [anon_sym__Atomic] = ACTIONS(6407), + [anon_sym__Noreturn] = ACTIONS(6407), + [anon_sym_noreturn] = ACTIONS(6407), + [anon_sym__Nonnull] = ACTIONS(6407), + [anon_sym_mutable] = ACTIONS(6407), + [anon_sym_constinit] = ACTIONS(6407), + [anon_sym_consteval] = ACTIONS(6407), + [anon_sym_alignas] = ACTIONS(6413), + [anon_sym__Alignas] = ACTIONS(6413), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7057), + [anon_sym_or_eq] = ACTIONS(7057), + [anon_sym_xor_eq] = ACTIONS(7057), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7057), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7057), + [anon_sym_not_eq] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7057), + [anon_sym___asm__] = ACTIONS(7057), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7057), + [anon_sym_override] = ACTIONS(7057), + [anon_sym_noexcept] = ACTIONS(7057), + [anon_sym_throw] = ACTIONS(7057), + [anon_sym_requires] = ACTIONS(7057), + [anon_sym_COLON_RBRACK] = ACTIONS(7059), + }, + [STATE(2099)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8473), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10174), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8913), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(6837), [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___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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -327965,500 +328673,178 @@ 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(3536), [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), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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(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_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7521), - [anon_sym_override] = ACTIONS(7521), - [anon_sym_requires] = ACTIONS(7521), - [anon_sym_COLON_RBRACK] = ACTIONS(7523), - }, - [STATE(2162)] = { - [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(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(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), - [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), - }, - [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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [STATE(2165)] = { - [sym_attribute_specifier] = STATE(2236), - [sym_identifier] = ACTIONS(7531), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), - [anon_sym_COMMA] = ACTIONS(7533), - [anon_sym_RPAREN] = ACTIONS(7533), - [aux_sym_preproc_if_token2] = ACTIONS(7533), - [aux_sym_preproc_else_token1] = ACTIONS(7533), - [aux_sym_preproc_elif_token1] = ACTIONS(7531), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7533), - [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(7533), - [anon_sym___extension__] = ACTIONS(7531), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7531), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7533), - [anon_sym_LBRACE] = ACTIONS(7533), - [anon_sym_RBRACE] = ACTIONS(7533), - [anon_sym_LBRACK] = ACTIONS(7533), - [anon_sym_EQ] = ACTIONS(7531), - [anon_sym_const] = ACTIONS(7531), - [anon_sym_constexpr] = ACTIONS(7531), - [anon_sym_volatile] = ACTIONS(7531), - [anon_sym_restrict] = ACTIONS(7531), - [anon_sym___restrict__] = ACTIONS(7531), - [anon_sym__Atomic] = ACTIONS(7531), - [anon_sym__Noreturn] = ACTIONS(7531), - [anon_sym_noreturn] = ACTIONS(7531), - [anon_sym__Nonnull] = ACTIONS(7531), - [anon_sym_mutable] = ACTIONS(7531), - [anon_sym_constinit] = ACTIONS(7531), - [anon_sym_consteval] = ACTIONS(7531), - [anon_sym_alignas] = ACTIONS(7531), - [anon_sym__Alignas] = ACTIONS(7531), - [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(7531), - [anon_sym_or_eq] = ACTIONS(7531), - [anon_sym_xor_eq] = ACTIONS(7531), - [anon_sym_LT_EQ_GT] = ACTIONS(7533), - [anon_sym_or] = ACTIONS(7531), - [anon_sym_and] = ACTIONS(7531), - [anon_sym_bitor] = ACTIONS(7531), - [anon_sym_xor] = ACTIONS(7531), - [anon_sym_bitand] = ACTIONS(7531), - [anon_sym_not_eq] = ACTIONS(7531), - [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(7531), - [anon_sym_override] = ACTIONS(7531), - [anon_sym_requires] = ACTIONS(7531), - [anon_sym_COLON_RBRACK] = ACTIONS(7533), + [STATE(2100)] = { + [sym__abstract_declarator] = STATE(5071), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2681), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2063), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9538), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2681), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6624), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6626), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [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(6628), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(6614), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [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(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_DASH_GT_STAR] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2101)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8512), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10147), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8913), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(6837), [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___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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -328481,156 +328867,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(3536), [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), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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(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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(2102)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8504), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10155), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9532), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(4033), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8913), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6833), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), + [anon_sym_COLON_COLON] = ACTIONS(6837), [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___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(3530), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -328653,5047 +328964,18087 @@ 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(3536), [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(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(2103)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(3255), + [sym_template_argument_list] = STATE(4016), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_RPAREN] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5676), + [anon_sym_signed] = ACTIONS(6952), + [anon_sym_unsigned] = ACTIONS(6952), + [anon_sym_long] = ACTIONS(6952), + [anon_sym_short] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6958), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + [anon_sym_COLON_RBRACK] = ACTIONS(5676), }, - [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), + [STATE(2104)] = { + [sym_string_literal] = STATE(5659), + [sym_decltype_auto] = STATE(3255), + [sym_template_argument_list] = STATE(4016), + [sym_raw_string_literal] = STATE(5659), + [aux_sym_sized_type_specifier_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5673), + [anon_sym___attribute] = ACTIONS(5673), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(6952), + [anon_sym_unsigned] = ACTIONS(6952), + [anon_sym_long] = ACTIONS(6952), + [anon_sym_short] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(7061), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(7063), + [anon_sym_SLASH_EQ] = ACTIONS(7063), + [anon_sym_PERCENT_EQ] = ACTIONS(7063), + [anon_sym_PLUS_EQ] = ACTIONS(7063), + [anon_sym_DASH_EQ] = ACTIONS(7063), + [anon_sym_LT_LT_EQ] = ACTIONS(7063), + [anon_sym_GT_GT_EQ] = ACTIONS(7063), + [anon_sym_AMP_EQ] = ACTIONS(7063), + [anon_sym_CARET_EQ] = ACTIONS(7063), + [anon_sym_PIPE_EQ] = ACTIONS(7063), + [anon_sym_and_eq] = ACTIONS(7061), + [anon_sym_or_eq] = ACTIONS(7061), + [anon_sym_xor_eq] = ACTIONS(7061), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [anon_sym_L_DQUOTE] = ACTIONS(7065), + [anon_sym_u_DQUOTE] = ACTIONS(7065), + [anon_sym_U_DQUOTE] = ACTIONS(7065), + [anon_sym_u8_DQUOTE] = ACTIONS(7065), + [anon_sym_DQUOTE] = ACTIONS(7065), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6958), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(7067), + [anon_sym_LR_DQUOTE] = ACTIONS(7067), + [anon_sym_uR_DQUOTE] = ACTIONS(7067), + [anon_sym_UR_DQUOTE] = ACTIONS(7067), + [anon_sym_u8R_DQUOTE] = ACTIONS(7067), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, - [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), + [STATE(2105)] = { + [sym__abstract_declarator] = STATE(5209), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2774), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2076), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9623), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2774), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6662), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6664), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [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(6666), + [anon_sym_COLON_COLON] = ACTIONS(6668), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [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(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2106)] = { + [sym__abstract_declarator] = STATE(5222), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2760), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2075), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9569), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2760), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6700), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6702), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6704), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6706), + [anon_sym_COLON_COLON] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [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(6618), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_and_eq] = ACTIONS(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6616), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2107)] = { + [sym_attribute_specifier] = STATE(2470), + [sym_attribute_declaration] = STATE(5272), + [sym_type_qualifier] = STATE(2684), + [sym_alignas_qualifier] = STATE(2902), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym_ref_qualifier] = STATE(3085), + [sym__function_attributes_start] = STATE(2921), + [sym__function_exception_specification] = STATE(3657), + [sym__function_attributes_end] = STATE(5050), + [sym__function_postfix] = STATE(6225), + [sym_trailing_return_type] = STATE(5248), + [sym_noexcept] = STATE(3657), + [sym_throw_specifier] = STATE(3657), + [sym_requires_clause] = STATE(6225), + [aux_sym_type_definition_repeat1] = STATE(2470), + [aux_sym__type_definition_type_repeat1] = STATE(2684), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_RPAREN] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(7072), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym___extension__] = ACTIONS(7075), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(7083), + [anon_sym_constexpr] = ACTIONS(7075), + [anon_sym_volatile] = ACTIONS(7075), + [anon_sym_restrict] = ACTIONS(7075), + [anon_sym___restrict__] = ACTIONS(7075), + [anon_sym__Atomic] = ACTIONS(7075), + [anon_sym__Noreturn] = ACTIONS(7075), + [anon_sym_noreturn] = ACTIONS(7075), + [anon_sym__Nonnull] = ACTIONS(7075), + [anon_sym_mutable] = ACTIONS(7075), + [anon_sym_constinit] = ACTIONS(7075), + [anon_sym_consteval] = ACTIONS(7075), [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_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7090), + [anon_sym_override] = ACTIONS(7090), + [anon_sym_noexcept] = ACTIONS(7093), + [anon_sym_throw] = ACTIONS(7095), + [anon_sym_requires] = ACTIONS(7097), + [anon_sym_DASH_GT_STAR] = ACTIONS(6399), }, - [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), + [STATE(2108)] = { + [sym_decltype_auto] = STATE(2319), + [sym_template_argument_list] = STATE(2253), + [aux_sym_sized_type_specifier_repeat1] = STATE(2170), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_RPAREN] = ACTIONS(5669), + [aux_sym_preproc_if_token2] = ACTIONS(5669), + [aux_sym_preproc_else_token1] = ACTIONS(5669), + [aux_sym_preproc_elif_token1] = ACTIONS(5661), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5669), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5661), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_PIPE_PIPE] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5661), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5669), + [anon_sym_BANG_EQ] = ACTIONS(5669), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5669), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(7100), + [anon_sym_LT_LT] = ACTIONS(5661), + [anon_sym_GT_GT] = ACTIONS(5661), + [anon_sym_SEMI] = ACTIONS(5669), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5669), + [anon_sym_RBRACE] = ACTIONS(5669), + [anon_sym_signed] = ACTIONS(6896), + [anon_sym_unsigned] = ACTIONS(6896), + [anon_sym_long] = ACTIONS(6896), + [anon_sym_short] = ACTIONS(6896), + [anon_sym_LBRACK] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5669), + [anon_sym_STAR_EQ] = ACTIONS(5669), + [anon_sym_SLASH_EQ] = ACTIONS(5669), + [anon_sym_PERCENT_EQ] = ACTIONS(5669), + [anon_sym_PLUS_EQ] = ACTIONS(5669), + [anon_sym_DASH_EQ] = ACTIONS(5669), + [anon_sym_LT_LT_EQ] = ACTIONS(5669), + [anon_sym_GT_GT_EQ] = ACTIONS(5669), + [anon_sym_AMP_EQ] = ACTIONS(5669), + [anon_sym_CARET_EQ] = ACTIONS(5669), + [anon_sym_PIPE_EQ] = ACTIONS(5669), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5669), + [anon_sym_or] = ACTIONS(5661), + [anon_sym_and] = ACTIONS(5661), + [anon_sym_bitor] = ACTIONS(5661), + [anon_sym_xor] = ACTIONS(5661), + [anon_sym_bitand] = ACTIONS(5661), + [anon_sym_not_eq] = ACTIONS(5661), + [anon_sym_DASH_DASH] = ACTIONS(5669), + [anon_sym_PLUS_PLUS] = ACTIONS(5669), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5669), + [anon_sym_DASH_GT] = ACTIONS(5669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6898), + [anon_sym_decltype] = ACTIONS(6900), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_requires] = ACTIONS(5661), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + [anon_sym_COLON_RBRACK] = ACTIONS(5669), }, - [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), + [STATE(2109)] = { + [sym__abstract_declarator] = STATE(5244), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2774), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2076), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9623), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2774), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6662), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6664), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [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(6666), + [anon_sym_COLON_COLON] = ACTIONS(6668), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(6600), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2110)] = { + [sym_string_literal] = STATE(3792), + [sym_decltype_auto] = STATE(2319), + [sym_template_argument_list] = STATE(2537), + [sym_raw_string_literal] = STATE(3792), + [aux_sym_sized_type_specifier_repeat1] = STATE(2170), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(6892), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5673), + [anon_sym___attribute] = ACTIONS(5673), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(6896), + [anon_sym_unsigned] = ACTIONS(6896), + [anon_sym_long] = ACTIONS(6896), + [anon_sym_short] = ACTIONS(6896), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(5673), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(5676), + [anon_sym_SLASH_EQ] = ACTIONS(5676), + [anon_sym_PERCENT_EQ] = ACTIONS(5676), + [anon_sym_PLUS_EQ] = ACTIONS(5676), + [anon_sym_DASH_EQ] = ACTIONS(5676), + [anon_sym_LT_LT_EQ] = ACTIONS(5676), + [anon_sym_GT_GT_EQ] = ACTIONS(5676), + [anon_sym_AMP_EQ] = ACTIONS(5676), + [anon_sym_CARET_EQ] = ACTIONS(5676), + [anon_sym_PIPE_EQ] = ACTIONS(5676), + [anon_sym_and_eq] = ACTIONS(5673), + [anon_sym_or_eq] = ACTIONS(5673), + [anon_sym_xor_eq] = ACTIONS(5673), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [anon_sym_L_DQUOTE] = ACTIONS(7102), + [anon_sym_u_DQUOTE] = ACTIONS(7102), + [anon_sym_U_DQUOTE] = ACTIONS(7102), + [anon_sym_u8_DQUOTE] = ACTIONS(7102), + [anon_sym_DQUOTE] = ACTIONS(7102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6898), + [anon_sym_decltype] = ACTIONS(6900), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(7104), + [anon_sym_LR_DQUOTE] = ACTIONS(7104), + [anon_sym_uR_DQUOTE] = ACTIONS(7104), + [anon_sym_UR_DQUOTE] = ACTIONS(7104), + [anon_sym_u8R_DQUOTE] = ACTIONS(7104), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, - [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), + [STATE(2111)] = { + [sym__abstract_declarator] = STATE(5201), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2774), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2076), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9623), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2774), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6662), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6664), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6666), + [anon_sym_COLON_COLON] = ACTIONS(6668), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [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(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2112)] = { + [sym__abstract_declarator] = STATE(5203), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2105), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2076), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9623), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2105), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6662), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6664), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [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(6666), + [anon_sym_COLON_COLON] = ACTIONS(6668), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [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(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2113)] = { + [sym_string_literal] = STATE(3950), + [sym_decltype_auto] = STATE(3255), + [sym_template_argument_list] = STATE(2865), + [sym_raw_string_literal] = STATE(3950), + [aux_sym_sized_type_specifier_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5665), + [anon_sym_LPAREN2] = ACTIONS(5665), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(7106), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7109), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(6952), + [anon_sym_unsigned] = ACTIONS(6952), + [anon_sym_long] = ACTIONS(6952), + [anon_sym_short] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(5693), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5671), + [anon_sym_or_eq] = ACTIONS(5671), + [anon_sym_xor_eq] = ACTIONS(5671), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5671), + [anon_sym_L_DQUOTE] = ACTIONS(7111), + [anon_sym_u_DQUOTE] = ACTIONS(7111), + [anon_sym_U_DQUOTE] = ACTIONS(7111), + [anon_sym_u8_DQUOTE] = ACTIONS(7111), + [anon_sym_DQUOTE] = ACTIONS(7111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6958), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(7113), + [anon_sym_LR_DQUOTE] = ACTIONS(7113), + [anon_sym_uR_DQUOTE] = ACTIONS(7113), + [anon_sym_UR_DQUOTE] = ACTIONS(7113), + [anon_sym_u8R_DQUOTE] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(5663), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2114)] = { + [sym__abstract_declarator] = STATE(5216), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2106), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2075), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9569), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2106), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6700), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6702), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6704), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [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(6706), + [anon_sym_COLON_COLON] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [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(6606), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_and_eq] = ACTIONS(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6604), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2115)] = { + [sym__abstract_declarator] = STATE(5229), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2121), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2075), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9569), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2121), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6700), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6702), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6704), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [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(6706), + [anon_sym_COLON_COLON] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [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(6610), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_and_eq] = ACTIONS(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6608), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2116)] = { + [sym_attribute_specifier] = STATE(2470), + [sym_attribute_declaration] = STATE(5272), + [sym_type_qualifier] = STATE(2684), + [sym_alignas_qualifier] = STATE(2902), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym_ref_qualifier] = STATE(3020), + [sym__function_attributes_start] = STATE(2944), + [sym__function_exception_specification] = STATE(3709), + [sym__function_attributes_end] = STATE(5089), + [sym__function_postfix] = STATE(6225), + [sym_trailing_return_type] = STATE(5218), + [sym_noexcept] = STATE(3709), + [sym_throw_specifier] = STATE(3709), + [sym_requires_clause] = STATE(6225), + [aux_sym_type_definition_repeat1] = STATE(2470), + [aux_sym__type_definition_type_repeat1] = STATE(2684), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_RPAREN] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6397), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6397), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(7069), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6397), + [anon_sym_AMP] = ACTIONS(7072), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6397), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym___extension__] = ACTIONS(7075), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(7083), + [anon_sym_constexpr] = ACTIONS(7075), + [anon_sym_volatile] = ACTIONS(7075), + [anon_sym_restrict] = ACTIONS(7075), + [anon_sym___restrict__] = ACTIONS(7075), + [anon_sym__Atomic] = ACTIONS(7075), + [anon_sym__Noreturn] = ACTIONS(7075), + [anon_sym_noreturn] = ACTIONS(7075), + [anon_sym__Nonnull] = ACTIONS(7075), + [anon_sym_mutable] = ACTIONS(7075), + [anon_sym_constinit] = ACTIONS(7075), + [anon_sym_consteval] = ACTIONS(7075), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_STAR_EQ] = ACTIONS(6399), + [anon_sym_SLASH_EQ] = ACTIONS(6399), + [anon_sym_PERCENT_EQ] = ACTIONS(6399), + [anon_sym_PLUS_EQ] = ACTIONS(6399), + [anon_sym_DASH_EQ] = ACTIONS(6399), + [anon_sym_LT_LT_EQ] = ACTIONS(6399), + [anon_sym_GT_GT_EQ] = ACTIONS(6399), + [anon_sym_AMP_EQ] = ACTIONS(6399), + [anon_sym_CARET_EQ] = ACTIONS(6399), + [anon_sym_PIPE_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(7087), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_noexcept] = ACTIONS(7093), + [anon_sym_throw] = ACTIONS(7095), + [anon_sym_requires] = ACTIONS(7117), + [anon_sym_DASH_GT_STAR] = ACTIONS(6399), }, - [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), + [STATE(2117)] = { + [sym__abstract_declarator] = STATE(5194), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2111), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2076), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9623), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2111), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6662), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6664), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [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(6666), + [anon_sym_COLON_COLON] = ACTIONS(6668), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(6604), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [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(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2118)] = { + [sym__abstract_declarator] = STATE(5205), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2760), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2075), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9569), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2760), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6700), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6702), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6704), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6706), + [anon_sym_COLON_COLON] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5970), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2119)] = { + [sym__abstract_declarator] = STATE(5214), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2760), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2075), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9569), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2760), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6700), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6702), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6704), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [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(6706), + [anon_sym_COLON_COLON] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6602), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6600), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2120)] = { + [sym__abstract_declarator] = STATE(5242), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2774), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2076), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9623), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2774), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6662), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6664), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6666), + [anon_sym_COLON_COLON] = ACTIONS(6668), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(5968), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2121)] = { + [sym__abstract_declarator] = STATE(5238), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2760), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2075), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9569), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2760), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6700), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6702), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6704), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [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(6706), + [anon_sym_COLON_COLON] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [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(6614), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_and_eq] = ACTIONS(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6612), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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(2122)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2194), + [sym_ms_pointer_modifier] = STATE(2122), + [aux_sym_pointer_declarator_repeat1] = STATE(2122), + [sym_identifier] = ACTIONS(7119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7121), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_RPAREN] = ACTIONS(7121), + [aux_sym_preproc_if_token2] = ACTIONS(7121), + [aux_sym_preproc_else_token1] = ACTIONS(7121), + [aux_sym_preproc_elif_token1] = ACTIONS(7119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7121), + [anon_sym_LPAREN2] = ACTIONS(7121), + [anon_sym_DASH] = ACTIONS(7119), + [anon_sym_PLUS] = ACTIONS(7119), + [anon_sym_STAR] = ACTIONS(7119), + [anon_sym_SLASH] = ACTIONS(7119), + [anon_sym_PERCENT] = ACTIONS(7119), + [anon_sym_PIPE_PIPE] = ACTIONS(7121), + [anon_sym_AMP_AMP] = ACTIONS(7121), + [anon_sym_PIPE] = ACTIONS(7119), + [anon_sym_CARET] = ACTIONS(7119), + [anon_sym_AMP] = ACTIONS(7119), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_GT] = ACTIONS(7119), + [anon_sym_GT_EQ] = ACTIONS(7121), + [anon_sym_LT_EQ] = ACTIONS(7119), + [anon_sym_LT] = ACTIONS(7119), + [anon_sym_LT_LT] = ACTIONS(7119), + [anon_sym_GT_GT] = ACTIONS(7119), + [anon_sym_SEMI] = ACTIONS(7121), + [anon_sym___extension__] = ACTIONS(7119), + [anon_sym___attribute__] = ACTIONS(7119), + [anon_sym___attribute] = ACTIONS(7119), + [anon_sym_COLON] = ACTIONS(7119), + [anon_sym_COLON_COLON] = ACTIONS(7121), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7121), + [sym_ms_restrict_modifier] = ACTIONS(7123), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7123), + [sym_ms_signed_ptr_modifier] = ACTIONS(7123), + [anon_sym__unaligned] = ACTIONS(7126), + [anon_sym___unaligned] = ACTIONS(7126), + [anon_sym_RBRACE] = ACTIONS(7121), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_EQ] = ACTIONS(7119), + [anon_sym_const] = ACTIONS(7119), + [anon_sym_constexpr] = ACTIONS(7119), + [anon_sym_volatile] = ACTIONS(7119), + [anon_sym_restrict] = ACTIONS(7119), + [anon_sym___restrict__] = ACTIONS(7119), + [anon_sym__Atomic] = ACTIONS(7119), + [anon_sym__Noreturn] = ACTIONS(7119), + [anon_sym_noreturn] = ACTIONS(7119), + [anon_sym__Nonnull] = ACTIONS(7119), + [anon_sym_mutable] = ACTIONS(7119), + [anon_sym_constinit] = ACTIONS(7119), + [anon_sym_consteval] = ACTIONS(7119), + [anon_sym_alignas] = ACTIONS(7119), + [anon_sym__Alignas] = ACTIONS(7119), + [anon_sym_QMARK] = ACTIONS(7121), + [anon_sym_STAR_EQ] = ACTIONS(7121), + [anon_sym_SLASH_EQ] = ACTIONS(7121), + [anon_sym_PERCENT_EQ] = ACTIONS(7121), + [anon_sym_PLUS_EQ] = ACTIONS(7121), + [anon_sym_DASH_EQ] = ACTIONS(7121), + [anon_sym_LT_LT_EQ] = ACTIONS(7121), + [anon_sym_GT_GT_EQ] = ACTIONS(7121), + [anon_sym_AMP_EQ] = ACTIONS(7121), + [anon_sym_CARET_EQ] = ACTIONS(7121), + [anon_sym_PIPE_EQ] = ACTIONS(7121), + [anon_sym_and_eq] = ACTIONS(7119), + [anon_sym_or_eq] = ACTIONS(7119), + [anon_sym_xor_eq] = ACTIONS(7119), + [anon_sym_LT_EQ_GT] = ACTIONS(7121), + [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(7121), + [anon_sym_PLUS_PLUS] = ACTIONS(7121), + [anon_sym_DOT] = ACTIONS(7119), + [anon_sym_DOT_STAR] = ACTIONS(7121), + [anon_sym_DASH_GT] = ACTIONS(7121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7119), + [anon_sym_final] = ACTIONS(7119), + [anon_sym_override] = ACTIONS(7119), + [anon_sym_template] = ACTIONS(7119), + [anon_sym_requires] = ACTIONS(7119), + [anon_sym_LBRACK_COLON] = ACTIONS(7121), + [anon_sym_COLON_RBRACK] = ACTIONS(7121), }, - [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), - [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), + [STATE(2123)] = { + [sym_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(2170), + [sym_identifier] = ACTIONS(7129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [anon_sym_RPAREN] = ACTIONS(7131), + [aux_sym_preproc_if_token2] = ACTIONS(7131), + [aux_sym_preproc_else_token1] = ACTIONS(7131), + [aux_sym_preproc_elif_token1] = ACTIONS(7129), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7129), + [anon_sym_SLASH] = ACTIONS(7129), + [anon_sym_PERCENT] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7129), + [anon_sym_CARET] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_EQ_EQ] = ACTIONS(7131), + [anon_sym_BANG_EQ] = ACTIONS(7131), + [anon_sym_GT] = ACTIONS(7129), + [anon_sym_GT_EQ] = ACTIONS(7131), + [anon_sym_LT_EQ] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(7129), + [anon_sym_LT_LT] = ACTIONS(7129), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym_SEMI] = ACTIONS(7131), + [anon_sym___extension__] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7129), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7131), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_RBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(6896), + [anon_sym_unsigned] = ACTIONS(6896), + [anon_sym_long] = ACTIONS(6896), + [anon_sym_short] = ACTIONS(6896), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_EQ] = ACTIONS(7129), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_restrict] = ACTIONS(7129), + [anon_sym___restrict__] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [anon_sym__Noreturn] = ACTIONS(7129), + [anon_sym_noreturn] = ACTIONS(7129), + [anon_sym__Nonnull] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [anon_sym_constinit] = ACTIONS(7129), + [anon_sym_consteval] = ACTIONS(7129), + [anon_sym_alignas] = ACTIONS(7129), + [anon_sym__Alignas] = ACTIONS(7129), + [anon_sym_QMARK] = ACTIONS(7131), + [anon_sym_STAR_EQ] = ACTIONS(7131), + [anon_sym_SLASH_EQ] = ACTIONS(7131), + [anon_sym_PERCENT_EQ] = ACTIONS(7131), + [anon_sym_PLUS_EQ] = ACTIONS(7131), + [anon_sym_DASH_EQ] = ACTIONS(7131), + [anon_sym_LT_LT_EQ] = ACTIONS(7131), + [anon_sym_GT_GT_EQ] = ACTIONS(7131), + [anon_sym_AMP_EQ] = ACTIONS(7131), + [anon_sym_CARET_EQ] = ACTIONS(7131), + [anon_sym_PIPE_EQ] = ACTIONS(7131), + [anon_sym_and_eq] = ACTIONS(7129), + [anon_sym_or_eq] = ACTIONS(7129), + [anon_sym_xor_eq] = ACTIONS(7129), + [anon_sym_LT_EQ_GT] = ACTIONS(7131), + [anon_sym_or] = ACTIONS(7129), + [anon_sym_and] = ACTIONS(7129), + [anon_sym_bitor] = ACTIONS(7129), + [anon_sym_xor] = ACTIONS(7129), + [anon_sym_bitand] = ACTIONS(7129), + [anon_sym_not_eq] = ACTIONS(7129), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DOT] = ACTIONS(7129), + [anon_sym_DOT_STAR] = ACTIONS(7131), + [anon_sym_DASH_GT] = ACTIONS(7131), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7129), + [anon_sym_final] = ACTIONS(7129), + [anon_sym_override] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_requires] = ACTIONS(7129), + [anon_sym_LBRACK_COLON] = ACTIONS(7131), + [anon_sym_COLON_RBRACK] = ACTIONS(7131), }, - [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), + [STATE(2124)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2558), + [sym__abstract_declarator] = STATE(6870), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2354), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2289), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9544), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2354), + [aux_sym_pointer_declarator_repeat1] = STATE(2558), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7137), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7139), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(7141), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5968), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5968), }, - [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), + [STATE(2125)] = { + [sym_identifier] = ACTIONS(7149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7151), + [anon_sym_COMMA] = ACTIONS(7151), + [anon_sym_RPAREN] = ACTIONS(7151), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_TILDE] = ACTIONS(7151), + [anon_sym_DASH] = ACTIONS(7149), + [anon_sym_PLUS] = ACTIONS(7149), + [anon_sym_STAR] = ACTIONS(7151), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_PIPE_PIPE] = ACTIONS(7151), + [anon_sym_AMP_AMP] = ACTIONS(7151), + [anon_sym_PIPE] = ACTIONS(7149), + [anon_sym_CARET] = ACTIONS(7151), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym_EQ_EQ] = ACTIONS(7151), + [anon_sym_BANG_EQ] = ACTIONS(7151), + [anon_sym_GT] = ACTIONS(7149), + [anon_sym_GT_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7149), + [anon_sym_LT] = ACTIONS(7149), + [anon_sym_LT_LT] = ACTIONS(7151), + [anon_sym_GT_GT] = ACTIONS(7151), + [anon_sym_SEMI] = ACTIONS(7151), + [anon_sym___extension__] = ACTIONS(7149), + [anon_sym_virtual] = ACTIONS(7149), + [anon_sym_extern] = ACTIONS(7149), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_COLON] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7151), + [anon_sym___declspec] = ACTIONS(7149), + [anon_sym___based] = ACTIONS(7149), + [anon_sym___cdecl] = ACTIONS(7149), + [anon_sym___clrcall] = ACTIONS(7149), + [anon_sym___stdcall] = ACTIONS(7149), + [anon_sym___fastcall] = ACTIONS(7149), + [anon_sym___thiscall] = ACTIONS(7149), + [anon_sym___vectorcall] = ACTIONS(7149), + [anon_sym_LBRACE] = ACTIONS(7151), + [anon_sym_RBRACE] = ACTIONS(7151), + [anon_sym_LBRACK] = ACTIONS(7149), + [anon_sym_static] = ACTIONS(7149), + [anon_sym_register] = ACTIONS(7149), + [anon_sym_inline] = ACTIONS(7149), + [anon_sym___inline] = ACTIONS(7149), + [anon_sym___inline__] = ACTIONS(7149), + [anon_sym___forceinline] = ACTIONS(7149), + [anon_sym_thread_local] = ACTIONS(7149), + [anon_sym___thread] = ACTIONS(7149), + [anon_sym_const] = ACTIONS(7149), + [anon_sym_constexpr] = ACTIONS(7149), + [anon_sym_volatile] = ACTIONS(7149), + [anon_sym_restrict] = ACTIONS(7149), + [anon_sym___restrict__] = ACTIONS(7149), + [anon_sym__Atomic] = ACTIONS(7149), + [anon_sym__Noreturn] = ACTIONS(7149), + [anon_sym_noreturn] = ACTIONS(7149), + [anon_sym__Nonnull] = ACTIONS(7149), + [anon_sym_mutable] = ACTIONS(7149), + [anon_sym_constinit] = ACTIONS(7149), + [anon_sym_consteval] = ACTIONS(7149), + [anon_sym_alignas] = ACTIONS(7149), + [anon_sym__Alignas] = ACTIONS(7149), + [anon_sym_QMARK] = ACTIONS(7151), + [anon_sym_LT_EQ_GT] = ACTIONS(7151), + [anon_sym_or] = ACTIONS(7149), + [anon_sym_and] = ACTIONS(7149), + [anon_sym_bitor] = ACTIONS(7149), + [anon_sym_xor] = ACTIONS(7149), + [anon_sym_bitand] = ACTIONS(7149), + [anon_sym_not_eq] = ACTIONS(7149), + [anon_sym_DASH_DASH] = ACTIONS(7151), + [anon_sym_PLUS_PLUS] = ACTIONS(7151), + [anon_sym_asm] = ACTIONS(7149), + [anon_sym___asm__] = ACTIONS(7149), + [anon_sym___asm] = ACTIONS(7149), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_DOT_STAR] = ACTIONS(7151), + [anon_sym_DASH_GT] = ACTIONS(7151), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7149), + [anon_sym_final] = ACTIONS(7149), + [anon_sym_override] = ACTIONS(7149), + [anon_sym_template] = ACTIONS(7149), + [anon_sym_operator] = ACTIONS(7149), + [anon_sym_try] = ACTIONS(7149), + [anon_sym_noexcept] = ACTIONS(7149), + [anon_sym_throw] = ACTIONS(7149), + [anon_sym_requires] = ACTIONS(7149), + [anon_sym_LBRACK_COLON] = ACTIONS(7151), }, - [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), + [STATE(2126)] = { + [sym__abstract_declarator] = STATE(5430), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2074), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9605), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6722), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6724), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6726), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(6728), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2127)] = { + [sym_string_literal] = STATE(3950), + [sym_decltype_auto] = STATE(2942), + [sym_template_argument_list] = STATE(2990), + [sym_raw_string_literal] = STATE(3950), + [aux_sym_sized_type_specifier_repeat1] = STATE(2427), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_RPAREN] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(7153), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(7157), + [anon_sym_unsigned] = ACTIONS(7157), + [anon_sym_long] = ACTIONS(7157), + [anon_sym_short] = ACTIONS(7157), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(5673), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(5676), + [anon_sym_SLASH_EQ] = ACTIONS(5676), + [anon_sym_PERCENT_EQ] = ACTIONS(5676), + [anon_sym_PLUS_EQ] = ACTIONS(5676), + [anon_sym_DASH_EQ] = ACTIONS(5676), + [anon_sym_LT_LT_EQ] = ACTIONS(5676), + [anon_sym_GT_GT_EQ] = ACTIONS(5676), + [anon_sym_AMP_EQ] = ACTIONS(5676), + [anon_sym_CARET_EQ] = ACTIONS(5676), + [anon_sym_PIPE_EQ] = ACTIONS(5676), + [anon_sym_and_eq] = ACTIONS(5673), + [anon_sym_or_eq] = ACTIONS(5673), + [anon_sym_xor_eq] = ACTIONS(5673), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5673), + [anon_sym_L_DQUOTE] = ACTIONS(7111), + [anon_sym_u_DQUOTE] = ACTIONS(7111), + [anon_sym_U_DQUOTE] = ACTIONS(7111), + [anon_sym_u8_DQUOTE] = ACTIONS(7111), + [anon_sym_DQUOTE] = ACTIONS(7111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7159), + [anon_sym_decltype] = ACTIONS(7161), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(7113), + [anon_sym_LR_DQUOTE] = ACTIONS(7113), + [anon_sym_uR_DQUOTE] = ACTIONS(7113), + [anon_sym_UR_DQUOTE] = ACTIONS(7113), + [anon_sym_u8R_DQUOTE] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(5676), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2128)] = { + [sym__abstract_declarator] = STATE(5353), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2074), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9605), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6722), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6724), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6726), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [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(6612), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6728), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2129)] = { + [sym__abstract_declarator] = STATE(5446), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2074), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9605), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6722), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6724), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6726), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [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(6600), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6728), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2130)] = { + [sym_string_literal] = STATE(4289), + [sym_decltype_auto] = STATE(3346), + [sym_template_argument_list] = STATE(3392), + [sym_raw_string_literal] = STATE(4289), + [aux_sym_sized_type_specifier_repeat1] = STATE(2581), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_RPAREN] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(7163), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(7167), + [anon_sym_unsigned] = ACTIONS(7167), + [anon_sym_long] = ACTIONS(7167), + [anon_sym_short] = ACTIONS(7167), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(5673), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(5676), + [anon_sym_SLASH_EQ] = ACTIONS(5676), + [anon_sym_PERCENT_EQ] = ACTIONS(5676), + [anon_sym_PLUS_EQ] = ACTIONS(5676), + [anon_sym_DASH_EQ] = ACTIONS(5676), + [anon_sym_LT_LT_EQ] = ACTIONS(5676), + [anon_sym_GT_GT_EQ] = ACTIONS(5676), + [anon_sym_AMP_EQ] = ACTIONS(5676), + [anon_sym_CARET_EQ] = ACTIONS(5676), + [anon_sym_PIPE_EQ] = ACTIONS(5676), + [anon_sym_and_eq] = ACTIONS(6073), + [anon_sym_or_eq] = ACTIONS(6073), + [anon_sym_xor_eq] = ACTIONS(6073), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5673), + [anon_sym_L_DQUOTE] = ACTIONS(6075), + [anon_sym_u_DQUOTE] = ACTIONS(6075), + [anon_sym_U_DQUOTE] = ACTIONS(6075), + [anon_sym_u8_DQUOTE] = ACTIONS(6075), + [anon_sym_DQUOTE] = ACTIONS(6075), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7169), + [anon_sym_decltype] = ACTIONS(7171), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(6077), + [anon_sym_LR_DQUOTE] = ACTIONS(6077), + [anon_sym_uR_DQUOTE] = ACTIONS(6077), + [anon_sym_UR_DQUOTE] = ACTIONS(6077), + [anon_sym_u8R_DQUOTE] = ACTIONS(6077), + [anon_sym_DASH_GT_STAR] = ACTIONS(5676), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2131)] = { + [sym__abstract_declarator] = STATE(5348), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2128), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2074), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9605), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2128), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6722), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6724), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6726), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [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(6608), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6728), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2132)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2132), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [aux_sym_preproc_if_token2] = ACTIONS(7175), + [aux_sym_preproc_else_token1] = ACTIONS(7175), + [aux_sym_preproc_elif_token1] = ACTIONS(7173), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym_SEMI] = ACTIONS(7175), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_RBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(7177), + [anon_sym_unsigned] = ACTIONS(7177), + [anon_sym_long] = ACTIONS(7177), + [anon_sym_short] = ACTIONS(7177), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), + [anon_sym_COLON_RBRACK] = ACTIONS(7175), + }, + [STATE(2133)] = { + [sym__abstract_declarator] = STATE(5344), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2074), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9605), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6722), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6724), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6726), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(6618), + [anon_sym___attribute] = ACTIONS(6618), + [anon_sym_COLON_COLON] = ACTIONS(6728), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2134)] = { + [sym_string_literal] = STATE(3950), + [sym_decltype_auto] = STATE(3255), + [sym_template_argument_list] = STATE(3019), + [sym_raw_string_literal] = STATE(3950), + [aux_sym_sized_type_specifier_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(7180), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(6952), + [anon_sym_unsigned] = ACTIONS(6952), + [anon_sym_long] = ACTIONS(6952), + [anon_sym_short] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5671), + [anon_sym_or_eq] = ACTIONS(5671), + [anon_sym_xor_eq] = ACTIONS(5671), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5671), + [anon_sym_L_DQUOTE] = ACTIONS(7111), + [anon_sym_u_DQUOTE] = ACTIONS(7111), + [anon_sym_U_DQUOTE] = ACTIONS(7111), + [anon_sym_u8_DQUOTE] = ACTIONS(7111), + [anon_sym_DQUOTE] = ACTIONS(7111), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6958), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(7113), + [anon_sym_LR_DQUOTE] = ACTIONS(7113), + [anon_sym_uR_DQUOTE] = ACTIONS(7113), + [anon_sym_UR_DQUOTE] = ACTIONS(7113), + [anon_sym_u8R_DQUOTE] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(5663), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2135)] = { + [sym__abstract_declarator] = STATE(5312), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_type_qualifier] = STATE(2133), + [sym_alignas_qualifier] = STATE(2308), + [sym_parameter_list] = STATE(2074), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9605), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2133), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6722), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6724), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6726), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [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(6604), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6728), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(5980), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5990), + [anon_sym__Alignas] = ACTIONS(5990), + [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(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2136)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2132), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [aux_sym_preproc_if_token2] = ACTIONS(7186), + [aux_sym_preproc_else_token1] = ACTIONS(7186), + [aux_sym_preproc_elif_token1] = ACTIONS(7183), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym_SEMI] = ACTIONS(7186), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON] = ACTIONS(7183), + [anon_sym_COLON_COLON] = ACTIONS(7186), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7186), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_RBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(7177), + [anon_sym_unsigned] = ACTIONS(7177), + [anon_sym_long] = ACTIONS(7177), + [anon_sym_short] = ACTIONS(7177), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7183), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7186), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7183), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_template] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_LBRACK_COLON] = ACTIONS(7186), + [anon_sym_COLON_RBRACK] = ACTIONS(7186), + }, + [STATE(2137)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2124), + [sym__abstract_declarator] = STATE(6900), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2365), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2289), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9544), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2365), + [aux_sym_pointer_declarator_repeat1] = STATE(2124), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(7137), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(7139), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(7141), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5994), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_RBRACE] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5994), + }, + [STATE(2138)] = { + [sym__abstract_declarator] = STATE(5559), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2146), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2107), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9628), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2146), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6740), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6742), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [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(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [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(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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6606), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_DASH_GT_STAR] = ACTIONS(6604), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2139)] = { + [sym_template_argument_list] = STATE(2181), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_RPAREN] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_TILDE] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6783), + [anon_sym_PERCENT] = ACTIONS(6783), + [anon_sym_PIPE_PIPE] = ACTIONS(6776), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6783), + [anon_sym_CARET] = ACTIONS(6783), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6776), + [anon_sym_BANG_EQ] = ACTIONS(6776), + [anon_sym_GT] = ACTIONS(6783), + [anon_sym_GT_EQ] = ACTIONS(6776), + [anon_sym_LT_EQ] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(7189), + [anon_sym_LT_LT] = ACTIONS(6783), + [anon_sym_GT_GT] = ACTIONS(6783), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_virtual] = ACTIONS(6774), + [anon_sym_extern] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6781), + [anon_sym___declspec] = ACTIONS(6774), + [anon_sym___based] = ACTIONS(6774), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_static] = ACTIONS(6774), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_register] = ACTIONS(6774), + [anon_sym_inline] = ACTIONS(6774), + [anon_sym___inline] = ACTIONS(6774), + [anon_sym___inline__] = ACTIONS(6774), + [anon_sym___forceinline] = ACTIONS(6774), + [anon_sym_thread_local] = ACTIONS(6774), + [anon_sym___thread] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6776), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6776), + [anon_sym_or] = ACTIONS(6783), + [anon_sym_and] = ACTIONS(6783), + [anon_sym_bitor] = ACTIONS(6783), + [anon_sym_xor] = ACTIONS(6783), + [anon_sym_bitand] = ACTIONS(6783), + [anon_sym_not_eq] = ACTIONS(6783), + [anon_sym_DASH_DASH] = ACTIONS(6776), + [anon_sym_PLUS_PLUS] = ACTIONS(6776), + [anon_sym_DOT] = ACTIONS(6783), + [anon_sym_DOT_STAR] = ACTIONS(6776), + [anon_sym_DASH_GT] = ACTIONS(6783), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_operator] = ACTIONS(6774), + [anon_sym_DASH_GT_STAR] = ACTIONS(6776), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(2140)] = { + [sym_string_literal] = STATE(6282), + [sym_decltype_auto] = STATE(4549), + [sym_template_argument_list] = STATE(4818), + [sym_raw_string_literal] = STATE(6282), + [aux_sym_sized_type_specifier_repeat1] = STATE(3799), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5671), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(7192), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(7195), + [anon_sym_unsigned] = ACTIONS(7195), + [anon_sym_long] = ACTIONS(7195), + [anon_sym_short] = ACTIONS(7195), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(7197), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(7199), + [anon_sym_SLASH_EQ] = ACTIONS(7199), + [anon_sym_PERCENT_EQ] = ACTIONS(7199), + [anon_sym_PLUS_EQ] = ACTIONS(7199), + [anon_sym_DASH_EQ] = ACTIONS(7199), + [anon_sym_LT_LT_EQ] = ACTIONS(7199), + [anon_sym_GT_GT_EQ] = ACTIONS(7197), + [anon_sym_AMP_EQ] = ACTIONS(7199), + [anon_sym_CARET_EQ] = ACTIONS(7199), + [anon_sym_PIPE_EQ] = ACTIONS(7199), + [anon_sym_and_eq] = ACTIONS(7197), + [anon_sym_or_eq] = ACTIONS(7197), + [anon_sym_xor_eq] = ACTIONS(7197), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7201), + [anon_sym_u_DQUOTE] = ACTIONS(7201), + [anon_sym_U_DQUOTE] = ACTIONS(7201), + [anon_sym_u8_DQUOTE] = ACTIONS(7201), + [anon_sym_DQUOTE] = ACTIONS(7201), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7203), + [anon_sym_decltype] = ACTIONS(7205), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_GT2] = ACTIONS(5676), + [anon_sym_R_DQUOTE] = ACTIONS(7207), + [anon_sym_LR_DQUOTE] = ACTIONS(7207), + [anon_sym_uR_DQUOTE] = ACTIONS(7207), + [anon_sym_UR_DQUOTE] = ACTIONS(7207), + [anon_sym_u8R_DQUOTE] = ACTIONS(7207), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2141)] = { + [sym__abstract_declarator] = STATE(5761), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2151), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2062), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9530), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2151), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6730), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6732), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [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(6628), + [anon_sym_COLON_COLON] = ACTIONS(6736), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(6606), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [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(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6606), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(6604), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2142)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(3255), + [sym_template_argument_list] = STATE(4016), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5676), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(6952), + [anon_sym_unsigned] = ACTIONS(6952), + [anon_sym_long] = ACTIONS(6952), + [anon_sym_short] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(7211), + [anon_sym_SLASH_EQ] = ACTIONS(7211), + [anon_sym_PERCENT_EQ] = ACTIONS(7211), + [anon_sym_PLUS_EQ] = ACTIONS(7211), + [anon_sym_DASH_EQ] = ACTIONS(7211), + [anon_sym_LT_LT_EQ] = ACTIONS(7211), + [anon_sym_GT_GT_EQ] = ACTIONS(7211), + [anon_sym_AMP_EQ] = ACTIONS(7211), + [anon_sym_CARET_EQ] = ACTIONS(7211), + [anon_sym_PIPE_EQ] = ACTIONS(7211), + [anon_sym_and_eq] = ACTIONS(7209), + [anon_sym_or_eq] = ACTIONS(7209), + [anon_sym_xor_eq] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6958), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2143)] = { + [sym_string_literal] = STATE(6386), + [sym_decltype_auto] = STATE(4708), + [sym_template_argument_list] = STATE(4856), + [sym_raw_string_literal] = STATE(6386), + [aux_sym_sized_type_specifier_repeat1] = STATE(3796), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(7213), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(7217), + [anon_sym_unsigned] = ACTIONS(7217), + [anon_sym_long] = ACTIONS(7217), + [anon_sym_short] = ACTIONS(7217), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_RBRACK] = ACTIONS(5676), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(7221), + [anon_sym_SLASH_EQ] = ACTIONS(7221), + [anon_sym_PERCENT_EQ] = ACTIONS(7221), + [anon_sym_PLUS_EQ] = ACTIONS(7221), + [anon_sym_DASH_EQ] = ACTIONS(7221), + [anon_sym_LT_LT_EQ] = ACTIONS(7221), + [anon_sym_GT_GT_EQ] = ACTIONS(7221), + [anon_sym_AMP_EQ] = ACTIONS(7221), + [anon_sym_CARET_EQ] = ACTIONS(7221), + [anon_sym_PIPE_EQ] = ACTIONS(7221), + [anon_sym_and_eq] = ACTIONS(7219), + [anon_sym_or_eq] = ACTIONS(7219), + [anon_sym_xor_eq] = ACTIONS(7219), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [anon_sym_L_DQUOTE] = ACTIONS(7223), + [anon_sym_u_DQUOTE] = ACTIONS(7223), + [anon_sym_U_DQUOTE] = ACTIONS(7223), + [anon_sym_u8_DQUOTE] = ACTIONS(7223), + [anon_sym_DQUOTE] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7225), + [anon_sym_decltype] = ACTIONS(7227), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(7229), + [anon_sym_LR_DQUOTE] = ACTIONS(7229), + [anon_sym_uR_DQUOTE] = ACTIONS(7229), + [anon_sym_UR_DQUOTE] = ACTIONS(7229), + [anon_sym_u8R_DQUOTE] = ACTIONS(7229), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2144)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2145), + [sym__abstract_declarator] = STATE(6877), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2380), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2269), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9638), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2380), + [aux_sym_pointer_declarator_repeat1] = STATE(2145), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [aux_sym_preproc_if_token2] = ACTIONS(5994), + [aux_sym_preproc_else_token1] = ACTIONS(5994), + [aux_sym_preproc_elif_token1] = ACTIONS(5996), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7237), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2145)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2558), + [sym__abstract_declarator] = STATE(6884), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2395), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2269), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9638), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2395), + [aux_sym_pointer_declarator_repeat1] = STATE(2558), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [aux_sym_preproc_if_token2] = ACTIONS(5968), + [aux_sym_preproc_else_token1] = ACTIONS(5968), + [aux_sym_preproc_elif_token1] = ACTIONS(5970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5968), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7237), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2146)] = { + [sym__abstract_declarator] = STATE(5561), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2924), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2107), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9628), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6740), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6742), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [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(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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_DASH_GT_STAR] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2147)] = { + [sym__abstract_declarator] = STATE(5716), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2681), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2062), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9530), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2681), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6730), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6732), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6736), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(5970), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5970), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2148)] = { + [sym__abstract_declarator] = STATE(5562), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2160), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2107), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9628), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2160), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6740), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6742), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [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(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [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(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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_DASH_GT_STAR] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2149)] = { + [sym__abstract_declarator] = STATE(5605), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2681), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2062), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9530), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2681), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6730), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6732), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [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(6628), + [anon_sym_COLON_COLON] = ACTIONS(6736), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(6614), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [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(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2150)] = { + [sym__abstract_declarator] = STATE(5570), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2924), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2107), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9628), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6740), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6742), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5970), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_DASH_GT_STAR] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2151)] = { + [sym__abstract_declarator] = STATE(5579), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2681), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2062), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9530), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2681), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6730), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6732), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6628), + [anon_sym_COLON_COLON] = ACTIONS(6736), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(6618), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [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(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2152)] = { + [sym__abstract_declarator] = STATE(5582), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2149), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2062), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9530), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2149), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6730), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6732), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [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(6628), + [anon_sym_COLON_COLON] = ACTIONS(6736), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(6610), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [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(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2153)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [aux_sym_preproc_if_token2] = ACTIONS(3108), + [aux_sym_preproc_else_token1] = ACTIONS(3108), + [aux_sym_preproc_elif_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), + [anon_sym_COLON_RBRACK] = ACTIONS(3108), + }, + [STATE(2154)] = { + [sym_string_literal] = STATE(4032), + [sym_decltype_auto] = STATE(3044), + [sym_template_argument_list] = STATE(3199), + [sym_raw_string_literal] = STATE(4032), + [aux_sym_sized_type_specifier_repeat1] = STATE(2468), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(7239), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(7243), + [anon_sym_unsigned] = ACTIONS(7243), + [anon_sym_long] = ACTIONS(7243), + [anon_sym_short] = ACTIONS(7243), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_RBRACK] = ACTIONS(5676), + [anon_sym_EQ] = ACTIONS(5673), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(5676), + [anon_sym_SLASH_EQ] = ACTIONS(5676), + [anon_sym_PERCENT_EQ] = ACTIONS(5676), + [anon_sym_PLUS_EQ] = ACTIONS(5676), + [anon_sym_DASH_EQ] = ACTIONS(5676), + [anon_sym_LT_LT_EQ] = ACTIONS(5676), + [anon_sym_GT_GT_EQ] = ACTIONS(5676), + [anon_sym_AMP_EQ] = ACTIONS(5676), + [anon_sym_CARET_EQ] = ACTIONS(5676), + [anon_sym_PIPE_EQ] = ACTIONS(5676), + [anon_sym_and_eq] = ACTIONS(5673), + [anon_sym_or_eq] = ACTIONS(5673), + [anon_sym_xor_eq] = ACTIONS(5673), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [anon_sym_L_DQUOTE] = ACTIONS(7245), + [anon_sym_u_DQUOTE] = ACTIONS(7245), + [anon_sym_U_DQUOTE] = ACTIONS(7245), + [anon_sym_u8_DQUOTE] = ACTIONS(7245), + [anon_sym_DQUOTE] = ACTIONS(7245), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7247), + [anon_sym_decltype] = ACTIONS(7249), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(7251), + [anon_sym_LR_DQUOTE] = ACTIONS(7251), + [anon_sym_uR_DQUOTE] = ACTIONS(7251), + [anon_sym_UR_DQUOTE] = ACTIONS(7251), + [anon_sym_u8R_DQUOTE] = ACTIONS(7251), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2155)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2165), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [aux_sym_preproc_if_token2] = ACTIONS(7255), + [aux_sym_preproc_else_token1] = ACTIONS(7255), + [aux_sym_preproc_elif_token1] = ACTIONS(7253), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym_SEMI] = ACTIONS(7255), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(7255), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_RBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(7257), + [anon_sym_unsigned] = ACTIONS(7257), + [anon_sym_long] = ACTIONS(7257), + [anon_sym_short] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(7253), + [anon_sym_EQ] = ACTIONS(7253), + [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(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7253), + [anon_sym_or_eq] = ACTIONS(7253), + [anon_sym_xor_eq] = ACTIONS(7253), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7253), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_template] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_LBRACK_COLON] = ACTIONS(7255), + [anon_sym_COLON_RBRACK] = ACTIONS(7255), + }, + [STATE(2156)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [aux_sym_preproc_if_token2] = ACTIONS(7261), + [aux_sym_preproc_else_token1] = ACTIONS(7261), + [aux_sym_preproc_elif_token1] = ACTIONS(7259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7261), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_RBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), + [anon_sym_COLON_RBRACK] = ACTIONS(7261), + }, + [STATE(2157)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2162), + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(7265), + [aux_sym_preproc_if_token2] = ACTIONS(7265), + [aux_sym_preproc_else_token1] = ACTIONS(7265), + [aux_sym_preproc_elif_token1] = ACTIONS(7263), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7265), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7263), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7263), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym_SEMI] = ACTIONS(7265), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON] = ACTIONS(7263), + [anon_sym_COLON_COLON] = ACTIONS(7265), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_RBRACE] = ACTIONS(7265), + [anon_sym_signed] = ACTIONS(7267), + [anon_sym_unsigned] = ACTIONS(7267), + [anon_sym_long] = ACTIONS(7267), + [anon_sym_short] = ACTIONS(7267), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym_EQ] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_STAR_EQ] = ACTIONS(7265), + [anon_sym_SLASH_EQ] = ACTIONS(7265), + [anon_sym_PERCENT_EQ] = ACTIONS(7265), + [anon_sym_PLUS_EQ] = ACTIONS(7265), + [anon_sym_DASH_EQ] = ACTIONS(7265), + [anon_sym_LT_LT_EQ] = ACTIONS(7265), + [anon_sym_GT_GT_EQ] = ACTIONS(7265), + [anon_sym_AMP_EQ] = ACTIONS(7265), + [anon_sym_CARET_EQ] = ACTIONS(7265), + [anon_sym_PIPE_EQ] = ACTIONS(7265), + [anon_sym_and_eq] = ACTIONS(7263), + [anon_sym_or_eq] = ACTIONS(7263), + [anon_sym_xor_eq] = ACTIONS(7263), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7263), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7263), + [anon_sym_not_eq] = ACTIONS(7263), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7265), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7263), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_template] = ACTIONS(7263), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_LBRACK_COLON] = ACTIONS(7265), + [anon_sym_COLON_RBRACK] = ACTIONS(7265), + }, + [STATE(2158)] = { + [sym__abstract_declarator] = STATE(5741), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_type_qualifier] = STATE(2681), + [sym_alignas_qualifier] = STATE(2917), + [sym_parameter_list] = STATE(2062), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9530), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2681), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6730), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6732), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [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(6628), + [anon_sym_COLON_COLON] = ACTIONS(6736), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(6602), + [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(6638), + [anon_sym__Alignas] = ACTIONS(6638), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(6600), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2159)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2163), + [sym_identifier] = ACTIONS(7269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7271), + [anon_sym_COMMA] = ACTIONS(7271), + [anon_sym_RPAREN] = ACTIONS(7271), + [aux_sym_preproc_if_token2] = ACTIONS(7271), + [aux_sym_preproc_else_token1] = ACTIONS(7271), + [aux_sym_preproc_elif_token1] = ACTIONS(7269), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7271), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7271), + [anon_sym_LPAREN2] = ACTIONS(7271), + [anon_sym_DASH] = ACTIONS(7269), + [anon_sym_PLUS] = ACTIONS(7269), + [anon_sym_STAR] = ACTIONS(7269), + [anon_sym_SLASH] = ACTIONS(7269), + [anon_sym_PERCENT] = ACTIONS(7269), + [anon_sym_PIPE_PIPE] = ACTIONS(7271), + [anon_sym_AMP_AMP] = ACTIONS(7271), + [anon_sym_PIPE] = ACTIONS(7269), + [anon_sym_CARET] = ACTIONS(7269), + [anon_sym_AMP] = ACTIONS(7269), + [anon_sym_EQ_EQ] = ACTIONS(7271), + [anon_sym_BANG_EQ] = ACTIONS(7271), + [anon_sym_GT] = ACTIONS(7269), + [anon_sym_GT_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7269), + [anon_sym_LT] = ACTIONS(7269), + [anon_sym_LT_LT] = ACTIONS(7269), + [anon_sym_GT_GT] = ACTIONS(7269), + [anon_sym_SEMI] = ACTIONS(7271), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym___attribute__] = ACTIONS(7269), + [anon_sym___attribute] = ACTIONS(7269), + [anon_sym_COLON] = ACTIONS(7269), + [anon_sym_COLON_COLON] = ACTIONS(7271), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7271), + [anon_sym_LBRACE] = ACTIONS(7271), + [anon_sym_RBRACE] = ACTIONS(7271), + [anon_sym_signed] = ACTIONS(7273), + [anon_sym_unsigned] = ACTIONS(7273), + [anon_sym_long] = ACTIONS(7273), + [anon_sym_short] = ACTIONS(7273), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7269), + [anon_sym_const] = ACTIONS(7269), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7271), + [anon_sym_STAR_EQ] = ACTIONS(7271), + [anon_sym_SLASH_EQ] = ACTIONS(7271), + [anon_sym_PERCENT_EQ] = ACTIONS(7271), + [anon_sym_PLUS_EQ] = ACTIONS(7271), + [anon_sym_DASH_EQ] = ACTIONS(7271), + [anon_sym_LT_LT_EQ] = ACTIONS(7271), + [anon_sym_GT_GT_EQ] = ACTIONS(7271), + [anon_sym_AMP_EQ] = ACTIONS(7271), + [anon_sym_CARET_EQ] = ACTIONS(7271), + [anon_sym_PIPE_EQ] = ACTIONS(7271), + [anon_sym_and_eq] = ACTIONS(7269), + [anon_sym_or_eq] = ACTIONS(7269), + [anon_sym_xor_eq] = ACTIONS(7269), + [anon_sym_LT_EQ_GT] = ACTIONS(7271), + [anon_sym_or] = ACTIONS(7269), + [anon_sym_and] = ACTIONS(7269), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7269), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7271), + [anon_sym_PLUS_PLUS] = ACTIONS(7271), + [anon_sym_DOT] = ACTIONS(7269), + [anon_sym_DOT_STAR] = ACTIONS(7271), + [anon_sym_DASH_GT] = ACTIONS(7271), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7269), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_template] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_LBRACK_COLON] = ACTIONS(7271), + [anon_sym_COLON_RBRACK] = ACTIONS(7271), + }, + [STATE(2160)] = { + [sym__abstract_declarator] = STATE(5564), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2924), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2107), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9628), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6740), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6742), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [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(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [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(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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_DASH_GT_STAR] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2161)] = { + [sym__abstract_declarator] = STATE(5571), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2924), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2107), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9628), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6740), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6742), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [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(6746), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_DASH_GT_STAR] = ACTIONS(6600), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2162)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2165), + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(7277), + [aux_sym_preproc_if_token2] = ACTIONS(7277), + [aux_sym_preproc_else_token1] = ACTIONS(7277), + [aux_sym_preproc_elif_token1] = ACTIONS(7275), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7277), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7275), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7275), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7275), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7275), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym_SEMI] = ACTIONS(7277), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON] = ACTIONS(7275), + [anon_sym_COLON_COLON] = ACTIONS(7277), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_RBRACE] = ACTIONS(7277), + [anon_sym_signed] = ACTIONS(7257), + [anon_sym_unsigned] = ACTIONS(7257), + [anon_sym_long] = ACTIONS(7257), + [anon_sym_short] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(7275), + [anon_sym_EQ] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7277), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_and_eq] = ACTIONS(7275), + [anon_sym_or_eq] = ACTIONS(7275), + [anon_sym_xor_eq] = ACTIONS(7275), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7275), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7275), + [anon_sym_not_eq] = ACTIONS(7275), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7275), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_template] = ACTIONS(7275), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_LBRACK_COLON] = ACTIONS(7277), + [anon_sym_COLON_RBRACK] = ACTIONS(7277), + }, + [STATE(2163)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2165), + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_RPAREN] = ACTIONS(7281), + [aux_sym_preproc_if_token2] = ACTIONS(7281), + [aux_sym_preproc_else_token1] = ACTIONS(7281), + [aux_sym_preproc_elif_token1] = ACTIONS(7279), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7281), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7279), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7279), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7279), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7279), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(7281), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON] = ACTIONS(7279), + [anon_sym_COLON_COLON] = ACTIONS(7281), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_RBRACE] = ACTIONS(7281), + [anon_sym_signed] = ACTIONS(7257), + [anon_sym_unsigned] = ACTIONS(7257), + [anon_sym_long] = ACTIONS(7257), + [anon_sym_short] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(7279), + [anon_sym_EQ] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_STAR_EQ] = ACTIONS(7281), + [anon_sym_SLASH_EQ] = ACTIONS(7281), + [anon_sym_PERCENT_EQ] = ACTIONS(7281), + [anon_sym_PLUS_EQ] = ACTIONS(7281), + [anon_sym_DASH_EQ] = ACTIONS(7281), + [anon_sym_LT_LT_EQ] = ACTIONS(7281), + [anon_sym_GT_GT_EQ] = ACTIONS(7281), + [anon_sym_AMP_EQ] = ACTIONS(7281), + [anon_sym_CARET_EQ] = ACTIONS(7281), + [anon_sym_PIPE_EQ] = ACTIONS(7281), + [anon_sym_and_eq] = ACTIONS(7279), + [anon_sym_or_eq] = ACTIONS(7279), + [anon_sym_xor_eq] = ACTIONS(7279), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7279), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7279), + [anon_sym_not_eq] = ACTIONS(7279), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7281), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7279), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_template] = ACTIONS(7279), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_LBRACK_COLON] = ACTIONS(7281), + [anon_sym_COLON_RBRACK] = ACTIONS(7281), + }, + [STATE(2164)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(3255), + [sym_template_argument_list] = STATE(4016), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5673), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(6952), + [anon_sym_unsigned] = ACTIONS(6952), + [anon_sym_long] = ACTIONS(6952), + [anon_sym_short] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(7283), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(7285), + [anon_sym_SLASH_EQ] = ACTIONS(7285), + [anon_sym_PERCENT_EQ] = ACTIONS(7285), + [anon_sym_PLUS_EQ] = ACTIONS(7285), + [anon_sym_DASH_EQ] = ACTIONS(7285), + [anon_sym_LT_LT_EQ] = ACTIONS(7285), + [anon_sym_GT_GT_EQ] = ACTIONS(7285), + [anon_sym_AMP_EQ] = ACTIONS(7285), + [anon_sym_CARET_EQ] = ACTIONS(7285), + [anon_sym_PIPE_EQ] = ACTIONS(7285), + [anon_sym_and_eq] = ACTIONS(7283), + [anon_sym_or_eq] = ACTIONS(7283), + [anon_sym_xor_eq] = ACTIONS(7283), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6958), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2165)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2165), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [aux_sym_preproc_if_token2] = ACTIONS(7175), + [aux_sym_preproc_else_token1] = ACTIONS(7175), + [aux_sym_preproc_elif_token1] = ACTIONS(7173), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym_SEMI] = ACTIONS(7175), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_RBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(7287), + [anon_sym_unsigned] = ACTIONS(7287), + [anon_sym_long] = ACTIONS(7287), + [anon_sym_short] = ACTIONS(7287), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), + [anon_sym_COLON_RBRACK] = ACTIONS(7175), + }, + [STATE(2166)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2169), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [aux_sym_preproc_if_token2] = ACTIONS(7292), + [aux_sym_preproc_else_token1] = ACTIONS(7292), + [aux_sym_preproc_elif_token1] = ACTIONS(7290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7292), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_RBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7292), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_and_eq] = ACTIONS(7290), + [anon_sym_or_eq] = ACTIONS(7290), + [anon_sym_xor_eq] = ACTIONS(7290), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), + [anon_sym_COLON_RBRACK] = ACTIONS(7292), + }, + [STATE(2167)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2165), + [sym_identifier] = ACTIONS(7296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7298), + [anon_sym_RPAREN] = ACTIONS(7298), + [aux_sym_preproc_if_token2] = ACTIONS(7298), + [aux_sym_preproc_else_token1] = ACTIONS(7298), + [aux_sym_preproc_elif_token1] = ACTIONS(7296), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7298), + [anon_sym_LPAREN2] = ACTIONS(7298), + [anon_sym_DASH] = ACTIONS(7296), + [anon_sym_PLUS] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7296), + [anon_sym_SLASH] = ACTIONS(7296), + [anon_sym_PERCENT] = ACTIONS(7296), + [anon_sym_PIPE_PIPE] = ACTIONS(7298), + [anon_sym_AMP_AMP] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7296), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_EQ_EQ] = ACTIONS(7298), + [anon_sym_BANG_EQ] = ACTIONS(7298), + [anon_sym_GT] = ACTIONS(7296), + [anon_sym_GT_EQ] = ACTIONS(7298), + [anon_sym_LT_EQ] = ACTIONS(7296), + [anon_sym_LT] = ACTIONS(7296), + [anon_sym_LT_LT] = ACTIONS(7296), + [anon_sym_GT_GT] = ACTIONS(7296), + [anon_sym_SEMI] = ACTIONS(7298), + [anon_sym___extension__] = ACTIONS(7296), + [anon_sym___attribute__] = ACTIONS(7296), + [anon_sym___attribute] = ACTIONS(7296), + [anon_sym_COLON] = ACTIONS(7296), + [anon_sym_COLON_COLON] = ACTIONS(7298), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7298), + [anon_sym_RBRACE] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(7257), + [anon_sym_unsigned] = ACTIONS(7257), + [anon_sym_long] = ACTIONS(7257), + [anon_sym_short] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_EQ] = ACTIONS(7296), + [anon_sym_const] = ACTIONS(7296), + [anon_sym_constexpr] = ACTIONS(7296), + [anon_sym_volatile] = ACTIONS(7296), + [anon_sym_restrict] = ACTIONS(7296), + [anon_sym___restrict__] = ACTIONS(7296), + [anon_sym__Atomic] = ACTIONS(7296), + [anon_sym__Noreturn] = ACTIONS(7296), + [anon_sym_noreturn] = ACTIONS(7296), + [anon_sym__Nonnull] = ACTIONS(7296), + [anon_sym_mutable] = ACTIONS(7296), + [anon_sym_constinit] = ACTIONS(7296), + [anon_sym_consteval] = ACTIONS(7296), + [anon_sym_alignas] = ACTIONS(7296), + [anon_sym__Alignas] = ACTIONS(7296), + [anon_sym_QMARK] = ACTIONS(7298), + [anon_sym_STAR_EQ] = ACTIONS(7298), + [anon_sym_SLASH_EQ] = ACTIONS(7298), + [anon_sym_PERCENT_EQ] = ACTIONS(7298), + [anon_sym_PLUS_EQ] = ACTIONS(7298), + [anon_sym_DASH_EQ] = ACTIONS(7298), + [anon_sym_LT_LT_EQ] = ACTIONS(7298), + [anon_sym_GT_GT_EQ] = ACTIONS(7298), + [anon_sym_AMP_EQ] = ACTIONS(7298), + [anon_sym_CARET_EQ] = ACTIONS(7298), + [anon_sym_PIPE_EQ] = ACTIONS(7298), + [anon_sym_and_eq] = ACTIONS(7296), + [anon_sym_or_eq] = ACTIONS(7296), + [anon_sym_xor_eq] = ACTIONS(7296), + [anon_sym_LT_EQ_GT] = ACTIONS(7298), + [anon_sym_or] = ACTIONS(7296), + [anon_sym_and] = ACTIONS(7296), + [anon_sym_bitor] = ACTIONS(7296), + [anon_sym_xor] = ACTIONS(7296), + [anon_sym_bitand] = ACTIONS(7296), + [anon_sym_not_eq] = ACTIONS(7296), + [anon_sym_DASH_DASH] = ACTIONS(7298), + [anon_sym_PLUS_PLUS] = ACTIONS(7298), + [anon_sym_DOT] = ACTIONS(7296), + [anon_sym_DOT_STAR] = ACTIONS(7298), + [anon_sym_DASH_GT] = ACTIONS(7298), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7296), + [anon_sym_final] = ACTIONS(7296), + [anon_sym_override] = ACTIONS(7296), + [anon_sym_template] = ACTIONS(7296), + [anon_sym_requires] = ACTIONS(7296), + [anon_sym_LBRACK_COLON] = ACTIONS(7298), + [anon_sym_COLON_RBRACK] = ACTIONS(7298), + }, + [STATE(2168)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2165), + [sym_identifier] = ACTIONS(7300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7302), + [anon_sym_RPAREN] = ACTIONS(7302), + [aux_sym_preproc_if_token2] = ACTIONS(7302), + [aux_sym_preproc_else_token1] = ACTIONS(7302), + [aux_sym_preproc_elif_token1] = ACTIONS(7300), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7302), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7302), + [anon_sym_LPAREN2] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7300), + [anon_sym_SLASH] = ACTIONS(7300), + [anon_sym_PERCENT] = ACTIONS(7300), + [anon_sym_PIPE_PIPE] = ACTIONS(7302), + [anon_sym_AMP_AMP] = ACTIONS(7302), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_CARET] = ACTIONS(7300), + [anon_sym_AMP] = ACTIONS(7300), + [anon_sym_EQ_EQ] = ACTIONS(7302), + [anon_sym_BANG_EQ] = ACTIONS(7302), + [anon_sym_GT] = ACTIONS(7300), + [anon_sym_GT_EQ] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(7300), + [anon_sym_LT] = ACTIONS(7300), + [anon_sym_LT_LT] = ACTIONS(7300), + [anon_sym_GT_GT] = ACTIONS(7300), + [anon_sym_SEMI] = ACTIONS(7302), + [anon_sym___extension__] = ACTIONS(7300), + [anon_sym___attribute__] = ACTIONS(7300), + [anon_sym___attribute] = ACTIONS(7300), + [anon_sym_COLON] = ACTIONS(7300), + [anon_sym_COLON_COLON] = ACTIONS(7302), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7302), + [anon_sym_RBRACE] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(7257), + [anon_sym_unsigned] = ACTIONS(7257), + [anon_sym_long] = ACTIONS(7257), + [anon_sym_short] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_EQ] = ACTIONS(7300), + [anon_sym_const] = ACTIONS(7300), + [anon_sym_constexpr] = ACTIONS(7300), + [anon_sym_volatile] = ACTIONS(7300), + [anon_sym_restrict] = ACTIONS(7300), + [anon_sym___restrict__] = ACTIONS(7300), + [anon_sym__Atomic] = ACTIONS(7300), + [anon_sym__Noreturn] = ACTIONS(7300), + [anon_sym_noreturn] = ACTIONS(7300), + [anon_sym__Nonnull] = ACTIONS(7300), + [anon_sym_mutable] = ACTIONS(7300), + [anon_sym_constinit] = ACTIONS(7300), + [anon_sym_consteval] = ACTIONS(7300), + [anon_sym_alignas] = ACTIONS(7300), + [anon_sym__Alignas] = ACTIONS(7300), + [anon_sym_QMARK] = ACTIONS(7302), + [anon_sym_STAR_EQ] = ACTIONS(7302), + [anon_sym_SLASH_EQ] = ACTIONS(7302), + [anon_sym_PERCENT_EQ] = ACTIONS(7302), + [anon_sym_PLUS_EQ] = ACTIONS(7302), + [anon_sym_DASH_EQ] = ACTIONS(7302), + [anon_sym_LT_LT_EQ] = ACTIONS(7302), + [anon_sym_GT_GT_EQ] = ACTIONS(7302), + [anon_sym_AMP_EQ] = ACTIONS(7302), + [anon_sym_CARET_EQ] = ACTIONS(7302), + [anon_sym_PIPE_EQ] = ACTIONS(7302), + [anon_sym_and_eq] = ACTIONS(7300), + [anon_sym_or_eq] = ACTIONS(7300), + [anon_sym_xor_eq] = ACTIONS(7300), + [anon_sym_LT_EQ_GT] = ACTIONS(7302), + [anon_sym_or] = ACTIONS(7300), + [anon_sym_and] = ACTIONS(7300), + [anon_sym_bitor] = ACTIONS(7300), + [anon_sym_xor] = ACTIONS(7300), + [anon_sym_bitand] = ACTIONS(7300), + [anon_sym_not_eq] = ACTIONS(7300), + [anon_sym_DASH_DASH] = ACTIONS(7302), + [anon_sym_PLUS_PLUS] = ACTIONS(7302), + [anon_sym_DOT] = ACTIONS(7300), + [anon_sym_DOT_STAR] = ACTIONS(7302), + [anon_sym_DASH_GT] = ACTIONS(7302), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7300), + [anon_sym_final] = ACTIONS(7300), + [anon_sym_override] = ACTIONS(7300), + [anon_sym_template] = ACTIONS(7300), + [anon_sym_requires] = ACTIONS(7300), + [anon_sym_LBRACK_COLON] = ACTIONS(7302), + [anon_sym_COLON_RBRACK] = ACTIONS(7302), + }, + [STATE(2169)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2165), + [sym_identifier] = ACTIONS(7304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7306), + [anon_sym_RPAREN] = ACTIONS(7306), + [aux_sym_preproc_if_token2] = ACTIONS(7306), + [aux_sym_preproc_else_token1] = ACTIONS(7306), + [aux_sym_preproc_elif_token1] = ACTIONS(7304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7306), + [anon_sym_LPAREN2] = ACTIONS(7306), + [anon_sym_DASH] = ACTIONS(7304), + [anon_sym_PLUS] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7304), + [anon_sym_SLASH] = ACTIONS(7304), + [anon_sym_PERCENT] = ACTIONS(7304), + [anon_sym_PIPE_PIPE] = ACTIONS(7306), + [anon_sym_AMP_AMP] = ACTIONS(7306), + [anon_sym_PIPE] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(7304), + [anon_sym_AMP] = ACTIONS(7304), + [anon_sym_EQ_EQ] = ACTIONS(7306), + [anon_sym_BANG_EQ] = ACTIONS(7306), + [anon_sym_GT] = ACTIONS(7304), + [anon_sym_GT_EQ] = ACTIONS(7306), + [anon_sym_LT_EQ] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7304), + [anon_sym_LT_LT] = ACTIONS(7304), + [anon_sym_GT_GT] = ACTIONS(7304), + [anon_sym_SEMI] = ACTIONS(7306), + [anon_sym___extension__] = ACTIONS(7304), + [anon_sym___attribute__] = ACTIONS(7304), + [anon_sym___attribute] = ACTIONS(7304), + [anon_sym_COLON] = ACTIONS(7304), + [anon_sym_COLON_COLON] = ACTIONS(7306), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7306), + [anon_sym_LBRACE] = ACTIONS(7306), + [anon_sym_RBRACE] = ACTIONS(7306), + [anon_sym_signed] = ACTIONS(7257), + [anon_sym_unsigned] = ACTIONS(7257), + [anon_sym_long] = ACTIONS(7257), + [anon_sym_short] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_EQ] = ACTIONS(7304), + [anon_sym_const] = ACTIONS(7304), + [anon_sym_constexpr] = ACTIONS(7304), + [anon_sym_volatile] = ACTIONS(7304), + [anon_sym_restrict] = ACTIONS(7304), + [anon_sym___restrict__] = ACTIONS(7304), + [anon_sym__Atomic] = ACTIONS(7304), + [anon_sym__Noreturn] = ACTIONS(7304), + [anon_sym_noreturn] = ACTIONS(7304), + [anon_sym__Nonnull] = ACTIONS(7304), + [anon_sym_mutable] = ACTIONS(7304), + [anon_sym_constinit] = ACTIONS(7304), + [anon_sym_consteval] = ACTIONS(7304), + [anon_sym_alignas] = ACTIONS(7304), + [anon_sym__Alignas] = ACTIONS(7304), + [anon_sym_QMARK] = ACTIONS(7306), + [anon_sym_STAR_EQ] = ACTIONS(7306), + [anon_sym_SLASH_EQ] = ACTIONS(7306), + [anon_sym_PERCENT_EQ] = ACTIONS(7306), + [anon_sym_PLUS_EQ] = ACTIONS(7306), + [anon_sym_DASH_EQ] = ACTIONS(7306), + [anon_sym_LT_LT_EQ] = ACTIONS(7306), + [anon_sym_GT_GT_EQ] = ACTIONS(7306), + [anon_sym_AMP_EQ] = ACTIONS(7306), + [anon_sym_CARET_EQ] = ACTIONS(7306), + [anon_sym_PIPE_EQ] = ACTIONS(7306), + [anon_sym_and_eq] = ACTIONS(7304), + [anon_sym_or_eq] = ACTIONS(7304), + [anon_sym_xor_eq] = ACTIONS(7304), + [anon_sym_LT_EQ_GT] = ACTIONS(7306), + [anon_sym_or] = ACTIONS(7304), + [anon_sym_and] = ACTIONS(7304), + [anon_sym_bitor] = ACTIONS(7304), + [anon_sym_xor] = ACTIONS(7304), + [anon_sym_bitand] = ACTIONS(7304), + [anon_sym_not_eq] = ACTIONS(7304), + [anon_sym_DASH_DASH] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(7306), + [anon_sym_DOT] = ACTIONS(7304), + [anon_sym_DOT_STAR] = ACTIONS(7306), + [anon_sym_DASH_GT] = ACTIONS(7306), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7304), + [anon_sym_final] = ACTIONS(7304), + [anon_sym_override] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7304), + [anon_sym_requires] = ACTIONS(7304), + [anon_sym_LBRACK_COLON] = ACTIONS(7306), + [anon_sym_COLON_RBRACK] = ACTIONS(7306), + }, + [STATE(2170)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2165), + [sym_identifier] = ACTIONS(7308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7310), + [anon_sym_RPAREN] = ACTIONS(7310), + [aux_sym_preproc_if_token2] = ACTIONS(7310), + [aux_sym_preproc_else_token1] = ACTIONS(7310), + [aux_sym_preproc_elif_token1] = ACTIONS(7308), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7310), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7310), + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_DASH] = ACTIONS(7308), + [anon_sym_PLUS] = ACTIONS(7308), + [anon_sym_STAR] = ACTIONS(7308), + [anon_sym_SLASH] = ACTIONS(7308), + [anon_sym_PERCENT] = ACTIONS(7308), + [anon_sym_PIPE_PIPE] = ACTIONS(7310), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_PIPE] = ACTIONS(7308), + [anon_sym_CARET] = ACTIONS(7308), + [anon_sym_AMP] = ACTIONS(7308), + [anon_sym_EQ_EQ] = ACTIONS(7310), + [anon_sym_BANG_EQ] = ACTIONS(7310), + [anon_sym_GT] = ACTIONS(7308), + [anon_sym_GT_EQ] = ACTIONS(7310), + [anon_sym_LT_EQ] = ACTIONS(7308), + [anon_sym_LT] = ACTIONS(7308), + [anon_sym_LT_LT] = ACTIONS(7308), + [anon_sym_GT_GT] = ACTIONS(7308), + [anon_sym_SEMI] = ACTIONS(7310), + [anon_sym___extension__] = ACTIONS(7308), + [anon_sym___attribute__] = ACTIONS(7308), + [anon_sym___attribute] = ACTIONS(7308), + [anon_sym_COLON] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7310), + [anon_sym_LBRACE] = ACTIONS(7310), + [anon_sym_RBRACE] = ACTIONS(7310), + [anon_sym_signed] = ACTIONS(7257), + [anon_sym_unsigned] = ACTIONS(7257), + [anon_sym_long] = ACTIONS(7257), + [anon_sym_short] = ACTIONS(7257), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym_EQ] = ACTIONS(7308), + [anon_sym_const] = ACTIONS(7308), + [anon_sym_constexpr] = ACTIONS(7308), + [anon_sym_volatile] = ACTIONS(7308), + [anon_sym_restrict] = ACTIONS(7308), + [anon_sym___restrict__] = ACTIONS(7308), + [anon_sym__Atomic] = ACTIONS(7308), + [anon_sym__Noreturn] = ACTIONS(7308), + [anon_sym_noreturn] = ACTIONS(7308), + [anon_sym__Nonnull] = ACTIONS(7308), + [anon_sym_mutable] = ACTIONS(7308), + [anon_sym_constinit] = ACTIONS(7308), + [anon_sym_consteval] = ACTIONS(7308), + [anon_sym_alignas] = ACTIONS(7308), + [anon_sym__Alignas] = ACTIONS(7308), + [anon_sym_QMARK] = ACTIONS(7310), + [anon_sym_STAR_EQ] = ACTIONS(7310), + [anon_sym_SLASH_EQ] = ACTIONS(7310), + [anon_sym_PERCENT_EQ] = ACTIONS(7310), + [anon_sym_PLUS_EQ] = ACTIONS(7310), + [anon_sym_DASH_EQ] = ACTIONS(7310), + [anon_sym_LT_LT_EQ] = ACTIONS(7310), + [anon_sym_GT_GT_EQ] = ACTIONS(7310), + [anon_sym_AMP_EQ] = ACTIONS(7310), + [anon_sym_CARET_EQ] = ACTIONS(7310), + [anon_sym_PIPE_EQ] = ACTIONS(7310), + [anon_sym_and_eq] = ACTIONS(7308), + [anon_sym_or_eq] = ACTIONS(7308), + [anon_sym_xor_eq] = ACTIONS(7308), + [anon_sym_LT_EQ_GT] = ACTIONS(7310), + [anon_sym_or] = ACTIONS(7308), + [anon_sym_and] = ACTIONS(7308), + [anon_sym_bitor] = ACTIONS(7308), + [anon_sym_xor] = ACTIONS(7308), + [anon_sym_bitand] = ACTIONS(7308), + [anon_sym_not_eq] = ACTIONS(7308), + [anon_sym_DASH_DASH] = ACTIONS(7310), + [anon_sym_PLUS_PLUS] = ACTIONS(7310), + [anon_sym_DOT] = ACTIONS(7308), + [anon_sym_DOT_STAR] = ACTIONS(7310), + [anon_sym_DASH_GT] = ACTIONS(7310), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7308), + [anon_sym_final] = ACTIONS(7308), + [anon_sym_override] = ACTIONS(7308), + [anon_sym_template] = ACTIONS(7308), + [anon_sym_requires] = ACTIONS(7308), + [anon_sym_LBRACK_COLON] = ACTIONS(7310), + [anon_sym_COLON_RBRACK] = ACTIONS(7310), + }, + [STATE(2171)] = { + [sym_string_literal] = STATE(6282), + [sym_decltype_auto] = STATE(4549), + [sym_template_argument_list] = STATE(4851), + [sym_raw_string_literal] = STATE(6282), + [aux_sym_sized_type_specifier_repeat1] = STATE(3799), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5673), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(7312), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(7195), + [anon_sym_unsigned] = ACTIONS(7195), + [anon_sym_long] = ACTIONS(7195), + [anon_sym_short] = ACTIONS(7195), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(7197), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(7199), + [anon_sym_SLASH_EQ] = ACTIONS(7199), + [anon_sym_PERCENT_EQ] = ACTIONS(7199), + [anon_sym_PLUS_EQ] = ACTIONS(7199), + [anon_sym_DASH_EQ] = ACTIONS(7199), + [anon_sym_LT_LT_EQ] = ACTIONS(7199), + [anon_sym_GT_GT_EQ] = ACTIONS(7197), + [anon_sym_AMP_EQ] = ACTIONS(7199), + [anon_sym_CARET_EQ] = ACTIONS(7199), + [anon_sym_PIPE_EQ] = ACTIONS(7199), + [anon_sym_and_eq] = ACTIONS(7197), + [anon_sym_or_eq] = ACTIONS(7197), + [anon_sym_xor_eq] = ACTIONS(7197), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [anon_sym_L_DQUOTE] = ACTIONS(7201), + [anon_sym_u_DQUOTE] = ACTIONS(7201), + [anon_sym_U_DQUOTE] = ACTIONS(7201), + [anon_sym_u8_DQUOTE] = ACTIONS(7201), + [anon_sym_DQUOTE] = ACTIONS(7201), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7203), + [anon_sym_decltype] = ACTIONS(7205), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_GT2] = ACTIONS(5676), + [anon_sym_R_DQUOTE] = ACTIONS(7207), + [anon_sym_LR_DQUOTE] = ACTIONS(7207), + [anon_sym_uR_DQUOTE] = ACTIONS(7207), + [anon_sym_UR_DQUOTE] = ACTIONS(7207), + [anon_sym_u8R_DQUOTE] = ACTIONS(7207), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2172)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2167), + [sym_identifier] = ACTIONS(7316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7318), + [anon_sym_RPAREN] = ACTIONS(7318), + [aux_sym_preproc_if_token2] = ACTIONS(7318), + [aux_sym_preproc_else_token1] = ACTIONS(7318), + [aux_sym_preproc_elif_token1] = ACTIONS(7316), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7318), + [anon_sym_LPAREN2] = ACTIONS(7318), + [anon_sym_DASH] = ACTIONS(7316), + [anon_sym_PLUS] = ACTIONS(7316), + [anon_sym_STAR] = ACTIONS(7316), + [anon_sym_SLASH] = ACTIONS(7316), + [anon_sym_PERCENT] = ACTIONS(7316), + [anon_sym_PIPE_PIPE] = ACTIONS(7318), + [anon_sym_AMP_AMP] = ACTIONS(7318), + [anon_sym_PIPE] = ACTIONS(7316), + [anon_sym_CARET] = ACTIONS(7316), + [anon_sym_AMP] = ACTIONS(7316), + [anon_sym_EQ_EQ] = ACTIONS(7318), + [anon_sym_BANG_EQ] = ACTIONS(7318), + [anon_sym_GT] = ACTIONS(7316), + [anon_sym_GT_EQ] = ACTIONS(7318), + [anon_sym_LT_EQ] = ACTIONS(7316), + [anon_sym_LT] = ACTIONS(7316), + [anon_sym_LT_LT] = ACTIONS(7316), + [anon_sym_GT_GT] = ACTIONS(7316), + [anon_sym_SEMI] = ACTIONS(7318), + [anon_sym___extension__] = ACTIONS(7316), + [anon_sym___attribute__] = ACTIONS(7316), + [anon_sym___attribute] = ACTIONS(7316), + [anon_sym_COLON] = ACTIONS(7316), + [anon_sym_COLON_COLON] = ACTIONS(7318), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7318), + [anon_sym_LBRACE] = ACTIONS(7318), + [anon_sym_RBRACE] = ACTIONS(7318), + [anon_sym_signed] = ACTIONS(7320), + [anon_sym_unsigned] = ACTIONS(7320), + [anon_sym_long] = ACTIONS(7320), + [anon_sym_short] = ACTIONS(7320), + [anon_sym_LBRACK] = ACTIONS(7316), + [anon_sym_EQ] = ACTIONS(7316), + [anon_sym_const] = ACTIONS(7316), + [anon_sym_constexpr] = ACTIONS(7316), + [anon_sym_volatile] = ACTIONS(7316), + [anon_sym_restrict] = ACTIONS(7316), + [anon_sym___restrict__] = ACTIONS(7316), + [anon_sym__Atomic] = ACTIONS(7316), + [anon_sym__Noreturn] = ACTIONS(7316), + [anon_sym_noreturn] = ACTIONS(7316), + [anon_sym__Nonnull] = ACTIONS(7316), + [anon_sym_mutable] = ACTIONS(7316), + [anon_sym_constinit] = ACTIONS(7316), + [anon_sym_consteval] = ACTIONS(7316), + [anon_sym_alignas] = ACTIONS(7316), + [anon_sym__Alignas] = ACTIONS(7316), + [anon_sym_QMARK] = ACTIONS(7318), + [anon_sym_STAR_EQ] = ACTIONS(7318), + [anon_sym_SLASH_EQ] = ACTIONS(7318), + [anon_sym_PERCENT_EQ] = ACTIONS(7318), + [anon_sym_PLUS_EQ] = ACTIONS(7318), + [anon_sym_DASH_EQ] = ACTIONS(7318), + [anon_sym_LT_LT_EQ] = ACTIONS(7318), + [anon_sym_GT_GT_EQ] = ACTIONS(7318), + [anon_sym_AMP_EQ] = ACTIONS(7318), + [anon_sym_CARET_EQ] = ACTIONS(7318), + [anon_sym_PIPE_EQ] = ACTIONS(7318), + [anon_sym_and_eq] = ACTIONS(7316), + [anon_sym_or_eq] = ACTIONS(7316), + [anon_sym_xor_eq] = ACTIONS(7316), + [anon_sym_LT_EQ_GT] = ACTIONS(7318), + [anon_sym_or] = ACTIONS(7316), + [anon_sym_and] = ACTIONS(7316), + [anon_sym_bitor] = ACTIONS(7316), + [anon_sym_xor] = ACTIONS(7316), + [anon_sym_bitand] = ACTIONS(7316), + [anon_sym_not_eq] = ACTIONS(7316), + [anon_sym_DASH_DASH] = ACTIONS(7318), + [anon_sym_PLUS_PLUS] = ACTIONS(7318), + [anon_sym_DOT] = ACTIONS(7316), + [anon_sym_DOT_STAR] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(7318), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7316), + [anon_sym_final] = ACTIONS(7316), + [anon_sym_override] = ACTIONS(7316), + [anon_sym_template] = ACTIONS(7316), + [anon_sym_requires] = ACTIONS(7316), + [anon_sym_LBRACK_COLON] = ACTIONS(7318), + [anon_sym_COLON_RBRACK] = ACTIONS(7318), + }, + [STATE(2173)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2155), + [sym_identifier] = ACTIONS(7322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7324), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_RPAREN] = ACTIONS(7324), + [aux_sym_preproc_if_token2] = ACTIONS(7324), + [aux_sym_preproc_else_token1] = ACTIONS(7324), + [aux_sym_preproc_elif_token1] = ACTIONS(7322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7324), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_DASH] = ACTIONS(7322), + [anon_sym_PLUS] = ACTIONS(7322), + [anon_sym_STAR] = ACTIONS(7322), + [anon_sym_SLASH] = ACTIONS(7322), + [anon_sym_PERCENT] = ACTIONS(7322), + [anon_sym_PIPE_PIPE] = ACTIONS(7324), + [anon_sym_AMP_AMP] = ACTIONS(7324), + [anon_sym_PIPE] = ACTIONS(7322), + [anon_sym_CARET] = ACTIONS(7322), + [anon_sym_AMP] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_GT] = ACTIONS(7322), + [anon_sym_GT_EQ] = ACTIONS(7324), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_LT] = ACTIONS(7322), + [anon_sym_LT_LT] = ACTIONS(7322), + [anon_sym_GT_GT] = ACTIONS(7322), + [anon_sym_SEMI] = ACTIONS(7324), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_COLON] = ACTIONS(7322), + [anon_sym_COLON_COLON] = ACTIONS(7324), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7324), + [anon_sym_LBRACE] = ACTIONS(7324), + [anon_sym_RBRACE] = ACTIONS(7324), + [anon_sym_signed] = ACTIONS(7326), + [anon_sym_unsigned] = ACTIONS(7326), + [anon_sym_long] = ACTIONS(7326), + [anon_sym_short] = ACTIONS(7326), + [anon_sym_LBRACK] = ACTIONS(7322), + [anon_sym_EQ] = ACTIONS(7322), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_mutable] = ACTIONS(7322), + [anon_sym_constinit] = ACTIONS(7322), + [anon_sym_consteval] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [anon_sym_QMARK] = ACTIONS(7324), + [anon_sym_STAR_EQ] = ACTIONS(7324), + [anon_sym_SLASH_EQ] = ACTIONS(7324), + [anon_sym_PERCENT_EQ] = ACTIONS(7324), + [anon_sym_PLUS_EQ] = ACTIONS(7324), + [anon_sym_DASH_EQ] = ACTIONS(7324), + [anon_sym_LT_LT_EQ] = ACTIONS(7324), + [anon_sym_GT_GT_EQ] = ACTIONS(7324), + [anon_sym_AMP_EQ] = ACTIONS(7324), + [anon_sym_CARET_EQ] = ACTIONS(7324), + [anon_sym_PIPE_EQ] = ACTIONS(7324), + [anon_sym_and_eq] = ACTIONS(7322), + [anon_sym_or_eq] = ACTIONS(7322), + [anon_sym_xor_eq] = ACTIONS(7322), + [anon_sym_LT_EQ_GT] = ACTIONS(7324), + [anon_sym_or] = ACTIONS(7322), + [anon_sym_and] = ACTIONS(7322), + [anon_sym_bitor] = ACTIONS(7322), + [anon_sym_xor] = ACTIONS(7322), + [anon_sym_bitand] = ACTIONS(7322), + [anon_sym_not_eq] = ACTIONS(7322), + [anon_sym_DASH_DASH] = ACTIONS(7324), + [anon_sym_PLUS_PLUS] = ACTIONS(7324), + [anon_sym_DOT] = ACTIONS(7322), + [anon_sym_DOT_STAR] = ACTIONS(7324), + [anon_sym_DASH_GT] = ACTIONS(7324), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7322), + [anon_sym_final] = ACTIONS(7322), + [anon_sym_override] = ACTIONS(7322), + [anon_sym_template] = ACTIONS(7322), + [anon_sym_requires] = ACTIONS(7322), + [anon_sym_LBRACK_COLON] = ACTIONS(7324), + [anon_sym_COLON_RBRACK] = ACTIONS(7324), + }, + [STATE(2174)] = { + [sym_string_literal] = STATE(4029), + [sym_decltype_auto] = STATE(2989), + [sym_template_argument_list] = STATE(3182), + [sym_raw_string_literal] = STATE(4029), + [aux_sym_sized_type_specifier_repeat1] = STATE(2429), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5673), + [anon_sym_PLUS] = ACTIONS(5673), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5673), + [anon_sym_PERCENT] = ACTIONS(5673), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5673), + [anon_sym_CARET] = ACTIONS(5673), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5673), + [anon_sym_GT_EQ] = ACTIONS(5673), + [anon_sym_LT_EQ] = ACTIONS(5673), + [anon_sym_LT] = ACTIONS(7328), + [anon_sym_LT_LT] = ACTIONS(5673), + [anon_sym_GT_GT] = ACTIONS(5673), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(7332), + [anon_sym_unsigned] = ACTIONS(7332), + [anon_sym_long] = ACTIONS(7332), + [anon_sym_short] = ACTIONS(7332), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(5673), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(5676), + [anon_sym_SLASH_EQ] = ACTIONS(5676), + [anon_sym_PERCENT_EQ] = ACTIONS(5676), + [anon_sym_PLUS_EQ] = ACTIONS(5676), + [anon_sym_DASH_EQ] = ACTIONS(5676), + [anon_sym_LT_LT_EQ] = ACTIONS(5676), + [anon_sym_GT_GT_EQ] = ACTIONS(5673), + [anon_sym_AMP_EQ] = ACTIONS(5676), + [anon_sym_CARET_EQ] = ACTIONS(5676), + [anon_sym_PIPE_EQ] = ACTIONS(5676), + [anon_sym_and_eq] = ACTIONS(5673), + [anon_sym_or_eq] = ACTIONS(5673), + [anon_sym_xor_eq] = ACTIONS(5673), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5673), + [anon_sym_and] = ACTIONS(5673), + [anon_sym_bitor] = ACTIONS(5673), + [anon_sym_xor] = ACTIONS(5673), + [anon_sym_bitand] = ACTIONS(5673), + [anon_sym_not_eq] = ACTIONS(5673), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5673), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [anon_sym_L_DQUOTE] = ACTIONS(7334), + [anon_sym_u_DQUOTE] = ACTIONS(7334), + [anon_sym_U_DQUOTE] = ACTIONS(7334), + [anon_sym_u8_DQUOTE] = ACTIONS(7334), + [anon_sym_DQUOTE] = ACTIONS(7334), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7336), + [anon_sym_decltype] = ACTIONS(7338), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_GT2] = ACTIONS(5676), + [anon_sym_R_DQUOTE] = ACTIONS(7340), + [anon_sym_LR_DQUOTE] = ACTIONS(7340), + [anon_sym_uR_DQUOTE] = ACTIONS(7340), + [anon_sym_UR_DQUOTE] = ACTIONS(7340), + [anon_sym_u8R_DQUOTE] = ACTIONS(7340), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2175)] = { + [sym_type_qualifier] = STATE(2184), + [sym_alignas_qualifier] = STATE(2254), + [aux_sym__type_definition_type_repeat1] = STATE(2184), + [sym_identifier] = ACTIONS(7342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7344), + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_RPAREN] = ACTIONS(7344), + [aux_sym_preproc_if_token2] = ACTIONS(7344), + [aux_sym_preproc_else_token1] = ACTIONS(7344), + [aux_sym_preproc_elif_token1] = ACTIONS(7342), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7344), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7344), + [anon_sym_DASH] = ACTIONS(7342), + [anon_sym_PLUS] = ACTIONS(7342), + [anon_sym_STAR] = ACTIONS(7342), + [anon_sym_SLASH] = ACTIONS(7342), + [anon_sym_PERCENT] = ACTIONS(7342), + [anon_sym_PIPE_PIPE] = ACTIONS(7344), + [anon_sym_AMP_AMP] = ACTIONS(7344), + [anon_sym_PIPE] = ACTIONS(7342), + [anon_sym_CARET] = ACTIONS(7342), + [anon_sym_AMP] = ACTIONS(7342), + [anon_sym_EQ_EQ] = ACTIONS(7344), + [anon_sym_BANG_EQ] = ACTIONS(7344), + [anon_sym_GT] = ACTIONS(7342), + [anon_sym_GT_EQ] = ACTIONS(7344), + [anon_sym_LT_EQ] = ACTIONS(7342), + [anon_sym_LT] = ACTIONS(7342), + [anon_sym_LT_LT] = ACTIONS(7342), + [anon_sym_GT_GT] = ACTIONS(7342), + [anon_sym_SEMI] = ACTIONS(7344), + [anon_sym___extension__] = ACTIONS(6407), + [anon_sym___attribute__] = ACTIONS(7342), + [anon_sym___attribute] = ACTIONS(7342), + [anon_sym_COLON] = ACTIONS(7342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7344), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7344), + [anon_sym_RBRACE] = ACTIONS(7344), + [anon_sym_LBRACK] = ACTIONS(7342), + [anon_sym_EQ] = ACTIONS(7342), + [anon_sym_const] = ACTIONS(6407), + [anon_sym_constexpr] = ACTIONS(6407), + [anon_sym_volatile] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6407), + [anon_sym___restrict__] = ACTIONS(6407), + [anon_sym__Atomic] = ACTIONS(6407), + [anon_sym__Noreturn] = ACTIONS(6407), + [anon_sym_noreturn] = ACTIONS(6407), + [anon_sym__Nonnull] = ACTIONS(6407), + [anon_sym_mutable] = ACTIONS(6407), + [anon_sym_constinit] = ACTIONS(6407), + [anon_sym_consteval] = ACTIONS(6407), + [anon_sym_alignas] = ACTIONS(6413), + [anon_sym__Alignas] = ACTIONS(6413), + [anon_sym_QMARK] = ACTIONS(7344), + [anon_sym_STAR_EQ] = ACTIONS(7344), + [anon_sym_SLASH_EQ] = ACTIONS(7344), + [anon_sym_PERCENT_EQ] = ACTIONS(7344), + [anon_sym_PLUS_EQ] = ACTIONS(7344), + [anon_sym_DASH_EQ] = ACTIONS(7344), + [anon_sym_LT_LT_EQ] = ACTIONS(7344), + [anon_sym_GT_GT_EQ] = ACTIONS(7344), + [anon_sym_AMP_EQ] = ACTIONS(7344), + [anon_sym_CARET_EQ] = ACTIONS(7344), + [anon_sym_PIPE_EQ] = ACTIONS(7344), + [anon_sym_and_eq] = ACTIONS(7342), + [anon_sym_or_eq] = ACTIONS(7342), + [anon_sym_xor_eq] = ACTIONS(7342), + [anon_sym_LT_EQ_GT] = ACTIONS(7344), + [anon_sym_or] = ACTIONS(7342), + [anon_sym_and] = ACTIONS(7342), + [anon_sym_bitor] = ACTIONS(7342), + [anon_sym_xor] = ACTIONS(7342), + [anon_sym_bitand] = ACTIONS(7342), + [anon_sym_not_eq] = ACTIONS(7342), + [anon_sym_DASH_DASH] = ACTIONS(7344), + [anon_sym_PLUS_PLUS] = ACTIONS(7344), + [anon_sym_asm] = ACTIONS(7342), + [anon_sym___asm__] = ACTIONS(7342), + [anon_sym___asm] = ACTIONS(7342), + [anon_sym_DOT] = ACTIONS(7342), + [anon_sym_DOT_STAR] = ACTIONS(7344), + [anon_sym_DASH_GT] = ACTIONS(7344), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7342), + [anon_sym_override] = ACTIONS(7342), + [anon_sym_noexcept] = ACTIONS(7342), + [anon_sym_throw] = ACTIONS(7342), + [anon_sym_requires] = ACTIONS(7342), + [anon_sym_COLON_RBRACK] = ACTIONS(7344), + }, + [STATE(2176)] = { + [sym__abstract_declarator] = STATE(5820), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2760), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2068), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9573), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2760), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6760), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [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(6706), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6602), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6600), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2177)] = { + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_RPAREN] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_TILDE] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6791), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6791), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6791), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6791), + [anon_sym_GT_GT] = ACTIONS(6791), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym_virtual] = ACTIONS(6791), + [anon_sym_extern] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6793), + [anon_sym___declspec] = ACTIONS(6791), + [anon_sym___based] = ACTIONS(6791), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_static] = ACTIONS(6791), + [anon_sym_EQ] = ACTIONS(6791), + [anon_sym_register] = ACTIONS(6791), + [anon_sym_inline] = ACTIONS(6791), + [anon_sym___inline] = ACTIONS(6791), + [anon_sym___inline__] = ACTIONS(6791), + [anon_sym___forceinline] = ACTIONS(6791), + [anon_sym_thread_local] = ACTIONS(6791), + [anon_sym___thread] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_STAR_EQ] = ACTIONS(6793), + [anon_sym_SLASH_EQ] = ACTIONS(6793), + [anon_sym_PERCENT_EQ] = ACTIONS(6793), + [anon_sym_PLUS_EQ] = ACTIONS(6793), + [anon_sym_DASH_EQ] = ACTIONS(6793), + [anon_sym_LT_LT_EQ] = ACTIONS(6793), + [anon_sym_GT_GT_EQ] = ACTIONS(6793), + [anon_sym_AMP_EQ] = ACTIONS(6793), + [anon_sym_CARET_EQ] = ACTIONS(6793), + [anon_sym_PIPE_EQ] = ACTIONS(6793), + [anon_sym_and_eq] = ACTIONS(6791), + [anon_sym_or_eq] = ACTIONS(6791), + [anon_sym_xor_eq] = ACTIONS(6791), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6791), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_operator] = ACTIONS(6791), + [anon_sym_DASH_GT_STAR] = ACTIONS(6793), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), + }, + [STATE(2178)] = { + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_RPAREN] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_TILDE] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6811), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6811), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6811), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6811), + [anon_sym_GT_GT] = ACTIONS(6811), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym_virtual] = ACTIONS(6811), + [anon_sym_extern] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6811), + [anon_sym___based] = ACTIONS(6811), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_static] = ACTIONS(6811), + [anon_sym_EQ] = ACTIONS(6811), + [anon_sym_register] = ACTIONS(6811), + [anon_sym_inline] = ACTIONS(6811), + [anon_sym___inline] = ACTIONS(6811), + [anon_sym___inline__] = ACTIONS(6811), + [anon_sym___forceinline] = ACTIONS(6811), + [anon_sym_thread_local] = ACTIONS(6811), + [anon_sym___thread] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_STAR_EQ] = ACTIONS(6813), + [anon_sym_SLASH_EQ] = ACTIONS(6813), + [anon_sym_PERCENT_EQ] = ACTIONS(6813), + [anon_sym_PLUS_EQ] = ACTIONS(6813), + [anon_sym_DASH_EQ] = ACTIONS(6813), + [anon_sym_LT_LT_EQ] = ACTIONS(6813), + [anon_sym_GT_GT_EQ] = ACTIONS(6813), + [anon_sym_AMP_EQ] = ACTIONS(6813), + [anon_sym_CARET_EQ] = ACTIONS(6813), + [anon_sym_PIPE_EQ] = ACTIONS(6813), + [anon_sym_and_eq] = ACTIONS(6811), + [anon_sym_or_eq] = ACTIONS(6811), + [anon_sym_xor_eq] = ACTIONS(6811), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_operator] = ACTIONS(6811), + [anon_sym_DASH_GT_STAR] = ACTIONS(6813), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), + }, + [STATE(2179)] = { + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_RPAREN] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_TILDE] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6829), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6829), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6829), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6829), + [anon_sym_GT_GT] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym_virtual] = ACTIONS(6829), + [anon_sym_extern] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6831), + [anon_sym___declspec] = ACTIONS(6829), + [anon_sym___based] = ACTIONS(6829), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_static] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_register] = ACTIONS(6829), + [anon_sym_inline] = ACTIONS(6829), + [anon_sym___inline] = ACTIONS(6829), + [anon_sym___inline__] = ACTIONS(6829), + [anon_sym___forceinline] = ACTIONS(6829), + [anon_sym_thread_local] = ACTIONS(6829), + [anon_sym___thread] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_STAR_EQ] = ACTIONS(6831), + [anon_sym_SLASH_EQ] = ACTIONS(6831), + [anon_sym_PERCENT_EQ] = ACTIONS(6831), + [anon_sym_PLUS_EQ] = ACTIONS(6831), + [anon_sym_DASH_EQ] = ACTIONS(6831), + [anon_sym_LT_LT_EQ] = ACTIONS(6831), + [anon_sym_GT_GT_EQ] = ACTIONS(6831), + [anon_sym_AMP_EQ] = ACTIONS(6831), + [anon_sym_CARET_EQ] = ACTIONS(6831), + [anon_sym_PIPE_EQ] = ACTIONS(6831), + [anon_sym_and_eq] = ACTIONS(6829), + [anon_sym_or_eq] = ACTIONS(6829), + [anon_sym_xor_eq] = ACTIONS(6829), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_operator] = ACTIONS(6829), + [anon_sym_DASH_GT_STAR] = ACTIONS(6831), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), + }, + [STATE(2180)] = { + [sym_identifier] = ACTIONS(7346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7348), + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_RPAREN] = ACTIONS(7348), + [aux_sym_preproc_if_token2] = ACTIONS(7348), + [aux_sym_preproc_else_token1] = ACTIONS(7348), + [aux_sym_preproc_elif_token1] = ACTIONS(7346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7348), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7348), + [anon_sym_DASH] = ACTIONS(7346), + [anon_sym_PLUS] = ACTIONS(7346), + [anon_sym_STAR] = ACTIONS(7346), + [anon_sym_SLASH] = ACTIONS(7346), + [anon_sym_PERCENT] = ACTIONS(7346), + [anon_sym_PIPE_PIPE] = ACTIONS(7348), + [anon_sym_AMP_AMP] = ACTIONS(7348), + [anon_sym_PIPE] = ACTIONS(7346), + [anon_sym_CARET] = ACTIONS(7346), + [anon_sym_AMP] = ACTIONS(7346), + [anon_sym_EQ_EQ] = ACTIONS(7348), + [anon_sym_BANG_EQ] = ACTIONS(7348), + [anon_sym_GT] = ACTIONS(7346), + [anon_sym_GT_EQ] = ACTIONS(7348), + [anon_sym_LT_EQ] = ACTIONS(7346), + [anon_sym_LT] = ACTIONS(7346), + [anon_sym_LT_LT] = ACTIONS(7346), + [anon_sym_GT_GT] = ACTIONS(7346), + [anon_sym_SEMI] = ACTIONS(7348), + [anon_sym___extension__] = ACTIONS(7346), + [anon_sym___attribute__] = ACTIONS(7346), + [anon_sym___attribute] = ACTIONS(7346), + [anon_sym_COLON] = ACTIONS(7346), + [anon_sym_COLON_COLON] = ACTIONS(7348), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7348), + [sym_ms_restrict_modifier] = ACTIONS(7346), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7346), + [sym_ms_signed_ptr_modifier] = ACTIONS(7346), + [anon_sym__unaligned] = ACTIONS(7346), + [anon_sym___unaligned] = ACTIONS(7346), + [anon_sym_RBRACE] = ACTIONS(7348), + [anon_sym_LBRACK] = ACTIONS(7346), + [anon_sym_EQ] = ACTIONS(7346), + [anon_sym_const] = ACTIONS(7346), + [anon_sym_constexpr] = ACTIONS(7346), + [anon_sym_volatile] = ACTIONS(7346), + [anon_sym_restrict] = ACTIONS(7346), + [anon_sym___restrict__] = ACTIONS(7346), + [anon_sym__Atomic] = ACTIONS(7346), + [anon_sym__Noreturn] = ACTIONS(7346), + [anon_sym_noreturn] = ACTIONS(7346), + [anon_sym__Nonnull] = ACTIONS(7346), + [anon_sym_mutable] = ACTIONS(7346), + [anon_sym_constinit] = ACTIONS(7346), + [anon_sym_consteval] = ACTIONS(7346), + [anon_sym_alignas] = ACTIONS(7346), + [anon_sym__Alignas] = ACTIONS(7346), + [anon_sym_QMARK] = ACTIONS(7348), + [anon_sym_STAR_EQ] = ACTIONS(7348), + [anon_sym_SLASH_EQ] = ACTIONS(7348), + [anon_sym_PERCENT_EQ] = ACTIONS(7348), + [anon_sym_PLUS_EQ] = ACTIONS(7348), + [anon_sym_DASH_EQ] = ACTIONS(7348), + [anon_sym_LT_LT_EQ] = ACTIONS(7348), + [anon_sym_GT_GT_EQ] = ACTIONS(7348), + [anon_sym_AMP_EQ] = ACTIONS(7348), + [anon_sym_CARET_EQ] = ACTIONS(7348), + [anon_sym_PIPE_EQ] = ACTIONS(7348), + [anon_sym_and_eq] = ACTIONS(7346), + [anon_sym_or_eq] = ACTIONS(7346), + [anon_sym_xor_eq] = ACTIONS(7346), + [anon_sym_LT_EQ_GT] = ACTIONS(7348), + [anon_sym_or] = ACTIONS(7346), + [anon_sym_and] = ACTIONS(7346), + [anon_sym_bitor] = ACTIONS(7346), + [anon_sym_xor] = ACTIONS(7346), + [anon_sym_bitand] = ACTIONS(7346), + [anon_sym_not_eq] = ACTIONS(7346), + [anon_sym_DASH_DASH] = ACTIONS(7348), + [anon_sym_PLUS_PLUS] = ACTIONS(7348), + [anon_sym_DOT] = ACTIONS(7346), + [anon_sym_DOT_STAR] = ACTIONS(7348), + [anon_sym_DASH_GT] = ACTIONS(7348), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7346), + [anon_sym_final] = ACTIONS(7346), + [anon_sym_override] = ACTIONS(7346), + [anon_sym_template] = ACTIONS(7346), + [anon_sym_requires] = ACTIONS(7346), + [anon_sym_LBRACK_COLON] = ACTIONS(7348), + [anon_sym_COLON_RBRACK] = ACTIONS(7348), + }, + [STATE(2181)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_TILDE] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6824), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6824), + [anon_sym_GT_GT] = ACTIONS(6824), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_virtual] = ACTIONS(6815), + [anon_sym_extern] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6822), + [anon_sym___declspec] = ACTIONS(6815), + [anon_sym___based] = ACTIONS(6815), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_static] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_register] = ACTIONS(6815), + [anon_sym_inline] = ACTIONS(6815), + [anon_sym___inline] = ACTIONS(6815), + [anon_sym___inline__] = ACTIONS(6815), + [anon_sym___forceinline] = ACTIONS(6815), + [anon_sym_thread_local] = ACTIONS(6815), + [anon_sym___thread] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6817), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(2182)] = { + [sym_string_literal] = STATE(4489), + [sym_decltype_auto] = STATE(3255), + [sym_template_argument_list] = STATE(5012), + [sym_raw_string_literal] = STATE(4489), + [aux_sym_sized_type_specifier_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5673), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5673), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(7350), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_signed] = ACTIONS(6952), + [anon_sym_unsigned] = ACTIONS(6952), + [anon_sym_long] = ACTIONS(6952), + [anon_sym_short] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(5673), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5697), + [anon_sym_or_eq] = ACTIONS(5697), + [anon_sym_xor_eq] = ACTIONS(5697), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6958), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(2183)] = { + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_RPAREN] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_TILDE] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6803), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym_virtual] = ACTIONS(6803), + [anon_sym_extern] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6805), + [anon_sym___declspec] = ACTIONS(6803), + [anon_sym___based] = ACTIONS(6803), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_static] = ACTIONS(6803), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_register] = ACTIONS(6803), + [anon_sym_inline] = ACTIONS(6803), + [anon_sym___inline] = ACTIONS(6803), + [anon_sym___inline__] = ACTIONS(6803), + [anon_sym___forceinline] = ACTIONS(6803), + [anon_sym_thread_local] = ACTIONS(6803), + [anon_sym___thread] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_STAR_EQ] = ACTIONS(6805), + [anon_sym_SLASH_EQ] = ACTIONS(6805), + [anon_sym_PERCENT_EQ] = ACTIONS(6805), + [anon_sym_PLUS_EQ] = ACTIONS(6805), + [anon_sym_DASH_EQ] = ACTIONS(6805), + [anon_sym_LT_LT_EQ] = ACTIONS(6805), + [anon_sym_GT_GT_EQ] = ACTIONS(6805), + [anon_sym_AMP_EQ] = ACTIONS(6805), + [anon_sym_CARET_EQ] = ACTIONS(6805), + [anon_sym_PIPE_EQ] = ACTIONS(6805), + [anon_sym_and_eq] = ACTIONS(6803), + [anon_sym_or_eq] = ACTIONS(6803), + [anon_sym_xor_eq] = ACTIONS(6803), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_operator] = ACTIONS(6803), + [anon_sym_DASH_GT_STAR] = ACTIONS(6805), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), + }, + [STATE(2184)] = { + [sym_type_qualifier] = STATE(2184), + [sym_alignas_qualifier] = STATE(2254), + [aux_sym__type_definition_type_repeat1] = STATE(2184), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [aux_sym_preproc_if_token2] = ACTIONS(7049), + [aux_sym_preproc_else_token1] = ACTIONS(7049), + [aux_sym_preproc_elif_token1] = ACTIONS(7047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7049), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym_SEMI] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(7353), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON] = ACTIONS(7047), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7049), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7049), + [anon_sym_RBRACE] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(7353), + [anon_sym_constexpr] = ACTIONS(7353), + [anon_sym_volatile] = ACTIONS(7353), + [anon_sym_restrict] = ACTIONS(7353), + [anon_sym___restrict__] = ACTIONS(7353), + [anon_sym__Atomic] = ACTIONS(7353), + [anon_sym__Noreturn] = ACTIONS(7353), + [anon_sym_noreturn] = ACTIONS(7353), + [anon_sym__Nonnull] = ACTIONS(7353), + [anon_sym_mutable] = ACTIONS(7353), + [anon_sym_constinit] = ACTIONS(7353), + [anon_sym_consteval] = ACTIONS(7353), + [anon_sym_alignas] = ACTIONS(7356), + [anon_sym__Alignas] = ACTIONS(7356), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_asm] = ACTIONS(7047), + [anon_sym___asm__] = ACTIONS(7047), + [anon_sym___asm] = ACTIONS(7047), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_noexcept] = ACTIONS(7047), + [anon_sym_throw] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_COLON_RBRACK] = ACTIONS(7049), + }, + [STATE(2185)] = { + [sym__abstract_declarator] = STATE(6047), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2774), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2085), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9653), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2774), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6766), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6768), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6666), + [anon_sym_COLON_COLON] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(5968), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2186)] = { + [sym__abstract_declarator] = STATE(6013), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2193), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2085), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9653), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2193), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6766), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6768), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [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(6666), + [anon_sym_COLON_COLON] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [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(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2187)] = { + [sym_argument_list] = STATE(4271), + [sym_initializer_list] = STATE(4267), + [aux_sym_sized_type_specifier_repeat1] = STATE(2169), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7363), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(2188)] = { + [sym_type_qualifier] = STATE(2184), + [sym_alignas_qualifier] = STATE(2254), + [aux_sym__type_definition_type_repeat1] = STATE(2184), + [sym_identifier] = ACTIONS(7057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [aux_sym_preproc_if_token2] = ACTIONS(7059), + [aux_sym_preproc_else_token1] = ACTIONS(7059), + [aux_sym_preproc_elif_token1] = ACTIONS(7057), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym_SEMI] = ACTIONS(7059), + [anon_sym___extension__] = ACTIONS(6407), + [anon_sym___attribute__] = ACTIONS(7057), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_COLON] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7059), + [anon_sym_RBRACE] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(6407), + [anon_sym_constexpr] = ACTIONS(6407), + [anon_sym_volatile] = ACTIONS(6407), + [anon_sym_restrict] = ACTIONS(6407), + [anon_sym___restrict__] = ACTIONS(6407), + [anon_sym__Atomic] = ACTIONS(6407), + [anon_sym__Noreturn] = ACTIONS(6407), + [anon_sym_noreturn] = ACTIONS(6407), + [anon_sym__Nonnull] = ACTIONS(6407), + [anon_sym_mutable] = ACTIONS(6407), + [anon_sym_constinit] = ACTIONS(6407), + [anon_sym_consteval] = ACTIONS(6407), + [anon_sym_alignas] = ACTIONS(6413), + [anon_sym__Alignas] = ACTIONS(6413), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7057), + [anon_sym_or_eq] = ACTIONS(7057), + [anon_sym_xor_eq] = ACTIONS(7057), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7057), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7057), + [anon_sym_not_eq] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7057), + [anon_sym___asm__] = ACTIONS(7057), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7057), + [anon_sym_override] = ACTIONS(7057), + [anon_sym_noexcept] = ACTIONS(7057), + [anon_sym_throw] = ACTIONS(7057), + [anon_sym_requires] = ACTIONS(7057), + [anon_sym_COLON_RBRACK] = ACTIONS(7059), + }, + [STATE(2189)] = { + [sym__abstract_declarator] = STATE(6035), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2204), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2068), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9573), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2204), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6760), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [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(6706), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [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(6606), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_and_eq] = ACTIONS(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6604), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2190)] = { + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_TILDE] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6799), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6799), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6799), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6799), + [anon_sym_GT_GT] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym_virtual] = ACTIONS(6799), + [anon_sym_extern] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6801), + [anon_sym___declspec] = ACTIONS(6799), + [anon_sym___based] = ACTIONS(6799), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_static] = ACTIONS(6799), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_register] = ACTIONS(6799), + [anon_sym_inline] = ACTIONS(6799), + [anon_sym___inline] = ACTIONS(6799), + [anon_sym___inline__] = ACTIONS(6799), + [anon_sym___forceinline] = ACTIONS(6799), + [anon_sym_thread_local] = ACTIONS(6799), + [anon_sym___thread] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_and_eq] = ACTIONS(6799), + [anon_sym_or_eq] = ACTIONS(6799), + [anon_sym_xor_eq] = ACTIONS(6799), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_operator] = ACTIONS(6799), + [anon_sym_DASH_GT_STAR] = ACTIONS(6801), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), + }, + [STATE(2191)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2169), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), [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), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_RPAREN] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_TILDE] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6807), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6807), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6807), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6807), + [anon_sym_GT_GT] = ACTIONS(6807), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym_virtual] = ACTIONS(6807), + [anon_sym_extern] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6809), + [anon_sym___declspec] = ACTIONS(6807), + [anon_sym___based] = ACTIONS(6807), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_static] = ACTIONS(6807), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_register] = ACTIONS(6807), + [anon_sym_inline] = ACTIONS(6807), + [anon_sym___inline] = ACTIONS(6807), + [anon_sym___inline__] = ACTIONS(6807), + [anon_sym___forceinline] = ACTIONS(6807), + [anon_sym_thread_local] = ACTIONS(6807), + [anon_sym___thread] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [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(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6807), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_operator] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(6809), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), }, [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__abstract_declarator] = STATE(6113), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2774), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2085), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9653), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2774), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6766), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6768), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [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(6666), + [anon_sym_COLON_COLON] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [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(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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(7366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7368), + [anon_sym_COMMA] = ACTIONS(7368), + [anon_sym_RPAREN] = ACTIONS(7368), + [aux_sym_preproc_if_token2] = ACTIONS(7368), + [aux_sym_preproc_else_token1] = ACTIONS(7368), + [aux_sym_preproc_elif_token1] = ACTIONS(7366), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7368), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7368), + [anon_sym_LPAREN2] = ACTIONS(7368), + [anon_sym_DASH] = ACTIONS(7366), + [anon_sym_PLUS] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(7366), + [anon_sym_SLASH] = ACTIONS(7366), + [anon_sym_PERCENT] = ACTIONS(7366), + [anon_sym_PIPE_PIPE] = ACTIONS(7368), + [anon_sym_AMP_AMP] = ACTIONS(7368), + [anon_sym_PIPE] = ACTIONS(7366), + [anon_sym_CARET] = ACTIONS(7366), + [anon_sym_AMP] = ACTIONS(7366), + [anon_sym_EQ_EQ] = ACTIONS(7368), + [anon_sym_BANG_EQ] = ACTIONS(7368), + [anon_sym_GT] = ACTIONS(7366), + [anon_sym_GT_EQ] = ACTIONS(7368), + [anon_sym_LT_EQ] = ACTIONS(7366), + [anon_sym_LT] = ACTIONS(7366), + [anon_sym_LT_LT] = ACTIONS(7366), + [anon_sym_GT_GT] = ACTIONS(7366), + [anon_sym_SEMI] = ACTIONS(7368), + [anon_sym___extension__] = ACTIONS(7366), + [anon_sym___attribute__] = ACTIONS(7366), + [anon_sym___attribute] = ACTIONS(7366), + [anon_sym_COLON] = ACTIONS(7366), + [anon_sym_COLON_COLON] = ACTIONS(7368), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7368), + [sym_ms_restrict_modifier] = ACTIONS(7366), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7366), + [sym_ms_signed_ptr_modifier] = ACTIONS(7366), + [anon_sym__unaligned] = ACTIONS(7366), + [anon_sym___unaligned] = ACTIONS(7366), + [anon_sym_RBRACE] = ACTIONS(7368), + [anon_sym_LBRACK] = ACTIONS(7366), + [anon_sym_EQ] = ACTIONS(7366), + [anon_sym_const] = ACTIONS(7366), + [anon_sym_constexpr] = ACTIONS(7366), + [anon_sym_volatile] = ACTIONS(7366), + [anon_sym_restrict] = ACTIONS(7366), + [anon_sym___restrict__] = ACTIONS(7366), + [anon_sym__Atomic] = ACTIONS(7366), + [anon_sym__Noreturn] = ACTIONS(7366), + [anon_sym_noreturn] = ACTIONS(7366), + [anon_sym__Nonnull] = ACTIONS(7366), + [anon_sym_mutable] = ACTIONS(7366), + [anon_sym_constinit] = ACTIONS(7366), + [anon_sym_consteval] = ACTIONS(7366), + [anon_sym_alignas] = ACTIONS(7366), + [anon_sym__Alignas] = ACTIONS(7366), + [anon_sym_QMARK] = ACTIONS(7368), + [anon_sym_STAR_EQ] = ACTIONS(7368), + [anon_sym_SLASH_EQ] = ACTIONS(7368), + [anon_sym_PERCENT_EQ] = ACTIONS(7368), + [anon_sym_PLUS_EQ] = ACTIONS(7368), + [anon_sym_DASH_EQ] = ACTIONS(7368), + [anon_sym_LT_LT_EQ] = ACTIONS(7368), + [anon_sym_GT_GT_EQ] = ACTIONS(7368), + [anon_sym_AMP_EQ] = ACTIONS(7368), + [anon_sym_CARET_EQ] = ACTIONS(7368), + [anon_sym_PIPE_EQ] = ACTIONS(7368), + [anon_sym_and_eq] = ACTIONS(7366), + [anon_sym_or_eq] = ACTIONS(7366), + [anon_sym_xor_eq] = ACTIONS(7366), + [anon_sym_LT_EQ_GT] = ACTIONS(7368), + [anon_sym_or] = ACTIONS(7366), + [anon_sym_and] = ACTIONS(7366), + [anon_sym_bitor] = ACTIONS(7366), + [anon_sym_xor] = ACTIONS(7366), + [anon_sym_bitand] = ACTIONS(7366), + [anon_sym_not_eq] = ACTIONS(7366), + [anon_sym_DASH_DASH] = ACTIONS(7368), + [anon_sym_PLUS_PLUS] = ACTIONS(7368), + [anon_sym_DOT] = ACTIONS(7366), + [anon_sym_DOT_STAR] = ACTIONS(7368), + [anon_sym_DASH_GT] = ACTIONS(7368), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7366), + [anon_sym_final] = ACTIONS(7366), + [anon_sym_override] = ACTIONS(7366), + [anon_sym_template] = ACTIONS(7366), + [anon_sym_requires] = ACTIONS(7366), + [anon_sym_LBRACK_COLON] = ACTIONS(7368), + [anon_sym_COLON_RBRACK] = ACTIONS(7368), }, [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__abstract_declarator] = STATE(6108), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2774), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2085), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9653), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2774), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6766), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6768), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [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(6666), + [anon_sym_COLON_COLON] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(6600), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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__abstract_declarator] = STATE(5907), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2198), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2085), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9653), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2198), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6766), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6768), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [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(6666), + [anon_sym_COLON_COLON] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(6604), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [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(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(5800), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2760), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2068), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9573), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2760), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6760), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [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(6706), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [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(6614), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_and_eq] = ACTIONS(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(5999), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_type_qualifier] = STATE(2774), + [sym_alignas_qualifier] = STATE(3089), + [sym_parameter_list] = STATE(2085), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9653), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2774), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6766), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6768), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6666), + [anon_sym_COLON_COLON] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(6666), + [anon_sym_constexpr] = ACTIONS(6666), + [anon_sym_volatile] = ACTIONS(6666), + [anon_sym_restrict] = ACTIONS(6666), + [anon_sym___restrict__] = ACTIONS(6666), + [anon_sym__Atomic] = ACTIONS(6666), + [anon_sym__Noreturn] = ACTIONS(6666), + [anon_sym_noreturn] = ACTIONS(6666), + [anon_sym__Nonnull] = ACTIONS(6666), + [anon_sym_mutable] = ACTIONS(6666), + [anon_sym_constinit] = ACTIONS(6666), + [anon_sym_consteval] = ACTIONS(6666), + [anon_sym_alignas] = ACTIONS(6676), + [anon_sym__Alignas] = ACTIONS(6676), + [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(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_attribute_specifier] = STATE(2305), + [sym_field_declaration_list] = STATE(2288), + [sym_virtual_specifier] = STATE(10721), + [sym_base_class_clause] = STATE(11754), + [sym_identifier] = ACTIONS(7370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(7372), + [anon_sym_RPAREN] = ACTIONS(7372), + [aux_sym_preproc_if_token2] = ACTIONS(7372), + [aux_sym_preproc_else_token1] = ACTIONS(7372), + [aux_sym_preproc_elif_token1] = ACTIONS(7370), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7372), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7372), + [anon_sym_LPAREN2] = ACTIONS(7372), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_STAR] = ACTIONS(7370), + [anon_sym_SLASH] = ACTIONS(7370), + [anon_sym_PERCENT] = ACTIONS(7370), + [anon_sym_PIPE_PIPE] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7372), + [anon_sym_PIPE] = ACTIONS(7370), + [anon_sym_CARET] = ACTIONS(7370), + [anon_sym_AMP] = ACTIONS(7370), + [anon_sym_EQ_EQ] = ACTIONS(7372), + [anon_sym_BANG_EQ] = ACTIONS(7372), + [anon_sym_GT] = ACTIONS(7370), + [anon_sym_GT_EQ] = ACTIONS(7372), + [anon_sym_LT_EQ] = ACTIONS(7370), + [anon_sym_LT] = ACTIONS(7370), + [anon_sym_LT_LT] = ACTIONS(7370), + [anon_sym_GT_GT] = ACTIONS(7370), + [anon_sym_SEMI] = ACTIONS(7372), + [anon_sym___extension__] = ACTIONS(7370), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7372), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7372), + [anon_sym_LBRACE] = ACTIONS(7378), + [anon_sym_RBRACE] = ACTIONS(7372), + [anon_sym_LBRACK] = ACTIONS(7370), + [anon_sym_EQ] = ACTIONS(7370), + [anon_sym_const] = ACTIONS(7370), + [anon_sym_constexpr] = ACTIONS(7370), + [anon_sym_volatile] = ACTIONS(7370), + [anon_sym_restrict] = ACTIONS(7370), + [anon_sym___restrict__] = ACTIONS(7370), + [anon_sym__Atomic] = ACTIONS(7370), + [anon_sym__Noreturn] = ACTIONS(7370), + [anon_sym_noreturn] = ACTIONS(7370), + [anon_sym__Nonnull] = ACTIONS(7370), + [anon_sym_mutable] = ACTIONS(7370), + [anon_sym_constinit] = ACTIONS(7370), + [anon_sym_consteval] = ACTIONS(7370), + [anon_sym_alignas] = ACTIONS(7370), + [anon_sym__Alignas] = ACTIONS(7370), + [anon_sym_QMARK] = ACTIONS(7372), + [anon_sym_STAR_EQ] = ACTIONS(7372), + [anon_sym_SLASH_EQ] = ACTIONS(7372), + [anon_sym_PERCENT_EQ] = ACTIONS(7372), + [anon_sym_PLUS_EQ] = ACTIONS(7372), + [anon_sym_DASH_EQ] = ACTIONS(7372), + [anon_sym_LT_LT_EQ] = ACTIONS(7372), + [anon_sym_GT_GT_EQ] = ACTIONS(7372), + [anon_sym_AMP_EQ] = ACTIONS(7372), + [anon_sym_CARET_EQ] = ACTIONS(7372), + [anon_sym_PIPE_EQ] = ACTIONS(7372), + [anon_sym_and_eq] = ACTIONS(7370), + [anon_sym_or_eq] = ACTIONS(7370), + [anon_sym_xor_eq] = ACTIONS(7370), + [anon_sym_LT_EQ_GT] = ACTIONS(7372), + [anon_sym_or] = ACTIONS(7370), + [anon_sym_and] = ACTIONS(7370), + [anon_sym_bitor] = ACTIONS(7370), + [anon_sym_xor] = ACTIONS(7370), + [anon_sym_bitand] = ACTIONS(7370), + [anon_sym_not_eq] = ACTIONS(7370), + [anon_sym_DASH_DASH] = ACTIONS(7372), + [anon_sym_PLUS_PLUS] = ACTIONS(7372), + [anon_sym_DOT] = ACTIONS(7370), + [anon_sym_DOT_STAR] = ACTIONS(7372), + [anon_sym_DASH_GT] = ACTIONS(7372), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7370), + [anon_sym_final] = ACTIONS(7380), + [anon_sym_override] = ACTIONS(7380), + [anon_sym_template] = ACTIONS(7370), + [anon_sym_requires] = ACTIONS(7370), + [anon_sym_LBRACK_COLON] = ACTIONS(7372), + [anon_sym_COLON_RBRACK] = ACTIONS(7372), }, [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__abstract_declarator] = STATE(5933), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2197), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2068), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9573), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2197), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6760), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [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(6706), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [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(6610), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_and_eq] = ACTIONS(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_template_argument_list] = STATE(2208), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_RPAREN] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_TILDE] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6783), + [anon_sym_PERCENT] = ACTIONS(6783), + [anon_sym_PIPE_PIPE] = ACTIONS(6776), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6783), + [anon_sym_CARET] = ACTIONS(6783), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6776), + [anon_sym_BANG_EQ] = ACTIONS(6776), + [anon_sym_GT] = ACTIONS(6783), + [anon_sym_GT_EQ] = ACTIONS(6776), + [anon_sym_LT_EQ] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(6788), + [anon_sym_LT_LT] = ACTIONS(6783), + [anon_sym_GT_GT] = ACTIONS(6783), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_virtual] = ACTIONS(6774), + [anon_sym_extern] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6781), + [anon_sym___declspec] = ACTIONS(6774), + [anon_sym___based] = ACTIONS(6774), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_static] = ACTIONS(6774), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_register] = ACTIONS(6774), + [anon_sym_inline] = ACTIONS(6774), + [anon_sym___inline] = ACTIONS(6774), + [anon_sym___inline__] = ACTIONS(6774), + [anon_sym___forceinline] = ACTIONS(6774), + [anon_sym_thread_local] = ACTIONS(6774), + [anon_sym___thread] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6776), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6776), + [anon_sym_or] = ACTIONS(6783), + [anon_sym_and] = ACTIONS(6783), + [anon_sym_bitor] = ACTIONS(6783), + [anon_sym_xor] = ACTIONS(6783), + [anon_sym_bitand] = ACTIONS(6783), + [anon_sym_not_eq] = ACTIONS(6783), + [anon_sym_DASH_DASH] = ACTIONS(6776), + [anon_sym_PLUS_PLUS] = ACTIONS(6776), + [anon_sym_DOT] = ACTIONS(6783), + [anon_sym_DOT_STAR] = ACTIONS(6776), + [anon_sym_DASH_GT] = ACTIONS(6776), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_operator] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, [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__abstract_declarator] = STATE(6020), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2760), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2068), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9573), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2760), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6760), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6706), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5970), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_and_eq] = ACTIONS(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_TILDE] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6795), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6795), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6795), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6795), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym_virtual] = ACTIONS(6795), + [anon_sym_extern] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6797), + [anon_sym___declspec] = ACTIONS(6795), + [anon_sym___based] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_static] = ACTIONS(6795), + [anon_sym_EQ] = ACTIONS(6795), + [anon_sym_register] = ACTIONS(6795), + [anon_sym_inline] = ACTIONS(6795), + [anon_sym___inline] = ACTIONS(6795), + [anon_sym___inline__] = ACTIONS(6795), + [anon_sym___forceinline] = ACTIONS(6795), + [anon_sym_thread_local] = ACTIONS(6795), + [anon_sym___thread] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_STAR_EQ] = ACTIONS(6797), + [anon_sym_SLASH_EQ] = ACTIONS(6797), + [anon_sym_PERCENT_EQ] = ACTIONS(6797), + [anon_sym_PLUS_EQ] = ACTIONS(6797), + [anon_sym_DASH_EQ] = ACTIONS(6797), + [anon_sym_LT_LT_EQ] = ACTIONS(6797), + [anon_sym_GT_GT_EQ] = ACTIONS(6797), + [anon_sym_AMP_EQ] = ACTIONS(6797), + [anon_sym_CARET_EQ] = ACTIONS(6797), + [anon_sym_PIPE_EQ] = ACTIONS(6797), + [anon_sym_and_eq] = ACTIONS(6795), + [anon_sym_or_eq] = ACTIONS(6795), + [anon_sym_xor_eq] = ACTIONS(6795), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_operator] = ACTIONS(6795), + [anon_sym_DASH_GT_STAR] = ACTIONS(6797), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), }, [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), + [sym__abstract_declarator] = STATE(5915), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_type_qualifier] = STATE(2760), + [sym_alignas_qualifier] = STATE(3075), + [sym_parameter_list] = STATE(2068), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9573), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2760), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6760), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6706), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(6706), + [anon_sym_constexpr] = ACTIONS(6706), + [anon_sym_volatile] = ACTIONS(6706), + [anon_sym_restrict] = ACTIONS(6706), + [anon_sym___restrict__] = ACTIONS(6706), + [anon_sym__Atomic] = ACTIONS(6706), + [anon_sym__Noreturn] = ACTIONS(6706), + [anon_sym_noreturn] = ACTIONS(6706), + [anon_sym__Nonnull] = ACTIONS(6706), + [anon_sym_mutable] = ACTIONS(6706), + [anon_sym_constinit] = ACTIONS(6706), + [anon_sym_consteval] = ACTIONS(6706), + [anon_sym_alignas] = ACTIONS(6716), + [anon_sym__Alignas] = ACTIONS(6716), + [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(6618), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_and_eq] = ACTIONS(6618), + [anon_sym_or_eq] = ACTIONS(6618), + [anon_sym_xor_eq] = ACTIONS(6618), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2558), + [sym__abstract_declarator] = STATE(7152), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2438), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2457), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9550), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2438), + [aux_sym_pointer_declarator_repeat1] = STATE(2558), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7382), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7384), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7386), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(7388), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_COLON_RBRACK] = ACTIONS(6598), + [sym_attribute_specifier] = STATE(2293), + [sym_enumerator_list] = STATE(2271), + [sym__enum_base_clause] = STATE(2216), + [sym_identifier] = ACTIONS(7390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(7392), + [anon_sym_RPAREN] = ACTIONS(7392), + [aux_sym_preproc_if_token2] = ACTIONS(7392), + [aux_sym_preproc_else_token1] = ACTIONS(7392), + [aux_sym_preproc_elif_token1] = ACTIONS(7390), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7392), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7392), + [anon_sym_LPAREN2] = ACTIONS(7392), + [anon_sym_DASH] = ACTIONS(7390), + [anon_sym_PLUS] = ACTIONS(7390), + [anon_sym_STAR] = ACTIONS(7390), + [anon_sym_SLASH] = ACTIONS(7390), + [anon_sym_PERCENT] = ACTIONS(7390), + [anon_sym_PIPE_PIPE] = ACTIONS(7392), + [anon_sym_AMP_AMP] = ACTIONS(7392), + [anon_sym_PIPE] = ACTIONS(7390), + [anon_sym_CARET] = ACTIONS(7390), + [anon_sym_AMP] = ACTIONS(7390), + [anon_sym_EQ_EQ] = ACTIONS(7392), + [anon_sym_BANG_EQ] = ACTIONS(7392), + [anon_sym_GT] = ACTIONS(7390), + [anon_sym_GT_EQ] = ACTIONS(7392), + [anon_sym_LT_EQ] = ACTIONS(7390), + [anon_sym_LT] = ACTIONS(7390), + [anon_sym_LT_LT] = ACTIONS(7390), + [anon_sym_GT_GT] = ACTIONS(7390), + [anon_sym_SEMI] = ACTIONS(7392), + [anon_sym___extension__] = ACTIONS(7390), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7394), + [anon_sym_COLON_COLON] = ACTIONS(7392), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7392), + [anon_sym_LBRACE] = ACTIONS(7396), + [anon_sym_RBRACE] = ACTIONS(7392), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym_EQ] = ACTIONS(7390), + [anon_sym_const] = ACTIONS(7390), + [anon_sym_constexpr] = ACTIONS(7390), + [anon_sym_volatile] = ACTIONS(7390), + [anon_sym_restrict] = ACTIONS(7390), + [anon_sym___restrict__] = ACTIONS(7390), + [anon_sym__Atomic] = ACTIONS(7390), + [anon_sym__Noreturn] = ACTIONS(7390), + [anon_sym_noreturn] = ACTIONS(7390), + [anon_sym__Nonnull] = ACTIONS(7390), + [anon_sym_mutable] = ACTIONS(7390), + [anon_sym_constinit] = ACTIONS(7390), + [anon_sym_consteval] = ACTIONS(7390), + [anon_sym_alignas] = ACTIONS(7390), + [anon_sym__Alignas] = ACTIONS(7390), + [anon_sym_QMARK] = ACTIONS(7392), + [anon_sym_STAR_EQ] = ACTIONS(7392), + [anon_sym_SLASH_EQ] = ACTIONS(7392), + [anon_sym_PERCENT_EQ] = ACTIONS(7392), + [anon_sym_PLUS_EQ] = ACTIONS(7392), + [anon_sym_DASH_EQ] = ACTIONS(7392), + [anon_sym_LT_LT_EQ] = ACTIONS(7392), + [anon_sym_GT_GT_EQ] = ACTIONS(7392), + [anon_sym_AMP_EQ] = ACTIONS(7392), + [anon_sym_CARET_EQ] = ACTIONS(7392), + [anon_sym_PIPE_EQ] = ACTIONS(7392), + [anon_sym_and_eq] = ACTIONS(7390), + [anon_sym_or_eq] = ACTIONS(7390), + [anon_sym_xor_eq] = ACTIONS(7390), + [anon_sym_LT_EQ_GT] = ACTIONS(7392), + [anon_sym_or] = ACTIONS(7390), + [anon_sym_and] = ACTIONS(7390), + [anon_sym_bitor] = ACTIONS(7390), + [anon_sym_xor] = ACTIONS(7390), + [anon_sym_bitand] = ACTIONS(7390), + [anon_sym_not_eq] = ACTIONS(7390), + [anon_sym_DASH_DASH] = ACTIONS(7392), + [anon_sym_PLUS_PLUS] = ACTIONS(7392), + [anon_sym_DOT] = ACTIONS(7390), + [anon_sym_DOT_STAR] = ACTIONS(7392), + [anon_sym_DASH_GT] = ACTIONS(7392), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7390), + [anon_sym_final] = ACTIONS(7390), + [anon_sym_override] = ACTIONS(7390), + [anon_sym_template] = ACTIONS(7390), + [anon_sym_requires] = ACTIONS(7390), + [anon_sym_LBRACK_COLON] = ACTIONS(7392), + [anon_sym_COLON_RBRACK] = ACTIONS(7392), }, [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_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2205), + [sym__abstract_declarator] = STATE(7146), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2431), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2457), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9550), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2431), + [aux_sym_pointer_declarator_repeat1] = STATE(2205), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(7382), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(7384), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(7386), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(7388), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_TILDE] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6824), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6824), + [anon_sym_GT_GT] = ACTIONS(6824), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_virtual] = ACTIONS(6815), + [anon_sym_extern] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6822), + [anon_sym___declspec] = ACTIONS(6815), + [anon_sym___based] = ACTIONS(6815), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_static] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_register] = ACTIONS(6815), + [anon_sym_inline] = ACTIONS(6815), + [anon_sym___inline] = ACTIONS(6815), + [anon_sym___inline__] = ACTIONS(6815), + [anon_sym___forceinline] = ACTIONS(6815), + [anon_sym_thread_local] = ACTIONS(6815), + [anon_sym___thread] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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_attribute_specifier] = STATE(2209), + [aux_sym_type_definition_repeat1] = STATE(2209), + [sym_identifier] = ACTIONS(7398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7400), + [anon_sym_COMMA] = ACTIONS(7400), + [anon_sym_RPAREN] = ACTIONS(7400), + [aux_sym_preproc_if_token2] = ACTIONS(7400), + [aux_sym_preproc_else_token1] = ACTIONS(7400), + [aux_sym_preproc_elif_token1] = ACTIONS(7398), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7400), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7400), + [anon_sym_LPAREN2] = ACTIONS(7400), + [anon_sym_DASH] = ACTIONS(7398), + [anon_sym_PLUS] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7398), + [anon_sym_SLASH] = ACTIONS(7398), + [anon_sym_PERCENT] = ACTIONS(7398), + [anon_sym_PIPE_PIPE] = ACTIONS(7400), + [anon_sym_AMP_AMP] = ACTIONS(7400), + [anon_sym_PIPE] = ACTIONS(7398), + [anon_sym_CARET] = ACTIONS(7398), + [anon_sym_AMP] = ACTIONS(7398), + [anon_sym_EQ_EQ] = ACTIONS(7400), + [anon_sym_BANG_EQ] = ACTIONS(7400), + [anon_sym_GT] = ACTIONS(7398), + [anon_sym_GT_EQ] = ACTIONS(7400), + [anon_sym_LT_EQ] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(7398), + [anon_sym_LT_LT] = ACTIONS(7398), + [anon_sym_GT_GT] = ACTIONS(7398), + [anon_sym_SEMI] = ACTIONS(7400), + [anon_sym___extension__] = ACTIONS(7398), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_COLON] = ACTIONS(7398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7400), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7400), + [anon_sym_RBRACE] = ACTIONS(7400), + [anon_sym_LBRACK] = ACTIONS(7398), + [anon_sym_EQ] = ACTIONS(7398), + [anon_sym_const] = ACTIONS(7398), + [anon_sym_constexpr] = ACTIONS(7398), + [anon_sym_volatile] = ACTIONS(7398), + [anon_sym_restrict] = ACTIONS(7398), + [anon_sym___restrict__] = ACTIONS(7398), + [anon_sym__Atomic] = ACTIONS(7398), + [anon_sym__Noreturn] = ACTIONS(7398), + [anon_sym_noreturn] = ACTIONS(7398), + [anon_sym__Nonnull] = ACTIONS(7398), + [anon_sym_mutable] = ACTIONS(7398), + [anon_sym_constinit] = ACTIONS(7398), + [anon_sym_consteval] = ACTIONS(7398), + [anon_sym_alignas] = ACTIONS(7398), + [anon_sym__Alignas] = ACTIONS(7398), + [anon_sym_QMARK] = ACTIONS(7400), + [anon_sym_STAR_EQ] = ACTIONS(7400), + [anon_sym_SLASH_EQ] = ACTIONS(7400), + [anon_sym_PERCENT_EQ] = ACTIONS(7400), + [anon_sym_PLUS_EQ] = ACTIONS(7400), + [anon_sym_DASH_EQ] = ACTIONS(7400), + [anon_sym_LT_LT_EQ] = ACTIONS(7400), + [anon_sym_GT_GT_EQ] = ACTIONS(7400), + [anon_sym_AMP_EQ] = ACTIONS(7400), + [anon_sym_CARET_EQ] = ACTIONS(7400), + [anon_sym_PIPE_EQ] = ACTIONS(7400), + [anon_sym_and_eq] = ACTIONS(7398), + [anon_sym_or_eq] = ACTIONS(7398), + [anon_sym_xor_eq] = ACTIONS(7398), + [anon_sym_LT_EQ_GT] = ACTIONS(7400), + [anon_sym_or] = ACTIONS(7398), + [anon_sym_and] = ACTIONS(7398), + [anon_sym_bitor] = ACTIONS(7398), + [anon_sym_xor] = ACTIONS(7398), + [anon_sym_bitand] = ACTIONS(7398), + [anon_sym_not_eq] = ACTIONS(7398), + [anon_sym_DASH_DASH] = ACTIONS(7400), + [anon_sym_PLUS_PLUS] = ACTIONS(7400), + [anon_sym_asm] = ACTIONS(7398), + [anon_sym___asm__] = ACTIONS(7398), + [anon_sym___asm] = ACTIONS(7398), + [anon_sym_DOT] = ACTIONS(7398), + [anon_sym_DOT_STAR] = ACTIONS(7400), + [anon_sym_DASH_GT] = ACTIONS(7400), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7398), + [anon_sym_override] = ACTIONS(7398), + [anon_sym_noexcept] = ACTIONS(7398), + [anon_sym_throw] = ACTIONS(7398), + [anon_sym_requires] = ACTIONS(7398), + [anon_sym_COLON_RBRACK] = ACTIONS(7400), }, [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_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2558), + [sym__abstract_declarator] = STATE(7088), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2432), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2278), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9646), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2432), + [aux_sym_pointer_declarator_repeat1] = STATE(2558), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7405), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7407), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7409), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(7411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5968), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5968), }, [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), + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2210), + [sym__abstract_declarator] = STATE(7142), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2486), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2278), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9646), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2486), + [aux_sym_pointer_declarator_repeat1] = STATE(2210), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(7405), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(7407), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(7409), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(7411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5994), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_RBRACE] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5994), }, [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_attribute_specifier] = STATE(2303), + [sym_enumerator_list] = STATE(2274), + [sym__enum_base_clause] = STATE(2213), + [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(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7394), + [anon_sym_COLON_COLON] = ACTIONS(7415), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7415), + [anon_sym_LBRACE] = ACTIONS(7396), + [anon_sym_RBRACE] = ACTIONS(7415), + [anon_sym_LBRACK] = ACTIONS(7413), + [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_decltype] = ACTIONS(7413), + [anon_sym_final] = ACTIONS(7413), + [anon_sym_override] = ACTIONS(7413), + [anon_sym_template] = ACTIONS(7413), + [anon_sym_requires] = ACTIONS(7413), + [anon_sym_LBRACK_COLON] = ACTIONS(7415), + [anon_sym_COLON_RBRACK] = ACTIONS(7415), }, [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_attribute_specifier] = STATE(2325), + [sym_enumerator_list] = STATE(2292), + [sym_identifier] = ACTIONS(7417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7419), + [anon_sym_COMMA] = ACTIONS(7419), + [anon_sym_RPAREN] = ACTIONS(7419), + [aux_sym_preproc_if_token2] = ACTIONS(7419), + [aux_sym_preproc_else_token1] = ACTIONS(7419), + [aux_sym_preproc_elif_token1] = ACTIONS(7417), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7419), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7419), + [anon_sym_LPAREN2] = ACTIONS(7419), + [anon_sym_DASH] = ACTIONS(7417), + [anon_sym_PLUS] = ACTIONS(7417), + [anon_sym_STAR] = ACTIONS(7417), + [anon_sym_SLASH] = ACTIONS(7417), + [anon_sym_PERCENT] = ACTIONS(7417), + [anon_sym_PIPE_PIPE] = ACTIONS(7419), + [anon_sym_AMP_AMP] = ACTIONS(7419), + [anon_sym_PIPE] = ACTIONS(7417), + [anon_sym_CARET] = ACTIONS(7417), + [anon_sym_AMP] = ACTIONS(7417), + [anon_sym_EQ_EQ] = ACTIONS(7419), + [anon_sym_BANG_EQ] = ACTIONS(7419), + [anon_sym_GT] = ACTIONS(7417), + [anon_sym_GT_EQ] = ACTIONS(7419), + [anon_sym_LT_EQ] = ACTIONS(7417), + [anon_sym_LT] = ACTIONS(7417), + [anon_sym_LT_LT] = ACTIONS(7417), + [anon_sym_GT_GT] = ACTIONS(7417), + [anon_sym_SEMI] = ACTIONS(7419), + [anon_sym___extension__] = ACTIONS(7417), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7417), + [anon_sym_COLON_COLON] = ACTIONS(7419), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7419), + [anon_sym_LBRACE] = ACTIONS(7396), + [anon_sym_RBRACE] = ACTIONS(7419), + [anon_sym_LBRACK] = ACTIONS(7417), + [anon_sym_EQ] = ACTIONS(7417), + [anon_sym_const] = ACTIONS(7417), + [anon_sym_constexpr] = ACTIONS(7417), + [anon_sym_volatile] = ACTIONS(7417), + [anon_sym_restrict] = ACTIONS(7417), + [anon_sym___restrict__] = ACTIONS(7417), + [anon_sym__Atomic] = ACTIONS(7417), + [anon_sym__Noreturn] = ACTIONS(7417), + [anon_sym_noreturn] = ACTIONS(7417), + [anon_sym__Nonnull] = ACTIONS(7417), + [anon_sym_mutable] = ACTIONS(7417), + [anon_sym_constinit] = ACTIONS(7417), + [anon_sym_consteval] = ACTIONS(7417), + [anon_sym_alignas] = ACTIONS(7417), + [anon_sym__Alignas] = ACTIONS(7417), + [anon_sym_QMARK] = ACTIONS(7419), + [anon_sym_STAR_EQ] = ACTIONS(7419), + [anon_sym_SLASH_EQ] = ACTIONS(7419), + [anon_sym_PERCENT_EQ] = ACTIONS(7419), + [anon_sym_PLUS_EQ] = ACTIONS(7419), + [anon_sym_DASH_EQ] = ACTIONS(7419), + [anon_sym_LT_LT_EQ] = ACTIONS(7419), + [anon_sym_GT_GT_EQ] = ACTIONS(7419), + [anon_sym_AMP_EQ] = ACTIONS(7419), + [anon_sym_CARET_EQ] = ACTIONS(7419), + [anon_sym_PIPE_EQ] = ACTIONS(7419), + [anon_sym_and_eq] = ACTIONS(7417), + [anon_sym_or_eq] = ACTIONS(7417), + [anon_sym_xor_eq] = ACTIONS(7417), + [anon_sym_LT_EQ_GT] = ACTIONS(7419), + [anon_sym_or] = ACTIONS(7417), + [anon_sym_and] = ACTIONS(7417), + [anon_sym_bitor] = ACTIONS(7417), + [anon_sym_xor] = ACTIONS(7417), + [anon_sym_bitand] = ACTIONS(7417), + [anon_sym_not_eq] = ACTIONS(7417), + [anon_sym_DASH_DASH] = ACTIONS(7419), + [anon_sym_PLUS_PLUS] = ACTIONS(7419), + [anon_sym_DOT] = ACTIONS(7417), + [anon_sym_DOT_STAR] = ACTIONS(7419), + [anon_sym_DASH_GT] = ACTIONS(7419), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7417), + [anon_sym_final] = ACTIONS(7417), + [anon_sym_override] = ACTIONS(7417), + [anon_sym_template] = ACTIONS(7417), + [anon_sym_requires] = ACTIONS(7417), + [anon_sym_LBRACK_COLON] = ACTIONS(7419), + [anon_sym_COLON_RBRACK] = ACTIONS(7419), }, [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__abstract_declarator] = STATE(6487), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2924), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2116), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9528), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6847), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(6849), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6851), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [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(6746), + [anon_sym_COLON_COLON] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_STAR_EQ] = ACTIONS(6600), + [anon_sym_SLASH_EQ] = ACTIONS(6600), + [anon_sym_PERCENT_EQ] = ACTIONS(6600), + [anon_sym_PLUS_EQ] = ACTIONS(6600), + [anon_sym_DASH_EQ] = ACTIONS(6600), + [anon_sym_LT_LT_EQ] = ACTIONS(6600), + [anon_sym_GT_GT_EQ] = ACTIONS(6600), + [anon_sym_AMP_EQ] = ACTIONS(6600), + [anon_sym_CARET_EQ] = ACTIONS(6600), + [anon_sym_PIPE_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(6600), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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__abstract_declarator] = STATE(6446), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2223), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2116), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9528), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2223), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6847), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6849), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6851), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [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(6746), + [anon_sym_COLON_COLON] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [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(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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6606), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(6604), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_attribute_specifier] = STATE(2311), + [sym_enumerator_list] = STATE(2282), + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_RPAREN] = ACTIONS(7423), + [aux_sym_preproc_if_token2] = ACTIONS(7423), + [aux_sym_preproc_else_token1] = ACTIONS(7423), + [aux_sym_preproc_elif_token1] = ACTIONS(7421), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7423), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym_SEMI] = ACTIONS(7423), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7421), + [anon_sym_COLON_COLON] = ACTIONS(7423), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(7396), + [anon_sym_RBRACE] = ACTIONS(7423), + [anon_sym_LBRACK] = ACTIONS(7421), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7423), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_and_eq] = ACTIONS(7421), + [anon_sym_or_eq] = ACTIONS(7421), + [anon_sym_xor_eq] = ACTIONS(7421), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7421), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_template] = ACTIONS(7421), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_LBRACK_COLON] = ACTIONS(7423), + [anon_sym_COLON_RBRACK] = ACTIONS(7423), }, [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_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7713), - [anon_sym_override] = ACTIONS(7713), - [anon_sym_requires] = ACTIONS(7713), + [sym_template_argument_list] = STATE(2253), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6781), + [anon_sym_RPAREN] = ACTIONS(6781), + [aux_sym_preproc_if_token2] = ACTIONS(6781), + [aux_sym_preproc_else_token1] = ACTIONS(6781), + [aux_sym_preproc_elif_token1] = ACTIONS(6774), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6781), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6781), + [anon_sym_LPAREN2] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6774), + [anon_sym_PLUS] = ACTIONS(6774), + [anon_sym_STAR] = ACTIONS(6774), + [anon_sym_SLASH] = ACTIONS(6774), + [anon_sym_PERCENT] = ACTIONS(6774), + [anon_sym_PIPE_PIPE] = ACTIONS(6781), + [anon_sym_AMP_AMP] = ACTIONS(6781), + [anon_sym_PIPE] = ACTIONS(6774), + [anon_sym_CARET] = ACTIONS(6774), + [anon_sym_AMP] = ACTIONS(6774), + [anon_sym_EQ_EQ] = ACTIONS(6781), + [anon_sym_BANG_EQ] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(6774), + [anon_sym_GT_EQ] = ACTIONS(6781), + [anon_sym_LT_EQ] = ACTIONS(6774), + [anon_sym_LT] = ACTIONS(7425), + [anon_sym_LT_LT] = ACTIONS(6774), + [anon_sym_GT_GT] = ACTIONS(6774), + [anon_sym_SEMI] = ACTIONS(6781), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6781), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_RBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6774), + [anon_sym_EQ] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_STAR_EQ] = ACTIONS(6781), + [anon_sym_SLASH_EQ] = ACTIONS(6781), + [anon_sym_PERCENT_EQ] = ACTIONS(6781), + [anon_sym_PLUS_EQ] = ACTIONS(6781), + [anon_sym_DASH_EQ] = ACTIONS(6781), + [anon_sym_LT_LT_EQ] = ACTIONS(6781), + [anon_sym_GT_GT_EQ] = ACTIONS(6781), + [anon_sym_AMP_EQ] = ACTIONS(6781), + [anon_sym_CARET_EQ] = ACTIONS(6781), + [anon_sym_PIPE_EQ] = ACTIONS(6781), + [anon_sym_and_eq] = ACTIONS(6774), + [anon_sym_or_eq] = ACTIONS(6774), + [anon_sym_xor_eq] = ACTIONS(6774), + [anon_sym_LT_EQ_GT] = ACTIONS(6781), + [anon_sym_or] = ACTIONS(6774), + [anon_sym_and] = ACTIONS(6774), + [anon_sym_bitor] = ACTIONS(6774), + [anon_sym_xor] = ACTIONS(6774), + [anon_sym_bitand] = ACTIONS(6774), + [anon_sym_not_eq] = ACTIONS(6774), + [anon_sym_DASH_DASH] = ACTIONS(6781), + [anon_sym_PLUS_PLUS] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(6774), + [anon_sym_DOT_STAR] = ACTIONS(6781), + [anon_sym_DASH_GT] = ACTIONS(6781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_final] = ACTIONS(6774), + [anon_sym_override] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_requires] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + [anon_sym_COLON_RBRACK] = ACTIONS(6781), }, [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), + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2219), + [sym__abstract_declarator] = STATE(7091), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2524), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2285), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9632), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2524), + [aux_sym_pointer_declarator_repeat1] = STATE(2219), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [aux_sym_preproc_if_token2] = ACTIONS(5994), + [aux_sym_preproc_else_token1] = ACTIONS(5994), + [aux_sym_preproc_elif_token1] = ACTIONS(5996), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(7428), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7434), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), - [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___extension__] = ACTIONS(7723), - [anon_sym___attribute__] = ACTIONS(7723), - [anon_sym___attribute] = ACTIONS(7723), - [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_LBRACK] = ACTIONS(7725), - [anon_sym_RBRACK] = 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), + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2558), + [sym__abstract_declarator] = STATE(7097), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2496), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2285), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9632), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2496), + [aux_sym_pointer_declarator_repeat1] = STATE(2558), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [aux_sym_preproc_if_token2] = ACTIONS(5968), + [aux_sym_preproc_else_token1] = ACTIONS(5968), + [aux_sym_preproc_elif_token1] = ACTIONS(5970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5968), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7428), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7434), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [STATE(2220)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2212), - [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(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(7727), - [anon_sym___attribute__] = ACTIONS(7727), - [anon_sym___attribute] = ACTIONS(7727), - [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_LBRACK] = ACTIONS(7729), - [anon_sym_RBRACK] = ACTIONS(7729), - [anon_sym_EQ] = ACTIONS(7727), - [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_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(7727), - [anon_sym_or_eq] = ACTIONS(7727), - [anon_sym_xor_eq] = ACTIONS(7727), - [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), + [sym_type_qualifier] = STATE(2220), + [sym_alignas_qualifier] = STATE(2308), + [aux_sym__type_definition_type_repeat1] = STATE(2220), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [aux_sym_preproc_if_token2] = ACTIONS(7049), + [aux_sym_preproc_else_token1] = ACTIONS(7049), + [aux_sym_preproc_elif_token1] = ACTIONS(7047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7049), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym_SEMI] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(7436), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7049), + [anon_sym_RBRACE] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(7436), + [anon_sym_constexpr] = ACTIONS(7436), + [anon_sym_volatile] = ACTIONS(7436), + [anon_sym_restrict] = ACTIONS(7436), + [anon_sym___restrict__] = ACTIONS(7436), + [anon_sym__Atomic] = ACTIONS(7436), + [anon_sym__Noreturn] = ACTIONS(7436), + [anon_sym_noreturn] = ACTIONS(7436), + [anon_sym__Nonnull] = ACTIONS(7436), + [anon_sym_mutable] = ACTIONS(7436), + [anon_sym_constinit] = ACTIONS(7436), + [anon_sym_consteval] = ACTIONS(7436), + [anon_sym_alignas] = ACTIONS(7439), + [anon_sym__Alignas] = ACTIONS(7439), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), + [anon_sym_COLON_RBRACK] = ACTIONS(7049), }, [STATE(2221)] = { - [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), - [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(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(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_LBRACK] = ACTIONS(7733), - [anon_sym_EQ] = ACTIONS(7731), - [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_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(7731), - [anon_sym_or_eq] = ACTIONS(7731), - [anon_sym_xor_eq] = ACTIONS(7731), - [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), - [anon_sym_COLON_RBRACK] = ACTIONS(7733), + [sym__abstract_declarator] = STATE(6471), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2924), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2116), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9528), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6847), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6849), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6851), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [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(6746), + [anon_sym_COLON_COLON] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [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(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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(6574), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2924), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2116), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9528), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(6847), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(6849), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(6851), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(5970), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_STAR_EQ] = ACTIONS(5968), + [anon_sym_SLASH_EQ] = ACTIONS(5968), + [anon_sym_PERCENT_EQ] = ACTIONS(5968), + [anon_sym_PLUS_EQ] = ACTIONS(5968), + [anon_sym_DASH_EQ] = ACTIONS(5968), + [anon_sym_LT_LT_EQ] = ACTIONS(5968), + [anon_sym_GT_GT_EQ] = ACTIONS(5968), + [anon_sym_AMP_EQ] = ACTIONS(5968), + [anon_sym_CARET_EQ] = ACTIONS(5968), + [anon_sym_PIPE_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5970), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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__abstract_declarator] = STATE(6491), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2924), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2116), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9528), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(6847), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6618), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6849), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6618), + [anon_sym_AMP] = ACTIONS(6851), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6618), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(6746), + [anon_sym_COLON_COLON] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6618), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [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(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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(6538), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_type_qualifier] = STATE(2221), + [sym_alignas_qualifier] = STATE(3369), + [sym_parameter_list] = STATE(2116), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9528), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2221), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6847), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6849), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6851), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [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(6746), + [anon_sym_COLON_COLON] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6746), + [anon_sym_constexpr] = ACTIONS(6746), + [anon_sym_volatile] = ACTIONS(6746), + [anon_sym_restrict] = ACTIONS(6746), + [anon_sym___restrict__] = ACTIONS(6746), + [anon_sym__Atomic] = ACTIONS(6746), + [anon_sym__Noreturn] = ACTIONS(6746), + [anon_sym_noreturn] = ACTIONS(6746), + [anon_sym__Nonnull] = ACTIONS(6746), + [anon_sym_mutable] = ACTIONS(6746), + [anon_sym_constinit] = ACTIONS(6746), + [anon_sym_consteval] = ACTIONS(6746), + [anon_sym_alignas] = ACTIONS(6756), + [anon_sym__Alignas] = ACTIONS(6756), + [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(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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [STATE(2225)] = { - [sym_identifier] = ACTIONS(7735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), - [anon_sym_COMMA] = ACTIONS(7737), - [anon_sym_RPAREN] = ACTIONS(7737), - [aux_sym_preproc_if_token2] = ACTIONS(7737), - [aux_sym_preproc_else_token1] = ACTIONS(7737), - [aux_sym_preproc_elif_token1] = ACTIONS(7735), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7737), - [aux_sym_preproc_elifdef_token2] = 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_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_LBRACE] = ACTIONS(7737), - [anon_sym_RBRACE] = ACTIONS(7737), - [anon_sym_LBRACK] = ACTIONS(7737), - [anon_sym_EQ] = ACTIONS(7735), - [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), - [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(7735), - [anon_sym_or_eq] = ACTIONS(7735), - [anon_sym_xor_eq] = ACTIONS(7735), - [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), + [sym_template_argument_list] = STATE(5007), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7444), + [anon_sym_RPAREN] = ACTIONS(7444), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_TILDE] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7449), + [anon_sym_PLUS] = ACTIONS(7449), + [anon_sym_STAR] = ACTIONS(7451), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7449), + [anon_sym_PIPE_PIPE] = ACTIONS(7454), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7449), + [anon_sym_CARET] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7454), + [anon_sym_BANG_EQ] = ACTIONS(7454), + [anon_sym_GT] = ACTIONS(7449), + [anon_sym_GT_EQ] = ACTIONS(7454), + [anon_sym_LT_EQ] = ACTIONS(7449), + [anon_sym_LT] = ACTIONS(7456), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_GT_GT] = ACTIONS(7449), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_virtual] = ACTIONS(7442), + [anon_sym_extern] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7447), + [anon_sym___declspec] = ACTIONS(7442), + [anon_sym___based] = ACTIONS(7442), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_static] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7451), + [anon_sym_register] = ACTIONS(7442), + [anon_sym_inline] = ACTIONS(7442), + [anon_sym___inline] = ACTIONS(7442), + [anon_sym___inline__] = ACTIONS(7442), + [anon_sym___forceinline] = ACTIONS(7442), + [anon_sym_thread_local] = ACTIONS(7442), + [anon_sym___thread] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7454), + [anon_sym_STAR_EQ] = ACTIONS(7454), + [anon_sym_SLASH_EQ] = ACTIONS(7454), + [anon_sym_PERCENT_EQ] = ACTIONS(7454), + [anon_sym_PLUS_EQ] = ACTIONS(7454), + [anon_sym_DASH_EQ] = ACTIONS(7454), + [anon_sym_LT_LT_EQ] = ACTIONS(7454), + [anon_sym_GT_GT_EQ] = ACTIONS(7454), + [anon_sym_AMP_EQ] = ACTIONS(7454), + [anon_sym_CARET_EQ] = ACTIONS(7454), + [anon_sym_PIPE_EQ] = ACTIONS(7454), + [anon_sym_LT_EQ_GT] = ACTIONS(7454), + [anon_sym_or] = ACTIONS(7449), + [anon_sym_and] = ACTIONS(7449), + [anon_sym_bitor] = ACTIONS(7449), + [anon_sym_xor] = ACTIONS(7449), + [anon_sym_bitand] = ACTIONS(7449), + [anon_sym_not_eq] = ACTIONS(7449), + [anon_sym_DASH_DASH] = ACTIONS(7454), + [anon_sym_PLUS_PLUS] = ACTIONS(7454), + [anon_sym_DOT] = ACTIONS(7449), + [anon_sym_DOT_STAR] = ACTIONS(7454), + [anon_sym_DASH_GT] = ACTIONS(7449), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_operator] = ACTIONS(7442), + [anon_sym_DASH_GT_STAR] = ACTIONS(7454), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_RPAREN] = ACTIONS(6793), + [aux_sym_preproc_if_token2] = ACTIONS(6793), + [aux_sym_preproc_else_token1] = ACTIONS(6793), + [aux_sym_preproc_elif_token1] = ACTIONS(6791), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6793), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6791), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6791), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6791), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6791), + [anon_sym_GT_GT] = ACTIONS(6791), + [anon_sym_SEMI] = ACTIONS(6793), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6793), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_RBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_EQ] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_STAR_EQ] = ACTIONS(6793), + [anon_sym_SLASH_EQ] = ACTIONS(6793), + [anon_sym_PERCENT_EQ] = ACTIONS(6793), + [anon_sym_PLUS_EQ] = ACTIONS(6793), + [anon_sym_DASH_EQ] = ACTIONS(6793), + [anon_sym_LT_LT_EQ] = ACTIONS(6793), + [anon_sym_GT_GT_EQ] = ACTIONS(6793), + [anon_sym_AMP_EQ] = ACTIONS(6793), + [anon_sym_CARET_EQ] = ACTIONS(6793), + [anon_sym_PIPE_EQ] = ACTIONS(6793), + [anon_sym_and_eq] = ACTIONS(6791), + [anon_sym_or_eq] = ACTIONS(6791), + [anon_sym_xor_eq] = ACTIONS(6791), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), + [anon_sym_COLON_RBRACK] = ACTIONS(6793), }, [STATE(2227)] = { - [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), - [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(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(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_LBRACK] = ACTIONS(7741), - [anon_sym_EQ] = ACTIONS(7739), - [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_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(7739), - [anon_sym_or_eq] = ACTIONS(7739), - [anon_sym_xor_eq] = ACTIONS(7739), - [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_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_RPAREN] = ACTIONS(6813), + [aux_sym_preproc_if_token2] = ACTIONS(6813), + [aux_sym_preproc_else_token1] = ACTIONS(6813), + [aux_sym_preproc_elif_token1] = ACTIONS(6811), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6813), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6811), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6811), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6811), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6811), + [anon_sym_GT_GT] = ACTIONS(6811), + [anon_sym_SEMI] = ACTIONS(6813), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_RBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_EQ] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_STAR_EQ] = ACTIONS(6813), + [anon_sym_SLASH_EQ] = ACTIONS(6813), + [anon_sym_PERCENT_EQ] = ACTIONS(6813), + [anon_sym_PLUS_EQ] = ACTIONS(6813), + [anon_sym_DASH_EQ] = ACTIONS(6813), + [anon_sym_LT_LT_EQ] = ACTIONS(6813), + [anon_sym_GT_GT_EQ] = ACTIONS(6813), + [anon_sym_AMP_EQ] = ACTIONS(6813), + [anon_sym_CARET_EQ] = ACTIONS(6813), + [anon_sym_PIPE_EQ] = ACTIONS(6813), + [anon_sym_and_eq] = ACTIONS(6811), + [anon_sym_or_eq] = ACTIONS(6811), + [anon_sym_xor_eq] = ACTIONS(6811), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6813), [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), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), + [anon_sym_COLON_RBRACK] = ACTIONS(6813), }, [STATE(2228)] = { - [sym_identifier] = ACTIONS(7743), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), - [anon_sym_COMMA] = ACTIONS(7745), - [anon_sym_RPAREN] = ACTIONS(7745), - [aux_sym_preproc_if_token2] = ACTIONS(7745), - [aux_sym_preproc_else_token1] = ACTIONS(7745), - [aux_sym_preproc_elif_token1] = ACTIONS(7743), + [sym_decltype_auto] = STATE(2332), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7460), + [anon_sym_decltype] = ACTIONS(6900), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(2229)] = { + [sym_decltype_auto] = STATE(2332), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7460), + [anon_sym_decltype] = ACTIONS(6900), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(2230)] = { + [sym_identifier] = ACTIONS(7462), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7464), + [anon_sym_COMMA] = ACTIONS(7464), + [anon_sym_RPAREN] = ACTIONS(7464), + [aux_sym_preproc_if_token2] = ACTIONS(7464), + [aux_sym_preproc_else_token1] = ACTIONS(7464), + [aux_sym_preproc_elif_token1] = ACTIONS(7462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7464), + [anon_sym_LPAREN2] = ACTIONS(7464), + [anon_sym_DASH] = ACTIONS(7462), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_STAR] = ACTIONS(7462), + [anon_sym_SLASH] = ACTIONS(7462), + [anon_sym_PERCENT] = ACTIONS(7462), + [anon_sym_PIPE_PIPE] = ACTIONS(7464), + [anon_sym_AMP_AMP] = ACTIONS(7464), + [anon_sym_PIPE] = ACTIONS(7462), + [anon_sym_CARET] = ACTIONS(7462), + [anon_sym_AMP] = ACTIONS(7462), + [anon_sym_EQ_EQ] = ACTIONS(7464), + [anon_sym_BANG_EQ] = ACTIONS(7464), + [anon_sym_GT] = ACTIONS(7462), + [anon_sym_GT_EQ] = ACTIONS(7464), + [anon_sym_LT_EQ] = ACTIONS(7462), + [anon_sym_LT] = ACTIONS(7462), + [anon_sym_LT_LT] = ACTIONS(7462), + [anon_sym_GT_GT] = ACTIONS(7462), + [anon_sym_SEMI] = ACTIONS(7464), + [anon_sym___extension__] = ACTIONS(7462), + [anon_sym___attribute__] = ACTIONS(7462), + [anon_sym___attribute] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7464), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7464), + [anon_sym_RBRACE] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(7462), + [anon_sym_EQ] = ACTIONS(7462), + [anon_sym_const] = ACTIONS(7462), + [anon_sym_constexpr] = ACTIONS(7462), + [anon_sym_volatile] = ACTIONS(7462), + [anon_sym_restrict] = ACTIONS(7462), + [anon_sym___restrict__] = ACTIONS(7462), + [anon_sym__Atomic] = ACTIONS(7462), + [anon_sym__Noreturn] = ACTIONS(7462), + [anon_sym_noreturn] = ACTIONS(7462), + [anon_sym__Nonnull] = ACTIONS(7462), + [anon_sym_mutable] = ACTIONS(7462), + [anon_sym_constinit] = ACTIONS(7462), + [anon_sym_consteval] = ACTIONS(7462), + [anon_sym_alignas] = ACTIONS(7462), + [anon_sym__Alignas] = ACTIONS(7462), + [anon_sym_QMARK] = ACTIONS(7464), + [anon_sym_STAR_EQ] = ACTIONS(7464), + [anon_sym_SLASH_EQ] = ACTIONS(7464), + [anon_sym_PERCENT_EQ] = ACTIONS(7464), + [anon_sym_PLUS_EQ] = ACTIONS(7464), + [anon_sym_DASH_EQ] = ACTIONS(7464), + [anon_sym_LT_LT_EQ] = ACTIONS(7464), + [anon_sym_GT_GT_EQ] = ACTIONS(7464), + [anon_sym_AMP_EQ] = ACTIONS(7464), + [anon_sym_CARET_EQ] = ACTIONS(7464), + [anon_sym_PIPE_EQ] = ACTIONS(7464), + [anon_sym_and_eq] = ACTIONS(7462), + [anon_sym_or_eq] = ACTIONS(7462), + [anon_sym_xor_eq] = ACTIONS(7462), + [anon_sym_LT_EQ_GT] = ACTIONS(7464), + [anon_sym_or] = ACTIONS(7462), + [anon_sym_and] = ACTIONS(7462), + [anon_sym_bitor] = ACTIONS(7462), + [anon_sym_xor] = ACTIONS(7462), + [anon_sym_bitand] = ACTIONS(7462), + [anon_sym_not_eq] = ACTIONS(7462), + [anon_sym_DASH_DASH] = ACTIONS(7464), + [anon_sym_PLUS_PLUS] = ACTIONS(7464), + [anon_sym_asm] = ACTIONS(7462), + [anon_sym___asm__] = ACTIONS(7462), + [anon_sym___asm] = ACTIONS(7462), + [anon_sym_DOT] = ACTIONS(7462), + [anon_sym_DOT_STAR] = ACTIONS(7464), + [anon_sym_DASH_GT] = ACTIONS(7464), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7462), + [anon_sym_override] = ACTIONS(7462), + [anon_sym_noexcept] = ACTIONS(7462), + [anon_sym_throw] = ACTIONS(7462), + [anon_sym_requires] = ACTIONS(7462), + [anon_sym_COLON_RBRACK] = ACTIONS(7464), + }, + [STATE(2231)] = { + [sym_type_qualifier] = STATE(2231), + [sym_alignas_qualifier] = STATE(2363), + [aux_sym__type_definition_type_repeat1] = STATE(2231), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [aux_sym_preproc_if_token2] = ACTIONS(7049), + [aux_sym_preproc_else_token1] = ACTIONS(7049), + [aux_sym_preproc_elif_token1] = ACTIONS(7047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7049), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym_SEMI] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(7466), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON] = ACTIONS(7047), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7049), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_RBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7049), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(7466), + [anon_sym_constexpr] = ACTIONS(7466), + [anon_sym_volatile] = ACTIONS(7466), + [anon_sym_restrict] = ACTIONS(7466), + [anon_sym___restrict__] = ACTIONS(7466), + [anon_sym__Atomic] = ACTIONS(7466), + [anon_sym__Noreturn] = ACTIONS(7466), + [anon_sym_noreturn] = ACTIONS(7466), + [anon_sym__Nonnull] = ACTIONS(7466), + [anon_sym_mutable] = ACTIONS(7466), + [anon_sym_constinit] = ACTIONS(7466), + [anon_sym_consteval] = ACTIONS(7466), + [anon_sym_alignas] = ACTIONS(7469), + [anon_sym__Alignas] = ACTIONS(7469), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7049), + }, + [STATE(2232)] = { + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym_ref_qualifier] = STATE(2272), + [sym__function_exception_specification] = STATE(2477), + [sym__function_attributes_end] = STATE(3488), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3439), + [sym_noexcept] = STATE(2477), + [sym_throw_specifier] = STATE(2477), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7476), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7479), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7482), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7485), + [anon_sym_override] = ACTIONS(7485), + [anon_sym_noexcept] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(6424), + [anon_sym_requires] = ACTIONS(7488), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), + }, + [STATE(2233)] = { + [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(7491), + [anon_sym___attribute] = ACTIONS(7491), + [anon_sym_COLON] = ACTIONS(7491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7493), + [anon_sym_RBRACE] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [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_asm] = ACTIONS(7491), + [anon_sym___asm__] = ACTIONS(7491), + [anon_sym___asm] = ACTIONS(7491), + [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_noexcept] = ACTIONS(7491), + [anon_sym_throw] = ACTIONS(7491), + [anon_sym_requires] = ACTIONS(7491), + [anon_sym_COLON_RBRACK] = ACTIONS(7493), + }, + [STATE(2234)] = { + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_RPAREN] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_TILDE] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6829), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6829), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6829), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6829), + [anon_sym_GT_GT] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym_virtual] = ACTIONS(6829), + [anon_sym_extern] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6831), + [anon_sym___declspec] = ACTIONS(6829), + [anon_sym___based] = ACTIONS(6829), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_static] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_register] = ACTIONS(6829), + [anon_sym_inline] = ACTIONS(6829), + [anon_sym___inline] = ACTIONS(6829), + [anon_sym___inline__] = ACTIONS(6829), + [anon_sym___forceinline] = ACTIONS(6829), + [anon_sym_thread_local] = ACTIONS(6829), + [anon_sym___thread] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_STAR_EQ] = ACTIONS(6831), + [anon_sym_SLASH_EQ] = ACTIONS(6831), + [anon_sym_PERCENT_EQ] = ACTIONS(6831), + [anon_sym_PLUS_EQ] = ACTIONS(6831), + [anon_sym_DASH_EQ] = ACTIONS(6831), + [anon_sym_LT_LT_EQ] = ACTIONS(6831), + [anon_sym_GT_GT_EQ] = ACTIONS(6831), + [anon_sym_AMP_EQ] = ACTIONS(6831), + [anon_sym_CARET_EQ] = ACTIONS(6831), + [anon_sym_PIPE_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_operator] = ACTIONS(6829), + [anon_sym_DASH_GT_STAR] = ACTIONS(6831), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), + }, + [STATE(2235)] = { + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_RPAREN] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_TILDE] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6803), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym_virtual] = ACTIONS(6803), + [anon_sym_extern] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6805), + [anon_sym___declspec] = ACTIONS(6803), + [anon_sym___based] = ACTIONS(6803), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_static] = ACTIONS(6803), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_register] = ACTIONS(6803), + [anon_sym_inline] = ACTIONS(6803), + [anon_sym___inline] = ACTIONS(6803), + [anon_sym___inline__] = ACTIONS(6803), + [anon_sym___forceinline] = ACTIONS(6803), + [anon_sym_thread_local] = ACTIONS(6803), + [anon_sym___thread] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_STAR_EQ] = ACTIONS(6805), + [anon_sym_SLASH_EQ] = ACTIONS(6805), + [anon_sym_PERCENT_EQ] = ACTIONS(6805), + [anon_sym_PLUS_EQ] = ACTIONS(6805), + [anon_sym_DASH_EQ] = ACTIONS(6805), + [anon_sym_LT_LT_EQ] = ACTIONS(6805), + [anon_sym_GT_GT_EQ] = ACTIONS(6805), + [anon_sym_AMP_EQ] = ACTIONS(6805), + [anon_sym_CARET_EQ] = ACTIONS(6805), + [anon_sym_PIPE_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_operator] = ACTIONS(6803), + [anon_sym_DASH_GT_STAR] = ACTIONS(6805), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), + }, + [STATE(2236)] = { + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_TILDE] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6799), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6799), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6799), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6799), + [anon_sym_GT_GT] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym_virtual] = ACTIONS(6799), + [anon_sym_extern] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6801), + [anon_sym___declspec] = ACTIONS(6799), + [anon_sym___based] = ACTIONS(6799), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_static] = ACTIONS(6799), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_register] = ACTIONS(6799), + [anon_sym_inline] = ACTIONS(6799), + [anon_sym___inline] = ACTIONS(6799), + [anon_sym___inline__] = ACTIONS(6799), + [anon_sym___forceinline] = ACTIONS(6799), + [anon_sym_thread_local] = ACTIONS(6799), + [anon_sym___thread] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_operator] = ACTIONS(6799), + [anon_sym_DASH_GT_STAR] = ACTIONS(6801), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), + }, + [STATE(2237)] = { + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_RPAREN] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_TILDE] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6807), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6807), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6807), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6807), + [anon_sym_GT_GT] = ACTIONS(6807), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym_virtual] = ACTIONS(6807), + [anon_sym_extern] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6809), + [anon_sym___declspec] = ACTIONS(6807), + [anon_sym___based] = ACTIONS(6807), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_static] = ACTIONS(6807), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_register] = ACTIONS(6807), + [anon_sym_inline] = ACTIONS(6807), + [anon_sym___inline] = ACTIONS(6807), + [anon_sym___inline__] = ACTIONS(6807), + [anon_sym___forceinline] = ACTIONS(6807), + [anon_sym_thread_local] = ACTIONS(6807), + [anon_sym___thread] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [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_LT_EQ_GT] = ACTIONS(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6807), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_operator] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(6809), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), + }, + [STATE(2238)] = { + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_TILDE] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6795), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6795), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6795), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6795), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym_virtual] = ACTIONS(6795), + [anon_sym_extern] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6797), + [anon_sym___declspec] = ACTIONS(6795), + [anon_sym___based] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_static] = ACTIONS(6795), + [anon_sym_EQ] = ACTIONS(6795), + [anon_sym_register] = ACTIONS(6795), + [anon_sym_inline] = ACTIONS(6795), + [anon_sym___inline] = ACTIONS(6795), + [anon_sym___inline__] = ACTIONS(6795), + [anon_sym___forceinline] = ACTIONS(6795), + [anon_sym_thread_local] = ACTIONS(6795), + [anon_sym___thread] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_STAR_EQ] = ACTIONS(6797), + [anon_sym_SLASH_EQ] = ACTIONS(6797), + [anon_sym_PERCENT_EQ] = ACTIONS(6797), + [anon_sym_PLUS_EQ] = ACTIONS(6797), + [anon_sym_DASH_EQ] = ACTIONS(6797), + [anon_sym_LT_LT_EQ] = ACTIONS(6797), + [anon_sym_GT_GT_EQ] = ACTIONS(6797), + [anon_sym_AMP_EQ] = ACTIONS(6797), + [anon_sym_CARET_EQ] = ACTIONS(6797), + [anon_sym_PIPE_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_operator] = ACTIONS(6795), + [anon_sym_DASH_GT_STAR] = ACTIONS(6797), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), + }, + [STATE(2239)] = { + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_RPAREN] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_TILDE] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6791), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6791), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6791), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6791), + [anon_sym_GT_GT] = ACTIONS(6791), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym_virtual] = ACTIONS(6791), + [anon_sym_extern] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6793), + [anon_sym___declspec] = ACTIONS(6791), + [anon_sym___based] = ACTIONS(6791), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_static] = ACTIONS(6791), + [anon_sym_EQ] = ACTIONS(6791), + [anon_sym_register] = ACTIONS(6791), + [anon_sym_inline] = ACTIONS(6791), + [anon_sym___inline] = ACTIONS(6791), + [anon_sym___inline__] = ACTIONS(6791), + [anon_sym___forceinline] = ACTIONS(6791), + [anon_sym_thread_local] = ACTIONS(6791), + [anon_sym___thread] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_STAR_EQ] = ACTIONS(6793), + [anon_sym_SLASH_EQ] = ACTIONS(6793), + [anon_sym_PERCENT_EQ] = ACTIONS(6793), + [anon_sym_PLUS_EQ] = ACTIONS(6793), + [anon_sym_DASH_EQ] = ACTIONS(6793), + [anon_sym_LT_LT_EQ] = ACTIONS(6793), + [anon_sym_GT_GT_EQ] = ACTIONS(6793), + [anon_sym_AMP_EQ] = ACTIONS(6793), + [anon_sym_CARET_EQ] = ACTIONS(6793), + [anon_sym_PIPE_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6791), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_operator] = ACTIONS(6791), + [anon_sym_DASH_GT_STAR] = ACTIONS(6793), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), + }, + [STATE(2240)] = { + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_RPAREN] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_TILDE] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6811), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6811), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6811), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6811), + [anon_sym_GT_GT] = ACTIONS(6811), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym_virtual] = ACTIONS(6811), + [anon_sym_extern] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6811), + [anon_sym___based] = ACTIONS(6811), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_static] = ACTIONS(6811), + [anon_sym_EQ] = ACTIONS(6811), + [anon_sym_register] = ACTIONS(6811), + [anon_sym_inline] = ACTIONS(6811), + [anon_sym___inline] = ACTIONS(6811), + [anon_sym___inline__] = ACTIONS(6811), + [anon_sym___forceinline] = ACTIONS(6811), + [anon_sym_thread_local] = ACTIONS(6811), + [anon_sym___thread] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_STAR_EQ] = ACTIONS(6813), + [anon_sym_SLASH_EQ] = ACTIONS(6813), + [anon_sym_PERCENT_EQ] = ACTIONS(6813), + [anon_sym_PLUS_EQ] = ACTIONS(6813), + [anon_sym_DASH_EQ] = ACTIONS(6813), + [anon_sym_LT_LT_EQ] = ACTIONS(6813), + [anon_sym_GT_GT_EQ] = ACTIONS(6813), + [anon_sym_AMP_EQ] = ACTIONS(6813), + [anon_sym_CARET_EQ] = ACTIONS(6813), + [anon_sym_PIPE_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_operator] = ACTIONS(6811), + [anon_sym_DASH_GT_STAR] = ACTIONS(6813), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), + }, + [STATE(2241)] = { + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_RPAREN] = ACTIONS(6831), + [aux_sym_preproc_if_token2] = ACTIONS(6831), + [aux_sym_preproc_else_token1] = ACTIONS(6831), + [aux_sym_preproc_elif_token1] = ACTIONS(6829), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6831), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6829), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6829), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6829), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6829), + [anon_sym_GT_GT] = ACTIONS(6829), + [anon_sym_SEMI] = ACTIONS(6831), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_RBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_STAR_EQ] = ACTIONS(6831), + [anon_sym_SLASH_EQ] = ACTIONS(6831), + [anon_sym_PERCENT_EQ] = ACTIONS(6831), + [anon_sym_PLUS_EQ] = ACTIONS(6831), + [anon_sym_DASH_EQ] = ACTIONS(6831), + [anon_sym_LT_LT_EQ] = ACTIONS(6831), + [anon_sym_GT_GT_EQ] = ACTIONS(6831), + [anon_sym_AMP_EQ] = ACTIONS(6831), + [anon_sym_CARET_EQ] = ACTIONS(6831), + [anon_sym_PIPE_EQ] = ACTIONS(6831), + [anon_sym_and_eq] = ACTIONS(6829), + [anon_sym_or_eq] = ACTIONS(6829), + [anon_sym_xor_eq] = ACTIONS(6829), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), + [anon_sym_COLON_RBRACK] = ACTIONS(6831), + }, + [STATE(2242)] = { + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [aux_sym_preproc_if_token2] = ACTIONS(6801), + [aux_sym_preproc_else_token1] = ACTIONS(6801), + [aux_sym_preproc_elif_token1] = ACTIONS(6799), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6801), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6799), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6799), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6799), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6799), + [anon_sym_GT_GT] = ACTIONS(6799), + [anon_sym_SEMI] = ACTIONS(6801), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_RBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_and_eq] = ACTIONS(6799), + [anon_sym_or_eq] = ACTIONS(6799), + [anon_sym_xor_eq] = ACTIONS(6799), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), + [anon_sym_COLON_RBRACK] = ACTIONS(6801), + }, + [STATE(2243)] = { + [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(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), + }, + [STATE(2244)] = { + [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(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), + }, + [STATE(2245)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4157), + [sym_ms_pointer_modifier] = STATE(2246), + [sym__abstract_declarator] = STATE(7279), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(2567), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2441), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9647), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2567), + [aux_sym_pointer_declarator_repeat1] = STATE(2246), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7509), + [sym_ms_restrict_modifier] = ACTIONS(7511), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7511), + [sym_ms_signed_ptr_modifier] = ACTIONS(7511), + [anon_sym__unaligned] = ACTIONS(7513), + [anon_sym___unaligned] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(5994), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2246)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4157), + [sym_ms_pointer_modifier] = STATE(3775), + [sym__abstract_declarator] = STATE(7281), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(2569), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2441), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9647), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2569), + [aux_sym_pointer_declarator_repeat1] = STATE(3775), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7509), + [sym_ms_restrict_modifier] = ACTIONS(7511), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7511), + [sym_ms_signed_ptr_modifier] = ACTIONS(7511), + [anon_sym__unaligned] = ACTIONS(7513), + [anon_sym___unaligned] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(5968), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2247)] = { + [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(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7497), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), + }, + [STATE(2248)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_TILDE] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6824), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6824), + [anon_sym_GT_GT] = ACTIONS(6824), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_virtual] = ACTIONS(6815), + [anon_sym_extern] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6822), + [anon_sym___declspec] = ACTIONS(6815), + [anon_sym___based] = ACTIONS(6815), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_static] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_register] = ACTIONS(6815), + [anon_sym_inline] = ACTIONS(6815), + [anon_sym___inline] = ACTIONS(6815), + [anon_sym___inline__] = ACTIONS(6815), + [anon_sym___forceinline] = ACTIONS(6815), + [anon_sym_thread_local] = ACTIONS(6815), + [anon_sym___thread] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6817), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(2249)] = { + [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(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7521), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_RBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7519), + [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), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_template] = ACTIONS(7519), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_LBRACK_COLON] = ACTIONS(7521), + [anon_sym_COLON_RBRACK] = ACTIONS(7521), + }, + [STATE(2250)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4124), + [sym_ms_pointer_modifier] = STATE(2259), + [sym__abstract_declarator] = STATE(7269), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(2593), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2444), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9598), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2593), + [aux_sym_pointer_declarator_repeat1] = STATE(2259), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(7527), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5996), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7533), + [sym_ms_restrict_modifier] = ACTIONS(7535), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7535), + [sym_ms_signed_ptr_modifier] = ACTIONS(7535), + [anon_sym__unaligned] = ACTIONS(7537), + [anon_sym___unaligned] = ACTIONS(7537), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5994), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2251)] = { + [sym_template_argument_list] = STATE(2253), + [sym_identifier] = ACTIONS(7543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5689), + [anon_sym_COMMA] = ACTIONS(5689), + [anon_sym_RPAREN] = ACTIONS(5689), + [aux_sym_preproc_if_token2] = ACTIONS(5689), + [aux_sym_preproc_else_token1] = ACTIONS(5689), + [aux_sym_preproc_elif_token1] = ACTIONS(7543), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5689), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5689), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(7543), + [anon_sym_PLUS] = ACTIONS(7543), + [anon_sym_STAR] = ACTIONS(7543), + [anon_sym_SLASH] = ACTIONS(7543), + [anon_sym_PERCENT] = ACTIONS(7543), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_PIPE] = ACTIONS(7543), + [anon_sym_CARET] = ACTIONS(7543), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_GT] = ACTIONS(7543), + [anon_sym_GT_EQ] = ACTIONS(5689), + [anon_sym_LT_EQ] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(7100), + [anon_sym_LT_LT] = ACTIONS(7543), + [anon_sym_GT_GT] = ACTIONS(7543), + [anon_sym_SEMI] = ACTIONS(5689), + [anon_sym___extension__] = ACTIONS(7543), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5689), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_EQ] = ACTIONS(7543), + [anon_sym_const] = ACTIONS(7543), + [anon_sym_constexpr] = ACTIONS(7543), + [anon_sym_volatile] = ACTIONS(7543), + [anon_sym_restrict] = ACTIONS(7543), + [anon_sym___restrict__] = ACTIONS(7543), + [anon_sym__Atomic] = ACTIONS(7543), + [anon_sym__Noreturn] = ACTIONS(7543), + [anon_sym_noreturn] = ACTIONS(7543), + [anon_sym__Nonnull] = ACTIONS(7543), + [anon_sym_mutable] = ACTIONS(7543), + [anon_sym_constinit] = ACTIONS(7543), + [anon_sym_consteval] = ACTIONS(7543), + [anon_sym_alignas] = ACTIONS(7543), + [anon_sym__Alignas] = ACTIONS(7543), + [anon_sym_QMARK] = ACTIONS(5689), + [anon_sym_STAR_EQ] = ACTIONS(5689), + [anon_sym_SLASH_EQ] = ACTIONS(5689), + [anon_sym_PERCENT_EQ] = ACTIONS(5689), + [anon_sym_PLUS_EQ] = ACTIONS(5689), + [anon_sym_DASH_EQ] = ACTIONS(5689), + [anon_sym_LT_LT_EQ] = ACTIONS(5689), + [anon_sym_GT_GT_EQ] = ACTIONS(5689), + [anon_sym_AMP_EQ] = ACTIONS(5689), + [anon_sym_CARET_EQ] = ACTIONS(5689), + [anon_sym_PIPE_EQ] = ACTIONS(5689), + [anon_sym_and_eq] = ACTIONS(7543), + [anon_sym_or_eq] = ACTIONS(7543), + [anon_sym_xor_eq] = ACTIONS(7543), + [anon_sym_LT_EQ_GT] = ACTIONS(5689), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_bitor] = ACTIONS(7543), + [anon_sym_xor] = ACTIONS(7543), + [anon_sym_bitand] = ACTIONS(7543), + [anon_sym_not_eq] = ACTIONS(7543), + [anon_sym_DASH_DASH] = ACTIONS(5689), + [anon_sym_PLUS_PLUS] = ACTIONS(5689), + [anon_sym_DOT] = ACTIONS(7543), + [anon_sym_DOT_STAR] = ACTIONS(5689), + [anon_sym_DASH_GT] = ACTIONS(5689), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7543), + [anon_sym_final] = ACTIONS(7543), + [anon_sym_override] = ACTIONS(7543), + [anon_sym_template] = ACTIONS(7543), + [anon_sym_requires] = ACTIONS(7543), + [anon_sym_LBRACK_COLON] = ACTIONS(5689), + [anon_sym_COLON_RBRACK] = ACTIONS(5689), + }, + [STATE(2252)] = { + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym_ref_qualifier] = STATE(2290), + [sym__function_exception_specification] = STATE(2447), + [sym__function_attributes_end] = STATE(3498), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3432), + [sym_noexcept] = STATE(2447), + [sym_throw_specifier] = STATE(2447), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7476), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7479), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7482), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_noexcept] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(6424), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), + }, + [STATE(2253)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [aux_sym_preproc_if_token2] = ACTIONS(6822), + [aux_sym_preproc_else_token1] = ACTIONS(6822), + [aux_sym_preproc_elif_token1] = ACTIONS(6815), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6822), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_STAR] = ACTIONS(6815), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE] = ACTIONS(6815), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_EQ_EQ] = ACTIONS(6822), + [anon_sym_BANG_EQ] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6815), + [anon_sym_GT_EQ] = ACTIONS(6822), + [anon_sym_LT_EQ] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(6815), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_STAR_EQ] = ACTIONS(6822), + [anon_sym_SLASH_EQ] = ACTIONS(6822), + [anon_sym_PERCENT_EQ] = ACTIONS(6822), + [anon_sym_PLUS_EQ] = ACTIONS(6822), + [anon_sym_DASH_EQ] = ACTIONS(6822), + [anon_sym_LT_LT_EQ] = ACTIONS(6822), + [anon_sym_GT_GT_EQ] = ACTIONS(6822), + [anon_sym_AMP_EQ] = ACTIONS(6822), + [anon_sym_CARET_EQ] = ACTIONS(6822), + [anon_sym_PIPE_EQ] = ACTIONS(6822), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6822), + [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(6822), + [anon_sym_PLUS_PLUS] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6815), + [anon_sym_DOT_STAR] = ACTIONS(6822), + [anon_sym_DASH_GT] = ACTIONS(6822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + [anon_sym_COLON_RBRACK] = ACTIONS(6822), + }, + [STATE(2254)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [aux_sym_preproc_if_token2] = ACTIONS(3108), + [aux_sym_preproc_else_token1] = ACTIONS(3108), + [aux_sym_preproc_elif_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym___asm__] = ACTIONS(3118), + [anon_sym___asm] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [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_COLON_RBRACK] = ACTIONS(3108), + }, + [STATE(2255)] = { + [sym_template_argument_list] = STATE(2275), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [aux_sym_preproc_if_token2] = ACTIONS(7447), + [aux_sym_preproc_else_token1] = ACTIONS(7447), + [aux_sym_preproc_elif_token1] = ACTIONS(7442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7100), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym_SEMI] = ACTIONS(7447), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7447), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7447), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_and_eq] = ACTIONS(7442), + [anon_sym_or_eq] = ACTIONS(7442), + [anon_sym_xor_eq] = ACTIONS(7442), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + [anon_sym_COLON_RBRACK] = ACTIONS(7447), + }, + [STATE(2256)] = { + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_RPAREN] = ACTIONS(6809), + [aux_sym_preproc_if_token2] = ACTIONS(6809), + [aux_sym_preproc_else_token1] = ACTIONS(6809), + [aux_sym_preproc_elif_token1] = ACTIONS(6807), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6809), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6807), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6807), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6807), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6807), + [anon_sym_GT_GT] = ACTIONS(6807), + [anon_sym_SEMI] = ACTIONS(6809), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6809), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_RBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [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(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), + [anon_sym_COLON_RBRACK] = ACTIONS(6809), + }, + [STATE(2257)] = { + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(6797), + [aux_sym_preproc_if_token2] = ACTIONS(6797), + [aux_sym_preproc_else_token1] = ACTIONS(6797), + [aux_sym_preproc_elif_token1] = ACTIONS(6795), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6797), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6795), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6795), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6795), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6795), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym_SEMI] = ACTIONS(6797), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_RBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_EQ] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_STAR_EQ] = ACTIONS(6797), + [anon_sym_SLASH_EQ] = ACTIONS(6797), + [anon_sym_PERCENT_EQ] = ACTIONS(6797), + [anon_sym_PLUS_EQ] = ACTIONS(6797), + [anon_sym_DASH_EQ] = ACTIONS(6797), + [anon_sym_LT_LT_EQ] = ACTIONS(6797), + [anon_sym_GT_GT_EQ] = ACTIONS(6797), + [anon_sym_AMP_EQ] = ACTIONS(6797), + [anon_sym_CARET_EQ] = ACTIONS(6797), + [anon_sym_PIPE_EQ] = ACTIONS(6797), + [anon_sym_and_eq] = ACTIONS(6795), + [anon_sym_or_eq] = ACTIONS(6795), + [anon_sym_xor_eq] = ACTIONS(6795), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), + [anon_sym_COLON_RBRACK] = ACTIONS(6797), + }, + [STATE(2258)] = { + [sym_identifier] = ACTIONS(7545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7547), + [anon_sym_COMMA] = ACTIONS(7547), + [anon_sym_RPAREN] = ACTIONS(7547), + [aux_sym_preproc_if_token2] = ACTIONS(7547), + [aux_sym_preproc_else_token1] = ACTIONS(7547), + [aux_sym_preproc_elif_token1] = ACTIONS(7545), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7547), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7547), + [anon_sym_LPAREN2] = ACTIONS(7547), + [anon_sym_DASH] = ACTIONS(7545), + [anon_sym_PLUS] = ACTIONS(7545), + [anon_sym_STAR] = ACTIONS(7545), + [anon_sym_SLASH] = ACTIONS(7545), + [anon_sym_PERCENT] = ACTIONS(7545), + [anon_sym_PIPE_PIPE] = ACTIONS(7547), + [anon_sym_AMP_AMP] = ACTIONS(7547), + [anon_sym_PIPE] = ACTIONS(7545), + [anon_sym_CARET] = ACTIONS(7545), + [anon_sym_AMP] = ACTIONS(7545), + [anon_sym_EQ_EQ] = ACTIONS(7547), + [anon_sym_BANG_EQ] = ACTIONS(7547), + [anon_sym_GT] = ACTIONS(7545), + [anon_sym_GT_EQ] = ACTIONS(7547), + [anon_sym_LT_EQ] = ACTIONS(7545), + [anon_sym_LT] = ACTIONS(7545), + [anon_sym_LT_LT] = ACTIONS(7545), + [anon_sym_GT_GT] = ACTIONS(7545), + [anon_sym_SEMI] = ACTIONS(7547), + [anon_sym___extension__] = ACTIONS(7545), + [anon_sym___attribute__] = ACTIONS(7545), + [anon_sym___attribute] = ACTIONS(7545), + [anon_sym_COLON] = ACTIONS(7545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7547), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7547), + [anon_sym_RBRACE] = ACTIONS(7547), + [anon_sym_LBRACK] = ACTIONS(7545), + [anon_sym_EQ] = ACTIONS(7545), + [anon_sym_const] = ACTIONS(7545), + [anon_sym_constexpr] = ACTIONS(7545), + [anon_sym_volatile] = ACTIONS(7545), + [anon_sym_restrict] = ACTIONS(7545), + [anon_sym___restrict__] = ACTIONS(7545), + [anon_sym__Atomic] = ACTIONS(7545), + [anon_sym__Noreturn] = ACTIONS(7545), + [anon_sym_noreturn] = ACTIONS(7545), + [anon_sym__Nonnull] = ACTIONS(7545), + [anon_sym_mutable] = ACTIONS(7545), + [anon_sym_constinit] = ACTIONS(7545), + [anon_sym_consteval] = ACTIONS(7545), + [anon_sym_alignas] = ACTIONS(7545), + [anon_sym__Alignas] = ACTIONS(7545), + [anon_sym_QMARK] = ACTIONS(7547), + [anon_sym_STAR_EQ] = ACTIONS(7547), + [anon_sym_SLASH_EQ] = ACTIONS(7547), + [anon_sym_PERCENT_EQ] = ACTIONS(7547), + [anon_sym_PLUS_EQ] = ACTIONS(7547), + [anon_sym_DASH_EQ] = ACTIONS(7547), + [anon_sym_LT_LT_EQ] = ACTIONS(7547), + [anon_sym_GT_GT_EQ] = ACTIONS(7547), + [anon_sym_AMP_EQ] = ACTIONS(7547), + [anon_sym_CARET_EQ] = ACTIONS(7547), + [anon_sym_PIPE_EQ] = ACTIONS(7547), + [anon_sym_and_eq] = ACTIONS(7545), + [anon_sym_or_eq] = ACTIONS(7545), + [anon_sym_xor_eq] = ACTIONS(7545), + [anon_sym_LT_EQ_GT] = ACTIONS(7547), + [anon_sym_or] = ACTIONS(7545), + [anon_sym_and] = ACTIONS(7545), + [anon_sym_bitor] = ACTIONS(7545), + [anon_sym_xor] = ACTIONS(7545), + [anon_sym_bitand] = ACTIONS(7545), + [anon_sym_not_eq] = ACTIONS(7545), + [anon_sym_DASH_DASH] = ACTIONS(7547), + [anon_sym_PLUS_PLUS] = ACTIONS(7547), + [anon_sym_asm] = ACTIONS(7545), + [anon_sym___asm__] = ACTIONS(7545), + [anon_sym___asm] = ACTIONS(7545), + [anon_sym_DOT] = ACTIONS(7545), + [anon_sym_DOT_STAR] = ACTIONS(7547), + [anon_sym_DASH_GT] = ACTIONS(7547), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7545), + [anon_sym_override] = ACTIONS(7545), + [anon_sym_noexcept] = ACTIONS(7545), + [anon_sym_throw] = ACTIONS(7545), + [anon_sym_requires] = ACTIONS(7545), + [anon_sym_COLON_RBRACK] = ACTIONS(7547), + }, + [STATE(2259)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4124), + [sym_ms_pointer_modifier] = STATE(3771), + [sym__abstract_declarator] = STATE(7271), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(2564), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2444), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9598), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2564), + [aux_sym_pointer_declarator_repeat1] = STATE(3771), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7527), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7533), + [sym_ms_restrict_modifier] = ACTIONS(7535), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7535), + [sym_ms_signed_ptr_modifier] = ACTIONS(7535), + [anon_sym__unaligned] = ACTIONS(7537), + [anon_sym___unaligned] = ACTIONS(7537), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2260)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [aux_sym_preproc_if_token2] = ACTIONS(7261), + [aux_sym_preproc_else_token1] = ACTIONS(7261), + [aux_sym_preproc_elif_token1] = ACTIONS(7259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7261), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), + [anon_sym_RBRACE] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_asm] = ACTIONS(7259), + [anon_sym___asm__] = ACTIONS(7259), + [anon_sym___asm] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_noexcept] = ACTIONS(7259), + [anon_sym_throw] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_COLON_RBRACK] = ACTIONS(7261), + }, + [STATE(2261)] = { + [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_LBRACK_LBRACK] = ACTIONS(7551), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7551), + [anon_sym_RBRACE] = ACTIONS(7551), + [anon_sym_LBRACK] = ACTIONS(7549), + [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_asm] = ACTIONS(7549), + [anon_sym___asm__] = ACTIONS(7549), + [anon_sym___asm] = ACTIONS(7549), + [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_noexcept] = ACTIONS(7549), + [anon_sym_throw] = ACTIONS(7549), + [anon_sym_requires] = ACTIONS(7549), + [anon_sym_COLON_RBRACK] = ACTIONS(7551), + }, + [STATE(2262)] = { + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_RPAREN] = ACTIONS(6805), + [aux_sym_preproc_if_token2] = ACTIONS(6805), + [aux_sym_preproc_else_token1] = ACTIONS(6805), + [aux_sym_preproc_elif_token1] = ACTIONS(6803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6805), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6803), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym_SEMI] = ACTIONS(6805), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6805), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_RBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_STAR_EQ] = ACTIONS(6805), + [anon_sym_SLASH_EQ] = ACTIONS(6805), + [anon_sym_PERCENT_EQ] = ACTIONS(6805), + [anon_sym_PLUS_EQ] = ACTIONS(6805), + [anon_sym_DASH_EQ] = ACTIONS(6805), + [anon_sym_LT_LT_EQ] = ACTIONS(6805), + [anon_sym_GT_GT_EQ] = ACTIONS(6805), + [anon_sym_AMP_EQ] = ACTIONS(6805), + [anon_sym_CARET_EQ] = ACTIONS(6805), + [anon_sym_PIPE_EQ] = ACTIONS(6805), + [anon_sym_and_eq] = ACTIONS(6803), + [anon_sym_or_eq] = ACTIONS(6803), + [anon_sym_xor_eq] = ACTIONS(6803), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), + [anon_sym_COLON_RBRACK] = ACTIONS(6805), + }, + [STATE(2263)] = { + [sym_type_qualifier] = STATE(2342), + [sym_alignas_qualifier] = STATE(2407), + [aux_sym__type_definition_type_repeat1] = STATE(2342), + [aux_sym_sized_type_specifier_repeat1] = STATE(2424), + [sym_identifier] = ACTIONS(7553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_RPAREN] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym___extension__] = ACTIONS(7556), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON_COLON] = ACTIONS(7023), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(7559), + [anon_sym_unsigned] = ACTIONS(7559), + [anon_sym_long] = ACTIONS(7559), + [anon_sym_short] = ACTIONS(7559), + [anon_sym_LBRACK] = ACTIONS(7025), + [anon_sym_EQ] = ACTIONS(7025), + [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(7561), + [anon_sym__Alignas] = ACTIONS(7561), + [sym_primitive_type] = ACTIONS(7564), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7023), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_and_eq] = ACTIONS(7025), + [anon_sym_or_eq] = ACTIONS(7025), + [anon_sym_xor_eq] = ACTIONS(7025), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7025), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7025), + [anon_sym_final] = ACTIONS(7025), + [anon_sym_override] = ACTIONS(7025), + [anon_sym_template] = ACTIONS(7025), + [anon_sym_requires] = ACTIONS(7025), + [anon_sym_DASH_GT_STAR] = ACTIONS(7023), + [anon_sym_LBRACK_COLON] = ACTIONS(7023), + }, + [STATE(2264)] = { + [sym_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_RPAREN] = ACTIONS(7568), + [aux_sym_preproc_if_token2] = ACTIONS(7568), + [aux_sym_preproc_else_token1] = ACTIONS(7568), + [aux_sym_preproc_elif_token1] = ACTIONS(7566), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7568), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7566), + [anon_sym_PERCENT] = ACTIONS(7566), + [anon_sym_PIPE_PIPE] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7566), + [anon_sym_CARET] = ACTIONS(7566), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_EQ_EQ] = ACTIONS(7568), + [anon_sym_BANG_EQ] = ACTIONS(7568), + [anon_sym_GT] = ACTIONS(7566), + [anon_sym_GT_EQ] = ACTIONS(7568), + [anon_sym_LT_EQ] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7566), + [anon_sym_LT_LT] = ACTIONS(7566), + [anon_sym_GT_GT] = ACTIONS(7566), + [anon_sym_SEMI] = ACTIONS(7568), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7568), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_RBRACE] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(7566), + [anon_sym_EQ] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_mutable] = ACTIONS(7566), + [anon_sym_constinit] = ACTIONS(7566), + [anon_sym_consteval] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(7568), + [anon_sym_STAR_EQ] = ACTIONS(7568), + [anon_sym_SLASH_EQ] = ACTIONS(7568), + [anon_sym_PERCENT_EQ] = ACTIONS(7568), + [anon_sym_PLUS_EQ] = ACTIONS(7568), + [anon_sym_DASH_EQ] = ACTIONS(7568), + [anon_sym_LT_LT_EQ] = ACTIONS(7568), + [anon_sym_GT_GT_EQ] = ACTIONS(7568), + [anon_sym_AMP_EQ] = ACTIONS(7568), + [anon_sym_CARET_EQ] = ACTIONS(7568), + [anon_sym_PIPE_EQ] = ACTIONS(7568), + [anon_sym_and_eq] = ACTIONS(7566), + [anon_sym_or_eq] = ACTIONS(7566), + [anon_sym_xor_eq] = ACTIONS(7566), + [anon_sym_LT_EQ_GT] = ACTIONS(7568), + [anon_sym_or] = ACTIONS(7566), + [anon_sym_and] = ACTIONS(7566), + [anon_sym_bitor] = ACTIONS(7566), + [anon_sym_xor] = ACTIONS(7566), + [anon_sym_bitand] = ACTIONS(7566), + [anon_sym_not_eq] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(7568), + [anon_sym_PLUS_PLUS] = ACTIONS(7568), + [anon_sym_DOT] = ACTIONS(7566), + [anon_sym_DOT_STAR] = ACTIONS(7568), + [anon_sym_DASH_GT] = ACTIONS(7568), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7566), + [anon_sym_final] = ACTIONS(7566), + [anon_sym_override] = ACTIONS(7566), + [anon_sym_template] = ACTIONS(7566), + [anon_sym_requires] = ACTIONS(7566), + [anon_sym_LBRACK_COLON] = ACTIONS(7568), + [anon_sym_COLON_RBRACK] = ACTIONS(7568), + }, + [STATE(2265)] = { + [sym_attribute_specifier] = STATE(2334), + [sym_identifier] = ACTIONS(7570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7572), + [anon_sym_COMMA] = ACTIONS(7572), + [anon_sym_RPAREN] = ACTIONS(7572), + [aux_sym_preproc_if_token2] = ACTIONS(7572), + [aux_sym_preproc_else_token1] = ACTIONS(7572), + [aux_sym_preproc_elif_token1] = ACTIONS(7570), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7572), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7572), + [anon_sym_LPAREN2] = ACTIONS(7572), + [anon_sym_DASH] = ACTIONS(7570), + [anon_sym_PLUS] = ACTIONS(7570), + [anon_sym_STAR] = ACTIONS(7570), + [anon_sym_SLASH] = ACTIONS(7570), + [anon_sym_PERCENT] = ACTIONS(7570), + [anon_sym_PIPE_PIPE] = ACTIONS(7572), + [anon_sym_AMP_AMP] = ACTIONS(7572), + [anon_sym_PIPE] = ACTIONS(7570), + [anon_sym_CARET] = ACTIONS(7570), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7572), + [anon_sym_BANG_EQ] = ACTIONS(7572), + [anon_sym_GT] = ACTIONS(7570), + [anon_sym_GT_EQ] = ACTIONS(7572), + [anon_sym_LT_EQ] = ACTIONS(7570), + [anon_sym_LT] = ACTIONS(7570), + [anon_sym_LT_LT] = ACTIONS(7570), + [anon_sym_GT_GT] = ACTIONS(7570), + [anon_sym_SEMI] = ACTIONS(7572), + [anon_sym___extension__] = ACTIONS(7570), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7570), + [anon_sym_COLON_COLON] = ACTIONS(7572), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7572), + [anon_sym_RBRACE] = ACTIONS(7572), + [anon_sym_LBRACK] = ACTIONS(7570), + [anon_sym_EQ] = ACTIONS(7570), + [anon_sym_const] = ACTIONS(7570), + [anon_sym_constexpr] = ACTIONS(7570), + [anon_sym_volatile] = ACTIONS(7570), + [anon_sym_restrict] = ACTIONS(7570), + [anon_sym___restrict__] = ACTIONS(7570), + [anon_sym__Atomic] = ACTIONS(7570), + [anon_sym__Noreturn] = ACTIONS(7570), + [anon_sym_noreturn] = ACTIONS(7570), + [anon_sym__Nonnull] = ACTIONS(7570), + [anon_sym_mutable] = ACTIONS(7570), + [anon_sym_constinit] = ACTIONS(7570), + [anon_sym_consteval] = ACTIONS(7570), + [anon_sym_alignas] = ACTIONS(7570), + [anon_sym__Alignas] = ACTIONS(7570), + [anon_sym_QMARK] = ACTIONS(7572), + [anon_sym_STAR_EQ] = ACTIONS(7572), + [anon_sym_SLASH_EQ] = ACTIONS(7572), + [anon_sym_PERCENT_EQ] = ACTIONS(7572), + [anon_sym_PLUS_EQ] = ACTIONS(7572), + [anon_sym_DASH_EQ] = ACTIONS(7572), + [anon_sym_LT_LT_EQ] = ACTIONS(7572), + [anon_sym_GT_GT_EQ] = ACTIONS(7572), + [anon_sym_AMP_EQ] = ACTIONS(7572), + [anon_sym_CARET_EQ] = ACTIONS(7572), + [anon_sym_PIPE_EQ] = ACTIONS(7572), + [anon_sym_and_eq] = ACTIONS(7570), + [anon_sym_or_eq] = ACTIONS(7570), + [anon_sym_xor_eq] = ACTIONS(7570), + [anon_sym_LT_EQ_GT] = ACTIONS(7572), + [anon_sym_or] = ACTIONS(7570), + [anon_sym_and] = ACTIONS(7570), + [anon_sym_bitor] = ACTIONS(7570), + [anon_sym_xor] = ACTIONS(7570), + [anon_sym_bitand] = ACTIONS(7570), + [anon_sym_not_eq] = ACTIONS(7570), + [anon_sym_DASH_DASH] = ACTIONS(7572), + [anon_sym_PLUS_PLUS] = ACTIONS(7572), + [anon_sym_DOT] = ACTIONS(7570), + [anon_sym_DOT_STAR] = ACTIONS(7572), + [anon_sym_DASH_GT] = ACTIONS(7572), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7570), + [anon_sym_final] = ACTIONS(7570), + [anon_sym_override] = ACTIONS(7570), + [anon_sym_template] = ACTIONS(7570), + [anon_sym_requires] = ACTIONS(7570), + [anon_sym_LBRACK_COLON] = ACTIONS(7572), + [anon_sym_COLON_RBRACK] = ACTIONS(7572), + }, + [STATE(2266)] = { + [sym_attribute_specifier] = STATE(2307), + [sym_identifier] = ACTIONS(7574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7576), + [anon_sym_COMMA] = ACTIONS(7576), + [anon_sym_RPAREN] = ACTIONS(7576), + [aux_sym_preproc_if_token2] = ACTIONS(7576), + [aux_sym_preproc_else_token1] = ACTIONS(7576), + [aux_sym_preproc_elif_token1] = ACTIONS(7574), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7576), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7576), + [anon_sym_LPAREN2] = ACTIONS(7576), + [anon_sym_DASH] = ACTIONS(7574), + [anon_sym_PLUS] = ACTIONS(7574), + [anon_sym_STAR] = ACTIONS(7574), + [anon_sym_SLASH] = ACTIONS(7574), + [anon_sym_PERCENT] = ACTIONS(7574), + [anon_sym_PIPE_PIPE] = ACTIONS(7576), + [anon_sym_AMP_AMP] = ACTIONS(7576), + [anon_sym_PIPE] = ACTIONS(7574), + [anon_sym_CARET] = ACTIONS(7574), + [anon_sym_AMP] = ACTIONS(7574), + [anon_sym_EQ_EQ] = ACTIONS(7576), + [anon_sym_BANG_EQ] = ACTIONS(7576), + [anon_sym_GT] = ACTIONS(7574), + [anon_sym_GT_EQ] = ACTIONS(7576), + [anon_sym_LT_EQ] = ACTIONS(7574), + [anon_sym_LT] = ACTIONS(7574), + [anon_sym_LT_LT] = ACTIONS(7574), + [anon_sym_GT_GT] = ACTIONS(7574), + [anon_sym_SEMI] = ACTIONS(7576), + [anon_sym___extension__] = ACTIONS(7574), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7574), + [anon_sym_COLON_COLON] = ACTIONS(7576), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7576), + [anon_sym_RBRACE] = ACTIONS(7576), + [anon_sym_LBRACK] = ACTIONS(7574), + [anon_sym_EQ] = ACTIONS(7574), + [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(7574), + [anon_sym__Alignas] = ACTIONS(7574), + [anon_sym_QMARK] = ACTIONS(7576), + [anon_sym_STAR_EQ] = ACTIONS(7576), + [anon_sym_SLASH_EQ] = ACTIONS(7576), + [anon_sym_PERCENT_EQ] = ACTIONS(7576), + [anon_sym_PLUS_EQ] = ACTIONS(7576), + [anon_sym_DASH_EQ] = ACTIONS(7576), + [anon_sym_LT_LT_EQ] = ACTIONS(7576), + [anon_sym_GT_GT_EQ] = ACTIONS(7576), + [anon_sym_AMP_EQ] = ACTIONS(7576), + [anon_sym_CARET_EQ] = ACTIONS(7576), + [anon_sym_PIPE_EQ] = ACTIONS(7576), + [anon_sym_and_eq] = ACTIONS(7574), + [anon_sym_or_eq] = ACTIONS(7574), + [anon_sym_xor_eq] = ACTIONS(7574), + [anon_sym_LT_EQ_GT] = ACTIONS(7576), + [anon_sym_or] = ACTIONS(7574), + [anon_sym_and] = ACTIONS(7574), + [anon_sym_bitor] = ACTIONS(7574), + [anon_sym_xor] = ACTIONS(7574), + [anon_sym_bitand] = ACTIONS(7574), + [anon_sym_not_eq] = ACTIONS(7574), + [anon_sym_DASH_DASH] = ACTIONS(7576), + [anon_sym_PLUS_PLUS] = ACTIONS(7576), + [anon_sym_DOT] = ACTIONS(7574), + [anon_sym_DOT_STAR] = ACTIONS(7576), + [anon_sym_DASH_GT] = ACTIONS(7576), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7574), + [anon_sym_final] = ACTIONS(7574), + [anon_sym_override] = ACTIONS(7574), + [anon_sym_template] = ACTIONS(7574), + [anon_sym_requires] = ACTIONS(7574), + [anon_sym_LBRACK_COLON] = ACTIONS(7576), + [anon_sym_COLON_RBRACK] = ACTIONS(7576), + }, + [STATE(2267)] = { + [sym_attribute_specifier] = STATE(2297), + [sym_identifier] = ACTIONS(7578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7580), + [anon_sym_COMMA] = ACTIONS(7580), + [anon_sym_RPAREN] = ACTIONS(7580), + [aux_sym_preproc_if_token2] = ACTIONS(7580), + [aux_sym_preproc_else_token1] = ACTIONS(7580), + [aux_sym_preproc_elif_token1] = ACTIONS(7578), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7580), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7580), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym_DASH] = ACTIONS(7578), + [anon_sym_PLUS] = ACTIONS(7578), + [anon_sym_STAR] = ACTIONS(7578), + [anon_sym_SLASH] = ACTIONS(7578), + [anon_sym_PERCENT] = ACTIONS(7578), + [anon_sym_PIPE_PIPE] = ACTIONS(7580), + [anon_sym_AMP_AMP] = ACTIONS(7580), + [anon_sym_PIPE] = ACTIONS(7578), + [anon_sym_CARET] = ACTIONS(7578), + [anon_sym_AMP] = ACTIONS(7578), + [anon_sym_EQ_EQ] = ACTIONS(7580), + [anon_sym_BANG_EQ] = ACTIONS(7580), + [anon_sym_GT] = ACTIONS(7578), + [anon_sym_GT_EQ] = ACTIONS(7580), + [anon_sym_LT_EQ] = ACTIONS(7578), + [anon_sym_LT] = ACTIONS(7578), + [anon_sym_LT_LT] = ACTIONS(7578), + [anon_sym_GT_GT] = ACTIONS(7578), + [anon_sym_SEMI] = ACTIONS(7580), + [anon_sym___extension__] = ACTIONS(7578), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7578), + [anon_sym_COLON_COLON] = ACTIONS(7580), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7580), + [anon_sym_RBRACE] = ACTIONS(7580), + [anon_sym_LBRACK] = ACTIONS(7578), + [anon_sym_EQ] = ACTIONS(7578), + [anon_sym_const] = ACTIONS(7578), + [anon_sym_constexpr] = ACTIONS(7578), + [anon_sym_volatile] = ACTIONS(7578), + [anon_sym_restrict] = ACTIONS(7578), + [anon_sym___restrict__] = ACTIONS(7578), + [anon_sym__Atomic] = ACTIONS(7578), + [anon_sym__Noreturn] = ACTIONS(7578), + [anon_sym_noreturn] = ACTIONS(7578), + [anon_sym__Nonnull] = ACTIONS(7578), + [anon_sym_mutable] = ACTIONS(7578), + [anon_sym_constinit] = ACTIONS(7578), + [anon_sym_consteval] = ACTIONS(7578), + [anon_sym_alignas] = ACTIONS(7578), + [anon_sym__Alignas] = ACTIONS(7578), + [anon_sym_QMARK] = ACTIONS(7580), + [anon_sym_STAR_EQ] = ACTIONS(7580), + [anon_sym_SLASH_EQ] = ACTIONS(7580), + [anon_sym_PERCENT_EQ] = ACTIONS(7580), + [anon_sym_PLUS_EQ] = ACTIONS(7580), + [anon_sym_DASH_EQ] = ACTIONS(7580), + [anon_sym_LT_LT_EQ] = ACTIONS(7580), + [anon_sym_GT_GT_EQ] = ACTIONS(7580), + [anon_sym_AMP_EQ] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(7580), + [anon_sym_PIPE_EQ] = ACTIONS(7580), + [anon_sym_and_eq] = ACTIONS(7578), + [anon_sym_or_eq] = ACTIONS(7578), + [anon_sym_xor_eq] = ACTIONS(7578), + [anon_sym_LT_EQ_GT] = ACTIONS(7580), + [anon_sym_or] = ACTIONS(7578), + [anon_sym_and] = ACTIONS(7578), + [anon_sym_bitor] = ACTIONS(7578), + [anon_sym_xor] = ACTIONS(7578), + [anon_sym_bitand] = ACTIONS(7578), + [anon_sym_not_eq] = ACTIONS(7578), + [anon_sym_DASH_DASH] = ACTIONS(7580), + [anon_sym_PLUS_PLUS] = ACTIONS(7580), + [anon_sym_DOT] = ACTIONS(7578), + [anon_sym_DOT_STAR] = ACTIONS(7580), + [anon_sym_DASH_GT] = ACTIONS(7580), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7578), + [anon_sym_final] = ACTIONS(7578), + [anon_sym_override] = ACTIONS(7578), + [anon_sym_template] = ACTIONS(7578), + [anon_sym_requires] = ACTIONS(7578), + [anon_sym_LBRACK_COLON] = ACTIONS(7580), + [anon_sym_COLON_RBRACK] = ACTIONS(7580), + }, + [STATE(2268)] = { + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_exception_specification] = STATE(2477), + [sym__function_attributes_end] = STATE(3488), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3439), + [sym_noexcept] = STATE(2477), + [sym_throw_specifier] = STATE(2477), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7482), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7485), + [anon_sym_override] = ACTIONS(7485), + [anon_sym_noexcept] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(6424), + [anon_sym_requires] = ACTIONS(7488), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), + }, + [STATE(2269)] = { + [sym_attribute_specifier] = STATE(2497), + [sym_attribute_declaration] = STATE(5144), + [sym_type_qualifier] = STATE(2738), + [sym_alignas_qualifier] = STATE(3022), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym_ref_qualifier] = STATE(3897), + [sym__function_attributes_start] = STATE(3810), + [sym__function_exception_specification] = STATE(4471), + [sym__function_attributes_end] = STATE(6661), + [sym__function_postfix] = STATE(6109), + [sym_trailing_return_type] = STATE(6820), + [sym_noexcept] = STATE(4471), + [sym_throw_specifier] = STATE(4471), + [sym_requires_clause] = STATE(6109), + [aux_sym_type_definition_repeat1] = STATE(2497), + [aux_sym__type_definition_type_repeat1] = STATE(2738), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [sym_identifier] = ACTIONS(6397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [aux_sym_preproc_if_token2] = ACTIONS(6399), + [aux_sym_preproc_else_token1] = ACTIONS(6399), + [aux_sym_preproc_elif_token1] = ACTIONS(6397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(7582), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(7588), + [anon_sym___attribute__] = ACTIONS(7590), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(7588), + [anon_sym_constexpr] = ACTIONS(7588), + [anon_sym_volatile] = ACTIONS(7588), + [anon_sym_restrict] = ACTIONS(7588), + [anon_sym___restrict__] = ACTIONS(7588), + [anon_sym__Atomic] = ACTIONS(7588), + [anon_sym__Noreturn] = ACTIONS(7588), + [anon_sym_noreturn] = ACTIONS(7588), + [anon_sym__Nonnull] = ACTIONS(7588), + [anon_sym_mutable] = ACTIONS(7588), + [anon_sym_constinit] = ACTIONS(7588), + [anon_sym_consteval] = ACTIONS(7588), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6397), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6397), + [anon_sym_not_eq] = ACTIONS(6397), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7599), + [anon_sym_override] = ACTIONS(7599), + [anon_sym_noexcept] = ACTIONS(7602), + [anon_sym_throw] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(7606), + }, + [STATE(2270)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2558), + [sym__abstract_declarator] = STATE(7342), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2648), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2430), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9531), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2648), + [aux_sym_pointer_declarator_repeat1] = STATE(2558), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7609), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7611), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7613), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(7615), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2271)] = { + [sym_attribute_specifier] = STATE(2309), + [sym_identifier] = ACTIONS(7617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7619), + [anon_sym_COMMA] = ACTIONS(7619), + [anon_sym_RPAREN] = ACTIONS(7619), + [aux_sym_preproc_if_token2] = ACTIONS(7619), + [aux_sym_preproc_else_token1] = ACTIONS(7619), + [aux_sym_preproc_elif_token1] = ACTIONS(7617), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7619), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7619), + [anon_sym_LPAREN2] = ACTIONS(7619), + [anon_sym_DASH] = ACTIONS(7617), + [anon_sym_PLUS] = ACTIONS(7617), + [anon_sym_STAR] = ACTIONS(7617), + [anon_sym_SLASH] = ACTIONS(7617), + [anon_sym_PERCENT] = ACTIONS(7617), + [anon_sym_PIPE_PIPE] = ACTIONS(7619), + [anon_sym_AMP_AMP] = ACTIONS(7619), + [anon_sym_PIPE] = ACTIONS(7617), + [anon_sym_CARET] = ACTIONS(7617), + [anon_sym_AMP] = ACTIONS(7617), + [anon_sym_EQ_EQ] = ACTIONS(7619), + [anon_sym_BANG_EQ] = ACTIONS(7619), + [anon_sym_GT] = ACTIONS(7617), + [anon_sym_GT_EQ] = ACTIONS(7619), + [anon_sym_LT_EQ] = ACTIONS(7617), + [anon_sym_LT] = ACTIONS(7617), + [anon_sym_LT_LT] = ACTIONS(7617), + [anon_sym_GT_GT] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7619), + [anon_sym___extension__] = ACTIONS(7617), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7617), + [anon_sym_COLON_COLON] = ACTIONS(7619), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7619), + [anon_sym_RBRACE] = ACTIONS(7619), + [anon_sym_LBRACK] = ACTIONS(7617), + [anon_sym_EQ] = ACTIONS(7617), + [anon_sym_const] = ACTIONS(7617), + [anon_sym_constexpr] = ACTIONS(7617), + [anon_sym_volatile] = ACTIONS(7617), + [anon_sym_restrict] = ACTIONS(7617), + [anon_sym___restrict__] = ACTIONS(7617), + [anon_sym__Atomic] = ACTIONS(7617), + [anon_sym__Noreturn] = ACTIONS(7617), + [anon_sym_noreturn] = ACTIONS(7617), + [anon_sym__Nonnull] = ACTIONS(7617), + [anon_sym_mutable] = ACTIONS(7617), + [anon_sym_constinit] = ACTIONS(7617), + [anon_sym_consteval] = ACTIONS(7617), + [anon_sym_alignas] = ACTIONS(7617), + [anon_sym__Alignas] = ACTIONS(7617), + [anon_sym_QMARK] = ACTIONS(7619), + [anon_sym_STAR_EQ] = ACTIONS(7619), + [anon_sym_SLASH_EQ] = ACTIONS(7619), + [anon_sym_PERCENT_EQ] = ACTIONS(7619), + [anon_sym_PLUS_EQ] = ACTIONS(7619), + [anon_sym_DASH_EQ] = ACTIONS(7619), + [anon_sym_LT_LT_EQ] = ACTIONS(7619), + [anon_sym_GT_GT_EQ] = ACTIONS(7619), + [anon_sym_AMP_EQ] = ACTIONS(7619), + [anon_sym_CARET_EQ] = ACTIONS(7619), + [anon_sym_PIPE_EQ] = ACTIONS(7619), + [anon_sym_and_eq] = ACTIONS(7617), + [anon_sym_or_eq] = ACTIONS(7617), + [anon_sym_xor_eq] = ACTIONS(7617), + [anon_sym_LT_EQ_GT] = ACTIONS(7619), + [anon_sym_or] = ACTIONS(7617), + [anon_sym_and] = ACTIONS(7617), + [anon_sym_bitor] = ACTIONS(7617), + [anon_sym_xor] = ACTIONS(7617), + [anon_sym_bitand] = ACTIONS(7617), + [anon_sym_not_eq] = ACTIONS(7617), + [anon_sym_DASH_DASH] = ACTIONS(7619), + [anon_sym_PLUS_PLUS] = ACTIONS(7619), + [anon_sym_DOT] = ACTIONS(7617), + [anon_sym_DOT_STAR] = ACTIONS(7619), + [anon_sym_DASH_GT] = ACTIONS(7619), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7617), + [anon_sym_final] = ACTIONS(7617), + [anon_sym_override] = ACTIONS(7617), + [anon_sym_template] = ACTIONS(7617), + [anon_sym_requires] = ACTIONS(7617), + [anon_sym_LBRACK_COLON] = ACTIONS(7619), + [anon_sym_COLON_RBRACK] = ACTIONS(7619), + }, + [STATE(2272)] = { + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_exception_specification] = STATE(2481), + [sym__function_attributes_end] = STATE(3491), + [sym__function_postfix] = STATE(3975), + [sym_trailing_return_type] = STATE(3444), + [sym_noexcept] = STATE(2481), + [sym_throw_specifier] = STATE(2481), + [sym_requires_clause] = STATE(3975), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7621), + [anon_sym_or_eq] = ACTIONS(7621), + [anon_sym_xor_eq] = ACTIONS(7621), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(7625), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7628), + [anon_sym_override] = ACTIONS(7628), + [anon_sym_noexcept] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(6424), + [anon_sym_requires] = ACTIONS(7631), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), + }, + [STATE(2273)] = { + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [aux_sym_preproc_if_token2] = ACTIONS(7447), + [aux_sym_preproc_else_token1] = ACTIONS(7447), + [aux_sym_preproc_elif_token1] = ACTIONS(7442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7442), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym_SEMI] = ACTIONS(7447), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7447), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7447), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7447), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_and_eq] = ACTIONS(7442), + [anon_sym_or_eq] = ACTIONS(7442), + [anon_sym_xor_eq] = ACTIONS(7442), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + [anon_sym_COLON_RBRACK] = ACTIONS(7447), + }, + [STATE(2274)] = { + [sym_attribute_specifier] = STATE(2324), + [sym_identifier] = ACTIONS(7634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7636), + [anon_sym_COMMA] = ACTIONS(7636), + [anon_sym_RPAREN] = ACTIONS(7636), + [aux_sym_preproc_if_token2] = ACTIONS(7636), + [aux_sym_preproc_else_token1] = ACTIONS(7636), + [aux_sym_preproc_elif_token1] = ACTIONS(7634), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7636), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7636), + [anon_sym_LPAREN2] = ACTIONS(7636), + [anon_sym_DASH] = ACTIONS(7634), + [anon_sym_PLUS] = ACTIONS(7634), + [anon_sym_STAR] = ACTIONS(7634), + [anon_sym_SLASH] = ACTIONS(7634), + [anon_sym_PERCENT] = ACTIONS(7634), + [anon_sym_PIPE_PIPE] = ACTIONS(7636), + [anon_sym_AMP_AMP] = ACTIONS(7636), + [anon_sym_PIPE] = ACTIONS(7634), + [anon_sym_CARET] = ACTIONS(7634), + [anon_sym_AMP] = ACTIONS(7634), + [anon_sym_EQ_EQ] = ACTIONS(7636), + [anon_sym_BANG_EQ] = ACTIONS(7636), + [anon_sym_GT] = ACTIONS(7634), + [anon_sym_GT_EQ] = ACTIONS(7636), + [anon_sym_LT_EQ] = ACTIONS(7634), + [anon_sym_LT] = ACTIONS(7634), + [anon_sym_LT_LT] = ACTIONS(7634), + [anon_sym_GT_GT] = ACTIONS(7634), + [anon_sym_SEMI] = ACTIONS(7636), + [anon_sym___extension__] = ACTIONS(7634), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7634), + [anon_sym_COLON_COLON] = ACTIONS(7636), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7636), + [anon_sym_RBRACE] = ACTIONS(7636), + [anon_sym_LBRACK] = ACTIONS(7634), + [anon_sym_EQ] = ACTIONS(7634), + [anon_sym_const] = ACTIONS(7634), + [anon_sym_constexpr] = ACTIONS(7634), + [anon_sym_volatile] = ACTIONS(7634), + [anon_sym_restrict] = ACTIONS(7634), + [anon_sym___restrict__] = ACTIONS(7634), + [anon_sym__Atomic] = ACTIONS(7634), + [anon_sym__Noreturn] = ACTIONS(7634), + [anon_sym_noreturn] = ACTIONS(7634), + [anon_sym__Nonnull] = ACTIONS(7634), + [anon_sym_mutable] = ACTIONS(7634), + [anon_sym_constinit] = ACTIONS(7634), + [anon_sym_consteval] = ACTIONS(7634), + [anon_sym_alignas] = ACTIONS(7634), + [anon_sym__Alignas] = ACTIONS(7634), + [anon_sym_QMARK] = ACTIONS(7636), + [anon_sym_STAR_EQ] = ACTIONS(7636), + [anon_sym_SLASH_EQ] = ACTIONS(7636), + [anon_sym_PERCENT_EQ] = ACTIONS(7636), + [anon_sym_PLUS_EQ] = ACTIONS(7636), + [anon_sym_DASH_EQ] = ACTIONS(7636), + [anon_sym_LT_LT_EQ] = ACTIONS(7636), + [anon_sym_GT_GT_EQ] = ACTIONS(7636), + [anon_sym_AMP_EQ] = ACTIONS(7636), + [anon_sym_CARET_EQ] = ACTIONS(7636), + [anon_sym_PIPE_EQ] = ACTIONS(7636), + [anon_sym_and_eq] = ACTIONS(7634), + [anon_sym_or_eq] = ACTIONS(7634), + [anon_sym_xor_eq] = ACTIONS(7634), + [anon_sym_LT_EQ_GT] = ACTIONS(7636), + [anon_sym_or] = ACTIONS(7634), + [anon_sym_and] = ACTIONS(7634), + [anon_sym_bitor] = ACTIONS(7634), + [anon_sym_xor] = ACTIONS(7634), + [anon_sym_bitand] = ACTIONS(7634), + [anon_sym_not_eq] = ACTIONS(7634), + [anon_sym_DASH_DASH] = ACTIONS(7636), + [anon_sym_PLUS_PLUS] = ACTIONS(7636), + [anon_sym_DOT] = ACTIONS(7634), + [anon_sym_DOT_STAR] = ACTIONS(7636), + [anon_sym_DASH_GT] = ACTIONS(7636), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7634), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_template] = ACTIONS(7634), + [anon_sym_requires] = ACTIONS(7634), + [anon_sym_LBRACK_COLON] = ACTIONS(7636), + [anon_sym_COLON_RBRACK] = ACTIONS(7636), + }, + [STATE(2275)] = { + [sym_identifier] = ACTIONS(7149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7151), + [anon_sym_COMMA] = ACTIONS(7151), + [anon_sym_RPAREN] = ACTIONS(7151), + [aux_sym_preproc_if_token2] = ACTIONS(7151), + [aux_sym_preproc_else_token1] = ACTIONS(7151), + [aux_sym_preproc_elif_token1] = ACTIONS(7149), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7151), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7151), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_DASH] = ACTIONS(7149), + [anon_sym_PLUS] = ACTIONS(7149), + [anon_sym_STAR] = ACTIONS(7149), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_PIPE_PIPE] = ACTIONS(7151), + [anon_sym_AMP_AMP] = ACTIONS(7151), + [anon_sym_PIPE] = ACTIONS(7149), + [anon_sym_CARET] = ACTIONS(7149), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym_EQ_EQ] = ACTIONS(7151), + [anon_sym_BANG_EQ] = ACTIONS(7151), + [anon_sym_GT] = ACTIONS(7149), + [anon_sym_GT_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7149), + [anon_sym_LT] = ACTIONS(7149), + [anon_sym_LT_LT] = ACTIONS(7149), + [anon_sym_GT_GT] = ACTIONS(7149), + [anon_sym_SEMI] = ACTIONS(7151), + [anon_sym___extension__] = ACTIONS(7149), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_COLON] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7151), + [anon_sym_LBRACE] = ACTIONS(7151), + [anon_sym_RBRACE] = ACTIONS(7151), + [anon_sym_LBRACK] = ACTIONS(7149), + [anon_sym_EQ] = ACTIONS(7149), + [anon_sym_const] = ACTIONS(7149), + [anon_sym_constexpr] = ACTIONS(7149), + [anon_sym_volatile] = ACTIONS(7149), + [anon_sym_restrict] = ACTIONS(7149), + [anon_sym___restrict__] = ACTIONS(7149), + [anon_sym__Atomic] = ACTIONS(7149), + [anon_sym__Noreturn] = ACTIONS(7149), + [anon_sym_noreturn] = ACTIONS(7149), + [anon_sym__Nonnull] = ACTIONS(7149), + [anon_sym_mutable] = ACTIONS(7149), + [anon_sym_constinit] = ACTIONS(7149), + [anon_sym_consteval] = ACTIONS(7149), + [anon_sym_alignas] = ACTIONS(7149), + [anon_sym__Alignas] = ACTIONS(7149), + [anon_sym_QMARK] = ACTIONS(7151), + [anon_sym_STAR_EQ] = ACTIONS(7151), + [anon_sym_SLASH_EQ] = ACTIONS(7151), + [anon_sym_PERCENT_EQ] = ACTIONS(7151), + [anon_sym_PLUS_EQ] = ACTIONS(7151), + [anon_sym_DASH_EQ] = ACTIONS(7151), + [anon_sym_LT_LT_EQ] = ACTIONS(7151), + [anon_sym_GT_GT_EQ] = ACTIONS(7151), + [anon_sym_AMP_EQ] = ACTIONS(7151), + [anon_sym_CARET_EQ] = ACTIONS(7151), + [anon_sym_PIPE_EQ] = ACTIONS(7151), + [anon_sym_and_eq] = ACTIONS(7149), + [anon_sym_or_eq] = ACTIONS(7149), + [anon_sym_xor_eq] = ACTIONS(7149), + [anon_sym_LT_EQ_GT] = ACTIONS(7151), + [anon_sym_or] = ACTIONS(7149), + [anon_sym_and] = ACTIONS(7149), + [anon_sym_bitor] = ACTIONS(7149), + [anon_sym_xor] = ACTIONS(7149), + [anon_sym_bitand] = ACTIONS(7149), + [anon_sym_not_eq] = ACTIONS(7149), + [anon_sym_DASH_DASH] = ACTIONS(7151), + [anon_sym_PLUS_PLUS] = ACTIONS(7151), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_DOT_STAR] = ACTIONS(7151), + [anon_sym_DASH_GT] = ACTIONS(7151), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7149), + [anon_sym_final] = ACTIONS(7149), + [anon_sym_override] = ACTIONS(7149), + [anon_sym_template] = ACTIONS(7149), + [anon_sym_requires] = ACTIONS(7149), + [anon_sym_LBRACK_COLON] = ACTIONS(7151), + [anon_sym_COLON_RBRACK] = ACTIONS(7151), + }, + [STATE(2276)] = { + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [aux_sym_preproc_if_token2] = ACTIONS(7292), + [aux_sym_preproc_else_token1] = ACTIONS(7292), + [aux_sym_preproc_elif_token1] = ACTIONS(7290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7292), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_RBRACE] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7292), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_and_eq] = ACTIONS(7290), + [anon_sym_or_eq] = ACTIONS(7290), + [anon_sym_xor_eq] = ACTIONS(7290), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), + [anon_sym_COLON_RBRACK] = ACTIONS(7292), + }, + [STATE(2277)] = { + [sym_type_qualifier] = STATE(2263), + [sym_alignas_qualifier] = STATE(2407), + [aux_sym__type_definition_type_repeat1] = STATE(2263), + [aux_sym_sized_type_specifier_repeat1] = STATE(2381), + [sym_identifier] = ACTIONS(7638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(7641), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON_COLON] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(7644), + [anon_sym_unsigned] = ACTIONS(7644), + [anon_sym_long] = ACTIONS(7644), + [anon_sym_short] = ACTIONS(7644), + [anon_sym_LBRACK] = ACTIONS(6936), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(7641), + [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(7646), + [anon_sym__Alignas] = ACTIONS(7646), + [sym_primitive_type] = ACTIONS(7649), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6934), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_and_eq] = ACTIONS(6936), + [anon_sym_or_eq] = ACTIONS(6936), + [anon_sym_xor_eq] = ACTIONS(6936), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6936), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6936), + [anon_sym_final] = ACTIONS(6936), + [anon_sym_override] = ACTIONS(6936), + [anon_sym_template] = ACTIONS(6936), + [anon_sym_requires] = ACTIONS(6936), + [anon_sym_DASH_GT_STAR] = ACTIONS(6934), + [anon_sym_LBRACK_COLON] = ACTIONS(6934), + }, + [STATE(2278)] = { + [sym_attribute_specifier] = STATE(2497), + [sym_attribute_declaration] = STATE(5144), + [sym_type_qualifier] = STATE(2738), + [sym_alignas_qualifier] = STATE(3022), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym_ref_qualifier] = STATE(3957), + [sym__function_attributes_start] = STATE(3816), + [sym__function_exception_specification] = STATE(4494), + [sym__function_attributes_end] = STATE(6730), + [sym__function_postfix] = STATE(6109), + [sym_trailing_return_type] = STATE(6437), + [sym_noexcept] = STATE(4494), + [sym_throw_specifier] = STATE(4494), + [sym_requires_clause] = STATE(6109), + [aux_sym_type_definition_repeat1] = STATE(2497), + [aux_sym__type_definition_type_repeat1] = STATE(2738), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_RPAREN] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(7582), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6399), + [anon_sym_SEMI] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(7651), + [anon_sym___attribute__] = ACTIONS(7653), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_COLON] = ACTIONS(6397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6399), + [anon_sym_RBRACE] = ACTIONS(6399), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(7588), + [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(7655), + [anon_sym__Alignas] = ACTIONS(7655), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(7657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7660), + [anon_sym_override] = ACTIONS(7660), + [anon_sym_noexcept] = ACTIONS(7662), + [anon_sym_throw] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7666), + [anon_sym_COLON_RBRACK] = ACTIONS(6399), + }, + [STATE(2279)] = { + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_exception_specification] = STATE(2447), + [sym__function_attributes_end] = STATE(3498), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3432), + [sym_noexcept] = STATE(2447), + [sym_throw_specifier] = STATE(2447), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7482), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_noexcept] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(6424), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), + }, + [STATE(2280)] = { + [sym_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_RPAREN] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_TILDE] = ACTIONS(7568), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7566), + [anon_sym_PERCENT] = ACTIONS(7566), + [anon_sym_PIPE_PIPE] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7566), + [anon_sym_CARET] = ACTIONS(7566), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_EQ_EQ] = ACTIONS(7568), + [anon_sym_BANG_EQ] = ACTIONS(7568), + [anon_sym_GT] = ACTIONS(7566), + [anon_sym_GT_EQ] = ACTIONS(7568), + [anon_sym_LT_EQ] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7566), + [anon_sym_LT_LT] = ACTIONS(7566), + [anon_sym_GT_GT] = ACTIONS(7566), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym_virtual] = ACTIONS(7566), + [anon_sym_extern] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7568), + [anon_sym___declspec] = ACTIONS(7566), + [anon_sym___based] = ACTIONS(7566), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(7566), + [anon_sym_static] = ACTIONS(7566), + [anon_sym_EQ] = ACTIONS(7566), + [anon_sym_register] = ACTIONS(7566), + [anon_sym_inline] = ACTIONS(7566), + [anon_sym___inline] = ACTIONS(7566), + [anon_sym___inline__] = ACTIONS(7566), + [anon_sym___forceinline] = ACTIONS(7566), + [anon_sym_thread_local] = ACTIONS(7566), + [anon_sym___thread] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_mutable] = ACTIONS(7566), + [anon_sym_constinit] = ACTIONS(7566), + [anon_sym_consteval] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(7568), + [anon_sym_STAR_EQ] = ACTIONS(7568), + [anon_sym_SLASH_EQ] = ACTIONS(7568), + [anon_sym_PERCENT_EQ] = ACTIONS(7568), + [anon_sym_PLUS_EQ] = ACTIONS(7568), + [anon_sym_DASH_EQ] = ACTIONS(7568), + [anon_sym_LT_LT_EQ] = ACTIONS(7568), + [anon_sym_GT_GT_EQ] = ACTIONS(7568), + [anon_sym_AMP_EQ] = ACTIONS(7568), + [anon_sym_CARET_EQ] = ACTIONS(7568), + [anon_sym_PIPE_EQ] = ACTIONS(7568), + [anon_sym_LT_EQ_GT] = ACTIONS(7568), + [anon_sym_or] = ACTIONS(7566), + [anon_sym_and] = ACTIONS(7566), + [anon_sym_bitor] = ACTIONS(7566), + [anon_sym_xor] = ACTIONS(7566), + [anon_sym_bitand] = ACTIONS(7566), + [anon_sym_not_eq] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(7568), + [anon_sym_PLUS_PLUS] = ACTIONS(7568), + [anon_sym_DOT] = ACTIONS(7566), + [anon_sym_DOT_STAR] = ACTIONS(7568), + [anon_sym_DASH_GT] = ACTIONS(7566), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7566), + [anon_sym_template] = ACTIONS(7566), + [anon_sym_operator] = ACTIONS(7566), + [anon_sym_DASH_GT_STAR] = ACTIONS(7568), + [anon_sym_LBRACK_COLON] = ACTIONS(7568), + }, + [STATE(2281)] = { + [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_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7670), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_RBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7668), + [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_decltype] = ACTIONS(7668), + [anon_sym_final] = ACTIONS(7668), + [anon_sym_override] = ACTIONS(7668), + [anon_sym_template] = ACTIONS(7668), + [anon_sym_requires] = ACTIONS(7668), + [anon_sym_LBRACK_COLON] = ACTIONS(7670), + [anon_sym_COLON_RBRACK] = ACTIONS(7670), + }, + [STATE(2282)] = { + [sym_attribute_specifier] = STATE(2326), + [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(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7672), + [anon_sym_COLON_COLON] = ACTIONS(7674), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7674), + [anon_sym_RBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7672), + [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_decltype] = ACTIONS(7672), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_template] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_LBRACK_COLON] = ACTIONS(7674), + [anon_sym_COLON_RBRACK] = ACTIONS(7674), + }, + [STATE(2283)] = { + [sym_attribute_specifier] = STATE(2300), + [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(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7676), + [anon_sym_COLON_COLON] = ACTIONS(7678), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7678), + [anon_sym_RBRACE] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7676), + [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_decltype] = ACTIONS(7676), + [anon_sym_final] = ACTIONS(7676), + [anon_sym_override] = ACTIONS(7676), + [anon_sym_template] = ACTIONS(7676), + [anon_sym_requires] = ACTIONS(7676), + [anon_sym_LBRACK_COLON] = ACTIONS(7678), + [anon_sym_COLON_RBRACK] = ACTIONS(7678), + }, + [STATE(2284)] = { + [sym_attribute_specifier] = STATE(2327), + [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(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7680), + [anon_sym_COLON_COLON] = ACTIONS(7682), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7682), + [anon_sym_RBRACE] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7680), + [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_decltype] = ACTIONS(7680), + [anon_sym_final] = ACTIONS(7680), + [anon_sym_override] = ACTIONS(7680), + [anon_sym_template] = ACTIONS(7680), + [anon_sym_requires] = ACTIONS(7680), + [anon_sym_LBRACK_COLON] = ACTIONS(7682), + [anon_sym_COLON_RBRACK] = ACTIONS(7682), + }, + [STATE(2285)] = { + [sym_attribute_specifier] = STATE(2497), + [sym_attribute_declaration] = STATE(5144), + [sym_type_qualifier] = STATE(2738), + [sym_alignas_qualifier] = STATE(3022), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym_ref_qualifier] = STATE(3966), + [sym__function_attributes_start] = STATE(3779), + [sym__function_exception_specification] = STATE(4518), + [sym__function_attributes_end] = STATE(6653), + [sym__function_postfix] = STATE(6109), + [sym_trailing_return_type] = STATE(6816), + [sym_noexcept] = STATE(4518), + [sym_throw_specifier] = STATE(4518), + [sym_requires_clause] = STATE(6109), + [aux_sym_type_definition_repeat1] = STATE(2497), + [aux_sym__type_definition_type_repeat1] = STATE(2738), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [sym_identifier] = ACTIONS(6397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [aux_sym_preproc_if_token2] = ACTIONS(6399), + [aux_sym_preproc_else_token1] = ACTIONS(6399), + [aux_sym_preproc_elif_token1] = ACTIONS(6397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(7582), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(7588), + [anon_sym___attribute__] = ACTIONS(7590), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(7588), + [anon_sym_constexpr] = ACTIONS(7588), + [anon_sym_volatile] = ACTIONS(7588), + [anon_sym_restrict] = ACTIONS(7588), + [anon_sym___restrict__] = ACTIONS(7588), + [anon_sym__Atomic] = ACTIONS(7588), + [anon_sym__Noreturn] = ACTIONS(7588), + [anon_sym_noreturn] = ACTIONS(7588), + [anon_sym__Nonnull] = ACTIONS(7588), + [anon_sym_mutable] = ACTIONS(7588), + [anon_sym_constinit] = ACTIONS(7588), + [anon_sym_consteval] = ACTIONS(7588), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6397), + [anon_sym_and] = ACTIONS(6397), + [anon_sym_bitor] = ACTIONS(6397), + [anon_sym_xor] = ACTIONS(6397), + [anon_sym_bitand] = ACTIONS(6397), + [anon_sym_not_eq] = ACTIONS(6397), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7684), + [anon_sym_override] = ACTIONS(7684), + [anon_sym_noexcept] = ACTIONS(7602), + [anon_sym_throw] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(7686), + }, + [STATE(2286)] = { + [sym_attribute_specifier] = STATE(2329), + [sym_identifier] = ACTIONS(7688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7690), + [anon_sym_COMMA] = ACTIONS(7690), + [anon_sym_RPAREN] = ACTIONS(7690), + [aux_sym_preproc_if_token2] = ACTIONS(7690), + [aux_sym_preproc_else_token1] = ACTIONS(7690), + [aux_sym_preproc_elif_token1] = ACTIONS(7688), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7690), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7690), + [anon_sym_LPAREN2] = ACTIONS(7690), + [anon_sym_DASH] = ACTIONS(7688), + [anon_sym_PLUS] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7688), + [anon_sym_SLASH] = ACTIONS(7688), + [anon_sym_PERCENT] = ACTIONS(7688), + [anon_sym_PIPE_PIPE] = ACTIONS(7690), + [anon_sym_AMP_AMP] = ACTIONS(7690), + [anon_sym_PIPE] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7688), + [anon_sym_AMP] = ACTIONS(7688), + [anon_sym_EQ_EQ] = ACTIONS(7690), + [anon_sym_BANG_EQ] = ACTIONS(7690), + [anon_sym_GT] = ACTIONS(7688), + [anon_sym_GT_EQ] = ACTIONS(7690), + [anon_sym_LT_EQ] = ACTIONS(7688), + [anon_sym_LT] = ACTIONS(7688), + [anon_sym_LT_LT] = ACTIONS(7688), + [anon_sym_GT_GT] = ACTIONS(7688), + [anon_sym_SEMI] = ACTIONS(7690), + [anon_sym___extension__] = ACTIONS(7688), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7688), + [anon_sym_COLON_COLON] = ACTIONS(7690), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7690), + [anon_sym_RBRACE] = ACTIONS(7690), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym_EQ] = ACTIONS(7688), + [anon_sym_const] = ACTIONS(7688), + [anon_sym_constexpr] = ACTIONS(7688), + [anon_sym_volatile] = ACTIONS(7688), + [anon_sym_restrict] = ACTIONS(7688), + [anon_sym___restrict__] = ACTIONS(7688), + [anon_sym__Atomic] = ACTIONS(7688), + [anon_sym__Noreturn] = ACTIONS(7688), + [anon_sym_noreturn] = ACTIONS(7688), + [anon_sym__Nonnull] = ACTIONS(7688), + [anon_sym_mutable] = ACTIONS(7688), + [anon_sym_constinit] = ACTIONS(7688), + [anon_sym_consteval] = ACTIONS(7688), + [anon_sym_alignas] = ACTIONS(7688), + [anon_sym__Alignas] = ACTIONS(7688), + [anon_sym_QMARK] = ACTIONS(7690), + [anon_sym_STAR_EQ] = ACTIONS(7690), + [anon_sym_SLASH_EQ] = ACTIONS(7690), + [anon_sym_PERCENT_EQ] = ACTIONS(7690), + [anon_sym_PLUS_EQ] = ACTIONS(7690), + [anon_sym_DASH_EQ] = ACTIONS(7690), + [anon_sym_LT_LT_EQ] = ACTIONS(7690), + [anon_sym_GT_GT_EQ] = ACTIONS(7690), + [anon_sym_AMP_EQ] = ACTIONS(7690), + [anon_sym_CARET_EQ] = ACTIONS(7690), + [anon_sym_PIPE_EQ] = ACTIONS(7690), + [anon_sym_and_eq] = ACTIONS(7688), + [anon_sym_or_eq] = ACTIONS(7688), + [anon_sym_xor_eq] = ACTIONS(7688), + [anon_sym_LT_EQ_GT] = ACTIONS(7690), + [anon_sym_or] = ACTIONS(7688), + [anon_sym_and] = ACTIONS(7688), + [anon_sym_bitor] = ACTIONS(7688), + [anon_sym_xor] = ACTIONS(7688), + [anon_sym_bitand] = ACTIONS(7688), + [anon_sym_not_eq] = ACTIONS(7688), + [anon_sym_DASH_DASH] = ACTIONS(7690), + [anon_sym_PLUS_PLUS] = ACTIONS(7690), + [anon_sym_DOT] = ACTIONS(7688), + [anon_sym_DOT_STAR] = ACTIONS(7690), + [anon_sym_DASH_GT] = ACTIONS(7690), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7688), + [anon_sym_final] = ACTIONS(7688), + [anon_sym_override] = ACTIONS(7688), + [anon_sym_template] = ACTIONS(7688), + [anon_sym_requires] = ACTIONS(7688), + [anon_sym_LBRACK_COLON] = ACTIONS(7690), + [anon_sym_COLON_RBRACK] = ACTIONS(7690), + }, + [STATE(2287)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2270), + [sym__abstract_declarator] = STATE(7340), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2646), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2430), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9531), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2646), + [aux_sym_pointer_declarator_repeat1] = STATE(2270), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(7609), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(7611), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(7613), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(7615), + [sym_ms_restrict_modifier] = ACTIONS(7143), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7143), + [sym_ms_signed_ptr_modifier] = ACTIONS(7143), + [anon_sym__unaligned] = ACTIONS(7145), + [anon_sym___unaligned] = ACTIONS(7145), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2288)] = { + [sym_attribute_specifier] = STATE(2317), + [sym_identifier] = ACTIONS(7692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7694), + [anon_sym_COMMA] = ACTIONS(7694), + [anon_sym_RPAREN] = ACTIONS(7694), + [aux_sym_preproc_if_token2] = ACTIONS(7694), + [aux_sym_preproc_else_token1] = ACTIONS(7694), + [aux_sym_preproc_elif_token1] = ACTIONS(7692), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7694), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7694), + [anon_sym_LPAREN2] = ACTIONS(7694), + [anon_sym_DASH] = ACTIONS(7692), + [anon_sym_PLUS] = ACTIONS(7692), + [anon_sym_STAR] = ACTIONS(7692), + [anon_sym_SLASH] = ACTIONS(7692), + [anon_sym_PERCENT] = ACTIONS(7692), + [anon_sym_PIPE_PIPE] = ACTIONS(7694), + [anon_sym_AMP_AMP] = ACTIONS(7694), + [anon_sym_PIPE] = ACTIONS(7692), + [anon_sym_CARET] = ACTIONS(7692), + [anon_sym_AMP] = ACTIONS(7692), + [anon_sym_EQ_EQ] = ACTIONS(7694), + [anon_sym_BANG_EQ] = ACTIONS(7694), + [anon_sym_GT] = ACTIONS(7692), + [anon_sym_GT_EQ] = ACTIONS(7694), + [anon_sym_LT_EQ] = ACTIONS(7692), + [anon_sym_LT] = ACTIONS(7692), + [anon_sym_LT_LT] = ACTIONS(7692), + [anon_sym_GT_GT] = ACTIONS(7692), + [anon_sym_SEMI] = ACTIONS(7694), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7692), + [anon_sym_COLON_COLON] = ACTIONS(7694), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7694), + [anon_sym_RBRACE] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_EQ] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7692), + [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(7694), + [anon_sym_STAR_EQ] = ACTIONS(7694), + [anon_sym_SLASH_EQ] = ACTIONS(7694), + [anon_sym_PERCENT_EQ] = ACTIONS(7694), + [anon_sym_PLUS_EQ] = ACTIONS(7694), + [anon_sym_DASH_EQ] = ACTIONS(7694), + [anon_sym_LT_LT_EQ] = ACTIONS(7694), + [anon_sym_GT_GT_EQ] = ACTIONS(7694), + [anon_sym_AMP_EQ] = ACTIONS(7694), + [anon_sym_CARET_EQ] = ACTIONS(7694), + [anon_sym_PIPE_EQ] = ACTIONS(7694), + [anon_sym_and_eq] = ACTIONS(7692), + [anon_sym_or_eq] = ACTIONS(7692), + [anon_sym_xor_eq] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7694), + [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(7694), + [anon_sym_PLUS_PLUS] = ACTIONS(7694), + [anon_sym_DOT] = ACTIONS(7692), + [anon_sym_DOT_STAR] = ACTIONS(7694), + [anon_sym_DASH_GT] = ACTIONS(7694), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7692), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_template] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_LBRACK_COLON] = ACTIONS(7694), + [anon_sym_COLON_RBRACK] = ACTIONS(7694), + }, + [STATE(2289)] = { + [sym_attribute_specifier] = STATE(2497), + [sym_attribute_declaration] = STATE(5144), + [sym_type_qualifier] = STATE(2738), + [sym_alignas_qualifier] = STATE(3022), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym_ref_qualifier] = STATE(3974), + [sym__function_attributes_start] = STATE(3776), + [sym__function_exception_specification] = STATE(4554), + [sym__function_attributes_end] = STATE(6758), + [sym__function_postfix] = STATE(6109), + [sym_trailing_return_type] = STATE(6492), + [sym_noexcept] = STATE(4554), + [sym_throw_specifier] = STATE(4554), + [sym_requires_clause] = STATE(6109), + [aux_sym_type_definition_repeat1] = STATE(2497), + [aux_sym__type_definition_type_repeat1] = STATE(2738), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_RPAREN] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(7582), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6399), + [anon_sym_SEMI] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(7651), + [anon_sym___attribute__] = ACTIONS(7653), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_COLON] = ACTIONS(6397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6399), + [anon_sym_RBRACE] = ACTIONS(6399), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(7588), + [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(7655), + [anon_sym__Alignas] = ACTIONS(7655), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(7657), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7696), + [anon_sym_override] = ACTIONS(7696), + [anon_sym_noexcept] = ACTIONS(7662), + [anon_sym_throw] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7699), + [anon_sym_COLON_RBRACK] = ACTIONS(6399), + }, + [STATE(2290)] = { + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_exception_specification] = STATE(2478), + [sym__function_attributes_end] = STATE(3519), + [sym__function_postfix] = STATE(3975), + [sym_trailing_return_type] = STATE(3462), + [sym_noexcept] = STATE(2478), + [sym_throw_specifier] = STATE(2478), + [sym_requires_clause] = STATE(3975), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7621), + [anon_sym_or_eq] = ACTIONS(7621), + [anon_sym_xor_eq] = ACTIONS(7621), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(7625), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_noexcept] = ACTIONS(6422), + [anon_sym_throw] = ACTIONS(6424), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), + }, + [STATE(2291)] = { + [sym_attribute_specifier] = STATE(2318), + [sym_identifier] = ACTIONS(7702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7704), + [anon_sym_COMMA] = ACTIONS(7704), + [anon_sym_RPAREN] = ACTIONS(7704), + [aux_sym_preproc_if_token2] = ACTIONS(7704), + [aux_sym_preproc_else_token1] = ACTIONS(7704), + [aux_sym_preproc_elif_token1] = ACTIONS(7702), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7704), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7704), + [anon_sym_LPAREN2] = ACTIONS(7704), + [anon_sym_DASH] = ACTIONS(7702), + [anon_sym_PLUS] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_SLASH] = ACTIONS(7702), + [anon_sym_PERCENT] = ACTIONS(7702), + [anon_sym_PIPE_PIPE] = ACTIONS(7704), + [anon_sym_AMP_AMP] = ACTIONS(7704), + [anon_sym_PIPE] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_AMP] = ACTIONS(7702), + [anon_sym_EQ_EQ] = ACTIONS(7704), + [anon_sym_BANG_EQ] = ACTIONS(7704), + [anon_sym_GT] = ACTIONS(7702), + [anon_sym_GT_EQ] = ACTIONS(7704), + [anon_sym_LT_EQ] = ACTIONS(7702), + [anon_sym_LT] = ACTIONS(7702), + [anon_sym_LT_LT] = ACTIONS(7702), + [anon_sym_GT_GT] = ACTIONS(7702), + [anon_sym_SEMI] = ACTIONS(7704), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7702), + [anon_sym_COLON_COLON] = ACTIONS(7704), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7704), + [anon_sym_RBRACE] = ACTIONS(7704), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_EQ] = ACTIONS(7702), + [anon_sym_const] = ACTIONS(7702), + [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(7704), + [anon_sym_STAR_EQ] = ACTIONS(7704), + [anon_sym_SLASH_EQ] = ACTIONS(7704), + [anon_sym_PERCENT_EQ] = ACTIONS(7704), + [anon_sym_PLUS_EQ] = ACTIONS(7704), + [anon_sym_DASH_EQ] = ACTIONS(7704), + [anon_sym_LT_LT_EQ] = ACTIONS(7704), + [anon_sym_GT_GT_EQ] = ACTIONS(7704), + [anon_sym_AMP_EQ] = ACTIONS(7704), + [anon_sym_CARET_EQ] = ACTIONS(7704), + [anon_sym_PIPE_EQ] = ACTIONS(7704), + [anon_sym_and_eq] = ACTIONS(7702), + [anon_sym_or_eq] = ACTIONS(7702), + [anon_sym_xor_eq] = ACTIONS(7702), + [anon_sym_LT_EQ_GT] = ACTIONS(7704), + [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(7704), + [anon_sym_PLUS_PLUS] = ACTIONS(7704), + [anon_sym_DOT] = ACTIONS(7702), + [anon_sym_DOT_STAR] = ACTIONS(7704), + [anon_sym_DASH_GT] = ACTIONS(7704), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7702), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_template] = ACTIONS(7702), + [anon_sym_requires] = ACTIONS(7702), + [anon_sym_LBRACK_COLON] = ACTIONS(7704), + [anon_sym_COLON_RBRACK] = ACTIONS(7704), + }, + [STATE(2292)] = { + [sym_attribute_specifier] = STATE(2333), + [sym_identifier] = ACTIONS(7706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7708), + [anon_sym_COMMA] = ACTIONS(7708), + [anon_sym_RPAREN] = ACTIONS(7708), + [aux_sym_preproc_if_token2] = ACTIONS(7708), + [aux_sym_preproc_else_token1] = ACTIONS(7708), + [aux_sym_preproc_elif_token1] = ACTIONS(7706), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7708), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7708), + [anon_sym_LPAREN2] = ACTIONS(7708), + [anon_sym_DASH] = ACTIONS(7706), + [anon_sym_PLUS] = ACTIONS(7706), + [anon_sym_STAR] = ACTIONS(7706), + [anon_sym_SLASH] = ACTIONS(7706), + [anon_sym_PERCENT] = ACTIONS(7706), + [anon_sym_PIPE_PIPE] = ACTIONS(7708), + [anon_sym_AMP_AMP] = ACTIONS(7708), + [anon_sym_PIPE] = ACTIONS(7706), + [anon_sym_CARET] = ACTIONS(7706), + [anon_sym_AMP] = ACTIONS(7706), + [anon_sym_EQ_EQ] = ACTIONS(7708), + [anon_sym_BANG_EQ] = ACTIONS(7708), + [anon_sym_GT] = ACTIONS(7706), + [anon_sym_GT_EQ] = ACTIONS(7708), + [anon_sym_LT_EQ] = ACTIONS(7706), + [anon_sym_LT] = ACTIONS(7706), + [anon_sym_LT_LT] = ACTIONS(7706), + [anon_sym_GT_GT] = ACTIONS(7706), + [anon_sym_SEMI] = ACTIONS(7708), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym___attribute__] = ACTIONS(7374), + [anon_sym___attribute] = ACTIONS(7374), + [anon_sym_COLON] = ACTIONS(7706), + [anon_sym_COLON_COLON] = ACTIONS(7708), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7708), + [anon_sym_RBRACE] = ACTIONS(7708), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_EQ] = ACTIONS(7706), + [anon_sym_const] = ACTIONS(7706), + [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(7708), + [anon_sym_STAR_EQ] = ACTIONS(7708), + [anon_sym_SLASH_EQ] = ACTIONS(7708), + [anon_sym_PERCENT_EQ] = ACTIONS(7708), + [anon_sym_PLUS_EQ] = ACTIONS(7708), + [anon_sym_DASH_EQ] = ACTIONS(7708), + [anon_sym_LT_LT_EQ] = ACTIONS(7708), + [anon_sym_GT_GT_EQ] = ACTIONS(7708), + [anon_sym_AMP_EQ] = ACTIONS(7708), + [anon_sym_CARET_EQ] = ACTIONS(7708), + [anon_sym_PIPE_EQ] = ACTIONS(7708), + [anon_sym_and_eq] = ACTIONS(7706), + [anon_sym_or_eq] = ACTIONS(7706), + [anon_sym_xor_eq] = ACTIONS(7706), + [anon_sym_LT_EQ_GT] = ACTIONS(7708), + [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(7708), + [anon_sym_PLUS_PLUS] = ACTIONS(7708), + [anon_sym_DOT] = ACTIONS(7706), + [anon_sym_DOT_STAR] = ACTIONS(7708), + [anon_sym_DASH_GT] = ACTIONS(7708), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7706), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_template] = ACTIONS(7706), + [anon_sym_requires] = ACTIONS(7706), + [anon_sym_LBRACK_COLON] = ACTIONS(7708), + [anon_sym_COLON_RBRACK] = ACTIONS(7708), + }, + [STATE(2293)] = { + [sym_identifier] = ACTIONS(7710), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7712), + [anon_sym_COMMA] = ACTIONS(7712), + [anon_sym_RPAREN] = ACTIONS(7712), + [aux_sym_preproc_if_token2] = ACTIONS(7712), + [aux_sym_preproc_else_token1] = ACTIONS(7712), + [aux_sym_preproc_elif_token1] = ACTIONS(7710), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7712), + [anon_sym_LPAREN2] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7710), + [anon_sym_STAR] = ACTIONS(7710), + [anon_sym_SLASH] = ACTIONS(7710), + [anon_sym_PERCENT] = ACTIONS(7710), + [anon_sym_PIPE_PIPE] = ACTIONS(7712), + [anon_sym_AMP_AMP] = ACTIONS(7712), + [anon_sym_PIPE] = ACTIONS(7710), + [anon_sym_CARET] = ACTIONS(7710), + [anon_sym_AMP] = ACTIONS(7710), + [anon_sym_EQ_EQ] = ACTIONS(7712), + [anon_sym_BANG_EQ] = ACTIONS(7712), + [anon_sym_GT] = ACTIONS(7710), + [anon_sym_GT_EQ] = ACTIONS(7712), + [anon_sym_LT_EQ] = ACTIONS(7710), + [anon_sym_LT] = ACTIONS(7710), + [anon_sym_LT_LT] = ACTIONS(7710), + [anon_sym_GT_GT] = ACTIONS(7710), + [anon_sym_SEMI] = ACTIONS(7712), + [anon_sym___extension__] = ACTIONS(7710), + [anon_sym___attribute__] = ACTIONS(7710), + [anon_sym___attribute] = ACTIONS(7710), + [anon_sym_COLON] = ACTIONS(7710), + [anon_sym_COLON_COLON] = ACTIONS(7712), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7712), + [anon_sym_RBRACE] = ACTIONS(7712), + [anon_sym_LBRACK] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(7710), + [anon_sym_const] = ACTIONS(7710), + [anon_sym_constexpr] = ACTIONS(7710), + [anon_sym_volatile] = ACTIONS(7710), + [anon_sym_restrict] = ACTIONS(7710), + [anon_sym___restrict__] = ACTIONS(7710), + [anon_sym__Atomic] = ACTIONS(7710), + [anon_sym__Noreturn] = ACTIONS(7710), + [anon_sym_noreturn] = ACTIONS(7710), + [anon_sym__Nonnull] = ACTIONS(7710), + [anon_sym_mutable] = ACTIONS(7710), + [anon_sym_constinit] = ACTIONS(7710), + [anon_sym_consteval] = ACTIONS(7710), + [anon_sym_alignas] = ACTIONS(7710), + [anon_sym__Alignas] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [anon_sym_STAR_EQ] = ACTIONS(7712), + [anon_sym_SLASH_EQ] = ACTIONS(7712), + [anon_sym_PERCENT_EQ] = ACTIONS(7712), + [anon_sym_PLUS_EQ] = ACTIONS(7712), + [anon_sym_DASH_EQ] = ACTIONS(7712), + [anon_sym_LT_LT_EQ] = ACTIONS(7712), + [anon_sym_GT_GT_EQ] = ACTIONS(7712), + [anon_sym_AMP_EQ] = ACTIONS(7712), + [anon_sym_CARET_EQ] = ACTIONS(7712), + [anon_sym_PIPE_EQ] = ACTIONS(7712), + [anon_sym_and_eq] = ACTIONS(7710), + [anon_sym_or_eq] = ACTIONS(7710), + [anon_sym_xor_eq] = ACTIONS(7710), + [anon_sym_LT_EQ_GT] = ACTIONS(7712), + [anon_sym_or] = ACTIONS(7710), + [anon_sym_and] = ACTIONS(7710), + [anon_sym_bitor] = ACTIONS(7710), + [anon_sym_xor] = ACTIONS(7710), + [anon_sym_bitand] = ACTIONS(7710), + [anon_sym_not_eq] = ACTIONS(7710), + [anon_sym_DASH_DASH] = ACTIONS(7712), + [anon_sym_PLUS_PLUS] = ACTIONS(7712), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_DOT_STAR] = ACTIONS(7712), + [anon_sym_DASH_GT] = ACTIONS(7712), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7710), + [anon_sym_final] = ACTIONS(7710), + [anon_sym_override] = ACTIONS(7710), + [anon_sym_template] = ACTIONS(7710), + [anon_sym_requires] = ACTIONS(7710), + [anon_sym_LBRACK_COLON] = ACTIONS(7712), + [anon_sym_COLON_RBRACK] = ACTIONS(7712), + }, + [STATE(2294)] = { + [sym_identifier] = ACTIONS(7714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7716), + [anon_sym_COMMA] = ACTIONS(7716), + [anon_sym_RPAREN] = ACTIONS(7716), + [aux_sym_preproc_if_token2] = ACTIONS(7716), + [aux_sym_preproc_else_token1] = ACTIONS(7716), + [aux_sym_preproc_elif_token1] = ACTIONS(7714), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7716), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7716), + [anon_sym_LPAREN2] = ACTIONS(7716), + [anon_sym_DASH] = ACTIONS(7714), + [anon_sym_PLUS] = ACTIONS(7714), + [anon_sym_STAR] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7714), + [anon_sym_PERCENT] = ACTIONS(7714), + [anon_sym_PIPE_PIPE] = ACTIONS(7716), + [anon_sym_AMP_AMP] = ACTIONS(7716), + [anon_sym_PIPE] = ACTIONS(7714), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_AMP] = ACTIONS(7714), + [anon_sym_EQ_EQ] = ACTIONS(7716), + [anon_sym_BANG_EQ] = ACTIONS(7716), + [anon_sym_GT] = ACTIONS(7714), + [anon_sym_GT_EQ] = ACTIONS(7716), + [anon_sym_LT_EQ] = ACTIONS(7714), + [anon_sym_LT] = ACTIONS(7714), + [anon_sym_LT_LT] = ACTIONS(7714), + [anon_sym_GT_GT] = ACTIONS(7714), + [anon_sym_SEMI] = ACTIONS(7716), + [anon_sym___extension__] = ACTIONS(7714), + [anon_sym___attribute__] = ACTIONS(7714), + [anon_sym___attribute] = ACTIONS(7714), + [anon_sym_COLON] = ACTIONS(7714), + [anon_sym_COLON_COLON] = ACTIONS(7716), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7716), + [anon_sym_RBRACE] = ACTIONS(7716), + [anon_sym_LBRACK] = ACTIONS(7714), + [anon_sym_EQ] = ACTIONS(7714), + [anon_sym_const] = ACTIONS(7714), + [anon_sym_constexpr] = ACTIONS(7714), + [anon_sym_volatile] = ACTIONS(7714), + [anon_sym_restrict] = ACTIONS(7714), + [anon_sym___restrict__] = ACTIONS(7714), + [anon_sym__Atomic] = ACTIONS(7714), + [anon_sym__Noreturn] = ACTIONS(7714), + [anon_sym_noreturn] = ACTIONS(7714), + [anon_sym__Nonnull] = ACTIONS(7714), + [anon_sym_mutable] = ACTIONS(7714), + [anon_sym_constinit] = ACTIONS(7714), + [anon_sym_consteval] = ACTIONS(7714), + [anon_sym_alignas] = ACTIONS(7714), + [anon_sym__Alignas] = ACTIONS(7714), + [anon_sym_QMARK] = ACTIONS(7716), + [anon_sym_STAR_EQ] = ACTIONS(7716), + [anon_sym_SLASH_EQ] = ACTIONS(7716), + [anon_sym_PERCENT_EQ] = ACTIONS(7716), + [anon_sym_PLUS_EQ] = ACTIONS(7716), + [anon_sym_DASH_EQ] = ACTIONS(7716), + [anon_sym_LT_LT_EQ] = ACTIONS(7716), + [anon_sym_GT_GT_EQ] = ACTIONS(7716), + [anon_sym_AMP_EQ] = ACTIONS(7716), + [anon_sym_CARET_EQ] = ACTIONS(7716), + [anon_sym_PIPE_EQ] = ACTIONS(7716), + [anon_sym_and_eq] = ACTIONS(7714), + [anon_sym_or_eq] = ACTIONS(7714), + [anon_sym_xor_eq] = ACTIONS(7714), + [anon_sym_LT_EQ_GT] = ACTIONS(7716), + [anon_sym_or] = ACTIONS(7714), + [anon_sym_and] = ACTIONS(7714), + [anon_sym_bitor] = ACTIONS(7714), + [anon_sym_xor] = ACTIONS(7714), + [anon_sym_bitand] = ACTIONS(7714), + [anon_sym_not_eq] = ACTIONS(7714), + [anon_sym_DASH_DASH] = ACTIONS(7716), + [anon_sym_PLUS_PLUS] = ACTIONS(7716), + [anon_sym_DOT] = ACTIONS(7714), + [anon_sym_DOT_STAR] = ACTIONS(7716), + [anon_sym_DASH_GT] = ACTIONS(7716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7714), + [anon_sym_final] = ACTIONS(7714), + [anon_sym_override] = ACTIONS(7714), + [anon_sym_template] = ACTIONS(7714), + [anon_sym_requires] = ACTIONS(7714), + [anon_sym_LBRACK_COLON] = ACTIONS(7716), + [anon_sym_COLON_RBRACK] = ACTIONS(7716), + }, + [STATE(2295)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_else_token1] = ACTIONS(7720), + [aux_sym_preproc_elif_token1] = ACTIONS(7718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), + }, + [STATE(2296)] = { + [sym_type_qualifier] = STATE(2357), + [sym_alignas_qualifier] = STATE(2442), + [aux_sym__type_definition_type_repeat1] = STATE(2357), + [aux_sym_sized_type_specifier_repeat1] = STATE(2467), + [sym_identifier] = ACTIONS(7722), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7025), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON_COLON] = ACTIONS(7023), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(7728), + [anon_sym_unsigned] = ACTIONS(7728), + [anon_sym_long] = ACTIONS(7728), + [anon_sym_short] = ACTIONS(7728), + [anon_sym_LBRACK] = ACTIONS(7025), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(7725), + [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(7730), + [anon_sym__Alignas] = ACTIONS(7730), + [sym_primitive_type] = ACTIONS(7733), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7025), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_and_eq] = ACTIONS(7025), + [anon_sym_or_eq] = ACTIONS(7025), + [anon_sym_xor_eq] = ACTIONS(7025), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7025), + [anon_sym_final] = ACTIONS(7025), + [anon_sym_override] = ACTIONS(7025), + [anon_sym_template] = ACTIONS(7025), + [anon_sym_GT2] = ACTIONS(7023), + [anon_sym_requires] = ACTIONS(7025), + [anon_sym_LBRACK_COLON] = ACTIONS(7023), + }, + [STATE(2297)] = { + [sym_identifier] = ACTIONS(7735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_RPAREN] = ACTIONS(7737), + [aux_sym_preproc_if_token2] = ACTIONS(7737), + [aux_sym_preproc_else_token1] = ACTIONS(7737), + [aux_sym_preproc_elif_token1] = ACTIONS(7735), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7737), + [aux_sym_preproc_elifdef_token2] = 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_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_COLON_COLON] = ACTIONS(7737), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7737), + [anon_sym_RBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7735), + [anon_sym_EQ] = ACTIONS(7735), + [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), + [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(7735), + [anon_sym_or_eq] = ACTIONS(7735), + [anon_sym_xor_eq] = ACTIONS(7735), + [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_decltype] = ACTIONS(7735), + [anon_sym_final] = ACTIONS(7735), + [anon_sym_override] = ACTIONS(7735), + [anon_sym_template] = ACTIONS(7735), + [anon_sym_requires] = ACTIONS(7735), + [anon_sym_LBRACK_COLON] = ACTIONS(7737), + [anon_sym_COLON_RBRACK] = ACTIONS(7737), + }, + [STATE(2298)] = { + [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), + [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(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(7739), + [anon_sym___attribute__] = ACTIONS(7739), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_COLON] = ACTIONS(7739), + [anon_sym_COLON_COLON] = ACTIONS(7741), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7741), + [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7739), + [anon_sym_EQ] = ACTIONS(7739), + [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_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(7739), + [anon_sym_or_eq] = ACTIONS(7739), + [anon_sym_xor_eq] = ACTIONS(7739), + [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_decltype] = ACTIONS(7739), + [anon_sym_final] = ACTIONS(7739), + [anon_sym_override] = ACTIONS(7739), + [anon_sym_template] = ACTIONS(7739), + [anon_sym_requires] = ACTIONS(7739), + [anon_sym_LBRACK_COLON] = ACTIONS(7741), + [anon_sym_COLON_RBRACK] = ACTIONS(7741), + }, + [STATE(2299)] = { + [sym_identifier] = ACTIONS(7743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_RPAREN] = ACTIONS(7745), + [aux_sym_preproc_if_token2] = ACTIONS(7745), + [aux_sym_preproc_else_token1] = ACTIONS(7745), + [aux_sym_preproc_elif_token1] = ACTIONS(7743), [aux_sym_preproc_elifdef_token1] = ACTIONS(7745), [aux_sym_preproc_elifdef_token2] = ACTIONS(7745), [anon_sym_LPAREN2] = ACTIONS(7745), @@ -333720,10 +347071,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7743), [anon_sym___attribute] = ACTIONS(7743), [anon_sym_COLON] = ACTIONS(7743), + [anon_sym_COLON_COLON] = ACTIONS(7745), [anon_sym_RBRACK_RBRACK] = ACTIONS(7745), - [anon_sym_LBRACE] = ACTIONS(7745), [anon_sym_RBRACE] = ACTIONS(7745), - [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7743), [anon_sym_EQ] = ACTIONS(7743), [anon_sym_const] = ACTIONS(7743), [anon_sym_constexpr] = ACTIONS(7743), @@ -333766,12 +347117,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7745), [anon_sym_DASH_GT] = ACTIONS(7745), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7743), [anon_sym_final] = ACTIONS(7743), [anon_sym_override] = ACTIONS(7743), + [anon_sym_template] = ACTIONS(7743), [anon_sym_requires] = ACTIONS(7743), + [anon_sym_LBRACK_COLON] = ACTIONS(7745), [anon_sym_COLON_RBRACK] = ACTIONS(7745), }, - [STATE(2229)] = { + [STATE(2300)] = { [sym_identifier] = ACTIONS(7747), [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), [anon_sym_COMMA] = ACTIONS(7749), @@ -333805,10 +347159,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7747), [anon_sym___attribute] = ACTIONS(7747), [anon_sym_COLON] = ACTIONS(7747), + [anon_sym_COLON_COLON] = ACTIONS(7749), [anon_sym_RBRACK_RBRACK] = ACTIONS(7749), - [anon_sym_LBRACE] = ACTIONS(7749), [anon_sym_RBRACE] = ACTIONS(7749), - [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7747), [anon_sym_EQ] = ACTIONS(7747), [anon_sym_const] = ACTIONS(7747), [anon_sym_constexpr] = ACTIONS(7747), @@ -333851,12 +347205,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7749), [anon_sym_DASH_GT] = ACTIONS(7749), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7747), [anon_sym_final] = ACTIONS(7747), [anon_sym_override] = ACTIONS(7747), + [anon_sym_template] = ACTIONS(7747), [anon_sym_requires] = ACTIONS(7747), + [anon_sym_LBRACK_COLON] = ACTIONS(7749), [anon_sym_COLON_RBRACK] = ACTIONS(7749), }, - [STATE(2230)] = { + [STATE(2301)] = { + [sym_argument_list] = STATE(4288), + [sym_initializer_list] = STATE(4252), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7363), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(2302)] = { [sym_identifier] = ACTIONS(7751), [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), [anon_sym_COMMA] = ACTIONS(7753), @@ -333890,10 +347335,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7751), [anon_sym___attribute] = ACTIONS(7751), [anon_sym_COLON] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), [anon_sym_RBRACK_RBRACK] = ACTIONS(7753), - [anon_sym_LBRACE] = ACTIONS(7753), [anon_sym_RBRACE] = ACTIONS(7753), - [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7751), [anon_sym_EQ] = ACTIONS(7751), [anon_sym_const] = ACTIONS(7751), [anon_sym_constexpr] = ACTIONS(7751), @@ -333936,97 +347381,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7753), [anon_sym_DASH_GT] = ACTIONS(7753), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7751), [anon_sym_final] = ACTIONS(7751), [anon_sym_override] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), [anon_sym_requires] = ACTIONS(7751), + [anon_sym_LBRACK_COLON] = ACTIONS(7753), [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(2303)] = { [sym_identifier] = ACTIONS(7755), [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), [anon_sym_COMMA] = ACTIONS(7757), @@ -334060,10 +347423,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7755), [anon_sym___attribute] = ACTIONS(7755), [anon_sym_COLON] = ACTIONS(7755), + [anon_sym_COLON_COLON] = ACTIONS(7757), [anon_sym_RBRACK_RBRACK] = ACTIONS(7757), - [anon_sym_LBRACE] = ACTIONS(7757), [anon_sym_RBRACE] = ACTIONS(7757), - [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_LBRACK] = ACTIONS(7755), [anon_sym_EQ] = ACTIONS(7755), [anon_sym_const] = ACTIONS(7755), [anon_sym_constexpr] = ACTIONS(7755), @@ -334106,12 +347469,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7757), [anon_sym_DASH_GT] = ACTIONS(7757), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7755), [anon_sym_final] = ACTIONS(7755), [anon_sym_override] = ACTIONS(7755), + [anon_sym_template] = ACTIONS(7755), [anon_sym_requires] = ACTIONS(7755), + [anon_sym_LBRACK_COLON] = ACTIONS(7757), [anon_sym_COLON_RBRACK] = ACTIONS(7757), }, - [STATE(2233)] = { + [STATE(2304)] = { [sym_identifier] = ACTIONS(7759), [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), [anon_sym_COMMA] = ACTIONS(7761), @@ -334145,10 +347511,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7759), [anon_sym___attribute] = ACTIONS(7759), [anon_sym_COLON] = ACTIONS(7759), + [anon_sym_COLON_COLON] = ACTIONS(7761), [anon_sym_RBRACK_RBRACK] = ACTIONS(7761), - [anon_sym_LBRACE] = ACTIONS(7761), [anon_sym_RBRACE] = ACTIONS(7761), - [anon_sym_LBRACK] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7759), [anon_sym_EQ] = ACTIONS(7759), [anon_sym_const] = ACTIONS(7759), [anon_sym_constexpr] = ACTIONS(7759), @@ -334191,12 +347557,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7761), [anon_sym_DASH_GT] = ACTIONS(7761), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7759), [anon_sym_final] = ACTIONS(7759), [anon_sym_override] = ACTIONS(7759), + [anon_sym_template] = ACTIONS(7759), [anon_sym_requires] = ACTIONS(7759), + [anon_sym_LBRACK_COLON] = ACTIONS(7761), [anon_sym_COLON_RBRACK] = ACTIONS(7761), }, - [STATE(2234)] = { + [STATE(2305)] = { [sym_identifier] = ACTIONS(7763), [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), [anon_sym_COMMA] = ACTIONS(7765), @@ -334230,10 +347599,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7763), [anon_sym___attribute] = ACTIONS(7763), [anon_sym_COLON] = ACTIONS(7763), + [anon_sym_COLON_COLON] = ACTIONS(7765), [anon_sym_RBRACK_RBRACK] = ACTIONS(7765), - [anon_sym_LBRACE] = ACTIONS(7765), [anon_sym_RBRACE] = ACTIONS(7765), - [anon_sym_LBRACK] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7763), [anon_sym_EQ] = ACTIONS(7763), [anon_sym_const] = ACTIONS(7763), [anon_sym_constexpr] = ACTIONS(7763), @@ -334276,12 +347645,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7765), [anon_sym_DASH_GT] = ACTIONS(7765), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7763), [anon_sym_final] = ACTIONS(7763), [anon_sym_override] = ACTIONS(7763), + [anon_sym_template] = ACTIONS(7763), [anon_sym_requires] = ACTIONS(7763), + [anon_sym_LBRACK_COLON] = ACTIONS(7765), [anon_sym_COLON_RBRACK] = ACTIONS(7765), }, - [STATE(2235)] = { + [STATE(2306)] = { [sym_identifier] = ACTIONS(7767), [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), [anon_sym_COMMA] = ACTIONS(7769), @@ -334315,10 +347687,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7767), [anon_sym___attribute] = ACTIONS(7767), [anon_sym_COLON] = ACTIONS(7767), + [anon_sym_COLON_COLON] = ACTIONS(7769), [anon_sym_RBRACK_RBRACK] = ACTIONS(7769), - [anon_sym_LBRACE] = ACTIONS(7769), [anon_sym_RBRACE] = ACTIONS(7769), - [anon_sym_LBRACK] = ACTIONS(7769), + [anon_sym_LBRACK] = ACTIONS(7767), [anon_sym_EQ] = ACTIONS(7767), [anon_sym_const] = ACTIONS(7767), [anon_sym_constexpr] = ACTIONS(7767), @@ -334361,12 +347733,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7769), [anon_sym_DASH_GT] = ACTIONS(7769), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7767), [anon_sym_final] = ACTIONS(7767), [anon_sym_override] = ACTIONS(7767), + [anon_sym_template] = ACTIONS(7767), [anon_sym_requires] = ACTIONS(7767), + [anon_sym_LBRACK_COLON] = ACTIONS(7769), [anon_sym_COLON_RBRACK] = ACTIONS(7769), }, - [STATE(2236)] = { + [STATE(2307)] = { [sym_identifier] = ACTIONS(7771), [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), [anon_sym_COMMA] = ACTIONS(7773), @@ -334400,10 +347775,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7771), [anon_sym___attribute] = ACTIONS(7771), [anon_sym_COLON] = ACTIONS(7771), + [anon_sym_COLON_COLON] = ACTIONS(7773), [anon_sym_RBRACK_RBRACK] = ACTIONS(7773), - [anon_sym_LBRACE] = ACTIONS(7773), [anon_sym_RBRACE] = ACTIONS(7773), - [anon_sym_LBRACK] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7771), [anon_sym_EQ] = ACTIONS(7771), [anon_sym_const] = ACTIONS(7771), [anon_sym_constexpr] = ACTIONS(7771), @@ -334446,12 +347821,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7773), [anon_sym_DASH_GT] = ACTIONS(7773), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7771), [anon_sym_final] = ACTIONS(7771), [anon_sym_override] = ACTIONS(7771), + [anon_sym_template] = ACTIONS(7771), [anon_sym_requires] = ACTIONS(7771), + [anon_sym_LBRACK_COLON] = ACTIONS(7773), [anon_sym_COLON_RBRACK] = ACTIONS(7773), }, - [STATE(2237)] = { + [STATE(2308)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [aux_sym_preproc_if_token2] = ACTIONS(3108), + [aux_sym_preproc_else_token1] = ACTIONS(3108), + [aux_sym_preproc_elif_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), + [anon_sym_COLON_RBRACK] = ACTIONS(3108), + }, + [STATE(2309)] = { [sym_identifier] = ACTIONS(7775), [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), [anon_sym_COMMA] = ACTIONS(7777), @@ -334485,10 +347951,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7775), [anon_sym___attribute] = ACTIONS(7775), [anon_sym_COLON] = ACTIONS(7775), + [anon_sym_COLON_COLON] = ACTIONS(7777), [anon_sym_RBRACK_RBRACK] = ACTIONS(7777), - [anon_sym_LBRACE] = ACTIONS(7777), [anon_sym_RBRACE] = ACTIONS(7777), - [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7775), [anon_sym_EQ] = ACTIONS(7775), [anon_sym_const] = ACTIONS(7775), [anon_sym_constexpr] = ACTIONS(7775), @@ -334531,12 +347997,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7777), [anon_sym_DASH_GT] = ACTIONS(7777), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7775), [anon_sym_final] = ACTIONS(7775), [anon_sym_override] = ACTIONS(7775), + [anon_sym_template] = ACTIONS(7775), [anon_sym_requires] = ACTIONS(7775), + [anon_sym_LBRACK_COLON] = ACTIONS(7777), [anon_sym_COLON_RBRACK] = ACTIONS(7777), }, - [STATE(2238)] = { + [STATE(2310)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_else_token1] = ACTIONS(7720), + [aux_sym_preproc_elif_token1] = ACTIONS(7718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), + }, + [STATE(2311)] = { [sym_identifier] = ACTIONS(7779), [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), [anon_sym_COMMA] = ACTIONS(7781), @@ -334570,10 +348127,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7779), [anon_sym___attribute] = ACTIONS(7779), [anon_sym_COLON] = ACTIONS(7779), + [anon_sym_COLON_COLON] = ACTIONS(7781), [anon_sym_RBRACK_RBRACK] = ACTIONS(7781), - [anon_sym_LBRACE] = ACTIONS(7781), [anon_sym_RBRACE] = ACTIONS(7781), - [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7779), [anon_sym_EQ] = ACTIONS(7779), [anon_sym_const] = ACTIONS(7779), [anon_sym_constexpr] = ACTIONS(7779), @@ -334616,899 +348173,934 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7781), [anon_sym_DASH_GT] = ACTIONS(7781), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7779), [anon_sym_final] = ACTIONS(7779), [anon_sym_override] = ACTIONS(7779), + [anon_sym_template] = ACTIONS(7779), [anon_sym_requires] = ACTIONS(7779), + [anon_sym_LBRACK_COLON] = ACTIONS(7781), [anon_sym_COLON_RBRACK] = ACTIONS(7781), }, - [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), - }, - [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), - }, - [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), - [sym_comment] = ACTIONS(3), - }, - [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), + [STATE(2312)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2312), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [aux_sym_preproc_if_token2] = ACTIONS(7175), + [aux_sym_preproc_else_token1] = ACTIONS(7175), + [aux_sym_preproc_elif_token1] = ACTIONS(7173), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym_SEMI] = ACTIONS(7175), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON] = ACTIONS(7173), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_RBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(7783), + [anon_sym_unsigned] = ACTIONS(7783), + [anon_sym_long] = ACTIONS(7783), + [anon_sym_short] = ACTIONS(7783), + [anon_sym_LBRACK] = ACTIONS(7175), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7175), }, - [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), - [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_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(2313)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_else_token1] = ACTIONS(7720), + [aux_sym_preproc_elif_token1] = ACTIONS(7718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), }, - [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), + [STATE(2314)] = { + [sym_identifier] = ACTIONS(7786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7788), + [anon_sym_COMMA] = ACTIONS(7788), + [anon_sym_RPAREN] = ACTIONS(7788), + [aux_sym_preproc_if_token2] = ACTIONS(7788), + [aux_sym_preproc_else_token1] = ACTIONS(7788), + [aux_sym_preproc_elif_token1] = ACTIONS(7786), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7788), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7788), + [anon_sym_LPAREN2] = ACTIONS(7788), + [anon_sym_DASH] = ACTIONS(7786), + [anon_sym_PLUS] = ACTIONS(7786), + [anon_sym_STAR] = ACTIONS(7786), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_PERCENT] = ACTIONS(7786), + [anon_sym_PIPE_PIPE] = ACTIONS(7788), + [anon_sym_AMP_AMP] = ACTIONS(7788), + [anon_sym_PIPE] = ACTIONS(7786), + [anon_sym_CARET] = ACTIONS(7786), + [anon_sym_AMP] = ACTIONS(7786), + [anon_sym_EQ_EQ] = ACTIONS(7788), + [anon_sym_BANG_EQ] = ACTIONS(7788), + [anon_sym_GT] = ACTIONS(7786), + [anon_sym_GT_EQ] = ACTIONS(7788), + [anon_sym_LT_EQ] = ACTIONS(7786), + [anon_sym_LT] = ACTIONS(7786), + [anon_sym_LT_LT] = ACTIONS(7786), + [anon_sym_GT_GT] = ACTIONS(7786), + [anon_sym_SEMI] = ACTIONS(7788), + [anon_sym___extension__] = ACTIONS(7786), + [anon_sym___attribute__] = ACTIONS(7786), + [anon_sym___attribute] = ACTIONS(7786), + [anon_sym_COLON] = ACTIONS(7786), + [anon_sym_COLON_COLON] = ACTIONS(7788), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7788), + [anon_sym_RBRACE] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7786), + [anon_sym_EQ] = ACTIONS(7786), + [anon_sym_const] = ACTIONS(7786), + [anon_sym_constexpr] = ACTIONS(7786), + [anon_sym_volatile] = ACTIONS(7786), + [anon_sym_restrict] = ACTIONS(7786), + [anon_sym___restrict__] = ACTIONS(7786), + [anon_sym__Atomic] = ACTIONS(7786), + [anon_sym__Noreturn] = ACTIONS(7786), + [anon_sym_noreturn] = ACTIONS(7786), + [anon_sym__Nonnull] = ACTIONS(7786), + [anon_sym_mutable] = ACTIONS(7786), + [anon_sym_constinit] = ACTIONS(7786), + [anon_sym_consteval] = ACTIONS(7786), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7788), + [anon_sym_STAR_EQ] = ACTIONS(7788), + [anon_sym_SLASH_EQ] = ACTIONS(7788), + [anon_sym_PERCENT_EQ] = ACTIONS(7788), + [anon_sym_PLUS_EQ] = ACTIONS(7788), + [anon_sym_DASH_EQ] = ACTIONS(7788), + [anon_sym_LT_LT_EQ] = ACTIONS(7788), + [anon_sym_GT_GT_EQ] = ACTIONS(7788), + [anon_sym_AMP_EQ] = ACTIONS(7788), + [anon_sym_CARET_EQ] = ACTIONS(7788), + [anon_sym_PIPE_EQ] = ACTIONS(7788), + [anon_sym_and_eq] = ACTIONS(7786), + [anon_sym_or_eq] = ACTIONS(7786), + [anon_sym_xor_eq] = ACTIONS(7786), + [anon_sym_LT_EQ_GT] = ACTIONS(7788), + [anon_sym_or] = ACTIONS(7786), + [anon_sym_and] = ACTIONS(7786), + [anon_sym_bitor] = ACTIONS(7786), + [anon_sym_xor] = ACTIONS(7786), + [anon_sym_bitand] = ACTIONS(7786), + [anon_sym_not_eq] = ACTIONS(7786), + [anon_sym_DASH_DASH] = ACTIONS(7788), + [anon_sym_PLUS_PLUS] = ACTIONS(7788), + [anon_sym_DOT] = ACTIONS(7786), + [anon_sym_DOT_STAR] = ACTIONS(7788), + [anon_sym_DASH_GT] = ACTIONS(7788), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7786), + [anon_sym_final] = ACTIONS(7786), + [anon_sym_override] = ACTIONS(7786), + [anon_sym_template] = ACTIONS(7786), + [anon_sym_requires] = ACTIONS(7786), + [anon_sym_LBRACK_COLON] = ACTIONS(7788), + [anon_sym_COLON_RBRACK] = ACTIONS(7788), }, - [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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(6933), - [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_COLON] = ACTIONS(7347), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), - [anon_sym_RBRACE] = ACTIONS(7345), - [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_COLON_RBRACK] = ACTIONS(7345), + [STATE(2315)] = { + [sym_identifier] = ACTIONS(7790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7792), + [anon_sym_COMMA] = ACTIONS(7792), + [anon_sym_RPAREN] = ACTIONS(7792), + [aux_sym_preproc_if_token2] = ACTIONS(7792), + [aux_sym_preproc_else_token1] = ACTIONS(7792), + [aux_sym_preproc_elif_token1] = ACTIONS(7790), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7792), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7792), + [anon_sym_LPAREN2] = ACTIONS(7792), + [anon_sym_DASH] = ACTIONS(7790), + [anon_sym_PLUS] = ACTIONS(7790), + [anon_sym_STAR] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7790), + [anon_sym_PERCENT] = ACTIONS(7790), + [anon_sym_PIPE_PIPE] = ACTIONS(7792), + [anon_sym_AMP_AMP] = ACTIONS(7792), + [anon_sym_PIPE] = ACTIONS(7790), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_AMP] = ACTIONS(7790), + [anon_sym_EQ_EQ] = ACTIONS(7792), + [anon_sym_BANG_EQ] = ACTIONS(7792), + [anon_sym_GT] = ACTIONS(7790), + [anon_sym_GT_EQ] = ACTIONS(7792), + [anon_sym_LT_EQ] = ACTIONS(7790), + [anon_sym_LT] = ACTIONS(7790), + [anon_sym_LT_LT] = ACTIONS(7790), + [anon_sym_GT_GT] = ACTIONS(7790), + [anon_sym_SEMI] = ACTIONS(7792), + [anon_sym___extension__] = ACTIONS(7790), + [anon_sym___attribute__] = ACTIONS(7790), + [anon_sym___attribute] = ACTIONS(7790), + [anon_sym_COLON] = ACTIONS(7790), + [anon_sym_COLON_COLON] = ACTIONS(7792), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7792), + [anon_sym_RBRACE] = ACTIONS(7792), + [anon_sym_LBRACK] = ACTIONS(7790), + [anon_sym_EQ] = ACTIONS(7790), + [anon_sym_const] = ACTIONS(7790), + [anon_sym_constexpr] = ACTIONS(7790), + [anon_sym_volatile] = ACTIONS(7790), + [anon_sym_restrict] = ACTIONS(7790), + [anon_sym___restrict__] = ACTIONS(7790), + [anon_sym__Atomic] = ACTIONS(7790), + [anon_sym__Noreturn] = ACTIONS(7790), + [anon_sym_noreturn] = ACTIONS(7790), + [anon_sym__Nonnull] = ACTIONS(7790), + [anon_sym_mutable] = ACTIONS(7790), + [anon_sym_constinit] = ACTIONS(7790), + [anon_sym_consteval] = ACTIONS(7790), + [anon_sym_alignas] = ACTIONS(7790), + [anon_sym__Alignas] = ACTIONS(7790), + [anon_sym_QMARK] = ACTIONS(7792), + [anon_sym_STAR_EQ] = ACTIONS(7792), + [anon_sym_SLASH_EQ] = ACTIONS(7792), + [anon_sym_PERCENT_EQ] = ACTIONS(7792), + [anon_sym_PLUS_EQ] = ACTIONS(7792), + [anon_sym_DASH_EQ] = ACTIONS(7792), + [anon_sym_LT_LT_EQ] = ACTIONS(7792), + [anon_sym_GT_GT_EQ] = ACTIONS(7792), + [anon_sym_AMP_EQ] = ACTIONS(7792), + [anon_sym_CARET_EQ] = ACTIONS(7792), + [anon_sym_PIPE_EQ] = ACTIONS(7792), + [anon_sym_and_eq] = ACTIONS(7790), + [anon_sym_or_eq] = ACTIONS(7790), + [anon_sym_xor_eq] = ACTIONS(7790), + [anon_sym_LT_EQ_GT] = ACTIONS(7792), + [anon_sym_or] = ACTIONS(7790), + [anon_sym_and] = ACTIONS(7790), + [anon_sym_bitor] = ACTIONS(7790), + [anon_sym_xor] = ACTIONS(7790), + [anon_sym_bitand] = ACTIONS(7790), + [anon_sym_not_eq] = ACTIONS(7790), + [anon_sym_DASH_DASH] = ACTIONS(7792), + [anon_sym_PLUS_PLUS] = ACTIONS(7792), + [anon_sym_DOT] = ACTIONS(7790), + [anon_sym_DOT_STAR] = ACTIONS(7792), + [anon_sym_DASH_GT] = ACTIONS(7792), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7790), + [anon_sym_final] = ACTIONS(7790), + [anon_sym_override] = ACTIONS(7790), + [anon_sym_template] = ACTIONS(7790), + [anon_sym_requires] = ACTIONS(7790), + [anon_sym_LBRACK_COLON] = ACTIONS(7792), + [anon_sym_COLON_RBRACK] = ACTIONS(7792), }, - [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(2316)] = { + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [aux_sym_preproc_if_token2] = ACTIONS(7796), + [aux_sym_preproc_else_token1] = ACTIONS(7796), + [aux_sym_preproc_elif_token1] = ACTIONS(7794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7796), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym_SEMI] = ACTIONS(7796), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym___attribute__] = ACTIONS(7794), + [anon_sym___attribute] = ACTIONS(7794), + [anon_sym_COLON] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7796), + [anon_sym_RBRACE] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7796), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_and_eq] = ACTIONS(7794), + [anon_sym_or_eq] = ACTIONS(7794), + [anon_sym_xor_eq] = ACTIONS(7794), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), + [anon_sym_COLON_RBRACK] = ACTIONS(7796), }, - [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(2317)] = { + [sym_identifier] = ACTIONS(7798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7800), + [anon_sym_COMMA] = ACTIONS(7800), + [anon_sym_RPAREN] = ACTIONS(7800), + [aux_sym_preproc_if_token2] = ACTIONS(7800), + [aux_sym_preproc_else_token1] = ACTIONS(7800), + [aux_sym_preproc_elif_token1] = ACTIONS(7798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7800), + [anon_sym_LPAREN2] = ACTIONS(7800), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_PLUS] = ACTIONS(7798), + [anon_sym_STAR] = ACTIONS(7798), + [anon_sym_SLASH] = ACTIONS(7798), + [anon_sym_PERCENT] = ACTIONS(7798), + [anon_sym_PIPE_PIPE] = ACTIONS(7800), + [anon_sym_AMP_AMP] = ACTIONS(7800), + [anon_sym_PIPE] = ACTIONS(7798), + [anon_sym_CARET] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7798), + [anon_sym_EQ_EQ] = ACTIONS(7800), + [anon_sym_BANG_EQ] = ACTIONS(7800), + [anon_sym_GT] = ACTIONS(7798), + [anon_sym_GT_EQ] = ACTIONS(7800), + [anon_sym_LT_EQ] = ACTIONS(7798), + [anon_sym_LT] = ACTIONS(7798), + [anon_sym_LT_LT] = ACTIONS(7798), + [anon_sym_GT_GT] = ACTIONS(7798), + [anon_sym_SEMI] = ACTIONS(7800), + [anon_sym___extension__] = ACTIONS(7798), + [anon_sym___attribute__] = ACTIONS(7798), + [anon_sym___attribute] = ACTIONS(7798), + [anon_sym_COLON] = ACTIONS(7798), + [anon_sym_COLON_COLON] = ACTIONS(7800), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7800), + [anon_sym_RBRACE] = ACTIONS(7800), + [anon_sym_LBRACK] = ACTIONS(7798), + [anon_sym_EQ] = ACTIONS(7798), + [anon_sym_const] = ACTIONS(7798), + [anon_sym_constexpr] = ACTIONS(7798), + [anon_sym_volatile] = ACTIONS(7798), + [anon_sym_restrict] = ACTIONS(7798), + [anon_sym___restrict__] = ACTIONS(7798), + [anon_sym__Atomic] = ACTIONS(7798), + [anon_sym__Noreturn] = ACTIONS(7798), + [anon_sym_noreturn] = ACTIONS(7798), + [anon_sym__Nonnull] = ACTIONS(7798), + [anon_sym_mutable] = ACTIONS(7798), + [anon_sym_constinit] = ACTIONS(7798), + [anon_sym_consteval] = ACTIONS(7798), + [anon_sym_alignas] = ACTIONS(7798), + [anon_sym__Alignas] = ACTIONS(7798), + [anon_sym_QMARK] = ACTIONS(7800), + [anon_sym_STAR_EQ] = ACTIONS(7800), + [anon_sym_SLASH_EQ] = ACTIONS(7800), + [anon_sym_PERCENT_EQ] = ACTIONS(7800), + [anon_sym_PLUS_EQ] = ACTIONS(7800), + [anon_sym_DASH_EQ] = ACTIONS(7800), + [anon_sym_LT_LT_EQ] = ACTIONS(7800), + [anon_sym_GT_GT_EQ] = ACTIONS(7800), + [anon_sym_AMP_EQ] = ACTIONS(7800), + [anon_sym_CARET_EQ] = ACTIONS(7800), + [anon_sym_PIPE_EQ] = ACTIONS(7800), + [anon_sym_and_eq] = ACTIONS(7798), + [anon_sym_or_eq] = ACTIONS(7798), + [anon_sym_xor_eq] = ACTIONS(7798), + [anon_sym_LT_EQ_GT] = ACTIONS(7800), + [anon_sym_or] = ACTIONS(7798), + [anon_sym_and] = ACTIONS(7798), + [anon_sym_bitor] = ACTIONS(7798), + [anon_sym_xor] = ACTIONS(7798), + [anon_sym_bitand] = ACTIONS(7798), + [anon_sym_not_eq] = ACTIONS(7798), + [anon_sym_DASH_DASH] = ACTIONS(7800), + [anon_sym_PLUS_PLUS] = ACTIONS(7800), + [anon_sym_DOT] = ACTIONS(7798), + [anon_sym_DOT_STAR] = ACTIONS(7800), + [anon_sym_DASH_GT] = ACTIONS(7800), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7798), + [anon_sym_final] = ACTIONS(7798), + [anon_sym_override] = ACTIONS(7798), + [anon_sym_template] = ACTIONS(7798), + [anon_sym_requires] = ACTIONS(7798), + [anon_sym_LBRACK_COLON] = ACTIONS(7800), + [anon_sym_COLON_RBRACK] = ACTIONS(7800), }, - [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), + [STATE(2318)] = { + [sym_identifier] = ACTIONS(7802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7804), + [anon_sym_COMMA] = ACTIONS(7804), + [anon_sym_RPAREN] = ACTIONS(7804), + [aux_sym_preproc_if_token2] = ACTIONS(7804), + [aux_sym_preproc_else_token1] = ACTIONS(7804), + [aux_sym_preproc_elif_token1] = ACTIONS(7802), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7804), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7804), + [anon_sym_LPAREN2] = ACTIONS(7804), + [anon_sym_DASH] = ACTIONS(7802), + [anon_sym_PLUS] = ACTIONS(7802), + [anon_sym_STAR] = ACTIONS(7802), + [anon_sym_SLASH] = ACTIONS(7802), + [anon_sym_PERCENT] = ACTIONS(7802), + [anon_sym_PIPE_PIPE] = ACTIONS(7804), + [anon_sym_AMP_AMP] = ACTIONS(7804), + [anon_sym_PIPE] = ACTIONS(7802), + [anon_sym_CARET] = ACTIONS(7802), + [anon_sym_AMP] = ACTIONS(7802), + [anon_sym_EQ_EQ] = ACTIONS(7804), + [anon_sym_BANG_EQ] = ACTIONS(7804), + [anon_sym_GT] = ACTIONS(7802), + [anon_sym_GT_EQ] = ACTIONS(7804), + [anon_sym_LT_EQ] = ACTIONS(7802), + [anon_sym_LT] = ACTIONS(7802), + [anon_sym_LT_LT] = ACTIONS(7802), + [anon_sym_GT_GT] = ACTIONS(7802), + [anon_sym_SEMI] = ACTIONS(7804), + [anon_sym___extension__] = ACTIONS(7802), + [anon_sym___attribute__] = ACTIONS(7802), + [anon_sym___attribute] = ACTIONS(7802), + [anon_sym_COLON] = ACTIONS(7802), + [anon_sym_COLON_COLON] = ACTIONS(7804), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7804), + [anon_sym_RBRACE] = ACTIONS(7804), + [anon_sym_LBRACK] = ACTIONS(7802), + [anon_sym_EQ] = ACTIONS(7802), + [anon_sym_const] = ACTIONS(7802), + [anon_sym_constexpr] = ACTIONS(7802), + [anon_sym_volatile] = ACTIONS(7802), + [anon_sym_restrict] = ACTIONS(7802), + [anon_sym___restrict__] = ACTIONS(7802), + [anon_sym__Atomic] = ACTIONS(7802), + [anon_sym__Noreturn] = ACTIONS(7802), + [anon_sym_noreturn] = ACTIONS(7802), + [anon_sym__Nonnull] = ACTIONS(7802), + [anon_sym_mutable] = ACTIONS(7802), + [anon_sym_constinit] = ACTIONS(7802), + [anon_sym_consteval] = ACTIONS(7802), + [anon_sym_alignas] = ACTIONS(7802), + [anon_sym__Alignas] = ACTIONS(7802), + [anon_sym_QMARK] = ACTIONS(7804), + [anon_sym_STAR_EQ] = ACTIONS(7804), + [anon_sym_SLASH_EQ] = ACTIONS(7804), + [anon_sym_PERCENT_EQ] = ACTIONS(7804), + [anon_sym_PLUS_EQ] = ACTIONS(7804), + [anon_sym_DASH_EQ] = ACTIONS(7804), + [anon_sym_LT_LT_EQ] = ACTIONS(7804), + [anon_sym_GT_GT_EQ] = ACTIONS(7804), + [anon_sym_AMP_EQ] = ACTIONS(7804), + [anon_sym_CARET_EQ] = ACTIONS(7804), + [anon_sym_PIPE_EQ] = ACTIONS(7804), + [anon_sym_and_eq] = ACTIONS(7802), + [anon_sym_or_eq] = ACTIONS(7802), + [anon_sym_xor_eq] = ACTIONS(7802), + [anon_sym_LT_EQ_GT] = ACTIONS(7804), + [anon_sym_or] = ACTIONS(7802), + [anon_sym_and] = ACTIONS(7802), + [anon_sym_bitor] = ACTIONS(7802), + [anon_sym_xor] = ACTIONS(7802), + [anon_sym_bitand] = ACTIONS(7802), + [anon_sym_not_eq] = ACTIONS(7802), + [anon_sym_DASH_DASH] = ACTIONS(7804), + [anon_sym_PLUS_PLUS] = ACTIONS(7804), + [anon_sym_DOT] = ACTIONS(7802), + [anon_sym_DOT_STAR] = ACTIONS(7804), + [anon_sym_DASH_GT] = ACTIONS(7804), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7802), [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_template] = ACTIONS(7802), + [anon_sym_requires] = ACTIONS(7802), + [anon_sym_LBRACK_COLON] = ACTIONS(7804), + [anon_sym_COLON_RBRACK] = ACTIONS(7804), }, - [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), + [STATE(2319)] = { + [sym_identifier] = ACTIONS(7806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7808), + [anon_sym_COMMA] = ACTIONS(7808), + [anon_sym_RPAREN] = ACTIONS(7808), + [aux_sym_preproc_if_token2] = ACTIONS(7808), + [aux_sym_preproc_else_token1] = ACTIONS(7808), + [aux_sym_preproc_elif_token1] = ACTIONS(7806), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7808), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7808), + [anon_sym_LPAREN2] = ACTIONS(7808), + [anon_sym_DASH] = ACTIONS(7806), + [anon_sym_PLUS] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7806), + [anon_sym_SLASH] = ACTIONS(7806), + [anon_sym_PERCENT] = ACTIONS(7806), + [anon_sym_PIPE_PIPE] = ACTIONS(7808), [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_PIPE] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7806), + [anon_sym_AMP] = ACTIONS(7806), + [anon_sym_EQ_EQ] = ACTIONS(7808), + [anon_sym_BANG_EQ] = ACTIONS(7808), + [anon_sym_GT] = ACTIONS(7806), + [anon_sym_GT_EQ] = ACTIONS(7808), + [anon_sym_LT_EQ] = ACTIONS(7806), + [anon_sym_LT] = ACTIONS(7806), + [anon_sym_LT_LT] = ACTIONS(7806), + [anon_sym_GT_GT] = ACTIONS(7806), + [anon_sym_SEMI] = ACTIONS(7808), + [anon_sym___extension__] = ACTIONS(7806), + [anon_sym___attribute__] = ACTIONS(7806), + [anon_sym___attribute] = ACTIONS(7806), + [anon_sym_COLON] = ACTIONS(7806), + [anon_sym_COLON_COLON] = ACTIONS(7808), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7808), + [anon_sym_RBRACE] = ACTIONS(7808), + [anon_sym_LBRACK] = ACTIONS(7806), + [anon_sym_EQ] = ACTIONS(7806), + [anon_sym_const] = ACTIONS(7806), + [anon_sym_constexpr] = ACTIONS(7806), + [anon_sym_volatile] = ACTIONS(7806), + [anon_sym_restrict] = ACTIONS(7806), + [anon_sym___restrict__] = ACTIONS(7806), + [anon_sym__Atomic] = ACTIONS(7806), + [anon_sym__Noreturn] = ACTIONS(7806), + [anon_sym_noreturn] = ACTIONS(7806), + [anon_sym__Nonnull] = ACTIONS(7806), + [anon_sym_mutable] = ACTIONS(7806), + [anon_sym_constinit] = ACTIONS(7806), + [anon_sym_consteval] = ACTIONS(7806), + [anon_sym_alignas] = ACTIONS(7806), + [anon_sym__Alignas] = ACTIONS(7806), + [anon_sym_QMARK] = ACTIONS(7808), + [anon_sym_STAR_EQ] = ACTIONS(7808), + [anon_sym_SLASH_EQ] = ACTIONS(7808), + [anon_sym_PERCENT_EQ] = ACTIONS(7808), + [anon_sym_PLUS_EQ] = ACTIONS(7808), + [anon_sym_DASH_EQ] = ACTIONS(7808), + [anon_sym_LT_LT_EQ] = ACTIONS(7808), + [anon_sym_GT_GT_EQ] = ACTIONS(7808), + [anon_sym_AMP_EQ] = ACTIONS(7808), + [anon_sym_CARET_EQ] = ACTIONS(7808), + [anon_sym_PIPE_EQ] = ACTIONS(7808), + [anon_sym_and_eq] = ACTIONS(7806), + [anon_sym_or_eq] = ACTIONS(7806), + [anon_sym_xor_eq] = ACTIONS(7806), + [anon_sym_LT_EQ_GT] = ACTIONS(7808), + [anon_sym_or] = ACTIONS(7806), + [anon_sym_and] = ACTIONS(7806), + [anon_sym_bitor] = ACTIONS(7806), + [anon_sym_xor] = ACTIONS(7806), + [anon_sym_bitand] = ACTIONS(7806), + [anon_sym_not_eq] = ACTIONS(7806), + [anon_sym_DASH_DASH] = ACTIONS(7808), + [anon_sym_PLUS_PLUS] = ACTIONS(7808), + [anon_sym_DOT] = ACTIONS(7806), + [anon_sym_DOT_STAR] = ACTIONS(7808), + [anon_sym_DASH_GT] = ACTIONS(7808), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7806), + [anon_sym_final] = ACTIONS(7806), + [anon_sym_override] = ACTIONS(7806), + [anon_sym_template] = ACTIONS(7806), + [anon_sym_requires] = ACTIONS(7806), + [anon_sym_LBRACK_COLON] = ACTIONS(7808), + [anon_sym_COLON_RBRACK] = ACTIONS(7808), + }, + [STATE(2320)] = { + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [aux_sym_preproc_if_token2] = ACTIONS(7796), + [aux_sym_preproc_else_token1] = ACTIONS(7796), + [aux_sym_preproc_elif_token1] = ACTIONS(7794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7796), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym_SEMI] = ACTIONS(7796), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym___attribute__] = ACTIONS(7794), + [anon_sym___attribute] = ACTIONS(7794), + [anon_sym_COLON] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7796), + [anon_sym_RBRACE] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7796), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_and_eq] = ACTIONS(7794), + [anon_sym_or_eq] = ACTIONS(7794), + [anon_sym_xor_eq] = ACTIONS(7794), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), + [anon_sym_COLON_RBRACK] = ACTIONS(7796), + }, + [STATE(2321)] = { + [sym_identifier] = ACTIONS(7810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7812), + [anon_sym_COMMA] = ACTIONS(7812), + [anon_sym_RPAREN] = ACTIONS(7812), + [aux_sym_preproc_if_token2] = ACTIONS(7812), + [aux_sym_preproc_else_token1] = ACTIONS(7812), + [aux_sym_preproc_elif_token1] = ACTIONS(7810), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7812), + [anon_sym_LPAREN2] = ACTIONS(7812), + [anon_sym_DASH] = ACTIONS(7810), + [anon_sym_PLUS] = ACTIONS(7810), + [anon_sym_STAR] = ACTIONS(7810), + [anon_sym_SLASH] = ACTIONS(7810), + [anon_sym_PERCENT] = ACTIONS(7810), + [anon_sym_PIPE_PIPE] = ACTIONS(7812), + [anon_sym_AMP_AMP] = ACTIONS(7812), + [anon_sym_PIPE] = ACTIONS(7810), + [anon_sym_CARET] = ACTIONS(7810), + [anon_sym_AMP] = ACTIONS(7810), + [anon_sym_EQ_EQ] = ACTIONS(7812), + [anon_sym_BANG_EQ] = ACTIONS(7812), + [anon_sym_GT] = ACTIONS(7810), + [anon_sym_GT_EQ] = ACTIONS(7812), + [anon_sym_LT_EQ] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(7810), + [anon_sym_LT_LT] = ACTIONS(7810), + [anon_sym_GT_GT] = ACTIONS(7810), + [anon_sym_SEMI] = ACTIONS(7812), + [anon_sym___extension__] = ACTIONS(7810), + [anon_sym___attribute__] = ACTIONS(7810), + [anon_sym___attribute] = ACTIONS(7810), + [anon_sym_COLON] = ACTIONS(7810), + [anon_sym_COLON_COLON] = ACTIONS(7812), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7812), + [anon_sym_RBRACE] = ACTIONS(7812), + [anon_sym_LBRACK] = ACTIONS(7810), + [anon_sym_EQ] = ACTIONS(7810), + [anon_sym_const] = ACTIONS(7810), + [anon_sym_constexpr] = ACTIONS(7810), + [anon_sym_volatile] = ACTIONS(7810), + [anon_sym_restrict] = ACTIONS(7810), + [anon_sym___restrict__] = ACTIONS(7810), + [anon_sym__Atomic] = ACTIONS(7810), + [anon_sym__Noreturn] = ACTIONS(7810), + [anon_sym_noreturn] = ACTIONS(7810), + [anon_sym__Nonnull] = ACTIONS(7810), + [anon_sym_mutable] = ACTIONS(7810), + [anon_sym_constinit] = ACTIONS(7810), + [anon_sym_consteval] = ACTIONS(7810), + [anon_sym_alignas] = ACTIONS(7810), + [anon_sym__Alignas] = ACTIONS(7810), + [anon_sym_QMARK] = ACTIONS(7812), + [anon_sym_STAR_EQ] = ACTIONS(7812), + [anon_sym_SLASH_EQ] = ACTIONS(7812), + [anon_sym_PERCENT_EQ] = ACTIONS(7812), + [anon_sym_PLUS_EQ] = ACTIONS(7812), + [anon_sym_DASH_EQ] = ACTIONS(7812), + [anon_sym_LT_LT_EQ] = ACTIONS(7812), + [anon_sym_GT_GT_EQ] = ACTIONS(7812), + [anon_sym_AMP_EQ] = ACTIONS(7812), + [anon_sym_CARET_EQ] = ACTIONS(7812), + [anon_sym_PIPE_EQ] = ACTIONS(7812), + [anon_sym_and_eq] = ACTIONS(7810), + [anon_sym_or_eq] = ACTIONS(7810), + [anon_sym_xor_eq] = ACTIONS(7810), + [anon_sym_LT_EQ_GT] = ACTIONS(7812), + [anon_sym_or] = ACTIONS(7810), + [anon_sym_and] = ACTIONS(7810), + [anon_sym_bitor] = ACTIONS(7810), + [anon_sym_xor] = ACTIONS(7810), + [anon_sym_bitand] = ACTIONS(7810), + [anon_sym_not_eq] = ACTIONS(7810), + [anon_sym_DASH_DASH] = ACTIONS(7812), + [anon_sym_PLUS_PLUS] = ACTIONS(7812), + [anon_sym_DOT] = ACTIONS(7810), + [anon_sym_DOT_STAR] = ACTIONS(7812), + [anon_sym_DASH_GT] = ACTIONS(7812), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7810), + [anon_sym_final] = ACTIONS(7810), + [anon_sym_override] = ACTIONS(7810), + [anon_sym_template] = ACTIONS(7810), + [anon_sym_requires] = ACTIONS(7810), + [anon_sym_LBRACK_COLON] = ACTIONS(7812), + [anon_sym_COLON_RBRACK] = ACTIONS(7812), + }, + [STATE(2322)] = { + [sym_identifier] = ACTIONS(7814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7816), + [anon_sym_COMMA] = ACTIONS(7816), + [anon_sym_RPAREN] = ACTIONS(7816), + [aux_sym_preproc_if_token2] = ACTIONS(7816), + [aux_sym_preproc_else_token1] = ACTIONS(7816), + [aux_sym_preproc_elif_token1] = ACTIONS(7814), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7816), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7816), + [anon_sym_LPAREN2] = ACTIONS(7816), + [anon_sym_DASH] = ACTIONS(7814), + [anon_sym_PLUS] = ACTIONS(7814), + [anon_sym_STAR] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7814), + [anon_sym_PERCENT] = ACTIONS(7814), + [anon_sym_PIPE_PIPE] = ACTIONS(7816), + [anon_sym_AMP_AMP] = ACTIONS(7816), + [anon_sym_PIPE] = ACTIONS(7814), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_AMP] = ACTIONS(7814), + [anon_sym_EQ_EQ] = ACTIONS(7816), + [anon_sym_BANG_EQ] = ACTIONS(7816), + [anon_sym_GT] = ACTIONS(7814), + [anon_sym_GT_EQ] = ACTIONS(7816), + [anon_sym_LT_EQ] = ACTIONS(7814), + [anon_sym_LT] = ACTIONS(7814), + [anon_sym_LT_LT] = ACTIONS(7814), + [anon_sym_GT_GT] = ACTIONS(7814), + [anon_sym_SEMI] = ACTIONS(7816), [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___attribute__] = ACTIONS(7814), + [anon_sym___attribute] = ACTIONS(7814), + [anon_sym_COLON] = ACTIONS(7814), + [anon_sym_COLON_COLON] = ACTIONS(7816), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7816), + [anon_sym_RBRACE] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(7814), + [anon_sym_EQ] = ACTIONS(7814), + [anon_sym_const] = ACTIONS(7814), [anon_sym_constexpr] = ACTIONS(7814), [anon_sym_volatile] = ACTIONS(7814), [anon_sym_restrict] = ACTIONS(7814), @@ -335520,742 +349112,962 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_alignas] = ACTIONS(7814), + [anon_sym__Alignas] = ACTIONS(7814), + [anon_sym_QMARK] = ACTIONS(7816), + [anon_sym_STAR_EQ] = ACTIONS(7816), + [anon_sym_SLASH_EQ] = ACTIONS(7816), + [anon_sym_PERCENT_EQ] = ACTIONS(7816), + [anon_sym_PLUS_EQ] = ACTIONS(7816), + [anon_sym_DASH_EQ] = ACTIONS(7816), + [anon_sym_LT_LT_EQ] = ACTIONS(7816), + [anon_sym_GT_GT_EQ] = ACTIONS(7816), + [anon_sym_AMP_EQ] = ACTIONS(7816), + [anon_sym_CARET_EQ] = ACTIONS(7816), + [anon_sym_PIPE_EQ] = ACTIONS(7816), + [anon_sym_and_eq] = ACTIONS(7814), + [anon_sym_or_eq] = ACTIONS(7814), + [anon_sym_xor_eq] = ACTIONS(7814), + [anon_sym_LT_EQ_GT] = ACTIONS(7816), + [anon_sym_or] = ACTIONS(7814), + [anon_sym_and] = ACTIONS(7814), + [anon_sym_bitor] = ACTIONS(7814), + [anon_sym_xor] = ACTIONS(7814), + [anon_sym_bitand] = ACTIONS(7814), + [anon_sym_not_eq] = ACTIONS(7814), + [anon_sym_DASH_DASH] = ACTIONS(7816), + [anon_sym_PLUS_PLUS] = ACTIONS(7816), + [anon_sym_DOT] = ACTIONS(7814), + [anon_sym_DOT_STAR] = ACTIONS(7816), + [anon_sym_DASH_GT] = ACTIONS(7816), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7814), + [anon_sym_final] = ACTIONS(7814), + [anon_sym_override] = ACTIONS(7814), + [anon_sym_template] = ACTIONS(7814), + [anon_sym_requires] = ACTIONS(7814), + [anon_sym_LBRACK_COLON] = ACTIONS(7816), + [anon_sym_COLON_RBRACK] = ACTIONS(7816), }, - [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), - [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(6917), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(6919), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(6921), - [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_comment] = ACTIONS(3), + [STATE(2323)] = { + [sym_identifier] = ACTIONS(7818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7820), + [anon_sym_COMMA] = ACTIONS(7820), + [anon_sym_RPAREN] = ACTIONS(7820), + [aux_sym_preproc_if_token2] = ACTIONS(7820), + [aux_sym_preproc_else_token1] = ACTIONS(7820), + [aux_sym_preproc_elif_token1] = ACTIONS(7818), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7820), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7820), + [anon_sym_LPAREN2] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7818), + [anon_sym_STAR] = ACTIONS(7818), + [anon_sym_SLASH] = ACTIONS(7818), + [anon_sym_PERCENT] = ACTIONS(7818), + [anon_sym_PIPE_PIPE] = ACTIONS(7820), + [anon_sym_AMP_AMP] = ACTIONS(7820), + [anon_sym_PIPE] = ACTIONS(7818), + [anon_sym_CARET] = ACTIONS(7818), + [anon_sym_AMP] = ACTIONS(7818), + [anon_sym_EQ_EQ] = ACTIONS(7820), + [anon_sym_BANG_EQ] = ACTIONS(7820), + [anon_sym_GT] = ACTIONS(7818), + [anon_sym_GT_EQ] = ACTIONS(7820), + [anon_sym_LT_EQ] = ACTIONS(7818), + [anon_sym_LT] = ACTIONS(7818), + [anon_sym_LT_LT] = ACTIONS(7818), + [anon_sym_GT_GT] = ACTIONS(7818), + [anon_sym_SEMI] = ACTIONS(7820), + [anon_sym___extension__] = ACTIONS(7818), + [anon_sym___attribute__] = ACTIONS(7818), + [anon_sym___attribute] = ACTIONS(7818), + [anon_sym_COLON] = ACTIONS(7818), + [anon_sym_COLON_COLON] = ACTIONS(7820), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7820), + [anon_sym_RBRACE] = ACTIONS(7820), + [anon_sym_LBRACK] = ACTIONS(7818), + [anon_sym_EQ] = ACTIONS(7818), + [anon_sym_const] = ACTIONS(7818), + [anon_sym_constexpr] = ACTIONS(7818), + [anon_sym_volatile] = ACTIONS(7818), + [anon_sym_restrict] = ACTIONS(7818), + [anon_sym___restrict__] = ACTIONS(7818), + [anon_sym__Atomic] = ACTIONS(7818), + [anon_sym__Noreturn] = ACTIONS(7818), + [anon_sym_noreturn] = ACTIONS(7818), + [anon_sym__Nonnull] = ACTIONS(7818), + [anon_sym_mutable] = ACTIONS(7818), + [anon_sym_constinit] = ACTIONS(7818), + [anon_sym_consteval] = ACTIONS(7818), + [anon_sym_alignas] = ACTIONS(7818), + [anon_sym__Alignas] = ACTIONS(7818), + [anon_sym_QMARK] = ACTIONS(7820), + [anon_sym_STAR_EQ] = ACTIONS(7820), + [anon_sym_SLASH_EQ] = ACTIONS(7820), + [anon_sym_PERCENT_EQ] = ACTIONS(7820), + [anon_sym_PLUS_EQ] = ACTIONS(7820), + [anon_sym_DASH_EQ] = ACTIONS(7820), + [anon_sym_LT_LT_EQ] = ACTIONS(7820), + [anon_sym_GT_GT_EQ] = ACTIONS(7820), + [anon_sym_AMP_EQ] = ACTIONS(7820), + [anon_sym_CARET_EQ] = ACTIONS(7820), + [anon_sym_PIPE_EQ] = ACTIONS(7820), + [anon_sym_and_eq] = ACTIONS(7818), + [anon_sym_or_eq] = ACTIONS(7818), + [anon_sym_xor_eq] = ACTIONS(7818), + [anon_sym_LT_EQ_GT] = ACTIONS(7820), + [anon_sym_or] = ACTIONS(7818), + [anon_sym_and] = ACTIONS(7818), + [anon_sym_bitor] = ACTIONS(7818), + [anon_sym_xor] = ACTIONS(7818), + [anon_sym_bitand] = ACTIONS(7818), + [anon_sym_not_eq] = ACTIONS(7818), + [anon_sym_DASH_DASH] = ACTIONS(7820), + [anon_sym_PLUS_PLUS] = ACTIONS(7820), + [anon_sym_DOT] = ACTIONS(7818), + [anon_sym_DOT_STAR] = ACTIONS(7820), + [anon_sym_DASH_GT] = ACTIONS(7820), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7818), + [anon_sym_final] = ACTIONS(7818), + [anon_sym_override] = ACTIONS(7818), + [anon_sym_template] = ACTIONS(7818), + [anon_sym_requires] = ACTIONS(7818), + [anon_sym_LBRACK_COLON] = ACTIONS(7820), + [anon_sym_COLON_RBRACK] = ACTIONS(7820), }, - [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(2324)] = { + [sym_identifier] = ACTIONS(7822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7824), + [anon_sym_COMMA] = ACTIONS(7824), + [anon_sym_RPAREN] = ACTIONS(7824), + [aux_sym_preproc_if_token2] = ACTIONS(7824), + [aux_sym_preproc_else_token1] = ACTIONS(7824), + [aux_sym_preproc_elif_token1] = ACTIONS(7822), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7824), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7824), + [anon_sym_LPAREN2] = ACTIONS(7824), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_PLUS] = ACTIONS(7822), + [anon_sym_STAR] = ACTIONS(7822), + [anon_sym_SLASH] = ACTIONS(7822), + [anon_sym_PERCENT] = ACTIONS(7822), + [anon_sym_PIPE_PIPE] = ACTIONS(7824), + [anon_sym_AMP_AMP] = ACTIONS(7824), + [anon_sym_PIPE] = ACTIONS(7822), + [anon_sym_CARET] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7822), + [anon_sym_EQ_EQ] = ACTIONS(7824), + [anon_sym_BANG_EQ] = ACTIONS(7824), + [anon_sym_GT] = ACTIONS(7822), + [anon_sym_GT_EQ] = ACTIONS(7824), + [anon_sym_LT_EQ] = ACTIONS(7822), + [anon_sym_LT] = ACTIONS(7822), + [anon_sym_LT_LT] = ACTIONS(7822), + [anon_sym_GT_GT] = ACTIONS(7822), + [anon_sym_SEMI] = ACTIONS(7824), + [anon_sym___extension__] = ACTIONS(7822), + [anon_sym___attribute__] = ACTIONS(7822), + [anon_sym___attribute] = ACTIONS(7822), + [anon_sym_COLON] = ACTIONS(7822), + [anon_sym_COLON_COLON] = ACTIONS(7824), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7824), + [anon_sym_RBRACE] = ACTIONS(7824), + [anon_sym_LBRACK] = ACTIONS(7822), + [anon_sym_EQ] = ACTIONS(7822), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7822), + [anon_sym_volatile] = ACTIONS(7822), + [anon_sym_restrict] = ACTIONS(7822), + [anon_sym___restrict__] = ACTIONS(7822), + [anon_sym__Atomic] = ACTIONS(7822), + [anon_sym__Noreturn] = ACTIONS(7822), + [anon_sym_noreturn] = ACTIONS(7822), + [anon_sym__Nonnull] = ACTIONS(7822), + [anon_sym_mutable] = ACTIONS(7822), + [anon_sym_constinit] = ACTIONS(7822), + [anon_sym_consteval] = ACTIONS(7822), + [anon_sym_alignas] = ACTIONS(7822), + [anon_sym__Alignas] = ACTIONS(7822), + [anon_sym_QMARK] = ACTIONS(7824), + [anon_sym_STAR_EQ] = ACTIONS(7824), + [anon_sym_SLASH_EQ] = ACTIONS(7824), + [anon_sym_PERCENT_EQ] = ACTIONS(7824), + [anon_sym_PLUS_EQ] = ACTIONS(7824), + [anon_sym_DASH_EQ] = ACTIONS(7824), + [anon_sym_LT_LT_EQ] = ACTIONS(7824), + [anon_sym_GT_GT_EQ] = ACTIONS(7824), + [anon_sym_AMP_EQ] = ACTIONS(7824), + [anon_sym_CARET_EQ] = ACTIONS(7824), + [anon_sym_PIPE_EQ] = ACTIONS(7824), + [anon_sym_and_eq] = ACTIONS(7822), + [anon_sym_or_eq] = ACTIONS(7822), + [anon_sym_xor_eq] = ACTIONS(7822), + [anon_sym_LT_EQ_GT] = ACTIONS(7824), + [anon_sym_or] = ACTIONS(7822), + [anon_sym_and] = ACTIONS(7822), + [anon_sym_bitor] = ACTIONS(7822), + [anon_sym_xor] = ACTIONS(7822), + [anon_sym_bitand] = ACTIONS(7822), + [anon_sym_not_eq] = ACTIONS(7822), + [anon_sym_DASH_DASH] = ACTIONS(7824), + [anon_sym_PLUS_PLUS] = ACTIONS(7824), + [anon_sym_DOT] = ACTIONS(7822), + [anon_sym_DOT_STAR] = ACTIONS(7824), + [anon_sym_DASH_GT] = ACTIONS(7824), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7822), + [anon_sym_final] = ACTIONS(7822), + [anon_sym_override] = ACTIONS(7822), + [anon_sym_template] = ACTIONS(7822), + [anon_sym_requires] = ACTIONS(7822), + [anon_sym_LBRACK_COLON] = ACTIONS(7824), + [anon_sym_COLON_RBRACK] = ACTIONS(7824), }, - [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), - [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(7837), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(7839), - [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), + [STATE(2325)] = { + [sym_identifier] = ACTIONS(7826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7828), + [anon_sym_COMMA] = ACTIONS(7828), + [anon_sym_RPAREN] = ACTIONS(7828), + [aux_sym_preproc_if_token2] = ACTIONS(7828), + [aux_sym_preproc_else_token1] = ACTIONS(7828), + [aux_sym_preproc_elif_token1] = ACTIONS(7826), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7828), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7828), + [anon_sym_LPAREN2] = ACTIONS(7828), + [anon_sym_DASH] = ACTIONS(7826), + [anon_sym_PLUS] = ACTIONS(7826), + [anon_sym_STAR] = ACTIONS(7826), + [anon_sym_SLASH] = ACTIONS(7826), + [anon_sym_PERCENT] = ACTIONS(7826), + [anon_sym_PIPE_PIPE] = ACTIONS(7828), + [anon_sym_AMP_AMP] = ACTIONS(7828), + [anon_sym_PIPE] = ACTIONS(7826), + [anon_sym_CARET] = ACTIONS(7826), + [anon_sym_AMP] = ACTIONS(7826), + [anon_sym_EQ_EQ] = ACTIONS(7828), + [anon_sym_BANG_EQ] = ACTIONS(7828), + [anon_sym_GT] = ACTIONS(7826), + [anon_sym_GT_EQ] = ACTIONS(7828), + [anon_sym_LT_EQ] = ACTIONS(7826), + [anon_sym_LT] = ACTIONS(7826), + [anon_sym_LT_LT] = ACTIONS(7826), + [anon_sym_GT_GT] = ACTIONS(7826), + [anon_sym_SEMI] = ACTIONS(7828), + [anon_sym___extension__] = ACTIONS(7826), + [anon_sym___attribute__] = ACTIONS(7826), + [anon_sym___attribute] = ACTIONS(7826), + [anon_sym_COLON] = ACTIONS(7826), + [anon_sym_COLON_COLON] = ACTIONS(7828), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7828), + [anon_sym_RBRACE] = ACTIONS(7828), + [anon_sym_LBRACK] = ACTIONS(7826), + [anon_sym_EQ] = ACTIONS(7826), + [anon_sym_const] = ACTIONS(7826), + [anon_sym_constexpr] = ACTIONS(7826), + [anon_sym_volatile] = ACTIONS(7826), + [anon_sym_restrict] = ACTIONS(7826), + [anon_sym___restrict__] = ACTIONS(7826), + [anon_sym__Atomic] = ACTIONS(7826), + [anon_sym__Noreturn] = ACTIONS(7826), + [anon_sym_noreturn] = ACTIONS(7826), + [anon_sym__Nonnull] = ACTIONS(7826), + [anon_sym_mutable] = ACTIONS(7826), + [anon_sym_constinit] = ACTIONS(7826), + [anon_sym_consteval] = ACTIONS(7826), + [anon_sym_alignas] = ACTIONS(7826), + [anon_sym__Alignas] = ACTIONS(7826), + [anon_sym_QMARK] = ACTIONS(7828), + [anon_sym_STAR_EQ] = ACTIONS(7828), + [anon_sym_SLASH_EQ] = ACTIONS(7828), + [anon_sym_PERCENT_EQ] = ACTIONS(7828), + [anon_sym_PLUS_EQ] = ACTIONS(7828), + [anon_sym_DASH_EQ] = ACTIONS(7828), + [anon_sym_LT_LT_EQ] = ACTIONS(7828), + [anon_sym_GT_GT_EQ] = ACTIONS(7828), + [anon_sym_AMP_EQ] = ACTIONS(7828), + [anon_sym_CARET_EQ] = ACTIONS(7828), + [anon_sym_PIPE_EQ] = ACTIONS(7828), + [anon_sym_and_eq] = ACTIONS(7826), + [anon_sym_or_eq] = ACTIONS(7826), + [anon_sym_xor_eq] = ACTIONS(7826), + [anon_sym_LT_EQ_GT] = ACTIONS(7828), + [anon_sym_or] = ACTIONS(7826), + [anon_sym_and] = ACTIONS(7826), + [anon_sym_bitor] = ACTIONS(7826), + [anon_sym_xor] = ACTIONS(7826), + [anon_sym_bitand] = ACTIONS(7826), + [anon_sym_not_eq] = ACTIONS(7826), + [anon_sym_DASH_DASH] = ACTIONS(7828), + [anon_sym_PLUS_PLUS] = ACTIONS(7828), + [anon_sym_DOT] = ACTIONS(7826), + [anon_sym_DOT_STAR] = ACTIONS(7828), + [anon_sym_DASH_GT] = ACTIONS(7828), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7826), + [anon_sym_final] = ACTIONS(7826), + [anon_sym_override] = ACTIONS(7826), + [anon_sym_template] = ACTIONS(7826), + [anon_sym_requires] = ACTIONS(7826), + [anon_sym_LBRACK_COLON] = ACTIONS(7828), + [anon_sym_COLON_RBRACK] = ACTIONS(7828), }, - [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), - [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(2326)] = { + [sym_identifier] = ACTIONS(7830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7832), + [anon_sym_COMMA] = ACTIONS(7832), + [anon_sym_RPAREN] = ACTIONS(7832), + [aux_sym_preproc_if_token2] = ACTIONS(7832), + [aux_sym_preproc_else_token1] = ACTIONS(7832), + [aux_sym_preproc_elif_token1] = ACTIONS(7830), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7832), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7832), + [anon_sym_LPAREN2] = ACTIONS(7832), + [anon_sym_DASH] = ACTIONS(7830), + [anon_sym_PLUS] = ACTIONS(7830), + [anon_sym_STAR] = ACTIONS(7830), + [anon_sym_SLASH] = ACTIONS(7830), + [anon_sym_PERCENT] = ACTIONS(7830), + [anon_sym_PIPE_PIPE] = ACTIONS(7832), + [anon_sym_AMP_AMP] = ACTIONS(7832), + [anon_sym_PIPE] = ACTIONS(7830), + [anon_sym_CARET] = ACTIONS(7830), + [anon_sym_AMP] = ACTIONS(7830), + [anon_sym_EQ_EQ] = ACTIONS(7832), + [anon_sym_BANG_EQ] = ACTIONS(7832), + [anon_sym_GT] = ACTIONS(7830), + [anon_sym_GT_EQ] = ACTIONS(7832), + [anon_sym_LT_EQ] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(7830), + [anon_sym_LT_LT] = ACTIONS(7830), + [anon_sym_GT_GT] = ACTIONS(7830), + [anon_sym_SEMI] = ACTIONS(7832), + [anon_sym___extension__] = ACTIONS(7830), + [anon_sym___attribute__] = ACTIONS(7830), + [anon_sym___attribute] = ACTIONS(7830), + [anon_sym_COLON] = ACTIONS(7830), + [anon_sym_COLON_COLON] = ACTIONS(7832), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7832), + [anon_sym_RBRACE] = ACTIONS(7832), + [anon_sym_LBRACK] = ACTIONS(7830), + [anon_sym_EQ] = ACTIONS(7830), + [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(7830), + [anon_sym__Alignas] = ACTIONS(7830), + [anon_sym_QMARK] = ACTIONS(7832), + [anon_sym_STAR_EQ] = ACTIONS(7832), + [anon_sym_SLASH_EQ] = ACTIONS(7832), + [anon_sym_PERCENT_EQ] = ACTIONS(7832), + [anon_sym_PLUS_EQ] = ACTIONS(7832), + [anon_sym_DASH_EQ] = ACTIONS(7832), + [anon_sym_LT_LT_EQ] = ACTIONS(7832), + [anon_sym_GT_GT_EQ] = ACTIONS(7832), + [anon_sym_AMP_EQ] = ACTIONS(7832), + [anon_sym_CARET_EQ] = ACTIONS(7832), + [anon_sym_PIPE_EQ] = ACTIONS(7832), + [anon_sym_and_eq] = ACTIONS(7830), + [anon_sym_or_eq] = ACTIONS(7830), + [anon_sym_xor_eq] = ACTIONS(7830), + [anon_sym_LT_EQ_GT] = ACTIONS(7832), + [anon_sym_or] = ACTIONS(7830), + [anon_sym_and] = ACTIONS(7830), + [anon_sym_bitor] = ACTIONS(7830), + [anon_sym_xor] = ACTIONS(7830), + [anon_sym_bitand] = ACTIONS(7830), + [anon_sym_not_eq] = ACTIONS(7830), + [anon_sym_DASH_DASH] = ACTIONS(7832), + [anon_sym_PLUS_PLUS] = ACTIONS(7832), + [anon_sym_DOT] = ACTIONS(7830), + [anon_sym_DOT_STAR] = ACTIONS(7832), + [anon_sym_DASH_GT] = ACTIONS(7832), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7830), + [anon_sym_final] = ACTIONS(7830), + [anon_sym_override] = ACTIONS(7830), + [anon_sym_template] = ACTIONS(7830), + [anon_sym_requires] = ACTIONS(7830), + [anon_sym_LBRACK_COLON] = ACTIONS(7832), + [anon_sym_COLON_RBRACK] = ACTIONS(7832), }, - [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(2327)] = { + [sym_identifier] = ACTIONS(7834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_RPAREN] = ACTIONS(7836), + [aux_sym_preproc_if_token2] = ACTIONS(7836), + [aux_sym_preproc_else_token1] = ACTIONS(7836), + [aux_sym_preproc_elif_token1] = ACTIONS(7834), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7836), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7836), + [anon_sym_LPAREN2] = ACTIONS(7836), + [anon_sym_DASH] = ACTIONS(7834), + [anon_sym_PLUS] = ACTIONS(7834), + [anon_sym_STAR] = ACTIONS(7834), + [anon_sym_SLASH] = ACTIONS(7834), + [anon_sym_PERCENT] = ACTIONS(7834), + [anon_sym_PIPE_PIPE] = ACTIONS(7836), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_PIPE] = ACTIONS(7834), + [anon_sym_CARET] = ACTIONS(7834), + [anon_sym_AMP] = ACTIONS(7834), + [anon_sym_EQ_EQ] = ACTIONS(7836), + [anon_sym_BANG_EQ] = ACTIONS(7836), + [anon_sym_GT] = ACTIONS(7834), + [anon_sym_GT_EQ] = ACTIONS(7836), + [anon_sym_LT_EQ] = ACTIONS(7834), + [anon_sym_LT] = ACTIONS(7834), + [anon_sym_LT_LT] = ACTIONS(7834), + [anon_sym_GT_GT] = ACTIONS(7834), + [anon_sym_SEMI] = ACTIONS(7836), + [anon_sym___extension__] = ACTIONS(7834), + [anon_sym___attribute__] = ACTIONS(7834), + [anon_sym___attribute] = ACTIONS(7834), + [anon_sym_COLON] = ACTIONS(7834), + [anon_sym_COLON_COLON] = ACTIONS(7836), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7836), + [anon_sym_RBRACE] = ACTIONS(7836), + [anon_sym_LBRACK] = ACTIONS(7834), + [anon_sym_EQ] = ACTIONS(7834), + [anon_sym_const] = ACTIONS(7834), + [anon_sym_constexpr] = ACTIONS(7834), + [anon_sym_volatile] = ACTIONS(7834), + [anon_sym_restrict] = ACTIONS(7834), + [anon_sym___restrict__] = ACTIONS(7834), + [anon_sym__Atomic] = ACTIONS(7834), + [anon_sym__Noreturn] = ACTIONS(7834), + [anon_sym_noreturn] = ACTIONS(7834), + [anon_sym__Nonnull] = ACTIONS(7834), + [anon_sym_mutable] = ACTIONS(7834), + [anon_sym_constinit] = ACTIONS(7834), + [anon_sym_consteval] = ACTIONS(7834), + [anon_sym_alignas] = ACTIONS(7834), + [anon_sym__Alignas] = ACTIONS(7834), + [anon_sym_QMARK] = ACTIONS(7836), + [anon_sym_STAR_EQ] = ACTIONS(7836), + [anon_sym_SLASH_EQ] = ACTIONS(7836), + [anon_sym_PERCENT_EQ] = ACTIONS(7836), + [anon_sym_PLUS_EQ] = ACTIONS(7836), + [anon_sym_DASH_EQ] = ACTIONS(7836), + [anon_sym_LT_LT_EQ] = ACTIONS(7836), + [anon_sym_GT_GT_EQ] = ACTIONS(7836), + [anon_sym_AMP_EQ] = ACTIONS(7836), + [anon_sym_CARET_EQ] = ACTIONS(7836), + [anon_sym_PIPE_EQ] = ACTIONS(7836), + [anon_sym_and_eq] = ACTIONS(7834), + [anon_sym_or_eq] = ACTIONS(7834), + [anon_sym_xor_eq] = ACTIONS(7834), + [anon_sym_LT_EQ_GT] = ACTIONS(7836), + [anon_sym_or] = ACTIONS(7834), + [anon_sym_and] = ACTIONS(7834), + [anon_sym_bitor] = ACTIONS(7834), + [anon_sym_xor] = ACTIONS(7834), + [anon_sym_bitand] = ACTIONS(7834), + [anon_sym_not_eq] = ACTIONS(7834), + [anon_sym_DASH_DASH] = ACTIONS(7836), + [anon_sym_PLUS_PLUS] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7834), + [anon_sym_DOT_STAR] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(7836), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7834), + [anon_sym_final] = ACTIONS(7834), + [anon_sym_override] = ACTIONS(7834), + [anon_sym_template] = ACTIONS(7834), + [anon_sym_requires] = ACTIONS(7834), + [anon_sym_LBRACK_COLON] = ACTIONS(7836), + [anon_sym_COLON_RBRACK] = ACTIONS(7836), }, - [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(2328)] = { + [sym_identifier] = ACTIONS(7838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7840), + [anon_sym_COMMA] = ACTIONS(7840), + [anon_sym_RPAREN] = ACTIONS(7840), + [aux_sym_preproc_if_token2] = ACTIONS(7840), + [aux_sym_preproc_else_token1] = ACTIONS(7840), + [aux_sym_preproc_elif_token1] = ACTIONS(7838), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7840), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7840), + [anon_sym_LPAREN2] = ACTIONS(7840), + [anon_sym_DASH] = ACTIONS(7838), + [anon_sym_PLUS] = ACTIONS(7838), + [anon_sym_STAR] = ACTIONS(7838), + [anon_sym_SLASH] = ACTIONS(7838), + [anon_sym_PERCENT] = ACTIONS(7838), + [anon_sym_PIPE_PIPE] = ACTIONS(7840), + [anon_sym_AMP_AMP] = ACTIONS(7840), + [anon_sym_PIPE] = ACTIONS(7838), + [anon_sym_CARET] = ACTIONS(7838), + [anon_sym_AMP] = ACTIONS(7838), + [anon_sym_EQ_EQ] = ACTIONS(7840), + [anon_sym_BANG_EQ] = ACTIONS(7840), + [anon_sym_GT] = ACTIONS(7838), + [anon_sym_GT_EQ] = ACTIONS(7840), + [anon_sym_LT_EQ] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(7838), + [anon_sym_LT_LT] = ACTIONS(7838), + [anon_sym_GT_GT] = ACTIONS(7838), + [anon_sym_SEMI] = ACTIONS(7840), + [anon_sym___extension__] = ACTIONS(7838), + [anon_sym___attribute__] = ACTIONS(7838), + [anon_sym___attribute] = ACTIONS(7838), + [anon_sym_COLON] = ACTIONS(7838), + [anon_sym_COLON_COLON] = ACTIONS(7840), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7840), + [anon_sym_RBRACE] = ACTIONS(7840), + [anon_sym_LBRACK] = ACTIONS(7838), + [anon_sym_EQ] = ACTIONS(7838), + [anon_sym_const] = ACTIONS(7838), + [anon_sym_constexpr] = ACTIONS(7838), + [anon_sym_volatile] = ACTIONS(7838), + [anon_sym_restrict] = ACTIONS(7838), + [anon_sym___restrict__] = ACTIONS(7838), + [anon_sym__Atomic] = ACTIONS(7838), + [anon_sym__Noreturn] = ACTIONS(7838), + [anon_sym_noreturn] = ACTIONS(7838), + [anon_sym__Nonnull] = ACTIONS(7838), + [anon_sym_mutable] = ACTIONS(7838), + [anon_sym_constinit] = ACTIONS(7838), + [anon_sym_consteval] = ACTIONS(7838), + [anon_sym_alignas] = ACTIONS(7838), + [anon_sym__Alignas] = ACTIONS(7838), + [anon_sym_QMARK] = ACTIONS(7840), + [anon_sym_STAR_EQ] = ACTIONS(7840), + [anon_sym_SLASH_EQ] = ACTIONS(7840), + [anon_sym_PERCENT_EQ] = ACTIONS(7840), + [anon_sym_PLUS_EQ] = ACTIONS(7840), + [anon_sym_DASH_EQ] = ACTIONS(7840), + [anon_sym_LT_LT_EQ] = ACTIONS(7840), + [anon_sym_GT_GT_EQ] = ACTIONS(7840), + [anon_sym_AMP_EQ] = ACTIONS(7840), + [anon_sym_CARET_EQ] = ACTIONS(7840), + [anon_sym_PIPE_EQ] = ACTIONS(7840), + [anon_sym_and_eq] = ACTIONS(7838), + [anon_sym_or_eq] = ACTIONS(7838), + [anon_sym_xor_eq] = ACTIONS(7838), + [anon_sym_LT_EQ_GT] = ACTIONS(7840), + [anon_sym_or] = ACTIONS(7838), + [anon_sym_and] = ACTIONS(7838), + [anon_sym_bitor] = ACTIONS(7838), + [anon_sym_xor] = ACTIONS(7838), + [anon_sym_bitand] = ACTIONS(7838), + [anon_sym_not_eq] = ACTIONS(7838), + [anon_sym_DASH_DASH] = ACTIONS(7840), + [anon_sym_PLUS_PLUS] = ACTIONS(7840), + [anon_sym_DOT] = ACTIONS(7838), + [anon_sym_DOT_STAR] = ACTIONS(7840), + [anon_sym_DASH_GT] = ACTIONS(7840), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7838), + [anon_sym_final] = ACTIONS(7838), + [anon_sym_override] = ACTIONS(7838), + [anon_sym_template] = ACTIONS(7838), + [anon_sym_requires] = ACTIONS(7838), + [anon_sym_LBRACK_COLON] = ACTIONS(7840), + [anon_sym_COLON_RBRACK] = ACTIONS(7840), }, - [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(2329)] = { + [sym_identifier] = ACTIONS(7842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7844), + [anon_sym_COMMA] = ACTIONS(7844), + [anon_sym_RPAREN] = ACTIONS(7844), + [aux_sym_preproc_if_token2] = ACTIONS(7844), + [aux_sym_preproc_else_token1] = ACTIONS(7844), + [aux_sym_preproc_elif_token1] = ACTIONS(7842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7844), + [anon_sym_LPAREN2] = ACTIONS(7844), + [anon_sym_DASH] = ACTIONS(7842), + [anon_sym_PLUS] = ACTIONS(7842), + [anon_sym_STAR] = ACTIONS(7842), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_PERCENT] = ACTIONS(7842), + [anon_sym_PIPE_PIPE] = ACTIONS(7844), + [anon_sym_AMP_AMP] = ACTIONS(7844), + [anon_sym_PIPE] = ACTIONS(7842), + [anon_sym_CARET] = ACTIONS(7842), + [anon_sym_AMP] = ACTIONS(7842), + [anon_sym_EQ_EQ] = ACTIONS(7844), + [anon_sym_BANG_EQ] = ACTIONS(7844), + [anon_sym_GT] = ACTIONS(7842), + [anon_sym_GT_EQ] = ACTIONS(7844), + [anon_sym_LT_EQ] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(7842), + [anon_sym_LT_LT] = ACTIONS(7842), + [anon_sym_GT_GT] = ACTIONS(7842), + [anon_sym_SEMI] = ACTIONS(7844), + [anon_sym___extension__] = ACTIONS(7842), + [anon_sym___attribute__] = ACTIONS(7842), + [anon_sym___attribute] = ACTIONS(7842), + [anon_sym_COLON] = ACTIONS(7842), + [anon_sym_COLON_COLON] = ACTIONS(7844), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7844), + [anon_sym_RBRACE] = ACTIONS(7844), + [anon_sym_LBRACK] = ACTIONS(7842), + [anon_sym_EQ] = ACTIONS(7842), + [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(7842), + [anon_sym__Alignas] = ACTIONS(7842), + [anon_sym_QMARK] = ACTIONS(7844), + [anon_sym_STAR_EQ] = ACTIONS(7844), + [anon_sym_SLASH_EQ] = ACTIONS(7844), + [anon_sym_PERCENT_EQ] = ACTIONS(7844), + [anon_sym_PLUS_EQ] = ACTIONS(7844), + [anon_sym_DASH_EQ] = ACTIONS(7844), + [anon_sym_LT_LT_EQ] = ACTIONS(7844), + [anon_sym_GT_GT_EQ] = ACTIONS(7844), + [anon_sym_AMP_EQ] = ACTIONS(7844), + [anon_sym_CARET_EQ] = ACTIONS(7844), + [anon_sym_PIPE_EQ] = ACTIONS(7844), + [anon_sym_and_eq] = ACTIONS(7842), + [anon_sym_or_eq] = ACTIONS(7842), + [anon_sym_xor_eq] = ACTIONS(7842), + [anon_sym_LT_EQ_GT] = ACTIONS(7844), + [anon_sym_or] = ACTIONS(7842), + [anon_sym_and] = ACTIONS(7842), + [anon_sym_bitor] = ACTIONS(7842), + [anon_sym_xor] = ACTIONS(7842), + [anon_sym_bitand] = ACTIONS(7842), + [anon_sym_not_eq] = ACTIONS(7842), + [anon_sym_DASH_DASH] = ACTIONS(7844), + [anon_sym_PLUS_PLUS] = ACTIONS(7844), + [anon_sym_DOT] = ACTIONS(7842), + [anon_sym_DOT_STAR] = ACTIONS(7844), + [anon_sym_DASH_GT] = ACTIONS(7844), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7842), + [anon_sym_final] = ACTIONS(7842), + [anon_sym_override] = ACTIONS(7842), + [anon_sym_template] = ACTIONS(7842), + [anon_sym_requires] = ACTIONS(7842), + [anon_sym_LBRACK_COLON] = ACTIONS(7844), + [anon_sym_COLON_RBRACK] = ACTIONS(7844), }, - [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(2330)] = { + [sym_identifier] = ACTIONS(7846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7848), + [anon_sym_COMMA] = ACTIONS(7848), + [anon_sym_RPAREN] = ACTIONS(7848), + [aux_sym_preproc_if_token2] = ACTIONS(7848), + [aux_sym_preproc_else_token1] = ACTIONS(7848), + [aux_sym_preproc_elif_token1] = ACTIONS(7846), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7848), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7848), + [anon_sym_LPAREN2] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7846), + [anon_sym_STAR] = ACTIONS(7846), + [anon_sym_SLASH] = ACTIONS(7846), + [anon_sym_PERCENT] = ACTIONS(7846), + [anon_sym_PIPE_PIPE] = ACTIONS(7848), + [anon_sym_AMP_AMP] = ACTIONS(7848), + [anon_sym_PIPE] = ACTIONS(7846), + [anon_sym_CARET] = ACTIONS(7846), + [anon_sym_AMP] = ACTIONS(7846), + [anon_sym_EQ_EQ] = ACTIONS(7848), + [anon_sym_BANG_EQ] = ACTIONS(7848), + [anon_sym_GT] = ACTIONS(7846), + [anon_sym_GT_EQ] = ACTIONS(7848), + [anon_sym_LT_EQ] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(7846), + [anon_sym_LT_LT] = ACTIONS(7846), + [anon_sym_GT_GT] = ACTIONS(7846), + [anon_sym_SEMI] = ACTIONS(7848), + [anon_sym___extension__] = ACTIONS(7846), + [anon_sym___attribute__] = ACTIONS(7846), + [anon_sym___attribute] = ACTIONS(7846), + [anon_sym_COLON] = ACTIONS(7846), + [anon_sym_COLON_COLON] = ACTIONS(7848), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7848), + [anon_sym_RBRACE] = ACTIONS(7848), + [anon_sym_LBRACK] = ACTIONS(7846), + [anon_sym_EQ] = ACTIONS(7846), + [anon_sym_const] = ACTIONS(7846), + [anon_sym_constexpr] = ACTIONS(7846), + [anon_sym_volatile] = ACTIONS(7846), + [anon_sym_restrict] = ACTIONS(7846), + [anon_sym___restrict__] = ACTIONS(7846), + [anon_sym__Atomic] = ACTIONS(7846), + [anon_sym__Noreturn] = ACTIONS(7846), + [anon_sym_noreturn] = ACTIONS(7846), + [anon_sym__Nonnull] = ACTIONS(7846), + [anon_sym_mutable] = ACTIONS(7846), + [anon_sym_constinit] = ACTIONS(7846), + [anon_sym_consteval] = ACTIONS(7846), + [anon_sym_alignas] = ACTIONS(7846), + [anon_sym__Alignas] = ACTIONS(7846), + [anon_sym_QMARK] = ACTIONS(7848), + [anon_sym_STAR_EQ] = ACTIONS(7848), + [anon_sym_SLASH_EQ] = ACTIONS(7848), + [anon_sym_PERCENT_EQ] = ACTIONS(7848), + [anon_sym_PLUS_EQ] = ACTIONS(7848), + [anon_sym_DASH_EQ] = ACTIONS(7848), + [anon_sym_LT_LT_EQ] = ACTIONS(7848), + [anon_sym_GT_GT_EQ] = ACTIONS(7848), + [anon_sym_AMP_EQ] = ACTIONS(7848), + [anon_sym_CARET_EQ] = ACTIONS(7848), + [anon_sym_PIPE_EQ] = ACTIONS(7848), + [anon_sym_and_eq] = ACTIONS(7846), + [anon_sym_or_eq] = ACTIONS(7846), + [anon_sym_xor_eq] = ACTIONS(7846), + [anon_sym_LT_EQ_GT] = ACTIONS(7848), + [anon_sym_or] = ACTIONS(7846), + [anon_sym_and] = ACTIONS(7846), + [anon_sym_bitor] = ACTIONS(7846), + [anon_sym_xor] = ACTIONS(7846), + [anon_sym_bitand] = ACTIONS(7846), + [anon_sym_not_eq] = ACTIONS(7846), + [anon_sym_DASH_DASH] = ACTIONS(7848), + [anon_sym_PLUS_PLUS] = ACTIONS(7848), + [anon_sym_DOT] = ACTIONS(7846), + [anon_sym_DOT_STAR] = ACTIONS(7848), + [anon_sym_DASH_GT] = ACTIONS(7848), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7846), + [anon_sym_final] = ACTIONS(7846), + [anon_sym_override] = ACTIONS(7846), + [anon_sym_template] = ACTIONS(7846), + [anon_sym_requires] = ACTIONS(7846), + [anon_sym_LBRACK_COLON] = ACTIONS(7848), + [anon_sym_COLON_RBRACK] = ACTIONS(7848), }, - [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), + [STATE(2331)] = { + [sym_decltype_auto] = STATE(2332), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7460), + [anon_sym_decltype] = ACTIONS(6900), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(2332)] = { + [sym_identifier] = ACTIONS(7850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7852), + [anon_sym_COMMA] = ACTIONS(7852), + [anon_sym_RPAREN] = ACTIONS(7852), + [aux_sym_preproc_if_token2] = ACTIONS(7852), + [aux_sym_preproc_else_token1] = ACTIONS(7852), + [aux_sym_preproc_elif_token1] = ACTIONS(7850), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7852), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7852), + [anon_sym_LPAREN2] = ACTIONS(7852), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_PLUS] = ACTIONS(7850), + [anon_sym_STAR] = ACTIONS(7850), + [anon_sym_SLASH] = ACTIONS(7850), + [anon_sym_PERCENT] = ACTIONS(7850), + [anon_sym_PIPE_PIPE] = ACTIONS(7852), + [anon_sym_AMP_AMP] = ACTIONS(7852), + [anon_sym_PIPE] = ACTIONS(7850), + [anon_sym_CARET] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7850), + [anon_sym_EQ_EQ] = ACTIONS(7852), + [anon_sym_BANG_EQ] = ACTIONS(7852), + [anon_sym_GT] = ACTIONS(7850), + [anon_sym_GT_EQ] = ACTIONS(7852), + [anon_sym_LT_EQ] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(7850), + [anon_sym_LT_LT] = ACTIONS(7850), + [anon_sym_GT_GT] = ACTIONS(7850), + [anon_sym_SEMI] = ACTIONS(7852), + [anon_sym___extension__] = ACTIONS(7850), + [anon_sym___attribute__] = ACTIONS(7850), + [anon_sym___attribute] = ACTIONS(7850), + [anon_sym_COLON] = ACTIONS(7850), + [anon_sym_COLON_COLON] = ACTIONS(7852), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7852), + [anon_sym_RBRACE] = ACTIONS(7852), + [anon_sym_LBRACK] = ACTIONS(7850), + [anon_sym_EQ] = ACTIONS(7850), + [anon_sym_const] = ACTIONS(7850), + [anon_sym_constexpr] = ACTIONS(7850), + [anon_sym_volatile] = ACTIONS(7850), + [anon_sym_restrict] = ACTIONS(7850), + [anon_sym___restrict__] = ACTIONS(7850), + [anon_sym__Atomic] = ACTIONS(7850), + [anon_sym__Noreturn] = ACTIONS(7850), + [anon_sym_noreturn] = ACTIONS(7850), + [anon_sym__Nonnull] = ACTIONS(7850), + [anon_sym_mutable] = ACTIONS(7850), + [anon_sym_constinit] = ACTIONS(7850), + [anon_sym_consteval] = ACTIONS(7850), + [anon_sym_alignas] = ACTIONS(7850), + [anon_sym__Alignas] = ACTIONS(7850), + [anon_sym_QMARK] = ACTIONS(7852), + [anon_sym_STAR_EQ] = ACTIONS(7852), + [anon_sym_SLASH_EQ] = ACTIONS(7852), + [anon_sym_PERCENT_EQ] = ACTIONS(7852), + [anon_sym_PLUS_EQ] = ACTIONS(7852), + [anon_sym_DASH_EQ] = ACTIONS(7852), + [anon_sym_LT_LT_EQ] = ACTIONS(7852), + [anon_sym_GT_GT_EQ] = ACTIONS(7852), + [anon_sym_AMP_EQ] = ACTIONS(7852), + [anon_sym_CARET_EQ] = ACTIONS(7852), + [anon_sym_PIPE_EQ] = ACTIONS(7852), + [anon_sym_and_eq] = ACTIONS(7850), + [anon_sym_or_eq] = ACTIONS(7850), + [anon_sym_xor_eq] = ACTIONS(7850), + [anon_sym_LT_EQ_GT] = ACTIONS(7852), + [anon_sym_or] = ACTIONS(7850), + [anon_sym_and] = ACTIONS(7850), + [anon_sym_bitor] = ACTIONS(7850), + [anon_sym_xor] = ACTIONS(7850), + [anon_sym_bitand] = ACTIONS(7850), + [anon_sym_not_eq] = ACTIONS(7850), + [anon_sym_DASH_DASH] = ACTIONS(7852), + [anon_sym_PLUS_PLUS] = ACTIONS(7852), + [anon_sym_DOT] = ACTIONS(7850), + [anon_sym_DOT_STAR] = ACTIONS(7852), + [anon_sym_DASH_GT] = ACTIONS(7852), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7850), + [anon_sym_final] = ACTIONS(7850), + [anon_sym_override] = ACTIONS(7850), + [anon_sym_template] = ACTIONS(7850), + [anon_sym_requires] = ACTIONS(7850), + [anon_sym_LBRACK_COLON] = ACTIONS(7852), + [anon_sym_COLON_RBRACK] = ACTIONS(7852), + }, + [STATE(2333)] = { + [sym_identifier] = ACTIONS(7854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7856), + [anon_sym_COMMA] = ACTIONS(7856), + [anon_sym_RPAREN] = ACTIONS(7856), + [aux_sym_preproc_if_token2] = ACTIONS(7856), + [aux_sym_preproc_else_token1] = ACTIONS(7856), + [aux_sym_preproc_elif_token1] = ACTIONS(7854), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7856), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7856), + [anon_sym_LPAREN2] = ACTIONS(7856), + [anon_sym_DASH] = ACTIONS(7854), + [anon_sym_PLUS] = ACTIONS(7854), + [anon_sym_STAR] = ACTIONS(7854), + [anon_sym_SLASH] = ACTIONS(7854), + [anon_sym_PERCENT] = ACTIONS(7854), + [anon_sym_PIPE_PIPE] = ACTIONS(7856), + [anon_sym_AMP_AMP] = ACTIONS(7856), + [anon_sym_PIPE] = ACTIONS(7854), + [anon_sym_CARET] = ACTIONS(7854), + [anon_sym_AMP] = ACTIONS(7854), + [anon_sym_EQ_EQ] = ACTIONS(7856), + [anon_sym_BANG_EQ] = ACTIONS(7856), + [anon_sym_GT] = ACTIONS(7854), + [anon_sym_GT_EQ] = ACTIONS(7856), + [anon_sym_LT_EQ] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(7854), + [anon_sym_GT_GT] = ACTIONS(7854), + [anon_sym_SEMI] = ACTIONS(7856), [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___attribute__] = ACTIONS(7854), + [anon_sym___attribute] = ACTIONS(7854), + [anon_sym_COLON] = ACTIONS(7854), + [anon_sym_COLON_COLON] = ACTIONS(7856), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7856), + [anon_sym_RBRACE] = ACTIONS(7856), + [anon_sym_LBRACK] = ACTIONS(7854), + [anon_sym_EQ] = ACTIONS(7854), [anon_sym_const] = ACTIONS(7854), [anon_sym_constexpr] = ACTIONS(7854), [anon_sym_volatile] = ACTIONS(7854), @@ -336268,760 +350080,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_alignas] = ACTIONS(7854), + [anon_sym__Alignas] = ACTIONS(7854), + [anon_sym_QMARK] = ACTIONS(7856), + [anon_sym_STAR_EQ] = ACTIONS(7856), + [anon_sym_SLASH_EQ] = ACTIONS(7856), + [anon_sym_PERCENT_EQ] = ACTIONS(7856), + [anon_sym_PLUS_EQ] = ACTIONS(7856), + [anon_sym_DASH_EQ] = ACTIONS(7856), + [anon_sym_LT_LT_EQ] = ACTIONS(7856), + [anon_sym_GT_GT_EQ] = ACTIONS(7856), + [anon_sym_AMP_EQ] = ACTIONS(7856), + [anon_sym_CARET_EQ] = ACTIONS(7856), + [anon_sym_PIPE_EQ] = ACTIONS(7856), + [anon_sym_and_eq] = ACTIONS(7854), + [anon_sym_or_eq] = ACTIONS(7854), + [anon_sym_xor_eq] = ACTIONS(7854), + [anon_sym_LT_EQ_GT] = ACTIONS(7856), + [anon_sym_or] = ACTIONS(7854), + [anon_sym_and] = ACTIONS(7854), + [anon_sym_bitor] = ACTIONS(7854), + [anon_sym_xor] = ACTIONS(7854), + [anon_sym_bitand] = ACTIONS(7854), + [anon_sym_not_eq] = ACTIONS(7854), + [anon_sym_DASH_DASH] = ACTIONS(7856), + [anon_sym_PLUS_PLUS] = ACTIONS(7856), + [anon_sym_DOT] = ACTIONS(7854), + [anon_sym_DOT_STAR] = ACTIONS(7856), + [anon_sym_DASH_GT] = ACTIONS(7856), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7854), + [anon_sym_final] = ACTIONS(7854), + [anon_sym_override] = ACTIONS(7854), + [anon_sym_template] = ACTIONS(7854), + [anon_sym_requires] = ACTIONS(7854), + [anon_sym_LBRACK_COLON] = ACTIONS(7856), + [anon_sym_COLON_RBRACK] = ACTIONS(7856), }, - [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(2334)] = { + [sym_identifier] = ACTIONS(7858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7860), + [anon_sym_COMMA] = ACTIONS(7860), + [anon_sym_RPAREN] = ACTIONS(7860), + [aux_sym_preproc_if_token2] = ACTIONS(7860), + [aux_sym_preproc_else_token1] = ACTIONS(7860), + [aux_sym_preproc_elif_token1] = ACTIONS(7858), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7860), + [anon_sym_LPAREN2] = ACTIONS(7860), + [anon_sym_DASH] = ACTIONS(7858), + [anon_sym_PLUS] = ACTIONS(7858), + [anon_sym_STAR] = ACTIONS(7858), + [anon_sym_SLASH] = ACTIONS(7858), + [anon_sym_PERCENT] = ACTIONS(7858), + [anon_sym_PIPE_PIPE] = ACTIONS(7860), + [anon_sym_AMP_AMP] = ACTIONS(7860), + [anon_sym_PIPE] = ACTIONS(7858), + [anon_sym_CARET] = ACTIONS(7858), + [anon_sym_AMP] = ACTIONS(7858), + [anon_sym_EQ_EQ] = ACTIONS(7860), + [anon_sym_BANG_EQ] = ACTIONS(7860), + [anon_sym_GT] = ACTIONS(7858), + [anon_sym_GT_EQ] = ACTIONS(7860), + [anon_sym_LT_EQ] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(7858), + [anon_sym_LT_LT] = ACTIONS(7858), + [anon_sym_GT_GT] = ACTIONS(7858), + [anon_sym_SEMI] = ACTIONS(7860), + [anon_sym___extension__] = ACTIONS(7858), + [anon_sym___attribute__] = ACTIONS(7858), + [anon_sym___attribute] = ACTIONS(7858), + [anon_sym_COLON] = ACTIONS(7858), + [anon_sym_COLON_COLON] = ACTIONS(7860), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7860), + [anon_sym_RBRACE] = ACTIONS(7860), + [anon_sym_LBRACK] = ACTIONS(7858), + [anon_sym_EQ] = ACTIONS(7858), + [anon_sym_const] = ACTIONS(7858), + [anon_sym_constexpr] = ACTIONS(7858), + [anon_sym_volatile] = ACTIONS(7858), + [anon_sym_restrict] = ACTIONS(7858), + [anon_sym___restrict__] = ACTIONS(7858), + [anon_sym__Atomic] = ACTIONS(7858), + [anon_sym__Noreturn] = ACTIONS(7858), + [anon_sym_noreturn] = ACTIONS(7858), + [anon_sym__Nonnull] = ACTIONS(7858), + [anon_sym_mutable] = ACTIONS(7858), + [anon_sym_constinit] = ACTIONS(7858), + [anon_sym_consteval] = ACTIONS(7858), + [anon_sym_alignas] = ACTIONS(7858), + [anon_sym__Alignas] = ACTIONS(7858), + [anon_sym_QMARK] = ACTIONS(7860), + [anon_sym_STAR_EQ] = ACTIONS(7860), + [anon_sym_SLASH_EQ] = ACTIONS(7860), + [anon_sym_PERCENT_EQ] = ACTIONS(7860), + [anon_sym_PLUS_EQ] = ACTIONS(7860), + [anon_sym_DASH_EQ] = ACTIONS(7860), + [anon_sym_LT_LT_EQ] = ACTIONS(7860), + [anon_sym_GT_GT_EQ] = ACTIONS(7860), + [anon_sym_AMP_EQ] = ACTIONS(7860), + [anon_sym_CARET_EQ] = ACTIONS(7860), + [anon_sym_PIPE_EQ] = ACTIONS(7860), + [anon_sym_and_eq] = ACTIONS(7858), + [anon_sym_or_eq] = ACTIONS(7858), + [anon_sym_xor_eq] = ACTIONS(7858), + [anon_sym_LT_EQ_GT] = ACTIONS(7860), + [anon_sym_or] = ACTIONS(7858), + [anon_sym_and] = ACTIONS(7858), + [anon_sym_bitor] = ACTIONS(7858), + [anon_sym_xor] = ACTIONS(7858), + [anon_sym_bitand] = ACTIONS(7858), + [anon_sym_not_eq] = ACTIONS(7858), + [anon_sym_DASH_DASH] = ACTIONS(7860), + [anon_sym_PLUS_PLUS] = ACTIONS(7860), + [anon_sym_DOT] = ACTIONS(7858), + [anon_sym_DOT_STAR] = ACTIONS(7860), + [anon_sym_DASH_GT] = ACTIONS(7860), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7858), + [anon_sym_final] = ACTIONS(7858), + [anon_sym_override] = ACTIONS(7858), + [anon_sym_template] = ACTIONS(7858), + [anon_sym_requires] = ACTIONS(7858), + [anon_sym_LBRACK_COLON] = ACTIONS(7860), + [anon_sym_COLON_RBRACK] = ACTIONS(7860), }, - [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(2335)] = { + [sym__abstract_declarator] = STATE(3884), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_parameter_list] = STATE(1537), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9583), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_RPAREN] = ACTIONS(7862), + [aux_sym_preproc_if_token2] = ACTIONS(7862), + [aux_sym_preproc_else_token1] = ACTIONS(7862), + [aux_sym_preproc_elif_token1] = ACTIONS(7864), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7862), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(5976), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_SEMI] = ACTIONS(7862), + [anon_sym_COLON] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(5982), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7862), + [anon_sym_RBRACE] = ACTIONS(7862), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7862), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_and_eq] = ACTIONS(7864), + [anon_sym_or_eq] = ACTIONS(7864), + [anon_sym_xor_eq] = ACTIONS(7864), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7862), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(7864), + [anon_sym_override] = ACTIONS(7864), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(7864), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(7862), }, - [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(2336)] = { + [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(7491), + [anon_sym___attribute] = ACTIONS(7491), + [anon_sym_COLON] = ACTIONS(7491), + [anon_sym_COLON_COLON] = ACTIONS(7493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7493), + [anon_sym_RBRACE] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [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_decltype] = ACTIONS(7491), + [anon_sym_final] = ACTIONS(7491), + [anon_sym_override] = ACTIONS(7491), + [anon_sym_template] = ACTIONS(7491), + [anon_sym_requires] = ACTIONS(7491), + [anon_sym_LBRACK_COLON] = ACTIONS(7493), + [anon_sym_COLON_RBRACK] = ACTIONS(7493), }, - [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(2337)] = { + [sym_type_qualifier] = STATE(2338), + [sym_alignas_qualifier] = STATE(2452), + [aux_sym__type_definition_type_repeat1] = STATE(2338), + [aux_sym_sized_type_specifier_repeat1] = STATE(2419), + [sym_identifier] = ACTIONS(7866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(7869), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON_COLON] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(7872), + [anon_sym_unsigned] = ACTIONS(7872), + [anon_sym_long] = ACTIONS(7872), + [anon_sym_short] = ACTIONS(7872), + [anon_sym_LBRACK] = ACTIONS(6936), + [anon_sym_RBRACK] = ACTIONS(6934), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(7869), + [anon_sym_constexpr] = ACTIONS(7869), + [anon_sym_volatile] = ACTIONS(7869), + [anon_sym_restrict] = ACTIONS(7869), + [anon_sym___restrict__] = ACTIONS(7869), + [anon_sym__Atomic] = ACTIONS(7869), + [anon_sym__Noreturn] = ACTIONS(7869), + [anon_sym_noreturn] = ACTIONS(7869), + [anon_sym__Nonnull] = ACTIONS(7869), + [anon_sym_mutable] = ACTIONS(7869), + [anon_sym_constinit] = ACTIONS(7869), + [anon_sym_consteval] = ACTIONS(7869), + [anon_sym_alignas] = ACTIONS(7874), + [anon_sym__Alignas] = ACTIONS(7874), + [sym_primitive_type] = ACTIONS(7877), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6934), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_and_eq] = ACTIONS(6936), + [anon_sym_or_eq] = ACTIONS(6936), + [anon_sym_xor_eq] = ACTIONS(6936), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6936), + [anon_sym_final] = ACTIONS(6936), + [anon_sym_override] = ACTIONS(6936), + [anon_sym_template] = ACTIONS(6936), + [anon_sym_requires] = ACTIONS(6936), + [anon_sym_LBRACK_COLON] = ACTIONS(6934), }, - [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), + [STATE(2338)] = { + [sym_type_qualifier] = STATE(2364), + [sym_alignas_qualifier] = STATE(2452), + [aux_sym__type_definition_type_repeat1] = STATE(2364), + [aux_sym_sized_type_specifier_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(7879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), [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___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON_COLON] = ACTIONS(7023), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(7885), + [anon_sym_unsigned] = ACTIONS(7885), + [anon_sym_long] = ACTIONS(7885), + [anon_sym_short] = ACTIONS(7885), + [anon_sym_LBRACK] = ACTIONS(7025), + [anon_sym_RBRACK] = ACTIONS(7023), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(7882), [anon_sym_constexpr] = ACTIONS(7882), [anon_sym_volatile] = ACTIONS(7882), [anon_sym_restrict] = ACTIONS(7882), @@ -337033,1922 +350520,1753 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_alignas] = ACTIONS(7887), + [anon_sym__Alignas] = ACTIONS(7887), + [sym_primitive_type] = ACTIONS(7890), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7023), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_and_eq] = ACTIONS(7025), + [anon_sym_or_eq] = ACTIONS(7025), + [anon_sym_xor_eq] = ACTIONS(7025), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7025), + [anon_sym_final] = ACTIONS(7025), + [anon_sym_override] = ACTIONS(7025), + [anon_sym_template] = ACTIONS(7025), + [anon_sym_requires] = ACTIONS(7025), + [anon_sym_LBRACK_COLON] = ACTIONS(7023), }, - [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(2339)] = { + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, - [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(2340)] = { + [sym_type_qualifier] = STATE(2296), + [sym_alignas_qualifier] = STATE(2442), + [aux_sym__type_definition_type_repeat1] = STATE(2296), + [aux_sym_sized_type_specifier_repeat1] = STATE(2411), + [sym_identifier] = ACTIONS(7892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6936), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(7895), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON_COLON] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(7898), + [anon_sym_unsigned] = ACTIONS(7898), + [anon_sym_long] = ACTIONS(7898), + [anon_sym_short] = ACTIONS(7898), + [anon_sym_LBRACK] = ACTIONS(6936), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(7895), + [anon_sym_constexpr] = ACTIONS(7895), + [anon_sym_volatile] = ACTIONS(7895), + [anon_sym_restrict] = ACTIONS(7895), + [anon_sym___restrict__] = ACTIONS(7895), + [anon_sym__Atomic] = ACTIONS(7895), + [anon_sym__Noreturn] = ACTIONS(7895), + [anon_sym_noreturn] = ACTIONS(7895), + [anon_sym__Nonnull] = ACTIONS(7895), + [anon_sym_mutable] = ACTIONS(7895), + [anon_sym_constinit] = ACTIONS(7895), + [anon_sym_consteval] = ACTIONS(7895), + [anon_sym_alignas] = ACTIONS(7900), + [anon_sym__Alignas] = ACTIONS(7900), + [sym_primitive_type] = ACTIONS(7903), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6936), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_and_eq] = ACTIONS(6936), + [anon_sym_or_eq] = ACTIONS(6936), + [anon_sym_xor_eq] = ACTIONS(6936), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6936), + [anon_sym_final] = ACTIONS(6936), + [anon_sym_override] = ACTIONS(6936), + [anon_sym_template] = ACTIONS(6936), + [anon_sym_GT2] = ACTIONS(6934), + [anon_sym_requires] = ACTIONS(6936), + [anon_sym_LBRACK_COLON] = ACTIONS(6934), }, - [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(2341)] = { + [sym_argument_list] = STATE(4271), + [sym_initializer_list] = STATE(4267), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7363), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, - [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(2342)] = { + [sym_type_qualifier] = STATE(2342), + [sym_alignas_qualifier] = STATE(2407), + [aux_sym__type_definition_type_repeat1] = STATE(2342), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(7905), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(7905), + [anon_sym_constexpr] = ACTIONS(7905), + [anon_sym_volatile] = ACTIONS(7905), + [anon_sym_restrict] = ACTIONS(7905), + [anon_sym___restrict__] = ACTIONS(7905), + [anon_sym__Atomic] = ACTIONS(7905), + [anon_sym__Noreturn] = ACTIONS(7905), + [anon_sym_noreturn] = ACTIONS(7905), + [anon_sym__Nonnull] = ACTIONS(7905), + [anon_sym_mutable] = ACTIONS(7905), + [anon_sym_constinit] = ACTIONS(7905), + [anon_sym_consteval] = ACTIONS(7905), + [anon_sym_alignas] = ACTIONS(7908), + [anon_sym__Alignas] = ACTIONS(7908), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7047), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_DASH_GT_STAR] = ACTIONS(7049), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), }, - [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(2343)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [aux_sym_preproc_if_token2] = ACTIONS(7261), + [aux_sym_preproc_else_token1] = ACTIONS(7261), + [aux_sym_preproc_elif_token1] = ACTIONS(7259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7261), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), + [anon_sym_RBRACE] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), + [anon_sym_COLON_RBRACK] = ACTIONS(7261), }, - [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(2344)] = { + [sym_identifier] = ACTIONS(7911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7913), + [anon_sym_COMMA] = ACTIONS(7913), + [anon_sym_RPAREN] = ACTIONS(7913), + [aux_sym_preproc_if_token2] = ACTIONS(7913), + [aux_sym_preproc_else_token1] = ACTIONS(7913), + [aux_sym_preproc_elif_token1] = ACTIONS(7911), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7913), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7913), + [anon_sym_LPAREN2] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(7911), + [anon_sym_PLUS] = ACTIONS(7911), + [anon_sym_STAR] = ACTIONS(7911), + [anon_sym_SLASH] = ACTIONS(7911), + [anon_sym_PERCENT] = ACTIONS(7911), + [anon_sym_PIPE_PIPE] = ACTIONS(7913), + [anon_sym_AMP_AMP] = ACTIONS(7913), + [anon_sym_PIPE] = ACTIONS(7911), + [anon_sym_CARET] = ACTIONS(7911), + [anon_sym_AMP] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(7913), + [anon_sym_BANG_EQ] = ACTIONS(7913), + [anon_sym_GT] = ACTIONS(7911), + [anon_sym_GT_EQ] = ACTIONS(7913), + [anon_sym_LT_EQ] = ACTIONS(7911), + [anon_sym_LT] = ACTIONS(7911), + [anon_sym_LT_LT] = ACTIONS(7911), + [anon_sym_GT_GT] = ACTIONS(7911), + [anon_sym_SEMI] = ACTIONS(7913), + [anon_sym___extension__] = ACTIONS(7911), + [anon_sym___attribute__] = ACTIONS(7911), + [anon_sym___attribute] = ACTIONS(7911), + [anon_sym_COLON] = ACTIONS(7911), + [anon_sym_COLON_COLON] = ACTIONS(7913), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7913), + [anon_sym_RBRACE] = ACTIONS(7913), + [anon_sym_LBRACK] = ACTIONS(7911), + [anon_sym_EQ] = ACTIONS(7911), + [anon_sym_const] = ACTIONS(7911), + [anon_sym_constexpr] = ACTIONS(7911), + [anon_sym_volatile] = ACTIONS(7911), + [anon_sym_restrict] = ACTIONS(7911), + [anon_sym___restrict__] = ACTIONS(7911), + [anon_sym__Atomic] = ACTIONS(7911), + [anon_sym__Noreturn] = ACTIONS(7911), + [anon_sym_noreturn] = ACTIONS(7911), + [anon_sym__Nonnull] = ACTIONS(7911), + [anon_sym_mutable] = ACTIONS(7911), + [anon_sym_constinit] = ACTIONS(7911), + [anon_sym_consteval] = ACTIONS(7911), + [anon_sym_alignas] = ACTIONS(7911), + [anon_sym__Alignas] = ACTIONS(7911), + [anon_sym_QMARK] = ACTIONS(7913), + [anon_sym_STAR_EQ] = ACTIONS(7913), + [anon_sym_SLASH_EQ] = ACTIONS(7913), + [anon_sym_PERCENT_EQ] = ACTIONS(7913), + [anon_sym_PLUS_EQ] = ACTIONS(7913), + [anon_sym_DASH_EQ] = ACTIONS(7913), + [anon_sym_LT_LT_EQ] = ACTIONS(7913), + [anon_sym_GT_GT_EQ] = ACTIONS(7913), + [anon_sym_AMP_EQ] = ACTIONS(7913), + [anon_sym_CARET_EQ] = ACTIONS(7913), + [anon_sym_PIPE_EQ] = ACTIONS(7913), + [anon_sym_and_eq] = ACTIONS(7911), + [anon_sym_or_eq] = ACTIONS(7911), + [anon_sym_xor_eq] = ACTIONS(7911), + [anon_sym_LT_EQ_GT] = ACTIONS(7913), + [anon_sym_or] = ACTIONS(7911), + [anon_sym_and] = ACTIONS(7911), + [anon_sym_bitor] = ACTIONS(7911), + [anon_sym_xor] = ACTIONS(7911), + [anon_sym_bitand] = ACTIONS(7911), + [anon_sym_not_eq] = ACTIONS(7911), + [anon_sym_DASH_DASH] = ACTIONS(7913), + [anon_sym_PLUS_PLUS] = ACTIONS(7913), + [anon_sym_DOT] = ACTIONS(7911), + [anon_sym_DOT_STAR] = ACTIONS(7913), + [anon_sym_DASH_GT] = ACTIONS(7913), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7911), + [anon_sym_final] = ACTIONS(7911), + [anon_sym_override] = ACTIONS(7911), + [anon_sym_template] = ACTIONS(7911), + [anon_sym_requires] = ACTIONS(7911), + [anon_sym_LBRACK_COLON] = ACTIONS(7913), + [anon_sym_COLON_RBRACK] = ACTIONS(7913), }, - [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), + [STATE(2345)] = { + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), [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), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, - [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(2346)] = { + [sym_decltype_auto] = STATE(2332), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7460), + [anon_sym_decltype] = ACTIONS(6900), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, - [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(2347)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4124), + [sym_ms_pointer_modifier] = STATE(3771), + [sym__abstract_declarator] = STATE(7634), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(2740), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2449), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9637), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2740), + [aux_sym_pointer_declarator_repeat1] = STATE(3771), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7915), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7917), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7919), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7921), + [sym_ms_restrict_modifier] = ACTIONS(7535), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7535), + [sym_ms_signed_ptr_modifier] = ACTIONS(7535), + [anon_sym__unaligned] = ACTIONS(7537), + [anon_sym___unaligned] = ACTIONS(7537), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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(2348)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4124), + [sym_ms_pointer_modifier] = STATE(2347), + [sym__abstract_declarator] = STATE(7623), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(2793), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2449), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9637), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2793), + [aux_sym_pointer_declarator_repeat1] = STATE(2347), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(7915), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(7917), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(7919), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5996), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5996), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7921), + [sym_ms_restrict_modifier] = ACTIONS(7535), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7535), + [sym_ms_signed_ptr_modifier] = ACTIONS(7535), + [anon_sym__unaligned] = ACTIONS(7537), + [anon_sym___unaligned] = ACTIONS(7537), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5994), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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(2349)] = { + [sym_function_definition] = STATE(791), + [sym_declaration] = STATE(791), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7241), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3132), + [sym_declaration_list] = STATE(791), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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_LBRACE] = ACTIONS(7923), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(2350)] = { + [sym__abstract_declarator] = STATE(6916), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2289), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9544), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(7137), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(7139), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(6618), + [anon_sym_COLON_COLON] = ACTIONS(7141), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6616), + [anon_sym_RBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6616), }, - [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(2351)] = { + [sym__abstract_declarator] = STATE(6863), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2353), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2289), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9544), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2353), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(7137), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(7139), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym_SEMI] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(7141), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6608), + [anon_sym_RBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6608), }, - [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(2352)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4157), + [sym_ms_pointer_modifier] = STATE(2360), + [sym__abstract_declarator] = STATE(7621), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(2805), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2460), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9608), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2805), + [aux_sym_pointer_declarator_repeat1] = STATE(2360), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5994), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_PLUS] = ACTIONS(5996), + [anon_sym_STAR] = ACTIONS(7925), + [anon_sym_SLASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5994), + [anon_sym_PIPE_PIPE] = ACTIONS(5994), + [anon_sym_AMP_AMP] = ACTIONS(7927), + [anon_sym_PIPE] = ACTIONS(5996), + [anon_sym_CARET] = ACTIONS(5994), + [anon_sym_AMP] = ACTIONS(7929), + [anon_sym_EQ_EQ] = ACTIONS(5994), + [anon_sym_BANG_EQ] = ACTIONS(5994), + [anon_sym_GT] = ACTIONS(5996), + [anon_sym_GT_EQ] = ACTIONS(5994), + [anon_sym_LT_EQ] = ACTIONS(5996), + [anon_sym_LT] = ACTIONS(5996), + [anon_sym_LT_LT] = ACTIONS(5994), + [anon_sym_GT_GT] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7931), + [sym_ms_restrict_modifier] = ACTIONS(7511), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7511), + [sym_ms_signed_ptr_modifier] = ACTIONS(7511), + [anon_sym__unaligned] = ACTIONS(7513), + [anon_sym___unaligned] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(5994), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(5994), + [anon_sym_LT_EQ_GT] = ACTIONS(5994), + [anon_sym_or] = ACTIONS(5996), + [anon_sym_and] = ACTIONS(5996), + [anon_sym_bitor] = ACTIONS(5996), + [anon_sym_xor] = ACTIONS(5996), + [anon_sym_bitand] = ACTIONS(5996), + [anon_sym_not_eq] = ACTIONS(5996), + [anon_sym_DASH_DASH] = ACTIONS(5994), + [anon_sym_PLUS_PLUS] = ACTIONS(5994), + [anon_sym_DOT] = ACTIONS(5996), + [anon_sym_DOT_STAR] = ACTIONS(5994), + [anon_sym_DASH_GT] = ACTIONS(5994), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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(2353)] = { + [sym__abstract_declarator] = STATE(6912), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2289), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9544), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(7137), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(7139), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym_SEMI] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(7141), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6612), + [anon_sym_RBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6612), }, - [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(2354)] = { + [sym__abstract_declarator] = STATE(6881), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2289), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9544), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(7137), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(7139), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym_SEMI] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(7141), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6600), + [anon_sym_RBRACE] = ACTIONS(6600), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6600), }, - [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(2355)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [aux_sym_preproc_if_token2] = ACTIONS(7261), + [aux_sym_preproc_else_token1] = ACTIONS(7261), + [aux_sym_preproc_elif_token1] = ACTIONS(7259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7261), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_RBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7261), }, - [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), + [STATE(2356)] = { + [sym_attribute_specifier] = STATE(2573), + [sym_attribute_declaration] = STATE(4950), + [sym_type_qualifier] = STATE(2514), + [sym_alignas_qualifier] = STATE(2680), + [aux_sym_type_definition_repeat1] = STATE(2573), + [aux_sym__type_definition_type_repeat1] = STATE(2514), + [aux_sym_attributed_declarator_repeat1] = STATE(4950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(6869), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_mutable] = ACTIONS(6861), + [anon_sym_constinit] = ACTIONS(6861), + [anon_sym_consteval] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7059), + [anon_sym_or_eq] = ACTIONS(7059), + [anon_sym_xor_eq] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7057), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + [anon_sym_DASH_GT_STAR] = ACTIONS(7059), }, - [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(2357)] = { + [sym_type_qualifier] = STATE(2357), + [sym_alignas_qualifier] = STATE(2442), + [aux_sym__type_definition_type_repeat1] = STATE(2357), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7047), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(7933), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(7933), + [anon_sym_constexpr] = ACTIONS(7933), + [anon_sym_volatile] = ACTIONS(7933), + [anon_sym_restrict] = ACTIONS(7933), + [anon_sym___restrict__] = ACTIONS(7933), + [anon_sym__Atomic] = ACTIONS(7933), + [anon_sym__Noreturn] = ACTIONS(7933), + [anon_sym_noreturn] = ACTIONS(7933), + [anon_sym__Nonnull] = ACTIONS(7933), + [anon_sym_mutable] = ACTIONS(7933), + [anon_sym_constinit] = ACTIONS(7933), + [anon_sym_consteval] = ACTIONS(7933), + [anon_sym_alignas] = ACTIONS(7936), + [anon_sym__Alignas] = ACTIONS(7936), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7047), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_GT2] = ACTIONS(7049), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), }, - [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), + [STATE(2358)] = { + [sym_function_definition] = STATE(435), + [sym_declaration] = STATE(435), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7220), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3131), + [sym_declaration_list] = STATE(435), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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_LBRACE] = ACTIONS(7939), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -338975,312 +352293,67 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(2359)] = { + [sym_function_definition] = STATE(1045), + [sym_declaration] = STATE(1045), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7235), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3077), + [sym_declaration_list] = STATE(1045), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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_LBRACE] = ACTIONS(7941), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -339307,644 +352380,154 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(2360)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4157), + [sym_ms_pointer_modifier] = STATE(3775), + [sym__abstract_declarator] = STATE(7646), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(2823), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2460), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9608), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2823), + [aux_sym_pointer_declarator_repeat1] = STATE(3775), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7925), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7927), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7929), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7931), + [sym_ms_restrict_modifier] = ACTIONS(7511), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7511), + [sym_ms_signed_ptr_modifier] = ACTIONS(7511), + [anon_sym__unaligned] = ACTIONS(7513), + [anon_sym___unaligned] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(5968), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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(2361)] = { + [sym_function_definition] = STATE(870), + [sym_declaration] = STATE(870), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7227), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3128), + [sym_declaration_list] = STATE(870), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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_LBRACE] = ACTIONS(7943), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -339971,63 +352554,414 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(2362)] = { + [sym__abstract_declarator] = STATE(6890), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2350), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2289), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9544), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2350), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(7137), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(7139), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym_SEMI] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(7141), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6604), + [anon_sym_RBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6604), + }, + [STATE(2363)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [aux_sym_preproc_if_token2] = ACTIONS(3108), + [aux_sym_preproc_else_token1] = ACTIONS(3108), + [aux_sym_preproc_elif_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(3108), + }, + [STATE(2364)] = { + [sym_type_qualifier] = STATE(2364), + [sym_alignas_qualifier] = STATE(2452), + [aux_sym__type_definition_type_repeat1] = STATE(2364), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(7945), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_RBRACK] = ACTIONS(7049), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(7945), + [anon_sym_constexpr] = ACTIONS(7945), + [anon_sym_volatile] = ACTIONS(7945), + [anon_sym_restrict] = ACTIONS(7945), + [anon_sym___restrict__] = ACTIONS(7945), + [anon_sym__Atomic] = ACTIONS(7945), + [anon_sym__Noreturn] = ACTIONS(7945), + [anon_sym_noreturn] = ACTIONS(7945), + [anon_sym__Nonnull] = ACTIONS(7945), + [anon_sym_mutable] = ACTIONS(7945), + [anon_sym_constinit] = ACTIONS(7945), + [anon_sym_consteval] = ACTIONS(7945), + [anon_sym_alignas] = ACTIONS(7948), + [anon_sym__Alignas] = ACTIONS(7948), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), + }, + [STATE(2365)] = { + [sym__abstract_declarator] = STATE(6870), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2289), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9544), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7137), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7139), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(7141), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5968), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5968), + }, + [STATE(2366)] = { + [sym_function_definition] = STATE(3553), + [sym_declaration] = STATE(3553), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7200), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3135), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12586), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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), @@ -340054,63 +352988,324 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7953), + [anon_sym_struct] = ACTIONS(7955), + [anon_sym_union] = ACTIONS(7957), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(2367)] = { + [sym_attribute_specifier] = STATE(2657), + [sym_attribute_declaration] = STATE(5058), + [sym_type_qualifier] = STATE(2539), + [sym_alignas_qualifier] = STATE(2762), + [aux_sym_type_definition_repeat1] = STATE(2657), + [aux_sym__type_definition_type_repeat1] = STATE(2539), + [aux_sym_attributed_declarator_repeat1] = STATE(5058), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7057), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(6908), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(6916), + [anon_sym_constexpr] = ACTIONS(6908), + [anon_sym_volatile] = ACTIONS(6908), + [anon_sym_restrict] = ACTIONS(6908), + [anon_sym___restrict__] = ACTIONS(6908), + [anon_sym__Atomic] = ACTIONS(6908), + [anon_sym__Noreturn] = ACTIONS(6908), + [anon_sym_noreturn] = ACTIONS(6908), + [anon_sym__Nonnull] = ACTIONS(6908), + [anon_sym_mutable] = ACTIONS(6908), + [anon_sym_constinit] = ACTIONS(6908), + [anon_sym_consteval] = ACTIONS(6908), + [anon_sym_alignas] = ACTIONS(6918), + [anon_sym__Alignas] = ACTIONS(6918), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7057), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7059), + [anon_sym_or_eq] = ACTIONS(7059), + [anon_sym_xor_eq] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_GT2] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + }, + [STATE(2368)] = { + [sym__abstract_declarator] = STATE(6876), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2386), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2269), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9638), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2386), + [sym_identifier] = ACTIONS(5966), + [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(6610), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6608), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2369)] = { + [sym_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_RPAREN] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_TILDE] = ACTIONS(7568), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_STAR] = ACTIONS(7568), + [anon_sym_SLASH] = ACTIONS(7566), + [anon_sym_PERCENT] = ACTIONS(7568), + [anon_sym_PIPE_PIPE] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7566), + [anon_sym_CARET] = ACTIONS(7568), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_EQ_EQ] = ACTIONS(7568), + [anon_sym_BANG_EQ] = ACTIONS(7568), + [anon_sym_GT] = ACTIONS(7566), + [anon_sym_GT_EQ] = ACTIONS(7568), + [anon_sym_LT_EQ] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7566), + [anon_sym_LT_LT] = ACTIONS(7568), + [anon_sym_GT_GT] = ACTIONS(7568), + [anon_sym_SEMI] = ACTIONS(7568), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym_virtual] = ACTIONS(7566), + [anon_sym_extern] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7568), + [anon_sym___declspec] = ACTIONS(7566), + [anon_sym___based] = ACTIONS(7566), + [anon_sym___cdecl] = ACTIONS(7566), + [anon_sym___clrcall] = ACTIONS(7566), + [anon_sym___stdcall] = ACTIONS(7566), + [anon_sym___fastcall] = ACTIONS(7566), + [anon_sym___thiscall] = ACTIONS(7566), + [anon_sym___vectorcall] = ACTIONS(7566), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_RBRACE] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(7566), + [anon_sym_static] = ACTIONS(7566), + [anon_sym_EQ] = ACTIONS(7566), + [anon_sym_register] = ACTIONS(7566), + [anon_sym_inline] = ACTIONS(7566), + [anon_sym___inline] = ACTIONS(7566), + [anon_sym___inline__] = ACTIONS(7566), + [anon_sym___forceinline] = ACTIONS(7566), + [anon_sym_thread_local] = ACTIONS(7566), + [anon_sym___thread] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_mutable] = ACTIONS(7566), + [anon_sym_constinit] = ACTIONS(7566), + [anon_sym_consteval] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(7568), + [anon_sym_LT_EQ_GT] = ACTIONS(7568), + [anon_sym_or] = ACTIONS(7566), + [anon_sym_and] = ACTIONS(7566), + [anon_sym_bitor] = ACTIONS(7566), + [anon_sym_xor] = ACTIONS(7566), + [anon_sym_bitand] = ACTIONS(7566), + [anon_sym_not_eq] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(7568), + [anon_sym_PLUS_PLUS] = ACTIONS(7568), + [anon_sym_DOT] = ACTIONS(7566), + [anon_sym_DOT_STAR] = ACTIONS(7568), + [anon_sym_DASH_GT] = ACTIONS(7568), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7566), + [anon_sym_template] = ACTIONS(7566), + [anon_sym_operator] = ACTIONS(7566), + [anon_sym_LBRACK_COLON] = ACTIONS(7568), + }, + [STATE(2370)] = { + [sym_function_definition] = STATE(3735), + [sym_declaration] = STATE(3735), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7200), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3135), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12508), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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), @@ -340137,146 +353332,324 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7959), + [anon_sym_struct] = ACTIONS(7961), + [anon_sym_union] = ACTIONS(7963), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(2371)] = { + [sym__abstract_declarator] = STATE(6871), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2269), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9638), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [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(6618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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(2372)] = { + [sym_type_qualifier] = STATE(2231), + [sym_alignas_qualifier] = STATE(2363), + [aux_sym__type_definition_type_repeat1] = STATE(2231), + [aux_sym_sized_type_specifier_repeat1] = STATE(4233), + [sym_identifier] = ACTIONS(7965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_RPAREN] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7023), + [anon_sym___extension__] = ACTIONS(7967), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON] = ACTIONS(7025), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7023), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_RBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(7969), + [anon_sym_unsigned] = ACTIONS(7969), + [anon_sym_long] = ACTIONS(7969), + [anon_sym_short] = ACTIONS(7969), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(7967), + [anon_sym_constexpr] = ACTIONS(7967), + [anon_sym_volatile] = ACTIONS(7967), + [anon_sym_restrict] = ACTIONS(7967), + [anon_sym___restrict__] = ACTIONS(7967), + [anon_sym__Atomic] = ACTIONS(7967), + [anon_sym__Noreturn] = ACTIONS(7967), + [anon_sym_noreturn] = ACTIONS(7967), + [anon_sym__Nonnull] = ACTIONS(7967), + [anon_sym_mutable] = ACTIONS(7967), + [anon_sym_constinit] = ACTIONS(7967), + [anon_sym_consteval] = ACTIONS(7967), + [anon_sym_alignas] = ACTIONS(7971), + [anon_sym__Alignas] = ACTIONS(7971), + [sym_primitive_type] = ACTIONS(7973), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7023), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_and_eq] = ACTIONS(7025), + [anon_sym_or_eq] = ACTIONS(7025), + [anon_sym_xor_eq] = ACTIONS(7025), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7023), + }, + [STATE(2373)] = { + [sym__abstract_declarator] = STATE(6902), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2371), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2269), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9638), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2371), + [sym_identifier] = ACTIONS(5966), + [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(6606), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6604), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2374)] = { + [sym_function_definition] = STATE(903), + [sym_declaration] = STATE(903), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7235), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3077), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12288), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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), @@ -340303,562 +353676,238 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7975), + [anon_sym_struct] = ACTIONS(7977), + [anon_sym_union] = ACTIONS(7979), + [anon_sym_typename] = ACTIONS(5192), [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(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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(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), - [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), - }, - [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), - [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(2375)] = { + [sym_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(2427), + [sym_identifier] = ACTIONS(7129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [anon_sym_RPAREN] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7129), + [anon_sym_SLASH] = ACTIONS(7129), + [anon_sym_PERCENT] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7129), + [anon_sym_CARET] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_EQ_EQ] = ACTIONS(7131), + [anon_sym_BANG_EQ] = ACTIONS(7131), + [anon_sym_GT] = ACTIONS(7129), + [anon_sym_GT_EQ] = ACTIONS(7131), + [anon_sym_LT_EQ] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(7129), + [anon_sym_LT_LT] = ACTIONS(7129), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym___extension__] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7129), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(7157), + [anon_sym_unsigned] = ACTIONS(7157), + [anon_sym_long] = ACTIONS(7157), + [anon_sym_short] = ACTIONS(7157), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_EQ] = ACTIONS(7129), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_restrict] = ACTIONS(7129), + [anon_sym___restrict__] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [anon_sym__Noreturn] = ACTIONS(7129), + [anon_sym_noreturn] = ACTIONS(7129), + [anon_sym__Nonnull] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [anon_sym_constinit] = ACTIONS(7129), + [anon_sym_consteval] = ACTIONS(7129), + [anon_sym_alignas] = ACTIONS(7129), + [anon_sym__Alignas] = ACTIONS(7129), + [anon_sym_QMARK] = ACTIONS(7131), + [anon_sym_STAR_EQ] = ACTIONS(7131), + [anon_sym_SLASH_EQ] = ACTIONS(7131), + [anon_sym_PERCENT_EQ] = ACTIONS(7131), + [anon_sym_PLUS_EQ] = ACTIONS(7131), + [anon_sym_DASH_EQ] = ACTIONS(7131), + [anon_sym_LT_LT_EQ] = ACTIONS(7131), + [anon_sym_GT_GT_EQ] = ACTIONS(7131), + [anon_sym_AMP_EQ] = ACTIONS(7131), + [anon_sym_CARET_EQ] = ACTIONS(7131), + [anon_sym_PIPE_EQ] = ACTIONS(7131), + [anon_sym_and_eq] = ACTIONS(7129), + [anon_sym_or_eq] = ACTIONS(7129), + [anon_sym_xor_eq] = ACTIONS(7129), + [anon_sym_LT_EQ_GT] = ACTIONS(7131), + [anon_sym_or] = ACTIONS(7129), + [anon_sym_and] = ACTIONS(7129), + [anon_sym_bitor] = ACTIONS(7129), + [anon_sym_xor] = ACTIONS(7129), + [anon_sym_bitand] = ACTIONS(7129), + [anon_sym_not_eq] = ACTIONS(7129), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DOT] = ACTIONS(7129), + [anon_sym_DOT_STAR] = ACTIONS(7131), + [anon_sym_DASH_GT] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7129), + [anon_sym_final] = ACTIONS(7129), + [anon_sym_override] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_requires] = ACTIONS(7129), + [anon_sym_DASH_GT_STAR] = ACTIONS(7131), + [anon_sym_LBRACK_COLON] = ACTIONS(7131), }, - [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), + [STATE(2376)] = { + [sym_attribute_specifier] = STATE(2595), + [sym_attribute_declaration] = STATE(5070), + [sym_type_qualifier] = STATE(2557), + [sym_alignas_qualifier] = STATE(2780), + [aux_sym_type_definition_repeat1] = STATE(2595), + [aux_sym__type_definition_type_repeat1] = STATE(2557), + [aux_sym_attributed_declarator_repeat1] = STATE(5070), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(6995), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_RBRACK] = ACTIONS(7059), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7003), + [anon_sym_constexpr] = ACTIONS(6995), + [anon_sym_volatile] = ACTIONS(6995), + [anon_sym_restrict] = ACTIONS(6995), + [anon_sym___restrict__] = ACTIONS(6995), + [anon_sym__Atomic] = ACTIONS(6995), + [anon_sym__Noreturn] = ACTIONS(6995), + [anon_sym_noreturn] = ACTIONS(6995), + [anon_sym__Nonnull] = ACTIONS(6995), + [anon_sym_mutable] = ACTIONS(6995), + [anon_sym_constinit] = ACTIONS(6995), + [anon_sym_consteval] = ACTIONS(6995), + [anon_sym_alignas] = ACTIONS(7005), + [anon_sym__Alignas] = ACTIONS(7005), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7059), + [anon_sym_or_eq] = ACTIONS(7059), + [anon_sym_xor_eq] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), }, - [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(2377)] = { + [sym_function_definition] = STATE(440), + [sym_declaration] = STATE(440), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7220), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3131), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(13047), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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), @@ -340885,62 +353934,152 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7981), + [anon_sym_struct] = ACTIONS(7983), + [anon_sym_union] = ACTIONS(7985), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(2378)] = { + [sym_template_argument_list] = STATE(2125), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7454), + [anon_sym_COMMA] = ACTIONS(7454), + [anon_sym_RPAREN] = ACTIONS(7454), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_TILDE] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7449), + [anon_sym_PLUS] = ACTIONS(7449), + [anon_sym_STAR] = ACTIONS(7444), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7454), + [anon_sym_PIPE_PIPE] = ACTIONS(7454), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7449), + [anon_sym_CARET] = ACTIONS(7454), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7454), + [anon_sym_BANG_EQ] = ACTIONS(7454), + [anon_sym_GT] = ACTIONS(7449), + [anon_sym_GT_EQ] = ACTIONS(7454), + [anon_sym_LT_EQ] = ACTIONS(7449), + [anon_sym_LT] = ACTIONS(7987), + [anon_sym_LT_LT] = ACTIONS(7454), + [anon_sym_GT_GT] = ACTIONS(7454), + [anon_sym_SEMI] = ACTIONS(7454), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_virtual] = ACTIONS(7442), + [anon_sym_extern] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7447), + [anon_sym___declspec] = ACTIONS(7442), + [anon_sym___based] = ACTIONS(7442), + [anon_sym___cdecl] = ACTIONS(7442), + [anon_sym___clrcall] = ACTIONS(7442), + [anon_sym___stdcall] = ACTIONS(7442), + [anon_sym___fastcall] = ACTIONS(7442), + [anon_sym___thiscall] = ACTIONS(7442), + [anon_sym___vectorcall] = ACTIONS(7442), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7454), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_static] = ACTIONS(7442), + [anon_sym_register] = ACTIONS(7442), + [anon_sym_inline] = ACTIONS(7442), + [anon_sym___inline] = ACTIONS(7442), + [anon_sym___inline__] = ACTIONS(7442), + [anon_sym___forceinline] = ACTIONS(7442), + [anon_sym_thread_local] = ACTIONS(7442), + [anon_sym___thread] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7454), + [anon_sym_LT_EQ_GT] = ACTIONS(7454), + [anon_sym_or] = ACTIONS(7449), + [anon_sym_and] = ACTIONS(7449), + [anon_sym_bitor] = ACTIONS(7449), + [anon_sym_xor] = ACTIONS(7449), + [anon_sym_bitand] = ACTIONS(7449), + [anon_sym_not_eq] = ACTIONS(7449), + [anon_sym_DASH_DASH] = ACTIONS(7454), + [anon_sym_PLUS_PLUS] = ACTIONS(7454), + [anon_sym_DOT] = ACTIONS(7449), + [anon_sym_DOT_STAR] = ACTIONS(7454), + [anon_sym_DASH_GT] = ACTIONS(7454), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_operator] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + }, + [STATE(2379)] = { + [sym_function_definition] = STATE(3227), + [sym_declaration] = STATE(3227), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7218), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3134), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12240), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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), @@ -340967,395 +354106,238 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7989), + [anon_sym_struct] = ACTIONS(7991), + [anon_sym_union] = ACTIONS(7993), + [anon_sym_typename] = ACTIONS(5192), [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(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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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(2317)] = { - [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), - [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), + [STATE(2380)] = { + [sym__abstract_declarator] = STATE(6884), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2269), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9638), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [aux_sym_preproc_if_token2] = ACTIONS(5968), + [aux_sym_preproc_else_token1] = ACTIONS(5968), + [aux_sym_preproc_elif_token1] = ACTIONS(5970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5968), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [STATE(2318)] = { - [sym_attribute_specifier] = STATE(2200), - [sym_enumerator_list] = STATE(2136), - [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), - [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), + [STATE(2381)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2393), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON_COLON] = ACTIONS(7186), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(7995), + [anon_sym_unsigned] = ACTIONS(7995), + [anon_sym_long] = ACTIONS(7995), + [anon_sym_short] = ACTIONS(7995), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7183), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7186), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7183), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_template] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_DASH_GT_STAR] = ACTIONS(7186), + [anon_sym_LBRACK_COLON] = ACTIONS(7186), }, - [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(2382)] = { + [sym_function_definition] = STATE(3272), + [sym_declaration] = STATE(3272), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7218), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3134), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12033), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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), @@ -341382,395 +354364,66 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7998), + [anon_sym_struct] = ACTIONS(8000), + [anon_sym_union] = ACTIONS(8002), + [anon_sym_typename] = ACTIONS(5192), [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(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(2383)] = { + [sym_function_definition] = STATE(431), + [sym_declaration] = STATE(431), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7220), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3131), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12170), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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), @@ -341797,3178 +354450,66 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(8004), + [anon_sym_struct] = ACTIONS(8006), + [anon_sym_union] = ACTIONS(8008), + [anon_sym_typename] = ACTIONS(5192), [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), - }, - [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(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(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), - [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_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), - [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), - }, - [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), - [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(7138), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7142), - [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_final] = ACTIONS(7345), - [anon_sym_override] = ACTIONS(7345), - [anon_sym_GT2] = ACTIONS(7345), - [anon_sym_requires] = 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(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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - }, - [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), - [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_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), - }, - [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(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(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(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), - [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), - }, - [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), - [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(6971), - [anon_sym_unsigned] = ACTIONS(6971), - [anon_sym_long] = ACTIONS(6971), - [anon_sym_short] = ACTIONS(6971), - [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(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(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), - [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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(2384)] = { + [sym_function_definition] = STATE(746), + [sym_declaration] = STATE(746), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7241), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3132), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12099), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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), @@ -344995,3126 +354536,66 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(8010), + [anon_sym_struct] = ACTIONS(8012), + [anon_sym_union] = ACTIONS(8014), + [anon_sym_typename] = ACTIONS(5192), [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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [STATE(2372)] = { - [sym_template_argument_list] = STATE(3735), - [aux_sym_sized_type_specifier_repeat1] = STATE(2476), - [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(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(7357), - [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(7032), - [anon_sym_unsigned] = ACTIONS(7032), - [anon_sym_long] = ACTIONS(7032), - [anon_sym_short] = ACTIONS(7032), - [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(7357), - [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_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), - }, - [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), - }, - [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), - [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(7162), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7164), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7166), - [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_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), - [sym_comment] = ACTIONS(3), - }, - [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_requires] = ACTIONS(7528), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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_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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [sym_function_definition] = STATE(3554), + [sym_declaration] = STATE(3554), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7211), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3133), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12410), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(1856), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), + [anon_sym_COLON_COLON] = ACTIONS(5190), [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), @@ -348141,3952 +354622,5654 @@ 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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(8016), + [anon_sym_struct] = ACTIONS(8018), + [anon_sym_union] = ACTIONS(8020), + [anon_sym_typename] = ACTIONS(5192), [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(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), - }, - [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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(2386)] = { + [sym__abstract_declarator] = STATE(6869), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2269), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9638), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [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(6614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2387)] = { + [sym_function_definition] = STATE(907), + [sym_declaration] = STATE(907), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7235), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3077), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12888), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(8022), + [anon_sym_struct] = ACTIONS(8024), + [anon_sym_union] = ACTIONS(8026), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(2388)] = { + [sym_function_definition] = STATE(855), + [sym_declaration] = STATE(855), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7227), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3128), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12401), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(8028), + [anon_sym_struct] = ACTIONS(8030), + [anon_sym_union] = ACTIONS(8032), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(2389)] = { + [sym_type_qualifier] = STATE(2391), + [sym_alignas_qualifier] = STATE(2549), + [aux_sym__type_definition_type_repeat1] = STATE(2391), + [aux_sym_sized_type_specifier_repeat1] = STATE(2503), + [sym_identifier] = ACTIONS(8034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(8037), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON_COLON] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(8040), + [anon_sym_unsigned] = ACTIONS(8040), + [anon_sym_long] = ACTIONS(8040), + [anon_sym_short] = ACTIONS(8040), + [anon_sym_LBRACK] = ACTIONS(6936), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(8037), + [anon_sym_constexpr] = ACTIONS(8037), + [anon_sym_volatile] = ACTIONS(8037), + [anon_sym_restrict] = ACTIONS(8037), + [anon_sym___restrict__] = ACTIONS(8037), + [anon_sym__Atomic] = ACTIONS(8037), + [anon_sym__Noreturn] = ACTIONS(8037), + [anon_sym_noreturn] = ACTIONS(8037), + [anon_sym__Nonnull] = ACTIONS(8037), + [anon_sym_mutable] = ACTIONS(8037), + [anon_sym_constinit] = ACTIONS(8037), + [anon_sym_consteval] = ACTIONS(8037), + [anon_sym_alignas] = ACTIONS(8042), + [anon_sym__Alignas] = ACTIONS(8042), + [sym_primitive_type] = ACTIONS(8045), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6934), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6936), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6936), + [anon_sym_final] = ACTIONS(6936), + [anon_sym_override] = ACTIONS(6936), + [anon_sym_template] = ACTIONS(6936), + [anon_sym_requires] = ACTIONS(6936), + [anon_sym_DASH_GT_STAR] = ACTIONS(6934), + [anon_sym_LBRACK_COLON] = ACTIONS(6934), + }, + [STATE(2390)] = { + [sym_type_qualifier] = STATE(2372), + [sym_alignas_qualifier] = STATE(2363), + [aux_sym__type_definition_type_repeat1] = STATE(2372), + [aux_sym_sized_type_specifier_repeat1] = STATE(2500), + [sym_identifier] = ACTIONS(8047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym_SEMI] = ACTIONS(6934), + [anon_sym___extension__] = ACTIONS(7967), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON] = ACTIONS(6936), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_RBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(8049), + [anon_sym_unsigned] = ACTIONS(8049), + [anon_sym_long] = ACTIONS(8049), + [anon_sym_short] = ACTIONS(8049), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(7967), + [anon_sym_constexpr] = ACTIONS(7967), + [anon_sym_volatile] = ACTIONS(7967), + [anon_sym_restrict] = ACTIONS(7967), + [anon_sym___restrict__] = ACTIONS(7967), + [anon_sym__Atomic] = ACTIONS(7967), + [anon_sym__Noreturn] = ACTIONS(7967), + [anon_sym_noreturn] = ACTIONS(7967), + [anon_sym__Nonnull] = ACTIONS(7967), + [anon_sym_mutable] = ACTIONS(7967), + [anon_sym_constinit] = ACTIONS(7967), + [anon_sym_consteval] = ACTIONS(7967), + [anon_sym_alignas] = ACTIONS(7971), + [anon_sym__Alignas] = ACTIONS(7971), + [sym_primitive_type] = ACTIONS(8051), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6934), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_and_eq] = ACTIONS(6936), + [anon_sym_or_eq] = ACTIONS(6936), + [anon_sym_xor_eq] = ACTIONS(6936), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6934), + }, + [STATE(2391)] = { + [sym_type_qualifier] = STATE(2418), + [sym_alignas_qualifier] = STATE(2549), + [aux_sym__type_definition_type_repeat1] = STATE(2418), + [aux_sym_sized_type_specifier_repeat1] = STATE(2529), + [sym_identifier] = ACTIONS(8053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_RPAREN] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym___extension__] = ACTIONS(8056), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON_COLON] = ACTIONS(7023), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(8059), + [anon_sym_unsigned] = ACTIONS(8059), + [anon_sym_long] = ACTIONS(8059), + [anon_sym_short] = ACTIONS(8059), + [anon_sym_LBRACK] = ACTIONS(7025), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(8056), + [anon_sym_constexpr] = ACTIONS(8056), + [anon_sym_volatile] = ACTIONS(8056), + [anon_sym_restrict] = ACTIONS(8056), + [anon_sym___restrict__] = ACTIONS(8056), + [anon_sym__Atomic] = ACTIONS(8056), + [anon_sym__Noreturn] = ACTIONS(8056), + [anon_sym_noreturn] = ACTIONS(8056), + [anon_sym__Nonnull] = ACTIONS(8056), + [anon_sym_mutable] = ACTIONS(8056), + [anon_sym_constinit] = ACTIONS(8056), + [anon_sym_consteval] = ACTIONS(8056), + [anon_sym_alignas] = ACTIONS(8061), + [anon_sym__Alignas] = ACTIONS(8061), + [sym_primitive_type] = ACTIONS(8064), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7023), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7025), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7025), + [anon_sym_final] = ACTIONS(7025), + [anon_sym_override] = ACTIONS(7025), + [anon_sym_template] = ACTIONS(7025), + [anon_sym_requires] = ACTIONS(7025), + [anon_sym_DASH_GT_STAR] = ACTIONS(7023), + [anon_sym_LBRACK_COLON] = ACTIONS(7023), + }, + [STATE(2392)] = { + [sym_function_definition] = STATE(847), + [sym_declaration] = STATE(847), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7227), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3128), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12047), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(8066), + [anon_sym_struct] = ACTIONS(8068), + [anon_sym_union] = ACTIONS(8070), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(2393)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2393), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(7995), + [anon_sym_unsigned] = ACTIONS(7995), + [anon_sym_long] = ACTIONS(7995), + [anon_sym_short] = ACTIONS(7995), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7173), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_DASH_GT_STAR] = ACTIONS(7175), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), + }, + [STATE(2394)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6817), + [anon_sym_COMMA] = ACTIONS(6817), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_TILDE] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6817), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6817), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6817), + [anon_sym_GT_GT] = ACTIONS(6817), + [anon_sym_SEMI] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_virtual] = ACTIONS(6815), + [anon_sym_extern] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6819), + [anon_sym___declspec] = ACTIONS(6815), + [anon_sym___based] = ACTIONS(6815), + [anon_sym___cdecl] = ACTIONS(6815), + [anon_sym___clrcall] = ACTIONS(6815), + [anon_sym___stdcall] = ACTIONS(6815), + [anon_sym___fastcall] = ACTIONS(6815), + [anon_sym___thiscall] = ACTIONS(6815), + [anon_sym___vectorcall] = ACTIONS(6815), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6817), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_static] = ACTIONS(6815), + [anon_sym_RBRACK] = ACTIONS(6817), + [anon_sym_register] = ACTIONS(6815), + [anon_sym_inline] = ACTIONS(6815), + [anon_sym___inline] = ACTIONS(6815), + [anon_sym___inline__] = ACTIONS(6815), + [anon_sym___forceinline] = ACTIONS(6815), + [anon_sym_thread_local] = ACTIONS(6815), + [anon_sym___thread] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(2395)] = { + [sym__abstract_declarator] = STATE(6892), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2269), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9638), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [aux_sym_preproc_if_token2] = ACTIONS(6600), + [aux_sym_preproc_else_token1] = ACTIONS(6600), + [aux_sym_preproc_elif_token1] = ACTIONS(6602), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2396)] = { + [sym_function_definition] = STATE(3665), + [sym_declaration] = STATE(3665), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7211), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3133), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12060), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(8072), + [anon_sym_struct] = ACTIONS(8074), + [anon_sym_union] = ACTIONS(8076), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(2397)] = { + [sym_template_argument_list] = STATE(2125), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7454), + [anon_sym_COMMA] = ACTIONS(7454), + [anon_sym_RPAREN] = ACTIONS(7454), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_TILDE] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7449), + [anon_sym_PLUS] = ACTIONS(7449), + [anon_sym_STAR] = ACTIONS(7444), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7454), + [anon_sym_PIPE_PIPE] = ACTIONS(7454), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7449), + [anon_sym_CARET] = ACTIONS(7454), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7454), + [anon_sym_BANG_EQ] = ACTIONS(7454), + [anon_sym_GT] = ACTIONS(7449), + [anon_sym_GT_EQ] = ACTIONS(7454), + [anon_sym_LT_EQ] = ACTIONS(7449), + [anon_sym_LT] = ACTIONS(7987), + [anon_sym_LT_LT] = ACTIONS(7454), + [anon_sym_GT_GT] = ACTIONS(7454), + [anon_sym_SEMI] = ACTIONS(7444), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_virtual] = ACTIONS(7442), + [anon_sym_extern] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7447), + [anon_sym___declspec] = ACTIONS(7442), + [anon_sym___based] = ACTIONS(7442), + [anon_sym___cdecl] = ACTIONS(7442), + [anon_sym___clrcall] = ACTIONS(7442), + [anon_sym___stdcall] = ACTIONS(7442), + [anon_sym___fastcall] = ACTIONS(7442), + [anon_sym___thiscall] = ACTIONS(7442), + [anon_sym___vectorcall] = ACTIONS(7442), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7454), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_static] = ACTIONS(7442), + [anon_sym_register] = ACTIONS(7442), + [anon_sym_inline] = ACTIONS(7442), + [anon_sym___inline] = ACTIONS(7442), + [anon_sym___inline__] = ACTIONS(7442), + [anon_sym___forceinline] = ACTIONS(7442), + [anon_sym_thread_local] = ACTIONS(7442), + [anon_sym___thread] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7454), + [anon_sym_LT_EQ_GT] = ACTIONS(7454), + [anon_sym_or] = ACTIONS(7449), + [anon_sym_and] = ACTIONS(7449), + [anon_sym_bitor] = ACTIONS(7449), + [anon_sym_xor] = ACTIONS(7449), + [anon_sym_bitand] = ACTIONS(7449), + [anon_sym_not_eq] = ACTIONS(7449), + [anon_sym_DASH_DASH] = ACTIONS(7454), + [anon_sym_PLUS_PLUS] = ACTIONS(7454), + [anon_sym_DOT] = ACTIONS(7449), + [anon_sym_DOT_STAR] = ACTIONS(7454), + [anon_sym_DASH_GT] = ACTIONS(7454), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_operator] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + }, + [STATE(2398)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6817), + [anon_sym_COMMA] = ACTIONS(6817), + [anon_sym_RPAREN] = ACTIONS(6817), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_TILDE] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6817), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6817), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6817), + [anon_sym_GT_GT] = ACTIONS(6817), + [anon_sym_SEMI] = ACTIONS(6817), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_virtual] = ACTIONS(6815), + [anon_sym_extern] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6822), + [anon_sym___declspec] = ACTIONS(6815), + [anon_sym___based] = ACTIONS(6815), + [anon_sym___cdecl] = ACTIONS(6815), + [anon_sym___clrcall] = ACTIONS(6815), + [anon_sym___stdcall] = ACTIONS(6815), + [anon_sym___fastcall] = ACTIONS(6815), + [anon_sym___thiscall] = ACTIONS(6815), + [anon_sym___vectorcall] = ACTIONS(6815), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6817), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_static] = ACTIONS(6815), + [anon_sym_register] = ACTIONS(6815), + [anon_sym_inline] = ACTIONS(6815), + [anon_sym___inline] = ACTIONS(6815), + [anon_sym___inline__] = ACTIONS(6815), + [anon_sym___forceinline] = ACTIONS(6815), + [anon_sym_thread_local] = ACTIONS(6815), + [anon_sym___thread] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(2399)] = { + [sym_function_definition] = STATE(803), + [sym_declaration] = STATE(803), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7241), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_ms_call_modifier] = STATE(3132), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym__class_name] = STATE(12031), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(6246), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(6247), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(6701), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(7951), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(8078), + [anon_sym_struct] = ACTIONS(8080), + [anon_sym_union] = ACTIONS(8082), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(2400)] = { + [sym__abstract_declarator] = STATE(4337), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_parameter_list] = STATE(1521), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9606), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_RPAREN] = ACTIONS(7862), + [aux_sym_preproc_if_token2] = ACTIONS(7862), + [aux_sym_preproc_else_token1] = ACTIONS(7862), + [aux_sym_preproc_elif_token1] = ACTIONS(7864), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7862), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6104), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_SEMI] = ACTIONS(7862), + [anon_sym_COLON] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6106), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7862), + [anon_sym_RBRACE] = ACTIONS(7862), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7862), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_and_eq] = ACTIONS(7864), + [anon_sym_or_eq] = ACTIONS(7864), + [anon_sym_xor_eq] = ACTIONS(7864), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7862), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(7862), + }, + [STATE(2401)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7275), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7275), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7275), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7275), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON_COLON] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_signed] = ACTIONS(8084), + [anon_sym_unsigned] = ACTIONS(8084), + [anon_sym_long] = ACTIONS(8084), + [anon_sym_short] = ACTIONS(8084), + [anon_sym_LBRACK] = ACTIONS(7275), + [anon_sym_EQ] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7277), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_and_eq] = ACTIONS(7275), + [anon_sym_or_eq] = ACTIONS(7275), + [anon_sym_xor_eq] = ACTIONS(7275), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7275), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7275), + [anon_sym_not_eq] = ACTIONS(7275), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7275), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7275), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_template] = ACTIONS(7275), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_DASH_GT_STAR] = ACTIONS(7277), + [anon_sym_LBRACK_COLON] = ACTIONS(7277), + }, + [STATE(2402)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_RPAREN] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7279), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7279), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7279), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7279), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON_COLON] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_signed] = ACTIONS(8084), + [anon_sym_unsigned] = ACTIONS(8084), + [anon_sym_long] = ACTIONS(8084), + [anon_sym_short] = ACTIONS(8084), + [anon_sym_LBRACK] = ACTIONS(7279), + [anon_sym_EQ] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_STAR_EQ] = ACTIONS(7281), + [anon_sym_SLASH_EQ] = ACTIONS(7281), + [anon_sym_PERCENT_EQ] = ACTIONS(7281), + [anon_sym_PLUS_EQ] = ACTIONS(7281), + [anon_sym_DASH_EQ] = ACTIONS(7281), + [anon_sym_LT_LT_EQ] = ACTIONS(7281), + [anon_sym_GT_GT_EQ] = ACTIONS(7281), + [anon_sym_AMP_EQ] = ACTIONS(7281), + [anon_sym_CARET_EQ] = ACTIONS(7281), + [anon_sym_PIPE_EQ] = ACTIONS(7281), + [anon_sym_and_eq] = ACTIONS(7279), + [anon_sym_or_eq] = ACTIONS(7279), + [anon_sym_xor_eq] = ACTIONS(7279), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7279), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7279), + [anon_sym_not_eq] = ACTIONS(7279), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7279), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7279), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_template] = ACTIONS(7279), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_DASH_GT_STAR] = ACTIONS(7281), + [anon_sym_LBRACK_COLON] = ACTIONS(7281), + }, + [STATE(2403)] = { + [sym_attribute_specifier] = STATE(2969), + [sym_field_declaration_list] = STATE(2715), + [sym_virtual_specifier] = STATE(10563), + [sym_base_class_clause] = STATE(11444), + [sym_identifier] = ACTIONS(7370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(7372), + [anon_sym_RPAREN] = ACTIONS(7372), + [anon_sym_LPAREN2] = ACTIONS(7372), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_STAR] = ACTIONS(7370), + [anon_sym_SLASH] = ACTIONS(7370), + [anon_sym_PERCENT] = ACTIONS(7370), + [anon_sym_PIPE_PIPE] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7372), + [anon_sym_PIPE] = ACTIONS(7370), + [anon_sym_CARET] = ACTIONS(7370), + [anon_sym_AMP] = ACTIONS(7370), + [anon_sym_EQ_EQ] = ACTIONS(7372), + [anon_sym_BANG_EQ] = ACTIONS(7372), + [anon_sym_GT] = ACTIONS(7370), + [anon_sym_GT_EQ] = ACTIONS(7372), + [anon_sym_LT_EQ] = ACTIONS(7370), + [anon_sym_LT] = ACTIONS(7370), + [anon_sym_LT_LT] = ACTIONS(7370), + [anon_sym_GT_GT] = ACTIONS(7370), + [anon_sym___extension__] = ACTIONS(7370), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7372), + [anon_sym_LBRACE] = ACTIONS(8088), + [anon_sym_LBRACK] = ACTIONS(7370), + [anon_sym_EQ] = ACTIONS(7370), + [anon_sym_const] = ACTIONS(7370), + [anon_sym_constexpr] = ACTIONS(7370), + [anon_sym_volatile] = ACTIONS(7370), + [anon_sym_restrict] = ACTIONS(7370), + [anon_sym___restrict__] = ACTIONS(7370), + [anon_sym__Atomic] = ACTIONS(7370), + [anon_sym__Noreturn] = ACTIONS(7370), + [anon_sym_noreturn] = ACTIONS(7370), + [anon_sym__Nonnull] = ACTIONS(7370), + [anon_sym_mutable] = ACTIONS(7370), + [anon_sym_constinit] = ACTIONS(7370), + [anon_sym_consteval] = ACTIONS(7370), + [anon_sym_alignas] = ACTIONS(7370), + [anon_sym__Alignas] = ACTIONS(7370), + [anon_sym_QMARK] = ACTIONS(7372), + [anon_sym_STAR_EQ] = ACTIONS(7372), + [anon_sym_SLASH_EQ] = ACTIONS(7372), + [anon_sym_PERCENT_EQ] = ACTIONS(7372), + [anon_sym_PLUS_EQ] = ACTIONS(7372), + [anon_sym_DASH_EQ] = ACTIONS(7372), + [anon_sym_LT_LT_EQ] = ACTIONS(7372), + [anon_sym_GT_GT_EQ] = ACTIONS(7372), + [anon_sym_AMP_EQ] = ACTIONS(7372), + [anon_sym_CARET_EQ] = ACTIONS(7372), + [anon_sym_PIPE_EQ] = ACTIONS(7372), + [anon_sym_and_eq] = ACTIONS(7370), + [anon_sym_or_eq] = ACTIONS(7370), + [anon_sym_xor_eq] = ACTIONS(7370), + [anon_sym_LT_EQ_GT] = ACTIONS(7372), + [anon_sym_or] = ACTIONS(7370), + [anon_sym_and] = ACTIONS(7370), + [anon_sym_bitor] = ACTIONS(7370), + [anon_sym_xor] = ACTIONS(7370), + [anon_sym_bitand] = ACTIONS(7370), + [anon_sym_not_eq] = ACTIONS(7370), + [anon_sym_DASH_DASH] = ACTIONS(7372), + [anon_sym_PLUS_PLUS] = ACTIONS(7372), + [anon_sym_DOT] = ACTIONS(7370), + [anon_sym_DOT_STAR] = ACTIONS(7372), + [anon_sym_DASH_GT] = ACTIONS(7370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7370), + [anon_sym_final] = ACTIONS(7380), + [anon_sym_override] = ACTIONS(7380), + [anon_sym_template] = ACTIONS(7370), + [anon_sym_requires] = ACTIONS(7370), + [anon_sym_DASH_GT_STAR] = ACTIONS(7372), + [anon_sym_LBRACK_COLON] = ACTIONS(7372), + }, + [STATE(2404)] = { + [sym_type_qualifier] = STATE(2231), + [sym_alignas_qualifier] = STATE(2363), + [aux_sym__type_definition_type_repeat1] = STATE(2231), + [aux_sym_sized_type_specifier_repeat1] = STATE(4227), + [sym_identifier] = ACTIONS(8090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [aux_sym_preproc_if_token2] = ACTIONS(7023), + [aux_sym_preproc_else_token1] = ACTIONS(7023), + [aux_sym_preproc_elif_token1] = ACTIONS(7025), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym___extension__] = ACTIONS(7967), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(8093), + [anon_sym_unsigned] = ACTIONS(8093), + [anon_sym_long] = ACTIONS(8093), + [anon_sym_short] = ACTIONS(8093), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(7967), + [anon_sym_constexpr] = ACTIONS(7967), + [anon_sym_volatile] = ACTIONS(7967), + [anon_sym_restrict] = ACTIONS(7967), + [anon_sym___restrict__] = ACTIONS(7967), + [anon_sym__Atomic] = ACTIONS(7967), + [anon_sym__Noreturn] = ACTIONS(7967), + [anon_sym_noreturn] = ACTIONS(7967), + [anon_sym__Nonnull] = ACTIONS(7967), + [anon_sym_mutable] = ACTIONS(7967), + [anon_sym_constinit] = ACTIONS(7967), + [anon_sym_consteval] = ACTIONS(7967), + [anon_sym_alignas] = ACTIONS(7971), + [anon_sym__Alignas] = ACTIONS(7971), + [sym_primitive_type] = ACTIONS(8095), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7023), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_and_eq] = ACTIONS(7025), + [anon_sym_or_eq] = ACTIONS(7025), + [anon_sym_xor_eq] = ACTIONS(7025), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + }, + [STATE(2405)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2412), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(8097), + [anon_sym_unsigned] = ACTIONS(8097), + [anon_sym_long] = ACTIONS(8097), + [anon_sym_short] = ACTIONS(8097), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7292), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_and_eq] = ACTIONS(7290), + [anon_sym_or_eq] = ACTIONS(7290), + [anon_sym_xor_eq] = ACTIONS(7290), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_DASH_GT_STAR] = ACTIONS(7292), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), + }, + [STATE(2406)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2410), + [sym_identifier] = ACTIONS(7316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7318), + [anon_sym_RPAREN] = ACTIONS(7318), + [anon_sym_LPAREN2] = ACTIONS(7318), + [anon_sym_DASH] = ACTIONS(7316), + [anon_sym_PLUS] = ACTIONS(7316), + [anon_sym_STAR] = ACTIONS(7316), + [anon_sym_SLASH] = ACTIONS(7316), + [anon_sym_PERCENT] = ACTIONS(7316), + [anon_sym_PIPE_PIPE] = ACTIONS(7318), + [anon_sym_AMP_AMP] = ACTIONS(7318), + [anon_sym_PIPE] = ACTIONS(7316), + [anon_sym_CARET] = ACTIONS(7316), + [anon_sym_AMP] = ACTIONS(7316), + [anon_sym_EQ_EQ] = ACTIONS(7318), + [anon_sym_BANG_EQ] = ACTIONS(7318), + [anon_sym_GT] = ACTIONS(7316), + [anon_sym_GT_EQ] = ACTIONS(7318), + [anon_sym_LT_EQ] = ACTIONS(7316), + [anon_sym_LT] = ACTIONS(7316), + [anon_sym_LT_LT] = ACTIONS(7316), + [anon_sym_GT_GT] = ACTIONS(7316), + [anon_sym___extension__] = ACTIONS(7316), + [anon_sym___attribute__] = ACTIONS(7316), + [anon_sym___attribute] = ACTIONS(7316), + [anon_sym_COLON_COLON] = ACTIONS(7318), + [anon_sym_LBRACE] = ACTIONS(7318), + [anon_sym_signed] = ACTIONS(8099), + [anon_sym_unsigned] = ACTIONS(8099), + [anon_sym_long] = ACTIONS(8099), + [anon_sym_short] = ACTIONS(8099), + [anon_sym_LBRACK] = ACTIONS(7316), + [anon_sym_EQ] = ACTIONS(7316), + [anon_sym_const] = ACTIONS(7316), + [anon_sym_constexpr] = ACTIONS(7316), + [anon_sym_volatile] = ACTIONS(7316), + [anon_sym_restrict] = ACTIONS(7316), + [anon_sym___restrict__] = ACTIONS(7316), + [anon_sym__Atomic] = ACTIONS(7316), + [anon_sym__Noreturn] = ACTIONS(7316), + [anon_sym_noreturn] = ACTIONS(7316), + [anon_sym__Nonnull] = ACTIONS(7316), + [anon_sym_mutable] = ACTIONS(7316), + [anon_sym_constinit] = ACTIONS(7316), + [anon_sym_consteval] = ACTIONS(7316), + [anon_sym_alignas] = ACTIONS(7316), + [anon_sym__Alignas] = ACTIONS(7316), + [anon_sym_QMARK] = ACTIONS(7318), + [anon_sym_STAR_EQ] = ACTIONS(7318), + [anon_sym_SLASH_EQ] = ACTIONS(7318), + [anon_sym_PERCENT_EQ] = ACTIONS(7318), + [anon_sym_PLUS_EQ] = ACTIONS(7318), + [anon_sym_DASH_EQ] = ACTIONS(7318), + [anon_sym_LT_LT_EQ] = ACTIONS(7318), + [anon_sym_GT_GT_EQ] = ACTIONS(7318), + [anon_sym_AMP_EQ] = ACTIONS(7318), + [anon_sym_CARET_EQ] = ACTIONS(7318), + [anon_sym_PIPE_EQ] = ACTIONS(7318), + [anon_sym_and_eq] = ACTIONS(7316), + [anon_sym_or_eq] = ACTIONS(7316), + [anon_sym_xor_eq] = ACTIONS(7316), + [anon_sym_LT_EQ_GT] = ACTIONS(7318), + [anon_sym_or] = ACTIONS(7316), + [anon_sym_and] = ACTIONS(7316), + [anon_sym_bitor] = ACTIONS(7316), + [anon_sym_xor] = ACTIONS(7316), + [anon_sym_bitand] = ACTIONS(7316), + [anon_sym_not_eq] = ACTIONS(7316), + [anon_sym_DASH_DASH] = ACTIONS(7318), + [anon_sym_PLUS_PLUS] = ACTIONS(7318), + [anon_sym_DOT] = ACTIONS(7316), + [anon_sym_DOT_STAR] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(7316), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7316), + [anon_sym_final] = ACTIONS(7316), + [anon_sym_override] = ACTIONS(7316), + [anon_sym_template] = ACTIONS(7316), + [anon_sym_requires] = ACTIONS(7316), + [anon_sym_DASH_GT_STAR] = ACTIONS(7318), + [anon_sym_LBRACK_COLON] = ACTIONS(7318), + }, + [STATE(2407)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_DASH_GT_STAR] = ACTIONS(3108), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), + }, + [STATE(2408)] = { + [sym_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(2429), + [sym_identifier] = ACTIONS(7129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7129), + [anon_sym_SLASH] = ACTIONS(7129), + [anon_sym_PERCENT] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7129), + [anon_sym_CARET] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_EQ_EQ] = ACTIONS(7131), + [anon_sym_BANG_EQ] = ACTIONS(7131), + [anon_sym_GT] = ACTIONS(7129), + [anon_sym_GT_EQ] = ACTIONS(7129), + [anon_sym_LT_EQ] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(7129), + [anon_sym_LT_LT] = ACTIONS(7129), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym___extension__] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7129), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(7332), + [anon_sym_unsigned] = ACTIONS(7332), + [anon_sym_long] = ACTIONS(7332), + [anon_sym_short] = ACTIONS(7332), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_EQ] = ACTIONS(7129), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_restrict] = ACTIONS(7129), + [anon_sym___restrict__] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [anon_sym__Noreturn] = ACTIONS(7129), + [anon_sym_noreturn] = ACTIONS(7129), + [anon_sym__Nonnull] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [anon_sym_constinit] = ACTIONS(7129), + [anon_sym_consteval] = ACTIONS(7129), + [anon_sym_alignas] = ACTIONS(7129), + [anon_sym__Alignas] = ACTIONS(7129), + [anon_sym_QMARK] = ACTIONS(7131), + [anon_sym_STAR_EQ] = ACTIONS(7131), + [anon_sym_SLASH_EQ] = ACTIONS(7131), + [anon_sym_PERCENT_EQ] = ACTIONS(7131), + [anon_sym_PLUS_EQ] = ACTIONS(7131), + [anon_sym_DASH_EQ] = ACTIONS(7131), + [anon_sym_LT_LT_EQ] = ACTIONS(7131), + [anon_sym_GT_GT_EQ] = ACTIONS(7129), + [anon_sym_AMP_EQ] = ACTIONS(7131), + [anon_sym_CARET_EQ] = ACTIONS(7131), + [anon_sym_PIPE_EQ] = ACTIONS(7131), + [anon_sym_and_eq] = ACTIONS(7129), + [anon_sym_or_eq] = ACTIONS(7129), + [anon_sym_xor_eq] = ACTIONS(7129), + [anon_sym_LT_EQ_GT] = ACTIONS(7131), + [anon_sym_or] = ACTIONS(7129), + [anon_sym_and] = ACTIONS(7129), + [anon_sym_bitor] = ACTIONS(7129), + [anon_sym_xor] = ACTIONS(7129), + [anon_sym_bitand] = ACTIONS(7129), + [anon_sym_not_eq] = ACTIONS(7129), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DOT] = ACTIONS(7129), + [anon_sym_DOT_STAR] = ACTIONS(7131), + [anon_sym_DASH_GT] = ACTIONS(7131), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7129), + [anon_sym_final] = ACTIONS(7129), + [anon_sym_override] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_GT2] = ACTIONS(7131), + [anon_sym_requires] = ACTIONS(7129), + [anon_sym_LBRACK_COLON] = ACTIONS(7131), + }, + [STATE(2409)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8101), + [anon_sym_unsigned] = ACTIONS(8101), + [anon_sym_long] = ACTIONS(8101), + [anon_sym_short] = ACTIONS(8101), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7173), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_DASH_GT_STAR] = ACTIONS(7175), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(7296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7298), + [anon_sym_RPAREN] = ACTIONS(7298), + [anon_sym_LPAREN2] = ACTIONS(7298), + [anon_sym_DASH] = ACTIONS(7296), + [anon_sym_PLUS] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7296), + [anon_sym_SLASH] = ACTIONS(7296), + [anon_sym_PERCENT] = ACTIONS(7296), + [anon_sym_PIPE_PIPE] = ACTIONS(7298), + [anon_sym_AMP_AMP] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7296), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_EQ_EQ] = ACTIONS(7298), + [anon_sym_BANG_EQ] = ACTIONS(7298), + [anon_sym_GT] = ACTIONS(7296), + [anon_sym_GT_EQ] = ACTIONS(7298), + [anon_sym_LT_EQ] = ACTIONS(7296), + [anon_sym_LT] = ACTIONS(7296), + [anon_sym_LT_LT] = ACTIONS(7296), + [anon_sym_GT_GT] = ACTIONS(7296), + [anon_sym___extension__] = ACTIONS(7296), + [anon_sym___attribute__] = ACTIONS(7296), + [anon_sym___attribute] = ACTIONS(7296), + [anon_sym_COLON_COLON] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(8084), + [anon_sym_unsigned] = ACTIONS(8084), + [anon_sym_long] = ACTIONS(8084), + [anon_sym_short] = ACTIONS(8084), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_EQ] = ACTIONS(7296), + [anon_sym_const] = ACTIONS(7296), + [anon_sym_constexpr] = ACTIONS(7296), + [anon_sym_volatile] = ACTIONS(7296), + [anon_sym_restrict] = ACTIONS(7296), + [anon_sym___restrict__] = ACTIONS(7296), + [anon_sym__Atomic] = ACTIONS(7296), + [anon_sym__Noreturn] = ACTIONS(7296), + [anon_sym_noreturn] = ACTIONS(7296), + [anon_sym__Nonnull] = ACTIONS(7296), + [anon_sym_mutable] = ACTIONS(7296), + [anon_sym_constinit] = ACTIONS(7296), + [anon_sym_consteval] = ACTIONS(7296), + [anon_sym_alignas] = ACTIONS(7296), + [anon_sym__Alignas] = ACTIONS(7296), + [anon_sym_QMARK] = ACTIONS(7298), + [anon_sym_STAR_EQ] = ACTIONS(7298), + [anon_sym_SLASH_EQ] = ACTIONS(7298), + [anon_sym_PERCENT_EQ] = ACTIONS(7298), + [anon_sym_PLUS_EQ] = ACTIONS(7298), + [anon_sym_DASH_EQ] = ACTIONS(7298), + [anon_sym_LT_LT_EQ] = ACTIONS(7298), + [anon_sym_GT_GT_EQ] = ACTIONS(7298), + [anon_sym_AMP_EQ] = ACTIONS(7298), + [anon_sym_CARET_EQ] = ACTIONS(7298), + [anon_sym_PIPE_EQ] = ACTIONS(7298), + [anon_sym_and_eq] = ACTIONS(7296), + [anon_sym_or_eq] = ACTIONS(7296), + [anon_sym_xor_eq] = ACTIONS(7296), + [anon_sym_LT_EQ_GT] = ACTIONS(7298), + [anon_sym_or] = ACTIONS(7296), + [anon_sym_and] = ACTIONS(7296), + [anon_sym_bitor] = ACTIONS(7296), + [anon_sym_xor] = ACTIONS(7296), + [anon_sym_bitand] = ACTIONS(7296), + [anon_sym_not_eq] = ACTIONS(7296), + [anon_sym_DASH_DASH] = ACTIONS(7298), + [anon_sym_PLUS_PLUS] = ACTIONS(7298), + [anon_sym_DOT] = ACTIONS(7296), + [anon_sym_DOT_STAR] = ACTIONS(7298), + [anon_sym_DASH_GT] = ACTIONS(7296), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7296), + [anon_sym_final] = ACTIONS(7296), + [anon_sym_override] = ACTIONS(7296), + [anon_sym_template] = ACTIONS(7296), + [anon_sym_requires] = ACTIONS(7296), + [anon_sym_DASH_GT_STAR] = ACTIONS(7298), + [anon_sym_LBRACK_COLON] = ACTIONS(7298), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2420), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7183), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON_COLON] = ACTIONS(7186), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(8104), + [anon_sym_unsigned] = ACTIONS(8104), + [anon_sym_long] = ACTIONS(8104), + [anon_sym_short] = ACTIONS(8104), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7183), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7183), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7183), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_template] = ACTIONS(7183), + [anon_sym_GT2] = ACTIONS(7186), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_LBRACK_COLON] = ACTIONS(7186), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(7304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7306), + [anon_sym_RPAREN] = ACTIONS(7306), + [anon_sym_LPAREN2] = ACTIONS(7306), + [anon_sym_DASH] = ACTIONS(7304), + [anon_sym_PLUS] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7304), + [anon_sym_SLASH] = ACTIONS(7304), + [anon_sym_PERCENT] = ACTIONS(7304), + [anon_sym_PIPE_PIPE] = ACTIONS(7306), + [anon_sym_AMP_AMP] = ACTIONS(7306), + [anon_sym_PIPE] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(7304), + [anon_sym_AMP] = ACTIONS(7304), + [anon_sym_EQ_EQ] = ACTIONS(7306), + [anon_sym_BANG_EQ] = ACTIONS(7306), + [anon_sym_GT] = ACTIONS(7304), + [anon_sym_GT_EQ] = ACTIONS(7306), + [anon_sym_LT_EQ] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7304), + [anon_sym_LT_LT] = ACTIONS(7304), + [anon_sym_GT_GT] = ACTIONS(7304), + [anon_sym___extension__] = ACTIONS(7304), + [anon_sym___attribute__] = ACTIONS(7304), + [anon_sym___attribute] = ACTIONS(7304), + [anon_sym_COLON_COLON] = ACTIONS(7306), + [anon_sym_LBRACE] = ACTIONS(7306), + [anon_sym_signed] = ACTIONS(8084), + [anon_sym_unsigned] = ACTIONS(8084), + [anon_sym_long] = ACTIONS(8084), + [anon_sym_short] = ACTIONS(8084), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_EQ] = ACTIONS(7304), + [anon_sym_const] = ACTIONS(7304), + [anon_sym_constexpr] = ACTIONS(7304), + [anon_sym_volatile] = ACTIONS(7304), + [anon_sym_restrict] = ACTIONS(7304), + [anon_sym___restrict__] = ACTIONS(7304), + [anon_sym__Atomic] = ACTIONS(7304), + [anon_sym__Noreturn] = ACTIONS(7304), + [anon_sym_noreturn] = ACTIONS(7304), + [anon_sym__Nonnull] = ACTIONS(7304), + [anon_sym_mutable] = ACTIONS(7304), + [anon_sym_constinit] = ACTIONS(7304), + [anon_sym_consteval] = ACTIONS(7304), + [anon_sym_alignas] = ACTIONS(7304), + [anon_sym__Alignas] = ACTIONS(7304), + [anon_sym_QMARK] = ACTIONS(7306), + [anon_sym_STAR_EQ] = ACTIONS(7306), + [anon_sym_SLASH_EQ] = ACTIONS(7306), + [anon_sym_PERCENT_EQ] = ACTIONS(7306), + [anon_sym_PLUS_EQ] = ACTIONS(7306), + [anon_sym_DASH_EQ] = ACTIONS(7306), + [anon_sym_LT_LT_EQ] = ACTIONS(7306), + [anon_sym_GT_GT_EQ] = ACTIONS(7306), + [anon_sym_AMP_EQ] = ACTIONS(7306), + [anon_sym_CARET_EQ] = ACTIONS(7306), + [anon_sym_PIPE_EQ] = ACTIONS(7306), + [anon_sym_and_eq] = ACTIONS(7304), + [anon_sym_or_eq] = ACTIONS(7304), + [anon_sym_xor_eq] = ACTIONS(7304), + [anon_sym_LT_EQ_GT] = ACTIONS(7306), + [anon_sym_or] = ACTIONS(7304), + [anon_sym_and] = ACTIONS(7304), + [anon_sym_bitor] = ACTIONS(7304), + [anon_sym_xor] = ACTIONS(7304), + [anon_sym_bitand] = ACTIONS(7304), + [anon_sym_not_eq] = ACTIONS(7304), + [anon_sym_DASH_DASH] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(7306), + [anon_sym_DOT] = ACTIONS(7304), + [anon_sym_DOT_STAR] = ACTIONS(7306), + [anon_sym_DASH_GT] = ACTIONS(7304), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7304), + [anon_sym_final] = ACTIONS(7304), + [anon_sym_override] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7304), + [anon_sym_requires] = ACTIONS(7304), + [anon_sym_DASH_GT_STAR] = ACTIONS(7306), + [anon_sym_LBRACK_COLON] = ACTIONS(7306), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2414), + [sym_identifier] = ACTIONS(7322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7324), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_RPAREN] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_DASH] = ACTIONS(7322), + [anon_sym_PLUS] = ACTIONS(7322), + [anon_sym_STAR] = ACTIONS(7322), + [anon_sym_SLASH] = ACTIONS(7322), + [anon_sym_PERCENT] = ACTIONS(7322), + [anon_sym_PIPE_PIPE] = ACTIONS(7324), + [anon_sym_AMP_AMP] = ACTIONS(7324), + [anon_sym_PIPE] = ACTIONS(7322), + [anon_sym_CARET] = ACTIONS(7322), + [anon_sym_AMP] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_GT] = ACTIONS(7322), + [anon_sym_GT_EQ] = ACTIONS(7324), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_LT] = ACTIONS(7322), + [anon_sym_LT_LT] = ACTIONS(7322), + [anon_sym_GT_GT] = ACTIONS(7322), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_COLON_COLON] = ACTIONS(7324), + [anon_sym_LBRACE] = ACTIONS(7324), + [anon_sym_signed] = ACTIONS(8107), + [anon_sym_unsigned] = ACTIONS(8107), + [anon_sym_long] = ACTIONS(8107), + [anon_sym_short] = ACTIONS(8107), + [anon_sym_LBRACK] = ACTIONS(7322), + [anon_sym_EQ] = ACTIONS(7322), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_mutable] = ACTIONS(7322), + [anon_sym_constinit] = ACTIONS(7322), + [anon_sym_consteval] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [anon_sym_QMARK] = ACTIONS(7324), + [anon_sym_STAR_EQ] = ACTIONS(7324), + [anon_sym_SLASH_EQ] = ACTIONS(7324), + [anon_sym_PERCENT_EQ] = ACTIONS(7324), + [anon_sym_PLUS_EQ] = ACTIONS(7324), + [anon_sym_DASH_EQ] = ACTIONS(7324), + [anon_sym_LT_LT_EQ] = ACTIONS(7324), + [anon_sym_GT_GT_EQ] = ACTIONS(7324), + [anon_sym_AMP_EQ] = ACTIONS(7324), + [anon_sym_CARET_EQ] = ACTIONS(7324), + [anon_sym_PIPE_EQ] = ACTIONS(7324), + [anon_sym_and_eq] = ACTIONS(7322), + [anon_sym_or_eq] = ACTIONS(7322), + [anon_sym_xor_eq] = ACTIONS(7322), + [anon_sym_LT_EQ_GT] = ACTIONS(7324), + [anon_sym_or] = ACTIONS(7322), + [anon_sym_and] = ACTIONS(7322), + [anon_sym_bitor] = ACTIONS(7322), + [anon_sym_xor] = ACTIONS(7322), + [anon_sym_bitand] = ACTIONS(7322), + [anon_sym_not_eq] = ACTIONS(7322), + [anon_sym_DASH_DASH] = ACTIONS(7324), + [anon_sym_PLUS_PLUS] = ACTIONS(7324), + [anon_sym_DOT] = ACTIONS(7322), + [anon_sym_DOT_STAR] = ACTIONS(7324), + [anon_sym_DASH_GT] = ACTIONS(7322), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7322), + [anon_sym_final] = ACTIONS(7322), + [anon_sym_override] = ACTIONS(7322), + [anon_sym_template] = ACTIONS(7322), + [anon_sym_requires] = ACTIONS(7322), + [anon_sym_DASH_GT_STAR] = ACTIONS(7324), + [anon_sym_LBRACK_COLON] = ACTIONS(7324), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2409), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(8084), + [anon_sym_unsigned] = ACTIONS(8084), + [anon_sym_long] = ACTIONS(8084), + [anon_sym_short] = ACTIONS(8084), + [anon_sym_LBRACK] = ACTIONS(7253), + [anon_sym_EQ] = ACTIONS(7253), + [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(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7253), + [anon_sym_or_eq] = ACTIONS(7253), + [anon_sym_xor_eq] = ACTIONS(7253), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7253), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7253), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_template] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_DASH_GT_STAR] = ACTIONS(7255), + [anon_sym_LBRACK_COLON] = ACTIONS(7255), }, [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), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_DASH_GT_STAR] = ACTIONS(7261), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), }, [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), + [sym_type_qualifier] = STATE(2404), + [sym_alignas_qualifier] = STATE(2363), + [aux_sym__type_definition_type_repeat1] = STATE(2404), + [aux_sym_sized_type_specifier_repeat1] = STATE(2546), + [sym_identifier] = ACTIONS(8109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [aux_sym_preproc_if_token2] = ACTIONS(6934), + [aux_sym_preproc_else_token1] = ACTIONS(6934), + [aux_sym_preproc_elif_token1] = ACTIONS(6936), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6934), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(7967), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(8112), + [anon_sym_unsigned] = ACTIONS(8112), + [anon_sym_long] = ACTIONS(8112), + [anon_sym_short] = ACTIONS(8112), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(7967), + [anon_sym_constexpr] = ACTIONS(7967), + [anon_sym_volatile] = ACTIONS(7967), + [anon_sym_restrict] = ACTIONS(7967), + [anon_sym___restrict__] = ACTIONS(7967), + [anon_sym__Atomic] = ACTIONS(7967), + [anon_sym__Noreturn] = ACTIONS(7967), + [anon_sym_noreturn] = ACTIONS(7967), + [anon_sym__Nonnull] = ACTIONS(7967), + [anon_sym_mutable] = ACTIONS(7967), + [anon_sym_constinit] = ACTIONS(7967), + [anon_sym_consteval] = ACTIONS(7967), + [anon_sym_alignas] = ACTIONS(7971), + [anon_sym__Alignas] = ACTIONS(7971), + [sym_primitive_type] = ACTIONS(8114), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6934), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_and_eq] = ACTIONS(6936), + [anon_sym_or_eq] = ACTIONS(6936), + [anon_sym_xor_eq] = ACTIONS(6936), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2401), + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7263), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7263), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON_COLON] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_signed] = ACTIONS(8116), + [anon_sym_unsigned] = ACTIONS(8116), + [anon_sym_long] = ACTIONS(8116), + [anon_sym_short] = ACTIONS(8116), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym_EQ] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_STAR_EQ] = ACTIONS(7265), + [anon_sym_SLASH_EQ] = ACTIONS(7265), + [anon_sym_PERCENT_EQ] = ACTIONS(7265), + [anon_sym_PLUS_EQ] = ACTIONS(7265), + [anon_sym_DASH_EQ] = ACTIONS(7265), + [anon_sym_LT_LT_EQ] = ACTIONS(7265), + [anon_sym_GT_GT_EQ] = ACTIONS(7265), + [anon_sym_AMP_EQ] = ACTIONS(7265), + [anon_sym_CARET_EQ] = ACTIONS(7265), + [anon_sym_PIPE_EQ] = ACTIONS(7265), + [anon_sym_and_eq] = ACTIONS(7263), + [anon_sym_or_eq] = ACTIONS(7263), + [anon_sym_xor_eq] = ACTIONS(7263), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7263), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7263), + [anon_sym_not_eq] = ACTIONS(7263), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7263), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7263), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_template] = ACTIONS(7263), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_DASH_GT_STAR] = ACTIONS(7265), + [anon_sym_LBRACK_COLON] = ACTIONS(7265), }, [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), + [sym_type_qualifier] = STATE(2418), + [sym_alignas_qualifier] = STATE(2549), + [aux_sym__type_definition_type_repeat1] = STATE(2418), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8118), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8118), + [anon_sym_constexpr] = ACTIONS(8118), + [anon_sym_volatile] = ACTIONS(8118), + [anon_sym_restrict] = ACTIONS(8118), + [anon_sym___restrict__] = ACTIONS(8118), + [anon_sym__Atomic] = ACTIONS(8118), + [anon_sym__Noreturn] = ACTIONS(8118), + [anon_sym_noreturn] = ACTIONS(8118), + [anon_sym__Nonnull] = ACTIONS(8118), + [anon_sym_mutable] = ACTIONS(8118), + [anon_sym_constinit] = ACTIONS(8118), + [anon_sym_consteval] = ACTIONS(8118), + [anon_sym_alignas] = ACTIONS(8121), + [anon_sym__Alignas] = ACTIONS(8121), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7047), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_DASH_GT_STAR] = ACTIONS(7049), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), }, [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(2426), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON_COLON] = ACTIONS(7186), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(8124), + [anon_sym_unsigned] = ACTIONS(8124), + [anon_sym_long] = ACTIONS(8124), + [anon_sym_short] = ACTIONS(8124), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_RBRACK] = ACTIONS(7186), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7183), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7186), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7183), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_template] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_LBRACK_COLON] = ACTIONS(7186), }, [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(2420), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7173), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8104), + [anon_sym_unsigned] = ACTIONS(8104), + [anon_sym_long] = ACTIONS(8104), + [anon_sym_short] = ACTIONS(8104), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7173), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_GT2] = ACTIONS(7175), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), }, [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_ms_unaligned_ptr_modifier] = STATE(2526), + [sym_ms_pointer_modifier] = STATE(2421), + [aux_sym_pointer_declarator_repeat1] = STATE(2421), + [sym_identifier] = ACTIONS(7119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7121), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_RPAREN] = ACTIONS(7121), + [anon_sym_LPAREN2] = ACTIONS(7121), + [anon_sym_DASH] = ACTIONS(7119), + [anon_sym_PLUS] = ACTIONS(7119), + [anon_sym_STAR] = ACTIONS(7119), + [anon_sym_SLASH] = ACTIONS(7119), + [anon_sym_PERCENT] = ACTIONS(7119), + [anon_sym_PIPE_PIPE] = ACTIONS(7121), + [anon_sym_AMP_AMP] = ACTIONS(7121), + [anon_sym_PIPE] = ACTIONS(7119), + [anon_sym_CARET] = ACTIONS(7119), + [anon_sym_AMP] = ACTIONS(7119), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_GT] = ACTIONS(7119), + [anon_sym_GT_EQ] = ACTIONS(7121), + [anon_sym_LT_EQ] = ACTIONS(7119), + [anon_sym_LT] = ACTIONS(7119), + [anon_sym_LT_LT] = ACTIONS(7119), + [anon_sym_GT_GT] = ACTIONS(7119), + [anon_sym___extension__] = ACTIONS(7119), + [anon_sym_COLON_COLON] = ACTIONS(7121), + [sym_ms_restrict_modifier] = ACTIONS(8127), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8127), + [sym_ms_signed_ptr_modifier] = ACTIONS(8127), + [anon_sym__unaligned] = ACTIONS(8130), + [anon_sym___unaligned] = ACTIONS(8130), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_EQ] = ACTIONS(7119), + [anon_sym_const] = ACTIONS(7119), + [anon_sym_constexpr] = ACTIONS(7119), + [anon_sym_volatile] = ACTIONS(7119), + [anon_sym_restrict] = ACTIONS(7119), + [anon_sym___restrict__] = ACTIONS(7119), + [anon_sym__Atomic] = ACTIONS(7119), + [anon_sym__Noreturn] = ACTIONS(7119), + [anon_sym_noreturn] = ACTIONS(7119), + [anon_sym__Nonnull] = ACTIONS(7119), + [anon_sym_mutable] = ACTIONS(7119), + [anon_sym_constinit] = ACTIONS(7119), + [anon_sym_consteval] = ACTIONS(7119), + [anon_sym_alignas] = ACTIONS(7119), + [anon_sym__Alignas] = ACTIONS(7119), + [anon_sym_QMARK] = ACTIONS(7121), + [anon_sym_STAR_EQ] = ACTIONS(7121), + [anon_sym_SLASH_EQ] = ACTIONS(7121), + [anon_sym_PERCENT_EQ] = ACTIONS(7121), + [anon_sym_PLUS_EQ] = ACTIONS(7121), + [anon_sym_DASH_EQ] = ACTIONS(7121), + [anon_sym_LT_LT_EQ] = ACTIONS(7121), + [anon_sym_GT_GT_EQ] = ACTIONS(7121), + [anon_sym_AMP_EQ] = ACTIONS(7121), + [anon_sym_CARET_EQ] = ACTIONS(7121), + [anon_sym_PIPE_EQ] = ACTIONS(7121), + [anon_sym_and_eq] = ACTIONS(7119), + [anon_sym_or_eq] = ACTIONS(7119), + [anon_sym_xor_eq] = ACTIONS(7119), + [anon_sym_LT_EQ_GT] = ACTIONS(7121), + [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(7121), + [anon_sym_PLUS_PLUS] = ACTIONS(7121), + [anon_sym_DOT] = ACTIONS(7119), + [anon_sym_DOT_STAR] = ACTIONS(7121), + [anon_sym_DASH_GT] = ACTIONS(7119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7119), + [anon_sym_final] = ACTIONS(7119), + [anon_sym_override] = ACTIONS(7119), + [anon_sym_template] = ACTIONS(7119), + [anon_sym_requires] = ACTIONS(7119), + [anon_sym_DASH_GT_STAR] = ACTIONS(7121), + [anon_sym_LBRACK_COLON] = ACTIONS(7121), }, [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), + [sym_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(2468), + [sym_identifier] = ACTIONS(7129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7129), + [anon_sym_SLASH] = ACTIONS(7129), + [anon_sym_PERCENT] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7129), + [anon_sym_CARET] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_EQ_EQ] = ACTIONS(7131), + [anon_sym_BANG_EQ] = ACTIONS(7131), + [anon_sym_GT] = ACTIONS(7129), + [anon_sym_GT_EQ] = ACTIONS(7131), + [anon_sym_LT_EQ] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(7129), + [anon_sym_LT_LT] = ACTIONS(7129), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym___extension__] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7129), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(7243), + [anon_sym_unsigned] = ACTIONS(7243), + [anon_sym_long] = ACTIONS(7243), + [anon_sym_short] = ACTIONS(7243), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_RBRACK] = ACTIONS(7131), + [anon_sym_EQ] = ACTIONS(7129), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_restrict] = ACTIONS(7129), + [anon_sym___restrict__] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [anon_sym__Noreturn] = ACTIONS(7129), + [anon_sym_noreturn] = ACTIONS(7129), + [anon_sym__Nonnull] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [anon_sym_constinit] = ACTIONS(7129), + [anon_sym_consteval] = ACTIONS(7129), + [anon_sym_alignas] = ACTIONS(7129), + [anon_sym__Alignas] = ACTIONS(7129), + [anon_sym_QMARK] = ACTIONS(7131), + [anon_sym_STAR_EQ] = ACTIONS(7131), + [anon_sym_SLASH_EQ] = ACTIONS(7131), + [anon_sym_PERCENT_EQ] = ACTIONS(7131), + [anon_sym_PLUS_EQ] = ACTIONS(7131), + [anon_sym_DASH_EQ] = ACTIONS(7131), + [anon_sym_LT_LT_EQ] = ACTIONS(7131), + [anon_sym_GT_GT_EQ] = ACTIONS(7131), + [anon_sym_AMP_EQ] = ACTIONS(7131), + [anon_sym_CARET_EQ] = ACTIONS(7131), + [anon_sym_PIPE_EQ] = ACTIONS(7131), + [anon_sym_and_eq] = ACTIONS(7129), + [anon_sym_or_eq] = ACTIONS(7129), + [anon_sym_xor_eq] = ACTIONS(7129), + [anon_sym_LT_EQ_GT] = ACTIONS(7131), + [anon_sym_or] = ACTIONS(7129), + [anon_sym_and] = ACTIONS(7129), + [anon_sym_bitor] = ACTIONS(7129), + [anon_sym_xor] = ACTIONS(7129), + [anon_sym_bitand] = ACTIONS(7129), + [anon_sym_not_eq] = ACTIONS(7129), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DOT] = ACTIONS(7129), + [anon_sym_DOT_STAR] = ACTIONS(7131), + [anon_sym_DASH_GT] = ACTIONS(7131), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7129), + [anon_sym_final] = ACTIONS(7129), + [anon_sym_override] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_requires] = ACTIONS(7129), + [anon_sym_LBRACK_COLON] = ACTIONS(7131), }, [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(2402), + [sym_identifier] = ACTIONS(7269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7271), + [anon_sym_COMMA] = ACTIONS(7271), + [anon_sym_RPAREN] = ACTIONS(7271), + [anon_sym_LPAREN2] = ACTIONS(7271), + [anon_sym_DASH] = ACTIONS(7269), + [anon_sym_PLUS] = ACTIONS(7269), + [anon_sym_STAR] = ACTIONS(7269), + [anon_sym_SLASH] = ACTIONS(7269), + [anon_sym_PERCENT] = ACTIONS(7269), + [anon_sym_PIPE_PIPE] = ACTIONS(7271), + [anon_sym_AMP_AMP] = ACTIONS(7271), + [anon_sym_PIPE] = ACTIONS(7269), + [anon_sym_CARET] = ACTIONS(7269), + [anon_sym_AMP] = ACTIONS(7269), + [anon_sym_EQ_EQ] = ACTIONS(7271), + [anon_sym_BANG_EQ] = ACTIONS(7271), + [anon_sym_GT] = ACTIONS(7269), + [anon_sym_GT_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7269), + [anon_sym_LT] = ACTIONS(7269), + [anon_sym_LT_LT] = ACTIONS(7269), + [anon_sym_GT_GT] = ACTIONS(7269), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym___attribute__] = ACTIONS(7269), + [anon_sym___attribute] = ACTIONS(7269), + [anon_sym_COLON_COLON] = ACTIONS(7271), + [anon_sym_LBRACE] = ACTIONS(7271), + [anon_sym_signed] = ACTIONS(8133), + [anon_sym_unsigned] = ACTIONS(8133), + [anon_sym_long] = ACTIONS(8133), + [anon_sym_short] = ACTIONS(8133), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7269), + [anon_sym_const] = ACTIONS(7269), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7271), + [anon_sym_STAR_EQ] = ACTIONS(7271), + [anon_sym_SLASH_EQ] = ACTIONS(7271), + [anon_sym_PERCENT_EQ] = ACTIONS(7271), + [anon_sym_PLUS_EQ] = ACTIONS(7271), + [anon_sym_DASH_EQ] = ACTIONS(7271), + [anon_sym_LT_LT_EQ] = ACTIONS(7271), + [anon_sym_GT_GT_EQ] = ACTIONS(7271), + [anon_sym_AMP_EQ] = ACTIONS(7271), + [anon_sym_CARET_EQ] = ACTIONS(7271), + [anon_sym_PIPE_EQ] = ACTIONS(7271), + [anon_sym_and_eq] = ACTIONS(7269), + [anon_sym_or_eq] = ACTIONS(7269), + [anon_sym_xor_eq] = ACTIONS(7269), + [anon_sym_LT_EQ_GT] = ACTIONS(7271), + [anon_sym_or] = ACTIONS(7269), + [anon_sym_and] = ACTIONS(7269), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7269), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7271), + [anon_sym_PLUS_PLUS] = ACTIONS(7271), + [anon_sym_DOT] = ACTIONS(7269), + [anon_sym_DOT_STAR] = ACTIONS(7271), + [anon_sym_DASH_GT] = ACTIONS(7269), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7269), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_template] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_DASH_GT_STAR] = ACTIONS(7271), + [anon_sym_LBRACK_COLON] = ACTIONS(7271), }, [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(2409), + [sym_identifier] = ACTIONS(7300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7302), + [anon_sym_RPAREN] = ACTIONS(7302), + [anon_sym_LPAREN2] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7300), + [anon_sym_SLASH] = ACTIONS(7300), + [anon_sym_PERCENT] = ACTIONS(7300), + [anon_sym_PIPE_PIPE] = ACTIONS(7302), + [anon_sym_AMP_AMP] = ACTIONS(7302), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_CARET] = ACTIONS(7300), + [anon_sym_AMP] = ACTIONS(7300), + [anon_sym_EQ_EQ] = ACTIONS(7302), + [anon_sym_BANG_EQ] = ACTIONS(7302), + [anon_sym_GT] = ACTIONS(7300), + [anon_sym_GT_EQ] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(7300), + [anon_sym_LT] = ACTIONS(7300), + [anon_sym_LT_LT] = ACTIONS(7300), + [anon_sym_GT_GT] = ACTIONS(7300), + [anon_sym___extension__] = ACTIONS(7300), + [anon_sym___attribute__] = ACTIONS(7300), + [anon_sym___attribute] = ACTIONS(7300), + [anon_sym_COLON_COLON] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(8084), + [anon_sym_unsigned] = ACTIONS(8084), + [anon_sym_long] = ACTIONS(8084), + [anon_sym_short] = ACTIONS(8084), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_EQ] = ACTIONS(7300), + [anon_sym_const] = ACTIONS(7300), + [anon_sym_constexpr] = ACTIONS(7300), + [anon_sym_volatile] = ACTIONS(7300), + [anon_sym_restrict] = ACTIONS(7300), + [anon_sym___restrict__] = ACTIONS(7300), + [anon_sym__Atomic] = ACTIONS(7300), + [anon_sym__Noreturn] = ACTIONS(7300), + [anon_sym_noreturn] = ACTIONS(7300), + [anon_sym__Nonnull] = ACTIONS(7300), + [anon_sym_mutable] = ACTIONS(7300), + [anon_sym_constinit] = ACTIONS(7300), + [anon_sym_consteval] = ACTIONS(7300), + [anon_sym_alignas] = ACTIONS(7300), + [anon_sym__Alignas] = ACTIONS(7300), + [anon_sym_QMARK] = ACTIONS(7302), + [anon_sym_STAR_EQ] = ACTIONS(7302), + [anon_sym_SLASH_EQ] = ACTIONS(7302), + [anon_sym_PERCENT_EQ] = ACTIONS(7302), + [anon_sym_PLUS_EQ] = ACTIONS(7302), + [anon_sym_DASH_EQ] = ACTIONS(7302), + [anon_sym_LT_LT_EQ] = ACTIONS(7302), + [anon_sym_GT_GT_EQ] = ACTIONS(7302), + [anon_sym_AMP_EQ] = ACTIONS(7302), + [anon_sym_CARET_EQ] = ACTIONS(7302), + [anon_sym_PIPE_EQ] = ACTIONS(7302), + [anon_sym_and_eq] = ACTIONS(7300), + [anon_sym_or_eq] = ACTIONS(7300), + [anon_sym_xor_eq] = ACTIONS(7300), + [anon_sym_LT_EQ_GT] = ACTIONS(7302), + [anon_sym_or] = ACTIONS(7300), + [anon_sym_and] = ACTIONS(7300), + [anon_sym_bitor] = ACTIONS(7300), + [anon_sym_xor] = ACTIONS(7300), + [anon_sym_bitand] = ACTIONS(7300), + [anon_sym_not_eq] = ACTIONS(7300), + [anon_sym_DASH_DASH] = ACTIONS(7302), + [anon_sym_PLUS_PLUS] = ACTIONS(7302), + [anon_sym_DOT] = ACTIONS(7300), + [anon_sym_DOT_STAR] = ACTIONS(7302), + [anon_sym_DASH_GT] = ACTIONS(7300), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7300), + [anon_sym_final] = ACTIONS(7300), + [anon_sym_override] = ACTIONS(7300), + [anon_sym_template] = ACTIONS(7300), + [anon_sym_requires] = ACTIONS(7300), + [anon_sym_DASH_GT_STAR] = ACTIONS(7302), + [anon_sym_LBRACK_COLON] = ACTIONS(7302), }, [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), - [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), + [sym_decltype_auto] = STATE(2942), + [sym_template_argument_list] = STATE(2535), + [aux_sym_sized_type_specifier_repeat1] = STATE(2427), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_RPAREN] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5661), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_PIPE_PIPE] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5661), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5669), + [anon_sym_BANG_EQ] = ACTIONS(5669), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5669), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(8135), + [anon_sym_LT_LT] = ACTIONS(5661), + [anon_sym_GT_GT] = ACTIONS(5661), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_signed] = ACTIONS(7157), + [anon_sym_unsigned] = ACTIONS(7157), + [anon_sym_long] = ACTIONS(7157), + [anon_sym_short] = ACTIONS(7157), + [anon_sym_LBRACK] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5669), + [anon_sym_STAR_EQ] = ACTIONS(5669), + [anon_sym_SLASH_EQ] = ACTIONS(5669), + [anon_sym_PERCENT_EQ] = ACTIONS(5669), + [anon_sym_PLUS_EQ] = ACTIONS(5669), + [anon_sym_DASH_EQ] = ACTIONS(5669), + [anon_sym_LT_LT_EQ] = ACTIONS(5669), + [anon_sym_GT_GT_EQ] = ACTIONS(5669), + [anon_sym_AMP_EQ] = ACTIONS(5669), + [anon_sym_CARET_EQ] = ACTIONS(5669), + [anon_sym_PIPE_EQ] = ACTIONS(5669), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5669), + [anon_sym_or] = ACTIONS(5661), + [anon_sym_and] = ACTIONS(5661), + [anon_sym_bitor] = ACTIONS(5661), + [anon_sym_xor] = ACTIONS(5661), + [anon_sym_bitand] = ACTIONS(5661), + [anon_sym_not_eq] = ACTIONS(5661), + [anon_sym_DASH_DASH] = ACTIONS(5669), + [anon_sym_PLUS_PLUS] = ACTIONS(5669), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5669), + [anon_sym_DASH_GT] = ACTIONS(5661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7159), + [anon_sym_decltype] = ACTIONS(7161), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_requires] = ACTIONS(5661), + [anon_sym_DASH_GT_STAR] = ACTIONS(5669), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, [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(2426), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8124), + [anon_sym_unsigned] = ACTIONS(8124), + [anon_sym_long] = ACTIONS(8124), + [anon_sym_short] = ACTIONS(8124), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_RBRACK] = ACTIONS(7175), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), }, [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(2409), + [sym_identifier] = ACTIONS(7308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7310), + [anon_sym_RPAREN] = ACTIONS(7310), + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_DASH] = ACTIONS(7308), + [anon_sym_PLUS] = ACTIONS(7308), + [anon_sym_STAR] = ACTIONS(7308), + [anon_sym_SLASH] = ACTIONS(7308), + [anon_sym_PERCENT] = ACTIONS(7308), + [anon_sym_PIPE_PIPE] = ACTIONS(7310), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_PIPE] = ACTIONS(7308), + [anon_sym_CARET] = ACTIONS(7308), + [anon_sym_AMP] = ACTIONS(7308), + [anon_sym_EQ_EQ] = ACTIONS(7310), + [anon_sym_BANG_EQ] = ACTIONS(7310), + [anon_sym_GT] = ACTIONS(7308), + [anon_sym_GT_EQ] = ACTIONS(7310), + [anon_sym_LT_EQ] = ACTIONS(7308), + [anon_sym_LT] = ACTIONS(7308), + [anon_sym_LT_LT] = ACTIONS(7308), + [anon_sym_GT_GT] = ACTIONS(7308), + [anon_sym___extension__] = ACTIONS(7308), + [anon_sym___attribute__] = ACTIONS(7308), + [anon_sym___attribute] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_LBRACE] = ACTIONS(7310), + [anon_sym_signed] = ACTIONS(8084), + [anon_sym_unsigned] = ACTIONS(8084), + [anon_sym_long] = ACTIONS(8084), + [anon_sym_short] = ACTIONS(8084), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym_EQ] = ACTIONS(7308), + [anon_sym_const] = ACTIONS(7308), + [anon_sym_constexpr] = ACTIONS(7308), + [anon_sym_volatile] = ACTIONS(7308), + [anon_sym_restrict] = ACTIONS(7308), + [anon_sym___restrict__] = ACTIONS(7308), + [anon_sym__Atomic] = ACTIONS(7308), + [anon_sym__Noreturn] = ACTIONS(7308), + [anon_sym_noreturn] = ACTIONS(7308), + [anon_sym__Nonnull] = ACTIONS(7308), + [anon_sym_mutable] = ACTIONS(7308), + [anon_sym_constinit] = ACTIONS(7308), + [anon_sym_consteval] = ACTIONS(7308), + [anon_sym_alignas] = ACTIONS(7308), + [anon_sym__Alignas] = ACTIONS(7308), + [anon_sym_QMARK] = ACTIONS(7310), + [anon_sym_STAR_EQ] = ACTIONS(7310), + [anon_sym_SLASH_EQ] = ACTIONS(7310), + [anon_sym_PERCENT_EQ] = ACTIONS(7310), + [anon_sym_PLUS_EQ] = ACTIONS(7310), + [anon_sym_DASH_EQ] = ACTIONS(7310), + [anon_sym_LT_LT_EQ] = ACTIONS(7310), + [anon_sym_GT_GT_EQ] = ACTIONS(7310), + [anon_sym_AMP_EQ] = ACTIONS(7310), + [anon_sym_CARET_EQ] = ACTIONS(7310), + [anon_sym_PIPE_EQ] = ACTIONS(7310), + [anon_sym_and_eq] = ACTIONS(7308), + [anon_sym_or_eq] = ACTIONS(7308), + [anon_sym_xor_eq] = ACTIONS(7308), + [anon_sym_LT_EQ_GT] = ACTIONS(7310), + [anon_sym_or] = ACTIONS(7308), + [anon_sym_and] = ACTIONS(7308), + [anon_sym_bitor] = ACTIONS(7308), + [anon_sym_xor] = ACTIONS(7308), + [anon_sym_bitand] = ACTIONS(7308), + [anon_sym_not_eq] = ACTIONS(7308), + [anon_sym_DASH_DASH] = ACTIONS(7310), + [anon_sym_PLUS_PLUS] = ACTIONS(7310), + [anon_sym_DOT] = ACTIONS(7308), + [anon_sym_DOT_STAR] = ACTIONS(7310), + [anon_sym_DASH_GT] = ACTIONS(7308), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7308), + [anon_sym_final] = ACTIONS(7308), + [anon_sym_override] = ACTIONS(7308), + [anon_sym_template] = ACTIONS(7308), + [anon_sym_requires] = ACTIONS(7308), + [anon_sym_DASH_GT_STAR] = ACTIONS(7310), + [anon_sym_LBRACK_COLON] = ACTIONS(7310), }, [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), + [sym__abstract_declarator] = STATE(7147), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2278), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9646), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(7405), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(7407), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(7409), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym_SEMI] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(7411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6612), + [anon_sym_RBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6612), }, [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(2475), + [sym_identifier] = ACTIONS(7308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7310), + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_DASH] = ACTIONS(7308), + [anon_sym_PLUS] = ACTIONS(7308), + [anon_sym_STAR] = ACTIONS(7308), + [anon_sym_SLASH] = ACTIONS(7308), + [anon_sym_PERCENT] = ACTIONS(7308), + [anon_sym_PIPE_PIPE] = ACTIONS(7310), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_PIPE] = ACTIONS(7308), + [anon_sym_CARET] = ACTIONS(7308), + [anon_sym_AMP] = ACTIONS(7308), + [anon_sym_EQ_EQ] = ACTIONS(7310), + [anon_sym_BANG_EQ] = ACTIONS(7310), + [anon_sym_GT] = ACTIONS(7308), + [anon_sym_GT_EQ] = ACTIONS(7308), + [anon_sym_LT_EQ] = ACTIONS(7308), + [anon_sym_LT] = ACTIONS(7308), + [anon_sym_LT_LT] = ACTIONS(7308), + [anon_sym_GT_GT] = ACTIONS(7308), + [anon_sym___extension__] = ACTIONS(7308), + [anon_sym___attribute__] = ACTIONS(7308), + [anon_sym___attribute] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_LBRACE] = ACTIONS(7310), + [anon_sym_signed] = ACTIONS(8137), + [anon_sym_unsigned] = ACTIONS(8137), + [anon_sym_long] = ACTIONS(8137), + [anon_sym_short] = ACTIONS(8137), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym_EQ] = ACTIONS(7308), + [anon_sym_const] = ACTIONS(7308), + [anon_sym_constexpr] = ACTIONS(7308), + [anon_sym_volatile] = ACTIONS(7308), + [anon_sym_restrict] = ACTIONS(7308), + [anon_sym___restrict__] = ACTIONS(7308), + [anon_sym__Atomic] = ACTIONS(7308), + [anon_sym__Noreturn] = ACTIONS(7308), + [anon_sym_noreturn] = ACTIONS(7308), + [anon_sym__Nonnull] = ACTIONS(7308), + [anon_sym_mutable] = ACTIONS(7308), + [anon_sym_constinit] = ACTIONS(7308), + [anon_sym_consteval] = ACTIONS(7308), + [anon_sym_alignas] = ACTIONS(7308), + [anon_sym__Alignas] = ACTIONS(7308), + [anon_sym_QMARK] = ACTIONS(7310), + [anon_sym_STAR_EQ] = ACTIONS(7310), + [anon_sym_SLASH_EQ] = ACTIONS(7310), + [anon_sym_PERCENT_EQ] = ACTIONS(7310), + [anon_sym_PLUS_EQ] = ACTIONS(7310), + [anon_sym_DASH_EQ] = ACTIONS(7310), + [anon_sym_LT_LT_EQ] = ACTIONS(7310), + [anon_sym_GT_GT_EQ] = ACTIONS(7308), + [anon_sym_AMP_EQ] = ACTIONS(7310), + [anon_sym_CARET_EQ] = ACTIONS(7310), + [anon_sym_PIPE_EQ] = ACTIONS(7310), + [anon_sym_and_eq] = ACTIONS(7308), + [anon_sym_or_eq] = ACTIONS(7308), + [anon_sym_xor_eq] = ACTIONS(7308), + [anon_sym_LT_EQ_GT] = ACTIONS(7310), + [anon_sym_or] = ACTIONS(7308), + [anon_sym_and] = ACTIONS(7308), + [anon_sym_bitor] = ACTIONS(7308), + [anon_sym_xor] = ACTIONS(7308), + [anon_sym_bitand] = ACTIONS(7308), + [anon_sym_not_eq] = ACTIONS(7308), + [anon_sym_DASH_DASH] = ACTIONS(7310), + [anon_sym_PLUS_PLUS] = ACTIONS(7310), + [anon_sym_DOT] = ACTIONS(7308), + [anon_sym_DOT_STAR] = ACTIONS(7310), + [anon_sym_DASH_GT] = ACTIONS(7310), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7308), + [anon_sym_final] = ACTIONS(7308), + [anon_sym_override] = ACTIONS(7308), + [anon_sym_template] = ACTIONS(7308), + [anon_sym_GT2] = ACTIONS(7310), + [anon_sym_requires] = ACTIONS(7308), + [anon_sym_LBRACK_COLON] = ACTIONS(7310), }, [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), + [sym_attribute_specifier] = STATE(2497), + [sym_attribute_declaration] = STATE(5144), + [sym_type_qualifier] = STATE(2738), + [sym_alignas_qualifier] = STATE(3022), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym_ref_qualifier] = STATE(4486), + [sym__function_attributes_start] = STATE(4395), + [sym__function_exception_specification] = STATE(5118), + [sym__function_attributes_end] = STATE(6895), + [sym__function_postfix] = STATE(6109), + [sym_trailing_return_type] = STATE(6437), + [sym_noexcept] = STATE(5118), + [sym_throw_specifier] = STATE(5118), + [sym_requires_clause] = STATE(6109), + [aux_sym_type_definition_repeat1] = STATE(2497), + [aux_sym__type_definition_type_repeat1] = STATE(2738), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(7582), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6399), + [anon_sym_SEMI] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(7651), + [anon_sym___attribute__] = ACTIONS(8139), + [anon_sym___attribute] = ACTIONS(8142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(7588), + [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(7655), + [anon_sym__Alignas] = ACTIONS(7655), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(8145), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7660), + [anon_sym_override] = ACTIONS(7660), + [anon_sym_noexcept] = ACTIONS(7662), + [anon_sym_throw] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7666), }, [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), - [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(7307), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7309), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7311), - [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_final] = ACTIONS(7345), - [anon_sym_override] = ACTIONS(7345), - [anon_sym_requires] = ACTIONS(7345), - [anon_sym_DASH_GT_STAR] = ACTIONS(7345), + [sym__abstract_declarator] = STATE(7152), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2457), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9550), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7382), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7384), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7386), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(7388), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7108), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2278), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9646), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(7405), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(7407), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(7409), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym_SEMI] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(7411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6600), + [anon_sym_RBRACE] = ACTIONS(6600), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6600), }, [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__abstract_declarator] = STATE(7156), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2493), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2457), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9550), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2493), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(7382), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(7384), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(7386), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym_SEMI] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(7388), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_decltype_auto] = STATE(3044), + [sym_template_argument_list] = STATE(2659), + [aux_sym_sized_type_specifier_repeat1] = STATE(2468), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5661), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_PIPE_PIPE] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5661), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5669), + [anon_sym_BANG_EQ] = ACTIONS(5669), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5669), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(5661), + [anon_sym_GT_GT] = ACTIONS(5661), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_signed] = ACTIONS(7243), + [anon_sym_unsigned] = ACTIONS(7243), + [anon_sym_long] = ACTIONS(7243), + [anon_sym_short] = ACTIONS(7243), + [anon_sym_LBRACK] = ACTIONS(5661), + [anon_sym_RBRACK] = ACTIONS(5669), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5669), + [anon_sym_STAR_EQ] = ACTIONS(5669), + [anon_sym_SLASH_EQ] = ACTIONS(5669), + [anon_sym_PERCENT_EQ] = ACTIONS(5669), + [anon_sym_PLUS_EQ] = ACTIONS(5669), + [anon_sym_DASH_EQ] = ACTIONS(5669), + [anon_sym_LT_LT_EQ] = ACTIONS(5669), + [anon_sym_GT_GT_EQ] = ACTIONS(5669), + [anon_sym_AMP_EQ] = ACTIONS(5669), + [anon_sym_CARET_EQ] = ACTIONS(5669), + [anon_sym_PIPE_EQ] = ACTIONS(5669), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5669), + [anon_sym_or] = ACTIONS(5661), + [anon_sym_and] = ACTIONS(5661), + [anon_sym_bitor] = ACTIONS(5661), + [anon_sym_xor] = ACTIONS(5661), + [anon_sym_bitand] = ACTIONS(5661), + [anon_sym_not_eq] = ACTIONS(5661), + [anon_sym_DASH_DASH] = ACTIONS(5669), + [anon_sym_PLUS_PLUS] = ACTIONS(5669), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5669), + [anon_sym_DASH_GT] = ACTIONS(5669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7247), + [anon_sym_decltype] = ACTIONS(7249), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_requires] = ACTIONS(5661), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7279), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7279), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7279), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7279), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON_COLON] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_signed] = ACTIONS(8150), + [anon_sym_unsigned] = ACTIONS(8150), + [anon_sym_long] = ACTIONS(8150), + [anon_sym_short] = ACTIONS(8150), + [anon_sym_LBRACK] = ACTIONS(7279), + [anon_sym_RBRACK] = ACTIONS(7281), + [anon_sym_EQ] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_STAR_EQ] = ACTIONS(7281), + [anon_sym_SLASH_EQ] = ACTIONS(7281), + [anon_sym_PERCENT_EQ] = ACTIONS(7281), + [anon_sym_PLUS_EQ] = ACTIONS(7281), + [anon_sym_DASH_EQ] = ACTIONS(7281), + [anon_sym_LT_LT_EQ] = ACTIONS(7281), + [anon_sym_GT_GT_EQ] = ACTIONS(7281), + [anon_sym_AMP_EQ] = ACTIONS(7281), + [anon_sym_CARET_EQ] = ACTIONS(7281), + [anon_sym_PIPE_EQ] = ACTIONS(7281), + [anon_sym_and_eq] = ACTIONS(7279), + [anon_sym_or_eq] = ACTIONS(7279), + [anon_sym_xor_eq] = ACTIONS(7279), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7279), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7279), + [anon_sym_not_eq] = ACTIONS(7279), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7281), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7279), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_template] = ACTIONS(7279), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_LBRACK_COLON] = ACTIONS(7281), }, [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(2963), + [sym_enumerator_list] = STATE(2713), + [sym__enum_base_clause] = STATE(2547), + [sym_identifier] = ACTIONS(7390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(7392), + [anon_sym_RPAREN] = ACTIONS(7392), + [anon_sym_LPAREN2] = ACTIONS(7392), + [anon_sym_DASH] = ACTIONS(7390), + [anon_sym_PLUS] = ACTIONS(7390), + [anon_sym_STAR] = ACTIONS(7390), + [anon_sym_SLASH] = ACTIONS(7390), + [anon_sym_PERCENT] = ACTIONS(7390), + [anon_sym_PIPE_PIPE] = ACTIONS(7392), + [anon_sym_AMP_AMP] = ACTIONS(7392), + [anon_sym_PIPE] = ACTIONS(7390), + [anon_sym_CARET] = ACTIONS(7390), + [anon_sym_AMP] = ACTIONS(7390), + [anon_sym_EQ_EQ] = ACTIONS(7392), + [anon_sym_BANG_EQ] = ACTIONS(7392), + [anon_sym_GT] = ACTIONS(7390), + [anon_sym_GT_EQ] = ACTIONS(7392), + [anon_sym_LT_EQ] = ACTIONS(7390), + [anon_sym_LT] = ACTIONS(7390), + [anon_sym_LT_LT] = ACTIONS(7390), + [anon_sym_GT_GT] = ACTIONS(7390), + [anon_sym___extension__] = ACTIONS(7390), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON] = ACTIONS(8152), + [anon_sym_COLON_COLON] = ACTIONS(7392), + [anon_sym_LBRACE] = ACTIONS(8154), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym_EQ] = ACTIONS(7390), + [anon_sym_const] = ACTIONS(7390), + [anon_sym_constexpr] = ACTIONS(7390), + [anon_sym_volatile] = ACTIONS(7390), + [anon_sym_restrict] = ACTIONS(7390), + [anon_sym___restrict__] = ACTIONS(7390), + [anon_sym__Atomic] = ACTIONS(7390), + [anon_sym__Noreturn] = ACTIONS(7390), + [anon_sym_noreturn] = ACTIONS(7390), + [anon_sym__Nonnull] = ACTIONS(7390), + [anon_sym_mutable] = ACTIONS(7390), + [anon_sym_constinit] = ACTIONS(7390), + [anon_sym_consteval] = ACTIONS(7390), + [anon_sym_alignas] = ACTIONS(7390), + [anon_sym__Alignas] = ACTIONS(7390), + [anon_sym_QMARK] = ACTIONS(7392), + [anon_sym_STAR_EQ] = ACTIONS(7392), + [anon_sym_SLASH_EQ] = ACTIONS(7392), + [anon_sym_PERCENT_EQ] = ACTIONS(7392), + [anon_sym_PLUS_EQ] = ACTIONS(7392), + [anon_sym_DASH_EQ] = ACTIONS(7392), + [anon_sym_LT_LT_EQ] = ACTIONS(7392), + [anon_sym_GT_GT_EQ] = ACTIONS(7392), + [anon_sym_AMP_EQ] = ACTIONS(7392), + [anon_sym_CARET_EQ] = ACTIONS(7392), + [anon_sym_PIPE_EQ] = ACTIONS(7392), + [anon_sym_and_eq] = ACTIONS(7390), + [anon_sym_or_eq] = ACTIONS(7390), + [anon_sym_xor_eq] = ACTIONS(7390), + [anon_sym_LT_EQ_GT] = ACTIONS(7392), + [anon_sym_or] = ACTIONS(7390), + [anon_sym_and] = ACTIONS(7390), + [anon_sym_bitor] = ACTIONS(7390), + [anon_sym_xor] = ACTIONS(7390), + [anon_sym_bitand] = ACTIONS(7390), + [anon_sym_not_eq] = ACTIONS(7390), + [anon_sym_DASH_DASH] = ACTIONS(7392), + [anon_sym_PLUS_PLUS] = ACTIONS(7392), + [anon_sym_DOT] = ACTIONS(7390), + [anon_sym_DOT_STAR] = ACTIONS(7392), + [anon_sym_DASH_GT] = ACTIONS(7390), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7390), + [anon_sym_final] = ACTIONS(7390), + [anon_sym_override] = ACTIONS(7390), + [anon_sym_template] = ACTIONS(7390), + [anon_sym_requires] = ACTIONS(7390), + [anon_sym_DASH_GT_STAR] = ACTIONS(7392), + [anon_sym_LBRACK_COLON] = ACTIONS(7392), }, [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__abstract_declarator] = STATE(7176), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2457), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9550), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(7382), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(7384), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(7386), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym_SEMI] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(7388), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), [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_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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__abstract_declarator] = STATE(7153), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2457), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9550), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(7382), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(7384), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(7386), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym_SEMI] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(7388), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), - }, - [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), - }, - [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), + [sym__abstract_declarator] = STATE(7173), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2428), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2278), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9646), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2428), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(7405), + [anon_sym_SLASH] = ACTIONS(6610), [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(7407), + [anon_sym_PIPE] = ACTIONS(6610), [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_AMP] = ACTIONS(7409), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), [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_SEMI] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(7411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6608), + [anon_sym_RBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), [anon_sym_bitor] = ACTIONS(6610), - [anon_sym_xor] = ACTIONS(6608), + [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_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [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_requires] = ACTIONS(6610), - [anon_sym_DASH_GT_STAR] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6608), + }, + [STATE(2440)] = { + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(3498), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3432), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7482), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), + }, + [STATE(2441)] = { + [sym_attribute_specifier] = STATE(3476), + [sym_attribute_declaration] = STATE(7233), + [sym_type_qualifier] = STATE(3999), + [sym_alignas_qualifier] = STATE(4428), + [sym_gnu_asm_expression] = STATE(10227), + [sym_virtual_specifier] = STATE(7330), + [sym_ref_qualifier] = STATE(4547), + [sym__function_attributes_start] = STATE(4375), + [sym__function_exception_specification] = STATE(5041), + [sym__function_attributes_end] = STATE(7037), + [sym__function_postfix] = STATE(7431), + [sym_trailing_return_type] = STATE(7114), + [sym_noexcept] = STATE(5041), + [sym_throw_specifier] = STATE(5041), + [sym_requires_clause] = STATE(7431), + [aux_sym_type_definition_repeat1] = STATE(3476), + [aux_sym__type_definition_type_repeat1] = STATE(3999), + [aux_sym_attributed_declarator_repeat1] = STATE(7233), + [aux_sym__function_postfix_repeat1] = STATE(7330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(8156), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(8159), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(8162), + [anon_sym___attribute__] = ACTIONS(8164), + [anon_sym___attribute] = ACTIONS(8166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8168), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_RBRACK] = ACTIONS(6399), + [anon_sym_const] = ACTIONS(8170), + [anon_sym_constexpr] = ACTIONS(8162), + [anon_sym_volatile] = ACTIONS(8162), + [anon_sym_restrict] = ACTIONS(8162), + [anon_sym___restrict__] = ACTIONS(8162), + [anon_sym__Atomic] = ACTIONS(8162), + [anon_sym__Noreturn] = ACTIONS(8162), + [anon_sym_noreturn] = ACTIONS(8162), + [anon_sym__Nonnull] = ACTIONS(8162), + [anon_sym_mutable] = ACTIONS(8162), + [anon_sym_constinit] = ACTIONS(8162), + [anon_sym_consteval] = ACTIONS(8162), + [anon_sym_alignas] = ACTIONS(8172), + [anon_sym__Alignas] = ACTIONS(8172), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(8174), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8177), + [anon_sym_override] = ACTIONS(8177), + [anon_sym_noexcept] = ACTIONS(8180), + [anon_sym_throw] = ACTIONS(8182), + [anon_sym_requires] = ACTIONS(8184), }, [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_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), [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), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_GT2] = ACTIONS(3108), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), }, [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(3050), + [sym_field_declaration_list] = STATE(2723), + [sym_virtual_specifier] = STATE(10782), + [sym_base_class_clause] = STATE(11469), + [sym_identifier] = ACTIONS(7370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(7372), + [anon_sym_LPAREN2] = ACTIONS(7372), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_STAR] = ACTIONS(7370), + [anon_sym_SLASH] = ACTIONS(7370), + [anon_sym_PERCENT] = ACTIONS(7370), + [anon_sym_PIPE_PIPE] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7372), + [anon_sym_PIPE] = ACTIONS(7370), + [anon_sym_CARET] = ACTIONS(7370), + [anon_sym_AMP] = ACTIONS(7370), + [anon_sym_EQ_EQ] = ACTIONS(7372), + [anon_sym_BANG_EQ] = ACTIONS(7372), + [anon_sym_GT] = ACTIONS(7370), + [anon_sym_GT_EQ] = ACTIONS(7372), + [anon_sym_LT_EQ] = ACTIONS(7370), + [anon_sym_LT] = ACTIONS(7370), + [anon_sym_LT_LT] = ACTIONS(7370), + [anon_sym_GT_GT] = ACTIONS(7370), + [anon_sym___extension__] = ACTIONS(7370), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7372), + [anon_sym_LBRACE] = ACTIONS(8189), + [anon_sym_LBRACK] = ACTIONS(7370), + [anon_sym_RBRACK] = ACTIONS(7372), + [anon_sym_EQ] = ACTIONS(7370), + [anon_sym_const] = ACTIONS(7370), + [anon_sym_constexpr] = ACTIONS(7370), + [anon_sym_volatile] = ACTIONS(7370), + [anon_sym_restrict] = ACTIONS(7370), + [anon_sym___restrict__] = ACTIONS(7370), + [anon_sym__Atomic] = ACTIONS(7370), + [anon_sym__Noreturn] = ACTIONS(7370), + [anon_sym_noreturn] = ACTIONS(7370), + [anon_sym__Nonnull] = ACTIONS(7370), + [anon_sym_mutable] = ACTIONS(7370), + [anon_sym_constinit] = ACTIONS(7370), + [anon_sym_consteval] = ACTIONS(7370), + [anon_sym_alignas] = ACTIONS(7370), + [anon_sym__Alignas] = ACTIONS(7370), + [anon_sym_QMARK] = ACTIONS(7372), + [anon_sym_STAR_EQ] = ACTIONS(7372), + [anon_sym_SLASH_EQ] = ACTIONS(7372), + [anon_sym_PERCENT_EQ] = ACTIONS(7372), + [anon_sym_PLUS_EQ] = ACTIONS(7372), + [anon_sym_DASH_EQ] = ACTIONS(7372), + [anon_sym_LT_LT_EQ] = ACTIONS(7372), + [anon_sym_GT_GT_EQ] = ACTIONS(7372), + [anon_sym_AMP_EQ] = ACTIONS(7372), + [anon_sym_CARET_EQ] = ACTIONS(7372), + [anon_sym_PIPE_EQ] = ACTIONS(7372), + [anon_sym_and_eq] = ACTIONS(7370), + [anon_sym_or_eq] = ACTIONS(7370), + [anon_sym_xor_eq] = ACTIONS(7370), + [anon_sym_LT_EQ_GT] = ACTIONS(7372), + [anon_sym_or] = ACTIONS(7370), + [anon_sym_and] = ACTIONS(7370), + [anon_sym_bitor] = ACTIONS(7370), + [anon_sym_xor] = ACTIONS(7370), + [anon_sym_bitand] = ACTIONS(7370), + [anon_sym_not_eq] = ACTIONS(7370), + [anon_sym_DASH_DASH] = ACTIONS(7372), + [anon_sym_PLUS_PLUS] = ACTIONS(7372), + [anon_sym_DOT] = ACTIONS(7370), + [anon_sym_DOT_STAR] = ACTIONS(7372), + [anon_sym_DASH_GT] = ACTIONS(7372), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7370), + [anon_sym_final] = ACTIONS(7380), + [anon_sym_override] = ACTIONS(7380), + [anon_sym_template] = ACTIONS(7370), + [anon_sym_requires] = ACTIONS(7370), + [anon_sym_LBRACK_COLON] = ACTIONS(7372), }, [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(3511), + [sym_attribute_declaration] = STATE(7221), + [sym_type_qualifier] = STATE(4026), + [sym_alignas_qualifier] = STATE(4359), + [sym_gnu_asm_expression] = STATE(10250), + [sym_virtual_specifier] = STATE(7332), + [sym_ref_qualifier] = STATE(4551), + [sym__function_attributes_start] = STATE(4437), + [sym__function_exception_specification] = STATE(5033), + [sym__function_attributes_end] = STATE(7049), + [sym__function_postfix] = STATE(7572), + [sym_trailing_return_type] = STATE(7128), + [sym_noexcept] = STATE(5033), + [sym_throw_specifier] = STATE(5033), + [sym_requires_clause] = STATE(7572), + [aux_sym_type_definition_repeat1] = STATE(3511), + [aux_sym__type_definition_type_repeat1] = STATE(4026), + [aux_sym_attributed_declarator_repeat1] = STATE(7221), + [aux_sym__function_postfix_repeat1] = STATE(7332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(8191), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(8194), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6397), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym___extension__] = ACTIONS(8197), + [anon_sym___attribute__] = ACTIONS(8199), + [anon_sym___attribute] = ACTIONS(8201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8203), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(8205), + [anon_sym_constexpr] = ACTIONS(8197), + [anon_sym_volatile] = ACTIONS(8197), + [anon_sym_restrict] = ACTIONS(8197), + [anon_sym___restrict__] = ACTIONS(8197), + [anon_sym__Atomic] = ACTIONS(8197), + [anon_sym__Noreturn] = ACTIONS(8197), + [anon_sym_noreturn] = ACTIONS(8197), + [anon_sym__Nonnull] = ACTIONS(8197), + [anon_sym_mutable] = ACTIONS(8197), + [anon_sym_constinit] = ACTIONS(8197), + [anon_sym_consteval] = ACTIONS(8197), + [anon_sym_alignas] = ACTIONS(8207), + [anon_sym__Alignas] = ACTIONS(8207), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(8209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8212), + [anon_sym_override] = ACTIONS(8212), + [anon_sym_GT2] = ACTIONS(6399), + [anon_sym_noexcept] = ACTIONS(8215), + [anon_sym_throw] = ACTIONS(8217), + [anon_sym_requires] = ACTIONS(8219), }, [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5550), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11073), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_type_parameter_declaration] = STATE(11073), + [sym_variadic_type_parameter_declaration] = STATE(11073), + [sym_optional_type_parameter_declaration] = STATE(11073), + [sym_template_template_parameter_declaration] = STATE(11073), + [sym_optional_parameter_declaration] = STATE(11073), + [sym_variadic_parameter_declaration] = STATE(11073), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(8224), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(8226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(8228), + [anon_sym_GT2] = ACTIONS(8230), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), - [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(2446), + [sym_alignas_qualifier] = STATE(2649), + [aux_sym__type_definition_type_repeat1] = STATE(2446), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [aux_sym_preproc_if_token2] = ACTIONS(7049), + [aux_sym_preproc_else_token1] = ACTIONS(7049), + [aux_sym_preproc_elif_token1] = ACTIONS(7047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7049), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7049), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7049), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7049), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7049), + [anon_sym_GT_GT] = ACTIONS(7049), + [anon_sym_SEMI] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(8232), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7049), + [anon_sym___based] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_RBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8232), + [anon_sym_constexpr] = ACTIONS(8232), + [anon_sym_volatile] = ACTIONS(8232), + [anon_sym_restrict] = ACTIONS(8232), + [anon_sym___restrict__] = ACTIONS(8232), + [anon_sym__Atomic] = ACTIONS(8232), + [anon_sym__Noreturn] = ACTIONS(8232), + [anon_sym_noreturn] = ACTIONS(8232), + [anon_sym__Nonnull] = ACTIONS(8232), + [anon_sym_mutable] = ACTIONS(8232), + [anon_sym_constinit] = ACTIONS(8232), + [anon_sym_consteval] = ACTIONS(8232), + [anon_sym_alignas] = ACTIONS(8235), + [anon_sym__Alignas] = ACTIONS(8235), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), + [anon_sym_COLON_RBRACK] = ACTIONS(7049), }, [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_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(3519), + [sym__function_postfix] = STATE(3975), + [sym_trailing_return_type] = STATE(3462), + [sym_requires_clause] = STATE(3975), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7621), + [anon_sym_or_eq] = ACTIONS(7621), + [anon_sym_xor_eq] = ACTIONS(7621), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(7625), [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_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2435), + [sym_identifier] = ACTIONS(7269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7271), + [anon_sym_COMMA] = ACTIONS(7271), + [anon_sym_LPAREN2] = ACTIONS(7271), + [anon_sym_DASH] = ACTIONS(7269), + [anon_sym_PLUS] = ACTIONS(7269), + [anon_sym_STAR] = ACTIONS(7269), + [anon_sym_SLASH] = ACTIONS(7269), + [anon_sym_PERCENT] = ACTIONS(7269), + [anon_sym_PIPE_PIPE] = ACTIONS(7271), + [anon_sym_AMP_AMP] = ACTIONS(7271), + [anon_sym_PIPE] = ACTIONS(7269), + [anon_sym_CARET] = ACTIONS(7269), + [anon_sym_AMP] = ACTIONS(7269), + [anon_sym_EQ_EQ] = ACTIONS(7271), + [anon_sym_BANG_EQ] = ACTIONS(7271), + [anon_sym_GT] = ACTIONS(7269), + [anon_sym_GT_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7269), + [anon_sym_LT] = ACTIONS(7269), + [anon_sym_LT_LT] = ACTIONS(7269), + [anon_sym_GT_GT] = ACTIONS(7269), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym___attribute__] = ACTIONS(7269), + [anon_sym___attribute] = ACTIONS(7269), + [anon_sym_COLON_COLON] = ACTIONS(7271), + [anon_sym_LBRACE] = ACTIONS(7271), + [anon_sym_signed] = ACTIONS(8238), + [anon_sym_unsigned] = ACTIONS(8238), + [anon_sym_long] = ACTIONS(8238), + [anon_sym_short] = ACTIONS(8238), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_RBRACK] = ACTIONS(7271), + [anon_sym_EQ] = ACTIONS(7269), + [anon_sym_const] = ACTIONS(7269), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7271), + [anon_sym_STAR_EQ] = ACTIONS(7271), + [anon_sym_SLASH_EQ] = ACTIONS(7271), + [anon_sym_PERCENT_EQ] = ACTIONS(7271), + [anon_sym_PLUS_EQ] = ACTIONS(7271), + [anon_sym_DASH_EQ] = ACTIONS(7271), + [anon_sym_LT_LT_EQ] = ACTIONS(7271), + [anon_sym_GT_GT_EQ] = ACTIONS(7271), + [anon_sym_AMP_EQ] = ACTIONS(7271), + [anon_sym_CARET_EQ] = ACTIONS(7271), + [anon_sym_PIPE_EQ] = ACTIONS(7271), + [anon_sym_and_eq] = ACTIONS(7269), + [anon_sym_or_eq] = ACTIONS(7269), + [anon_sym_xor_eq] = ACTIONS(7269), + [anon_sym_LT_EQ_GT] = ACTIONS(7271), + [anon_sym_or] = ACTIONS(7269), + [anon_sym_and] = ACTIONS(7269), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7269), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7271), + [anon_sym_PLUS_PLUS] = ACTIONS(7271), + [anon_sym_DOT] = ACTIONS(7269), + [anon_sym_DOT_STAR] = ACTIONS(7271), + [anon_sym_DASH_GT] = ACTIONS(7271), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7269), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_template] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_LBRACK_COLON] = ACTIONS(7271), }, [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), + [sym_attribute_specifier] = STATE(3511), + [sym_attribute_declaration] = STATE(7221), + [sym_type_qualifier] = STATE(4026), + [sym_alignas_qualifier] = STATE(4359), + [sym_gnu_asm_expression] = STATE(10250), + [sym_virtual_specifier] = STATE(7332), + [sym_ref_qualifier] = STATE(4450), + [sym__function_attributes_start] = STATE(4388), + [sym__function_exception_specification] = STATE(5042), + [sym__function_attributes_end] = STATE(7042), + [sym__function_postfix] = STATE(7572), + [sym_trailing_return_type] = STATE(7159), + [sym_noexcept] = STATE(5042), + [sym_throw_specifier] = STATE(5042), + [sym_requires_clause] = STATE(7572), + [aux_sym_type_definition_repeat1] = STATE(3511), + [aux_sym__type_definition_type_repeat1] = STATE(4026), + [aux_sym_attributed_declarator_repeat1] = STATE(7221), + [aux_sym__function_postfix_repeat1] = STATE(7332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(8191), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(8194), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6397), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6397), + [anon_sym___extension__] = ACTIONS(8197), + [anon_sym___attribute__] = ACTIONS(8199), + [anon_sym___attribute] = ACTIONS(8201), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8203), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(8205), + [anon_sym_constexpr] = ACTIONS(8197), + [anon_sym_volatile] = ACTIONS(8197), + [anon_sym_restrict] = ACTIONS(8197), + [anon_sym___restrict__] = ACTIONS(8197), + [anon_sym__Atomic] = ACTIONS(8197), + [anon_sym__Noreturn] = ACTIONS(8197), + [anon_sym_noreturn] = ACTIONS(8197), + [anon_sym__Nonnull] = ACTIONS(8197), + [anon_sym_mutable] = ACTIONS(8197), + [anon_sym_constinit] = ACTIONS(8197), + [anon_sym_consteval] = ACTIONS(8197), + [anon_sym_alignas] = ACTIONS(8207), + [anon_sym__Alignas] = ACTIONS(8207), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(8209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8240), + [anon_sym_override] = ACTIONS(8240), + [anon_sym_GT2] = ACTIONS(6399), + [anon_sym_noexcept] = ACTIONS(8215), + [anon_sym_throw] = ACTIONS(8217), + [anon_sym_requires] = ACTIONS(8242), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8244), + [anon_sym_unsigned] = ACTIONS(8244), + [anon_sym_long] = ACTIONS(8244), + [anon_sym_short] = ACTIONS(8244), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_RBRACK] = ACTIONS(7175), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), }, [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), + [sym_attribute_specifier] = STATE(2997), + [sym_field_declaration_list] = STATE(2749), + [sym_virtual_specifier] = STATE(10601), + [sym_base_class_clause] = STATE(11543), + [sym_identifier] = ACTIONS(7370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(7372), + [anon_sym_LPAREN2] = ACTIONS(7372), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_STAR] = ACTIONS(7370), + [anon_sym_SLASH] = ACTIONS(7370), + [anon_sym_PERCENT] = ACTIONS(7370), + [anon_sym_PIPE_PIPE] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7372), + [anon_sym_PIPE] = ACTIONS(7370), + [anon_sym_CARET] = ACTIONS(7370), + [anon_sym_AMP] = ACTIONS(7370), + [anon_sym_EQ_EQ] = ACTIONS(7372), + [anon_sym_BANG_EQ] = ACTIONS(7372), + [anon_sym_GT] = ACTIONS(7370), + [anon_sym_GT_EQ] = ACTIONS(7370), + [anon_sym_LT_EQ] = ACTIONS(7370), + [anon_sym_LT] = ACTIONS(7370), + [anon_sym_LT_LT] = ACTIONS(7370), + [anon_sym_GT_GT] = ACTIONS(7370), + [anon_sym___extension__] = ACTIONS(7370), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7372), + [anon_sym_LBRACE] = ACTIONS(8249), + [anon_sym_LBRACK] = ACTIONS(7370), + [anon_sym_EQ] = ACTIONS(7370), + [anon_sym_const] = ACTIONS(7370), + [anon_sym_constexpr] = ACTIONS(7370), + [anon_sym_volatile] = ACTIONS(7370), + [anon_sym_restrict] = ACTIONS(7370), + [anon_sym___restrict__] = ACTIONS(7370), + [anon_sym__Atomic] = ACTIONS(7370), + [anon_sym__Noreturn] = ACTIONS(7370), + [anon_sym_noreturn] = ACTIONS(7370), + [anon_sym__Nonnull] = ACTIONS(7370), + [anon_sym_mutable] = ACTIONS(7370), + [anon_sym_constinit] = ACTIONS(7370), + [anon_sym_consteval] = ACTIONS(7370), + [anon_sym_alignas] = ACTIONS(7370), + [anon_sym__Alignas] = ACTIONS(7370), + [anon_sym_QMARK] = ACTIONS(7372), + [anon_sym_STAR_EQ] = ACTIONS(7372), + [anon_sym_SLASH_EQ] = ACTIONS(7372), + [anon_sym_PERCENT_EQ] = ACTIONS(7372), + [anon_sym_PLUS_EQ] = ACTIONS(7372), + [anon_sym_DASH_EQ] = ACTIONS(7372), + [anon_sym_LT_LT_EQ] = ACTIONS(7372), + [anon_sym_GT_GT_EQ] = ACTIONS(7370), + [anon_sym_AMP_EQ] = ACTIONS(7372), + [anon_sym_CARET_EQ] = ACTIONS(7372), + [anon_sym_PIPE_EQ] = ACTIONS(7372), + [anon_sym_and_eq] = ACTIONS(7370), + [anon_sym_or_eq] = ACTIONS(7370), + [anon_sym_xor_eq] = ACTIONS(7370), + [anon_sym_LT_EQ_GT] = ACTIONS(7372), + [anon_sym_or] = ACTIONS(7370), + [anon_sym_and] = ACTIONS(7370), + [anon_sym_bitor] = ACTIONS(7370), + [anon_sym_xor] = ACTIONS(7370), + [anon_sym_bitand] = ACTIONS(7370), + [anon_sym_not_eq] = ACTIONS(7370), + [anon_sym_DASH_DASH] = ACTIONS(7372), + [anon_sym_PLUS_PLUS] = ACTIONS(7372), + [anon_sym_DOT] = ACTIONS(7370), + [anon_sym_DOT_STAR] = ACTIONS(7372), + [anon_sym_DASH_GT] = ACTIONS(7372), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7370), + [anon_sym_final] = ACTIONS(7380), + [anon_sym_override] = ACTIONS(7380), + [anon_sym_template] = ACTIONS(7370), + [anon_sym_GT2] = ACTIONS(7372), + [anon_sym_requires] = ACTIONS(7370), + [anon_sym_LBRACK_COLON] = ACTIONS(7372), }, [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), + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), [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___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), [anon_sym_constexpr] = ACTIONS(3118), [anon_sym_volatile] = ACTIONS(3118), [anon_sym_restrict] = ACTIONS(3118), @@ -352100,4189 +360283,3943 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), [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_LT_EQ_GT] = ACTIONS(3108), + [anon_sym_or] = ACTIONS(3118), + [anon_sym_and] = ACTIONS(3118), [anon_sym_bitor] = ACTIONS(3118), - [anon_sym_xor] = ACTIONS(3128), + [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(3118), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), [anon_sym_final] = ACTIONS(3118), [anon_sym_override] = ACTIONS(3118), - [anon_sym_noexcept] = ACTIONS(3118), - [anon_sym_throw] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), }, [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), - }, - [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__abstract_declarator] = STATE(7172), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2278), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9646), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(7405), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(7407), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(7409), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(6618), + [anon_sym_COLON_COLON] = ACTIONS(7411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6616), + [anon_sym_RBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), [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_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6616), + }, + [STATE(2454)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7253), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(8137), + [anon_sym_unsigned] = ACTIONS(8137), + [anon_sym_long] = ACTIONS(8137), + [anon_sym_short] = ACTIONS(8137), + [anon_sym_LBRACK] = ACTIONS(7253), + [anon_sym_EQ] = ACTIONS(7253), + [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(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7253), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7253), + [anon_sym_or_eq] = ACTIONS(7253), + [anon_sym_xor_eq] = ACTIONS(7253), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7253), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_template] = ACTIONS(7253), + [anon_sym_GT2] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_LBRACK_COLON] = ACTIONS(7255), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(7296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7298), + [anon_sym_LPAREN2] = ACTIONS(7298), + [anon_sym_DASH] = ACTIONS(7296), + [anon_sym_PLUS] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7296), + [anon_sym_SLASH] = ACTIONS(7296), + [anon_sym_PERCENT] = ACTIONS(7296), + [anon_sym_PIPE_PIPE] = ACTIONS(7298), + [anon_sym_AMP_AMP] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7296), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_EQ_EQ] = ACTIONS(7298), + [anon_sym_BANG_EQ] = ACTIONS(7298), + [anon_sym_GT] = ACTIONS(7296), + [anon_sym_GT_EQ] = ACTIONS(7298), + [anon_sym_LT_EQ] = ACTIONS(7296), + [anon_sym_LT] = ACTIONS(7296), + [anon_sym_LT_LT] = ACTIONS(7296), + [anon_sym_GT_GT] = ACTIONS(7296), + [anon_sym___extension__] = ACTIONS(7296), + [anon_sym___attribute__] = ACTIONS(7296), + [anon_sym___attribute] = ACTIONS(7296), + [anon_sym_COLON_COLON] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(8150), + [anon_sym_unsigned] = ACTIONS(8150), + [anon_sym_long] = ACTIONS(8150), + [anon_sym_short] = ACTIONS(8150), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_RBRACK] = ACTIONS(7298), + [anon_sym_EQ] = ACTIONS(7296), + [anon_sym_const] = ACTIONS(7296), + [anon_sym_constexpr] = ACTIONS(7296), + [anon_sym_volatile] = ACTIONS(7296), + [anon_sym_restrict] = ACTIONS(7296), + [anon_sym___restrict__] = ACTIONS(7296), + [anon_sym__Atomic] = ACTIONS(7296), + [anon_sym__Noreturn] = ACTIONS(7296), + [anon_sym_noreturn] = ACTIONS(7296), + [anon_sym__Nonnull] = ACTIONS(7296), + [anon_sym_mutable] = ACTIONS(7296), + [anon_sym_constinit] = ACTIONS(7296), + [anon_sym_consteval] = ACTIONS(7296), + [anon_sym_alignas] = ACTIONS(7296), + [anon_sym__Alignas] = ACTIONS(7296), + [anon_sym_QMARK] = ACTIONS(7298), + [anon_sym_STAR_EQ] = ACTIONS(7298), + [anon_sym_SLASH_EQ] = ACTIONS(7298), + [anon_sym_PERCENT_EQ] = ACTIONS(7298), + [anon_sym_PLUS_EQ] = ACTIONS(7298), + [anon_sym_DASH_EQ] = ACTIONS(7298), + [anon_sym_LT_LT_EQ] = ACTIONS(7298), + [anon_sym_GT_GT_EQ] = ACTIONS(7298), + [anon_sym_AMP_EQ] = ACTIONS(7298), + [anon_sym_CARET_EQ] = ACTIONS(7298), + [anon_sym_PIPE_EQ] = ACTIONS(7298), + [anon_sym_and_eq] = ACTIONS(7296), + [anon_sym_or_eq] = ACTIONS(7296), + [anon_sym_xor_eq] = ACTIONS(7296), + [anon_sym_LT_EQ_GT] = ACTIONS(7298), + [anon_sym_or] = ACTIONS(7296), + [anon_sym_and] = ACTIONS(7296), + [anon_sym_bitor] = ACTIONS(7296), + [anon_sym_xor] = ACTIONS(7296), + [anon_sym_bitand] = ACTIONS(7296), + [anon_sym_not_eq] = ACTIONS(7296), + [anon_sym_DASH_DASH] = ACTIONS(7298), + [anon_sym_PLUS_PLUS] = ACTIONS(7298), + [anon_sym_DOT] = ACTIONS(7296), + [anon_sym_DOT_STAR] = ACTIONS(7298), + [anon_sym_DASH_GT] = ACTIONS(7298), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7296), + [anon_sym_final] = ACTIONS(7296), + [anon_sym_override] = ACTIONS(7296), + [anon_sym_template] = ACTIONS(7296), + [anon_sym_requires] = ACTIONS(7296), + [anon_sym_LBRACK_COLON] = ACTIONS(7298), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2484), + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7263), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7263), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7263), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON_COLON] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_signed] = ACTIONS(8251), + [anon_sym_unsigned] = ACTIONS(8251), + [anon_sym_long] = ACTIONS(8251), + [anon_sym_short] = ACTIONS(8251), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym_EQ] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_STAR_EQ] = ACTIONS(7265), + [anon_sym_SLASH_EQ] = ACTIONS(7265), + [anon_sym_PERCENT_EQ] = ACTIONS(7265), + [anon_sym_PLUS_EQ] = ACTIONS(7265), + [anon_sym_DASH_EQ] = ACTIONS(7265), + [anon_sym_LT_LT_EQ] = ACTIONS(7265), + [anon_sym_GT_GT_EQ] = ACTIONS(7263), + [anon_sym_AMP_EQ] = ACTIONS(7265), + [anon_sym_CARET_EQ] = ACTIONS(7265), + [anon_sym_PIPE_EQ] = ACTIONS(7265), + [anon_sym_and_eq] = ACTIONS(7263), + [anon_sym_or_eq] = ACTIONS(7263), + [anon_sym_xor_eq] = ACTIONS(7263), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7263), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7263), + [anon_sym_not_eq] = ACTIONS(7263), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7265), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7263), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_template] = ACTIONS(7263), + [anon_sym_GT2] = ACTIONS(7265), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_LBRACK_COLON] = ACTIONS(7265), }, [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), + [sym_attribute_specifier] = STATE(2497), + [sym_attribute_declaration] = STATE(5144), + [sym_type_qualifier] = STATE(2738), + [sym_alignas_qualifier] = STATE(3022), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym_ref_qualifier] = STATE(4533), + [sym__function_attributes_start] = STATE(4426), + [sym__function_exception_specification] = STATE(5067), + [sym__function_attributes_end] = STATE(6911), + [sym__function_postfix] = STATE(6109), + [sym_trailing_return_type] = STATE(6492), + [sym_noexcept] = STATE(5067), + [sym_throw_specifier] = STATE(5067), + [sym_requires_clause] = STATE(6109), + [aux_sym_type_definition_repeat1] = STATE(2497), + [aux_sym__type_definition_type_repeat1] = STATE(2738), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(7582), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(7585), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6399), + [anon_sym_SEMI] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(7651), + [anon_sym___attribute__] = ACTIONS(8139), + [anon_sym___attribute] = ACTIONS(8142), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_const] = ACTIONS(7588), + [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(7655), + [anon_sym__Alignas] = ACTIONS(7655), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(8145), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7696), + [anon_sym_override] = ACTIONS(7696), + [anon_sym_noexcept] = ACTIONS(7662), + [anon_sym_throw] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7699), }, [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), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_RBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2488), + [sym_identifier] = ACTIONS(7269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7271), + [anon_sym_COMMA] = ACTIONS(7271), + [anon_sym_LPAREN2] = ACTIONS(7271), + [anon_sym_DASH] = ACTIONS(7269), + [anon_sym_PLUS] = ACTIONS(7269), + [anon_sym_STAR] = ACTIONS(7269), + [anon_sym_SLASH] = ACTIONS(7269), + [anon_sym_PERCENT] = ACTIONS(7269), + [anon_sym_PIPE_PIPE] = ACTIONS(7271), + [anon_sym_AMP_AMP] = ACTIONS(7271), + [anon_sym_PIPE] = ACTIONS(7269), + [anon_sym_CARET] = ACTIONS(7269), + [anon_sym_AMP] = ACTIONS(7269), + [anon_sym_EQ_EQ] = ACTIONS(7271), + [anon_sym_BANG_EQ] = ACTIONS(7271), + [anon_sym_GT] = ACTIONS(7269), + [anon_sym_GT_EQ] = ACTIONS(7269), + [anon_sym_LT_EQ] = ACTIONS(7269), + [anon_sym_LT] = ACTIONS(7269), + [anon_sym_LT_LT] = ACTIONS(7269), + [anon_sym_GT_GT] = ACTIONS(7269), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym___attribute__] = ACTIONS(7269), + [anon_sym___attribute] = ACTIONS(7269), + [anon_sym_COLON_COLON] = ACTIONS(7271), + [anon_sym_LBRACE] = ACTIONS(7271), + [anon_sym_signed] = ACTIONS(8253), + [anon_sym_unsigned] = ACTIONS(8253), + [anon_sym_long] = ACTIONS(8253), + [anon_sym_short] = ACTIONS(8253), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7269), + [anon_sym_const] = ACTIONS(7269), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7271), + [anon_sym_STAR_EQ] = ACTIONS(7271), + [anon_sym_SLASH_EQ] = ACTIONS(7271), + [anon_sym_PERCENT_EQ] = ACTIONS(7271), + [anon_sym_PLUS_EQ] = ACTIONS(7271), + [anon_sym_DASH_EQ] = ACTIONS(7271), + [anon_sym_LT_LT_EQ] = ACTIONS(7271), + [anon_sym_GT_GT_EQ] = ACTIONS(7269), + [anon_sym_AMP_EQ] = ACTIONS(7271), + [anon_sym_CARET_EQ] = ACTIONS(7271), + [anon_sym_PIPE_EQ] = ACTIONS(7271), + [anon_sym_and_eq] = ACTIONS(7269), + [anon_sym_or_eq] = ACTIONS(7269), + [anon_sym_xor_eq] = ACTIONS(7269), + [anon_sym_LT_EQ_GT] = ACTIONS(7271), + [anon_sym_or] = ACTIONS(7269), + [anon_sym_and] = ACTIONS(7269), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7269), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7271), + [anon_sym_PLUS_PLUS] = ACTIONS(7271), + [anon_sym_DOT] = ACTIONS(7269), + [anon_sym_DOT_STAR] = ACTIONS(7271), + [anon_sym_DASH_GT] = ACTIONS(7271), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7269), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_template] = ACTIONS(7269), + [anon_sym_GT2] = ACTIONS(7271), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_LBRACK_COLON] = ACTIONS(7271), }, [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), + [sym_attribute_specifier] = STATE(3476), + [sym_attribute_declaration] = STATE(7233), + [sym_type_qualifier] = STATE(3999), + [sym_alignas_qualifier] = STATE(4428), + [sym_gnu_asm_expression] = STATE(10227), + [sym_virtual_specifier] = STATE(7330), + [sym_ref_qualifier] = STATE(4552), + [sym__function_attributes_start] = STATE(4350), + [sym__function_exception_specification] = STATE(5122), + [sym__function_attributes_end] = STATE(7065), + [sym__function_postfix] = STATE(7431), + [sym_trailing_return_type] = STATE(7079), + [sym_noexcept] = STATE(5122), + [sym_throw_specifier] = STATE(5122), + [sym_requires_clause] = STATE(7431), + [aux_sym_type_definition_repeat1] = STATE(3476), + [aux_sym__type_definition_type_repeat1] = STATE(3999), + [aux_sym_attributed_declarator_repeat1] = STATE(7233), + [aux_sym__function_postfix_repeat1] = STATE(7330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6399), + [anon_sym_COMMA] = ACTIONS(6399), + [anon_sym_LPAREN2] = ACTIONS(6399), + [anon_sym_DASH] = ACTIONS(6397), + [anon_sym_PLUS] = ACTIONS(6397), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6397), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6399), + [anon_sym_AMP_AMP] = ACTIONS(8156), + [anon_sym_PIPE] = ACTIONS(6397), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(8159), + [anon_sym_EQ_EQ] = ACTIONS(6399), + [anon_sym_BANG_EQ] = ACTIONS(6399), + [anon_sym_GT] = ACTIONS(6397), + [anon_sym_GT_EQ] = ACTIONS(6399), + [anon_sym_LT_EQ] = ACTIONS(6397), + [anon_sym_LT] = ACTIONS(6397), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6399), + [anon_sym___extension__] = ACTIONS(8162), + [anon_sym___attribute__] = ACTIONS(8164), + [anon_sym___attribute] = ACTIONS(8166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8168), + [anon_sym_LBRACK] = ACTIONS(6397), + [anon_sym_RBRACK] = ACTIONS(6399), + [anon_sym_const] = ACTIONS(8170), + [anon_sym_constexpr] = ACTIONS(8162), + [anon_sym_volatile] = ACTIONS(8162), + [anon_sym_restrict] = ACTIONS(8162), + [anon_sym___restrict__] = ACTIONS(8162), + [anon_sym__Atomic] = ACTIONS(8162), + [anon_sym__Noreturn] = ACTIONS(8162), + [anon_sym_noreturn] = ACTIONS(8162), + [anon_sym__Nonnull] = ACTIONS(8162), + [anon_sym_mutable] = ACTIONS(8162), + [anon_sym_constinit] = ACTIONS(8162), + [anon_sym_consteval] = ACTIONS(8162), + [anon_sym_alignas] = ACTIONS(8172), + [anon_sym__Alignas] = ACTIONS(8172), + [anon_sym_QMARK] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6399), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6399), + [anon_sym_PLUS_PLUS] = ACTIONS(6399), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(6397), + [anon_sym_DOT_STAR] = ACTIONS(6399), + [anon_sym_DASH_GT] = ACTIONS(8174), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8255), + [anon_sym_override] = ACTIONS(8255), + [anon_sym_noexcept] = ACTIONS(8180), + [anon_sym_throw] = ACTIONS(8182), + [anon_sym_requires] = ACTIONS(8257), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(7304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7306), + [anon_sym_LPAREN2] = ACTIONS(7306), + [anon_sym_DASH] = ACTIONS(7304), + [anon_sym_PLUS] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7304), + [anon_sym_SLASH] = ACTIONS(7304), + [anon_sym_PERCENT] = ACTIONS(7304), + [anon_sym_PIPE_PIPE] = ACTIONS(7306), + [anon_sym_AMP_AMP] = ACTIONS(7306), + [anon_sym_PIPE] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(7304), + [anon_sym_AMP] = ACTIONS(7304), + [anon_sym_EQ_EQ] = ACTIONS(7306), + [anon_sym_BANG_EQ] = ACTIONS(7306), + [anon_sym_GT] = ACTIONS(7304), + [anon_sym_GT_EQ] = ACTIONS(7306), + [anon_sym_LT_EQ] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7304), + [anon_sym_LT_LT] = ACTIONS(7304), + [anon_sym_GT_GT] = ACTIONS(7304), + [anon_sym___extension__] = ACTIONS(7304), + [anon_sym___attribute__] = ACTIONS(7304), + [anon_sym___attribute] = ACTIONS(7304), + [anon_sym_COLON_COLON] = ACTIONS(7306), + [anon_sym_LBRACE] = ACTIONS(7306), + [anon_sym_signed] = ACTIONS(8150), + [anon_sym_unsigned] = ACTIONS(8150), + [anon_sym_long] = ACTIONS(8150), + [anon_sym_short] = ACTIONS(8150), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_RBRACK] = ACTIONS(7306), + [anon_sym_EQ] = ACTIONS(7304), + [anon_sym_const] = ACTIONS(7304), + [anon_sym_constexpr] = ACTIONS(7304), + [anon_sym_volatile] = ACTIONS(7304), + [anon_sym_restrict] = ACTIONS(7304), + [anon_sym___restrict__] = ACTIONS(7304), + [anon_sym__Atomic] = ACTIONS(7304), + [anon_sym__Noreturn] = ACTIONS(7304), + [anon_sym_noreturn] = ACTIONS(7304), + [anon_sym__Nonnull] = ACTIONS(7304), + [anon_sym_mutable] = ACTIONS(7304), + [anon_sym_constinit] = ACTIONS(7304), + [anon_sym_consteval] = ACTIONS(7304), + [anon_sym_alignas] = ACTIONS(7304), + [anon_sym__Alignas] = ACTIONS(7304), + [anon_sym_QMARK] = ACTIONS(7306), + [anon_sym_STAR_EQ] = ACTIONS(7306), + [anon_sym_SLASH_EQ] = ACTIONS(7306), + [anon_sym_PERCENT_EQ] = ACTIONS(7306), + [anon_sym_PLUS_EQ] = ACTIONS(7306), + [anon_sym_DASH_EQ] = ACTIONS(7306), + [anon_sym_LT_LT_EQ] = ACTIONS(7306), + [anon_sym_GT_GT_EQ] = ACTIONS(7306), + [anon_sym_AMP_EQ] = ACTIONS(7306), + [anon_sym_CARET_EQ] = ACTIONS(7306), + [anon_sym_PIPE_EQ] = ACTIONS(7306), + [anon_sym_and_eq] = ACTIONS(7304), + [anon_sym_or_eq] = ACTIONS(7304), + [anon_sym_xor_eq] = ACTIONS(7304), + [anon_sym_LT_EQ_GT] = ACTIONS(7306), + [anon_sym_or] = ACTIONS(7304), + [anon_sym_and] = ACTIONS(7304), + [anon_sym_bitor] = ACTIONS(7304), + [anon_sym_xor] = ACTIONS(7304), + [anon_sym_bitand] = ACTIONS(7304), + [anon_sym_not_eq] = ACTIONS(7304), + [anon_sym_DASH_DASH] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(7306), + [anon_sym_DOT] = ACTIONS(7304), + [anon_sym_DOT_STAR] = ACTIONS(7306), + [anon_sym_DASH_GT] = ACTIONS(7306), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7304), + [anon_sym_final] = ACTIONS(7304), + [anon_sym_override] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7304), + [anon_sym_requires] = ACTIONS(7304), + [anon_sym_LBRACK_COLON] = ACTIONS(7306), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2482), + [sym_identifier] = ACTIONS(7316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7318), + [anon_sym_LPAREN2] = ACTIONS(7318), + [anon_sym_DASH] = ACTIONS(7316), + [anon_sym_PLUS] = ACTIONS(7316), + [anon_sym_STAR] = ACTIONS(7316), + [anon_sym_SLASH] = ACTIONS(7316), + [anon_sym_PERCENT] = ACTIONS(7316), + [anon_sym_PIPE_PIPE] = ACTIONS(7318), + [anon_sym_AMP_AMP] = ACTIONS(7318), + [anon_sym_PIPE] = ACTIONS(7316), + [anon_sym_CARET] = ACTIONS(7316), + [anon_sym_AMP] = ACTIONS(7316), + [anon_sym_EQ_EQ] = ACTIONS(7318), + [anon_sym_BANG_EQ] = ACTIONS(7318), + [anon_sym_GT] = ACTIONS(7316), + [anon_sym_GT_EQ] = ACTIONS(7316), + [anon_sym_LT_EQ] = ACTIONS(7316), + [anon_sym_LT] = ACTIONS(7316), + [anon_sym_LT_LT] = ACTIONS(7316), + [anon_sym_GT_GT] = ACTIONS(7316), + [anon_sym___extension__] = ACTIONS(7316), + [anon_sym___attribute__] = ACTIONS(7316), + [anon_sym___attribute] = ACTIONS(7316), + [anon_sym_COLON_COLON] = ACTIONS(7318), + [anon_sym_LBRACE] = ACTIONS(7318), + [anon_sym_signed] = ACTIONS(8259), + [anon_sym_unsigned] = ACTIONS(8259), + [anon_sym_long] = ACTIONS(8259), + [anon_sym_short] = ACTIONS(8259), + [anon_sym_LBRACK] = ACTIONS(7316), + [anon_sym_EQ] = ACTIONS(7316), + [anon_sym_const] = ACTIONS(7316), + [anon_sym_constexpr] = ACTIONS(7316), + [anon_sym_volatile] = ACTIONS(7316), + [anon_sym_restrict] = ACTIONS(7316), + [anon_sym___restrict__] = ACTIONS(7316), + [anon_sym__Atomic] = ACTIONS(7316), + [anon_sym__Noreturn] = ACTIONS(7316), + [anon_sym_noreturn] = ACTIONS(7316), + [anon_sym__Nonnull] = ACTIONS(7316), + [anon_sym_mutable] = ACTIONS(7316), + [anon_sym_constinit] = ACTIONS(7316), + [anon_sym_consteval] = ACTIONS(7316), + [anon_sym_alignas] = ACTIONS(7316), + [anon_sym__Alignas] = ACTIONS(7316), + [anon_sym_QMARK] = ACTIONS(7318), + [anon_sym_STAR_EQ] = ACTIONS(7318), + [anon_sym_SLASH_EQ] = ACTIONS(7318), + [anon_sym_PERCENT_EQ] = ACTIONS(7318), + [anon_sym_PLUS_EQ] = ACTIONS(7318), + [anon_sym_DASH_EQ] = ACTIONS(7318), + [anon_sym_LT_LT_EQ] = ACTIONS(7318), + [anon_sym_GT_GT_EQ] = ACTIONS(7316), + [anon_sym_AMP_EQ] = ACTIONS(7318), + [anon_sym_CARET_EQ] = ACTIONS(7318), + [anon_sym_PIPE_EQ] = ACTIONS(7318), + [anon_sym_and_eq] = ACTIONS(7316), + [anon_sym_or_eq] = ACTIONS(7316), + [anon_sym_xor_eq] = ACTIONS(7316), + [anon_sym_LT_EQ_GT] = ACTIONS(7318), + [anon_sym_or] = ACTIONS(7316), + [anon_sym_and] = ACTIONS(7316), + [anon_sym_bitor] = ACTIONS(7316), + [anon_sym_xor] = ACTIONS(7316), + [anon_sym_bitand] = ACTIONS(7316), + [anon_sym_not_eq] = ACTIONS(7316), + [anon_sym_DASH_DASH] = ACTIONS(7318), + [anon_sym_PLUS_PLUS] = ACTIONS(7318), + [anon_sym_DOT] = ACTIONS(7316), + [anon_sym_DOT_STAR] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(7318), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7316), + [anon_sym_final] = ACTIONS(7316), + [anon_sym_override] = ACTIONS(7316), + [anon_sym_template] = ACTIONS(7316), + [anon_sym_GT2] = ACTIONS(7318), + [anon_sym_requires] = ACTIONS(7316), + [anon_sym_LBRACK_COLON] = ACTIONS(7318), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(8150), + [anon_sym_unsigned] = ACTIONS(8150), + [anon_sym_long] = ACTIONS(8150), + [anon_sym_short] = ACTIONS(8150), + [anon_sym_LBRACK] = ACTIONS(7253), + [anon_sym_RBRACK] = ACTIONS(7255), + [anon_sym_EQ] = ACTIONS(7253), + [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(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_and_eq] = ACTIONS(7253), + [anon_sym_or_eq] = ACTIONS(7253), + [anon_sym_xor_eq] = ACTIONS(7253), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7253), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_template] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_LBRACK_COLON] = ACTIONS(7255), }, [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), + [sym__abstract_declarator] = STATE(7120), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2437), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2457), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9550), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2437), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(7382), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(7384), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(7386), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym_SEMI] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(7388), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_type_qualifier] = STATE(2446), + [sym_alignas_qualifier] = STATE(2649), + [aux_sym__type_definition_type_repeat1] = STATE(2446), + [aux_sym_sized_type_specifier_repeat1] = STATE(2663), + [sym_identifier] = ACTIONS(8261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_RPAREN] = ACTIONS(7023), + [aux_sym_preproc_if_token2] = ACTIONS(7023), + [aux_sym_preproc_else_token1] = ACTIONS(7023), + [aux_sym_preproc_elif_token1] = ACTIONS(7025), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7023), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7023), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7023), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7023), + [anon_sym_GT_GT] = ACTIONS(7023), + [anon_sym_SEMI] = ACTIONS(7023), + [anon_sym___extension__] = ACTIONS(8264), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON] = ACTIONS(7025), + [anon_sym_COLON_COLON] = ACTIONS(7023), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7023), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_RBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(8267), + [anon_sym_unsigned] = ACTIONS(8267), + [anon_sym_long] = ACTIONS(8267), + [anon_sym_short] = ACTIONS(8267), + [anon_sym_LBRACK] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(8264), + [anon_sym_constexpr] = ACTIONS(8264), + [anon_sym_volatile] = ACTIONS(8264), + [anon_sym_restrict] = ACTIONS(8264), + [anon_sym___restrict__] = ACTIONS(8264), + [anon_sym__Atomic] = ACTIONS(8264), + [anon_sym__Noreturn] = ACTIONS(8264), + [anon_sym_noreturn] = ACTIONS(8264), + [anon_sym__Nonnull] = ACTIONS(8264), + [anon_sym_mutable] = ACTIONS(8264), + [anon_sym_constinit] = ACTIONS(8264), + [anon_sym_consteval] = ACTIONS(8264), + [anon_sym_alignas] = ACTIONS(8269), + [anon_sym__Alignas] = ACTIONS(8269), + [sym_primitive_type] = ACTIONS(8272), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7025), + [anon_sym_final] = ACTIONS(7025), + [anon_sym_override] = ACTIONS(7025), + [anon_sym_template] = ACTIONS(7025), + [anon_sym_requires] = ACTIONS(7025), + [anon_sym_LBRACK_COLON] = ACTIONS(7023), + [anon_sym_COLON_RBRACK] = ACTIONS(7023), }, [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), + [sym_attribute_specifier] = STATE(2951), + [sym_enumerator_list] = STATE(2679), + [sym__enum_base_clause] = STATE(2562), + [sym_identifier] = ACTIONS(7413), + [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(7413), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON] = ACTIONS(8152), + [anon_sym_COLON_COLON] = ACTIONS(7415), + [anon_sym_LBRACE] = ACTIONS(8154), + [anon_sym_LBRACK] = ACTIONS(7413), + [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(7413), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7413), + [anon_sym_final] = ACTIONS(7413), + [anon_sym_override] = ACTIONS(7413), + [anon_sym_template] = ACTIONS(7413), + [anon_sym_requires] = ACTIONS(7413), + [anon_sym_DASH_GT_STAR] = ACTIONS(7415), + [anon_sym_LBRACK_COLON] = ACTIONS(7415), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(7300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7302), + [anon_sym_LPAREN2] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7300), + [anon_sym_SLASH] = ACTIONS(7300), + [anon_sym_PERCENT] = ACTIONS(7300), + [anon_sym_PIPE_PIPE] = ACTIONS(7302), + [anon_sym_AMP_AMP] = ACTIONS(7302), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_CARET] = ACTIONS(7300), + [anon_sym_AMP] = ACTIONS(7300), + [anon_sym_EQ_EQ] = ACTIONS(7302), + [anon_sym_BANG_EQ] = ACTIONS(7302), + [anon_sym_GT] = ACTIONS(7300), + [anon_sym_GT_EQ] = ACTIONS(7300), + [anon_sym_LT_EQ] = ACTIONS(7300), + [anon_sym_LT] = ACTIONS(7300), + [anon_sym_LT_LT] = ACTIONS(7300), + [anon_sym_GT_GT] = ACTIONS(7300), + [anon_sym___extension__] = ACTIONS(7300), + [anon_sym___attribute__] = ACTIONS(7300), + [anon_sym___attribute] = ACTIONS(7300), + [anon_sym_COLON_COLON] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(8137), + [anon_sym_unsigned] = ACTIONS(8137), + [anon_sym_long] = ACTIONS(8137), + [anon_sym_short] = ACTIONS(8137), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_EQ] = ACTIONS(7300), + [anon_sym_const] = ACTIONS(7300), + [anon_sym_constexpr] = ACTIONS(7300), + [anon_sym_volatile] = ACTIONS(7300), + [anon_sym_restrict] = ACTIONS(7300), + [anon_sym___restrict__] = ACTIONS(7300), + [anon_sym__Atomic] = ACTIONS(7300), + [anon_sym__Noreturn] = ACTIONS(7300), + [anon_sym_noreturn] = ACTIONS(7300), + [anon_sym__Nonnull] = ACTIONS(7300), + [anon_sym_mutable] = ACTIONS(7300), + [anon_sym_constinit] = ACTIONS(7300), + [anon_sym_consteval] = ACTIONS(7300), + [anon_sym_alignas] = ACTIONS(7300), + [anon_sym__Alignas] = ACTIONS(7300), + [anon_sym_QMARK] = ACTIONS(7302), + [anon_sym_STAR_EQ] = ACTIONS(7302), + [anon_sym_SLASH_EQ] = ACTIONS(7302), + [anon_sym_PERCENT_EQ] = ACTIONS(7302), + [anon_sym_PLUS_EQ] = ACTIONS(7302), + [anon_sym_DASH_EQ] = ACTIONS(7302), + [anon_sym_LT_LT_EQ] = ACTIONS(7302), + [anon_sym_GT_GT_EQ] = ACTIONS(7300), + [anon_sym_AMP_EQ] = ACTIONS(7302), + [anon_sym_CARET_EQ] = ACTIONS(7302), + [anon_sym_PIPE_EQ] = ACTIONS(7302), + [anon_sym_and_eq] = ACTIONS(7300), + [anon_sym_or_eq] = ACTIONS(7300), + [anon_sym_xor_eq] = ACTIONS(7300), + [anon_sym_LT_EQ_GT] = ACTIONS(7302), + [anon_sym_or] = ACTIONS(7300), + [anon_sym_and] = ACTIONS(7300), + [anon_sym_bitor] = ACTIONS(7300), + [anon_sym_xor] = ACTIONS(7300), + [anon_sym_bitand] = ACTIONS(7300), + [anon_sym_not_eq] = ACTIONS(7300), + [anon_sym_DASH_DASH] = ACTIONS(7302), + [anon_sym_PLUS_PLUS] = ACTIONS(7302), + [anon_sym_DOT] = ACTIONS(7300), + [anon_sym_DOT_STAR] = ACTIONS(7302), + [anon_sym_DASH_GT] = ACTIONS(7302), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7300), + [anon_sym_final] = ACTIONS(7300), + [anon_sym_override] = ACTIONS(7300), + [anon_sym_template] = ACTIONS(7300), + [anon_sym_GT2] = ACTIONS(7302), + [anon_sym_requires] = ACTIONS(7300), + [anon_sym_LBRACK_COLON] = ACTIONS(7302), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(7308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7310), + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_DASH] = ACTIONS(7308), + [anon_sym_PLUS] = ACTIONS(7308), + [anon_sym_STAR] = ACTIONS(7308), + [anon_sym_SLASH] = ACTIONS(7308), + [anon_sym_PERCENT] = ACTIONS(7308), + [anon_sym_PIPE_PIPE] = ACTIONS(7310), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_PIPE] = ACTIONS(7308), + [anon_sym_CARET] = ACTIONS(7308), + [anon_sym_AMP] = ACTIONS(7308), + [anon_sym_EQ_EQ] = ACTIONS(7310), + [anon_sym_BANG_EQ] = ACTIONS(7310), + [anon_sym_GT] = ACTIONS(7308), + [anon_sym_GT_EQ] = ACTIONS(7310), + [anon_sym_LT_EQ] = ACTIONS(7308), + [anon_sym_LT] = ACTIONS(7308), + [anon_sym_LT_LT] = ACTIONS(7308), + [anon_sym_GT_GT] = ACTIONS(7308), + [anon_sym___extension__] = ACTIONS(7308), + [anon_sym___attribute__] = ACTIONS(7308), + [anon_sym___attribute] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_LBRACE] = ACTIONS(7310), + [anon_sym_signed] = ACTIONS(8150), + [anon_sym_unsigned] = ACTIONS(8150), + [anon_sym_long] = ACTIONS(8150), + [anon_sym_short] = ACTIONS(8150), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym_RBRACK] = ACTIONS(7310), + [anon_sym_EQ] = ACTIONS(7308), + [anon_sym_const] = ACTIONS(7308), + [anon_sym_constexpr] = ACTIONS(7308), + [anon_sym_volatile] = ACTIONS(7308), + [anon_sym_restrict] = ACTIONS(7308), + [anon_sym___restrict__] = ACTIONS(7308), + [anon_sym__Atomic] = ACTIONS(7308), + [anon_sym__Noreturn] = ACTIONS(7308), + [anon_sym_noreturn] = ACTIONS(7308), + [anon_sym__Nonnull] = ACTIONS(7308), + [anon_sym_mutable] = ACTIONS(7308), + [anon_sym_constinit] = ACTIONS(7308), + [anon_sym_consteval] = ACTIONS(7308), + [anon_sym_alignas] = ACTIONS(7308), + [anon_sym__Alignas] = ACTIONS(7308), + [anon_sym_QMARK] = ACTIONS(7310), + [anon_sym_STAR_EQ] = ACTIONS(7310), + [anon_sym_SLASH_EQ] = ACTIONS(7310), + [anon_sym_PERCENT_EQ] = ACTIONS(7310), + [anon_sym_PLUS_EQ] = ACTIONS(7310), + [anon_sym_DASH_EQ] = ACTIONS(7310), + [anon_sym_LT_LT_EQ] = ACTIONS(7310), + [anon_sym_GT_GT_EQ] = ACTIONS(7310), + [anon_sym_AMP_EQ] = ACTIONS(7310), + [anon_sym_CARET_EQ] = ACTIONS(7310), + [anon_sym_PIPE_EQ] = ACTIONS(7310), + [anon_sym_and_eq] = ACTIONS(7308), + [anon_sym_or_eq] = ACTIONS(7308), + [anon_sym_xor_eq] = ACTIONS(7308), + [anon_sym_LT_EQ_GT] = ACTIONS(7310), + [anon_sym_or] = ACTIONS(7308), + [anon_sym_and] = ACTIONS(7308), + [anon_sym_bitor] = ACTIONS(7308), + [anon_sym_xor] = ACTIONS(7308), + [anon_sym_bitand] = ACTIONS(7308), + [anon_sym_not_eq] = ACTIONS(7308), + [anon_sym_DASH_DASH] = ACTIONS(7310), + [anon_sym_PLUS_PLUS] = ACTIONS(7310), + [anon_sym_DOT] = ACTIONS(7308), + [anon_sym_DOT_STAR] = ACTIONS(7310), + [anon_sym_DASH_GT] = ACTIONS(7310), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7308), + [anon_sym_final] = ACTIONS(7308), + [anon_sym_override] = ACTIONS(7308), + [anon_sym_template] = ACTIONS(7308), + [anon_sym_requires] = ACTIONS(7308), + [anon_sym_LBRACK_COLON] = ACTIONS(7310), }, [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__abstract_declarator] = STATE(7103), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2453), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2278), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9646), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2453), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(7405), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(7407), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(7409), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym_SEMI] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(7411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6604), + [anon_sym_RBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), [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_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(6604), }, [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), + [sym_attribute_specifier] = STATE(2781), + [sym_attribute_declaration] = STATE(5406), + [sym_type_qualifier] = STATE(2674), + [sym_alignas_qualifier] = STATE(2902), + [aux_sym_type_definition_repeat1] = STATE(2781), + [aux_sym__type_definition_type_repeat1] = STATE(2674), + [aux_sym_attributed_declarator_repeat1] = STATE(5406), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(7075), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7083), + [anon_sym_constexpr] = ACTIONS(7075), + [anon_sym_volatile] = ACTIONS(7075), + [anon_sym_restrict] = ACTIONS(7075), + [anon_sym___restrict__] = ACTIONS(7075), + [anon_sym__Atomic] = ACTIONS(7075), + [anon_sym__Noreturn] = ACTIONS(7075), + [anon_sym_noreturn] = ACTIONS(7075), + [anon_sym__Nonnull] = ACTIONS(7075), + [anon_sym_mutable] = ACTIONS(7075), + [anon_sym_constinit] = ACTIONS(7075), + [anon_sym_consteval] = ACTIONS(7075), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7059), + [anon_sym_and] = ACTIONS(7059), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7059), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7057), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + [anon_sym_DASH_GT_STAR] = ACTIONS(7059), }, [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), + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(3488), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3439), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7482), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7485), + [anon_sym_override] = ACTIONS(7485), + [anon_sym_requires] = ACTIONS(7488), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2485), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7290), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(8274), + [anon_sym_unsigned] = ACTIONS(8274), + [anon_sym_long] = ACTIONS(8274), + [anon_sym_short] = ACTIONS(8274), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7290), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_and_eq] = ACTIONS(7290), + [anon_sym_or_eq] = ACTIONS(7290), + [anon_sym_xor_eq] = ACTIONS(7290), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_GT2] = ACTIONS(7292), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), }, [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), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7259), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_GT2] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), }, [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), + [sym_ms_unaligned_ptr_modifier] = STATE(2641), + [sym_ms_pointer_modifier] = STATE(2474), + [aux_sym_pointer_declarator_repeat1] = STATE(2474), + [sym_identifier] = ACTIONS(7119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7121), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_LPAREN2] = ACTIONS(7121), + [anon_sym_DASH] = ACTIONS(7119), + [anon_sym_PLUS] = ACTIONS(7119), + [anon_sym_STAR] = ACTIONS(7119), + [anon_sym_SLASH] = ACTIONS(7119), + [anon_sym_PERCENT] = ACTIONS(7119), + [anon_sym_PIPE_PIPE] = ACTIONS(7121), + [anon_sym_AMP_AMP] = ACTIONS(7121), + [anon_sym_PIPE] = ACTIONS(7119), + [anon_sym_CARET] = ACTIONS(7119), + [anon_sym_AMP] = ACTIONS(7119), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_GT] = ACTIONS(7119), + [anon_sym_GT_EQ] = ACTIONS(7119), + [anon_sym_LT_EQ] = ACTIONS(7119), + [anon_sym_LT] = ACTIONS(7119), + [anon_sym_LT_LT] = ACTIONS(7119), + [anon_sym_GT_GT] = ACTIONS(7119), + [anon_sym___extension__] = ACTIONS(7119), + [anon_sym_COLON_COLON] = ACTIONS(7121), + [sym_ms_restrict_modifier] = ACTIONS(8276), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8276), + [sym_ms_signed_ptr_modifier] = ACTIONS(8276), + [anon_sym__unaligned] = ACTIONS(8279), + [anon_sym___unaligned] = ACTIONS(8279), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_EQ] = ACTIONS(7119), + [anon_sym_const] = ACTIONS(7119), + [anon_sym_constexpr] = ACTIONS(7119), + [anon_sym_volatile] = ACTIONS(7119), + [anon_sym_restrict] = ACTIONS(7119), + [anon_sym___restrict__] = ACTIONS(7119), + [anon_sym__Atomic] = ACTIONS(7119), + [anon_sym__Noreturn] = ACTIONS(7119), + [anon_sym_noreturn] = ACTIONS(7119), + [anon_sym__Nonnull] = ACTIONS(7119), + [anon_sym_mutable] = ACTIONS(7119), + [anon_sym_constinit] = ACTIONS(7119), + [anon_sym_consteval] = ACTIONS(7119), + [anon_sym_alignas] = ACTIONS(7119), + [anon_sym__Alignas] = ACTIONS(7119), + [anon_sym_QMARK] = ACTIONS(7121), + [anon_sym_STAR_EQ] = ACTIONS(7121), + [anon_sym_SLASH_EQ] = ACTIONS(7121), + [anon_sym_PERCENT_EQ] = ACTIONS(7121), + [anon_sym_PLUS_EQ] = ACTIONS(7121), + [anon_sym_DASH_EQ] = ACTIONS(7121), + [anon_sym_LT_LT_EQ] = ACTIONS(7121), + [anon_sym_GT_GT_EQ] = ACTIONS(7119), + [anon_sym_AMP_EQ] = ACTIONS(7121), + [anon_sym_CARET_EQ] = ACTIONS(7121), + [anon_sym_PIPE_EQ] = ACTIONS(7121), + [anon_sym_and_eq] = ACTIONS(7119), + [anon_sym_or_eq] = ACTIONS(7119), + [anon_sym_xor_eq] = ACTIONS(7119), + [anon_sym_LT_EQ_GT] = ACTIONS(7121), + [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(7121), + [anon_sym_PLUS_PLUS] = ACTIONS(7121), + [anon_sym_DOT] = ACTIONS(7119), + [anon_sym_DOT_STAR] = ACTIONS(7121), + [anon_sym_DASH_GT] = ACTIONS(7121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7119), + [anon_sym_final] = ACTIONS(7119), + [anon_sym_override] = ACTIONS(7119), + [anon_sym_template] = ACTIONS(7119), + [anon_sym_GT2] = ACTIONS(7121), + [anon_sym_requires] = ACTIONS(7119), + [anon_sym_LBRACK_COLON] = ACTIONS(7121), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7173), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8282), + [anon_sym_unsigned] = ACTIONS(8282), + [anon_sym_long] = ACTIONS(8282), + [anon_sym_short] = ACTIONS(8282), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7173), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_GT2] = ACTIONS(7175), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(7300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7302), + [anon_sym_LPAREN2] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7300), + [anon_sym_SLASH] = ACTIONS(7300), + [anon_sym_PERCENT] = ACTIONS(7300), + [anon_sym_PIPE_PIPE] = ACTIONS(7302), + [anon_sym_AMP_AMP] = ACTIONS(7302), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_CARET] = ACTIONS(7300), + [anon_sym_AMP] = ACTIONS(7300), + [anon_sym_EQ_EQ] = ACTIONS(7302), + [anon_sym_BANG_EQ] = ACTIONS(7302), + [anon_sym_GT] = ACTIONS(7300), + [anon_sym_GT_EQ] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(7300), + [anon_sym_LT] = ACTIONS(7300), + [anon_sym_LT_LT] = ACTIONS(7300), + [anon_sym_GT_GT] = ACTIONS(7300), + [anon_sym___extension__] = ACTIONS(7300), + [anon_sym___attribute__] = ACTIONS(7300), + [anon_sym___attribute] = ACTIONS(7300), + [anon_sym_COLON_COLON] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(8150), + [anon_sym_unsigned] = ACTIONS(8150), + [anon_sym_long] = ACTIONS(8150), + [anon_sym_short] = ACTIONS(8150), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_RBRACK] = ACTIONS(7302), + [anon_sym_EQ] = ACTIONS(7300), + [anon_sym_const] = ACTIONS(7300), + [anon_sym_constexpr] = ACTIONS(7300), + [anon_sym_volatile] = ACTIONS(7300), + [anon_sym_restrict] = ACTIONS(7300), + [anon_sym___restrict__] = ACTIONS(7300), + [anon_sym__Atomic] = ACTIONS(7300), + [anon_sym__Noreturn] = ACTIONS(7300), + [anon_sym_noreturn] = ACTIONS(7300), + [anon_sym__Nonnull] = ACTIONS(7300), + [anon_sym_mutable] = ACTIONS(7300), + [anon_sym_constinit] = ACTIONS(7300), + [anon_sym_consteval] = ACTIONS(7300), + [anon_sym_alignas] = ACTIONS(7300), + [anon_sym__Alignas] = ACTIONS(7300), + [anon_sym_QMARK] = ACTIONS(7302), + [anon_sym_STAR_EQ] = ACTIONS(7302), + [anon_sym_SLASH_EQ] = ACTIONS(7302), + [anon_sym_PERCENT_EQ] = ACTIONS(7302), + [anon_sym_PLUS_EQ] = ACTIONS(7302), + [anon_sym_DASH_EQ] = ACTIONS(7302), + [anon_sym_LT_LT_EQ] = ACTIONS(7302), + [anon_sym_GT_GT_EQ] = ACTIONS(7302), + [anon_sym_AMP_EQ] = ACTIONS(7302), + [anon_sym_CARET_EQ] = ACTIONS(7302), + [anon_sym_PIPE_EQ] = ACTIONS(7302), + [anon_sym_and_eq] = ACTIONS(7300), + [anon_sym_or_eq] = ACTIONS(7300), + [anon_sym_xor_eq] = ACTIONS(7300), + [anon_sym_LT_EQ_GT] = ACTIONS(7302), + [anon_sym_or] = ACTIONS(7300), + [anon_sym_and] = ACTIONS(7300), + [anon_sym_bitor] = ACTIONS(7300), + [anon_sym_xor] = ACTIONS(7300), + [anon_sym_bitand] = ACTIONS(7300), + [anon_sym_not_eq] = ACTIONS(7300), + [anon_sym_DASH_DASH] = ACTIONS(7302), + [anon_sym_PLUS_PLUS] = ACTIONS(7302), + [anon_sym_DOT] = ACTIONS(7300), + [anon_sym_DOT_STAR] = ACTIONS(7302), + [anon_sym_DASH_GT] = ACTIONS(7302), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7300), + [anon_sym_final] = ACTIONS(7300), + [anon_sym_override] = ACTIONS(7300), + [anon_sym_template] = ACTIONS(7300), + [anon_sym_requires] = ACTIONS(7300), + [anon_sym_LBRACK_COLON] = ACTIONS(7302), }, [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), + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(3491), + [sym__function_postfix] = STATE(3975), + [sym_trailing_return_type] = STATE(3444), + [sym_requires_clause] = STATE(3975), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7621), + [anon_sym_or_eq] = ACTIONS(7621), + [anon_sym_xor_eq] = ACTIONS(7621), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(7625), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7628), + [anon_sym_override] = ACTIONS(7628), + [anon_sym_requires] = ACTIONS(7631), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), }, [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), + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(3505), + [sym__function_postfix] = STATE(3850), + [sym_trailing_return_type] = STATE(3459), + [sym_requires_clause] = STATE(3850), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(8285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [aux_sym_preproc_if_token2] = ACTIONS(8287), + [aux_sym_preproc_else_token1] = ACTIONS(8287), + [aux_sym_preproc_elif_token1] = ACTIONS(8285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8287), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(8285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8287), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8285), + [anon_sym_or_eq] = ACTIONS(8285), + [anon_sym_xor_eq] = ACTIONS(8285), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8285), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8285), + [anon_sym_not_eq] = ACTIONS(8285), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(8289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(8287), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2492), + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7263), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7263), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON_COLON] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_signed] = ACTIONS(8292), + [anon_sym_unsigned] = ACTIONS(8292), + [anon_sym_long] = ACTIONS(8292), + [anon_sym_short] = ACTIONS(8292), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym_RBRACK] = ACTIONS(7265), + [anon_sym_EQ] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_STAR_EQ] = ACTIONS(7265), + [anon_sym_SLASH_EQ] = ACTIONS(7265), + [anon_sym_PERCENT_EQ] = ACTIONS(7265), + [anon_sym_PLUS_EQ] = ACTIONS(7265), + [anon_sym_DASH_EQ] = ACTIONS(7265), + [anon_sym_LT_LT_EQ] = ACTIONS(7265), + [anon_sym_GT_GT_EQ] = ACTIONS(7265), + [anon_sym_AMP_EQ] = ACTIONS(7265), + [anon_sym_CARET_EQ] = ACTIONS(7265), + [anon_sym_PIPE_EQ] = ACTIONS(7265), + [anon_sym_and_eq] = ACTIONS(7263), + [anon_sym_or_eq] = ACTIONS(7263), + [anon_sym_xor_eq] = ACTIONS(7263), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7263), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7263), + [anon_sym_not_eq] = ACTIONS(7263), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7265), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7263), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_template] = ACTIONS(7263), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_LBRACK_COLON] = ACTIONS(7265), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2455), + [sym_identifier] = ACTIONS(7316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7318), + [anon_sym_LPAREN2] = ACTIONS(7318), + [anon_sym_DASH] = ACTIONS(7316), + [anon_sym_PLUS] = ACTIONS(7316), + [anon_sym_STAR] = ACTIONS(7316), + [anon_sym_SLASH] = ACTIONS(7316), + [anon_sym_PERCENT] = ACTIONS(7316), + [anon_sym_PIPE_PIPE] = ACTIONS(7318), + [anon_sym_AMP_AMP] = ACTIONS(7318), + [anon_sym_PIPE] = ACTIONS(7316), + [anon_sym_CARET] = ACTIONS(7316), + [anon_sym_AMP] = ACTIONS(7316), + [anon_sym_EQ_EQ] = ACTIONS(7318), + [anon_sym_BANG_EQ] = ACTIONS(7318), + [anon_sym_GT] = ACTIONS(7316), + [anon_sym_GT_EQ] = ACTIONS(7318), + [anon_sym_LT_EQ] = ACTIONS(7316), + [anon_sym_LT] = ACTIONS(7316), + [anon_sym_LT_LT] = ACTIONS(7316), + [anon_sym_GT_GT] = ACTIONS(7316), + [anon_sym___extension__] = ACTIONS(7316), + [anon_sym___attribute__] = ACTIONS(7316), + [anon_sym___attribute] = ACTIONS(7316), + [anon_sym_COLON_COLON] = ACTIONS(7318), + [anon_sym_LBRACE] = ACTIONS(7318), + [anon_sym_signed] = ACTIONS(8294), + [anon_sym_unsigned] = ACTIONS(8294), + [anon_sym_long] = ACTIONS(8294), + [anon_sym_short] = ACTIONS(8294), + [anon_sym_LBRACK] = ACTIONS(7316), + [anon_sym_RBRACK] = ACTIONS(7318), + [anon_sym_EQ] = ACTIONS(7316), + [anon_sym_const] = ACTIONS(7316), + [anon_sym_constexpr] = ACTIONS(7316), + [anon_sym_volatile] = ACTIONS(7316), + [anon_sym_restrict] = ACTIONS(7316), + [anon_sym___restrict__] = ACTIONS(7316), + [anon_sym__Atomic] = ACTIONS(7316), + [anon_sym__Noreturn] = ACTIONS(7316), + [anon_sym_noreturn] = ACTIONS(7316), + [anon_sym__Nonnull] = ACTIONS(7316), + [anon_sym_mutable] = ACTIONS(7316), + [anon_sym_constinit] = ACTIONS(7316), + [anon_sym_consteval] = ACTIONS(7316), + [anon_sym_alignas] = ACTIONS(7316), + [anon_sym__Alignas] = ACTIONS(7316), + [anon_sym_QMARK] = ACTIONS(7318), + [anon_sym_STAR_EQ] = ACTIONS(7318), + [anon_sym_SLASH_EQ] = ACTIONS(7318), + [anon_sym_PERCENT_EQ] = ACTIONS(7318), + [anon_sym_PLUS_EQ] = ACTIONS(7318), + [anon_sym_DASH_EQ] = ACTIONS(7318), + [anon_sym_LT_LT_EQ] = ACTIONS(7318), + [anon_sym_GT_GT_EQ] = ACTIONS(7318), + [anon_sym_AMP_EQ] = ACTIONS(7318), + [anon_sym_CARET_EQ] = ACTIONS(7318), + [anon_sym_PIPE_EQ] = ACTIONS(7318), + [anon_sym_and_eq] = ACTIONS(7316), + [anon_sym_or_eq] = ACTIONS(7316), + [anon_sym_xor_eq] = ACTIONS(7316), + [anon_sym_LT_EQ_GT] = ACTIONS(7318), + [anon_sym_or] = ACTIONS(7316), + [anon_sym_and] = ACTIONS(7316), + [anon_sym_bitor] = ACTIONS(7316), + [anon_sym_xor] = ACTIONS(7316), + [anon_sym_bitand] = ACTIONS(7316), + [anon_sym_not_eq] = ACTIONS(7316), + [anon_sym_DASH_DASH] = ACTIONS(7318), + [anon_sym_PLUS_PLUS] = ACTIONS(7318), + [anon_sym_DOT] = ACTIONS(7316), + [anon_sym_DOT_STAR] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(7318), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7316), + [anon_sym_final] = ACTIONS(7316), + [anon_sym_override] = ACTIONS(7316), + [anon_sym_template] = ACTIONS(7316), + [anon_sym_requires] = ACTIONS(7316), + [anon_sym_LBRACK_COLON] = ACTIONS(7318), }, [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), + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(3475), + [sym__function_postfix] = STATE(3850), + [sym_trailing_return_type] = STATE(3449), + [sym_requires_clause] = STATE(3850), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(8285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [aux_sym_preproc_if_token2] = ACTIONS(8287), + [aux_sym_preproc_else_token1] = ACTIONS(8287), + [aux_sym_preproc_elif_token1] = ACTIONS(8285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8287), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(8285), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8287), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8285), + [anon_sym_or_eq] = ACTIONS(8285), + [anon_sym_xor_eq] = ACTIONS(8285), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8285), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8285), + [anon_sym_not_eq] = ACTIONS(8285), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(8289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8296), + [anon_sym_override] = ACTIONS(8296), + [anon_sym_requires] = ACTIONS(8299), + [anon_sym_COLON_RBRACK] = ACTIONS(8287), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(7296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7298), + [anon_sym_LPAREN2] = ACTIONS(7298), + [anon_sym_DASH] = ACTIONS(7296), + [anon_sym_PLUS] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7296), + [anon_sym_SLASH] = ACTIONS(7296), + [anon_sym_PERCENT] = ACTIONS(7296), + [anon_sym_PIPE_PIPE] = ACTIONS(7298), + [anon_sym_AMP_AMP] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7296), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_EQ_EQ] = ACTIONS(7298), + [anon_sym_BANG_EQ] = ACTIONS(7298), + [anon_sym_GT] = ACTIONS(7296), + [anon_sym_GT_EQ] = ACTIONS(7296), + [anon_sym_LT_EQ] = ACTIONS(7296), + [anon_sym_LT] = ACTIONS(7296), + [anon_sym_LT_LT] = ACTIONS(7296), + [anon_sym_GT_GT] = ACTIONS(7296), + [anon_sym___extension__] = ACTIONS(7296), + [anon_sym___attribute__] = ACTIONS(7296), + [anon_sym___attribute] = ACTIONS(7296), + [anon_sym_COLON_COLON] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(8137), + [anon_sym_unsigned] = ACTIONS(8137), + [anon_sym_long] = ACTIONS(8137), + [anon_sym_short] = ACTIONS(8137), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_EQ] = ACTIONS(7296), + [anon_sym_const] = ACTIONS(7296), + [anon_sym_constexpr] = ACTIONS(7296), + [anon_sym_volatile] = ACTIONS(7296), + [anon_sym_restrict] = ACTIONS(7296), + [anon_sym___restrict__] = ACTIONS(7296), + [anon_sym__Atomic] = ACTIONS(7296), + [anon_sym__Noreturn] = ACTIONS(7296), + [anon_sym_noreturn] = ACTIONS(7296), + [anon_sym__Nonnull] = ACTIONS(7296), + [anon_sym_mutable] = ACTIONS(7296), + [anon_sym_constinit] = ACTIONS(7296), + [anon_sym_consteval] = ACTIONS(7296), + [anon_sym_alignas] = ACTIONS(7296), + [anon_sym__Alignas] = ACTIONS(7296), + [anon_sym_QMARK] = ACTIONS(7298), + [anon_sym_STAR_EQ] = ACTIONS(7298), + [anon_sym_SLASH_EQ] = ACTIONS(7298), + [anon_sym_PERCENT_EQ] = ACTIONS(7298), + [anon_sym_PLUS_EQ] = ACTIONS(7298), + [anon_sym_DASH_EQ] = ACTIONS(7298), + [anon_sym_LT_LT_EQ] = ACTIONS(7298), + [anon_sym_GT_GT_EQ] = ACTIONS(7296), + [anon_sym_AMP_EQ] = ACTIONS(7298), + [anon_sym_CARET_EQ] = ACTIONS(7298), + [anon_sym_PIPE_EQ] = ACTIONS(7298), + [anon_sym_and_eq] = ACTIONS(7296), + [anon_sym_or_eq] = ACTIONS(7296), + [anon_sym_xor_eq] = ACTIONS(7296), + [anon_sym_LT_EQ_GT] = ACTIONS(7298), + [anon_sym_or] = ACTIONS(7296), + [anon_sym_and] = ACTIONS(7296), + [anon_sym_bitor] = ACTIONS(7296), + [anon_sym_xor] = ACTIONS(7296), + [anon_sym_bitand] = ACTIONS(7296), + [anon_sym_not_eq] = ACTIONS(7296), + [anon_sym_DASH_DASH] = ACTIONS(7298), + [anon_sym_PLUS_PLUS] = ACTIONS(7298), + [anon_sym_DOT] = ACTIONS(7296), + [anon_sym_DOT_STAR] = ACTIONS(7298), + [anon_sym_DASH_GT] = ACTIONS(7298), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7296), + [anon_sym_final] = ACTIONS(7296), + [anon_sym_override] = ACTIONS(7296), + [anon_sym_template] = ACTIONS(7296), + [anon_sym_GT2] = ACTIONS(7298), + [anon_sym_requires] = ACTIONS(7296), + [anon_sym_LBRACK_COLON] = ACTIONS(7298), }, [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), + [sym_ms_unaligned_ptr_modifier] = STATE(2596), + [sym_ms_pointer_modifier] = STATE(2483), + [aux_sym_pointer_declarator_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(7119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7121), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_LPAREN2] = ACTIONS(7121), + [anon_sym_DASH] = ACTIONS(7119), + [anon_sym_PLUS] = ACTIONS(7119), + [anon_sym_STAR] = ACTIONS(7119), + [anon_sym_SLASH] = ACTIONS(7119), + [anon_sym_PERCENT] = ACTIONS(7119), + [anon_sym_PIPE_PIPE] = ACTIONS(7121), + [anon_sym_AMP_AMP] = ACTIONS(7121), + [anon_sym_PIPE] = ACTIONS(7119), + [anon_sym_CARET] = ACTIONS(7119), + [anon_sym_AMP] = ACTIONS(7119), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_GT] = ACTIONS(7119), + [anon_sym_GT_EQ] = ACTIONS(7121), + [anon_sym_LT_EQ] = ACTIONS(7119), + [anon_sym_LT] = ACTIONS(7119), + [anon_sym_LT_LT] = ACTIONS(7119), + [anon_sym_GT_GT] = ACTIONS(7119), + [anon_sym___extension__] = ACTIONS(7119), + [anon_sym_COLON_COLON] = ACTIONS(7121), + [sym_ms_restrict_modifier] = ACTIONS(8302), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8302), + [sym_ms_signed_ptr_modifier] = ACTIONS(8302), + [anon_sym__unaligned] = ACTIONS(8305), + [anon_sym___unaligned] = ACTIONS(8305), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_RBRACK] = ACTIONS(7121), + [anon_sym_EQ] = ACTIONS(7119), + [anon_sym_const] = ACTIONS(7119), + [anon_sym_constexpr] = ACTIONS(7119), + [anon_sym_volatile] = ACTIONS(7119), + [anon_sym_restrict] = ACTIONS(7119), + [anon_sym___restrict__] = ACTIONS(7119), + [anon_sym__Atomic] = ACTIONS(7119), + [anon_sym__Noreturn] = ACTIONS(7119), + [anon_sym_noreturn] = ACTIONS(7119), + [anon_sym__Nonnull] = ACTIONS(7119), + [anon_sym_mutable] = ACTIONS(7119), + [anon_sym_constinit] = ACTIONS(7119), + [anon_sym_consteval] = ACTIONS(7119), + [anon_sym_alignas] = ACTIONS(7119), + [anon_sym__Alignas] = ACTIONS(7119), + [anon_sym_QMARK] = ACTIONS(7121), + [anon_sym_STAR_EQ] = ACTIONS(7121), + [anon_sym_SLASH_EQ] = ACTIONS(7121), + [anon_sym_PERCENT_EQ] = ACTIONS(7121), + [anon_sym_PLUS_EQ] = ACTIONS(7121), + [anon_sym_DASH_EQ] = ACTIONS(7121), + [anon_sym_LT_LT_EQ] = ACTIONS(7121), + [anon_sym_GT_GT_EQ] = ACTIONS(7121), + [anon_sym_AMP_EQ] = ACTIONS(7121), + [anon_sym_CARET_EQ] = ACTIONS(7121), + [anon_sym_PIPE_EQ] = ACTIONS(7121), + [anon_sym_and_eq] = ACTIONS(7119), + [anon_sym_or_eq] = ACTIONS(7119), + [anon_sym_xor_eq] = ACTIONS(7119), + [anon_sym_LT_EQ_GT] = ACTIONS(7121), + [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(7121), + [anon_sym_PLUS_PLUS] = ACTIONS(7121), + [anon_sym_DOT] = ACTIONS(7119), + [anon_sym_DOT_STAR] = ACTIONS(7121), + [anon_sym_DASH_GT] = ACTIONS(7121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7119), + [anon_sym_final] = ACTIONS(7119), + [anon_sym_override] = ACTIONS(7119), + [anon_sym_template] = ACTIONS(7119), + [anon_sym_requires] = ACTIONS(7119), + [anon_sym_LBRACK_COLON] = ACTIONS(7121), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7275), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7275), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7275), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7275), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7275), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON_COLON] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_signed] = ACTIONS(8137), + [anon_sym_unsigned] = ACTIONS(8137), + [anon_sym_long] = ACTIONS(8137), + [anon_sym_short] = ACTIONS(8137), + [anon_sym_LBRACK] = ACTIONS(7275), + [anon_sym_EQ] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7275), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_and_eq] = ACTIONS(7275), + [anon_sym_or_eq] = ACTIONS(7275), + [anon_sym_xor_eq] = ACTIONS(7275), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7275), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7275), + [anon_sym_not_eq] = ACTIONS(7275), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7275), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_template] = ACTIONS(7275), + [anon_sym_GT2] = ACTIONS(7277), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_LBRACK_COLON] = ACTIONS(7277), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(7304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7306), + [anon_sym_LPAREN2] = ACTIONS(7306), + [anon_sym_DASH] = ACTIONS(7304), + [anon_sym_PLUS] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7304), + [anon_sym_SLASH] = ACTIONS(7304), + [anon_sym_PERCENT] = ACTIONS(7304), + [anon_sym_PIPE_PIPE] = ACTIONS(7306), + [anon_sym_AMP_AMP] = ACTIONS(7306), + [anon_sym_PIPE] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(7304), + [anon_sym_AMP] = ACTIONS(7304), + [anon_sym_EQ_EQ] = ACTIONS(7306), + [anon_sym_BANG_EQ] = ACTIONS(7306), + [anon_sym_GT] = ACTIONS(7304), + [anon_sym_GT_EQ] = ACTIONS(7304), + [anon_sym_LT_EQ] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7304), + [anon_sym_LT_LT] = ACTIONS(7304), + [anon_sym_GT_GT] = ACTIONS(7304), + [anon_sym___extension__] = ACTIONS(7304), + [anon_sym___attribute__] = ACTIONS(7304), + [anon_sym___attribute] = ACTIONS(7304), + [anon_sym_COLON_COLON] = ACTIONS(7306), + [anon_sym_LBRACE] = ACTIONS(7306), + [anon_sym_signed] = ACTIONS(8137), + [anon_sym_unsigned] = ACTIONS(8137), + [anon_sym_long] = ACTIONS(8137), + [anon_sym_short] = ACTIONS(8137), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_EQ] = ACTIONS(7304), + [anon_sym_const] = ACTIONS(7304), + [anon_sym_constexpr] = ACTIONS(7304), + [anon_sym_volatile] = ACTIONS(7304), + [anon_sym_restrict] = ACTIONS(7304), + [anon_sym___restrict__] = ACTIONS(7304), + [anon_sym__Atomic] = ACTIONS(7304), + [anon_sym__Noreturn] = ACTIONS(7304), + [anon_sym_noreturn] = ACTIONS(7304), + [anon_sym__Nonnull] = ACTIONS(7304), + [anon_sym_mutable] = ACTIONS(7304), + [anon_sym_constinit] = ACTIONS(7304), + [anon_sym_consteval] = ACTIONS(7304), + [anon_sym_alignas] = ACTIONS(7304), + [anon_sym__Alignas] = ACTIONS(7304), + [anon_sym_QMARK] = ACTIONS(7306), + [anon_sym_STAR_EQ] = ACTIONS(7306), + [anon_sym_SLASH_EQ] = ACTIONS(7306), + [anon_sym_PERCENT_EQ] = ACTIONS(7306), + [anon_sym_PLUS_EQ] = ACTIONS(7306), + [anon_sym_DASH_EQ] = ACTIONS(7306), + [anon_sym_LT_LT_EQ] = ACTIONS(7306), + [anon_sym_GT_GT_EQ] = ACTIONS(7304), + [anon_sym_AMP_EQ] = ACTIONS(7306), + [anon_sym_CARET_EQ] = ACTIONS(7306), + [anon_sym_PIPE_EQ] = ACTIONS(7306), + [anon_sym_and_eq] = ACTIONS(7304), + [anon_sym_or_eq] = ACTIONS(7304), + [anon_sym_xor_eq] = ACTIONS(7304), + [anon_sym_LT_EQ_GT] = ACTIONS(7306), + [anon_sym_or] = ACTIONS(7304), + [anon_sym_and] = ACTIONS(7304), + [anon_sym_bitor] = ACTIONS(7304), + [anon_sym_xor] = ACTIONS(7304), + [anon_sym_bitand] = ACTIONS(7304), + [anon_sym_not_eq] = ACTIONS(7304), + [anon_sym_DASH_DASH] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(7306), + [anon_sym_DOT] = ACTIONS(7304), + [anon_sym_DOT_STAR] = ACTIONS(7306), + [anon_sym_DASH_GT] = ACTIONS(7306), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7304), + [anon_sym_final] = ACTIONS(7304), + [anon_sym_override] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7304), + [anon_sym_GT2] = ACTIONS(7306), + [anon_sym_requires] = ACTIONS(7304), + [anon_sym_LBRACK_COLON] = ACTIONS(7306), }, [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), + [sym__abstract_declarator] = STATE(7088), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2278), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9646), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7405), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7407), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7409), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(7411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5968), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(5968), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2461), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(8308), + [anon_sym_unsigned] = ACTIONS(8308), + [anon_sym_long] = ACTIONS(8308), + [anon_sym_short] = ACTIONS(8308), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_RBRACK] = ACTIONS(7292), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7292), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_and_eq] = ACTIONS(7290), + [anon_sym_or_eq] = ACTIONS(7290), + [anon_sym_xor_eq] = ACTIONS(7290), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2475), + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7279), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7279), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7279), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7279), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7279), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON_COLON] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_signed] = ACTIONS(8137), + [anon_sym_unsigned] = ACTIONS(8137), + [anon_sym_long] = ACTIONS(8137), + [anon_sym_short] = ACTIONS(8137), + [anon_sym_LBRACK] = ACTIONS(7279), + [anon_sym_EQ] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_STAR_EQ] = ACTIONS(7281), + [anon_sym_SLASH_EQ] = ACTIONS(7281), + [anon_sym_PERCENT_EQ] = ACTIONS(7281), + [anon_sym_PLUS_EQ] = ACTIONS(7281), + [anon_sym_DASH_EQ] = ACTIONS(7281), + [anon_sym_LT_LT_EQ] = ACTIONS(7281), + [anon_sym_GT_GT_EQ] = ACTIONS(7279), + [anon_sym_AMP_EQ] = ACTIONS(7281), + [anon_sym_CARET_EQ] = ACTIONS(7281), + [anon_sym_PIPE_EQ] = ACTIONS(7281), + [anon_sym_and_eq] = ACTIONS(7279), + [anon_sym_or_eq] = ACTIONS(7279), + [anon_sym_xor_eq] = ACTIONS(7279), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7279), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7279), + [anon_sym_not_eq] = ACTIONS(7279), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7281), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7279), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_template] = ACTIONS(7279), + [anon_sym_GT2] = ACTIONS(7281), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_LBRACK_COLON] = ACTIONS(7281), }, [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), + [sym_type_qualifier] = STATE(2465), + [sym_alignas_qualifier] = STATE(2649), + [aux_sym__type_definition_type_repeat1] = STATE(2465), + [aux_sym_sized_type_specifier_repeat1] = STATE(2653), + [sym_identifier] = ACTIONS(8310), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6934), + [aux_sym_preproc_if_token2] = ACTIONS(6934), + [aux_sym_preproc_else_token1] = ACTIONS(6934), + [aux_sym_preproc_elif_token1] = ACTIONS(6936), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6934), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6934), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6934), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6934), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6934), + [anon_sym_SEMI] = ACTIONS(6934), + [anon_sym___extension__] = ACTIONS(8313), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON] = ACTIONS(6936), + [anon_sym_COLON_COLON] = ACTIONS(6934), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_RBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(8316), + [anon_sym_unsigned] = ACTIONS(8316), + [anon_sym_long] = ACTIONS(8316), + [anon_sym_short] = ACTIONS(8316), + [anon_sym_LBRACK] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(8313), + [anon_sym_constexpr] = ACTIONS(8313), + [anon_sym_volatile] = ACTIONS(8313), + [anon_sym_restrict] = ACTIONS(8313), + [anon_sym___restrict__] = ACTIONS(8313), + [anon_sym__Atomic] = ACTIONS(8313), + [anon_sym__Noreturn] = ACTIONS(8313), + [anon_sym_noreturn] = ACTIONS(8313), + [anon_sym__Nonnull] = ACTIONS(8313), + [anon_sym_mutable] = ACTIONS(8313), + [anon_sym_constinit] = ACTIONS(8313), + [anon_sym_consteval] = ACTIONS(8313), + [anon_sym_alignas] = ACTIONS(8318), + [anon_sym__Alignas] = ACTIONS(8318), + [sym_primitive_type] = ACTIONS(8321), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6936), + [anon_sym_final] = ACTIONS(6936), + [anon_sym_override] = ACTIONS(6936), + [anon_sym_template] = ACTIONS(6936), + [anon_sym_requires] = ACTIONS(6936), + [anon_sym_LBRACK_COLON] = ACTIONS(6934), + [anon_sym_COLON_RBRACK] = ACTIONS(6934), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2463), + [sym_identifier] = ACTIONS(7322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7324), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_DASH] = ACTIONS(7322), + [anon_sym_PLUS] = ACTIONS(7322), + [anon_sym_STAR] = ACTIONS(7322), + [anon_sym_SLASH] = ACTIONS(7322), + [anon_sym_PERCENT] = ACTIONS(7322), + [anon_sym_PIPE_PIPE] = ACTIONS(7324), + [anon_sym_AMP_AMP] = ACTIONS(7324), + [anon_sym_PIPE] = ACTIONS(7322), + [anon_sym_CARET] = ACTIONS(7322), + [anon_sym_AMP] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_GT] = ACTIONS(7322), + [anon_sym_GT_EQ] = ACTIONS(7324), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_LT] = ACTIONS(7322), + [anon_sym_LT_LT] = ACTIONS(7322), + [anon_sym_GT_GT] = ACTIONS(7322), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_COLON_COLON] = ACTIONS(7324), + [anon_sym_LBRACE] = ACTIONS(7324), + [anon_sym_signed] = ACTIONS(8323), + [anon_sym_unsigned] = ACTIONS(8323), + [anon_sym_long] = ACTIONS(8323), + [anon_sym_short] = ACTIONS(8323), + [anon_sym_LBRACK] = ACTIONS(7322), + [anon_sym_RBRACK] = ACTIONS(7324), + [anon_sym_EQ] = ACTIONS(7322), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_mutable] = ACTIONS(7322), + [anon_sym_constinit] = ACTIONS(7322), + [anon_sym_consteval] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [anon_sym_QMARK] = ACTIONS(7324), + [anon_sym_STAR_EQ] = ACTIONS(7324), + [anon_sym_SLASH_EQ] = ACTIONS(7324), + [anon_sym_PERCENT_EQ] = ACTIONS(7324), + [anon_sym_PLUS_EQ] = ACTIONS(7324), + [anon_sym_DASH_EQ] = ACTIONS(7324), + [anon_sym_LT_LT_EQ] = ACTIONS(7324), + [anon_sym_GT_GT_EQ] = ACTIONS(7324), + [anon_sym_AMP_EQ] = ACTIONS(7324), + [anon_sym_CARET_EQ] = ACTIONS(7324), + [anon_sym_PIPE_EQ] = ACTIONS(7324), + [anon_sym_and_eq] = ACTIONS(7322), + [anon_sym_or_eq] = ACTIONS(7322), + [anon_sym_xor_eq] = ACTIONS(7322), + [anon_sym_LT_EQ_GT] = ACTIONS(7324), + [anon_sym_or] = ACTIONS(7322), + [anon_sym_and] = ACTIONS(7322), + [anon_sym_bitor] = ACTIONS(7322), + [anon_sym_xor] = ACTIONS(7322), + [anon_sym_bitand] = ACTIONS(7322), + [anon_sym_not_eq] = ACTIONS(7322), + [anon_sym_DASH_DASH] = ACTIONS(7324), + [anon_sym_PLUS_PLUS] = ACTIONS(7324), + [anon_sym_DOT] = ACTIONS(7322), + [anon_sym_DOT_STAR] = ACTIONS(7324), + [anon_sym_DASH_GT] = ACTIONS(7324), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7322), + [anon_sym_final] = ACTIONS(7322), + [anon_sym_override] = ACTIONS(7322), + [anon_sym_template] = ACTIONS(7322), + [anon_sym_requires] = ACTIONS(7322), + [anon_sym_LBRACK_COLON] = ACTIONS(7324), }, [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_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), + [sym_decltype_auto] = STATE(2989), + [sym_template_argument_list] = STATE(2604), + [aux_sym_sized_type_specifier_repeat1] = STATE(2429), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5661), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_PIPE_PIPE] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5661), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5669), + [anon_sym_BANG_EQ] = ACTIONS(5669), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5661), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(8325), + [anon_sym_LT_LT] = ACTIONS(5661), + [anon_sym_GT_GT] = ACTIONS(5661), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_signed] = ACTIONS(7332), + [anon_sym_unsigned] = ACTIONS(7332), + [anon_sym_long] = ACTIONS(7332), + [anon_sym_short] = ACTIONS(7332), + [anon_sym_LBRACK] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5669), + [anon_sym_STAR_EQ] = ACTIONS(5669), + [anon_sym_SLASH_EQ] = ACTIONS(5669), + [anon_sym_PERCENT_EQ] = ACTIONS(5669), + [anon_sym_PLUS_EQ] = ACTIONS(5669), + [anon_sym_DASH_EQ] = ACTIONS(5669), + [anon_sym_LT_LT_EQ] = ACTIONS(5669), + [anon_sym_GT_GT_EQ] = ACTIONS(5661), + [anon_sym_AMP_EQ] = ACTIONS(5669), + [anon_sym_CARET_EQ] = ACTIONS(5669), + [anon_sym_PIPE_EQ] = ACTIONS(5669), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5669), + [anon_sym_or] = ACTIONS(5661), + [anon_sym_and] = ACTIONS(5661), + [anon_sym_bitor] = ACTIONS(5661), + [anon_sym_xor] = ACTIONS(5661), + [anon_sym_bitand] = ACTIONS(5661), + [anon_sym_not_eq] = ACTIONS(5661), + [anon_sym_DASH_DASH] = ACTIONS(5669), + [anon_sym_PLUS_PLUS] = ACTIONS(5669), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5669), + [anon_sym_DASH_GT] = ACTIONS(5669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7336), + [anon_sym_decltype] = ACTIONS(7338), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_GT2] = ACTIONS(5669), + [anon_sym_requires] = ACTIONS(5661), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7275), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7275), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7275), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7275), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON_COLON] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_signed] = ACTIONS(8150), + [anon_sym_unsigned] = ACTIONS(8150), + [anon_sym_long] = ACTIONS(8150), + [anon_sym_short] = ACTIONS(8150), + [anon_sym_LBRACK] = ACTIONS(7275), + [anon_sym_RBRACK] = ACTIONS(7277), + [anon_sym_EQ] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7277), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_and_eq] = ACTIONS(7275), + [anon_sym_or_eq] = ACTIONS(7275), + [anon_sym_xor_eq] = ACTIONS(7275), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7275), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7275), + [anon_sym_not_eq] = ACTIONS(7275), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7275), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_template] = ACTIONS(7275), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_LBRACK_COLON] = ACTIONS(7277), }, [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), + [sym__abstract_declarator] = STATE(7116), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2457), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9550), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(7382), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(7384), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(7386), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6618), + [anon_sym___attribute] = ACTIONS(6618), + [anon_sym_COLON_COLON] = ACTIONS(7388), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2454), + [sym_identifier] = ACTIONS(7322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7324), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_DASH] = ACTIONS(7322), + [anon_sym_PLUS] = ACTIONS(7322), + [anon_sym_STAR] = ACTIONS(7322), + [anon_sym_SLASH] = ACTIONS(7322), + [anon_sym_PERCENT] = ACTIONS(7322), + [anon_sym_PIPE_PIPE] = ACTIONS(7324), + [anon_sym_AMP_AMP] = ACTIONS(7324), + [anon_sym_PIPE] = ACTIONS(7322), + [anon_sym_CARET] = ACTIONS(7322), + [anon_sym_AMP] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_GT] = ACTIONS(7322), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_LT] = ACTIONS(7322), + [anon_sym_LT_LT] = ACTIONS(7322), + [anon_sym_GT_GT] = ACTIONS(7322), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_COLON_COLON] = ACTIONS(7324), + [anon_sym_LBRACE] = ACTIONS(7324), + [anon_sym_signed] = ACTIONS(8327), + [anon_sym_unsigned] = ACTIONS(8327), + [anon_sym_long] = ACTIONS(8327), + [anon_sym_short] = ACTIONS(8327), + [anon_sym_LBRACK] = ACTIONS(7322), + [anon_sym_EQ] = ACTIONS(7322), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_mutable] = ACTIONS(7322), + [anon_sym_constinit] = ACTIONS(7322), + [anon_sym_consteval] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [anon_sym_QMARK] = ACTIONS(7324), + [anon_sym_STAR_EQ] = ACTIONS(7324), + [anon_sym_SLASH_EQ] = ACTIONS(7324), + [anon_sym_PERCENT_EQ] = ACTIONS(7324), + [anon_sym_PLUS_EQ] = ACTIONS(7324), + [anon_sym_DASH_EQ] = ACTIONS(7324), + [anon_sym_LT_LT_EQ] = ACTIONS(7324), + [anon_sym_GT_GT_EQ] = ACTIONS(7322), + [anon_sym_AMP_EQ] = ACTIONS(7324), + [anon_sym_CARET_EQ] = ACTIONS(7324), + [anon_sym_PIPE_EQ] = ACTIONS(7324), + [anon_sym_and_eq] = ACTIONS(7322), + [anon_sym_or_eq] = ACTIONS(7322), + [anon_sym_xor_eq] = ACTIONS(7322), + [anon_sym_LT_EQ_GT] = ACTIONS(7324), + [anon_sym_or] = ACTIONS(7322), + [anon_sym_and] = ACTIONS(7322), + [anon_sym_bitor] = ACTIONS(7322), + [anon_sym_xor] = ACTIONS(7322), + [anon_sym_bitand] = ACTIONS(7322), + [anon_sym_not_eq] = ACTIONS(7322), + [anon_sym_DASH_DASH] = ACTIONS(7324), + [anon_sym_PLUS_PLUS] = ACTIONS(7324), + [anon_sym_DOT] = ACTIONS(7322), + [anon_sym_DOT_STAR] = ACTIONS(7324), + [anon_sym_DASH_GT] = ACTIONS(7324), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7322), + [anon_sym_final] = ACTIONS(7322), + [anon_sym_override] = ACTIONS(7322), + [anon_sym_template] = ACTIONS(7322), + [anon_sym_GT2] = ACTIONS(7324), + [anon_sym_requires] = ACTIONS(7322), + [anon_sym_LBRACK_COLON] = ACTIONS(7324), }, [STATE(2495)] = { - [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(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___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_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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5550), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11480), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_type_parameter_declaration] = STATE(11480), + [sym_variadic_type_parameter_declaration] = STATE(11480), + [sym_optional_type_parameter_declaration] = STATE(11480), + [sym_template_template_parameter_declaration] = STATE(11480), + [sym_optional_parameter_declaration] = STATE(11480), + [sym_variadic_parameter_declaration] = STATE(11480), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(8224), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(8226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(8228), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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__abstract_declarator] = STATE(7100), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2285), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9632), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [aux_sym_preproc_if_token2] = ACTIONS(6600), + [aux_sym_preproc_else_token1] = ACTIONS(6600), + [aux_sym_preproc_elif_token1] = ACTIONS(6602), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(7428), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7434), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), [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_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2497)] = { + [sym_attribute_specifier] = STATE(2858), + [sym_attribute_declaration] = STATE(5221), + [sym_type_qualifier] = STATE(2800), + [sym_alignas_qualifier] = STATE(3022), + [aux_sym_type_definition_repeat1] = STATE(2858), + [aux_sym__type_definition_type_repeat1] = STATE(2800), + [aux_sym_attributed_declarator_repeat1] = STATE(5221), + [sym_identifier] = ACTIONS(7057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [aux_sym_preproc_if_token2] = ACTIONS(7059), + [aux_sym_preproc_else_token1] = ACTIONS(7059), + [aux_sym_preproc_elif_token1] = ACTIONS(7057), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7059), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7059), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7059), + [anon_sym_GT_GT] = ACTIONS(7059), + [anon_sym_SEMI] = ACTIONS(7059), + [anon_sym___extension__] = ACTIONS(7588), + [anon_sym___attribute__] = ACTIONS(7057), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_COLON] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7059), + [anon_sym_RBRACE] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7588), + [anon_sym_constexpr] = ACTIONS(7588), + [anon_sym_volatile] = ACTIONS(7588), + [anon_sym_restrict] = ACTIONS(7588), + [anon_sym___restrict__] = ACTIONS(7588), + [anon_sym__Atomic] = ACTIONS(7588), + [anon_sym__Noreturn] = ACTIONS(7588), + [anon_sym_noreturn] = ACTIONS(7588), + [anon_sym__Nonnull] = ACTIONS(7588), + [anon_sym_mutable] = ACTIONS(7588), + [anon_sym_constinit] = ACTIONS(7588), + [anon_sym_consteval] = ACTIONS(7588), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7057), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7057), + [anon_sym_not_eq] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7057), + [anon_sym___asm__] = ACTIONS(7057), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7057), + [anon_sym_override] = ACTIONS(7057), + [anon_sym_noexcept] = ACTIONS(7057), + [anon_sym_throw] = ACTIONS(7057), + [anon_sym_requires] = ACTIONS(7057), + [anon_sym_COLON_RBRACK] = ACTIONS(7059), }, [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_template_argument_list] = STATE(2553), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_RPAREN] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_PIPE_PIPE] = ACTIONS(6778), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(6785), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6778), + [anon_sym_BANG_EQ] = ACTIONS(6778), + [anon_sym_GT] = ACTIONS(6785), + [anon_sym_GT_EQ] = ACTIONS(6778), + [anon_sym_LT_EQ] = ACTIONS(6785), + [anon_sym_LT] = ACTIONS(8329), + [anon_sym_LT_LT] = ACTIONS(6785), + [anon_sym_GT_GT] = ACTIONS(6785), + [anon_sym_SEMI] = ACTIONS(6778), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6785), + [anon_sym___attribute] = ACTIONS(6785), + [anon_sym_COLON] = ACTIONS(6785), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_RBRACE] = ACTIONS(6778), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6778), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6778), + [anon_sym_or] = ACTIONS(6785), + [anon_sym_and] = ACTIONS(6785), + [anon_sym_bitor] = ACTIONS(6785), + [anon_sym_xor] = ACTIONS(6785), + [anon_sym_bitand] = ACTIONS(6785), + [anon_sym_not_eq] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(6778), + [anon_sym_PLUS_PLUS] = ACTIONS(6778), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_DOT_STAR] = ACTIONS(6778), + [anon_sym_DASH_GT] = ACTIONS(6778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + [anon_sym_COLON_RBRACK] = ACTIONS(6778), }, [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(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(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), - [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), - }, - [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(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(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(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), + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11014), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11014), + [sym_optional_parameter_declaration] = STATE(11014), + [sym_variadic_parameter_declaration] = STATE(11014), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), + [anon_sym_RPAREN] = ACTIONS(5643), [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_COLON_COLON] = ACTIONS(8222), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -356311,13848 +364248,14179 @@ 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(3536), [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), + [anon_sym_typename] = ACTIONS(5657), [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(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), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, - [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7715), - [anon_sym_override] = ACTIONS(7715), - [anon_sym_GT2] = ACTIONS(7715), - [anon_sym_requires] = ACTIONS(7715), - }, - [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(2500)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2312), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym_SEMI] = ACTIONS(7186), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON] = ACTIONS(7183), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7186), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_RBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(7783), + [anon_sym_unsigned] = ACTIONS(7783), + [anon_sym_long] = ACTIONS(7783), + [anon_sym_short] = ACTIONS(7783), + [anon_sym_LBRACK] = ACTIONS(7186), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7186), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7186), }, - [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(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), + [STATE(2501)] = { + [sym_template_argument_list] = STATE(2535), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6781), + [anon_sym_RPAREN] = ACTIONS(6781), + [anon_sym_LPAREN2] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6774), + [anon_sym_PLUS] = ACTIONS(6774), + [anon_sym_STAR] = ACTIONS(6774), + [anon_sym_SLASH] = ACTIONS(6774), + [anon_sym_PERCENT] = ACTIONS(6774), + [anon_sym_PIPE_PIPE] = ACTIONS(6781), + [anon_sym_AMP_AMP] = ACTIONS(6781), + [anon_sym_PIPE] = ACTIONS(6774), + [anon_sym_CARET] = ACTIONS(6774), + [anon_sym_AMP] = ACTIONS(6774), + [anon_sym_EQ_EQ] = ACTIONS(6781), + [anon_sym_BANG_EQ] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(6774), + [anon_sym_GT_EQ] = ACTIONS(6781), + [anon_sym_LT_EQ] = ACTIONS(6774), + [anon_sym_LT] = ACTIONS(8333), + [anon_sym_LT_LT] = ACTIONS(6774), + [anon_sym_GT_GT] = ACTIONS(6774), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6774), + [anon_sym_EQ] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_STAR_EQ] = ACTIONS(6781), + [anon_sym_SLASH_EQ] = ACTIONS(6781), + [anon_sym_PERCENT_EQ] = ACTIONS(6781), + [anon_sym_PLUS_EQ] = ACTIONS(6781), + [anon_sym_DASH_EQ] = ACTIONS(6781), + [anon_sym_LT_LT_EQ] = ACTIONS(6781), + [anon_sym_GT_GT_EQ] = ACTIONS(6781), + [anon_sym_AMP_EQ] = ACTIONS(6781), + [anon_sym_CARET_EQ] = ACTIONS(6781), + [anon_sym_PIPE_EQ] = ACTIONS(6781), + [anon_sym_and_eq] = ACTIONS(6774), + [anon_sym_or_eq] = ACTIONS(6774), + [anon_sym_xor_eq] = ACTIONS(6774), + [anon_sym_LT_EQ_GT] = ACTIONS(6781), + [anon_sym_or] = ACTIONS(6774), + [anon_sym_and] = ACTIONS(6774), + [anon_sym_bitor] = ACTIONS(6774), + [anon_sym_xor] = ACTIONS(6774), + [anon_sym_bitand] = ACTIONS(6774), + [anon_sym_not_eq] = ACTIONS(6774), + [anon_sym_DASH_DASH] = ACTIONS(6781), + [anon_sym_PLUS_PLUS] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(6774), + [anon_sym_DOT_STAR] = ACTIONS(6781), + [anon_sym_DASH_GT] = ACTIONS(6774), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_final] = ACTIONS(6774), + [anon_sym_override] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_requires] = ACTIONS(6774), + [anon_sym_DASH_GT_STAR] = ACTIONS(6781), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, - [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(2502)] = { + [sym_template_argument_list] = STATE(2537), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_RPAREN] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_PIPE_PIPE] = ACTIONS(6778), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(6785), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6778), + [anon_sym_BANG_EQ] = ACTIONS(6778), + [anon_sym_GT] = ACTIONS(6785), + [anon_sym_GT_EQ] = ACTIONS(6778), + [anon_sym_LT_EQ] = ACTIONS(6785), + [anon_sym_LT] = ACTIONS(8329), + [anon_sym_LT_LT] = ACTIONS(6785), + [anon_sym_GT_GT] = ACTIONS(6785), + [anon_sym_SEMI] = ACTIONS(6778), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6785), + [anon_sym___attribute] = ACTIONS(6785), + [anon_sym_COLON] = ACTIONS(6785), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6778), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_RBRACE] = ACTIONS(6778), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6778), + [anon_sym_STAR_EQ] = ACTIONS(6778), + [anon_sym_SLASH_EQ] = ACTIONS(6778), + [anon_sym_PERCENT_EQ] = ACTIONS(6778), + [anon_sym_PLUS_EQ] = ACTIONS(6778), + [anon_sym_DASH_EQ] = ACTIONS(6778), + [anon_sym_LT_LT_EQ] = ACTIONS(6778), + [anon_sym_GT_GT_EQ] = ACTIONS(6778), + [anon_sym_AMP_EQ] = ACTIONS(6778), + [anon_sym_CARET_EQ] = ACTIONS(6778), + [anon_sym_PIPE_EQ] = ACTIONS(6778), + [anon_sym_and_eq] = ACTIONS(6785), + [anon_sym_or_eq] = ACTIONS(6785), + [anon_sym_xor_eq] = ACTIONS(6785), + [anon_sym_LT_EQ_GT] = ACTIONS(6778), + [anon_sym_or] = ACTIONS(6785), + [anon_sym_and] = ACTIONS(6785), + [anon_sym_bitor] = ACTIONS(6785), + [anon_sym_xor] = ACTIONS(6785), + [anon_sym_bitand] = ACTIONS(6785), + [anon_sym_not_eq] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(6778), + [anon_sym_PLUS_PLUS] = ACTIONS(6778), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_DOT_STAR] = ACTIONS(6778), + [anon_sym_DASH_GT] = ACTIONS(6778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + [anon_sym_COLON_RBRACK] = ACTIONS(6778), }, - [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(2503)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON_COLON] = ACTIONS(7186), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(8336), + [anon_sym_unsigned] = ACTIONS(8336), + [anon_sym_long] = ACTIONS(8336), + [anon_sym_short] = ACTIONS(8336), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7183), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7186), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7183), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_template] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_DASH_GT_STAR] = ACTIONS(7186), + [anon_sym_LBRACK_COLON] = ACTIONS(7186), }, - [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(2504)] = { + [sym_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(2581), + [sym_identifier] = ACTIONS(7129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [anon_sym_RPAREN] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7129), + [anon_sym_SLASH] = ACTIONS(7129), + [anon_sym_PERCENT] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7129), + [anon_sym_CARET] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_EQ_EQ] = ACTIONS(7131), + [anon_sym_BANG_EQ] = ACTIONS(7131), + [anon_sym_GT] = ACTIONS(7129), + [anon_sym_GT_EQ] = ACTIONS(7131), + [anon_sym_LT_EQ] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(7129), + [anon_sym_LT_LT] = ACTIONS(7129), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym___extension__] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7129), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(7167), + [anon_sym_unsigned] = ACTIONS(7167), + [anon_sym_long] = ACTIONS(7167), + [anon_sym_short] = ACTIONS(7167), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_EQ] = ACTIONS(7129), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_restrict] = ACTIONS(7129), + [anon_sym___restrict__] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [anon_sym__Noreturn] = ACTIONS(7129), + [anon_sym_noreturn] = ACTIONS(7129), + [anon_sym__Nonnull] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [anon_sym_constinit] = ACTIONS(7129), + [anon_sym_consteval] = ACTIONS(7129), + [anon_sym_alignas] = ACTIONS(7129), + [anon_sym__Alignas] = ACTIONS(7129), + [anon_sym_QMARK] = ACTIONS(7131), + [anon_sym_STAR_EQ] = ACTIONS(7131), + [anon_sym_SLASH_EQ] = ACTIONS(7131), + [anon_sym_PERCENT_EQ] = ACTIONS(7131), + [anon_sym_PLUS_EQ] = ACTIONS(7131), + [anon_sym_DASH_EQ] = ACTIONS(7131), + [anon_sym_LT_LT_EQ] = ACTIONS(7131), + [anon_sym_GT_GT_EQ] = ACTIONS(7131), + [anon_sym_AMP_EQ] = ACTIONS(7131), + [anon_sym_CARET_EQ] = ACTIONS(7131), + [anon_sym_PIPE_EQ] = ACTIONS(7131), + [anon_sym_LT_EQ_GT] = ACTIONS(7131), + [anon_sym_or] = ACTIONS(7129), + [anon_sym_and] = ACTIONS(7129), + [anon_sym_bitor] = ACTIONS(7129), + [anon_sym_xor] = ACTIONS(7129), + [anon_sym_bitand] = ACTIONS(7129), + [anon_sym_not_eq] = ACTIONS(7129), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DOT] = ACTIONS(7129), + [anon_sym_DOT_STAR] = ACTIONS(7131), + [anon_sym_DASH_GT] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7129), + [anon_sym_final] = ACTIONS(7129), + [anon_sym_override] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_requires] = ACTIONS(7129), + [anon_sym_DASH_GT_STAR] = ACTIONS(7131), + [anon_sym_LBRACK_COLON] = ACTIONS(7131), }, - [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), - [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(2505)] = { + [sym_attribute_specifier] = STATE(2994), + [sym_enumerator_list] = STATE(2747), + [sym__enum_base_clause] = STATE(2598), + [sym_identifier] = ACTIONS(7390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(7392), + [anon_sym_LPAREN2] = ACTIONS(7392), + [anon_sym_DASH] = ACTIONS(7390), + [anon_sym_PLUS] = ACTIONS(7390), + [anon_sym_STAR] = ACTIONS(7390), + [anon_sym_SLASH] = ACTIONS(7390), + [anon_sym_PERCENT] = ACTIONS(7390), + [anon_sym_PIPE_PIPE] = ACTIONS(7392), + [anon_sym_AMP_AMP] = ACTIONS(7392), + [anon_sym_PIPE] = ACTIONS(7390), + [anon_sym_CARET] = ACTIONS(7390), + [anon_sym_AMP] = ACTIONS(7390), + [anon_sym_EQ_EQ] = ACTIONS(7392), + [anon_sym_BANG_EQ] = ACTIONS(7392), + [anon_sym_GT] = ACTIONS(7390), + [anon_sym_GT_EQ] = ACTIONS(7390), + [anon_sym_LT_EQ] = ACTIONS(7390), + [anon_sym_LT] = ACTIONS(7390), + [anon_sym_LT_LT] = ACTIONS(7390), + [anon_sym_GT_GT] = ACTIONS(7390), + [anon_sym___extension__] = ACTIONS(7390), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON] = ACTIONS(8339), + [anon_sym_COLON_COLON] = ACTIONS(7392), + [anon_sym_LBRACE] = ACTIONS(8341), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym_EQ] = ACTIONS(7390), + [anon_sym_const] = ACTIONS(7390), + [anon_sym_constexpr] = ACTIONS(7390), + [anon_sym_volatile] = ACTIONS(7390), + [anon_sym_restrict] = ACTIONS(7390), + [anon_sym___restrict__] = ACTIONS(7390), + [anon_sym__Atomic] = ACTIONS(7390), + [anon_sym__Noreturn] = ACTIONS(7390), + [anon_sym_noreturn] = ACTIONS(7390), + [anon_sym__Nonnull] = ACTIONS(7390), + [anon_sym_mutable] = ACTIONS(7390), + [anon_sym_constinit] = ACTIONS(7390), + [anon_sym_consteval] = ACTIONS(7390), + [anon_sym_alignas] = ACTIONS(7390), + [anon_sym__Alignas] = ACTIONS(7390), + [anon_sym_QMARK] = ACTIONS(7392), + [anon_sym_STAR_EQ] = ACTIONS(7392), + [anon_sym_SLASH_EQ] = ACTIONS(7392), + [anon_sym_PERCENT_EQ] = ACTIONS(7392), + [anon_sym_PLUS_EQ] = ACTIONS(7392), + [anon_sym_DASH_EQ] = ACTIONS(7392), + [anon_sym_LT_LT_EQ] = ACTIONS(7392), + [anon_sym_GT_GT_EQ] = ACTIONS(7390), + [anon_sym_AMP_EQ] = ACTIONS(7392), + [anon_sym_CARET_EQ] = ACTIONS(7392), + [anon_sym_PIPE_EQ] = ACTIONS(7392), + [anon_sym_and_eq] = ACTIONS(7390), + [anon_sym_or_eq] = ACTIONS(7390), + [anon_sym_xor_eq] = ACTIONS(7390), + [anon_sym_LT_EQ_GT] = ACTIONS(7392), + [anon_sym_or] = ACTIONS(7390), + [anon_sym_and] = ACTIONS(7390), + [anon_sym_bitor] = ACTIONS(7390), + [anon_sym_xor] = ACTIONS(7390), + [anon_sym_bitand] = ACTIONS(7390), + [anon_sym_not_eq] = ACTIONS(7390), + [anon_sym_DASH_DASH] = ACTIONS(7392), + [anon_sym_PLUS_PLUS] = ACTIONS(7392), + [anon_sym_DOT] = ACTIONS(7390), + [anon_sym_DOT_STAR] = ACTIONS(7392), + [anon_sym_DASH_GT] = ACTIONS(7392), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7390), + [anon_sym_final] = ACTIONS(7390), + [anon_sym_override] = ACTIONS(7390), + [anon_sym_template] = ACTIONS(7390), + [anon_sym_GT2] = ACTIONS(7392), + [anon_sym_requires] = ACTIONS(7390), + [anon_sym_LBRACK_COLON] = ACTIONS(7392), }, - [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(2506)] = { + [sym_type_qualifier] = STATE(2506), + [sym_alignas_qualifier] = STATE(2680), + [aux_sym__type_definition_type_repeat1] = STATE(2506), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8343), + [anon_sym___attribute__] = ACTIONS(7049), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8346), + [anon_sym_constexpr] = ACTIONS(8343), + [anon_sym_volatile] = ACTIONS(8343), + [anon_sym_restrict] = ACTIONS(8343), + [anon_sym___restrict__] = ACTIONS(8343), + [anon_sym__Atomic] = ACTIONS(8343), + [anon_sym__Noreturn] = ACTIONS(8343), + [anon_sym_noreturn] = ACTIONS(8343), + [anon_sym__Nonnull] = ACTIONS(8343), + [anon_sym_mutable] = ACTIONS(8343), + [anon_sym_constinit] = ACTIONS(8343), + [anon_sym_consteval] = ACTIONS(8343), + [anon_sym_alignas] = ACTIONS(8349), + [anon_sym__Alignas] = ACTIONS(8349), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7049), + [anon_sym_or_eq] = ACTIONS(7049), + [anon_sym_xor_eq] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7049), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7049), + [anon_sym_not_eq] = ACTIONS(7049), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_asm] = ACTIONS(7049), + [anon_sym___asm__] = ACTIONS(7049), + [anon_sym___asm] = ACTIONS(7047), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7047), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7049), + [anon_sym_override] = ACTIONS(7049), + [anon_sym_noexcept] = ACTIONS(7049), + [anon_sym_throw] = ACTIONS(7049), + [anon_sym_requires] = ACTIONS(7049), + [anon_sym_DASH_GT_STAR] = ACTIONS(7049), + }, + [STATE(2507)] = { + [sym_attribute_specifier] = STATE(3001), + [sym_enumerator_list] = STATE(2767), + [sym__enum_base_clause] = STATE(2599), + [sym_identifier] = ACTIONS(7413), + [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(7413), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON] = ACTIONS(8339), + [anon_sym_COLON_COLON] = ACTIONS(7415), + [anon_sym_LBRACE] = ACTIONS(8341), + [anon_sym_LBRACK] = ACTIONS(7413), + [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(7413), + [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(7359), - [anon_sym_override] = ACTIONS(7359), - [anon_sym_requires] = ACTIONS(7359), - [anon_sym_DASH_GT_STAR] = ACTIONS(7359), + [anon_sym_decltype] = ACTIONS(7413), + [anon_sym_final] = ACTIONS(7413), + [anon_sym_override] = ACTIONS(7413), + [anon_sym_template] = ACTIONS(7413), + [anon_sym_GT2] = ACTIONS(7415), + [anon_sym_requires] = ACTIONS(7413), + [anon_sym_LBRACK_COLON] = ACTIONS(7415), + }, + [STATE(2508)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8336), + [anon_sym_unsigned] = ACTIONS(8336), + [anon_sym_long] = ACTIONS(8336), + [anon_sym_short] = ACTIONS(8336), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7173), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_DASH_GT_STAR] = ACTIONS(7175), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), + }, + [STATE(2509)] = { + [sym_attribute_specifier] = STATE(3047), + [sym_enumerator_list] = STATE(2721), + [sym__enum_base_clause] = STATE(2615), + [sym_identifier] = ACTIONS(7390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(7392), + [anon_sym_LPAREN2] = ACTIONS(7392), + [anon_sym_DASH] = ACTIONS(7390), + [anon_sym_PLUS] = ACTIONS(7390), + [anon_sym_STAR] = ACTIONS(7390), + [anon_sym_SLASH] = ACTIONS(7390), + [anon_sym_PERCENT] = ACTIONS(7390), + [anon_sym_PIPE_PIPE] = ACTIONS(7392), + [anon_sym_AMP_AMP] = ACTIONS(7392), + [anon_sym_PIPE] = ACTIONS(7390), + [anon_sym_CARET] = ACTIONS(7390), + [anon_sym_AMP] = ACTIONS(7390), + [anon_sym_EQ_EQ] = ACTIONS(7392), + [anon_sym_BANG_EQ] = ACTIONS(7392), + [anon_sym_GT] = ACTIONS(7390), + [anon_sym_GT_EQ] = ACTIONS(7392), + [anon_sym_LT_EQ] = ACTIONS(7390), + [anon_sym_LT] = ACTIONS(7390), + [anon_sym_LT_LT] = ACTIONS(7390), + [anon_sym_GT_GT] = ACTIONS(7390), + [anon_sym___extension__] = ACTIONS(7390), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON] = ACTIONS(8352), + [anon_sym_COLON_COLON] = ACTIONS(7392), + [anon_sym_LBRACE] = ACTIONS(8354), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym_RBRACK] = ACTIONS(7392), + [anon_sym_EQ] = ACTIONS(7390), + [anon_sym_const] = ACTIONS(7390), + [anon_sym_constexpr] = ACTIONS(7390), + [anon_sym_volatile] = ACTIONS(7390), + [anon_sym_restrict] = ACTIONS(7390), + [anon_sym___restrict__] = ACTIONS(7390), + [anon_sym__Atomic] = ACTIONS(7390), + [anon_sym__Noreturn] = ACTIONS(7390), + [anon_sym_noreturn] = ACTIONS(7390), + [anon_sym__Nonnull] = ACTIONS(7390), + [anon_sym_mutable] = ACTIONS(7390), + [anon_sym_constinit] = ACTIONS(7390), + [anon_sym_consteval] = ACTIONS(7390), + [anon_sym_alignas] = ACTIONS(7390), + [anon_sym__Alignas] = ACTIONS(7390), + [anon_sym_QMARK] = ACTIONS(7392), + [anon_sym_STAR_EQ] = ACTIONS(7392), + [anon_sym_SLASH_EQ] = ACTIONS(7392), + [anon_sym_PERCENT_EQ] = ACTIONS(7392), + [anon_sym_PLUS_EQ] = ACTIONS(7392), + [anon_sym_DASH_EQ] = ACTIONS(7392), + [anon_sym_LT_LT_EQ] = ACTIONS(7392), + [anon_sym_GT_GT_EQ] = ACTIONS(7392), + [anon_sym_AMP_EQ] = ACTIONS(7392), + [anon_sym_CARET_EQ] = ACTIONS(7392), + [anon_sym_PIPE_EQ] = ACTIONS(7392), + [anon_sym_and_eq] = ACTIONS(7390), + [anon_sym_or_eq] = ACTIONS(7390), + [anon_sym_xor_eq] = ACTIONS(7390), + [anon_sym_LT_EQ_GT] = ACTIONS(7392), + [anon_sym_or] = ACTIONS(7390), + [anon_sym_and] = ACTIONS(7390), + [anon_sym_bitor] = ACTIONS(7390), + [anon_sym_xor] = ACTIONS(7390), + [anon_sym_bitand] = ACTIONS(7390), + [anon_sym_not_eq] = ACTIONS(7390), + [anon_sym_DASH_DASH] = ACTIONS(7392), + [anon_sym_PLUS_PLUS] = ACTIONS(7392), + [anon_sym_DOT] = ACTIONS(7390), + [anon_sym_DOT_STAR] = ACTIONS(7392), + [anon_sym_DASH_GT] = ACTIONS(7392), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7390), + [anon_sym_final] = ACTIONS(7390), + [anon_sym_override] = ACTIONS(7390), + [anon_sym_template] = ACTIONS(7390), + [anon_sym_requires] = ACTIONS(7390), + [anon_sym_LBRACK_COLON] = ACTIONS(7392), + }, + [STATE(2510)] = { + [sym_attribute_specifier] = STATE(3055), + [sym_enumerator_list] = STATE(2726), + [sym__enum_base_clause] = STATE(2616), + [sym_identifier] = ACTIONS(7413), + [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(7413), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON] = ACTIONS(8352), + [anon_sym_COLON_COLON] = ACTIONS(7415), + [anon_sym_LBRACE] = ACTIONS(8354), + [anon_sym_LBRACK] = ACTIONS(7413), + [anon_sym_RBRACK] = 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_decltype] = ACTIONS(7413), + [anon_sym_final] = ACTIONS(7413), + [anon_sym_override] = ACTIONS(7413), + [anon_sym_template] = ACTIONS(7413), + [anon_sym_requires] = ACTIONS(7413), + [anon_sym_LBRACK_COLON] = ACTIONS(7415), + }, + [STATE(2511)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11158), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11158), + [sym_optional_parameter_declaration] = STATE(11158), + [sym_variadic_parameter_declaration] = STATE(11158), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6682), + [anon_sym_RPAREN] = ACTIONS(6684), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), + }, + [STATE(2512)] = { + [sym_type_qualifier] = STATE(2506), + [sym_alignas_qualifier] = STATE(2680), + [aux_sym__type_definition_type_repeat1] = STATE(2506), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(6869), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_mutable] = ACTIONS(6861), + [anon_sym_constinit] = ACTIONS(6861), + [anon_sym_consteval] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7059), + [anon_sym_or_eq] = ACTIONS(7059), + [anon_sym_xor_eq] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7057), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + [anon_sym_DASH_GT_STAR] = ACTIONS(7059), + }, + [STATE(2513)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11362), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11362), + [sym_optional_parameter_declaration] = STATE(11362), + [sym_variadic_parameter_declaration] = STATE(11362), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6694), + [anon_sym_RPAREN] = ACTIONS(6696), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), + }, + [STATE(2514)] = { + [sym_type_qualifier] = STATE(2506), + [sym_alignas_qualifier] = STATE(2680), + [aux_sym__type_definition_type_repeat1] = STATE(2506), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7344), + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_RPAREN] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7344), + [anon_sym_DASH] = ACTIONS(7342), + [anon_sym_PLUS] = ACTIONS(7342), + [anon_sym_STAR] = ACTIONS(7342), + [anon_sym_SLASH] = ACTIONS(7342), + [anon_sym_PERCENT] = ACTIONS(7342), + [anon_sym_PIPE_PIPE] = ACTIONS(7344), + [anon_sym_AMP_AMP] = ACTIONS(7344), + [anon_sym_PIPE] = ACTIONS(7342), + [anon_sym_CARET] = ACTIONS(7342), + [anon_sym_AMP] = ACTIONS(7342), + [anon_sym_EQ_EQ] = ACTIONS(7344), + [anon_sym_BANG_EQ] = ACTIONS(7344), + [anon_sym_GT] = ACTIONS(7342), + [anon_sym_GT_EQ] = ACTIONS(7344), + [anon_sym_LT_EQ] = ACTIONS(7342), + [anon_sym_LT] = ACTIONS(7342), + [anon_sym_LT_LT] = ACTIONS(7342), + [anon_sym_GT_GT] = ACTIONS(7342), + [anon_sym___extension__] = ACTIONS(6861), + [anon_sym___attribute__] = ACTIONS(7344), + [anon_sym___attribute] = ACTIONS(7342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7344), + [anon_sym_LBRACK] = ACTIONS(7342), + [anon_sym_EQ] = ACTIONS(7342), + [anon_sym_const] = ACTIONS(6869), + [anon_sym_constexpr] = ACTIONS(6861), + [anon_sym_volatile] = ACTIONS(6861), + [anon_sym_restrict] = ACTIONS(6861), + [anon_sym___restrict__] = ACTIONS(6861), + [anon_sym__Atomic] = ACTIONS(6861), + [anon_sym__Noreturn] = ACTIONS(6861), + [anon_sym_noreturn] = ACTIONS(6861), + [anon_sym__Nonnull] = ACTIONS(6861), + [anon_sym_mutable] = ACTIONS(6861), + [anon_sym_constinit] = ACTIONS(6861), + [anon_sym_consteval] = ACTIONS(6861), + [anon_sym_alignas] = ACTIONS(6871), + [anon_sym__Alignas] = ACTIONS(6871), + [anon_sym_QMARK] = ACTIONS(7344), + [anon_sym_STAR_EQ] = ACTIONS(7344), + [anon_sym_SLASH_EQ] = ACTIONS(7344), + [anon_sym_PERCENT_EQ] = ACTIONS(7344), + [anon_sym_PLUS_EQ] = ACTIONS(7344), + [anon_sym_DASH_EQ] = ACTIONS(7344), + [anon_sym_LT_LT_EQ] = ACTIONS(7344), + [anon_sym_GT_GT_EQ] = ACTIONS(7344), + [anon_sym_AMP_EQ] = ACTIONS(7344), + [anon_sym_CARET_EQ] = ACTIONS(7344), + [anon_sym_PIPE_EQ] = ACTIONS(7344), + [anon_sym_and_eq] = ACTIONS(7344), + [anon_sym_or_eq] = ACTIONS(7344), + [anon_sym_xor_eq] = ACTIONS(7344), + [anon_sym_LT_EQ_GT] = ACTIONS(7344), + [anon_sym_or] = ACTIONS(7342), + [anon_sym_and] = ACTIONS(7342), + [anon_sym_bitor] = ACTIONS(7344), + [anon_sym_xor] = ACTIONS(7342), + [anon_sym_bitand] = ACTIONS(7344), + [anon_sym_not_eq] = ACTIONS(7344), + [anon_sym_DASH_DASH] = ACTIONS(7344), + [anon_sym_PLUS_PLUS] = ACTIONS(7344), + [anon_sym_asm] = ACTIONS(7344), + [anon_sym___asm__] = ACTIONS(7344), + [anon_sym___asm] = ACTIONS(7342), + [anon_sym_DOT] = ACTIONS(7342), + [anon_sym_DOT_STAR] = ACTIONS(7344), + [anon_sym_DASH_GT] = ACTIONS(7342), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7344), + [anon_sym_override] = ACTIONS(7344), + [anon_sym_noexcept] = ACTIONS(7344), + [anon_sym_throw] = ACTIONS(7344), + [anon_sym_requires] = ACTIONS(7344), + [anon_sym_DASH_GT_STAR] = ACTIONS(7344), + }, + [STATE(2515)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11145), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11145), + [sym_optional_parameter_declaration] = STATE(11145), + [sym_variadic_parameter_declaration] = STATE(11145), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6654), + [anon_sym_RPAREN] = ACTIONS(6656), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), + }, + [STATE(2516)] = { + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11065), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11065), + [sym_optional_parameter_declaration] = STATE(11065), + [sym_variadic_parameter_declaration] = STATE(11065), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6686), + [anon_sym_RPAREN] = ACTIONS(6688), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7725), - [anon_sym_override] = ACTIONS(7725), - [anon_sym_GT2] = ACTIONS(7725), - [anon_sym_requires] = ACTIONS(7725), + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11392), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11392), + [sym_optional_parameter_declaration] = STATE(11392), + [sym_variadic_parameter_declaration] = STATE(11392), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6718), + [anon_sym_RPAREN] = ACTIONS(6720), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, [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), + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11184), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11184), + [sym_optional_parameter_declaration] = STATE(11184), + [sym_variadic_parameter_declaration] = STATE(11184), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6678), + [anon_sym_RPAREN] = ACTIONS(6680), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, [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), - [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(7363), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7365), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7367), - [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), - [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11297), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11297), + [sym_optional_parameter_declaration] = STATE(11297), + [sym_variadic_parameter_declaration] = STATE(11297), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6690), + [anon_sym_RPAREN] = ACTIONS(6692), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, [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), + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(10901), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(10901), + [sym_optional_parameter_declaration] = STATE(10901), + [sym_variadic_parameter_declaration] = STATE(10901), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6642), + [anon_sym_RPAREN] = ACTIONS(6644), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, [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), + [sym__abstract_declarator] = STATE(7090), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2522), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2285), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9632), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2522), + [sym_identifier] = ACTIONS(5966), + [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(6606), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6604), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(7428), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7434), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7101), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2285), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9632), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [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(6618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(7428), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7434), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7102), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2525), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2285), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9632), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2525), + [sym_identifier] = ACTIONS(5966), + [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(6610), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6608), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(7428), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7434), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7097), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2285), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9632), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [aux_sym_preproc_if_token2] = ACTIONS(5968), + [aux_sym_preproc_else_token1] = ACTIONS(5968), + [aux_sym_preproc_elif_token1] = ACTIONS(5970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5968), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7428), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7434), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7525), + [sym__abstract_declarator] = STATE(7104), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2285), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9632), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [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(6614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(7428), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(7430), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(7432), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(7434), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), - [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_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), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7343), + [sym_identifier] = ACTIONS(7366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7368), + [anon_sym_COMMA] = ACTIONS(7368), + [anon_sym_RPAREN] = ACTIONS(7368), + [anon_sym_LPAREN2] = ACTIONS(7368), + [anon_sym_DASH] = ACTIONS(7366), + [anon_sym_PLUS] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(7366), + [anon_sym_SLASH] = ACTIONS(7366), + [anon_sym_PERCENT] = ACTIONS(7366), + [anon_sym_PIPE_PIPE] = ACTIONS(7368), + [anon_sym_AMP_AMP] = ACTIONS(7368), + [anon_sym_PIPE] = ACTIONS(7366), + [anon_sym_CARET] = ACTIONS(7366), + [anon_sym_AMP] = ACTIONS(7366), + [anon_sym_EQ_EQ] = ACTIONS(7368), + [anon_sym_BANG_EQ] = ACTIONS(7368), + [anon_sym_GT] = ACTIONS(7366), + [anon_sym_GT_EQ] = ACTIONS(7368), + [anon_sym_LT_EQ] = ACTIONS(7366), + [anon_sym_LT] = ACTIONS(7366), + [anon_sym_LT_LT] = ACTIONS(7366), + [anon_sym_GT_GT] = ACTIONS(7366), + [anon_sym___extension__] = ACTIONS(7366), + [anon_sym_COLON_COLON] = ACTIONS(7368), + [sym_ms_restrict_modifier] = ACTIONS(7366), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7366), + [sym_ms_signed_ptr_modifier] = ACTIONS(7366), + [anon_sym__unaligned] = ACTIONS(7366), + [anon_sym___unaligned] = ACTIONS(7366), + [anon_sym_LBRACK] = ACTIONS(7366), + [anon_sym_EQ] = ACTIONS(7366), + [anon_sym_const] = ACTIONS(7366), + [anon_sym_constexpr] = ACTIONS(7366), + [anon_sym_volatile] = ACTIONS(7366), + [anon_sym_restrict] = ACTIONS(7366), + [anon_sym___restrict__] = ACTIONS(7366), + [anon_sym__Atomic] = ACTIONS(7366), + [anon_sym__Noreturn] = ACTIONS(7366), + [anon_sym_noreturn] = ACTIONS(7366), + [anon_sym__Nonnull] = ACTIONS(7366), + [anon_sym_mutable] = ACTIONS(7366), + [anon_sym_constinit] = ACTIONS(7366), + [anon_sym_consteval] = ACTIONS(7366), + [anon_sym_alignas] = ACTIONS(7366), + [anon_sym__Alignas] = ACTIONS(7366), + [anon_sym_QMARK] = ACTIONS(7368), + [anon_sym_STAR_EQ] = ACTIONS(7368), + [anon_sym_SLASH_EQ] = ACTIONS(7368), + [anon_sym_PERCENT_EQ] = ACTIONS(7368), + [anon_sym_PLUS_EQ] = ACTIONS(7368), + [anon_sym_DASH_EQ] = ACTIONS(7368), + [anon_sym_LT_LT_EQ] = ACTIONS(7368), + [anon_sym_GT_GT_EQ] = ACTIONS(7368), + [anon_sym_AMP_EQ] = ACTIONS(7368), + [anon_sym_CARET_EQ] = ACTIONS(7368), + [anon_sym_PIPE_EQ] = ACTIONS(7368), + [anon_sym_and_eq] = ACTIONS(7366), + [anon_sym_or_eq] = ACTIONS(7366), + [anon_sym_xor_eq] = ACTIONS(7366), + [anon_sym_LT_EQ_GT] = ACTIONS(7368), + [anon_sym_or] = ACTIONS(7366), + [anon_sym_and] = ACTIONS(7366), + [anon_sym_bitor] = ACTIONS(7366), + [anon_sym_xor] = ACTIONS(7366), + [anon_sym_bitand] = ACTIONS(7366), + [anon_sym_not_eq] = ACTIONS(7366), + [anon_sym_DASH_DASH] = ACTIONS(7368), + [anon_sym_PLUS_PLUS] = ACTIONS(7368), + [anon_sym_DOT] = ACTIONS(7366), + [anon_sym_DOT_STAR] = ACTIONS(7368), + [anon_sym_DASH_GT] = ACTIONS(7366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7366), + [anon_sym_final] = ACTIONS(7366), + [anon_sym_override] = ACTIONS(7366), + [anon_sym_template] = ACTIONS(7366), + [anon_sym_requires] = ACTIONS(7366), + [anon_sym_DASH_GT_STAR] = ACTIONS(7368), + [anon_sym_LBRACK_COLON] = ACTIONS(7368), }, [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), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(2531), + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7263), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7263), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7263), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7263), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON_COLON] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_signed] = ACTIONS(8356), + [anon_sym_unsigned] = ACTIONS(8356), + [anon_sym_long] = ACTIONS(8356), + [anon_sym_short] = ACTIONS(8356), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym_EQ] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_STAR_EQ] = ACTIONS(7265), + [anon_sym_SLASH_EQ] = ACTIONS(7265), + [anon_sym_PERCENT_EQ] = ACTIONS(7265), + [anon_sym_PLUS_EQ] = ACTIONS(7265), + [anon_sym_DASH_EQ] = ACTIONS(7265), + [anon_sym_LT_LT_EQ] = ACTIONS(7265), + [anon_sym_GT_GT_EQ] = ACTIONS(7265), + [anon_sym_AMP_EQ] = ACTIONS(7265), + [anon_sym_CARET_EQ] = ACTIONS(7265), + [anon_sym_PIPE_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7263), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7263), + [anon_sym_not_eq] = ACTIONS(7263), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7263), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7263), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_template] = ACTIONS(7263), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_DASH_GT_STAR] = ACTIONS(7265), + [anon_sym_LBRACK_COLON] = ACTIONS(7265), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2532), + [sym_identifier] = ACTIONS(7269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7271), + [anon_sym_COMMA] = ACTIONS(7271), + [anon_sym_RPAREN] = ACTIONS(7271), + [anon_sym_LPAREN2] = ACTIONS(7271), + [anon_sym_DASH] = ACTIONS(7269), + [anon_sym_PLUS] = ACTIONS(7269), + [anon_sym_STAR] = ACTIONS(7269), + [anon_sym_SLASH] = ACTIONS(7269), + [anon_sym_PERCENT] = ACTIONS(7269), + [anon_sym_PIPE_PIPE] = ACTIONS(7271), + [anon_sym_AMP_AMP] = ACTIONS(7271), + [anon_sym_PIPE] = ACTIONS(7269), + [anon_sym_CARET] = ACTIONS(7269), + [anon_sym_AMP] = ACTIONS(7269), + [anon_sym_EQ_EQ] = ACTIONS(7271), + [anon_sym_BANG_EQ] = ACTIONS(7271), + [anon_sym_GT] = ACTIONS(7269), + [anon_sym_GT_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7269), + [anon_sym_LT] = ACTIONS(7269), + [anon_sym_LT_LT] = ACTIONS(7269), + [anon_sym_GT_GT] = ACTIONS(7269), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym___attribute__] = ACTIONS(7269), + [anon_sym___attribute] = ACTIONS(7269), + [anon_sym_COLON_COLON] = ACTIONS(7271), + [anon_sym_LBRACE] = ACTIONS(7271), + [anon_sym_signed] = ACTIONS(8358), + [anon_sym_unsigned] = ACTIONS(8358), + [anon_sym_long] = ACTIONS(8358), + [anon_sym_short] = ACTIONS(8358), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7269), + [anon_sym_const] = ACTIONS(7269), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7271), + [anon_sym_STAR_EQ] = ACTIONS(7271), + [anon_sym_SLASH_EQ] = ACTIONS(7271), + [anon_sym_PERCENT_EQ] = ACTIONS(7271), + [anon_sym_PLUS_EQ] = ACTIONS(7271), + [anon_sym_DASH_EQ] = ACTIONS(7271), + [anon_sym_LT_LT_EQ] = ACTIONS(7271), + [anon_sym_GT_GT_EQ] = ACTIONS(7271), + [anon_sym_AMP_EQ] = ACTIONS(7271), + [anon_sym_CARET_EQ] = ACTIONS(7271), + [anon_sym_PIPE_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ_GT] = ACTIONS(7271), + [anon_sym_or] = ACTIONS(7269), + [anon_sym_and] = ACTIONS(7269), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7269), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7271), + [anon_sym_PLUS_PLUS] = ACTIONS(7271), + [anon_sym_DOT] = ACTIONS(7269), + [anon_sym_DOT_STAR] = ACTIONS(7271), + [anon_sym_DASH_GT] = ACTIONS(7269), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7269), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_template] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_DASH_GT_STAR] = ACTIONS(7271), + [anon_sym_LBRACK_COLON] = ACTIONS(7271), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2542), + [sym_identifier] = ACTIONS(7300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7302), + [anon_sym_RPAREN] = ACTIONS(7302), + [anon_sym_LPAREN2] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7300), + [anon_sym_SLASH] = ACTIONS(7300), + [anon_sym_PERCENT] = ACTIONS(7300), + [anon_sym_PIPE_PIPE] = ACTIONS(7302), + [anon_sym_AMP_AMP] = ACTIONS(7302), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_CARET] = ACTIONS(7300), + [anon_sym_AMP] = ACTIONS(7300), + [anon_sym_EQ_EQ] = ACTIONS(7302), + [anon_sym_BANG_EQ] = ACTIONS(7302), + [anon_sym_GT] = ACTIONS(7300), + [anon_sym_GT_EQ] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(7300), + [anon_sym_LT] = ACTIONS(7300), + [anon_sym_LT_LT] = ACTIONS(7300), + [anon_sym_GT_GT] = ACTIONS(7300), + [anon_sym___extension__] = ACTIONS(7300), + [anon_sym___attribute__] = ACTIONS(7300), + [anon_sym___attribute] = ACTIONS(7300), + [anon_sym_COLON_COLON] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(8360), + [anon_sym_unsigned] = ACTIONS(8360), + [anon_sym_long] = ACTIONS(8360), + [anon_sym_short] = ACTIONS(8360), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_EQ] = ACTIONS(7300), + [anon_sym_const] = ACTIONS(7300), + [anon_sym_constexpr] = ACTIONS(7300), + [anon_sym_volatile] = ACTIONS(7300), + [anon_sym_restrict] = ACTIONS(7300), + [anon_sym___restrict__] = ACTIONS(7300), + [anon_sym__Atomic] = ACTIONS(7300), + [anon_sym__Noreturn] = ACTIONS(7300), + [anon_sym_noreturn] = ACTIONS(7300), + [anon_sym__Nonnull] = ACTIONS(7300), + [anon_sym_mutable] = ACTIONS(7300), + [anon_sym_constinit] = ACTIONS(7300), + [anon_sym_consteval] = ACTIONS(7300), + [anon_sym_alignas] = ACTIONS(7300), + [anon_sym__Alignas] = ACTIONS(7300), + [anon_sym_QMARK] = ACTIONS(7302), + [anon_sym_STAR_EQ] = ACTIONS(7302), + [anon_sym_SLASH_EQ] = ACTIONS(7302), + [anon_sym_PERCENT_EQ] = ACTIONS(7302), + [anon_sym_PLUS_EQ] = ACTIONS(7302), + [anon_sym_DASH_EQ] = ACTIONS(7302), + [anon_sym_LT_LT_EQ] = ACTIONS(7302), + [anon_sym_GT_GT_EQ] = ACTIONS(7302), + [anon_sym_AMP_EQ] = ACTIONS(7302), + [anon_sym_CARET_EQ] = ACTIONS(7302), + [anon_sym_PIPE_EQ] = ACTIONS(7302), + [anon_sym_LT_EQ_GT] = ACTIONS(7302), + [anon_sym_or] = ACTIONS(7300), + [anon_sym_and] = ACTIONS(7300), + [anon_sym_bitor] = ACTIONS(7300), + [anon_sym_xor] = ACTIONS(7300), + [anon_sym_bitand] = ACTIONS(7300), + [anon_sym_not_eq] = ACTIONS(7300), + [anon_sym_DASH_DASH] = ACTIONS(7302), + [anon_sym_PLUS_PLUS] = ACTIONS(7302), + [anon_sym_DOT] = ACTIONS(7300), + [anon_sym_DOT_STAR] = ACTIONS(7302), + [anon_sym_DASH_GT] = ACTIONS(7300), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7300), + [anon_sym_final] = ACTIONS(7300), + [anon_sym_override] = ACTIONS(7300), + [anon_sym_template] = ACTIONS(7300), + [anon_sym_requires] = ACTIONS(7300), + [anon_sym_DASH_GT_STAR] = ACTIONS(7302), + [anon_sym_LBRACK_COLON] = ACTIONS(7302), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(8362), + [anon_sym_unsigned] = ACTIONS(8362), + [anon_sym_long] = ACTIONS(8362), + [anon_sym_short] = ACTIONS(8362), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7292), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_DASH_GT_STAR] = ACTIONS(7292), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), }, [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(2542), + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7275), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7275), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7275), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7275), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON_COLON] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_signed] = ACTIONS(8360), + [anon_sym_unsigned] = ACTIONS(8360), + [anon_sym_long] = ACTIONS(8360), + [anon_sym_short] = ACTIONS(8360), + [anon_sym_LBRACK] = ACTIONS(7275), + [anon_sym_EQ] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_STAR_EQ] = ACTIONS(7277), + [anon_sym_SLASH_EQ] = ACTIONS(7277), + [anon_sym_PERCENT_EQ] = ACTIONS(7277), + [anon_sym_PLUS_EQ] = ACTIONS(7277), + [anon_sym_DASH_EQ] = ACTIONS(7277), + [anon_sym_LT_LT_EQ] = ACTIONS(7277), + [anon_sym_GT_GT_EQ] = ACTIONS(7277), + [anon_sym_AMP_EQ] = ACTIONS(7277), + [anon_sym_CARET_EQ] = ACTIONS(7277), + [anon_sym_PIPE_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7275), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7275), + [anon_sym_not_eq] = ACTIONS(7275), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7275), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7275), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_template] = ACTIONS(7275), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_DASH_GT_STAR] = ACTIONS(7277), + [anon_sym_LBRACK_COLON] = ACTIONS(7277), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2542), + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_RPAREN] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7279), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7279), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7279), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7279), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON_COLON] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_signed] = ACTIONS(8360), + [anon_sym_unsigned] = ACTIONS(8360), + [anon_sym_long] = ACTIONS(8360), + [anon_sym_short] = ACTIONS(8360), + [anon_sym_LBRACK] = ACTIONS(7279), + [anon_sym_EQ] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_STAR_EQ] = ACTIONS(7281), + [anon_sym_SLASH_EQ] = ACTIONS(7281), + [anon_sym_PERCENT_EQ] = ACTIONS(7281), + [anon_sym_PLUS_EQ] = ACTIONS(7281), + [anon_sym_DASH_EQ] = ACTIONS(7281), + [anon_sym_LT_LT_EQ] = ACTIONS(7281), + [anon_sym_GT_GT_EQ] = ACTIONS(7281), + [anon_sym_AMP_EQ] = ACTIONS(7281), + [anon_sym_CARET_EQ] = ACTIONS(7281), + [anon_sym_PIPE_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7279), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7279), + [anon_sym_not_eq] = ACTIONS(7279), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7279), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7279), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_template] = ACTIONS(7279), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_DASH_GT_STAR] = ACTIONS(7281), + [anon_sym_LBRACK_COLON] = ACTIONS(7281), }, [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_template_argument_list] = STATE(2275), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7444), + [anon_sym_RPAREN] = ACTIONS(7444), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_DASH] = ACTIONS(7451), + [anon_sym_PLUS] = ACTIONS(7451), + [anon_sym_STAR] = ACTIONS(7451), + [anon_sym_SLASH] = ACTIONS(7451), + [anon_sym_PERCENT] = ACTIONS(7451), + [anon_sym_PIPE_PIPE] = ACTIONS(7444), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7451), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7444), + [anon_sym_BANG_EQ] = ACTIONS(7444), + [anon_sym_GT] = ACTIONS(7451), + [anon_sym_GT_EQ] = ACTIONS(7444), + [anon_sym_LT_EQ] = ACTIONS(7451), + [anon_sym_LT] = ACTIONS(7100), + [anon_sym_LT_LT] = ACTIONS(7451), + [anon_sym_GT_GT] = ACTIONS(7451), + [anon_sym_SEMI] = ACTIONS(7444), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7451), + [anon_sym___attribute] = ACTIONS(7451), + [anon_sym_COLON] = ACTIONS(7451), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7444), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_EQ] = ACTIONS(7451), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7444), + [anon_sym_STAR_EQ] = ACTIONS(7444), + [anon_sym_SLASH_EQ] = ACTIONS(7444), + [anon_sym_PERCENT_EQ] = ACTIONS(7444), + [anon_sym_PLUS_EQ] = ACTIONS(7444), + [anon_sym_DASH_EQ] = ACTIONS(7444), + [anon_sym_LT_LT_EQ] = ACTIONS(7444), + [anon_sym_GT_GT_EQ] = ACTIONS(7444), + [anon_sym_AMP_EQ] = ACTIONS(7444), + [anon_sym_CARET_EQ] = ACTIONS(7444), + [anon_sym_PIPE_EQ] = ACTIONS(7444), + [anon_sym_and_eq] = ACTIONS(7451), + [anon_sym_or_eq] = ACTIONS(7451), + [anon_sym_xor_eq] = ACTIONS(7451), + [anon_sym_LT_EQ_GT] = ACTIONS(7444), + [anon_sym_or] = ACTIONS(7451), + [anon_sym_and] = ACTIONS(7451), + [anon_sym_bitor] = ACTIONS(7451), + [anon_sym_xor] = ACTIONS(7451), + [anon_sym_bitand] = ACTIONS(7451), + [anon_sym_not_eq] = ACTIONS(7451), + [anon_sym_DASH_DASH] = ACTIONS(7444), + [anon_sym_PLUS_PLUS] = ACTIONS(7444), + [anon_sym_DOT] = ACTIONS(7451), + [anon_sym_DOT_STAR] = ACTIONS(7444), + [anon_sym_DASH_GT] = ACTIONS(7444), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + [anon_sym_COLON_RBRACK] = ACTIONS(7444), }, [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_decltype_auto] = STATE(3255), + [sym_template_argument_list] = STATE(3095), + [aux_sym_sized_type_specifier_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_RPAREN] = ACTIONS(5669), + [aux_sym_preproc_if_token2] = ACTIONS(5669), + [aux_sym_preproc_else_token1] = ACTIONS(5669), + [aux_sym_preproc_elif_token1] = ACTIONS(5661), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5669), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5669), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5669), + [anon_sym_BANG_EQ] = ACTIONS(5669), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5669), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(8364), + [anon_sym_LT_LT] = ACTIONS(5669), + [anon_sym_GT_GT] = ACTIONS(5669), + [anon_sym_SEMI] = ACTIONS(5669), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5669), + [anon_sym_RBRACE] = ACTIONS(5669), + [anon_sym_signed] = ACTIONS(6952), + [anon_sym_unsigned] = ACTIONS(6952), + [anon_sym_long] = ACTIONS(6952), + [anon_sym_short] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5669), + [anon_sym_LT_EQ_GT] = ACTIONS(5669), + [anon_sym_or] = ACTIONS(5661), + [anon_sym_and] = ACTIONS(5661), + [anon_sym_bitor] = ACTIONS(5661), + [anon_sym_xor] = ACTIONS(5661), + [anon_sym_bitand] = ACTIONS(5661), + [anon_sym_not_eq] = ACTIONS(5661), + [anon_sym_DASH_DASH] = ACTIONS(5669), + [anon_sym_PLUS_PLUS] = ACTIONS(5669), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5669), + [anon_sym_DASH_GT] = ACTIONS(5669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6958), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_requires] = ACTIONS(5661), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + [anon_sym_COLON_RBRACK] = ACTIONS(5669), }, [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_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_STAR] = ACTIONS(6815), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE] = ACTIONS(6815), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_EQ_EQ] = ACTIONS(6822), + [anon_sym_BANG_EQ] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6815), + [anon_sym_GT_EQ] = ACTIONS(6822), + [anon_sym_LT_EQ] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(6815), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_STAR_EQ] = ACTIONS(6822), + [anon_sym_SLASH_EQ] = ACTIONS(6822), + [anon_sym_PERCENT_EQ] = ACTIONS(6822), + [anon_sym_PLUS_EQ] = ACTIONS(6822), + [anon_sym_DASH_EQ] = ACTIONS(6822), + [anon_sym_LT_LT_EQ] = ACTIONS(6822), + [anon_sym_GT_GT_EQ] = ACTIONS(6822), + [anon_sym_AMP_EQ] = ACTIONS(6822), + [anon_sym_CARET_EQ] = ACTIONS(6822), + [anon_sym_PIPE_EQ] = ACTIONS(6822), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6822), + [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(6822), + [anon_sym_PLUS_PLUS] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6815), + [anon_sym_DOT_STAR] = ACTIONS(6822), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6822), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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_ms_unaligned_ptr_modifier] = STATE(2819), + [sym_ms_pointer_modifier] = STATE(2536), + [aux_sym_pointer_declarator_repeat1] = STATE(2536), + [sym_identifier] = ACTIONS(7119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7121), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_RPAREN] = ACTIONS(7121), + [anon_sym_LPAREN2] = ACTIONS(7121), + [anon_sym_DASH] = ACTIONS(7119), + [anon_sym_PLUS] = ACTIONS(7119), + [anon_sym_STAR] = ACTIONS(7119), + [anon_sym_SLASH] = ACTIONS(7119), + [anon_sym_PERCENT] = ACTIONS(7119), + [anon_sym_PIPE_PIPE] = ACTIONS(7121), + [anon_sym_AMP_AMP] = ACTIONS(7121), + [anon_sym_PIPE] = ACTIONS(7119), + [anon_sym_CARET] = ACTIONS(7119), + [anon_sym_AMP] = ACTIONS(7119), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_GT] = ACTIONS(7119), + [anon_sym_GT_EQ] = ACTIONS(7121), + [anon_sym_LT_EQ] = ACTIONS(7119), + [anon_sym_LT] = ACTIONS(7119), + [anon_sym_LT_LT] = ACTIONS(7119), + [anon_sym_GT_GT] = ACTIONS(7119), + [anon_sym___extension__] = ACTIONS(7119), + [anon_sym_COLON_COLON] = ACTIONS(7121), + [sym_ms_restrict_modifier] = ACTIONS(8366), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8366), + [sym_ms_signed_ptr_modifier] = ACTIONS(8366), + [anon_sym__unaligned] = ACTIONS(8369), + [anon_sym___unaligned] = ACTIONS(8369), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_EQ] = ACTIONS(7119), + [anon_sym_const] = ACTIONS(7119), + [anon_sym_constexpr] = ACTIONS(7119), + [anon_sym_volatile] = ACTIONS(7119), + [anon_sym_restrict] = ACTIONS(7119), + [anon_sym___restrict__] = ACTIONS(7119), + [anon_sym__Atomic] = ACTIONS(7119), + [anon_sym__Noreturn] = ACTIONS(7119), + [anon_sym_noreturn] = ACTIONS(7119), + [anon_sym__Nonnull] = ACTIONS(7119), + [anon_sym_mutable] = ACTIONS(7119), + [anon_sym_constinit] = ACTIONS(7119), + [anon_sym_consteval] = ACTIONS(7119), + [anon_sym_alignas] = ACTIONS(7119), + [anon_sym__Alignas] = ACTIONS(7119), + [anon_sym_QMARK] = ACTIONS(7121), + [anon_sym_STAR_EQ] = ACTIONS(7121), + [anon_sym_SLASH_EQ] = ACTIONS(7121), + [anon_sym_PERCENT_EQ] = ACTIONS(7121), + [anon_sym_PLUS_EQ] = ACTIONS(7121), + [anon_sym_DASH_EQ] = ACTIONS(7121), + [anon_sym_LT_LT_EQ] = ACTIONS(7121), + [anon_sym_GT_GT_EQ] = ACTIONS(7121), + [anon_sym_AMP_EQ] = ACTIONS(7121), + [anon_sym_CARET_EQ] = ACTIONS(7121), + [anon_sym_PIPE_EQ] = ACTIONS(7121), + [anon_sym_LT_EQ_GT] = ACTIONS(7121), + [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(7121), + [anon_sym_PLUS_PLUS] = ACTIONS(7121), + [anon_sym_DOT] = ACTIONS(7119), + [anon_sym_DOT_STAR] = ACTIONS(7121), + [anon_sym_DASH_GT] = ACTIONS(7119), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7119), + [anon_sym_final] = ACTIONS(7119), + [anon_sym_override] = ACTIONS(7119), + [anon_sym_template] = ACTIONS(7119), + [anon_sym_requires] = ACTIONS(7119), + [anon_sym_DASH_GT_STAR] = ACTIONS(7121), + [anon_sym_LBRACK_COLON] = ACTIONS(7121), }, [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_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym_SEMI] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6826), + [anon_sym___attribute] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6819), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6819), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6819), + [anon_sym_SLASH_EQ] = ACTIONS(6819), + [anon_sym_PERCENT_EQ] = ACTIONS(6819), + [anon_sym_PLUS_EQ] = ACTIONS(6819), + [anon_sym_DASH_EQ] = ACTIONS(6819), + [anon_sym_LT_LT_EQ] = ACTIONS(6819), + [anon_sym_GT_GT_EQ] = ACTIONS(6819), + [anon_sym_AMP_EQ] = ACTIONS(6819), + [anon_sym_CARET_EQ] = ACTIONS(6819), + [anon_sym_PIPE_EQ] = ACTIONS(6819), + [anon_sym_and_eq] = ACTIONS(6826), + [anon_sym_or_eq] = ACTIONS(6826), + [anon_sym_xor_eq] = ACTIONS(6826), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + [anon_sym_COLON_RBRACK] = ACTIONS(6819), }, [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), + [sym_type_qualifier] = STATE(2555), + [sym_alignas_qualifier] = STATE(2762), + [aux_sym__type_definition_type_repeat1] = STATE(2555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7057), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(6908), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(6916), + [anon_sym_constexpr] = ACTIONS(6908), + [anon_sym_volatile] = ACTIONS(6908), + [anon_sym_restrict] = ACTIONS(6908), + [anon_sym___restrict__] = ACTIONS(6908), + [anon_sym__Atomic] = ACTIONS(6908), + [anon_sym__Noreturn] = ACTIONS(6908), + [anon_sym_noreturn] = ACTIONS(6908), + [anon_sym__Nonnull] = ACTIONS(6908), + [anon_sym_mutable] = ACTIONS(6908), + [anon_sym_constinit] = ACTIONS(6908), + [anon_sym_consteval] = ACTIONS(6908), + [anon_sym_alignas] = ACTIONS(6918), + [anon_sym__Alignas] = ACTIONS(6918), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7057), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7059), + [anon_sym_or_eq] = ACTIONS(7059), + [anon_sym_xor_eq] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_GT2] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), }, [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_type_qualifier] = STATE(2555), + [sym_alignas_qualifier] = STATE(2762), + [aux_sym__type_definition_type_repeat1] = STATE(2555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7344), + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7344), + [anon_sym_DASH] = ACTIONS(7342), + [anon_sym_PLUS] = ACTIONS(7342), + [anon_sym_STAR] = ACTIONS(7342), + [anon_sym_SLASH] = ACTIONS(7342), + [anon_sym_PERCENT] = ACTIONS(7342), + [anon_sym_PIPE_PIPE] = ACTIONS(7344), + [anon_sym_AMP_AMP] = ACTIONS(7344), + [anon_sym_PIPE] = ACTIONS(7342), + [anon_sym_CARET] = ACTIONS(7342), + [anon_sym_AMP] = ACTIONS(7342), + [anon_sym_EQ_EQ] = ACTIONS(7344), + [anon_sym_BANG_EQ] = ACTIONS(7344), + [anon_sym_GT] = ACTIONS(7342), + [anon_sym_GT_EQ] = ACTIONS(7342), + [anon_sym_LT_EQ] = ACTIONS(7342), + [anon_sym_LT] = ACTIONS(7342), + [anon_sym_LT_LT] = ACTIONS(7342), + [anon_sym_GT_GT] = ACTIONS(7342), + [anon_sym___extension__] = ACTIONS(6908), + [anon_sym___attribute__] = ACTIONS(7344), + [anon_sym___attribute] = ACTIONS(7342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7344), + [anon_sym_LBRACK] = ACTIONS(7342), + [anon_sym_EQ] = ACTIONS(7342), + [anon_sym_const] = ACTIONS(6916), + [anon_sym_constexpr] = ACTIONS(6908), + [anon_sym_volatile] = ACTIONS(6908), + [anon_sym_restrict] = ACTIONS(6908), + [anon_sym___restrict__] = ACTIONS(6908), + [anon_sym__Atomic] = ACTIONS(6908), + [anon_sym__Noreturn] = ACTIONS(6908), + [anon_sym_noreturn] = ACTIONS(6908), + [anon_sym__Nonnull] = ACTIONS(6908), + [anon_sym_mutable] = ACTIONS(6908), + [anon_sym_constinit] = ACTIONS(6908), + [anon_sym_consteval] = ACTIONS(6908), + [anon_sym_alignas] = ACTIONS(6918), + [anon_sym__Alignas] = ACTIONS(6918), + [anon_sym_QMARK] = ACTIONS(7344), + [anon_sym_STAR_EQ] = ACTIONS(7344), + [anon_sym_SLASH_EQ] = ACTIONS(7344), + [anon_sym_PERCENT_EQ] = ACTIONS(7344), + [anon_sym_PLUS_EQ] = ACTIONS(7344), + [anon_sym_DASH_EQ] = ACTIONS(7344), + [anon_sym_LT_LT_EQ] = ACTIONS(7344), + [anon_sym_GT_GT_EQ] = ACTIONS(7342), + [anon_sym_AMP_EQ] = ACTIONS(7344), + [anon_sym_CARET_EQ] = ACTIONS(7344), + [anon_sym_PIPE_EQ] = ACTIONS(7344), + [anon_sym_and_eq] = ACTIONS(7344), + [anon_sym_or_eq] = ACTIONS(7344), + [anon_sym_xor_eq] = ACTIONS(7344), + [anon_sym_LT_EQ_GT] = ACTIONS(7344), + [anon_sym_or] = ACTIONS(7342), + [anon_sym_and] = ACTIONS(7342), + [anon_sym_bitor] = ACTIONS(7344), + [anon_sym_xor] = ACTIONS(7342), + [anon_sym_bitand] = ACTIONS(7344), + [anon_sym_not_eq] = ACTIONS(7344), + [anon_sym_DASH_DASH] = ACTIONS(7344), + [anon_sym_PLUS_PLUS] = ACTIONS(7344), + [anon_sym_asm] = ACTIONS(7344), + [anon_sym___asm__] = ACTIONS(7344), + [anon_sym___asm] = ACTIONS(7342), + [anon_sym_DOT] = ACTIONS(7342), + [anon_sym_DOT_STAR] = ACTIONS(7344), + [anon_sym_DASH_GT] = ACTIONS(7344), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7344), + [anon_sym_override] = ACTIONS(7344), + [anon_sym_GT2] = ACTIONS(7344), + [anon_sym_noexcept] = ACTIONS(7344), + [anon_sym_throw] = ACTIONS(7344), + [anon_sym_requires] = ACTIONS(7344), }, [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_argument_list] = STATE(6170), + [sym_initializer_list] = STATE(6233), + [aux_sym_sized_type_specifier_repeat1] = STATE(2412), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8372), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_signed] = ACTIONS(8097), + [anon_sym_unsigned] = ACTIONS(8097), + [anon_sym_long] = ACTIONS(8097), + [anon_sym_short] = ACTIONS(8097), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_decltype_auto] = STATE(3346), + [sym_template_argument_list] = STATE(2745), + [aux_sym_sized_type_specifier_repeat1] = STATE(2581), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_RPAREN] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5661), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_PIPE_PIPE] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5661), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5669), + [anon_sym_BANG_EQ] = ACTIONS(5669), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5669), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(8375), + [anon_sym_LT_LT] = ACTIONS(5661), + [anon_sym_GT_GT] = ACTIONS(5661), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_signed] = ACTIONS(7167), + [anon_sym_unsigned] = ACTIONS(7167), + [anon_sym_long] = ACTIONS(7167), + [anon_sym_short] = ACTIONS(7167), + [anon_sym_LBRACK] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5669), + [anon_sym_STAR_EQ] = ACTIONS(5669), + [anon_sym_SLASH_EQ] = ACTIONS(5669), + [anon_sym_PERCENT_EQ] = ACTIONS(5669), + [anon_sym_PLUS_EQ] = ACTIONS(5669), + [anon_sym_DASH_EQ] = ACTIONS(5669), + [anon_sym_LT_LT_EQ] = ACTIONS(5669), + [anon_sym_GT_GT_EQ] = ACTIONS(5669), + [anon_sym_AMP_EQ] = ACTIONS(5669), + [anon_sym_CARET_EQ] = ACTIONS(5669), + [anon_sym_PIPE_EQ] = ACTIONS(5669), + [anon_sym_LT_EQ_GT] = ACTIONS(5669), + [anon_sym_or] = ACTIONS(5661), + [anon_sym_and] = ACTIONS(5661), + [anon_sym_bitor] = ACTIONS(5661), + [anon_sym_xor] = ACTIONS(5661), + [anon_sym_bitand] = ACTIONS(5661), + [anon_sym_not_eq] = ACTIONS(5661), + [anon_sym_DASH_DASH] = ACTIONS(5669), + [anon_sym_PLUS_PLUS] = ACTIONS(5669), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5669), + [anon_sym_DASH_GT] = ACTIONS(5661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7169), + [anon_sym_decltype] = ACTIONS(7171), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_requires] = ACTIONS(5661), + [anon_sym_DASH_GT_STAR] = ACTIONS(5669), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2542), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8377), + [anon_sym_unsigned] = ACTIONS(8377), + [anon_sym_long] = ACTIONS(8377), + [anon_sym_short] = ACTIONS(8377), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7173), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_DASH_GT_STAR] = ACTIONS(7175), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), }, [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_template_argument_list] = STATE(2604), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6781), + [anon_sym_LPAREN2] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6774), + [anon_sym_PLUS] = ACTIONS(6774), + [anon_sym_STAR] = ACTIONS(6774), + [anon_sym_SLASH] = ACTIONS(6774), + [anon_sym_PERCENT] = ACTIONS(6774), + [anon_sym_PIPE_PIPE] = ACTIONS(6781), + [anon_sym_AMP_AMP] = ACTIONS(6781), + [anon_sym_PIPE] = ACTIONS(6774), + [anon_sym_CARET] = ACTIONS(6774), + [anon_sym_AMP] = ACTIONS(6774), + [anon_sym_EQ_EQ] = ACTIONS(6781), + [anon_sym_BANG_EQ] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(6774), + [anon_sym_GT_EQ] = ACTIONS(6774), + [anon_sym_LT_EQ] = ACTIONS(6774), + [anon_sym_LT] = ACTIONS(8380), + [anon_sym_LT_LT] = ACTIONS(6774), + [anon_sym_GT_GT] = ACTIONS(6774), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6774), + [anon_sym_EQ] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_STAR_EQ] = ACTIONS(6781), + [anon_sym_SLASH_EQ] = ACTIONS(6781), + [anon_sym_PERCENT_EQ] = ACTIONS(6781), + [anon_sym_PLUS_EQ] = ACTIONS(6781), + [anon_sym_DASH_EQ] = ACTIONS(6781), + [anon_sym_LT_LT_EQ] = ACTIONS(6781), + [anon_sym_GT_GT_EQ] = ACTIONS(6774), + [anon_sym_AMP_EQ] = ACTIONS(6781), + [anon_sym_CARET_EQ] = ACTIONS(6781), + [anon_sym_PIPE_EQ] = ACTIONS(6781), + [anon_sym_and_eq] = ACTIONS(6774), + [anon_sym_or_eq] = ACTIONS(6774), + [anon_sym_xor_eq] = ACTIONS(6774), + [anon_sym_LT_EQ_GT] = ACTIONS(6781), + [anon_sym_or] = ACTIONS(6774), + [anon_sym_and] = ACTIONS(6774), + [anon_sym_bitor] = ACTIONS(6774), + [anon_sym_xor] = ACTIONS(6774), + [anon_sym_bitand] = ACTIONS(6774), + [anon_sym_not_eq] = ACTIONS(6774), + [anon_sym_DASH_DASH] = ACTIONS(6781), + [anon_sym_PLUS_PLUS] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(6774), + [anon_sym_DOT_STAR] = ACTIONS(6781), + [anon_sym_DASH_GT] = ACTIONS(6781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_final] = ACTIONS(6774), + [anon_sym_override] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_GT2] = ACTIONS(6781), + [anon_sym_requires] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, [STATE(2544)] = { - [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(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(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), + [sym_template_argument_list] = STATE(2535), + [sym_identifier] = ACTIONS(7543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5689), + [anon_sym_COMMA] = ACTIONS(5689), + [anon_sym_RPAREN] = ACTIONS(5689), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(7543), + [anon_sym_PLUS] = ACTIONS(7543), + [anon_sym_STAR] = ACTIONS(7543), + [anon_sym_SLASH] = ACTIONS(7543), + [anon_sym_PERCENT] = ACTIONS(7543), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_PIPE] = ACTIONS(7543), + [anon_sym_CARET] = ACTIONS(7543), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_GT] = ACTIONS(7543), + [anon_sym_GT_EQ] = ACTIONS(5689), + [anon_sym_LT_EQ] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(8135), + [anon_sym_LT_LT] = ACTIONS(7543), + [anon_sym_GT_GT] = ACTIONS(7543), + [anon_sym___extension__] = ACTIONS(7543), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_EQ] = ACTIONS(7543), + [anon_sym_const] = ACTIONS(7543), + [anon_sym_constexpr] = ACTIONS(7543), + [anon_sym_volatile] = ACTIONS(7543), + [anon_sym_restrict] = ACTIONS(7543), + [anon_sym___restrict__] = ACTIONS(7543), + [anon_sym__Atomic] = ACTIONS(7543), + [anon_sym__Noreturn] = ACTIONS(7543), + [anon_sym_noreturn] = ACTIONS(7543), + [anon_sym__Nonnull] = ACTIONS(7543), + [anon_sym_mutable] = ACTIONS(7543), + [anon_sym_constinit] = ACTIONS(7543), + [anon_sym_consteval] = ACTIONS(7543), + [anon_sym_alignas] = ACTIONS(7543), + [anon_sym__Alignas] = ACTIONS(7543), + [anon_sym_QMARK] = ACTIONS(5689), + [anon_sym_STAR_EQ] = ACTIONS(5689), + [anon_sym_SLASH_EQ] = ACTIONS(5689), + [anon_sym_PERCENT_EQ] = ACTIONS(5689), + [anon_sym_PLUS_EQ] = ACTIONS(5689), + [anon_sym_DASH_EQ] = ACTIONS(5689), + [anon_sym_LT_LT_EQ] = ACTIONS(5689), + [anon_sym_GT_GT_EQ] = ACTIONS(5689), + [anon_sym_AMP_EQ] = ACTIONS(5689), + [anon_sym_CARET_EQ] = ACTIONS(5689), + [anon_sym_PIPE_EQ] = ACTIONS(5689), + [anon_sym_and_eq] = ACTIONS(7543), + [anon_sym_or_eq] = ACTIONS(7543), + [anon_sym_xor_eq] = ACTIONS(7543), + [anon_sym_LT_EQ_GT] = ACTIONS(5689), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_bitor] = ACTIONS(7543), + [anon_sym_xor] = ACTIONS(7543), + [anon_sym_bitand] = ACTIONS(7543), + [anon_sym_not_eq] = ACTIONS(7543), + [anon_sym_DASH_DASH] = ACTIONS(5689), + [anon_sym_PLUS_PLUS] = ACTIONS(5689), + [anon_sym_DOT] = ACTIONS(7543), + [anon_sym_DOT_STAR] = ACTIONS(5689), + [anon_sym_DASH_GT] = ACTIONS(7543), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7543), + [anon_sym_final] = ACTIONS(7543), + [anon_sym_override] = ACTIONS(7543), + [anon_sym_template] = ACTIONS(7543), + [anon_sym_requires] = ACTIONS(7543), + [anon_sym_DASH_GT_STAR] = ACTIONS(5689), + [anon_sym_LBRACK_COLON] = ACTIONS(5689), }, [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_template_argument_list] = STATE(2658), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(8135), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7447), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_and_eq] = ACTIONS(7442), + [anon_sym_or_eq] = ACTIONS(7442), + [anon_sym_xor_eq] = ACTIONS(7442), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7442), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_DASH_GT_STAR] = ACTIONS(7447), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2312), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [aux_sym_preproc_if_token2] = ACTIONS(7186), + [aux_sym_preproc_else_token1] = ACTIONS(7186), + [aux_sym_preproc_elif_token1] = ACTIONS(7183), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(7783), + [anon_sym_unsigned] = ACTIONS(7783), + [anon_sym_long] = ACTIONS(7783), + [anon_sym_short] = ACTIONS(7783), + [anon_sym_LBRACK] = ACTIONS(7186), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7186), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), }, [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), + [sym_attribute_specifier] = STATE(2947), + [sym_enumerator_list] = STATE(2714), + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_RPAREN] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(8154), + [anon_sym_LBRACK] = ACTIONS(7421), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7423), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_and_eq] = ACTIONS(7421), + [anon_sym_or_eq] = ACTIONS(7421), + [anon_sym_xor_eq] = ACTIONS(7421), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7421), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7421), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_template] = ACTIONS(7421), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_DASH_GT_STAR] = ACTIONS(7423), + [anon_sym_LBRACK_COLON] = ACTIONS(7423), }, [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_identifier] = ACTIONS(7346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7348), + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_RPAREN] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7348), + [anon_sym_DASH] = ACTIONS(7346), + [anon_sym_PLUS] = ACTIONS(7346), + [anon_sym_STAR] = ACTIONS(7346), + [anon_sym_SLASH] = ACTIONS(7346), + [anon_sym_PERCENT] = ACTIONS(7346), + [anon_sym_PIPE_PIPE] = ACTIONS(7348), + [anon_sym_AMP_AMP] = ACTIONS(7348), + [anon_sym_PIPE] = ACTIONS(7346), + [anon_sym_CARET] = ACTIONS(7346), + [anon_sym_AMP] = ACTIONS(7346), + [anon_sym_EQ_EQ] = ACTIONS(7348), + [anon_sym_BANG_EQ] = ACTIONS(7348), + [anon_sym_GT] = ACTIONS(7346), + [anon_sym_GT_EQ] = ACTIONS(7348), + [anon_sym_LT_EQ] = ACTIONS(7346), + [anon_sym_LT] = ACTIONS(7346), + [anon_sym_LT_LT] = ACTIONS(7346), + [anon_sym_GT_GT] = ACTIONS(7346), + [anon_sym___extension__] = ACTIONS(7346), + [anon_sym_COLON_COLON] = ACTIONS(7348), + [sym_ms_restrict_modifier] = ACTIONS(7346), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7346), + [sym_ms_signed_ptr_modifier] = ACTIONS(7346), + [anon_sym__unaligned] = ACTIONS(7346), + [anon_sym___unaligned] = ACTIONS(7346), + [anon_sym_LBRACK] = ACTIONS(7346), + [anon_sym_EQ] = ACTIONS(7346), + [anon_sym_const] = ACTIONS(7346), + [anon_sym_constexpr] = ACTIONS(7346), + [anon_sym_volatile] = ACTIONS(7346), + [anon_sym_restrict] = ACTIONS(7346), + [anon_sym___restrict__] = ACTIONS(7346), + [anon_sym__Atomic] = ACTIONS(7346), + [anon_sym__Noreturn] = ACTIONS(7346), + [anon_sym_noreturn] = ACTIONS(7346), + [anon_sym__Nonnull] = ACTIONS(7346), + [anon_sym_mutable] = ACTIONS(7346), + [anon_sym_constinit] = ACTIONS(7346), + [anon_sym_consteval] = ACTIONS(7346), + [anon_sym_alignas] = ACTIONS(7346), + [anon_sym__Alignas] = ACTIONS(7346), + [anon_sym_QMARK] = ACTIONS(7348), + [anon_sym_STAR_EQ] = ACTIONS(7348), + [anon_sym_SLASH_EQ] = ACTIONS(7348), + [anon_sym_PERCENT_EQ] = ACTIONS(7348), + [anon_sym_PLUS_EQ] = ACTIONS(7348), + [anon_sym_DASH_EQ] = ACTIONS(7348), + [anon_sym_LT_LT_EQ] = ACTIONS(7348), + [anon_sym_GT_GT_EQ] = ACTIONS(7348), + [anon_sym_AMP_EQ] = ACTIONS(7348), + [anon_sym_CARET_EQ] = ACTIONS(7348), + [anon_sym_PIPE_EQ] = ACTIONS(7348), + [anon_sym_and_eq] = ACTIONS(7346), + [anon_sym_or_eq] = ACTIONS(7346), + [anon_sym_xor_eq] = ACTIONS(7346), + [anon_sym_LT_EQ_GT] = ACTIONS(7348), + [anon_sym_or] = ACTIONS(7346), + [anon_sym_and] = ACTIONS(7346), + [anon_sym_bitor] = ACTIONS(7346), + [anon_sym_xor] = ACTIONS(7346), + [anon_sym_bitand] = ACTIONS(7346), + [anon_sym_not_eq] = ACTIONS(7346), + [anon_sym_DASH_DASH] = ACTIONS(7348), + [anon_sym_PLUS_PLUS] = ACTIONS(7348), + [anon_sym_DOT] = ACTIONS(7346), + [anon_sym_DOT_STAR] = ACTIONS(7348), + [anon_sym_DASH_GT] = ACTIONS(7346), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7346), + [anon_sym_final] = ACTIONS(7346), + [anon_sym_override] = ACTIONS(7346), + [anon_sym_template] = ACTIONS(7346), + [anon_sym_requires] = ACTIONS(7346), + [anon_sym_DASH_GT_STAR] = ACTIONS(7348), + [anon_sym_LBRACK_COLON] = ACTIONS(7348), }, [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_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_DASH_GT_STAR] = ACTIONS(3108), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), }, [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__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11607), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_explicit_object_parameter_declaration] = STATE(11607), + [sym_optional_parameter_declaration] = STATE(11607), + [sym_variadic_parameter_declaration] = STATE(11607), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8383), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + [sym_this] = ACTIONS(5659), }, [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_type_qualifier] = STATE(2556), + [sym_alignas_qualifier] = STATE(2780), + [aux_sym__type_definition_type_repeat1] = STATE(2556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(6995), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_RBRACK] = ACTIONS(7059), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7003), + [anon_sym_constexpr] = ACTIONS(6995), + [anon_sym_volatile] = ACTIONS(6995), + [anon_sym_restrict] = ACTIONS(6995), + [anon_sym___restrict__] = ACTIONS(6995), + [anon_sym__Atomic] = ACTIONS(6995), + [anon_sym__Noreturn] = ACTIONS(6995), + [anon_sym_noreturn] = ACTIONS(6995), + [anon_sym__Nonnull] = ACTIONS(6995), + [anon_sym_mutable] = ACTIONS(6995), + [anon_sym_constinit] = ACTIONS(6995), + [anon_sym_consteval] = ACTIONS(6995), + [anon_sym_alignas] = ACTIONS(7005), + [anon_sym__Alignas] = ACTIONS(7005), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_and_eq] = ACTIONS(7059), + [anon_sym_or_eq] = ACTIONS(7059), + [anon_sym_xor_eq] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), }, [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_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_DASH_GT_STAR] = ACTIONS(7261), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), }, [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_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym_SEMI] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6826), + [anon_sym___attribute] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6819), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6819), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + [anon_sym_COLON_RBRACK] = ACTIONS(6819), }, [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_template_argument_list] = STATE(2659), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6781), + [anon_sym_LPAREN2] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6774), + [anon_sym_PLUS] = ACTIONS(6774), + [anon_sym_STAR] = ACTIONS(6774), + [anon_sym_SLASH] = ACTIONS(6774), + [anon_sym_PERCENT] = ACTIONS(6774), + [anon_sym_PIPE_PIPE] = ACTIONS(6781), + [anon_sym_AMP_AMP] = ACTIONS(6781), + [anon_sym_PIPE] = ACTIONS(6774), + [anon_sym_CARET] = ACTIONS(6774), + [anon_sym_AMP] = ACTIONS(6774), + [anon_sym_EQ_EQ] = ACTIONS(6781), + [anon_sym_BANG_EQ] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(6774), + [anon_sym_GT_EQ] = ACTIONS(6781), + [anon_sym_LT_EQ] = ACTIONS(6774), + [anon_sym_LT] = ACTIONS(8385), + [anon_sym_LT_LT] = ACTIONS(6774), + [anon_sym_GT_GT] = ACTIONS(6774), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6774), + [anon_sym_RBRACK] = ACTIONS(6781), + [anon_sym_EQ] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_STAR_EQ] = ACTIONS(6781), + [anon_sym_SLASH_EQ] = ACTIONS(6781), + [anon_sym_PERCENT_EQ] = ACTIONS(6781), + [anon_sym_PLUS_EQ] = ACTIONS(6781), + [anon_sym_DASH_EQ] = ACTIONS(6781), + [anon_sym_LT_LT_EQ] = ACTIONS(6781), + [anon_sym_GT_GT_EQ] = ACTIONS(6781), + [anon_sym_AMP_EQ] = ACTIONS(6781), + [anon_sym_CARET_EQ] = ACTIONS(6781), + [anon_sym_PIPE_EQ] = ACTIONS(6781), + [anon_sym_and_eq] = ACTIONS(6774), + [anon_sym_or_eq] = ACTIONS(6774), + [anon_sym_xor_eq] = ACTIONS(6774), + [anon_sym_LT_EQ_GT] = ACTIONS(6781), + [anon_sym_or] = ACTIONS(6774), + [anon_sym_and] = ACTIONS(6774), + [anon_sym_bitor] = ACTIONS(6774), + [anon_sym_xor] = ACTIONS(6774), + [anon_sym_bitand] = ACTIONS(6774), + [anon_sym_not_eq] = ACTIONS(6774), + [anon_sym_DASH_DASH] = ACTIONS(6781), + [anon_sym_PLUS_PLUS] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(6774), + [anon_sym_DOT_STAR] = ACTIONS(6781), + [anon_sym_DASH_GT] = ACTIONS(6781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_final] = ACTIONS(6774), + [anon_sym_override] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_requires] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, [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_type_qualifier] = STATE(2555), + [sym_alignas_qualifier] = STATE(2762), + [aux_sym__type_definition_type_repeat1] = STATE(2555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7047), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8388), + [anon_sym___attribute__] = ACTIONS(7049), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8391), + [anon_sym_constexpr] = ACTIONS(8388), + [anon_sym_volatile] = ACTIONS(8388), + [anon_sym_restrict] = ACTIONS(8388), + [anon_sym___restrict__] = ACTIONS(8388), + [anon_sym__Atomic] = ACTIONS(8388), + [anon_sym__Noreturn] = ACTIONS(8388), + [anon_sym_noreturn] = ACTIONS(8388), + [anon_sym__Nonnull] = ACTIONS(8388), + [anon_sym_mutable] = ACTIONS(8388), + [anon_sym_constinit] = ACTIONS(8388), + [anon_sym_consteval] = ACTIONS(8388), + [anon_sym_alignas] = ACTIONS(8394), + [anon_sym__Alignas] = ACTIONS(8394), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7047), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7049), + [anon_sym_or_eq] = ACTIONS(7049), + [anon_sym_xor_eq] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7049), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7049), + [anon_sym_not_eq] = ACTIONS(7049), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_asm] = ACTIONS(7049), + [anon_sym___asm__] = ACTIONS(7049), + [anon_sym___asm] = ACTIONS(7047), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7049), + [anon_sym_override] = ACTIONS(7049), + [anon_sym_GT2] = ACTIONS(7049), + [anon_sym_noexcept] = ACTIONS(7049), + [anon_sym_throw] = ACTIONS(7049), + [anon_sym_requires] = ACTIONS(7049), }, [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_type_qualifier] = STATE(2556), + [sym_alignas_qualifier] = STATE(2780), + [aux_sym__type_definition_type_repeat1] = STATE(2556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8397), + [anon_sym___attribute__] = ACTIONS(7049), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_RBRACK] = ACTIONS(7049), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8400), + [anon_sym_constexpr] = ACTIONS(8397), + [anon_sym_volatile] = ACTIONS(8397), + [anon_sym_restrict] = ACTIONS(8397), + [anon_sym___restrict__] = ACTIONS(8397), + [anon_sym__Atomic] = ACTIONS(8397), + [anon_sym__Noreturn] = ACTIONS(8397), + [anon_sym_noreturn] = ACTIONS(8397), + [anon_sym__Nonnull] = ACTIONS(8397), + [anon_sym_mutable] = ACTIONS(8397), + [anon_sym_constinit] = ACTIONS(8397), + [anon_sym_consteval] = ACTIONS(8397), + [anon_sym_alignas] = ACTIONS(8403), + [anon_sym__Alignas] = ACTIONS(8403), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7049), + [anon_sym_or_eq] = ACTIONS(7049), + [anon_sym_xor_eq] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7049), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7049), + [anon_sym_not_eq] = ACTIONS(7049), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_asm] = ACTIONS(7049), + [anon_sym___asm__] = ACTIONS(7049), + [anon_sym___asm] = ACTIONS(7047), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7049), + [anon_sym_override] = ACTIONS(7049), + [anon_sym_noexcept] = ACTIONS(7049), + [anon_sym_throw] = ACTIONS(7049), + [anon_sym_requires] = ACTIONS(7049), }, [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), + [sym_type_qualifier] = STATE(2556), + [sym_alignas_qualifier] = STATE(2780), + [aux_sym__type_definition_type_repeat1] = STATE(2556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7344), + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7344), + [anon_sym_DASH] = ACTIONS(7342), + [anon_sym_PLUS] = ACTIONS(7342), + [anon_sym_STAR] = ACTIONS(7342), + [anon_sym_SLASH] = ACTIONS(7342), + [anon_sym_PERCENT] = ACTIONS(7342), + [anon_sym_PIPE_PIPE] = ACTIONS(7344), + [anon_sym_AMP_AMP] = ACTIONS(7344), + [anon_sym_PIPE] = ACTIONS(7342), + [anon_sym_CARET] = ACTIONS(7342), + [anon_sym_AMP] = ACTIONS(7342), + [anon_sym_EQ_EQ] = ACTIONS(7344), + [anon_sym_BANG_EQ] = ACTIONS(7344), + [anon_sym_GT] = ACTIONS(7342), + [anon_sym_GT_EQ] = ACTIONS(7344), + [anon_sym_LT_EQ] = ACTIONS(7342), + [anon_sym_LT] = ACTIONS(7342), + [anon_sym_LT_LT] = ACTIONS(7342), + [anon_sym_GT_GT] = ACTIONS(7342), + [anon_sym___extension__] = ACTIONS(6995), + [anon_sym___attribute__] = ACTIONS(7344), + [anon_sym___attribute] = ACTIONS(7342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7344), + [anon_sym_LBRACK] = ACTIONS(7342), + [anon_sym_RBRACK] = ACTIONS(7344), + [anon_sym_EQ] = ACTIONS(7342), + [anon_sym_const] = ACTIONS(7003), + [anon_sym_constexpr] = ACTIONS(6995), + [anon_sym_volatile] = ACTIONS(6995), + [anon_sym_restrict] = ACTIONS(6995), + [anon_sym___restrict__] = ACTIONS(6995), + [anon_sym__Atomic] = ACTIONS(6995), + [anon_sym__Noreturn] = ACTIONS(6995), + [anon_sym_noreturn] = ACTIONS(6995), + [anon_sym__Nonnull] = ACTIONS(6995), + [anon_sym_mutable] = ACTIONS(6995), + [anon_sym_constinit] = ACTIONS(6995), + [anon_sym_consteval] = ACTIONS(6995), + [anon_sym_alignas] = ACTIONS(7005), + [anon_sym__Alignas] = ACTIONS(7005), + [anon_sym_QMARK] = ACTIONS(7344), + [anon_sym_STAR_EQ] = ACTIONS(7344), + [anon_sym_SLASH_EQ] = ACTIONS(7344), + [anon_sym_PERCENT_EQ] = ACTIONS(7344), + [anon_sym_PLUS_EQ] = ACTIONS(7344), + [anon_sym_DASH_EQ] = ACTIONS(7344), + [anon_sym_LT_LT_EQ] = ACTIONS(7344), + [anon_sym_GT_GT_EQ] = ACTIONS(7344), + [anon_sym_AMP_EQ] = ACTIONS(7344), + [anon_sym_CARET_EQ] = ACTIONS(7344), + [anon_sym_PIPE_EQ] = ACTIONS(7344), + [anon_sym_and_eq] = ACTIONS(7344), + [anon_sym_or_eq] = ACTIONS(7344), + [anon_sym_xor_eq] = ACTIONS(7344), + [anon_sym_LT_EQ_GT] = ACTIONS(7344), + [anon_sym_or] = ACTIONS(7342), + [anon_sym_and] = ACTIONS(7342), + [anon_sym_bitor] = ACTIONS(7344), + [anon_sym_xor] = ACTIONS(7342), + [anon_sym_bitand] = ACTIONS(7344), + [anon_sym_not_eq] = ACTIONS(7344), + [anon_sym_DASH_DASH] = ACTIONS(7344), + [anon_sym_PLUS_PLUS] = ACTIONS(7344), + [anon_sym_asm] = ACTIONS(7344), + [anon_sym___asm__] = ACTIONS(7344), + [anon_sym___asm] = ACTIONS(7342), + [anon_sym_DOT] = ACTIONS(7342), + [anon_sym_DOT_STAR] = ACTIONS(7344), + [anon_sym_DASH_GT] = ACTIONS(7344), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7344), + [anon_sym_override] = ACTIONS(7344), + [anon_sym_noexcept] = ACTIONS(7344), + [anon_sym_throw] = ACTIONS(7344), + [anon_sym_requires] = ACTIONS(7344), + }, + [STATE(2558)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2827), + [sym_ms_pointer_modifier] = STATE(2558), + [aux_sym_pointer_declarator_repeat1] = STATE(2558), + [sym_identifier] = ACTIONS(7119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7121), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_RPAREN] = ACTIONS(7121), + [aux_sym_preproc_if_token2] = ACTIONS(7121), + [aux_sym_preproc_else_token1] = ACTIONS(7121), + [aux_sym_preproc_elif_token1] = ACTIONS(7119), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7121), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7121), + [anon_sym_LPAREN2] = ACTIONS(7121), + [anon_sym_DASH] = ACTIONS(7119), + [anon_sym_PLUS] = ACTIONS(7119), + [anon_sym_STAR] = ACTIONS(7121), + [anon_sym_SLASH] = ACTIONS(7119), + [anon_sym_PERCENT] = ACTIONS(7121), + [anon_sym_PIPE_PIPE] = ACTIONS(7121), + [anon_sym_AMP_AMP] = ACTIONS(7121), + [anon_sym_PIPE] = ACTIONS(7119), + [anon_sym_CARET] = ACTIONS(7121), + [anon_sym_AMP] = ACTIONS(7119), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_GT] = ACTIONS(7119), + [anon_sym_GT_EQ] = ACTIONS(7121), + [anon_sym_LT_EQ] = ACTIONS(7119), + [anon_sym_LT] = ACTIONS(7119), + [anon_sym_LT_LT] = ACTIONS(7121), + [anon_sym_GT_GT] = ACTIONS(7121), + [anon_sym_SEMI] = ACTIONS(7121), + [anon_sym___extension__] = ACTIONS(7119), + [anon_sym___attribute__] = ACTIONS(7119), + [anon_sym___attribute] = ACTIONS(7119), + [anon_sym_COLON] = ACTIONS(7119), + [anon_sym_COLON_COLON] = ACTIONS(7121), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7121), + [sym_ms_restrict_modifier] = ACTIONS(8406), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8406), + [sym_ms_signed_ptr_modifier] = ACTIONS(8406), + [anon_sym__unaligned] = ACTIONS(8409), + [anon_sym___unaligned] = ACTIONS(8409), + [anon_sym_RBRACE] = ACTIONS(7121), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_const] = ACTIONS(7119), + [anon_sym_constexpr] = ACTIONS(7119), + [anon_sym_volatile] = ACTIONS(7119), + [anon_sym_restrict] = ACTIONS(7119), + [anon_sym___restrict__] = ACTIONS(7119), + [anon_sym__Atomic] = ACTIONS(7119), + [anon_sym__Noreturn] = ACTIONS(7119), + [anon_sym_noreturn] = ACTIONS(7119), + [anon_sym__Nonnull] = ACTIONS(7119), + [anon_sym_mutable] = ACTIONS(7119), + [anon_sym_constinit] = ACTIONS(7119), + [anon_sym_consteval] = ACTIONS(7119), + [anon_sym_alignas] = ACTIONS(7119), + [anon_sym__Alignas] = ACTIONS(7119), + [anon_sym_QMARK] = ACTIONS(7121), + [anon_sym_LT_EQ_GT] = ACTIONS(7121), + [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(7121), + [anon_sym_PLUS_PLUS] = ACTIONS(7121), + [anon_sym_DOT] = ACTIONS(7119), + [anon_sym_DOT_STAR] = ACTIONS(7121), + [anon_sym_DASH_GT] = ACTIONS(7121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7119), + [anon_sym_final] = ACTIONS(7119), + [anon_sym_override] = ACTIONS(7119), + [anon_sym_template] = ACTIONS(7119), + [anon_sym_requires] = ACTIONS(7119), + [anon_sym_LBRACK_COLON] = ACTIONS(7121), + [anon_sym_COLON_RBRACK] = ACTIONS(7121), + }, + [STATE(2559)] = { + [sym_attribute_specifier] = STATE(3356), + [sym_field_declaration_list] = STATE(2903), + [sym_virtual_specifier] = STATE(10657), + [sym_base_class_clause] = STATE(11677), + [sym_identifier] = ACTIONS(7370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(7372), + [anon_sym_RPAREN] = ACTIONS(7372), + [anon_sym_LPAREN2] = ACTIONS(7372), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_STAR] = ACTIONS(7370), + [anon_sym_SLASH] = ACTIONS(7370), + [anon_sym_PERCENT] = ACTIONS(7370), + [anon_sym_PIPE_PIPE] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7372), + [anon_sym_PIPE] = ACTIONS(7370), + [anon_sym_CARET] = ACTIONS(7370), + [anon_sym_AMP] = ACTIONS(7370), + [anon_sym_EQ_EQ] = ACTIONS(7372), + [anon_sym_BANG_EQ] = ACTIONS(7372), + [anon_sym_GT] = ACTIONS(7370), + [anon_sym_GT_EQ] = ACTIONS(7372), + [anon_sym_LT_EQ] = ACTIONS(7370), + [anon_sym_LT] = ACTIONS(7370), + [anon_sym_LT_LT] = ACTIONS(7370), + [anon_sym_GT_GT] = ACTIONS(7370), + [anon_sym___extension__] = ACTIONS(7370), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7372), + [anon_sym_LBRACE] = ACTIONS(8414), + [anon_sym_LBRACK] = ACTIONS(7370), + [anon_sym_EQ] = ACTIONS(7370), + [anon_sym_const] = ACTIONS(7370), + [anon_sym_constexpr] = ACTIONS(7370), + [anon_sym_volatile] = ACTIONS(7370), + [anon_sym_restrict] = ACTIONS(7370), + [anon_sym___restrict__] = ACTIONS(7370), + [anon_sym__Atomic] = ACTIONS(7370), + [anon_sym__Noreturn] = ACTIONS(7370), + [anon_sym_noreturn] = ACTIONS(7370), + [anon_sym__Nonnull] = ACTIONS(7370), + [anon_sym_mutable] = ACTIONS(7370), + [anon_sym_constinit] = ACTIONS(7370), + [anon_sym_consteval] = ACTIONS(7370), + [anon_sym_alignas] = ACTIONS(7370), + [anon_sym__Alignas] = ACTIONS(7370), + [anon_sym_QMARK] = ACTIONS(7372), + [anon_sym_STAR_EQ] = ACTIONS(7372), + [anon_sym_SLASH_EQ] = ACTIONS(7372), + [anon_sym_PERCENT_EQ] = ACTIONS(7372), + [anon_sym_PLUS_EQ] = ACTIONS(7372), + [anon_sym_DASH_EQ] = ACTIONS(7372), + [anon_sym_LT_LT_EQ] = ACTIONS(7372), + [anon_sym_GT_GT_EQ] = ACTIONS(7372), + [anon_sym_AMP_EQ] = ACTIONS(7372), + [anon_sym_CARET_EQ] = ACTIONS(7372), + [anon_sym_PIPE_EQ] = ACTIONS(7372), + [anon_sym_LT_EQ_GT] = ACTIONS(7372), + [anon_sym_or] = ACTIONS(7370), + [anon_sym_and] = ACTIONS(7370), + [anon_sym_bitor] = ACTIONS(7370), + [anon_sym_xor] = ACTIONS(7370), + [anon_sym_bitand] = ACTIONS(7370), + [anon_sym_not_eq] = ACTIONS(7370), + [anon_sym_DASH_DASH] = ACTIONS(7372), + [anon_sym_PLUS_PLUS] = ACTIONS(7372), + [anon_sym_DOT] = ACTIONS(7370), + [anon_sym_DOT_STAR] = ACTIONS(7372), + [anon_sym_DASH_GT] = ACTIONS(7370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7370), + [anon_sym_final] = ACTIONS(7380), + [anon_sym_override] = ACTIONS(7380), + [anon_sym_template] = ACTIONS(7370), + [anon_sym_requires] = ACTIONS(7370), + [anon_sym_DASH_GT_STAR] = ACTIONS(7372), + [anon_sym_LBRACK_COLON] = ACTIONS(7372), + }, + [STATE(2560)] = { + [sym__abstract_declarator] = STATE(7296), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(4421), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2444), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9598), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(6618), [anon_sym_PERCENT] = ACTIONS(6616), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(7527), + [anon_sym_PIPE] = ACTIONS(6618), [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_AMP] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), [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_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6618), + [anon_sym_and] = ACTIONS(6618), [anon_sym_bitor] = ACTIONS(6618), - [anon_sym_xor] = ACTIONS(6616), + [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(6618), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6618), - [anon_sym_decltype] = ACTIONS(6618), + [anon_sym_decltype] = ACTIONS(2422), [anon_sym_final] = ACTIONS(6618), [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6616), [anon_sym_requires] = ACTIONS(6618), - }, - [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), - }, - [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), - }, - [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), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), - [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__abstract_declarator] = STATE(7297), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(2563), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2444), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9598), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2563), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(7527), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [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(6608), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6608), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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(2959), + [sym_enumerator_list] = STATE(2716), + [sym_identifier] = ACTIONS(7417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7419), + [anon_sym_COMMA] = ACTIONS(7419), + [anon_sym_RPAREN] = ACTIONS(7419), + [anon_sym_LPAREN2] = ACTIONS(7419), + [anon_sym_DASH] = ACTIONS(7417), + [anon_sym_PLUS] = ACTIONS(7417), + [anon_sym_STAR] = ACTIONS(7417), + [anon_sym_SLASH] = ACTIONS(7417), + [anon_sym_PERCENT] = ACTIONS(7417), + [anon_sym_PIPE_PIPE] = ACTIONS(7419), + [anon_sym_AMP_AMP] = ACTIONS(7419), + [anon_sym_PIPE] = ACTIONS(7417), + [anon_sym_CARET] = ACTIONS(7417), + [anon_sym_AMP] = ACTIONS(7417), + [anon_sym_EQ_EQ] = ACTIONS(7419), + [anon_sym_BANG_EQ] = ACTIONS(7419), + [anon_sym_GT] = ACTIONS(7417), + [anon_sym_GT_EQ] = ACTIONS(7419), + [anon_sym_LT_EQ] = ACTIONS(7417), + [anon_sym_LT] = ACTIONS(7417), + [anon_sym_LT_LT] = ACTIONS(7417), + [anon_sym_GT_GT] = ACTIONS(7417), + [anon_sym___extension__] = ACTIONS(7417), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7419), + [anon_sym_LBRACE] = ACTIONS(8154), + [anon_sym_LBRACK] = ACTIONS(7417), + [anon_sym_EQ] = ACTIONS(7417), + [anon_sym_const] = ACTIONS(7417), + [anon_sym_constexpr] = ACTIONS(7417), + [anon_sym_volatile] = ACTIONS(7417), + [anon_sym_restrict] = ACTIONS(7417), + [anon_sym___restrict__] = ACTIONS(7417), + [anon_sym__Atomic] = ACTIONS(7417), + [anon_sym__Noreturn] = ACTIONS(7417), + [anon_sym_noreturn] = ACTIONS(7417), + [anon_sym__Nonnull] = ACTIONS(7417), + [anon_sym_mutable] = ACTIONS(7417), + [anon_sym_constinit] = ACTIONS(7417), + [anon_sym_consteval] = ACTIONS(7417), + [anon_sym_alignas] = ACTIONS(7417), + [anon_sym__Alignas] = ACTIONS(7417), + [anon_sym_QMARK] = ACTIONS(7419), + [anon_sym_STAR_EQ] = ACTIONS(7419), + [anon_sym_SLASH_EQ] = ACTIONS(7419), + [anon_sym_PERCENT_EQ] = ACTIONS(7419), + [anon_sym_PLUS_EQ] = ACTIONS(7419), + [anon_sym_DASH_EQ] = ACTIONS(7419), + [anon_sym_LT_LT_EQ] = ACTIONS(7419), + [anon_sym_GT_GT_EQ] = ACTIONS(7419), + [anon_sym_AMP_EQ] = ACTIONS(7419), + [anon_sym_CARET_EQ] = ACTIONS(7419), + [anon_sym_PIPE_EQ] = ACTIONS(7419), + [anon_sym_and_eq] = ACTIONS(7417), + [anon_sym_or_eq] = ACTIONS(7417), + [anon_sym_xor_eq] = ACTIONS(7417), + [anon_sym_LT_EQ_GT] = ACTIONS(7419), + [anon_sym_or] = ACTIONS(7417), + [anon_sym_and] = ACTIONS(7417), + [anon_sym_bitor] = ACTIONS(7417), + [anon_sym_xor] = ACTIONS(7417), + [anon_sym_bitand] = ACTIONS(7417), + [anon_sym_not_eq] = ACTIONS(7417), + [anon_sym_DASH_DASH] = ACTIONS(7419), + [anon_sym_PLUS_PLUS] = ACTIONS(7419), + [anon_sym_DOT] = ACTIONS(7417), + [anon_sym_DOT_STAR] = ACTIONS(7419), + [anon_sym_DASH_GT] = ACTIONS(7417), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7417), + [anon_sym_final] = ACTIONS(7417), + [anon_sym_override] = ACTIONS(7417), + [anon_sym_template] = ACTIONS(7417), + [anon_sym_requires] = ACTIONS(7417), + [anon_sym_DASH_GT_STAR] = ACTIONS(7419), + [anon_sym_LBRACK_COLON] = ACTIONS(7419), }, [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), - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [sym__abstract_declarator] = STATE(7298), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(4421), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2444), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9598), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(6614), [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(7527), + [anon_sym_PIPE] = ACTIONS(6614), [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_AMP] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), [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_GT_GT] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), [anon_sym_bitor] = ACTIONS(6614), - [anon_sym_xor] = ACTIONS(6612), + [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(6614), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6614), - [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(2422), [anon_sym_final] = ACTIONS(6614), [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6612), [anon_sym_requires] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), - }, - [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), - }, - [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), - }, - [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), + [STATE(2564)] = { + [sym__abstract_declarator] = STATE(7272), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(4421), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2444), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9598), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(7527), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [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(6600), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), [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), - }, - [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), - }, - [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_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6600), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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(2565)] = { + [sym__abstract_declarator] = STATE(7274), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(4446), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2441), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9647), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4446), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7509), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6618), + [anon_sym_override] = ACTIONS(6618), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6618), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2566)] = { + [sym__abstract_declarator] = STATE(7275), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(2568), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2441), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9647), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2568), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(6610), [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(6610), [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_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), [anon_sym_GT_EQ] = ACTIONS(6608), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), [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(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___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7509), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), [anon_sym_bitor] = ACTIONS(6610), - [anon_sym_xor] = ACTIONS(6608), + [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(6610), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [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_decltype] = ACTIONS(2422), [anon_sym_final] = ACTIONS(6610), [anon_sym_override] = ACTIONS(6610), - [anon_sym_GT2] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(5194), [anon_sym_requires] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [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), + [STATE(2567)] = { + [sym__abstract_declarator] = STATE(7281), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(4446), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2441), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9647), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4446), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7509), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(5968), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), [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_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2568)] = { + [sym__abstract_declarator] = STATE(7277), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(4446), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2441), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9647), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4446), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7509), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2569)] = { + [sym__abstract_declarator] = STATE(7282), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(4446), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2441), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9647), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4446), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7509), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(6600), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2570)] = { + [sym__abstract_declarator] = STATE(7295), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(2560), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2444), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9598), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2560), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(7527), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [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(6604), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6604), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2571)] = { + [sym__abstract_declarator] = STATE(7273), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(2565), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2441), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9647), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2565), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7509), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(6604), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2572)] = { + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_RPAREN] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6829), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6829), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6829), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6829), + [anon_sym_GT_GT] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_STAR_EQ] = ACTIONS(6831), + [anon_sym_SLASH_EQ] = ACTIONS(6831), + [anon_sym_PERCENT_EQ] = ACTIONS(6831), + [anon_sym_PLUS_EQ] = ACTIONS(6831), + [anon_sym_DASH_EQ] = ACTIONS(6831), + [anon_sym_LT_LT_EQ] = ACTIONS(6831), + [anon_sym_GT_GT_EQ] = ACTIONS(6831), + [anon_sym_AMP_EQ] = ACTIONS(6831), + [anon_sym_CARET_EQ] = ACTIONS(6831), + [anon_sym_PIPE_EQ] = ACTIONS(6831), + [anon_sym_and_eq] = ACTIONS(6829), + [anon_sym_or_eq] = ACTIONS(6829), + [anon_sym_xor_eq] = ACTIONS(6829), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_DASH_GT_STAR] = ACTIONS(6831), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), + }, + [STATE(2573)] = { + [sym_attribute_specifier] = STATE(2573), + [aux_sym_type_definition_repeat1] = STATE(2573), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7400), + [anon_sym_COMMA] = ACTIONS(7400), + [anon_sym_RPAREN] = ACTIONS(7400), + [anon_sym_LPAREN2] = ACTIONS(7400), + [anon_sym_DASH] = ACTIONS(7398), + [anon_sym_PLUS] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7398), + [anon_sym_SLASH] = ACTIONS(7398), + [anon_sym_PERCENT] = ACTIONS(7398), + [anon_sym_PIPE_PIPE] = ACTIONS(7400), + [anon_sym_AMP_AMP] = ACTIONS(7400), + [anon_sym_PIPE] = ACTIONS(7398), + [anon_sym_CARET] = ACTIONS(7398), + [anon_sym_AMP] = ACTIONS(7398), + [anon_sym_EQ_EQ] = ACTIONS(7400), + [anon_sym_BANG_EQ] = ACTIONS(7400), + [anon_sym_GT] = ACTIONS(7398), + [anon_sym_GT_EQ] = ACTIONS(7400), + [anon_sym_LT_EQ] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(7398), + [anon_sym_LT_LT] = ACTIONS(7398), + [anon_sym_GT_GT] = ACTIONS(7398), + [anon_sym___extension__] = ACTIONS(7400), + [anon_sym___attribute__] = ACTIONS(8416), + [anon_sym___attribute] = ACTIONS(8419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7400), + [anon_sym_LBRACK] = ACTIONS(7398), + [anon_sym_EQ] = ACTIONS(7398), + [anon_sym_const] = ACTIONS(7398), + [anon_sym_constexpr] = ACTIONS(7400), + [anon_sym_volatile] = ACTIONS(7400), + [anon_sym_restrict] = ACTIONS(7400), + [anon_sym___restrict__] = ACTIONS(7400), + [anon_sym__Atomic] = ACTIONS(7400), + [anon_sym__Noreturn] = ACTIONS(7400), + [anon_sym_noreturn] = ACTIONS(7400), + [anon_sym__Nonnull] = ACTIONS(7400), + [anon_sym_mutable] = ACTIONS(7400), + [anon_sym_constinit] = ACTIONS(7400), + [anon_sym_consteval] = ACTIONS(7400), + [anon_sym_alignas] = ACTIONS(7400), + [anon_sym__Alignas] = ACTIONS(7400), + [anon_sym_QMARK] = ACTIONS(7400), + [anon_sym_STAR_EQ] = ACTIONS(7400), + [anon_sym_SLASH_EQ] = ACTIONS(7400), + [anon_sym_PERCENT_EQ] = ACTIONS(7400), + [anon_sym_PLUS_EQ] = ACTIONS(7400), + [anon_sym_DASH_EQ] = ACTIONS(7400), + [anon_sym_LT_LT_EQ] = ACTIONS(7400), + [anon_sym_GT_GT_EQ] = ACTIONS(7400), + [anon_sym_AMP_EQ] = ACTIONS(7400), + [anon_sym_CARET_EQ] = ACTIONS(7400), + [anon_sym_PIPE_EQ] = ACTIONS(7400), + [anon_sym_and_eq] = ACTIONS(7400), + [anon_sym_or_eq] = ACTIONS(7400), + [anon_sym_xor_eq] = ACTIONS(7400), + [anon_sym_LT_EQ_GT] = ACTIONS(7400), + [anon_sym_or] = ACTIONS(7398), + [anon_sym_and] = ACTIONS(7398), + [anon_sym_bitor] = ACTIONS(7400), + [anon_sym_xor] = ACTIONS(7398), + [anon_sym_bitand] = ACTIONS(7400), + [anon_sym_not_eq] = ACTIONS(7400), + [anon_sym_DASH_DASH] = ACTIONS(7400), + [anon_sym_PLUS_PLUS] = ACTIONS(7400), + [anon_sym_asm] = ACTIONS(7400), + [anon_sym___asm__] = ACTIONS(7400), + [anon_sym___asm] = ACTIONS(7398), + [anon_sym_DOT] = ACTIONS(7398), + [anon_sym_DOT_STAR] = ACTIONS(7400), + [anon_sym_DASH_GT] = ACTIONS(7398), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7400), + [anon_sym_override] = ACTIONS(7400), + [anon_sym_noexcept] = ACTIONS(7400), + [anon_sym_throw] = ACTIONS(7400), + [anon_sym_requires] = ACTIONS(7400), + [anon_sym_DASH_GT_STAR] = ACTIONS(7400), + }, + [STATE(2574)] = { + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_RPAREN] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6803), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_STAR_EQ] = ACTIONS(6805), + [anon_sym_SLASH_EQ] = ACTIONS(6805), + [anon_sym_PERCENT_EQ] = ACTIONS(6805), + [anon_sym_PLUS_EQ] = ACTIONS(6805), + [anon_sym_DASH_EQ] = ACTIONS(6805), + [anon_sym_LT_LT_EQ] = ACTIONS(6805), + [anon_sym_GT_GT_EQ] = ACTIONS(6805), + [anon_sym_AMP_EQ] = ACTIONS(6805), + [anon_sym_CARET_EQ] = ACTIONS(6805), + [anon_sym_PIPE_EQ] = ACTIONS(6805), + [anon_sym_and_eq] = ACTIONS(6803), + [anon_sym_or_eq] = ACTIONS(6803), + [anon_sym_xor_eq] = ACTIONS(6803), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_DASH_GT_STAR] = ACTIONS(6805), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), + }, + [STATE(2575)] = { + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6799), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6799), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6799), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6799), + [anon_sym_GT_GT] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_and_eq] = ACTIONS(6799), + [anon_sym_or_eq] = ACTIONS(6799), + [anon_sym_xor_eq] = ACTIONS(6799), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_DASH_GT_STAR] = ACTIONS(6801), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), + }, + [STATE(2576)] = { + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_RPAREN] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6807), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6807), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6807), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6807), + [anon_sym_GT_GT] = ACTIONS(6807), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [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(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6807), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(6809), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), + }, + [STATE(2577)] = { + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6795), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6795), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6795), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6795), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_EQ] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_STAR_EQ] = ACTIONS(6797), + [anon_sym_SLASH_EQ] = ACTIONS(6797), + [anon_sym_PERCENT_EQ] = ACTIONS(6797), + [anon_sym_PLUS_EQ] = ACTIONS(6797), + [anon_sym_DASH_EQ] = ACTIONS(6797), + [anon_sym_LT_LT_EQ] = ACTIONS(6797), + [anon_sym_GT_GT_EQ] = ACTIONS(6797), + [anon_sym_AMP_EQ] = ACTIONS(6797), + [anon_sym_CARET_EQ] = ACTIONS(6797), + [anon_sym_PIPE_EQ] = ACTIONS(6797), + [anon_sym_and_eq] = ACTIONS(6795), + [anon_sym_or_eq] = ACTIONS(6795), + [anon_sym_xor_eq] = ACTIONS(6795), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_DASH_GT_STAR] = ACTIONS(6797), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), + }, + [STATE(2578)] = { + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_RPAREN] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6791), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6791), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6791), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6791), + [anon_sym_GT_GT] = ACTIONS(6791), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_EQ] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_STAR_EQ] = ACTIONS(6793), + [anon_sym_SLASH_EQ] = ACTIONS(6793), + [anon_sym_PERCENT_EQ] = ACTIONS(6793), + [anon_sym_PLUS_EQ] = ACTIONS(6793), + [anon_sym_DASH_EQ] = ACTIONS(6793), + [anon_sym_LT_LT_EQ] = ACTIONS(6793), + [anon_sym_GT_GT_EQ] = ACTIONS(6793), + [anon_sym_AMP_EQ] = ACTIONS(6793), + [anon_sym_CARET_EQ] = ACTIONS(6793), + [anon_sym_PIPE_EQ] = ACTIONS(6793), + [anon_sym_and_eq] = ACTIONS(6791), + [anon_sym_or_eq] = ACTIONS(6791), + [anon_sym_xor_eq] = ACTIONS(6791), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6791), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_DASH_GT_STAR] = ACTIONS(6793), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), + }, + [STATE(2579)] = { + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_RPAREN] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6811), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6811), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6811), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6811), + [anon_sym_GT_GT] = ACTIONS(6811), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_EQ] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_STAR_EQ] = ACTIONS(6813), + [anon_sym_SLASH_EQ] = ACTIONS(6813), + [anon_sym_PERCENT_EQ] = ACTIONS(6813), + [anon_sym_PLUS_EQ] = ACTIONS(6813), + [anon_sym_DASH_EQ] = ACTIONS(6813), + [anon_sym_LT_LT_EQ] = ACTIONS(6813), + [anon_sym_GT_GT_EQ] = ACTIONS(6813), + [anon_sym_AMP_EQ] = ACTIONS(6813), + [anon_sym_CARET_EQ] = ACTIONS(6813), + [anon_sym_PIPE_EQ] = ACTIONS(6813), + [anon_sym_and_eq] = ACTIONS(6811), + [anon_sym_or_eq] = ACTIONS(6811), + [anon_sym_xor_eq] = ACTIONS(6811), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_DASH_GT_STAR] = ACTIONS(6813), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), + }, + [STATE(2580)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2542), + [sym_identifier] = ACTIONS(7304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7306), + [anon_sym_RPAREN] = ACTIONS(7306), + [anon_sym_LPAREN2] = ACTIONS(7306), + [anon_sym_DASH] = ACTIONS(7304), + [anon_sym_PLUS] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7304), + [anon_sym_SLASH] = ACTIONS(7304), + [anon_sym_PERCENT] = ACTIONS(7304), + [anon_sym_PIPE_PIPE] = ACTIONS(7306), + [anon_sym_AMP_AMP] = ACTIONS(7306), + [anon_sym_PIPE] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(7304), + [anon_sym_AMP] = ACTIONS(7304), + [anon_sym_EQ_EQ] = ACTIONS(7306), + [anon_sym_BANG_EQ] = ACTIONS(7306), + [anon_sym_GT] = ACTIONS(7304), + [anon_sym_GT_EQ] = ACTIONS(7306), + [anon_sym_LT_EQ] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7304), + [anon_sym_LT_LT] = ACTIONS(7304), + [anon_sym_GT_GT] = ACTIONS(7304), + [anon_sym___extension__] = ACTIONS(7304), + [anon_sym___attribute__] = ACTIONS(7304), + [anon_sym___attribute] = ACTIONS(7304), + [anon_sym_COLON_COLON] = ACTIONS(7306), + [anon_sym_LBRACE] = ACTIONS(7306), + [anon_sym_signed] = ACTIONS(8360), + [anon_sym_unsigned] = ACTIONS(8360), + [anon_sym_long] = ACTIONS(8360), + [anon_sym_short] = ACTIONS(8360), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_EQ] = ACTIONS(7304), + [anon_sym_const] = ACTIONS(7304), + [anon_sym_constexpr] = ACTIONS(7304), + [anon_sym_volatile] = ACTIONS(7304), + [anon_sym_restrict] = ACTIONS(7304), + [anon_sym___restrict__] = ACTIONS(7304), + [anon_sym__Atomic] = ACTIONS(7304), + [anon_sym__Noreturn] = ACTIONS(7304), + [anon_sym_noreturn] = ACTIONS(7304), + [anon_sym__Nonnull] = ACTIONS(7304), + [anon_sym_mutable] = ACTIONS(7304), + [anon_sym_constinit] = ACTIONS(7304), + [anon_sym_consteval] = ACTIONS(7304), + [anon_sym_alignas] = ACTIONS(7304), + [anon_sym__Alignas] = ACTIONS(7304), + [anon_sym_QMARK] = ACTIONS(7306), + [anon_sym_STAR_EQ] = ACTIONS(7306), + [anon_sym_SLASH_EQ] = ACTIONS(7306), + [anon_sym_PERCENT_EQ] = ACTIONS(7306), + [anon_sym_PLUS_EQ] = ACTIONS(7306), + [anon_sym_DASH_EQ] = ACTIONS(7306), + [anon_sym_LT_LT_EQ] = ACTIONS(7306), + [anon_sym_GT_GT_EQ] = ACTIONS(7306), + [anon_sym_AMP_EQ] = ACTIONS(7306), + [anon_sym_CARET_EQ] = ACTIONS(7306), + [anon_sym_PIPE_EQ] = ACTIONS(7306), + [anon_sym_LT_EQ_GT] = ACTIONS(7306), + [anon_sym_or] = ACTIONS(7304), + [anon_sym_and] = ACTIONS(7304), + [anon_sym_bitor] = ACTIONS(7304), + [anon_sym_xor] = ACTIONS(7304), + [anon_sym_bitand] = ACTIONS(7304), + [anon_sym_not_eq] = ACTIONS(7304), + [anon_sym_DASH_DASH] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(7306), + [anon_sym_DOT] = ACTIONS(7304), + [anon_sym_DOT_STAR] = ACTIONS(7306), + [anon_sym_DASH_GT] = ACTIONS(7304), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7304), + [anon_sym_final] = ACTIONS(7304), + [anon_sym_override] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7304), + [anon_sym_requires] = ACTIONS(7304), + [anon_sym_DASH_GT_STAR] = ACTIONS(7306), + [anon_sym_LBRACK_COLON] = ACTIONS(7306), + }, + [STATE(2581)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2542), + [sym_identifier] = ACTIONS(7308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7310), + [anon_sym_RPAREN] = ACTIONS(7310), + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_DASH] = ACTIONS(7308), + [anon_sym_PLUS] = ACTIONS(7308), + [anon_sym_STAR] = ACTIONS(7308), + [anon_sym_SLASH] = ACTIONS(7308), + [anon_sym_PERCENT] = ACTIONS(7308), + [anon_sym_PIPE_PIPE] = ACTIONS(7310), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_PIPE] = ACTIONS(7308), + [anon_sym_CARET] = ACTIONS(7308), + [anon_sym_AMP] = ACTIONS(7308), + [anon_sym_EQ_EQ] = ACTIONS(7310), + [anon_sym_BANG_EQ] = ACTIONS(7310), + [anon_sym_GT] = ACTIONS(7308), + [anon_sym_GT_EQ] = ACTIONS(7310), + [anon_sym_LT_EQ] = ACTIONS(7308), + [anon_sym_LT] = ACTIONS(7308), + [anon_sym_LT_LT] = ACTIONS(7308), + [anon_sym_GT_GT] = ACTIONS(7308), + [anon_sym___extension__] = ACTIONS(7308), + [anon_sym___attribute__] = ACTIONS(7308), + [anon_sym___attribute] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_LBRACE] = ACTIONS(7310), + [anon_sym_signed] = ACTIONS(8360), + [anon_sym_unsigned] = ACTIONS(8360), + [anon_sym_long] = ACTIONS(8360), + [anon_sym_short] = ACTIONS(8360), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym_EQ] = ACTIONS(7308), + [anon_sym_const] = ACTIONS(7308), + [anon_sym_constexpr] = ACTIONS(7308), + [anon_sym_volatile] = ACTIONS(7308), + [anon_sym_restrict] = ACTIONS(7308), + [anon_sym___restrict__] = ACTIONS(7308), + [anon_sym__Atomic] = ACTIONS(7308), + [anon_sym__Noreturn] = ACTIONS(7308), + [anon_sym_noreturn] = ACTIONS(7308), + [anon_sym__Nonnull] = ACTIONS(7308), + [anon_sym_mutable] = ACTIONS(7308), + [anon_sym_constinit] = ACTIONS(7308), + [anon_sym_consteval] = ACTIONS(7308), + [anon_sym_alignas] = ACTIONS(7308), + [anon_sym__Alignas] = ACTIONS(7308), + [anon_sym_QMARK] = ACTIONS(7310), + [anon_sym_STAR_EQ] = ACTIONS(7310), + [anon_sym_SLASH_EQ] = ACTIONS(7310), + [anon_sym_PERCENT_EQ] = ACTIONS(7310), + [anon_sym_PLUS_EQ] = ACTIONS(7310), + [anon_sym_DASH_EQ] = ACTIONS(7310), + [anon_sym_LT_LT_EQ] = ACTIONS(7310), + [anon_sym_GT_GT_EQ] = ACTIONS(7310), + [anon_sym_AMP_EQ] = ACTIONS(7310), + [anon_sym_CARET_EQ] = ACTIONS(7310), + [anon_sym_PIPE_EQ] = ACTIONS(7310), + [anon_sym_LT_EQ_GT] = ACTIONS(7310), + [anon_sym_or] = ACTIONS(7308), + [anon_sym_and] = ACTIONS(7308), + [anon_sym_bitor] = ACTIONS(7308), + [anon_sym_xor] = ACTIONS(7308), + [anon_sym_bitand] = ACTIONS(7308), + [anon_sym_not_eq] = ACTIONS(7308), + [anon_sym_DASH_DASH] = ACTIONS(7310), + [anon_sym_PLUS_PLUS] = ACTIONS(7310), + [anon_sym_DOT] = ACTIONS(7308), + [anon_sym_DOT_STAR] = ACTIONS(7310), + [anon_sym_DASH_GT] = ACTIONS(7308), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7308), + [anon_sym_final] = ACTIONS(7308), + [anon_sym_override] = ACTIONS(7308), + [anon_sym_template] = ACTIONS(7308), + [anon_sym_requires] = ACTIONS(7308), + [anon_sym_DASH_GT_STAR] = ACTIONS(7310), + [anon_sym_LBRACK_COLON] = ACTIONS(7310), + }, + [STATE(2582)] = { + [sym_type_qualifier] = STATE(2591), + [sym_alignas_qualifier] = STATE(2885), + [aux_sym__type_definition_type_repeat1] = STATE(2591), + [aux_sym_sized_type_specifier_repeat1] = STATE(2828), + [sym_identifier] = ACTIONS(8422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(8426), + [anon_sym_unsigned] = ACTIONS(8426), + [anon_sym_long] = ACTIONS(8426), + [anon_sym_short] = ACTIONS(8426), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(8424), + [anon_sym_constexpr] = ACTIONS(8424), + [anon_sym_volatile] = ACTIONS(8424), + [anon_sym_restrict] = ACTIONS(8424), + [anon_sym___restrict__] = ACTIONS(8424), + [anon_sym__Atomic] = ACTIONS(8424), + [anon_sym__Noreturn] = ACTIONS(8424), + [anon_sym_noreturn] = ACTIONS(8424), + [anon_sym__Nonnull] = ACTIONS(8424), + [anon_sym_mutable] = ACTIONS(8424), + [anon_sym_constinit] = ACTIONS(8424), + [anon_sym_consteval] = ACTIONS(8424), + [anon_sym_alignas] = ACTIONS(8428), + [anon_sym__Alignas] = ACTIONS(8428), + [sym_primitive_type] = ACTIONS(8430), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6934), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_and_eq] = ACTIONS(6936), + [anon_sym_or_eq] = ACTIONS(6936), + [anon_sym_xor_eq] = ACTIONS(6936), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6936), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6934), + }, + [STATE(2583)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2412), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(8097), + [anon_sym_unsigned] = ACTIONS(8097), + [anon_sym_long] = ACTIONS(8097), + [anon_sym_short] = ACTIONS(8097), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(2584)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2586), + [sym_identifier] = ACTIONS(7316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7318), + [anon_sym_RPAREN] = ACTIONS(7318), + [anon_sym_LPAREN2] = ACTIONS(7318), + [anon_sym_DASH] = ACTIONS(7316), + [anon_sym_PLUS] = ACTIONS(7316), + [anon_sym_STAR] = ACTIONS(7316), + [anon_sym_SLASH] = ACTIONS(7316), + [anon_sym_PERCENT] = ACTIONS(7316), + [anon_sym_PIPE_PIPE] = ACTIONS(7318), + [anon_sym_AMP_AMP] = ACTIONS(7318), + [anon_sym_PIPE] = ACTIONS(7316), + [anon_sym_CARET] = ACTIONS(7316), + [anon_sym_AMP] = ACTIONS(7316), + [anon_sym_EQ_EQ] = ACTIONS(7318), + [anon_sym_BANG_EQ] = ACTIONS(7318), + [anon_sym_GT] = ACTIONS(7316), + [anon_sym_GT_EQ] = ACTIONS(7318), + [anon_sym_LT_EQ] = ACTIONS(7316), + [anon_sym_LT] = ACTIONS(7316), + [anon_sym_LT_LT] = ACTIONS(7316), + [anon_sym_GT_GT] = ACTIONS(7316), + [anon_sym___extension__] = ACTIONS(7316), + [anon_sym___attribute__] = ACTIONS(7316), + [anon_sym___attribute] = ACTIONS(7316), + [anon_sym_COLON_COLON] = ACTIONS(7318), + [anon_sym_LBRACE] = ACTIONS(7318), + [anon_sym_signed] = ACTIONS(8432), + [anon_sym_unsigned] = ACTIONS(8432), + [anon_sym_long] = ACTIONS(8432), + [anon_sym_short] = ACTIONS(8432), + [anon_sym_LBRACK] = ACTIONS(7316), + [anon_sym_EQ] = ACTIONS(7316), + [anon_sym_const] = ACTIONS(7316), + [anon_sym_constexpr] = ACTIONS(7316), + [anon_sym_volatile] = ACTIONS(7316), + [anon_sym_restrict] = ACTIONS(7316), + [anon_sym___restrict__] = ACTIONS(7316), + [anon_sym__Atomic] = ACTIONS(7316), + [anon_sym__Noreturn] = ACTIONS(7316), + [anon_sym_noreturn] = ACTIONS(7316), + [anon_sym__Nonnull] = ACTIONS(7316), + [anon_sym_mutable] = ACTIONS(7316), + [anon_sym_constinit] = ACTIONS(7316), + [anon_sym_consteval] = ACTIONS(7316), + [anon_sym_alignas] = ACTIONS(7316), + [anon_sym__Alignas] = ACTIONS(7316), + [anon_sym_QMARK] = ACTIONS(7318), + [anon_sym_STAR_EQ] = ACTIONS(7318), + [anon_sym_SLASH_EQ] = ACTIONS(7318), + [anon_sym_PERCENT_EQ] = ACTIONS(7318), + [anon_sym_PLUS_EQ] = ACTIONS(7318), + [anon_sym_DASH_EQ] = ACTIONS(7318), + [anon_sym_LT_LT_EQ] = ACTIONS(7318), + [anon_sym_GT_GT_EQ] = ACTIONS(7318), + [anon_sym_AMP_EQ] = ACTIONS(7318), + [anon_sym_CARET_EQ] = ACTIONS(7318), + [anon_sym_PIPE_EQ] = ACTIONS(7318), + [anon_sym_LT_EQ_GT] = ACTIONS(7318), + [anon_sym_or] = ACTIONS(7316), + [anon_sym_and] = ACTIONS(7316), + [anon_sym_bitor] = ACTIONS(7316), + [anon_sym_xor] = ACTIONS(7316), + [anon_sym_bitand] = ACTIONS(7316), + [anon_sym_not_eq] = ACTIONS(7316), + [anon_sym_DASH_DASH] = ACTIONS(7318), + [anon_sym_PLUS_PLUS] = ACTIONS(7318), + [anon_sym_DOT] = ACTIONS(7316), + [anon_sym_DOT_STAR] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(7316), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7316), + [anon_sym_final] = ACTIONS(7316), + [anon_sym_override] = ACTIONS(7316), + [anon_sym_template] = ACTIONS(7316), + [anon_sym_requires] = ACTIONS(7316), + [anon_sym_DASH_GT_STAR] = ACTIONS(7318), + [anon_sym_LBRACK_COLON] = ACTIONS(7318), + }, + [STATE(2585)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(7322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7324), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_RPAREN] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_DASH] = ACTIONS(7322), + [anon_sym_PLUS] = ACTIONS(7322), + [anon_sym_STAR] = ACTIONS(7322), + [anon_sym_SLASH] = ACTIONS(7322), + [anon_sym_PERCENT] = ACTIONS(7322), + [anon_sym_PIPE_PIPE] = ACTIONS(7324), + [anon_sym_AMP_AMP] = ACTIONS(7324), + [anon_sym_PIPE] = ACTIONS(7322), + [anon_sym_CARET] = ACTIONS(7322), + [anon_sym_AMP] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_GT] = ACTIONS(7322), + [anon_sym_GT_EQ] = ACTIONS(7324), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_LT] = ACTIONS(7322), + [anon_sym_LT_LT] = ACTIONS(7322), + [anon_sym_GT_GT] = ACTIONS(7322), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_COLON_COLON] = ACTIONS(7324), + [anon_sym_LBRACE] = ACTIONS(7324), + [anon_sym_signed] = ACTIONS(8434), + [anon_sym_unsigned] = ACTIONS(8434), + [anon_sym_long] = ACTIONS(8434), + [anon_sym_short] = ACTIONS(8434), + [anon_sym_LBRACK] = ACTIONS(7322), + [anon_sym_EQ] = ACTIONS(7322), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_mutable] = ACTIONS(7322), + [anon_sym_constinit] = ACTIONS(7322), + [anon_sym_consteval] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [anon_sym_QMARK] = ACTIONS(7324), + [anon_sym_STAR_EQ] = ACTIONS(7324), + [anon_sym_SLASH_EQ] = ACTIONS(7324), + [anon_sym_PERCENT_EQ] = ACTIONS(7324), + [anon_sym_PLUS_EQ] = ACTIONS(7324), + [anon_sym_DASH_EQ] = ACTIONS(7324), + [anon_sym_LT_LT_EQ] = ACTIONS(7324), + [anon_sym_GT_GT_EQ] = ACTIONS(7324), + [anon_sym_AMP_EQ] = ACTIONS(7324), + [anon_sym_CARET_EQ] = ACTIONS(7324), + [anon_sym_PIPE_EQ] = ACTIONS(7324), + [anon_sym_LT_EQ_GT] = ACTIONS(7324), + [anon_sym_or] = ACTIONS(7322), + [anon_sym_and] = ACTIONS(7322), + [anon_sym_bitor] = ACTIONS(7322), + [anon_sym_xor] = ACTIONS(7322), + [anon_sym_bitand] = ACTIONS(7322), + [anon_sym_not_eq] = ACTIONS(7322), + [anon_sym_DASH_DASH] = ACTIONS(7324), + [anon_sym_PLUS_PLUS] = ACTIONS(7324), + [anon_sym_DOT] = ACTIONS(7322), + [anon_sym_DOT_STAR] = ACTIONS(7324), + [anon_sym_DASH_GT] = ACTIONS(7322), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7322), + [anon_sym_final] = ACTIONS(7322), + [anon_sym_override] = ACTIONS(7322), + [anon_sym_template] = ACTIONS(7322), + [anon_sym_requires] = ACTIONS(7322), + [anon_sym_DASH_GT_STAR] = ACTIONS(7324), + [anon_sym_LBRACK_COLON] = ACTIONS(7324), + }, + [STATE(2586)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2542), + [sym_identifier] = ACTIONS(7296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7298), + [anon_sym_RPAREN] = ACTIONS(7298), + [anon_sym_LPAREN2] = ACTIONS(7298), + [anon_sym_DASH] = ACTIONS(7296), + [anon_sym_PLUS] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7296), + [anon_sym_SLASH] = ACTIONS(7296), + [anon_sym_PERCENT] = ACTIONS(7296), + [anon_sym_PIPE_PIPE] = ACTIONS(7298), + [anon_sym_AMP_AMP] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7296), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_EQ_EQ] = ACTIONS(7298), + [anon_sym_BANG_EQ] = ACTIONS(7298), + [anon_sym_GT] = ACTIONS(7296), + [anon_sym_GT_EQ] = ACTIONS(7298), + [anon_sym_LT_EQ] = ACTIONS(7296), + [anon_sym_LT] = ACTIONS(7296), + [anon_sym_LT_LT] = ACTIONS(7296), + [anon_sym_GT_GT] = ACTIONS(7296), + [anon_sym___extension__] = ACTIONS(7296), + [anon_sym___attribute__] = ACTIONS(7296), + [anon_sym___attribute] = ACTIONS(7296), + [anon_sym_COLON_COLON] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(8360), + [anon_sym_unsigned] = ACTIONS(8360), + [anon_sym_long] = ACTIONS(8360), + [anon_sym_short] = ACTIONS(8360), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_EQ] = ACTIONS(7296), + [anon_sym_const] = ACTIONS(7296), + [anon_sym_constexpr] = ACTIONS(7296), + [anon_sym_volatile] = ACTIONS(7296), + [anon_sym_restrict] = ACTIONS(7296), + [anon_sym___restrict__] = ACTIONS(7296), + [anon_sym__Atomic] = ACTIONS(7296), + [anon_sym__Noreturn] = ACTIONS(7296), + [anon_sym_noreturn] = ACTIONS(7296), + [anon_sym__Nonnull] = ACTIONS(7296), + [anon_sym_mutable] = ACTIONS(7296), + [anon_sym_constinit] = ACTIONS(7296), + [anon_sym_consteval] = ACTIONS(7296), + [anon_sym_alignas] = ACTIONS(7296), + [anon_sym__Alignas] = ACTIONS(7296), + [anon_sym_QMARK] = ACTIONS(7298), + [anon_sym_STAR_EQ] = ACTIONS(7298), + [anon_sym_SLASH_EQ] = ACTIONS(7298), + [anon_sym_PERCENT_EQ] = ACTIONS(7298), + [anon_sym_PLUS_EQ] = ACTIONS(7298), + [anon_sym_DASH_EQ] = ACTIONS(7298), + [anon_sym_LT_LT_EQ] = ACTIONS(7298), + [anon_sym_GT_GT_EQ] = ACTIONS(7298), + [anon_sym_AMP_EQ] = ACTIONS(7298), + [anon_sym_CARET_EQ] = ACTIONS(7298), + [anon_sym_PIPE_EQ] = ACTIONS(7298), + [anon_sym_LT_EQ_GT] = ACTIONS(7298), + [anon_sym_or] = ACTIONS(7296), + [anon_sym_and] = ACTIONS(7296), + [anon_sym_bitor] = ACTIONS(7296), + [anon_sym_xor] = ACTIONS(7296), + [anon_sym_bitand] = ACTIONS(7296), + [anon_sym_not_eq] = ACTIONS(7296), + [anon_sym_DASH_DASH] = ACTIONS(7298), + [anon_sym_PLUS_PLUS] = ACTIONS(7298), + [anon_sym_DOT] = ACTIONS(7296), + [anon_sym_DOT_STAR] = ACTIONS(7298), + [anon_sym_DASH_GT] = ACTIONS(7296), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7296), + [anon_sym_final] = ACTIONS(7296), + [anon_sym_override] = ACTIONS(7296), + [anon_sym_template] = ACTIONS(7296), + [anon_sym_requires] = ACTIONS(7296), + [anon_sym_DASH_GT_STAR] = ACTIONS(7298), + [anon_sym_LBRACK_COLON] = ACTIONS(7298), + }, + [STATE(2587)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2542), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7253), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7253), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7253), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7253), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(8360), + [anon_sym_unsigned] = ACTIONS(8360), + [anon_sym_long] = ACTIONS(8360), + [anon_sym_short] = ACTIONS(8360), + [anon_sym_LBRACK] = ACTIONS(7253), + [anon_sym_EQ] = ACTIONS(7253), + [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(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_STAR_EQ] = ACTIONS(7255), + [anon_sym_SLASH_EQ] = ACTIONS(7255), + [anon_sym_PERCENT_EQ] = ACTIONS(7255), + [anon_sym_PLUS_EQ] = ACTIONS(7255), + [anon_sym_DASH_EQ] = ACTIONS(7255), + [anon_sym_LT_LT_EQ] = ACTIONS(7255), + [anon_sym_GT_GT_EQ] = ACTIONS(7255), + [anon_sym_AMP_EQ] = ACTIONS(7255), + [anon_sym_CARET_EQ] = ACTIONS(7255), + [anon_sym_PIPE_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7253), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7253), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_template] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_DASH_GT_STAR] = ACTIONS(7255), + [anon_sym_LBRACK_COLON] = ACTIONS(7255), + }, + [STATE(2588)] = { + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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(7495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_DASH_GT_STAR] = ACTIONS(7497), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(2589)] = { + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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(7495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_DASH_GT_STAR] = ACTIONS(7497), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(2590)] = { + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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(7495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_DASH_GT_STAR] = ACTIONS(7497), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(2591)] = { + [sym_type_qualifier] = STATE(2614), + [sym_alignas_qualifier] = STATE(2885), + [aux_sym__type_definition_type_repeat1] = STATE(2614), + [aux_sym_sized_type_specifier_repeat1] = STATE(4765), + [sym_identifier] = ACTIONS(8436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_RPAREN] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym___extension__] = ACTIONS(8424), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(8438), + [anon_sym_unsigned] = ACTIONS(8438), + [anon_sym_long] = ACTIONS(8438), + [anon_sym_short] = ACTIONS(8438), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(8424), + [anon_sym_constexpr] = ACTIONS(8424), + [anon_sym_volatile] = ACTIONS(8424), + [anon_sym_restrict] = ACTIONS(8424), + [anon_sym___restrict__] = ACTIONS(8424), + [anon_sym__Atomic] = ACTIONS(8424), + [anon_sym__Noreturn] = ACTIONS(8424), + [anon_sym_noreturn] = ACTIONS(8424), + [anon_sym__Nonnull] = ACTIONS(8424), + [anon_sym_mutable] = ACTIONS(8424), + [anon_sym_constinit] = ACTIONS(8424), + [anon_sym_consteval] = ACTIONS(8424), + [anon_sym_alignas] = ACTIONS(8428), + [anon_sym__Alignas] = ACTIONS(8428), + [sym_primitive_type] = ACTIONS(8440), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7023), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_and_eq] = ACTIONS(7025), + [anon_sym_or_eq] = ACTIONS(7025), + [anon_sym_xor_eq] = ACTIONS(7025), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7025), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7023), + }, + [STATE(2592)] = { + [sym_identifier] = ACTIONS(7519), + [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(7519), + [anon_sym___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7519), + [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(7519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_template] = ACTIONS(7519), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_DASH_GT_STAR] = ACTIONS(7521), + [anon_sym_LBRACK_COLON] = ACTIONS(7521), }, [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), + [sym__abstract_declarator] = STATE(7271), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(4421), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2444), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9598), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7525), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7527), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7529), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6807), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6807), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6807), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6807), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6807), + [anon_sym_GT_GT] = ACTIONS(6807), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [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(6807), + [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(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_GT2] = ACTIONS(6809), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), }, [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(2595), + [aux_sym_type_definition_repeat1] = STATE(2595), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7400), + [anon_sym_COMMA] = ACTIONS(7400), + [anon_sym_LPAREN2] = ACTIONS(7400), + [anon_sym_DASH] = ACTIONS(7398), + [anon_sym_PLUS] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7398), + [anon_sym_SLASH] = ACTIONS(7398), + [anon_sym_PERCENT] = ACTIONS(7398), + [anon_sym_PIPE_PIPE] = ACTIONS(7400), + [anon_sym_AMP_AMP] = ACTIONS(7400), + [anon_sym_PIPE] = ACTIONS(7398), + [anon_sym_CARET] = ACTIONS(7398), + [anon_sym_AMP] = ACTIONS(7398), + [anon_sym_EQ_EQ] = ACTIONS(7400), + [anon_sym_BANG_EQ] = ACTIONS(7400), + [anon_sym_GT] = ACTIONS(7398), + [anon_sym_GT_EQ] = ACTIONS(7400), + [anon_sym_LT_EQ] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(7398), + [anon_sym_LT_LT] = ACTIONS(7398), + [anon_sym_GT_GT] = ACTIONS(7398), + [anon_sym___extension__] = ACTIONS(7400), + [anon_sym___attribute__] = ACTIONS(8442), + [anon_sym___attribute] = ACTIONS(8445), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7400), + [anon_sym_LBRACK] = ACTIONS(7398), + [anon_sym_RBRACK] = ACTIONS(7400), + [anon_sym_EQ] = ACTIONS(7398), + [anon_sym_const] = ACTIONS(7398), + [anon_sym_constexpr] = ACTIONS(7400), + [anon_sym_volatile] = ACTIONS(7400), + [anon_sym_restrict] = ACTIONS(7400), + [anon_sym___restrict__] = ACTIONS(7400), + [anon_sym__Atomic] = ACTIONS(7400), + [anon_sym__Noreturn] = ACTIONS(7400), + [anon_sym_noreturn] = ACTIONS(7400), + [anon_sym__Nonnull] = ACTIONS(7400), + [anon_sym_mutable] = ACTIONS(7400), + [anon_sym_constinit] = ACTIONS(7400), + [anon_sym_consteval] = ACTIONS(7400), + [anon_sym_alignas] = ACTIONS(7400), + [anon_sym__Alignas] = ACTIONS(7400), + [anon_sym_QMARK] = ACTIONS(7400), + [anon_sym_STAR_EQ] = ACTIONS(7400), + [anon_sym_SLASH_EQ] = ACTIONS(7400), + [anon_sym_PERCENT_EQ] = ACTIONS(7400), + [anon_sym_PLUS_EQ] = ACTIONS(7400), + [anon_sym_DASH_EQ] = ACTIONS(7400), + [anon_sym_LT_LT_EQ] = ACTIONS(7400), + [anon_sym_GT_GT_EQ] = ACTIONS(7400), + [anon_sym_AMP_EQ] = ACTIONS(7400), + [anon_sym_CARET_EQ] = ACTIONS(7400), + [anon_sym_PIPE_EQ] = ACTIONS(7400), + [anon_sym_and_eq] = ACTIONS(7400), + [anon_sym_or_eq] = ACTIONS(7400), + [anon_sym_xor_eq] = ACTIONS(7400), + [anon_sym_LT_EQ_GT] = ACTIONS(7400), + [anon_sym_or] = ACTIONS(7398), + [anon_sym_and] = ACTIONS(7398), + [anon_sym_bitor] = ACTIONS(7400), + [anon_sym_xor] = ACTIONS(7398), + [anon_sym_bitand] = ACTIONS(7400), + [anon_sym_not_eq] = ACTIONS(7400), + [anon_sym_DASH_DASH] = ACTIONS(7400), + [anon_sym_PLUS_PLUS] = ACTIONS(7400), + [anon_sym_asm] = ACTIONS(7400), + [anon_sym___asm__] = ACTIONS(7400), + [anon_sym___asm] = ACTIONS(7398), + [anon_sym_DOT] = ACTIONS(7398), + [anon_sym_DOT_STAR] = ACTIONS(7400), + [anon_sym_DASH_GT] = ACTIONS(7400), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7400), + [anon_sym_override] = ACTIONS(7400), + [anon_sym_noexcept] = ACTIONS(7400), + [anon_sym_throw] = ACTIONS(7400), + [anon_sym_requires] = ACTIONS(7400), }, [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_identifier] = ACTIONS(7366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7368), + [anon_sym_COMMA] = ACTIONS(7368), + [anon_sym_LPAREN2] = ACTIONS(7368), + [anon_sym_DASH] = ACTIONS(7366), + [anon_sym_PLUS] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(7366), + [anon_sym_SLASH] = ACTIONS(7366), + [anon_sym_PERCENT] = ACTIONS(7366), + [anon_sym_PIPE_PIPE] = ACTIONS(7368), + [anon_sym_AMP_AMP] = ACTIONS(7368), + [anon_sym_PIPE] = ACTIONS(7366), + [anon_sym_CARET] = ACTIONS(7366), + [anon_sym_AMP] = ACTIONS(7366), + [anon_sym_EQ_EQ] = ACTIONS(7368), + [anon_sym_BANG_EQ] = ACTIONS(7368), + [anon_sym_GT] = ACTIONS(7366), + [anon_sym_GT_EQ] = ACTIONS(7368), + [anon_sym_LT_EQ] = ACTIONS(7366), + [anon_sym_LT] = ACTIONS(7366), + [anon_sym_LT_LT] = ACTIONS(7366), + [anon_sym_GT_GT] = ACTIONS(7366), + [anon_sym___extension__] = ACTIONS(7366), + [anon_sym_COLON_COLON] = ACTIONS(7368), + [sym_ms_restrict_modifier] = ACTIONS(7366), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7366), + [sym_ms_signed_ptr_modifier] = ACTIONS(7366), + [anon_sym__unaligned] = ACTIONS(7366), + [anon_sym___unaligned] = ACTIONS(7366), + [anon_sym_LBRACK] = ACTIONS(7366), + [anon_sym_RBRACK] = ACTIONS(7368), + [anon_sym_EQ] = ACTIONS(7366), + [anon_sym_const] = ACTIONS(7366), + [anon_sym_constexpr] = ACTIONS(7366), + [anon_sym_volatile] = ACTIONS(7366), + [anon_sym_restrict] = ACTIONS(7366), + [anon_sym___restrict__] = ACTIONS(7366), + [anon_sym__Atomic] = ACTIONS(7366), + [anon_sym__Noreturn] = ACTIONS(7366), + [anon_sym_noreturn] = ACTIONS(7366), + [anon_sym__Nonnull] = ACTIONS(7366), + [anon_sym_mutable] = ACTIONS(7366), + [anon_sym_constinit] = ACTIONS(7366), + [anon_sym_consteval] = ACTIONS(7366), + [anon_sym_alignas] = ACTIONS(7366), + [anon_sym__Alignas] = ACTIONS(7366), + [anon_sym_QMARK] = ACTIONS(7368), + [anon_sym_STAR_EQ] = ACTIONS(7368), + [anon_sym_SLASH_EQ] = ACTIONS(7368), + [anon_sym_PERCENT_EQ] = ACTIONS(7368), + [anon_sym_PLUS_EQ] = ACTIONS(7368), + [anon_sym_DASH_EQ] = ACTIONS(7368), + [anon_sym_LT_LT_EQ] = ACTIONS(7368), + [anon_sym_GT_GT_EQ] = ACTIONS(7368), + [anon_sym_AMP_EQ] = ACTIONS(7368), + [anon_sym_CARET_EQ] = ACTIONS(7368), + [anon_sym_PIPE_EQ] = ACTIONS(7368), + [anon_sym_and_eq] = ACTIONS(7366), + [anon_sym_or_eq] = ACTIONS(7366), + [anon_sym_xor_eq] = ACTIONS(7366), + [anon_sym_LT_EQ_GT] = ACTIONS(7368), + [anon_sym_or] = ACTIONS(7366), + [anon_sym_and] = ACTIONS(7366), + [anon_sym_bitor] = ACTIONS(7366), + [anon_sym_xor] = ACTIONS(7366), + [anon_sym_bitand] = ACTIONS(7366), + [anon_sym_not_eq] = ACTIONS(7366), + [anon_sym_DASH_DASH] = ACTIONS(7368), + [anon_sym_PLUS_PLUS] = ACTIONS(7368), + [anon_sym_DOT] = ACTIONS(7366), + [anon_sym_DOT_STAR] = ACTIONS(7368), + [anon_sym_DASH_GT] = ACTIONS(7368), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7366), + [anon_sym_final] = ACTIONS(7366), + [anon_sym_override] = ACTIONS(7366), + [anon_sym_template] = ACTIONS(7366), + [anon_sym_requires] = ACTIONS(7366), + [anon_sym_LBRACK_COLON] = ACTIONS(7368), }, [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), + [sym_identifier] = ACTIONS(7346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7348), + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7348), + [anon_sym_DASH] = ACTIONS(7346), + [anon_sym_PLUS] = ACTIONS(7346), + [anon_sym_STAR] = ACTIONS(7346), + [anon_sym_SLASH] = ACTIONS(7346), + [anon_sym_PERCENT] = ACTIONS(7346), + [anon_sym_PIPE_PIPE] = ACTIONS(7348), + [anon_sym_AMP_AMP] = ACTIONS(7348), + [anon_sym_PIPE] = ACTIONS(7346), + [anon_sym_CARET] = ACTIONS(7346), + [anon_sym_AMP] = ACTIONS(7346), + [anon_sym_EQ_EQ] = ACTIONS(7348), + [anon_sym_BANG_EQ] = ACTIONS(7348), + [anon_sym_GT] = ACTIONS(7346), + [anon_sym_GT_EQ] = ACTIONS(7348), + [anon_sym_LT_EQ] = ACTIONS(7346), + [anon_sym_LT] = ACTIONS(7346), + [anon_sym_LT_LT] = ACTIONS(7346), + [anon_sym_GT_GT] = ACTIONS(7346), + [anon_sym___extension__] = ACTIONS(7346), + [anon_sym_COLON_COLON] = ACTIONS(7348), + [sym_ms_restrict_modifier] = ACTIONS(7346), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7346), + [sym_ms_signed_ptr_modifier] = ACTIONS(7346), + [anon_sym__unaligned] = ACTIONS(7346), + [anon_sym___unaligned] = ACTIONS(7346), + [anon_sym_LBRACK] = ACTIONS(7346), + [anon_sym_RBRACK] = ACTIONS(7348), + [anon_sym_EQ] = ACTIONS(7346), + [anon_sym_const] = ACTIONS(7346), + [anon_sym_constexpr] = ACTIONS(7346), + [anon_sym_volatile] = ACTIONS(7346), + [anon_sym_restrict] = ACTIONS(7346), + [anon_sym___restrict__] = ACTIONS(7346), + [anon_sym__Atomic] = ACTIONS(7346), + [anon_sym__Noreturn] = ACTIONS(7346), + [anon_sym_noreturn] = ACTIONS(7346), + [anon_sym__Nonnull] = ACTIONS(7346), + [anon_sym_mutable] = ACTIONS(7346), + [anon_sym_constinit] = ACTIONS(7346), + [anon_sym_consteval] = ACTIONS(7346), + [anon_sym_alignas] = ACTIONS(7346), + [anon_sym__Alignas] = ACTIONS(7346), + [anon_sym_QMARK] = ACTIONS(7348), + [anon_sym_STAR_EQ] = ACTIONS(7348), + [anon_sym_SLASH_EQ] = ACTIONS(7348), + [anon_sym_PERCENT_EQ] = ACTIONS(7348), + [anon_sym_PLUS_EQ] = ACTIONS(7348), + [anon_sym_DASH_EQ] = ACTIONS(7348), + [anon_sym_LT_LT_EQ] = ACTIONS(7348), + [anon_sym_GT_GT_EQ] = ACTIONS(7348), + [anon_sym_AMP_EQ] = ACTIONS(7348), + [anon_sym_CARET_EQ] = ACTIONS(7348), + [anon_sym_PIPE_EQ] = ACTIONS(7348), + [anon_sym_and_eq] = ACTIONS(7346), + [anon_sym_or_eq] = ACTIONS(7346), + [anon_sym_xor_eq] = ACTIONS(7346), + [anon_sym_LT_EQ_GT] = ACTIONS(7348), + [anon_sym_or] = ACTIONS(7346), + [anon_sym_and] = ACTIONS(7346), + [anon_sym_bitor] = ACTIONS(7346), + [anon_sym_xor] = ACTIONS(7346), + [anon_sym_bitand] = ACTIONS(7346), + [anon_sym_not_eq] = ACTIONS(7346), + [anon_sym_DASH_DASH] = ACTIONS(7348), + [anon_sym_PLUS_PLUS] = ACTIONS(7348), + [anon_sym_DOT] = ACTIONS(7346), + [anon_sym_DOT_STAR] = ACTIONS(7348), + [anon_sym_DASH_GT] = ACTIONS(7348), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7346), + [anon_sym_final] = ACTIONS(7346), + [anon_sym_override] = ACTIONS(7346), + [anon_sym_template] = ACTIONS(7346), + [anon_sym_requires] = ACTIONS(7346), + [anon_sym_LBRACK_COLON] = ACTIONS(7348), }, [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), + [sym_attribute_specifier] = STATE(3004), + [sym_enumerator_list] = STATE(2770), + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7421), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(8341), + [anon_sym_LBRACK] = ACTIONS(7421), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7421), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_and_eq] = ACTIONS(7421), + [anon_sym_or_eq] = ACTIONS(7421), + [anon_sym_xor_eq] = ACTIONS(7421), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7421), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_template] = ACTIONS(7421), + [anon_sym_GT2] = ACTIONS(7423), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_LBRACK_COLON] = ACTIONS(7423), }, [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), + [sym_attribute_specifier] = STATE(3012), + [sym_enumerator_list] = STATE(2788), + [sym_identifier] = ACTIONS(7417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7419), + [anon_sym_COMMA] = ACTIONS(7419), + [anon_sym_LPAREN2] = ACTIONS(7419), + [anon_sym_DASH] = ACTIONS(7417), + [anon_sym_PLUS] = ACTIONS(7417), + [anon_sym_STAR] = ACTIONS(7417), + [anon_sym_SLASH] = ACTIONS(7417), + [anon_sym_PERCENT] = ACTIONS(7417), + [anon_sym_PIPE_PIPE] = ACTIONS(7419), + [anon_sym_AMP_AMP] = ACTIONS(7419), + [anon_sym_PIPE] = ACTIONS(7417), + [anon_sym_CARET] = ACTIONS(7417), + [anon_sym_AMP] = ACTIONS(7417), + [anon_sym_EQ_EQ] = ACTIONS(7419), + [anon_sym_BANG_EQ] = ACTIONS(7419), + [anon_sym_GT] = ACTIONS(7417), + [anon_sym_GT_EQ] = ACTIONS(7417), + [anon_sym_LT_EQ] = ACTIONS(7417), + [anon_sym_LT] = ACTIONS(7417), + [anon_sym_LT_LT] = ACTIONS(7417), + [anon_sym_GT_GT] = ACTIONS(7417), + [anon_sym___extension__] = ACTIONS(7417), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7419), + [anon_sym_LBRACE] = ACTIONS(8341), + [anon_sym_LBRACK] = ACTIONS(7417), + [anon_sym_EQ] = ACTIONS(7417), + [anon_sym_const] = ACTIONS(7417), + [anon_sym_constexpr] = ACTIONS(7417), + [anon_sym_volatile] = ACTIONS(7417), + [anon_sym_restrict] = ACTIONS(7417), + [anon_sym___restrict__] = ACTIONS(7417), + [anon_sym__Atomic] = ACTIONS(7417), + [anon_sym__Noreturn] = ACTIONS(7417), + [anon_sym_noreturn] = ACTIONS(7417), + [anon_sym__Nonnull] = ACTIONS(7417), + [anon_sym_mutable] = ACTIONS(7417), + [anon_sym_constinit] = ACTIONS(7417), + [anon_sym_consteval] = ACTIONS(7417), + [anon_sym_alignas] = ACTIONS(7417), + [anon_sym__Alignas] = ACTIONS(7417), + [anon_sym_QMARK] = ACTIONS(7419), + [anon_sym_STAR_EQ] = ACTIONS(7419), + [anon_sym_SLASH_EQ] = ACTIONS(7419), + [anon_sym_PERCENT_EQ] = ACTIONS(7419), + [anon_sym_PLUS_EQ] = ACTIONS(7419), + [anon_sym_DASH_EQ] = ACTIONS(7419), + [anon_sym_LT_LT_EQ] = ACTIONS(7419), + [anon_sym_GT_GT_EQ] = ACTIONS(7417), + [anon_sym_AMP_EQ] = ACTIONS(7419), + [anon_sym_CARET_EQ] = ACTIONS(7419), + [anon_sym_PIPE_EQ] = ACTIONS(7419), + [anon_sym_and_eq] = ACTIONS(7417), + [anon_sym_or_eq] = ACTIONS(7417), + [anon_sym_xor_eq] = ACTIONS(7417), + [anon_sym_LT_EQ_GT] = ACTIONS(7419), + [anon_sym_or] = ACTIONS(7417), + [anon_sym_and] = ACTIONS(7417), + [anon_sym_bitor] = ACTIONS(7417), + [anon_sym_xor] = ACTIONS(7417), + [anon_sym_bitand] = ACTIONS(7417), + [anon_sym_not_eq] = ACTIONS(7417), + [anon_sym_DASH_DASH] = ACTIONS(7419), + [anon_sym_PLUS_PLUS] = ACTIONS(7419), + [anon_sym_DOT] = ACTIONS(7417), + [anon_sym_DOT_STAR] = ACTIONS(7419), + [anon_sym_DASH_GT] = ACTIONS(7419), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7417), + [anon_sym_final] = ACTIONS(7417), + [anon_sym_override] = ACTIONS(7417), + [anon_sym_template] = ACTIONS(7417), + [anon_sym_GT2] = ACTIONS(7419), + [anon_sym_requires] = ACTIONS(7417), + [anon_sym_LBRACK_COLON] = ACTIONS(7419), }, [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), + [sym_attribute_specifier] = STATE(3352), + [sym_enumerator_list] = STATE(2935), + [sym__enum_base_clause] = STATE(2792), + [sym_identifier] = ACTIONS(7390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(7392), + [anon_sym_RPAREN] = ACTIONS(7392), + [anon_sym_LPAREN2] = ACTIONS(7392), + [anon_sym_DASH] = ACTIONS(7390), + [anon_sym_PLUS] = ACTIONS(7390), + [anon_sym_STAR] = ACTIONS(7390), + [anon_sym_SLASH] = ACTIONS(7390), + [anon_sym_PERCENT] = ACTIONS(7390), + [anon_sym_PIPE_PIPE] = ACTIONS(7392), + [anon_sym_AMP_AMP] = ACTIONS(7392), + [anon_sym_PIPE] = ACTIONS(7390), + [anon_sym_CARET] = ACTIONS(7390), + [anon_sym_AMP] = ACTIONS(7390), + [anon_sym_EQ_EQ] = ACTIONS(7392), + [anon_sym_BANG_EQ] = ACTIONS(7392), + [anon_sym_GT] = ACTIONS(7390), + [anon_sym_GT_EQ] = ACTIONS(7392), + [anon_sym_LT_EQ] = ACTIONS(7390), + [anon_sym_LT] = ACTIONS(7390), + [anon_sym_LT_LT] = ACTIONS(7390), + [anon_sym_GT_GT] = ACTIONS(7390), + [anon_sym___extension__] = ACTIONS(7390), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON] = ACTIONS(8448), + [anon_sym_COLON_COLON] = ACTIONS(7392), + [anon_sym_LBRACE] = ACTIONS(8450), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym_EQ] = ACTIONS(7390), + [anon_sym_const] = ACTIONS(7390), + [anon_sym_constexpr] = ACTIONS(7390), + [anon_sym_volatile] = ACTIONS(7390), + [anon_sym_restrict] = ACTIONS(7390), + [anon_sym___restrict__] = ACTIONS(7390), + [anon_sym__Atomic] = ACTIONS(7390), + [anon_sym__Noreturn] = ACTIONS(7390), + [anon_sym_noreturn] = ACTIONS(7390), + [anon_sym__Nonnull] = ACTIONS(7390), + [anon_sym_mutable] = ACTIONS(7390), + [anon_sym_constinit] = ACTIONS(7390), + [anon_sym_consteval] = ACTIONS(7390), + [anon_sym_alignas] = ACTIONS(7390), + [anon_sym__Alignas] = ACTIONS(7390), + [anon_sym_QMARK] = ACTIONS(7392), + [anon_sym_STAR_EQ] = ACTIONS(7392), + [anon_sym_SLASH_EQ] = ACTIONS(7392), + [anon_sym_PERCENT_EQ] = ACTIONS(7392), + [anon_sym_PLUS_EQ] = ACTIONS(7392), + [anon_sym_DASH_EQ] = ACTIONS(7392), + [anon_sym_LT_LT_EQ] = ACTIONS(7392), + [anon_sym_GT_GT_EQ] = ACTIONS(7392), + [anon_sym_AMP_EQ] = ACTIONS(7392), + [anon_sym_CARET_EQ] = ACTIONS(7392), + [anon_sym_PIPE_EQ] = ACTIONS(7392), + [anon_sym_LT_EQ_GT] = ACTIONS(7392), + [anon_sym_or] = ACTIONS(7390), + [anon_sym_and] = ACTIONS(7390), + [anon_sym_bitor] = ACTIONS(7390), + [anon_sym_xor] = ACTIONS(7390), + [anon_sym_bitand] = ACTIONS(7390), + [anon_sym_not_eq] = ACTIONS(7390), + [anon_sym_DASH_DASH] = ACTIONS(7392), + [anon_sym_PLUS_PLUS] = ACTIONS(7392), + [anon_sym_DOT] = ACTIONS(7390), + [anon_sym_DOT_STAR] = ACTIONS(7392), + [anon_sym_DASH_GT] = ACTIONS(7390), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7390), + [anon_sym_final] = ACTIONS(7390), + [anon_sym_override] = ACTIONS(7390), + [anon_sym_template] = ACTIONS(7390), + [anon_sym_requires] = ACTIONS(7390), + [anon_sym_DASH_GT_STAR] = ACTIONS(7392), + [anon_sym_LBRACK_COLON] = ACTIONS(7392), }, [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), + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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(7495), + [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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_GT2] = ACTIONS(7497), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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(7495), + [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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_GT2] = ACTIONS(7497), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), + [sym_identifier] = ACTIONS(7519), + [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(7519), + [anon_sym___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7519), + [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(7519), + [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), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_template] = ACTIONS(7519), + [anon_sym_GT2] = ACTIONS(7521), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_LBRACK_COLON] = ACTIONS(7521), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_STAR] = ACTIONS(6815), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE] = ACTIONS(6815), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_EQ_EQ] = ACTIONS(6822), + [anon_sym_BANG_EQ] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6815), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(6815), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_STAR_EQ] = ACTIONS(6822), + [anon_sym_SLASH_EQ] = ACTIONS(6822), + [anon_sym_PERCENT_EQ] = ACTIONS(6822), + [anon_sym_PLUS_EQ] = ACTIONS(6822), + [anon_sym_DASH_EQ] = ACTIONS(6822), + [anon_sym_LT_LT_EQ] = ACTIONS(6822), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6822), + [anon_sym_CARET_EQ] = ACTIONS(6822), + [anon_sym_PIPE_EQ] = ACTIONS(6822), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6822), + [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(6822), + [anon_sym_PLUS_PLUS] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6815), + [anon_sym_DOT_STAR] = ACTIONS(6822), + [anon_sym_DASH_GT] = ACTIONS(6822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_GT2] = ACTIONS(6822), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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_attribute_specifier] = STATE(3365), + [sym_enumerator_list] = STATE(2973), + [sym__enum_base_clause] = STATE(2798), + [sym_identifier] = ACTIONS(7413), + [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(7413), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON] = ACTIONS(8448), + [anon_sym_COLON_COLON] = ACTIONS(7415), + [anon_sym_LBRACE] = ACTIONS(8450), + [anon_sym_LBRACK] = ACTIONS(7413), + [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_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(7413), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), + [anon_sym_decltype] = ACTIONS(7413), + [anon_sym_final] = ACTIONS(7413), + [anon_sym_override] = ACTIONS(7413), + [anon_sym_template] = ACTIONS(7413), + [anon_sym_requires] = ACTIONS(7413), + [anon_sym_DASH_GT_STAR] = ACTIONS(7415), + [anon_sym_LBRACK_COLON] = ACTIONS(7415), }, [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), + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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(7495), + [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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_GT2] = ACTIONS(7497), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), + [sym_type_qualifier] = STATE(2705), + [sym_alignas_qualifier] = STATE(2950), + [aux_sym__type_definition_type_repeat1] = STATE(2705), + [aux_sym_sized_type_specifier_repeat1] = STATE(4886), + [sym_identifier] = ACTIONS(8452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7025), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym___extension__] = ACTIONS(8454), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(8456), + [anon_sym_unsigned] = ACTIONS(8456), + [anon_sym_long] = ACTIONS(8456), + [anon_sym_short] = ACTIONS(8456), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(8454), + [anon_sym_constexpr] = ACTIONS(8454), + [anon_sym_volatile] = ACTIONS(8454), + [anon_sym_restrict] = ACTIONS(8454), + [anon_sym___restrict__] = ACTIONS(8454), + [anon_sym__Atomic] = ACTIONS(8454), + [anon_sym__Noreturn] = ACTIONS(8454), + [anon_sym_noreturn] = ACTIONS(8454), + [anon_sym__Nonnull] = ACTIONS(8454), + [anon_sym_mutable] = ACTIONS(8454), + [anon_sym_constinit] = ACTIONS(8454), + [anon_sym_consteval] = ACTIONS(8454), + [anon_sym_alignas] = ACTIONS(8458), + [anon_sym__Alignas] = ACTIONS(8458), + [sym_primitive_type] = ACTIONS(8460), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7025), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_and_eq] = ACTIONS(7025), + [anon_sym_or_eq] = ACTIONS(7025), + [anon_sym_xor_eq] = ACTIONS(7025), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7023), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2485), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(8274), + [anon_sym_unsigned] = ACTIONS(8274), + [anon_sym_long] = ACTIONS(8274), + [anon_sym_short] = ACTIONS(8274), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_argument_list] = STATE(6413), + [sym_initializer_list] = STATE(6473), + [aux_sym_sized_type_specifier_repeat1] = STATE(2485), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8462), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_signed] = ACTIONS(8274), + [anon_sym_unsigned] = ACTIONS(8274), + [anon_sym_long] = ACTIONS(8274), + [anon_sym_short] = ACTIONS(8274), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [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(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(7668), + [anon_sym___attribute__] = ACTIONS(7668), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_COLON] = ACTIONS(7668), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7668), + [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(7668), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7668), + [anon_sym_final] = ACTIONS(7668), + [anon_sym_override] = ACTIONS(7668), + [anon_sym_template] = ACTIONS(7668), + [anon_sym_requires] = ACTIONS(7668), + [anon_sym_DASH_GT_STAR] = ACTIONS(7670), + [anon_sym_LBRACK_COLON] = ACTIONS(7670), }, [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), + [sym_type_qualifier] = STATE(2607), + [sym_alignas_qualifier] = STATE(2950), + [aux_sym__type_definition_type_repeat1] = STATE(2607), + [aux_sym_sized_type_specifier_repeat1] = STATE(2881), + [sym_identifier] = ACTIONS(8465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6936), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(8454), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(8467), + [anon_sym_unsigned] = ACTIONS(8467), + [anon_sym_long] = ACTIONS(8467), + [anon_sym_short] = ACTIONS(8467), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(8454), + [anon_sym_constexpr] = ACTIONS(8454), + [anon_sym_volatile] = ACTIONS(8454), + [anon_sym_restrict] = ACTIONS(8454), + [anon_sym___restrict__] = ACTIONS(8454), + [anon_sym__Atomic] = ACTIONS(8454), + [anon_sym__Noreturn] = ACTIONS(8454), + [anon_sym_noreturn] = ACTIONS(8454), + [anon_sym__Nonnull] = ACTIONS(8454), + [anon_sym_mutable] = ACTIONS(8454), + [anon_sym_constinit] = ACTIONS(8454), + [anon_sym_consteval] = ACTIONS(8454), + [anon_sym_alignas] = ACTIONS(8458), + [anon_sym__Alignas] = ACTIONS(8458), + [sym_primitive_type] = ACTIONS(8469), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6936), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_and_eq] = ACTIONS(6936), + [anon_sym_or_eq] = ACTIONS(6936), + [anon_sym_xor_eq] = ACTIONS(6936), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6934), }, [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), + [sym_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_RPAREN] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7566), + [anon_sym_PERCENT] = ACTIONS(7566), + [anon_sym_PIPE_PIPE] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7566), + [anon_sym_CARET] = ACTIONS(7566), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_EQ_EQ] = ACTIONS(7568), + [anon_sym_BANG_EQ] = ACTIONS(7568), + [anon_sym_GT] = ACTIONS(7566), + [anon_sym_GT_EQ] = ACTIONS(7568), + [anon_sym_LT_EQ] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7566), + [anon_sym_LT_LT] = ACTIONS(7566), + [anon_sym_GT_GT] = ACTIONS(7566), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(7566), + [anon_sym_EQ] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_mutable] = ACTIONS(7566), + [anon_sym_constinit] = ACTIONS(7566), + [anon_sym_consteval] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(7568), + [anon_sym_STAR_EQ] = ACTIONS(7568), + [anon_sym_SLASH_EQ] = ACTIONS(7568), + [anon_sym_PERCENT_EQ] = ACTIONS(7568), + [anon_sym_PLUS_EQ] = ACTIONS(7568), + [anon_sym_DASH_EQ] = ACTIONS(7568), + [anon_sym_LT_LT_EQ] = ACTIONS(7568), + [anon_sym_GT_GT_EQ] = ACTIONS(7568), + [anon_sym_AMP_EQ] = ACTIONS(7568), + [anon_sym_CARET_EQ] = ACTIONS(7568), + [anon_sym_PIPE_EQ] = ACTIONS(7568), + [anon_sym_and_eq] = ACTIONS(7566), + [anon_sym_or_eq] = ACTIONS(7566), + [anon_sym_xor_eq] = ACTIONS(7566), + [anon_sym_LT_EQ_GT] = ACTIONS(7568), + [anon_sym_or] = ACTIONS(7566), + [anon_sym_and] = ACTIONS(7566), + [anon_sym_bitor] = ACTIONS(7566), + [anon_sym_xor] = ACTIONS(7566), + [anon_sym_bitand] = ACTIONS(7566), + [anon_sym_not_eq] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(7568), + [anon_sym_PLUS_PLUS] = ACTIONS(7568), + [anon_sym_DOT] = ACTIONS(7566), + [anon_sym_DOT_STAR] = ACTIONS(7568), + [anon_sym_DASH_GT] = ACTIONS(7566), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7566), + [anon_sym_final] = ACTIONS(7566), + [anon_sym_override] = ACTIONS(7566), + [anon_sym_template] = ACTIONS(7566), + [anon_sym_requires] = ACTIONS(7566), + [anon_sym_DASH_GT_STAR] = ACTIONS(7568), + [anon_sym_LBRACK_COLON] = ACTIONS(7568), }, [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), + [sym_template_argument_list] = STATE(2604), + [sym_identifier] = ACTIONS(7543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5689), + [anon_sym_COMMA] = ACTIONS(5689), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(7543), + [anon_sym_PLUS] = ACTIONS(7543), + [anon_sym_STAR] = ACTIONS(7543), + [anon_sym_SLASH] = ACTIONS(7543), + [anon_sym_PERCENT] = ACTIONS(7543), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_PIPE] = ACTIONS(7543), + [anon_sym_CARET] = ACTIONS(7543), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_GT] = ACTIONS(7543), + [anon_sym_GT_EQ] = ACTIONS(7543), + [anon_sym_LT_EQ] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(8325), + [anon_sym_LT_LT] = ACTIONS(7543), + [anon_sym_GT_GT] = ACTIONS(7543), + [anon_sym___extension__] = ACTIONS(7543), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_EQ] = ACTIONS(7543), + [anon_sym_const] = ACTIONS(7543), + [anon_sym_constexpr] = ACTIONS(7543), + [anon_sym_volatile] = ACTIONS(7543), + [anon_sym_restrict] = ACTIONS(7543), + [anon_sym___restrict__] = ACTIONS(7543), + [anon_sym__Atomic] = ACTIONS(7543), + [anon_sym__Noreturn] = ACTIONS(7543), + [anon_sym_noreturn] = ACTIONS(7543), + [anon_sym__Nonnull] = ACTIONS(7543), + [anon_sym_mutable] = ACTIONS(7543), + [anon_sym_constinit] = ACTIONS(7543), + [anon_sym_consteval] = ACTIONS(7543), + [anon_sym_alignas] = ACTIONS(7543), + [anon_sym__Alignas] = ACTIONS(7543), + [anon_sym_QMARK] = ACTIONS(5689), + [anon_sym_STAR_EQ] = ACTIONS(5689), + [anon_sym_SLASH_EQ] = ACTIONS(5689), + [anon_sym_PERCENT_EQ] = ACTIONS(5689), + [anon_sym_PLUS_EQ] = ACTIONS(5689), + [anon_sym_DASH_EQ] = ACTIONS(5689), + [anon_sym_LT_LT_EQ] = ACTIONS(5689), + [anon_sym_GT_GT_EQ] = ACTIONS(7543), + [anon_sym_AMP_EQ] = ACTIONS(5689), + [anon_sym_CARET_EQ] = ACTIONS(5689), + [anon_sym_PIPE_EQ] = ACTIONS(5689), + [anon_sym_and_eq] = ACTIONS(7543), + [anon_sym_or_eq] = ACTIONS(7543), + [anon_sym_xor_eq] = ACTIONS(7543), + [anon_sym_LT_EQ_GT] = ACTIONS(5689), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_bitor] = ACTIONS(7543), + [anon_sym_xor] = ACTIONS(7543), + [anon_sym_bitand] = ACTIONS(7543), + [anon_sym_not_eq] = ACTIONS(7543), + [anon_sym_DASH_DASH] = ACTIONS(5689), + [anon_sym_PLUS_PLUS] = ACTIONS(5689), + [anon_sym_DOT] = ACTIONS(7543), + [anon_sym_DOT_STAR] = ACTIONS(5689), + [anon_sym_DASH_GT] = ACTIONS(5689), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7543), + [anon_sym_final] = ACTIONS(7543), + [anon_sym_override] = ACTIONS(7543), + [anon_sym_template] = ACTIONS(7543), + [anon_sym_GT2] = ACTIONS(5689), + [anon_sym_requires] = ACTIONS(7543), + [anon_sym_LBRACK_COLON] = ACTIONS(5689), }, [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), + [sym_type_qualifier] = STATE(2614), + [sym_alignas_qualifier] = STATE(2885), + [aux_sym__type_definition_type_repeat1] = STATE(2614), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8471), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7049), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8471), + [anon_sym_constexpr] = ACTIONS(8471), + [anon_sym_volatile] = ACTIONS(8471), + [anon_sym_restrict] = ACTIONS(8471), + [anon_sym___restrict__] = ACTIONS(8471), + [anon_sym__Atomic] = ACTIONS(8471), + [anon_sym__Noreturn] = ACTIONS(8471), + [anon_sym_noreturn] = ACTIONS(8471), + [anon_sym__Nonnull] = ACTIONS(8471), + [anon_sym_mutable] = ACTIONS(8471), + [anon_sym_constinit] = ACTIONS(8471), + [anon_sym_consteval] = ACTIONS(8471), + [anon_sym_alignas] = ACTIONS(8474), + [anon_sym__Alignas] = ACTIONS(8474), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7047), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7049), }, [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), + [sym_attribute_specifier] = STATE(3058), + [sym_enumerator_list] = STATE(2728), + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(8354), + [anon_sym_LBRACK] = ACTIONS(7421), + [anon_sym_RBRACK] = ACTIONS(7423), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7423), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_and_eq] = ACTIONS(7421), + [anon_sym_or_eq] = ACTIONS(7421), + [anon_sym_xor_eq] = ACTIONS(7421), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7421), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_template] = ACTIONS(7421), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_LBRACK_COLON] = ACTIONS(7423), }, [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), + [sym_attribute_specifier] = STATE(3065), + [sym_enumerator_list] = STATE(2732), + [sym_identifier] = ACTIONS(7417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7419), + [anon_sym_COMMA] = ACTIONS(7419), + [anon_sym_LPAREN2] = ACTIONS(7419), + [anon_sym_DASH] = ACTIONS(7417), + [anon_sym_PLUS] = ACTIONS(7417), + [anon_sym_STAR] = ACTIONS(7417), + [anon_sym_SLASH] = ACTIONS(7417), + [anon_sym_PERCENT] = ACTIONS(7417), + [anon_sym_PIPE_PIPE] = ACTIONS(7419), + [anon_sym_AMP_AMP] = ACTIONS(7419), + [anon_sym_PIPE] = ACTIONS(7417), + [anon_sym_CARET] = ACTIONS(7417), + [anon_sym_AMP] = ACTIONS(7417), + [anon_sym_EQ_EQ] = ACTIONS(7419), + [anon_sym_BANG_EQ] = ACTIONS(7419), + [anon_sym_GT] = ACTIONS(7417), + [anon_sym_GT_EQ] = ACTIONS(7419), + [anon_sym_LT_EQ] = ACTIONS(7417), + [anon_sym_LT] = ACTIONS(7417), + [anon_sym_LT_LT] = ACTIONS(7417), + [anon_sym_GT_GT] = ACTIONS(7417), + [anon_sym___extension__] = ACTIONS(7417), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7419), + [anon_sym_LBRACE] = ACTIONS(8354), + [anon_sym_LBRACK] = ACTIONS(7417), + [anon_sym_RBRACK] = ACTIONS(7419), + [anon_sym_EQ] = ACTIONS(7417), + [anon_sym_const] = ACTIONS(7417), + [anon_sym_constexpr] = ACTIONS(7417), + [anon_sym_volatile] = ACTIONS(7417), + [anon_sym_restrict] = ACTIONS(7417), + [anon_sym___restrict__] = ACTIONS(7417), + [anon_sym__Atomic] = ACTIONS(7417), + [anon_sym__Noreturn] = ACTIONS(7417), + [anon_sym_noreturn] = ACTIONS(7417), + [anon_sym__Nonnull] = ACTIONS(7417), + [anon_sym_mutable] = ACTIONS(7417), + [anon_sym_constinit] = ACTIONS(7417), + [anon_sym_consteval] = ACTIONS(7417), + [anon_sym_alignas] = ACTIONS(7417), + [anon_sym__Alignas] = ACTIONS(7417), + [anon_sym_QMARK] = ACTIONS(7419), + [anon_sym_STAR_EQ] = ACTIONS(7419), + [anon_sym_SLASH_EQ] = ACTIONS(7419), + [anon_sym_PERCENT_EQ] = ACTIONS(7419), + [anon_sym_PLUS_EQ] = ACTIONS(7419), + [anon_sym_DASH_EQ] = ACTIONS(7419), + [anon_sym_LT_LT_EQ] = ACTIONS(7419), + [anon_sym_GT_GT_EQ] = ACTIONS(7419), + [anon_sym_AMP_EQ] = ACTIONS(7419), + [anon_sym_CARET_EQ] = ACTIONS(7419), + [anon_sym_PIPE_EQ] = ACTIONS(7419), + [anon_sym_and_eq] = ACTIONS(7417), + [anon_sym_or_eq] = ACTIONS(7417), + [anon_sym_xor_eq] = ACTIONS(7417), + [anon_sym_LT_EQ_GT] = ACTIONS(7419), + [anon_sym_or] = ACTIONS(7417), + [anon_sym_and] = ACTIONS(7417), + [anon_sym_bitor] = ACTIONS(7417), + [anon_sym_xor] = ACTIONS(7417), + [anon_sym_bitand] = ACTIONS(7417), + [anon_sym_not_eq] = ACTIONS(7417), + [anon_sym_DASH_DASH] = ACTIONS(7419), + [anon_sym_PLUS_PLUS] = ACTIONS(7419), + [anon_sym_DOT] = ACTIONS(7417), + [anon_sym_DOT_STAR] = ACTIONS(7419), + [anon_sym_DASH_GT] = ACTIONS(7419), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7417), + [anon_sym_final] = ACTIONS(7417), + [anon_sym_override] = ACTIONS(7417), + [anon_sym_template] = ACTIONS(7417), + [anon_sym_requires] = ACTIONS(7417), + [anon_sym_LBRACK_COLON] = ACTIONS(7419), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2461), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(8308), + [anon_sym_unsigned] = ACTIONS(8308), + [anon_sym_long] = ACTIONS(8308), + [anon_sym_short] = ACTIONS(8308), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6829), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6829), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6829), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6829), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6829), + [anon_sym_GT_GT] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_STAR_EQ] = ACTIONS(6831), + [anon_sym_SLASH_EQ] = ACTIONS(6831), + [anon_sym_PERCENT_EQ] = ACTIONS(6831), + [anon_sym_PLUS_EQ] = ACTIONS(6831), + [anon_sym_DASH_EQ] = ACTIONS(6831), + [anon_sym_LT_LT_EQ] = ACTIONS(6831), + [anon_sym_GT_GT_EQ] = ACTIONS(6829), + [anon_sym_AMP_EQ] = ACTIONS(6831), + [anon_sym_CARET_EQ] = ACTIONS(6831), + [anon_sym_PIPE_EQ] = ACTIONS(6831), + [anon_sym_and_eq] = ACTIONS(6829), + [anon_sym_or_eq] = ACTIONS(6829), + [anon_sym_xor_eq] = ACTIONS(6829), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_GT2] = ACTIONS(6831), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), }, [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), + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6803), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6803), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_STAR_EQ] = ACTIONS(6805), + [anon_sym_SLASH_EQ] = ACTIONS(6805), + [anon_sym_PERCENT_EQ] = ACTIONS(6805), + [anon_sym_PLUS_EQ] = ACTIONS(6805), + [anon_sym_DASH_EQ] = ACTIONS(6805), + [anon_sym_LT_LT_EQ] = ACTIONS(6805), + [anon_sym_GT_GT_EQ] = ACTIONS(6803), + [anon_sym_AMP_EQ] = ACTIONS(6805), + [anon_sym_CARET_EQ] = ACTIONS(6805), + [anon_sym_PIPE_EQ] = ACTIONS(6805), + [anon_sym_and_eq] = ACTIONS(6803), + [anon_sym_or_eq] = ACTIONS(6803), + [anon_sym_xor_eq] = ACTIONS(6803), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_GT2] = ACTIONS(6805), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), }, [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), + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6799), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6799), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6799), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6799), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6799), + [anon_sym_GT_GT] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6799), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_and_eq] = ACTIONS(6799), + [anon_sym_or_eq] = ACTIONS(6799), + [anon_sym_xor_eq] = ACTIONS(6799), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_GT2] = ACTIONS(6801), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), }, [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), + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6795), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6795), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6795), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6795), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6795), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_EQ] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_STAR_EQ] = ACTIONS(6797), + [anon_sym_SLASH_EQ] = ACTIONS(6797), + [anon_sym_PERCENT_EQ] = ACTIONS(6797), + [anon_sym_PLUS_EQ] = ACTIONS(6797), + [anon_sym_DASH_EQ] = ACTIONS(6797), + [anon_sym_LT_LT_EQ] = ACTIONS(6797), + [anon_sym_GT_GT_EQ] = ACTIONS(6795), + [anon_sym_AMP_EQ] = ACTIONS(6797), + [anon_sym_CARET_EQ] = ACTIONS(6797), + [anon_sym_PIPE_EQ] = ACTIONS(6797), + [anon_sym_and_eq] = ACTIONS(6795), + [anon_sym_or_eq] = ACTIONS(6795), + [anon_sym_xor_eq] = ACTIONS(6795), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_GT2] = ACTIONS(6797), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), }, [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), + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6791), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6791), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6791), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6791), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6791), + [anon_sym_GT_GT] = ACTIONS(6791), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_EQ] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_STAR_EQ] = ACTIONS(6793), + [anon_sym_SLASH_EQ] = ACTIONS(6793), + [anon_sym_PERCENT_EQ] = ACTIONS(6793), + [anon_sym_PLUS_EQ] = ACTIONS(6793), + [anon_sym_DASH_EQ] = ACTIONS(6793), + [anon_sym_LT_LT_EQ] = ACTIONS(6793), + [anon_sym_GT_GT_EQ] = ACTIONS(6791), + [anon_sym_AMP_EQ] = ACTIONS(6793), + [anon_sym_CARET_EQ] = ACTIONS(6793), + [anon_sym_PIPE_EQ] = ACTIONS(6793), + [anon_sym_and_eq] = ACTIONS(6791), + [anon_sym_or_eq] = ACTIONS(6791), + [anon_sym_xor_eq] = ACTIONS(6791), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_GT2] = ACTIONS(6793), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), }, [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), + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6811), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6811), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6811), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6811), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6811), + [anon_sym_GT_GT] = ACTIONS(6811), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_EQ] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_STAR_EQ] = ACTIONS(6813), + [anon_sym_SLASH_EQ] = ACTIONS(6813), + [anon_sym_PERCENT_EQ] = ACTIONS(6813), + [anon_sym_PLUS_EQ] = ACTIONS(6813), + [anon_sym_DASH_EQ] = ACTIONS(6813), + [anon_sym_LT_LT_EQ] = ACTIONS(6813), + [anon_sym_GT_GT_EQ] = ACTIONS(6811), + [anon_sym_AMP_EQ] = ACTIONS(6813), + [anon_sym_CARET_EQ] = ACTIONS(6813), + [anon_sym_PIPE_EQ] = ACTIONS(6813), + [anon_sym_and_eq] = ACTIONS(6811), + [anon_sym_or_eq] = ACTIONS(6811), + [anon_sym_xor_eq] = ACTIONS(6811), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_GT2] = ACTIONS(6813), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), }, [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), + [sym_type_qualifier] = STATE(2628), + [sym_alignas_qualifier] = STATE(2955), + [aux_sym__type_definition_type_repeat1] = STATE(2628), + [aux_sym_sized_type_specifier_repeat1] = STATE(2875), + [sym_identifier] = ACTIONS(8477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(8479), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(8481), + [anon_sym_unsigned] = ACTIONS(8481), + [anon_sym_long] = ACTIONS(8481), + [anon_sym_short] = ACTIONS(8481), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_RBRACK] = ACTIONS(6934), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(8479), + [anon_sym_constexpr] = ACTIONS(8479), + [anon_sym_volatile] = ACTIONS(8479), + [anon_sym_restrict] = ACTIONS(8479), + [anon_sym___restrict__] = ACTIONS(8479), + [anon_sym__Atomic] = ACTIONS(8479), + [anon_sym__Noreturn] = ACTIONS(8479), + [anon_sym_noreturn] = ACTIONS(8479), + [anon_sym__Nonnull] = ACTIONS(8479), + [anon_sym_mutable] = ACTIONS(8479), + [anon_sym_constinit] = ACTIONS(8479), + [anon_sym_consteval] = ACTIONS(8479), + [anon_sym_alignas] = ACTIONS(8483), + [anon_sym__Alignas] = ACTIONS(8483), + [sym_primitive_type] = ACTIONS(8485), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6934), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_and_eq] = ACTIONS(6936), + [anon_sym_or_eq] = ACTIONS(6936), + [anon_sym_xor_eq] = ACTIONS(6936), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), }, [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), + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_RBRACK] = 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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [STATE(2626)] = { - [sym_attribute_specifier] = STATE(3051), - [sym_enumerator_list] = STATE(2674), - [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(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(8383), - [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_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(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), + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_RBRACK] = 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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), - [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_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_RBRACK] = 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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), + [sym_type_qualifier] = STATE(2670), + [sym_alignas_qualifier] = STATE(2955), + [aux_sym__type_definition_type_repeat1] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(4826), + [sym_identifier] = ACTIONS(8487), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym___extension__] = ACTIONS(8479), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(8489), + [anon_sym_unsigned] = ACTIONS(8489), + [anon_sym_long] = ACTIONS(8489), + [anon_sym_short] = ACTIONS(8489), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym_RBRACK] = ACTIONS(7023), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(8479), + [anon_sym_constexpr] = ACTIONS(8479), + [anon_sym_volatile] = ACTIONS(8479), + [anon_sym_restrict] = ACTIONS(8479), + [anon_sym___restrict__] = ACTIONS(8479), + [anon_sym__Atomic] = ACTIONS(8479), + [anon_sym__Noreturn] = ACTIONS(8479), + [anon_sym_noreturn] = ACTIONS(8479), + [anon_sym__Nonnull] = ACTIONS(8479), + [anon_sym_mutable] = ACTIONS(8479), + [anon_sym_constinit] = ACTIONS(8479), + [anon_sym_consteval] = ACTIONS(8479), + [anon_sym_alignas] = ACTIONS(8483), + [anon_sym__Alignas] = ACTIONS(8483), + [sym_primitive_type] = ACTIONS(8491), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7023), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_and_eq] = ACTIONS(7025), + [anon_sym_or_eq] = ACTIONS(7025), + [anon_sym_xor_eq] = ACTIONS(7025), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), }, [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), + [sym_identifier] = ACTIONS(7519), + [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(7519), + [anon_sym___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7519), + [anon_sym_RBRACK] = 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), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_template] = ACTIONS(7519), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_LBRACK_COLON] = ACTIONS(7521), }, [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), + [sym_argument_list] = STATE(6570), + [sym_initializer_list] = STATE(6582), + [aux_sym_sized_type_specifier_repeat1] = STATE(2461), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_signed] = ACTIONS(8308), + [anon_sym_unsigned] = ACTIONS(8308), + [anon_sym_long] = ACTIONS(8308), + [anon_sym_short] = ACTIONS(8308), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_template_argument_list] = STATE(2659), + [sym_identifier] = ACTIONS(7543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5689), + [anon_sym_COMMA] = ACTIONS(5689), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(7543), + [anon_sym_PLUS] = ACTIONS(7543), + [anon_sym_STAR] = ACTIONS(7543), + [anon_sym_SLASH] = ACTIONS(7543), + [anon_sym_PERCENT] = ACTIONS(7543), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_PIPE] = ACTIONS(7543), + [anon_sym_CARET] = ACTIONS(7543), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_GT] = ACTIONS(7543), + [anon_sym_GT_EQ] = ACTIONS(5689), + [anon_sym_LT_EQ] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(7543), + [anon_sym_GT_GT] = ACTIONS(7543), + [anon_sym___extension__] = ACTIONS(7543), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_RBRACK] = ACTIONS(5689), + [anon_sym_EQ] = ACTIONS(7543), + [anon_sym_const] = ACTIONS(7543), + [anon_sym_constexpr] = ACTIONS(7543), + [anon_sym_volatile] = ACTIONS(7543), + [anon_sym_restrict] = ACTIONS(7543), + [anon_sym___restrict__] = ACTIONS(7543), + [anon_sym__Atomic] = ACTIONS(7543), + [anon_sym__Noreturn] = ACTIONS(7543), + [anon_sym_noreturn] = ACTIONS(7543), + [anon_sym__Nonnull] = ACTIONS(7543), + [anon_sym_mutable] = ACTIONS(7543), + [anon_sym_constinit] = ACTIONS(7543), + [anon_sym_consteval] = ACTIONS(7543), + [anon_sym_alignas] = ACTIONS(7543), + [anon_sym__Alignas] = ACTIONS(7543), + [anon_sym_QMARK] = ACTIONS(5689), + [anon_sym_STAR_EQ] = ACTIONS(5689), + [anon_sym_SLASH_EQ] = ACTIONS(5689), + [anon_sym_PERCENT_EQ] = ACTIONS(5689), + [anon_sym_PLUS_EQ] = ACTIONS(5689), + [anon_sym_DASH_EQ] = ACTIONS(5689), + [anon_sym_LT_LT_EQ] = ACTIONS(5689), + [anon_sym_GT_GT_EQ] = ACTIONS(5689), + [anon_sym_AMP_EQ] = ACTIONS(5689), + [anon_sym_CARET_EQ] = ACTIONS(5689), + [anon_sym_PIPE_EQ] = ACTIONS(5689), + [anon_sym_and_eq] = ACTIONS(7543), + [anon_sym_or_eq] = ACTIONS(7543), + [anon_sym_xor_eq] = ACTIONS(7543), + [anon_sym_LT_EQ_GT] = ACTIONS(5689), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_bitor] = ACTIONS(7543), + [anon_sym_xor] = ACTIONS(7543), + [anon_sym_bitand] = ACTIONS(7543), + [anon_sym_not_eq] = ACTIONS(7543), + [anon_sym_DASH_DASH] = ACTIONS(5689), + [anon_sym_PLUS_PLUS] = ACTIONS(5689), + [anon_sym_DOT] = ACTIONS(7543), + [anon_sym_DOT_STAR] = ACTIONS(5689), + [anon_sym_DASH_GT] = ACTIONS(5689), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7543), + [anon_sym_final] = ACTIONS(7543), + [anon_sym_override] = ACTIONS(7543), + [anon_sym_template] = ACTIONS(7543), + [anon_sym_requires] = ACTIONS(7543), + [anon_sym_LBRACK_COLON] = ACTIONS(5689), }, [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), + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6829), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6829), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6829), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6829), + [anon_sym_GT_GT] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_RBRACK] = ACTIONS(6831), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_STAR_EQ] = ACTIONS(6831), + [anon_sym_SLASH_EQ] = ACTIONS(6831), + [anon_sym_PERCENT_EQ] = ACTIONS(6831), + [anon_sym_PLUS_EQ] = ACTIONS(6831), + [anon_sym_DASH_EQ] = ACTIONS(6831), + [anon_sym_LT_LT_EQ] = ACTIONS(6831), + [anon_sym_GT_GT_EQ] = ACTIONS(6831), + [anon_sym_AMP_EQ] = ACTIONS(6831), + [anon_sym_CARET_EQ] = ACTIONS(6831), + [anon_sym_PIPE_EQ] = ACTIONS(6831), + [anon_sym_and_eq] = ACTIONS(6829), + [anon_sym_or_eq] = ACTIONS(6829), + [anon_sym_xor_eq] = ACTIONS(6829), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), }, [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), + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6803), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_RBRACK] = ACTIONS(6805), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_STAR_EQ] = ACTIONS(6805), + [anon_sym_SLASH_EQ] = ACTIONS(6805), + [anon_sym_PERCENT_EQ] = ACTIONS(6805), + [anon_sym_PLUS_EQ] = ACTIONS(6805), + [anon_sym_DASH_EQ] = ACTIONS(6805), + [anon_sym_LT_LT_EQ] = ACTIONS(6805), + [anon_sym_GT_GT_EQ] = ACTIONS(6805), + [anon_sym_AMP_EQ] = ACTIONS(6805), + [anon_sym_CARET_EQ] = ACTIONS(6805), + [anon_sym_PIPE_EQ] = ACTIONS(6805), + [anon_sym_and_eq] = ACTIONS(6803), + [anon_sym_or_eq] = ACTIONS(6803), + [anon_sym_xor_eq] = ACTIONS(6803), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), }, [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), + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6799), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6799), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6799), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6799), + [anon_sym_GT_GT] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_RBRACK] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_and_eq] = ACTIONS(6799), + [anon_sym_or_eq] = ACTIONS(6799), + [anon_sym_xor_eq] = ACTIONS(6799), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), }, [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), + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6807), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6807), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6807), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6807), + [anon_sym_GT_GT] = ACTIONS(6807), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_RBRACK] = ACTIONS(6809), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [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(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), }, [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), + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6795), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6795), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6795), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6795), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_RBRACK] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_STAR_EQ] = ACTIONS(6797), + [anon_sym_SLASH_EQ] = ACTIONS(6797), + [anon_sym_PERCENT_EQ] = ACTIONS(6797), + [anon_sym_PLUS_EQ] = ACTIONS(6797), + [anon_sym_DASH_EQ] = ACTIONS(6797), + [anon_sym_LT_LT_EQ] = ACTIONS(6797), + [anon_sym_GT_GT_EQ] = ACTIONS(6797), + [anon_sym_AMP_EQ] = ACTIONS(6797), + [anon_sym_CARET_EQ] = ACTIONS(6797), + [anon_sym_PIPE_EQ] = ACTIONS(6797), + [anon_sym_and_eq] = ACTIONS(6795), + [anon_sym_or_eq] = ACTIONS(6795), + [anon_sym_xor_eq] = ACTIONS(6795), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), }, [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), + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6791), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6791), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6791), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6791), + [anon_sym_GT_GT] = ACTIONS(6791), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_RBRACK] = ACTIONS(6793), + [anon_sym_EQ] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_STAR_EQ] = ACTIONS(6793), + [anon_sym_SLASH_EQ] = ACTIONS(6793), + [anon_sym_PERCENT_EQ] = ACTIONS(6793), + [anon_sym_PLUS_EQ] = ACTIONS(6793), + [anon_sym_DASH_EQ] = ACTIONS(6793), + [anon_sym_LT_LT_EQ] = ACTIONS(6793), + [anon_sym_GT_GT_EQ] = ACTIONS(6793), + [anon_sym_AMP_EQ] = ACTIONS(6793), + [anon_sym_CARET_EQ] = ACTIONS(6793), + [anon_sym_PIPE_EQ] = ACTIONS(6793), + [anon_sym_and_eq] = ACTIONS(6791), + [anon_sym_or_eq] = ACTIONS(6791), + [anon_sym_xor_eq] = ACTIONS(6791), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), }, [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_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6811), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6811), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6811), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6811), + [anon_sym_GT_GT] = ACTIONS(6811), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_RBRACK] = ACTIONS(6813), + [anon_sym_EQ] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_STAR_EQ] = ACTIONS(6813), + [anon_sym_SLASH_EQ] = ACTIONS(6813), + [anon_sym_PERCENT_EQ] = ACTIONS(6813), + [anon_sym_PLUS_EQ] = ACTIONS(6813), + [anon_sym_DASH_EQ] = ACTIONS(6813), + [anon_sym_LT_LT_EQ] = ACTIONS(6813), + [anon_sym_GT_GT_EQ] = ACTIONS(6813), + [anon_sym_AMP_EQ] = ACTIONS(6813), + [anon_sym_CARET_EQ] = ACTIONS(6813), + [anon_sym_PIPE_EQ] = ACTIONS(6813), + [anon_sym_and_eq] = ACTIONS(6811), + [anon_sym_or_eq] = ACTIONS(6811), + [anon_sym_xor_eq] = ACTIONS(6811), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6813), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_GT2] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), }, [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), + [sym_template_argument_list] = STATE(2703), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7442), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(8325), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7442), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_and_eq] = ACTIONS(7442), + [anon_sym_or_eq] = ACTIONS(7442), + [anon_sym_xor_eq] = ACTIONS(7442), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_GT2] = ACTIONS(7447), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_template_argument_list] = STATE(2704), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_RBRACK] = ACTIONS(7447), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7447), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_and_eq] = ACTIONS(7442), + [anon_sym_or_eq] = ACTIONS(7442), + [anon_sym_xor_eq] = ACTIONS(7442), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_identifier] = ACTIONS(7366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7368), + [anon_sym_COMMA] = ACTIONS(7368), + [anon_sym_LPAREN2] = ACTIONS(7368), + [anon_sym_DASH] = ACTIONS(7366), + [anon_sym_PLUS] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(7366), + [anon_sym_SLASH] = ACTIONS(7366), + [anon_sym_PERCENT] = ACTIONS(7366), + [anon_sym_PIPE_PIPE] = ACTIONS(7368), + [anon_sym_AMP_AMP] = ACTIONS(7368), + [anon_sym_PIPE] = ACTIONS(7366), + [anon_sym_CARET] = ACTIONS(7366), + [anon_sym_AMP] = ACTIONS(7366), + [anon_sym_EQ_EQ] = ACTIONS(7368), + [anon_sym_BANG_EQ] = ACTIONS(7368), + [anon_sym_GT] = ACTIONS(7366), + [anon_sym_GT_EQ] = ACTIONS(7366), + [anon_sym_LT_EQ] = ACTIONS(7366), + [anon_sym_LT] = ACTIONS(7366), + [anon_sym_LT_LT] = ACTIONS(7366), + [anon_sym_GT_GT] = ACTIONS(7366), + [anon_sym___extension__] = ACTIONS(7366), + [anon_sym_COLON_COLON] = ACTIONS(7368), + [sym_ms_restrict_modifier] = ACTIONS(7366), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7366), + [sym_ms_signed_ptr_modifier] = ACTIONS(7366), + [anon_sym__unaligned] = ACTIONS(7366), + [anon_sym___unaligned] = ACTIONS(7366), + [anon_sym_LBRACK] = ACTIONS(7366), + [anon_sym_EQ] = ACTIONS(7366), + [anon_sym_const] = ACTIONS(7366), + [anon_sym_constexpr] = ACTIONS(7366), + [anon_sym_volatile] = ACTIONS(7366), + [anon_sym_restrict] = ACTIONS(7366), + [anon_sym___restrict__] = ACTIONS(7366), + [anon_sym__Atomic] = ACTIONS(7366), + [anon_sym__Noreturn] = ACTIONS(7366), + [anon_sym_noreturn] = ACTIONS(7366), + [anon_sym__Nonnull] = ACTIONS(7366), + [anon_sym_mutable] = ACTIONS(7366), + [anon_sym_constinit] = ACTIONS(7366), + [anon_sym_consteval] = ACTIONS(7366), + [anon_sym_alignas] = ACTIONS(7366), + [anon_sym__Alignas] = ACTIONS(7366), + [anon_sym_QMARK] = ACTIONS(7368), + [anon_sym_STAR_EQ] = ACTIONS(7368), + [anon_sym_SLASH_EQ] = ACTIONS(7368), + [anon_sym_PERCENT_EQ] = ACTIONS(7368), + [anon_sym_PLUS_EQ] = ACTIONS(7368), + [anon_sym_DASH_EQ] = ACTIONS(7368), + [anon_sym_LT_LT_EQ] = ACTIONS(7368), + [anon_sym_GT_GT_EQ] = ACTIONS(7366), + [anon_sym_AMP_EQ] = ACTIONS(7368), + [anon_sym_CARET_EQ] = ACTIONS(7368), + [anon_sym_PIPE_EQ] = ACTIONS(7368), + [anon_sym_and_eq] = ACTIONS(7366), + [anon_sym_or_eq] = ACTIONS(7366), + [anon_sym_xor_eq] = ACTIONS(7366), + [anon_sym_LT_EQ_GT] = ACTIONS(7368), + [anon_sym_or] = ACTIONS(7366), + [anon_sym_and] = ACTIONS(7366), + [anon_sym_bitor] = ACTIONS(7366), + [anon_sym_xor] = ACTIONS(7366), + [anon_sym_bitand] = ACTIONS(7366), + [anon_sym_not_eq] = ACTIONS(7366), + [anon_sym_DASH_DASH] = ACTIONS(7368), + [anon_sym_PLUS_PLUS] = ACTIONS(7368), + [anon_sym_DOT] = ACTIONS(7366), + [anon_sym_DOT_STAR] = ACTIONS(7368), + [anon_sym_DASH_GT] = ACTIONS(7368), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7366), + [anon_sym_final] = ACTIONS(7366), + [anon_sym_override] = ACTIONS(7366), + [anon_sym_template] = ACTIONS(7366), + [anon_sym_GT2] = ACTIONS(7368), + [anon_sym_requires] = ACTIONS(7366), + [anon_sym_LBRACK_COLON] = ACTIONS(7368), }, [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), + [sym_identifier] = ACTIONS(7346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7348), + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7348), + [anon_sym_DASH] = ACTIONS(7346), + [anon_sym_PLUS] = ACTIONS(7346), + [anon_sym_STAR] = ACTIONS(7346), + [anon_sym_SLASH] = ACTIONS(7346), + [anon_sym_PERCENT] = ACTIONS(7346), + [anon_sym_PIPE_PIPE] = ACTIONS(7348), + [anon_sym_AMP_AMP] = ACTIONS(7348), + [anon_sym_PIPE] = ACTIONS(7346), + [anon_sym_CARET] = ACTIONS(7346), + [anon_sym_AMP] = ACTIONS(7346), + [anon_sym_EQ_EQ] = ACTIONS(7348), + [anon_sym_BANG_EQ] = ACTIONS(7348), + [anon_sym_GT] = ACTIONS(7346), + [anon_sym_GT_EQ] = ACTIONS(7346), + [anon_sym_LT_EQ] = ACTIONS(7346), + [anon_sym_LT] = ACTIONS(7346), + [anon_sym_LT_LT] = ACTIONS(7346), + [anon_sym_GT_GT] = ACTIONS(7346), + [anon_sym___extension__] = ACTIONS(7346), + [anon_sym_COLON_COLON] = ACTIONS(7348), + [sym_ms_restrict_modifier] = ACTIONS(7346), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7346), + [sym_ms_signed_ptr_modifier] = ACTIONS(7346), + [anon_sym__unaligned] = ACTIONS(7346), + [anon_sym___unaligned] = ACTIONS(7346), + [anon_sym_LBRACK] = ACTIONS(7346), + [anon_sym_EQ] = ACTIONS(7346), + [anon_sym_const] = ACTIONS(7346), + [anon_sym_constexpr] = ACTIONS(7346), + [anon_sym_volatile] = ACTIONS(7346), + [anon_sym_restrict] = ACTIONS(7346), + [anon_sym___restrict__] = ACTIONS(7346), + [anon_sym__Atomic] = ACTIONS(7346), + [anon_sym__Noreturn] = ACTIONS(7346), + [anon_sym_noreturn] = ACTIONS(7346), + [anon_sym__Nonnull] = ACTIONS(7346), + [anon_sym_mutable] = ACTIONS(7346), + [anon_sym_constinit] = ACTIONS(7346), + [anon_sym_consteval] = ACTIONS(7346), + [anon_sym_alignas] = ACTIONS(7346), + [anon_sym__Alignas] = ACTIONS(7346), + [anon_sym_QMARK] = ACTIONS(7348), + [anon_sym_STAR_EQ] = ACTIONS(7348), + [anon_sym_SLASH_EQ] = ACTIONS(7348), + [anon_sym_PERCENT_EQ] = ACTIONS(7348), + [anon_sym_PLUS_EQ] = ACTIONS(7348), + [anon_sym_DASH_EQ] = ACTIONS(7348), + [anon_sym_LT_LT_EQ] = ACTIONS(7348), + [anon_sym_GT_GT_EQ] = ACTIONS(7346), + [anon_sym_AMP_EQ] = ACTIONS(7348), + [anon_sym_CARET_EQ] = ACTIONS(7348), + [anon_sym_PIPE_EQ] = ACTIONS(7348), + [anon_sym_and_eq] = ACTIONS(7346), + [anon_sym_or_eq] = ACTIONS(7346), + [anon_sym_xor_eq] = ACTIONS(7346), + [anon_sym_LT_EQ_GT] = ACTIONS(7348), + [anon_sym_or] = ACTIONS(7346), + [anon_sym_and] = ACTIONS(7346), + [anon_sym_bitor] = ACTIONS(7346), + [anon_sym_xor] = ACTIONS(7346), + [anon_sym_bitand] = ACTIONS(7346), + [anon_sym_not_eq] = ACTIONS(7346), + [anon_sym_DASH_DASH] = ACTIONS(7348), + [anon_sym_PLUS_PLUS] = ACTIONS(7348), + [anon_sym_DOT] = ACTIONS(7346), + [anon_sym_DOT_STAR] = ACTIONS(7348), + [anon_sym_DASH_GT] = ACTIONS(7348), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7346), + [anon_sym_final] = ACTIONS(7346), + [anon_sym_override] = ACTIONS(7346), + [anon_sym_template] = ACTIONS(7346), + [anon_sym_GT2] = ACTIONS(7348), + [anon_sym_requires] = ACTIONS(7346), + [anon_sym_LBRACK_COLON] = ACTIONS(7348), }, [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), + [sym_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(2694), + [sym_identifier] = ACTIONS(7129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [anon_sym_RPAREN] = ACTIONS(7131), + [aux_sym_preproc_if_token2] = ACTIONS(7131), + [aux_sym_preproc_else_token1] = ACTIONS(7131), + [aux_sym_preproc_elif_token1] = ACTIONS(7129), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7131), + [anon_sym_SLASH] = ACTIONS(7129), + [anon_sym_PERCENT] = ACTIONS(7131), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7129), + [anon_sym_CARET] = ACTIONS(7131), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_EQ_EQ] = ACTIONS(7131), + [anon_sym_BANG_EQ] = ACTIONS(7131), + [anon_sym_GT] = ACTIONS(7129), + [anon_sym_GT_EQ] = ACTIONS(7131), + [anon_sym_LT_EQ] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(7129), + [anon_sym_LT_LT] = ACTIONS(7131), + [anon_sym_GT_GT] = ACTIONS(7131), + [anon_sym_SEMI] = ACTIONS(7131), + [anon_sym___extension__] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7129), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7131), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_RBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(6952), + [anon_sym_unsigned] = ACTIONS(6952), + [anon_sym_long] = ACTIONS(6952), + [anon_sym_short] = ACTIONS(6952), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_restrict] = ACTIONS(7129), + [anon_sym___restrict__] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [anon_sym__Noreturn] = ACTIONS(7129), + [anon_sym_noreturn] = ACTIONS(7129), + [anon_sym__Nonnull] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [anon_sym_constinit] = ACTIONS(7129), + [anon_sym_consteval] = ACTIONS(7129), + [anon_sym_alignas] = ACTIONS(7129), + [anon_sym__Alignas] = ACTIONS(7129), + [anon_sym_QMARK] = ACTIONS(7131), + [anon_sym_LT_EQ_GT] = ACTIONS(7131), + [anon_sym_or] = ACTIONS(7129), + [anon_sym_and] = ACTIONS(7129), + [anon_sym_bitor] = ACTIONS(7129), + [anon_sym_xor] = ACTIONS(7129), + [anon_sym_bitand] = ACTIONS(7129), + [anon_sym_not_eq] = ACTIONS(7129), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DOT] = ACTIONS(7129), + [anon_sym_DOT_STAR] = ACTIONS(7131), + [anon_sym_DASH_GT] = ACTIONS(7131), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7129), + [anon_sym_final] = ACTIONS(7129), + [anon_sym_override] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_requires] = ACTIONS(7129), + [anon_sym_LBRACK_COLON] = ACTIONS(7131), + [anon_sym_COLON_RBRACK] = ACTIONS(7131), }, [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), + [sym__abstract_declarator] = STATE(7361), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2430), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9531), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(7609), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(7611), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(7613), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6618), + [anon_sym___attribute] = ACTIONS(6618), + [anon_sym_COLON_COLON] = ACTIONS(7615), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7362), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2647), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2430), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9531), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2647), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(7609), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(7611), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(7613), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym_SEMI] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(7615), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7342), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2430), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9531), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7609), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7611), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7613), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(7615), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7363), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2430), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9531), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(7609), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(7611), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(7613), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym_SEMI] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(7615), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7343), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2430), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9531), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(7609), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(7611), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(7613), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), + [anon_sym_SEMI] = ACTIONS(6600), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(7615), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [aux_sym_preproc_if_token2] = ACTIONS(3108), + [aux_sym_preproc_else_token1] = ACTIONS(3108), + [aux_sym_preproc_elif_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3108), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3108), + [anon_sym_GT_GT] = ACTIONS(3108), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3108), + [anon_sym___based] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), + [anon_sym_COLON_RBRACK] = ACTIONS(3108), }, [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), + [sym__abstract_declarator] = STATE(7333), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_type_qualifier] = STATE(2644), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(2430), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9531), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2644), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(7609), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(7611), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(7613), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym_SEMI] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(7615), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2651), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [aux_sym_preproc_if_token2] = ACTIONS(7175), + [aux_sym_preproc_else_token1] = ACTIONS(7175), + [aux_sym_preproc_elif_token1] = ACTIONS(7173), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7175), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7175), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7175), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7175), + [anon_sym_GT_GT] = ACTIONS(7175), + [anon_sym_SEMI] = ACTIONS(7175), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_RBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8496), + [anon_sym_unsigned] = ACTIONS(8496), + [anon_sym_long] = ACTIONS(8496), + [anon_sym_short] = ACTIONS(8496), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), + [anon_sym_COLON_RBRACK] = ACTIONS(7175), }, [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), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [aux_sym_preproc_if_token2] = ACTIONS(7261), + [aux_sym_preproc_else_token1] = ACTIONS(7261), + [aux_sym_preproc_elif_token1] = ACTIONS(7259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7261), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7261), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7261), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7261), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7261), + [anon_sym_GT_GT] = ACTIONS(7261), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), + [anon_sym___based] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_RBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), + [anon_sym_COLON_RBRACK] = ACTIONS(7261), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2651), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [aux_sym_preproc_if_token2] = ACTIONS(7186), + [aux_sym_preproc_else_token1] = ACTIONS(7186), + [aux_sym_preproc_elif_token1] = ACTIONS(7183), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7186), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7186), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7186), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7186), + [anon_sym_GT_GT] = ACTIONS(7186), + [anon_sym_SEMI] = ACTIONS(7186), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON] = ACTIONS(7183), + [anon_sym_COLON_COLON] = ACTIONS(7186), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7186), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_RBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(8496), + [anon_sym_unsigned] = ACTIONS(8496), + [anon_sym_long] = ACTIONS(8496), + [anon_sym_short] = ACTIONS(8496), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7183), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7183), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_template] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_LBRACK_COLON] = ACTIONS(7186), + [anon_sym_COLON_RBRACK] = ACTIONS(7186), }, [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), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [aux_sym_preproc_if_token2] = ACTIONS(7049), + [aux_sym_preproc_else_token1] = ACTIONS(7049), + [aux_sym_preproc_elif_token1] = ACTIONS(7047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7049), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_TILDE] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7049), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7049), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7049), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7049), + [anon_sym_GT_GT] = ACTIONS(7049), + [anon_sym_SEMI] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(8499), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7049), + [anon_sym___based] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_RBRACE] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8499), + [anon_sym_constexpr] = ACTIONS(8499), + [anon_sym_volatile] = ACTIONS(8499), + [anon_sym_restrict] = ACTIONS(8499), + [anon_sym___restrict__] = ACTIONS(8499), + [anon_sym__Atomic] = ACTIONS(8499), + [anon_sym__Noreturn] = ACTIONS(8499), + [anon_sym_noreturn] = ACTIONS(8499), + [anon_sym__Nonnull] = ACTIONS(8499), + [anon_sym_mutable] = ACTIONS(8499), + [anon_sym_constinit] = ACTIONS(8499), + [anon_sym_consteval] = ACTIONS(8499), + [anon_sym_alignas] = ACTIONS(8502), + [anon_sym__Alignas] = ACTIONS(8502), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_operator] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), + [anon_sym_COLON_RBRACK] = ACTIONS(7049), }, [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), + [sym_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_TILDE] = ACTIONS(7568), + [anon_sym_STAR] = ACTIONS(7568), + [anon_sym_PIPE_PIPE] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7568), + [anon_sym_SEMI] = ACTIONS(7568), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym_virtual] = ACTIONS(7566), + [anon_sym_extern] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_using] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7568), + [anon_sym___declspec] = ACTIONS(7566), + [anon_sym___based] = ACTIONS(7566), + [anon_sym___cdecl] = ACTIONS(7566), + [anon_sym___clrcall] = ACTIONS(7566), + [anon_sym___stdcall] = ACTIONS(7566), + [anon_sym___fastcall] = ACTIONS(7566), + [anon_sym___thiscall] = ACTIONS(7566), + [anon_sym___vectorcall] = ACTIONS(7566), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_signed] = ACTIONS(7566), + [anon_sym_unsigned] = ACTIONS(7566), + [anon_sym_long] = ACTIONS(7566), + [anon_sym_short] = ACTIONS(7566), + [anon_sym_LBRACK] = ACTIONS(7566), + [anon_sym_static] = ACTIONS(7566), + [anon_sym_register] = ACTIONS(7566), + [anon_sym_inline] = ACTIONS(7566), + [anon_sym___inline] = ACTIONS(7566), + [anon_sym___inline__] = ACTIONS(7566), + [anon_sym___forceinline] = ACTIONS(7566), + [anon_sym_thread_local] = ACTIONS(7566), + [anon_sym___thread] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_mutable] = ACTIONS(7566), + [anon_sym_constinit] = ACTIONS(7566), + [anon_sym_consteval] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [sym_primitive_type] = ACTIONS(7566), + [anon_sym_enum] = ACTIONS(7566), + [anon_sym_class] = ACTIONS(7566), + [anon_sym_struct] = ACTIONS(7566), + [anon_sym_union] = ACTIONS(7566), + [anon_sym_or] = ACTIONS(7566), + [anon_sym_and] = ACTIONS(7566), + [anon_sym_typename] = ACTIONS(7566), + [anon_sym_DASH_GT] = ACTIONS(7568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7566), + [anon_sym_decltype] = ACTIONS(7566), + [anon_sym_final] = ACTIONS(7566), + [anon_sym_override] = ACTIONS(7566), + [anon_sym_explicit] = ACTIONS(7566), + [anon_sym_template] = ACTIONS(7566), + [anon_sym_GT2] = ACTIONS(7568), + [anon_sym_operator] = ACTIONS(7566), + [anon_sym_friend] = ACTIONS(7566), + [anon_sym_noexcept] = ACTIONS(7566), + [anon_sym_throw] = ACTIONS(7566), + [anon_sym_concept] = ACTIONS(7566), + [anon_sym_LBRACK_COLON] = ACTIONS(7568), }, [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), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7442), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7447), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7447), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_and_eq] = ACTIONS(7442), + [anon_sym_or_eq] = ACTIONS(7442), + [anon_sym_xor_eq] = ACTIONS(7442), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7442), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_DASH_GT_STAR] = ACTIONS(7447), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_attribute_specifier] = STATE(2657), + [aux_sym_type_definition_repeat1] = STATE(2657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7400), + [anon_sym_COMMA] = ACTIONS(7400), + [anon_sym_LPAREN2] = ACTIONS(7400), + [anon_sym_DASH] = ACTIONS(7398), + [anon_sym_PLUS] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7398), + [anon_sym_SLASH] = ACTIONS(7398), + [anon_sym_PERCENT] = ACTIONS(7398), + [anon_sym_PIPE_PIPE] = ACTIONS(7400), + [anon_sym_AMP_AMP] = ACTIONS(7400), + [anon_sym_PIPE] = ACTIONS(7398), + [anon_sym_CARET] = ACTIONS(7398), + [anon_sym_AMP] = ACTIONS(7398), + [anon_sym_EQ_EQ] = ACTIONS(7400), + [anon_sym_BANG_EQ] = ACTIONS(7400), + [anon_sym_GT] = ACTIONS(7398), + [anon_sym_GT_EQ] = ACTIONS(7398), + [anon_sym_LT_EQ] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(7398), + [anon_sym_LT_LT] = ACTIONS(7398), + [anon_sym_GT_GT] = ACTIONS(7398), + [anon_sym___extension__] = ACTIONS(7400), + [anon_sym___attribute__] = ACTIONS(8505), + [anon_sym___attribute] = ACTIONS(8508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7400), + [anon_sym_LBRACK] = ACTIONS(7398), + [anon_sym_EQ] = ACTIONS(7398), + [anon_sym_const] = ACTIONS(7398), + [anon_sym_constexpr] = ACTIONS(7400), + [anon_sym_volatile] = ACTIONS(7400), + [anon_sym_restrict] = ACTIONS(7400), + [anon_sym___restrict__] = ACTIONS(7400), + [anon_sym__Atomic] = ACTIONS(7400), + [anon_sym__Noreturn] = ACTIONS(7400), + [anon_sym_noreturn] = ACTIONS(7400), + [anon_sym__Nonnull] = ACTIONS(7400), + [anon_sym_mutable] = ACTIONS(7400), + [anon_sym_constinit] = ACTIONS(7400), + [anon_sym_consteval] = ACTIONS(7400), + [anon_sym_alignas] = ACTIONS(7400), + [anon_sym__Alignas] = ACTIONS(7400), + [anon_sym_QMARK] = ACTIONS(7400), + [anon_sym_STAR_EQ] = ACTIONS(7400), + [anon_sym_SLASH_EQ] = ACTIONS(7400), + [anon_sym_PERCENT_EQ] = ACTIONS(7400), + [anon_sym_PLUS_EQ] = ACTIONS(7400), + [anon_sym_DASH_EQ] = ACTIONS(7400), + [anon_sym_LT_LT_EQ] = ACTIONS(7400), + [anon_sym_GT_GT_EQ] = ACTIONS(7398), + [anon_sym_AMP_EQ] = ACTIONS(7400), + [anon_sym_CARET_EQ] = ACTIONS(7400), + [anon_sym_PIPE_EQ] = ACTIONS(7400), + [anon_sym_and_eq] = ACTIONS(7400), + [anon_sym_or_eq] = ACTIONS(7400), + [anon_sym_xor_eq] = ACTIONS(7400), + [anon_sym_LT_EQ_GT] = ACTIONS(7400), + [anon_sym_or] = ACTIONS(7398), + [anon_sym_and] = ACTIONS(7398), + [anon_sym_bitor] = ACTIONS(7400), + [anon_sym_xor] = ACTIONS(7398), + [anon_sym_bitand] = ACTIONS(7400), + [anon_sym_not_eq] = ACTIONS(7400), + [anon_sym_DASH_DASH] = ACTIONS(7400), + [anon_sym_PLUS_PLUS] = ACTIONS(7400), + [anon_sym_asm] = ACTIONS(7400), + [anon_sym___asm__] = ACTIONS(7400), + [anon_sym___asm] = ACTIONS(7398), + [anon_sym_DOT] = ACTIONS(7398), + [anon_sym_DOT_STAR] = ACTIONS(7400), + [anon_sym_DASH_GT] = ACTIONS(7400), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7400), + [anon_sym_override] = ACTIONS(7400), + [anon_sym_GT2] = ACTIONS(7400), + [anon_sym_noexcept] = ACTIONS(7400), + [anon_sym_throw] = ACTIONS(7400), + [anon_sym_requires] = ACTIONS(7400), }, [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), + [sym_identifier] = ACTIONS(7149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7151), + [anon_sym_COMMA] = ACTIONS(7151), + [anon_sym_RPAREN] = ACTIONS(7151), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_DASH] = ACTIONS(7149), + [anon_sym_PLUS] = ACTIONS(7149), + [anon_sym_STAR] = ACTIONS(7149), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_PIPE_PIPE] = ACTIONS(7151), + [anon_sym_AMP_AMP] = ACTIONS(7151), + [anon_sym_PIPE] = ACTIONS(7149), + [anon_sym_CARET] = ACTIONS(7149), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym_EQ_EQ] = ACTIONS(7151), + [anon_sym_BANG_EQ] = ACTIONS(7151), + [anon_sym_GT] = ACTIONS(7149), + [anon_sym_GT_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7149), + [anon_sym_LT] = ACTIONS(7149), + [anon_sym_LT_LT] = ACTIONS(7149), + [anon_sym_GT_GT] = ACTIONS(7149), + [anon_sym___extension__] = ACTIONS(7149), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_COLON] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_LBRACE] = ACTIONS(7151), + [anon_sym_LBRACK] = ACTIONS(7149), + [anon_sym_EQ] = ACTIONS(7149), + [anon_sym_const] = ACTIONS(7149), + [anon_sym_constexpr] = ACTIONS(7149), + [anon_sym_volatile] = ACTIONS(7149), + [anon_sym_restrict] = ACTIONS(7149), + [anon_sym___restrict__] = ACTIONS(7149), + [anon_sym__Atomic] = ACTIONS(7149), + [anon_sym__Noreturn] = ACTIONS(7149), + [anon_sym_noreturn] = ACTIONS(7149), + [anon_sym__Nonnull] = ACTIONS(7149), + [anon_sym_mutable] = ACTIONS(7149), + [anon_sym_constinit] = ACTIONS(7149), + [anon_sym_consteval] = ACTIONS(7149), + [anon_sym_alignas] = ACTIONS(7149), + [anon_sym__Alignas] = ACTIONS(7149), + [anon_sym_QMARK] = ACTIONS(7151), + [anon_sym_STAR_EQ] = ACTIONS(7151), + [anon_sym_SLASH_EQ] = ACTIONS(7151), + [anon_sym_PERCENT_EQ] = ACTIONS(7151), + [anon_sym_PLUS_EQ] = ACTIONS(7151), + [anon_sym_DASH_EQ] = ACTIONS(7151), + [anon_sym_LT_LT_EQ] = ACTIONS(7151), + [anon_sym_GT_GT_EQ] = ACTIONS(7151), + [anon_sym_AMP_EQ] = ACTIONS(7151), + [anon_sym_CARET_EQ] = ACTIONS(7151), + [anon_sym_PIPE_EQ] = ACTIONS(7151), + [anon_sym_and_eq] = ACTIONS(7149), + [anon_sym_or_eq] = ACTIONS(7149), + [anon_sym_xor_eq] = ACTIONS(7149), + [anon_sym_LT_EQ_GT] = ACTIONS(7151), + [anon_sym_or] = ACTIONS(7149), + [anon_sym_and] = ACTIONS(7149), + [anon_sym_bitor] = ACTIONS(7149), + [anon_sym_xor] = ACTIONS(7149), + [anon_sym_bitand] = ACTIONS(7149), + [anon_sym_not_eq] = ACTIONS(7149), + [anon_sym_DASH_DASH] = ACTIONS(7151), + [anon_sym_PLUS_PLUS] = ACTIONS(7151), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_DOT_STAR] = ACTIONS(7151), + [anon_sym_DASH_GT] = ACTIONS(7149), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7149), + [anon_sym_final] = ACTIONS(7149), + [anon_sym_override] = ACTIONS(7149), + [anon_sym_template] = ACTIONS(7149), + [anon_sym_requires] = ACTIONS(7149), + [anon_sym_DASH_GT_STAR] = ACTIONS(7151), + [anon_sym_LBRACK_COLON] = ACTIONS(7151), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_STAR] = ACTIONS(6815), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE] = ACTIONS(6815), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_EQ_EQ] = ACTIONS(6822), + [anon_sym_BANG_EQ] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6815), + [anon_sym_GT_EQ] = ACTIONS(6822), + [anon_sym_LT_EQ] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(6815), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6815), + [anon_sym_RBRACK] = ACTIONS(6822), + [anon_sym_EQ] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_STAR_EQ] = ACTIONS(6822), + [anon_sym_SLASH_EQ] = ACTIONS(6822), + [anon_sym_PERCENT_EQ] = ACTIONS(6822), + [anon_sym_PLUS_EQ] = ACTIONS(6822), + [anon_sym_DASH_EQ] = ACTIONS(6822), + [anon_sym_LT_LT_EQ] = ACTIONS(6822), + [anon_sym_GT_GT_EQ] = ACTIONS(6822), + [anon_sym_AMP_EQ] = ACTIONS(6822), + [anon_sym_CARET_EQ] = ACTIONS(6822), + [anon_sym_PIPE_EQ] = ACTIONS(6822), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6822), + [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(6822), + [anon_sym_PLUS_PLUS] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6815), + [anon_sym_DOT_STAR] = ACTIONS(6822), + [anon_sym_DASH_GT] = ACTIONS(6822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7566), + [anon_sym_PERCENT] = ACTIONS(7566), + [anon_sym_PIPE_PIPE] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7566), + [anon_sym_CARET] = ACTIONS(7566), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_EQ_EQ] = ACTIONS(7568), + [anon_sym_BANG_EQ] = ACTIONS(7568), + [anon_sym_GT] = ACTIONS(7566), + [anon_sym_GT_EQ] = ACTIONS(7568), + [anon_sym_LT_EQ] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7566), + [anon_sym_LT_LT] = ACTIONS(7566), + [anon_sym_GT_GT] = ACTIONS(7566), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(7566), + [anon_sym_RBRACK] = ACTIONS(7568), + [anon_sym_EQ] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_mutable] = ACTIONS(7566), + [anon_sym_constinit] = ACTIONS(7566), + [anon_sym_consteval] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(7568), + [anon_sym_STAR_EQ] = ACTIONS(7568), + [anon_sym_SLASH_EQ] = ACTIONS(7568), + [anon_sym_PERCENT_EQ] = ACTIONS(7568), + [anon_sym_PLUS_EQ] = ACTIONS(7568), + [anon_sym_DASH_EQ] = ACTIONS(7568), + [anon_sym_LT_LT_EQ] = ACTIONS(7568), + [anon_sym_GT_GT_EQ] = ACTIONS(7568), + [anon_sym_AMP_EQ] = ACTIONS(7568), + [anon_sym_CARET_EQ] = ACTIONS(7568), + [anon_sym_PIPE_EQ] = ACTIONS(7568), + [anon_sym_and_eq] = ACTIONS(7566), + [anon_sym_or_eq] = ACTIONS(7566), + [anon_sym_xor_eq] = ACTIONS(7566), + [anon_sym_LT_EQ_GT] = ACTIONS(7568), + [anon_sym_or] = ACTIONS(7566), + [anon_sym_and] = ACTIONS(7566), + [anon_sym_bitor] = ACTIONS(7566), + [anon_sym_xor] = ACTIONS(7566), + [anon_sym_bitand] = ACTIONS(7566), + [anon_sym_not_eq] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(7568), + [anon_sym_PLUS_PLUS] = ACTIONS(7568), + [anon_sym_DOT] = ACTIONS(7566), + [anon_sym_DOT_STAR] = ACTIONS(7568), + [anon_sym_DASH_GT] = ACTIONS(7568), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7566), + [anon_sym_final] = ACTIONS(7566), + [anon_sym_override] = ACTIONS(7566), + [anon_sym_template] = ACTIONS(7566), + [anon_sym_requires] = ACTIONS(7566), + [anon_sym_LBRACK_COLON] = ACTIONS(7568), }, [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), + [sym_attribute_specifier] = STATE(2911), + [sym_identifier] = ACTIONS(7702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7704), + [anon_sym_COMMA] = ACTIONS(7704), + [anon_sym_RPAREN] = ACTIONS(7704), + [anon_sym_LPAREN2] = ACTIONS(7704), + [anon_sym_DASH] = ACTIONS(7702), + [anon_sym_PLUS] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_SLASH] = ACTIONS(7702), + [anon_sym_PERCENT] = ACTIONS(7702), + [anon_sym_PIPE_PIPE] = ACTIONS(7704), + [anon_sym_AMP_AMP] = ACTIONS(7704), + [anon_sym_PIPE] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_AMP] = ACTIONS(7702), + [anon_sym_EQ_EQ] = ACTIONS(7704), + [anon_sym_BANG_EQ] = ACTIONS(7704), + [anon_sym_GT] = ACTIONS(7702), + [anon_sym_GT_EQ] = ACTIONS(7704), + [anon_sym_LT_EQ] = ACTIONS(7702), + [anon_sym_LT] = ACTIONS(7702), + [anon_sym_LT_LT] = ACTIONS(7702), + [anon_sym_GT_GT] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7704), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_EQ] = ACTIONS(7702), + [anon_sym_const] = ACTIONS(7702), + [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(7704), + [anon_sym_STAR_EQ] = ACTIONS(7704), + [anon_sym_SLASH_EQ] = ACTIONS(7704), + [anon_sym_PERCENT_EQ] = ACTIONS(7704), + [anon_sym_PLUS_EQ] = ACTIONS(7704), + [anon_sym_DASH_EQ] = ACTIONS(7704), + [anon_sym_LT_LT_EQ] = ACTIONS(7704), + [anon_sym_GT_GT_EQ] = ACTIONS(7704), + [anon_sym_AMP_EQ] = ACTIONS(7704), + [anon_sym_CARET_EQ] = ACTIONS(7704), + [anon_sym_PIPE_EQ] = ACTIONS(7704), + [anon_sym_and_eq] = ACTIONS(7702), + [anon_sym_or_eq] = ACTIONS(7702), + [anon_sym_xor_eq] = ACTIONS(7702), + [anon_sym_LT_EQ_GT] = ACTIONS(7704), + [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(7704), + [anon_sym_PLUS_PLUS] = ACTIONS(7704), + [anon_sym_DOT] = ACTIONS(7702), + [anon_sym_DOT_STAR] = ACTIONS(7704), + [anon_sym_DASH_GT] = ACTIONS(7702), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7702), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_template] = ACTIONS(7702), + [anon_sym_requires] = ACTIONS(7702), + [anon_sym_DASH_GT_STAR] = ACTIONS(7704), + [anon_sym_LBRACK_COLON] = ACTIONS(7704), }, [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), + [sym_type_qualifier] = STATE(2662), + [sym_alignas_qualifier] = STATE(2902), + [aux_sym__type_definition_type_repeat1] = STATE(2662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8511), + [anon_sym___attribute__] = ACTIONS(7049), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8514), + [anon_sym_constexpr] = ACTIONS(8511), + [anon_sym_volatile] = ACTIONS(8511), + [anon_sym_restrict] = ACTIONS(8511), + [anon_sym___restrict__] = ACTIONS(8511), + [anon_sym__Atomic] = ACTIONS(8511), + [anon_sym__Noreturn] = ACTIONS(8511), + [anon_sym_noreturn] = ACTIONS(8511), + [anon_sym__Nonnull] = ACTIONS(8511), + [anon_sym_mutable] = ACTIONS(8511), + [anon_sym_constinit] = ACTIONS(8511), + [anon_sym_consteval] = ACTIONS(8511), + [anon_sym_alignas] = ACTIONS(8517), + [anon_sym__Alignas] = ACTIONS(8517), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7049), + [anon_sym_and] = ACTIONS(7049), + [anon_sym_bitor] = ACTIONS(7049), + [anon_sym_xor] = ACTIONS(7049), + [anon_sym_bitand] = ACTIONS(7049), + [anon_sym_not_eq] = ACTIONS(7049), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_asm] = ACTIONS(7049), + [anon_sym___asm__] = ACTIONS(7049), + [anon_sym___asm] = ACTIONS(7047), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7047), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7049), + [anon_sym_override] = ACTIONS(7049), + [anon_sym_noexcept] = ACTIONS(7049), + [anon_sym_throw] = ACTIONS(7049), + [anon_sym_requires] = ACTIONS(7049), + [anon_sym_DASH_GT_STAR] = ACTIONS(7049), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2675), + [sym_identifier] = ACTIONS(7300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7302), + [anon_sym_RPAREN] = ACTIONS(7302), + [aux_sym_preproc_if_token2] = ACTIONS(7302), + [aux_sym_preproc_else_token1] = ACTIONS(7302), + [aux_sym_preproc_elif_token1] = ACTIONS(7300), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7302), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7302), + [anon_sym_LPAREN2] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7300), + [anon_sym_PERCENT] = ACTIONS(7302), + [anon_sym_PIPE_PIPE] = ACTIONS(7302), + [anon_sym_AMP_AMP] = ACTIONS(7302), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_CARET] = ACTIONS(7302), + [anon_sym_AMP] = ACTIONS(7300), + [anon_sym_EQ_EQ] = ACTIONS(7302), + [anon_sym_BANG_EQ] = ACTIONS(7302), + [anon_sym_GT] = ACTIONS(7300), + [anon_sym_GT_EQ] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(7300), + [anon_sym_LT] = ACTIONS(7300), + [anon_sym_LT_LT] = ACTIONS(7302), + [anon_sym_GT_GT] = ACTIONS(7302), + [anon_sym_SEMI] = ACTIONS(7302), + [anon_sym___extension__] = ACTIONS(7300), + [anon_sym___attribute__] = ACTIONS(7300), + [anon_sym___attribute] = ACTIONS(7300), + [anon_sym_COLON] = ACTIONS(7300), + [anon_sym_COLON_COLON] = ACTIONS(7302), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7302), + [anon_sym_RBRACE] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(8520), + [anon_sym_unsigned] = ACTIONS(8520), + [anon_sym_long] = ACTIONS(8520), + [anon_sym_short] = ACTIONS(8520), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_const] = ACTIONS(7300), + [anon_sym_constexpr] = ACTIONS(7300), + [anon_sym_volatile] = ACTIONS(7300), + [anon_sym_restrict] = ACTIONS(7300), + [anon_sym___restrict__] = ACTIONS(7300), + [anon_sym__Atomic] = ACTIONS(7300), + [anon_sym__Noreturn] = ACTIONS(7300), + [anon_sym_noreturn] = ACTIONS(7300), + [anon_sym__Nonnull] = ACTIONS(7300), + [anon_sym_mutable] = ACTIONS(7300), + [anon_sym_constinit] = ACTIONS(7300), + [anon_sym_consteval] = ACTIONS(7300), + [anon_sym_alignas] = ACTIONS(7300), + [anon_sym__Alignas] = ACTIONS(7300), + [anon_sym_QMARK] = ACTIONS(7302), + [anon_sym_LT_EQ_GT] = ACTIONS(7302), + [anon_sym_or] = ACTIONS(7300), + [anon_sym_and] = ACTIONS(7300), + [anon_sym_bitor] = ACTIONS(7300), + [anon_sym_xor] = ACTIONS(7300), + [anon_sym_bitand] = ACTIONS(7300), + [anon_sym_not_eq] = ACTIONS(7300), + [anon_sym_DASH_DASH] = ACTIONS(7302), + [anon_sym_PLUS_PLUS] = ACTIONS(7302), + [anon_sym_DOT] = ACTIONS(7300), + [anon_sym_DOT_STAR] = ACTIONS(7302), + [anon_sym_DASH_GT] = ACTIONS(7302), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7300), + [anon_sym_final] = ACTIONS(7300), + [anon_sym_override] = ACTIONS(7300), + [anon_sym_template] = ACTIONS(7300), + [anon_sym_requires] = ACTIONS(7300), + [anon_sym_LBRACK_COLON] = ACTIONS(7302), + [anon_sym_COLON_RBRACK] = ACTIONS(7302), }, [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), + [sym_attribute_specifier] = STATE(2901), + [sym_identifier] = ACTIONS(7570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7572), + [anon_sym_COMMA] = ACTIONS(7572), + [anon_sym_RPAREN] = ACTIONS(7572), + [anon_sym_LPAREN2] = ACTIONS(7572), + [anon_sym_DASH] = ACTIONS(7570), + [anon_sym_PLUS] = ACTIONS(7570), + [anon_sym_STAR] = ACTIONS(7570), + [anon_sym_SLASH] = ACTIONS(7570), + [anon_sym_PERCENT] = ACTIONS(7570), + [anon_sym_PIPE_PIPE] = ACTIONS(7572), + [anon_sym_AMP_AMP] = ACTIONS(7572), + [anon_sym_PIPE] = ACTIONS(7570), + [anon_sym_CARET] = ACTIONS(7570), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7572), + [anon_sym_BANG_EQ] = ACTIONS(7572), + [anon_sym_GT] = ACTIONS(7570), + [anon_sym_GT_EQ] = ACTIONS(7572), + [anon_sym_LT_EQ] = ACTIONS(7570), + [anon_sym_LT] = ACTIONS(7570), + [anon_sym_LT_LT] = ACTIONS(7570), + [anon_sym_GT_GT] = ACTIONS(7570), + [anon_sym___extension__] = ACTIONS(7570), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7572), + [anon_sym_LBRACK] = ACTIONS(7570), + [anon_sym_EQ] = ACTIONS(7570), + [anon_sym_const] = ACTIONS(7570), + [anon_sym_constexpr] = ACTIONS(7570), + [anon_sym_volatile] = ACTIONS(7570), + [anon_sym_restrict] = ACTIONS(7570), + [anon_sym___restrict__] = ACTIONS(7570), + [anon_sym__Atomic] = ACTIONS(7570), + [anon_sym__Noreturn] = ACTIONS(7570), + [anon_sym_noreturn] = ACTIONS(7570), + [anon_sym__Nonnull] = ACTIONS(7570), + [anon_sym_mutable] = ACTIONS(7570), + [anon_sym_constinit] = ACTIONS(7570), + [anon_sym_consteval] = ACTIONS(7570), + [anon_sym_alignas] = ACTIONS(7570), + [anon_sym__Alignas] = ACTIONS(7570), + [anon_sym_QMARK] = ACTIONS(7572), + [anon_sym_STAR_EQ] = ACTIONS(7572), + [anon_sym_SLASH_EQ] = ACTIONS(7572), + [anon_sym_PERCENT_EQ] = ACTIONS(7572), + [anon_sym_PLUS_EQ] = ACTIONS(7572), + [anon_sym_DASH_EQ] = ACTIONS(7572), + [anon_sym_LT_LT_EQ] = ACTIONS(7572), + [anon_sym_GT_GT_EQ] = ACTIONS(7572), + [anon_sym_AMP_EQ] = ACTIONS(7572), + [anon_sym_CARET_EQ] = ACTIONS(7572), + [anon_sym_PIPE_EQ] = ACTIONS(7572), + [anon_sym_and_eq] = ACTIONS(7570), + [anon_sym_or_eq] = ACTIONS(7570), + [anon_sym_xor_eq] = ACTIONS(7570), + [anon_sym_LT_EQ_GT] = ACTIONS(7572), + [anon_sym_or] = ACTIONS(7570), + [anon_sym_and] = ACTIONS(7570), + [anon_sym_bitor] = ACTIONS(7570), + [anon_sym_xor] = ACTIONS(7570), + [anon_sym_bitand] = ACTIONS(7570), + [anon_sym_not_eq] = ACTIONS(7570), + [anon_sym_DASH_DASH] = ACTIONS(7572), + [anon_sym_PLUS_PLUS] = ACTIONS(7572), + [anon_sym_DOT] = ACTIONS(7570), + [anon_sym_DOT_STAR] = ACTIONS(7572), + [anon_sym_DASH_GT] = ACTIONS(7570), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7570), + [anon_sym_final] = ACTIONS(7570), + [anon_sym_override] = ACTIONS(7570), + [anon_sym_template] = ACTIONS(7570), + [anon_sym_requires] = ACTIONS(7570), + [anon_sym_DASH_GT_STAR] = ACTIONS(7572), + [anon_sym_LBRACK_COLON] = ACTIONS(7572), }, [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), + [sym_attribute_specifier] = STATE(2953), + [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(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(7680), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7680), + [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(7680), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7680), + [anon_sym_final] = ACTIONS(7680), + [anon_sym_override] = ACTIONS(7680), + [anon_sym_template] = ACTIONS(7680), + [anon_sym_requires] = ACTIONS(7680), + [anon_sym_DASH_GT_STAR] = ACTIONS(7682), + [anon_sym_LBRACK_COLON] = ACTIONS(7682), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2675), + [sym_identifier] = ACTIONS(7296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7298), + [anon_sym_RPAREN] = ACTIONS(7298), + [aux_sym_preproc_if_token2] = ACTIONS(7298), + [aux_sym_preproc_else_token1] = ACTIONS(7298), + [aux_sym_preproc_elif_token1] = ACTIONS(7296), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7298), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7298), + [anon_sym_LPAREN2] = ACTIONS(7298), + [anon_sym_DASH] = ACTIONS(7296), + [anon_sym_PLUS] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7298), + [anon_sym_SLASH] = ACTIONS(7296), + [anon_sym_PERCENT] = ACTIONS(7298), + [anon_sym_PIPE_PIPE] = ACTIONS(7298), + [anon_sym_AMP_AMP] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_EQ_EQ] = ACTIONS(7298), + [anon_sym_BANG_EQ] = ACTIONS(7298), + [anon_sym_GT] = ACTIONS(7296), + [anon_sym_GT_EQ] = ACTIONS(7298), + [anon_sym_LT_EQ] = ACTIONS(7296), + [anon_sym_LT] = ACTIONS(7296), + [anon_sym_LT_LT] = ACTIONS(7298), + [anon_sym_GT_GT] = ACTIONS(7298), + [anon_sym_SEMI] = ACTIONS(7298), + [anon_sym___extension__] = ACTIONS(7296), + [anon_sym___attribute__] = ACTIONS(7296), + [anon_sym___attribute] = ACTIONS(7296), + [anon_sym_COLON] = ACTIONS(7296), + [anon_sym_COLON_COLON] = ACTIONS(7298), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7298), + [anon_sym_RBRACE] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(8520), + [anon_sym_unsigned] = ACTIONS(8520), + [anon_sym_long] = ACTIONS(8520), + [anon_sym_short] = ACTIONS(8520), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_const] = ACTIONS(7296), + [anon_sym_constexpr] = ACTIONS(7296), + [anon_sym_volatile] = ACTIONS(7296), + [anon_sym_restrict] = ACTIONS(7296), + [anon_sym___restrict__] = ACTIONS(7296), + [anon_sym__Atomic] = ACTIONS(7296), + [anon_sym__Noreturn] = ACTIONS(7296), + [anon_sym_noreturn] = ACTIONS(7296), + [anon_sym__Nonnull] = ACTIONS(7296), + [anon_sym_mutable] = ACTIONS(7296), + [anon_sym_constinit] = ACTIONS(7296), + [anon_sym_consteval] = ACTIONS(7296), + [anon_sym_alignas] = ACTIONS(7296), + [anon_sym__Alignas] = ACTIONS(7296), + [anon_sym_QMARK] = ACTIONS(7298), + [anon_sym_LT_EQ_GT] = ACTIONS(7298), + [anon_sym_or] = ACTIONS(7296), + [anon_sym_and] = ACTIONS(7296), + [anon_sym_bitor] = ACTIONS(7296), + [anon_sym_xor] = ACTIONS(7296), + [anon_sym_bitand] = ACTIONS(7296), + [anon_sym_not_eq] = ACTIONS(7296), + [anon_sym_DASH_DASH] = ACTIONS(7298), + [anon_sym_PLUS_PLUS] = ACTIONS(7298), + [anon_sym_DOT] = ACTIONS(7296), + [anon_sym_DOT_STAR] = ACTIONS(7298), + [anon_sym_DASH_GT] = ACTIONS(7298), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7296), + [anon_sym_final] = ACTIONS(7296), + [anon_sym_override] = ACTIONS(7296), + [anon_sym_template] = ACTIONS(7296), + [anon_sym_requires] = ACTIONS(7296), + [anon_sym_LBRACK_COLON] = ACTIONS(7298), + [anon_sym_COLON_RBRACK] = ACTIONS(7298), }, [STATE(2667)] = { - [sym_attribute_specifier] = STATE(3127), - [sym_enumerator_list] = STATE(2825), - [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(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(8472), - [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2675), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [aux_sym_preproc_if_token2] = ACTIONS(7255), + [aux_sym_preproc_else_token1] = ACTIONS(7255), + [aux_sym_preproc_elif_token1] = ACTIONS(7253), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7255), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7255), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7255), + [anon_sym_GT_GT] = ACTIONS(7255), + [anon_sym_SEMI] = ACTIONS(7255), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(7255), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_RBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(8520), + [anon_sym_unsigned] = ACTIONS(8520), + [anon_sym_long] = ACTIONS(8520), + [anon_sym_short] = ACTIONS(8520), + [anon_sym_LBRACK] = ACTIONS(7253), + [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(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7253), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_template] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_LBRACK_COLON] = ACTIONS(7255), + [anon_sym_COLON_RBRACK] = ACTIONS(7255), }, [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), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym_ref_qualifier] = STATE(2764), + [sym__function_exception_specification] = STATE(3334), + [sym__function_attributes_end] = STATE(4806), + [sym__function_postfix] = STATE(5368), + [sym_trailing_return_type] = STATE(4919), + [sym_noexcept] = STATE(3334), + [sym_throw_specifier] = STATE(3334), + [sym_requires_clause] = STATE(5368), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(8522), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(8525), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8528), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6882), + [anon_sym_requires] = ACTIONS(6884), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2701), + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(7265), + [aux_sym_preproc_if_token2] = ACTIONS(7265), + [aux_sym_preproc_else_token1] = ACTIONS(7265), + [aux_sym_preproc_elif_token1] = ACTIONS(7263), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7265), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7265), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7265), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7265), + [anon_sym_GT_GT] = ACTIONS(7265), + [anon_sym_SEMI] = ACTIONS(7265), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON] = ACTIONS(7263), + [anon_sym_COLON_COLON] = ACTIONS(7265), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_RBRACE] = ACTIONS(7265), + [anon_sym_signed] = ACTIONS(8531), + [anon_sym_unsigned] = ACTIONS(8531), + [anon_sym_long] = ACTIONS(8531), + [anon_sym_short] = ACTIONS(8531), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7263), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7263), + [anon_sym_not_eq] = ACTIONS(7263), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7265), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7263), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_template] = ACTIONS(7263), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_LBRACK_COLON] = ACTIONS(7265), + [anon_sym_COLON_RBRACK] = ACTIONS(7265), }, [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), + [sym_type_qualifier] = STATE(2670), + [sym_alignas_qualifier] = STATE(2955), + [aux_sym__type_definition_type_repeat1] = STATE(2670), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8533), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7049), + [anon_sym_RBRACK] = ACTIONS(7049), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8533), + [anon_sym_constexpr] = ACTIONS(8533), + [anon_sym_volatile] = ACTIONS(8533), + [anon_sym_restrict] = ACTIONS(8533), + [anon_sym___restrict__] = ACTIONS(8533), + [anon_sym__Atomic] = ACTIONS(8533), + [anon_sym__Noreturn] = ACTIONS(8533), + [anon_sym_noreturn] = ACTIONS(8533), + [anon_sym__Nonnull] = ACTIONS(8533), + [anon_sym_mutable] = ACTIONS(8533), + [anon_sym_constinit] = ACTIONS(8533), + [anon_sym_consteval] = ACTIONS(8533), + [anon_sym_alignas] = ACTIONS(8536), + [anon_sym__Alignas] = ACTIONS(8536), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), }, [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), - [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2706), + [sym_identifier] = ACTIONS(7269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7271), + [anon_sym_COMMA] = ACTIONS(7271), + [anon_sym_RPAREN] = ACTIONS(7271), + [aux_sym_preproc_if_token2] = ACTIONS(7271), + [aux_sym_preproc_else_token1] = ACTIONS(7271), + [aux_sym_preproc_elif_token1] = ACTIONS(7269), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7271), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7271), + [anon_sym_LPAREN2] = ACTIONS(7271), + [anon_sym_DASH] = ACTIONS(7269), + [anon_sym_PLUS] = ACTIONS(7269), + [anon_sym_STAR] = ACTIONS(7271), + [anon_sym_SLASH] = ACTIONS(7269), + [anon_sym_PERCENT] = ACTIONS(7271), + [anon_sym_PIPE_PIPE] = ACTIONS(7271), + [anon_sym_AMP_AMP] = ACTIONS(7271), + [anon_sym_PIPE] = ACTIONS(7269), + [anon_sym_CARET] = ACTIONS(7271), + [anon_sym_AMP] = ACTIONS(7269), + [anon_sym_EQ_EQ] = ACTIONS(7271), + [anon_sym_BANG_EQ] = ACTIONS(7271), + [anon_sym_GT] = ACTIONS(7269), + [anon_sym_GT_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7269), + [anon_sym_LT] = ACTIONS(7269), + [anon_sym_LT_LT] = ACTIONS(7271), + [anon_sym_GT_GT] = ACTIONS(7271), + [anon_sym_SEMI] = ACTIONS(7271), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym___attribute__] = ACTIONS(7269), + [anon_sym___attribute] = ACTIONS(7269), + [anon_sym_COLON] = ACTIONS(7269), + [anon_sym_COLON_COLON] = ACTIONS(7271), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7271), + [anon_sym_LBRACE] = ACTIONS(7271), + [anon_sym_RBRACE] = ACTIONS(7271), + [anon_sym_signed] = ACTIONS(8539), + [anon_sym_unsigned] = ACTIONS(8539), + [anon_sym_long] = ACTIONS(8539), + [anon_sym_short] = ACTIONS(8539), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_const] = ACTIONS(7269), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7271), + [anon_sym_LT_EQ_GT] = ACTIONS(7271), + [anon_sym_or] = ACTIONS(7269), + [anon_sym_and] = ACTIONS(7269), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7269), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7271), + [anon_sym_PLUS_PLUS] = ACTIONS(7271), + [anon_sym_DOT] = ACTIONS(7269), + [anon_sym_DOT_STAR] = ACTIONS(7271), + [anon_sym_DASH_GT] = ACTIONS(7271), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7269), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_template] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_LBRACK_COLON] = ACTIONS(7271), + [anon_sym_COLON_RBRACK] = ACTIONS(7271), }, [STATE(2672)] = { - [sym_attribute_specifier] = STATE(3005), - [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(8152), - [anon_sym___attribute] = ACTIONS(8154), - [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_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(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(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7442), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7442), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7447), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7442), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_and_eq] = ACTIONS(7442), + [anon_sym_or_eq] = ACTIONS(7442), + [anon_sym_xor_eq] = ACTIONS(7442), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_GT2] = ACTIONS(7447), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11323), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_optional_parameter_declaration] = STATE(11323), + [sym_variadic_parameter_declaration] = STATE(11323), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym_RPAREN] = ACTIONS(2328), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [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(5938), + [anon_sym_COLON_COLON] = ACTIONS(8222), [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -370181,10220 +378449,11880 @@ 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(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [sym_primitive_type] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), [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(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, - [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), + [STATE(2674)] = { + [sym_type_qualifier] = STATE(2662), + [sym_alignas_qualifier] = STATE(2902), + [aux_sym__type_definition_type_repeat1] = STATE(2662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7344), + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_RPAREN] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7344), + [anon_sym_DASH] = ACTIONS(7342), + [anon_sym_PLUS] = ACTIONS(7342), + [anon_sym_STAR] = ACTIONS(7342), + [anon_sym_SLASH] = ACTIONS(7342), + [anon_sym_PERCENT] = ACTIONS(7342), + [anon_sym_PIPE_PIPE] = ACTIONS(7344), + [anon_sym_AMP_AMP] = ACTIONS(7344), + [anon_sym_PIPE] = ACTIONS(7342), + [anon_sym_CARET] = ACTIONS(7342), + [anon_sym_AMP] = ACTIONS(7342), + [anon_sym_EQ_EQ] = ACTIONS(7344), + [anon_sym_BANG_EQ] = ACTIONS(7344), + [anon_sym_GT] = ACTIONS(7342), + [anon_sym_GT_EQ] = ACTIONS(7344), + [anon_sym_LT_EQ] = ACTIONS(7342), + [anon_sym_LT] = ACTIONS(7342), + [anon_sym_LT_LT] = ACTIONS(7342), + [anon_sym_GT_GT] = ACTIONS(7342), + [anon_sym___extension__] = ACTIONS(7075), + [anon_sym___attribute__] = ACTIONS(7344), + [anon_sym___attribute] = ACTIONS(7342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7344), + [anon_sym_LBRACK] = ACTIONS(7342), + [anon_sym_EQ] = ACTIONS(7342), + [anon_sym_const] = ACTIONS(7083), + [anon_sym_constexpr] = ACTIONS(7075), + [anon_sym_volatile] = ACTIONS(7075), + [anon_sym_restrict] = ACTIONS(7075), + [anon_sym___restrict__] = ACTIONS(7075), + [anon_sym__Atomic] = ACTIONS(7075), + [anon_sym__Noreturn] = ACTIONS(7075), + [anon_sym_noreturn] = ACTIONS(7075), + [anon_sym__Nonnull] = ACTIONS(7075), + [anon_sym_mutable] = ACTIONS(7075), + [anon_sym_constinit] = ACTIONS(7075), + [anon_sym_consteval] = ACTIONS(7075), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7344), + [anon_sym_STAR_EQ] = ACTIONS(7344), + [anon_sym_SLASH_EQ] = ACTIONS(7344), + [anon_sym_PERCENT_EQ] = ACTIONS(7344), + [anon_sym_PLUS_EQ] = ACTIONS(7344), + [anon_sym_DASH_EQ] = ACTIONS(7344), + [anon_sym_LT_LT_EQ] = ACTIONS(7344), + [anon_sym_GT_GT_EQ] = ACTIONS(7344), + [anon_sym_AMP_EQ] = ACTIONS(7344), + [anon_sym_CARET_EQ] = ACTIONS(7344), + [anon_sym_PIPE_EQ] = ACTIONS(7344), + [anon_sym_LT_EQ_GT] = ACTIONS(7344), + [anon_sym_or] = ACTIONS(7344), + [anon_sym_and] = ACTIONS(7344), + [anon_sym_bitor] = ACTIONS(7344), + [anon_sym_xor] = ACTIONS(7344), + [anon_sym_bitand] = ACTIONS(7344), + [anon_sym_not_eq] = ACTIONS(7344), + [anon_sym_DASH_DASH] = ACTIONS(7344), + [anon_sym_PLUS_PLUS] = ACTIONS(7344), + [anon_sym_asm] = ACTIONS(7344), + [anon_sym___asm__] = ACTIONS(7344), + [anon_sym___asm] = ACTIONS(7342), + [anon_sym_DOT] = ACTIONS(7342), + [anon_sym_DOT_STAR] = ACTIONS(7344), + [anon_sym_DASH_GT] = ACTIONS(7342), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7344), + [anon_sym_override] = ACTIONS(7344), + [anon_sym_noexcept] = ACTIONS(7344), + [anon_sym_throw] = ACTIONS(7344), + [anon_sym_requires] = ACTIONS(7344), + [anon_sym_DASH_GT_STAR] = ACTIONS(7344), + }, + [STATE(2675)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2675), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [aux_sym_preproc_if_token2] = ACTIONS(7175), + [aux_sym_preproc_else_token1] = ACTIONS(7175), + [aux_sym_preproc_elif_token1] = ACTIONS(7173), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7175), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7175), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7175), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7175), + [anon_sym_GT_GT] = ACTIONS(7175), + [anon_sym_SEMI] = ACTIONS(7175), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_RBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8541), + [anon_sym_unsigned] = ACTIONS(8541), + [anon_sym_long] = ACTIONS(8541), + [anon_sym_short] = ACTIONS(8541), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), + [anon_sym_COLON_RBRACK] = ACTIONS(7175), + }, + [STATE(2676)] = { + [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___attribute__] = ACTIONS(7551), + [anon_sym___attribute] = ACTIONS(7549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7551), + [anon_sym_LBRACK] = ACTIONS(7549), + [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_asm] = ACTIONS(7551), + [anon_sym___asm__] = ACTIONS(7551), + [anon_sym___asm] = ACTIONS(7549), + [anon_sym_DOT] = ACTIONS(7549), + [anon_sym_DOT_STAR] = ACTIONS(7551), + [anon_sym_DASH_GT] = ACTIONS(7549), [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_final] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7551), + [anon_sym_noexcept] = ACTIONS(7551), + [anon_sym_throw] = ACTIONS(7551), + [anon_sym_requires] = ACTIONS(7551), + [anon_sym_DASH_GT_STAR] = ACTIONS(7551), }, - [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), + [STATE(2677)] = { + [sym_attribute_specifier] = STATE(2896), + [sym_identifier] = ACTIONS(7688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7690), + [anon_sym_COMMA] = ACTIONS(7690), + [anon_sym_RPAREN] = ACTIONS(7690), + [anon_sym_LPAREN2] = ACTIONS(7690), + [anon_sym_DASH] = ACTIONS(7688), + [anon_sym_PLUS] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7688), + [anon_sym_SLASH] = ACTIONS(7688), + [anon_sym_PERCENT] = ACTIONS(7688), + [anon_sym_PIPE_PIPE] = ACTIONS(7690), + [anon_sym_AMP_AMP] = ACTIONS(7690), + [anon_sym_PIPE] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7688), + [anon_sym_AMP] = ACTIONS(7688), + [anon_sym_EQ_EQ] = ACTIONS(7690), + [anon_sym_BANG_EQ] = ACTIONS(7690), + [anon_sym_GT] = ACTIONS(7688), + [anon_sym_GT_EQ] = ACTIONS(7690), + [anon_sym_LT_EQ] = ACTIONS(7688), + [anon_sym_LT] = ACTIONS(7688), + [anon_sym_LT_LT] = ACTIONS(7688), + [anon_sym_GT_GT] = ACTIONS(7688), + [anon_sym___extension__] = ACTIONS(7688), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7690), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym_EQ] = ACTIONS(7688), + [anon_sym_const] = ACTIONS(7688), + [anon_sym_constexpr] = ACTIONS(7688), + [anon_sym_volatile] = ACTIONS(7688), + [anon_sym_restrict] = ACTIONS(7688), + [anon_sym___restrict__] = ACTIONS(7688), + [anon_sym__Atomic] = ACTIONS(7688), + [anon_sym__Noreturn] = ACTIONS(7688), + [anon_sym_noreturn] = ACTIONS(7688), + [anon_sym__Nonnull] = ACTIONS(7688), + [anon_sym_mutable] = ACTIONS(7688), + [anon_sym_constinit] = ACTIONS(7688), + [anon_sym_consteval] = ACTIONS(7688), + [anon_sym_alignas] = ACTIONS(7688), + [anon_sym__Alignas] = ACTIONS(7688), + [anon_sym_QMARK] = ACTIONS(7690), + [anon_sym_STAR_EQ] = ACTIONS(7690), + [anon_sym_SLASH_EQ] = ACTIONS(7690), + [anon_sym_PERCENT_EQ] = ACTIONS(7690), + [anon_sym_PLUS_EQ] = ACTIONS(7690), + [anon_sym_DASH_EQ] = ACTIONS(7690), + [anon_sym_LT_LT_EQ] = ACTIONS(7690), + [anon_sym_GT_GT_EQ] = ACTIONS(7690), + [anon_sym_AMP_EQ] = ACTIONS(7690), + [anon_sym_CARET_EQ] = ACTIONS(7690), + [anon_sym_PIPE_EQ] = ACTIONS(7690), + [anon_sym_and_eq] = ACTIONS(7688), + [anon_sym_or_eq] = ACTIONS(7688), + [anon_sym_xor_eq] = ACTIONS(7688), + [anon_sym_LT_EQ_GT] = ACTIONS(7690), + [anon_sym_or] = ACTIONS(7688), + [anon_sym_and] = ACTIONS(7688), + [anon_sym_bitor] = ACTIONS(7688), + [anon_sym_xor] = ACTIONS(7688), + [anon_sym_bitand] = ACTIONS(7688), + [anon_sym_not_eq] = ACTIONS(7688), + [anon_sym_DASH_DASH] = ACTIONS(7690), + [anon_sym_PLUS_PLUS] = ACTIONS(7690), + [anon_sym_DOT] = ACTIONS(7688), + [anon_sym_DOT_STAR] = ACTIONS(7690), + [anon_sym_DASH_GT] = ACTIONS(7688), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7688), + [anon_sym_final] = ACTIONS(7688), + [anon_sym_override] = ACTIONS(7688), + [anon_sym_template] = ACTIONS(7688), + [anon_sym_requires] = ACTIONS(7688), + [anon_sym_DASH_GT_STAR] = ACTIONS(7690), + [anon_sym_LBRACK_COLON] = ACTIONS(7690), }, - [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), - [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_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_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), + [STATE(2678)] = { + [sym_identifier] = ACTIONS(8544), + [anon_sym_LPAREN2] = ACTIONS(8546), + [anon_sym_BANG] = ACTIONS(8546), + [anon_sym_TILDE] = ACTIONS(8546), + [anon_sym_DASH] = ACTIONS(8544), + [anon_sym_PLUS] = ACTIONS(8544), + [anon_sym_STAR] = ACTIONS(8546), + [anon_sym_AMP] = ACTIONS(8546), + [anon_sym_SEMI] = ACTIONS(8546), + [anon_sym___extension__] = ACTIONS(8544), + [anon_sym_COLON_COLON] = ACTIONS(8546), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8546), + [anon_sym_LBRACE] = ACTIONS(8546), + [anon_sym_LBRACK] = ACTIONS(8544), + [sym_primitive_type] = ACTIONS(8544), + [anon_sym_if] = ACTIONS(8544), + [anon_sym_switch] = ACTIONS(8544), + [anon_sym_case] = ACTIONS(8544), + [anon_sym_default] = ACTIONS(8544), + [anon_sym_while] = ACTIONS(8544), + [anon_sym_do] = ACTIONS(8544), + [anon_sym_for] = ACTIONS(8544), + [anon_sym_return] = ACTIONS(8544), + [anon_sym_break] = ACTIONS(8544), + [anon_sym_continue] = ACTIONS(8544), + [anon_sym_goto] = ACTIONS(8544), + [anon_sym___try] = ACTIONS(8544), + [anon_sym___leave] = ACTIONS(8544), + [anon_sym_not] = ACTIONS(8544), + [anon_sym_compl] = ACTIONS(8544), + [anon_sym_DASH_DASH] = ACTIONS(8546), + [anon_sym_PLUS_PLUS] = ACTIONS(8546), + [anon_sym_sizeof] = ACTIONS(8544), + [anon_sym___alignof__] = ACTIONS(8544), + [anon_sym___alignof] = ACTIONS(8544), + [anon_sym__alignof] = ACTIONS(8544), + [anon_sym_alignof] = ACTIONS(8544), + [anon_sym__Alignof] = ACTIONS(8544), + [anon_sym_offsetof] = ACTIONS(8544), + [anon_sym__Generic] = ACTIONS(8544), + [anon_sym_typename] = ACTIONS(8544), + [anon_sym_asm] = ACTIONS(8544), + [anon_sym___asm__] = ACTIONS(8544), + [anon_sym___asm] = ACTIONS(8544), + [sym_number_literal] = ACTIONS(8546), + [anon_sym_L_SQUOTE] = ACTIONS(8546), + [anon_sym_u_SQUOTE] = ACTIONS(8546), + [anon_sym_U_SQUOTE] = ACTIONS(8546), + [anon_sym_u8_SQUOTE] = ACTIONS(8546), + [anon_sym_SQUOTE] = ACTIONS(8546), + [anon_sym_L_DQUOTE] = ACTIONS(8546), + [anon_sym_u_DQUOTE] = ACTIONS(8546), + [anon_sym_U_DQUOTE] = ACTIONS(8546), + [anon_sym_u8_DQUOTE] = ACTIONS(8546), + [anon_sym_DQUOTE] = ACTIONS(8546), + [sym_true] = ACTIONS(8544), + [sym_false] = ACTIONS(8544), + [anon_sym_NULL] = ACTIONS(8544), + [anon_sym_nullptr] = ACTIONS(8544), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(8544), + [anon_sym_template] = ACTIONS(8544), + [anon_sym_try] = ACTIONS(8544), + [anon_sym_delete] = ACTIONS(8544), + [anon_sym_throw] = ACTIONS(8544), + [anon_sym_co_return] = ACTIONS(8544), + [anon_sym_co_yield] = ACTIONS(8544), + [anon_sym_R_DQUOTE] = ACTIONS(8546), + [anon_sym_LR_DQUOTE] = ACTIONS(8546), + [anon_sym_uR_DQUOTE] = ACTIONS(8546), + [anon_sym_UR_DQUOTE] = ACTIONS(8546), + [anon_sym_u8R_DQUOTE] = ACTIONS(8546), + [anon_sym_co_await] = ACTIONS(8544), + [anon_sym_new] = ACTIONS(8544), + [anon_sym_requires] = ACTIONS(8544), + [anon_sym_CARET_CARET] = ACTIONS(8546), + [anon_sym_LBRACK_COLON] = ACTIONS(8546), + [sym_this] = ACTIONS(8544), }, - [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(2679)] = { + [sym_attribute_specifier] = STATE(2957), + [sym_identifier] = ACTIONS(7634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7636), + [anon_sym_COMMA] = ACTIONS(7636), + [anon_sym_RPAREN] = ACTIONS(7636), + [anon_sym_LPAREN2] = ACTIONS(7636), + [anon_sym_DASH] = ACTIONS(7634), + [anon_sym_PLUS] = ACTIONS(7634), + [anon_sym_STAR] = ACTIONS(7634), + [anon_sym_SLASH] = ACTIONS(7634), + [anon_sym_PERCENT] = ACTIONS(7634), + [anon_sym_PIPE_PIPE] = ACTIONS(7636), + [anon_sym_AMP_AMP] = ACTIONS(7636), + [anon_sym_PIPE] = ACTIONS(7634), + [anon_sym_CARET] = ACTIONS(7634), + [anon_sym_AMP] = ACTIONS(7634), + [anon_sym_EQ_EQ] = ACTIONS(7636), + [anon_sym_BANG_EQ] = ACTIONS(7636), + [anon_sym_GT] = ACTIONS(7634), + [anon_sym_GT_EQ] = ACTIONS(7636), + [anon_sym_LT_EQ] = ACTIONS(7634), + [anon_sym_LT] = ACTIONS(7634), + [anon_sym_LT_LT] = ACTIONS(7634), + [anon_sym_GT_GT] = ACTIONS(7634), + [anon_sym___extension__] = ACTIONS(7634), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7636), + [anon_sym_LBRACK] = ACTIONS(7634), + [anon_sym_EQ] = ACTIONS(7634), + [anon_sym_const] = ACTIONS(7634), + [anon_sym_constexpr] = ACTIONS(7634), + [anon_sym_volatile] = ACTIONS(7634), + [anon_sym_restrict] = ACTIONS(7634), + [anon_sym___restrict__] = ACTIONS(7634), + [anon_sym__Atomic] = ACTIONS(7634), + [anon_sym__Noreturn] = ACTIONS(7634), + [anon_sym_noreturn] = ACTIONS(7634), + [anon_sym__Nonnull] = ACTIONS(7634), + [anon_sym_mutable] = ACTIONS(7634), + [anon_sym_constinit] = ACTIONS(7634), + [anon_sym_consteval] = ACTIONS(7634), + [anon_sym_alignas] = ACTIONS(7634), + [anon_sym__Alignas] = ACTIONS(7634), + [anon_sym_QMARK] = ACTIONS(7636), + [anon_sym_STAR_EQ] = ACTIONS(7636), + [anon_sym_SLASH_EQ] = ACTIONS(7636), + [anon_sym_PERCENT_EQ] = ACTIONS(7636), + [anon_sym_PLUS_EQ] = ACTIONS(7636), + [anon_sym_DASH_EQ] = ACTIONS(7636), + [anon_sym_LT_LT_EQ] = ACTIONS(7636), + [anon_sym_GT_GT_EQ] = ACTIONS(7636), + [anon_sym_AMP_EQ] = ACTIONS(7636), + [anon_sym_CARET_EQ] = ACTIONS(7636), + [anon_sym_PIPE_EQ] = ACTIONS(7636), + [anon_sym_and_eq] = ACTIONS(7634), + [anon_sym_or_eq] = ACTIONS(7634), + [anon_sym_xor_eq] = ACTIONS(7634), + [anon_sym_LT_EQ_GT] = ACTIONS(7636), + [anon_sym_or] = ACTIONS(7634), + [anon_sym_and] = ACTIONS(7634), + [anon_sym_bitor] = ACTIONS(7634), + [anon_sym_xor] = ACTIONS(7634), + [anon_sym_bitand] = ACTIONS(7634), + [anon_sym_not_eq] = ACTIONS(7634), + [anon_sym_DASH_DASH] = ACTIONS(7636), + [anon_sym_PLUS_PLUS] = ACTIONS(7636), + [anon_sym_DOT] = ACTIONS(7634), + [anon_sym_DOT_STAR] = ACTIONS(7636), + [anon_sym_DASH_GT] = ACTIONS(7634), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7634), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_template] = ACTIONS(7634), + [anon_sym_requires] = ACTIONS(7634), + [anon_sym_DASH_GT_STAR] = ACTIONS(7636), + [anon_sym_LBRACK_COLON] = ACTIONS(7636), }, - [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(2680)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3108), + [anon_sym___attribute__] = ACTIONS(3108), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_constexpr] = ACTIONS(3108), + [anon_sym_volatile] = ACTIONS(3108), + [anon_sym_restrict] = ACTIONS(3108), + [anon_sym___restrict__] = ACTIONS(3108), + [anon_sym__Atomic] = ACTIONS(3108), + [anon_sym__Noreturn] = ACTIONS(3108), + [anon_sym_noreturn] = ACTIONS(3108), + [anon_sym__Nonnull] = ACTIONS(3108), + [anon_sym_mutable] = ACTIONS(3108), + [anon_sym_constinit] = ACTIONS(3108), + [anon_sym_consteval] = ACTIONS(3108), + [anon_sym_alignas] = ACTIONS(3108), + [anon_sym__Alignas] = ACTIONS(3108), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3108), + [anon_sym_or_eq] = ACTIONS(3108), + [anon_sym_xor_eq] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [anon_sym_or] = ACTIONS(3118), + [anon_sym_and] = ACTIONS(3118), + [anon_sym_bitor] = ACTIONS(3108), + [anon_sym_xor] = ACTIONS(3118), + [anon_sym_bitand] = ACTIONS(3108), + [anon_sym_not_eq] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_asm] = ACTIONS(3108), + [anon_sym___asm__] = ACTIONS(3108), + [anon_sym___asm] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3108), + [anon_sym_override] = ACTIONS(3108), + [anon_sym_noexcept] = ACTIONS(3108), + [anon_sym_throw] = ACTIONS(3108), + [anon_sym_requires] = ACTIONS(3108), + [anon_sym_DASH_GT_STAR] = ACTIONS(3108), }, - [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), + [STATE(2681)] = { + [sym_type_qualifier] = STATE(2681), + [sym_alignas_qualifier] = STATE(2917), + [aux_sym__type_definition_type_repeat1] = STATE(2681), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8548), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8548), + [anon_sym_constexpr] = ACTIONS(8548), + [anon_sym_volatile] = ACTIONS(8548), + [anon_sym_restrict] = ACTIONS(8548), + [anon_sym___restrict__] = ACTIONS(8548), + [anon_sym__Atomic] = ACTIONS(8548), + [anon_sym__Noreturn] = ACTIONS(8548), + [anon_sym_noreturn] = ACTIONS(8548), + [anon_sym__Nonnull] = ACTIONS(8548), + [anon_sym_mutable] = ACTIONS(8548), + [anon_sym_constinit] = ACTIONS(8548), + [anon_sym_consteval] = ACTIONS(8548), + [anon_sym_alignas] = ACTIONS(8551), + [anon_sym__Alignas] = ACTIONS(8551), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7047), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_DASH_GT_STAR] = ACTIONS(7049), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), + }, + [STATE(2682)] = { + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7292), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_and_eq] = ACTIONS(7290), + [anon_sym_or_eq] = ACTIONS(7290), + [anon_sym_xor_eq] = ACTIONS(7290), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_DASH_GT_STAR] = ACTIONS(7292), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), + }, + [STATE(2683)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7464), + [anon_sym_COMMA] = ACTIONS(7464), + [anon_sym_RPAREN] = ACTIONS(7464), + [anon_sym_LPAREN2] = ACTIONS(7464), + [anon_sym_DASH] = ACTIONS(7462), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_STAR] = ACTIONS(7462), + [anon_sym_SLASH] = ACTIONS(7462), + [anon_sym_PERCENT] = ACTIONS(7462), + [anon_sym_PIPE_PIPE] = ACTIONS(7464), + [anon_sym_AMP_AMP] = ACTIONS(7464), + [anon_sym_PIPE] = ACTIONS(7462), + [anon_sym_CARET] = ACTIONS(7462), + [anon_sym_AMP] = ACTIONS(7462), + [anon_sym_EQ_EQ] = ACTIONS(7464), + [anon_sym_BANG_EQ] = ACTIONS(7464), + [anon_sym_GT] = ACTIONS(7462), + [anon_sym_GT_EQ] = ACTIONS(7464), + [anon_sym_LT_EQ] = ACTIONS(7462), + [anon_sym_LT] = ACTIONS(7462), + [anon_sym_LT_LT] = ACTIONS(7462), + [anon_sym_GT_GT] = ACTIONS(7462), + [anon_sym___extension__] = ACTIONS(7464), + [anon_sym___attribute__] = ACTIONS(7464), + [anon_sym___attribute] = ACTIONS(7462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(7462), + [anon_sym_EQ] = ACTIONS(7462), + [anon_sym_const] = ACTIONS(7462), + [anon_sym_constexpr] = ACTIONS(7464), + [anon_sym_volatile] = ACTIONS(7464), + [anon_sym_restrict] = ACTIONS(7464), + [anon_sym___restrict__] = ACTIONS(7464), + [anon_sym__Atomic] = ACTIONS(7464), + [anon_sym__Noreturn] = ACTIONS(7464), + [anon_sym_noreturn] = ACTIONS(7464), + [anon_sym__Nonnull] = ACTIONS(7464), + [anon_sym_mutable] = ACTIONS(7464), + [anon_sym_constinit] = ACTIONS(7464), + [anon_sym_consteval] = ACTIONS(7464), + [anon_sym_alignas] = ACTIONS(7464), + [anon_sym__Alignas] = ACTIONS(7464), + [anon_sym_QMARK] = ACTIONS(7464), + [anon_sym_STAR_EQ] = ACTIONS(7464), + [anon_sym_SLASH_EQ] = ACTIONS(7464), + [anon_sym_PERCENT_EQ] = ACTIONS(7464), + [anon_sym_PLUS_EQ] = ACTIONS(7464), + [anon_sym_DASH_EQ] = ACTIONS(7464), + [anon_sym_LT_LT_EQ] = ACTIONS(7464), + [anon_sym_GT_GT_EQ] = ACTIONS(7464), + [anon_sym_AMP_EQ] = ACTIONS(7464), + [anon_sym_CARET_EQ] = ACTIONS(7464), + [anon_sym_PIPE_EQ] = ACTIONS(7464), + [anon_sym_and_eq] = ACTIONS(7464), + [anon_sym_or_eq] = ACTIONS(7464), + [anon_sym_xor_eq] = ACTIONS(7464), + [anon_sym_LT_EQ_GT] = ACTIONS(7464), + [anon_sym_or] = ACTIONS(7462), + [anon_sym_and] = ACTIONS(7462), + [anon_sym_bitor] = ACTIONS(7464), + [anon_sym_xor] = ACTIONS(7462), + [anon_sym_bitand] = ACTIONS(7464), + [anon_sym_not_eq] = ACTIONS(7464), + [anon_sym_DASH_DASH] = ACTIONS(7464), + [anon_sym_PLUS_PLUS] = ACTIONS(7464), + [anon_sym_asm] = ACTIONS(7464), + [anon_sym___asm__] = ACTIONS(7464), + [anon_sym___asm] = ACTIONS(7462), + [anon_sym_DOT] = ACTIONS(7462), + [anon_sym_DOT_STAR] = ACTIONS(7464), + [anon_sym_DASH_GT] = ACTIONS(7462), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7464), + [anon_sym_override] = ACTIONS(7464), + [anon_sym_noexcept] = ACTIONS(7464), + [anon_sym_throw] = ACTIONS(7464), + [anon_sym_requires] = ACTIONS(7464), + [anon_sym_DASH_GT_STAR] = ACTIONS(7464), + }, + [STATE(2684)] = { + [sym_type_qualifier] = STATE(2662), + [sym_alignas_qualifier] = STATE(2902), + [aux_sym__type_definition_type_repeat1] = STATE(2662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7057), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7057), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7057), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(7075), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_EQ] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7083), + [anon_sym_constexpr] = ACTIONS(7075), + [anon_sym_volatile] = ACTIONS(7075), + [anon_sym_restrict] = ACTIONS(7075), + [anon_sym___restrict__] = ACTIONS(7075), + [anon_sym__Atomic] = ACTIONS(7075), + [anon_sym__Noreturn] = ACTIONS(7075), + [anon_sym_noreturn] = ACTIONS(7075), + [anon_sym__Nonnull] = ACTIONS(7075), + [anon_sym_mutable] = ACTIONS(7075), + [anon_sym_constinit] = ACTIONS(7075), + [anon_sym_consteval] = ACTIONS(7075), + [anon_sym_alignas] = ACTIONS(7085), + [anon_sym__Alignas] = ACTIONS(7085), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_STAR_EQ] = ACTIONS(7059), + [anon_sym_SLASH_EQ] = ACTIONS(7059), + [anon_sym_PERCENT_EQ] = ACTIONS(7059), + [anon_sym_PLUS_EQ] = ACTIONS(7059), + [anon_sym_DASH_EQ] = ACTIONS(7059), + [anon_sym_LT_LT_EQ] = ACTIONS(7059), + [anon_sym_GT_GT_EQ] = ACTIONS(7059), + [anon_sym_AMP_EQ] = ACTIONS(7059), + [anon_sym_CARET_EQ] = ACTIONS(7059), + [anon_sym_PIPE_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7059), + [anon_sym_and] = ACTIONS(7059), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7059), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7057), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + [anon_sym_DASH_GT_STAR] = ACTIONS(7059), + }, + [STATE(2685)] = { + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7442), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7447), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_RBRACK] = ACTIONS(7447), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7447), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_and_eq] = ACTIONS(7442), + [anon_sym_or_eq] = ACTIONS(7442), + [anon_sym_xor_eq] = ACTIONS(7442), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + }, + [STATE(2686)] = { + [sym_identifier] = ACTIONS(7668), + [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(7668), + [anon_sym___attribute__] = ACTIONS(7668), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_COLON] = ACTIONS(7668), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7668), + [anon_sym_RBRACK] = 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_decltype] = ACTIONS(7668), + [anon_sym_final] = ACTIONS(7668), + [anon_sym_override] = ACTIONS(7668), + [anon_sym_template] = ACTIONS(7668), + [anon_sym_requires] = ACTIONS(7668), + [anon_sym_LBRACK_COLON] = ACTIONS(7670), + }, + [STATE(2687)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2692), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [aux_sym_preproc_if_token2] = ACTIONS(7292), + [aux_sym_preproc_else_token1] = ACTIONS(7292), + [aux_sym_preproc_elif_token1] = ACTIONS(7290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7292), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7292), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7292), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7292), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_RBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(8554), + [anon_sym_unsigned] = ACTIONS(8554), + [anon_sym_long] = ACTIONS(8554), + [anon_sym_short] = ACTIONS(8554), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), + [anon_sym_COLON_RBRACK] = ACTIONS(7292), + }, + [STATE(2688)] = { + [sym_template_argument_list] = STATE(2784), + [sym_identifier] = ACTIONS(6785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [aux_sym_preproc_if_token2] = ACTIONS(6778), + [aux_sym_preproc_else_token1] = ACTIONS(6778), + [aux_sym_preproc_elif_token1] = ACTIONS(6785), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6778), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_PIPE_PIPE] = ACTIONS(6778), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(6785), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6778), + [anon_sym_BANG_EQ] = ACTIONS(6778), + [anon_sym_GT] = ACTIONS(6785), + [anon_sym_GT_EQ] = ACTIONS(6778), + [anon_sym_LT_EQ] = ACTIONS(6785), + [anon_sym_LT] = ACTIONS(8329), + [anon_sym_LT_LT] = ACTIONS(6785), + [anon_sym_GT_GT] = ACTIONS(6785), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6778), + [anon_sym_STAR_EQ] = ACTIONS(6778), + [anon_sym_SLASH_EQ] = ACTIONS(6778), + [anon_sym_PERCENT_EQ] = ACTIONS(6778), + [anon_sym_PLUS_EQ] = ACTIONS(6778), + [anon_sym_DASH_EQ] = ACTIONS(6778), + [anon_sym_LT_LT_EQ] = ACTIONS(6778), + [anon_sym_GT_GT_EQ] = ACTIONS(6778), + [anon_sym_AMP_EQ] = ACTIONS(6778), + [anon_sym_CARET_EQ] = ACTIONS(6778), + [anon_sym_PIPE_EQ] = ACTIONS(6778), + [anon_sym_and_eq] = ACTIONS(6785), + [anon_sym_or_eq] = ACTIONS(6785), + [anon_sym_xor_eq] = ACTIONS(6785), + [anon_sym_LT_EQ_GT] = ACTIONS(6778), + [anon_sym_or] = ACTIONS(6785), + [anon_sym_and] = ACTIONS(6785), + [anon_sym_bitor] = ACTIONS(6785), + [anon_sym_xor] = ACTIONS(6785), + [anon_sym_bitand] = ACTIONS(6785), + [anon_sym_not_eq] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(6778), + [anon_sym_PLUS_PLUS] = ACTIONS(6778), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_DOT_STAR] = ACTIONS(6778), + [anon_sym_DASH_GT] = ACTIONS(6778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(2689)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7547), + [anon_sym_COMMA] = ACTIONS(7547), + [anon_sym_RPAREN] = ACTIONS(7547), + [anon_sym_LPAREN2] = ACTIONS(7547), + [anon_sym_DASH] = ACTIONS(7545), + [anon_sym_PLUS] = ACTIONS(7545), + [anon_sym_STAR] = ACTIONS(7545), + [anon_sym_SLASH] = ACTIONS(7545), + [anon_sym_PERCENT] = ACTIONS(7545), + [anon_sym_PIPE_PIPE] = ACTIONS(7547), + [anon_sym_AMP_AMP] = ACTIONS(7547), + [anon_sym_PIPE] = ACTIONS(7545), + [anon_sym_CARET] = ACTIONS(7545), + [anon_sym_AMP] = ACTIONS(7545), + [anon_sym_EQ_EQ] = ACTIONS(7547), + [anon_sym_BANG_EQ] = ACTIONS(7547), + [anon_sym_GT] = ACTIONS(7545), + [anon_sym_GT_EQ] = ACTIONS(7547), + [anon_sym_LT_EQ] = ACTIONS(7545), + [anon_sym_LT] = ACTIONS(7545), + [anon_sym_LT_LT] = ACTIONS(7545), + [anon_sym_GT_GT] = ACTIONS(7545), + [anon_sym___extension__] = ACTIONS(7547), + [anon_sym___attribute__] = ACTIONS(7547), + [anon_sym___attribute] = ACTIONS(7545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7547), + [anon_sym_LBRACK] = ACTIONS(7545), + [anon_sym_EQ] = ACTIONS(7545), + [anon_sym_const] = ACTIONS(7545), + [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(7547), + [anon_sym_STAR_EQ] = ACTIONS(7547), + [anon_sym_SLASH_EQ] = ACTIONS(7547), + [anon_sym_PERCENT_EQ] = ACTIONS(7547), + [anon_sym_PLUS_EQ] = ACTIONS(7547), + [anon_sym_DASH_EQ] = ACTIONS(7547), + [anon_sym_LT_LT_EQ] = ACTIONS(7547), + [anon_sym_GT_GT_EQ] = ACTIONS(7547), + [anon_sym_AMP_EQ] = ACTIONS(7547), + [anon_sym_CARET_EQ] = ACTIONS(7547), + [anon_sym_PIPE_EQ] = ACTIONS(7547), + [anon_sym_and_eq] = ACTIONS(7547), + [anon_sym_or_eq] = ACTIONS(7547), + [anon_sym_xor_eq] = ACTIONS(7547), + [anon_sym_LT_EQ_GT] = ACTIONS(7547), + [anon_sym_or] = ACTIONS(7545), + [anon_sym_and] = ACTIONS(7545), + [anon_sym_bitor] = ACTIONS(7547), + [anon_sym_xor] = ACTIONS(7545), + [anon_sym_bitand] = ACTIONS(7547), + [anon_sym_not_eq] = ACTIONS(7547), + [anon_sym_DASH_DASH] = ACTIONS(7547), + [anon_sym_PLUS_PLUS] = ACTIONS(7547), + [anon_sym_asm] = ACTIONS(7547), + [anon_sym___asm__] = ACTIONS(7547), + [anon_sym___asm] = ACTIONS(7545), + [anon_sym_DOT] = ACTIONS(7545), + [anon_sym_DOT_STAR] = ACTIONS(7547), + [anon_sym_DASH_GT] = ACTIONS(7545), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7547), + [anon_sym_override] = ACTIONS(7547), + [anon_sym_noexcept] = ACTIONS(7547), + [anon_sym_throw] = ACTIONS(7547), + [anon_sym_requires] = ACTIONS(7547), + [anon_sym_DASH_GT_STAR] = ACTIONS(7547), + }, + [STATE(2690)] = { + [sym__abstract_declarator] = STATE(4980), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_parameter_list] = STATE(2081), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9554), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6594), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_SEMI] = ACTIONS(7862), + [anon_sym___attribute__] = ACTIONS(7864), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7862), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_and_eq] = ACTIONS(7864), + [anon_sym_or_eq] = ACTIONS(7864), + [anon_sym_xor_eq] = ACTIONS(7864), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7862), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(7864), + [anon_sym_override] = ACTIONS(7864), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(7864), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_template_argument_list] = STATE(2745), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6781), + [anon_sym_RPAREN] = ACTIONS(6781), + [anon_sym_LPAREN2] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6774), + [anon_sym_PLUS] = ACTIONS(6774), + [anon_sym_STAR] = ACTIONS(6774), + [anon_sym_SLASH] = ACTIONS(6774), + [anon_sym_PERCENT] = ACTIONS(6774), + [anon_sym_PIPE_PIPE] = ACTIONS(6781), + [anon_sym_AMP_AMP] = ACTIONS(6781), + [anon_sym_PIPE] = ACTIONS(6774), + [anon_sym_CARET] = ACTIONS(6774), + [anon_sym_AMP] = ACTIONS(6774), + [anon_sym_EQ_EQ] = ACTIONS(6781), + [anon_sym_BANG_EQ] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(6774), + [anon_sym_GT_EQ] = ACTIONS(6781), + [anon_sym_LT_EQ] = ACTIONS(6774), + [anon_sym_LT] = ACTIONS(8556), + [anon_sym_LT_LT] = ACTIONS(6774), + [anon_sym_GT_GT] = ACTIONS(6774), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6774), + [anon_sym_EQ] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_STAR_EQ] = ACTIONS(6781), + [anon_sym_SLASH_EQ] = ACTIONS(6781), + [anon_sym_PERCENT_EQ] = ACTIONS(6781), + [anon_sym_PLUS_EQ] = ACTIONS(6781), + [anon_sym_DASH_EQ] = ACTIONS(6781), + [anon_sym_LT_LT_EQ] = ACTIONS(6781), + [anon_sym_GT_GT_EQ] = ACTIONS(6781), + [anon_sym_AMP_EQ] = ACTIONS(6781), + [anon_sym_CARET_EQ] = ACTIONS(6781), + [anon_sym_PIPE_EQ] = ACTIONS(6781), + [anon_sym_LT_EQ_GT] = ACTIONS(6781), + [anon_sym_or] = ACTIONS(6774), + [anon_sym_and] = ACTIONS(6774), + [anon_sym_bitor] = ACTIONS(6774), + [anon_sym_xor] = ACTIONS(6774), + [anon_sym_bitand] = ACTIONS(6774), + [anon_sym_not_eq] = ACTIONS(6774), + [anon_sym_DASH_DASH] = ACTIONS(6781), + [anon_sym_PLUS_PLUS] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(6774), + [anon_sym_DOT_STAR] = ACTIONS(6781), + [anon_sym_DASH_GT] = ACTIONS(6774), [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_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_final] = ACTIONS(6774), + [anon_sym_override] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_requires] = ACTIONS(6774), + [anon_sym_DASH_GT_STAR] = ACTIONS(6781), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2675), + [sym_identifier] = ACTIONS(7304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7306), + [anon_sym_RPAREN] = ACTIONS(7306), + [aux_sym_preproc_if_token2] = ACTIONS(7306), + [aux_sym_preproc_else_token1] = ACTIONS(7306), + [aux_sym_preproc_elif_token1] = ACTIONS(7304), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7306), + [anon_sym_LPAREN2] = ACTIONS(7306), + [anon_sym_DASH] = ACTIONS(7304), + [anon_sym_PLUS] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7306), + [anon_sym_SLASH] = ACTIONS(7304), + [anon_sym_PERCENT] = ACTIONS(7306), + [anon_sym_PIPE_PIPE] = ACTIONS(7306), + [anon_sym_AMP_AMP] = ACTIONS(7306), + [anon_sym_PIPE] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(7306), + [anon_sym_AMP] = ACTIONS(7304), + [anon_sym_EQ_EQ] = ACTIONS(7306), + [anon_sym_BANG_EQ] = ACTIONS(7306), + [anon_sym_GT] = ACTIONS(7304), + [anon_sym_GT_EQ] = ACTIONS(7306), + [anon_sym_LT_EQ] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7304), + [anon_sym_LT_LT] = ACTIONS(7306), + [anon_sym_GT_GT] = ACTIONS(7306), + [anon_sym_SEMI] = ACTIONS(7306), + [anon_sym___extension__] = ACTIONS(7304), + [anon_sym___attribute__] = ACTIONS(7304), + [anon_sym___attribute] = ACTIONS(7304), + [anon_sym_COLON] = ACTIONS(7304), + [anon_sym_COLON_COLON] = ACTIONS(7306), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7306), + [anon_sym_LBRACE] = ACTIONS(7306), + [anon_sym_RBRACE] = ACTIONS(7306), + [anon_sym_signed] = ACTIONS(8520), + [anon_sym_unsigned] = ACTIONS(8520), + [anon_sym_long] = ACTIONS(8520), + [anon_sym_short] = ACTIONS(8520), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_const] = ACTIONS(7304), + [anon_sym_constexpr] = ACTIONS(7304), + [anon_sym_volatile] = ACTIONS(7304), + [anon_sym_restrict] = ACTIONS(7304), + [anon_sym___restrict__] = ACTIONS(7304), + [anon_sym__Atomic] = ACTIONS(7304), + [anon_sym__Noreturn] = ACTIONS(7304), + [anon_sym_noreturn] = ACTIONS(7304), + [anon_sym__Nonnull] = ACTIONS(7304), + [anon_sym_mutable] = ACTIONS(7304), + [anon_sym_constinit] = ACTIONS(7304), + [anon_sym_consteval] = ACTIONS(7304), + [anon_sym_alignas] = ACTIONS(7304), + [anon_sym__Alignas] = ACTIONS(7304), + [anon_sym_QMARK] = ACTIONS(7306), + [anon_sym_LT_EQ_GT] = ACTIONS(7306), + [anon_sym_or] = ACTIONS(7304), + [anon_sym_and] = ACTIONS(7304), + [anon_sym_bitor] = ACTIONS(7304), + [anon_sym_xor] = ACTIONS(7304), + [anon_sym_bitand] = ACTIONS(7304), + [anon_sym_not_eq] = ACTIONS(7304), + [anon_sym_DASH_DASH] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(7306), + [anon_sym_DOT] = ACTIONS(7304), + [anon_sym_DOT_STAR] = ACTIONS(7306), + [anon_sym_DASH_GT] = ACTIONS(7306), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7304), + [anon_sym_final] = ACTIONS(7304), + [anon_sym_override] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7304), + [anon_sym_requires] = ACTIONS(7304), + [anon_sym_LBRACK_COLON] = ACTIONS(7306), + [anon_sym_COLON_RBRACK] = ACTIONS(7306), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2692), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(8554), + [anon_sym_unsigned] = ACTIONS(8554), + [anon_sym_long] = ACTIONS(8554), + [anon_sym_short] = ACTIONS(8554), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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_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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2675), + [sym_identifier] = ACTIONS(7308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7310), + [anon_sym_RPAREN] = ACTIONS(7310), + [aux_sym_preproc_if_token2] = ACTIONS(7310), + [aux_sym_preproc_else_token1] = ACTIONS(7310), + [aux_sym_preproc_elif_token1] = ACTIONS(7308), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7310), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7310), + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_DASH] = ACTIONS(7308), + [anon_sym_PLUS] = ACTIONS(7308), + [anon_sym_STAR] = ACTIONS(7310), + [anon_sym_SLASH] = ACTIONS(7308), + [anon_sym_PERCENT] = ACTIONS(7310), + [anon_sym_PIPE_PIPE] = ACTIONS(7310), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_PIPE] = ACTIONS(7308), + [anon_sym_CARET] = ACTIONS(7310), + [anon_sym_AMP] = ACTIONS(7308), + [anon_sym_EQ_EQ] = ACTIONS(7310), + [anon_sym_BANG_EQ] = ACTIONS(7310), + [anon_sym_GT] = ACTIONS(7308), + [anon_sym_GT_EQ] = ACTIONS(7310), + [anon_sym_LT_EQ] = ACTIONS(7308), + [anon_sym_LT] = ACTIONS(7308), + [anon_sym_LT_LT] = ACTIONS(7310), + [anon_sym_GT_GT] = ACTIONS(7310), + [anon_sym_SEMI] = ACTIONS(7310), + [anon_sym___extension__] = ACTIONS(7308), + [anon_sym___attribute__] = ACTIONS(7308), + [anon_sym___attribute] = ACTIONS(7308), + [anon_sym_COLON] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7310), + [anon_sym_LBRACE] = ACTIONS(7310), + [anon_sym_RBRACE] = ACTIONS(7310), + [anon_sym_signed] = ACTIONS(8520), + [anon_sym_unsigned] = ACTIONS(8520), + [anon_sym_long] = ACTIONS(8520), + [anon_sym_short] = ACTIONS(8520), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym_const] = ACTIONS(7308), + [anon_sym_constexpr] = ACTIONS(7308), + [anon_sym_volatile] = ACTIONS(7308), + [anon_sym_restrict] = ACTIONS(7308), + [anon_sym___restrict__] = ACTIONS(7308), + [anon_sym__Atomic] = ACTIONS(7308), + [anon_sym__Noreturn] = ACTIONS(7308), + [anon_sym_noreturn] = ACTIONS(7308), + [anon_sym__Nonnull] = ACTIONS(7308), + [anon_sym_mutable] = ACTIONS(7308), + [anon_sym_constinit] = ACTIONS(7308), + [anon_sym_consteval] = ACTIONS(7308), + [anon_sym_alignas] = ACTIONS(7308), + [anon_sym__Alignas] = ACTIONS(7308), + [anon_sym_QMARK] = ACTIONS(7310), + [anon_sym_LT_EQ_GT] = ACTIONS(7310), + [anon_sym_or] = ACTIONS(7308), + [anon_sym_and] = ACTIONS(7308), + [anon_sym_bitor] = ACTIONS(7308), + [anon_sym_xor] = ACTIONS(7308), + [anon_sym_bitand] = ACTIONS(7308), + [anon_sym_not_eq] = ACTIONS(7308), + [anon_sym_DASH_DASH] = ACTIONS(7310), + [anon_sym_PLUS_PLUS] = ACTIONS(7310), + [anon_sym_DOT] = ACTIONS(7308), + [anon_sym_DOT_STAR] = ACTIONS(7310), + [anon_sym_DASH_GT] = ACTIONS(7310), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7308), + [anon_sym_final] = ACTIONS(7308), + [anon_sym_override] = ACTIONS(7308), + [anon_sym_template] = ACTIONS(7308), + [anon_sym_requires] = ACTIONS(7308), + [anon_sym_LBRACK_COLON] = ACTIONS(7310), + [anon_sym_COLON_RBRACK] = ACTIONS(7310), }, [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), + [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(7493), + [anon_sym___attribute] = ACTIONS(7491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [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_asm] = ACTIONS(7493), + [anon_sym___asm__] = ACTIONS(7493), + [anon_sym___asm] = ACTIONS(7491), + [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_noexcept] = ACTIONS(7493), + [anon_sym_throw] = ACTIONS(7493), + [anon_sym_requires] = ACTIONS(7493), + [anon_sym_DASH_GT_STAR] = ACTIONS(7493), }, [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), + [sym_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7566), + [anon_sym_PERCENT] = ACTIONS(7566), + [anon_sym_PIPE_PIPE] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7566), + [anon_sym_CARET] = ACTIONS(7566), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_EQ_EQ] = ACTIONS(7568), + [anon_sym_BANG_EQ] = ACTIONS(7568), + [anon_sym_GT] = ACTIONS(7566), + [anon_sym_GT_EQ] = ACTIONS(7566), + [anon_sym_LT_EQ] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7566), + [anon_sym_LT_LT] = ACTIONS(7566), + [anon_sym_GT_GT] = ACTIONS(7566), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(7566), + [anon_sym_EQ] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_mutable] = ACTIONS(7566), + [anon_sym_constinit] = ACTIONS(7566), + [anon_sym_consteval] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(7568), + [anon_sym_STAR_EQ] = ACTIONS(7568), + [anon_sym_SLASH_EQ] = ACTIONS(7568), + [anon_sym_PERCENT_EQ] = ACTIONS(7568), + [anon_sym_PLUS_EQ] = ACTIONS(7568), + [anon_sym_DASH_EQ] = ACTIONS(7568), + [anon_sym_LT_LT_EQ] = ACTIONS(7568), + [anon_sym_GT_GT_EQ] = ACTIONS(7566), + [anon_sym_AMP_EQ] = ACTIONS(7568), + [anon_sym_CARET_EQ] = ACTIONS(7568), + [anon_sym_PIPE_EQ] = ACTIONS(7568), + [anon_sym_and_eq] = ACTIONS(7566), + [anon_sym_or_eq] = ACTIONS(7566), + [anon_sym_xor_eq] = ACTIONS(7566), + [anon_sym_LT_EQ_GT] = ACTIONS(7568), + [anon_sym_or] = ACTIONS(7566), + [anon_sym_and] = ACTIONS(7566), + [anon_sym_bitor] = ACTIONS(7566), + [anon_sym_xor] = ACTIONS(7566), + [anon_sym_bitand] = ACTIONS(7566), + [anon_sym_not_eq] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(7568), + [anon_sym_PLUS_PLUS] = ACTIONS(7568), + [anon_sym_DOT] = ACTIONS(7566), + [anon_sym_DOT_STAR] = ACTIONS(7568), + [anon_sym_DASH_GT] = ACTIONS(7568), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7566), + [anon_sym_final] = ACTIONS(7566), + [anon_sym_override] = ACTIONS(7566), + [anon_sym_template] = ACTIONS(7566), + [anon_sym_GT2] = ACTIONS(7568), + [anon_sym_requires] = ACTIONS(7566), + [anon_sym_LBRACK_COLON] = ACTIONS(7568), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2666), + [sym_identifier] = ACTIONS(7316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7318), + [anon_sym_RPAREN] = ACTIONS(7318), + [aux_sym_preproc_if_token2] = ACTIONS(7318), + [aux_sym_preproc_else_token1] = ACTIONS(7318), + [aux_sym_preproc_elif_token1] = ACTIONS(7316), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7318), + [anon_sym_LPAREN2] = ACTIONS(7318), + [anon_sym_DASH] = ACTIONS(7316), + [anon_sym_PLUS] = ACTIONS(7316), + [anon_sym_STAR] = ACTIONS(7318), + [anon_sym_SLASH] = ACTIONS(7316), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_PIPE_PIPE] = ACTIONS(7318), + [anon_sym_AMP_AMP] = ACTIONS(7318), + [anon_sym_PIPE] = ACTIONS(7316), + [anon_sym_CARET] = ACTIONS(7318), + [anon_sym_AMP] = ACTIONS(7316), + [anon_sym_EQ_EQ] = ACTIONS(7318), + [anon_sym_BANG_EQ] = ACTIONS(7318), + [anon_sym_GT] = ACTIONS(7316), + [anon_sym_GT_EQ] = ACTIONS(7318), + [anon_sym_LT_EQ] = ACTIONS(7316), + [anon_sym_LT] = ACTIONS(7316), + [anon_sym_LT_LT] = ACTIONS(7318), + [anon_sym_GT_GT] = ACTIONS(7318), + [anon_sym_SEMI] = ACTIONS(7318), + [anon_sym___extension__] = ACTIONS(7316), + [anon_sym___attribute__] = ACTIONS(7316), + [anon_sym___attribute] = ACTIONS(7316), + [anon_sym_COLON] = ACTIONS(7316), + [anon_sym_COLON_COLON] = ACTIONS(7318), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7318), + [anon_sym_LBRACE] = ACTIONS(7318), + [anon_sym_RBRACE] = ACTIONS(7318), + [anon_sym_signed] = ACTIONS(8559), + [anon_sym_unsigned] = ACTIONS(8559), + [anon_sym_long] = ACTIONS(8559), + [anon_sym_short] = ACTIONS(8559), + [anon_sym_LBRACK] = ACTIONS(7316), + [anon_sym_const] = ACTIONS(7316), + [anon_sym_constexpr] = ACTIONS(7316), + [anon_sym_volatile] = ACTIONS(7316), + [anon_sym_restrict] = ACTIONS(7316), + [anon_sym___restrict__] = ACTIONS(7316), + [anon_sym__Atomic] = ACTIONS(7316), + [anon_sym__Noreturn] = ACTIONS(7316), + [anon_sym_noreturn] = ACTIONS(7316), + [anon_sym__Nonnull] = ACTIONS(7316), + [anon_sym_mutable] = ACTIONS(7316), + [anon_sym_constinit] = ACTIONS(7316), + [anon_sym_consteval] = ACTIONS(7316), + [anon_sym_alignas] = ACTIONS(7316), + [anon_sym__Alignas] = ACTIONS(7316), + [anon_sym_QMARK] = ACTIONS(7318), + [anon_sym_LT_EQ_GT] = ACTIONS(7318), + [anon_sym_or] = ACTIONS(7316), + [anon_sym_and] = ACTIONS(7316), + [anon_sym_bitor] = ACTIONS(7316), + [anon_sym_xor] = ACTIONS(7316), + [anon_sym_bitand] = ACTIONS(7316), + [anon_sym_not_eq] = ACTIONS(7316), + [anon_sym_DASH_DASH] = ACTIONS(7318), + [anon_sym_PLUS_PLUS] = ACTIONS(7318), + [anon_sym_DOT] = ACTIONS(7316), + [anon_sym_DOT_STAR] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(7318), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7316), + [anon_sym_final] = ACTIONS(7316), + [anon_sym_override] = ACTIONS(7316), + [anon_sym_template] = ACTIONS(7316), + [anon_sym_requires] = ACTIONS(7316), + [anon_sym_LBRACK_COLON] = ACTIONS(7318), + [anon_sym_COLON_RBRACK] = ACTIONS(7318), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2667), + [sym_identifier] = ACTIONS(7322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7324), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_RPAREN] = ACTIONS(7324), + [aux_sym_preproc_if_token2] = ACTIONS(7324), + [aux_sym_preproc_else_token1] = ACTIONS(7324), + [aux_sym_preproc_elif_token1] = ACTIONS(7322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7324), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_DASH] = ACTIONS(7322), + [anon_sym_PLUS] = ACTIONS(7322), + [anon_sym_STAR] = ACTIONS(7324), + [anon_sym_SLASH] = ACTIONS(7322), + [anon_sym_PERCENT] = ACTIONS(7324), + [anon_sym_PIPE_PIPE] = ACTIONS(7324), + [anon_sym_AMP_AMP] = ACTIONS(7324), + [anon_sym_PIPE] = ACTIONS(7322), + [anon_sym_CARET] = ACTIONS(7324), + [anon_sym_AMP] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_GT] = ACTIONS(7322), + [anon_sym_GT_EQ] = ACTIONS(7324), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_LT] = ACTIONS(7322), + [anon_sym_LT_LT] = ACTIONS(7324), + [anon_sym_GT_GT] = ACTIONS(7324), + [anon_sym_SEMI] = ACTIONS(7324), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_COLON] = ACTIONS(7322), + [anon_sym_COLON_COLON] = ACTIONS(7324), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7324), + [anon_sym_LBRACE] = ACTIONS(7324), + [anon_sym_RBRACE] = ACTIONS(7324), + [anon_sym_signed] = ACTIONS(8561), + [anon_sym_unsigned] = ACTIONS(8561), + [anon_sym_long] = ACTIONS(8561), + [anon_sym_short] = ACTIONS(8561), + [anon_sym_LBRACK] = ACTIONS(7322), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_mutable] = ACTIONS(7322), + [anon_sym_constinit] = ACTIONS(7322), + [anon_sym_consteval] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [anon_sym_QMARK] = ACTIONS(7324), + [anon_sym_LT_EQ_GT] = ACTIONS(7324), + [anon_sym_or] = ACTIONS(7322), + [anon_sym_and] = ACTIONS(7322), + [anon_sym_bitor] = ACTIONS(7322), + [anon_sym_xor] = ACTIONS(7322), + [anon_sym_bitand] = ACTIONS(7322), + [anon_sym_not_eq] = ACTIONS(7322), + [anon_sym_DASH_DASH] = ACTIONS(7324), + [anon_sym_PLUS_PLUS] = ACTIONS(7324), + [anon_sym_DOT] = ACTIONS(7322), + [anon_sym_DOT_STAR] = ACTIONS(7324), + [anon_sym_DASH_GT] = ACTIONS(7324), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7322), + [anon_sym_final] = ACTIONS(7322), + [anon_sym_override] = ACTIONS(7322), + [anon_sym_template] = ACTIONS(7322), + [anon_sym_requires] = ACTIONS(7322), + [anon_sym_LBRACK_COLON] = ACTIONS(7324), + [anon_sym_COLON_RBRACK] = ACTIONS(7324), }, [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7261), + [anon_sym___attribute__] = ACTIONS(7261), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7261), + [anon_sym_volatile] = ACTIONS(7261), + [anon_sym_restrict] = ACTIONS(7261), + [anon_sym___restrict__] = ACTIONS(7261), + [anon_sym__Atomic] = ACTIONS(7261), + [anon_sym__Noreturn] = ACTIONS(7261), + [anon_sym_noreturn] = ACTIONS(7261), + [anon_sym__Nonnull] = ACTIONS(7261), + [anon_sym_mutable] = ACTIONS(7261), + [anon_sym_constinit] = ACTIONS(7261), + [anon_sym_consteval] = ACTIONS(7261), + [anon_sym_alignas] = ACTIONS(7261), + [anon_sym__Alignas] = ACTIONS(7261), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7261), + [anon_sym_or_eq] = ACTIONS(7261), + [anon_sym_xor_eq] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7261), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7261), + [anon_sym_not_eq] = ACTIONS(7261), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_asm] = ACTIONS(7261), + [anon_sym___asm__] = ACTIONS(7261), + [anon_sym___asm] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7261), + [anon_sym_override] = ACTIONS(7261), + [anon_sym_noexcept] = ACTIONS(7261), + [anon_sym_throw] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7261), + [anon_sym_DASH_GT_STAR] = ACTIONS(7261), }, [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), + [sym_identifier] = ACTIONS(7668), + [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(7668), + [anon_sym___attribute__] = ACTIONS(7668), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_COLON] = ACTIONS(7668), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7668), + [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(7668), + [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_decltype] = ACTIONS(7668), + [anon_sym_final] = ACTIONS(7668), + [anon_sym_override] = ACTIONS(7668), + [anon_sym_template] = ACTIONS(7668), + [anon_sym_GT2] = ACTIONS(7670), + [anon_sym_requires] = ACTIONS(7668), + [anon_sym_LBRACK_COLON] = ACTIONS(7670), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2675), + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(7277), + [aux_sym_preproc_if_token2] = ACTIONS(7277), + [aux_sym_preproc_else_token1] = ACTIONS(7277), + [aux_sym_preproc_elif_token1] = ACTIONS(7275), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7277), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7277), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7277), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7277), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7277), + [anon_sym_GT_GT] = ACTIONS(7277), + [anon_sym_SEMI] = ACTIONS(7277), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON] = ACTIONS(7275), + [anon_sym_COLON_COLON] = ACTIONS(7277), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_RBRACE] = ACTIONS(7277), + [anon_sym_signed] = ACTIONS(8520), + [anon_sym_unsigned] = ACTIONS(8520), + [anon_sym_long] = ACTIONS(8520), + [anon_sym_short] = ACTIONS(8520), + [anon_sym_LBRACK] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7275), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7275), + [anon_sym_not_eq] = ACTIONS(7275), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7275), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_template] = ACTIONS(7275), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_LBRACK_COLON] = ACTIONS(7277), + [anon_sym_COLON_RBRACK] = ACTIONS(7277), }, [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), + [sym_identifier] = ACTIONS(8563), + [anon_sym_LPAREN2] = ACTIONS(8565), + [anon_sym_BANG] = ACTIONS(8565), + [anon_sym_TILDE] = ACTIONS(8565), + [anon_sym_DASH] = ACTIONS(8563), + [anon_sym_PLUS] = ACTIONS(8563), + [anon_sym_STAR] = ACTIONS(8565), + [anon_sym_AMP] = ACTIONS(8565), + [anon_sym_SEMI] = ACTIONS(8565), + [anon_sym___extension__] = ACTIONS(8563), + [anon_sym_COLON_COLON] = ACTIONS(8565), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8565), + [anon_sym_LBRACE] = ACTIONS(8565), + [anon_sym_LBRACK] = ACTIONS(8563), + [sym_primitive_type] = ACTIONS(8563), + [anon_sym_if] = ACTIONS(8563), + [anon_sym_switch] = ACTIONS(8563), + [anon_sym_case] = ACTIONS(8563), + [anon_sym_default] = ACTIONS(8563), + [anon_sym_while] = ACTIONS(8563), + [anon_sym_do] = ACTIONS(8563), + [anon_sym_for] = ACTIONS(8563), + [anon_sym_return] = ACTIONS(8563), + [anon_sym_break] = ACTIONS(8563), + [anon_sym_continue] = ACTIONS(8563), + [anon_sym_goto] = ACTIONS(8563), + [anon_sym___try] = ACTIONS(8563), + [anon_sym___leave] = ACTIONS(8563), + [anon_sym_not] = ACTIONS(8563), + [anon_sym_compl] = ACTIONS(8563), + [anon_sym_DASH_DASH] = ACTIONS(8565), + [anon_sym_PLUS_PLUS] = ACTIONS(8565), + [anon_sym_sizeof] = ACTIONS(8563), + [anon_sym___alignof__] = ACTIONS(8563), + [anon_sym___alignof] = ACTIONS(8563), + [anon_sym__alignof] = ACTIONS(8563), + [anon_sym_alignof] = ACTIONS(8563), + [anon_sym__Alignof] = ACTIONS(8563), + [anon_sym_offsetof] = ACTIONS(8563), + [anon_sym__Generic] = ACTIONS(8563), + [anon_sym_typename] = ACTIONS(8563), + [anon_sym_asm] = ACTIONS(8563), + [anon_sym___asm__] = ACTIONS(8563), + [anon_sym___asm] = ACTIONS(8563), + [sym_number_literal] = ACTIONS(8565), + [anon_sym_L_SQUOTE] = ACTIONS(8565), + [anon_sym_u_SQUOTE] = ACTIONS(8565), + [anon_sym_U_SQUOTE] = ACTIONS(8565), + [anon_sym_u8_SQUOTE] = ACTIONS(8565), + [anon_sym_SQUOTE] = ACTIONS(8565), + [anon_sym_L_DQUOTE] = ACTIONS(8565), + [anon_sym_u_DQUOTE] = ACTIONS(8565), + [anon_sym_U_DQUOTE] = ACTIONS(8565), + [anon_sym_u8_DQUOTE] = ACTIONS(8565), + [anon_sym_DQUOTE] = ACTIONS(8565), + [sym_true] = ACTIONS(8563), + [sym_false] = ACTIONS(8563), + [anon_sym_NULL] = ACTIONS(8563), + [anon_sym_nullptr] = ACTIONS(8563), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(8563), + [anon_sym_template] = ACTIONS(8563), + [anon_sym_try] = ACTIONS(8563), + [anon_sym_delete] = ACTIONS(8563), + [anon_sym_throw] = ACTIONS(8563), + [anon_sym_co_return] = ACTIONS(8563), + [anon_sym_co_yield] = ACTIONS(8563), + [anon_sym_R_DQUOTE] = ACTIONS(8565), + [anon_sym_LR_DQUOTE] = ACTIONS(8565), + [anon_sym_uR_DQUOTE] = ACTIONS(8565), + [anon_sym_UR_DQUOTE] = ACTIONS(8565), + [anon_sym_u8R_DQUOTE] = ACTIONS(8565), + [anon_sym_co_await] = ACTIONS(8563), + [anon_sym_new] = ACTIONS(8563), + [anon_sym_requires] = ACTIONS(8563), + [anon_sym_CARET_CARET] = ACTIONS(8565), + [anon_sym_LBRACK_COLON] = ACTIONS(8565), + [sym_this] = ACTIONS(8563), }, [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), + [sym_identifier] = ACTIONS(7149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7151), + [anon_sym_COMMA] = ACTIONS(7151), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_DASH] = ACTIONS(7149), + [anon_sym_PLUS] = ACTIONS(7149), + [anon_sym_STAR] = ACTIONS(7149), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_PIPE_PIPE] = ACTIONS(7151), + [anon_sym_AMP_AMP] = ACTIONS(7151), + [anon_sym_PIPE] = ACTIONS(7149), + [anon_sym_CARET] = ACTIONS(7149), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym_EQ_EQ] = ACTIONS(7151), + [anon_sym_BANG_EQ] = ACTIONS(7151), + [anon_sym_GT] = ACTIONS(7149), + [anon_sym_GT_EQ] = ACTIONS(7149), + [anon_sym_LT_EQ] = ACTIONS(7149), + [anon_sym_LT] = ACTIONS(7149), + [anon_sym_LT_LT] = ACTIONS(7149), + [anon_sym_GT_GT] = ACTIONS(7149), + [anon_sym___extension__] = ACTIONS(7149), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_COLON] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_LBRACE] = ACTIONS(7151), + [anon_sym_LBRACK] = ACTIONS(7149), + [anon_sym_EQ] = ACTIONS(7149), + [anon_sym_const] = ACTIONS(7149), + [anon_sym_constexpr] = ACTIONS(7149), + [anon_sym_volatile] = ACTIONS(7149), + [anon_sym_restrict] = ACTIONS(7149), + [anon_sym___restrict__] = ACTIONS(7149), + [anon_sym__Atomic] = ACTIONS(7149), + [anon_sym__Noreturn] = ACTIONS(7149), + [anon_sym_noreturn] = ACTIONS(7149), + [anon_sym__Nonnull] = ACTIONS(7149), + [anon_sym_mutable] = ACTIONS(7149), + [anon_sym_constinit] = ACTIONS(7149), + [anon_sym_consteval] = ACTIONS(7149), + [anon_sym_alignas] = ACTIONS(7149), + [anon_sym__Alignas] = ACTIONS(7149), + [anon_sym_QMARK] = ACTIONS(7151), + [anon_sym_STAR_EQ] = ACTIONS(7151), + [anon_sym_SLASH_EQ] = ACTIONS(7151), + [anon_sym_PERCENT_EQ] = ACTIONS(7151), + [anon_sym_PLUS_EQ] = ACTIONS(7151), + [anon_sym_DASH_EQ] = ACTIONS(7151), + [anon_sym_LT_LT_EQ] = ACTIONS(7151), + [anon_sym_GT_GT_EQ] = ACTIONS(7149), + [anon_sym_AMP_EQ] = ACTIONS(7151), + [anon_sym_CARET_EQ] = ACTIONS(7151), + [anon_sym_PIPE_EQ] = ACTIONS(7151), + [anon_sym_and_eq] = ACTIONS(7149), + [anon_sym_or_eq] = ACTIONS(7149), + [anon_sym_xor_eq] = ACTIONS(7149), + [anon_sym_LT_EQ_GT] = ACTIONS(7151), + [anon_sym_or] = ACTIONS(7149), + [anon_sym_and] = ACTIONS(7149), + [anon_sym_bitor] = ACTIONS(7149), + [anon_sym_xor] = ACTIONS(7149), + [anon_sym_bitand] = ACTIONS(7149), + [anon_sym_not_eq] = ACTIONS(7149), + [anon_sym_DASH_DASH] = ACTIONS(7151), + [anon_sym_PLUS_PLUS] = ACTIONS(7151), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_DOT_STAR] = ACTIONS(7151), + [anon_sym_DASH_GT] = ACTIONS(7151), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7149), + [anon_sym_final] = ACTIONS(7149), + [anon_sym_override] = ACTIONS(7149), + [anon_sym_template] = ACTIONS(7149), + [anon_sym_GT2] = ACTIONS(7151), + [anon_sym_requires] = ACTIONS(7149), + [anon_sym_LBRACK_COLON] = ACTIONS(7151), }, [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), + [sym_identifier] = ACTIONS(7149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7151), + [anon_sym_COMMA] = ACTIONS(7151), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_DASH] = ACTIONS(7149), + [anon_sym_PLUS] = ACTIONS(7149), + [anon_sym_STAR] = ACTIONS(7149), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_PIPE_PIPE] = ACTIONS(7151), + [anon_sym_AMP_AMP] = ACTIONS(7151), + [anon_sym_PIPE] = ACTIONS(7149), + [anon_sym_CARET] = ACTIONS(7149), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym_EQ_EQ] = ACTIONS(7151), + [anon_sym_BANG_EQ] = ACTIONS(7151), + [anon_sym_GT] = ACTIONS(7149), + [anon_sym_GT_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7149), + [anon_sym_LT] = ACTIONS(7149), + [anon_sym_LT_LT] = ACTIONS(7149), + [anon_sym_GT_GT] = ACTIONS(7149), + [anon_sym___extension__] = ACTIONS(7149), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_COLON] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_LBRACE] = ACTIONS(7151), + [anon_sym_LBRACK] = ACTIONS(7149), + [anon_sym_RBRACK] = ACTIONS(7151), + [anon_sym_EQ] = ACTIONS(7149), + [anon_sym_const] = ACTIONS(7149), + [anon_sym_constexpr] = ACTIONS(7149), + [anon_sym_volatile] = ACTIONS(7149), + [anon_sym_restrict] = ACTIONS(7149), + [anon_sym___restrict__] = ACTIONS(7149), + [anon_sym__Atomic] = ACTIONS(7149), + [anon_sym__Noreturn] = ACTIONS(7149), + [anon_sym_noreturn] = ACTIONS(7149), + [anon_sym__Nonnull] = ACTIONS(7149), + [anon_sym_mutable] = ACTIONS(7149), + [anon_sym_constinit] = ACTIONS(7149), + [anon_sym_consteval] = ACTIONS(7149), + [anon_sym_alignas] = ACTIONS(7149), + [anon_sym__Alignas] = ACTIONS(7149), + [anon_sym_QMARK] = ACTIONS(7151), + [anon_sym_STAR_EQ] = ACTIONS(7151), + [anon_sym_SLASH_EQ] = ACTIONS(7151), + [anon_sym_PERCENT_EQ] = ACTIONS(7151), + [anon_sym_PLUS_EQ] = ACTIONS(7151), + [anon_sym_DASH_EQ] = ACTIONS(7151), + [anon_sym_LT_LT_EQ] = ACTIONS(7151), + [anon_sym_GT_GT_EQ] = ACTIONS(7151), + [anon_sym_AMP_EQ] = ACTIONS(7151), + [anon_sym_CARET_EQ] = ACTIONS(7151), + [anon_sym_PIPE_EQ] = ACTIONS(7151), + [anon_sym_and_eq] = ACTIONS(7149), + [anon_sym_or_eq] = ACTIONS(7149), + [anon_sym_xor_eq] = ACTIONS(7149), + [anon_sym_LT_EQ_GT] = ACTIONS(7151), + [anon_sym_or] = ACTIONS(7149), + [anon_sym_and] = ACTIONS(7149), + [anon_sym_bitor] = ACTIONS(7149), + [anon_sym_xor] = ACTIONS(7149), + [anon_sym_bitand] = ACTIONS(7149), + [anon_sym_not_eq] = ACTIONS(7149), + [anon_sym_DASH_DASH] = ACTIONS(7151), + [anon_sym_PLUS_PLUS] = ACTIONS(7151), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_DOT_STAR] = ACTIONS(7151), + [anon_sym_DASH_GT] = ACTIONS(7151), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7149), + [anon_sym_final] = ACTIONS(7149), + [anon_sym_override] = ACTIONS(7149), + [anon_sym_template] = ACTIONS(7149), + [anon_sym_requires] = ACTIONS(7149), + [anon_sym_LBRACK_COLON] = ACTIONS(7151), }, [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), - [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_type_qualifier] = STATE(2705), + [sym_alignas_qualifier] = STATE(2950), + [aux_sym__type_definition_type_repeat1] = STATE(2705), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7047), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8567), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7049), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8567), + [anon_sym_constexpr] = ACTIONS(8567), + [anon_sym_volatile] = ACTIONS(8567), + [anon_sym_restrict] = ACTIONS(8567), + [anon_sym___restrict__] = ACTIONS(8567), + [anon_sym__Atomic] = ACTIONS(8567), + [anon_sym__Noreturn] = ACTIONS(8567), + [anon_sym_noreturn] = ACTIONS(8567), + [anon_sym__Nonnull] = ACTIONS(8567), + [anon_sym_mutable] = ACTIONS(8567), + [anon_sym_constinit] = ACTIONS(8567), + [anon_sym_consteval] = ACTIONS(8567), + [anon_sym_alignas] = ACTIONS(8570), + [anon_sym__Alignas] = ACTIONS(8570), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7047), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7049), }, [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), - [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2675), + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_RPAREN] = ACTIONS(7281), + [aux_sym_preproc_if_token2] = ACTIONS(7281), + [aux_sym_preproc_else_token1] = ACTIONS(7281), + [aux_sym_preproc_elif_token1] = ACTIONS(7279), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7281), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7281), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7281), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7281), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7281), + [anon_sym_GT_GT] = ACTIONS(7281), + [anon_sym_SEMI] = ACTIONS(7281), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON] = ACTIONS(7279), + [anon_sym_COLON_COLON] = ACTIONS(7281), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_RBRACE] = ACTIONS(7281), + [anon_sym_signed] = ACTIONS(8520), + [anon_sym_unsigned] = ACTIONS(8520), + [anon_sym_long] = ACTIONS(8520), + [anon_sym_short] = ACTIONS(8520), + [anon_sym_LBRACK] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7279), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7279), + [anon_sym_not_eq] = ACTIONS(7279), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7281), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7279), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_template] = ACTIONS(7279), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_LBRACK_COLON] = ACTIONS(7281), + [anon_sym_COLON_RBRACK] = ACTIONS(7281), }, [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), - [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_attribute_specifier] = STATE(2962), + [sym_identifier] = ACTIONS(7574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7576), + [anon_sym_COMMA] = ACTIONS(7576), + [anon_sym_RPAREN] = ACTIONS(7576), + [anon_sym_LPAREN2] = ACTIONS(7576), + [anon_sym_DASH] = ACTIONS(7574), + [anon_sym_PLUS] = ACTIONS(7574), + [anon_sym_STAR] = ACTIONS(7574), + [anon_sym_SLASH] = ACTIONS(7574), + [anon_sym_PERCENT] = ACTIONS(7574), + [anon_sym_PIPE_PIPE] = ACTIONS(7576), + [anon_sym_AMP_AMP] = ACTIONS(7576), + [anon_sym_PIPE] = ACTIONS(7574), + [anon_sym_CARET] = ACTIONS(7574), + [anon_sym_AMP] = ACTIONS(7574), + [anon_sym_EQ_EQ] = ACTIONS(7576), + [anon_sym_BANG_EQ] = ACTIONS(7576), + [anon_sym_GT] = ACTIONS(7574), + [anon_sym_GT_EQ] = ACTIONS(7576), + [anon_sym_LT_EQ] = ACTIONS(7574), + [anon_sym_LT] = ACTIONS(7574), + [anon_sym_LT_LT] = ACTIONS(7574), + [anon_sym_GT_GT] = ACTIONS(7574), + [anon_sym___extension__] = ACTIONS(7574), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7576), + [anon_sym_LBRACK] = ACTIONS(7574), + [anon_sym_EQ] = ACTIONS(7574), + [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(7574), + [anon_sym__Alignas] = ACTIONS(7574), + [anon_sym_QMARK] = ACTIONS(7576), + [anon_sym_STAR_EQ] = ACTIONS(7576), + [anon_sym_SLASH_EQ] = ACTIONS(7576), + [anon_sym_PERCENT_EQ] = ACTIONS(7576), + [anon_sym_PLUS_EQ] = ACTIONS(7576), + [anon_sym_DASH_EQ] = ACTIONS(7576), + [anon_sym_LT_LT_EQ] = ACTIONS(7576), + [anon_sym_GT_GT_EQ] = ACTIONS(7576), + [anon_sym_AMP_EQ] = ACTIONS(7576), + [anon_sym_CARET_EQ] = ACTIONS(7576), + [anon_sym_PIPE_EQ] = ACTIONS(7576), + [anon_sym_and_eq] = ACTIONS(7574), + [anon_sym_or_eq] = ACTIONS(7574), + [anon_sym_xor_eq] = ACTIONS(7574), + [anon_sym_LT_EQ_GT] = ACTIONS(7576), + [anon_sym_or] = ACTIONS(7574), + [anon_sym_and] = ACTIONS(7574), + [anon_sym_bitor] = ACTIONS(7574), + [anon_sym_xor] = ACTIONS(7574), + [anon_sym_bitand] = ACTIONS(7574), + [anon_sym_not_eq] = ACTIONS(7574), + [anon_sym_DASH_DASH] = ACTIONS(7576), + [anon_sym_PLUS_PLUS] = ACTIONS(7576), + [anon_sym_DOT] = ACTIONS(7574), + [anon_sym_DOT_STAR] = ACTIONS(7576), + [anon_sym_DASH_GT] = ACTIONS(7574), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7574), + [anon_sym_final] = ACTIONS(7574), + [anon_sym_override] = ACTIONS(7574), + [anon_sym_template] = ACTIONS(7574), + [anon_sym_requires] = ACTIONS(7574), + [anon_sym_DASH_GT_STAR] = ACTIONS(7576), + [anon_sym_LBRACK_COLON] = ACTIONS(7576), }, [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), - [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_attribute_specifier] = STATE(2968), + [sym_identifier] = ACTIONS(7578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7580), + [anon_sym_COMMA] = ACTIONS(7580), + [anon_sym_RPAREN] = ACTIONS(7580), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym_DASH] = ACTIONS(7578), + [anon_sym_PLUS] = ACTIONS(7578), + [anon_sym_STAR] = ACTIONS(7578), + [anon_sym_SLASH] = ACTIONS(7578), + [anon_sym_PERCENT] = ACTIONS(7578), + [anon_sym_PIPE_PIPE] = ACTIONS(7580), + [anon_sym_AMP_AMP] = ACTIONS(7580), + [anon_sym_PIPE] = ACTIONS(7578), + [anon_sym_CARET] = ACTIONS(7578), + [anon_sym_AMP] = ACTIONS(7578), + [anon_sym_EQ_EQ] = ACTIONS(7580), + [anon_sym_BANG_EQ] = ACTIONS(7580), + [anon_sym_GT] = ACTIONS(7578), + [anon_sym_GT_EQ] = ACTIONS(7580), + [anon_sym_LT_EQ] = ACTIONS(7578), + [anon_sym_LT] = ACTIONS(7578), + [anon_sym_LT_LT] = ACTIONS(7578), + [anon_sym_GT_GT] = ACTIONS(7578), + [anon_sym___extension__] = ACTIONS(7578), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7580), + [anon_sym_LBRACK] = ACTIONS(7578), + [anon_sym_EQ] = ACTIONS(7578), + [anon_sym_const] = ACTIONS(7578), + [anon_sym_constexpr] = ACTIONS(7578), + [anon_sym_volatile] = ACTIONS(7578), + [anon_sym_restrict] = ACTIONS(7578), + [anon_sym___restrict__] = ACTIONS(7578), + [anon_sym__Atomic] = ACTIONS(7578), + [anon_sym__Noreturn] = ACTIONS(7578), + [anon_sym_noreturn] = ACTIONS(7578), + [anon_sym__Nonnull] = ACTIONS(7578), + [anon_sym_mutable] = ACTIONS(7578), + [anon_sym_constinit] = ACTIONS(7578), + [anon_sym_consteval] = ACTIONS(7578), + [anon_sym_alignas] = ACTIONS(7578), + [anon_sym__Alignas] = ACTIONS(7578), + [anon_sym_QMARK] = ACTIONS(7580), + [anon_sym_STAR_EQ] = ACTIONS(7580), + [anon_sym_SLASH_EQ] = ACTIONS(7580), + [anon_sym_PERCENT_EQ] = ACTIONS(7580), + [anon_sym_PLUS_EQ] = ACTIONS(7580), + [anon_sym_DASH_EQ] = ACTIONS(7580), + [anon_sym_LT_LT_EQ] = ACTIONS(7580), + [anon_sym_GT_GT_EQ] = ACTIONS(7580), + [anon_sym_AMP_EQ] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(7580), + [anon_sym_PIPE_EQ] = ACTIONS(7580), + [anon_sym_and_eq] = ACTIONS(7578), + [anon_sym_or_eq] = ACTIONS(7578), + [anon_sym_xor_eq] = ACTIONS(7578), + [anon_sym_LT_EQ_GT] = ACTIONS(7580), + [anon_sym_or] = ACTIONS(7578), + [anon_sym_and] = ACTIONS(7578), + [anon_sym_bitor] = ACTIONS(7578), + [anon_sym_xor] = ACTIONS(7578), + [anon_sym_bitand] = ACTIONS(7578), + [anon_sym_not_eq] = ACTIONS(7578), + [anon_sym_DASH_DASH] = ACTIONS(7580), + [anon_sym_PLUS_PLUS] = ACTIONS(7580), + [anon_sym_DOT] = ACTIONS(7578), + [anon_sym_DOT_STAR] = ACTIONS(7580), + [anon_sym_DASH_GT] = ACTIONS(7578), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7578), + [anon_sym_final] = ACTIONS(7578), + [anon_sym_override] = ACTIONS(7578), + [anon_sym_template] = ACTIONS(7578), + [anon_sym_requires] = ACTIONS(7578), + [anon_sym_DASH_GT_STAR] = ACTIONS(7580), + [anon_sym_LBRACK_COLON] = ACTIONS(7580), }, [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), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym_ref_qualifier] = STATE(2756), + [sym__function_exception_specification] = STATE(3321), + [sym__function_attributes_end] = STATE(4776), + [sym__function_postfix] = STATE(5368), + [sym_trailing_return_type] = STATE(4813), + [sym_noexcept] = STATE(3321), + [sym_throw_specifier] = STATE(3321), + [sym_requires_clause] = STATE(5368), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(8522), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(8525), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8528), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8573), + [anon_sym_override] = ACTIONS(8573), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6882), + [anon_sym_requires] = ACTIONS(8576), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [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), - [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_template_argument_list] = STATE(2785), + [sym_identifier] = ACTIONS(6785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [aux_sym_preproc_if_token2] = ACTIONS(6778), + [aux_sym_preproc_else_token1] = ACTIONS(6778), + [aux_sym_preproc_elif_token1] = ACTIONS(6785), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6778), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_PIPE_PIPE] = ACTIONS(6778), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(6785), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6778), + [anon_sym_BANG_EQ] = ACTIONS(6778), + [anon_sym_GT] = ACTIONS(6785), + [anon_sym_GT_EQ] = ACTIONS(6778), + [anon_sym_LT_EQ] = ACTIONS(6785), + [anon_sym_LT] = ACTIONS(8329), + [anon_sym_LT_LT] = ACTIONS(6785), + [anon_sym_GT_GT] = ACTIONS(6785), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6778), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6778), + [anon_sym_or] = ACTIONS(6785), + [anon_sym_and] = ACTIONS(6785), + [anon_sym_bitor] = ACTIONS(6785), + [anon_sym_xor] = ACTIONS(6785), + [anon_sym_bitand] = ACTIONS(6785), + [anon_sym_not_eq] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(6778), + [anon_sym_PLUS_PLUS] = ACTIONS(6778), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_DOT_STAR] = ACTIONS(6778), + [anon_sym_DASH_GT] = ACTIONS(6778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, [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), - [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_type_qualifier] = STATE(2711), + [sym_alignas_qualifier] = STATE(2870), + [aux_sym__type_definition_type_repeat1] = STATE(2711), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_TILDE] = ACTIONS(7049), + [anon_sym_STAR] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_SEMI] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(8579), + [anon_sym_virtual] = ACTIONS(7047), + [anon_sym_extern] = ACTIONS(7047), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7049), + [anon_sym___declspec] = ACTIONS(7047), + [anon_sym___based] = ACTIONS(7047), + [anon_sym___cdecl] = ACTIONS(7047), + [anon_sym___clrcall] = ACTIONS(7047), + [anon_sym___stdcall] = ACTIONS(7047), + [anon_sym___fastcall] = ACTIONS(7047), + [anon_sym___thiscall] = ACTIONS(7047), + [anon_sym___vectorcall] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_static] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7049), + [anon_sym_register] = ACTIONS(7047), + [anon_sym_inline] = ACTIONS(7047), + [anon_sym___inline] = ACTIONS(7047), + [anon_sym___inline__] = ACTIONS(7047), + [anon_sym___forceinline] = ACTIONS(7047), + [anon_sym_thread_local] = ACTIONS(7047), + [anon_sym___thread] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8579), + [anon_sym_constexpr] = ACTIONS(8579), + [anon_sym_volatile] = ACTIONS(8579), + [anon_sym_restrict] = ACTIONS(8579), + [anon_sym___restrict__] = ACTIONS(8579), + [anon_sym__Atomic] = ACTIONS(8579), + [anon_sym__Noreturn] = ACTIONS(8579), + [anon_sym_noreturn] = ACTIONS(8579), + [anon_sym__Nonnull] = ACTIONS(8579), + [anon_sym_mutable] = ACTIONS(8579), + [anon_sym_constinit] = ACTIONS(8579), + [anon_sym_consteval] = ACTIONS(8579), + [anon_sym_alignas] = ACTIONS(8582), + [anon_sym__Alignas] = ACTIONS(8582), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_enum] = ACTIONS(7047), + [anon_sym_class] = ACTIONS(7047), + [anon_sym_struct] = ACTIONS(7047), + [anon_sym_union] = ACTIONS(7047), + [anon_sym_typename] = ACTIONS(7047), + [anon_sym_asm] = ACTIONS(7047), + [anon_sym___asm__] = ACTIONS(7047), + [anon_sym___asm] = ACTIONS(7047), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7047), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_GT2] = ACTIONS(7049), + [anon_sym_operator] = ACTIONS(7047), + [anon_sym_try] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), }, [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), + [sym_attribute_specifier] = STATE(2907), + [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(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(7676), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7676), + [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(7676), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7676), + [anon_sym_final] = ACTIONS(7676), + [anon_sym_override] = ACTIONS(7676), + [anon_sym_template] = ACTIONS(7676), + [anon_sym_requires] = ACTIONS(7676), + [anon_sym_DASH_GT_STAR] = ACTIONS(7678), + [anon_sym_LBRACK_COLON] = ACTIONS(7678), }, [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), + [sym_attribute_specifier] = STATE(2900), + [sym_identifier] = ACTIONS(7617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7619), + [anon_sym_COMMA] = ACTIONS(7619), + [anon_sym_RPAREN] = ACTIONS(7619), + [anon_sym_LPAREN2] = ACTIONS(7619), + [anon_sym_DASH] = ACTIONS(7617), + [anon_sym_PLUS] = ACTIONS(7617), + [anon_sym_STAR] = ACTIONS(7617), + [anon_sym_SLASH] = ACTIONS(7617), + [anon_sym_PERCENT] = ACTIONS(7617), + [anon_sym_PIPE_PIPE] = ACTIONS(7619), + [anon_sym_AMP_AMP] = ACTIONS(7619), + [anon_sym_PIPE] = ACTIONS(7617), + [anon_sym_CARET] = ACTIONS(7617), + [anon_sym_AMP] = ACTIONS(7617), + [anon_sym_EQ_EQ] = ACTIONS(7619), + [anon_sym_BANG_EQ] = ACTIONS(7619), + [anon_sym_GT] = ACTIONS(7617), + [anon_sym_GT_EQ] = ACTIONS(7619), + [anon_sym_LT_EQ] = ACTIONS(7617), + [anon_sym_LT] = ACTIONS(7617), + [anon_sym_LT_LT] = ACTIONS(7617), + [anon_sym_GT_GT] = ACTIONS(7617), + [anon_sym___extension__] = ACTIONS(7617), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7619), + [anon_sym_LBRACK] = ACTIONS(7617), + [anon_sym_EQ] = ACTIONS(7617), + [anon_sym_const] = ACTIONS(7617), + [anon_sym_constexpr] = ACTIONS(7617), + [anon_sym_volatile] = ACTIONS(7617), + [anon_sym_restrict] = ACTIONS(7617), + [anon_sym___restrict__] = ACTIONS(7617), + [anon_sym__Atomic] = ACTIONS(7617), + [anon_sym__Noreturn] = ACTIONS(7617), + [anon_sym_noreturn] = ACTIONS(7617), + [anon_sym__Nonnull] = ACTIONS(7617), + [anon_sym_mutable] = ACTIONS(7617), + [anon_sym_constinit] = ACTIONS(7617), + [anon_sym_consteval] = ACTIONS(7617), + [anon_sym_alignas] = ACTIONS(7617), + [anon_sym__Alignas] = ACTIONS(7617), + [anon_sym_QMARK] = ACTIONS(7619), + [anon_sym_STAR_EQ] = ACTIONS(7619), + [anon_sym_SLASH_EQ] = ACTIONS(7619), + [anon_sym_PERCENT_EQ] = ACTIONS(7619), + [anon_sym_PLUS_EQ] = ACTIONS(7619), + [anon_sym_DASH_EQ] = ACTIONS(7619), + [anon_sym_LT_LT_EQ] = ACTIONS(7619), + [anon_sym_GT_GT_EQ] = ACTIONS(7619), + [anon_sym_AMP_EQ] = ACTIONS(7619), + [anon_sym_CARET_EQ] = ACTIONS(7619), + [anon_sym_PIPE_EQ] = ACTIONS(7619), + [anon_sym_and_eq] = ACTIONS(7617), + [anon_sym_or_eq] = ACTIONS(7617), + [anon_sym_xor_eq] = ACTIONS(7617), + [anon_sym_LT_EQ_GT] = ACTIONS(7619), + [anon_sym_or] = ACTIONS(7617), + [anon_sym_and] = ACTIONS(7617), + [anon_sym_bitor] = ACTIONS(7617), + [anon_sym_xor] = ACTIONS(7617), + [anon_sym_bitand] = ACTIONS(7617), + [anon_sym_not_eq] = ACTIONS(7617), + [anon_sym_DASH_DASH] = ACTIONS(7619), + [anon_sym_PLUS_PLUS] = ACTIONS(7619), + [anon_sym_DOT] = ACTIONS(7617), + [anon_sym_DOT_STAR] = ACTIONS(7619), + [anon_sym_DASH_GT] = ACTIONS(7617), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7617), + [anon_sym_final] = ACTIONS(7617), + [anon_sym_override] = ACTIONS(7617), + [anon_sym_template] = ACTIONS(7617), + [anon_sym_requires] = ACTIONS(7617), + [anon_sym_DASH_GT_STAR] = ACTIONS(7619), + [anon_sym_LBRACK_COLON] = ACTIONS(7619), }, [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), + [sym_attribute_specifier] = STATE(2897), + [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(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(7672), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7672), + [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(7672), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7672), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_template] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_DASH_GT_STAR] = ACTIONS(7674), + [anon_sym_LBRACK_COLON] = ACTIONS(7674), }, [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), + [sym_attribute_specifier] = STATE(2920), + [sym_identifier] = ACTIONS(7692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7694), + [anon_sym_COMMA] = ACTIONS(7694), + [anon_sym_RPAREN] = ACTIONS(7694), + [anon_sym_LPAREN2] = ACTIONS(7694), + [anon_sym_DASH] = ACTIONS(7692), + [anon_sym_PLUS] = ACTIONS(7692), + [anon_sym_STAR] = ACTIONS(7692), + [anon_sym_SLASH] = ACTIONS(7692), + [anon_sym_PERCENT] = ACTIONS(7692), + [anon_sym_PIPE_PIPE] = ACTIONS(7694), + [anon_sym_AMP_AMP] = ACTIONS(7694), + [anon_sym_PIPE] = ACTIONS(7692), + [anon_sym_CARET] = ACTIONS(7692), + [anon_sym_AMP] = ACTIONS(7692), + [anon_sym_EQ_EQ] = ACTIONS(7694), + [anon_sym_BANG_EQ] = ACTIONS(7694), + [anon_sym_GT] = ACTIONS(7692), + [anon_sym_GT_EQ] = ACTIONS(7694), + [anon_sym_LT_EQ] = ACTIONS(7692), + [anon_sym_LT] = ACTIONS(7692), + [anon_sym_LT_LT] = ACTIONS(7692), + [anon_sym_GT_GT] = ACTIONS(7692), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_EQ] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7692), + [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(7694), + [anon_sym_STAR_EQ] = ACTIONS(7694), + [anon_sym_SLASH_EQ] = ACTIONS(7694), + [anon_sym_PERCENT_EQ] = ACTIONS(7694), + [anon_sym_PLUS_EQ] = ACTIONS(7694), + [anon_sym_DASH_EQ] = ACTIONS(7694), + [anon_sym_LT_LT_EQ] = ACTIONS(7694), + [anon_sym_GT_GT_EQ] = ACTIONS(7694), + [anon_sym_AMP_EQ] = ACTIONS(7694), + [anon_sym_CARET_EQ] = ACTIONS(7694), + [anon_sym_PIPE_EQ] = ACTIONS(7694), + [anon_sym_and_eq] = ACTIONS(7692), + [anon_sym_or_eq] = ACTIONS(7692), + [anon_sym_xor_eq] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7694), + [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(7694), + [anon_sym_PLUS_PLUS] = ACTIONS(7694), + [anon_sym_DOT] = ACTIONS(7692), + [anon_sym_DOT_STAR] = ACTIONS(7694), + [anon_sym_DASH_GT] = ACTIONS(7692), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7692), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_template] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_DASH_GT_STAR] = ACTIONS(7694), + [anon_sym_LBRACK_COLON] = ACTIONS(7694), }, [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), + [sym_attribute_specifier] = STATE(2898), + [sym_identifier] = ACTIONS(7706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7708), + [anon_sym_COMMA] = ACTIONS(7708), + [anon_sym_RPAREN] = ACTIONS(7708), + [anon_sym_LPAREN2] = ACTIONS(7708), + [anon_sym_DASH] = ACTIONS(7706), + [anon_sym_PLUS] = ACTIONS(7706), + [anon_sym_STAR] = ACTIONS(7706), + [anon_sym_SLASH] = ACTIONS(7706), + [anon_sym_PERCENT] = ACTIONS(7706), + [anon_sym_PIPE_PIPE] = ACTIONS(7708), + [anon_sym_AMP_AMP] = ACTIONS(7708), + [anon_sym_PIPE] = ACTIONS(7706), + [anon_sym_CARET] = ACTIONS(7706), + [anon_sym_AMP] = ACTIONS(7706), + [anon_sym_EQ_EQ] = ACTIONS(7708), + [anon_sym_BANG_EQ] = ACTIONS(7708), + [anon_sym_GT] = ACTIONS(7706), + [anon_sym_GT_EQ] = ACTIONS(7708), + [anon_sym_LT_EQ] = ACTIONS(7706), + [anon_sym_LT] = ACTIONS(7706), + [anon_sym_LT_LT] = ACTIONS(7706), + [anon_sym_GT_GT] = ACTIONS(7706), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym___attribute__] = ACTIONS(8086), + [anon_sym___attribute] = ACTIONS(8086), + [anon_sym_COLON_COLON] = ACTIONS(7708), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_EQ] = ACTIONS(7706), + [anon_sym_const] = ACTIONS(7706), + [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(7708), + [anon_sym_STAR_EQ] = ACTIONS(7708), + [anon_sym_SLASH_EQ] = ACTIONS(7708), + [anon_sym_PERCENT_EQ] = ACTIONS(7708), + [anon_sym_PLUS_EQ] = ACTIONS(7708), + [anon_sym_DASH_EQ] = ACTIONS(7708), + [anon_sym_LT_LT_EQ] = ACTIONS(7708), + [anon_sym_GT_GT_EQ] = ACTIONS(7708), + [anon_sym_AMP_EQ] = ACTIONS(7708), + [anon_sym_CARET_EQ] = ACTIONS(7708), + [anon_sym_PIPE_EQ] = ACTIONS(7708), + [anon_sym_and_eq] = ACTIONS(7706), + [anon_sym_or_eq] = ACTIONS(7706), + [anon_sym_xor_eq] = ACTIONS(7706), + [anon_sym_LT_EQ_GT] = ACTIONS(7708), + [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(7708), + [anon_sym_PLUS_PLUS] = ACTIONS(7708), + [anon_sym_DOT] = ACTIONS(7706), + [anon_sym_DOT_STAR] = ACTIONS(7708), + [anon_sym_DASH_GT] = ACTIONS(7706), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7706), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_template] = ACTIONS(7706), + [anon_sym_requires] = ACTIONS(7706), + [anon_sym_DASH_GT_STAR] = ACTIONS(7708), + [anon_sym_LBRACK_COLON] = ACTIONS(7708), }, [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), - [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_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__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9756), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10341), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10341), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_attribute_specifier] = STATE(3046), + [sym_identifier] = ACTIONS(7574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7576), + [anon_sym_COMMA] = ACTIONS(7576), + [anon_sym_LPAREN2] = ACTIONS(7576), + [anon_sym_DASH] = ACTIONS(7574), + [anon_sym_PLUS] = ACTIONS(7574), + [anon_sym_STAR] = ACTIONS(7574), + [anon_sym_SLASH] = ACTIONS(7574), + [anon_sym_PERCENT] = ACTIONS(7574), + [anon_sym_PIPE_PIPE] = ACTIONS(7576), + [anon_sym_AMP_AMP] = ACTIONS(7576), + [anon_sym_PIPE] = ACTIONS(7574), + [anon_sym_CARET] = ACTIONS(7574), + [anon_sym_AMP] = ACTIONS(7574), + [anon_sym_EQ_EQ] = ACTIONS(7576), + [anon_sym_BANG_EQ] = ACTIONS(7576), + [anon_sym_GT] = ACTIONS(7574), + [anon_sym_GT_EQ] = ACTIONS(7576), + [anon_sym_LT_EQ] = ACTIONS(7574), + [anon_sym_LT] = ACTIONS(7574), + [anon_sym_LT_LT] = ACTIONS(7574), + [anon_sym_GT_GT] = ACTIONS(7574), + [anon_sym___extension__] = ACTIONS(7574), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7576), + [anon_sym_LBRACK] = ACTIONS(7574), + [anon_sym_RBRACK] = ACTIONS(7576), + [anon_sym_EQ] = ACTIONS(7574), + [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(7574), + [anon_sym__Alignas] = ACTIONS(7574), + [anon_sym_QMARK] = ACTIONS(7576), + [anon_sym_STAR_EQ] = ACTIONS(7576), + [anon_sym_SLASH_EQ] = ACTIONS(7576), + [anon_sym_PERCENT_EQ] = ACTIONS(7576), + [anon_sym_PLUS_EQ] = ACTIONS(7576), + [anon_sym_DASH_EQ] = ACTIONS(7576), + [anon_sym_LT_LT_EQ] = ACTIONS(7576), + [anon_sym_GT_GT_EQ] = ACTIONS(7576), + [anon_sym_AMP_EQ] = ACTIONS(7576), + [anon_sym_CARET_EQ] = ACTIONS(7576), + [anon_sym_PIPE_EQ] = ACTIONS(7576), + [anon_sym_and_eq] = ACTIONS(7574), + [anon_sym_or_eq] = ACTIONS(7574), + [anon_sym_xor_eq] = ACTIONS(7574), + [anon_sym_LT_EQ_GT] = ACTIONS(7576), + [anon_sym_or] = ACTIONS(7574), + [anon_sym_and] = ACTIONS(7574), + [anon_sym_bitor] = ACTIONS(7574), + [anon_sym_xor] = ACTIONS(7574), + [anon_sym_bitand] = ACTIONS(7574), + [anon_sym_not_eq] = ACTIONS(7574), + [anon_sym_DASH_DASH] = ACTIONS(7576), + [anon_sym_PLUS_PLUS] = ACTIONS(7576), + [anon_sym_DOT] = ACTIONS(7574), + [anon_sym_DOT_STAR] = ACTIONS(7576), + [anon_sym_DASH_GT] = ACTIONS(7576), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7574), + [anon_sym_final] = ACTIONS(7574), + [anon_sym_override] = ACTIONS(7574), + [anon_sym_template] = ACTIONS(7574), + [anon_sym_requires] = ACTIONS(7574), + [anon_sym_LBRACK_COLON] = ACTIONS(7576), }, [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), + [sym_attribute_specifier] = STATE(3049), + [sym_identifier] = ACTIONS(7578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7580), + [anon_sym_COMMA] = ACTIONS(7580), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym_DASH] = ACTIONS(7578), + [anon_sym_PLUS] = ACTIONS(7578), + [anon_sym_STAR] = ACTIONS(7578), + [anon_sym_SLASH] = ACTIONS(7578), + [anon_sym_PERCENT] = ACTIONS(7578), + [anon_sym_PIPE_PIPE] = ACTIONS(7580), + [anon_sym_AMP_AMP] = ACTIONS(7580), + [anon_sym_PIPE] = ACTIONS(7578), + [anon_sym_CARET] = ACTIONS(7578), + [anon_sym_AMP] = ACTIONS(7578), + [anon_sym_EQ_EQ] = ACTIONS(7580), + [anon_sym_BANG_EQ] = ACTIONS(7580), + [anon_sym_GT] = ACTIONS(7578), + [anon_sym_GT_EQ] = ACTIONS(7580), + [anon_sym_LT_EQ] = ACTIONS(7578), + [anon_sym_LT] = ACTIONS(7578), + [anon_sym_LT_LT] = ACTIONS(7578), + [anon_sym_GT_GT] = ACTIONS(7578), + [anon_sym___extension__] = ACTIONS(7578), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7580), + [anon_sym_LBRACK] = ACTIONS(7578), + [anon_sym_RBRACK] = ACTIONS(7580), + [anon_sym_EQ] = ACTIONS(7578), + [anon_sym_const] = ACTIONS(7578), + [anon_sym_constexpr] = ACTIONS(7578), + [anon_sym_volatile] = ACTIONS(7578), + [anon_sym_restrict] = ACTIONS(7578), + [anon_sym___restrict__] = ACTIONS(7578), + [anon_sym__Atomic] = ACTIONS(7578), + [anon_sym__Noreturn] = ACTIONS(7578), + [anon_sym_noreturn] = ACTIONS(7578), + [anon_sym__Nonnull] = ACTIONS(7578), + [anon_sym_mutable] = ACTIONS(7578), + [anon_sym_constinit] = ACTIONS(7578), + [anon_sym_consteval] = ACTIONS(7578), + [anon_sym_alignas] = ACTIONS(7578), + [anon_sym__Alignas] = ACTIONS(7578), + [anon_sym_QMARK] = ACTIONS(7580), + [anon_sym_STAR_EQ] = ACTIONS(7580), + [anon_sym_SLASH_EQ] = ACTIONS(7580), + [anon_sym_PERCENT_EQ] = ACTIONS(7580), + [anon_sym_PLUS_EQ] = ACTIONS(7580), + [anon_sym_DASH_EQ] = ACTIONS(7580), + [anon_sym_LT_LT_EQ] = ACTIONS(7580), + [anon_sym_GT_GT_EQ] = ACTIONS(7580), + [anon_sym_AMP_EQ] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(7580), + [anon_sym_PIPE_EQ] = ACTIONS(7580), + [anon_sym_and_eq] = ACTIONS(7578), + [anon_sym_or_eq] = ACTIONS(7578), + [anon_sym_xor_eq] = ACTIONS(7578), + [anon_sym_LT_EQ_GT] = ACTIONS(7580), + [anon_sym_or] = ACTIONS(7578), + [anon_sym_and] = ACTIONS(7578), + [anon_sym_bitor] = ACTIONS(7578), + [anon_sym_xor] = ACTIONS(7578), + [anon_sym_bitand] = ACTIONS(7578), + [anon_sym_not_eq] = ACTIONS(7578), + [anon_sym_DASH_DASH] = ACTIONS(7580), + [anon_sym_PLUS_PLUS] = ACTIONS(7580), + [anon_sym_DOT] = ACTIONS(7578), + [anon_sym_DOT_STAR] = ACTIONS(7580), + [anon_sym_DASH_GT] = ACTIONS(7580), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7578), + [anon_sym_final] = ACTIONS(7578), + [anon_sym_override] = ACTIONS(7578), + [anon_sym_template] = ACTIONS(7578), + [anon_sym_requires] = ACTIONS(7578), + [anon_sym_LBRACK_COLON] = ACTIONS(7580), }, [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___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_LT_EQ_GT] = ACTIONS(6610), - [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), - [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_attribute_specifier] = STATE(3054), + [sym_identifier] = ACTIONS(7676), + [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(7676), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7676), + [anon_sym_RBRACK] = 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_decltype] = ACTIONS(7676), + [anon_sym_final] = ACTIONS(7676), + [anon_sym_override] = ACTIONS(7676), + [anon_sym_template] = ACTIONS(7676), + [anon_sym_requires] = ACTIONS(7676), + [anon_sym_LBRACK_COLON] = ACTIONS(7678), }, [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), + [sym_attribute_specifier] = STATE(3057), + [sym_identifier] = ACTIONS(7617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7619), + [anon_sym_COMMA] = ACTIONS(7619), + [anon_sym_LPAREN2] = ACTIONS(7619), + [anon_sym_DASH] = ACTIONS(7617), + [anon_sym_PLUS] = ACTIONS(7617), + [anon_sym_STAR] = ACTIONS(7617), + [anon_sym_SLASH] = ACTIONS(7617), + [anon_sym_PERCENT] = ACTIONS(7617), + [anon_sym_PIPE_PIPE] = ACTIONS(7619), + [anon_sym_AMP_AMP] = ACTIONS(7619), + [anon_sym_PIPE] = ACTIONS(7617), + [anon_sym_CARET] = ACTIONS(7617), + [anon_sym_AMP] = ACTIONS(7617), + [anon_sym_EQ_EQ] = ACTIONS(7619), + [anon_sym_BANG_EQ] = ACTIONS(7619), + [anon_sym_GT] = ACTIONS(7617), + [anon_sym_GT_EQ] = ACTIONS(7619), + [anon_sym_LT_EQ] = ACTIONS(7617), + [anon_sym_LT] = ACTIONS(7617), + [anon_sym_LT_LT] = ACTIONS(7617), + [anon_sym_GT_GT] = ACTIONS(7617), + [anon_sym___extension__] = ACTIONS(7617), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7619), + [anon_sym_LBRACK] = ACTIONS(7617), + [anon_sym_RBRACK] = ACTIONS(7619), + [anon_sym_EQ] = ACTIONS(7617), + [anon_sym_const] = ACTIONS(7617), + [anon_sym_constexpr] = ACTIONS(7617), + [anon_sym_volatile] = ACTIONS(7617), + [anon_sym_restrict] = ACTIONS(7617), + [anon_sym___restrict__] = ACTIONS(7617), + [anon_sym__Atomic] = ACTIONS(7617), + [anon_sym__Noreturn] = ACTIONS(7617), + [anon_sym_noreturn] = ACTIONS(7617), + [anon_sym__Nonnull] = ACTIONS(7617), + [anon_sym_mutable] = ACTIONS(7617), + [anon_sym_constinit] = ACTIONS(7617), + [anon_sym_consteval] = ACTIONS(7617), + [anon_sym_alignas] = ACTIONS(7617), + [anon_sym__Alignas] = ACTIONS(7617), + [anon_sym_QMARK] = ACTIONS(7619), + [anon_sym_STAR_EQ] = ACTIONS(7619), + [anon_sym_SLASH_EQ] = ACTIONS(7619), + [anon_sym_PERCENT_EQ] = ACTIONS(7619), + [anon_sym_PLUS_EQ] = ACTIONS(7619), + [anon_sym_DASH_EQ] = ACTIONS(7619), + [anon_sym_LT_LT_EQ] = ACTIONS(7619), + [anon_sym_GT_GT_EQ] = ACTIONS(7619), + [anon_sym_AMP_EQ] = ACTIONS(7619), + [anon_sym_CARET_EQ] = ACTIONS(7619), + [anon_sym_PIPE_EQ] = ACTIONS(7619), + [anon_sym_and_eq] = ACTIONS(7617), + [anon_sym_or_eq] = ACTIONS(7617), + [anon_sym_xor_eq] = ACTIONS(7617), + [anon_sym_LT_EQ_GT] = ACTIONS(7619), + [anon_sym_or] = ACTIONS(7617), + [anon_sym_and] = ACTIONS(7617), + [anon_sym_bitor] = ACTIONS(7617), + [anon_sym_xor] = ACTIONS(7617), + [anon_sym_bitand] = ACTIONS(7617), + [anon_sym_not_eq] = ACTIONS(7617), + [anon_sym_DASH_DASH] = ACTIONS(7619), + [anon_sym_PLUS_PLUS] = ACTIONS(7619), + [anon_sym_DOT] = ACTIONS(7617), + [anon_sym_DOT_STAR] = ACTIONS(7619), + [anon_sym_DASH_GT] = ACTIONS(7619), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7617), + [anon_sym_final] = ACTIONS(7617), + [anon_sym_override] = ACTIONS(7617), + [anon_sym_template] = ACTIONS(7617), + [anon_sym_requires] = ACTIONS(7617), + [anon_sym_LBRACK_COLON] = ACTIONS(7619), }, [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), + [sym_type_qualifier] = STATE(2887), + [sym_alignas_qualifier] = STATE(3302), + [aux_sym__type_definition_type_repeat1] = STATE(2887), + [aux_sym_sized_type_specifier_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_RPAREN] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7025), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7025), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7025), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7025), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym___extension__] = ACTIONS(8605), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(8607), + [anon_sym_unsigned] = ACTIONS(8607), + [anon_sym_long] = ACTIONS(8607), + [anon_sym_short] = ACTIONS(8607), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(8605), + [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(8609), + [anon_sym__Alignas] = ACTIONS(8609), + [sym_primitive_type] = ACTIONS(8611), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_STAR_EQ] = ACTIONS(7023), + [anon_sym_SLASH_EQ] = ACTIONS(7023), + [anon_sym_PERCENT_EQ] = ACTIONS(7023), + [anon_sym_PLUS_EQ] = ACTIONS(7023), + [anon_sym_DASH_EQ] = ACTIONS(7023), + [anon_sym_LT_LT_EQ] = ACTIONS(7023), + [anon_sym_GT_GT_EQ] = ACTIONS(7023), + [anon_sym_AMP_EQ] = ACTIONS(7023), + [anon_sym_CARET_EQ] = ACTIONS(7023), + [anon_sym_PIPE_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7025), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7023), }, [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), + [sym_attribute_specifier] = STATE(3060), + [sym_identifier] = ACTIONS(7692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7694), + [anon_sym_COMMA] = ACTIONS(7694), + [anon_sym_LPAREN2] = ACTIONS(7694), + [anon_sym_DASH] = ACTIONS(7692), + [anon_sym_PLUS] = ACTIONS(7692), + [anon_sym_STAR] = ACTIONS(7692), + [anon_sym_SLASH] = ACTIONS(7692), + [anon_sym_PERCENT] = ACTIONS(7692), + [anon_sym_PIPE_PIPE] = ACTIONS(7694), + [anon_sym_AMP_AMP] = ACTIONS(7694), + [anon_sym_PIPE] = ACTIONS(7692), + [anon_sym_CARET] = ACTIONS(7692), + [anon_sym_AMP] = ACTIONS(7692), + [anon_sym_EQ_EQ] = ACTIONS(7694), + [anon_sym_BANG_EQ] = ACTIONS(7694), + [anon_sym_GT] = ACTIONS(7692), + [anon_sym_GT_EQ] = ACTIONS(7694), + [anon_sym_LT_EQ] = ACTIONS(7692), + [anon_sym_LT] = ACTIONS(7692), + [anon_sym_LT_LT] = ACTIONS(7692), + [anon_sym_GT_GT] = ACTIONS(7692), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_RBRACK] = ACTIONS(7694), + [anon_sym_EQ] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7692), + [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(7694), + [anon_sym_STAR_EQ] = ACTIONS(7694), + [anon_sym_SLASH_EQ] = ACTIONS(7694), + [anon_sym_PERCENT_EQ] = ACTIONS(7694), + [anon_sym_PLUS_EQ] = ACTIONS(7694), + [anon_sym_DASH_EQ] = ACTIONS(7694), + [anon_sym_LT_LT_EQ] = ACTIONS(7694), + [anon_sym_GT_GT_EQ] = ACTIONS(7694), + [anon_sym_AMP_EQ] = ACTIONS(7694), + [anon_sym_CARET_EQ] = ACTIONS(7694), + [anon_sym_PIPE_EQ] = ACTIONS(7694), + [anon_sym_and_eq] = ACTIONS(7692), + [anon_sym_or_eq] = ACTIONS(7692), + [anon_sym_xor_eq] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7694), + [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(7694), + [anon_sym_PLUS_PLUS] = ACTIONS(7694), + [anon_sym_DOT] = ACTIONS(7692), + [anon_sym_DOT_STAR] = ACTIONS(7694), + [anon_sym_DASH_GT] = ACTIONS(7694), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7692), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_template] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_LBRACK_COLON] = ACTIONS(7694), }, [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), + [sym_attribute_specifier] = STATE(3061), + [sym_identifier] = ACTIONS(7702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7704), + [anon_sym_COMMA] = ACTIONS(7704), + [anon_sym_LPAREN2] = ACTIONS(7704), + [anon_sym_DASH] = ACTIONS(7702), + [anon_sym_PLUS] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_SLASH] = ACTIONS(7702), + [anon_sym_PERCENT] = ACTIONS(7702), + [anon_sym_PIPE_PIPE] = ACTIONS(7704), + [anon_sym_AMP_AMP] = ACTIONS(7704), + [anon_sym_PIPE] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_AMP] = ACTIONS(7702), + [anon_sym_EQ_EQ] = ACTIONS(7704), + [anon_sym_BANG_EQ] = ACTIONS(7704), + [anon_sym_GT] = ACTIONS(7702), + [anon_sym_GT_EQ] = ACTIONS(7704), + [anon_sym_LT_EQ] = ACTIONS(7702), + [anon_sym_LT] = ACTIONS(7702), + [anon_sym_LT_LT] = ACTIONS(7702), + [anon_sym_GT_GT] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7704), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_RBRACK] = ACTIONS(7704), + [anon_sym_EQ] = ACTIONS(7702), + [anon_sym_const] = ACTIONS(7702), + [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(7704), + [anon_sym_STAR_EQ] = ACTIONS(7704), + [anon_sym_SLASH_EQ] = ACTIONS(7704), + [anon_sym_PERCENT_EQ] = ACTIONS(7704), + [anon_sym_PLUS_EQ] = ACTIONS(7704), + [anon_sym_DASH_EQ] = ACTIONS(7704), + [anon_sym_LT_LT_EQ] = ACTIONS(7704), + [anon_sym_GT_GT_EQ] = ACTIONS(7704), + [anon_sym_AMP_EQ] = ACTIONS(7704), + [anon_sym_CARET_EQ] = ACTIONS(7704), + [anon_sym_PIPE_EQ] = ACTIONS(7704), + [anon_sym_and_eq] = ACTIONS(7702), + [anon_sym_or_eq] = ACTIONS(7702), + [anon_sym_xor_eq] = ACTIONS(7702), + [anon_sym_LT_EQ_GT] = ACTIONS(7704), + [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(7704), + [anon_sym_PLUS_PLUS] = ACTIONS(7704), + [anon_sym_DOT] = ACTIONS(7702), + [anon_sym_DOT_STAR] = ACTIONS(7704), + [anon_sym_DASH_GT] = ACTIONS(7704), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7702), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_template] = ACTIONS(7702), + [anon_sym_requires] = ACTIONS(7702), + [anon_sym_LBRACK_COLON] = ACTIONS(7704), }, [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), + [sym_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym_ref_qualifier] = STATE(2879), + [sym__function_exception_specification] = STATE(3425), + [sym__function_attributes_end] = STATE(4892), + [sym__function_postfix] = STATE(5657), + [sym_trailing_return_type] = STATE(4991), + [sym_noexcept] = STATE(3425), + [sym_throw_specifier] = STATE(3425), + [sym_requires_clause] = STATE(5657), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(8613), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(8616), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7472), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7472), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8619), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6923), + [anon_sym_override] = ACTIONS(6923), + [anon_sym_GT2] = ACTIONS(7474), + [anon_sym_noexcept] = ACTIONS(6925), + [anon_sym_throw] = ACTIONS(6927), + [anon_sym_requires] = ACTIONS(6929), }, [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), + [sym_attribute_specifier] = STATE(2974), + [sym_identifier] = ACTIONS(7634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7636), + [anon_sym_COMMA] = ACTIONS(7636), + [anon_sym_LPAREN2] = ACTIONS(7636), + [anon_sym_DASH] = ACTIONS(7634), + [anon_sym_PLUS] = ACTIONS(7634), + [anon_sym_STAR] = ACTIONS(7634), + [anon_sym_SLASH] = ACTIONS(7634), + [anon_sym_PERCENT] = ACTIONS(7634), + [anon_sym_PIPE_PIPE] = ACTIONS(7636), + [anon_sym_AMP_AMP] = ACTIONS(7636), + [anon_sym_PIPE] = ACTIONS(7634), + [anon_sym_CARET] = ACTIONS(7634), + [anon_sym_AMP] = ACTIONS(7634), + [anon_sym_EQ_EQ] = ACTIONS(7636), + [anon_sym_BANG_EQ] = ACTIONS(7636), + [anon_sym_GT] = ACTIONS(7634), + [anon_sym_GT_EQ] = ACTIONS(7636), + [anon_sym_LT_EQ] = ACTIONS(7634), + [anon_sym_LT] = ACTIONS(7634), + [anon_sym_LT_LT] = ACTIONS(7634), + [anon_sym_GT_GT] = ACTIONS(7634), + [anon_sym___extension__] = ACTIONS(7634), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7636), + [anon_sym_LBRACK] = ACTIONS(7634), + [anon_sym_RBRACK] = ACTIONS(7636), + [anon_sym_EQ] = ACTIONS(7634), + [anon_sym_const] = ACTIONS(7634), + [anon_sym_constexpr] = ACTIONS(7634), + [anon_sym_volatile] = ACTIONS(7634), + [anon_sym_restrict] = ACTIONS(7634), + [anon_sym___restrict__] = ACTIONS(7634), + [anon_sym__Atomic] = ACTIONS(7634), + [anon_sym__Noreturn] = ACTIONS(7634), + [anon_sym_noreturn] = ACTIONS(7634), + [anon_sym__Nonnull] = ACTIONS(7634), + [anon_sym_mutable] = ACTIONS(7634), + [anon_sym_constinit] = ACTIONS(7634), + [anon_sym_consteval] = ACTIONS(7634), + [anon_sym_alignas] = ACTIONS(7634), + [anon_sym__Alignas] = ACTIONS(7634), + [anon_sym_QMARK] = ACTIONS(7636), + [anon_sym_STAR_EQ] = ACTIONS(7636), + [anon_sym_SLASH_EQ] = ACTIONS(7636), + [anon_sym_PERCENT_EQ] = ACTIONS(7636), + [anon_sym_PLUS_EQ] = ACTIONS(7636), + [anon_sym_DASH_EQ] = ACTIONS(7636), + [anon_sym_LT_LT_EQ] = ACTIONS(7636), + [anon_sym_GT_GT_EQ] = ACTIONS(7636), + [anon_sym_AMP_EQ] = ACTIONS(7636), + [anon_sym_CARET_EQ] = ACTIONS(7636), + [anon_sym_PIPE_EQ] = ACTIONS(7636), + [anon_sym_and_eq] = ACTIONS(7634), + [anon_sym_or_eq] = ACTIONS(7634), + [anon_sym_xor_eq] = ACTIONS(7634), + [anon_sym_LT_EQ_GT] = ACTIONS(7636), + [anon_sym_or] = ACTIONS(7634), + [anon_sym_and] = ACTIONS(7634), + [anon_sym_bitor] = ACTIONS(7634), + [anon_sym_xor] = ACTIONS(7634), + [anon_sym_bitand] = ACTIONS(7634), + [anon_sym_not_eq] = ACTIONS(7634), + [anon_sym_DASH_DASH] = ACTIONS(7636), + [anon_sym_PLUS_PLUS] = ACTIONS(7636), + [anon_sym_DOT] = ACTIONS(7634), + [anon_sym_DOT_STAR] = ACTIONS(7636), + [anon_sym_DASH_GT] = ACTIONS(7636), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7634), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_template] = ACTIONS(7634), + [anon_sym_requires] = ACTIONS(7634), + [anon_sym_LBRACK_COLON] = ACTIONS(7636), }, [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), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_RBRACK] = ACTIONS(7292), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7292), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_and_eq] = ACTIONS(7290), + [anon_sym_or_eq] = ACTIONS(7290), + [anon_sym_xor_eq] = ACTIONS(7290), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), }, [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), + [sym_attribute_specifier] = STATE(3066), + [sym_identifier] = ACTIONS(7672), + [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(7672), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7672), + [anon_sym_RBRACK] = 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_decltype] = ACTIONS(7672), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_template] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_LBRACK_COLON] = ACTIONS(7674), }, [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), + [sym_attribute_specifier] = STATE(3067), + [sym_identifier] = ACTIONS(7680), + [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(7680), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7680), + [anon_sym_RBRACK] = 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_decltype] = ACTIONS(7680), + [anon_sym_final] = ACTIONS(7680), + [anon_sym_override] = ACTIONS(7680), + [anon_sym_template] = ACTIONS(7680), + [anon_sym_requires] = ACTIONS(7680), + [anon_sym_LBRACK_COLON] = ACTIONS(7682), }, [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), + [sym_attribute_specifier] = STATE(3068), + [sym_identifier] = ACTIONS(7688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7690), + [anon_sym_COMMA] = ACTIONS(7690), + [anon_sym_LPAREN2] = ACTIONS(7690), + [anon_sym_DASH] = ACTIONS(7688), + [anon_sym_PLUS] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7688), + [anon_sym_SLASH] = ACTIONS(7688), + [anon_sym_PERCENT] = ACTIONS(7688), + [anon_sym_PIPE_PIPE] = ACTIONS(7690), + [anon_sym_AMP_AMP] = ACTIONS(7690), + [anon_sym_PIPE] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7688), + [anon_sym_AMP] = ACTIONS(7688), + [anon_sym_EQ_EQ] = ACTIONS(7690), + [anon_sym_BANG_EQ] = ACTIONS(7690), + [anon_sym_GT] = ACTIONS(7688), + [anon_sym_GT_EQ] = ACTIONS(7690), + [anon_sym_LT_EQ] = ACTIONS(7688), + [anon_sym_LT] = ACTIONS(7688), + [anon_sym_LT_LT] = ACTIONS(7688), + [anon_sym_GT_GT] = ACTIONS(7688), + [anon_sym___extension__] = ACTIONS(7688), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7690), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym_RBRACK] = ACTIONS(7690), + [anon_sym_EQ] = ACTIONS(7688), + [anon_sym_const] = ACTIONS(7688), + [anon_sym_constexpr] = ACTIONS(7688), + [anon_sym_volatile] = ACTIONS(7688), + [anon_sym_restrict] = ACTIONS(7688), + [anon_sym___restrict__] = ACTIONS(7688), + [anon_sym__Atomic] = ACTIONS(7688), + [anon_sym__Noreturn] = ACTIONS(7688), + [anon_sym_noreturn] = ACTIONS(7688), + [anon_sym__Nonnull] = ACTIONS(7688), + [anon_sym_mutable] = ACTIONS(7688), + [anon_sym_constinit] = ACTIONS(7688), + [anon_sym_consteval] = ACTIONS(7688), + [anon_sym_alignas] = ACTIONS(7688), + [anon_sym__Alignas] = ACTIONS(7688), + [anon_sym_QMARK] = ACTIONS(7690), + [anon_sym_STAR_EQ] = ACTIONS(7690), + [anon_sym_SLASH_EQ] = ACTIONS(7690), + [anon_sym_PERCENT_EQ] = ACTIONS(7690), + [anon_sym_PLUS_EQ] = ACTIONS(7690), + [anon_sym_DASH_EQ] = ACTIONS(7690), + [anon_sym_LT_LT_EQ] = ACTIONS(7690), + [anon_sym_GT_GT_EQ] = ACTIONS(7690), + [anon_sym_AMP_EQ] = ACTIONS(7690), + [anon_sym_CARET_EQ] = ACTIONS(7690), + [anon_sym_PIPE_EQ] = ACTIONS(7690), + [anon_sym_and_eq] = ACTIONS(7688), + [anon_sym_or_eq] = ACTIONS(7688), + [anon_sym_xor_eq] = ACTIONS(7688), + [anon_sym_LT_EQ_GT] = ACTIONS(7690), + [anon_sym_or] = ACTIONS(7688), + [anon_sym_and] = ACTIONS(7688), + [anon_sym_bitor] = ACTIONS(7688), + [anon_sym_xor] = ACTIONS(7688), + [anon_sym_bitand] = ACTIONS(7688), + [anon_sym_not_eq] = ACTIONS(7688), + [anon_sym_DASH_DASH] = ACTIONS(7690), + [anon_sym_PLUS_PLUS] = ACTIONS(7690), + [anon_sym_DOT] = ACTIONS(7688), + [anon_sym_DOT_STAR] = ACTIONS(7690), + [anon_sym_DASH_GT] = ACTIONS(7690), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7688), + [anon_sym_final] = ACTIONS(7688), + [anon_sym_override] = ACTIONS(7688), + [anon_sym_template] = ACTIONS(7688), + [anon_sym_requires] = ACTIONS(7688), + [anon_sym_LBRACK_COLON] = ACTIONS(7690), }, [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), + [sym_identifier] = ACTIONS(7790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7792), + [anon_sym_COMMA] = ACTIONS(7792), + [anon_sym_RPAREN] = ACTIONS(7792), + [anon_sym_LPAREN2] = ACTIONS(7792), + [anon_sym_DASH] = ACTIONS(7790), + [anon_sym_PLUS] = ACTIONS(7790), + [anon_sym_STAR] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7790), + [anon_sym_PERCENT] = ACTIONS(7790), + [anon_sym_PIPE_PIPE] = ACTIONS(7792), + [anon_sym_AMP_AMP] = ACTIONS(7792), + [anon_sym_PIPE] = ACTIONS(7790), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_AMP] = ACTIONS(7790), + [anon_sym_EQ_EQ] = ACTIONS(7792), + [anon_sym_BANG_EQ] = ACTIONS(7792), + [anon_sym_GT] = ACTIONS(7790), + [anon_sym_GT_EQ] = ACTIONS(7792), + [anon_sym_LT_EQ] = ACTIONS(7790), + [anon_sym_LT] = ACTIONS(7790), + [anon_sym_LT_LT] = ACTIONS(7790), + [anon_sym_GT_GT] = ACTIONS(7790), + [anon_sym___extension__] = ACTIONS(7790), + [anon_sym___attribute__] = ACTIONS(7790), + [anon_sym___attribute] = ACTIONS(7790), + [anon_sym_COLON_COLON] = ACTIONS(7792), + [anon_sym_LBRACK] = ACTIONS(7790), + [anon_sym_EQ] = ACTIONS(7790), + [anon_sym_const] = ACTIONS(7790), + [anon_sym_constexpr] = ACTIONS(7790), + [anon_sym_volatile] = ACTIONS(7790), + [anon_sym_restrict] = ACTIONS(7790), + [anon_sym___restrict__] = ACTIONS(7790), + [anon_sym__Atomic] = ACTIONS(7790), + [anon_sym__Noreturn] = ACTIONS(7790), + [anon_sym_noreturn] = ACTIONS(7790), + [anon_sym__Nonnull] = ACTIONS(7790), + [anon_sym_mutable] = ACTIONS(7790), + [anon_sym_constinit] = ACTIONS(7790), + [anon_sym_consteval] = ACTIONS(7790), + [anon_sym_alignas] = ACTIONS(7790), + [anon_sym__Alignas] = ACTIONS(7790), + [anon_sym_QMARK] = ACTIONS(7792), + [anon_sym_STAR_EQ] = ACTIONS(7792), + [anon_sym_SLASH_EQ] = ACTIONS(7792), + [anon_sym_PERCENT_EQ] = ACTIONS(7792), + [anon_sym_PLUS_EQ] = ACTIONS(7792), + [anon_sym_DASH_EQ] = ACTIONS(7792), + [anon_sym_LT_LT_EQ] = ACTIONS(7792), + [anon_sym_GT_GT_EQ] = ACTIONS(7792), + [anon_sym_AMP_EQ] = ACTIONS(7792), + [anon_sym_CARET_EQ] = ACTIONS(7792), + [anon_sym_PIPE_EQ] = ACTIONS(7792), + [anon_sym_and_eq] = ACTIONS(7790), + [anon_sym_or_eq] = ACTIONS(7790), + [anon_sym_xor_eq] = ACTIONS(7790), + [anon_sym_LT_EQ_GT] = ACTIONS(7792), + [anon_sym_or] = ACTIONS(7790), + [anon_sym_and] = ACTIONS(7790), + [anon_sym_bitor] = ACTIONS(7790), + [anon_sym_xor] = ACTIONS(7790), + [anon_sym_bitand] = ACTIONS(7790), + [anon_sym_not_eq] = ACTIONS(7790), + [anon_sym_DASH_DASH] = ACTIONS(7792), + [anon_sym_PLUS_PLUS] = ACTIONS(7792), + [anon_sym_DOT] = ACTIONS(7790), + [anon_sym_DOT_STAR] = ACTIONS(7792), + [anon_sym_DASH_GT] = ACTIONS(7790), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7790), + [anon_sym_final] = ACTIONS(7790), + [anon_sym_override] = ACTIONS(7790), + [anon_sym_template] = ACTIONS(7790), + [anon_sym_requires] = ACTIONS(7790), + [anon_sym_DASH_GT_STAR] = ACTIONS(7792), + [anon_sym_LBRACK_COLON] = ACTIONS(7792), }, [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), + [sym_attribute_specifier] = STATE(3070), + [sym_identifier] = ACTIONS(7706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7708), + [anon_sym_COMMA] = ACTIONS(7708), + [anon_sym_LPAREN2] = ACTIONS(7708), + [anon_sym_DASH] = ACTIONS(7706), + [anon_sym_PLUS] = ACTIONS(7706), + [anon_sym_STAR] = ACTIONS(7706), + [anon_sym_SLASH] = ACTIONS(7706), + [anon_sym_PERCENT] = ACTIONS(7706), + [anon_sym_PIPE_PIPE] = ACTIONS(7708), + [anon_sym_AMP_AMP] = ACTIONS(7708), + [anon_sym_PIPE] = ACTIONS(7706), + [anon_sym_CARET] = ACTIONS(7706), + [anon_sym_AMP] = ACTIONS(7706), + [anon_sym_EQ_EQ] = ACTIONS(7708), + [anon_sym_BANG_EQ] = ACTIONS(7708), + [anon_sym_GT] = ACTIONS(7706), + [anon_sym_GT_EQ] = ACTIONS(7708), + [anon_sym_LT_EQ] = ACTIONS(7706), + [anon_sym_LT] = ACTIONS(7706), + [anon_sym_LT_LT] = ACTIONS(7706), + [anon_sym_GT_GT] = ACTIONS(7706), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7708), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_RBRACK] = ACTIONS(7708), + [anon_sym_EQ] = ACTIONS(7706), + [anon_sym_const] = ACTIONS(7706), + [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(7708), + [anon_sym_STAR_EQ] = ACTIONS(7708), + [anon_sym_SLASH_EQ] = ACTIONS(7708), + [anon_sym_PERCENT_EQ] = ACTIONS(7708), + [anon_sym_PLUS_EQ] = ACTIONS(7708), + [anon_sym_DASH_EQ] = ACTIONS(7708), + [anon_sym_LT_LT_EQ] = ACTIONS(7708), + [anon_sym_GT_GT_EQ] = ACTIONS(7708), + [anon_sym_AMP_EQ] = ACTIONS(7708), + [anon_sym_CARET_EQ] = ACTIONS(7708), + [anon_sym_PIPE_EQ] = ACTIONS(7708), + [anon_sym_and_eq] = ACTIONS(7706), + [anon_sym_or_eq] = ACTIONS(7706), + [anon_sym_xor_eq] = ACTIONS(7706), + [anon_sym_LT_EQ_GT] = ACTIONS(7708), + [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(7708), + [anon_sym_PLUS_PLUS] = ACTIONS(7708), + [anon_sym_DOT] = ACTIONS(7706), + [anon_sym_DOT_STAR] = ACTIONS(7708), + [anon_sym_DASH_GT] = ACTIONS(7708), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7706), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_template] = ACTIONS(7706), + [anon_sym_requires] = ACTIONS(7706), + [anon_sym_LBRACK_COLON] = ACTIONS(7708), }, [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_attribute_specifier] = STATE(3071), + [sym_identifier] = ACTIONS(7570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7572), + [anon_sym_COMMA] = ACTIONS(7572), + [anon_sym_LPAREN2] = ACTIONS(7572), + [anon_sym_DASH] = ACTIONS(7570), + [anon_sym_PLUS] = ACTIONS(7570), + [anon_sym_STAR] = ACTIONS(7570), + [anon_sym_SLASH] = ACTIONS(7570), + [anon_sym_PERCENT] = ACTIONS(7570), + [anon_sym_PIPE_PIPE] = ACTIONS(7572), + [anon_sym_AMP_AMP] = ACTIONS(7572), + [anon_sym_PIPE] = ACTIONS(7570), + [anon_sym_CARET] = ACTIONS(7570), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7572), + [anon_sym_BANG_EQ] = ACTIONS(7572), + [anon_sym_GT] = ACTIONS(7570), + [anon_sym_GT_EQ] = ACTIONS(7572), + [anon_sym_LT_EQ] = ACTIONS(7570), + [anon_sym_LT] = ACTIONS(7570), + [anon_sym_LT_LT] = ACTIONS(7570), + [anon_sym_GT_GT] = ACTIONS(7570), + [anon_sym___extension__] = ACTIONS(7570), + [anon_sym___attribute__] = ACTIONS(8187), + [anon_sym___attribute] = ACTIONS(8187), + [anon_sym_COLON_COLON] = ACTIONS(7572), + [anon_sym_LBRACK] = ACTIONS(7570), + [anon_sym_RBRACK] = ACTIONS(7572), + [anon_sym_EQ] = ACTIONS(7570), + [anon_sym_const] = ACTIONS(7570), + [anon_sym_constexpr] = ACTIONS(7570), + [anon_sym_volatile] = ACTIONS(7570), + [anon_sym_restrict] = ACTIONS(7570), + [anon_sym___restrict__] = ACTIONS(7570), + [anon_sym__Atomic] = ACTIONS(7570), + [anon_sym__Noreturn] = ACTIONS(7570), + [anon_sym_noreturn] = ACTIONS(7570), + [anon_sym__Nonnull] = ACTIONS(7570), + [anon_sym_mutable] = ACTIONS(7570), + [anon_sym_constinit] = ACTIONS(7570), + [anon_sym_consteval] = ACTIONS(7570), + [anon_sym_alignas] = ACTIONS(7570), + [anon_sym__Alignas] = ACTIONS(7570), + [anon_sym_QMARK] = ACTIONS(7572), + [anon_sym_STAR_EQ] = ACTIONS(7572), + [anon_sym_SLASH_EQ] = ACTIONS(7572), + [anon_sym_PERCENT_EQ] = ACTIONS(7572), + [anon_sym_PLUS_EQ] = ACTIONS(7572), + [anon_sym_DASH_EQ] = ACTIONS(7572), + [anon_sym_LT_LT_EQ] = ACTIONS(7572), + [anon_sym_GT_GT_EQ] = ACTIONS(7572), + [anon_sym_AMP_EQ] = ACTIONS(7572), + [anon_sym_CARET_EQ] = ACTIONS(7572), + [anon_sym_PIPE_EQ] = ACTIONS(7572), + [anon_sym_and_eq] = ACTIONS(7570), + [anon_sym_or_eq] = ACTIONS(7570), + [anon_sym_xor_eq] = ACTIONS(7570), + [anon_sym_LT_EQ_GT] = ACTIONS(7572), + [anon_sym_or] = ACTIONS(7570), + [anon_sym_and] = ACTIONS(7570), + [anon_sym_bitor] = ACTIONS(7570), + [anon_sym_xor] = ACTIONS(7570), + [anon_sym_bitand] = ACTIONS(7570), + [anon_sym_not_eq] = ACTIONS(7570), + [anon_sym_DASH_DASH] = ACTIONS(7572), + [anon_sym_PLUS_PLUS] = ACTIONS(7572), + [anon_sym_DOT] = ACTIONS(7570), + [anon_sym_DOT_STAR] = ACTIONS(7572), + [anon_sym_DASH_GT] = ACTIONS(7572), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7570), + [anon_sym_final] = ACTIONS(7570), + [anon_sym_override] = ACTIONS(7570), + [anon_sym_template] = ACTIONS(7570), + [anon_sym_requires] = ACTIONS(7570), + [anon_sym_LBRACK_COLON] = ACTIONS(7572), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2734), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8622), + [anon_sym_unsigned] = ACTIONS(8622), + [anon_sym_long] = ACTIONS(8622), + [anon_sym_short] = ACTIONS(8622), + [anon_sym_LBRACK] = ACTIONS(7175), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7173), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7175), }, [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_string_literal] = STATE(2884), + [sym_template_argument_list] = STATE(4042), + [sym_raw_string_literal] = STATE(2884), + [sym_identifier] = ACTIONS(5671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5663), + [aux_sym_preproc_if_token2] = ACTIONS(5663), + [aux_sym_preproc_else_token1] = ACTIONS(5663), + [aux_sym_preproc_elif_token1] = ACTIONS(5671), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5663), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(8625), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5663), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5671), + [anon_sym_or_eq] = ACTIONS(5671), + [anon_sym_xor_eq] = ACTIONS(5671), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [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(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), + [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(5663), }, [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_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym__function_exception_specification] = STATE(3334), + [sym__function_attributes_end] = STATE(4806), + [sym__function_postfix] = STATE(5368), + [sym_trailing_return_type] = STATE(4919), + [sym_noexcept] = STATE(3334), + [sym_throw_specifier] = STATE(3334), + [sym_requires_clause] = STATE(5368), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8528), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6882), + [anon_sym_requires] = ACTIONS(6884), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [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__abstract_declarator] = STATE(7666), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(4421), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2449), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9637), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(7915), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(7917), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(7919), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [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(6612), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7921), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_type_qualifier] = STATE(2802), + [sym_alignas_qualifier] = STATE(3022), + [aux_sym__type_definition_type_repeat1] = STATE(2802), + [sym_identifier] = ACTIONS(7057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_RPAREN] = ACTIONS(7059), + [aux_sym_preproc_if_token2] = ACTIONS(7059), + [aux_sym_preproc_else_token1] = ACTIONS(7059), + [aux_sym_preproc_elif_token1] = ACTIONS(7057), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7059), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7059), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7059), + [anon_sym_GT_GT] = ACTIONS(7059), + [anon_sym_SEMI] = ACTIONS(7059), + [anon_sym___extension__] = ACTIONS(7588), + [anon_sym___attribute__] = ACTIONS(7057), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_COLON] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7059), + [anon_sym_RBRACE] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(7588), + [anon_sym_constexpr] = ACTIONS(7588), + [anon_sym_volatile] = ACTIONS(7588), + [anon_sym_restrict] = ACTIONS(7588), + [anon_sym___restrict__] = ACTIONS(7588), + [anon_sym__Atomic] = ACTIONS(7588), + [anon_sym__Noreturn] = ACTIONS(7588), + [anon_sym_noreturn] = ACTIONS(7588), + [anon_sym__Nonnull] = ACTIONS(7588), + [anon_sym_mutable] = ACTIONS(7588), + [anon_sym_constinit] = ACTIONS(7588), + [anon_sym_consteval] = ACTIONS(7588), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7057), + [anon_sym_and] = ACTIONS(7057), + [anon_sym_bitor] = ACTIONS(7057), + [anon_sym_xor] = ACTIONS(7057), + [anon_sym_bitand] = ACTIONS(7057), + [anon_sym_not_eq] = ACTIONS(7057), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7057), + [anon_sym___asm__] = ACTIONS(7057), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7057), + [anon_sym_override] = ACTIONS(7057), + [anon_sym_noexcept] = ACTIONS(7057), + [anon_sym_throw] = ACTIONS(7057), + [anon_sym_requires] = ACTIONS(7057), + [anon_sym_COLON_RBRACK] = ACTIONS(7059), }, [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(2722), + [sym_alignas_qualifier] = STATE(3302), + [aux_sym__type_definition_type_repeat1] = STATE(2722), + [aux_sym_sized_type_specifier_repeat1] = STATE(2992), + [sym_identifier] = ACTIONS(8628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6936), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6936), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6936), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(8605), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(8630), + [anon_sym_unsigned] = ACTIONS(8630), + [anon_sym_long] = ACTIONS(8630), + [anon_sym_short] = ACTIONS(8630), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_EQ] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(8605), + [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(8609), + [anon_sym__Alignas] = ACTIONS(8609), + [sym_primitive_type] = ACTIONS(8632), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_STAR_EQ] = ACTIONS(6934), + [anon_sym_SLASH_EQ] = ACTIONS(6934), + [anon_sym_PERCENT_EQ] = ACTIONS(6934), + [anon_sym_PLUS_EQ] = ACTIONS(6934), + [anon_sym_DASH_EQ] = ACTIONS(6934), + [anon_sym_LT_LT_EQ] = ACTIONS(6934), + [anon_sym_GT_GT_EQ] = ACTIONS(6934), + [anon_sym_AMP_EQ] = ACTIONS(6934), + [anon_sym_CARET_EQ] = ACTIONS(6934), + [anon_sym_PIPE_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6936), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6934), }, [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__abstract_declarator] = STATE(7643), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(4421), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2449), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9637), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(7915), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(7917), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(7919), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [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(6600), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7921), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6600), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_attribute_specifier] = STATE(2993), + [sym_identifier] = ACTIONS(7574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7576), + [anon_sym_COMMA] = ACTIONS(7576), + [anon_sym_LPAREN2] = ACTIONS(7576), + [anon_sym_DASH] = ACTIONS(7574), + [anon_sym_PLUS] = ACTIONS(7574), + [anon_sym_STAR] = ACTIONS(7574), + [anon_sym_SLASH] = ACTIONS(7574), + [anon_sym_PERCENT] = ACTIONS(7574), + [anon_sym_PIPE_PIPE] = ACTIONS(7576), + [anon_sym_AMP_AMP] = ACTIONS(7576), + [anon_sym_PIPE] = ACTIONS(7574), + [anon_sym_CARET] = ACTIONS(7574), + [anon_sym_AMP] = ACTIONS(7574), + [anon_sym_EQ_EQ] = ACTIONS(7576), + [anon_sym_BANG_EQ] = ACTIONS(7576), + [anon_sym_GT] = ACTIONS(7574), + [anon_sym_GT_EQ] = ACTIONS(7574), + [anon_sym_LT_EQ] = ACTIONS(7574), + [anon_sym_LT] = ACTIONS(7574), + [anon_sym_LT_LT] = ACTIONS(7574), + [anon_sym_GT_GT] = ACTIONS(7574), + [anon_sym___extension__] = ACTIONS(7574), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7576), + [anon_sym_LBRACK] = ACTIONS(7574), + [anon_sym_EQ] = ACTIONS(7574), + [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(7574), + [anon_sym__Alignas] = ACTIONS(7574), + [anon_sym_QMARK] = ACTIONS(7576), + [anon_sym_STAR_EQ] = ACTIONS(7576), + [anon_sym_SLASH_EQ] = ACTIONS(7576), + [anon_sym_PERCENT_EQ] = ACTIONS(7576), + [anon_sym_PLUS_EQ] = ACTIONS(7576), + [anon_sym_DASH_EQ] = ACTIONS(7576), + [anon_sym_LT_LT_EQ] = ACTIONS(7576), + [anon_sym_GT_GT_EQ] = ACTIONS(7574), + [anon_sym_AMP_EQ] = ACTIONS(7576), + [anon_sym_CARET_EQ] = ACTIONS(7576), + [anon_sym_PIPE_EQ] = ACTIONS(7576), + [anon_sym_and_eq] = ACTIONS(7574), + [anon_sym_or_eq] = ACTIONS(7574), + [anon_sym_xor_eq] = ACTIONS(7574), + [anon_sym_LT_EQ_GT] = ACTIONS(7576), + [anon_sym_or] = ACTIONS(7574), + [anon_sym_and] = ACTIONS(7574), + [anon_sym_bitor] = ACTIONS(7574), + [anon_sym_xor] = ACTIONS(7574), + [anon_sym_bitand] = ACTIONS(7574), + [anon_sym_not_eq] = ACTIONS(7574), + [anon_sym_DASH_DASH] = ACTIONS(7576), + [anon_sym_PLUS_PLUS] = ACTIONS(7576), + [anon_sym_DOT] = ACTIONS(7574), + [anon_sym_DOT_STAR] = ACTIONS(7576), + [anon_sym_DASH_GT] = ACTIONS(7576), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7574), + [anon_sym_final] = ACTIONS(7574), + [anon_sym_override] = ACTIONS(7574), + [anon_sym_template] = ACTIONS(7574), + [anon_sym_GT2] = ACTIONS(7576), + [anon_sym_requires] = ACTIONS(7574), + [anon_sym_LBRACK_COLON] = ACTIONS(7576), }, [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), + [sym_attribute_specifier] = STATE(2996), + [sym_identifier] = ACTIONS(7578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7580), + [anon_sym_COMMA] = ACTIONS(7580), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym_DASH] = ACTIONS(7578), + [anon_sym_PLUS] = ACTIONS(7578), + [anon_sym_STAR] = ACTIONS(7578), + [anon_sym_SLASH] = ACTIONS(7578), + [anon_sym_PERCENT] = ACTIONS(7578), + [anon_sym_PIPE_PIPE] = ACTIONS(7580), + [anon_sym_AMP_AMP] = ACTIONS(7580), + [anon_sym_PIPE] = ACTIONS(7578), + [anon_sym_CARET] = ACTIONS(7578), + [anon_sym_AMP] = ACTIONS(7578), + [anon_sym_EQ_EQ] = ACTIONS(7580), + [anon_sym_BANG_EQ] = ACTIONS(7580), + [anon_sym_GT] = ACTIONS(7578), + [anon_sym_GT_EQ] = ACTIONS(7578), + [anon_sym_LT_EQ] = ACTIONS(7578), + [anon_sym_LT] = ACTIONS(7578), + [anon_sym_LT_LT] = ACTIONS(7578), + [anon_sym_GT_GT] = ACTIONS(7578), + [anon_sym___extension__] = ACTIONS(7578), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7580), + [anon_sym_LBRACK] = ACTIONS(7578), + [anon_sym_EQ] = ACTIONS(7578), + [anon_sym_const] = ACTIONS(7578), + [anon_sym_constexpr] = ACTIONS(7578), + [anon_sym_volatile] = ACTIONS(7578), + [anon_sym_restrict] = ACTIONS(7578), + [anon_sym___restrict__] = ACTIONS(7578), + [anon_sym__Atomic] = ACTIONS(7578), + [anon_sym__Noreturn] = ACTIONS(7578), + [anon_sym_noreturn] = ACTIONS(7578), + [anon_sym__Nonnull] = ACTIONS(7578), + [anon_sym_mutable] = ACTIONS(7578), + [anon_sym_constinit] = ACTIONS(7578), + [anon_sym_consteval] = ACTIONS(7578), + [anon_sym_alignas] = ACTIONS(7578), + [anon_sym__Alignas] = ACTIONS(7578), + [anon_sym_QMARK] = ACTIONS(7580), + [anon_sym_STAR_EQ] = ACTIONS(7580), + [anon_sym_SLASH_EQ] = ACTIONS(7580), + [anon_sym_PERCENT_EQ] = ACTIONS(7580), + [anon_sym_PLUS_EQ] = ACTIONS(7580), + [anon_sym_DASH_EQ] = ACTIONS(7580), + [anon_sym_LT_LT_EQ] = ACTIONS(7580), + [anon_sym_GT_GT_EQ] = ACTIONS(7578), + [anon_sym_AMP_EQ] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(7580), + [anon_sym_PIPE_EQ] = ACTIONS(7580), + [anon_sym_and_eq] = ACTIONS(7578), + [anon_sym_or_eq] = ACTIONS(7578), + [anon_sym_xor_eq] = ACTIONS(7578), + [anon_sym_LT_EQ_GT] = ACTIONS(7580), + [anon_sym_or] = ACTIONS(7578), + [anon_sym_and] = ACTIONS(7578), + [anon_sym_bitor] = ACTIONS(7578), + [anon_sym_xor] = ACTIONS(7578), + [anon_sym_bitand] = ACTIONS(7578), + [anon_sym_not_eq] = ACTIONS(7578), + [anon_sym_DASH_DASH] = ACTIONS(7580), + [anon_sym_PLUS_PLUS] = ACTIONS(7580), + [anon_sym_DOT] = ACTIONS(7578), + [anon_sym_DOT_STAR] = ACTIONS(7580), + [anon_sym_DASH_GT] = ACTIONS(7580), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7578), + [anon_sym_final] = ACTIONS(7578), + [anon_sym_override] = ACTIONS(7578), + [anon_sym_template] = ACTIONS(7578), + [anon_sym_GT2] = ACTIONS(7580), + [anon_sym_requires] = ACTIONS(7578), + [anon_sym_LBRACK_COLON] = ACTIONS(7580), }, [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), + [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(7493), + [anon_sym___attribute] = ACTIONS(7491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [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_asm] = ACTIONS(7493), + [anon_sym___asm__] = ACTIONS(7493), + [anon_sym___asm] = ACTIONS(7491), + [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_noexcept] = ACTIONS(7493), + [anon_sym_throw] = ACTIONS(7493), + [anon_sym_requires] = ACTIONS(7493), }, [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), + [sym_identifier] = ACTIONS(7818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7820), + [anon_sym_COMMA] = ACTIONS(7820), + [anon_sym_RPAREN] = ACTIONS(7820), + [anon_sym_LPAREN2] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7818), + [anon_sym_STAR] = ACTIONS(7818), + [anon_sym_SLASH] = ACTIONS(7818), + [anon_sym_PERCENT] = ACTIONS(7818), + [anon_sym_PIPE_PIPE] = ACTIONS(7820), + [anon_sym_AMP_AMP] = ACTIONS(7820), + [anon_sym_PIPE] = ACTIONS(7818), + [anon_sym_CARET] = ACTIONS(7818), + [anon_sym_AMP] = ACTIONS(7818), + [anon_sym_EQ_EQ] = ACTIONS(7820), + [anon_sym_BANG_EQ] = ACTIONS(7820), + [anon_sym_GT] = ACTIONS(7818), + [anon_sym_GT_EQ] = ACTIONS(7820), + [anon_sym_LT_EQ] = ACTIONS(7818), + [anon_sym_LT] = ACTIONS(7818), + [anon_sym_LT_LT] = ACTIONS(7818), + [anon_sym_GT_GT] = ACTIONS(7818), + [anon_sym___extension__] = ACTIONS(7818), + [anon_sym___attribute__] = ACTIONS(7818), + [anon_sym___attribute] = ACTIONS(7818), + [anon_sym_COLON_COLON] = ACTIONS(7820), + [anon_sym_LBRACK] = ACTIONS(7818), + [anon_sym_EQ] = ACTIONS(7818), + [anon_sym_const] = ACTIONS(7818), + [anon_sym_constexpr] = ACTIONS(7818), + [anon_sym_volatile] = ACTIONS(7818), + [anon_sym_restrict] = ACTIONS(7818), + [anon_sym___restrict__] = ACTIONS(7818), + [anon_sym__Atomic] = ACTIONS(7818), + [anon_sym__Noreturn] = ACTIONS(7818), + [anon_sym_noreturn] = ACTIONS(7818), + [anon_sym__Nonnull] = ACTIONS(7818), + [anon_sym_mutable] = ACTIONS(7818), + [anon_sym_constinit] = ACTIONS(7818), + [anon_sym_consteval] = ACTIONS(7818), + [anon_sym_alignas] = ACTIONS(7818), + [anon_sym__Alignas] = ACTIONS(7818), + [anon_sym_QMARK] = ACTIONS(7820), + [anon_sym_STAR_EQ] = ACTIONS(7820), + [anon_sym_SLASH_EQ] = ACTIONS(7820), + [anon_sym_PERCENT_EQ] = ACTIONS(7820), + [anon_sym_PLUS_EQ] = ACTIONS(7820), + [anon_sym_DASH_EQ] = ACTIONS(7820), + [anon_sym_LT_LT_EQ] = ACTIONS(7820), + [anon_sym_GT_GT_EQ] = ACTIONS(7820), + [anon_sym_AMP_EQ] = ACTIONS(7820), + [anon_sym_CARET_EQ] = ACTIONS(7820), + [anon_sym_PIPE_EQ] = ACTIONS(7820), + [anon_sym_and_eq] = ACTIONS(7818), + [anon_sym_or_eq] = ACTIONS(7818), + [anon_sym_xor_eq] = ACTIONS(7818), + [anon_sym_LT_EQ_GT] = ACTIONS(7820), + [anon_sym_or] = ACTIONS(7818), + [anon_sym_and] = ACTIONS(7818), + [anon_sym_bitor] = ACTIONS(7818), + [anon_sym_xor] = ACTIONS(7818), + [anon_sym_bitand] = ACTIONS(7818), + [anon_sym_not_eq] = ACTIONS(7818), + [anon_sym_DASH_DASH] = ACTIONS(7820), + [anon_sym_PLUS_PLUS] = ACTIONS(7820), + [anon_sym_DOT] = ACTIONS(7818), + [anon_sym_DOT_STAR] = ACTIONS(7820), + [anon_sym_DASH_GT] = ACTIONS(7818), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7818), + [anon_sym_final] = ACTIONS(7818), + [anon_sym_override] = ACTIONS(7818), + [anon_sym_template] = ACTIONS(7818), + [anon_sym_requires] = ACTIONS(7818), + [anon_sym_DASH_GT_STAR] = ACTIONS(7820), + [anon_sym_LBRACK_COLON] = ACTIONS(7820), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_STAR] = ACTIONS(6815), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE] = ACTIONS(6815), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_EQ_EQ] = ACTIONS(6822), + [anon_sym_BANG_EQ] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6815), + [anon_sym_GT_EQ] = ACTIONS(6822), + [anon_sym_LT_EQ] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(6815), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_STAR_EQ] = ACTIONS(6822), + [anon_sym_SLASH_EQ] = ACTIONS(6822), + [anon_sym_PERCENT_EQ] = ACTIONS(6822), + [anon_sym_PLUS_EQ] = ACTIONS(6822), + [anon_sym_DASH_EQ] = ACTIONS(6822), + [anon_sym_LT_LT_EQ] = ACTIONS(6822), + [anon_sym_GT_GT_EQ] = ACTIONS(6822), + [anon_sym_AMP_EQ] = ACTIONS(6822), + [anon_sym_CARET_EQ] = ACTIONS(6822), + [anon_sym_PIPE_EQ] = ACTIONS(6822), + [anon_sym_LT_EQ_GT] = ACTIONS(6822), + [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(6822), + [anon_sym_PLUS_PLUS] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6815), + [anon_sym_DOT_STAR] = ACTIONS(6822), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6822), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_attribute_specifier] = STATE(3000), + [sym_identifier] = ACTIONS(7676), + [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(7676), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7676), + [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(7676), + [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_decltype] = ACTIONS(7676), + [anon_sym_final] = ACTIONS(7676), + [anon_sym_override] = ACTIONS(7676), + [anon_sym_template] = ACTIONS(7676), + [anon_sym_GT2] = ACTIONS(7678), + [anon_sym_requires] = ACTIONS(7676), + [anon_sym_LBRACK_COLON] = ACTIONS(7678), }, [STATE(2747)] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(8647), - [aux_sym_preproc_elif_token1] = ACTIONS(8647), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8647), - [aux_sym_preproc_elifdef_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(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_attribute_specifier] = STATE(3003), + [sym_identifier] = ACTIONS(7617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7619), + [anon_sym_COMMA] = ACTIONS(7619), + [anon_sym_LPAREN2] = ACTIONS(7619), + [anon_sym_DASH] = ACTIONS(7617), + [anon_sym_PLUS] = ACTIONS(7617), + [anon_sym_STAR] = ACTIONS(7617), + [anon_sym_SLASH] = ACTIONS(7617), + [anon_sym_PERCENT] = ACTIONS(7617), + [anon_sym_PIPE_PIPE] = ACTIONS(7619), + [anon_sym_AMP_AMP] = ACTIONS(7619), + [anon_sym_PIPE] = ACTIONS(7617), + [anon_sym_CARET] = ACTIONS(7617), + [anon_sym_AMP] = ACTIONS(7617), + [anon_sym_EQ_EQ] = ACTIONS(7619), + [anon_sym_BANG_EQ] = ACTIONS(7619), + [anon_sym_GT] = ACTIONS(7617), + [anon_sym_GT_EQ] = ACTIONS(7617), + [anon_sym_LT_EQ] = ACTIONS(7617), + [anon_sym_LT] = ACTIONS(7617), + [anon_sym_LT_LT] = ACTIONS(7617), + [anon_sym_GT_GT] = ACTIONS(7617), + [anon_sym___extension__] = ACTIONS(7617), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7619), + [anon_sym_LBRACK] = ACTIONS(7617), + [anon_sym_EQ] = ACTIONS(7617), + [anon_sym_const] = ACTIONS(7617), + [anon_sym_constexpr] = ACTIONS(7617), + [anon_sym_volatile] = ACTIONS(7617), + [anon_sym_restrict] = ACTIONS(7617), + [anon_sym___restrict__] = ACTIONS(7617), + [anon_sym__Atomic] = ACTIONS(7617), + [anon_sym__Noreturn] = ACTIONS(7617), + [anon_sym_noreturn] = ACTIONS(7617), + [anon_sym__Nonnull] = ACTIONS(7617), + [anon_sym_mutable] = ACTIONS(7617), + [anon_sym_constinit] = ACTIONS(7617), + [anon_sym_consteval] = ACTIONS(7617), + [anon_sym_alignas] = ACTIONS(7617), + [anon_sym__Alignas] = ACTIONS(7617), + [anon_sym_QMARK] = ACTIONS(7619), + [anon_sym_STAR_EQ] = ACTIONS(7619), + [anon_sym_SLASH_EQ] = ACTIONS(7619), + [anon_sym_PERCENT_EQ] = ACTIONS(7619), + [anon_sym_PLUS_EQ] = ACTIONS(7619), + [anon_sym_DASH_EQ] = ACTIONS(7619), + [anon_sym_LT_LT_EQ] = ACTIONS(7619), + [anon_sym_GT_GT_EQ] = ACTIONS(7617), + [anon_sym_AMP_EQ] = ACTIONS(7619), + [anon_sym_CARET_EQ] = ACTIONS(7619), + [anon_sym_PIPE_EQ] = ACTIONS(7619), + [anon_sym_and_eq] = ACTIONS(7617), + [anon_sym_or_eq] = ACTIONS(7617), + [anon_sym_xor_eq] = ACTIONS(7617), + [anon_sym_LT_EQ_GT] = ACTIONS(7619), + [anon_sym_or] = ACTIONS(7617), + [anon_sym_and] = ACTIONS(7617), + [anon_sym_bitor] = ACTIONS(7617), + [anon_sym_xor] = ACTIONS(7617), + [anon_sym_bitand] = ACTIONS(7617), + [anon_sym_not_eq] = ACTIONS(7617), + [anon_sym_DASH_DASH] = ACTIONS(7619), + [anon_sym_PLUS_PLUS] = ACTIONS(7619), + [anon_sym_DOT] = ACTIONS(7617), + [anon_sym_DOT_STAR] = ACTIONS(7619), + [anon_sym_DASH_GT] = ACTIONS(7619), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7617), + [anon_sym_final] = ACTIONS(7617), + [anon_sym_override] = ACTIONS(7617), + [anon_sym_template] = ACTIONS(7617), + [anon_sym_GT2] = ACTIONS(7619), + [anon_sym_requires] = ACTIONS(7617), + [anon_sym_LBRACK_COLON] = ACTIONS(7619), }, [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_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym_ref_qualifier] = STATE(2843), + [sym__function_exception_specification] = STATE(3390), + [sym__function_attributes_end] = STATE(4914), + [sym__function_postfix] = STATE(5746), + [sym_trailing_return_type] = STATE(5019), + [sym_noexcept] = STATE(3390), + [sym_throw_specifier] = STATE(3390), + [sym_requires_clause] = STATE(5746), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(8634), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(8637), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_RBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8640), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7043), + [anon_sym_override] = ACTIONS(7043), + [anon_sym_noexcept] = ACTIONS(7013), + [anon_sym_throw] = ACTIONS(7015), + [anon_sym_requires] = ACTIONS(7045), }, [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_attribute_specifier] = STATE(3006), + [sym_identifier] = ACTIONS(7692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7694), + [anon_sym_COMMA] = ACTIONS(7694), + [anon_sym_LPAREN2] = ACTIONS(7694), + [anon_sym_DASH] = ACTIONS(7692), + [anon_sym_PLUS] = ACTIONS(7692), + [anon_sym_STAR] = ACTIONS(7692), + [anon_sym_SLASH] = ACTIONS(7692), + [anon_sym_PERCENT] = ACTIONS(7692), + [anon_sym_PIPE_PIPE] = ACTIONS(7694), + [anon_sym_AMP_AMP] = ACTIONS(7694), + [anon_sym_PIPE] = ACTIONS(7692), + [anon_sym_CARET] = ACTIONS(7692), + [anon_sym_AMP] = ACTIONS(7692), + [anon_sym_EQ_EQ] = ACTIONS(7694), + [anon_sym_BANG_EQ] = ACTIONS(7694), + [anon_sym_GT] = ACTIONS(7692), + [anon_sym_GT_EQ] = ACTIONS(7692), + [anon_sym_LT_EQ] = ACTIONS(7692), + [anon_sym_LT] = ACTIONS(7692), + [anon_sym_LT_LT] = ACTIONS(7692), + [anon_sym_GT_GT] = ACTIONS(7692), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_EQ] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7692), + [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(7694), + [anon_sym_STAR_EQ] = ACTIONS(7694), + [anon_sym_SLASH_EQ] = ACTIONS(7694), + [anon_sym_PERCENT_EQ] = ACTIONS(7694), + [anon_sym_PLUS_EQ] = ACTIONS(7694), + [anon_sym_DASH_EQ] = ACTIONS(7694), + [anon_sym_LT_LT_EQ] = ACTIONS(7694), + [anon_sym_GT_GT_EQ] = ACTIONS(7692), + [anon_sym_AMP_EQ] = ACTIONS(7694), + [anon_sym_CARET_EQ] = ACTIONS(7694), + [anon_sym_PIPE_EQ] = ACTIONS(7694), + [anon_sym_and_eq] = ACTIONS(7692), + [anon_sym_or_eq] = ACTIONS(7692), + [anon_sym_xor_eq] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7694), + [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(7694), + [anon_sym_PLUS_PLUS] = ACTIONS(7694), + [anon_sym_DOT] = ACTIONS(7692), + [anon_sym_DOT_STAR] = ACTIONS(7694), + [anon_sym_DASH_GT] = ACTIONS(7694), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7692), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_template] = ACTIONS(7692), + [anon_sym_GT2] = ACTIONS(7694), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_LBRACK_COLON] = ACTIONS(7694), }, [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_attribute_specifier] = STATE(3007), + [sym_identifier] = ACTIONS(7702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7704), + [anon_sym_COMMA] = ACTIONS(7704), + [anon_sym_LPAREN2] = ACTIONS(7704), + [anon_sym_DASH] = ACTIONS(7702), + [anon_sym_PLUS] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_SLASH] = ACTIONS(7702), + [anon_sym_PERCENT] = ACTIONS(7702), + [anon_sym_PIPE_PIPE] = ACTIONS(7704), + [anon_sym_AMP_AMP] = ACTIONS(7704), + [anon_sym_PIPE] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_AMP] = ACTIONS(7702), + [anon_sym_EQ_EQ] = ACTIONS(7704), + [anon_sym_BANG_EQ] = ACTIONS(7704), + [anon_sym_GT] = ACTIONS(7702), + [anon_sym_GT_EQ] = ACTIONS(7702), + [anon_sym_LT_EQ] = ACTIONS(7702), + [anon_sym_LT] = ACTIONS(7702), + [anon_sym_LT_LT] = ACTIONS(7702), + [anon_sym_GT_GT] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7704), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_EQ] = ACTIONS(7702), + [anon_sym_const] = ACTIONS(7702), + [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(7704), + [anon_sym_STAR_EQ] = ACTIONS(7704), + [anon_sym_SLASH_EQ] = ACTIONS(7704), + [anon_sym_PERCENT_EQ] = ACTIONS(7704), + [anon_sym_PLUS_EQ] = ACTIONS(7704), + [anon_sym_DASH_EQ] = ACTIONS(7704), + [anon_sym_LT_LT_EQ] = ACTIONS(7704), + [anon_sym_GT_GT_EQ] = ACTIONS(7702), + [anon_sym_AMP_EQ] = ACTIONS(7704), + [anon_sym_CARET_EQ] = ACTIONS(7704), + [anon_sym_PIPE_EQ] = ACTIONS(7704), + [anon_sym_and_eq] = ACTIONS(7702), + [anon_sym_or_eq] = ACTIONS(7702), + [anon_sym_xor_eq] = ACTIONS(7702), + [anon_sym_LT_EQ_GT] = ACTIONS(7704), + [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(7704), + [anon_sym_PLUS_PLUS] = ACTIONS(7704), + [anon_sym_DOT] = ACTIONS(7702), + [anon_sym_DOT_STAR] = ACTIONS(7704), + [anon_sym_DASH_GT] = ACTIONS(7704), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7702), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_template] = ACTIONS(7702), + [anon_sym_GT2] = ACTIONS(7704), + [anon_sym_requires] = ACTIONS(7702), + [anon_sym_LBRACK_COLON] = ACTIONS(7704), }, [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_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_RPAREN] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6829), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6829), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6829), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6829), + [anon_sym_GT_GT] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_STAR_EQ] = ACTIONS(6831), + [anon_sym_SLASH_EQ] = ACTIONS(6831), + [anon_sym_PERCENT_EQ] = ACTIONS(6831), + [anon_sym_PLUS_EQ] = ACTIONS(6831), + [anon_sym_DASH_EQ] = ACTIONS(6831), + [anon_sym_LT_LT_EQ] = ACTIONS(6831), + [anon_sym_GT_GT_EQ] = ACTIONS(6831), + [anon_sym_AMP_EQ] = ACTIONS(6831), + [anon_sym_CARET_EQ] = ACTIONS(6831), + [anon_sym_PIPE_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_DASH_GT_STAR] = ACTIONS(6831), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), }, [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_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym__function_exception_specification] = STATE(3321), + [sym__function_attributes_end] = STATE(4776), + [sym__function_postfix] = STATE(5368), + [sym_trailing_return_type] = STATE(4813), + [sym_noexcept] = STATE(3321), + [sym_throw_specifier] = STATE(3321), + [sym_requires_clause] = STATE(5368), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8528), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8573), + [anon_sym_override] = ACTIONS(8573), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6882), + [anon_sym_requires] = ACTIONS(8576), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [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), + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_RPAREN] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6803), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_STAR_EQ] = ACTIONS(6805), + [anon_sym_SLASH_EQ] = ACTIONS(6805), + [anon_sym_PERCENT_EQ] = ACTIONS(6805), + [anon_sym_PLUS_EQ] = ACTIONS(6805), + [anon_sym_DASH_EQ] = ACTIONS(6805), + [anon_sym_LT_LT_EQ] = ACTIONS(6805), + [anon_sym_GT_GT_EQ] = ACTIONS(6805), + [anon_sym_AMP_EQ] = ACTIONS(6805), + [anon_sym_CARET_EQ] = ACTIONS(6805), + [anon_sym_PIPE_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_DASH_GT_STAR] = ACTIONS(6805), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), }, [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), + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6799), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6799), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6799), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6799), + [anon_sym_GT_GT] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_DASH_GT_STAR] = ACTIONS(6801), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), }, [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), + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_RPAREN] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6807), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6807), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6807), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6807), + [anon_sym_GT_GT] = ACTIONS(6807), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [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_LT_EQ_GT] = ACTIONS(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6807), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(6809), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), }, [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), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym__function_exception_specification] = STATE(3322), + [sym__function_attributes_end] = STATE(4780), + [sym__function_postfix] = STATE(5426), + [sym_trailing_return_type] = STATE(4814), + [sym_noexcept] = STATE(3322), + [sym_throw_specifier] = STATE(3322), + [sym_requires_clause] = STATE(5426), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8646), + [anon_sym_override] = ACTIONS(8646), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6882), + [anon_sym_requires] = ACTIONS(8649), + [anon_sym_DASH_GT_STAR] = ACTIONS(7623), }, [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), + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6795), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6795), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6795), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6795), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_EQ] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_STAR_EQ] = ACTIONS(6797), + [anon_sym_SLASH_EQ] = ACTIONS(6797), + [anon_sym_PERCENT_EQ] = ACTIONS(6797), + [anon_sym_PLUS_EQ] = ACTIONS(6797), + [anon_sym_DASH_EQ] = ACTIONS(6797), + [anon_sym_LT_LT_EQ] = ACTIONS(6797), + [anon_sym_GT_GT_EQ] = ACTIONS(6797), + [anon_sym_AMP_EQ] = ACTIONS(6797), + [anon_sym_CARET_EQ] = ACTIONS(6797), + [anon_sym_PIPE_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_DASH_GT_STAR] = ACTIONS(6797), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), }, [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_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(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_RPAREN] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6791), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6791), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6791), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6791), + [anon_sym_GT_GT] = ACTIONS(6791), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_EQ] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_STAR_EQ] = ACTIONS(6793), + [anon_sym_SLASH_EQ] = ACTIONS(6793), + [anon_sym_PERCENT_EQ] = ACTIONS(6793), + [anon_sym_PLUS_EQ] = ACTIONS(6793), + [anon_sym_DASH_EQ] = ACTIONS(6793), + [anon_sym_LT_LT_EQ] = ACTIONS(6793), + [anon_sym_GT_GT_EQ] = ACTIONS(6793), + [anon_sym_AMP_EQ] = ACTIONS(6793), + [anon_sym_CARET_EQ] = ACTIONS(6793), + [anon_sym_PIPE_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6791), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_DASH_GT_STAR] = ACTIONS(6793), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), }, [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), - [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_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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7523), - [anon_sym_override] = ACTIONS(7523), - [anon_sym_requires] = ACTIONS(7523), + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_RPAREN] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6811), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6811), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6811), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6811), + [anon_sym_GT_GT] = ACTIONS(6811), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_EQ] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_STAR_EQ] = ACTIONS(6813), + [anon_sym_SLASH_EQ] = ACTIONS(6813), + [anon_sym_PERCENT_EQ] = ACTIONS(6813), + [anon_sym_PLUS_EQ] = ACTIONS(6813), + [anon_sym_DASH_EQ] = ACTIONS(6813), + [anon_sym_LT_LT_EQ] = ACTIONS(6813), + [anon_sym_GT_GT_EQ] = ACTIONS(6813), + [anon_sym_AMP_EQ] = ACTIONS(6813), + [anon_sym_CARET_EQ] = ACTIONS(6813), + [anon_sym_PIPE_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_DASH_GT_STAR] = ACTIONS(6813), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), }, [STATE(2760)] = { - [sym_attribute_specifier] = STATE(3134), - [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(8293), - [anon_sym___attribute] = ACTIONS(8295), - [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), + [sym_type_qualifier] = STATE(2760), + [sym_alignas_qualifier] = STATE(3075), + [aux_sym__type_definition_type_repeat1] = STATE(2760), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7047), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8652), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8652), + [anon_sym_constexpr] = ACTIONS(8652), + [anon_sym_volatile] = ACTIONS(8652), + [anon_sym_restrict] = ACTIONS(8652), + [anon_sym___restrict__] = ACTIONS(8652), + [anon_sym__Atomic] = ACTIONS(8652), + [anon_sym__Noreturn] = ACTIONS(8652), + [anon_sym_noreturn] = ACTIONS(8652), + [anon_sym__Nonnull] = ACTIONS(8652), + [anon_sym_mutable] = ACTIONS(8652), + [anon_sym_constinit] = ACTIONS(8652), + [anon_sym_consteval] = ACTIONS(8652), + [anon_sym_alignas] = ACTIONS(8655), + [anon_sym__Alignas] = ACTIONS(8655), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7047), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_GT2] = ACTIONS(7049), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), }, [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), + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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_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(7495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_DASH_GT_STAR] = ACTIONS(7497), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3108), + [anon_sym___attribute__] = ACTIONS(3108), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_constexpr] = ACTIONS(3108), + [anon_sym_volatile] = ACTIONS(3108), + [anon_sym_restrict] = ACTIONS(3108), + [anon_sym___restrict__] = ACTIONS(3108), + [anon_sym__Atomic] = ACTIONS(3108), + [anon_sym__Noreturn] = ACTIONS(3108), + [anon_sym_noreturn] = ACTIONS(3108), + [anon_sym__Nonnull] = ACTIONS(3108), + [anon_sym_mutable] = ACTIONS(3108), + [anon_sym_constinit] = ACTIONS(3108), + [anon_sym_consteval] = ACTIONS(3108), + [anon_sym_alignas] = ACTIONS(3108), + [anon_sym__Alignas] = ACTIONS(3108), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3108), + [anon_sym_or_eq] = ACTIONS(3108), + [anon_sym_xor_eq] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [anon_sym_or] = ACTIONS(3118), + [anon_sym_and] = ACTIONS(3118), + [anon_sym_bitor] = ACTIONS(3108), + [anon_sym_xor] = ACTIONS(3118), + [anon_sym_bitand] = ACTIONS(3108), + [anon_sym_not_eq] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_asm] = ACTIONS(3108), + [anon_sym___asm__] = ACTIONS(3108), + [anon_sym___asm] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3108), + [anon_sym_override] = ACTIONS(3108), + [anon_sym_GT2] = ACTIONS(3108), + [anon_sym_noexcept] = ACTIONS(3108), + [anon_sym_throw] = ACTIONS(3108), + [anon_sym_requires] = ACTIONS(3108), }, [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7261), + [anon_sym___attribute__] = ACTIONS(7261), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7261), + [anon_sym_volatile] = ACTIONS(7261), + [anon_sym_restrict] = ACTIONS(7261), + [anon_sym___restrict__] = ACTIONS(7261), + [anon_sym__Atomic] = ACTIONS(7261), + [anon_sym__Noreturn] = ACTIONS(7261), + [anon_sym_noreturn] = ACTIONS(7261), + [anon_sym__Nonnull] = ACTIONS(7261), + [anon_sym_mutable] = ACTIONS(7261), + [anon_sym_constinit] = ACTIONS(7261), + [anon_sym_consteval] = ACTIONS(7261), + [anon_sym_alignas] = ACTIONS(7261), + [anon_sym__Alignas] = ACTIONS(7261), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7259), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7261), + [anon_sym_or_eq] = ACTIONS(7261), + [anon_sym_xor_eq] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7261), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7261), + [anon_sym_not_eq] = ACTIONS(7261), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_asm] = ACTIONS(7261), + [anon_sym___asm__] = ACTIONS(7261), + [anon_sym___asm] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7261), + [anon_sym_override] = ACTIONS(7261), + [anon_sym_GT2] = ACTIONS(7261), + [anon_sym_noexcept] = ACTIONS(7261), + [anon_sym_throw] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7261), }, [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), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym__function_exception_specification] = STATE(3318), + [sym__function_attributes_end] = STATE(4759), + [sym__function_postfix] = STATE(5426), + [sym_trailing_return_type] = STATE(4862), + [sym_noexcept] = STATE(3318), + [sym_throw_specifier] = STATE(3318), + [sym_requires_clause] = STATE(5426), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6882), + [anon_sym_requires] = ACTIONS(6884), + [anon_sym_DASH_GT_STAR] = ACTIONS(7623), }, [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), + [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(7493), + [anon_sym___attribute] = ACTIONS(7491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [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_asm] = ACTIONS(7493), + [anon_sym___asm__] = ACTIONS(7493), + [anon_sym___asm] = ACTIONS(7491), + [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_noexcept] = ACTIONS(7493), + [anon_sym_throw] = ACTIONS(7493), + [anon_sym_requires] = ACTIONS(7493), }, [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), + [sym_template_argument_list] = STATE(5007), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7444), + [anon_sym_RPAREN] = ACTIONS(7444), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_TILDE] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7449), + [anon_sym_PLUS] = ACTIONS(7449), + [anon_sym_STAR] = ACTIONS(7444), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7454), + [anon_sym_PIPE_PIPE] = ACTIONS(7454), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7449), + [anon_sym_CARET] = ACTIONS(7454), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7454), + [anon_sym_BANG_EQ] = ACTIONS(7454), + [anon_sym_GT] = ACTIONS(7449), + [anon_sym_GT_EQ] = ACTIONS(7454), + [anon_sym_LT_EQ] = ACTIONS(7449), + [anon_sym_LT] = ACTIONS(7456), + [anon_sym_LT_LT] = ACTIONS(7454), + [anon_sym_GT_GT] = ACTIONS(7454), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_virtual] = ACTIONS(7442), + [anon_sym_extern] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7447), + [anon_sym___declspec] = ACTIONS(7442), + [anon_sym___based] = ACTIONS(7442), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_static] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_register] = ACTIONS(7442), + [anon_sym_inline] = ACTIONS(7442), + [anon_sym___inline] = ACTIONS(7442), + [anon_sym___inline__] = ACTIONS(7442), + [anon_sym___forceinline] = ACTIONS(7442), + [anon_sym_thread_local] = ACTIONS(7442), + [anon_sym___thread] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7454), + [anon_sym_LT_EQ_GT] = ACTIONS(7454), + [anon_sym_or] = ACTIONS(7449), + [anon_sym_and] = ACTIONS(7449), + [anon_sym_bitor] = ACTIONS(7449), + [anon_sym_xor] = ACTIONS(7449), + [anon_sym_bitand] = ACTIONS(7449), + [anon_sym_not_eq] = ACTIONS(7449), + [anon_sym_DASH_DASH] = ACTIONS(7454), + [anon_sym_PLUS_PLUS] = ACTIONS(7454), + [anon_sym_DOT] = ACTIONS(7449), + [anon_sym_DOT_STAR] = ACTIONS(7454), + [anon_sym_DASH_GT] = ACTIONS(7454), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_operator] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_attribute_specifier] = STATE(3011), + [sym_identifier] = ACTIONS(7634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7636), + [anon_sym_COMMA] = ACTIONS(7636), + [anon_sym_LPAREN2] = ACTIONS(7636), + [anon_sym_DASH] = ACTIONS(7634), + [anon_sym_PLUS] = ACTIONS(7634), + [anon_sym_STAR] = ACTIONS(7634), + [anon_sym_SLASH] = ACTIONS(7634), + [anon_sym_PERCENT] = ACTIONS(7634), + [anon_sym_PIPE_PIPE] = ACTIONS(7636), + [anon_sym_AMP_AMP] = ACTIONS(7636), + [anon_sym_PIPE] = ACTIONS(7634), + [anon_sym_CARET] = ACTIONS(7634), + [anon_sym_AMP] = ACTIONS(7634), + [anon_sym_EQ_EQ] = ACTIONS(7636), + [anon_sym_BANG_EQ] = ACTIONS(7636), + [anon_sym_GT] = ACTIONS(7634), + [anon_sym_GT_EQ] = ACTIONS(7634), + [anon_sym_LT_EQ] = ACTIONS(7634), + [anon_sym_LT] = ACTIONS(7634), + [anon_sym_LT_LT] = ACTIONS(7634), + [anon_sym_GT_GT] = ACTIONS(7634), + [anon_sym___extension__] = ACTIONS(7634), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7636), + [anon_sym_LBRACK] = ACTIONS(7634), + [anon_sym_EQ] = ACTIONS(7634), + [anon_sym_const] = ACTIONS(7634), + [anon_sym_constexpr] = ACTIONS(7634), + [anon_sym_volatile] = ACTIONS(7634), + [anon_sym_restrict] = ACTIONS(7634), + [anon_sym___restrict__] = ACTIONS(7634), + [anon_sym__Atomic] = ACTIONS(7634), + [anon_sym__Noreturn] = ACTIONS(7634), + [anon_sym_noreturn] = ACTIONS(7634), + [anon_sym__Nonnull] = ACTIONS(7634), + [anon_sym_mutable] = ACTIONS(7634), + [anon_sym_constinit] = ACTIONS(7634), + [anon_sym_consteval] = ACTIONS(7634), + [anon_sym_alignas] = ACTIONS(7634), + [anon_sym__Alignas] = ACTIONS(7634), + [anon_sym_QMARK] = ACTIONS(7636), + [anon_sym_STAR_EQ] = ACTIONS(7636), + [anon_sym_SLASH_EQ] = ACTIONS(7636), + [anon_sym_PERCENT_EQ] = ACTIONS(7636), + [anon_sym_PLUS_EQ] = ACTIONS(7636), + [anon_sym_DASH_EQ] = ACTIONS(7636), + [anon_sym_LT_LT_EQ] = ACTIONS(7636), + [anon_sym_GT_GT_EQ] = ACTIONS(7634), + [anon_sym_AMP_EQ] = ACTIONS(7636), + [anon_sym_CARET_EQ] = ACTIONS(7636), + [anon_sym_PIPE_EQ] = ACTIONS(7636), + [anon_sym_and_eq] = ACTIONS(7634), + [anon_sym_or_eq] = ACTIONS(7634), + [anon_sym_xor_eq] = ACTIONS(7634), + [anon_sym_LT_EQ_GT] = ACTIONS(7636), + [anon_sym_or] = ACTIONS(7634), + [anon_sym_and] = ACTIONS(7634), + [anon_sym_bitor] = ACTIONS(7634), + [anon_sym_xor] = ACTIONS(7634), + [anon_sym_bitand] = ACTIONS(7634), + [anon_sym_not_eq] = ACTIONS(7634), + [anon_sym_DASH_DASH] = ACTIONS(7636), + [anon_sym_PLUS_PLUS] = ACTIONS(7636), + [anon_sym_DOT] = ACTIONS(7634), + [anon_sym_DOT_STAR] = ACTIONS(7636), + [anon_sym_DASH_GT] = ACTIONS(7636), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7634), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_template] = ACTIONS(7634), + [anon_sym_GT2] = ACTIONS(7636), + [anon_sym_requires] = ACTIONS(7634), + [anon_sym_LBRACK_COLON] = ACTIONS(7636), }, [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), + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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_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(7495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_DASH_GT_STAR] = ACTIONS(7497), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7290), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7290), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_and_eq] = ACTIONS(7290), + [anon_sym_or_eq] = ACTIONS(7290), + [anon_sym_xor_eq] = ACTIONS(7290), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_GT2] = ACTIONS(7292), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), }, [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), + [sym_attribute_specifier] = STATE(3013), + [sym_identifier] = ACTIONS(7672), + [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(7672), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7672), + [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(7672), + [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_decltype] = ACTIONS(7672), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_template] = ACTIONS(7672), + [anon_sym_GT2] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_LBRACK_COLON] = ACTIONS(7674), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_TILDE] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6817), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6817), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6817), + [anon_sym_GT_GT] = ACTIONS(6817), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_virtual] = ACTIONS(6815), + [anon_sym_extern] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6822), + [anon_sym___declspec] = ACTIONS(6815), + [anon_sym___based] = ACTIONS(6815), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_static] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6815), + [anon_sym_register] = ACTIONS(6815), + [anon_sym_inline] = ACTIONS(6815), + [anon_sym___inline] = ACTIONS(6815), + [anon_sym___inline__] = ACTIONS(6815), + [anon_sym___forceinline] = ACTIONS(6815), + [anon_sym_thread_local] = ACTIONS(6815), + [anon_sym___thread] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_attribute_specifier] = STATE(3014), + [sym_identifier] = ACTIONS(7680), + [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(7680), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7680), + [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(7680), + [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_decltype] = ACTIONS(7680), + [anon_sym_final] = ACTIONS(7680), + [anon_sym_override] = ACTIONS(7680), + [anon_sym_template] = ACTIONS(7680), + [anon_sym_GT2] = ACTIONS(7682), + [anon_sym_requires] = ACTIONS(7680), + [anon_sym_LBRACK_COLON] = ACTIONS(7682), }, [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), + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym_ref_qualifier] = STATE(2888), + [sym__function_exception_specification] = STATE(3399), + [sym__function_attributes_end] = STATE(4615), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3432), + [sym_noexcept] = STATE(3399), + [sym_throw_specifier] = STATE(3399), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7476), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7479), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(8658), + [anon_sym___attribute] = ACTIONS(8661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6975), + [anon_sym_override] = ACTIONS(6975), + [anon_sym_noexcept] = ACTIONS(6977), + [anon_sym_throw] = ACTIONS(6979), + [anon_sym_requires] = ACTIONS(6981), }, [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), + [sym_type_qualifier] = STATE(2774), + [sym_alignas_qualifier] = STATE(3089), + [aux_sym__type_definition_type_repeat1] = STATE(2774), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8667), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_RBRACK] = ACTIONS(7049), + [anon_sym_EQ] = ACTIONS(7047), + [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(8670), + [anon_sym__Alignas] = ACTIONS(8670), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_and_eq] = ACTIONS(7047), + [anon_sym_or_eq] = ACTIONS(7047), + [anon_sym_xor_eq] = ACTIONS(7047), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), }, [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), - [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_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym_ref_qualifier] = STATE(2891), + [sym__function_exception_specification] = STATE(3410), + [sym__function_attributes_end] = STATE(4842), + [sym__function_postfix] = STATE(5657), + [sym_trailing_return_type] = STATE(4930), + [sym_noexcept] = STATE(3410), + [sym_throw_specifier] = STATE(3410), + [sym_requires_clause] = STATE(5657), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(8613), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(8616), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7472), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7472), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8619), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8673), + [anon_sym_override] = ACTIONS(8673), + [anon_sym_GT2] = ACTIONS(7474), + [anon_sym_noexcept] = ACTIONS(6925), + [anon_sym_throw] = ACTIONS(6927), + [anon_sym_requires] = ACTIONS(8676), }, [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_comment] = ACTIONS(3), + [sym_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym_ref_qualifier] = STATE(2893), + [sym__function_exception_specification] = STATE(3427), + [sym__function_attributes_end] = STATE(4846), + [sym__function_postfix] = STATE(5746), + [sym_trailing_return_type] = STATE(4955), + [sym_noexcept] = STATE(3427), + [sym_throw_specifier] = STATE(3427), + [sym_requires_clause] = STATE(5746), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(8634), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(8637), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_RBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8640), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8679), + [anon_sym_override] = ACTIONS(8679), + [anon_sym_noexcept] = ACTIONS(7013), + [anon_sym_throw] = ACTIONS(7015), + [anon_sym_requires] = ACTIONS(8682), }, [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), + [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(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(7739), + [anon_sym___attribute__] = ACTIONS(7739), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_COLON_COLON] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7739), + [anon_sym_EQ] = ACTIONS(7739), + [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_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(7739), + [anon_sym_or_eq] = ACTIONS(7739), + [anon_sym_xor_eq] = ACTIONS(7739), + [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(7739), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7739), + [anon_sym_final] = ACTIONS(7739), + [anon_sym_override] = ACTIONS(7739), + [anon_sym_template] = ACTIONS(7739), + [anon_sym_requires] = ACTIONS(7739), + [anon_sym_DASH_GT_STAR] = ACTIONS(7741), + [anon_sym_LBRACK_COLON] = ACTIONS(7741), }, [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), + [sym_attribute_specifier] = STATE(3015), + [sym_identifier] = ACTIONS(7688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7690), + [anon_sym_COMMA] = ACTIONS(7690), + [anon_sym_LPAREN2] = ACTIONS(7690), + [anon_sym_DASH] = ACTIONS(7688), + [anon_sym_PLUS] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7688), + [anon_sym_SLASH] = ACTIONS(7688), + [anon_sym_PERCENT] = ACTIONS(7688), + [anon_sym_PIPE_PIPE] = ACTIONS(7690), + [anon_sym_AMP_AMP] = ACTIONS(7690), + [anon_sym_PIPE] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7688), + [anon_sym_AMP] = ACTIONS(7688), + [anon_sym_EQ_EQ] = ACTIONS(7690), + [anon_sym_BANG_EQ] = ACTIONS(7690), + [anon_sym_GT] = ACTIONS(7688), + [anon_sym_GT_EQ] = ACTIONS(7688), + [anon_sym_LT_EQ] = ACTIONS(7688), + [anon_sym_LT] = ACTIONS(7688), + [anon_sym_LT_LT] = ACTIONS(7688), + [anon_sym_GT_GT] = ACTIONS(7688), + [anon_sym___extension__] = ACTIONS(7688), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7690), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym_EQ] = ACTIONS(7688), + [anon_sym_const] = ACTIONS(7688), + [anon_sym_constexpr] = ACTIONS(7688), + [anon_sym_volatile] = ACTIONS(7688), + [anon_sym_restrict] = ACTIONS(7688), + [anon_sym___restrict__] = ACTIONS(7688), + [anon_sym__Atomic] = ACTIONS(7688), + [anon_sym__Noreturn] = ACTIONS(7688), + [anon_sym_noreturn] = ACTIONS(7688), + [anon_sym__Nonnull] = ACTIONS(7688), + [anon_sym_mutable] = ACTIONS(7688), + [anon_sym_constinit] = ACTIONS(7688), + [anon_sym_consteval] = ACTIONS(7688), + [anon_sym_alignas] = ACTIONS(7688), + [anon_sym__Alignas] = ACTIONS(7688), + [anon_sym_QMARK] = ACTIONS(7690), + [anon_sym_STAR_EQ] = ACTIONS(7690), + [anon_sym_SLASH_EQ] = ACTIONS(7690), + [anon_sym_PERCENT_EQ] = ACTIONS(7690), + [anon_sym_PLUS_EQ] = ACTIONS(7690), + [anon_sym_DASH_EQ] = ACTIONS(7690), + [anon_sym_LT_LT_EQ] = ACTIONS(7690), + [anon_sym_GT_GT_EQ] = ACTIONS(7688), + [anon_sym_AMP_EQ] = ACTIONS(7690), + [anon_sym_CARET_EQ] = ACTIONS(7690), + [anon_sym_PIPE_EQ] = ACTIONS(7690), + [anon_sym_and_eq] = ACTIONS(7688), + [anon_sym_or_eq] = ACTIONS(7688), + [anon_sym_xor_eq] = ACTIONS(7688), + [anon_sym_LT_EQ_GT] = ACTIONS(7690), + [anon_sym_or] = ACTIONS(7688), + [anon_sym_and] = ACTIONS(7688), + [anon_sym_bitor] = ACTIONS(7688), + [anon_sym_xor] = ACTIONS(7688), + [anon_sym_bitand] = ACTIONS(7688), + [anon_sym_not_eq] = ACTIONS(7688), + [anon_sym_DASH_DASH] = ACTIONS(7690), + [anon_sym_PLUS_PLUS] = ACTIONS(7690), + [anon_sym_DOT] = ACTIONS(7688), + [anon_sym_DOT_STAR] = ACTIONS(7690), + [anon_sym_DASH_GT] = ACTIONS(7690), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7688), + [anon_sym_final] = ACTIONS(7688), + [anon_sym_override] = ACTIONS(7688), + [anon_sym_template] = ACTIONS(7688), + [anon_sym_GT2] = ACTIONS(7690), + [anon_sym_requires] = ACTIONS(7688), + [anon_sym_LBRACK_COLON] = ACTIONS(7690), }, [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), - [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_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym_ref_qualifier] = STATE(2842), + [sym__function_exception_specification] = STATE(3435), + [sym__function_attributes_end] = STATE(4620), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3439), + [sym_noexcept] = STATE(3435), + [sym_throw_specifier] = STATE(3435), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7476), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7479), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(8658), + [anon_sym___attribute] = ACTIONS(8661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8685), + [anon_sym_override] = ACTIONS(8685), + [anon_sym_noexcept] = ACTIONS(6977), + [anon_sym_throw] = ACTIONS(6979), + [anon_sym_requires] = ACTIONS(8688), }, [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3108), + [anon_sym___attribute__] = ACTIONS(3108), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_constexpr] = ACTIONS(3108), + [anon_sym_volatile] = ACTIONS(3108), + [anon_sym_restrict] = ACTIONS(3108), + [anon_sym___restrict__] = ACTIONS(3108), + [anon_sym__Atomic] = ACTIONS(3108), + [anon_sym__Noreturn] = ACTIONS(3108), + [anon_sym_noreturn] = ACTIONS(3108), + [anon_sym__Nonnull] = ACTIONS(3108), + [anon_sym_mutable] = ACTIONS(3108), + [anon_sym_constinit] = ACTIONS(3108), + [anon_sym_consteval] = ACTIONS(3108), + [anon_sym_alignas] = ACTIONS(3108), + [anon_sym__Alignas] = ACTIONS(3108), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3108), + [anon_sym_or_eq] = ACTIONS(3108), + [anon_sym_xor_eq] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [anon_sym_or] = ACTIONS(3118), + [anon_sym_and] = ACTIONS(3118), + [anon_sym_bitor] = ACTIONS(3108), + [anon_sym_xor] = ACTIONS(3118), + [anon_sym_bitand] = ACTIONS(3108), + [anon_sym_not_eq] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_asm] = ACTIONS(3108), + [anon_sym___asm__] = ACTIONS(3108), + [anon_sym___asm] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3108), + [anon_sym_override] = ACTIONS(3108), + [anon_sym_noexcept] = ACTIONS(3108), + [anon_sym_throw] = ACTIONS(3108), + [anon_sym_requires] = ACTIONS(3108), }, [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), + [sym_attribute_specifier] = STATE(2781), + [aux_sym_type_definition_repeat1] = STATE(2781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7400), + [anon_sym_COMMA] = ACTIONS(7400), + [anon_sym_RPAREN] = ACTIONS(7400), + [anon_sym_LPAREN2] = ACTIONS(7400), + [anon_sym_DASH] = ACTIONS(7398), + [anon_sym_PLUS] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7398), + [anon_sym_SLASH] = ACTIONS(7398), + [anon_sym_PERCENT] = ACTIONS(7398), + [anon_sym_PIPE_PIPE] = ACTIONS(7400), + [anon_sym_AMP_AMP] = ACTIONS(7400), + [anon_sym_PIPE] = ACTIONS(7398), + [anon_sym_CARET] = ACTIONS(7398), + [anon_sym_AMP] = ACTIONS(7398), + [anon_sym_EQ_EQ] = ACTIONS(7400), + [anon_sym_BANG_EQ] = ACTIONS(7400), + [anon_sym_GT] = ACTIONS(7398), + [anon_sym_GT_EQ] = ACTIONS(7400), + [anon_sym_LT_EQ] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(7398), + [anon_sym_LT_LT] = ACTIONS(7398), + [anon_sym_GT_GT] = ACTIONS(7398), + [anon_sym___extension__] = ACTIONS(7400), + [anon_sym___attribute__] = ACTIONS(8691), + [anon_sym___attribute] = ACTIONS(8694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7400), + [anon_sym_LBRACK] = ACTIONS(7398), + [anon_sym_EQ] = ACTIONS(7398), + [anon_sym_const] = ACTIONS(7398), + [anon_sym_constexpr] = ACTIONS(7400), + [anon_sym_volatile] = ACTIONS(7400), + [anon_sym_restrict] = ACTIONS(7400), + [anon_sym___restrict__] = ACTIONS(7400), + [anon_sym__Atomic] = ACTIONS(7400), + [anon_sym__Noreturn] = ACTIONS(7400), + [anon_sym_noreturn] = ACTIONS(7400), + [anon_sym__Nonnull] = ACTIONS(7400), + [anon_sym_mutable] = ACTIONS(7400), + [anon_sym_constinit] = ACTIONS(7400), + [anon_sym_consteval] = ACTIONS(7400), + [anon_sym_alignas] = ACTIONS(7400), + [anon_sym__Alignas] = ACTIONS(7400), + [anon_sym_QMARK] = ACTIONS(7400), + [anon_sym_STAR_EQ] = ACTIONS(7400), + [anon_sym_SLASH_EQ] = ACTIONS(7400), + [anon_sym_PERCENT_EQ] = ACTIONS(7400), + [anon_sym_PLUS_EQ] = ACTIONS(7400), + [anon_sym_DASH_EQ] = ACTIONS(7400), + [anon_sym_LT_LT_EQ] = ACTIONS(7400), + [anon_sym_GT_GT_EQ] = ACTIONS(7400), + [anon_sym_AMP_EQ] = ACTIONS(7400), + [anon_sym_CARET_EQ] = ACTIONS(7400), + [anon_sym_PIPE_EQ] = ACTIONS(7400), + [anon_sym_LT_EQ_GT] = ACTIONS(7400), + [anon_sym_or] = ACTIONS(7400), + [anon_sym_and] = ACTIONS(7400), + [anon_sym_bitor] = ACTIONS(7400), + [anon_sym_xor] = ACTIONS(7400), + [anon_sym_bitand] = ACTIONS(7400), + [anon_sym_not_eq] = ACTIONS(7400), + [anon_sym_DASH_DASH] = ACTIONS(7400), + [anon_sym_PLUS_PLUS] = ACTIONS(7400), + [anon_sym_asm] = ACTIONS(7400), + [anon_sym___asm__] = ACTIONS(7400), + [anon_sym___asm] = ACTIONS(7398), + [anon_sym_DOT] = ACTIONS(7398), + [anon_sym_DOT_STAR] = ACTIONS(7400), + [anon_sym_DASH_GT] = ACTIONS(7398), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7400), + [anon_sym_override] = ACTIONS(7400), + [anon_sym_noexcept] = ACTIONS(7400), + [anon_sym_throw] = ACTIONS(7400), + [anon_sym_requires] = ACTIONS(7400), + [anon_sym_DASH_GT_STAR] = ACTIONS(7400), }, [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_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_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7261), + [anon_sym___attribute__] = ACTIONS(7261), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_RBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7261), + [anon_sym_volatile] = ACTIONS(7261), + [anon_sym_restrict] = ACTIONS(7261), + [anon_sym___restrict__] = ACTIONS(7261), + [anon_sym__Atomic] = ACTIONS(7261), + [anon_sym__Noreturn] = ACTIONS(7261), + [anon_sym_noreturn] = ACTIONS(7261), + [anon_sym__Nonnull] = ACTIONS(7261), + [anon_sym_mutable] = ACTIONS(7261), + [anon_sym_constinit] = ACTIONS(7261), + [anon_sym_consteval] = ACTIONS(7261), + [anon_sym_alignas] = ACTIONS(7261), + [anon_sym__Alignas] = ACTIONS(7261), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7261), + [anon_sym_or_eq] = ACTIONS(7261), + [anon_sym_xor_eq] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7261), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7261), + [anon_sym_not_eq] = ACTIONS(7261), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_asm] = ACTIONS(7261), + [anon_sym___asm__] = ACTIONS(7261), + [anon_sym___asm] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7261), + [anon_sym_override] = ACTIONS(7261), + [anon_sym_noexcept] = ACTIONS(7261), + [anon_sym_throw] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7261), }, [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), + [sym_template_argument_list] = STATE(2275), + [sym_identifier] = ACTIONS(7451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7444), + [aux_sym_preproc_if_token2] = ACTIONS(7444), + [aux_sym_preproc_else_token1] = ACTIONS(7444), + [aux_sym_preproc_elif_token1] = ACTIONS(7451), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7444), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7444), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_DASH] = ACTIONS(7451), + [anon_sym_PLUS] = ACTIONS(7451), + [anon_sym_STAR] = ACTIONS(7451), + [anon_sym_SLASH] = ACTIONS(7451), + [anon_sym_PERCENT] = ACTIONS(7451), + [anon_sym_PIPE_PIPE] = ACTIONS(7444), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7451), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7444), + [anon_sym_BANG_EQ] = ACTIONS(7444), + [anon_sym_GT] = ACTIONS(7451), + [anon_sym_GT_EQ] = ACTIONS(7444), + [anon_sym_LT_EQ] = ACTIONS(7451), + [anon_sym_LT] = ACTIONS(7100), + [anon_sym_LT_LT] = ACTIONS(7451), + [anon_sym_GT_GT] = ACTIONS(7451), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_EQ] = ACTIONS(7451), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7444), + [anon_sym_STAR_EQ] = ACTIONS(7444), + [anon_sym_SLASH_EQ] = ACTIONS(7444), + [anon_sym_PERCENT_EQ] = ACTIONS(7444), + [anon_sym_PLUS_EQ] = ACTIONS(7444), + [anon_sym_DASH_EQ] = ACTIONS(7444), + [anon_sym_LT_LT_EQ] = ACTIONS(7444), + [anon_sym_GT_GT_EQ] = ACTIONS(7444), + [anon_sym_AMP_EQ] = ACTIONS(7444), + [anon_sym_CARET_EQ] = ACTIONS(7444), + [anon_sym_PIPE_EQ] = ACTIONS(7444), + [anon_sym_and_eq] = ACTIONS(7451), + [anon_sym_or_eq] = ACTIONS(7451), + [anon_sym_xor_eq] = ACTIONS(7451), + [anon_sym_LT_EQ_GT] = ACTIONS(7444), + [anon_sym_or] = ACTIONS(7451), + [anon_sym_and] = ACTIONS(7451), + [anon_sym_bitor] = ACTIONS(7451), + [anon_sym_xor] = ACTIONS(7451), + [anon_sym_bitand] = ACTIONS(7451), + [anon_sym_not_eq] = ACTIONS(7451), + [anon_sym_DASH_DASH] = ACTIONS(7444), + [anon_sym_PLUS_PLUS] = ACTIONS(7444), + [anon_sym_DOT] = ACTIONS(7451), + [anon_sym_DOT_STAR] = ACTIONS(7444), + [anon_sym_DASH_GT] = ACTIONS(7444), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_identifier] = ACTIONS(6826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [aux_sym_preproc_if_token2] = ACTIONS(6819), + [aux_sym_preproc_else_token1] = ACTIONS(6819), + [aux_sym_preproc_elif_token1] = ACTIONS(6826), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6819), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6819), + [anon_sym_SLASH_EQ] = ACTIONS(6819), + [anon_sym_PERCENT_EQ] = ACTIONS(6819), + [anon_sym_PLUS_EQ] = ACTIONS(6819), + [anon_sym_DASH_EQ] = ACTIONS(6819), + [anon_sym_LT_LT_EQ] = ACTIONS(6819), + [anon_sym_GT_GT_EQ] = ACTIONS(6819), + [anon_sym_AMP_EQ] = ACTIONS(6819), + [anon_sym_CARET_EQ] = ACTIONS(6819), + [anon_sym_PIPE_EQ] = ACTIONS(6819), + [anon_sym_and_eq] = ACTIONS(6826), + [anon_sym_or_eq] = ACTIONS(6826), + [anon_sym_xor_eq] = ACTIONS(6826), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_identifier] = ACTIONS(6826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [aux_sym_preproc_if_token2] = ACTIONS(6819), + [aux_sym_preproc_else_token1] = ACTIONS(6819), + [aux_sym_preproc_elif_token1] = ACTIONS(6826), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6819), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_identifier] = ACTIONS(7519), + [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(7519), + [anon_sym___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7519), + [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_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(7519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_template] = ACTIONS(7519), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_DASH_GT_STAR] = ACTIONS(7521), + [anon_sym_LBRACK_COLON] = ACTIONS(7521), }, [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__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9834), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10377), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10377), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_attribute_specifier] = STATE(3017), + [sym_identifier] = ACTIONS(7706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7708), + [anon_sym_COMMA] = ACTIONS(7708), + [anon_sym_LPAREN2] = ACTIONS(7708), + [anon_sym_DASH] = ACTIONS(7706), + [anon_sym_PLUS] = ACTIONS(7706), + [anon_sym_STAR] = ACTIONS(7706), + [anon_sym_SLASH] = ACTIONS(7706), + [anon_sym_PERCENT] = ACTIONS(7706), + [anon_sym_PIPE_PIPE] = ACTIONS(7708), + [anon_sym_AMP_AMP] = ACTIONS(7708), + [anon_sym_PIPE] = ACTIONS(7706), + [anon_sym_CARET] = ACTIONS(7706), + [anon_sym_AMP] = ACTIONS(7706), + [anon_sym_EQ_EQ] = ACTIONS(7708), + [anon_sym_BANG_EQ] = ACTIONS(7708), + [anon_sym_GT] = ACTIONS(7706), + [anon_sym_GT_EQ] = ACTIONS(7706), + [anon_sym_LT_EQ] = ACTIONS(7706), + [anon_sym_LT] = ACTIONS(7706), + [anon_sym_LT_LT] = ACTIONS(7706), + [anon_sym_GT_GT] = ACTIONS(7706), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7708), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_EQ] = ACTIONS(7706), + [anon_sym_const] = ACTIONS(7706), + [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(7708), + [anon_sym_STAR_EQ] = ACTIONS(7708), + [anon_sym_SLASH_EQ] = ACTIONS(7708), + [anon_sym_PERCENT_EQ] = ACTIONS(7708), + [anon_sym_PLUS_EQ] = ACTIONS(7708), + [anon_sym_DASH_EQ] = ACTIONS(7708), + [anon_sym_LT_LT_EQ] = ACTIONS(7708), + [anon_sym_GT_GT_EQ] = ACTIONS(7706), + [anon_sym_AMP_EQ] = ACTIONS(7708), + [anon_sym_CARET_EQ] = ACTIONS(7708), + [anon_sym_PIPE_EQ] = ACTIONS(7708), + [anon_sym_and_eq] = ACTIONS(7706), + [anon_sym_or_eq] = ACTIONS(7706), + [anon_sym_xor_eq] = ACTIONS(7706), + [anon_sym_LT_EQ_GT] = ACTIONS(7708), + [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(7708), + [anon_sym_PLUS_PLUS] = ACTIONS(7708), + [anon_sym_DOT] = ACTIONS(7706), + [anon_sym_DOT_STAR] = ACTIONS(7708), + [anon_sym_DASH_GT] = ACTIONS(7708), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7706), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_template] = ACTIONS(7706), + [anon_sym_GT2] = ACTIONS(7708), + [anon_sym_requires] = ACTIONS(7706), + [anon_sym_LBRACK_COLON] = ACTIONS(7708), }, [STATE(2789)] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(3921), - [aux_sym_preproc_elif_token1] = ACTIONS(3921), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3921), - [aux_sym_preproc_elifdef_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), + [sym_attribute_specifier] = STATE(3018), + [sym_identifier] = ACTIONS(7570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7572), + [anon_sym_COMMA] = ACTIONS(7572), + [anon_sym_LPAREN2] = ACTIONS(7572), + [anon_sym_DASH] = ACTIONS(7570), + [anon_sym_PLUS] = ACTIONS(7570), + [anon_sym_STAR] = ACTIONS(7570), + [anon_sym_SLASH] = ACTIONS(7570), + [anon_sym_PERCENT] = ACTIONS(7570), + [anon_sym_PIPE_PIPE] = ACTIONS(7572), + [anon_sym_AMP_AMP] = ACTIONS(7572), + [anon_sym_PIPE] = ACTIONS(7570), + [anon_sym_CARET] = ACTIONS(7570), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7572), + [anon_sym_BANG_EQ] = ACTIONS(7572), + [anon_sym_GT] = ACTIONS(7570), + [anon_sym_GT_EQ] = ACTIONS(7570), + [anon_sym_LT_EQ] = ACTIONS(7570), + [anon_sym_LT] = ACTIONS(7570), + [anon_sym_LT_LT] = ACTIONS(7570), + [anon_sym_GT_GT] = ACTIONS(7570), + [anon_sym___extension__] = ACTIONS(7570), + [anon_sym___attribute__] = ACTIONS(8247), + [anon_sym___attribute] = ACTIONS(8247), + [anon_sym_COLON_COLON] = ACTIONS(7572), + [anon_sym_LBRACK] = ACTIONS(7570), + [anon_sym_EQ] = ACTIONS(7570), + [anon_sym_const] = ACTIONS(7570), + [anon_sym_constexpr] = ACTIONS(7570), + [anon_sym_volatile] = ACTIONS(7570), + [anon_sym_restrict] = ACTIONS(7570), + [anon_sym___restrict__] = ACTIONS(7570), + [anon_sym__Atomic] = ACTIONS(7570), + [anon_sym__Noreturn] = ACTIONS(7570), + [anon_sym_noreturn] = ACTIONS(7570), + [anon_sym__Nonnull] = ACTIONS(7570), + [anon_sym_mutable] = ACTIONS(7570), + [anon_sym_constinit] = ACTIONS(7570), + [anon_sym_consteval] = ACTIONS(7570), + [anon_sym_alignas] = ACTIONS(7570), + [anon_sym__Alignas] = ACTIONS(7570), + [anon_sym_QMARK] = ACTIONS(7572), + [anon_sym_STAR_EQ] = ACTIONS(7572), + [anon_sym_SLASH_EQ] = ACTIONS(7572), + [anon_sym_PERCENT_EQ] = ACTIONS(7572), + [anon_sym_PLUS_EQ] = ACTIONS(7572), + [anon_sym_DASH_EQ] = ACTIONS(7572), + [anon_sym_LT_LT_EQ] = ACTIONS(7572), + [anon_sym_GT_GT_EQ] = ACTIONS(7570), + [anon_sym_AMP_EQ] = ACTIONS(7572), + [anon_sym_CARET_EQ] = ACTIONS(7572), + [anon_sym_PIPE_EQ] = ACTIONS(7572), + [anon_sym_and_eq] = ACTIONS(7570), + [anon_sym_or_eq] = ACTIONS(7570), + [anon_sym_xor_eq] = ACTIONS(7570), + [anon_sym_LT_EQ_GT] = ACTIONS(7572), + [anon_sym_or] = ACTIONS(7570), + [anon_sym_and] = ACTIONS(7570), + [anon_sym_bitor] = ACTIONS(7570), + [anon_sym_xor] = ACTIONS(7570), + [anon_sym_bitand] = ACTIONS(7570), + [anon_sym_not_eq] = ACTIONS(7570), + [anon_sym_DASH_DASH] = ACTIONS(7572), + [anon_sym_PLUS_PLUS] = ACTIONS(7572), + [anon_sym_DOT] = ACTIONS(7570), + [anon_sym_DOT_STAR] = ACTIONS(7572), + [anon_sym_DASH_GT] = ACTIONS(7572), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7570), + [anon_sym_final] = ACTIONS(7570), + [anon_sym_override] = ACTIONS(7570), + [anon_sym_template] = ACTIONS(7570), + [anon_sym_GT2] = ACTIONS(7572), + [anon_sym_requires] = ACTIONS(7570), + [anon_sym_LBRACK_COLON] = ACTIONS(7572), }, [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), + [sym__abstract_declarator] = STATE(5088), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_parameter_list] = STATE(2063), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9538), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_RPAREN] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6622), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6624), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6626), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7862), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_and_eq] = ACTIONS(7864), + [anon_sym_or_eq] = ACTIONS(7864), + [anon_sym_xor_eq] = ACTIONS(7864), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7864), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(7864), + [anon_sym_override] = ACTIONS(7864), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(7864), + [anon_sym_DASH_GT_STAR] = ACTIONS(7862), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_type_qualifier] = STATE(2791), + [sym_alignas_qualifier] = STATE(3056), + [aux_sym_array_declarator_repeat1] = STATE(2791), + [sym_identifier] = ACTIONS(8697), + [anon_sym_LPAREN2] = ACTIONS(8699), + [anon_sym_BANG] = ACTIONS(8699), + [anon_sym_TILDE] = ACTIONS(8699), + [anon_sym_DASH] = ACTIONS(8697), + [anon_sym_PLUS] = ACTIONS(8697), + [anon_sym_STAR] = ACTIONS(8699), + [anon_sym_AMP] = ACTIONS(8699), + [anon_sym___extension__] = ACTIONS(8701), + [anon_sym_COLON_COLON] = ACTIONS(8699), + [anon_sym_LBRACK] = ACTIONS(8697), + [anon_sym_static] = ACTIONS(8704), + [anon_sym_RBRACK] = ACTIONS(8699), + [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(8707), + [anon_sym__Alignas] = ACTIONS(8707), + [sym_primitive_type] = ACTIONS(8697), + [anon_sym_not] = ACTIONS(8697), + [anon_sym_compl] = ACTIONS(8697), + [anon_sym_DASH_DASH] = ACTIONS(8699), + [anon_sym_PLUS_PLUS] = ACTIONS(8699), + [anon_sym_sizeof] = ACTIONS(8697), + [anon_sym___alignof__] = ACTIONS(8697), + [anon_sym___alignof] = ACTIONS(8697), + [anon_sym__alignof] = ACTIONS(8697), + [anon_sym_alignof] = ACTIONS(8697), + [anon_sym__Alignof] = ACTIONS(8697), + [anon_sym_offsetof] = ACTIONS(8697), + [anon_sym__Generic] = ACTIONS(8697), + [anon_sym_typename] = ACTIONS(8697), + [anon_sym_asm] = ACTIONS(8697), + [anon_sym___asm__] = ACTIONS(8697), + [anon_sym___asm] = ACTIONS(8697), + [sym_number_literal] = ACTIONS(8699), + [anon_sym_L_SQUOTE] = ACTIONS(8699), + [anon_sym_u_SQUOTE] = ACTIONS(8699), + [anon_sym_U_SQUOTE] = ACTIONS(8699), + [anon_sym_u8_SQUOTE] = ACTIONS(8699), + [anon_sym_SQUOTE] = 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_true] = ACTIONS(8697), + [sym_false] = ACTIONS(8697), + [anon_sym_NULL] = ACTIONS(8697), + [anon_sym_nullptr] = ACTIONS(8697), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(8697), + [anon_sym_template] = ACTIONS(8697), + [anon_sym_delete] = ACTIONS(8697), + [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_co_await] = ACTIONS(8697), + [anon_sym_new] = ACTIONS(8697), + [anon_sym_requires] = ACTIONS(8697), + [anon_sym_CARET_CARET] = ACTIONS(8699), + [anon_sym_LBRACK_COLON] = ACTIONS(8699), + [sym_this] = ACTIONS(8697), }, [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), + [sym_attribute_specifier] = STATE(3368), + [sym_enumerator_list] = STATE(2971), + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_RPAREN] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(8450), + [anon_sym_LBRACK] = ACTIONS(7421), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7423), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7421), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7421), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_template] = ACTIONS(7421), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_DASH_GT_STAR] = ACTIONS(7423), + [anon_sym_LBRACK_COLON] = ACTIONS(7423), }, [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__abstract_declarator] = STATE(7634), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(4421), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2449), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9637), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7915), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7917), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7919), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5970), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7921), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7790), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(4446), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2460), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9608), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4446), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(7925), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(7927), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(7929), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7931), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7699), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(2806), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2460), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9608), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2806), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(7925), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(7927), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(7929), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7931), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_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___attribute__] = ACTIONS(7551), + [anon_sym___attribute] = ACTIONS(7549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7551), [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), + [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_asm] = ACTIONS(7551), + [anon_sym___asm__] = ACTIONS(7551), + [anon_sym___asm] = ACTIONS(7549), + [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_GT2] = ACTIONS(7549), - [anon_sym_requires] = ACTIONS(7549), + [anon_sym_final] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7551), + [anon_sym_noexcept] = ACTIONS(7551), + [anon_sym_throw] = ACTIONS(7551), + [anon_sym_requires] = ACTIONS(7551), }, [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), + [sym__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9820), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10298), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10298), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_attribute_specifier] = STATE(3379), + [sym_enumerator_list] = STATE(2923), + [sym_identifier] = ACTIONS(7417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7419), + [anon_sym_COMMA] = ACTIONS(7419), + [anon_sym_RPAREN] = ACTIONS(7419), + [anon_sym_LPAREN2] = ACTIONS(7419), + [anon_sym_DASH] = ACTIONS(7417), + [anon_sym_PLUS] = ACTIONS(7417), + [anon_sym_STAR] = ACTIONS(7417), + [anon_sym_SLASH] = ACTIONS(7417), + [anon_sym_PERCENT] = ACTIONS(7417), + [anon_sym_PIPE_PIPE] = ACTIONS(7419), + [anon_sym_AMP_AMP] = ACTIONS(7419), + [anon_sym_PIPE] = ACTIONS(7417), + [anon_sym_CARET] = ACTIONS(7417), + [anon_sym_AMP] = ACTIONS(7417), + [anon_sym_EQ_EQ] = ACTIONS(7419), + [anon_sym_BANG_EQ] = ACTIONS(7419), + [anon_sym_GT] = ACTIONS(7417), + [anon_sym_GT_EQ] = ACTIONS(7419), + [anon_sym_LT_EQ] = ACTIONS(7417), + [anon_sym_LT] = ACTIONS(7417), + [anon_sym_LT_LT] = ACTIONS(7417), + [anon_sym_GT_GT] = ACTIONS(7417), + [anon_sym___extension__] = ACTIONS(7417), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7419), + [anon_sym_LBRACE] = ACTIONS(8450), + [anon_sym_LBRACK] = ACTIONS(7417), + [anon_sym_EQ] = ACTIONS(7417), + [anon_sym_const] = ACTIONS(7417), + [anon_sym_constexpr] = ACTIONS(7417), + [anon_sym_volatile] = ACTIONS(7417), + [anon_sym_restrict] = ACTIONS(7417), + [anon_sym___restrict__] = ACTIONS(7417), + [anon_sym__Atomic] = ACTIONS(7417), + [anon_sym__Noreturn] = ACTIONS(7417), + [anon_sym_noreturn] = ACTIONS(7417), + [anon_sym__Nonnull] = ACTIONS(7417), + [anon_sym_mutable] = ACTIONS(7417), + [anon_sym_constinit] = ACTIONS(7417), + [anon_sym_consteval] = ACTIONS(7417), + [anon_sym_alignas] = ACTIONS(7417), + [anon_sym__Alignas] = ACTIONS(7417), + [anon_sym_QMARK] = ACTIONS(7419), + [anon_sym_STAR_EQ] = ACTIONS(7419), + [anon_sym_SLASH_EQ] = ACTIONS(7419), + [anon_sym_PERCENT_EQ] = ACTIONS(7419), + [anon_sym_PLUS_EQ] = ACTIONS(7419), + [anon_sym_DASH_EQ] = ACTIONS(7419), + [anon_sym_LT_LT_EQ] = ACTIONS(7419), + [anon_sym_GT_GT_EQ] = ACTIONS(7419), + [anon_sym_AMP_EQ] = ACTIONS(7419), + [anon_sym_CARET_EQ] = ACTIONS(7419), + [anon_sym_PIPE_EQ] = ACTIONS(7419), + [anon_sym_LT_EQ_GT] = ACTIONS(7419), + [anon_sym_or] = ACTIONS(7417), + [anon_sym_and] = ACTIONS(7417), + [anon_sym_bitor] = ACTIONS(7417), + [anon_sym_xor] = ACTIONS(7417), + [anon_sym_bitand] = ACTIONS(7417), + [anon_sym_not_eq] = ACTIONS(7417), + [anon_sym_DASH_DASH] = ACTIONS(7419), + [anon_sym_PLUS_PLUS] = ACTIONS(7419), + [anon_sym_DOT] = ACTIONS(7417), + [anon_sym_DOT_STAR] = ACTIONS(7419), + [anon_sym_DASH_GT] = ACTIONS(7417), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7417), + [anon_sym_final] = ACTIONS(7417), + [anon_sym_override] = ACTIONS(7417), + [anon_sym_template] = ACTIONS(7417), + [anon_sym_requires] = ACTIONS(7417), + [anon_sym_DASH_GT_STAR] = ACTIONS(7419), + [anon_sym_LBRACK_COLON] = ACTIONS(7419), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(8362), + [anon_sym_unsigned] = ACTIONS(8362), + [anon_sym_long] = ACTIONS(8362), + [anon_sym_short] = ACTIONS(8362), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), [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), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_type_qualifier] = STATE(2802), + [sym_alignas_qualifier] = STATE(3022), + [aux_sym__type_definition_type_repeat1] = STATE(2802), + [sym_identifier] = ACTIONS(7342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7344), + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_RPAREN] = ACTIONS(7344), + [aux_sym_preproc_if_token2] = ACTIONS(7344), + [aux_sym_preproc_else_token1] = ACTIONS(7344), + [aux_sym_preproc_elif_token1] = ACTIONS(7342), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7344), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7344), + [anon_sym_DASH] = ACTIONS(7342), + [anon_sym_PLUS] = ACTIONS(7342), + [anon_sym_STAR] = ACTIONS(7344), + [anon_sym_SLASH] = ACTIONS(7342), + [anon_sym_PERCENT] = ACTIONS(7344), + [anon_sym_PIPE_PIPE] = ACTIONS(7344), + [anon_sym_AMP_AMP] = ACTIONS(7344), + [anon_sym_PIPE] = ACTIONS(7342), + [anon_sym_CARET] = ACTIONS(7344), + [anon_sym_AMP] = ACTIONS(7342), + [anon_sym_EQ_EQ] = ACTIONS(7344), + [anon_sym_BANG_EQ] = ACTIONS(7344), + [anon_sym_GT] = ACTIONS(7342), + [anon_sym_GT_EQ] = ACTIONS(7344), + [anon_sym_LT_EQ] = ACTIONS(7342), + [anon_sym_LT] = ACTIONS(7342), + [anon_sym_LT_LT] = ACTIONS(7344), + [anon_sym_GT_GT] = ACTIONS(7344), + [anon_sym_SEMI] = ACTIONS(7344), + [anon_sym___extension__] = ACTIONS(7588), + [anon_sym___attribute__] = ACTIONS(7342), + [anon_sym___attribute] = ACTIONS(7342), + [anon_sym_COLON] = ACTIONS(7342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7344), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7344), + [anon_sym_RBRACE] = ACTIONS(7344), + [anon_sym_LBRACK] = ACTIONS(7342), + [anon_sym_const] = ACTIONS(7588), + [anon_sym_constexpr] = ACTIONS(7588), + [anon_sym_volatile] = ACTIONS(7588), + [anon_sym_restrict] = ACTIONS(7588), + [anon_sym___restrict__] = ACTIONS(7588), + [anon_sym__Atomic] = ACTIONS(7588), + [anon_sym__Noreturn] = ACTIONS(7588), + [anon_sym_noreturn] = ACTIONS(7588), + [anon_sym__Nonnull] = ACTIONS(7588), + [anon_sym_mutable] = ACTIONS(7588), + [anon_sym_constinit] = ACTIONS(7588), + [anon_sym_consteval] = ACTIONS(7588), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_QMARK] = ACTIONS(7344), + [anon_sym_LT_EQ_GT] = ACTIONS(7344), + [anon_sym_or] = ACTIONS(7342), + [anon_sym_and] = ACTIONS(7342), + [anon_sym_bitor] = ACTIONS(7342), + [anon_sym_xor] = ACTIONS(7342), + [anon_sym_bitand] = ACTIONS(7342), + [anon_sym_not_eq] = ACTIONS(7342), + [anon_sym_DASH_DASH] = ACTIONS(7344), + [anon_sym_PLUS_PLUS] = ACTIONS(7344), + [anon_sym_asm] = ACTIONS(7342), + [anon_sym___asm__] = ACTIONS(7342), + [anon_sym___asm] = ACTIONS(7342), + [anon_sym_DOT] = ACTIONS(7342), + [anon_sym_DOT_STAR] = ACTIONS(7344), + [anon_sym_DASH_GT] = ACTIONS(7344), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7342), + [anon_sym_override] = ACTIONS(7342), + [anon_sym_noexcept] = ACTIONS(7342), + [anon_sym_throw] = ACTIONS(7342), + [anon_sym_requires] = ACTIONS(7342), + [anon_sym_COLON_RBRACK] = ACTIONS(7344), }, [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), + [sym__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9866), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10377), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10377), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_type_qualifier] = STATE(2802), + [sym_alignas_qualifier] = STATE(3022), + [aux_sym__type_definition_type_repeat1] = STATE(2802), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [aux_sym_preproc_if_token2] = ACTIONS(7049), + [aux_sym_preproc_else_token1] = ACTIONS(7049), + [aux_sym_preproc_elif_token1] = ACTIONS(7047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7049), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7049), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7049), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7049), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7049), + [anon_sym_GT_GT] = ACTIONS(7049), + [anon_sym_SEMI] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(8710), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON] = ACTIONS(7047), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7049), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7049), + [anon_sym_RBRACE] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8710), + [anon_sym_constexpr] = ACTIONS(8710), + [anon_sym_volatile] = ACTIONS(8710), + [anon_sym_restrict] = ACTIONS(8710), + [anon_sym___restrict__] = ACTIONS(8710), + [anon_sym__Atomic] = ACTIONS(8710), + [anon_sym__Noreturn] = ACTIONS(8710), + [anon_sym_noreturn] = ACTIONS(8710), + [anon_sym__Nonnull] = ACTIONS(8710), + [anon_sym_mutable] = ACTIONS(8710), + [anon_sym_constinit] = ACTIONS(8710), + [anon_sym_consteval] = ACTIONS(8710), + [anon_sym_alignas] = ACTIONS(8713), + [anon_sym__Alignas] = ACTIONS(8713), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_asm] = ACTIONS(7047), + [anon_sym___asm__] = ACTIONS(7047), + [anon_sym___asm] = ACTIONS(7047), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_noexcept] = ACTIONS(7047), + [anon_sym_throw] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_COLON_RBRACK] = ACTIONS(7049), }, [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), + [sym_attribute_specifier] = STATE(3289), + [sym_field_declaration_list] = STATE(3129), + [sym_virtual_specifier] = STATE(10555), + [sym_base_class_clause] = STATE(11434), + [sym_identifier] = ACTIONS(7370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(7372), + [anon_sym_RPAREN] = ACTIONS(7372), + [aux_sym_preproc_if_token2] = ACTIONS(7372), + [aux_sym_preproc_else_token1] = ACTIONS(7372), + [aux_sym_preproc_elif_token1] = ACTIONS(7370), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7372), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7372), + [anon_sym_LPAREN2] = ACTIONS(7372), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_STAR] = ACTIONS(7372), + [anon_sym_SLASH] = ACTIONS(7370), + [anon_sym_PERCENT] = ACTIONS(7372), + [anon_sym_PIPE_PIPE] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7372), + [anon_sym_PIPE] = ACTIONS(7370), + [anon_sym_CARET] = ACTIONS(7372), + [anon_sym_AMP] = ACTIONS(7370), + [anon_sym_EQ_EQ] = ACTIONS(7372), + [anon_sym_BANG_EQ] = ACTIONS(7372), + [anon_sym_GT] = ACTIONS(7370), + [anon_sym_GT_EQ] = ACTIONS(7372), + [anon_sym_LT_EQ] = ACTIONS(7370), + [anon_sym_LT] = ACTIONS(7370), + [anon_sym_LT_LT] = ACTIONS(7372), + [anon_sym_GT_GT] = ACTIONS(7372), + [anon_sym_SEMI] = ACTIONS(7372), + [anon_sym___extension__] = ACTIONS(7370), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7372), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7372), + [anon_sym_LBRACE] = ACTIONS(8718), + [anon_sym_RBRACE] = ACTIONS(7372), + [anon_sym_LBRACK] = ACTIONS(7370), + [anon_sym_const] = ACTIONS(7370), + [anon_sym_constexpr] = ACTIONS(7370), + [anon_sym_volatile] = ACTIONS(7370), + [anon_sym_restrict] = ACTIONS(7370), + [anon_sym___restrict__] = ACTIONS(7370), + [anon_sym__Atomic] = ACTIONS(7370), + [anon_sym__Noreturn] = ACTIONS(7370), + [anon_sym_noreturn] = ACTIONS(7370), + [anon_sym__Nonnull] = ACTIONS(7370), + [anon_sym_mutable] = ACTIONS(7370), + [anon_sym_constinit] = ACTIONS(7370), + [anon_sym_consteval] = ACTIONS(7370), + [anon_sym_alignas] = ACTIONS(7370), + [anon_sym__Alignas] = ACTIONS(7370), + [anon_sym_QMARK] = ACTIONS(7372), + [anon_sym_LT_EQ_GT] = ACTIONS(7372), + [anon_sym_or] = ACTIONS(7370), + [anon_sym_and] = ACTIONS(7370), + [anon_sym_bitor] = ACTIONS(7370), + [anon_sym_xor] = ACTIONS(7370), + [anon_sym_bitand] = ACTIONS(7370), + [anon_sym_not_eq] = ACTIONS(7370), + [anon_sym_DASH_DASH] = ACTIONS(7372), + [anon_sym_PLUS_PLUS] = ACTIONS(7372), + [anon_sym_DOT] = ACTIONS(7370), + [anon_sym_DOT_STAR] = ACTIONS(7372), + [anon_sym_DASH_GT] = ACTIONS(7372), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7370), + [anon_sym_final] = ACTIONS(7380), + [anon_sym_override] = ACTIONS(7380), + [anon_sym_template] = ACTIONS(7370), + [anon_sym_requires] = ACTIONS(7370), + [anon_sym_LBRACK_COLON] = ACTIONS(7372), + [anon_sym_COLON_RBRACK] = ACTIONS(7372), }, [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), + [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___attribute__] = ACTIONS(7551), + [anon_sym___attribute] = ACTIONS(7549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7551), + [anon_sym_LBRACK] = ACTIONS(7549), + [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_asm] = ACTIONS(7551), + [anon_sym___asm__] = ACTIONS(7551), + [anon_sym___asm] = ACTIONS(7549), + [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_noexcept] = ACTIONS(7551), + [anon_sym_throw] = ACTIONS(7551), + [anon_sym_requires] = ACTIONS(7551), }, [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), + [sym__abstract_declarator] = STATE(7646), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(4446), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2460), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9608), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4446), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5968), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(7925), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5968), + [anon_sym_PIPE_PIPE] = ACTIONS(5968), + [anon_sym_AMP_AMP] = ACTIONS(7927), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5968), + [anon_sym_AMP] = ACTIONS(7929), + [anon_sym_EQ_EQ] = ACTIONS(5968), + [anon_sym_BANG_EQ] = ACTIONS(5968), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5968), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5968), + [anon_sym_GT_GT] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7931), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(5968), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(5968), + [anon_sym_LT_EQ_GT] = ACTIONS(5968), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5968), + [anon_sym_PLUS_PLUS] = ACTIONS(5968), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5968), + [anon_sym_DASH_GT] = ACTIONS(5968), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7725), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(4446), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2460), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9608), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4446), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(7925), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(7927), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(7929), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7931), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [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(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__declaration_modifiers] = STATE(3271), + [sym__declaration_specifiers] = STATE(5769), + [sym_attribute_specifier] = STATE(3271), + [sym_attribute_declaration] = STATE(3271), + [sym_ms_declspec_modifier] = STATE(3271), + [sym_storage_class_specifier] = STATE(3271), + [sym_type_qualifier] = STATE(3271), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11513), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_optional_parameter_declaration] = STATE(11513), + [sym_variadic_parameter_declaration] = STATE(11513), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3271), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [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(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7464), + [anon_sym_COMMA] = ACTIONS(7464), + [anon_sym_LPAREN2] = ACTIONS(7464), + [anon_sym_DASH] = ACTIONS(7462), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_STAR] = ACTIONS(7462), + [anon_sym_SLASH] = ACTIONS(7462), + [anon_sym_PERCENT] = ACTIONS(7462), + [anon_sym_PIPE_PIPE] = ACTIONS(7464), + [anon_sym_AMP_AMP] = ACTIONS(7464), + [anon_sym_PIPE] = ACTIONS(7462), + [anon_sym_CARET] = ACTIONS(7462), + [anon_sym_AMP] = ACTIONS(7462), + [anon_sym_EQ_EQ] = ACTIONS(7464), + [anon_sym_BANG_EQ] = ACTIONS(7464), + [anon_sym_GT] = ACTIONS(7462), + [anon_sym_GT_EQ] = ACTIONS(7464), + [anon_sym_LT_EQ] = ACTIONS(7462), + [anon_sym_LT] = ACTIONS(7462), + [anon_sym_LT_LT] = ACTIONS(7462), + [anon_sym_GT_GT] = ACTIONS(7462), + [anon_sym___extension__] = ACTIONS(7464), + [anon_sym___attribute__] = ACTIONS(7464), + [anon_sym___attribute] = ACTIONS(7462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(7462), + [anon_sym_RBRACK] = ACTIONS(7464), + [anon_sym_EQ] = ACTIONS(7462), + [anon_sym_const] = ACTIONS(7462), + [anon_sym_constexpr] = ACTIONS(7464), + [anon_sym_volatile] = ACTIONS(7464), + [anon_sym_restrict] = ACTIONS(7464), + [anon_sym___restrict__] = ACTIONS(7464), + [anon_sym__Atomic] = ACTIONS(7464), + [anon_sym__Noreturn] = ACTIONS(7464), + [anon_sym_noreturn] = ACTIONS(7464), + [anon_sym__Nonnull] = ACTIONS(7464), + [anon_sym_mutable] = ACTIONS(7464), + [anon_sym_constinit] = ACTIONS(7464), + [anon_sym_consteval] = ACTIONS(7464), + [anon_sym_alignas] = ACTIONS(7464), + [anon_sym__Alignas] = ACTIONS(7464), + [anon_sym_QMARK] = ACTIONS(7464), + [anon_sym_STAR_EQ] = ACTIONS(7464), + [anon_sym_SLASH_EQ] = ACTIONS(7464), + [anon_sym_PERCENT_EQ] = ACTIONS(7464), + [anon_sym_PLUS_EQ] = ACTIONS(7464), + [anon_sym_DASH_EQ] = ACTIONS(7464), + [anon_sym_LT_LT_EQ] = ACTIONS(7464), + [anon_sym_GT_GT_EQ] = ACTIONS(7464), + [anon_sym_AMP_EQ] = ACTIONS(7464), + [anon_sym_CARET_EQ] = ACTIONS(7464), + [anon_sym_PIPE_EQ] = ACTIONS(7464), + [anon_sym_and_eq] = ACTIONS(7464), + [anon_sym_or_eq] = ACTIONS(7464), + [anon_sym_xor_eq] = ACTIONS(7464), + [anon_sym_LT_EQ_GT] = ACTIONS(7464), + [anon_sym_or] = ACTIONS(7462), + [anon_sym_and] = ACTIONS(7462), + [anon_sym_bitor] = ACTIONS(7464), + [anon_sym_xor] = ACTIONS(7462), + [anon_sym_bitand] = ACTIONS(7464), + [anon_sym_not_eq] = ACTIONS(7464), + [anon_sym_DASH_DASH] = ACTIONS(7464), + [anon_sym_PLUS_PLUS] = ACTIONS(7464), + [anon_sym_asm] = ACTIONS(7464), + [anon_sym___asm__] = ACTIONS(7464), + [anon_sym___asm] = ACTIONS(7462), + [anon_sym_DOT] = ACTIONS(7462), + [anon_sym_DOT_STAR] = ACTIONS(7464), + [anon_sym_DASH_GT] = ACTIONS(7464), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7464), + [anon_sym_override] = ACTIONS(7464), + [anon_sym_noexcept] = ACTIONS(7464), + [anon_sym_throw] = ACTIONS(7464), + [anon_sym_requires] = ACTIONS(7464), }, [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), + [sym__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9880), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10295), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10295), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9798), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10295), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10295), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_decltype_auto] = STATE(2949), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8720), + [anon_sym_decltype] = ACTIONS(7161), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9879), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10347), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10347), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9826), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10347), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10347), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9883), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10341), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10341), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9778), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10363), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10363), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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__declaration_modifiers] = STATE(5541), + [sym_attribute_specifier] = STATE(5541), + [sym_attribute_declaration] = STATE(5541), + [sym_ms_declspec_modifier] = STATE(5541), + [sym_ms_based_modifier] = STATE(11956), + [sym__declarator] = STATE(10270), + [sym_parenthesized_declarator] = STATE(9532), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_function_declarator] = STATE(9801), + [sym_array_declarator] = STATE(9532), + [sym_storage_class_specifier] = STATE(5541), + [sym_type_qualifier] = STATE(5541), + [sym_alignas_qualifier] = STATE(4094), + [sym_decltype] = STATE(13053), + [sym_explicit_function_specifier] = STATE(5541), + [sym_operator_cast] = STATE(10376), + [sym__constructor_specifiers] = STATE(5541), + [sym_reference_declarator] = STATE(9532), + [sym_structured_binding_declarator] = STATE(9532), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8872), + [sym_qualified_identifier] = STATE(9532), + [sym_qualified_operator_cast_identifier] = STATE(10376), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym_operator_cast_definition_repeat1] = STATE(5541), + [sym_identifier] = ACTIONS(8585), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_virtual] = ACTIONS(8589), + [anon_sym_extern] = ACTIONS(8591), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON_COLON] = ACTIONS(8595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8597), + [anon_sym___declspec] = ACTIONS(8599), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(8591), + [anon_sym_register] = ACTIONS(8591), + [anon_sym_inline] = ACTIONS(8591), + [anon_sym___inline] = ACTIONS(8591), + [anon_sym___inline__] = ACTIONS(8591), + [anon_sym___forceinline] = ACTIONS(8591), + [anon_sym_thread_local] = ACTIONS(8591), + [anon_sym___thread] = ACTIONS(8591), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_argument_list] = STATE(6170), + [sym_initializer_list] = STATE(6770), + [aux_sym_sized_type_specifier_repeat1] = STATE(2580), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8372), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_signed] = ACTIONS(8362), + [anon_sym_unsigned] = ACTIONS(8362), + [anon_sym_long] = ACTIONS(8362), + [anon_sym_short] = ACTIONS(8362), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_decltype_auto] = STATE(2949), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8720), + [anon_sym_decltype] = ACTIONS(7161), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(7366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7368), + [anon_sym_COMMA] = ACTIONS(7368), + [anon_sym_RPAREN] = ACTIONS(7368), + [anon_sym_LPAREN2] = ACTIONS(7368), + [anon_sym_DASH] = ACTIONS(7366), + [anon_sym_PLUS] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(7366), + [anon_sym_SLASH] = ACTIONS(7366), + [anon_sym_PERCENT] = ACTIONS(7366), + [anon_sym_PIPE_PIPE] = ACTIONS(7368), + [anon_sym_AMP_AMP] = ACTIONS(7368), + [anon_sym_PIPE] = ACTIONS(7366), + [anon_sym_CARET] = ACTIONS(7366), + [anon_sym_AMP] = ACTIONS(7366), + [anon_sym_EQ_EQ] = ACTIONS(7368), + [anon_sym_BANG_EQ] = ACTIONS(7368), + [anon_sym_GT] = ACTIONS(7366), + [anon_sym_GT_EQ] = ACTIONS(7368), + [anon_sym_LT_EQ] = ACTIONS(7366), + [anon_sym_LT] = ACTIONS(7366), + [anon_sym_LT_LT] = ACTIONS(7366), + [anon_sym_GT_GT] = ACTIONS(7366), + [anon_sym___extension__] = ACTIONS(7366), + [anon_sym_COLON_COLON] = ACTIONS(7368), + [sym_ms_restrict_modifier] = ACTIONS(7366), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7366), + [sym_ms_signed_ptr_modifier] = ACTIONS(7366), + [anon_sym__unaligned] = ACTIONS(7366), + [anon_sym___unaligned] = ACTIONS(7366), + [anon_sym_LBRACK] = ACTIONS(7366), + [anon_sym_EQ] = ACTIONS(7366), + [anon_sym_const] = ACTIONS(7366), + [anon_sym_constexpr] = ACTIONS(7366), + [anon_sym_volatile] = ACTIONS(7366), + [anon_sym_restrict] = ACTIONS(7366), + [anon_sym___restrict__] = ACTIONS(7366), + [anon_sym__Atomic] = ACTIONS(7366), + [anon_sym__Noreturn] = ACTIONS(7366), + [anon_sym_noreturn] = ACTIONS(7366), + [anon_sym__Nonnull] = ACTIONS(7366), + [anon_sym_mutable] = ACTIONS(7366), + [anon_sym_constinit] = ACTIONS(7366), + [anon_sym_consteval] = ACTIONS(7366), + [anon_sym_alignas] = ACTIONS(7366), + [anon_sym__Alignas] = ACTIONS(7366), + [anon_sym_QMARK] = ACTIONS(7368), + [anon_sym_STAR_EQ] = ACTIONS(7368), + [anon_sym_SLASH_EQ] = ACTIONS(7368), + [anon_sym_PERCENT_EQ] = ACTIONS(7368), + [anon_sym_PLUS_EQ] = ACTIONS(7368), + [anon_sym_DASH_EQ] = ACTIONS(7368), + [anon_sym_LT_LT_EQ] = ACTIONS(7368), + [anon_sym_GT_GT_EQ] = ACTIONS(7368), + [anon_sym_AMP_EQ] = ACTIONS(7368), + [anon_sym_CARET_EQ] = ACTIONS(7368), + [anon_sym_PIPE_EQ] = ACTIONS(7368), + [anon_sym_LT_EQ_GT] = ACTIONS(7368), + [anon_sym_or] = ACTIONS(7366), + [anon_sym_and] = ACTIONS(7366), + [anon_sym_bitor] = ACTIONS(7366), + [anon_sym_xor] = ACTIONS(7366), + [anon_sym_bitand] = ACTIONS(7366), + [anon_sym_not_eq] = ACTIONS(7366), + [anon_sym_DASH_DASH] = ACTIONS(7368), + [anon_sym_PLUS_PLUS] = ACTIONS(7368), + [anon_sym_DOT] = ACTIONS(7366), + [anon_sym_DOT_STAR] = ACTIONS(7368), + [anon_sym_DASH_GT] = ACTIONS(7366), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7366), + [anon_sym_final] = ACTIONS(7366), + [anon_sym_override] = ACTIONS(7366), + [anon_sym_template] = ACTIONS(7366), + [anon_sym_requires] = ACTIONS(7366), + [anon_sym_DASH_GT_STAR] = ACTIONS(7368), + [anon_sym_LBRACK_COLON] = ACTIONS(7368), }, [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), + [sym_identifier] = ACTIONS(7346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7348), + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_RPAREN] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7348), + [anon_sym_DASH] = ACTIONS(7346), + [anon_sym_PLUS] = ACTIONS(7346), + [anon_sym_STAR] = ACTIONS(7346), + [anon_sym_SLASH] = ACTIONS(7346), + [anon_sym_PERCENT] = ACTIONS(7346), + [anon_sym_PIPE_PIPE] = ACTIONS(7348), + [anon_sym_AMP_AMP] = ACTIONS(7348), + [anon_sym_PIPE] = ACTIONS(7346), + [anon_sym_CARET] = ACTIONS(7346), + [anon_sym_AMP] = ACTIONS(7346), + [anon_sym_EQ_EQ] = ACTIONS(7348), + [anon_sym_BANG_EQ] = ACTIONS(7348), + [anon_sym_GT] = ACTIONS(7346), + [anon_sym_GT_EQ] = ACTIONS(7348), + [anon_sym_LT_EQ] = ACTIONS(7346), + [anon_sym_LT] = ACTIONS(7346), + [anon_sym_LT_LT] = ACTIONS(7346), + [anon_sym_GT_GT] = ACTIONS(7346), + [anon_sym___extension__] = ACTIONS(7346), + [anon_sym_COLON_COLON] = ACTIONS(7348), + [sym_ms_restrict_modifier] = ACTIONS(7346), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7346), + [sym_ms_signed_ptr_modifier] = ACTIONS(7346), + [anon_sym__unaligned] = ACTIONS(7346), + [anon_sym___unaligned] = ACTIONS(7346), + [anon_sym_LBRACK] = ACTIONS(7346), + [anon_sym_EQ] = ACTIONS(7346), + [anon_sym_const] = ACTIONS(7346), + [anon_sym_constexpr] = ACTIONS(7346), + [anon_sym_volatile] = ACTIONS(7346), + [anon_sym_restrict] = ACTIONS(7346), + [anon_sym___restrict__] = ACTIONS(7346), + [anon_sym__Atomic] = ACTIONS(7346), + [anon_sym__Noreturn] = ACTIONS(7346), + [anon_sym_noreturn] = ACTIONS(7346), + [anon_sym__Nonnull] = ACTIONS(7346), + [anon_sym_mutable] = ACTIONS(7346), + [anon_sym_constinit] = ACTIONS(7346), + [anon_sym_consteval] = ACTIONS(7346), + [anon_sym_alignas] = ACTIONS(7346), + [anon_sym__Alignas] = ACTIONS(7346), + [anon_sym_QMARK] = ACTIONS(7348), + [anon_sym_STAR_EQ] = ACTIONS(7348), + [anon_sym_SLASH_EQ] = ACTIONS(7348), + [anon_sym_PERCENT_EQ] = ACTIONS(7348), + [anon_sym_PLUS_EQ] = ACTIONS(7348), + [anon_sym_DASH_EQ] = ACTIONS(7348), + [anon_sym_LT_LT_EQ] = ACTIONS(7348), + [anon_sym_GT_GT_EQ] = ACTIONS(7348), + [anon_sym_AMP_EQ] = ACTIONS(7348), + [anon_sym_CARET_EQ] = ACTIONS(7348), + [anon_sym_PIPE_EQ] = ACTIONS(7348), + [anon_sym_LT_EQ_GT] = ACTIONS(7348), + [anon_sym_or] = ACTIONS(7346), + [anon_sym_and] = ACTIONS(7346), + [anon_sym_bitor] = ACTIONS(7346), + [anon_sym_xor] = ACTIONS(7346), + [anon_sym_bitand] = ACTIONS(7346), + [anon_sym_not_eq] = ACTIONS(7346), + [anon_sym_DASH_DASH] = ACTIONS(7348), + [anon_sym_PLUS_PLUS] = ACTIONS(7348), + [anon_sym_DOT] = ACTIONS(7346), + [anon_sym_DOT_STAR] = ACTIONS(7348), + [anon_sym_DASH_GT] = ACTIONS(7346), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7346), + [anon_sym_final] = ACTIONS(7346), + [anon_sym_override] = ACTIONS(7346), + [anon_sym_template] = ACTIONS(7346), + [anon_sym_requires] = ACTIONS(7346), + [anon_sym_DASH_GT_STAR] = ACTIONS(7348), + [anon_sym_LBRACK_COLON] = ACTIONS(7348), + }, + [STATE(2821)] = { + [sym_template_argument_list] = STATE(2745), + [sym_identifier] = ACTIONS(7543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5689), + [anon_sym_COMMA] = ACTIONS(5689), + [anon_sym_RPAREN] = ACTIONS(5689), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(7543), + [anon_sym_PLUS] = ACTIONS(7543), + [anon_sym_STAR] = ACTIONS(7543), + [anon_sym_SLASH] = ACTIONS(7543), + [anon_sym_PERCENT] = ACTIONS(7543), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_PIPE] = ACTIONS(7543), + [anon_sym_CARET] = ACTIONS(7543), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_GT] = ACTIONS(7543), + [anon_sym_GT_EQ] = ACTIONS(5689), + [anon_sym_LT_EQ] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(8375), + [anon_sym_LT_LT] = ACTIONS(7543), + [anon_sym_GT_GT] = ACTIONS(7543), + [anon_sym___extension__] = ACTIONS(7543), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_EQ] = ACTIONS(7543), + [anon_sym_const] = ACTIONS(7543), + [anon_sym_constexpr] = ACTIONS(7543), + [anon_sym_volatile] = ACTIONS(7543), + [anon_sym_restrict] = ACTIONS(7543), + [anon_sym___restrict__] = ACTIONS(7543), + [anon_sym__Atomic] = ACTIONS(7543), + [anon_sym__Noreturn] = ACTIONS(7543), + [anon_sym_noreturn] = ACTIONS(7543), + [anon_sym__Nonnull] = ACTIONS(7543), + [anon_sym_mutable] = ACTIONS(7543), + [anon_sym_constinit] = ACTIONS(7543), + [anon_sym_consteval] = ACTIONS(7543), + [anon_sym_alignas] = ACTIONS(7543), + [anon_sym__Alignas] = ACTIONS(7543), + [anon_sym_QMARK] = ACTIONS(5689), + [anon_sym_STAR_EQ] = ACTIONS(5689), + [anon_sym_SLASH_EQ] = ACTIONS(5689), + [anon_sym_PERCENT_EQ] = ACTIONS(5689), + [anon_sym_PLUS_EQ] = ACTIONS(5689), + [anon_sym_DASH_EQ] = ACTIONS(5689), + [anon_sym_LT_LT_EQ] = ACTIONS(5689), + [anon_sym_GT_GT_EQ] = ACTIONS(5689), + [anon_sym_AMP_EQ] = ACTIONS(5689), + [anon_sym_CARET_EQ] = ACTIONS(5689), + [anon_sym_PIPE_EQ] = ACTIONS(5689), + [anon_sym_LT_EQ_GT] = ACTIONS(5689), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_bitor] = ACTIONS(7543), + [anon_sym_xor] = ACTIONS(7543), + [anon_sym_bitand] = ACTIONS(7543), + [anon_sym_not_eq] = ACTIONS(7543), + [anon_sym_DASH_DASH] = ACTIONS(5689), + [anon_sym_PLUS_PLUS] = ACTIONS(5689), + [anon_sym_DOT] = ACTIONS(7543), + [anon_sym_DOT_STAR] = ACTIONS(5689), + [anon_sym_DASH_GT] = ACTIONS(7543), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7543), + [anon_sym_final] = ACTIONS(7543), + [anon_sym_override] = ACTIONS(7543), + [anon_sym_template] = ACTIONS(7543), + [anon_sym_requires] = ACTIONS(7543), + [anon_sym_DASH_GT_STAR] = ACTIONS(5689), + [anon_sym_LBRACK_COLON] = ACTIONS(5689), + }, + [STATE(2822)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7464), + [anon_sym_COMMA] = ACTIONS(7464), + [anon_sym_LPAREN2] = ACTIONS(7464), + [anon_sym_DASH] = ACTIONS(7462), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_STAR] = ACTIONS(7462), + [anon_sym_SLASH] = ACTIONS(7462), + [anon_sym_PERCENT] = ACTIONS(7462), + [anon_sym_PIPE_PIPE] = ACTIONS(7464), + [anon_sym_AMP_AMP] = ACTIONS(7464), + [anon_sym_PIPE] = ACTIONS(7462), + [anon_sym_CARET] = ACTIONS(7462), + [anon_sym_AMP] = ACTIONS(7462), + [anon_sym_EQ_EQ] = ACTIONS(7464), + [anon_sym_BANG_EQ] = ACTIONS(7464), + [anon_sym_GT] = ACTIONS(7462), + [anon_sym_GT_EQ] = ACTIONS(7462), + [anon_sym_LT_EQ] = ACTIONS(7462), + [anon_sym_LT] = ACTIONS(7462), + [anon_sym_LT_LT] = ACTIONS(7462), + [anon_sym_GT_GT] = ACTIONS(7462), + [anon_sym___extension__] = ACTIONS(7464), + [anon_sym___attribute__] = ACTIONS(7464), + [anon_sym___attribute] = ACTIONS(7462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(7462), + [anon_sym_EQ] = ACTIONS(7462), + [anon_sym_const] = ACTIONS(7462), + [anon_sym_constexpr] = ACTIONS(7464), + [anon_sym_volatile] = ACTIONS(7464), + [anon_sym_restrict] = ACTIONS(7464), + [anon_sym___restrict__] = ACTIONS(7464), + [anon_sym__Atomic] = ACTIONS(7464), + [anon_sym__Noreturn] = ACTIONS(7464), + [anon_sym_noreturn] = ACTIONS(7464), + [anon_sym__Nonnull] = ACTIONS(7464), + [anon_sym_mutable] = ACTIONS(7464), + [anon_sym_constinit] = ACTIONS(7464), + [anon_sym_consteval] = ACTIONS(7464), + [anon_sym_alignas] = ACTIONS(7464), + [anon_sym__Alignas] = ACTIONS(7464), + [anon_sym_QMARK] = ACTIONS(7464), + [anon_sym_STAR_EQ] = ACTIONS(7464), + [anon_sym_SLASH_EQ] = ACTIONS(7464), + [anon_sym_PERCENT_EQ] = ACTIONS(7464), + [anon_sym_PLUS_EQ] = ACTIONS(7464), + [anon_sym_DASH_EQ] = ACTIONS(7464), + [anon_sym_LT_LT_EQ] = ACTIONS(7464), + [anon_sym_GT_GT_EQ] = ACTIONS(7462), + [anon_sym_AMP_EQ] = ACTIONS(7464), + [anon_sym_CARET_EQ] = ACTIONS(7464), + [anon_sym_PIPE_EQ] = ACTIONS(7464), + [anon_sym_and_eq] = ACTIONS(7464), + [anon_sym_or_eq] = ACTIONS(7464), + [anon_sym_xor_eq] = ACTIONS(7464), + [anon_sym_LT_EQ_GT] = ACTIONS(7464), + [anon_sym_or] = ACTIONS(7462), + [anon_sym_and] = ACTIONS(7462), + [anon_sym_bitor] = ACTIONS(7464), + [anon_sym_xor] = ACTIONS(7462), + [anon_sym_bitand] = ACTIONS(7464), + [anon_sym_not_eq] = ACTIONS(7464), + [anon_sym_DASH_DASH] = ACTIONS(7464), + [anon_sym_PLUS_PLUS] = ACTIONS(7464), + [anon_sym_asm] = ACTIONS(7464), + [anon_sym___asm__] = ACTIONS(7464), + [anon_sym___asm] = ACTIONS(7462), + [anon_sym_DOT] = ACTIONS(7462), + [anon_sym_DOT_STAR] = ACTIONS(7464), + [anon_sym_DASH_GT] = ACTIONS(7464), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7464), + [anon_sym_override] = ACTIONS(7464), + [anon_sym_GT2] = ACTIONS(7464), + [anon_sym_noexcept] = ACTIONS(7464), + [anon_sym_throw] = ACTIONS(7464), + [anon_sym_requires] = ACTIONS(7464), + }, + [STATE(2823)] = { + [sym__abstract_declarator] = STATE(7655), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(4446), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2460), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9608), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4446), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6600), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(7925), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6600), + [anon_sym_PIPE_PIPE] = ACTIONS(6600), + [anon_sym_AMP_AMP] = ACTIONS(7927), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6600), + [anon_sym_AMP] = ACTIONS(7929), + [anon_sym_EQ_EQ] = ACTIONS(6600), + [anon_sym_BANG_EQ] = ACTIONS(6600), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6600), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6600), + [anon_sym_GT_GT] = ACTIONS(6600), [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_COLON_COLON] = ACTIONS(7931), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(6600), + [anon_sym_const] = ACTIONS(7507), [anon_sym_constexpr] = ACTIONS(7507), [anon_sym_volatile] = ACTIONS(7507), [anon_sym_restrict] = ACTIONS(7507), @@ -380406,6485 +390334,6506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_alignas] = ACTIONS(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(6600), + [anon_sym_LT_EQ_GT] = ACTIONS(6600), + [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(6600), + [anon_sym_PLUS_PLUS] = ACTIONS(6600), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6600), + [anon_sym_DASH_GT] = ACTIONS(6600), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7547), + [anon_sym_COMMA] = ACTIONS(7547), + [anon_sym_LPAREN2] = ACTIONS(7547), + [anon_sym_DASH] = ACTIONS(7545), + [anon_sym_PLUS] = ACTIONS(7545), + [anon_sym_STAR] = ACTIONS(7545), + [anon_sym_SLASH] = ACTIONS(7545), + [anon_sym_PERCENT] = ACTIONS(7545), + [anon_sym_PIPE_PIPE] = ACTIONS(7547), + [anon_sym_AMP_AMP] = ACTIONS(7547), + [anon_sym_PIPE] = ACTIONS(7545), + [anon_sym_CARET] = ACTIONS(7545), + [anon_sym_AMP] = ACTIONS(7545), + [anon_sym_EQ_EQ] = ACTIONS(7547), + [anon_sym_BANG_EQ] = ACTIONS(7547), + [anon_sym_GT] = ACTIONS(7545), + [anon_sym_GT_EQ] = ACTIONS(7545), + [anon_sym_LT_EQ] = ACTIONS(7545), + [anon_sym_LT] = ACTIONS(7545), + [anon_sym_LT_LT] = ACTIONS(7545), + [anon_sym_GT_GT] = ACTIONS(7545), + [anon_sym___extension__] = ACTIONS(7547), + [anon_sym___attribute__] = ACTIONS(7547), + [anon_sym___attribute] = ACTIONS(7545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7547), + [anon_sym_LBRACK] = ACTIONS(7545), + [anon_sym_EQ] = ACTIONS(7545), + [anon_sym_const] = ACTIONS(7545), + [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(7547), + [anon_sym_STAR_EQ] = ACTIONS(7547), + [anon_sym_SLASH_EQ] = ACTIONS(7547), + [anon_sym_PERCENT_EQ] = ACTIONS(7547), + [anon_sym_PLUS_EQ] = ACTIONS(7547), + [anon_sym_DASH_EQ] = ACTIONS(7547), + [anon_sym_LT_LT_EQ] = ACTIONS(7547), + [anon_sym_GT_GT_EQ] = ACTIONS(7545), + [anon_sym_AMP_EQ] = ACTIONS(7547), + [anon_sym_CARET_EQ] = ACTIONS(7547), + [anon_sym_PIPE_EQ] = ACTIONS(7547), + [anon_sym_and_eq] = ACTIONS(7547), + [anon_sym_or_eq] = ACTIONS(7547), + [anon_sym_xor_eq] = ACTIONS(7547), + [anon_sym_LT_EQ_GT] = ACTIONS(7547), + [anon_sym_or] = ACTIONS(7545), + [anon_sym_and] = ACTIONS(7545), + [anon_sym_bitor] = ACTIONS(7547), + [anon_sym_xor] = ACTIONS(7545), + [anon_sym_bitand] = ACTIONS(7547), + [anon_sym_not_eq] = ACTIONS(7547), + [anon_sym_DASH_DASH] = ACTIONS(7547), + [anon_sym_PLUS_PLUS] = ACTIONS(7547), + [anon_sym_asm] = ACTIONS(7547), + [anon_sym___asm__] = ACTIONS(7547), + [anon_sym___asm] = ACTIONS(7545), + [anon_sym_DOT] = ACTIONS(7545), + [anon_sym_DOT_STAR] = ACTIONS(7547), + [anon_sym_DASH_GT] = ACTIONS(7547), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7547), + [anon_sym_override] = ACTIONS(7547), + [anon_sym_GT2] = ACTIONS(7547), + [anon_sym_noexcept] = ACTIONS(7547), + [anon_sym_throw] = ACTIONS(7547), + [anon_sym_requires] = ACTIONS(7547), }, [STATE(2825)] = { - [sym_attribute_specifier] = STATE(3088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), - [anon_sym_COMMA] = ACTIONS(7523), + [sym__abstract_declarator] = STATE(7658), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(2830), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2449), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9637), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2830), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), [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), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(7915), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(7917), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(7919), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [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(6604), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7921), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6604), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7547), + [anon_sym_COMMA] = ACTIONS(7547), + [anon_sym_LPAREN2] = ACTIONS(7547), + [anon_sym_DASH] = ACTIONS(7545), + [anon_sym_PLUS] = ACTIONS(7545), + [anon_sym_STAR] = ACTIONS(7545), + [anon_sym_SLASH] = ACTIONS(7545), + [anon_sym_PERCENT] = ACTIONS(7545), + [anon_sym_PIPE_PIPE] = ACTIONS(7547), + [anon_sym_AMP_AMP] = ACTIONS(7547), + [anon_sym_PIPE] = ACTIONS(7545), + [anon_sym_CARET] = ACTIONS(7545), + [anon_sym_AMP] = ACTIONS(7545), + [anon_sym_EQ_EQ] = ACTIONS(7547), + [anon_sym_BANG_EQ] = ACTIONS(7547), + [anon_sym_GT] = ACTIONS(7545), + [anon_sym_GT_EQ] = ACTIONS(7547), + [anon_sym_LT_EQ] = ACTIONS(7545), + [anon_sym_LT] = ACTIONS(7545), + [anon_sym_LT_LT] = ACTIONS(7545), + [anon_sym_GT_GT] = ACTIONS(7545), + [anon_sym___extension__] = ACTIONS(7547), + [anon_sym___attribute__] = ACTIONS(7547), + [anon_sym___attribute] = ACTIONS(7545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7547), + [anon_sym_LBRACK] = ACTIONS(7545), + [anon_sym_RBRACK] = ACTIONS(7547), + [anon_sym_EQ] = ACTIONS(7545), + [anon_sym_const] = ACTIONS(7545), + [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(7547), + [anon_sym_STAR_EQ] = ACTIONS(7547), + [anon_sym_SLASH_EQ] = ACTIONS(7547), + [anon_sym_PERCENT_EQ] = ACTIONS(7547), + [anon_sym_PLUS_EQ] = ACTIONS(7547), + [anon_sym_DASH_EQ] = ACTIONS(7547), + [anon_sym_LT_LT_EQ] = ACTIONS(7547), + [anon_sym_GT_GT_EQ] = ACTIONS(7547), + [anon_sym_AMP_EQ] = ACTIONS(7547), + [anon_sym_CARET_EQ] = ACTIONS(7547), + [anon_sym_PIPE_EQ] = ACTIONS(7547), + [anon_sym_and_eq] = ACTIONS(7547), + [anon_sym_or_eq] = ACTIONS(7547), + [anon_sym_xor_eq] = ACTIONS(7547), + [anon_sym_LT_EQ_GT] = ACTIONS(7547), + [anon_sym_or] = ACTIONS(7545), + [anon_sym_and] = ACTIONS(7545), + [anon_sym_bitor] = ACTIONS(7547), + [anon_sym_xor] = ACTIONS(7545), + [anon_sym_bitand] = ACTIONS(7547), + [anon_sym_not_eq] = ACTIONS(7547), + [anon_sym_DASH_DASH] = ACTIONS(7547), + [anon_sym_PLUS_PLUS] = ACTIONS(7547), + [anon_sym_asm] = ACTIONS(7547), + [anon_sym___asm__] = ACTIONS(7547), + [anon_sym___asm] = ACTIONS(7545), + [anon_sym_DOT] = ACTIONS(7545), + [anon_sym_DOT_STAR] = ACTIONS(7547), + [anon_sym_DASH_GT] = ACTIONS(7547), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7547), + [anon_sym_override] = ACTIONS(7547), + [anon_sym_noexcept] = ACTIONS(7547), + [anon_sym_throw] = ACTIONS(7547), + [anon_sym_requires] = ACTIONS(7547), }, [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), + [sym_identifier] = ACTIONS(7366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7368), + [anon_sym_COMMA] = ACTIONS(7368), + [anon_sym_RPAREN] = ACTIONS(7368), + [aux_sym_preproc_if_token2] = ACTIONS(7368), + [aux_sym_preproc_else_token1] = ACTIONS(7368), + [aux_sym_preproc_elif_token1] = ACTIONS(7366), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7368), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7368), + [anon_sym_LPAREN2] = ACTIONS(7368), + [anon_sym_DASH] = ACTIONS(7366), + [anon_sym_PLUS] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(7368), + [anon_sym_SLASH] = ACTIONS(7366), + [anon_sym_PERCENT] = ACTIONS(7368), + [anon_sym_PIPE_PIPE] = ACTIONS(7368), + [anon_sym_AMP_AMP] = ACTIONS(7368), + [anon_sym_PIPE] = ACTIONS(7366), + [anon_sym_CARET] = ACTIONS(7368), + [anon_sym_AMP] = ACTIONS(7366), + [anon_sym_EQ_EQ] = ACTIONS(7368), + [anon_sym_BANG_EQ] = ACTIONS(7368), + [anon_sym_GT] = ACTIONS(7366), + [anon_sym_GT_EQ] = ACTIONS(7368), + [anon_sym_LT_EQ] = ACTIONS(7366), + [anon_sym_LT] = ACTIONS(7366), + [anon_sym_LT_LT] = ACTIONS(7368), + [anon_sym_GT_GT] = ACTIONS(7368), + [anon_sym_SEMI] = ACTIONS(7368), + [anon_sym___extension__] = ACTIONS(7366), + [anon_sym___attribute__] = ACTIONS(7366), + [anon_sym___attribute] = ACTIONS(7366), + [anon_sym_COLON] = ACTIONS(7366), + [anon_sym_COLON_COLON] = ACTIONS(7368), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7368), + [sym_ms_restrict_modifier] = ACTIONS(7366), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7366), + [sym_ms_signed_ptr_modifier] = ACTIONS(7366), + [anon_sym__unaligned] = ACTIONS(7366), + [anon_sym___unaligned] = ACTIONS(7366), + [anon_sym_RBRACE] = ACTIONS(7368), + [anon_sym_LBRACK] = ACTIONS(7366), + [anon_sym_const] = ACTIONS(7366), + [anon_sym_constexpr] = ACTIONS(7366), + [anon_sym_volatile] = ACTIONS(7366), + [anon_sym_restrict] = ACTIONS(7366), + [anon_sym___restrict__] = ACTIONS(7366), + [anon_sym__Atomic] = ACTIONS(7366), + [anon_sym__Noreturn] = ACTIONS(7366), + [anon_sym_noreturn] = ACTIONS(7366), + [anon_sym__Nonnull] = ACTIONS(7366), + [anon_sym_mutable] = ACTIONS(7366), + [anon_sym_constinit] = ACTIONS(7366), + [anon_sym_consteval] = ACTIONS(7366), + [anon_sym_alignas] = ACTIONS(7366), + [anon_sym__Alignas] = ACTIONS(7366), + [anon_sym_QMARK] = ACTIONS(7368), + [anon_sym_LT_EQ_GT] = ACTIONS(7368), + [anon_sym_or] = ACTIONS(7366), + [anon_sym_and] = ACTIONS(7366), + [anon_sym_bitor] = ACTIONS(7366), + [anon_sym_xor] = ACTIONS(7366), + [anon_sym_bitand] = ACTIONS(7366), + [anon_sym_not_eq] = ACTIONS(7366), + [anon_sym_DASH_DASH] = ACTIONS(7368), + [anon_sym_PLUS_PLUS] = ACTIONS(7368), + [anon_sym_DOT] = ACTIONS(7366), + [anon_sym_DOT_STAR] = ACTIONS(7368), + [anon_sym_DASH_GT] = ACTIONS(7368), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7366), + [anon_sym_final] = ACTIONS(7366), + [anon_sym_override] = ACTIONS(7366), + [anon_sym_template] = ACTIONS(7366), + [anon_sym_requires] = ACTIONS(7366), + [anon_sym_LBRACK_COLON] = ACTIONS(7368), + [anon_sym_COLON_RBRACK] = ACTIONS(7368), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2734), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(8622), + [anon_sym_unsigned] = ACTIONS(8622), + [anon_sym_long] = ACTIONS(8622), + [anon_sym_short] = ACTIONS(8622), + [anon_sym_LBRACK] = ACTIONS(7186), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7186), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7186), }, [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), + [sym_identifier] = ACTIONS(7346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7348), + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_RPAREN] = ACTIONS(7348), + [aux_sym_preproc_if_token2] = ACTIONS(7348), + [aux_sym_preproc_else_token1] = ACTIONS(7348), + [aux_sym_preproc_elif_token1] = ACTIONS(7346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7348), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7348), + [anon_sym_DASH] = ACTIONS(7346), + [anon_sym_PLUS] = ACTIONS(7346), + [anon_sym_STAR] = ACTIONS(7348), + [anon_sym_SLASH] = ACTIONS(7346), + [anon_sym_PERCENT] = ACTIONS(7348), + [anon_sym_PIPE_PIPE] = ACTIONS(7348), + [anon_sym_AMP_AMP] = ACTIONS(7348), + [anon_sym_PIPE] = ACTIONS(7346), + [anon_sym_CARET] = ACTIONS(7348), + [anon_sym_AMP] = ACTIONS(7346), + [anon_sym_EQ_EQ] = ACTIONS(7348), + [anon_sym_BANG_EQ] = ACTIONS(7348), + [anon_sym_GT] = ACTIONS(7346), + [anon_sym_GT_EQ] = ACTIONS(7348), + [anon_sym_LT_EQ] = ACTIONS(7346), + [anon_sym_LT] = ACTIONS(7346), + [anon_sym_LT_LT] = ACTIONS(7348), + [anon_sym_GT_GT] = ACTIONS(7348), + [anon_sym_SEMI] = ACTIONS(7348), + [anon_sym___extension__] = ACTIONS(7346), + [anon_sym___attribute__] = ACTIONS(7346), + [anon_sym___attribute] = ACTIONS(7346), + [anon_sym_COLON] = ACTIONS(7346), + [anon_sym_COLON_COLON] = ACTIONS(7348), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7348), + [sym_ms_restrict_modifier] = ACTIONS(7346), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7346), + [sym_ms_signed_ptr_modifier] = ACTIONS(7346), + [anon_sym__unaligned] = ACTIONS(7346), + [anon_sym___unaligned] = ACTIONS(7346), + [anon_sym_RBRACE] = ACTIONS(7348), + [anon_sym_LBRACK] = ACTIONS(7346), + [anon_sym_const] = ACTIONS(7346), + [anon_sym_constexpr] = ACTIONS(7346), + [anon_sym_volatile] = ACTIONS(7346), + [anon_sym_restrict] = ACTIONS(7346), + [anon_sym___restrict__] = ACTIONS(7346), + [anon_sym__Atomic] = ACTIONS(7346), + [anon_sym__Noreturn] = ACTIONS(7346), + [anon_sym_noreturn] = ACTIONS(7346), + [anon_sym__Nonnull] = ACTIONS(7346), + [anon_sym_mutable] = ACTIONS(7346), + [anon_sym_constinit] = ACTIONS(7346), + [anon_sym_consteval] = ACTIONS(7346), + [anon_sym_alignas] = ACTIONS(7346), + [anon_sym__Alignas] = ACTIONS(7346), + [anon_sym_QMARK] = ACTIONS(7348), + [anon_sym_LT_EQ_GT] = ACTIONS(7348), + [anon_sym_or] = ACTIONS(7346), + [anon_sym_and] = ACTIONS(7346), + [anon_sym_bitor] = ACTIONS(7346), + [anon_sym_xor] = ACTIONS(7346), + [anon_sym_bitand] = ACTIONS(7346), + [anon_sym_not_eq] = ACTIONS(7346), + [anon_sym_DASH_DASH] = ACTIONS(7348), + [anon_sym_PLUS_PLUS] = ACTIONS(7348), + [anon_sym_DOT] = ACTIONS(7346), + [anon_sym_DOT_STAR] = ACTIONS(7348), + [anon_sym_DASH_GT] = ACTIONS(7348), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7346), + [anon_sym_final] = ACTIONS(7346), + [anon_sym_override] = ACTIONS(7346), + [anon_sym_template] = ACTIONS(7346), + [anon_sym_requires] = ACTIONS(7346), + [anon_sym_LBRACK_COLON] = ACTIONS(7348), + [anon_sym_COLON_RBRACK] = ACTIONS(7348), }, [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), + [sym__abstract_declarator] = STATE(7661), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(4421), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2449), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9637), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4421), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(6618), + [anon_sym_PLUS] = ACTIONS(6618), + [anon_sym_STAR] = ACTIONS(7915), + [anon_sym_SLASH] = ACTIONS(6618), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(7917), + [anon_sym_PIPE] = ACTIONS(6618), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(7919), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6618), + [anon_sym_GT_EQ] = ACTIONS(6618), + [anon_sym_LT_EQ] = ACTIONS(6618), + [anon_sym_LT] = ACTIONS(6618), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6618), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7921), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [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(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6618), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym__abstract_declarator] = STATE(7662), + [sym_abstract_parenthesized_declarator] = STATE(7555), + [sym_abstract_pointer_declarator] = STATE(7555), + [sym_abstract_function_declarator] = STATE(7555), + [sym_abstract_array_declarator] = STATE(7555), + [sym_type_qualifier] = STATE(2737), + [sym_alignas_qualifier] = STATE(4784), + [sym_parameter_list] = STATE(2449), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7555), + [sym__function_declarator_seq] = STATE(7567), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9637), + [sym_abstract_qualified_identifier] = STATE(7555), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2737), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(7523), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(7915), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(7917), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(7919), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [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(6608), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(7531), + [anon_sym_COLON_COLON] = ACTIONS(7921), + [anon_sym_LBRACK] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7531), + [anon_sym_volatile] = ACTIONS(7531), + [anon_sym_restrict] = ACTIONS(7531), + [anon_sym___restrict__] = ACTIONS(7531), + [anon_sym__Atomic] = ACTIONS(7531), + [anon_sym__Noreturn] = ACTIONS(7531), + [anon_sym_noreturn] = ACTIONS(7531), + [anon_sym__Nonnull] = ACTIONS(7531), + [anon_sym_mutable] = ACTIONS(7531), + [anon_sym_constinit] = ACTIONS(7531), + [anon_sym_consteval] = ACTIONS(7531), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [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(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = ACTIONS(7911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7913), + [anon_sym_COMMA] = ACTIONS(7913), + [anon_sym_RPAREN] = ACTIONS(7913), + [anon_sym_LPAREN2] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(7911), + [anon_sym_PLUS] = ACTIONS(7911), + [anon_sym_STAR] = ACTIONS(7911), + [anon_sym_SLASH] = ACTIONS(7911), + [anon_sym_PERCENT] = ACTIONS(7911), + [anon_sym_PIPE_PIPE] = ACTIONS(7913), + [anon_sym_AMP_AMP] = ACTIONS(7913), + [anon_sym_PIPE] = ACTIONS(7911), + [anon_sym_CARET] = ACTIONS(7911), + [anon_sym_AMP] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(7913), + [anon_sym_BANG_EQ] = ACTIONS(7913), + [anon_sym_GT] = ACTIONS(7911), + [anon_sym_GT_EQ] = ACTIONS(7913), + [anon_sym_LT_EQ] = ACTIONS(7911), + [anon_sym_LT] = ACTIONS(7911), + [anon_sym_LT_LT] = ACTIONS(7911), + [anon_sym_GT_GT] = ACTIONS(7911), + [anon_sym___extension__] = ACTIONS(7911), + [anon_sym___attribute__] = ACTIONS(7911), + [anon_sym___attribute] = ACTIONS(7911), + [anon_sym_COLON_COLON] = ACTIONS(7913), + [anon_sym_LBRACK] = ACTIONS(7911), + [anon_sym_EQ] = ACTIONS(7911), + [anon_sym_const] = ACTIONS(7911), + [anon_sym_constexpr] = ACTIONS(7911), + [anon_sym_volatile] = ACTIONS(7911), + [anon_sym_restrict] = ACTIONS(7911), + [anon_sym___restrict__] = ACTIONS(7911), + [anon_sym__Atomic] = ACTIONS(7911), + [anon_sym__Noreturn] = ACTIONS(7911), + [anon_sym_noreturn] = ACTIONS(7911), + [anon_sym__Nonnull] = ACTIONS(7911), + [anon_sym_mutable] = ACTIONS(7911), + [anon_sym_constinit] = ACTIONS(7911), + [anon_sym_consteval] = ACTIONS(7911), + [anon_sym_alignas] = ACTIONS(7911), + [anon_sym__Alignas] = ACTIONS(7911), + [anon_sym_QMARK] = ACTIONS(7913), + [anon_sym_STAR_EQ] = ACTIONS(7913), + [anon_sym_SLASH_EQ] = ACTIONS(7913), + [anon_sym_PERCENT_EQ] = ACTIONS(7913), + [anon_sym_PLUS_EQ] = ACTIONS(7913), + [anon_sym_DASH_EQ] = ACTIONS(7913), + [anon_sym_LT_LT_EQ] = ACTIONS(7913), + [anon_sym_GT_GT_EQ] = ACTIONS(7913), + [anon_sym_AMP_EQ] = ACTIONS(7913), + [anon_sym_CARET_EQ] = ACTIONS(7913), + [anon_sym_PIPE_EQ] = ACTIONS(7913), + [anon_sym_and_eq] = ACTIONS(7911), + [anon_sym_or_eq] = ACTIONS(7911), + [anon_sym_xor_eq] = ACTIONS(7911), + [anon_sym_LT_EQ_GT] = ACTIONS(7913), + [anon_sym_or] = ACTIONS(7911), + [anon_sym_and] = ACTIONS(7911), + [anon_sym_bitor] = ACTIONS(7911), + [anon_sym_xor] = ACTIONS(7911), + [anon_sym_bitand] = ACTIONS(7911), + [anon_sym_not_eq] = ACTIONS(7911), + [anon_sym_DASH_DASH] = ACTIONS(7913), + [anon_sym_PLUS_PLUS] = ACTIONS(7913), + [anon_sym_DOT] = ACTIONS(7911), + [anon_sym_DOT_STAR] = ACTIONS(7913), + [anon_sym_DASH_GT] = ACTIONS(7911), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7911), + [anon_sym_final] = ACTIONS(7911), + [anon_sym_override] = ACTIONS(7911), + [anon_sym_template] = ACTIONS(7911), + [anon_sym_requires] = ACTIONS(7911), + [anon_sym_DASH_GT_STAR] = ACTIONS(7913), + [anon_sym_LBRACK_COLON] = ACTIONS(7913), }, [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), + [sym__abstract_declarator] = STATE(7674), + [sym_abstract_parenthesized_declarator] = STATE(7547), + [sym_abstract_pointer_declarator] = STATE(7547), + [sym_abstract_function_declarator] = STATE(7547), + [sym_abstract_array_declarator] = STATE(7547), + [sym_type_qualifier] = STATE(2794), + [sym_alignas_qualifier] = STATE(4789), + [sym_parameter_list] = STATE(2460), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(7547), + [sym__function_declarator_seq] = STATE(7575), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9608), + [sym_abstract_qualified_identifier] = STATE(7547), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(2794), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(7499), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(7925), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(7927), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(7929), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym_COLON_COLON] = ACTIONS(7931), + [anon_sym_LBRACK] = ACTIONS(7515), + [anon_sym_RBRACK] = ACTIONS(6604), + [anon_sym_const] = ACTIONS(7507), + [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(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [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(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = ACTIONS(7714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7716), + [anon_sym_COMMA] = ACTIONS(7716), + [anon_sym_RPAREN] = ACTIONS(7716), + [anon_sym_LPAREN2] = ACTIONS(7716), + [anon_sym_DASH] = ACTIONS(7714), + [anon_sym_PLUS] = ACTIONS(7714), + [anon_sym_STAR] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7714), + [anon_sym_PERCENT] = ACTIONS(7714), + [anon_sym_PIPE_PIPE] = ACTIONS(7716), + [anon_sym_AMP_AMP] = ACTIONS(7716), + [anon_sym_PIPE] = ACTIONS(7714), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_AMP] = ACTIONS(7714), + [anon_sym_EQ_EQ] = ACTIONS(7716), + [anon_sym_BANG_EQ] = ACTIONS(7716), + [anon_sym_GT] = ACTIONS(7714), + [anon_sym_GT_EQ] = ACTIONS(7716), + [anon_sym_LT_EQ] = ACTIONS(7714), + [anon_sym_LT] = ACTIONS(7714), + [anon_sym_LT_LT] = ACTIONS(7714), + [anon_sym_GT_GT] = ACTIONS(7714), + [anon_sym___extension__] = ACTIONS(7714), + [anon_sym___attribute__] = ACTIONS(7714), + [anon_sym___attribute] = ACTIONS(7714), + [anon_sym_COLON_COLON] = ACTIONS(7716), + [anon_sym_LBRACK] = ACTIONS(7714), + [anon_sym_EQ] = ACTIONS(7714), + [anon_sym_const] = ACTIONS(7714), + [anon_sym_constexpr] = ACTIONS(7714), + [anon_sym_volatile] = ACTIONS(7714), + [anon_sym_restrict] = ACTIONS(7714), + [anon_sym___restrict__] = ACTIONS(7714), + [anon_sym__Atomic] = ACTIONS(7714), + [anon_sym__Noreturn] = ACTIONS(7714), + [anon_sym_noreturn] = ACTIONS(7714), + [anon_sym__Nonnull] = ACTIONS(7714), + [anon_sym_mutable] = ACTIONS(7714), + [anon_sym_constinit] = ACTIONS(7714), + [anon_sym_consteval] = ACTIONS(7714), + [anon_sym_alignas] = ACTIONS(7714), + [anon_sym__Alignas] = ACTIONS(7714), + [anon_sym_QMARK] = ACTIONS(7716), + [anon_sym_STAR_EQ] = ACTIONS(7716), + [anon_sym_SLASH_EQ] = ACTIONS(7716), + [anon_sym_PERCENT_EQ] = ACTIONS(7716), + [anon_sym_PLUS_EQ] = ACTIONS(7716), + [anon_sym_DASH_EQ] = ACTIONS(7716), + [anon_sym_LT_LT_EQ] = ACTIONS(7716), + [anon_sym_GT_GT_EQ] = ACTIONS(7716), + [anon_sym_AMP_EQ] = ACTIONS(7716), + [anon_sym_CARET_EQ] = ACTIONS(7716), + [anon_sym_PIPE_EQ] = ACTIONS(7716), + [anon_sym_and_eq] = ACTIONS(7714), + [anon_sym_or_eq] = ACTIONS(7714), + [anon_sym_xor_eq] = ACTIONS(7714), + [anon_sym_LT_EQ_GT] = ACTIONS(7716), + [anon_sym_or] = ACTIONS(7714), + [anon_sym_and] = ACTIONS(7714), + [anon_sym_bitor] = ACTIONS(7714), + [anon_sym_xor] = ACTIONS(7714), + [anon_sym_bitand] = ACTIONS(7714), + [anon_sym_not_eq] = ACTIONS(7714), + [anon_sym_DASH_DASH] = ACTIONS(7716), + [anon_sym_PLUS_PLUS] = ACTIONS(7716), + [anon_sym_DOT] = ACTIONS(7714), + [anon_sym_DOT_STAR] = ACTIONS(7716), + [anon_sym_DASH_GT] = ACTIONS(7714), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7714), + [anon_sym_final] = ACTIONS(7714), + [anon_sym_override] = ACTIONS(7714), + [anon_sym_template] = ACTIONS(7714), + [anon_sym_requires] = ACTIONS(7714), + [anon_sym_DASH_GT_STAR] = ACTIONS(7716), + [anon_sym_LBRACK_COLON] = ACTIONS(7716), }, [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), + [sym_identifier] = ACTIONS(7495), + [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(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [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_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(7495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_DASH_GT_STAR] = ACTIONS(7497), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), + [sym_template_argument_list] = STATE(2877), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(8375), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7447), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7442), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_DASH_GT_STAR] = ACTIONS(7447), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_identifier] = ACTIONS(7818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7820), + [anon_sym_COMMA] = ACTIONS(7820), + [anon_sym_LPAREN2] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7818), + [anon_sym_STAR] = ACTIONS(7818), + [anon_sym_SLASH] = ACTIONS(7818), + [anon_sym_PERCENT] = ACTIONS(7818), + [anon_sym_PIPE_PIPE] = ACTIONS(7820), + [anon_sym_AMP_AMP] = ACTIONS(7820), + [anon_sym_PIPE] = ACTIONS(7818), + [anon_sym_CARET] = ACTIONS(7818), + [anon_sym_AMP] = ACTIONS(7818), + [anon_sym_EQ_EQ] = ACTIONS(7820), + [anon_sym_BANG_EQ] = ACTIONS(7820), + [anon_sym_GT] = ACTIONS(7818), + [anon_sym_GT_EQ] = ACTIONS(7820), + [anon_sym_LT_EQ] = ACTIONS(7818), + [anon_sym_LT] = ACTIONS(7818), + [anon_sym_LT_LT] = ACTIONS(7818), + [anon_sym_GT_GT] = ACTIONS(7818), + [anon_sym___extension__] = ACTIONS(7818), + [anon_sym___attribute__] = ACTIONS(7818), + [anon_sym___attribute] = ACTIONS(7818), + [anon_sym_COLON_COLON] = ACTIONS(7820), + [anon_sym_LBRACK] = ACTIONS(7818), + [anon_sym_RBRACK] = ACTIONS(7820), + [anon_sym_EQ] = ACTIONS(7818), + [anon_sym_const] = ACTIONS(7818), + [anon_sym_constexpr] = ACTIONS(7818), + [anon_sym_volatile] = ACTIONS(7818), + [anon_sym_restrict] = ACTIONS(7818), + [anon_sym___restrict__] = ACTIONS(7818), + [anon_sym__Atomic] = ACTIONS(7818), + [anon_sym__Noreturn] = ACTIONS(7818), + [anon_sym_noreturn] = ACTIONS(7818), + [anon_sym__Nonnull] = ACTIONS(7818), + [anon_sym_mutable] = ACTIONS(7818), + [anon_sym_constinit] = ACTIONS(7818), + [anon_sym_consteval] = ACTIONS(7818), + [anon_sym_alignas] = ACTIONS(7818), + [anon_sym__Alignas] = ACTIONS(7818), + [anon_sym_QMARK] = ACTIONS(7820), + [anon_sym_STAR_EQ] = ACTIONS(7820), + [anon_sym_SLASH_EQ] = ACTIONS(7820), + [anon_sym_PERCENT_EQ] = ACTIONS(7820), + [anon_sym_PLUS_EQ] = ACTIONS(7820), + [anon_sym_DASH_EQ] = ACTIONS(7820), + [anon_sym_LT_LT_EQ] = ACTIONS(7820), + [anon_sym_GT_GT_EQ] = ACTIONS(7820), + [anon_sym_AMP_EQ] = ACTIONS(7820), + [anon_sym_CARET_EQ] = ACTIONS(7820), + [anon_sym_PIPE_EQ] = ACTIONS(7820), + [anon_sym_and_eq] = ACTIONS(7818), + [anon_sym_or_eq] = ACTIONS(7818), + [anon_sym_xor_eq] = ACTIONS(7818), + [anon_sym_LT_EQ_GT] = ACTIONS(7820), + [anon_sym_or] = ACTIONS(7818), + [anon_sym_and] = ACTIONS(7818), + [anon_sym_bitor] = ACTIONS(7818), + [anon_sym_xor] = ACTIONS(7818), + [anon_sym_bitand] = ACTIONS(7818), + [anon_sym_not_eq] = ACTIONS(7818), + [anon_sym_DASH_DASH] = ACTIONS(7820), + [anon_sym_PLUS_PLUS] = ACTIONS(7820), + [anon_sym_DOT] = ACTIONS(7818), + [anon_sym_DOT_STAR] = ACTIONS(7820), + [anon_sym_DASH_GT] = ACTIONS(7820), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7818), + [anon_sym_final] = ACTIONS(7818), + [anon_sym_override] = ACTIONS(7818), + [anon_sym_template] = ACTIONS(7818), + [anon_sym_requires] = ACTIONS(7818), + [anon_sym_LBRACK_COLON] = ACTIONS(7820), }, [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), + [sym_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym__function_exception_specification] = STATE(3425), + [sym__function_attributes_end] = STATE(4892), + [sym__function_postfix] = STATE(5657), + [sym_trailing_return_type] = STATE(4991), + [sym_noexcept] = STATE(3425), + [sym_throw_specifier] = STATE(3425), + [sym_requires_clause] = STATE(5657), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7472), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7472), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8619), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6923), + [anon_sym_override] = ACTIONS(6923), + [anon_sym_GT2] = ACTIONS(7474), + [anon_sym_noexcept] = ACTIONS(6925), + [anon_sym_throw] = ACTIONS(6927), + [anon_sym_requires] = ACTIONS(6929), }, [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), + [sym_identifier] = ACTIONS(7911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7913), + [anon_sym_COMMA] = ACTIONS(7913), + [anon_sym_LPAREN2] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(7911), + [anon_sym_PLUS] = ACTIONS(7911), + [anon_sym_STAR] = ACTIONS(7911), + [anon_sym_SLASH] = ACTIONS(7911), + [anon_sym_PERCENT] = ACTIONS(7911), + [anon_sym_PIPE_PIPE] = ACTIONS(7913), + [anon_sym_AMP_AMP] = ACTIONS(7913), + [anon_sym_PIPE] = ACTIONS(7911), + [anon_sym_CARET] = ACTIONS(7911), + [anon_sym_AMP] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(7913), + [anon_sym_BANG_EQ] = ACTIONS(7913), + [anon_sym_GT] = ACTIONS(7911), + [anon_sym_GT_EQ] = ACTIONS(7911), + [anon_sym_LT_EQ] = ACTIONS(7911), + [anon_sym_LT] = ACTIONS(7911), + [anon_sym_LT_LT] = ACTIONS(7911), + [anon_sym_GT_GT] = ACTIONS(7911), + [anon_sym___extension__] = ACTIONS(7911), + [anon_sym___attribute__] = ACTIONS(7911), + [anon_sym___attribute] = ACTIONS(7911), + [anon_sym_COLON_COLON] = ACTIONS(7913), + [anon_sym_LBRACK] = ACTIONS(7911), + [anon_sym_EQ] = ACTIONS(7911), + [anon_sym_const] = ACTIONS(7911), + [anon_sym_constexpr] = ACTIONS(7911), + [anon_sym_volatile] = ACTIONS(7911), + [anon_sym_restrict] = ACTIONS(7911), + [anon_sym___restrict__] = ACTIONS(7911), + [anon_sym__Atomic] = ACTIONS(7911), + [anon_sym__Noreturn] = ACTIONS(7911), + [anon_sym_noreturn] = ACTIONS(7911), + [anon_sym__Nonnull] = ACTIONS(7911), + [anon_sym_mutable] = ACTIONS(7911), + [anon_sym_constinit] = ACTIONS(7911), + [anon_sym_consteval] = ACTIONS(7911), + [anon_sym_alignas] = ACTIONS(7911), + [anon_sym__Alignas] = ACTIONS(7911), + [anon_sym_QMARK] = ACTIONS(7913), + [anon_sym_STAR_EQ] = ACTIONS(7913), + [anon_sym_SLASH_EQ] = ACTIONS(7913), + [anon_sym_PERCENT_EQ] = ACTIONS(7913), + [anon_sym_PLUS_EQ] = ACTIONS(7913), + [anon_sym_DASH_EQ] = ACTIONS(7913), + [anon_sym_LT_LT_EQ] = ACTIONS(7913), + [anon_sym_GT_GT_EQ] = ACTIONS(7911), + [anon_sym_AMP_EQ] = ACTIONS(7913), + [anon_sym_CARET_EQ] = ACTIONS(7913), + [anon_sym_PIPE_EQ] = ACTIONS(7913), + [anon_sym_and_eq] = ACTIONS(7911), + [anon_sym_or_eq] = ACTIONS(7911), + [anon_sym_xor_eq] = ACTIONS(7911), + [anon_sym_LT_EQ_GT] = ACTIONS(7913), + [anon_sym_or] = ACTIONS(7911), + [anon_sym_and] = ACTIONS(7911), + [anon_sym_bitor] = ACTIONS(7911), + [anon_sym_xor] = ACTIONS(7911), + [anon_sym_bitand] = ACTIONS(7911), + [anon_sym_not_eq] = ACTIONS(7911), + [anon_sym_DASH_DASH] = ACTIONS(7913), + [anon_sym_PLUS_PLUS] = ACTIONS(7913), + [anon_sym_DOT] = ACTIONS(7911), + [anon_sym_DOT_STAR] = ACTIONS(7913), + [anon_sym_DASH_GT] = ACTIONS(7913), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7911), + [anon_sym_final] = ACTIONS(7911), + [anon_sym_override] = ACTIONS(7911), + [anon_sym_template] = ACTIONS(7911), + [anon_sym_GT2] = ACTIONS(7913), + [anon_sym_requires] = ACTIONS(7911), + [anon_sym_LBRACK_COLON] = ACTIONS(7913), }, [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), + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_exception_specification] = STATE(3435), + [sym__function_attributes_end] = STATE(4620), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3439), + [sym_noexcept] = STATE(3435), + [sym_throw_specifier] = STATE(3435), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(8658), + [anon_sym___attribute] = ACTIONS(8661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8685), + [anon_sym_override] = ACTIONS(8685), + [anon_sym_noexcept] = ACTIONS(6977), + [anon_sym_throw] = ACTIONS(6979), + [anon_sym_requires] = ACTIONS(8688), }, [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), + [sym_identifier] = ACTIONS(7911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7913), + [anon_sym_COMMA] = ACTIONS(7913), + [anon_sym_LPAREN2] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(7911), + [anon_sym_PLUS] = ACTIONS(7911), + [anon_sym_STAR] = ACTIONS(7911), + [anon_sym_SLASH] = ACTIONS(7911), + [anon_sym_PERCENT] = ACTIONS(7911), + [anon_sym_PIPE_PIPE] = ACTIONS(7913), + [anon_sym_AMP_AMP] = ACTIONS(7913), + [anon_sym_PIPE] = ACTIONS(7911), + [anon_sym_CARET] = ACTIONS(7911), + [anon_sym_AMP] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(7913), + [anon_sym_BANG_EQ] = ACTIONS(7913), + [anon_sym_GT] = ACTIONS(7911), + [anon_sym_GT_EQ] = ACTIONS(7913), + [anon_sym_LT_EQ] = ACTIONS(7911), + [anon_sym_LT] = ACTIONS(7911), + [anon_sym_LT_LT] = ACTIONS(7911), + [anon_sym_GT_GT] = ACTIONS(7911), + [anon_sym___extension__] = ACTIONS(7911), + [anon_sym___attribute__] = ACTIONS(7911), + [anon_sym___attribute] = ACTIONS(7911), + [anon_sym_COLON_COLON] = ACTIONS(7913), + [anon_sym_LBRACK] = ACTIONS(7911), + [anon_sym_RBRACK] = ACTIONS(7913), + [anon_sym_EQ] = ACTIONS(7911), + [anon_sym_const] = ACTIONS(7911), + [anon_sym_constexpr] = ACTIONS(7911), + [anon_sym_volatile] = ACTIONS(7911), + [anon_sym_restrict] = ACTIONS(7911), + [anon_sym___restrict__] = ACTIONS(7911), + [anon_sym__Atomic] = ACTIONS(7911), + [anon_sym__Noreturn] = ACTIONS(7911), + [anon_sym_noreturn] = ACTIONS(7911), + [anon_sym__Nonnull] = ACTIONS(7911), + [anon_sym_mutable] = ACTIONS(7911), + [anon_sym_constinit] = ACTIONS(7911), + [anon_sym_consteval] = ACTIONS(7911), + [anon_sym_alignas] = ACTIONS(7911), + [anon_sym__Alignas] = ACTIONS(7911), + [anon_sym_QMARK] = ACTIONS(7913), + [anon_sym_STAR_EQ] = ACTIONS(7913), + [anon_sym_SLASH_EQ] = ACTIONS(7913), + [anon_sym_PERCENT_EQ] = ACTIONS(7913), + [anon_sym_PLUS_EQ] = ACTIONS(7913), + [anon_sym_DASH_EQ] = ACTIONS(7913), + [anon_sym_LT_LT_EQ] = ACTIONS(7913), + [anon_sym_GT_GT_EQ] = ACTIONS(7913), + [anon_sym_AMP_EQ] = ACTIONS(7913), + [anon_sym_CARET_EQ] = ACTIONS(7913), + [anon_sym_PIPE_EQ] = ACTIONS(7913), + [anon_sym_and_eq] = ACTIONS(7911), + [anon_sym_or_eq] = ACTIONS(7911), + [anon_sym_xor_eq] = ACTIONS(7911), + [anon_sym_LT_EQ_GT] = ACTIONS(7913), + [anon_sym_or] = ACTIONS(7911), + [anon_sym_and] = ACTIONS(7911), + [anon_sym_bitor] = ACTIONS(7911), + [anon_sym_xor] = ACTIONS(7911), + [anon_sym_bitand] = ACTIONS(7911), + [anon_sym_not_eq] = ACTIONS(7911), + [anon_sym_DASH_DASH] = ACTIONS(7913), + [anon_sym_PLUS_PLUS] = ACTIONS(7913), + [anon_sym_DOT] = ACTIONS(7911), + [anon_sym_DOT_STAR] = ACTIONS(7913), + [anon_sym_DASH_GT] = ACTIONS(7913), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7911), + [anon_sym_final] = ACTIONS(7911), + [anon_sym_override] = ACTIONS(7911), + [anon_sym_template] = ACTIONS(7911), + [anon_sym_requires] = ACTIONS(7911), + [anon_sym_LBRACK_COLON] = ACTIONS(7913), }, [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), + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_exception_specification] = STATE(3441), + [sym__function_attributes_end] = STATE(4621), + [sym__function_postfix] = STATE(3975), + [sym_trailing_return_type] = STATE(3444), + [sym_noexcept] = STATE(3441), + [sym_throw_specifier] = STATE(3441), + [sym_requires_clause] = STATE(3975), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(8722), + [anon_sym___attribute] = ACTIONS(8725), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8728), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8731), + [anon_sym_override] = ACTIONS(8731), + [anon_sym_noexcept] = ACTIONS(6977), + [anon_sym_throw] = ACTIONS(6979), + [anon_sym_requires] = ACTIONS(8734), }, [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), + [sym_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym__function_exception_specification] = STATE(3442), + [sym__function_attributes_end] = STATE(4916), + [sym__function_postfix] = STATE(5771), + [sym_trailing_return_type] = STATE(5020), + [sym_noexcept] = STATE(3442), + [sym_throw_specifier] = STATE(3442), + [sym_requires_clause] = STATE(5771), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_RBRACK] = ACTIONS(7623), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8737), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7043), + [anon_sym_override] = ACTIONS(7043), + [anon_sym_noexcept] = ACTIONS(7013), + [anon_sym_throw] = ACTIONS(7015), + [anon_sym_requires] = ACTIONS(7045), }, [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), + [sym_identifier] = ACTIONS(7714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7716), + [anon_sym_COMMA] = ACTIONS(7716), + [anon_sym_LPAREN2] = ACTIONS(7716), + [anon_sym_DASH] = ACTIONS(7714), + [anon_sym_PLUS] = ACTIONS(7714), + [anon_sym_STAR] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7714), + [anon_sym_PERCENT] = ACTIONS(7714), + [anon_sym_PIPE_PIPE] = ACTIONS(7716), + [anon_sym_AMP_AMP] = ACTIONS(7716), + [anon_sym_PIPE] = ACTIONS(7714), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_AMP] = ACTIONS(7714), + [anon_sym_EQ_EQ] = ACTIONS(7716), + [anon_sym_BANG_EQ] = ACTIONS(7716), + [anon_sym_GT] = ACTIONS(7714), + [anon_sym_GT_EQ] = ACTIONS(7714), + [anon_sym_LT_EQ] = ACTIONS(7714), + [anon_sym_LT] = ACTIONS(7714), + [anon_sym_LT_LT] = ACTIONS(7714), + [anon_sym_GT_GT] = ACTIONS(7714), + [anon_sym___extension__] = ACTIONS(7714), + [anon_sym___attribute__] = ACTIONS(7714), + [anon_sym___attribute] = ACTIONS(7714), + [anon_sym_COLON_COLON] = ACTIONS(7716), + [anon_sym_LBRACK] = ACTIONS(7714), + [anon_sym_EQ] = ACTIONS(7714), + [anon_sym_const] = ACTIONS(7714), + [anon_sym_constexpr] = ACTIONS(7714), + [anon_sym_volatile] = ACTIONS(7714), + [anon_sym_restrict] = ACTIONS(7714), + [anon_sym___restrict__] = ACTIONS(7714), + [anon_sym__Atomic] = ACTIONS(7714), + [anon_sym__Noreturn] = ACTIONS(7714), + [anon_sym_noreturn] = ACTIONS(7714), + [anon_sym__Nonnull] = ACTIONS(7714), + [anon_sym_mutable] = ACTIONS(7714), + [anon_sym_constinit] = ACTIONS(7714), + [anon_sym_consteval] = ACTIONS(7714), + [anon_sym_alignas] = ACTIONS(7714), + [anon_sym__Alignas] = ACTIONS(7714), + [anon_sym_QMARK] = ACTIONS(7716), + [anon_sym_STAR_EQ] = ACTIONS(7716), + [anon_sym_SLASH_EQ] = ACTIONS(7716), + [anon_sym_PERCENT_EQ] = ACTIONS(7716), + [anon_sym_PLUS_EQ] = ACTIONS(7716), + [anon_sym_DASH_EQ] = ACTIONS(7716), + [anon_sym_LT_LT_EQ] = ACTIONS(7716), + [anon_sym_GT_GT_EQ] = ACTIONS(7714), + [anon_sym_AMP_EQ] = ACTIONS(7716), + [anon_sym_CARET_EQ] = ACTIONS(7716), + [anon_sym_PIPE_EQ] = ACTIONS(7716), + [anon_sym_and_eq] = ACTIONS(7714), + [anon_sym_or_eq] = ACTIONS(7714), + [anon_sym_xor_eq] = ACTIONS(7714), + [anon_sym_LT_EQ_GT] = ACTIONS(7716), + [anon_sym_or] = ACTIONS(7714), + [anon_sym_and] = ACTIONS(7714), + [anon_sym_bitor] = ACTIONS(7714), + [anon_sym_xor] = ACTIONS(7714), + [anon_sym_bitand] = ACTIONS(7714), + [anon_sym_not_eq] = ACTIONS(7714), + [anon_sym_DASH_DASH] = ACTIONS(7716), + [anon_sym_PLUS_PLUS] = ACTIONS(7716), + [anon_sym_DOT] = ACTIONS(7714), + [anon_sym_DOT_STAR] = ACTIONS(7716), + [anon_sym_DASH_GT] = ACTIONS(7716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7714), + [anon_sym_final] = ACTIONS(7714), + [anon_sym_override] = ACTIONS(7714), + [anon_sym_template] = ACTIONS(7714), + [anon_sym_GT2] = ACTIONS(7716), + [anon_sym_requires] = ACTIONS(7714), + [anon_sym_LBRACK_COLON] = ACTIONS(7716), }, [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), + [sym_identifier] = ACTIONS(7818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7820), + [anon_sym_COMMA] = ACTIONS(7820), + [anon_sym_LPAREN2] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7818), + [anon_sym_STAR] = ACTIONS(7818), + [anon_sym_SLASH] = ACTIONS(7818), + [anon_sym_PERCENT] = ACTIONS(7818), + [anon_sym_PIPE_PIPE] = ACTIONS(7820), + [anon_sym_AMP_AMP] = ACTIONS(7820), + [anon_sym_PIPE] = ACTIONS(7818), + [anon_sym_CARET] = ACTIONS(7818), + [anon_sym_AMP] = ACTIONS(7818), + [anon_sym_EQ_EQ] = ACTIONS(7820), + [anon_sym_BANG_EQ] = ACTIONS(7820), + [anon_sym_GT] = ACTIONS(7818), + [anon_sym_GT_EQ] = ACTIONS(7818), + [anon_sym_LT_EQ] = ACTIONS(7818), + [anon_sym_LT] = ACTIONS(7818), + [anon_sym_LT_LT] = ACTIONS(7818), + [anon_sym_GT_GT] = ACTIONS(7818), + [anon_sym___extension__] = ACTIONS(7818), + [anon_sym___attribute__] = ACTIONS(7818), + [anon_sym___attribute] = ACTIONS(7818), + [anon_sym_COLON_COLON] = ACTIONS(7820), + [anon_sym_LBRACK] = ACTIONS(7818), + [anon_sym_EQ] = ACTIONS(7818), + [anon_sym_const] = ACTIONS(7818), + [anon_sym_constexpr] = ACTIONS(7818), + [anon_sym_volatile] = ACTIONS(7818), + [anon_sym_restrict] = ACTIONS(7818), + [anon_sym___restrict__] = ACTIONS(7818), + [anon_sym__Atomic] = ACTIONS(7818), + [anon_sym__Noreturn] = ACTIONS(7818), + [anon_sym_noreturn] = ACTIONS(7818), + [anon_sym__Nonnull] = ACTIONS(7818), + [anon_sym_mutable] = ACTIONS(7818), + [anon_sym_constinit] = ACTIONS(7818), + [anon_sym_consteval] = ACTIONS(7818), + [anon_sym_alignas] = ACTIONS(7818), + [anon_sym__Alignas] = ACTIONS(7818), + [anon_sym_QMARK] = ACTIONS(7820), + [anon_sym_STAR_EQ] = ACTIONS(7820), + [anon_sym_SLASH_EQ] = ACTIONS(7820), + [anon_sym_PERCENT_EQ] = ACTIONS(7820), + [anon_sym_PLUS_EQ] = ACTIONS(7820), + [anon_sym_DASH_EQ] = ACTIONS(7820), + [anon_sym_LT_LT_EQ] = ACTIONS(7820), + [anon_sym_GT_GT_EQ] = ACTIONS(7818), + [anon_sym_AMP_EQ] = ACTIONS(7820), + [anon_sym_CARET_EQ] = ACTIONS(7820), + [anon_sym_PIPE_EQ] = ACTIONS(7820), + [anon_sym_and_eq] = ACTIONS(7818), + [anon_sym_or_eq] = ACTIONS(7818), + [anon_sym_xor_eq] = ACTIONS(7818), + [anon_sym_LT_EQ_GT] = ACTIONS(7820), + [anon_sym_or] = ACTIONS(7818), + [anon_sym_and] = ACTIONS(7818), + [anon_sym_bitor] = ACTIONS(7818), + [anon_sym_xor] = ACTIONS(7818), + [anon_sym_bitand] = ACTIONS(7818), + [anon_sym_not_eq] = ACTIONS(7818), + [anon_sym_DASH_DASH] = ACTIONS(7820), + [anon_sym_PLUS_PLUS] = ACTIONS(7820), + [anon_sym_DOT] = ACTIONS(7818), + [anon_sym_DOT_STAR] = ACTIONS(7820), + [anon_sym_DASH_GT] = ACTIONS(7820), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7818), + [anon_sym_final] = ACTIONS(7818), + [anon_sym_override] = ACTIONS(7818), + [anon_sym_template] = ACTIONS(7818), + [anon_sym_GT2] = ACTIONS(7820), + [anon_sym_requires] = ACTIONS(7818), + [anon_sym_LBRACK_COLON] = ACTIONS(7820), }, [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), + [sym_catch_clause] = STATE(2883), + [aux_sym_constructor_try_statement_repeat1] = STATE(2883), + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token2] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [aux_sym_preproc_else_token1] = ACTIONS(3184), + [aux_sym_preproc_elif_token1] = ACTIONS(3184), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym___attribute] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym__Nonnull] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym__Alignas] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_friend] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_catch] = ACTIONS(8740), + [anon_sym_LBRACK_COLON] = ACTIONS(3186), }, [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_identifier] = ACTIONS(7739), + [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(7739), + [anon_sym___attribute__] = ACTIONS(7739), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_COLON_COLON] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7739), + [anon_sym_RBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), + [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_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(7739), + [anon_sym_or_eq] = ACTIONS(7739), + [anon_sym_xor_eq] = ACTIONS(7739), + [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(7549), - [anon_sym_override] = ACTIONS(7549), - [anon_sym_requires] = ACTIONS(7549), + [anon_sym_decltype] = ACTIONS(7739), + [anon_sym_final] = ACTIONS(7739), + [anon_sym_override] = ACTIONS(7739), + [anon_sym_template] = ACTIONS(7739), + [anon_sym_requires] = ACTIONS(7739), + [anon_sym_LBRACK_COLON] = ACTIONS(7741), }, [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), + [sym_argument_list] = STATE(4271), + [sym_initializer_list] = STATE(6708), + [aux_sym_sized_type_specifier_repeat1] = STATE(2692), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7363), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(8554), + [anon_sym_unsigned] = ACTIONS(8554), + [anon_sym_long] = ACTIONS(8554), + [anon_sym_short] = ACTIONS(8554), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [STATE(2849)] = { + [sym_string_literal] = STATE(2856), + [sym_raw_string_literal] = STATE(2856), + [aux_sym_concatenated_string_repeat1] = STATE(2856), [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_DOT_DOT_DOT] = ACTIONS(8744), + [anon_sym_COMMA] = ACTIONS(8744), + [anon_sym_RPAREN] = ACTIONS(8744), + [aux_sym_preproc_if_token2] = ACTIONS(8744), + [aux_sym_preproc_else_token1] = ACTIONS(8744), + [aux_sym_preproc_elif_token1] = ACTIONS(8746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8744), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8744), [anon_sym_LPAREN2] = ACTIONS(8744), - [anon_sym_TILDE] = ACTIONS(8744), - [anon_sym_STAR] = ACTIONS(8744), + [anon_sym_DASH] = ACTIONS(8746), + [anon_sym_PLUS] = ACTIONS(8746), + [anon_sym_STAR] = ACTIONS(8746), + [anon_sym_SLASH] = ACTIONS(8746), + [anon_sym_PERCENT] = ACTIONS(8746), + [anon_sym_PIPE_PIPE] = 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_PIPE] = ACTIONS(8746), + [anon_sym_CARET] = ACTIONS(8746), [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), + [anon_sym_EQ_EQ] = ACTIONS(8744), + [anon_sym_BANG_EQ] = ACTIONS(8744), + [anon_sym_GT] = ACTIONS(8746), + [anon_sym_GT_EQ] = ACTIONS(8744), + [anon_sym_LT_EQ] = ACTIONS(8746), + [anon_sym_LT] = ACTIONS(8746), + [anon_sym_LT_LT] = ACTIONS(8746), + [anon_sym_GT_GT] = ACTIONS(8746), + [anon_sym_SEMI] = ACTIONS(8744), + [anon_sym_COLON] = ACTIONS(8746), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8744), + [anon_sym_RBRACE] = ACTIONS(8744), + [anon_sym_LBRACK] = ACTIONS(8744), + [anon_sym_EQ] = ACTIONS(8746), + [anon_sym_QMARK] = ACTIONS(8744), + [anon_sym_STAR_EQ] = ACTIONS(8744), + [anon_sym_SLASH_EQ] = ACTIONS(8744), + [anon_sym_PERCENT_EQ] = ACTIONS(8744), + [anon_sym_PLUS_EQ] = ACTIONS(8744), + [anon_sym_DASH_EQ] = ACTIONS(8744), + [anon_sym_LT_LT_EQ] = ACTIONS(8744), + [anon_sym_GT_GT_EQ] = ACTIONS(8744), + [anon_sym_AMP_EQ] = ACTIONS(8744), + [anon_sym_CARET_EQ] = ACTIONS(8744), + [anon_sym_PIPE_EQ] = ACTIONS(8744), + [anon_sym_and_eq] = ACTIONS(8746), + [anon_sym_or_eq] = ACTIONS(8746), + [anon_sym_xor_eq] = ACTIONS(8746), + [anon_sym_LT_EQ_GT] = ACTIONS(8744), + [anon_sym_or] = ACTIONS(8746), + [anon_sym_and] = ACTIONS(8746), + [anon_sym_bitor] = ACTIONS(8746), + [anon_sym_xor] = ACTIONS(8746), + [anon_sym_bitand] = ACTIONS(8746), + [anon_sym_not_eq] = ACTIONS(8746), + [anon_sym_DASH_DASH] = ACTIONS(8744), + [anon_sym_PLUS_PLUS] = ACTIONS(8744), + [anon_sym_DOT] = ACTIONS(8746), + [anon_sym_DOT_STAR] = ACTIONS(8744), + [anon_sym_DASH_GT] = ACTIONS(8744), + [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(8744), + [sym_literal_suffix] = ACTIONS(8746), + }, + [STATE(2850)] = { + [sym_catch_clause] = STATE(2883), + [aux_sym_constructor_try_statement_repeat1] = STATE(2883), + [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(8740), + [anon_sym_LBRACK_COLON] = ACTIONS(3182), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2851), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7173), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8748), + [anon_sym_unsigned] = ACTIONS(8748), + [anon_sym_long] = ACTIONS(8748), + [anon_sym_short] = ACTIONS(8748), + [anon_sym_LBRACK] = ACTIONS(7175), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7173), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7175), }, [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), + [sym_decltype_auto] = STATE(3045), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8751), + [anon_sym_decltype] = ACTIONS(7249), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_decltype_auto] = STATE(3045), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8751), + [anon_sym_decltype] = ACTIONS(7249), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym__abstract_declarator] = STATE(5200), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_parameter_list] = STATE(2075), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9569), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6700), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6702), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6704), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7864), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7864), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_and_eq] = ACTIONS(7864), + [anon_sym_or_eq] = ACTIONS(7864), + [anon_sym_xor_eq] = ACTIONS(7864), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7862), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(7864), + [anon_sym_override] = ACTIONS(7864), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(7862), + [anon_sym_requires] = ACTIONS(7864), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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__abstract_declarator] = STATE(5241), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_parameter_list] = STATE(2076), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9623), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6662), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6664), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6668), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(7862), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7862), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_and_eq] = ACTIONS(7864), + [anon_sym_or_eq] = ACTIONS(7864), + [anon_sym_xor_eq] = ACTIONS(7864), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7862), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(7864), + [anon_sym_override] = ACTIONS(7864), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(7864), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_string_literal] = STATE(2856), + [sym_raw_string_literal] = STATE(2856), + [aux_sym_concatenated_string_repeat1] = STATE(2856), + [sym_identifier] = ACTIONS(8753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8756), + [anon_sym_COMMA] = ACTIONS(8756), + [anon_sym_RPAREN] = ACTIONS(8756), + [aux_sym_preproc_if_token2] = ACTIONS(8756), + [aux_sym_preproc_else_token1] = ACTIONS(8756), + [aux_sym_preproc_elif_token1] = ACTIONS(8758), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8756), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8756), + [anon_sym_LPAREN2] = ACTIONS(8756), + [anon_sym_DASH] = ACTIONS(8758), + [anon_sym_PLUS] = ACTIONS(8758), + [anon_sym_STAR] = ACTIONS(8758), + [anon_sym_SLASH] = ACTIONS(8758), + [anon_sym_PERCENT] = ACTIONS(8758), + [anon_sym_PIPE_PIPE] = ACTIONS(8756), + [anon_sym_AMP_AMP] = ACTIONS(8756), + [anon_sym_PIPE] = ACTIONS(8758), + [anon_sym_CARET] = ACTIONS(8758), + [anon_sym_AMP] = ACTIONS(8758), + [anon_sym_EQ_EQ] = ACTIONS(8756), + [anon_sym_BANG_EQ] = ACTIONS(8756), + [anon_sym_GT] = ACTIONS(8758), + [anon_sym_GT_EQ] = ACTIONS(8756), + [anon_sym_LT_EQ] = ACTIONS(8758), + [anon_sym_LT] = ACTIONS(8758), + [anon_sym_LT_LT] = ACTIONS(8758), + [anon_sym_GT_GT] = ACTIONS(8758), + [anon_sym_SEMI] = ACTIONS(8756), + [anon_sym_COLON] = ACTIONS(8758), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8756), + [anon_sym_RBRACE] = ACTIONS(8756), + [anon_sym_LBRACK] = ACTIONS(8756), + [anon_sym_EQ] = ACTIONS(8758), + [anon_sym_QMARK] = ACTIONS(8756), + [anon_sym_STAR_EQ] = ACTIONS(8756), + [anon_sym_SLASH_EQ] = ACTIONS(8756), + [anon_sym_PERCENT_EQ] = ACTIONS(8756), + [anon_sym_PLUS_EQ] = ACTIONS(8756), + [anon_sym_DASH_EQ] = ACTIONS(8756), + [anon_sym_LT_LT_EQ] = ACTIONS(8756), + [anon_sym_GT_GT_EQ] = ACTIONS(8756), + [anon_sym_AMP_EQ] = ACTIONS(8756), + [anon_sym_CARET_EQ] = ACTIONS(8756), + [anon_sym_PIPE_EQ] = ACTIONS(8756), + [anon_sym_and_eq] = ACTIONS(8758), + [anon_sym_or_eq] = ACTIONS(8758), + [anon_sym_xor_eq] = ACTIONS(8758), + [anon_sym_LT_EQ_GT] = ACTIONS(8756), + [anon_sym_or] = ACTIONS(8758), + [anon_sym_and] = ACTIONS(8758), + [anon_sym_bitor] = ACTIONS(8758), + [anon_sym_xor] = ACTIONS(8758), + [anon_sym_bitand] = ACTIONS(8758), + [anon_sym_not_eq] = ACTIONS(8758), + [anon_sym_DASH_DASH] = ACTIONS(8756), + [anon_sym_PLUS_PLUS] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8758), + [anon_sym_DOT_STAR] = ACTIONS(8756), + [anon_sym_DASH_GT] = ACTIONS(8756), + [anon_sym_L_DQUOTE] = ACTIONS(8760), + [anon_sym_u_DQUOTE] = ACTIONS(8760), + [anon_sym_U_DQUOTE] = ACTIONS(8760), + [anon_sym_u8_DQUOTE] = ACTIONS(8760), + [anon_sym_DQUOTE] = ACTIONS(8760), + [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(8756), + [sym_literal_suffix] = ACTIONS(8758), }, [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), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7261), }, [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), + [sym_attribute_specifier] = STATE(2858), + [aux_sym_type_definition_repeat1] = STATE(2858), + [sym_identifier] = ACTIONS(7398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7400), + [anon_sym_COMMA] = ACTIONS(7400), + [anon_sym_RPAREN] = ACTIONS(7400), + [aux_sym_preproc_if_token2] = ACTIONS(7400), + [aux_sym_preproc_else_token1] = ACTIONS(7400), + [aux_sym_preproc_elif_token1] = ACTIONS(7398), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7400), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7400), + [anon_sym_LPAREN2] = ACTIONS(7400), + [anon_sym_DASH] = ACTIONS(7398), + [anon_sym_PLUS] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7400), + [anon_sym_SLASH] = ACTIONS(7398), + [anon_sym_PERCENT] = ACTIONS(7400), + [anon_sym_PIPE_PIPE] = ACTIONS(7400), + [anon_sym_AMP_AMP] = ACTIONS(7400), + [anon_sym_PIPE] = ACTIONS(7398), + [anon_sym_CARET] = ACTIONS(7400), + [anon_sym_AMP] = ACTIONS(7398), + [anon_sym_EQ_EQ] = ACTIONS(7400), + [anon_sym_BANG_EQ] = ACTIONS(7400), + [anon_sym_GT] = ACTIONS(7398), + [anon_sym_GT_EQ] = ACTIONS(7400), + [anon_sym_LT_EQ] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(7398), + [anon_sym_LT_LT] = ACTIONS(7400), + [anon_sym_GT_GT] = ACTIONS(7400), + [anon_sym_SEMI] = ACTIONS(7400), + [anon_sym___extension__] = ACTIONS(7398), + [anon_sym___attribute__] = ACTIONS(8766), + [anon_sym___attribute] = ACTIONS(8766), + [anon_sym_COLON] = ACTIONS(7398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7400), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7400), + [anon_sym_RBRACE] = ACTIONS(7400), + [anon_sym_LBRACK] = ACTIONS(7398), + [anon_sym_const] = ACTIONS(7398), + [anon_sym_constexpr] = ACTIONS(7398), + [anon_sym_volatile] = ACTIONS(7398), + [anon_sym_restrict] = ACTIONS(7398), + [anon_sym___restrict__] = ACTIONS(7398), + [anon_sym__Atomic] = ACTIONS(7398), + [anon_sym__Noreturn] = ACTIONS(7398), + [anon_sym_noreturn] = ACTIONS(7398), + [anon_sym__Nonnull] = ACTIONS(7398), + [anon_sym_mutable] = ACTIONS(7398), + [anon_sym_constinit] = ACTIONS(7398), + [anon_sym_consteval] = ACTIONS(7398), + [anon_sym_alignas] = ACTIONS(7398), + [anon_sym__Alignas] = ACTIONS(7398), + [anon_sym_QMARK] = ACTIONS(7400), + [anon_sym_LT_EQ_GT] = ACTIONS(7400), + [anon_sym_or] = ACTIONS(7398), + [anon_sym_and] = ACTIONS(7398), + [anon_sym_bitor] = ACTIONS(7398), + [anon_sym_xor] = ACTIONS(7398), + [anon_sym_bitand] = ACTIONS(7398), + [anon_sym_not_eq] = ACTIONS(7398), + [anon_sym_DASH_DASH] = ACTIONS(7400), + [anon_sym_PLUS_PLUS] = ACTIONS(7400), + [anon_sym_asm] = ACTIONS(7398), + [anon_sym___asm__] = ACTIONS(7398), + [anon_sym___asm] = ACTIONS(7398), + [anon_sym_DOT] = ACTIONS(7398), + [anon_sym_DOT_STAR] = ACTIONS(7400), + [anon_sym_DASH_GT] = ACTIONS(7400), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7398), + [anon_sym_override] = ACTIONS(7398), + [anon_sym_noexcept] = ACTIONS(7398), + [anon_sym_throw] = ACTIONS(7398), + [anon_sym_requires] = ACTIONS(7398), + [anon_sym_COLON_RBRACK] = ACTIONS(7400), }, [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), + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [aux_sym_preproc_if_token2] = ACTIONS(3108), + [aux_sym_preproc_else_token1] = ACTIONS(3108), + [aux_sym_preproc_elif_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3108), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3108), + [anon_sym_GT_GT] = ACTIONS(3108), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3108), + [anon_sym___based] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), + [anon_sym_COLON_RBRACK] = ACTIONS(3108), }, [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), + [sym_decltype_auto] = STATE(2991), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8769), + [anon_sym_decltype] = ACTIONS(7338), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_decltype_auto] = STATE(2991), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8769), + [anon_sym_decltype] = ACTIONS(7338), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_catch_clause] = STATE(2883), + [aux_sym_constructor_try_statement_repeat1] = STATE(2883), + [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(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3165), + [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(3165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3165), + [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(8740), + [anon_sym_LBRACK_COLON] = ACTIONS(3165), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2863), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8771), + [anon_sym_unsigned] = ACTIONS(8771), + [anon_sym_long] = ACTIONS(8771), + [anon_sym_short] = ACTIONS(8771), + [anon_sym_LBRACK] = ACTIONS(7175), + [anon_sym_RBRACK] = ACTIONS(7175), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), }, [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), + [sym_identifier] = ACTIONS(7790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7792), + [anon_sym_COMMA] = ACTIONS(7792), + [anon_sym_LPAREN2] = ACTIONS(7792), + [anon_sym_DASH] = ACTIONS(7790), + [anon_sym_PLUS] = ACTIONS(7790), + [anon_sym_STAR] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7790), + [anon_sym_PERCENT] = ACTIONS(7790), + [anon_sym_PIPE_PIPE] = ACTIONS(7792), + [anon_sym_AMP_AMP] = ACTIONS(7792), + [anon_sym_PIPE] = ACTIONS(7790), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_AMP] = ACTIONS(7790), + [anon_sym_EQ_EQ] = ACTIONS(7792), + [anon_sym_BANG_EQ] = ACTIONS(7792), + [anon_sym_GT] = ACTIONS(7790), + [anon_sym_GT_EQ] = ACTIONS(7792), + [anon_sym_LT_EQ] = ACTIONS(7790), + [anon_sym_LT] = ACTIONS(7790), + [anon_sym_LT_LT] = ACTIONS(7790), + [anon_sym_GT_GT] = ACTIONS(7790), + [anon_sym___extension__] = ACTIONS(7790), + [anon_sym___attribute__] = ACTIONS(7790), + [anon_sym___attribute] = ACTIONS(7790), + [anon_sym_COLON_COLON] = ACTIONS(7792), + [anon_sym_LBRACK] = ACTIONS(7790), + [anon_sym_RBRACK] = ACTIONS(7792), + [anon_sym_EQ] = ACTIONS(7790), + [anon_sym_const] = ACTIONS(7790), + [anon_sym_constexpr] = ACTIONS(7790), + [anon_sym_volatile] = ACTIONS(7790), + [anon_sym_restrict] = ACTIONS(7790), + [anon_sym___restrict__] = ACTIONS(7790), + [anon_sym__Atomic] = ACTIONS(7790), + [anon_sym__Noreturn] = ACTIONS(7790), + [anon_sym_noreturn] = ACTIONS(7790), + [anon_sym__Nonnull] = ACTIONS(7790), + [anon_sym_mutable] = ACTIONS(7790), + [anon_sym_constinit] = ACTIONS(7790), + [anon_sym_consteval] = ACTIONS(7790), + [anon_sym_alignas] = ACTIONS(7790), + [anon_sym__Alignas] = ACTIONS(7790), + [anon_sym_QMARK] = ACTIONS(7792), + [anon_sym_STAR_EQ] = ACTIONS(7792), + [anon_sym_SLASH_EQ] = ACTIONS(7792), + [anon_sym_PERCENT_EQ] = ACTIONS(7792), + [anon_sym_PLUS_EQ] = ACTIONS(7792), + [anon_sym_DASH_EQ] = ACTIONS(7792), + [anon_sym_LT_LT_EQ] = ACTIONS(7792), + [anon_sym_GT_GT_EQ] = ACTIONS(7792), + [anon_sym_AMP_EQ] = ACTIONS(7792), + [anon_sym_CARET_EQ] = ACTIONS(7792), + [anon_sym_PIPE_EQ] = ACTIONS(7792), + [anon_sym_and_eq] = ACTIONS(7790), + [anon_sym_or_eq] = ACTIONS(7790), + [anon_sym_xor_eq] = ACTIONS(7790), + [anon_sym_LT_EQ_GT] = ACTIONS(7792), + [anon_sym_or] = ACTIONS(7790), + [anon_sym_and] = ACTIONS(7790), + [anon_sym_bitor] = ACTIONS(7790), + [anon_sym_xor] = ACTIONS(7790), + [anon_sym_bitand] = ACTIONS(7790), + [anon_sym_not_eq] = ACTIONS(7790), + [anon_sym_DASH_DASH] = ACTIONS(7792), + [anon_sym_PLUS_PLUS] = ACTIONS(7792), + [anon_sym_DOT] = ACTIONS(7790), + [anon_sym_DOT_STAR] = ACTIONS(7792), + [anon_sym_DASH_GT] = ACTIONS(7792), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7790), + [anon_sym_final] = ACTIONS(7790), + [anon_sym_override] = ACTIONS(7790), + [anon_sym_template] = ACTIONS(7790), + [anon_sym_requires] = ACTIONS(7790), + [anon_sym_LBRACK_COLON] = ACTIONS(7792), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6817), + [anon_sym_COMMA] = ACTIONS(6817), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6824), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6824), + [anon_sym_GT_GT] = ACTIONS(6824), + [anon_sym_SEMI] = ACTIONS(6817), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6817), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6817), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_TILDE] = ACTIONS(7261), + [anon_sym_STAR] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym_virtual] = ACTIONS(7259), + [anon_sym_extern] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7261), + [anon_sym___declspec] = ACTIONS(7259), + [anon_sym___based] = ACTIONS(7259), + [anon_sym___cdecl] = ACTIONS(7259), + [anon_sym___clrcall] = ACTIONS(7259), + [anon_sym___stdcall] = ACTIONS(7259), + [anon_sym___fastcall] = ACTIONS(7259), + [anon_sym___thiscall] = ACTIONS(7259), + [anon_sym___vectorcall] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_static] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_register] = ACTIONS(7259), + [anon_sym_inline] = ACTIONS(7259), + [anon_sym___inline] = ACTIONS(7259), + [anon_sym___inline__] = ACTIONS(7259), + [anon_sym___forceinline] = ACTIONS(7259), + [anon_sym_thread_local] = ACTIONS(7259), + [anon_sym___thread] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_enum] = ACTIONS(7259), + [anon_sym_class] = ACTIONS(7259), + [anon_sym_struct] = ACTIONS(7259), + [anon_sym_union] = ACTIONS(7259), + [anon_sym_typename] = ACTIONS(7259), + [anon_sym_asm] = ACTIONS(7259), + [anon_sym___asm__] = ACTIONS(7259), + [anon_sym___asm] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7259), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_explicit] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_GT2] = ACTIONS(7261), + [anon_sym_operator] = ACTIONS(7259), + [anon_sym_try] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), }, [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), + [sym_template_argument_list] = STATE(2865), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6776), + [anon_sym_COMMA] = ACTIONS(6776), + [anon_sym_RPAREN] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6783), + [anon_sym_PERCENT] = ACTIONS(6783), + [anon_sym_PIPE_PIPE] = ACTIONS(6776), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6783), + [anon_sym_CARET] = ACTIONS(6783), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6776), + [anon_sym_BANG_EQ] = ACTIONS(6776), + [anon_sym_GT] = ACTIONS(6783), + [anon_sym_GT_EQ] = ACTIONS(6776), + [anon_sym_LT_EQ] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(7189), + [anon_sym_LT_LT] = ACTIONS(6783), + [anon_sym_GT_GT] = ACTIONS(6783), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6776), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6776), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6776), + [anon_sym_or] = ACTIONS(6783), + [anon_sym_and] = ACTIONS(6783), + [anon_sym_bitor] = ACTIONS(6783), + [anon_sym_xor] = ACTIONS(6783), + [anon_sym_bitand] = ACTIONS(6783), + [anon_sym_not_eq] = ACTIONS(6783), + [anon_sym_DASH_DASH] = ACTIONS(6776), + [anon_sym_PLUS_PLUS] = ACTIONS(6776), + [anon_sym_DOT] = ACTIONS(6783), + [anon_sym_DOT_STAR] = ACTIONS(6776), + [anon_sym_DASH_GT] = ACTIONS(6783), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_DASH_GT_STAR] = ACTIONS(6776), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, [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), + [sym_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_RPAREN] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7566), + [anon_sym_PERCENT] = ACTIONS(7566), + [anon_sym_PIPE_PIPE] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7566), + [anon_sym_CARET] = ACTIONS(7566), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_EQ_EQ] = ACTIONS(7568), + [anon_sym_BANG_EQ] = ACTIONS(7568), + [anon_sym_GT] = ACTIONS(7566), + [anon_sym_GT_EQ] = ACTIONS(7568), + [anon_sym_LT_EQ] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7566), + [anon_sym_LT_LT] = ACTIONS(7566), + [anon_sym_GT_GT] = ACTIONS(7566), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(7566), + [anon_sym_EQ] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_mutable] = ACTIONS(7566), + [anon_sym_constinit] = ACTIONS(7566), + [anon_sym_consteval] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(7568), + [anon_sym_STAR_EQ] = ACTIONS(7568), + [anon_sym_SLASH_EQ] = ACTIONS(7568), + [anon_sym_PERCENT_EQ] = ACTIONS(7568), + [anon_sym_PLUS_EQ] = ACTIONS(7568), + [anon_sym_DASH_EQ] = ACTIONS(7568), + [anon_sym_LT_LT_EQ] = ACTIONS(7568), + [anon_sym_GT_GT_EQ] = ACTIONS(7568), + [anon_sym_AMP_EQ] = ACTIONS(7568), + [anon_sym_CARET_EQ] = ACTIONS(7568), + [anon_sym_PIPE_EQ] = ACTIONS(7568), + [anon_sym_LT_EQ_GT] = ACTIONS(7568), + [anon_sym_or] = ACTIONS(7566), + [anon_sym_and] = ACTIONS(7566), + [anon_sym_bitor] = ACTIONS(7566), + [anon_sym_xor] = ACTIONS(7566), + [anon_sym_bitand] = ACTIONS(7566), + [anon_sym_not_eq] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(7568), + [anon_sym_PLUS_PLUS] = ACTIONS(7568), + [anon_sym_DOT] = ACTIONS(7566), + [anon_sym_DOT_STAR] = ACTIONS(7568), + [anon_sym_DASH_GT] = ACTIONS(7566), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7566), + [anon_sym_final] = ACTIONS(7566), + [anon_sym_override] = ACTIONS(7566), + [anon_sym_template] = ACTIONS(7566), + [anon_sym_requires] = ACTIONS(7566), + [anon_sym_DASH_GT_STAR] = ACTIONS(7568), + [anon_sym_LBRACK_COLON] = ACTIONS(7568), }, [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), + [sym_identifier] = ACTIONS(7714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7716), + [anon_sym_COMMA] = ACTIONS(7716), + [anon_sym_LPAREN2] = ACTIONS(7716), + [anon_sym_DASH] = ACTIONS(7714), + [anon_sym_PLUS] = ACTIONS(7714), + [anon_sym_STAR] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7714), + [anon_sym_PERCENT] = ACTIONS(7714), + [anon_sym_PIPE_PIPE] = ACTIONS(7716), + [anon_sym_AMP_AMP] = ACTIONS(7716), + [anon_sym_PIPE] = ACTIONS(7714), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_AMP] = ACTIONS(7714), + [anon_sym_EQ_EQ] = ACTIONS(7716), + [anon_sym_BANG_EQ] = ACTIONS(7716), + [anon_sym_GT] = ACTIONS(7714), + [anon_sym_GT_EQ] = ACTIONS(7716), + [anon_sym_LT_EQ] = ACTIONS(7714), + [anon_sym_LT] = ACTIONS(7714), + [anon_sym_LT_LT] = ACTIONS(7714), + [anon_sym_GT_GT] = ACTIONS(7714), + [anon_sym___extension__] = ACTIONS(7714), + [anon_sym___attribute__] = ACTIONS(7714), + [anon_sym___attribute] = ACTIONS(7714), + [anon_sym_COLON_COLON] = ACTIONS(7716), + [anon_sym_LBRACK] = ACTIONS(7714), + [anon_sym_RBRACK] = ACTIONS(7716), + [anon_sym_EQ] = ACTIONS(7714), + [anon_sym_const] = ACTIONS(7714), + [anon_sym_constexpr] = ACTIONS(7714), + [anon_sym_volatile] = ACTIONS(7714), + [anon_sym_restrict] = ACTIONS(7714), + [anon_sym___restrict__] = ACTIONS(7714), + [anon_sym__Atomic] = ACTIONS(7714), + [anon_sym__Noreturn] = ACTIONS(7714), + [anon_sym_noreturn] = ACTIONS(7714), + [anon_sym__Nonnull] = ACTIONS(7714), + [anon_sym_mutable] = ACTIONS(7714), + [anon_sym_constinit] = ACTIONS(7714), + [anon_sym_consteval] = ACTIONS(7714), + [anon_sym_alignas] = ACTIONS(7714), + [anon_sym__Alignas] = ACTIONS(7714), + [anon_sym_QMARK] = ACTIONS(7716), + [anon_sym_STAR_EQ] = ACTIONS(7716), + [anon_sym_SLASH_EQ] = ACTIONS(7716), + [anon_sym_PERCENT_EQ] = ACTIONS(7716), + [anon_sym_PLUS_EQ] = ACTIONS(7716), + [anon_sym_DASH_EQ] = ACTIONS(7716), + [anon_sym_LT_LT_EQ] = ACTIONS(7716), + [anon_sym_GT_GT_EQ] = ACTIONS(7716), + [anon_sym_AMP_EQ] = ACTIONS(7716), + [anon_sym_CARET_EQ] = ACTIONS(7716), + [anon_sym_PIPE_EQ] = ACTIONS(7716), + [anon_sym_and_eq] = ACTIONS(7714), + [anon_sym_or_eq] = ACTIONS(7714), + [anon_sym_xor_eq] = ACTIONS(7714), + [anon_sym_LT_EQ_GT] = ACTIONS(7716), + [anon_sym_or] = ACTIONS(7714), + [anon_sym_and] = ACTIONS(7714), + [anon_sym_bitor] = ACTIONS(7714), + [anon_sym_xor] = ACTIONS(7714), + [anon_sym_bitand] = ACTIONS(7714), + [anon_sym_not_eq] = ACTIONS(7714), + [anon_sym_DASH_DASH] = ACTIONS(7716), + [anon_sym_PLUS_PLUS] = ACTIONS(7716), + [anon_sym_DOT] = ACTIONS(7714), + [anon_sym_DOT_STAR] = ACTIONS(7716), + [anon_sym_DASH_GT] = ACTIONS(7716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7714), + [anon_sym_final] = ACTIONS(7714), + [anon_sym_override] = ACTIONS(7714), + [anon_sym_template] = ACTIONS(7714), + [anon_sym_requires] = ACTIONS(7714), + [anon_sym_LBRACK_COLON] = ACTIONS(7716), }, [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), + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym___based] = ACTIONS(3118), + [anon_sym___cdecl] = ACTIONS(3118), + [anon_sym___clrcall] = ACTIONS(3118), + [anon_sym___stdcall] = ACTIONS(3118), + [anon_sym___fastcall] = ACTIONS(3118), + [anon_sym___thiscall] = ACTIONS(3118), + [anon_sym___vectorcall] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3108), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_enum] = ACTIONS(3118), + [anon_sym_class] = ACTIONS(3118), + [anon_sym_struct] = ACTIONS(3118), + [anon_sym_union] = ACTIONS(3118), + [anon_sym_typename] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym___asm__] = ACTIONS(3118), + [anon_sym___asm] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3118), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_explicit] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_GT2] = ACTIONS(3108), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), }, [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), + [sym_ms_based_modifier] = STATE(12068), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(6459), + [sym__declarator] = STATE(9918), + [sym__abstract_declarator] = STATE(10072), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(3767), + [sym_alignas_qualifier] = STATE(7255), + [sym_parameter_list] = STATE(5388), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8855), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(3767), + [aux_sym_pointer_declarator_repeat1] = STATE(6459), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_AMP_AMP] = ACTIONS(8778), + [anon_sym_AMP] = ACTIONS(8780), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(8784), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_EQ] = ACTIONS(5968), + [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(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_attribute_specifier] = STATE(3283), + [sym_enumerator_list] = STATE(3126), + [sym__enum_base_clause] = STATE(2938), + [sym_identifier] = ACTIONS(7390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(7392), + [anon_sym_RPAREN] = ACTIONS(7392), + [aux_sym_preproc_if_token2] = ACTIONS(7392), + [aux_sym_preproc_else_token1] = ACTIONS(7392), + [aux_sym_preproc_elif_token1] = ACTIONS(7390), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7392), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7392), + [anon_sym_LPAREN2] = ACTIONS(7392), + [anon_sym_DASH] = ACTIONS(7390), + [anon_sym_PLUS] = ACTIONS(7390), + [anon_sym_STAR] = ACTIONS(7392), + [anon_sym_SLASH] = ACTIONS(7390), + [anon_sym_PERCENT] = ACTIONS(7392), + [anon_sym_PIPE_PIPE] = ACTIONS(7392), + [anon_sym_AMP_AMP] = ACTIONS(7392), + [anon_sym_PIPE] = ACTIONS(7390), + [anon_sym_CARET] = ACTIONS(7392), + [anon_sym_AMP] = ACTIONS(7390), + [anon_sym_EQ_EQ] = ACTIONS(7392), + [anon_sym_BANG_EQ] = ACTIONS(7392), + [anon_sym_GT] = ACTIONS(7390), + [anon_sym_GT_EQ] = ACTIONS(7392), + [anon_sym_LT_EQ] = ACTIONS(7390), + [anon_sym_LT] = ACTIONS(7390), + [anon_sym_LT_LT] = ACTIONS(7392), + [anon_sym_GT_GT] = ACTIONS(7392), + [anon_sym_SEMI] = ACTIONS(7392), + [anon_sym___extension__] = ACTIONS(7390), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(8788), + [anon_sym_COLON_COLON] = ACTIONS(7392), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7392), + [anon_sym_LBRACE] = ACTIONS(8790), + [anon_sym_RBRACE] = ACTIONS(7392), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym_const] = ACTIONS(7390), + [anon_sym_constexpr] = ACTIONS(7390), + [anon_sym_volatile] = ACTIONS(7390), + [anon_sym_restrict] = ACTIONS(7390), + [anon_sym___restrict__] = ACTIONS(7390), + [anon_sym__Atomic] = ACTIONS(7390), + [anon_sym__Noreturn] = ACTIONS(7390), + [anon_sym_noreturn] = ACTIONS(7390), + [anon_sym__Nonnull] = ACTIONS(7390), + [anon_sym_mutable] = ACTIONS(7390), + [anon_sym_constinit] = ACTIONS(7390), + [anon_sym_consteval] = ACTIONS(7390), + [anon_sym_alignas] = ACTIONS(7390), + [anon_sym__Alignas] = ACTIONS(7390), + [anon_sym_QMARK] = ACTIONS(7392), + [anon_sym_LT_EQ_GT] = ACTIONS(7392), + [anon_sym_or] = ACTIONS(7390), + [anon_sym_and] = ACTIONS(7390), + [anon_sym_bitor] = ACTIONS(7390), + [anon_sym_xor] = ACTIONS(7390), + [anon_sym_bitand] = ACTIONS(7390), + [anon_sym_not_eq] = ACTIONS(7390), + [anon_sym_DASH_DASH] = ACTIONS(7392), + [anon_sym_PLUS_PLUS] = ACTIONS(7392), + [anon_sym_DOT] = ACTIONS(7390), + [anon_sym_DOT_STAR] = ACTIONS(7392), + [anon_sym_DASH_GT] = ACTIONS(7392), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7390), + [anon_sym_final] = ACTIONS(7390), + [anon_sym_override] = ACTIONS(7390), + [anon_sym_template] = ACTIONS(7390), + [anon_sym_requires] = ACTIONS(7390), + [anon_sym_LBRACK_COLON] = ACTIONS(7392), + [anon_sym_COLON_RBRACK] = ACTIONS(7392), }, [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), - }, - [STATE(2879)] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(4048), - [aux_sym_preproc_elif_token1] = ACTIONS(4048), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4048), - [aux_sym_preproc_elifdef_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(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(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(2882)] = { - [sym_attribute_specifier] = STATE(3096), + [sym_attribute_specifier] = STATE(3231), + [sym_enumerator_list] = STATE(2977), + [sym__enum_base_clause] = STATE(2945), + [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_STAR] = ACTIONS(7415), [anon_sym_SLASH] = ACTIONS(7413), - [anon_sym_PERCENT] = ACTIONS(7413), + [anon_sym_PERCENT] = ACTIONS(7415), [anon_sym_PIPE_PIPE] = ACTIONS(7415), [anon_sym_AMP_AMP] = ACTIONS(7415), [anon_sym_PIPE] = ACTIONS(7413), - [anon_sym_CARET] = ACTIONS(7413), + [anon_sym_CARET] = ACTIONS(7415), [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_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(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7415), - [anon_sym_LBRACK] = ACTIONS(7415), - [anon_sym_EQ] = ACTIONS(7413), + [anon_sym_LT_LT] = ACTIONS(7415), + [anon_sym_GT_GT] = ACTIONS(7415), + [anon_sym_SEMI] = ACTIONS(7415), + [anon_sym___extension__] = ACTIONS(7413), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(8788), + [anon_sym_COLON_COLON] = ACTIONS(7415), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7415), + [anon_sym_LBRACE] = ACTIONS(8790), + [anon_sym_RBRACE] = ACTIONS(7415), + [anon_sym_LBRACK] = 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_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(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_bitor] = ACTIONS(7413), [anon_sym_xor] = ACTIONS(7413), - [anon_sym_bitand] = ACTIONS(7415), - [anon_sym_not_eq] = ACTIONS(7415), + [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(7415), - [anon_sym_override] = ACTIONS(7415), - [anon_sym_GT2] = ACTIONS(7415), - [anon_sym_requires] = ACTIONS(7415), + [anon_sym_decltype] = ACTIONS(7413), + [anon_sym_final] = ACTIONS(7413), + [anon_sym_override] = ACTIONS(7413), + [anon_sym_template] = ACTIONS(7413), + [anon_sym_requires] = ACTIONS(7413), + [anon_sym_LBRACK_COLON] = ACTIONS(7415), + [anon_sym_COLON_RBRACK] = ACTIONS(7415), }, - [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), - [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(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [STATE(2874)] = { + [sym_identifier] = ACTIONS(7739), + [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(7739), + [anon_sym___attribute__] = ACTIONS(7739), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_COLON_COLON] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7739), + [anon_sym_EQ] = ACTIONS(7739), + [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_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(7739), + [anon_sym_or_eq] = ACTIONS(7739), + [anon_sym_xor_eq] = ACTIONS(7739), + [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), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_decltype] = ACTIONS(7739), + [anon_sym_final] = ACTIONS(7739), + [anon_sym_override] = ACTIONS(7739), + [anon_sym_template] = ACTIONS(7739), + [anon_sym_GT2] = ACTIONS(7741), + [anon_sym_requires] = ACTIONS(7739), + [anon_sym_LBRACK_COLON] = ACTIONS(7741), + }, + [STATE(2875)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2863), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(8771), + [anon_sym_unsigned] = ACTIONS(8771), + [anon_sym_long] = ACTIONS(8771), + [anon_sym_short] = ACTIONS(8771), + [anon_sym_LBRACK] = ACTIONS(7186), + [anon_sym_RBRACK] = ACTIONS(7186), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7186), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + }, + [STATE(2876)] = { + [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(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(7668), + [anon_sym___attribute__] = ACTIONS(7668), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_COLON] = ACTIONS(7668), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7668), + [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_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(7668), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7668), + [anon_sym_final] = ACTIONS(7668), + [anon_sym_override] = ACTIONS(7668), + [anon_sym_template] = ACTIONS(7668), + [anon_sym_requires] = ACTIONS(7668), + [anon_sym_DASH_GT_STAR] = ACTIONS(7670), + [anon_sym_LBRACK_COLON] = ACTIONS(7670), + }, + [STATE(2877)] = { + [sym_identifier] = ACTIONS(7149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7151), + [anon_sym_COMMA] = ACTIONS(7151), + [anon_sym_RPAREN] = ACTIONS(7151), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_DASH] = ACTIONS(7149), + [anon_sym_PLUS] = ACTIONS(7149), + [anon_sym_STAR] = ACTIONS(7149), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_PIPE_PIPE] = ACTIONS(7151), + [anon_sym_AMP_AMP] = ACTIONS(7151), + [anon_sym_PIPE] = ACTIONS(7149), + [anon_sym_CARET] = ACTIONS(7149), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym_EQ_EQ] = ACTIONS(7151), + [anon_sym_BANG_EQ] = ACTIONS(7151), + [anon_sym_GT] = ACTIONS(7149), + [anon_sym_GT_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7149), + [anon_sym_LT] = ACTIONS(7149), + [anon_sym_LT_LT] = ACTIONS(7149), + [anon_sym_GT_GT] = ACTIONS(7149), + [anon_sym___extension__] = ACTIONS(7149), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_COLON] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_LBRACE] = ACTIONS(7151), + [anon_sym_LBRACK] = ACTIONS(7149), + [anon_sym_EQ] = ACTIONS(7149), + [anon_sym_const] = ACTIONS(7149), + [anon_sym_constexpr] = ACTIONS(7149), + [anon_sym_volatile] = ACTIONS(7149), + [anon_sym_restrict] = ACTIONS(7149), + [anon_sym___restrict__] = ACTIONS(7149), + [anon_sym__Atomic] = ACTIONS(7149), + [anon_sym__Noreturn] = ACTIONS(7149), + [anon_sym_noreturn] = ACTIONS(7149), + [anon_sym__Nonnull] = ACTIONS(7149), + [anon_sym_mutable] = ACTIONS(7149), + [anon_sym_constinit] = ACTIONS(7149), + [anon_sym_consteval] = ACTIONS(7149), + [anon_sym_alignas] = ACTIONS(7149), + [anon_sym__Alignas] = ACTIONS(7149), + [anon_sym_QMARK] = ACTIONS(7151), + [anon_sym_STAR_EQ] = ACTIONS(7151), + [anon_sym_SLASH_EQ] = ACTIONS(7151), + [anon_sym_PERCENT_EQ] = ACTIONS(7151), + [anon_sym_PLUS_EQ] = ACTIONS(7151), + [anon_sym_DASH_EQ] = ACTIONS(7151), + [anon_sym_LT_LT_EQ] = ACTIONS(7151), + [anon_sym_GT_GT_EQ] = ACTIONS(7151), + [anon_sym_AMP_EQ] = ACTIONS(7151), + [anon_sym_CARET_EQ] = ACTIONS(7151), + [anon_sym_PIPE_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ_GT] = ACTIONS(7151), + [anon_sym_or] = ACTIONS(7149), + [anon_sym_and] = ACTIONS(7149), + [anon_sym_bitor] = ACTIONS(7149), + [anon_sym_xor] = ACTIONS(7149), + [anon_sym_bitand] = ACTIONS(7149), + [anon_sym_not_eq] = ACTIONS(7149), + [anon_sym_DASH_DASH] = ACTIONS(7151), + [anon_sym_PLUS_PLUS] = ACTIONS(7151), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_DOT_STAR] = ACTIONS(7151), + [anon_sym_DASH_GT] = ACTIONS(7149), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7149), + [anon_sym_final] = ACTIONS(7149), + [anon_sym_override] = ACTIONS(7149), + [anon_sym_template] = ACTIONS(7149), + [anon_sym_requires] = ACTIONS(7149), + [anon_sym_DASH_GT_STAR] = ACTIONS(7151), + [anon_sym_LBRACK_COLON] = ACTIONS(7151), + }, + [STATE(2878)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [aux_sym_preproc_if_token2] = ACTIONS(7261), + [aux_sym_preproc_else_token1] = ACTIONS(7261), + [aux_sym_preproc_elif_token1] = ACTIONS(7259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7261), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_TILDE] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7261), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7261), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7261), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7261), + [anon_sym_GT_GT] = ACTIONS(7261), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), + [anon_sym___based] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_RBRACE] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_operator] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), + [anon_sym_COLON_RBRACK] = ACTIONS(7261), + }, + [STATE(2879)] = { + [sym_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym__function_exception_specification] = STATE(3433), + [sym__function_attributes_end] = STATE(4900), + [sym__function_postfix] = STATE(5572), + [sym_trailing_return_type] = STATE(4998), + [sym_noexcept] = STATE(3433), + [sym_throw_specifier] = STATE(3433), + [sym_requires_clause] = STATE(5572), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7621), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7621), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6923), + [anon_sym_override] = ACTIONS(6923), + [anon_sym_GT2] = ACTIONS(7623), + [anon_sym_noexcept] = ACTIONS(6925), + [anon_sym_throw] = ACTIONS(6927), + [anon_sym_requires] = ACTIONS(6929), + }, + [STATE(2880)] = { + [sym_identifier] = ACTIONS(7790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7792), + [anon_sym_COMMA] = ACTIONS(7792), + [anon_sym_LPAREN2] = ACTIONS(7792), + [anon_sym_DASH] = ACTIONS(7790), + [anon_sym_PLUS] = ACTIONS(7790), + [anon_sym_STAR] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7790), + [anon_sym_PERCENT] = ACTIONS(7790), + [anon_sym_PIPE_PIPE] = ACTIONS(7792), + [anon_sym_AMP_AMP] = ACTIONS(7792), + [anon_sym_PIPE] = ACTIONS(7790), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_AMP] = ACTIONS(7790), + [anon_sym_EQ_EQ] = ACTIONS(7792), + [anon_sym_BANG_EQ] = ACTIONS(7792), + [anon_sym_GT] = ACTIONS(7790), + [anon_sym_GT_EQ] = ACTIONS(7790), + [anon_sym_LT_EQ] = ACTIONS(7790), + [anon_sym_LT] = ACTIONS(7790), + [anon_sym_LT_LT] = ACTIONS(7790), + [anon_sym_GT_GT] = ACTIONS(7790), + [anon_sym___extension__] = ACTIONS(7790), + [anon_sym___attribute__] = ACTIONS(7790), + [anon_sym___attribute] = ACTIONS(7790), + [anon_sym_COLON_COLON] = ACTIONS(7792), + [anon_sym_LBRACK] = ACTIONS(7790), + [anon_sym_EQ] = ACTIONS(7790), + [anon_sym_const] = ACTIONS(7790), + [anon_sym_constexpr] = ACTIONS(7790), + [anon_sym_volatile] = ACTIONS(7790), + [anon_sym_restrict] = ACTIONS(7790), + [anon_sym___restrict__] = ACTIONS(7790), + [anon_sym__Atomic] = ACTIONS(7790), + [anon_sym__Noreturn] = ACTIONS(7790), + [anon_sym_noreturn] = ACTIONS(7790), + [anon_sym__Nonnull] = ACTIONS(7790), + [anon_sym_mutable] = ACTIONS(7790), + [anon_sym_constinit] = ACTIONS(7790), + [anon_sym_consteval] = ACTIONS(7790), + [anon_sym_alignas] = ACTIONS(7790), + [anon_sym__Alignas] = ACTIONS(7790), + [anon_sym_QMARK] = ACTIONS(7792), + [anon_sym_STAR_EQ] = ACTIONS(7792), + [anon_sym_SLASH_EQ] = ACTIONS(7792), + [anon_sym_PERCENT_EQ] = ACTIONS(7792), + [anon_sym_PLUS_EQ] = ACTIONS(7792), + [anon_sym_DASH_EQ] = ACTIONS(7792), + [anon_sym_LT_LT_EQ] = ACTIONS(7792), + [anon_sym_GT_GT_EQ] = ACTIONS(7790), + [anon_sym_AMP_EQ] = ACTIONS(7792), + [anon_sym_CARET_EQ] = ACTIONS(7792), + [anon_sym_PIPE_EQ] = ACTIONS(7792), + [anon_sym_and_eq] = ACTIONS(7790), + [anon_sym_or_eq] = ACTIONS(7790), + [anon_sym_xor_eq] = ACTIONS(7790), + [anon_sym_LT_EQ_GT] = ACTIONS(7792), + [anon_sym_or] = ACTIONS(7790), + [anon_sym_and] = ACTIONS(7790), + [anon_sym_bitor] = ACTIONS(7790), + [anon_sym_xor] = ACTIONS(7790), + [anon_sym_bitand] = ACTIONS(7790), + [anon_sym_not_eq] = ACTIONS(7790), + [anon_sym_DASH_DASH] = ACTIONS(7792), + [anon_sym_PLUS_PLUS] = ACTIONS(7792), + [anon_sym_DOT] = ACTIONS(7790), + [anon_sym_DOT_STAR] = ACTIONS(7792), + [anon_sym_DASH_GT] = ACTIONS(7792), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7790), + [anon_sym_final] = ACTIONS(7790), + [anon_sym_override] = ACTIONS(7790), + [anon_sym_template] = ACTIONS(7790), + [anon_sym_GT2] = ACTIONS(7792), + [anon_sym_requires] = ACTIONS(7790), + [anon_sym_LBRACK_COLON] = ACTIONS(7792), + }, + [STATE(2881)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2851), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7183), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(8748), + [anon_sym_unsigned] = ACTIONS(8748), + [anon_sym_long] = ACTIONS(8748), + [anon_sym_short] = ACTIONS(8748), + [anon_sym_LBRACK] = ACTIONS(7186), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7183), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_and_eq] = ACTIONS(7183), + [anon_sym_or_eq] = ACTIONS(7183), + [anon_sym_xor_eq] = ACTIONS(7183), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7186), + }, + [STATE(2882)] = { + [sym_ms_based_modifier] = STATE(12068), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(2871), + [sym__declarator] = STATE(9853), + [sym__abstract_declarator] = STATE(10071), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(3765), + [sym_alignas_qualifier] = STATE(7255), + [sym_parameter_list] = STATE(5388), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8855), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(3765), + [aux_sym_pointer_declarator_repeat1] = STATE(2871), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_AMP_AMP] = ACTIONS(8778), + [anon_sym_AMP] = ACTIONS(8780), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(8784), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_EQ] = ACTIONS(5994), + [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(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5994), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2883)] = { + [sym_catch_clause] = STATE(2883), + [aux_sym_constructor_try_statement_repeat1] = STATE(2883), + [sym_identifier] = ACTIONS(3169), + [aux_sym_preproc_def_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token2] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3169), + [aux_sym_preproc_else_token1] = ACTIONS(3169), + [aux_sym_preproc_elif_token1] = ACTIONS(3169), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3169), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3169), + [sym_preproc_directive] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym___extension__] = ACTIONS(3169), + [anon_sym_typedef] = ACTIONS(3169), + [anon_sym_virtual] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym___attribute__] = ACTIONS(3169), + [anon_sym___attribute] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3171), + [anon_sym___declspec] = ACTIONS(3169), + [anon_sym___based] = ACTIONS(3169), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_register] = ACTIONS(3169), + [anon_sym_inline] = ACTIONS(3169), + [anon_sym___inline] = ACTIONS(3169), + [anon_sym___inline__] = ACTIONS(3169), + [anon_sym___forceinline] = ACTIONS(3169), + [anon_sym_thread_local] = ACTIONS(3169), + [anon_sym___thread] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_constexpr] = ACTIONS(3169), + [anon_sym_volatile] = ACTIONS(3169), + [anon_sym_restrict] = ACTIONS(3169), + [anon_sym___restrict__] = ACTIONS(3169), + [anon_sym__Atomic] = ACTIONS(3169), + [anon_sym__Noreturn] = ACTIONS(3169), + [anon_sym_noreturn] = ACTIONS(3169), + [anon_sym__Nonnull] = ACTIONS(3169), + [anon_sym_mutable] = ACTIONS(3169), + [anon_sym_constinit] = ACTIONS(3169), + [anon_sym_consteval] = ACTIONS(3169), + [anon_sym_alignas] = ACTIONS(3169), + [anon_sym__Alignas] = ACTIONS(3169), + [sym_primitive_type] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_typename] = ACTIONS(3169), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3169), + [anon_sym_decltype] = ACTIONS(3169), + [anon_sym_explicit] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_template] = ACTIONS(3169), + [anon_sym_operator] = ACTIONS(3169), + [anon_sym_friend] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_protected] = ACTIONS(3169), + [anon_sym_static_assert] = ACTIONS(3169), + [anon_sym_catch] = ACTIONS(8795), + [anon_sym_LBRACK_COLON] = ACTIONS(3171), }, [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), + [sym_string_literal] = STATE(2849), + [sym_raw_string_literal] = STATE(2849), + [aux_sym_concatenated_string_repeat1] = STATE(2849), + [sym_identifier] = ACTIONS(8798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8800), + [anon_sym_COMMA] = ACTIONS(8800), + [anon_sym_RPAREN] = ACTIONS(8800), + [aux_sym_preproc_if_token2] = ACTIONS(8800), + [aux_sym_preproc_else_token1] = ACTIONS(8800), + [aux_sym_preproc_elif_token1] = ACTIONS(8802), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8800), + [anon_sym_LPAREN2] = ACTIONS(8800), + [anon_sym_DASH] = ACTIONS(8802), + [anon_sym_PLUS] = ACTIONS(8802), + [anon_sym_STAR] = ACTIONS(8802), + [anon_sym_SLASH] = ACTIONS(8802), + [anon_sym_PERCENT] = ACTIONS(8802), + [anon_sym_PIPE_PIPE] = ACTIONS(8800), + [anon_sym_AMP_AMP] = ACTIONS(8800), + [anon_sym_PIPE] = ACTIONS(8802), + [anon_sym_CARET] = ACTIONS(8802), + [anon_sym_AMP] = ACTIONS(8802), + [anon_sym_EQ_EQ] = ACTIONS(8800), + [anon_sym_BANG_EQ] = ACTIONS(8800), + [anon_sym_GT] = ACTIONS(8802), + [anon_sym_GT_EQ] = ACTIONS(8800), + [anon_sym_LT_EQ] = ACTIONS(8802), + [anon_sym_LT] = ACTIONS(8802), + [anon_sym_LT_LT] = ACTIONS(8802), + [anon_sym_GT_GT] = ACTIONS(8802), + [anon_sym_SEMI] = ACTIONS(8800), + [anon_sym_COLON] = ACTIONS(8802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8800), + [anon_sym_RBRACE] = ACTIONS(8800), + [anon_sym_LBRACK] = ACTIONS(8800), + [anon_sym_EQ] = ACTIONS(8802), + [anon_sym_QMARK] = ACTIONS(8800), + [anon_sym_STAR_EQ] = ACTIONS(8800), + [anon_sym_SLASH_EQ] = ACTIONS(8800), + [anon_sym_PERCENT_EQ] = ACTIONS(8800), + [anon_sym_PLUS_EQ] = ACTIONS(8800), + [anon_sym_DASH_EQ] = ACTIONS(8800), + [anon_sym_LT_LT_EQ] = ACTIONS(8800), + [anon_sym_GT_GT_EQ] = ACTIONS(8800), + [anon_sym_AMP_EQ] = ACTIONS(8800), + [anon_sym_CARET_EQ] = ACTIONS(8800), + [anon_sym_PIPE_EQ] = ACTIONS(8800), + [anon_sym_and_eq] = ACTIONS(8802), + [anon_sym_or_eq] = ACTIONS(8802), + [anon_sym_xor_eq] = ACTIONS(8802), + [anon_sym_LT_EQ_GT] = ACTIONS(8800), + [anon_sym_or] = ACTIONS(8802), + [anon_sym_and] = ACTIONS(8802), + [anon_sym_bitor] = ACTIONS(8802), + [anon_sym_xor] = ACTIONS(8802), + [anon_sym_bitand] = ACTIONS(8802), + [anon_sym_not_eq] = ACTIONS(8802), + [anon_sym_DASH_DASH] = ACTIONS(8800), + [anon_sym_PLUS_PLUS] = ACTIONS(8800), + [anon_sym_DOT] = ACTIONS(8802), + [anon_sym_DOT_STAR] = ACTIONS(8800), + [anon_sym_DASH_GT] = ACTIONS(8800), + [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(8800), + [sym_literal_suffix] = ACTIONS(8802), }, [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_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3118), [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(3108), }, [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), + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_exception_specification] = STATE(3399), + [sym__function_attributes_end] = STATE(4615), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3432), + [sym_noexcept] = STATE(3399), + [sym_throw_specifier] = STATE(3399), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(8658), + [anon_sym___attribute] = ACTIONS(8661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6975), + [anon_sym_override] = ACTIONS(6975), + [anon_sym_noexcept] = ACTIONS(6977), + [anon_sym_throw] = ACTIONS(6979), + [anon_sym_requires] = ACTIONS(6981), }, [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), + [sym_type_qualifier] = STATE(2887), + [sym_alignas_qualifier] = STATE(3302), + [aux_sym__type_definition_type_repeat1] = STATE(2887), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8804), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7049), + [anon_sym_EQ] = ACTIONS(7047), + [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(8807), + [anon_sym__Alignas] = ACTIONS(8807), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7047), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7049), }, [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), + [sym_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_exception_specification] = STATE(3400), + [sym__function_attributes_end] = STATE(4616), + [sym__function_postfix] = STATE(3975), + [sym_trailing_return_type] = STATE(3462), + [sym_noexcept] = STATE(3400), + [sym_throw_specifier] = STATE(3400), + [sym_requires_clause] = STATE(3975), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(8722), + [anon_sym___attribute] = ACTIONS(8725), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8728), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6975), + [anon_sym_override] = ACTIONS(6975), + [anon_sym_noexcept] = ACTIONS(6977), + [anon_sym_throw] = ACTIONS(6979), + [anon_sym_requires] = ACTIONS(6981), }, [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), + [sym_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym__function_exception_specification] = STATE(3410), + [sym__function_attributes_end] = STATE(4842), + [sym__function_postfix] = STATE(5657), + [sym_trailing_return_type] = STATE(4930), + [sym_noexcept] = STATE(3410), + [sym_throw_specifier] = STATE(3410), + [sym_requires_clause] = STATE(5657), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7472), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7472), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8619), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8673), + [anon_sym_override] = ACTIONS(8673), + [anon_sym_GT2] = ACTIONS(7474), + [anon_sym_noexcept] = ACTIONS(6925), + [anon_sym_throw] = ACTIONS(6927), + [anon_sym_requires] = ACTIONS(8676), }, [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), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7442), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7447), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7447), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7442), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_DASH_GT_STAR] = ACTIONS(7447), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym__function_exception_specification] = STATE(3416), + [sym__function_attributes_end] = STATE(4843), + [sym__function_postfix] = STATE(5572), + [sym_trailing_return_type] = STATE(4932), + [sym_noexcept] = STATE(3416), + [sym_throw_specifier] = STATE(3416), + [sym_requires_clause] = STATE(5572), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7621), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7621), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8810), + [anon_sym_override] = ACTIONS(8810), + [anon_sym_GT2] = ACTIONS(7623), + [anon_sym_noexcept] = ACTIONS(6925), + [anon_sym_throw] = ACTIONS(6927), + [anon_sym_requires] = ACTIONS(8813), }, [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), + [sym_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym__function_exception_specification] = STATE(3427), + [sym__function_attributes_end] = STATE(4846), + [sym__function_postfix] = STATE(5746), + [sym_trailing_return_type] = STATE(4955), + [sym_noexcept] = STATE(3427), + [sym_throw_specifier] = STATE(3427), + [sym_requires_clause] = STATE(5746), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_RBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8640), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8679), + [anon_sym_override] = ACTIONS(8679), + [anon_sym_noexcept] = ACTIONS(7013), + [anon_sym_throw] = ACTIONS(7015), + [anon_sym_requires] = ACTIONS(8682), }, [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), + [sym_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym__function_exception_specification] = STATE(3428), + [sym__function_attributes_end] = STATE(4847), + [sym__function_postfix] = STATE(5771), + [sym_trailing_return_type] = STATE(4960), + [sym_noexcept] = STATE(3428), + [sym_throw_specifier] = STATE(3428), + [sym_requires_clause] = STATE(5771), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_RBRACK] = ACTIONS(7623), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8737), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8816), + [anon_sym_override] = ACTIONS(8816), + [anon_sym_noexcept] = ACTIONS(7013), + [anon_sym_throw] = ACTIONS(7015), + [anon_sym_requires] = ACTIONS(8819), }, [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), + [sym_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym__function_exception_specification] = STATE(3390), + [sym__function_attributes_end] = STATE(4914), + [sym__function_postfix] = STATE(5746), + [sym_trailing_return_type] = STATE(5019), + [sym_noexcept] = STATE(3390), + [sym_throw_specifier] = STATE(3390), + [sym_requires_clause] = STATE(5746), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_RBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8640), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7043), + [anon_sym_override] = ACTIONS(7043), + [anon_sym_noexcept] = ACTIONS(7013), + [anon_sym_throw] = ACTIONS(7015), + [anon_sym_requires] = ACTIONS(7045), }, [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7399), - [anon_sym_override] = ACTIONS(7399), - [anon_sym_GT2] = ACTIONS(7399), - [anon_sym_requires] = ACTIONS(7399), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_DASH_GT_STAR] = ACTIONS(7261), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), }, [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), + [sym_identifier] = ACTIONS(7842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7844), + [anon_sym_COMMA] = ACTIONS(7844), + [anon_sym_RPAREN] = ACTIONS(7844), + [anon_sym_LPAREN2] = ACTIONS(7844), + [anon_sym_DASH] = ACTIONS(7842), + [anon_sym_PLUS] = ACTIONS(7842), + [anon_sym_STAR] = ACTIONS(7842), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_PERCENT] = ACTIONS(7842), + [anon_sym_PIPE_PIPE] = ACTIONS(7844), + [anon_sym_AMP_AMP] = ACTIONS(7844), + [anon_sym_PIPE] = ACTIONS(7842), + [anon_sym_CARET] = ACTIONS(7842), + [anon_sym_AMP] = ACTIONS(7842), + [anon_sym_EQ_EQ] = ACTIONS(7844), + [anon_sym_BANG_EQ] = ACTIONS(7844), + [anon_sym_GT] = ACTIONS(7842), + [anon_sym_GT_EQ] = ACTIONS(7844), + [anon_sym_LT_EQ] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(7842), + [anon_sym_LT_LT] = ACTIONS(7842), + [anon_sym_GT_GT] = ACTIONS(7842), + [anon_sym___extension__] = ACTIONS(7842), + [anon_sym_COLON_COLON] = ACTIONS(7844), + [anon_sym_LBRACK] = ACTIONS(7842), + [anon_sym_EQ] = ACTIONS(7842), + [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(7842), + [anon_sym__Alignas] = ACTIONS(7842), + [anon_sym_QMARK] = ACTIONS(7844), + [anon_sym_STAR_EQ] = ACTIONS(7844), + [anon_sym_SLASH_EQ] = ACTIONS(7844), + [anon_sym_PERCENT_EQ] = ACTIONS(7844), + [anon_sym_PLUS_EQ] = ACTIONS(7844), + [anon_sym_DASH_EQ] = ACTIONS(7844), + [anon_sym_LT_LT_EQ] = ACTIONS(7844), + [anon_sym_GT_GT_EQ] = ACTIONS(7844), + [anon_sym_AMP_EQ] = ACTIONS(7844), + [anon_sym_CARET_EQ] = ACTIONS(7844), + [anon_sym_PIPE_EQ] = ACTIONS(7844), + [anon_sym_and_eq] = ACTIONS(7842), + [anon_sym_or_eq] = ACTIONS(7842), + [anon_sym_xor_eq] = ACTIONS(7842), + [anon_sym_LT_EQ_GT] = ACTIONS(7844), + [anon_sym_or] = ACTIONS(7842), + [anon_sym_and] = ACTIONS(7842), + [anon_sym_bitor] = ACTIONS(7842), + [anon_sym_xor] = ACTIONS(7842), + [anon_sym_bitand] = ACTIONS(7842), + [anon_sym_not_eq] = ACTIONS(7842), + [anon_sym_DASH_DASH] = ACTIONS(7844), + [anon_sym_PLUS_PLUS] = ACTIONS(7844), + [anon_sym_DOT] = ACTIONS(7842), + [anon_sym_DOT_STAR] = ACTIONS(7844), + [anon_sym_DASH_GT] = ACTIONS(7842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7842), + [anon_sym_final] = ACTIONS(7842), + [anon_sym_override] = ACTIONS(7842), + [anon_sym_template] = ACTIONS(7842), + [anon_sym_requires] = ACTIONS(7842), + [anon_sym_DASH_GT_STAR] = ACTIONS(7844), + [anon_sym_LBRACK_COLON] = ACTIONS(7844), }, [STATE(2897)] = { - [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), + [sym_identifier] = ACTIONS(7830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7832), + [anon_sym_COMMA] = ACTIONS(7832), + [anon_sym_RPAREN] = ACTIONS(7832), + [anon_sym_LPAREN2] = ACTIONS(7832), + [anon_sym_DASH] = ACTIONS(7830), + [anon_sym_PLUS] = ACTIONS(7830), + [anon_sym_STAR] = ACTIONS(7830), + [anon_sym_SLASH] = ACTIONS(7830), + [anon_sym_PERCENT] = ACTIONS(7830), + [anon_sym_PIPE_PIPE] = ACTIONS(7832), + [anon_sym_AMP_AMP] = ACTIONS(7832), + [anon_sym_PIPE] = ACTIONS(7830), + [anon_sym_CARET] = ACTIONS(7830), + [anon_sym_AMP] = ACTIONS(7830), + [anon_sym_EQ_EQ] = ACTIONS(7832), + [anon_sym_BANG_EQ] = ACTIONS(7832), + [anon_sym_GT] = ACTIONS(7830), + [anon_sym_GT_EQ] = ACTIONS(7832), + [anon_sym_LT_EQ] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(7830), + [anon_sym_LT_LT] = ACTIONS(7830), + [anon_sym_GT_GT] = ACTIONS(7830), + [anon_sym___extension__] = ACTIONS(7830), + [anon_sym_COLON_COLON] = ACTIONS(7832), + [anon_sym_LBRACK] = ACTIONS(7830), + [anon_sym_EQ] = ACTIONS(7830), + [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(7830), + [anon_sym__Alignas] = ACTIONS(7830), + [anon_sym_QMARK] = ACTIONS(7832), + [anon_sym_STAR_EQ] = ACTIONS(7832), + [anon_sym_SLASH_EQ] = ACTIONS(7832), + [anon_sym_PERCENT_EQ] = ACTIONS(7832), + [anon_sym_PLUS_EQ] = ACTIONS(7832), + [anon_sym_DASH_EQ] = ACTIONS(7832), + [anon_sym_LT_LT_EQ] = ACTIONS(7832), + [anon_sym_GT_GT_EQ] = ACTIONS(7832), + [anon_sym_AMP_EQ] = ACTIONS(7832), + [anon_sym_CARET_EQ] = ACTIONS(7832), + [anon_sym_PIPE_EQ] = ACTIONS(7832), + [anon_sym_and_eq] = ACTIONS(7830), + [anon_sym_or_eq] = ACTIONS(7830), + [anon_sym_xor_eq] = ACTIONS(7830), + [anon_sym_LT_EQ_GT] = ACTIONS(7832), + [anon_sym_or] = ACTIONS(7830), + [anon_sym_and] = ACTIONS(7830), + [anon_sym_bitor] = ACTIONS(7830), + [anon_sym_xor] = ACTIONS(7830), + [anon_sym_bitand] = ACTIONS(7830), + [anon_sym_not_eq] = ACTIONS(7830), + [anon_sym_DASH_DASH] = ACTIONS(7832), + [anon_sym_PLUS_PLUS] = ACTIONS(7832), + [anon_sym_DOT] = ACTIONS(7830), + [anon_sym_DOT_STAR] = ACTIONS(7832), + [anon_sym_DASH_GT] = ACTIONS(7830), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7830), + [anon_sym_final] = ACTIONS(7830), + [anon_sym_override] = ACTIONS(7830), + [anon_sym_template] = ACTIONS(7830), + [anon_sym_requires] = ACTIONS(7830), + [anon_sym_DASH_GT_STAR] = ACTIONS(7832), + [anon_sym_LBRACK_COLON] = ACTIONS(7832), }, [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), - [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), + [sym_identifier] = ACTIONS(7854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7856), + [anon_sym_COMMA] = ACTIONS(7856), + [anon_sym_RPAREN] = ACTIONS(7856), + [anon_sym_LPAREN2] = ACTIONS(7856), + [anon_sym_DASH] = ACTIONS(7854), + [anon_sym_PLUS] = ACTIONS(7854), + [anon_sym_STAR] = ACTIONS(7854), + [anon_sym_SLASH] = ACTIONS(7854), + [anon_sym_PERCENT] = ACTIONS(7854), + [anon_sym_PIPE_PIPE] = ACTIONS(7856), + [anon_sym_AMP_AMP] = ACTIONS(7856), + [anon_sym_PIPE] = ACTIONS(7854), + [anon_sym_CARET] = ACTIONS(7854), + [anon_sym_AMP] = ACTIONS(7854), + [anon_sym_EQ_EQ] = ACTIONS(7856), + [anon_sym_BANG_EQ] = ACTIONS(7856), + [anon_sym_GT] = ACTIONS(7854), + [anon_sym_GT_EQ] = ACTIONS(7856), + [anon_sym_LT_EQ] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(7854), + [anon_sym_GT_GT] = ACTIONS(7854), + [anon_sym___extension__] = ACTIONS(7854), + [anon_sym_COLON_COLON] = ACTIONS(7856), + [anon_sym_LBRACK] = ACTIONS(7854), + [anon_sym_EQ] = ACTIONS(7854), + [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(7854), + [anon_sym__Alignas] = ACTIONS(7854), + [anon_sym_QMARK] = ACTIONS(7856), + [anon_sym_STAR_EQ] = ACTIONS(7856), + [anon_sym_SLASH_EQ] = ACTIONS(7856), + [anon_sym_PERCENT_EQ] = ACTIONS(7856), + [anon_sym_PLUS_EQ] = ACTIONS(7856), + [anon_sym_DASH_EQ] = ACTIONS(7856), + [anon_sym_LT_LT_EQ] = ACTIONS(7856), + [anon_sym_GT_GT_EQ] = ACTIONS(7856), + [anon_sym_AMP_EQ] = ACTIONS(7856), + [anon_sym_CARET_EQ] = ACTIONS(7856), + [anon_sym_PIPE_EQ] = ACTIONS(7856), + [anon_sym_and_eq] = ACTIONS(7854), + [anon_sym_or_eq] = ACTIONS(7854), + [anon_sym_xor_eq] = ACTIONS(7854), + [anon_sym_LT_EQ_GT] = ACTIONS(7856), + [anon_sym_or] = ACTIONS(7854), + [anon_sym_and] = ACTIONS(7854), + [anon_sym_bitor] = ACTIONS(7854), + [anon_sym_xor] = ACTIONS(7854), + [anon_sym_bitand] = ACTIONS(7854), + [anon_sym_not_eq] = ACTIONS(7854), + [anon_sym_DASH_DASH] = ACTIONS(7856), + [anon_sym_PLUS_PLUS] = ACTIONS(7856), + [anon_sym_DOT] = ACTIONS(7854), + [anon_sym_DOT_STAR] = ACTIONS(7856), + [anon_sym_DASH_GT] = ACTIONS(7854), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7854), + [anon_sym_final] = ACTIONS(7854), + [anon_sym_override] = ACTIONS(7854), + [anon_sym_template] = ACTIONS(7854), + [anon_sym_requires] = ACTIONS(7854), + [anon_sym_DASH_GT_STAR] = ACTIONS(7856), + [anon_sym_LBRACK_COLON] = ACTIONS(7856), }, [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), + [sym_attribute_specifier] = STATE(3382), + [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(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(7680), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7680), + [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_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(7680), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7680), + [anon_sym_final] = ACTIONS(7680), + [anon_sym_override] = ACTIONS(7680), + [anon_sym_template] = ACTIONS(7680), + [anon_sym_requires] = ACTIONS(7680), + [anon_sym_DASH_GT_STAR] = ACTIONS(7682), + [anon_sym_LBRACK_COLON] = ACTIONS(7682), }, [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), + [sym_identifier] = ACTIONS(7775), + [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(7775), + [anon_sym_COLON_COLON] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7775), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7775), + [anon_sym_volatile] = ACTIONS(7775), + [anon_sym_restrict] = ACTIONS(7775), + [anon_sym___restrict__] = ACTIONS(7775), + [anon_sym__Atomic] = ACTIONS(7775), + [anon_sym__Noreturn] = ACTIONS(7775), + [anon_sym_noreturn] = ACTIONS(7775), + [anon_sym__Nonnull] = ACTIONS(7775), + [anon_sym_mutable] = ACTIONS(7775), + [anon_sym_constinit] = ACTIONS(7775), + [anon_sym_consteval] = ACTIONS(7775), + [anon_sym_alignas] = ACTIONS(7775), + [anon_sym__Alignas] = ACTIONS(7775), + [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(7775), + [anon_sym_or_eq] = ACTIONS(7775), + [anon_sym_xor_eq] = ACTIONS(7775), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7775), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7775), + [anon_sym_not_eq] = ACTIONS(7775), + [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_decltype] = ACTIONS(7775), + [anon_sym_final] = ACTIONS(7775), + [anon_sym_override] = ACTIONS(7775), + [anon_sym_template] = ACTIONS(7775), + [anon_sym_requires] = ACTIONS(7775), + [anon_sym_DASH_GT_STAR] = ACTIONS(7777), + [anon_sym_LBRACK_COLON] = ACTIONS(7777), }, [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_identifier] = ACTIONS(7858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7860), + [anon_sym_COMMA] = ACTIONS(7860), + [anon_sym_RPAREN] = ACTIONS(7860), + [anon_sym_LPAREN2] = ACTIONS(7860), + [anon_sym_DASH] = ACTIONS(7858), + [anon_sym_PLUS] = ACTIONS(7858), + [anon_sym_STAR] = ACTIONS(7858), + [anon_sym_SLASH] = ACTIONS(7858), + [anon_sym_PERCENT] = ACTIONS(7858), + [anon_sym_PIPE_PIPE] = ACTIONS(7860), + [anon_sym_AMP_AMP] = ACTIONS(7860), + [anon_sym_PIPE] = ACTIONS(7858), + [anon_sym_CARET] = ACTIONS(7858), + [anon_sym_AMP] = ACTIONS(7858), + [anon_sym_EQ_EQ] = ACTIONS(7860), + [anon_sym_BANG_EQ] = ACTIONS(7860), + [anon_sym_GT] = ACTIONS(7858), + [anon_sym_GT_EQ] = ACTIONS(7860), + [anon_sym_LT_EQ] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(7858), + [anon_sym_LT_LT] = ACTIONS(7858), + [anon_sym_GT_GT] = ACTIONS(7858), + [anon_sym___extension__] = ACTIONS(7858), + [anon_sym_COLON_COLON] = ACTIONS(7860), + [anon_sym_LBRACK] = ACTIONS(7858), + [anon_sym_EQ] = ACTIONS(7858), + [anon_sym_const] = ACTIONS(7858), + [anon_sym_constexpr] = ACTIONS(7858), + [anon_sym_volatile] = ACTIONS(7858), + [anon_sym_restrict] = ACTIONS(7858), + [anon_sym___restrict__] = ACTIONS(7858), + [anon_sym__Atomic] = ACTIONS(7858), + [anon_sym__Noreturn] = ACTIONS(7858), + [anon_sym_noreturn] = ACTIONS(7858), + [anon_sym__Nonnull] = ACTIONS(7858), + [anon_sym_mutable] = ACTIONS(7858), + [anon_sym_constinit] = ACTIONS(7858), + [anon_sym_consteval] = ACTIONS(7858), + [anon_sym_alignas] = ACTIONS(7858), + [anon_sym__Alignas] = ACTIONS(7858), + [anon_sym_QMARK] = ACTIONS(7860), + [anon_sym_STAR_EQ] = ACTIONS(7860), + [anon_sym_SLASH_EQ] = ACTIONS(7860), + [anon_sym_PERCENT_EQ] = ACTIONS(7860), + [anon_sym_PLUS_EQ] = ACTIONS(7860), + [anon_sym_DASH_EQ] = ACTIONS(7860), + [anon_sym_LT_LT_EQ] = ACTIONS(7860), + [anon_sym_GT_GT_EQ] = ACTIONS(7860), + [anon_sym_AMP_EQ] = ACTIONS(7860), + [anon_sym_CARET_EQ] = ACTIONS(7860), + [anon_sym_PIPE_EQ] = ACTIONS(7860), + [anon_sym_and_eq] = ACTIONS(7858), + [anon_sym_or_eq] = ACTIONS(7858), + [anon_sym_xor_eq] = ACTIONS(7858), + [anon_sym_LT_EQ_GT] = ACTIONS(7860), + [anon_sym_or] = ACTIONS(7858), + [anon_sym_and] = ACTIONS(7858), + [anon_sym_bitor] = ACTIONS(7858), + [anon_sym_xor] = ACTIONS(7858), + [anon_sym_bitand] = ACTIONS(7858), + [anon_sym_not_eq] = ACTIONS(7858), + [anon_sym_DASH_DASH] = ACTIONS(7860), + [anon_sym_PLUS_PLUS] = ACTIONS(7860), + [anon_sym_DOT] = ACTIONS(7858), + [anon_sym_DOT_STAR] = ACTIONS(7860), + [anon_sym_DASH_GT] = ACTIONS(7858), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7858), + [anon_sym_final] = ACTIONS(7858), + [anon_sym_override] = ACTIONS(7858), + [anon_sym_template] = ACTIONS(7858), + [anon_sym_requires] = ACTIONS(7858), + [anon_sym_DASH_GT_STAR] = ACTIONS(7860), + [anon_sym_LBRACK_COLON] = ACTIONS(7860), }, [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3108), + [anon_sym___attribute__] = ACTIONS(3108), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [anon_sym_constexpr] = ACTIONS(3108), + [anon_sym_volatile] = ACTIONS(3108), + [anon_sym_restrict] = ACTIONS(3108), + [anon_sym___restrict__] = ACTIONS(3108), + [anon_sym__Atomic] = ACTIONS(3108), + [anon_sym__Noreturn] = ACTIONS(3108), + [anon_sym_noreturn] = ACTIONS(3108), + [anon_sym__Nonnull] = ACTIONS(3108), + [anon_sym_mutable] = ACTIONS(3108), + [anon_sym_constinit] = ACTIONS(3108), + [anon_sym_consteval] = ACTIONS(3108), + [anon_sym_alignas] = ACTIONS(3108), + [anon_sym__Alignas] = ACTIONS(3108), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [anon_sym_or] = ACTIONS(3108), + [anon_sym_and] = ACTIONS(3108), + [anon_sym_bitor] = ACTIONS(3108), + [anon_sym_xor] = ACTIONS(3108), + [anon_sym_bitand] = ACTIONS(3108), + [anon_sym_not_eq] = ACTIONS(3108), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_asm] = ACTIONS(3108), + [anon_sym___asm__] = ACTIONS(3108), + [anon_sym___asm] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3108), + [anon_sym_override] = ACTIONS(3108), + [anon_sym_noexcept] = ACTIONS(3108), + [anon_sym_throw] = ACTIONS(3108), + [anon_sym_requires] = ACTIONS(3108), + [anon_sym_DASH_GT_STAR] = ACTIONS(3108), }, [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), + [sym_attribute_specifier] = STATE(3371), + [sym_identifier] = ACTIONS(7692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7694), + [anon_sym_COMMA] = ACTIONS(7694), + [anon_sym_RPAREN] = ACTIONS(7694), + [anon_sym_LPAREN2] = ACTIONS(7694), + [anon_sym_DASH] = ACTIONS(7692), + [anon_sym_PLUS] = ACTIONS(7692), + [anon_sym_STAR] = ACTIONS(7692), + [anon_sym_SLASH] = ACTIONS(7692), + [anon_sym_PERCENT] = ACTIONS(7692), + [anon_sym_PIPE_PIPE] = ACTIONS(7694), + [anon_sym_AMP_AMP] = ACTIONS(7694), + [anon_sym_PIPE] = ACTIONS(7692), + [anon_sym_CARET] = ACTIONS(7692), + [anon_sym_AMP] = ACTIONS(7692), + [anon_sym_EQ_EQ] = ACTIONS(7694), + [anon_sym_BANG_EQ] = ACTIONS(7694), + [anon_sym_GT] = ACTIONS(7692), + [anon_sym_GT_EQ] = ACTIONS(7694), + [anon_sym_LT_EQ] = ACTIONS(7692), + [anon_sym_LT] = ACTIONS(7692), + [anon_sym_LT_LT] = ACTIONS(7692), + [anon_sym_GT_GT] = ACTIONS(7692), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_EQ] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7692), + [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(7694), + [anon_sym_STAR_EQ] = ACTIONS(7694), + [anon_sym_SLASH_EQ] = ACTIONS(7694), + [anon_sym_PERCENT_EQ] = ACTIONS(7694), + [anon_sym_PLUS_EQ] = ACTIONS(7694), + [anon_sym_DASH_EQ] = ACTIONS(7694), + [anon_sym_LT_LT_EQ] = ACTIONS(7694), + [anon_sym_GT_GT_EQ] = ACTIONS(7694), + [anon_sym_AMP_EQ] = ACTIONS(7694), + [anon_sym_CARET_EQ] = ACTIONS(7694), + [anon_sym_PIPE_EQ] = ACTIONS(7694), + [anon_sym_LT_EQ_GT] = ACTIONS(7694), + [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(7694), + [anon_sym_PLUS_PLUS] = ACTIONS(7694), + [anon_sym_DOT] = ACTIONS(7692), + [anon_sym_DOT_STAR] = ACTIONS(7694), + [anon_sym_DASH_GT] = ACTIONS(7692), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7692), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_template] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_DASH_GT_STAR] = ACTIONS(7694), + [anon_sym_LBRACK_COLON] = ACTIONS(7694), }, [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7261), + [anon_sym___attribute__] = ACTIONS(7261), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7261), + [anon_sym_volatile] = ACTIONS(7261), + [anon_sym_restrict] = ACTIONS(7261), + [anon_sym___restrict__] = ACTIONS(7261), + [anon_sym__Atomic] = ACTIONS(7261), + [anon_sym__Noreturn] = ACTIONS(7261), + [anon_sym_noreturn] = ACTIONS(7261), + [anon_sym__Nonnull] = ACTIONS(7261), + [anon_sym_mutable] = ACTIONS(7261), + [anon_sym_constinit] = ACTIONS(7261), + [anon_sym_consteval] = ACTIONS(7261), + [anon_sym_alignas] = ACTIONS(7261), + [anon_sym__Alignas] = ACTIONS(7261), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7261), + [anon_sym_and] = ACTIONS(7261), + [anon_sym_bitor] = ACTIONS(7261), + [anon_sym_xor] = ACTIONS(7261), + [anon_sym_bitand] = ACTIONS(7261), + [anon_sym_not_eq] = ACTIONS(7261), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_asm] = ACTIONS(7261), + [anon_sym___asm__] = ACTIONS(7261), + [anon_sym___asm] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7261), + [anon_sym_override] = ACTIONS(7261), + [anon_sym_noexcept] = ACTIONS(7261), + [anon_sym_throw] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7261), + [anon_sym_DASH_GT_STAR] = ACTIONS(7261), }, [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), + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7796), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_and_eq] = ACTIONS(7794), + [anon_sym_or_eq] = ACTIONS(7794), + [anon_sym_xor_eq] = ACTIONS(7794), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_DASH_GT_STAR] = ACTIONS(7796), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), }, [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), + [sym_attribute_specifier] = STATE(3383), + [sym_identifier] = ACTIONS(7688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7690), + [anon_sym_COMMA] = ACTIONS(7690), + [anon_sym_RPAREN] = ACTIONS(7690), + [anon_sym_LPAREN2] = ACTIONS(7690), + [anon_sym_DASH] = ACTIONS(7688), + [anon_sym_PLUS] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7688), + [anon_sym_SLASH] = ACTIONS(7688), + [anon_sym_PERCENT] = ACTIONS(7688), + [anon_sym_PIPE_PIPE] = ACTIONS(7690), + [anon_sym_AMP_AMP] = ACTIONS(7690), + [anon_sym_PIPE] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7688), + [anon_sym_AMP] = ACTIONS(7688), + [anon_sym_EQ_EQ] = ACTIONS(7690), + [anon_sym_BANG_EQ] = ACTIONS(7690), + [anon_sym_GT] = ACTIONS(7688), + [anon_sym_GT_EQ] = ACTIONS(7690), + [anon_sym_LT_EQ] = ACTIONS(7688), + [anon_sym_LT] = ACTIONS(7688), + [anon_sym_LT_LT] = ACTIONS(7688), + [anon_sym_GT_GT] = ACTIONS(7688), + [anon_sym___extension__] = ACTIONS(7688), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7690), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym_EQ] = ACTIONS(7688), + [anon_sym_const] = ACTIONS(7688), + [anon_sym_constexpr] = ACTIONS(7688), + [anon_sym_volatile] = ACTIONS(7688), + [anon_sym_restrict] = ACTIONS(7688), + [anon_sym___restrict__] = ACTIONS(7688), + [anon_sym__Atomic] = ACTIONS(7688), + [anon_sym__Noreturn] = ACTIONS(7688), + [anon_sym_noreturn] = ACTIONS(7688), + [anon_sym__Nonnull] = ACTIONS(7688), + [anon_sym_mutable] = ACTIONS(7688), + [anon_sym_constinit] = ACTIONS(7688), + [anon_sym_consteval] = ACTIONS(7688), + [anon_sym_alignas] = ACTIONS(7688), + [anon_sym__Alignas] = ACTIONS(7688), + [anon_sym_QMARK] = ACTIONS(7690), + [anon_sym_STAR_EQ] = ACTIONS(7690), + [anon_sym_SLASH_EQ] = ACTIONS(7690), + [anon_sym_PERCENT_EQ] = ACTIONS(7690), + [anon_sym_PLUS_EQ] = ACTIONS(7690), + [anon_sym_DASH_EQ] = ACTIONS(7690), + [anon_sym_LT_LT_EQ] = ACTIONS(7690), + [anon_sym_GT_GT_EQ] = ACTIONS(7690), + [anon_sym_AMP_EQ] = ACTIONS(7690), + [anon_sym_CARET_EQ] = ACTIONS(7690), + [anon_sym_PIPE_EQ] = ACTIONS(7690), + [anon_sym_LT_EQ_GT] = ACTIONS(7690), + [anon_sym_or] = ACTIONS(7688), + [anon_sym_and] = ACTIONS(7688), + [anon_sym_bitor] = ACTIONS(7688), + [anon_sym_xor] = ACTIONS(7688), + [anon_sym_bitand] = ACTIONS(7688), + [anon_sym_not_eq] = ACTIONS(7688), + [anon_sym_DASH_DASH] = ACTIONS(7690), + [anon_sym_PLUS_PLUS] = ACTIONS(7690), + [anon_sym_DOT] = ACTIONS(7688), + [anon_sym_DOT_STAR] = ACTIONS(7690), + [anon_sym_DASH_GT] = ACTIONS(7688), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7688), + [anon_sym_final] = ACTIONS(7688), + [anon_sym_override] = ACTIONS(7688), + [anon_sym_template] = ACTIONS(7688), + [anon_sym_requires] = ACTIONS(7688), + [anon_sym_DASH_GT_STAR] = ACTIONS(7690), + [anon_sym_LBRACK_COLON] = ACTIONS(7690), }, [STATE(2907)] = { + [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), @@ -386904,27 +396853,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(7747), + [anon_sym_COLON_COLON] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7747), [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_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), [anon_sym_QMARK] = ACTIONS(7749), [anon_sym_STAR_EQ] = ACTIONS(7749), [anon_sym_SLASH_EQ] = ACTIONS(7749), @@ -386936,3278 +396882,4729 @@ 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_and_eq] = ACTIONS(7747), + [anon_sym_or_eq] = ACTIONS(7747), + [anon_sym_xor_eq] = ACTIONS(7747), [anon_sym_LT_EQ_GT] = ACTIONS(7749), [anon_sym_or] = ACTIONS(7747), [anon_sym_and] = ACTIONS(7747), - [anon_sym_bitor] = ACTIONS(7749), + [anon_sym_bitor] = ACTIONS(7747), [anon_sym_xor] = ACTIONS(7747), - [anon_sym_bitand] = ACTIONS(7749), - [anon_sym_not_eq] = ACTIONS(7749), + [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), + [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_decltype] = ACTIONS(7747), + [anon_sym_final] = ACTIONS(7747), + [anon_sym_override] = ACTIONS(7747), + [anon_sym_template] = ACTIONS(7747), + [anon_sym_requires] = ACTIONS(7747), + [anon_sym_DASH_GT_STAR] = ACTIONS(7749), + [anon_sym_LBRACK_COLON] = ACTIONS(7749), }, [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_identifier] = ACTIONS(7846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7848), + [anon_sym_COMMA] = ACTIONS(7848), + [anon_sym_RPAREN] = ACTIONS(7848), + [anon_sym_LPAREN2] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7846), + [anon_sym_STAR] = ACTIONS(7846), + [anon_sym_SLASH] = ACTIONS(7846), + [anon_sym_PERCENT] = ACTIONS(7846), + [anon_sym_PIPE_PIPE] = ACTIONS(7848), + [anon_sym_AMP_AMP] = ACTIONS(7848), + [anon_sym_PIPE] = ACTIONS(7846), + [anon_sym_CARET] = ACTIONS(7846), + [anon_sym_AMP] = ACTIONS(7846), + [anon_sym_EQ_EQ] = ACTIONS(7848), + [anon_sym_BANG_EQ] = ACTIONS(7848), + [anon_sym_GT] = ACTIONS(7846), + [anon_sym_GT_EQ] = ACTIONS(7848), + [anon_sym_LT_EQ] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(7846), + [anon_sym_LT_LT] = ACTIONS(7846), + [anon_sym_GT_GT] = ACTIONS(7846), + [anon_sym___extension__] = ACTIONS(7846), + [anon_sym_COLON_COLON] = ACTIONS(7848), + [anon_sym_LBRACK] = ACTIONS(7846), + [anon_sym_EQ] = ACTIONS(7846), + [anon_sym_const] = ACTIONS(7846), + [anon_sym_constexpr] = ACTIONS(7846), + [anon_sym_volatile] = ACTIONS(7846), + [anon_sym_restrict] = ACTIONS(7846), + [anon_sym___restrict__] = ACTIONS(7846), + [anon_sym__Atomic] = ACTIONS(7846), + [anon_sym__Noreturn] = ACTIONS(7846), + [anon_sym_noreturn] = ACTIONS(7846), + [anon_sym__Nonnull] = ACTIONS(7846), + [anon_sym_mutable] = ACTIONS(7846), + [anon_sym_constinit] = ACTIONS(7846), + [anon_sym_consteval] = ACTIONS(7846), + [anon_sym_alignas] = ACTIONS(7846), + [anon_sym__Alignas] = ACTIONS(7846), + [anon_sym_QMARK] = ACTIONS(7848), + [anon_sym_STAR_EQ] = ACTIONS(7848), + [anon_sym_SLASH_EQ] = ACTIONS(7848), + [anon_sym_PERCENT_EQ] = ACTIONS(7848), + [anon_sym_PLUS_EQ] = ACTIONS(7848), + [anon_sym_DASH_EQ] = ACTIONS(7848), + [anon_sym_LT_LT_EQ] = ACTIONS(7848), + [anon_sym_GT_GT_EQ] = ACTIONS(7848), + [anon_sym_AMP_EQ] = ACTIONS(7848), + [anon_sym_CARET_EQ] = ACTIONS(7848), + [anon_sym_PIPE_EQ] = ACTIONS(7848), + [anon_sym_and_eq] = ACTIONS(7846), + [anon_sym_or_eq] = ACTIONS(7846), + [anon_sym_xor_eq] = ACTIONS(7846), + [anon_sym_LT_EQ_GT] = ACTIONS(7848), + [anon_sym_or] = ACTIONS(7846), + [anon_sym_and] = ACTIONS(7846), + [anon_sym_bitor] = ACTIONS(7846), + [anon_sym_xor] = ACTIONS(7846), + [anon_sym_bitand] = ACTIONS(7846), + [anon_sym_not_eq] = ACTIONS(7846), + [anon_sym_DASH_DASH] = ACTIONS(7848), + [anon_sym_PLUS_PLUS] = ACTIONS(7848), + [anon_sym_DOT] = ACTIONS(7846), + [anon_sym_DOT_STAR] = ACTIONS(7848), + [anon_sym_DASH_GT] = ACTIONS(7846), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7846), + [anon_sym_final] = ACTIONS(7846), + [anon_sym_override] = ACTIONS(7846), + [anon_sym_template] = ACTIONS(7846), + [anon_sym_requires] = ACTIONS(7846), + [anon_sym_DASH_GT_STAR] = ACTIONS(7848), + [anon_sym_LBRACK_COLON] = ACTIONS(7848), }, [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_attribute_specifier] = STATE(3373), + [sym_identifier] = ACTIONS(7702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7704), + [anon_sym_COMMA] = ACTIONS(7704), + [anon_sym_RPAREN] = ACTIONS(7704), + [anon_sym_LPAREN2] = ACTIONS(7704), + [anon_sym_DASH] = ACTIONS(7702), + [anon_sym_PLUS] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_SLASH] = ACTIONS(7702), + [anon_sym_PERCENT] = ACTIONS(7702), + [anon_sym_PIPE_PIPE] = ACTIONS(7704), + [anon_sym_AMP_AMP] = ACTIONS(7704), + [anon_sym_PIPE] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_AMP] = ACTIONS(7702), + [anon_sym_EQ_EQ] = ACTIONS(7704), + [anon_sym_BANG_EQ] = ACTIONS(7704), + [anon_sym_GT] = ACTIONS(7702), + [anon_sym_GT_EQ] = ACTIONS(7704), + [anon_sym_LT_EQ] = ACTIONS(7702), + [anon_sym_LT] = ACTIONS(7702), + [anon_sym_LT_LT] = ACTIONS(7702), + [anon_sym_GT_GT] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7704), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_EQ] = ACTIONS(7702), + [anon_sym_const] = ACTIONS(7702), + [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(7704), + [anon_sym_STAR_EQ] = ACTIONS(7704), + [anon_sym_SLASH_EQ] = ACTIONS(7704), + [anon_sym_PERCENT_EQ] = ACTIONS(7704), + [anon_sym_PLUS_EQ] = ACTIONS(7704), + [anon_sym_DASH_EQ] = ACTIONS(7704), + [anon_sym_LT_LT_EQ] = ACTIONS(7704), + [anon_sym_GT_GT_EQ] = ACTIONS(7704), + [anon_sym_AMP_EQ] = ACTIONS(7704), + [anon_sym_CARET_EQ] = ACTIONS(7704), + [anon_sym_PIPE_EQ] = ACTIONS(7704), + [anon_sym_LT_EQ_GT] = ACTIONS(7704), + [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(7704), + [anon_sym_PLUS_PLUS] = ACTIONS(7704), + [anon_sym_DOT] = ACTIONS(7702), + [anon_sym_DOT_STAR] = ACTIONS(7704), + [anon_sym_DASH_GT] = ACTIONS(7702), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7702), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_template] = ACTIONS(7702), + [anon_sym_requires] = ACTIONS(7702), + [anon_sym_DASH_GT_STAR] = ACTIONS(7704), + [anon_sym_LBRACK_COLON] = ACTIONS(7704), }, [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), + [sym_attribute_specifier] = STATE(3351), + [sym_identifier] = ACTIONS(7574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7576), + [anon_sym_COMMA] = ACTIONS(7576), + [anon_sym_RPAREN] = ACTIONS(7576), + [anon_sym_LPAREN2] = ACTIONS(7576), + [anon_sym_DASH] = ACTIONS(7574), + [anon_sym_PLUS] = ACTIONS(7574), + [anon_sym_STAR] = ACTIONS(7574), + [anon_sym_SLASH] = ACTIONS(7574), + [anon_sym_PERCENT] = ACTIONS(7574), + [anon_sym_PIPE_PIPE] = ACTIONS(7576), + [anon_sym_AMP_AMP] = ACTIONS(7576), + [anon_sym_PIPE] = ACTIONS(7574), + [anon_sym_CARET] = ACTIONS(7574), + [anon_sym_AMP] = ACTIONS(7574), + [anon_sym_EQ_EQ] = ACTIONS(7576), + [anon_sym_BANG_EQ] = ACTIONS(7576), + [anon_sym_GT] = ACTIONS(7574), + [anon_sym_GT_EQ] = ACTIONS(7576), + [anon_sym_LT_EQ] = ACTIONS(7574), + [anon_sym_LT] = ACTIONS(7574), + [anon_sym_LT_LT] = ACTIONS(7574), + [anon_sym_GT_GT] = ACTIONS(7574), + [anon_sym___extension__] = ACTIONS(7574), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7576), + [anon_sym_LBRACK] = ACTIONS(7574), + [anon_sym_EQ] = ACTIONS(7574), + [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(7574), + [anon_sym__Alignas] = ACTIONS(7574), + [anon_sym_QMARK] = ACTIONS(7576), + [anon_sym_STAR_EQ] = ACTIONS(7576), + [anon_sym_SLASH_EQ] = ACTIONS(7576), + [anon_sym_PERCENT_EQ] = ACTIONS(7576), + [anon_sym_PLUS_EQ] = ACTIONS(7576), + [anon_sym_DASH_EQ] = ACTIONS(7576), + [anon_sym_LT_LT_EQ] = ACTIONS(7576), + [anon_sym_GT_GT_EQ] = ACTIONS(7576), + [anon_sym_AMP_EQ] = ACTIONS(7576), + [anon_sym_CARET_EQ] = ACTIONS(7576), + [anon_sym_PIPE_EQ] = ACTIONS(7576), + [anon_sym_LT_EQ_GT] = ACTIONS(7576), + [anon_sym_or] = ACTIONS(7574), + [anon_sym_and] = ACTIONS(7574), + [anon_sym_bitor] = ACTIONS(7574), + [anon_sym_xor] = ACTIONS(7574), + [anon_sym_bitand] = ACTIONS(7574), + [anon_sym_not_eq] = ACTIONS(7574), + [anon_sym_DASH_DASH] = ACTIONS(7576), + [anon_sym_PLUS_PLUS] = ACTIONS(7576), + [anon_sym_DOT] = ACTIONS(7574), + [anon_sym_DOT_STAR] = ACTIONS(7576), + [anon_sym_DASH_GT] = ACTIONS(7574), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7574), + [anon_sym_final] = ACTIONS(7574), + [anon_sym_override] = ACTIONS(7574), + [anon_sym_template] = ACTIONS(7574), + [anon_sym_requires] = ACTIONS(7574), + [anon_sym_DASH_GT_STAR] = ACTIONS(7576), + [anon_sym_LBRACK_COLON] = ACTIONS(7576), }, [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), + [sym_identifier] = ACTIONS(7802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7804), + [anon_sym_COMMA] = ACTIONS(7804), + [anon_sym_RPAREN] = ACTIONS(7804), + [anon_sym_LPAREN2] = ACTIONS(7804), + [anon_sym_DASH] = ACTIONS(7802), + [anon_sym_PLUS] = ACTIONS(7802), + [anon_sym_STAR] = ACTIONS(7802), + [anon_sym_SLASH] = ACTIONS(7802), + [anon_sym_PERCENT] = ACTIONS(7802), + [anon_sym_PIPE_PIPE] = ACTIONS(7804), + [anon_sym_AMP_AMP] = ACTIONS(7804), + [anon_sym_PIPE] = ACTIONS(7802), + [anon_sym_CARET] = ACTIONS(7802), + [anon_sym_AMP] = ACTIONS(7802), + [anon_sym_EQ_EQ] = ACTIONS(7804), + [anon_sym_BANG_EQ] = ACTIONS(7804), + [anon_sym_GT] = ACTIONS(7802), + [anon_sym_GT_EQ] = ACTIONS(7804), + [anon_sym_LT_EQ] = ACTIONS(7802), + [anon_sym_LT] = ACTIONS(7802), + [anon_sym_LT_LT] = ACTIONS(7802), + [anon_sym_GT_GT] = ACTIONS(7802), + [anon_sym___extension__] = ACTIONS(7802), + [anon_sym_COLON_COLON] = ACTIONS(7804), + [anon_sym_LBRACK] = ACTIONS(7802), + [anon_sym_EQ] = ACTIONS(7802), + [anon_sym_const] = ACTIONS(7802), + [anon_sym_constexpr] = ACTIONS(7802), + [anon_sym_volatile] = ACTIONS(7802), + [anon_sym_restrict] = ACTIONS(7802), + [anon_sym___restrict__] = ACTIONS(7802), + [anon_sym__Atomic] = ACTIONS(7802), + [anon_sym__Noreturn] = ACTIONS(7802), + [anon_sym_noreturn] = ACTIONS(7802), + [anon_sym__Nonnull] = ACTIONS(7802), + [anon_sym_mutable] = ACTIONS(7802), + [anon_sym_constinit] = ACTIONS(7802), + [anon_sym_consteval] = ACTIONS(7802), + [anon_sym_alignas] = ACTIONS(7802), + [anon_sym__Alignas] = ACTIONS(7802), + [anon_sym_QMARK] = ACTIONS(7804), + [anon_sym_STAR_EQ] = ACTIONS(7804), + [anon_sym_SLASH_EQ] = ACTIONS(7804), + [anon_sym_PERCENT_EQ] = ACTIONS(7804), + [anon_sym_PLUS_EQ] = ACTIONS(7804), + [anon_sym_DASH_EQ] = ACTIONS(7804), + [anon_sym_LT_LT_EQ] = ACTIONS(7804), + [anon_sym_GT_GT_EQ] = ACTIONS(7804), + [anon_sym_AMP_EQ] = ACTIONS(7804), + [anon_sym_CARET_EQ] = ACTIONS(7804), + [anon_sym_PIPE_EQ] = ACTIONS(7804), + [anon_sym_and_eq] = ACTIONS(7802), + [anon_sym_or_eq] = ACTIONS(7802), + [anon_sym_xor_eq] = ACTIONS(7802), + [anon_sym_LT_EQ_GT] = ACTIONS(7804), + [anon_sym_or] = ACTIONS(7802), + [anon_sym_and] = ACTIONS(7802), + [anon_sym_bitor] = ACTIONS(7802), + [anon_sym_xor] = ACTIONS(7802), + [anon_sym_bitand] = ACTIONS(7802), + [anon_sym_not_eq] = ACTIONS(7802), + [anon_sym_DASH_DASH] = ACTIONS(7804), + [anon_sym_PLUS_PLUS] = ACTIONS(7804), + [anon_sym_DOT] = ACTIONS(7802), + [anon_sym_DOT_STAR] = ACTIONS(7804), + [anon_sym_DASH_GT] = ACTIONS(7802), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7802), + [anon_sym_final] = ACTIONS(7802), + [anon_sym_override] = ACTIONS(7802), + [anon_sym_template] = ACTIONS(7802), + [anon_sym_requires] = ACTIONS(7802), + [anon_sym_DASH_GT_STAR] = ACTIONS(7804), + [anon_sym_LBRACK_COLON] = ACTIONS(7804), }, [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_argument_list] = STATE(6170), + [sym_initializer_list] = STATE(6233), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8372), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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(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(7493), + [anon_sym___attribute] = ACTIONS(7491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [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_asm] = ACTIONS(7493), + [anon_sym___asm__] = ACTIONS(7493), + [anon_sym___asm] = ACTIONS(7491), + [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_noexcept] = ACTIONS(7493), + [anon_sym_throw] = ACTIONS(7493), + [anon_sym_requires] = ACTIONS(7493), + [anon_sym_DASH_GT_STAR] = ACTIONS(7493), }, [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_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7796), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_and_eq] = ACTIONS(7794), + [anon_sym_or_eq] = ACTIONS(7794), + [anon_sym_xor_eq] = ACTIONS(7794), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_DASH_GT_STAR] = ACTIONS(7796), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), }, [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_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7259), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7261), }, [STATE(2916)] = { - [sym_attribute_specifier] = STATE(3571), - [sym_enumerator_list] = STATE(3026), - [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(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(8624), - [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_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(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), + [sym_decltype_auto] = STATE(3260), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8822), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_DASH_GT_STAR] = ACTIONS(3108), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), }, [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), + [sym_argument_list] = STATE(6364), + [sym_initializer_list] = STATE(6372), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8372), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(2952), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_template_argument_list] = STATE(3091), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_RPAREN] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_PIPE_PIPE] = ACTIONS(6778), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(6785), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6778), + [anon_sym_BANG_EQ] = ACTIONS(6778), + [anon_sym_GT] = ACTIONS(6785), + [anon_sym_GT_EQ] = ACTIONS(6778), + [anon_sym_LT_EQ] = ACTIONS(6785), + [anon_sym_LT] = ACTIONS(8824), + [anon_sym_LT_LT] = ACTIONS(6785), + [anon_sym_GT_GT] = ACTIONS(6785), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6778), + [anon_sym_STAR_EQ] = ACTIONS(6778), + [anon_sym_SLASH_EQ] = ACTIONS(6778), + [anon_sym_PERCENT_EQ] = ACTIONS(6778), + [anon_sym_PLUS_EQ] = ACTIONS(6778), + [anon_sym_DASH_EQ] = ACTIONS(6778), + [anon_sym_LT_LT_EQ] = ACTIONS(6778), + [anon_sym_GT_GT_EQ] = ACTIONS(6778), + [anon_sym_AMP_EQ] = ACTIONS(6778), + [anon_sym_CARET_EQ] = ACTIONS(6778), + [anon_sym_PIPE_EQ] = ACTIONS(6778), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6778), + [anon_sym_or] = ACTIONS(6785), + [anon_sym_and] = ACTIONS(6785), + [anon_sym_bitor] = ACTIONS(6785), + [anon_sym_xor] = ACTIONS(6785), + [anon_sym_bitand] = ACTIONS(6785), + [anon_sym_not_eq] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(6778), + [anon_sym_PLUS_PLUS] = ACTIONS(6778), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_DOT_STAR] = ACTIONS(6778), + [anon_sym_DASH_GT] = ACTIONS(6785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_DASH_GT_STAR] = ACTIONS(6778), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, [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), + [sym_identifier] = ACTIONS(7798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7800), + [anon_sym_COMMA] = ACTIONS(7800), + [anon_sym_RPAREN] = ACTIONS(7800), + [anon_sym_LPAREN2] = ACTIONS(7800), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_PLUS] = ACTIONS(7798), + [anon_sym_STAR] = ACTIONS(7798), + [anon_sym_SLASH] = ACTIONS(7798), + [anon_sym_PERCENT] = ACTIONS(7798), + [anon_sym_PIPE_PIPE] = ACTIONS(7800), + [anon_sym_AMP_AMP] = ACTIONS(7800), + [anon_sym_PIPE] = ACTIONS(7798), + [anon_sym_CARET] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7798), + [anon_sym_EQ_EQ] = ACTIONS(7800), + [anon_sym_BANG_EQ] = ACTIONS(7800), + [anon_sym_GT] = ACTIONS(7798), + [anon_sym_GT_EQ] = ACTIONS(7800), + [anon_sym_LT_EQ] = ACTIONS(7798), + [anon_sym_LT] = ACTIONS(7798), + [anon_sym_LT_LT] = ACTIONS(7798), + [anon_sym_GT_GT] = ACTIONS(7798), + [anon_sym___extension__] = ACTIONS(7798), + [anon_sym_COLON_COLON] = ACTIONS(7800), + [anon_sym_LBRACK] = ACTIONS(7798), + [anon_sym_EQ] = ACTIONS(7798), + [anon_sym_const] = ACTIONS(7798), + [anon_sym_constexpr] = ACTIONS(7798), + [anon_sym_volatile] = ACTIONS(7798), + [anon_sym_restrict] = ACTIONS(7798), + [anon_sym___restrict__] = ACTIONS(7798), + [anon_sym__Atomic] = ACTIONS(7798), + [anon_sym__Noreturn] = ACTIONS(7798), + [anon_sym_noreturn] = ACTIONS(7798), + [anon_sym__Nonnull] = ACTIONS(7798), + [anon_sym_mutable] = ACTIONS(7798), + [anon_sym_constinit] = ACTIONS(7798), + [anon_sym_consteval] = ACTIONS(7798), + [anon_sym_alignas] = ACTIONS(7798), + [anon_sym__Alignas] = ACTIONS(7798), + [anon_sym_QMARK] = ACTIONS(7800), + [anon_sym_STAR_EQ] = ACTIONS(7800), + [anon_sym_SLASH_EQ] = ACTIONS(7800), + [anon_sym_PERCENT_EQ] = ACTIONS(7800), + [anon_sym_PLUS_EQ] = ACTIONS(7800), + [anon_sym_DASH_EQ] = ACTIONS(7800), + [anon_sym_LT_LT_EQ] = ACTIONS(7800), + [anon_sym_GT_GT_EQ] = ACTIONS(7800), + [anon_sym_AMP_EQ] = ACTIONS(7800), + [anon_sym_CARET_EQ] = ACTIONS(7800), + [anon_sym_PIPE_EQ] = ACTIONS(7800), + [anon_sym_and_eq] = ACTIONS(7798), + [anon_sym_or_eq] = ACTIONS(7798), + [anon_sym_xor_eq] = ACTIONS(7798), + [anon_sym_LT_EQ_GT] = ACTIONS(7800), + [anon_sym_or] = ACTIONS(7798), + [anon_sym_and] = ACTIONS(7798), + [anon_sym_bitor] = ACTIONS(7798), + [anon_sym_xor] = ACTIONS(7798), + [anon_sym_bitand] = ACTIONS(7798), + [anon_sym_not_eq] = ACTIONS(7798), + [anon_sym_DASH_DASH] = ACTIONS(7800), + [anon_sym_PLUS_PLUS] = ACTIONS(7800), + [anon_sym_DOT] = ACTIONS(7798), + [anon_sym_DOT_STAR] = ACTIONS(7800), + [anon_sym_DASH_GT] = ACTIONS(7798), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7798), + [anon_sym_final] = ACTIONS(7798), + [anon_sym_override] = ACTIONS(7798), + [anon_sym_template] = ACTIONS(7798), + [anon_sym_requires] = ACTIONS(7798), + [anon_sym_DASH_GT_STAR] = ACTIONS(7800), + [anon_sym_LBRACK_COLON] = ACTIONS(7800), }, [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_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym_ref_qualifier] = STATE(3086), + [sym__function_exception_specification] = STATE(3662), + [sym__function_attributes_end] = STATE(5056), + [sym__function_postfix] = STATE(6392), + [sym_trailing_return_type] = STATE(5132), + [sym_noexcept] = STATE(3662), + [sym_throw_specifier] = STATE(3662), + [sym_requires_clause] = STATE(6392), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(8828), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(8831), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7474), + [anon_sym_and] = ACTIONS(7474), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7474), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8834), [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_final] = ACTIONS(8837), + [anon_sym_override] = ACTIONS(8837), + [anon_sym_noexcept] = ACTIONS(7093), + [anon_sym_throw] = ACTIONS(7095), + [anon_sym_requires] = ACTIONS(8840), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [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__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(6728), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_parameter_declaration] = STATE(11722), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [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), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym_attribute_specifier] = STATE(3386), + [sym_identifier] = ACTIONS(7706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7708), + [anon_sym_COMMA] = ACTIONS(7708), + [anon_sym_RPAREN] = ACTIONS(7708), + [anon_sym_LPAREN2] = ACTIONS(7708), + [anon_sym_DASH] = ACTIONS(7706), + [anon_sym_PLUS] = ACTIONS(7706), + [anon_sym_STAR] = ACTIONS(7706), + [anon_sym_SLASH] = ACTIONS(7706), + [anon_sym_PERCENT] = ACTIONS(7706), + [anon_sym_PIPE_PIPE] = ACTIONS(7708), + [anon_sym_AMP_AMP] = ACTIONS(7708), + [anon_sym_PIPE] = ACTIONS(7706), + [anon_sym_CARET] = ACTIONS(7706), + [anon_sym_AMP] = ACTIONS(7706), + [anon_sym_EQ_EQ] = ACTIONS(7708), + [anon_sym_BANG_EQ] = ACTIONS(7708), + [anon_sym_GT] = ACTIONS(7706), + [anon_sym_GT_EQ] = ACTIONS(7708), + [anon_sym_LT_EQ] = ACTIONS(7706), + [anon_sym_LT] = ACTIONS(7706), + [anon_sym_LT_LT] = ACTIONS(7706), + [anon_sym_GT_GT] = ACTIONS(7706), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7708), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_EQ] = ACTIONS(7706), + [anon_sym_const] = ACTIONS(7706), + [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(7708), + [anon_sym_STAR_EQ] = ACTIONS(7708), + [anon_sym_SLASH_EQ] = ACTIONS(7708), + [anon_sym_PERCENT_EQ] = ACTIONS(7708), + [anon_sym_PLUS_EQ] = ACTIONS(7708), + [anon_sym_DASH_EQ] = ACTIONS(7708), + [anon_sym_LT_LT_EQ] = ACTIONS(7708), + [anon_sym_GT_GT_EQ] = ACTIONS(7708), + [anon_sym_AMP_EQ] = ACTIONS(7708), + [anon_sym_CARET_EQ] = ACTIONS(7708), + [anon_sym_PIPE_EQ] = ACTIONS(7708), + [anon_sym_LT_EQ_GT] = ACTIONS(7708), + [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(7708), + [anon_sym_PLUS_PLUS] = ACTIONS(7708), + [anon_sym_DOT] = ACTIONS(7706), + [anon_sym_DOT_STAR] = ACTIONS(7708), + [anon_sym_DASH_GT] = ACTIONS(7706), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7706), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_template] = ACTIONS(7706), + [anon_sym_requires] = ACTIONS(7706), + [anon_sym_DASH_GT_STAR] = ACTIONS(7708), + [anon_sym_LBRACK_COLON] = ACTIONS(7708), }, [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_type_qualifier] = STATE(2924), + [sym_alignas_qualifier] = STATE(3369), + [aux_sym__type_definition_type_repeat1] = STATE(2924), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7047), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7047), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7047), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7047), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(8843), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_EQ] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(8843), + [anon_sym_constexpr] = ACTIONS(8843), + [anon_sym_volatile] = ACTIONS(8843), + [anon_sym_restrict] = ACTIONS(8843), + [anon_sym___restrict__] = ACTIONS(8843), + [anon_sym__Atomic] = ACTIONS(8843), + [anon_sym__Noreturn] = ACTIONS(8843), + [anon_sym_noreturn] = ACTIONS(8843), + [anon_sym__Nonnull] = ACTIONS(8843), + [anon_sym_mutable] = ACTIONS(8843), + [anon_sym_constinit] = ACTIONS(8843), + [anon_sym_consteval] = ACTIONS(8843), + [anon_sym_alignas] = ACTIONS(8846), + [anon_sym__Alignas] = ACTIONS(8846), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_STAR_EQ] = ACTIONS(7049), + [anon_sym_SLASH_EQ] = ACTIONS(7049), + [anon_sym_PERCENT_EQ] = ACTIONS(7049), + [anon_sym_PLUS_EQ] = ACTIONS(7049), + [anon_sym_DASH_EQ] = ACTIONS(7049), + [anon_sym_LT_LT_EQ] = ACTIONS(7049), + [anon_sym_GT_GT_EQ] = ACTIONS(7049), + [anon_sym_AMP_EQ] = ACTIONS(7049), + [anon_sym_CARET_EQ] = ACTIONS(7049), + [anon_sym_PIPE_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7047), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_DASH_GT_STAR] = ACTIONS(7049), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), }, [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), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8849), + [anon_sym_COMMA] = ACTIONS(8849), + [anon_sym_LPAREN2] = ACTIONS(8851), + [anon_sym_TILDE] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(8854), + [anon_sym_PLUS] = ACTIONS(8854), + [anon_sym_STAR] = ACTIONS(8851), + [anon_sym_SLASH] = ACTIONS(8854), + [anon_sym_PERCENT] = ACTIONS(8849), + [anon_sym_PIPE_PIPE] = ACTIONS(8849), + [anon_sym_AMP_AMP] = ACTIONS(8851), + [anon_sym_PIPE] = ACTIONS(8854), + [anon_sym_CARET] = ACTIONS(8849), + [anon_sym_AMP] = ACTIONS(8856), + [anon_sym_EQ_EQ] = ACTIONS(8849), + [anon_sym_BANG_EQ] = ACTIONS(8849), + [anon_sym_GT] = ACTIONS(8854), + [anon_sym_GT_EQ] = ACTIONS(8849), + [anon_sym_LT_EQ] = ACTIONS(8854), + [anon_sym_LT] = ACTIONS(8854), + [anon_sym_LT_LT] = ACTIONS(8849), + [anon_sym_GT_GT] = ACTIONS(8849), + [anon_sym_SEMI] = ACTIONS(8849), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_virtual] = ACTIONS(7442), + [anon_sym_extern] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(8851), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7447), + [anon_sym___declspec] = ACTIONS(7442), + [anon_sym___based] = ACTIONS(7442), + [anon_sym_RBRACE] = ACTIONS(8849), + [anon_sym_LBRACK] = ACTIONS(8856), + [anon_sym_static] = ACTIONS(7442), + [anon_sym_register] = ACTIONS(7442), + [anon_sym_inline] = ACTIONS(7442), + [anon_sym___inline] = ACTIONS(7442), + [anon_sym___inline__] = ACTIONS(7442), + [anon_sym___forceinline] = ACTIONS(7442), + [anon_sym_thread_local] = ACTIONS(7442), + [anon_sym___thread] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(8849), + [anon_sym_LT_EQ_GT] = ACTIONS(8849), + [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(8849), + [anon_sym_PLUS_PLUS] = ACTIONS(8849), + [anon_sym_DOT] = ACTIONS(8854), + [anon_sym_DOT_STAR] = ACTIONS(8849), + [anon_sym_DASH_GT] = ACTIONS(8849), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_operator] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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_decltype_auto] = STATE(3260), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8822), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(7838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7840), + [anon_sym_COMMA] = ACTIONS(7840), + [anon_sym_RPAREN] = ACTIONS(7840), + [anon_sym_LPAREN2] = ACTIONS(7840), + [anon_sym_DASH] = ACTIONS(7838), + [anon_sym_PLUS] = ACTIONS(7838), + [anon_sym_STAR] = ACTIONS(7838), + [anon_sym_SLASH] = ACTIONS(7838), + [anon_sym_PERCENT] = ACTIONS(7838), + [anon_sym_PIPE_PIPE] = ACTIONS(7840), + [anon_sym_AMP_AMP] = ACTIONS(7840), + [anon_sym_PIPE] = ACTIONS(7838), + [anon_sym_CARET] = ACTIONS(7838), + [anon_sym_AMP] = ACTIONS(7838), + [anon_sym_EQ_EQ] = ACTIONS(7840), + [anon_sym_BANG_EQ] = ACTIONS(7840), + [anon_sym_GT] = ACTIONS(7838), + [anon_sym_GT_EQ] = ACTIONS(7840), + [anon_sym_LT_EQ] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(7838), + [anon_sym_LT_LT] = ACTIONS(7838), + [anon_sym_GT_GT] = ACTIONS(7838), + [anon_sym___extension__] = ACTIONS(7838), + [anon_sym_COLON_COLON] = ACTIONS(7840), + [anon_sym_LBRACK] = ACTIONS(7838), + [anon_sym_EQ] = ACTIONS(7838), + [anon_sym_const] = ACTIONS(7838), + [anon_sym_constexpr] = ACTIONS(7838), + [anon_sym_volatile] = ACTIONS(7838), + [anon_sym_restrict] = ACTIONS(7838), + [anon_sym___restrict__] = ACTIONS(7838), + [anon_sym__Atomic] = ACTIONS(7838), + [anon_sym__Noreturn] = ACTIONS(7838), + [anon_sym_noreturn] = ACTIONS(7838), + [anon_sym__Nonnull] = ACTIONS(7838), + [anon_sym_mutable] = ACTIONS(7838), + [anon_sym_constinit] = ACTIONS(7838), + [anon_sym_consteval] = ACTIONS(7838), + [anon_sym_alignas] = ACTIONS(7838), + [anon_sym__Alignas] = ACTIONS(7838), + [anon_sym_QMARK] = ACTIONS(7840), + [anon_sym_STAR_EQ] = ACTIONS(7840), + [anon_sym_SLASH_EQ] = ACTIONS(7840), + [anon_sym_PERCENT_EQ] = ACTIONS(7840), + [anon_sym_PLUS_EQ] = ACTIONS(7840), + [anon_sym_DASH_EQ] = ACTIONS(7840), + [anon_sym_LT_LT_EQ] = ACTIONS(7840), + [anon_sym_GT_GT_EQ] = ACTIONS(7840), + [anon_sym_AMP_EQ] = ACTIONS(7840), + [anon_sym_CARET_EQ] = ACTIONS(7840), + [anon_sym_PIPE_EQ] = ACTIONS(7840), + [anon_sym_and_eq] = ACTIONS(7838), + [anon_sym_or_eq] = ACTIONS(7838), + [anon_sym_xor_eq] = ACTIONS(7838), + [anon_sym_LT_EQ_GT] = ACTIONS(7840), + [anon_sym_or] = ACTIONS(7838), + [anon_sym_and] = ACTIONS(7838), + [anon_sym_bitor] = ACTIONS(7838), + [anon_sym_xor] = ACTIONS(7838), + [anon_sym_bitand] = ACTIONS(7838), + [anon_sym_not_eq] = ACTIONS(7838), + [anon_sym_DASH_DASH] = ACTIONS(7840), + [anon_sym_PLUS_PLUS] = ACTIONS(7840), + [anon_sym_DOT] = ACTIONS(7838), + [anon_sym_DOT_STAR] = ACTIONS(7840), + [anon_sym_DASH_GT] = ACTIONS(7838), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7838), + [anon_sym_final] = ACTIONS(7838), + [anon_sym_override] = ACTIONS(7838), + [anon_sym_template] = ACTIONS(7838), + [anon_sym_requires] = ACTIONS(7838), + [anon_sym_DASH_GT_STAR] = ACTIONS(7840), + [anon_sym_LBRACK_COLON] = ACTIONS(7840), }, [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_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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_template_argument_list] = STATE(3095), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6781), + [anon_sym_RPAREN] = ACTIONS(6781), + [aux_sym_preproc_if_token2] = ACTIONS(6781), + [aux_sym_preproc_else_token1] = ACTIONS(6781), + [aux_sym_preproc_elif_token1] = ACTIONS(6774), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6781), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6781), + [anon_sym_LPAREN2] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6774), + [anon_sym_PLUS] = ACTIONS(6774), + [anon_sym_STAR] = ACTIONS(6781), + [anon_sym_SLASH] = ACTIONS(6774), + [anon_sym_PERCENT] = ACTIONS(6781), + [anon_sym_PIPE_PIPE] = ACTIONS(6781), + [anon_sym_AMP_AMP] = ACTIONS(6781), + [anon_sym_PIPE] = ACTIONS(6774), + [anon_sym_CARET] = ACTIONS(6781), + [anon_sym_AMP] = ACTIONS(6774), + [anon_sym_EQ_EQ] = ACTIONS(6781), + [anon_sym_BANG_EQ] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(6774), + [anon_sym_GT_EQ] = ACTIONS(6781), + [anon_sym_LT_EQ] = ACTIONS(6774), + [anon_sym_LT] = ACTIONS(8859), + [anon_sym_LT_LT] = ACTIONS(6781), + [anon_sym_GT_GT] = ACTIONS(6781), + [anon_sym_SEMI] = ACTIONS(6781), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6781), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_RBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_LT_EQ_GT] = ACTIONS(6781), + [anon_sym_or] = ACTIONS(6774), + [anon_sym_and] = ACTIONS(6774), + [anon_sym_bitor] = ACTIONS(6774), + [anon_sym_xor] = ACTIONS(6774), + [anon_sym_bitand] = ACTIONS(6774), + [anon_sym_not_eq] = ACTIONS(6774), + [anon_sym_DASH_DASH] = ACTIONS(6781), + [anon_sym_PLUS_PLUS] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(6774), + [anon_sym_DOT_STAR] = ACTIONS(6781), + [anon_sym_DASH_GT] = ACTIONS(6781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_final] = ACTIONS(6774), + [anon_sym_override] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_requires] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + [anon_sym_COLON_RBRACK] = ACTIONS(6781), }, [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(2990), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_RPAREN] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_PIPE_PIPE] = ACTIONS(6778), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(6785), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6778), + [anon_sym_BANG_EQ] = ACTIONS(6778), + [anon_sym_GT] = ACTIONS(6785), + [anon_sym_GT_EQ] = ACTIONS(6778), + [anon_sym_LT_EQ] = ACTIONS(6785), + [anon_sym_LT] = ACTIONS(8824), + [anon_sym_LT_LT] = ACTIONS(6785), + [anon_sym_GT_GT] = ACTIONS(6785), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6778), + [anon_sym_STAR_EQ] = ACTIONS(6778), + [anon_sym_SLASH_EQ] = ACTIONS(6778), + [anon_sym_PERCENT_EQ] = ACTIONS(6778), + [anon_sym_PLUS_EQ] = ACTIONS(6778), + [anon_sym_DASH_EQ] = ACTIONS(6778), + [anon_sym_LT_LT_EQ] = ACTIONS(6778), + [anon_sym_GT_GT_EQ] = ACTIONS(6778), + [anon_sym_AMP_EQ] = ACTIONS(6778), + [anon_sym_CARET_EQ] = ACTIONS(6778), + [anon_sym_PIPE_EQ] = ACTIONS(6778), + [anon_sym_and_eq] = ACTIONS(6785), + [anon_sym_or_eq] = ACTIONS(6785), + [anon_sym_xor_eq] = ACTIONS(6785), + [anon_sym_LT_EQ_GT] = ACTIONS(6778), + [anon_sym_or] = ACTIONS(6785), + [anon_sym_and] = ACTIONS(6785), + [anon_sym_bitor] = ACTIONS(6785), + [anon_sym_xor] = ACTIONS(6785), + [anon_sym_bitand] = ACTIONS(6785), + [anon_sym_not_eq] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(6778), + [anon_sym_PLUS_PLUS] = ACTIONS(6778), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_DOT_STAR] = ACTIONS(6778), + [anon_sym_DASH_GT] = ACTIONS(6785), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_DASH_GT_STAR] = ACTIONS(6778), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, [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_identifier] = ACTIONS(7810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7812), + [anon_sym_COMMA] = ACTIONS(7812), + [anon_sym_RPAREN] = ACTIONS(7812), + [anon_sym_LPAREN2] = ACTIONS(7812), + [anon_sym_DASH] = ACTIONS(7810), + [anon_sym_PLUS] = ACTIONS(7810), + [anon_sym_STAR] = ACTIONS(7810), + [anon_sym_SLASH] = ACTIONS(7810), + [anon_sym_PERCENT] = ACTIONS(7810), + [anon_sym_PIPE_PIPE] = ACTIONS(7812), + [anon_sym_AMP_AMP] = ACTIONS(7812), + [anon_sym_PIPE] = ACTIONS(7810), + [anon_sym_CARET] = ACTIONS(7810), + [anon_sym_AMP] = ACTIONS(7810), + [anon_sym_EQ_EQ] = ACTIONS(7812), + [anon_sym_BANG_EQ] = ACTIONS(7812), + [anon_sym_GT] = ACTIONS(7810), + [anon_sym_GT_EQ] = ACTIONS(7812), + [anon_sym_LT_EQ] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(7810), + [anon_sym_LT_LT] = ACTIONS(7810), + [anon_sym_GT_GT] = ACTIONS(7810), + [anon_sym___extension__] = ACTIONS(7810), + [anon_sym_COLON_COLON] = ACTIONS(7812), + [anon_sym_LBRACK] = ACTIONS(7810), + [anon_sym_EQ] = ACTIONS(7810), + [anon_sym_const] = ACTIONS(7810), + [anon_sym_constexpr] = ACTIONS(7810), + [anon_sym_volatile] = ACTIONS(7810), + [anon_sym_restrict] = ACTIONS(7810), + [anon_sym___restrict__] = ACTIONS(7810), + [anon_sym__Atomic] = ACTIONS(7810), + [anon_sym__Noreturn] = ACTIONS(7810), + [anon_sym_noreturn] = ACTIONS(7810), + [anon_sym__Nonnull] = ACTIONS(7810), + [anon_sym_mutable] = ACTIONS(7810), + [anon_sym_constinit] = ACTIONS(7810), + [anon_sym_consteval] = ACTIONS(7810), + [anon_sym_alignas] = ACTIONS(7810), + [anon_sym__Alignas] = ACTIONS(7810), + [anon_sym_QMARK] = ACTIONS(7812), + [anon_sym_STAR_EQ] = ACTIONS(7812), + [anon_sym_SLASH_EQ] = ACTIONS(7812), + [anon_sym_PERCENT_EQ] = ACTIONS(7812), + [anon_sym_PLUS_EQ] = ACTIONS(7812), + [anon_sym_DASH_EQ] = ACTIONS(7812), + [anon_sym_LT_LT_EQ] = ACTIONS(7812), + [anon_sym_GT_GT_EQ] = ACTIONS(7812), + [anon_sym_AMP_EQ] = ACTIONS(7812), + [anon_sym_CARET_EQ] = ACTIONS(7812), + [anon_sym_PIPE_EQ] = ACTIONS(7812), + [anon_sym_and_eq] = ACTIONS(7810), + [anon_sym_or_eq] = ACTIONS(7810), + [anon_sym_xor_eq] = ACTIONS(7810), + [anon_sym_LT_EQ_GT] = ACTIONS(7812), + [anon_sym_or] = ACTIONS(7810), + [anon_sym_and] = ACTIONS(7810), + [anon_sym_bitor] = ACTIONS(7810), + [anon_sym_xor] = ACTIONS(7810), + [anon_sym_bitand] = ACTIONS(7810), + [anon_sym_not_eq] = ACTIONS(7810), + [anon_sym_DASH_DASH] = ACTIONS(7812), + [anon_sym_PLUS_PLUS] = ACTIONS(7812), + [anon_sym_DOT] = ACTIONS(7810), + [anon_sym_DOT_STAR] = ACTIONS(7812), + [anon_sym_DASH_GT] = ACTIONS(7810), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7810), + [anon_sym_final] = ACTIONS(7810), + [anon_sym_override] = ACTIONS(7810), + [anon_sym_template] = ACTIONS(7810), + [anon_sym_requires] = ACTIONS(7810), + [anon_sym_DASH_GT_STAR] = ACTIONS(7812), + [anon_sym_LBRACK_COLON] = ACTIONS(7812), }, [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), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7464), + [anon_sym_COMMA] = ACTIONS(7464), + [anon_sym_RPAREN] = ACTIONS(7464), + [anon_sym_LPAREN2] = ACTIONS(7464), + [anon_sym_DASH] = ACTIONS(7462), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_STAR] = ACTIONS(7462), + [anon_sym_SLASH] = ACTIONS(7462), + [anon_sym_PERCENT] = ACTIONS(7462), + [anon_sym_PIPE_PIPE] = ACTIONS(7464), + [anon_sym_AMP_AMP] = ACTIONS(7464), + [anon_sym_PIPE] = ACTIONS(7462), + [anon_sym_CARET] = ACTIONS(7462), + [anon_sym_AMP] = ACTIONS(7462), + [anon_sym_EQ_EQ] = ACTIONS(7464), + [anon_sym_BANG_EQ] = ACTIONS(7464), + [anon_sym_GT] = ACTIONS(7462), + [anon_sym_GT_EQ] = ACTIONS(7464), + [anon_sym_LT_EQ] = ACTIONS(7462), + [anon_sym_LT] = ACTIONS(7462), + [anon_sym_LT_LT] = ACTIONS(7462), + [anon_sym_GT_GT] = ACTIONS(7462), + [anon_sym___extension__] = ACTIONS(7464), + [anon_sym___attribute__] = ACTIONS(7464), + [anon_sym___attribute] = ACTIONS(7462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(7462), + [anon_sym_EQ] = ACTIONS(7462), + [anon_sym_const] = ACTIONS(7462), + [anon_sym_constexpr] = ACTIONS(7464), + [anon_sym_volatile] = ACTIONS(7464), + [anon_sym_restrict] = ACTIONS(7464), + [anon_sym___restrict__] = ACTIONS(7464), + [anon_sym__Atomic] = ACTIONS(7464), + [anon_sym__Noreturn] = ACTIONS(7464), + [anon_sym_noreturn] = ACTIONS(7464), + [anon_sym__Nonnull] = ACTIONS(7464), + [anon_sym_mutable] = ACTIONS(7464), + [anon_sym_constinit] = ACTIONS(7464), + [anon_sym_consteval] = ACTIONS(7464), + [anon_sym_alignas] = ACTIONS(7464), + [anon_sym__Alignas] = ACTIONS(7464), + [anon_sym_QMARK] = ACTIONS(7464), + [anon_sym_STAR_EQ] = ACTIONS(7464), + [anon_sym_SLASH_EQ] = ACTIONS(7464), + [anon_sym_PERCENT_EQ] = ACTIONS(7464), + [anon_sym_PLUS_EQ] = ACTIONS(7464), + [anon_sym_DASH_EQ] = ACTIONS(7464), + [anon_sym_LT_LT_EQ] = ACTIONS(7464), + [anon_sym_GT_GT_EQ] = ACTIONS(7464), + [anon_sym_AMP_EQ] = ACTIONS(7464), + [anon_sym_CARET_EQ] = ACTIONS(7464), + [anon_sym_PIPE_EQ] = ACTIONS(7464), + [anon_sym_LT_EQ_GT] = ACTIONS(7464), + [anon_sym_or] = ACTIONS(7464), + [anon_sym_and] = ACTIONS(7464), + [anon_sym_bitor] = ACTIONS(7464), + [anon_sym_xor] = ACTIONS(7464), + [anon_sym_bitand] = ACTIONS(7464), + [anon_sym_not_eq] = ACTIONS(7464), + [anon_sym_DASH_DASH] = ACTIONS(7464), + [anon_sym_PLUS_PLUS] = ACTIONS(7464), + [anon_sym_asm] = ACTIONS(7464), + [anon_sym___asm__] = ACTIONS(7464), + [anon_sym___asm] = ACTIONS(7462), + [anon_sym_DOT] = ACTIONS(7462), + [anon_sym_DOT_STAR] = ACTIONS(7464), + [anon_sym_DASH_GT] = ACTIONS(7462), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7464), + [anon_sym_override] = ACTIONS(7464), + [anon_sym_noexcept] = ACTIONS(7464), + [anon_sym_throw] = ACTIONS(7464), + [anon_sym_requires] = ACTIONS(7464), + [anon_sym_DASH_GT_STAR] = ACTIONS(7464), }, [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), + [sym_decltype_auto] = STATE(2949), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8720), + [anon_sym_decltype] = ACTIONS(7161), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_attribute_specifier] = STATE(3367), + [sym_identifier] = ACTIONS(7617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7619), + [anon_sym_COMMA] = ACTIONS(7619), + [anon_sym_RPAREN] = ACTIONS(7619), + [anon_sym_LPAREN2] = ACTIONS(7619), + [anon_sym_DASH] = ACTIONS(7617), + [anon_sym_PLUS] = ACTIONS(7617), + [anon_sym_STAR] = ACTIONS(7617), + [anon_sym_SLASH] = ACTIONS(7617), + [anon_sym_PERCENT] = ACTIONS(7617), + [anon_sym_PIPE_PIPE] = ACTIONS(7619), + [anon_sym_AMP_AMP] = ACTIONS(7619), + [anon_sym_PIPE] = ACTIONS(7617), + [anon_sym_CARET] = ACTIONS(7617), + [anon_sym_AMP] = ACTIONS(7617), + [anon_sym_EQ_EQ] = ACTIONS(7619), + [anon_sym_BANG_EQ] = ACTIONS(7619), + [anon_sym_GT] = ACTIONS(7617), + [anon_sym_GT_EQ] = ACTIONS(7619), + [anon_sym_LT_EQ] = ACTIONS(7617), + [anon_sym_LT] = ACTIONS(7617), + [anon_sym_LT_LT] = ACTIONS(7617), + [anon_sym_GT_GT] = ACTIONS(7617), + [anon_sym___extension__] = ACTIONS(7617), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7619), + [anon_sym_LBRACK] = ACTIONS(7617), + [anon_sym_EQ] = ACTIONS(7617), + [anon_sym_const] = ACTIONS(7617), + [anon_sym_constexpr] = ACTIONS(7617), + [anon_sym_volatile] = ACTIONS(7617), + [anon_sym_restrict] = ACTIONS(7617), + [anon_sym___restrict__] = ACTIONS(7617), + [anon_sym__Atomic] = ACTIONS(7617), + [anon_sym__Noreturn] = ACTIONS(7617), + [anon_sym_noreturn] = ACTIONS(7617), + [anon_sym__Nonnull] = ACTIONS(7617), + [anon_sym_mutable] = ACTIONS(7617), + [anon_sym_constinit] = ACTIONS(7617), + [anon_sym_consteval] = ACTIONS(7617), + [anon_sym_alignas] = ACTIONS(7617), + [anon_sym__Alignas] = ACTIONS(7617), + [anon_sym_QMARK] = ACTIONS(7619), + [anon_sym_STAR_EQ] = ACTIONS(7619), + [anon_sym_SLASH_EQ] = ACTIONS(7619), + [anon_sym_PERCENT_EQ] = ACTIONS(7619), + [anon_sym_PLUS_EQ] = ACTIONS(7619), + [anon_sym_DASH_EQ] = ACTIONS(7619), + [anon_sym_LT_LT_EQ] = ACTIONS(7619), + [anon_sym_GT_GT_EQ] = ACTIONS(7619), + [anon_sym_AMP_EQ] = ACTIONS(7619), + [anon_sym_CARET_EQ] = ACTIONS(7619), + [anon_sym_PIPE_EQ] = ACTIONS(7619), + [anon_sym_LT_EQ_GT] = ACTIONS(7619), + [anon_sym_or] = ACTIONS(7617), + [anon_sym_and] = ACTIONS(7617), + [anon_sym_bitor] = ACTIONS(7617), + [anon_sym_xor] = ACTIONS(7617), + [anon_sym_bitand] = ACTIONS(7617), + [anon_sym_not_eq] = ACTIONS(7617), + [anon_sym_DASH_DASH] = ACTIONS(7619), + [anon_sym_PLUS_PLUS] = ACTIONS(7619), + [anon_sym_DOT] = ACTIONS(7617), + [anon_sym_DOT_STAR] = ACTIONS(7619), + [anon_sym_DASH_GT] = ACTIONS(7617), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7617), + [anon_sym_final] = ACTIONS(7617), + [anon_sym_override] = ACTIONS(7617), + [anon_sym_template] = ACTIONS(7617), + [anon_sym_requires] = ACTIONS(7617), + [anon_sym_DASH_GT_STAR] = ACTIONS(7619), + [anon_sym_LBRACK_COLON] = ACTIONS(7619), }, [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), + [sym_identifier] = ACTIONS(7743), + [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(7743), + [anon_sym_COLON_COLON] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7743), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7743), + [anon_sym_volatile] = ACTIONS(7743), + [anon_sym_restrict] = ACTIONS(7743), + [anon_sym___restrict__] = ACTIONS(7743), + [anon_sym__Atomic] = ACTIONS(7743), + [anon_sym__Noreturn] = ACTIONS(7743), + [anon_sym_noreturn] = ACTIONS(7743), + [anon_sym__Nonnull] = ACTIONS(7743), + [anon_sym_mutable] = ACTIONS(7743), + [anon_sym_constinit] = ACTIONS(7743), + [anon_sym_consteval] = ACTIONS(7743), + [anon_sym_alignas] = ACTIONS(7743), + [anon_sym__Alignas] = ACTIONS(7743), + [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(7743), + [anon_sym_or_eq] = ACTIONS(7743), + [anon_sym_xor_eq] = ACTIONS(7743), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7743), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7743), + [anon_sym_not_eq] = ACTIONS(7743), + [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_decltype] = ACTIONS(7743), + [anon_sym_final] = ACTIONS(7743), + [anon_sym_override] = ACTIONS(7743), + [anon_sym_template] = ACTIONS(7743), + [anon_sym_requires] = ACTIONS(7743), + [anon_sym_DASH_GT_STAR] = ACTIONS(7745), + [anon_sym_LBRACK_COLON] = ACTIONS(7745), }, [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), + [sym_identifier] = ACTIONS(7751), + [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(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_restrict] = ACTIONS(7751), + [anon_sym___restrict__] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [anon_sym__Noreturn] = ACTIONS(7751), + [anon_sym_noreturn] = ACTIONS(7751), + [anon_sym__Nonnull] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [anon_sym_constinit] = ACTIONS(7751), + [anon_sym_consteval] = ACTIONS(7751), + [anon_sym_alignas] = ACTIONS(7751), + [anon_sym__Alignas] = ACTIONS(7751), + [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(7751), + [anon_sym_or_eq] = ACTIONS(7751), + [anon_sym_xor_eq] = ACTIONS(7751), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7751), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7751), + [anon_sym_not_eq] = ACTIONS(7751), + [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(7737), - [anon_sym_override] = ACTIONS(7737), - [anon_sym_GT2] = ACTIONS(7737), - [anon_sym_requires] = ACTIONS(7737), + [anon_sym_decltype] = ACTIONS(7751), + [anon_sym_final] = ACTIONS(7751), + [anon_sym_override] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_requires] = ACTIONS(7751), + [anon_sym_DASH_GT_STAR] = ACTIONS(7753), + [anon_sym_LBRACK_COLON] = ACTIONS(7753), }, [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), + [sym_attribute_specifier] = STATE(3225), + [sym_enumerator_list] = STATE(3002), + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_RPAREN] = ACTIONS(7423), + [aux_sym_preproc_if_token2] = ACTIONS(7423), + [aux_sym_preproc_else_token1] = ACTIONS(7423), + [aux_sym_preproc_elif_token1] = ACTIONS(7421), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7423), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7423), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7423), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7423), + [anon_sym_GT_GT] = ACTIONS(7423), + [anon_sym_SEMI] = ACTIONS(7423), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7421), + [anon_sym_COLON_COLON] = ACTIONS(7423), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(8790), + [anon_sym_RBRACE] = ACTIONS(7423), + [anon_sym_LBRACK] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7421), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_template] = ACTIONS(7421), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_LBRACK_COLON] = ACTIONS(7423), + [anon_sym_COLON_RBRACK] = ACTIONS(7423), }, [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), + [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(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(7759), + [anon_sym_COLON_COLON] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7759), + [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(7759), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7759), + [anon_sym_final] = ACTIONS(7759), + [anon_sym_override] = ACTIONS(7759), + [anon_sym_template] = ACTIONS(7759), + [anon_sym_requires] = ACTIONS(7759), + [anon_sym_DASH_GT_STAR] = ACTIONS(7761), + [anon_sym_LBRACK_COLON] = ACTIONS(7761), }, [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), + [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(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(7767), + [anon_sym_COLON_COLON] = ACTIONS(7769), + [anon_sym_LBRACK] = ACTIONS(7767), + [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(7767), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7767), + [anon_sym_final] = ACTIONS(7767), + [anon_sym_override] = ACTIONS(7767), + [anon_sym_template] = ACTIONS(7767), + [anon_sym_requires] = ACTIONS(7767), + [anon_sym_DASH_GT_STAR] = ACTIONS(7769), + [anon_sym_LBRACK_COLON] = ACTIONS(7769), }, [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), + [sym_identifier] = ACTIONS(7786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7788), + [anon_sym_COMMA] = ACTIONS(7788), + [anon_sym_RPAREN] = ACTIONS(7788), + [anon_sym_LPAREN2] = ACTIONS(7788), + [anon_sym_DASH] = ACTIONS(7786), + [anon_sym_PLUS] = ACTIONS(7786), + [anon_sym_STAR] = ACTIONS(7786), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_PERCENT] = ACTIONS(7786), + [anon_sym_PIPE_PIPE] = ACTIONS(7788), + [anon_sym_AMP_AMP] = ACTIONS(7788), + [anon_sym_PIPE] = ACTIONS(7786), + [anon_sym_CARET] = ACTIONS(7786), + [anon_sym_AMP] = ACTIONS(7786), + [anon_sym_EQ_EQ] = ACTIONS(7788), + [anon_sym_BANG_EQ] = ACTIONS(7788), + [anon_sym_GT] = ACTIONS(7786), + [anon_sym_GT_EQ] = ACTIONS(7788), + [anon_sym_LT_EQ] = ACTIONS(7786), + [anon_sym_LT] = ACTIONS(7786), + [anon_sym_LT_LT] = ACTIONS(7786), + [anon_sym_GT_GT] = ACTIONS(7786), + [anon_sym___extension__] = ACTIONS(7786), + [anon_sym_COLON_COLON] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7786), + [anon_sym_EQ] = ACTIONS(7786), + [anon_sym_const] = ACTIONS(7786), + [anon_sym_constexpr] = ACTIONS(7786), + [anon_sym_volatile] = ACTIONS(7786), + [anon_sym_restrict] = ACTIONS(7786), + [anon_sym___restrict__] = ACTIONS(7786), + [anon_sym__Atomic] = ACTIONS(7786), + [anon_sym__Noreturn] = ACTIONS(7786), + [anon_sym_noreturn] = ACTIONS(7786), + [anon_sym__Nonnull] = ACTIONS(7786), + [anon_sym_mutable] = ACTIONS(7786), + [anon_sym_constinit] = ACTIONS(7786), + [anon_sym_consteval] = ACTIONS(7786), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7788), + [anon_sym_STAR_EQ] = ACTIONS(7788), + [anon_sym_SLASH_EQ] = ACTIONS(7788), + [anon_sym_PERCENT_EQ] = ACTIONS(7788), + [anon_sym_PLUS_EQ] = ACTIONS(7788), + [anon_sym_DASH_EQ] = ACTIONS(7788), + [anon_sym_LT_LT_EQ] = ACTIONS(7788), + [anon_sym_GT_GT_EQ] = ACTIONS(7788), + [anon_sym_AMP_EQ] = ACTIONS(7788), + [anon_sym_CARET_EQ] = ACTIONS(7788), + [anon_sym_PIPE_EQ] = ACTIONS(7788), + [anon_sym_and_eq] = ACTIONS(7786), + [anon_sym_or_eq] = ACTIONS(7786), + [anon_sym_xor_eq] = ACTIONS(7786), + [anon_sym_LT_EQ_GT] = ACTIONS(7788), + [anon_sym_or] = ACTIONS(7786), + [anon_sym_and] = ACTIONS(7786), + [anon_sym_bitor] = ACTIONS(7786), + [anon_sym_xor] = ACTIONS(7786), + [anon_sym_bitand] = ACTIONS(7786), + [anon_sym_not_eq] = ACTIONS(7786), + [anon_sym_DASH_DASH] = ACTIONS(7788), + [anon_sym_PLUS_PLUS] = ACTIONS(7788), + [anon_sym_DOT] = ACTIONS(7786), + [anon_sym_DOT_STAR] = ACTIONS(7788), + [anon_sym_DASH_GT] = ACTIONS(7786), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7786), + [anon_sym_final] = ACTIONS(7786), + [anon_sym_override] = ACTIONS(7786), + [anon_sym_template] = ACTIONS(7786), + [anon_sym_requires] = ACTIONS(7786), + [anon_sym_DASH_GT_STAR] = ACTIONS(7788), + [anon_sym_LBRACK_COLON] = ACTIONS(7788), }, [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_identifier] = ACTIONS(7806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7808), + [anon_sym_COMMA] = ACTIONS(7808), + [anon_sym_RPAREN] = ACTIONS(7808), + [anon_sym_LPAREN2] = ACTIONS(7808), + [anon_sym_DASH] = ACTIONS(7806), + [anon_sym_PLUS] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7806), + [anon_sym_SLASH] = ACTIONS(7806), + [anon_sym_PERCENT] = ACTIONS(7806), + [anon_sym_PIPE_PIPE] = ACTIONS(7808), + [anon_sym_AMP_AMP] = ACTIONS(7808), + [anon_sym_PIPE] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7806), + [anon_sym_AMP] = ACTIONS(7806), + [anon_sym_EQ_EQ] = ACTIONS(7808), + [anon_sym_BANG_EQ] = ACTIONS(7808), + [anon_sym_GT] = ACTIONS(7806), + [anon_sym_GT_EQ] = ACTIONS(7808), + [anon_sym_LT_EQ] = ACTIONS(7806), + [anon_sym_LT] = ACTIONS(7806), + [anon_sym_LT_LT] = ACTIONS(7806), + [anon_sym_GT_GT] = ACTIONS(7806), + [anon_sym___extension__] = ACTIONS(7806), + [anon_sym_COLON_COLON] = ACTIONS(7808), + [anon_sym_LBRACK] = ACTIONS(7806), + [anon_sym_EQ] = ACTIONS(7806), + [anon_sym_const] = ACTIONS(7806), + [anon_sym_constexpr] = ACTIONS(7806), + [anon_sym_volatile] = ACTIONS(7806), + [anon_sym_restrict] = ACTIONS(7806), + [anon_sym___restrict__] = ACTIONS(7806), + [anon_sym__Atomic] = ACTIONS(7806), + [anon_sym__Noreturn] = ACTIONS(7806), + [anon_sym_noreturn] = ACTIONS(7806), + [anon_sym__Nonnull] = ACTIONS(7806), + [anon_sym_mutable] = ACTIONS(7806), + [anon_sym_constinit] = ACTIONS(7806), + [anon_sym_consteval] = ACTIONS(7806), + [anon_sym_alignas] = ACTIONS(7806), + [anon_sym__Alignas] = ACTIONS(7806), + [anon_sym_QMARK] = ACTIONS(7808), + [anon_sym_STAR_EQ] = ACTIONS(7808), + [anon_sym_SLASH_EQ] = ACTIONS(7808), + [anon_sym_PERCENT_EQ] = ACTIONS(7808), + [anon_sym_PLUS_EQ] = ACTIONS(7808), + [anon_sym_DASH_EQ] = ACTIONS(7808), + [anon_sym_LT_LT_EQ] = ACTIONS(7808), + [anon_sym_GT_GT_EQ] = ACTIONS(7808), + [anon_sym_AMP_EQ] = ACTIONS(7808), + [anon_sym_CARET_EQ] = ACTIONS(7808), + [anon_sym_PIPE_EQ] = ACTIONS(7808), + [anon_sym_and_eq] = ACTIONS(7806), + [anon_sym_or_eq] = ACTIONS(7806), + [anon_sym_xor_eq] = ACTIONS(7806), + [anon_sym_LT_EQ_GT] = ACTIONS(7808), + [anon_sym_or] = ACTIONS(7806), + [anon_sym_and] = ACTIONS(7806), + [anon_sym_bitor] = ACTIONS(7806), + [anon_sym_xor] = ACTIONS(7806), + [anon_sym_bitand] = ACTIONS(7806), + [anon_sym_not_eq] = ACTIONS(7806), + [anon_sym_DASH_DASH] = ACTIONS(7808), + [anon_sym_PLUS_PLUS] = ACTIONS(7808), + [anon_sym_DOT] = ACTIONS(7806), + [anon_sym_DOT_STAR] = ACTIONS(7808), + [anon_sym_DASH_GT] = ACTIONS(7806), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7806), + [anon_sym_final] = ACTIONS(7806), + [anon_sym_override] = ACTIONS(7806), + [anon_sym_template] = ACTIONS(7806), + [anon_sym_requires] = ACTIONS(7806), + [anon_sym_DASH_GT_STAR] = ACTIONS(7808), + [anon_sym_LBRACK_COLON] = ACTIONS(7808), }, [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_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7718), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_DASH_GT_STAR] = ACTIONS(7720), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), }, [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_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym_ref_qualifier] = STATE(3021), + [sym__function_exception_specification] = STATE(3568), + [sym__function_attributes_end] = STATE(5049), + [sym__function_postfix] = STATE(6392), + [sym_trailing_return_type] = STATE(5135), + [sym_noexcept] = STATE(3568), + [sym_throw_specifier] = STATE(3568), + [sym_requires_clause] = STATE(6392), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(8828), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(8831), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7474), + [anon_sym_and] = ACTIONS(7474), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7474), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8834), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_noexcept] = ACTIONS(7093), + [anon_sym_throw] = ACTIONS(7095), + [anon_sym_requires] = ACTIONS(7117), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [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_attribute_specifier] = STATE(3151), + [sym_enumerator_list] = STATE(3081), + [sym_identifier] = ACTIONS(7417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7419), + [anon_sym_COMMA] = ACTIONS(7419), + [anon_sym_RPAREN] = ACTIONS(7419), + [aux_sym_preproc_if_token2] = ACTIONS(7419), + [aux_sym_preproc_else_token1] = ACTIONS(7419), + [aux_sym_preproc_elif_token1] = ACTIONS(7417), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7419), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7419), + [anon_sym_LPAREN2] = ACTIONS(7419), + [anon_sym_DASH] = ACTIONS(7417), + [anon_sym_PLUS] = ACTIONS(7417), + [anon_sym_STAR] = ACTIONS(7419), + [anon_sym_SLASH] = ACTIONS(7417), + [anon_sym_PERCENT] = ACTIONS(7419), + [anon_sym_PIPE_PIPE] = ACTIONS(7419), + [anon_sym_AMP_AMP] = ACTIONS(7419), + [anon_sym_PIPE] = ACTIONS(7417), + [anon_sym_CARET] = ACTIONS(7419), + [anon_sym_AMP] = ACTIONS(7417), + [anon_sym_EQ_EQ] = ACTIONS(7419), + [anon_sym_BANG_EQ] = ACTIONS(7419), + [anon_sym_GT] = ACTIONS(7417), + [anon_sym_GT_EQ] = ACTIONS(7419), + [anon_sym_LT_EQ] = ACTIONS(7417), + [anon_sym_LT] = ACTIONS(7417), + [anon_sym_LT_LT] = ACTIONS(7419), + [anon_sym_GT_GT] = ACTIONS(7419), + [anon_sym_SEMI] = ACTIONS(7419), + [anon_sym___extension__] = ACTIONS(7417), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7417), + [anon_sym_COLON_COLON] = ACTIONS(7419), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7419), + [anon_sym_LBRACE] = ACTIONS(8790), + [anon_sym_RBRACE] = ACTIONS(7419), + [anon_sym_LBRACK] = ACTIONS(7417), + [anon_sym_const] = ACTIONS(7417), + [anon_sym_constexpr] = ACTIONS(7417), + [anon_sym_volatile] = ACTIONS(7417), + [anon_sym_restrict] = ACTIONS(7417), + [anon_sym___restrict__] = ACTIONS(7417), + [anon_sym__Atomic] = ACTIONS(7417), + [anon_sym__Noreturn] = ACTIONS(7417), + [anon_sym_noreturn] = ACTIONS(7417), + [anon_sym__Nonnull] = ACTIONS(7417), + [anon_sym_mutable] = ACTIONS(7417), + [anon_sym_constinit] = ACTIONS(7417), + [anon_sym_consteval] = ACTIONS(7417), + [anon_sym_alignas] = ACTIONS(7417), + [anon_sym__Alignas] = ACTIONS(7417), + [anon_sym_QMARK] = ACTIONS(7419), + [anon_sym_LT_EQ_GT] = ACTIONS(7419), + [anon_sym_or] = ACTIONS(7417), + [anon_sym_and] = ACTIONS(7417), + [anon_sym_bitor] = ACTIONS(7417), + [anon_sym_xor] = ACTIONS(7417), + [anon_sym_bitand] = ACTIONS(7417), + [anon_sym_not_eq] = ACTIONS(7417), + [anon_sym_DASH_DASH] = ACTIONS(7419), + [anon_sym_PLUS_PLUS] = ACTIONS(7419), + [anon_sym_DOT] = ACTIONS(7417), + [anon_sym_DOT_STAR] = ACTIONS(7419), + [anon_sym_DASH_GT] = ACTIONS(7419), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7417), + [anon_sym_final] = ACTIONS(7417), + [anon_sym_override] = ACTIONS(7417), + [anon_sym_template] = ACTIONS(7417), + [anon_sym_requires] = ACTIONS(7417), + [anon_sym_LBRACK_COLON] = ACTIONS(7419), + [anon_sym_COLON_RBRACK] = ACTIONS(7419), }, [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_attribute_specifier] = STATE(3387), + [sym_identifier] = ACTIONS(7570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7572), + [anon_sym_COMMA] = ACTIONS(7572), + [anon_sym_RPAREN] = ACTIONS(7572), + [anon_sym_LPAREN2] = ACTIONS(7572), + [anon_sym_DASH] = ACTIONS(7570), + [anon_sym_PLUS] = ACTIONS(7570), + [anon_sym_STAR] = ACTIONS(7570), + [anon_sym_SLASH] = ACTIONS(7570), + [anon_sym_PERCENT] = ACTIONS(7570), + [anon_sym_PIPE_PIPE] = ACTIONS(7572), + [anon_sym_AMP_AMP] = ACTIONS(7572), + [anon_sym_PIPE] = ACTIONS(7570), + [anon_sym_CARET] = ACTIONS(7570), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7572), + [anon_sym_BANG_EQ] = ACTIONS(7572), + [anon_sym_GT] = ACTIONS(7570), + [anon_sym_GT_EQ] = ACTIONS(7572), + [anon_sym_LT_EQ] = ACTIONS(7570), + [anon_sym_LT] = ACTIONS(7570), + [anon_sym_LT_LT] = ACTIONS(7570), + [anon_sym_GT_GT] = ACTIONS(7570), + [anon_sym___extension__] = ACTIONS(7570), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7572), + [anon_sym_LBRACK] = ACTIONS(7570), + [anon_sym_EQ] = ACTIONS(7570), + [anon_sym_const] = ACTIONS(7570), + [anon_sym_constexpr] = ACTIONS(7570), + [anon_sym_volatile] = ACTIONS(7570), + [anon_sym_restrict] = ACTIONS(7570), + [anon_sym___restrict__] = ACTIONS(7570), + [anon_sym__Atomic] = ACTIONS(7570), + [anon_sym__Noreturn] = ACTIONS(7570), + [anon_sym_noreturn] = ACTIONS(7570), + [anon_sym__Nonnull] = ACTIONS(7570), + [anon_sym_mutable] = ACTIONS(7570), + [anon_sym_constinit] = ACTIONS(7570), + [anon_sym_consteval] = ACTIONS(7570), + [anon_sym_alignas] = ACTIONS(7570), + [anon_sym__Alignas] = ACTIONS(7570), + [anon_sym_QMARK] = ACTIONS(7572), + [anon_sym_STAR_EQ] = ACTIONS(7572), + [anon_sym_SLASH_EQ] = ACTIONS(7572), + [anon_sym_PERCENT_EQ] = ACTIONS(7572), + [anon_sym_PLUS_EQ] = ACTIONS(7572), + [anon_sym_DASH_EQ] = ACTIONS(7572), + [anon_sym_LT_LT_EQ] = ACTIONS(7572), + [anon_sym_GT_GT_EQ] = ACTIONS(7572), + [anon_sym_AMP_EQ] = ACTIONS(7572), + [anon_sym_CARET_EQ] = ACTIONS(7572), + [anon_sym_PIPE_EQ] = ACTIONS(7572), + [anon_sym_LT_EQ_GT] = ACTIONS(7572), + [anon_sym_or] = ACTIONS(7570), + [anon_sym_and] = ACTIONS(7570), + [anon_sym_bitor] = ACTIONS(7570), + [anon_sym_xor] = ACTIONS(7570), + [anon_sym_bitand] = ACTIONS(7570), + [anon_sym_not_eq] = ACTIONS(7570), + [anon_sym_DASH_DASH] = ACTIONS(7572), + [anon_sym_PLUS_PLUS] = ACTIONS(7572), + [anon_sym_DOT] = ACTIONS(7570), + [anon_sym_DOT_STAR] = ACTIONS(7572), + [anon_sym_DASH_GT] = ACTIONS(7570), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7570), + [anon_sym_final] = ACTIONS(7570), + [anon_sym_override] = ACTIONS(7570), + [anon_sym_template] = ACTIONS(7570), + [anon_sym_requires] = ACTIONS(7570), + [anon_sym_DASH_GT_STAR] = ACTIONS(7572), + [anon_sym_LBRACK_COLON] = ACTIONS(7572), }, [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), - }, - [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_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(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(7779), + [anon_sym_COLON_COLON] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7779), + [anon_sym_EQ] = ACTIONS(7779), + [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), + [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(7779), + [anon_sym_or_eq] = ACTIONS(7779), + [anon_sym_xor_eq] = ACTIONS(7779), + [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(7779), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7779), + [anon_sym_final] = ACTIONS(7779), + [anon_sym_override] = ACTIONS(7779), + [anon_sym_template] = ACTIONS(7779), + [anon_sym_requires] = ACTIONS(7779), + [anon_sym_DASH_GT_STAR] = ACTIONS(7781), + [anon_sym_LBRACK_COLON] = ACTIONS(7781), + }, + [STATE(2948)] = { + [sym_identifier] = ACTIONS(7814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7816), + [anon_sym_COMMA] = ACTIONS(7816), + [anon_sym_RPAREN] = ACTIONS(7816), + [anon_sym_LPAREN2] = ACTIONS(7816), + [anon_sym_DASH] = ACTIONS(7814), + [anon_sym_PLUS] = ACTIONS(7814), + [anon_sym_STAR] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7814), + [anon_sym_PERCENT] = ACTIONS(7814), + [anon_sym_PIPE_PIPE] = ACTIONS(7816), + [anon_sym_AMP_AMP] = ACTIONS(7816), + [anon_sym_PIPE] = ACTIONS(7814), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_AMP] = ACTIONS(7814), + [anon_sym_EQ_EQ] = ACTIONS(7816), + [anon_sym_BANG_EQ] = ACTIONS(7816), + [anon_sym_GT] = ACTIONS(7814), + [anon_sym_GT_EQ] = ACTIONS(7816), + [anon_sym_LT_EQ] = ACTIONS(7814), + [anon_sym_LT] = ACTIONS(7814), + [anon_sym_LT_LT] = ACTIONS(7814), + [anon_sym_GT_GT] = ACTIONS(7814), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym_COLON_COLON] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(7814), + [anon_sym_EQ] = ACTIONS(7814), + [anon_sym_const] = ACTIONS(7814), + [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(7814), + [anon_sym__Alignas] = ACTIONS(7814), + [anon_sym_QMARK] = ACTIONS(7816), + [anon_sym_STAR_EQ] = ACTIONS(7816), + [anon_sym_SLASH_EQ] = ACTIONS(7816), + [anon_sym_PERCENT_EQ] = ACTIONS(7816), + [anon_sym_PLUS_EQ] = ACTIONS(7816), + [anon_sym_DASH_EQ] = ACTIONS(7816), + [anon_sym_LT_LT_EQ] = ACTIONS(7816), + [anon_sym_GT_GT_EQ] = ACTIONS(7816), + [anon_sym_AMP_EQ] = ACTIONS(7816), + [anon_sym_CARET_EQ] = ACTIONS(7816), + [anon_sym_PIPE_EQ] = ACTIONS(7816), + [anon_sym_and_eq] = ACTIONS(7814), + [anon_sym_or_eq] = ACTIONS(7814), + [anon_sym_xor_eq] = ACTIONS(7814), + [anon_sym_LT_EQ_GT] = ACTIONS(7816), + [anon_sym_or] = ACTIONS(7814), + [anon_sym_and] = ACTIONS(7814), + [anon_sym_bitor] = ACTIONS(7814), + [anon_sym_xor] = ACTIONS(7814), + [anon_sym_bitand] = ACTIONS(7814), + [anon_sym_not_eq] = ACTIONS(7814), + [anon_sym_DASH_DASH] = ACTIONS(7816), + [anon_sym_PLUS_PLUS] = ACTIONS(7816), + [anon_sym_DOT] = ACTIONS(7814), + [anon_sym_DOT_STAR] = ACTIONS(7816), + [anon_sym_DASH_GT] = ACTIONS(7814), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7814), + [anon_sym_final] = ACTIONS(7814), + [anon_sym_override] = ACTIONS(7814), + [anon_sym_template] = ACTIONS(7814), + [anon_sym_requires] = ACTIONS(7814), + [anon_sym_DASH_GT_STAR] = ACTIONS(7816), + [anon_sym_LBRACK_COLON] = ACTIONS(7816), + }, [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_identifier] = ACTIONS(7850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7852), + [anon_sym_COMMA] = ACTIONS(7852), + [anon_sym_RPAREN] = ACTIONS(7852), + [anon_sym_LPAREN2] = ACTIONS(7852), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_PLUS] = ACTIONS(7850), + [anon_sym_STAR] = ACTIONS(7850), + [anon_sym_SLASH] = ACTIONS(7850), + [anon_sym_PERCENT] = ACTIONS(7850), + [anon_sym_PIPE_PIPE] = ACTIONS(7852), + [anon_sym_AMP_AMP] = ACTIONS(7852), + [anon_sym_PIPE] = ACTIONS(7850), + [anon_sym_CARET] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7850), + [anon_sym_EQ_EQ] = ACTIONS(7852), + [anon_sym_BANG_EQ] = ACTIONS(7852), + [anon_sym_GT] = ACTIONS(7850), + [anon_sym_GT_EQ] = ACTIONS(7852), + [anon_sym_LT_EQ] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(7850), + [anon_sym_LT_LT] = ACTIONS(7850), + [anon_sym_GT_GT] = ACTIONS(7850), + [anon_sym___extension__] = ACTIONS(7850), + [anon_sym_COLON_COLON] = ACTIONS(7852), + [anon_sym_LBRACK] = ACTIONS(7850), + [anon_sym_EQ] = ACTIONS(7850), + [anon_sym_const] = ACTIONS(7850), + [anon_sym_constexpr] = ACTIONS(7850), + [anon_sym_volatile] = ACTIONS(7850), + [anon_sym_restrict] = ACTIONS(7850), + [anon_sym___restrict__] = ACTIONS(7850), + [anon_sym__Atomic] = ACTIONS(7850), + [anon_sym__Noreturn] = ACTIONS(7850), + [anon_sym_noreturn] = ACTIONS(7850), + [anon_sym__Nonnull] = ACTIONS(7850), + [anon_sym_mutable] = ACTIONS(7850), + [anon_sym_constinit] = ACTIONS(7850), + [anon_sym_consteval] = ACTIONS(7850), + [anon_sym_alignas] = ACTIONS(7850), + [anon_sym__Alignas] = ACTIONS(7850), + [anon_sym_QMARK] = ACTIONS(7852), + [anon_sym_STAR_EQ] = ACTIONS(7852), + [anon_sym_SLASH_EQ] = ACTIONS(7852), + [anon_sym_PERCENT_EQ] = ACTIONS(7852), + [anon_sym_PLUS_EQ] = ACTIONS(7852), + [anon_sym_DASH_EQ] = ACTIONS(7852), + [anon_sym_LT_LT_EQ] = ACTIONS(7852), + [anon_sym_GT_GT_EQ] = ACTIONS(7852), + [anon_sym_AMP_EQ] = ACTIONS(7852), + [anon_sym_CARET_EQ] = ACTIONS(7852), + [anon_sym_PIPE_EQ] = ACTIONS(7852), + [anon_sym_and_eq] = ACTIONS(7850), + [anon_sym_or_eq] = ACTIONS(7850), + [anon_sym_xor_eq] = ACTIONS(7850), + [anon_sym_LT_EQ_GT] = ACTIONS(7852), + [anon_sym_or] = ACTIONS(7850), + [anon_sym_and] = ACTIONS(7850), + [anon_sym_bitor] = ACTIONS(7850), + [anon_sym_xor] = ACTIONS(7850), + [anon_sym_bitand] = ACTIONS(7850), + [anon_sym_not_eq] = ACTIONS(7850), + [anon_sym_DASH_DASH] = ACTIONS(7852), + [anon_sym_PLUS_PLUS] = ACTIONS(7852), + [anon_sym_DOT] = ACTIONS(7850), + [anon_sym_DOT_STAR] = ACTIONS(7852), + [anon_sym_DASH_GT] = ACTIONS(7850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7850), + [anon_sym_final] = ACTIONS(7850), + [anon_sym_override] = ACTIONS(7850), + [anon_sym_template] = ACTIONS(7850), + [anon_sym_requires] = ACTIONS(7850), + [anon_sym_DASH_GT_STAR] = ACTIONS(7852), + [anon_sym_LBRACK_COLON] = ACTIONS(7852), }, [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_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(3108), }, [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_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(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(7755), + [anon_sym_COLON_COLON] = ACTIONS(7757), + [anon_sym_LBRACK] = ACTIONS(7755), + [anon_sym_EQ] = ACTIONS(7755), + [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_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(7755), + [anon_sym_or_eq] = ACTIONS(7755), + [anon_sym_xor_eq] = ACTIONS(7755), + [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(7755), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7755), + [anon_sym_final] = ACTIONS(7755), + [anon_sym_override] = ACTIONS(7755), + [anon_sym_template] = ACTIONS(7755), + [anon_sym_requires] = ACTIONS(7755), + [anon_sym_DASH_GT_STAR] = ACTIONS(7757), + [anon_sym_LBRACK_COLON] = ACTIONS(7757), }, [STATE(2952)] = { + [sym__abstract_declarator] = STATE(5425), + [sym_abstract_parenthesized_declarator] = STATE(3981), + [sym_abstract_pointer_declarator] = STATE(3981), + [sym_abstract_function_declarator] = STATE(3981), + [sym_abstract_array_declarator] = STATE(3981), + [sym_parameter_list] = STATE(2074), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(3981), + [sym__function_declarator_seq] = STATE(3982), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9605), + [sym_abstract_qualified_identifier] = STATE(3981), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6722), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6724), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6726), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_SEMI] = ACTIONS(7862), + [anon_sym___attribute__] = ACTIONS(7864), + [anon_sym___attribute] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6728), + [anon_sym_LBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7862), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_and_eq] = ACTIONS(7864), + [anon_sym_or_eq] = ACTIONS(7864), + [anon_sym_xor_eq] = ACTIONS(7864), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7862), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(2953)] = { + [sym_identifier] = ACTIONS(7834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_RPAREN] = ACTIONS(7836), + [anon_sym_LPAREN2] = ACTIONS(7836), + [anon_sym_DASH] = ACTIONS(7834), + [anon_sym_PLUS] = ACTIONS(7834), + [anon_sym_STAR] = ACTIONS(7834), + [anon_sym_SLASH] = ACTIONS(7834), + [anon_sym_PERCENT] = ACTIONS(7834), + [anon_sym_PIPE_PIPE] = ACTIONS(7836), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_PIPE] = ACTIONS(7834), + [anon_sym_CARET] = ACTIONS(7834), + [anon_sym_AMP] = ACTIONS(7834), + [anon_sym_EQ_EQ] = ACTIONS(7836), + [anon_sym_BANG_EQ] = ACTIONS(7836), + [anon_sym_GT] = ACTIONS(7834), + [anon_sym_GT_EQ] = ACTIONS(7836), + [anon_sym_LT_EQ] = ACTIONS(7834), + [anon_sym_LT] = ACTIONS(7834), + [anon_sym_LT_LT] = ACTIONS(7834), + [anon_sym_GT_GT] = ACTIONS(7834), + [anon_sym___extension__] = ACTIONS(7834), + [anon_sym_COLON_COLON] = ACTIONS(7836), + [anon_sym_LBRACK] = ACTIONS(7834), + [anon_sym_EQ] = ACTIONS(7834), + [anon_sym_const] = ACTIONS(7834), + [anon_sym_constexpr] = ACTIONS(7834), + [anon_sym_volatile] = ACTIONS(7834), + [anon_sym_restrict] = ACTIONS(7834), + [anon_sym___restrict__] = ACTIONS(7834), + [anon_sym__Atomic] = ACTIONS(7834), + [anon_sym__Noreturn] = ACTIONS(7834), + [anon_sym_noreturn] = ACTIONS(7834), + [anon_sym__Nonnull] = ACTIONS(7834), + [anon_sym_mutable] = ACTIONS(7834), + [anon_sym_constinit] = ACTIONS(7834), + [anon_sym_consteval] = ACTIONS(7834), + [anon_sym_alignas] = ACTIONS(7834), + [anon_sym__Alignas] = ACTIONS(7834), + [anon_sym_QMARK] = ACTIONS(7836), + [anon_sym_STAR_EQ] = ACTIONS(7836), + [anon_sym_SLASH_EQ] = ACTIONS(7836), + [anon_sym_PERCENT_EQ] = ACTIONS(7836), + [anon_sym_PLUS_EQ] = ACTIONS(7836), + [anon_sym_DASH_EQ] = ACTIONS(7836), + [anon_sym_LT_LT_EQ] = ACTIONS(7836), + [anon_sym_GT_GT_EQ] = ACTIONS(7836), + [anon_sym_AMP_EQ] = ACTIONS(7836), + [anon_sym_CARET_EQ] = ACTIONS(7836), + [anon_sym_PIPE_EQ] = ACTIONS(7836), + [anon_sym_and_eq] = ACTIONS(7834), + [anon_sym_or_eq] = ACTIONS(7834), + [anon_sym_xor_eq] = ACTIONS(7834), + [anon_sym_LT_EQ_GT] = ACTIONS(7836), + [anon_sym_or] = ACTIONS(7834), + [anon_sym_and] = ACTIONS(7834), + [anon_sym_bitor] = ACTIONS(7834), + [anon_sym_xor] = ACTIONS(7834), + [anon_sym_bitand] = ACTIONS(7834), + [anon_sym_not_eq] = ACTIONS(7834), + [anon_sym_DASH_DASH] = ACTIONS(7836), + [anon_sym_PLUS_PLUS] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7834), + [anon_sym_DOT_STAR] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(7834), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7834), + [anon_sym_final] = ACTIONS(7834), + [anon_sym_override] = ACTIONS(7834), + [anon_sym_template] = ACTIONS(7834), + [anon_sym_requires] = ACTIONS(7834), + [anon_sym_DASH_GT_STAR] = ACTIONS(7836), + [anon_sym_LBRACK_COLON] = ACTIONS(7836), + }, + [STATE(2954)] = { + [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___attribute__] = ACTIONS(7551), + [anon_sym___attribute] = ACTIONS(7549), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7551), + [anon_sym_LBRACK] = ACTIONS(7549), + [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_asm] = ACTIONS(7551), + [anon_sym___asm__] = ACTIONS(7551), + [anon_sym___asm] = ACTIONS(7549), + [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_noexcept] = ACTIONS(7551), + [anon_sym_throw] = ACTIONS(7551), + [anon_sym_requires] = ACTIONS(7551), + [anon_sym_DASH_GT_STAR] = ACTIONS(7551), + }, + [STATE(2955)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + }, + [STATE(2956)] = { + [sym_identifier] = ACTIONS(7491), + [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(7491), + [anon_sym_COLON_COLON] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [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(7491), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7491), + [anon_sym_final] = ACTIONS(7491), + [anon_sym_override] = ACTIONS(7491), + [anon_sym_template] = ACTIONS(7491), + [anon_sym_requires] = ACTIONS(7491), + [anon_sym_DASH_GT_STAR] = ACTIONS(7493), + [anon_sym_LBRACK_COLON] = ACTIONS(7493), + }, + [STATE(2957)] = { + [sym_identifier] = ACTIONS(7822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7824), + [anon_sym_COMMA] = ACTIONS(7824), + [anon_sym_RPAREN] = ACTIONS(7824), + [anon_sym_LPAREN2] = ACTIONS(7824), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_PLUS] = ACTIONS(7822), + [anon_sym_STAR] = ACTIONS(7822), + [anon_sym_SLASH] = ACTIONS(7822), + [anon_sym_PERCENT] = ACTIONS(7822), + [anon_sym_PIPE_PIPE] = ACTIONS(7824), + [anon_sym_AMP_AMP] = ACTIONS(7824), + [anon_sym_PIPE] = ACTIONS(7822), + [anon_sym_CARET] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7822), + [anon_sym_EQ_EQ] = ACTIONS(7824), + [anon_sym_BANG_EQ] = ACTIONS(7824), + [anon_sym_GT] = ACTIONS(7822), + [anon_sym_GT_EQ] = ACTIONS(7824), + [anon_sym_LT_EQ] = ACTIONS(7822), + [anon_sym_LT] = ACTIONS(7822), + [anon_sym_LT_LT] = ACTIONS(7822), + [anon_sym_GT_GT] = ACTIONS(7822), + [anon_sym___extension__] = ACTIONS(7822), + [anon_sym_COLON_COLON] = ACTIONS(7824), + [anon_sym_LBRACK] = ACTIONS(7822), + [anon_sym_EQ] = ACTIONS(7822), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7822), + [anon_sym_volatile] = ACTIONS(7822), + [anon_sym_restrict] = ACTIONS(7822), + [anon_sym___restrict__] = ACTIONS(7822), + [anon_sym__Atomic] = ACTIONS(7822), + [anon_sym__Noreturn] = ACTIONS(7822), + [anon_sym_noreturn] = ACTIONS(7822), + [anon_sym__Nonnull] = ACTIONS(7822), + [anon_sym_mutable] = ACTIONS(7822), + [anon_sym_constinit] = ACTIONS(7822), + [anon_sym_consteval] = ACTIONS(7822), + [anon_sym_alignas] = ACTIONS(7822), + [anon_sym__Alignas] = ACTIONS(7822), + [anon_sym_QMARK] = ACTIONS(7824), + [anon_sym_STAR_EQ] = ACTIONS(7824), + [anon_sym_SLASH_EQ] = ACTIONS(7824), + [anon_sym_PERCENT_EQ] = ACTIONS(7824), + [anon_sym_PLUS_EQ] = ACTIONS(7824), + [anon_sym_DASH_EQ] = ACTIONS(7824), + [anon_sym_LT_LT_EQ] = ACTIONS(7824), + [anon_sym_GT_GT_EQ] = ACTIONS(7824), + [anon_sym_AMP_EQ] = ACTIONS(7824), + [anon_sym_CARET_EQ] = ACTIONS(7824), + [anon_sym_PIPE_EQ] = ACTIONS(7824), + [anon_sym_and_eq] = ACTIONS(7822), + [anon_sym_or_eq] = ACTIONS(7822), + [anon_sym_xor_eq] = ACTIONS(7822), + [anon_sym_LT_EQ_GT] = ACTIONS(7824), + [anon_sym_or] = ACTIONS(7822), + [anon_sym_and] = ACTIONS(7822), + [anon_sym_bitor] = ACTIONS(7822), + [anon_sym_xor] = ACTIONS(7822), + [anon_sym_bitand] = ACTIONS(7822), + [anon_sym_not_eq] = ACTIONS(7822), + [anon_sym_DASH_DASH] = ACTIONS(7824), + [anon_sym_PLUS_PLUS] = ACTIONS(7824), + [anon_sym_DOT] = ACTIONS(7822), + [anon_sym_DOT_STAR] = ACTIONS(7824), + [anon_sym_DASH_GT] = ACTIONS(7822), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7822), + [anon_sym_final] = ACTIONS(7822), + [anon_sym_override] = ACTIONS(7822), + [anon_sym_template] = ACTIONS(7822), + [anon_sym_requires] = ACTIONS(7822), + [anon_sym_DASH_GT_STAR] = ACTIONS(7824), + [anon_sym_LBRACK_COLON] = ACTIONS(7824), + }, + [STATE(2958)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7547), + [anon_sym_COMMA] = ACTIONS(7547), + [anon_sym_RPAREN] = ACTIONS(7547), + [anon_sym_LPAREN2] = ACTIONS(7547), + [anon_sym_DASH] = ACTIONS(7545), + [anon_sym_PLUS] = ACTIONS(7545), + [anon_sym_STAR] = ACTIONS(7545), + [anon_sym_SLASH] = ACTIONS(7545), + [anon_sym_PERCENT] = ACTIONS(7545), + [anon_sym_PIPE_PIPE] = ACTIONS(7547), + [anon_sym_AMP_AMP] = ACTIONS(7547), + [anon_sym_PIPE] = ACTIONS(7545), + [anon_sym_CARET] = ACTIONS(7545), + [anon_sym_AMP] = ACTIONS(7545), + [anon_sym_EQ_EQ] = ACTIONS(7547), + [anon_sym_BANG_EQ] = ACTIONS(7547), + [anon_sym_GT] = ACTIONS(7545), + [anon_sym_GT_EQ] = ACTIONS(7547), + [anon_sym_LT_EQ] = ACTIONS(7545), + [anon_sym_LT] = ACTIONS(7545), + [anon_sym_LT_LT] = ACTIONS(7545), + [anon_sym_GT_GT] = ACTIONS(7545), + [anon_sym___extension__] = ACTIONS(7547), + [anon_sym___attribute__] = ACTIONS(7547), + [anon_sym___attribute] = ACTIONS(7545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7547), + [anon_sym_LBRACK] = ACTIONS(7545), + [anon_sym_EQ] = ACTIONS(7545), + [anon_sym_const] = ACTIONS(7545), + [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(7547), + [anon_sym_STAR_EQ] = ACTIONS(7547), + [anon_sym_SLASH_EQ] = ACTIONS(7547), + [anon_sym_PERCENT_EQ] = ACTIONS(7547), + [anon_sym_PLUS_EQ] = ACTIONS(7547), + [anon_sym_DASH_EQ] = ACTIONS(7547), + [anon_sym_LT_LT_EQ] = ACTIONS(7547), + [anon_sym_GT_GT_EQ] = ACTIONS(7547), + [anon_sym_AMP_EQ] = ACTIONS(7547), + [anon_sym_CARET_EQ] = ACTIONS(7547), + [anon_sym_PIPE_EQ] = ACTIONS(7547), + [anon_sym_LT_EQ_GT] = ACTIONS(7547), + [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(7547), + [anon_sym_PLUS_PLUS] = ACTIONS(7547), + [anon_sym_asm] = ACTIONS(7547), + [anon_sym___asm__] = ACTIONS(7547), + [anon_sym___asm] = ACTIONS(7545), + [anon_sym_DOT] = ACTIONS(7545), + [anon_sym_DOT_STAR] = ACTIONS(7547), + [anon_sym_DASH_GT] = ACTIONS(7545), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7547), + [anon_sym_override] = ACTIONS(7547), + [anon_sym_noexcept] = ACTIONS(7547), + [anon_sym_throw] = ACTIONS(7547), + [anon_sym_requires] = ACTIONS(7547), + [anon_sym_DASH_GT_STAR] = ACTIONS(7547), + }, + [STATE(2959)] = { + [sym_identifier] = ACTIONS(7826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7828), + [anon_sym_COMMA] = ACTIONS(7828), + [anon_sym_RPAREN] = ACTIONS(7828), + [anon_sym_LPAREN2] = ACTIONS(7828), + [anon_sym_DASH] = ACTIONS(7826), + [anon_sym_PLUS] = ACTIONS(7826), + [anon_sym_STAR] = ACTIONS(7826), + [anon_sym_SLASH] = ACTIONS(7826), + [anon_sym_PERCENT] = ACTIONS(7826), + [anon_sym_PIPE_PIPE] = ACTIONS(7828), + [anon_sym_AMP_AMP] = ACTIONS(7828), + [anon_sym_PIPE] = ACTIONS(7826), + [anon_sym_CARET] = ACTIONS(7826), + [anon_sym_AMP] = ACTIONS(7826), + [anon_sym_EQ_EQ] = ACTIONS(7828), + [anon_sym_BANG_EQ] = ACTIONS(7828), + [anon_sym_GT] = ACTIONS(7826), + [anon_sym_GT_EQ] = ACTIONS(7828), + [anon_sym_LT_EQ] = ACTIONS(7826), + [anon_sym_LT] = ACTIONS(7826), + [anon_sym_LT_LT] = ACTIONS(7826), + [anon_sym_GT_GT] = ACTIONS(7826), + [anon_sym___extension__] = ACTIONS(7826), + [anon_sym_COLON_COLON] = ACTIONS(7828), + [anon_sym_LBRACK] = ACTIONS(7826), + [anon_sym_EQ] = ACTIONS(7826), + [anon_sym_const] = ACTIONS(7826), + [anon_sym_constexpr] = ACTIONS(7826), + [anon_sym_volatile] = ACTIONS(7826), + [anon_sym_restrict] = ACTIONS(7826), + [anon_sym___restrict__] = ACTIONS(7826), + [anon_sym__Atomic] = ACTIONS(7826), + [anon_sym__Noreturn] = ACTIONS(7826), + [anon_sym_noreturn] = ACTIONS(7826), + [anon_sym__Nonnull] = ACTIONS(7826), + [anon_sym_mutable] = ACTIONS(7826), + [anon_sym_constinit] = ACTIONS(7826), + [anon_sym_consteval] = ACTIONS(7826), + [anon_sym_alignas] = ACTIONS(7826), + [anon_sym__Alignas] = ACTIONS(7826), + [anon_sym_QMARK] = ACTIONS(7828), + [anon_sym_STAR_EQ] = ACTIONS(7828), + [anon_sym_SLASH_EQ] = ACTIONS(7828), + [anon_sym_PERCENT_EQ] = ACTIONS(7828), + [anon_sym_PLUS_EQ] = ACTIONS(7828), + [anon_sym_DASH_EQ] = ACTIONS(7828), + [anon_sym_LT_LT_EQ] = ACTIONS(7828), + [anon_sym_GT_GT_EQ] = ACTIONS(7828), + [anon_sym_AMP_EQ] = ACTIONS(7828), + [anon_sym_CARET_EQ] = ACTIONS(7828), + [anon_sym_PIPE_EQ] = ACTIONS(7828), + [anon_sym_and_eq] = ACTIONS(7826), + [anon_sym_or_eq] = ACTIONS(7826), + [anon_sym_xor_eq] = ACTIONS(7826), + [anon_sym_LT_EQ_GT] = ACTIONS(7828), + [anon_sym_or] = ACTIONS(7826), + [anon_sym_and] = ACTIONS(7826), + [anon_sym_bitor] = ACTIONS(7826), + [anon_sym_xor] = ACTIONS(7826), + [anon_sym_bitand] = ACTIONS(7826), + [anon_sym_not_eq] = ACTIONS(7826), + [anon_sym_DASH_DASH] = ACTIONS(7828), + [anon_sym_PLUS_PLUS] = ACTIONS(7828), + [anon_sym_DOT] = ACTIONS(7826), + [anon_sym_DOT_STAR] = ACTIONS(7828), + [anon_sym_DASH_GT] = ACTIONS(7826), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7826), + [anon_sym_final] = ACTIONS(7826), + [anon_sym_override] = ACTIONS(7826), + [anon_sym_template] = ACTIONS(7826), + [anon_sym_requires] = ACTIONS(7826), + [anon_sym_DASH_GT_STAR] = ACTIONS(7828), + [anon_sym_LBRACK_COLON] = ACTIONS(7828), + }, + [STATE(2960)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_RBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + }, + [STATE(2961)] = { + [sym_attribute_specifier] = STATE(3363), + [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(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(7676), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7676), + [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_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(7676), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7676), + [anon_sym_final] = ACTIONS(7676), + [anon_sym_override] = ACTIONS(7676), + [anon_sym_template] = ACTIONS(7676), + [anon_sym_requires] = ACTIONS(7676), + [anon_sym_DASH_GT_STAR] = ACTIONS(7678), + [anon_sym_LBRACK_COLON] = ACTIONS(7678), + }, + [STATE(2962)] = { + [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(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(7771), + [anon_sym_COLON_COLON] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7771), + [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(7771), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7771), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_template] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_DASH_GT_STAR] = ACTIONS(7773), + [anon_sym_LBRACK_COLON] = ACTIONS(7773), + }, + [STATE(2963)] = { + [sym_identifier] = ACTIONS(7710), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7712), + [anon_sym_COMMA] = ACTIONS(7712), + [anon_sym_RPAREN] = ACTIONS(7712), + [anon_sym_LPAREN2] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7710), + [anon_sym_STAR] = ACTIONS(7710), + [anon_sym_SLASH] = ACTIONS(7710), + [anon_sym_PERCENT] = ACTIONS(7710), + [anon_sym_PIPE_PIPE] = ACTIONS(7712), + [anon_sym_AMP_AMP] = ACTIONS(7712), + [anon_sym_PIPE] = ACTIONS(7710), + [anon_sym_CARET] = ACTIONS(7710), + [anon_sym_AMP] = ACTIONS(7710), + [anon_sym_EQ_EQ] = ACTIONS(7712), + [anon_sym_BANG_EQ] = ACTIONS(7712), + [anon_sym_GT] = ACTIONS(7710), + [anon_sym_GT_EQ] = ACTIONS(7712), + [anon_sym_LT_EQ] = ACTIONS(7710), + [anon_sym_LT] = ACTIONS(7710), + [anon_sym_LT_LT] = ACTIONS(7710), + [anon_sym_GT_GT] = ACTIONS(7710), + [anon_sym___extension__] = ACTIONS(7710), + [anon_sym_COLON_COLON] = ACTIONS(7712), + [anon_sym_LBRACK] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(7710), + [anon_sym_const] = ACTIONS(7710), + [anon_sym_constexpr] = ACTIONS(7710), + [anon_sym_volatile] = ACTIONS(7710), + [anon_sym_restrict] = ACTIONS(7710), + [anon_sym___restrict__] = ACTIONS(7710), + [anon_sym__Atomic] = ACTIONS(7710), + [anon_sym__Noreturn] = ACTIONS(7710), + [anon_sym_noreturn] = ACTIONS(7710), + [anon_sym__Nonnull] = ACTIONS(7710), + [anon_sym_mutable] = ACTIONS(7710), + [anon_sym_constinit] = ACTIONS(7710), + [anon_sym_consteval] = ACTIONS(7710), + [anon_sym_alignas] = ACTIONS(7710), + [anon_sym__Alignas] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [anon_sym_STAR_EQ] = ACTIONS(7712), + [anon_sym_SLASH_EQ] = ACTIONS(7712), + [anon_sym_PERCENT_EQ] = ACTIONS(7712), + [anon_sym_PLUS_EQ] = ACTIONS(7712), + [anon_sym_DASH_EQ] = ACTIONS(7712), + [anon_sym_LT_LT_EQ] = ACTIONS(7712), + [anon_sym_GT_GT_EQ] = ACTIONS(7712), + [anon_sym_AMP_EQ] = ACTIONS(7712), + [anon_sym_CARET_EQ] = ACTIONS(7712), + [anon_sym_PIPE_EQ] = ACTIONS(7712), + [anon_sym_and_eq] = ACTIONS(7710), + [anon_sym_or_eq] = ACTIONS(7710), + [anon_sym_xor_eq] = ACTIONS(7710), + [anon_sym_LT_EQ_GT] = ACTIONS(7712), + [anon_sym_or] = ACTIONS(7710), + [anon_sym_and] = ACTIONS(7710), + [anon_sym_bitor] = ACTIONS(7710), + [anon_sym_xor] = ACTIONS(7710), + [anon_sym_bitand] = ACTIONS(7710), + [anon_sym_not_eq] = ACTIONS(7710), + [anon_sym_DASH_DASH] = ACTIONS(7712), + [anon_sym_PLUS_PLUS] = ACTIONS(7712), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_DOT_STAR] = ACTIONS(7712), + [anon_sym_DASH_GT] = ACTIONS(7710), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7710), + [anon_sym_final] = ACTIONS(7710), + [anon_sym_override] = ACTIONS(7710), + [anon_sym_template] = ACTIONS(7710), + [anon_sym_requires] = ACTIONS(7710), + [anon_sym_DASH_GT_STAR] = ACTIONS(7712), + [anon_sym_LBRACK_COLON] = ACTIONS(7712), + }, + [STATE(2964)] = { + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7292), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_DASH_GT_STAR] = ACTIONS(7292), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), + }, + [STATE(2965)] = { + [sym_template_argument_list] = STATE(3019), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6776), + [anon_sym_COMMA] = ACTIONS(6776), + [anon_sym_RPAREN] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6783), + [anon_sym_PERCENT] = ACTIONS(6783), + [anon_sym_PIPE_PIPE] = ACTIONS(6776), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6783), + [anon_sym_CARET] = ACTIONS(6783), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6776), + [anon_sym_BANG_EQ] = ACTIONS(6776), + [anon_sym_GT] = ACTIONS(6783), + [anon_sym_GT_EQ] = ACTIONS(6776), + [anon_sym_LT_EQ] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(8862), + [anon_sym_LT_LT] = ACTIONS(6783), + [anon_sym_GT_GT] = ACTIONS(6783), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6776), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6776), + [anon_sym_or] = ACTIONS(6783), + [anon_sym_and] = ACTIONS(6783), + [anon_sym_bitor] = ACTIONS(6783), + [anon_sym_xor] = ACTIONS(6783), + [anon_sym_bitand] = ACTIONS(6783), + [anon_sym_not_eq] = ACTIONS(6783), + [anon_sym_DASH_DASH] = ACTIONS(6776), + [anon_sym_PLUS_PLUS] = ACTIONS(6776), + [anon_sym_DOT] = ACTIONS(6783), + [anon_sym_DOT_STAR] = ACTIONS(6776), + [anon_sym_DASH_GT] = ACTIONS(6783), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_DASH_GT_STAR] = ACTIONS(6776), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(2966)] = { + [sym_decltype_auto] = STATE(2949), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8720), + [anon_sym_decltype] = ACTIONS(7161), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(2967)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7718), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_DASH_GT_STAR] = ACTIONS(7720), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + }, + [STATE(2968)] = { + [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(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(7735), + [anon_sym_COLON_COLON] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7735), + [anon_sym_EQ] = ACTIONS(7735), + [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), + [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(7735), + [anon_sym_or_eq] = ACTIONS(7735), + [anon_sym_xor_eq] = ACTIONS(7735), + [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(7735), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7735), + [anon_sym_final] = ACTIONS(7735), + [anon_sym_override] = ACTIONS(7735), + [anon_sym_template] = ACTIONS(7735), + [anon_sym_requires] = ACTIONS(7735), + [anon_sym_DASH_GT_STAR] = ACTIONS(7737), + [anon_sym_LBRACK_COLON] = ACTIONS(7737), + }, + [STATE(2969)] = { + [sym_identifier] = ACTIONS(7763), [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), [anon_sym_COMMA] = ACTIONS(7765), [anon_sym_RPAREN] = ACTIONS(7765), @@ -390230,24 +401627,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(7763), + [anon_sym_COLON_COLON] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7763), [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_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), @@ -390259,3535 +401656,1330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(7765), + [anon_sym_bitor] = ACTIONS(7763), [anon_sym_xor] = ACTIONS(7763), - [anon_sym_bitand] = ACTIONS(7765), - [anon_sym_not_eq] = ACTIONS(7765), + [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(7763), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7765), - [anon_sym_override] = ACTIONS(7765), - [anon_sym_requires] = ACTIONS(7765), + [anon_sym_decltype] = ACTIONS(7763), + [anon_sym_final] = ACTIONS(7763), + [anon_sym_override] = ACTIONS(7763), + [anon_sym_template] = ACTIONS(7763), + [anon_sym_requires] = ACTIONS(7763), [anon_sym_DASH_GT_STAR] = ACTIONS(7765), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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_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), - [anon_sym_final] = ACTIONS(7341), - [anon_sym_override] = ACTIONS(7341), - [anon_sym_requires] = 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), + [anon_sym_LBRACK_COLON] = ACTIONS(7765), }, [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), - [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(8111), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8113), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8115), - [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7345), - [anon_sym_override] = ACTIONS(7345), - [anon_sym_requires] = ACTIONS(7345), - [anon_sym_COLON_RBRACK] = ACTIONS(7345), + [sym_attribute_specifier] = STATE(3355), + [sym_identifier] = ACTIONS(7578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7580), + [anon_sym_COMMA] = ACTIONS(7580), + [anon_sym_RPAREN] = ACTIONS(7580), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym_DASH] = ACTIONS(7578), + [anon_sym_PLUS] = ACTIONS(7578), + [anon_sym_STAR] = ACTIONS(7578), + [anon_sym_SLASH] = ACTIONS(7578), + [anon_sym_PERCENT] = ACTIONS(7578), + [anon_sym_PIPE_PIPE] = ACTIONS(7580), + [anon_sym_AMP_AMP] = ACTIONS(7580), + [anon_sym_PIPE] = ACTIONS(7578), + [anon_sym_CARET] = ACTIONS(7578), + [anon_sym_AMP] = ACTIONS(7578), + [anon_sym_EQ_EQ] = ACTIONS(7580), + [anon_sym_BANG_EQ] = ACTIONS(7580), + [anon_sym_GT] = ACTIONS(7578), + [anon_sym_GT_EQ] = ACTIONS(7580), + [anon_sym_LT_EQ] = ACTIONS(7578), + [anon_sym_LT] = ACTIONS(7578), + [anon_sym_LT_LT] = ACTIONS(7578), + [anon_sym_GT_GT] = ACTIONS(7578), + [anon_sym___extension__] = ACTIONS(7578), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7580), + [anon_sym_LBRACK] = ACTIONS(7578), + [anon_sym_EQ] = ACTIONS(7578), + [anon_sym_const] = ACTIONS(7578), + [anon_sym_constexpr] = ACTIONS(7578), + [anon_sym_volatile] = ACTIONS(7578), + [anon_sym_restrict] = ACTIONS(7578), + [anon_sym___restrict__] = ACTIONS(7578), + [anon_sym__Atomic] = ACTIONS(7578), + [anon_sym__Noreturn] = ACTIONS(7578), + [anon_sym_noreturn] = ACTIONS(7578), + [anon_sym__Nonnull] = ACTIONS(7578), + [anon_sym_mutable] = ACTIONS(7578), + [anon_sym_constinit] = ACTIONS(7578), + [anon_sym_consteval] = ACTIONS(7578), + [anon_sym_alignas] = ACTIONS(7578), + [anon_sym__Alignas] = ACTIONS(7578), + [anon_sym_QMARK] = ACTIONS(7580), + [anon_sym_STAR_EQ] = ACTIONS(7580), + [anon_sym_SLASH_EQ] = ACTIONS(7580), + [anon_sym_PERCENT_EQ] = ACTIONS(7580), + [anon_sym_PLUS_EQ] = ACTIONS(7580), + [anon_sym_DASH_EQ] = ACTIONS(7580), + [anon_sym_LT_LT_EQ] = ACTIONS(7580), + [anon_sym_GT_GT_EQ] = ACTIONS(7580), + [anon_sym_AMP_EQ] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(7580), + [anon_sym_PIPE_EQ] = ACTIONS(7580), + [anon_sym_LT_EQ_GT] = ACTIONS(7580), + [anon_sym_or] = ACTIONS(7578), + [anon_sym_and] = ACTIONS(7578), + [anon_sym_bitor] = ACTIONS(7578), + [anon_sym_xor] = ACTIONS(7578), + [anon_sym_bitand] = ACTIONS(7578), + [anon_sym_not_eq] = ACTIONS(7578), + [anon_sym_DASH_DASH] = ACTIONS(7580), + [anon_sym_PLUS_PLUS] = ACTIONS(7580), + [anon_sym_DOT] = ACTIONS(7578), + [anon_sym_DOT_STAR] = ACTIONS(7580), + [anon_sym_DASH_GT] = ACTIONS(7578), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7578), + [anon_sym_final] = ACTIONS(7578), + [anon_sym_override] = ACTIONS(7578), + [anon_sym_template] = ACTIONS(7578), + [anon_sym_requires] = ACTIONS(7578), + [anon_sym_DASH_GT_STAR] = ACTIONS(7580), + [anon_sym_LBRACK_COLON] = ACTIONS(7580), }, [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), + [sym_attribute_specifier] = STATE(3381), + [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(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(7672), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7672), + [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_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(7672), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7672), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_template] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_DASH_GT_STAR] = ACTIONS(7674), + [anon_sym_LBRACK_COLON] = ACTIONS(7674), }, [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), + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7718), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_DASH_GT_STAR] = ACTIONS(7720), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), }, [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), + [sym_attribute_specifier] = STATE(3378), + [sym_identifier] = ACTIONS(7634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7636), + [anon_sym_COMMA] = ACTIONS(7636), + [anon_sym_RPAREN] = ACTIONS(7636), + [anon_sym_LPAREN2] = ACTIONS(7636), + [anon_sym_DASH] = ACTIONS(7634), + [anon_sym_PLUS] = ACTIONS(7634), + [anon_sym_STAR] = ACTIONS(7634), + [anon_sym_SLASH] = ACTIONS(7634), + [anon_sym_PERCENT] = ACTIONS(7634), + [anon_sym_PIPE_PIPE] = ACTIONS(7636), + [anon_sym_AMP_AMP] = ACTIONS(7636), + [anon_sym_PIPE] = ACTIONS(7634), + [anon_sym_CARET] = ACTIONS(7634), + [anon_sym_AMP] = ACTIONS(7634), + [anon_sym_EQ_EQ] = ACTIONS(7636), + [anon_sym_BANG_EQ] = ACTIONS(7636), + [anon_sym_GT] = ACTIONS(7634), + [anon_sym_GT_EQ] = ACTIONS(7636), + [anon_sym_LT_EQ] = ACTIONS(7634), + [anon_sym_LT] = ACTIONS(7634), + [anon_sym_LT_LT] = ACTIONS(7634), + [anon_sym_GT_GT] = ACTIONS(7634), + [anon_sym___extension__] = ACTIONS(7634), + [anon_sym___attribute__] = ACTIONS(8412), + [anon_sym___attribute] = ACTIONS(8412), + [anon_sym_COLON_COLON] = ACTIONS(7636), + [anon_sym_LBRACK] = ACTIONS(7634), + [anon_sym_EQ] = ACTIONS(7634), + [anon_sym_const] = ACTIONS(7634), + [anon_sym_constexpr] = ACTIONS(7634), + [anon_sym_volatile] = ACTIONS(7634), + [anon_sym_restrict] = ACTIONS(7634), + [anon_sym___restrict__] = ACTIONS(7634), + [anon_sym__Atomic] = ACTIONS(7634), + [anon_sym__Noreturn] = ACTIONS(7634), + [anon_sym_noreturn] = ACTIONS(7634), + [anon_sym__Nonnull] = ACTIONS(7634), + [anon_sym_mutable] = ACTIONS(7634), + [anon_sym_constinit] = ACTIONS(7634), + [anon_sym_consteval] = ACTIONS(7634), + [anon_sym_alignas] = ACTIONS(7634), + [anon_sym__Alignas] = ACTIONS(7634), + [anon_sym_QMARK] = ACTIONS(7636), + [anon_sym_STAR_EQ] = ACTIONS(7636), + [anon_sym_SLASH_EQ] = ACTIONS(7636), + [anon_sym_PERCENT_EQ] = ACTIONS(7636), + [anon_sym_PLUS_EQ] = ACTIONS(7636), + [anon_sym_DASH_EQ] = ACTIONS(7636), + [anon_sym_LT_LT_EQ] = ACTIONS(7636), + [anon_sym_GT_GT_EQ] = ACTIONS(7636), + [anon_sym_AMP_EQ] = ACTIONS(7636), + [anon_sym_CARET_EQ] = ACTIONS(7636), + [anon_sym_PIPE_EQ] = ACTIONS(7636), + [anon_sym_LT_EQ_GT] = ACTIONS(7636), + [anon_sym_or] = ACTIONS(7634), + [anon_sym_and] = ACTIONS(7634), + [anon_sym_bitor] = ACTIONS(7634), + [anon_sym_xor] = ACTIONS(7634), + [anon_sym_bitand] = ACTIONS(7634), + [anon_sym_not_eq] = ACTIONS(7634), + [anon_sym_DASH_DASH] = ACTIONS(7636), + [anon_sym_PLUS_PLUS] = ACTIONS(7636), + [anon_sym_DOT] = ACTIONS(7634), + [anon_sym_DOT_STAR] = ACTIONS(7636), + [anon_sym_DASH_GT] = ACTIONS(7634), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7634), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_template] = ACTIONS(7634), + [anon_sym_requires] = ACTIONS(7634), + [anon_sym_DASH_GT_STAR] = ACTIONS(7636), + [anon_sym_LBRACK_COLON] = ACTIONS(7636), }, [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), + [sym_identifier] = ACTIONS(7822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7824), + [anon_sym_COMMA] = ACTIONS(7824), + [anon_sym_LPAREN2] = ACTIONS(7824), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_PLUS] = ACTIONS(7822), + [anon_sym_STAR] = ACTIONS(7822), + [anon_sym_SLASH] = ACTIONS(7822), + [anon_sym_PERCENT] = ACTIONS(7822), + [anon_sym_PIPE_PIPE] = ACTIONS(7824), + [anon_sym_AMP_AMP] = ACTIONS(7824), + [anon_sym_PIPE] = ACTIONS(7822), + [anon_sym_CARET] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7822), + [anon_sym_EQ_EQ] = ACTIONS(7824), + [anon_sym_BANG_EQ] = ACTIONS(7824), + [anon_sym_GT] = ACTIONS(7822), + [anon_sym_GT_EQ] = ACTIONS(7824), + [anon_sym_LT_EQ] = ACTIONS(7822), + [anon_sym_LT] = ACTIONS(7822), + [anon_sym_LT_LT] = ACTIONS(7822), + [anon_sym_GT_GT] = ACTIONS(7822), + [anon_sym___extension__] = ACTIONS(7822), + [anon_sym_COLON_COLON] = ACTIONS(7824), + [anon_sym_LBRACK] = ACTIONS(7822), + [anon_sym_RBRACK] = ACTIONS(7824), + [anon_sym_EQ] = ACTIONS(7822), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7822), + [anon_sym_volatile] = ACTIONS(7822), + [anon_sym_restrict] = ACTIONS(7822), + [anon_sym___restrict__] = ACTIONS(7822), + [anon_sym__Atomic] = ACTIONS(7822), + [anon_sym__Noreturn] = ACTIONS(7822), + [anon_sym_noreturn] = ACTIONS(7822), + [anon_sym__Nonnull] = ACTIONS(7822), + [anon_sym_mutable] = ACTIONS(7822), + [anon_sym_constinit] = ACTIONS(7822), + [anon_sym_consteval] = ACTIONS(7822), + [anon_sym_alignas] = ACTIONS(7822), + [anon_sym__Alignas] = ACTIONS(7822), + [anon_sym_QMARK] = ACTIONS(7824), + [anon_sym_STAR_EQ] = ACTIONS(7824), + [anon_sym_SLASH_EQ] = ACTIONS(7824), + [anon_sym_PERCENT_EQ] = ACTIONS(7824), + [anon_sym_PLUS_EQ] = ACTIONS(7824), + [anon_sym_DASH_EQ] = ACTIONS(7824), + [anon_sym_LT_LT_EQ] = ACTIONS(7824), + [anon_sym_GT_GT_EQ] = ACTIONS(7824), + [anon_sym_AMP_EQ] = ACTIONS(7824), + [anon_sym_CARET_EQ] = ACTIONS(7824), + [anon_sym_PIPE_EQ] = ACTIONS(7824), + [anon_sym_and_eq] = ACTIONS(7822), + [anon_sym_or_eq] = ACTIONS(7822), + [anon_sym_xor_eq] = ACTIONS(7822), + [anon_sym_LT_EQ_GT] = ACTIONS(7824), + [anon_sym_or] = ACTIONS(7822), + [anon_sym_and] = ACTIONS(7822), + [anon_sym_bitor] = ACTIONS(7822), + [anon_sym_xor] = ACTIONS(7822), + [anon_sym_bitand] = ACTIONS(7822), + [anon_sym_not_eq] = ACTIONS(7822), + [anon_sym_DASH_DASH] = ACTIONS(7824), + [anon_sym_PLUS_PLUS] = ACTIONS(7824), + [anon_sym_DOT] = ACTIONS(7822), + [anon_sym_DOT_STAR] = ACTIONS(7824), + [anon_sym_DASH_GT] = ACTIONS(7824), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7822), + [anon_sym_final] = ACTIONS(7822), + [anon_sym_override] = ACTIONS(7822), + [anon_sym_template] = ACTIONS(7822), + [anon_sym_requires] = ACTIONS(7822), + [anon_sym_LBRACK_COLON] = ACTIONS(7824), }, [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), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [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(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3472), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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_LBRACK_COLON] = ACTIONS(3176), }, [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), + [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(7493), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7493), + [anon_sym_PIPE_PIPE] = ACTIONS(7493), + [anon_sym_AMP_AMP] = ACTIONS(7493), + [anon_sym_PIPE] = ACTIONS(7491), + [anon_sym_CARET] = ACTIONS(7493), + [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(7493), + [anon_sym_GT_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(7493), + [anon_sym___extension__] = ACTIONS(7491), + [anon_sym___attribute__] = ACTIONS(7491), + [anon_sym___attribute] = ACTIONS(7491), + [anon_sym_COLON] = ACTIONS(7491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7493), + [anon_sym_RBRACE] = ACTIONS(7493), + [anon_sym_LBRACK] = 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_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_asm] = ACTIONS(7491), + [anon_sym___asm__] = ACTIONS(7491), + [anon_sym___asm] = ACTIONS(7491), + [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_noexcept] = ACTIONS(7491), + [anon_sym_throw] = ACTIONS(7491), + [anon_sym_requires] = ACTIONS(7491), + [anon_sym_COLON_RBRACK] = ACTIONS(7493), }, [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), + [sym_attribute_specifier] = STATE(3149), + [sym_identifier] = ACTIONS(7634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7636), + [anon_sym_COMMA] = ACTIONS(7636), + [anon_sym_RPAREN] = ACTIONS(7636), + [aux_sym_preproc_if_token2] = ACTIONS(7636), + [aux_sym_preproc_else_token1] = ACTIONS(7636), + [aux_sym_preproc_elif_token1] = ACTIONS(7634), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7636), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7636), + [anon_sym_LPAREN2] = ACTIONS(7636), + [anon_sym_DASH] = ACTIONS(7634), + [anon_sym_PLUS] = ACTIONS(7634), + [anon_sym_STAR] = ACTIONS(7636), + [anon_sym_SLASH] = ACTIONS(7634), + [anon_sym_PERCENT] = ACTIONS(7636), + [anon_sym_PIPE_PIPE] = ACTIONS(7636), + [anon_sym_AMP_AMP] = ACTIONS(7636), + [anon_sym_PIPE] = ACTIONS(7634), + [anon_sym_CARET] = ACTIONS(7636), + [anon_sym_AMP] = ACTIONS(7634), + [anon_sym_EQ_EQ] = ACTIONS(7636), + [anon_sym_BANG_EQ] = ACTIONS(7636), + [anon_sym_GT] = ACTIONS(7634), + [anon_sym_GT_EQ] = ACTIONS(7636), + [anon_sym_LT_EQ] = ACTIONS(7634), + [anon_sym_LT] = ACTIONS(7634), + [anon_sym_LT_LT] = ACTIONS(7636), + [anon_sym_GT_GT] = ACTIONS(7636), + [anon_sym_SEMI] = ACTIONS(7636), + [anon_sym___extension__] = ACTIONS(7634), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7634), + [anon_sym_COLON_COLON] = ACTIONS(7636), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7636), + [anon_sym_LBRACE] = ACTIONS(7636), + [anon_sym_RBRACE] = ACTIONS(7636), + [anon_sym_LBRACK] = ACTIONS(7634), + [anon_sym_const] = ACTIONS(7634), + [anon_sym_constexpr] = ACTIONS(7634), + [anon_sym_volatile] = ACTIONS(7634), + [anon_sym_restrict] = ACTIONS(7634), + [anon_sym___restrict__] = ACTIONS(7634), + [anon_sym__Atomic] = ACTIONS(7634), + [anon_sym__Noreturn] = ACTIONS(7634), + [anon_sym_noreturn] = ACTIONS(7634), + [anon_sym__Nonnull] = ACTIONS(7634), + [anon_sym_mutable] = ACTIONS(7634), + [anon_sym_constinit] = ACTIONS(7634), + [anon_sym_consteval] = ACTIONS(7634), + [anon_sym_alignas] = ACTIONS(7634), + [anon_sym__Alignas] = ACTIONS(7634), + [anon_sym_QMARK] = ACTIONS(7636), + [anon_sym_LT_EQ_GT] = ACTIONS(7636), + [anon_sym_or] = ACTIONS(7634), + [anon_sym_and] = ACTIONS(7634), + [anon_sym_bitor] = ACTIONS(7634), + [anon_sym_xor] = ACTIONS(7634), + [anon_sym_bitand] = ACTIONS(7634), + [anon_sym_not_eq] = ACTIONS(7634), + [anon_sym_DASH_DASH] = ACTIONS(7636), + [anon_sym_PLUS_PLUS] = ACTIONS(7636), + [anon_sym_DOT] = ACTIONS(7634), + [anon_sym_DOT_STAR] = ACTIONS(7636), + [anon_sym_DASH_GT] = ACTIONS(7636), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7634), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_template] = ACTIONS(7634), + [anon_sym_requires] = ACTIONS(7634), + [anon_sym_LBRACK_COLON] = ACTIONS(7636), + [anon_sym_COLON_RBRACK] = ACTIONS(7636), }, [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), + [sym_identifier] = ACTIONS(7259), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_BANG] = ACTIONS(7261), + [anon_sym_TILDE] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7261), + [anon_sym_AMP] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_static] = ACTIONS(7259), + [anon_sym_RBRACK] = ACTIONS(7261), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_not] = ACTIONS(7259), + [anon_sym_compl] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_sizeof] = ACTIONS(7259), + [anon_sym___alignof__] = ACTIONS(7259), + [anon_sym___alignof] = ACTIONS(7259), + [anon_sym__alignof] = ACTIONS(7259), + [anon_sym_alignof] = ACTIONS(7259), + [anon_sym__Alignof] = ACTIONS(7259), + [anon_sym_offsetof] = ACTIONS(7259), + [anon_sym__Generic] = ACTIONS(7259), + [anon_sym_typename] = ACTIONS(7259), + [anon_sym_asm] = ACTIONS(7259), + [anon_sym___asm__] = ACTIONS(7259), + [anon_sym___asm] = ACTIONS(7259), + [sym_number_literal] = ACTIONS(7261), + [anon_sym_L_SQUOTE] = ACTIONS(7261), + [anon_sym_u_SQUOTE] = ACTIONS(7261), + [anon_sym_U_SQUOTE] = ACTIONS(7261), + [anon_sym_u8_SQUOTE] = ACTIONS(7261), + [anon_sym_SQUOTE] = ACTIONS(7261), + [anon_sym_L_DQUOTE] = ACTIONS(7261), + [anon_sym_u_DQUOTE] = ACTIONS(7261), + [anon_sym_U_DQUOTE] = ACTIONS(7261), + [anon_sym_u8_DQUOTE] = ACTIONS(7261), + [anon_sym_DQUOTE] = ACTIONS(7261), + [sym_true] = ACTIONS(7259), + [sym_false] = ACTIONS(7259), + [anon_sym_NULL] = ACTIONS(7259), + [anon_sym_nullptr] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_delete] = ACTIONS(7259), + [anon_sym_R_DQUOTE] = ACTIONS(7261), + [anon_sym_LR_DQUOTE] = ACTIONS(7261), + [anon_sym_uR_DQUOTE] = ACTIONS(7261), + [anon_sym_UR_DQUOTE] = ACTIONS(7261), + [anon_sym_u8R_DQUOTE] = ACTIONS(7261), + [anon_sym_co_await] = ACTIONS(7259), + [anon_sym_new] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_CARET_CARET] = ACTIONS(7261), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), + [sym_this] = ACTIONS(7259), }, [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_identifier] = ACTIONS(7838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7840), + [anon_sym_COMMA] = ACTIONS(7840), + [anon_sym_LPAREN2] = ACTIONS(7840), + [anon_sym_DASH] = ACTIONS(7838), + [anon_sym_PLUS] = ACTIONS(7838), + [anon_sym_STAR] = ACTIONS(7838), + [anon_sym_SLASH] = ACTIONS(7838), + [anon_sym_PERCENT] = ACTIONS(7838), + [anon_sym_PIPE_PIPE] = ACTIONS(7840), + [anon_sym_AMP_AMP] = ACTIONS(7840), + [anon_sym_PIPE] = ACTIONS(7838), + [anon_sym_CARET] = ACTIONS(7838), + [anon_sym_AMP] = ACTIONS(7838), + [anon_sym_EQ_EQ] = ACTIONS(7840), + [anon_sym_BANG_EQ] = ACTIONS(7840), + [anon_sym_GT] = ACTIONS(7838), + [anon_sym_GT_EQ] = ACTIONS(7838), + [anon_sym_LT_EQ] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(7838), + [anon_sym_LT_LT] = ACTIONS(7838), + [anon_sym_GT_GT] = ACTIONS(7838), + [anon_sym___extension__] = ACTIONS(7838), + [anon_sym_COLON_COLON] = ACTIONS(7840), + [anon_sym_LBRACK] = ACTIONS(7838), + [anon_sym_EQ] = ACTIONS(7838), + [anon_sym_const] = ACTIONS(7838), + [anon_sym_constexpr] = ACTIONS(7838), + [anon_sym_volatile] = ACTIONS(7838), + [anon_sym_restrict] = ACTIONS(7838), + [anon_sym___restrict__] = ACTIONS(7838), + [anon_sym__Atomic] = ACTIONS(7838), + [anon_sym__Noreturn] = ACTIONS(7838), + [anon_sym_noreturn] = ACTIONS(7838), + [anon_sym__Nonnull] = ACTIONS(7838), + [anon_sym_mutable] = ACTIONS(7838), + [anon_sym_constinit] = ACTIONS(7838), + [anon_sym_consteval] = ACTIONS(7838), + [anon_sym_alignas] = ACTIONS(7838), + [anon_sym__Alignas] = ACTIONS(7838), + [anon_sym_QMARK] = ACTIONS(7840), + [anon_sym_STAR_EQ] = ACTIONS(7840), + [anon_sym_SLASH_EQ] = ACTIONS(7840), + [anon_sym_PERCENT_EQ] = ACTIONS(7840), + [anon_sym_PLUS_EQ] = ACTIONS(7840), + [anon_sym_DASH_EQ] = ACTIONS(7840), + [anon_sym_LT_LT_EQ] = ACTIONS(7840), + [anon_sym_GT_GT_EQ] = ACTIONS(7838), + [anon_sym_AMP_EQ] = ACTIONS(7840), + [anon_sym_CARET_EQ] = ACTIONS(7840), + [anon_sym_PIPE_EQ] = ACTIONS(7840), + [anon_sym_and_eq] = ACTIONS(7838), + [anon_sym_or_eq] = ACTIONS(7838), + [anon_sym_xor_eq] = ACTIONS(7838), + [anon_sym_LT_EQ_GT] = ACTIONS(7840), + [anon_sym_or] = ACTIONS(7838), + [anon_sym_and] = ACTIONS(7838), + [anon_sym_bitor] = ACTIONS(7838), + [anon_sym_xor] = ACTIONS(7838), + [anon_sym_bitand] = ACTIONS(7838), + [anon_sym_not_eq] = ACTIONS(7838), + [anon_sym_DASH_DASH] = ACTIONS(7840), + [anon_sym_PLUS_PLUS] = ACTIONS(7840), + [anon_sym_DOT] = ACTIONS(7838), + [anon_sym_DOT_STAR] = ACTIONS(7840), + [anon_sym_DASH_GT] = ACTIONS(7840), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7838), + [anon_sym_final] = ACTIONS(7838), + [anon_sym_override] = ACTIONS(7838), + [anon_sym_template] = ACTIONS(7838), + [anon_sym_GT2] = ACTIONS(7840), + [anon_sym_requires] = ACTIONS(7838), + [anon_sym_LBRACK_COLON] = ACTIONS(7840), }, [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(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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_decltype_auto] = STATE(3347), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8865), + [anon_sym_decltype] = ACTIONS(7171), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), + [sym_decltype_auto] = STATE(3347), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), [anon_sym_STAR] = ACTIONS(7359), - [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_SLASH] = ACTIONS(7359), [anon_sym_PERCENT] = ACTIONS(7359), - [anon_sym_PIPE_PIPE] = ACTIONS(7359), - [anon_sym_AMP_AMP] = ACTIONS(7359), - [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), [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_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), [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___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), [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_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), [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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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_auto] = ACTIONS(8865), + [anon_sym_decltype] = ACTIONS(7171), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, - [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), + [STATE(2984)] = { + [sym_identifier] = ACTIONS(7743), + [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(7743), + [anon_sym_COLON_COLON] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7743), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7743), + [anon_sym_volatile] = ACTIONS(7743), + [anon_sym_restrict] = ACTIONS(7743), + [anon_sym___restrict__] = ACTIONS(7743), + [anon_sym__Atomic] = ACTIONS(7743), + [anon_sym__Noreturn] = ACTIONS(7743), + [anon_sym_noreturn] = ACTIONS(7743), + [anon_sym__Nonnull] = ACTIONS(7743), + [anon_sym_mutable] = ACTIONS(7743), + [anon_sym_constinit] = ACTIONS(7743), + [anon_sym_consteval] = ACTIONS(7743), + [anon_sym_alignas] = ACTIONS(7743), + [anon_sym__Alignas] = ACTIONS(7743), + [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(7743), + [anon_sym_or_eq] = ACTIONS(7743), + [anon_sym_xor_eq] = ACTIONS(7743), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7743), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7743), + [anon_sym_not_eq] = ACTIONS(7743), + [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_decltype] = ACTIONS(7743), + [anon_sym_final] = ACTIONS(7743), + [anon_sym_override] = ACTIONS(7743), + [anon_sym_template] = ACTIONS(7743), + [anon_sym_GT2] = ACTIONS(7745), + [anon_sym_requires] = ACTIONS(7743), + [anon_sym_LBRACK_COLON] = ACTIONS(7745), }, - [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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_DASH_GT_STAR] = ACTIONS(6596), + [STATE(2985)] = { + [sym_identifier] = ACTIONS(7751), + [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(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_restrict] = ACTIONS(7751), + [anon_sym___restrict__] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [anon_sym__Noreturn] = ACTIONS(7751), + [anon_sym_noreturn] = ACTIONS(7751), + [anon_sym__Nonnull] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [anon_sym_constinit] = ACTIONS(7751), + [anon_sym_consteval] = ACTIONS(7751), + [anon_sym_alignas] = ACTIONS(7751), + [anon_sym__Alignas] = ACTIONS(7751), + [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(7751), + [anon_sym_or_eq] = ACTIONS(7751), + [anon_sym_xor_eq] = ACTIONS(7751), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7751), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7751), + [anon_sym_not_eq] = ACTIONS(7751), + [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_decltype] = ACTIONS(7751), + [anon_sym_final] = ACTIONS(7751), + [anon_sym_override] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_GT2] = ACTIONS(7753), + [anon_sym_requires] = ACTIONS(7751), + [anon_sym_LBRACK_COLON] = ACTIONS(7753), }, - [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(2986)] = { + [sym_identifier] = ACTIONS(7759), + [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(7759), + [anon_sym_COLON_COLON] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7759), + [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(7759), + [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_decltype] = ACTIONS(7759), + [anon_sym_final] = ACTIONS(7759), + [anon_sym_override] = ACTIONS(7759), + [anon_sym_template] = ACTIONS(7759), + [anon_sym_GT2] = ACTIONS(7761), + [anon_sym_requires] = ACTIONS(7759), + [anon_sym_LBRACK_COLON] = ACTIONS(7761), }, - [STATE(3001)] = { + [STATE(2987)] = { + [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), @@ -393802,284 +402994,448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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___extension__] = ACTIONS(7767), + [anon_sym_COLON_COLON] = ACTIONS(7769), + [anon_sym_LBRACK] = ACTIONS(7767), [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_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(7767), + [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(7769), + [anon_sym_bitor] = ACTIONS(7767), [anon_sym_xor] = ACTIONS(7767), - [anon_sym_bitand] = ACTIONS(7769), - [anon_sym_not_eq] = ACTIONS(7769), + [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(7767), + [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), - [anon_sym_DASH_GT_STAR] = ACTIONS(7769), + [anon_sym_decltype] = ACTIONS(7767), + [anon_sym_final] = ACTIONS(7767), + [anon_sym_override] = ACTIONS(7767), + [anon_sym_template] = ACTIONS(7767), + [anon_sym_GT2] = ACTIONS(7769), + [anon_sym_requires] = ACTIONS(7767), + [anon_sym_LBRACK_COLON] = ACTIONS(7769), }, - [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), + [STATE(2988)] = { + [sym_identifier] = ACTIONS(7786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7788), + [anon_sym_COMMA] = ACTIONS(7788), + [anon_sym_LPAREN2] = ACTIONS(7788), + [anon_sym_DASH] = ACTIONS(7786), + [anon_sym_PLUS] = ACTIONS(7786), + [anon_sym_STAR] = ACTIONS(7786), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_PERCENT] = ACTIONS(7786), + [anon_sym_PIPE_PIPE] = ACTIONS(7788), + [anon_sym_AMP_AMP] = ACTIONS(7788), + [anon_sym_PIPE] = ACTIONS(7786), + [anon_sym_CARET] = ACTIONS(7786), + [anon_sym_AMP] = ACTIONS(7786), + [anon_sym_EQ_EQ] = ACTIONS(7788), + [anon_sym_BANG_EQ] = ACTIONS(7788), + [anon_sym_GT] = ACTIONS(7786), + [anon_sym_GT_EQ] = ACTIONS(7786), + [anon_sym_LT_EQ] = ACTIONS(7786), + [anon_sym_LT] = ACTIONS(7786), + [anon_sym_LT_LT] = ACTIONS(7786), + [anon_sym_GT_GT] = ACTIONS(7786), + [anon_sym___extension__] = ACTIONS(7786), + [anon_sym_COLON_COLON] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7786), + [anon_sym_EQ] = ACTIONS(7786), + [anon_sym_const] = ACTIONS(7786), + [anon_sym_constexpr] = ACTIONS(7786), + [anon_sym_volatile] = ACTIONS(7786), + [anon_sym_restrict] = ACTIONS(7786), + [anon_sym___restrict__] = ACTIONS(7786), + [anon_sym__Atomic] = ACTIONS(7786), + [anon_sym__Noreturn] = ACTIONS(7786), + [anon_sym_noreturn] = ACTIONS(7786), + [anon_sym__Nonnull] = ACTIONS(7786), + [anon_sym_mutable] = ACTIONS(7786), + [anon_sym_constinit] = ACTIONS(7786), + [anon_sym_consteval] = ACTIONS(7786), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7788), + [anon_sym_STAR_EQ] = ACTIONS(7788), + [anon_sym_SLASH_EQ] = ACTIONS(7788), + [anon_sym_PERCENT_EQ] = ACTIONS(7788), + [anon_sym_PLUS_EQ] = ACTIONS(7788), + [anon_sym_DASH_EQ] = ACTIONS(7788), + [anon_sym_LT_LT_EQ] = ACTIONS(7788), + [anon_sym_GT_GT_EQ] = ACTIONS(7786), + [anon_sym_AMP_EQ] = ACTIONS(7788), + [anon_sym_CARET_EQ] = ACTIONS(7788), + [anon_sym_PIPE_EQ] = ACTIONS(7788), + [anon_sym_and_eq] = ACTIONS(7786), + [anon_sym_or_eq] = ACTIONS(7786), + [anon_sym_xor_eq] = ACTIONS(7786), + [anon_sym_LT_EQ_GT] = ACTIONS(7788), + [anon_sym_or] = ACTIONS(7786), + [anon_sym_and] = ACTIONS(7786), + [anon_sym_bitor] = ACTIONS(7786), + [anon_sym_xor] = ACTIONS(7786), + [anon_sym_bitand] = ACTIONS(7786), + [anon_sym_not_eq] = ACTIONS(7786), + [anon_sym_DASH_DASH] = ACTIONS(7788), + [anon_sym_PLUS_PLUS] = ACTIONS(7788), + [anon_sym_DOT] = ACTIONS(7786), + [anon_sym_DOT_STAR] = ACTIONS(7788), + [anon_sym_DASH_GT] = ACTIONS(7788), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7786), + [anon_sym_final] = ACTIONS(7786), + [anon_sym_override] = ACTIONS(7786), + [anon_sym_template] = ACTIONS(7786), + [anon_sym_GT2] = ACTIONS(7788), + [anon_sym_requires] = ACTIONS(7786), + [anon_sym_LBRACK_COLON] = ACTIONS(7788), }, - [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), + [STATE(2989)] = { + [sym_identifier] = ACTIONS(7806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7808), + [anon_sym_COMMA] = ACTIONS(7808), + [anon_sym_LPAREN2] = ACTIONS(7808), + [anon_sym_DASH] = ACTIONS(7806), + [anon_sym_PLUS] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7806), + [anon_sym_SLASH] = ACTIONS(7806), + [anon_sym_PERCENT] = ACTIONS(7806), + [anon_sym_PIPE_PIPE] = ACTIONS(7808), + [anon_sym_AMP_AMP] = ACTIONS(7808), + [anon_sym_PIPE] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7806), + [anon_sym_AMP] = ACTIONS(7806), + [anon_sym_EQ_EQ] = ACTIONS(7808), + [anon_sym_BANG_EQ] = ACTIONS(7808), + [anon_sym_GT] = ACTIONS(7806), + [anon_sym_GT_EQ] = ACTIONS(7806), + [anon_sym_LT_EQ] = ACTIONS(7806), + [anon_sym_LT] = ACTIONS(7806), + [anon_sym_LT_LT] = ACTIONS(7806), + [anon_sym_GT_GT] = ACTIONS(7806), + [anon_sym___extension__] = ACTIONS(7806), + [anon_sym_COLON_COLON] = ACTIONS(7808), + [anon_sym_LBRACK] = ACTIONS(7806), + [anon_sym_EQ] = ACTIONS(7806), + [anon_sym_const] = ACTIONS(7806), + [anon_sym_constexpr] = ACTIONS(7806), + [anon_sym_volatile] = ACTIONS(7806), + [anon_sym_restrict] = ACTIONS(7806), + [anon_sym___restrict__] = ACTIONS(7806), + [anon_sym__Atomic] = ACTIONS(7806), + [anon_sym__Noreturn] = ACTIONS(7806), + [anon_sym_noreturn] = ACTIONS(7806), + [anon_sym__Nonnull] = ACTIONS(7806), + [anon_sym_mutable] = ACTIONS(7806), + [anon_sym_constinit] = ACTIONS(7806), + [anon_sym_consteval] = ACTIONS(7806), + [anon_sym_alignas] = ACTIONS(7806), + [anon_sym__Alignas] = ACTIONS(7806), + [anon_sym_QMARK] = ACTIONS(7808), + [anon_sym_STAR_EQ] = ACTIONS(7808), + [anon_sym_SLASH_EQ] = ACTIONS(7808), + [anon_sym_PERCENT_EQ] = ACTIONS(7808), + [anon_sym_PLUS_EQ] = ACTIONS(7808), + [anon_sym_DASH_EQ] = ACTIONS(7808), + [anon_sym_LT_LT_EQ] = ACTIONS(7808), + [anon_sym_GT_GT_EQ] = ACTIONS(7806), + [anon_sym_AMP_EQ] = ACTIONS(7808), + [anon_sym_CARET_EQ] = ACTIONS(7808), + [anon_sym_PIPE_EQ] = ACTIONS(7808), + [anon_sym_and_eq] = ACTIONS(7806), + [anon_sym_or_eq] = ACTIONS(7806), + [anon_sym_xor_eq] = ACTIONS(7806), + [anon_sym_LT_EQ_GT] = ACTIONS(7808), + [anon_sym_or] = ACTIONS(7806), + [anon_sym_and] = ACTIONS(7806), + [anon_sym_bitor] = ACTIONS(7806), + [anon_sym_xor] = ACTIONS(7806), + [anon_sym_bitand] = ACTIONS(7806), + [anon_sym_not_eq] = ACTIONS(7806), + [anon_sym_DASH_DASH] = ACTIONS(7808), + [anon_sym_PLUS_PLUS] = ACTIONS(7808), + [anon_sym_DOT] = ACTIONS(7806), + [anon_sym_DOT_STAR] = ACTIONS(7808), + [anon_sym_DASH_GT] = ACTIONS(7808), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7806), + [anon_sym_final] = ACTIONS(7806), + [anon_sym_override] = ACTIONS(7806), + [anon_sym_template] = ACTIONS(7806), + [anon_sym_GT2] = ACTIONS(7808), + [anon_sym_requires] = ACTIONS(7806), + [anon_sym_LBRACK_COLON] = ACTIONS(7808), }, - [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), + [STATE(2990)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6819), + [anon_sym_SLASH_EQ] = ACTIONS(6819), + [anon_sym_PERCENT_EQ] = ACTIONS(6819), + [anon_sym_PLUS_EQ] = ACTIONS(6819), + [anon_sym_DASH_EQ] = ACTIONS(6819), + [anon_sym_LT_LT_EQ] = ACTIONS(6819), + [anon_sym_GT_GT_EQ] = ACTIONS(6819), + [anon_sym_AMP_EQ] = ACTIONS(6819), + [anon_sym_CARET_EQ] = ACTIONS(6819), + [anon_sym_PIPE_EQ] = ACTIONS(6819), + [anon_sym_and_eq] = ACTIONS(6826), + [anon_sym_or_eq] = ACTIONS(6826), + [anon_sym_xor_eq] = ACTIONS(6826), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6826), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6819), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, - [STATE(3005)] = { + [STATE(2991)] = { + [sym_identifier] = ACTIONS(7850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7852), + [anon_sym_COMMA] = ACTIONS(7852), + [anon_sym_LPAREN2] = ACTIONS(7852), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_PLUS] = ACTIONS(7850), + [anon_sym_STAR] = ACTIONS(7850), + [anon_sym_SLASH] = ACTIONS(7850), + [anon_sym_PERCENT] = ACTIONS(7850), + [anon_sym_PIPE_PIPE] = ACTIONS(7852), + [anon_sym_AMP_AMP] = ACTIONS(7852), + [anon_sym_PIPE] = ACTIONS(7850), + [anon_sym_CARET] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7850), + [anon_sym_EQ_EQ] = ACTIONS(7852), + [anon_sym_BANG_EQ] = ACTIONS(7852), + [anon_sym_GT] = ACTIONS(7850), + [anon_sym_GT_EQ] = ACTIONS(7850), + [anon_sym_LT_EQ] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(7850), + [anon_sym_LT_LT] = ACTIONS(7850), + [anon_sym_GT_GT] = ACTIONS(7850), + [anon_sym___extension__] = ACTIONS(7850), + [anon_sym_COLON_COLON] = ACTIONS(7852), + [anon_sym_LBRACK] = ACTIONS(7850), + [anon_sym_EQ] = ACTIONS(7850), + [anon_sym_const] = ACTIONS(7850), + [anon_sym_constexpr] = ACTIONS(7850), + [anon_sym_volatile] = ACTIONS(7850), + [anon_sym_restrict] = ACTIONS(7850), + [anon_sym___restrict__] = ACTIONS(7850), + [anon_sym__Atomic] = ACTIONS(7850), + [anon_sym__Noreturn] = ACTIONS(7850), + [anon_sym_noreturn] = ACTIONS(7850), + [anon_sym__Nonnull] = ACTIONS(7850), + [anon_sym_mutable] = ACTIONS(7850), + [anon_sym_constinit] = ACTIONS(7850), + [anon_sym_consteval] = ACTIONS(7850), + [anon_sym_alignas] = ACTIONS(7850), + [anon_sym__Alignas] = ACTIONS(7850), + [anon_sym_QMARK] = ACTIONS(7852), + [anon_sym_STAR_EQ] = ACTIONS(7852), + [anon_sym_SLASH_EQ] = ACTIONS(7852), + [anon_sym_PERCENT_EQ] = ACTIONS(7852), + [anon_sym_PLUS_EQ] = ACTIONS(7852), + [anon_sym_DASH_EQ] = ACTIONS(7852), + [anon_sym_LT_LT_EQ] = ACTIONS(7852), + [anon_sym_GT_GT_EQ] = ACTIONS(7850), + [anon_sym_AMP_EQ] = ACTIONS(7852), + [anon_sym_CARET_EQ] = ACTIONS(7852), + [anon_sym_PIPE_EQ] = ACTIONS(7852), + [anon_sym_and_eq] = ACTIONS(7850), + [anon_sym_or_eq] = ACTIONS(7850), + [anon_sym_xor_eq] = ACTIONS(7850), + [anon_sym_LT_EQ_GT] = ACTIONS(7852), + [anon_sym_or] = ACTIONS(7850), + [anon_sym_and] = ACTIONS(7850), + [anon_sym_bitor] = ACTIONS(7850), + [anon_sym_xor] = ACTIONS(7850), + [anon_sym_bitand] = ACTIONS(7850), + [anon_sym_not_eq] = ACTIONS(7850), + [anon_sym_DASH_DASH] = ACTIONS(7852), + [anon_sym_PLUS_PLUS] = ACTIONS(7852), + [anon_sym_DOT] = ACTIONS(7850), + [anon_sym_DOT_STAR] = ACTIONS(7852), + [anon_sym_DASH_GT] = ACTIONS(7852), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7850), + [anon_sym_final] = ACTIONS(7850), + [anon_sym_override] = ACTIONS(7850), + [anon_sym_template] = ACTIONS(7850), + [anon_sym_GT2] = ACTIONS(7852), + [anon_sym_requires] = ACTIONS(7850), + [anon_sym_LBRACK_COLON] = ACTIONS(7852), + }, + [STATE(2992)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3025), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7183), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7183), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7183), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7183), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(8867), + [anon_sym_unsigned] = ACTIONS(8867), + [anon_sym_long] = ACTIONS(8867), + [anon_sym_short] = ACTIONS(8867), + [anon_sym_LBRACK] = ACTIONS(7186), + [anon_sym_EQ] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_STAR_EQ] = ACTIONS(7186), + [anon_sym_SLASH_EQ] = ACTIONS(7186), + [anon_sym_PERCENT_EQ] = ACTIONS(7186), + [anon_sym_PLUS_EQ] = ACTIONS(7186), + [anon_sym_DASH_EQ] = ACTIONS(7186), + [anon_sym_LT_LT_EQ] = ACTIONS(7186), + [anon_sym_GT_GT_EQ] = ACTIONS(7186), + [anon_sym_AMP_EQ] = ACTIONS(7186), + [anon_sym_CARET_EQ] = ACTIONS(7186), + [anon_sym_PIPE_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7186), + }, + [STATE(2993)] = { + [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), @@ -394094,29 +403450,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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___extension__] = ACTIONS(7771), + [anon_sym_COLON_COLON] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7771), [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_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), @@ -394124,765 +403480,798 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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(7773), + [anon_sym_bitor] = ACTIONS(7771), [anon_sym_xor] = ACTIONS(7771), - [anon_sym_bitand] = ACTIONS(7773), - [anon_sym_not_eq] = ACTIONS(7773), + [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(7771), + [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), - [anon_sym_DASH_GT_STAR] = ACTIONS(7773), + [anon_sym_decltype] = ACTIONS(7771), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_template] = ACTIONS(7771), + [anon_sym_GT2] = ACTIONS(7773), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_LBRACK_COLON] = ACTIONS(7773), }, - [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), + [STATE(2994)] = { + [sym_identifier] = ACTIONS(7710), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7712), + [anon_sym_COMMA] = ACTIONS(7712), + [anon_sym_LPAREN2] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7710), + [anon_sym_STAR] = ACTIONS(7710), + [anon_sym_SLASH] = ACTIONS(7710), + [anon_sym_PERCENT] = ACTIONS(7710), + [anon_sym_PIPE_PIPE] = ACTIONS(7712), + [anon_sym_AMP_AMP] = ACTIONS(7712), + [anon_sym_PIPE] = ACTIONS(7710), + [anon_sym_CARET] = ACTIONS(7710), + [anon_sym_AMP] = ACTIONS(7710), + [anon_sym_EQ_EQ] = ACTIONS(7712), + [anon_sym_BANG_EQ] = ACTIONS(7712), + [anon_sym_GT] = ACTIONS(7710), + [anon_sym_GT_EQ] = ACTIONS(7710), + [anon_sym_LT_EQ] = ACTIONS(7710), + [anon_sym_LT] = ACTIONS(7710), + [anon_sym_LT_LT] = ACTIONS(7710), + [anon_sym_GT_GT] = ACTIONS(7710), + [anon_sym___extension__] = ACTIONS(7710), + [anon_sym_COLON_COLON] = ACTIONS(7712), + [anon_sym_LBRACK] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(7710), + [anon_sym_const] = ACTIONS(7710), + [anon_sym_constexpr] = ACTIONS(7710), + [anon_sym_volatile] = ACTIONS(7710), + [anon_sym_restrict] = ACTIONS(7710), + [anon_sym___restrict__] = ACTIONS(7710), + [anon_sym__Atomic] = ACTIONS(7710), + [anon_sym__Noreturn] = ACTIONS(7710), + [anon_sym_noreturn] = ACTIONS(7710), + [anon_sym__Nonnull] = ACTIONS(7710), + [anon_sym_mutable] = ACTIONS(7710), + [anon_sym_constinit] = ACTIONS(7710), + [anon_sym_consteval] = ACTIONS(7710), + [anon_sym_alignas] = ACTIONS(7710), + [anon_sym__Alignas] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [anon_sym_STAR_EQ] = ACTIONS(7712), + [anon_sym_SLASH_EQ] = ACTIONS(7712), + [anon_sym_PERCENT_EQ] = ACTIONS(7712), + [anon_sym_PLUS_EQ] = ACTIONS(7712), + [anon_sym_DASH_EQ] = ACTIONS(7712), + [anon_sym_LT_LT_EQ] = ACTIONS(7712), + [anon_sym_GT_GT_EQ] = ACTIONS(7710), + [anon_sym_AMP_EQ] = ACTIONS(7712), + [anon_sym_CARET_EQ] = ACTIONS(7712), + [anon_sym_PIPE_EQ] = ACTIONS(7712), + [anon_sym_and_eq] = ACTIONS(7710), + [anon_sym_or_eq] = ACTIONS(7710), + [anon_sym_xor_eq] = ACTIONS(7710), + [anon_sym_LT_EQ_GT] = ACTIONS(7712), + [anon_sym_or] = ACTIONS(7710), + [anon_sym_and] = ACTIONS(7710), + [anon_sym_bitor] = ACTIONS(7710), + [anon_sym_xor] = ACTIONS(7710), + [anon_sym_bitand] = ACTIONS(7710), + [anon_sym_not_eq] = ACTIONS(7710), + [anon_sym_DASH_DASH] = ACTIONS(7712), + [anon_sym_PLUS_PLUS] = ACTIONS(7712), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_DOT_STAR] = ACTIONS(7712), + [anon_sym_DASH_GT] = ACTIONS(7712), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7710), + [anon_sym_final] = ACTIONS(7710), + [anon_sym_override] = ACTIONS(7710), + [anon_sym_template] = ACTIONS(7710), + [anon_sym_GT2] = ACTIONS(7712), + [anon_sym_requires] = ACTIONS(7710), + [anon_sym_LBRACK_COLON] = ACTIONS(7712), }, - [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), + [STATE(2995)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7718), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7718), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_GT2] = ACTIONS(7720), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), }, - [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), + [STATE(2996)] = { + [sym_identifier] = ACTIONS(7735), + [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(7735), + [anon_sym_COLON_COLON] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7735), + [anon_sym_EQ] = ACTIONS(7735), + [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), + [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(7735), + [anon_sym_or_eq] = ACTIONS(7735), + [anon_sym_xor_eq] = ACTIONS(7735), + [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_decltype] = ACTIONS(7735), + [anon_sym_final] = ACTIONS(7735), + [anon_sym_override] = ACTIONS(7735), + [anon_sym_template] = ACTIONS(7735), + [anon_sym_GT2] = ACTIONS(7737), + [anon_sym_requires] = ACTIONS(7735), + [anon_sym_LBRACK_COLON] = 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), + [STATE(2997)] = { + [sym_identifier] = ACTIONS(7763), + [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(7763), + [anon_sym_COLON_COLON] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7763), + [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(7763), + [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), [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_decltype] = ACTIONS(7763), + [anon_sym_final] = ACTIONS(7763), + [anon_sym_override] = ACTIONS(7763), + [anon_sym_template] = ACTIONS(7763), + [anon_sym_GT2] = ACTIONS(7765), + [anon_sym_requires] = ACTIONS(7763), + [anon_sym_LBRACK_COLON] = ACTIONS(7765), }, - [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), + [STATE(2998)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7718), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7718), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_GT2] = ACTIONS(7720), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), }, - [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), + [STATE(2999)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7718), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7718), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_GT2] = ACTIONS(7720), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), }, - [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), + [STATE(3000)] = { + [sym_identifier] = ACTIONS(7747), + [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(7747), + [anon_sym_COLON_COLON] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7747), + [anon_sym_EQ] = ACTIONS(7747), + [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), + [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(7747), + [anon_sym_or_eq] = ACTIONS(7747), + [anon_sym_xor_eq] = ACTIONS(7747), + [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_decltype] = ACTIONS(7747), + [anon_sym_final] = ACTIONS(7747), + [anon_sym_override] = ACTIONS(7747), + [anon_sym_template] = ACTIONS(7747), + [anon_sym_GT2] = ACTIONS(7749), + [anon_sym_requires] = ACTIONS(7747), + [anon_sym_LBRACK_COLON] = ACTIONS(7749), }, - [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), + [STATE(3001)] = { + [sym_identifier] = ACTIONS(7755), + [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(7755), + [anon_sym_COLON_COLON] = ACTIONS(7757), + [anon_sym_LBRACK] = ACTIONS(7755), + [anon_sym_EQ] = ACTIONS(7755), + [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_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(7755), + [anon_sym_or_eq] = ACTIONS(7755), + [anon_sym_xor_eq] = ACTIONS(7755), + [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_decltype] = ACTIONS(7755), + [anon_sym_final] = ACTIONS(7755), + [anon_sym_override] = ACTIONS(7755), + [anon_sym_template] = ACTIONS(7755), + [anon_sym_GT2] = ACTIONS(7757), + [anon_sym_requires] = ACTIONS(7755), + [anon_sym_LBRACK_COLON] = ACTIONS(7757), }, - [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), + [STATE(3002)] = { + [sym_attribute_specifier] = STATE(3155), + [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(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(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7672), + [anon_sym_COLON_COLON] = ACTIONS(7674), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_RBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = 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_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_decltype] = ACTIONS(7672), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_template] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_LBRACK_COLON] = ACTIONS(7674), + [anon_sym_COLON_RBRACK] = ACTIONS(7674), }, - [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), + [STATE(3003)] = { + [sym_identifier] = ACTIONS(7775), + [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(7775), + [anon_sym_COLON_COLON] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7775), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7775), + [anon_sym_volatile] = ACTIONS(7775), + [anon_sym_restrict] = ACTIONS(7775), + [anon_sym___restrict__] = ACTIONS(7775), + [anon_sym__Atomic] = ACTIONS(7775), + [anon_sym__Noreturn] = ACTIONS(7775), + [anon_sym_noreturn] = ACTIONS(7775), + [anon_sym__Nonnull] = ACTIONS(7775), + [anon_sym_mutable] = ACTIONS(7775), + [anon_sym_constinit] = ACTIONS(7775), + [anon_sym_consteval] = ACTIONS(7775), + [anon_sym_alignas] = ACTIONS(7775), + [anon_sym__Alignas] = ACTIONS(7775), + [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(7775), + [anon_sym_or_eq] = ACTIONS(7775), + [anon_sym_xor_eq] = ACTIONS(7775), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7775), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7775), + [anon_sym_not_eq] = ACTIONS(7775), + [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), - [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_decltype] = ACTIONS(7775), + [anon_sym_final] = ACTIONS(7775), + [anon_sym_override] = ACTIONS(7775), + [anon_sym_template] = ACTIONS(7775), + [anon_sym_GT2] = ACTIONS(7777), + [anon_sym_requires] = ACTIONS(7775), + [anon_sym_LBRACK_COLON] = ACTIONS(7777), }, - [STATE(3016)] = { + [STATE(3004)] = { + [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), @@ -394897,29 +404286,29 @@ 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), [anon_sym_GT_GT] = ACTIONS(7779), - [anon_sym___extension__] = ACTIONS(7781), - [anon_sym_LBRACE] = ACTIONS(7781), - [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym___extension__] = ACTIONS(7779), + [anon_sym_COLON_COLON] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7779), [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_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), [anon_sym_QMARK] = ACTIONS(7781), [anon_sym_STAR_EQ] = ACTIONS(7781), [anon_sym_SLASH_EQ] = ACTIONS(7781), @@ -394927,2298 +404316,2622 @@ 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), - [anon_sym_and_eq] = ACTIONS(7781), - [anon_sym_or_eq] = ACTIONS(7781), - [anon_sym_xor_eq] = ACTIONS(7781), + [anon_sym_and_eq] = ACTIONS(7779), + [anon_sym_or_eq] = ACTIONS(7779), + [anon_sym_xor_eq] = ACTIONS(7779), [anon_sym_LT_EQ_GT] = ACTIONS(7781), [anon_sym_or] = ACTIONS(7779), [anon_sym_and] = ACTIONS(7779), - [anon_sym_bitor] = ACTIONS(7781), + [anon_sym_bitor] = ACTIONS(7779), [anon_sym_xor] = ACTIONS(7779), - [anon_sym_bitand] = ACTIONS(7781), - [anon_sym_not_eq] = ACTIONS(7781), + [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(7779), + [anon_sym_DASH_GT] = ACTIONS(7781), [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), + [anon_sym_decltype] = ACTIONS(7779), + [anon_sym_final] = ACTIONS(7779), + [anon_sym_override] = ACTIONS(7779), + [anon_sym_template] = ACTIONS(7779), + [anon_sym_GT2] = ACTIONS(7781), + [anon_sym_requires] = ACTIONS(7779), + [anon_sym_LBRACK_COLON] = ACTIONS(7781), + }, + [STATE(3005)] = { + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7794), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7794), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_and_eq] = ACTIONS(7794), + [anon_sym_or_eq] = ACTIONS(7794), + [anon_sym_xor_eq] = ACTIONS(7794), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_GT2] = ACTIONS(7796), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), + }, + [STATE(3006)] = { + [sym_identifier] = ACTIONS(7798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7800), + [anon_sym_COMMA] = ACTIONS(7800), + [anon_sym_LPAREN2] = ACTIONS(7800), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_PLUS] = ACTIONS(7798), + [anon_sym_STAR] = ACTIONS(7798), + [anon_sym_SLASH] = ACTIONS(7798), + [anon_sym_PERCENT] = ACTIONS(7798), + [anon_sym_PIPE_PIPE] = ACTIONS(7800), + [anon_sym_AMP_AMP] = ACTIONS(7800), + [anon_sym_PIPE] = ACTIONS(7798), + [anon_sym_CARET] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7798), + [anon_sym_EQ_EQ] = ACTIONS(7800), + [anon_sym_BANG_EQ] = ACTIONS(7800), + [anon_sym_GT] = ACTIONS(7798), + [anon_sym_GT_EQ] = ACTIONS(7798), + [anon_sym_LT_EQ] = ACTIONS(7798), + [anon_sym_LT] = ACTIONS(7798), + [anon_sym_LT_LT] = ACTIONS(7798), + [anon_sym_GT_GT] = ACTIONS(7798), + [anon_sym___extension__] = ACTIONS(7798), + [anon_sym_COLON_COLON] = ACTIONS(7800), + [anon_sym_LBRACK] = ACTIONS(7798), + [anon_sym_EQ] = ACTIONS(7798), + [anon_sym_const] = ACTIONS(7798), + [anon_sym_constexpr] = ACTIONS(7798), + [anon_sym_volatile] = ACTIONS(7798), + [anon_sym_restrict] = ACTIONS(7798), + [anon_sym___restrict__] = ACTIONS(7798), + [anon_sym__Atomic] = ACTIONS(7798), + [anon_sym__Noreturn] = ACTIONS(7798), + [anon_sym_noreturn] = ACTIONS(7798), + [anon_sym__Nonnull] = ACTIONS(7798), + [anon_sym_mutable] = ACTIONS(7798), + [anon_sym_constinit] = ACTIONS(7798), + [anon_sym_consteval] = ACTIONS(7798), + [anon_sym_alignas] = ACTIONS(7798), + [anon_sym__Alignas] = ACTIONS(7798), + [anon_sym_QMARK] = ACTIONS(7800), + [anon_sym_STAR_EQ] = ACTIONS(7800), + [anon_sym_SLASH_EQ] = ACTIONS(7800), + [anon_sym_PERCENT_EQ] = ACTIONS(7800), + [anon_sym_PLUS_EQ] = ACTIONS(7800), + [anon_sym_DASH_EQ] = ACTIONS(7800), + [anon_sym_LT_LT_EQ] = ACTIONS(7800), + [anon_sym_GT_GT_EQ] = ACTIONS(7798), + [anon_sym_AMP_EQ] = ACTIONS(7800), + [anon_sym_CARET_EQ] = ACTIONS(7800), + [anon_sym_PIPE_EQ] = ACTIONS(7800), + [anon_sym_and_eq] = ACTIONS(7798), + [anon_sym_or_eq] = ACTIONS(7798), + [anon_sym_xor_eq] = ACTIONS(7798), + [anon_sym_LT_EQ_GT] = ACTIONS(7800), + [anon_sym_or] = ACTIONS(7798), + [anon_sym_and] = ACTIONS(7798), + [anon_sym_bitor] = ACTIONS(7798), + [anon_sym_xor] = ACTIONS(7798), + [anon_sym_bitand] = ACTIONS(7798), + [anon_sym_not_eq] = ACTIONS(7798), + [anon_sym_DASH_DASH] = ACTIONS(7800), + [anon_sym_PLUS_PLUS] = ACTIONS(7800), + [anon_sym_DOT] = ACTIONS(7798), + [anon_sym_DOT_STAR] = ACTIONS(7800), + [anon_sym_DASH_GT] = ACTIONS(7800), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7798), + [anon_sym_final] = ACTIONS(7798), + [anon_sym_override] = ACTIONS(7798), + [anon_sym_template] = ACTIONS(7798), + [anon_sym_GT2] = ACTIONS(7800), + [anon_sym_requires] = ACTIONS(7798), + [anon_sym_LBRACK_COLON] = ACTIONS(7800), + }, + [STATE(3007)] = { + [sym_identifier] = ACTIONS(7802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7804), + [anon_sym_COMMA] = ACTIONS(7804), + [anon_sym_LPAREN2] = ACTIONS(7804), + [anon_sym_DASH] = ACTIONS(7802), + [anon_sym_PLUS] = ACTIONS(7802), + [anon_sym_STAR] = ACTIONS(7802), + [anon_sym_SLASH] = ACTIONS(7802), + [anon_sym_PERCENT] = ACTIONS(7802), + [anon_sym_PIPE_PIPE] = ACTIONS(7804), + [anon_sym_AMP_AMP] = ACTIONS(7804), + [anon_sym_PIPE] = ACTIONS(7802), + [anon_sym_CARET] = ACTIONS(7802), + [anon_sym_AMP] = ACTIONS(7802), + [anon_sym_EQ_EQ] = ACTIONS(7804), + [anon_sym_BANG_EQ] = ACTIONS(7804), + [anon_sym_GT] = ACTIONS(7802), + [anon_sym_GT_EQ] = ACTIONS(7802), + [anon_sym_LT_EQ] = ACTIONS(7802), + [anon_sym_LT] = ACTIONS(7802), + [anon_sym_LT_LT] = ACTIONS(7802), + [anon_sym_GT_GT] = ACTIONS(7802), + [anon_sym___extension__] = ACTIONS(7802), + [anon_sym_COLON_COLON] = ACTIONS(7804), + [anon_sym_LBRACK] = ACTIONS(7802), + [anon_sym_EQ] = ACTIONS(7802), + [anon_sym_const] = ACTIONS(7802), + [anon_sym_constexpr] = ACTIONS(7802), + [anon_sym_volatile] = ACTIONS(7802), + [anon_sym_restrict] = ACTIONS(7802), + [anon_sym___restrict__] = ACTIONS(7802), + [anon_sym__Atomic] = ACTIONS(7802), + [anon_sym__Noreturn] = ACTIONS(7802), + [anon_sym_noreturn] = ACTIONS(7802), + [anon_sym__Nonnull] = ACTIONS(7802), + [anon_sym_mutable] = ACTIONS(7802), + [anon_sym_constinit] = ACTIONS(7802), + [anon_sym_consteval] = ACTIONS(7802), + [anon_sym_alignas] = ACTIONS(7802), + [anon_sym__Alignas] = ACTIONS(7802), + [anon_sym_QMARK] = ACTIONS(7804), + [anon_sym_STAR_EQ] = ACTIONS(7804), + [anon_sym_SLASH_EQ] = ACTIONS(7804), + [anon_sym_PERCENT_EQ] = ACTIONS(7804), + [anon_sym_PLUS_EQ] = ACTIONS(7804), + [anon_sym_DASH_EQ] = ACTIONS(7804), + [anon_sym_LT_LT_EQ] = ACTIONS(7804), + [anon_sym_GT_GT_EQ] = ACTIONS(7802), + [anon_sym_AMP_EQ] = ACTIONS(7804), + [anon_sym_CARET_EQ] = ACTIONS(7804), + [anon_sym_PIPE_EQ] = ACTIONS(7804), + [anon_sym_and_eq] = ACTIONS(7802), + [anon_sym_or_eq] = ACTIONS(7802), + [anon_sym_xor_eq] = ACTIONS(7802), + [anon_sym_LT_EQ_GT] = ACTIONS(7804), + [anon_sym_or] = ACTIONS(7802), + [anon_sym_and] = ACTIONS(7802), + [anon_sym_bitor] = ACTIONS(7802), + [anon_sym_xor] = ACTIONS(7802), + [anon_sym_bitand] = ACTIONS(7802), + [anon_sym_not_eq] = ACTIONS(7802), + [anon_sym_DASH_DASH] = ACTIONS(7804), + [anon_sym_PLUS_PLUS] = ACTIONS(7804), + [anon_sym_DOT] = ACTIONS(7802), + [anon_sym_DOT_STAR] = ACTIONS(7804), + [anon_sym_DASH_GT] = ACTIONS(7804), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7802), + [anon_sym_final] = ACTIONS(7802), + [anon_sym_override] = ACTIONS(7802), + [anon_sym_template] = ACTIONS(7802), + [anon_sym_GT2] = ACTIONS(7804), + [anon_sym_requires] = ACTIONS(7802), + [anon_sym_LBRACK_COLON] = ACTIONS(7804), + }, + [STATE(3008)] = { + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7794), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7794), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_and_eq] = ACTIONS(7794), + [anon_sym_or_eq] = ACTIONS(7794), + [anon_sym_xor_eq] = ACTIONS(7794), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_GT2] = ACTIONS(7796), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), + }, + [STATE(3009)] = { + [sym_identifier] = ACTIONS(7810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7812), + [anon_sym_COMMA] = ACTIONS(7812), + [anon_sym_LPAREN2] = ACTIONS(7812), + [anon_sym_DASH] = ACTIONS(7810), + [anon_sym_PLUS] = ACTIONS(7810), + [anon_sym_STAR] = ACTIONS(7810), + [anon_sym_SLASH] = ACTIONS(7810), + [anon_sym_PERCENT] = ACTIONS(7810), + [anon_sym_PIPE_PIPE] = ACTIONS(7812), + [anon_sym_AMP_AMP] = ACTIONS(7812), + [anon_sym_PIPE] = ACTIONS(7810), + [anon_sym_CARET] = ACTIONS(7810), + [anon_sym_AMP] = ACTIONS(7810), + [anon_sym_EQ_EQ] = ACTIONS(7812), + [anon_sym_BANG_EQ] = ACTIONS(7812), + [anon_sym_GT] = ACTIONS(7810), + [anon_sym_GT_EQ] = ACTIONS(7810), + [anon_sym_LT_EQ] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(7810), + [anon_sym_LT_LT] = ACTIONS(7810), + [anon_sym_GT_GT] = ACTIONS(7810), + [anon_sym___extension__] = ACTIONS(7810), + [anon_sym_COLON_COLON] = ACTIONS(7812), + [anon_sym_LBRACK] = ACTIONS(7810), + [anon_sym_EQ] = ACTIONS(7810), + [anon_sym_const] = ACTIONS(7810), + [anon_sym_constexpr] = ACTIONS(7810), + [anon_sym_volatile] = ACTIONS(7810), + [anon_sym_restrict] = ACTIONS(7810), + [anon_sym___restrict__] = ACTIONS(7810), + [anon_sym__Atomic] = ACTIONS(7810), + [anon_sym__Noreturn] = ACTIONS(7810), + [anon_sym_noreturn] = ACTIONS(7810), + [anon_sym__Nonnull] = ACTIONS(7810), + [anon_sym_mutable] = ACTIONS(7810), + [anon_sym_constinit] = ACTIONS(7810), + [anon_sym_consteval] = ACTIONS(7810), + [anon_sym_alignas] = ACTIONS(7810), + [anon_sym__Alignas] = ACTIONS(7810), + [anon_sym_QMARK] = ACTIONS(7812), + [anon_sym_STAR_EQ] = ACTIONS(7812), + [anon_sym_SLASH_EQ] = ACTIONS(7812), + [anon_sym_PERCENT_EQ] = ACTIONS(7812), + [anon_sym_PLUS_EQ] = ACTIONS(7812), + [anon_sym_DASH_EQ] = ACTIONS(7812), + [anon_sym_LT_LT_EQ] = ACTIONS(7812), + [anon_sym_GT_GT_EQ] = ACTIONS(7810), + [anon_sym_AMP_EQ] = ACTIONS(7812), + [anon_sym_CARET_EQ] = ACTIONS(7812), + [anon_sym_PIPE_EQ] = ACTIONS(7812), + [anon_sym_and_eq] = ACTIONS(7810), + [anon_sym_or_eq] = ACTIONS(7810), + [anon_sym_xor_eq] = ACTIONS(7810), + [anon_sym_LT_EQ_GT] = ACTIONS(7812), + [anon_sym_or] = ACTIONS(7810), + [anon_sym_and] = ACTIONS(7810), + [anon_sym_bitor] = ACTIONS(7810), + [anon_sym_xor] = ACTIONS(7810), + [anon_sym_bitand] = ACTIONS(7810), + [anon_sym_not_eq] = ACTIONS(7810), + [anon_sym_DASH_DASH] = ACTIONS(7812), + [anon_sym_PLUS_PLUS] = ACTIONS(7812), + [anon_sym_DOT] = ACTIONS(7810), + [anon_sym_DOT_STAR] = ACTIONS(7812), + [anon_sym_DASH_GT] = ACTIONS(7812), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7810), + [anon_sym_final] = ACTIONS(7810), + [anon_sym_override] = ACTIONS(7810), + [anon_sym_template] = ACTIONS(7810), + [anon_sym_GT2] = ACTIONS(7812), + [anon_sym_requires] = ACTIONS(7810), + [anon_sym_LBRACK_COLON] = ACTIONS(7812), + }, + [STATE(3010)] = { + [sym_identifier] = ACTIONS(7814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7816), + [anon_sym_COMMA] = ACTIONS(7816), + [anon_sym_LPAREN2] = ACTIONS(7816), + [anon_sym_DASH] = ACTIONS(7814), + [anon_sym_PLUS] = ACTIONS(7814), + [anon_sym_STAR] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7814), + [anon_sym_PERCENT] = ACTIONS(7814), + [anon_sym_PIPE_PIPE] = ACTIONS(7816), + [anon_sym_AMP_AMP] = ACTIONS(7816), + [anon_sym_PIPE] = ACTIONS(7814), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_AMP] = ACTIONS(7814), + [anon_sym_EQ_EQ] = ACTIONS(7816), + [anon_sym_BANG_EQ] = ACTIONS(7816), + [anon_sym_GT] = ACTIONS(7814), + [anon_sym_GT_EQ] = ACTIONS(7814), + [anon_sym_LT_EQ] = ACTIONS(7814), + [anon_sym_LT] = ACTIONS(7814), + [anon_sym_LT_LT] = ACTIONS(7814), + [anon_sym_GT_GT] = ACTIONS(7814), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym_COLON_COLON] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(7814), + [anon_sym_EQ] = ACTIONS(7814), + [anon_sym_const] = ACTIONS(7814), + [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(7814), + [anon_sym__Alignas] = ACTIONS(7814), + [anon_sym_QMARK] = ACTIONS(7816), + [anon_sym_STAR_EQ] = ACTIONS(7816), + [anon_sym_SLASH_EQ] = ACTIONS(7816), + [anon_sym_PERCENT_EQ] = ACTIONS(7816), + [anon_sym_PLUS_EQ] = ACTIONS(7816), + [anon_sym_DASH_EQ] = ACTIONS(7816), + [anon_sym_LT_LT_EQ] = ACTIONS(7816), + [anon_sym_GT_GT_EQ] = ACTIONS(7814), + [anon_sym_AMP_EQ] = ACTIONS(7816), + [anon_sym_CARET_EQ] = ACTIONS(7816), + [anon_sym_PIPE_EQ] = ACTIONS(7816), + [anon_sym_and_eq] = ACTIONS(7814), + [anon_sym_or_eq] = ACTIONS(7814), + [anon_sym_xor_eq] = ACTIONS(7814), + [anon_sym_LT_EQ_GT] = ACTIONS(7816), + [anon_sym_or] = ACTIONS(7814), + [anon_sym_and] = ACTIONS(7814), + [anon_sym_bitor] = ACTIONS(7814), + [anon_sym_xor] = ACTIONS(7814), + [anon_sym_bitand] = ACTIONS(7814), + [anon_sym_not_eq] = ACTIONS(7814), + [anon_sym_DASH_DASH] = ACTIONS(7816), + [anon_sym_PLUS_PLUS] = ACTIONS(7816), + [anon_sym_DOT] = ACTIONS(7814), + [anon_sym_DOT_STAR] = ACTIONS(7816), + [anon_sym_DASH_GT] = ACTIONS(7816), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7814), + [anon_sym_final] = ACTIONS(7814), + [anon_sym_override] = ACTIONS(7814), + [anon_sym_template] = ACTIONS(7814), + [anon_sym_GT2] = ACTIONS(7816), + [anon_sym_requires] = ACTIONS(7814), + [anon_sym_LBRACK_COLON] = ACTIONS(7816), + }, + [STATE(3011)] = { + [sym_identifier] = ACTIONS(7822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7824), + [anon_sym_COMMA] = ACTIONS(7824), + [anon_sym_LPAREN2] = ACTIONS(7824), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_PLUS] = ACTIONS(7822), + [anon_sym_STAR] = ACTIONS(7822), + [anon_sym_SLASH] = ACTIONS(7822), + [anon_sym_PERCENT] = ACTIONS(7822), + [anon_sym_PIPE_PIPE] = ACTIONS(7824), + [anon_sym_AMP_AMP] = ACTIONS(7824), + [anon_sym_PIPE] = ACTIONS(7822), + [anon_sym_CARET] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7822), + [anon_sym_EQ_EQ] = ACTIONS(7824), + [anon_sym_BANG_EQ] = ACTIONS(7824), + [anon_sym_GT] = ACTIONS(7822), + [anon_sym_GT_EQ] = ACTIONS(7822), + [anon_sym_LT_EQ] = ACTIONS(7822), + [anon_sym_LT] = ACTIONS(7822), + [anon_sym_LT_LT] = ACTIONS(7822), + [anon_sym_GT_GT] = ACTIONS(7822), + [anon_sym___extension__] = ACTIONS(7822), + [anon_sym_COLON_COLON] = ACTIONS(7824), + [anon_sym_LBRACK] = ACTIONS(7822), + [anon_sym_EQ] = ACTIONS(7822), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7822), + [anon_sym_volatile] = ACTIONS(7822), + [anon_sym_restrict] = ACTIONS(7822), + [anon_sym___restrict__] = ACTIONS(7822), + [anon_sym__Atomic] = ACTIONS(7822), + [anon_sym__Noreturn] = ACTIONS(7822), + [anon_sym_noreturn] = ACTIONS(7822), + [anon_sym__Nonnull] = ACTIONS(7822), + [anon_sym_mutable] = ACTIONS(7822), + [anon_sym_constinit] = ACTIONS(7822), + [anon_sym_consteval] = ACTIONS(7822), + [anon_sym_alignas] = ACTIONS(7822), + [anon_sym__Alignas] = ACTIONS(7822), + [anon_sym_QMARK] = ACTIONS(7824), + [anon_sym_STAR_EQ] = ACTIONS(7824), + [anon_sym_SLASH_EQ] = ACTIONS(7824), + [anon_sym_PERCENT_EQ] = ACTIONS(7824), + [anon_sym_PLUS_EQ] = ACTIONS(7824), + [anon_sym_DASH_EQ] = ACTIONS(7824), + [anon_sym_LT_LT_EQ] = ACTIONS(7824), + [anon_sym_GT_GT_EQ] = ACTIONS(7822), + [anon_sym_AMP_EQ] = ACTIONS(7824), + [anon_sym_CARET_EQ] = ACTIONS(7824), + [anon_sym_PIPE_EQ] = ACTIONS(7824), + [anon_sym_and_eq] = ACTIONS(7822), + [anon_sym_or_eq] = ACTIONS(7822), + [anon_sym_xor_eq] = ACTIONS(7822), + [anon_sym_LT_EQ_GT] = ACTIONS(7824), + [anon_sym_or] = ACTIONS(7822), + [anon_sym_and] = ACTIONS(7822), + [anon_sym_bitor] = ACTIONS(7822), + [anon_sym_xor] = ACTIONS(7822), + [anon_sym_bitand] = ACTIONS(7822), + [anon_sym_not_eq] = ACTIONS(7822), + [anon_sym_DASH_DASH] = ACTIONS(7824), + [anon_sym_PLUS_PLUS] = ACTIONS(7824), + [anon_sym_DOT] = ACTIONS(7822), + [anon_sym_DOT_STAR] = ACTIONS(7824), + [anon_sym_DASH_GT] = ACTIONS(7824), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7822), + [anon_sym_final] = ACTIONS(7822), + [anon_sym_override] = ACTIONS(7822), + [anon_sym_template] = ACTIONS(7822), + [anon_sym_GT2] = ACTIONS(7824), + [anon_sym_requires] = ACTIONS(7822), + [anon_sym_LBRACK_COLON] = ACTIONS(7824), + }, + [STATE(3012)] = { + [sym_identifier] = ACTIONS(7826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7828), + [anon_sym_COMMA] = ACTIONS(7828), + [anon_sym_LPAREN2] = ACTIONS(7828), + [anon_sym_DASH] = ACTIONS(7826), + [anon_sym_PLUS] = ACTIONS(7826), + [anon_sym_STAR] = ACTIONS(7826), + [anon_sym_SLASH] = ACTIONS(7826), + [anon_sym_PERCENT] = ACTIONS(7826), + [anon_sym_PIPE_PIPE] = ACTIONS(7828), + [anon_sym_AMP_AMP] = ACTIONS(7828), + [anon_sym_PIPE] = ACTIONS(7826), + [anon_sym_CARET] = ACTIONS(7826), + [anon_sym_AMP] = ACTIONS(7826), + [anon_sym_EQ_EQ] = ACTIONS(7828), + [anon_sym_BANG_EQ] = ACTIONS(7828), + [anon_sym_GT] = ACTIONS(7826), + [anon_sym_GT_EQ] = ACTIONS(7826), + [anon_sym_LT_EQ] = ACTIONS(7826), + [anon_sym_LT] = ACTIONS(7826), + [anon_sym_LT_LT] = ACTIONS(7826), + [anon_sym_GT_GT] = ACTIONS(7826), + [anon_sym___extension__] = ACTIONS(7826), + [anon_sym_COLON_COLON] = ACTIONS(7828), + [anon_sym_LBRACK] = ACTIONS(7826), + [anon_sym_EQ] = ACTIONS(7826), + [anon_sym_const] = ACTIONS(7826), + [anon_sym_constexpr] = ACTIONS(7826), + [anon_sym_volatile] = ACTIONS(7826), + [anon_sym_restrict] = ACTIONS(7826), + [anon_sym___restrict__] = ACTIONS(7826), + [anon_sym__Atomic] = ACTIONS(7826), + [anon_sym__Noreturn] = ACTIONS(7826), + [anon_sym_noreturn] = ACTIONS(7826), + [anon_sym__Nonnull] = ACTIONS(7826), + [anon_sym_mutable] = ACTIONS(7826), + [anon_sym_constinit] = ACTIONS(7826), + [anon_sym_consteval] = ACTIONS(7826), + [anon_sym_alignas] = ACTIONS(7826), + [anon_sym__Alignas] = ACTIONS(7826), + [anon_sym_QMARK] = ACTIONS(7828), + [anon_sym_STAR_EQ] = ACTIONS(7828), + [anon_sym_SLASH_EQ] = ACTIONS(7828), + [anon_sym_PERCENT_EQ] = ACTIONS(7828), + [anon_sym_PLUS_EQ] = ACTIONS(7828), + [anon_sym_DASH_EQ] = ACTIONS(7828), + [anon_sym_LT_LT_EQ] = ACTIONS(7828), + [anon_sym_GT_GT_EQ] = ACTIONS(7826), + [anon_sym_AMP_EQ] = ACTIONS(7828), + [anon_sym_CARET_EQ] = ACTIONS(7828), + [anon_sym_PIPE_EQ] = ACTIONS(7828), + [anon_sym_and_eq] = ACTIONS(7826), + [anon_sym_or_eq] = ACTIONS(7826), + [anon_sym_xor_eq] = ACTIONS(7826), + [anon_sym_LT_EQ_GT] = ACTIONS(7828), + [anon_sym_or] = ACTIONS(7826), + [anon_sym_and] = ACTIONS(7826), + [anon_sym_bitor] = ACTIONS(7826), + [anon_sym_xor] = ACTIONS(7826), + [anon_sym_bitand] = ACTIONS(7826), + [anon_sym_not_eq] = ACTIONS(7826), + [anon_sym_DASH_DASH] = ACTIONS(7828), + [anon_sym_PLUS_PLUS] = ACTIONS(7828), + [anon_sym_DOT] = ACTIONS(7826), + [anon_sym_DOT_STAR] = ACTIONS(7828), + [anon_sym_DASH_GT] = ACTIONS(7828), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7826), + [anon_sym_final] = ACTIONS(7826), + [anon_sym_override] = ACTIONS(7826), + [anon_sym_template] = ACTIONS(7826), + [anon_sym_GT2] = ACTIONS(7828), + [anon_sym_requires] = ACTIONS(7826), + [anon_sym_LBRACK_COLON] = ACTIONS(7828), + }, + [STATE(3013)] = { + [sym_identifier] = ACTIONS(7830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7832), + [anon_sym_COMMA] = ACTIONS(7832), + [anon_sym_LPAREN2] = ACTIONS(7832), + [anon_sym_DASH] = ACTIONS(7830), + [anon_sym_PLUS] = ACTIONS(7830), + [anon_sym_STAR] = ACTIONS(7830), + [anon_sym_SLASH] = ACTIONS(7830), + [anon_sym_PERCENT] = ACTIONS(7830), + [anon_sym_PIPE_PIPE] = ACTIONS(7832), + [anon_sym_AMP_AMP] = ACTIONS(7832), + [anon_sym_PIPE] = ACTIONS(7830), + [anon_sym_CARET] = ACTIONS(7830), + [anon_sym_AMP] = ACTIONS(7830), + [anon_sym_EQ_EQ] = ACTIONS(7832), + [anon_sym_BANG_EQ] = ACTIONS(7832), + [anon_sym_GT] = ACTIONS(7830), + [anon_sym_GT_EQ] = ACTIONS(7830), + [anon_sym_LT_EQ] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(7830), + [anon_sym_LT_LT] = ACTIONS(7830), + [anon_sym_GT_GT] = ACTIONS(7830), + [anon_sym___extension__] = ACTIONS(7830), + [anon_sym_COLON_COLON] = ACTIONS(7832), + [anon_sym_LBRACK] = ACTIONS(7830), + [anon_sym_EQ] = ACTIONS(7830), + [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(7830), + [anon_sym__Alignas] = ACTIONS(7830), + [anon_sym_QMARK] = ACTIONS(7832), + [anon_sym_STAR_EQ] = ACTIONS(7832), + [anon_sym_SLASH_EQ] = ACTIONS(7832), + [anon_sym_PERCENT_EQ] = ACTIONS(7832), + [anon_sym_PLUS_EQ] = ACTIONS(7832), + [anon_sym_DASH_EQ] = ACTIONS(7832), + [anon_sym_LT_LT_EQ] = ACTIONS(7832), + [anon_sym_GT_GT_EQ] = ACTIONS(7830), + [anon_sym_AMP_EQ] = ACTIONS(7832), + [anon_sym_CARET_EQ] = ACTIONS(7832), + [anon_sym_PIPE_EQ] = ACTIONS(7832), + [anon_sym_and_eq] = ACTIONS(7830), + [anon_sym_or_eq] = ACTIONS(7830), + [anon_sym_xor_eq] = ACTIONS(7830), + [anon_sym_LT_EQ_GT] = ACTIONS(7832), + [anon_sym_or] = ACTIONS(7830), + [anon_sym_and] = ACTIONS(7830), + [anon_sym_bitor] = ACTIONS(7830), + [anon_sym_xor] = ACTIONS(7830), + [anon_sym_bitand] = ACTIONS(7830), + [anon_sym_not_eq] = ACTIONS(7830), + [anon_sym_DASH_DASH] = ACTIONS(7832), + [anon_sym_PLUS_PLUS] = ACTIONS(7832), + [anon_sym_DOT] = ACTIONS(7830), + [anon_sym_DOT_STAR] = ACTIONS(7832), + [anon_sym_DASH_GT] = ACTIONS(7832), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7830), + [anon_sym_final] = ACTIONS(7830), + [anon_sym_override] = ACTIONS(7830), + [anon_sym_template] = ACTIONS(7830), + [anon_sym_GT2] = ACTIONS(7832), + [anon_sym_requires] = ACTIONS(7830), + [anon_sym_LBRACK_COLON] = ACTIONS(7832), + }, + [STATE(3014)] = { + [sym_identifier] = ACTIONS(7834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_LPAREN2] = ACTIONS(7836), + [anon_sym_DASH] = ACTIONS(7834), + [anon_sym_PLUS] = ACTIONS(7834), + [anon_sym_STAR] = ACTIONS(7834), + [anon_sym_SLASH] = ACTIONS(7834), + [anon_sym_PERCENT] = ACTIONS(7834), + [anon_sym_PIPE_PIPE] = ACTIONS(7836), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_PIPE] = ACTIONS(7834), + [anon_sym_CARET] = ACTIONS(7834), + [anon_sym_AMP] = ACTIONS(7834), + [anon_sym_EQ_EQ] = ACTIONS(7836), + [anon_sym_BANG_EQ] = ACTIONS(7836), + [anon_sym_GT] = ACTIONS(7834), + [anon_sym_GT_EQ] = ACTIONS(7834), + [anon_sym_LT_EQ] = ACTIONS(7834), + [anon_sym_LT] = ACTIONS(7834), + [anon_sym_LT_LT] = ACTIONS(7834), + [anon_sym_GT_GT] = ACTIONS(7834), + [anon_sym___extension__] = ACTIONS(7834), + [anon_sym_COLON_COLON] = ACTIONS(7836), + [anon_sym_LBRACK] = ACTIONS(7834), + [anon_sym_EQ] = ACTIONS(7834), + [anon_sym_const] = ACTIONS(7834), + [anon_sym_constexpr] = ACTIONS(7834), + [anon_sym_volatile] = ACTIONS(7834), + [anon_sym_restrict] = ACTIONS(7834), + [anon_sym___restrict__] = ACTIONS(7834), + [anon_sym__Atomic] = ACTIONS(7834), + [anon_sym__Noreturn] = ACTIONS(7834), + [anon_sym_noreturn] = ACTIONS(7834), + [anon_sym__Nonnull] = ACTIONS(7834), + [anon_sym_mutable] = ACTIONS(7834), + [anon_sym_constinit] = ACTIONS(7834), + [anon_sym_consteval] = ACTIONS(7834), + [anon_sym_alignas] = ACTIONS(7834), + [anon_sym__Alignas] = ACTIONS(7834), + [anon_sym_QMARK] = ACTIONS(7836), + [anon_sym_STAR_EQ] = ACTIONS(7836), + [anon_sym_SLASH_EQ] = ACTIONS(7836), + [anon_sym_PERCENT_EQ] = ACTIONS(7836), + [anon_sym_PLUS_EQ] = ACTIONS(7836), + [anon_sym_DASH_EQ] = ACTIONS(7836), + [anon_sym_LT_LT_EQ] = ACTIONS(7836), + [anon_sym_GT_GT_EQ] = ACTIONS(7834), + [anon_sym_AMP_EQ] = ACTIONS(7836), + [anon_sym_CARET_EQ] = ACTIONS(7836), + [anon_sym_PIPE_EQ] = ACTIONS(7836), + [anon_sym_and_eq] = ACTIONS(7834), + [anon_sym_or_eq] = ACTIONS(7834), + [anon_sym_xor_eq] = ACTIONS(7834), + [anon_sym_LT_EQ_GT] = ACTIONS(7836), + [anon_sym_or] = ACTIONS(7834), + [anon_sym_and] = ACTIONS(7834), + [anon_sym_bitor] = ACTIONS(7834), + [anon_sym_xor] = ACTIONS(7834), + [anon_sym_bitand] = ACTIONS(7834), + [anon_sym_not_eq] = ACTIONS(7834), + [anon_sym_DASH_DASH] = ACTIONS(7836), + [anon_sym_PLUS_PLUS] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7834), + [anon_sym_DOT_STAR] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(7836), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7834), + [anon_sym_final] = ACTIONS(7834), + [anon_sym_override] = ACTIONS(7834), + [anon_sym_template] = ACTIONS(7834), + [anon_sym_GT2] = ACTIONS(7836), + [anon_sym_requires] = ACTIONS(7834), + [anon_sym_LBRACK_COLON] = ACTIONS(7836), + }, + [STATE(3015)] = { + [sym_identifier] = ACTIONS(7842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7844), + [anon_sym_COMMA] = ACTIONS(7844), + [anon_sym_LPAREN2] = ACTIONS(7844), + [anon_sym_DASH] = ACTIONS(7842), + [anon_sym_PLUS] = ACTIONS(7842), + [anon_sym_STAR] = ACTIONS(7842), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_PERCENT] = ACTIONS(7842), + [anon_sym_PIPE_PIPE] = ACTIONS(7844), + [anon_sym_AMP_AMP] = ACTIONS(7844), + [anon_sym_PIPE] = ACTIONS(7842), + [anon_sym_CARET] = ACTIONS(7842), + [anon_sym_AMP] = ACTIONS(7842), + [anon_sym_EQ_EQ] = ACTIONS(7844), + [anon_sym_BANG_EQ] = ACTIONS(7844), + [anon_sym_GT] = ACTIONS(7842), + [anon_sym_GT_EQ] = ACTIONS(7842), + [anon_sym_LT_EQ] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(7842), + [anon_sym_LT_LT] = ACTIONS(7842), + [anon_sym_GT_GT] = ACTIONS(7842), + [anon_sym___extension__] = ACTIONS(7842), + [anon_sym_COLON_COLON] = ACTIONS(7844), + [anon_sym_LBRACK] = ACTIONS(7842), + [anon_sym_EQ] = ACTIONS(7842), + [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(7842), + [anon_sym__Alignas] = ACTIONS(7842), + [anon_sym_QMARK] = ACTIONS(7844), + [anon_sym_STAR_EQ] = ACTIONS(7844), + [anon_sym_SLASH_EQ] = ACTIONS(7844), + [anon_sym_PERCENT_EQ] = ACTIONS(7844), + [anon_sym_PLUS_EQ] = ACTIONS(7844), + [anon_sym_DASH_EQ] = ACTIONS(7844), + [anon_sym_LT_LT_EQ] = ACTIONS(7844), + [anon_sym_GT_GT_EQ] = ACTIONS(7842), + [anon_sym_AMP_EQ] = ACTIONS(7844), + [anon_sym_CARET_EQ] = ACTIONS(7844), + [anon_sym_PIPE_EQ] = ACTIONS(7844), + [anon_sym_and_eq] = ACTIONS(7842), + [anon_sym_or_eq] = ACTIONS(7842), + [anon_sym_xor_eq] = ACTIONS(7842), + [anon_sym_LT_EQ_GT] = ACTIONS(7844), + [anon_sym_or] = ACTIONS(7842), + [anon_sym_and] = ACTIONS(7842), + [anon_sym_bitor] = ACTIONS(7842), + [anon_sym_xor] = ACTIONS(7842), + [anon_sym_bitand] = ACTIONS(7842), + [anon_sym_not_eq] = ACTIONS(7842), + [anon_sym_DASH_DASH] = ACTIONS(7844), + [anon_sym_PLUS_PLUS] = ACTIONS(7844), + [anon_sym_DOT] = ACTIONS(7842), + [anon_sym_DOT_STAR] = ACTIONS(7844), + [anon_sym_DASH_GT] = ACTIONS(7844), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7842), + [anon_sym_final] = ACTIONS(7842), + [anon_sym_override] = ACTIONS(7842), + [anon_sym_template] = ACTIONS(7842), + [anon_sym_GT2] = ACTIONS(7844), + [anon_sym_requires] = ACTIONS(7842), + [anon_sym_LBRACK_COLON] = ACTIONS(7844), + }, + [STATE(3016)] = { + [sym_identifier] = ACTIONS(7846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7848), + [anon_sym_COMMA] = ACTIONS(7848), + [anon_sym_LPAREN2] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7846), + [anon_sym_STAR] = ACTIONS(7846), + [anon_sym_SLASH] = ACTIONS(7846), + [anon_sym_PERCENT] = ACTIONS(7846), + [anon_sym_PIPE_PIPE] = ACTIONS(7848), + [anon_sym_AMP_AMP] = ACTIONS(7848), + [anon_sym_PIPE] = ACTIONS(7846), + [anon_sym_CARET] = ACTIONS(7846), + [anon_sym_AMP] = ACTIONS(7846), + [anon_sym_EQ_EQ] = ACTIONS(7848), + [anon_sym_BANG_EQ] = ACTIONS(7848), + [anon_sym_GT] = ACTIONS(7846), + [anon_sym_GT_EQ] = ACTIONS(7846), + [anon_sym_LT_EQ] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(7846), + [anon_sym_LT_LT] = ACTIONS(7846), + [anon_sym_GT_GT] = ACTIONS(7846), + [anon_sym___extension__] = ACTIONS(7846), + [anon_sym_COLON_COLON] = ACTIONS(7848), + [anon_sym_LBRACK] = ACTIONS(7846), + [anon_sym_EQ] = ACTIONS(7846), + [anon_sym_const] = ACTIONS(7846), + [anon_sym_constexpr] = ACTIONS(7846), + [anon_sym_volatile] = ACTIONS(7846), + [anon_sym_restrict] = ACTIONS(7846), + [anon_sym___restrict__] = ACTIONS(7846), + [anon_sym__Atomic] = ACTIONS(7846), + [anon_sym__Noreturn] = ACTIONS(7846), + [anon_sym_noreturn] = ACTIONS(7846), + [anon_sym__Nonnull] = ACTIONS(7846), + [anon_sym_mutable] = ACTIONS(7846), + [anon_sym_constinit] = ACTIONS(7846), + [anon_sym_consteval] = ACTIONS(7846), + [anon_sym_alignas] = ACTIONS(7846), + [anon_sym__Alignas] = ACTIONS(7846), + [anon_sym_QMARK] = ACTIONS(7848), + [anon_sym_STAR_EQ] = ACTIONS(7848), + [anon_sym_SLASH_EQ] = ACTIONS(7848), + [anon_sym_PERCENT_EQ] = ACTIONS(7848), + [anon_sym_PLUS_EQ] = ACTIONS(7848), + [anon_sym_DASH_EQ] = ACTIONS(7848), + [anon_sym_LT_LT_EQ] = ACTIONS(7848), + [anon_sym_GT_GT_EQ] = ACTIONS(7846), + [anon_sym_AMP_EQ] = ACTIONS(7848), + [anon_sym_CARET_EQ] = ACTIONS(7848), + [anon_sym_PIPE_EQ] = ACTIONS(7848), + [anon_sym_and_eq] = ACTIONS(7846), + [anon_sym_or_eq] = ACTIONS(7846), + [anon_sym_xor_eq] = ACTIONS(7846), + [anon_sym_LT_EQ_GT] = ACTIONS(7848), + [anon_sym_or] = ACTIONS(7846), + [anon_sym_and] = ACTIONS(7846), + [anon_sym_bitor] = ACTIONS(7846), + [anon_sym_xor] = ACTIONS(7846), + [anon_sym_bitand] = ACTIONS(7846), + [anon_sym_not_eq] = ACTIONS(7846), + [anon_sym_DASH_DASH] = ACTIONS(7848), + [anon_sym_PLUS_PLUS] = ACTIONS(7848), + [anon_sym_DOT] = ACTIONS(7846), + [anon_sym_DOT_STAR] = ACTIONS(7848), + [anon_sym_DASH_GT] = ACTIONS(7848), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7846), + [anon_sym_final] = ACTIONS(7846), + [anon_sym_override] = ACTIONS(7846), + [anon_sym_template] = ACTIONS(7846), + [anon_sym_GT2] = ACTIONS(7848), + [anon_sym_requires] = ACTIONS(7846), + [anon_sym_LBRACK_COLON] = ACTIONS(7848), }, [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), + [sym_identifier] = ACTIONS(7854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7856), + [anon_sym_COMMA] = ACTIONS(7856), + [anon_sym_LPAREN2] = ACTIONS(7856), + [anon_sym_DASH] = ACTIONS(7854), + [anon_sym_PLUS] = ACTIONS(7854), + [anon_sym_STAR] = ACTIONS(7854), + [anon_sym_SLASH] = ACTIONS(7854), + [anon_sym_PERCENT] = ACTIONS(7854), + [anon_sym_PIPE_PIPE] = ACTIONS(7856), + [anon_sym_AMP_AMP] = ACTIONS(7856), + [anon_sym_PIPE] = ACTIONS(7854), + [anon_sym_CARET] = ACTIONS(7854), + [anon_sym_AMP] = ACTIONS(7854), + [anon_sym_EQ_EQ] = ACTIONS(7856), + [anon_sym_BANG_EQ] = ACTIONS(7856), + [anon_sym_GT] = ACTIONS(7854), + [anon_sym_GT_EQ] = ACTIONS(7854), + [anon_sym_LT_EQ] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(7854), + [anon_sym_GT_GT] = ACTIONS(7854), + [anon_sym___extension__] = ACTIONS(7854), + [anon_sym_COLON_COLON] = ACTIONS(7856), + [anon_sym_LBRACK] = ACTIONS(7854), + [anon_sym_EQ] = ACTIONS(7854), + [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(7854), + [anon_sym__Alignas] = ACTIONS(7854), + [anon_sym_QMARK] = ACTIONS(7856), + [anon_sym_STAR_EQ] = ACTIONS(7856), + [anon_sym_SLASH_EQ] = ACTIONS(7856), + [anon_sym_PERCENT_EQ] = ACTIONS(7856), + [anon_sym_PLUS_EQ] = ACTIONS(7856), + [anon_sym_DASH_EQ] = ACTIONS(7856), + [anon_sym_LT_LT_EQ] = ACTIONS(7856), + [anon_sym_GT_GT_EQ] = ACTIONS(7854), + [anon_sym_AMP_EQ] = ACTIONS(7856), + [anon_sym_CARET_EQ] = ACTIONS(7856), + [anon_sym_PIPE_EQ] = ACTIONS(7856), + [anon_sym_and_eq] = ACTIONS(7854), + [anon_sym_or_eq] = ACTIONS(7854), + [anon_sym_xor_eq] = ACTIONS(7854), + [anon_sym_LT_EQ_GT] = ACTIONS(7856), + [anon_sym_or] = ACTIONS(7854), + [anon_sym_and] = ACTIONS(7854), + [anon_sym_bitor] = ACTIONS(7854), + [anon_sym_xor] = ACTIONS(7854), + [anon_sym_bitand] = ACTIONS(7854), + [anon_sym_not_eq] = ACTIONS(7854), + [anon_sym_DASH_DASH] = ACTIONS(7856), + [anon_sym_PLUS_PLUS] = ACTIONS(7856), + [anon_sym_DOT] = ACTIONS(7854), + [anon_sym_DOT_STAR] = ACTIONS(7856), + [anon_sym_DASH_GT] = ACTIONS(7856), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7854), + [anon_sym_final] = ACTIONS(7854), + [anon_sym_override] = ACTIONS(7854), + [anon_sym_template] = ACTIONS(7854), + [anon_sym_GT2] = ACTIONS(7856), + [anon_sym_requires] = ACTIONS(7854), + [anon_sym_LBRACK_COLON] = ACTIONS(7856), }, [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), + [sym_identifier] = ACTIONS(7858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7860), + [anon_sym_COMMA] = ACTIONS(7860), + [anon_sym_LPAREN2] = ACTIONS(7860), + [anon_sym_DASH] = ACTIONS(7858), + [anon_sym_PLUS] = ACTIONS(7858), + [anon_sym_STAR] = ACTIONS(7858), + [anon_sym_SLASH] = ACTIONS(7858), + [anon_sym_PERCENT] = ACTIONS(7858), + [anon_sym_PIPE_PIPE] = ACTIONS(7860), + [anon_sym_AMP_AMP] = ACTIONS(7860), + [anon_sym_PIPE] = ACTIONS(7858), + [anon_sym_CARET] = ACTIONS(7858), + [anon_sym_AMP] = ACTIONS(7858), + [anon_sym_EQ_EQ] = ACTIONS(7860), + [anon_sym_BANG_EQ] = ACTIONS(7860), + [anon_sym_GT] = ACTIONS(7858), + [anon_sym_GT_EQ] = ACTIONS(7858), + [anon_sym_LT_EQ] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(7858), + [anon_sym_LT_LT] = ACTIONS(7858), + [anon_sym_GT_GT] = ACTIONS(7858), + [anon_sym___extension__] = ACTIONS(7858), + [anon_sym_COLON_COLON] = ACTIONS(7860), + [anon_sym_LBRACK] = ACTIONS(7858), + [anon_sym_EQ] = ACTIONS(7858), + [anon_sym_const] = ACTIONS(7858), + [anon_sym_constexpr] = ACTIONS(7858), + [anon_sym_volatile] = ACTIONS(7858), + [anon_sym_restrict] = ACTIONS(7858), + [anon_sym___restrict__] = ACTIONS(7858), + [anon_sym__Atomic] = ACTIONS(7858), + [anon_sym__Noreturn] = ACTIONS(7858), + [anon_sym_noreturn] = ACTIONS(7858), + [anon_sym__Nonnull] = ACTIONS(7858), + [anon_sym_mutable] = ACTIONS(7858), + [anon_sym_constinit] = ACTIONS(7858), + [anon_sym_consteval] = ACTIONS(7858), + [anon_sym_alignas] = ACTIONS(7858), + [anon_sym__Alignas] = ACTIONS(7858), + [anon_sym_QMARK] = ACTIONS(7860), + [anon_sym_STAR_EQ] = ACTIONS(7860), + [anon_sym_SLASH_EQ] = ACTIONS(7860), + [anon_sym_PERCENT_EQ] = ACTIONS(7860), + [anon_sym_PLUS_EQ] = ACTIONS(7860), + [anon_sym_DASH_EQ] = ACTIONS(7860), + [anon_sym_LT_LT_EQ] = ACTIONS(7860), + [anon_sym_GT_GT_EQ] = ACTIONS(7858), + [anon_sym_AMP_EQ] = ACTIONS(7860), + [anon_sym_CARET_EQ] = ACTIONS(7860), + [anon_sym_PIPE_EQ] = ACTIONS(7860), + [anon_sym_and_eq] = ACTIONS(7858), + [anon_sym_or_eq] = ACTIONS(7858), + [anon_sym_xor_eq] = ACTIONS(7858), + [anon_sym_LT_EQ_GT] = ACTIONS(7860), + [anon_sym_or] = ACTIONS(7858), + [anon_sym_and] = ACTIONS(7858), + [anon_sym_bitor] = ACTIONS(7858), + [anon_sym_xor] = ACTIONS(7858), + [anon_sym_bitand] = ACTIONS(7858), + [anon_sym_not_eq] = ACTIONS(7858), + [anon_sym_DASH_DASH] = ACTIONS(7860), + [anon_sym_PLUS_PLUS] = ACTIONS(7860), + [anon_sym_DOT] = ACTIONS(7858), + [anon_sym_DOT_STAR] = ACTIONS(7860), + [anon_sym_DASH_GT] = ACTIONS(7860), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7858), + [anon_sym_final] = ACTIONS(7858), + [anon_sym_override] = ACTIONS(7858), + [anon_sym_template] = ACTIONS(7858), + [anon_sym_GT2] = ACTIONS(7860), + [anon_sym_requires] = ACTIONS(7858), + [anon_sym_LBRACK_COLON] = ACTIONS(7860), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6817), + [anon_sym_COMMA] = ACTIONS(6817), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6824), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6824), + [anon_sym_GT_GT] = ACTIONS(6824), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6824), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6817), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym__function_exception_specification] = STATE(3568), + [sym__function_attributes_end] = STATE(5049), + [sym__function_postfix] = STATE(6392), + [sym_trailing_return_type] = STATE(5135), + [sym_noexcept] = STATE(3568), + [sym_throw_specifier] = STATE(3568), + [sym_requires_clause] = STATE(6392), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7474), + [anon_sym_and] = ACTIONS(7474), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7474), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8834), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_noexcept] = ACTIONS(7093), + [anon_sym_throw] = ACTIONS(7095), + [anon_sym_requires] = ACTIONS(7117), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [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), + [sym_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym__function_exception_specification] = STATE(3606), + [sym__function_attributes_end] = STATE(5083), + [sym__function_postfix] = STATE(6229), + [sym_trailing_return_type] = STATE(5130), + [sym_noexcept] = STATE(3606), + [sym_throw_specifier] = STATE(3606), + [sym_requires_clause] = STATE(6229), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [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(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8870), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_noexcept] = ACTIONS(7093), + [anon_sym_throw] = ACTIONS(7095), + [anon_sym_requires] = ACTIONS(7117), + [anon_sym_DASH_GT_STAR] = ACTIONS(7623), }, [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), + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [aux_sym_preproc_if_token2] = ACTIONS(3108), + [aux_sym_preproc_else_token1] = ACTIONS(3108), + [aux_sym_preproc_elif_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3108), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3108), + [anon_sym_GT_GT] = ACTIONS(3108), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym___asm__] = ACTIONS(3118), + [anon_sym___asm] = ACTIONS(3118), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [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_COLON_RBRACK] = ACTIONS(3108), }, [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), + [sym_attribute_specifier] = STATE(3139), + [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(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(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7680), + [anon_sym_COLON_COLON] = ACTIONS(7682), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7682), + [anon_sym_LBRACE] = ACTIONS(7682), + [anon_sym_RBRACE] = ACTIONS(7682), + [anon_sym_LBRACK] = 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_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_decltype] = ACTIONS(7680), + [anon_sym_final] = ACTIONS(7680), + [anon_sym_override] = ACTIONS(7680), + [anon_sym_template] = ACTIONS(7680), + [anon_sym_requires] = ACTIONS(7680), + [anon_sym_LBRACK_COLON] = ACTIONS(7682), + [anon_sym_COLON_RBRACK] = ACTIONS(7682), }, [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), + [sym_attribute_specifier] = STATE(3179), + [sym_identifier] = ACTIONS(7688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7690), + [anon_sym_COMMA] = ACTIONS(7690), + [anon_sym_RPAREN] = ACTIONS(7690), + [aux_sym_preproc_if_token2] = ACTIONS(7690), + [aux_sym_preproc_else_token1] = ACTIONS(7690), + [aux_sym_preproc_elif_token1] = ACTIONS(7688), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7690), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7690), + [anon_sym_LPAREN2] = ACTIONS(7690), + [anon_sym_DASH] = ACTIONS(7688), + [anon_sym_PLUS] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7690), + [anon_sym_SLASH] = ACTIONS(7688), + [anon_sym_PERCENT] = ACTIONS(7690), + [anon_sym_PIPE_PIPE] = ACTIONS(7690), + [anon_sym_AMP_AMP] = ACTIONS(7690), + [anon_sym_PIPE] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7690), + [anon_sym_AMP] = ACTIONS(7688), + [anon_sym_EQ_EQ] = ACTIONS(7690), + [anon_sym_BANG_EQ] = ACTIONS(7690), + [anon_sym_GT] = ACTIONS(7688), + [anon_sym_GT_EQ] = ACTIONS(7690), + [anon_sym_LT_EQ] = ACTIONS(7688), + [anon_sym_LT] = ACTIONS(7688), + [anon_sym_LT_LT] = ACTIONS(7690), + [anon_sym_GT_GT] = ACTIONS(7690), + [anon_sym_SEMI] = ACTIONS(7690), + [anon_sym___extension__] = ACTIONS(7688), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7688), + [anon_sym_COLON_COLON] = ACTIONS(7690), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7690), + [anon_sym_LBRACE] = ACTIONS(7690), + [anon_sym_RBRACE] = ACTIONS(7690), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym_const] = ACTIONS(7688), + [anon_sym_constexpr] = ACTIONS(7688), + [anon_sym_volatile] = ACTIONS(7688), + [anon_sym_restrict] = ACTIONS(7688), + [anon_sym___restrict__] = ACTIONS(7688), + [anon_sym__Atomic] = ACTIONS(7688), + [anon_sym__Noreturn] = ACTIONS(7688), + [anon_sym_noreturn] = ACTIONS(7688), + [anon_sym__Nonnull] = ACTIONS(7688), + [anon_sym_mutable] = ACTIONS(7688), + [anon_sym_constinit] = ACTIONS(7688), + [anon_sym_consteval] = ACTIONS(7688), + [anon_sym_alignas] = ACTIONS(7688), + [anon_sym__Alignas] = ACTIONS(7688), + [anon_sym_QMARK] = ACTIONS(7690), + [anon_sym_LT_EQ_GT] = ACTIONS(7690), + [anon_sym_or] = ACTIONS(7688), + [anon_sym_and] = ACTIONS(7688), + [anon_sym_bitor] = ACTIONS(7688), + [anon_sym_xor] = ACTIONS(7688), + [anon_sym_bitand] = ACTIONS(7688), + [anon_sym_not_eq] = ACTIONS(7688), + [anon_sym_DASH_DASH] = ACTIONS(7690), + [anon_sym_PLUS_PLUS] = ACTIONS(7690), + [anon_sym_DOT] = ACTIONS(7688), + [anon_sym_DOT_STAR] = ACTIONS(7690), + [anon_sym_DASH_GT] = ACTIONS(7690), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7688), + [anon_sym_final] = ACTIONS(7688), + [anon_sym_override] = ACTIONS(7688), + [anon_sym_template] = ACTIONS(7688), + [anon_sym_requires] = ACTIONS(7688), + [anon_sym_LBRACK_COLON] = ACTIONS(7690), + [anon_sym_COLON_RBRACK] = ACTIONS(7690), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3025), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(8867), + [anon_sym_unsigned] = ACTIONS(8867), + [anon_sym_long] = ACTIONS(8867), + [anon_sym_short] = ACTIONS(8867), + [anon_sym_LBRACK] = ACTIONS(7175), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7173), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7175), }, [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), + [sym_decltype_auto] = STATE(2991), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8769), + [anon_sym_decltype] = ACTIONS(7338), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [aux_sym_preproc_if_token2] = ACTIONS(7261), + [aux_sym_preproc_else_token1] = ACTIONS(7261), + [aux_sym_preproc_elif_token1] = ACTIONS(7259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7261), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7261), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7261), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7261), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7261), + [anon_sym_GT_GT] = ACTIONS(7261), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), + [anon_sym_RBRACE] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_asm] = ACTIONS(7259), + [anon_sym___asm__] = ACTIONS(7259), + [anon_sym___asm] = ACTIONS(7259), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_noexcept] = ACTIONS(7259), + [anon_sym_throw] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_COLON_RBRACK] = ACTIONS(7261), }, [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_decltype_auto] = STATE(2991), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8769), + [anon_sym_decltype] = ACTIONS(7338), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), - }, - [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), - }, - [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_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(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_LBRACK_LBRACK] = ACTIONS(7551), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7551), + [anon_sym_RBRACE] = ACTIONS(7551), + [anon_sym_LBRACK] = 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_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_asm] = ACTIONS(7549), + [anon_sym___asm__] = ACTIONS(7549), + [anon_sym___asm] = ACTIONS(7549), + [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_noexcept] = ACTIONS(7549), + [anon_sym_throw] = ACTIONS(7549), + [anon_sym_requires] = ACTIONS(7549), + [anon_sym_COLON_RBRACK] = ACTIONS(7551), }, - [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(3030)] = { + [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(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3176), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3178), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), }, - [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(3031)] = { + [sym_template_argument_list] = STATE(3160), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6783), + [anon_sym_PERCENT] = ACTIONS(6783), + [anon_sym_PIPE_PIPE] = ACTIONS(6776), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6783), + [anon_sym_CARET] = ACTIONS(6783), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6776), + [anon_sym_BANG_EQ] = ACTIONS(6776), + [anon_sym_GT] = ACTIONS(6783), + [anon_sym_GT_EQ] = ACTIONS(6783), + [anon_sym_LT_EQ] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(8873), + [anon_sym_LT_LT] = ACTIONS(6783), + [anon_sym_GT_GT] = ACTIONS(6783), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6776), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6783), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6776), + [anon_sym_or] = ACTIONS(6783), + [anon_sym_and] = ACTIONS(6783), + [anon_sym_bitor] = ACTIONS(6783), + [anon_sym_xor] = ACTIONS(6783), + [anon_sym_bitand] = ACTIONS(6783), + [anon_sym_not_eq] = ACTIONS(6783), + [anon_sym_DASH_DASH] = ACTIONS(6776), + [anon_sym_PLUS_PLUS] = ACTIONS(6776), + [anon_sym_DOT] = ACTIONS(6783), + [anon_sym_DOT_STAR] = ACTIONS(6776), + [anon_sym_DASH_GT] = ACTIONS(6776), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_GT2] = ACTIONS(6778), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, - [STATE(3036)] = { - [sym_attribute_specifier] = STATE(3560), - [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(8499), - [anon_sym___attribute] = ACTIONS(8501), - [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_LT_EQ_GT] = ACTIONS(7507), - [anon_sym_or] = ACTIONS(7507), - [anon_sym_and] = ACTIONS(7507), - [anon_sym_bitor] = ACTIONS(7507), - [anon_sym_xor] = ACTIONS(7507), - [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(3032)] = { + [sym_template_argument_list] = STATE(3095), + [sym_identifier] = ACTIONS(7543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5689), + [anon_sym_COMMA] = ACTIONS(5689), + [anon_sym_RPAREN] = ACTIONS(5689), + [aux_sym_preproc_if_token2] = ACTIONS(5689), + [aux_sym_preproc_else_token1] = ACTIONS(5689), + [aux_sym_preproc_elif_token1] = ACTIONS(7543), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5689), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5689), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(7543), + [anon_sym_PLUS] = ACTIONS(7543), + [anon_sym_STAR] = ACTIONS(5689), + [anon_sym_SLASH] = ACTIONS(7543), + [anon_sym_PERCENT] = ACTIONS(5689), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_PIPE] = ACTIONS(7543), + [anon_sym_CARET] = ACTIONS(5689), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_GT] = ACTIONS(7543), + [anon_sym_GT_EQ] = ACTIONS(5689), + [anon_sym_LT_EQ] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(8364), + [anon_sym_LT_LT] = ACTIONS(5689), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym_SEMI] = ACTIONS(5689), + [anon_sym___extension__] = ACTIONS(7543), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5689), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_const] = ACTIONS(7543), + [anon_sym_constexpr] = ACTIONS(7543), + [anon_sym_volatile] = ACTIONS(7543), + [anon_sym_restrict] = ACTIONS(7543), + [anon_sym___restrict__] = ACTIONS(7543), + [anon_sym__Atomic] = ACTIONS(7543), + [anon_sym__Noreturn] = ACTIONS(7543), + [anon_sym_noreturn] = ACTIONS(7543), + [anon_sym__Nonnull] = ACTIONS(7543), + [anon_sym_mutable] = ACTIONS(7543), + [anon_sym_constinit] = ACTIONS(7543), + [anon_sym_consteval] = ACTIONS(7543), + [anon_sym_alignas] = ACTIONS(7543), + [anon_sym__Alignas] = ACTIONS(7543), + [anon_sym_QMARK] = ACTIONS(5689), + [anon_sym_LT_EQ_GT] = ACTIONS(5689), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_bitor] = ACTIONS(7543), + [anon_sym_xor] = ACTIONS(7543), + [anon_sym_bitand] = ACTIONS(7543), + [anon_sym_not_eq] = ACTIONS(7543), + [anon_sym_DASH_DASH] = ACTIONS(5689), + [anon_sym_PLUS_PLUS] = ACTIONS(5689), + [anon_sym_DOT] = ACTIONS(7543), + [anon_sym_DOT_STAR] = ACTIONS(5689), + [anon_sym_DASH_GT] = ACTIONS(5689), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7543), + [anon_sym_final] = ACTIONS(7543), + [anon_sym_override] = ACTIONS(7543), + [anon_sym_template] = ACTIONS(7543), + [anon_sym_requires] = ACTIONS(7543), + [anon_sym_LBRACK_COLON] = ACTIONS(5689), + [anon_sym_COLON_RBRACK] = ACTIONS(5689), }, - [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), - [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), + [STATE(3033)] = { + [sym_identifier] = ACTIONS(3149), + [aux_sym_preproc_def_token1] = ACTIONS(3149), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_if_token2] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), + [aux_sym_preproc_else_token1] = ACTIONS(3149), + [aux_sym_preproc_elif_token1] = ACTIONS(3149), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3149), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3149), + [sym_preproc_directive] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym___attribute__] = ACTIONS(3149), + [anon_sym___attribute] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), + [anon_sym___declspec] = ACTIONS(3149), + [anon_sym___based] = ACTIONS(3149), + [anon_sym_signed] = ACTIONS(3149), + [anon_sym_unsigned] = ACTIONS(3149), + [anon_sym_long] = ACTIONS(3149), + [anon_sym_short] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_register] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym___inline] = ACTIONS(3149), + [anon_sym___inline__] = ACTIONS(3149), + [anon_sym___forceinline] = ACTIONS(3149), + [anon_sym_thread_local] = ACTIONS(3149), + [anon_sym___thread] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_constexpr] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_restrict] = ACTIONS(3149), + [anon_sym___restrict__] = ACTIONS(3149), + [anon_sym__Atomic] = ACTIONS(3149), + [anon_sym__Noreturn] = ACTIONS(3149), + [anon_sym_noreturn] = ACTIONS(3149), + [anon_sym__Nonnull] = ACTIONS(3149), + [anon_sym_mutable] = ACTIONS(3149), + [anon_sym_constinit] = ACTIONS(3149), + [anon_sym_consteval] = ACTIONS(3149), + [anon_sym_alignas] = ACTIONS(3149), + [anon_sym__Alignas] = ACTIONS(3149), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_typename] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3149), + [anon_sym_decltype] = ACTIONS(3149), + [anon_sym_explicit] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_operator] = ACTIONS(3149), + [anon_sym_friend] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_static_assert] = ACTIONS(3149), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_LBRACK_COLON] = ACTIONS(3147), }, - [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), + [STATE(3034)] = { + [sym_identifier] = ACTIONS(7838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7840), + [anon_sym_COMMA] = ACTIONS(7840), + [anon_sym_LPAREN2] = ACTIONS(7840), + [anon_sym_DASH] = ACTIONS(7838), + [anon_sym_PLUS] = ACTIONS(7838), + [anon_sym_STAR] = ACTIONS(7838), + [anon_sym_SLASH] = ACTIONS(7838), + [anon_sym_PERCENT] = ACTIONS(7838), + [anon_sym_PIPE_PIPE] = ACTIONS(7840), + [anon_sym_AMP_AMP] = ACTIONS(7840), + [anon_sym_PIPE] = ACTIONS(7838), + [anon_sym_CARET] = ACTIONS(7838), + [anon_sym_AMP] = ACTIONS(7838), + [anon_sym_EQ_EQ] = ACTIONS(7840), + [anon_sym_BANG_EQ] = ACTIONS(7840), + [anon_sym_GT] = ACTIONS(7838), + [anon_sym_GT_EQ] = ACTIONS(7840), + [anon_sym_LT_EQ] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(7838), + [anon_sym_LT_LT] = ACTIONS(7838), + [anon_sym_GT_GT] = ACTIONS(7838), + [anon_sym___extension__] = ACTIONS(7838), + [anon_sym_COLON_COLON] = ACTIONS(7840), + [anon_sym_LBRACK] = ACTIONS(7838), + [anon_sym_RBRACK] = ACTIONS(7840), + [anon_sym_EQ] = ACTIONS(7838), + [anon_sym_const] = ACTIONS(7838), + [anon_sym_constexpr] = ACTIONS(7838), + [anon_sym_volatile] = ACTIONS(7838), + [anon_sym_restrict] = ACTIONS(7838), + [anon_sym___restrict__] = ACTIONS(7838), + [anon_sym__Atomic] = ACTIONS(7838), + [anon_sym__Noreturn] = ACTIONS(7838), + [anon_sym_noreturn] = ACTIONS(7838), + [anon_sym__Nonnull] = ACTIONS(7838), + [anon_sym_mutable] = ACTIONS(7838), + [anon_sym_constinit] = ACTIONS(7838), + [anon_sym_consteval] = ACTIONS(7838), + [anon_sym_alignas] = ACTIONS(7838), + [anon_sym__Alignas] = ACTIONS(7838), + [anon_sym_QMARK] = ACTIONS(7840), + [anon_sym_STAR_EQ] = ACTIONS(7840), + [anon_sym_SLASH_EQ] = ACTIONS(7840), + [anon_sym_PERCENT_EQ] = ACTIONS(7840), + [anon_sym_PLUS_EQ] = ACTIONS(7840), + [anon_sym_DASH_EQ] = ACTIONS(7840), + [anon_sym_LT_LT_EQ] = ACTIONS(7840), + [anon_sym_GT_GT_EQ] = ACTIONS(7840), + [anon_sym_AMP_EQ] = ACTIONS(7840), + [anon_sym_CARET_EQ] = ACTIONS(7840), + [anon_sym_PIPE_EQ] = ACTIONS(7840), + [anon_sym_and_eq] = ACTIONS(7838), + [anon_sym_or_eq] = ACTIONS(7838), + [anon_sym_xor_eq] = ACTIONS(7838), + [anon_sym_LT_EQ_GT] = ACTIONS(7840), + [anon_sym_or] = ACTIONS(7838), + [anon_sym_and] = ACTIONS(7838), + [anon_sym_bitor] = ACTIONS(7838), + [anon_sym_xor] = ACTIONS(7838), + [anon_sym_bitand] = ACTIONS(7838), + [anon_sym_not_eq] = ACTIONS(7838), + [anon_sym_DASH_DASH] = ACTIONS(7840), + [anon_sym_PLUS_PLUS] = ACTIONS(7840), + [anon_sym_DOT] = ACTIONS(7838), + [anon_sym_DOT_STAR] = ACTIONS(7840), + [anon_sym_DASH_GT] = ACTIONS(7840), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7838), + [anon_sym_final] = ACTIONS(7838), + [anon_sym_override] = ACTIONS(7838), + [anon_sym_template] = ACTIONS(7838), + [anon_sym_requires] = ACTIONS(7838), + [anon_sym_LBRACK_COLON] = ACTIONS(7840), }, - [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), + [STATE(3035)] = { + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), [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), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, - [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), + [STATE(3036)] = { + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), [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(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), - }, - [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), - }, - [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), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, - [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), + [STATE(3037)] = { + [sym_template_argument_list] = STATE(3266), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [aux_sym_preproc_if_token2] = ACTIONS(7447), + [aux_sym_preproc_else_token1] = ACTIONS(7447), + [aux_sym_preproc_elif_token1] = ACTIONS(7442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7447), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7447), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(8364), + [anon_sym_LT_LT] = ACTIONS(7447), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_SEMI] = ACTIONS(7447), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7447), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + [anon_sym_COLON_RBRACK] = ACTIONS(7447), }, - [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), + [STATE(3038)] = { + [sym_ms_based_modifier] = STATE(12068), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(3092), + [sym__declarator] = STATE(9853), + [sym__abstract_declarator] = STATE(10143), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4034), + [sym_alignas_qualifier] = STATE(7255), + [sym_parameter_list] = STATE(5887), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8812), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(4034), + [aux_sym_pointer_declarator_repeat1] = STATE(3092), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8876), + [anon_sym_AMP_AMP] = ACTIONS(8878), + [anon_sym_AMP] = ACTIONS(8880), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(8882), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(5655), + [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(8786), + [anon_sym__Alignas] = ACTIONS(8786), [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(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), - }, - [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5994), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, - [STATE(3048)] = { + [STATE(3039)] = { + [sym_identifier] = ACTIONS(7743), [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), @@ -397238,24 +406951,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(7743), + [anon_sym_COLON_COLON] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7743), + [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_constexpr] = ACTIONS(7743), + [anon_sym_volatile] = ACTIONS(7743), + [anon_sym_restrict] = ACTIONS(7743), + [anon_sym___restrict__] = ACTIONS(7743), + [anon_sym__Atomic] = ACTIONS(7743), + [anon_sym__Noreturn] = ACTIONS(7743), + [anon_sym_noreturn] = ACTIONS(7743), + [anon_sym__Nonnull] = ACTIONS(7743), + [anon_sym_mutable] = ACTIONS(7743), + [anon_sym_constinit] = ACTIONS(7743), + [anon_sym_consteval] = ACTIONS(7743), + [anon_sym_alignas] = ACTIONS(7743), + [anon_sym__Alignas] = ACTIONS(7743), [anon_sym_QMARK] = ACTIONS(7745), [anon_sym_STAR_EQ] = ACTIONS(7745), [anon_sym_SLASH_EQ] = ACTIONS(7745), @@ -397267,31 +406981,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_and_eq] = ACTIONS(7743), + [anon_sym_or_eq] = ACTIONS(7743), + [anon_sym_xor_eq] = ACTIONS(7743), [anon_sym_LT_EQ_GT] = ACTIONS(7745), [anon_sym_or] = ACTIONS(7743), [anon_sym_and] = ACTIONS(7743), - [anon_sym_bitor] = ACTIONS(7745), + [anon_sym_bitor] = ACTIONS(7743), [anon_sym_xor] = ACTIONS(7743), - [anon_sym_bitand] = ACTIONS(7745), - [anon_sym_not_eq] = ACTIONS(7745), + [anon_sym_bitand] = ACTIONS(7743), + [anon_sym_not_eq] = ACTIONS(7743), [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), + [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_DASH_GT_STAR] = ACTIONS(7745), + [anon_sym_decltype] = ACTIONS(7743), + [anon_sym_final] = ACTIONS(7743), + [anon_sym_override] = ACTIONS(7743), + [anon_sym_template] = ACTIONS(7743), + [anon_sym_requires] = ACTIONS(7743), + [anon_sym_LBRACK_COLON] = ACTIONS(7745), }, - [STATE(3049)] = { + [STATE(3040)] = { + [sym_identifier] = ACTIONS(7751), [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), @@ -397311,24 +407027,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7751), + [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_constexpr] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_restrict] = ACTIONS(7751), + [anon_sym___restrict__] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [anon_sym__Noreturn] = ACTIONS(7751), + [anon_sym_noreturn] = ACTIONS(7751), + [anon_sym__Nonnull] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [anon_sym_constinit] = ACTIONS(7751), + [anon_sym_consteval] = ACTIONS(7751), + [anon_sym_alignas] = ACTIONS(7751), + [anon_sym__Alignas] = ACTIONS(7751), [anon_sym_QMARK] = ACTIONS(7753), [anon_sym_STAR_EQ] = ACTIONS(7753), [anon_sym_SLASH_EQ] = ACTIONS(7753), @@ -397340,2800 +407057,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_and_eq] = ACTIONS(7751), + [anon_sym_or_eq] = ACTIONS(7751), + [anon_sym_xor_eq] = ACTIONS(7751), [anon_sym_LT_EQ_GT] = ACTIONS(7753), [anon_sym_or] = ACTIONS(7751), [anon_sym_and] = ACTIONS(7751), - [anon_sym_bitor] = ACTIONS(7753), + [anon_sym_bitor] = ACTIONS(7751), [anon_sym_xor] = ACTIONS(7751), - [anon_sym_bitand] = ACTIONS(7753), - [anon_sym_not_eq] = ACTIONS(7753), + [anon_sym_bitand] = ACTIONS(7751), + [anon_sym_not_eq] = ACTIONS(7751), [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(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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - [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), - }, - [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), - }, - [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), - }, - [STATE(3068)] = { - [sym_identifier] = ACTIONS(9011), - [anon_sym_LPAREN2] = ACTIONS(9013), - [anon_sym_TILDE] = ACTIONS(9013), - [anon_sym_STAR] = ACTIONS(9013), - [anon_sym_PIPE_PIPE] = ACTIONS(9013), - [anon_sym_AMP_AMP] = ACTIONS(9013), - [anon_sym_AMP] = ACTIONS(9011), - [anon_sym___extension__] = ACTIONS(9011), - [anon_sym_virtual] = ACTIONS(9011), - [anon_sym_extern] = ACTIONS(9011), - [anon_sym___attribute__] = ACTIONS(9011), - [anon_sym___attribute] = ACTIONS(9011), - [anon_sym_using] = ACTIONS(9011), - [anon_sym_COLON_COLON] = ACTIONS(9013), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9013), - [anon_sym___declspec] = ACTIONS(9011), - [anon_sym___based] = ACTIONS(9011), - [anon_sym___cdecl] = ACTIONS(9011), - [anon_sym___clrcall] = ACTIONS(9011), - [anon_sym___stdcall] = ACTIONS(9011), - [anon_sym___fastcall] = ACTIONS(9011), - [anon_sym___thiscall] = ACTIONS(9011), - [anon_sym___vectorcall] = ACTIONS(9011), - [anon_sym_LBRACE] = ACTIONS(9013), - [anon_sym_signed] = ACTIONS(9011), - [anon_sym_unsigned] = ACTIONS(9011), - [anon_sym_long] = ACTIONS(9011), - [anon_sym_short] = ACTIONS(9011), - [anon_sym_LBRACK] = ACTIONS(9011), - [anon_sym_static] = ACTIONS(9011), - [anon_sym_register] = ACTIONS(9011), - [anon_sym_inline] = ACTIONS(9011), - [anon_sym___inline] = ACTIONS(9011), - [anon_sym___inline__] = ACTIONS(9011), - [anon_sym___forceinline] = ACTIONS(9011), - [anon_sym_thread_local] = ACTIONS(9011), - [anon_sym___thread] = ACTIONS(9011), - [anon_sym_const] = ACTIONS(9011), - [anon_sym_constexpr] = ACTIONS(9011), - [anon_sym_volatile] = ACTIONS(9011), - [anon_sym_restrict] = ACTIONS(9011), - [anon_sym___restrict__] = ACTIONS(9011), - [anon_sym__Atomic] = ACTIONS(9011), - [anon_sym__Noreturn] = ACTIONS(9011), - [anon_sym_noreturn] = ACTIONS(9011), - [anon_sym__Nonnull] = ACTIONS(9011), - [anon_sym_mutable] = ACTIONS(9011), - [anon_sym_constinit] = ACTIONS(9011), - [anon_sym_consteval] = ACTIONS(9011), - [anon_sym_alignas] = ACTIONS(9011), - [anon_sym__Alignas] = ACTIONS(9011), - [sym_primitive_type] = ACTIONS(9011), - [anon_sym_enum] = ACTIONS(9011), - [anon_sym_class] = ACTIONS(9011), - [anon_sym_struct] = ACTIONS(9011), - [anon_sym_union] = ACTIONS(9011), - [anon_sym_or] = ACTIONS(9011), - [anon_sym_and] = ACTIONS(9011), - [anon_sym_typename] = ACTIONS(9011), - [anon_sym_DASH_GT] = ACTIONS(9013), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9011), - [anon_sym_decltype] = ACTIONS(9011), - [anon_sym_explicit] = ACTIONS(9011), - [anon_sym_template] = ACTIONS(9011), - [anon_sym_operator] = ACTIONS(9011), - [anon_sym_friend] = ACTIONS(9011), - [anon_sym_noexcept] = ACTIONS(9011), - [anon_sym_throw] = ACTIONS(9011), - [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), + [anon_sym_DASH_GT] = ACTIONS(7753), [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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), - [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(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), - }, - [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_decltype] = ACTIONS(7751), + [anon_sym_final] = ACTIONS(7751), + [anon_sym_override] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_requires] = ACTIONS(7751), + [anon_sym_LBRACK_COLON] = ACTIONS(7753), }, - [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), + [STATE(3041)] = { + [sym_identifier] = ACTIONS(7759), + [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(7759), + [anon_sym_COLON_COLON] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7759), + [anon_sym_RBRACK] = 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(7777), - [anon_sym_override] = ACTIONS(7777), - [anon_sym_requires] = ACTIONS(7777), + [anon_sym_decltype] = ACTIONS(7759), + [anon_sym_final] = ACTIONS(7759), + [anon_sym_override] = ACTIONS(7759), + [anon_sym_template] = ACTIONS(7759), + [anon_sym_requires] = ACTIONS(7759), + [anon_sym_LBRACK_COLON] = ACTIONS(7761), }, - [STATE(3088)] = { + [STATE(3042)] = { + [sym_identifier] = ACTIONS(7767), [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), [anon_sym_COMMA] = ACTIONS(7769), [anon_sym_LPAREN2] = ACTIONS(7769), @@ -400150,29 +407174,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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___extension__] = ACTIONS(7767), + [anon_sym_COLON_COLON] = ACTIONS(7769), + [anon_sym_LBRACK] = ACTIONS(7767), + [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_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), @@ -400180,104 +407205,567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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(7769), + [anon_sym_bitor] = ACTIONS(7767), [anon_sym_xor] = ACTIONS(7767), - [anon_sym_bitand] = ACTIONS(7769), - [anon_sym_not_eq] = ACTIONS(7769), + [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), [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_decltype] = ACTIONS(7767), + [anon_sym_final] = ACTIONS(7767), + [anon_sym_override] = ACTIONS(7767), + [anon_sym_template] = ACTIONS(7767), + [anon_sym_requires] = ACTIONS(7767), + [anon_sym_LBRACK_COLON] = ACTIONS(7769), }, - [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), + [STATE(3043)] = { + [sym_identifier] = ACTIONS(7786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7788), + [anon_sym_COMMA] = ACTIONS(7788), + [anon_sym_LPAREN2] = ACTIONS(7788), + [anon_sym_DASH] = ACTIONS(7786), + [anon_sym_PLUS] = ACTIONS(7786), + [anon_sym_STAR] = ACTIONS(7786), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_PERCENT] = ACTIONS(7786), + [anon_sym_PIPE_PIPE] = ACTIONS(7788), + [anon_sym_AMP_AMP] = ACTIONS(7788), + [anon_sym_PIPE] = ACTIONS(7786), + [anon_sym_CARET] = ACTIONS(7786), + [anon_sym_AMP] = ACTIONS(7786), + [anon_sym_EQ_EQ] = ACTIONS(7788), + [anon_sym_BANG_EQ] = ACTIONS(7788), + [anon_sym_GT] = ACTIONS(7786), + [anon_sym_GT_EQ] = ACTIONS(7788), + [anon_sym_LT_EQ] = ACTIONS(7786), + [anon_sym_LT] = ACTIONS(7786), + [anon_sym_LT_LT] = ACTIONS(7786), + [anon_sym_GT_GT] = ACTIONS(7786), + [anon_sym___extension__] = ACTIONS(7786), + [anon_sym_COLON_COLON] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7786), + [anon_sym_RBRACK] = ACTIONS(7788), + [anon_sym_EQ] = ACTIONS(7786), + [anon_sym_const] = ACTIONS(7786), + [anon_sym_constexpr] = ACTIONS(7786), + [anon_sym_volatile] = ACTIONS(7786), + [anon_sym_restrict] = ACTIONS(7786), + [anon_sym___restrict__] = ACTIONS(7786), + [anon_sym__Atomic] = ACTIONS(7786), + [anon_sym__Noreturn] = ACTIONS(7786), + [anon_sym_noreturn] = ACTIONS(7786), + [anon_sym__Nonnull] = ACTIONS(7786), + [anon_sym_mutable] = ACTIONS(7786), + [anon_sym_constinit] = ACTIONS(7786), + [anon_sym_consteval] = ACTIONS(7786), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7788), + [anon_sym_STAR_EQ] = ACTIONS(7788), + [anon_sym_SLASH_EQ] = ACTIONS(7788), + [anon_sym_PERCENT_EQ] = ACTIONS(7788), + [anon_sym_PLUS_EQ] = ACTIONS(7788), + [anon_sym_DASH_EQ] = ACTIONS(7788), + [anon_sym_LT_LT_EQ] = ACTIONS(7788), + [anon_sym_GT_GT_EQ] = ACTIONS(7788), + [anon_sym_AMP_EQ] = ACTIONS(7788), + [anon_sym_CARET_EQ] = ACTIONS(7788), + [anon_sym_PIPE_EQ] = ACTIONS(7788), + [anon_sym_and_eq] = ACTIONS(7786), + [anon_sym_or_eq] = ACTIONS(7786), + [anon_sym_xor_eq] = ACTIONS(7786), + [anon_sym_LT_EQ_GT] = ACTIONS(7788), + [anon_sym_or] = ACTIONS(7786), + [anon_sym_and] = ACTIONS(7786), + [anon_sym_bitor] = ACTIONS(7786), + [anon_sym_xor] = ACTIONS(7786), + [anon_sym_bitand] = ACTIONS(7786), + [anon_sym_not_eq] = ACTIONS(7786), + [anon_sym_DASH_DASH] = ACTIONS(7788), + [anon_sym_PLUS_PLUS] = ACTIONS(7788), + [anon_sym_DOT] = ACTIONS(7786), + [anon_sym_DOT_STAR] = ACTIONS(7788), + [anon_sym_DASH_GT] = ACTIONS(7788), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7786), + [anon_sym_final] = ACTIONS(7786), + [anon_sym_override] = ACTIONS(7786), + [anon_sym_template] = ACTIONS(7786), + [anon_sym_requires] = ACTIONS(7786), + [anon_sym_LBRACK_COLON] = ACTIONS(7788), + }, + [STATE(3044)] = { + [sym_identifier] = ACTIONS(7806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7808), + [anon_sym_COMMA] = ACTIONS(7808), + [anon_sym_LPAREN2] = ACTIONS(7808), + [anon_sym_DASH] = ACTIONS(7806), + [anon_sym_PLUS] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7806), + [anon_sym_SLASH] = ACTIONS(7806), + [anon_sym_PERCENT] = ACTIONS(7806), + [anon_sym_PIPE_PIPE] = ACTIONS(7808), + [anon_sym_AMP_AMP] = ACTIONS(7808), + [anon_sym_PIPE] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7806), + [anon_sym_AMP] = ACTIONS(7806), + [anon_sym_EQ_EQ] = ACTIONS(7808), + [anon_sym_BANG_EQ] = ACTIONS(7808), + [anon_sym_GT] = ACTIONS(7806), + [anon_sym_GT_EQ] = ACTIONS(7808), + [anon_sym_LT_EQ] = ACTIONS(7806), + [anon_sym_LT] = ACTIONS(7806), + [anon_sym_LT_LT] = ACTIONS(7806), + [anon_sym_GT_GT] = ACTIONS(7806), + [anon_sym___extension__] = ACTIONS(7806), + [anon_sym_COLON_COLON] = ACTIONS(7808), + [anon_sym_LBRACK] = ACTIONS(7806), + [anon_sym_RBRACK] = ACTIONS(7808), + [anon_sym_EQ] = ACTIONS(7806), + [anon_sym_const] = ACTIONS(7806), + [anon_sym_constexpr] = ACTIONS(7806), + [anon_sym_volatile] = ACTIONS(7806), + [anon_sym_restrict] = ACTIONS(7806), + [anon_sym___restrict__] = ACTIONS(7806), + [anon_sym__Atomic] = ACTIONS(7806), + [anon_sym__Noreturn] = ACTIONS(7806), + [anon_sym_noreturn] = ACTIONS(7806), + [anon_sym__Nonnull] = ACTIONS(7806), + [anon_sym_mutable] = ACTIONS(7806), + [anon_sym_constinit] = ACTIONS(7806), + [anon_sym_consteval] = ACTIONS(7806), + [anon_sym_alignas] = ACTIONS(7806), + [anon_sym__Alignas] = ACTIONS(7806), + [anon_sym_QMARK] = ACTIONS(7808), + [anon_sym_STAR_EQ] = ACTIONS(7808), + [anon_sym_SLASH_EQ] = ACTIONS(7808), + [anon_sym_PERCENT_EQ] = ACTIONS(7808), + [anon_sym_PLUS_EQ] = ACTIONS(7808), + [anon_sym_DASH_EQ] = ACTIONS(7808), + [anon_sym_LT_LT_EQ] = ACTIONS(7808), + [anon_sym_GT_GT_EQ] = ACTIONS(7808), + [anon_sym_AMP_EQ] = ACTIONS(7808), + [anon_sym_CARET_EQ] = ACTIONS(7808), + [anon_sym_PIPE_EQ] = ACTIONS(7808), + [anon_sym_and_eq] = ACTIONS(7806), + [anon_sym_or_eq] = ACTIONS(7806), + [anon_sym_xor_eq] = ACTIONS(7806), + [anon_sym_LT_EQ_GT] = ACTIONS(7808), + [anon_sym_or] = ACTIONS(7806), + [anon_sym_and] = ACTIONS(7806), + [anon_sym_bitor] = ACTIONS(7806), + [anon_sym_xor] = ACTIONS(7806), + [anon_sym_bitand] = ACTIONS(7806), + [anon_sym_not_eq] = ACTIONS(7806), + [anon_sym_DASH_DASH] = ACTIONS(7808), + [anon_sym_PLUS_PLUS] = ACTIONS(7808), + [anon_sym_DOT] = ACTIONS(7806), + [anon_sym_DOT_STAR] = ACTIONS(7808), + [anon_sym_DASH_GT] = ACTIONS(7808), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7806), + [anon_sym_final] = ACTIONS(7806), + [anon_sym_override] = ACTIONS(7806), + [anon_sym_template] = ACTIONS(7806), + [anon_sym_requires] = ACTIONS(7806), + [anon_sym_LBRACK_COLON] = ACTIONS(7808), + }, + [STATE(3045)] = { + [sym_identifier] = ACTIONS(7850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7852), + [anon_sym_COMMA] = ACTIONS(7852), + [anon_sym_LPAREN2] = ACTIONS(7852), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_PLUS] = ACTIONS(7850), + [anon_sym_STAR] = ACTIONS(7850), + [anon_sym_SLASH] = ACTIONS(7850), + [anon_sym_PERCENT] = ACTIONS(7850), + [anon_sym_PIPE_PIPE] = ACTIONS(7852), + [anon_sym_AMP_AMP] = ACTIONS(7852), + [anon_sym_PIPE] = ACTIONS(7850), + [anon_sym_CARET] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7850), + [anon_sym_EQ_EQ] = ACTIONS(7852), + [anon_sym_BANG_EQ] = ACTIONS(7852), + [anon_sym_GT] = ACTIONS(7850), + [anon_sym_GT_EQ] = ACTIONS(7852), + [anon_sym_LT_EQ] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(7850), + [anon_sym_LT_LT] = ACTIONS(7850), + [anon_sym_GT_GT] = ACTIONS(7850), + [anon_sym___extension__] = ACTIONS(7850), + [anon_sym_COLON_COLON] = ACTIONS(7852), + [anon_sym_LBRACK] = ACTIONS(7850), + [anon_sym_RBRACK] = ACTIONS(7852), + [anon_sym_EQ] = ACTIONS(7850), + [anon_sym_const] = ACTIONS(7850), + [anon_sym_constexpr] = ACTIONS(7850), + [anon_sym_volatile] = ACTIONS(7850), + [anon_sym_restrict] = ACTIONS(7850), + [anon_sym___restrict__] = ACTIONS(7850), + [anon_sym__Atomic] = ACTIONS(7850), + [anon_sym__Noreturn] = ACTIONS(7850), + [anon_sym_noreturn] = ACTIONS(7850), + [anon_sym__Nonnull] = ACTIONS(7850), + [anon_sym_mutable] = ACTIONS(7850), + [anon_sym_constinit] = ACTIONS(7850), + [anon_sym_consteval] = ACTIONS(7850), + [anon_sym_alignas] = ACTIONS(7850), + [anon_sym__Alignas] = ACTIONS(7850), + [anon_sym_QMARK] = ACTIONS(7852), + [anon_sym_STAR_EQ] = ACTIONS(7852), + [anon_sym_SLASH_EQ] = ACTIONS(7852), + [anon_sym_PERCENT_EQ] = ACTIONS(7852), + [anon_sym_PLUS_EQ] = ACTIONS(7852), + [anon_sym_DASH_EQ] = ACTIONS(7852), + [anon_sym_LT_LT_EQ] = ACTIONS(7852), + [anon_sym_GT_GT_EQ] = ACTIONS(7852), + [anon_sym_AMP_EQ] = ACTIONS(7852), + [anon_sym_CARET_EQ] = ACTIONS(7852), + [anon_sym_PIPE_EQ] = ACTIONS(7852), + [anon_sym_and_eq] = ACTIONS(7850), + [anon_sym_or_eq] = ACTIONS(7850), + [anon_sym_xor_eq] = ACTIONS(7850), + [anon_sym_LT_EQ_GT] = ACTIONS(7852), + [anon_sym_or] = ACTIONS(7850), + [anon_sym_and] = ACTIONS(7850), + [anon_sym_bitor] = ACTIONS(7850), + [anon_sym_xor] = ACTIONS(7850), + [anon_sym_bitand] = ACTIONS(7850), + [anon_sym_not_eq] = ACTIONS(7850), + [anon_sym_DASH_DASH] = ACTIONS(7852), + [anon_sym_PLUS_PLUS] = ACTIONS(7852), + [anon_sym_DOT] = ACTIONS(7850), + [anon_sym_DOT_STAR] = ACTIONS(7852), + [anon_sym_DASH_GT] = ACTIONS(7852), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7850), + [anon_sym_final] = ACTIONS(7850), + [anon_sym_override] = ACTIONS(7850), + [anon_sym_template] = ACTIONS(7850), + [anon_sym_requires] = ACTIONS(7850), + [anon_sym_LBRACK_COLON] = ACTIONS(7852), + }, + [STATE(3046)] = { + [sym_identifier] = ACTIONS(7771), + [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(7771), + [anon_sym_COLON_COLON] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7771), + [anon_sym_RBRACK] = 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), [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_decltype] = ACTIONS(7771), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_template] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_LBRACK_COLON] = ACTIONS(7773), }, - [STATE(3090)] = { + [STATE(3047)] = { + [sym_identifier] = ACTIONS(7710), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7712), + [anon_sym_COMMA] = ACTIONS(7712), + [anon_sym_LPAREN2] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7710), + [anon_sym_STAR] = ACTIONS(7710), + [anon_sym_SLASH] = ACTIONS(7710), + [anon_sym_PERCENT] = ACTIONS(7710), + [anon_sym_PIPE_PIPE] = ACTIONS(7712), + [anon_sym_AMP_AMP] = ACTIONS(7712), + [anon_sym_PIPE] = ACTIONS(7710), + [anon_sym_CARET] = ACTIONS(7710), + [anon_sym_AMP] = ACTIONS(7710), + [anon_sym_EQ_EQ] = ACTIONS(7712), + [anon_sym_BANG_EQ] = ACTIONS(7712), + [anon_sym_GT] = ACTIONS(7710), + [anon_sym_GT_EQ] = ACTIONS(7712), + [anon_sym_LT_EQ] = ACTIONS(7710), + [anon_sym_LT] = ACTIONS(7710), + [anon_sym_LT_LT] = ACTIONS(7710), + [anon_sym_GT_GT] = ACTIONS(7710), + [anon_sym___extension__] = ACTIONS(7710), + [anon_sym_COLON_COLON] = ACTIONS(7712), + [anon_sym_LBRACK] = ACTIONS(7710), + [anon_sym_RBRACK] = ACTIONS(7712), + [anon_sym_EQ] = ACTIONS(7710), + [anon_sym_const] = ACTIONS(7710), + [anon_sym_constexpr] = ACTIONS(7710), + [anon_sym_volatile] = ACTIONS(7710), + [anon_sym_restrict] = ACTIONS(7710), + [anon_sym___restrict__] = ACTIONS(7710), + [anon_sym__Atomic] = ACTIONS(7710), + [anon_sym__Noreturn] = ACTIONS(7710), + [anon_sym_noreturn] = ACTIONS(7710), + [anon_sym__Nonnull] = ACTIONS(7710), + [anon_sym_mutable] = ACTIONS(7710), + [anon_sym_constinit] = ACTIONS(7710), + [anon_sym_consteval] = ACTIONS(7710), + [anon_sym_alignas] = ACTIONS(7710), + [anon_sym__Alignas] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [anon_sym_STAR_EQ] = ACTIONS(7712), + [anon_sym_SLASH_EQ] = ACTIONS(7712), + [anon_sym_PERCENT_EQ] = ACTIONS(7712), + [anon_sym_PLUS_EQ] = ACTIONS(7712), + [anon_sym_DASH_EQ] = ACTIONS(7712), + [anon_sym_LT_LT_EQ] = ACTIONS(7712), + [anon_sym_GT_GT_EQ] = ACTIONS(7712), + [anon_sym_AMP_EQ] = ACTIONS(7712), + [anon_sym_CARET_EQ] = ACTIONS(7712), + [anon_sym_PIPE_EQ] = ACTIONS(7712), + [anon_sym_and_eq] = ACTIONS(7710), + [anon_sym_or_eq] = ACTIONS(7710), + [anon_sym_xor_eq] = ACTIONS(7710), + [anon_sym_LT_EQ_GT] = ACTIONS(7712), + [anon_sym_or] = ACTIONS(7710), + [anon_sym_and] = ACTIONS(7710), + [anon_sym_bitor] = ACTIONS(7710), + [anon_sym_xor] = ACTIONS(7710), + [anon_sym_bitand] = ACTIONS(7710), + [anon_sym_not_eq] = ACTIONS(7710), + [anon_sym_DASH_DASH] = ACTIONS(7712), + [anon_sym_PLUS_PLUS] = ACTIONS(7712), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_DOT_STAR] = ACTIONS(7712), + [anon_sym_DASH_GT] = ACTIONS(7712), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7710), + [anon_sym_final] = ACTIONS(7710), + [anon_sym_override] = ACTIONS(7710), + [anon_sym_template] = ACTIONS(7710), + [anon_sym_requires] = ACTIONS(7710), + [anon_sym_LBRACK_COLON] = ACTIONS(7712), + }, + [STATE(3048)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_RBRACK] = ACTIONS(7720), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + }, + [STATE(3049)] = { + [sym_identifier] = ACTIONS(7735), + [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(7735), + [anon_sym_COLON_COLON] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7735), + [anon_sym_RBRACK] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(7735), + [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), + [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(7735), + [anon_sym_or_eq] = ACTIONS(7735), + [anon_sym_xor_eq] = ACTIONS(7735), + [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_decltype] = ACTIONS(7735), + [anon_sym_final] = ACTIONS(7735), + [anon_sym_override] = ACTIONS(7735), + [anon_sym_template] = ACTIONS(7735), + [anon_sym_requires] = ACTIONS(7735), + [anon_sym_LBRACK_COLON] = ACTIONS(7737), + }, + [STATE(3050)] = { + [sym_identifier] = ACTIONS(7763), [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), [anon_sym_COMMA] = ACTIONS(7765), [anon_sym_LPAREN2] = ACTIONS(7765), @@ -400294,29 +407782,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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___extension__] = ACTIONS(7763), + [anon_sym_COLON_COLON] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7763), + [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_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), @@ -400324,46 +407813,351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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(7765), + [anon_sym_bitor] = ACTIONS(7763), [anon_sym_xor] = ACTIONS(7763), - [anon_sym_bitand] = ACTIONS(7765), - [anon_sym_not_eq] = ACTIONS(7765), + [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), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7765), - [anon_sym_override] = ACTIONS(7765), - [anon_sym_GT2] = ACTIONS(7765), - [anon_sym_requires] = ACTIONS(7765), + [anon_sym_decltype] = ACTIONS(7763), + [anon_sym_final] = ACTIONS(7763), + [anon_sym_override] = ACTIONS(7763), + [anon_sym_template] = ACTIONS(7763), + [anon_sym_requires] = ACTIONS(7763), + [anon_sym_LBRACK_COLON] = ACTIONS(7765), }, - [STATE(3091)] = { + [STATE(3051)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_RBRACK] = ACTIONS(7720), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + }, + [STATE(3052)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_RBRACK] = ACTIONS(7720), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + }, + [STATE(3053)] = { + [sym_identifier] = ACTIONS(7462), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7464), + [anon_sym_COMMA] = ACTIONS(7464), + [anon_sym_RPAREN] = ACTIONS(7464), + [aux_sym_preproc_if_token2] = ACTIONS(7464), + [aux_sym_preproc_else_token1] = ACTIONS(7464), + [aux_sym_preproc_elif_token1] = ACTIONS(7462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7464), + [anon_sym_LPAREN2] = ACTIONS(7464), + [anon_sym_DASH] = ACTIONS(7462), + [anon_sym_PLUS] = ACTIONS(7462), + [anon_sym_STAR] = ACTIONS(7464), + [anon_sym_SLASH] = ACTIONS(7462), + [anon_sym_PERCENT] = ACTIONS(7464), + [anon_sym_PIPE_PIPE] = ACTIONS(7464), + [anon_sym_AMP_AMP] = ACTIONS(7464), + [anon_sym_PIPE] = ACTIONS(7462), + [anon_sym_CARET] = ACTIONS(7464), + [anon_sym_AMP] = ACTIONS(7462), + [anon_sym_EQ_EQ] = ACTIONS(7464), + [anon_sym_BANG_EQ] = ACTIONS(7464), + [anon_sym_GT] = ACTIONS(7462), + [anon_sym_GT_EQ] = ACTIONS(7464), + [anon_sym_LT_EQ] = ACTIONS(7462), + [anon_sym_LT] = ACTIONS(7462), + [anon_sym_LT_LT] = ACTIONS(7464), + [anon_sym_GT_GT] = ACTIONS(7464), + [anon_sym_SEMI] = ACTIONS(7464), + [anon_sym___extension__] = ACTIONS(7462), + [anon_sym___attribute__] = ACTIONS(7462), + [anon_sym___attribute] = ACTIONS(7462), + [anon_sym_COLON] = ACTIONS(7462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7464), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7464), + [anon_sym_RBRACE] = ACTIONS(7464), + [anon_sym_LBRACK] = ACTIONS(7462), + [anon_sym_const] = ACTIONS(7462), + [anon_sym_constexpr] = ACTIONS(7462), + [anon_sym_volatile] = ACTIONS(7462), + [anon_sym_restrict] = ACTIONS(7462), + [anon_sym___restrict__] = ACTIONS(7462), + [anon_sym__Atomic] = ACTIONS(7462), + [anon_sym__Noreturn] = ACTIONS(7462), + [anon_sym_noreturn] = ACTIONS(7462), + [anon_sym__Nonnull] = ACTIONS(7462), + [anon_sym_mutable] = ACTIONS(7462), + [anon_sym_constinit] = ACTIONS(7462), + [anon_sym_consteval] = ACTIONS(7462), + [anon_sym_alignas] = ACTIONS(7462), + [anon_sym__Alignas] = ACTIONS(7462), + [anon_sym_QMARK] = ACTIONS(7464), + [anon_sym_LT_EQ_GT] = ACTIONS(7464), + [anon_sym_or] = ACTIONS(7462), + [anon_sym_and] = ACTIONS(7462), + [anon_sym_bitor] = ACTIONS(7462), + [anon_sym_xor] = ACTIONS(7462), + [anon_sym_bitand] = ACTIONS(7462), + [anon_sym_not_eq] = ACTIONS(7462), + [anon_sym_DASH_DASH] = ACTIONS(7464), + [anon_sym_PLUS_PLUS] = ACTIONS(7464), + [anon_sym_asm] = ACTIONS(7462), + [anon_sym___asm__] = ACTIONS(7462), + [anon_sym___asm] = ACTIONS(7462), + [anon_sym_DOT] = ACTIONS(7462), + [anon_sym_DOT_STAR] = ACTIONS(7464), + [anon_sym_DASH_GT] = ACTIONS(7464), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7462), + [anon_sym_override] = ACTIONS(7462), + [anon_sym_noexcept] = ACTIONS(7462), + [anon_sym_throw] = ACTIONS(7462), + [anon_sym_requires] = ACTIONS(7462), + [anon_sym_COLON_RBRACK] = ACTIONS(7464), + }, + [STATE(3054)] = { + [sym_identifier] = ACTIONS(7747), + [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(7747), + [anon_sym_COLON_COLON] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7747), + [anon_sym_RBRACK] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(7747), + [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), + [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(7747), + [anon_sym_or_eq] = ACTIONS(7747), + [anon_sym_xor_eq] = ACTIONS(7747), + [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_decltype] = ACTIONS(7747), + [anon_sym_final] = ACTIONS(7747), + [anon_sym_override] = ACTIONS(7747), + [anon_sym_template] = ACTIONS(7747), + [anon_sym_requires] = ACTIONS(7747), + [anon_sym_LBRACK_COLON] = ACTIONS(7749), + }, + [STATE(3055)] = { [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_STAR] = ACTIONS(7755), [anon_sym_SLASH] = ACTIONS(7755), - [anon_sym_PERCENT] = ACTIONS(7757), + [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(7757), + [anon_sym_CARET] = ACTIONS(7755), [anon_sym_AMP] = ACTIONS(7755), [anon_sym_EQ_EQ] = ACTIONS(7757), [anon_sym_BANG_EQ] = ACTIONS(7757), @@ -400371,22 +408165,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LT_LT] = ACTIONS(7755), + [anon_sym_GT_GT] = ACTIONS(7755), [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_COLON_COLON] = ACTIONS(7757), + [anon_sym_LBRACK] = ACTIONS(7755), + [anon_sym_RBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), [anon_sym_const] = ACTIONS(7755), [anon_sym_constexpr] = ACTIONS(7755), [anon_sym_volatile] = ACTIONS(7755), @@ -400401,8 +408186,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(7755), + [anon_sym_or_eq] = ACTIONS(7755), + [anon_sym_xor_eq] = ACTIONS(7755), [anon_sym_LT_EQ_GT] = ACTIONS(7757), [anon_sym_or] = ACTIONS(7755), [anon_sym_and] = ACTIONS(7755), @@ -400416,228 +408213,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7757), [anon_sym_DASH_GT] = ACTIONS(7757), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7755), [anon_sym_final] = ACTIONS(7755), [anon_sym_override] = ACTIONS(7755), + [anon_sym_template] = ACTIONS(7755), [anon_sym_requires] = ACTIONS(7755), - [anon_sym_COLON_RBRACK] = ACTIONS(7757), - }, - [STATE(3092)] = { - [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_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), + [anon_sym_LBRACK_COLON] = ACTIONS(7757), }, - [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(3056)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_not] = ACTIONS(3118), + [anon_sym_compl] = ACTIONS(3118), + [anon_sym_DASH_DASH] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_sizeof] = ACTIONS(3118), + [anon_sym___alignof__] = ACTIONS(3118), + [anon_sym___alignof] = ACTIONS(3118), + [anon_sym__alignof] = ACTIONS(3118), + [anon_sym_alignof] = ACTIONS(3118), + [anon_sym__Alignof] = ACTIONS(3118), + [anon_sym_offsetof] = ACTIONS(3118), + [anon_sym__Generic] = ACTIONS(3118), + [anon_sym_typename] = ACTIONS(3118), + [anon_sym_asm] = ACTIONS(3118), + [anon_sym___asm__] = ACTIONS(3118), + [anon_sym___asm] = ACTIONS(3118), + [sym_number_literal] = ACTIONS(3108), + [anon_sym_L_SQUOTE] = ACTIONS(3108), + [anon_sym_u_SQUOTE] = ACTIONS(3108), + [anon_sym_U_SQUOTE] = ACTIONS(3108), + [anon_sym_u8_SQUOTE] = ACTIONS(3108), + [anon_sym_SQUOTE] = ACTIONS(3108), + [anon_sym_L_DQUOTE] = ACTIONS(3108), + [anon_sym_u_DQUOTE] = ACTIONS(3108), + [anon_sym_U_DQUOTE] = ACTIONS(3108), + [anon_sym_u8_DQUOTE] = ACTIONS(3108), + [anon_sym_DQUOTE] = ACTIONS(3108), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [anon_sym_NULL] = ACTIONS(3118), + [anon_sym_nullptr] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_delete] = ACTIONS(3118), + [anon_sym_R_DQUOTE] = ACTIONS(3108), + [anon_sym_LR_DQUOTE] = ACTIONS(3108), + [anon_sym_uR_DQUOTE] = ACTIONS(3108), + [anon_sym_UR_DQUOTE] = ACTIONS(3108), + [anon_sym_u8R_DQUOTE] = ACTIONS(3108), + [anon_sym_co_await] = ACTIONS(3118), + [anon_sym_new] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_CARET_CARET] = ACTIONS(3108), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), + [sym_this] = ACTIONS(3118), }, - [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(3057)] = { + [sym_identifier] = ACTIONS(7775), + [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(7775), + [anon_sym_COLON_COLON] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7775), + [anon_sym_RBRACK] = ACTIONS(7777), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7775), + [anon_sym_volatile] = ACTIONS(7775), + [anon_sym_restrict] = ACTIONS(7775), + [anon_sym___restrict__] = ACTIONS(7775), + [anon_sym__Atomic] = ACTIONS(7775), + [anon_sym__Noreturn] = ACTIONS(7775), + [anon_sym_noreturn] = ACTIONS(7775), + [anon_sym__Nonnull] = ACTIONS(7775), + [anon_sym_mutable] = ACTIONS(7775), + [anon_sym_constinit] = ACTIONS(7775), + [anon_sym_consteval] = ACTIONS(7775), + [anon_sym_alignas] = ACTIONS(7775), + [anon_sym__Alignas] = ACTIONS(7775), + [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(7775), + [anon_sym_or_eq] = ACTIONS(7775), + [anon_sym_xor_eq] = ACTIONS(7775), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7775), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7775), + [anon_sym_not_eq] = ACTIONS(7775), + [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_decltype] = ACTIONS(7775), + [anon_sym_final] = ACTIONS(7775), + [anon_sym_override] = ACTIONS(7775), + [anon_sym_template] = ACTIONS(7775), + [anon_sym_requires] = ACTIONS(7775), + [anon_sym_LBRACK_COLON] = ACTIONS(7777), }, - [STATE(3095)] = { + [STATE(3058)] = { + [sym_identifier] = ACTIONS(7779), [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), [anon_sym_COMMA] = ACTIONS(7781), [anon_sym_LPAREN2] = ACTIONS(7781), @@ -400654,29 +408390,30 @@ 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(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___extension__] = ACTIONS(7779), + [anon_sym_COLON_COLON] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7779), + [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_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), [anon_sym_QMARK] = ACTIONS(7781), [anon_sym_STAR_EQ] = ACTIONS(7781), [anon_sym_SLASH_EQ] = ACTIONS(7781), @@ -400684,7452 +408421,11898 @@ 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(7779), + [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_and_eq] = ACTIONS(7779), + [anon_sym_or_eq] = ACTIONS(7779), + [anon_sym_xor_eq] = ACTIONS(7779), [anon_sym_LT_EQ_GT] = ACTIONS(7781), [anon_sym_or] = ACTIONS(7779), [anon_sym_and] = ACTIONS(7779), - [anon_sym_bitor] = ACTIONS(7781), + [anon_sym_bitor] = ACTIONS(7779), [anon_sym_xor] = ACTIONS(7779), - [anon_sym_bitand] = ACTIONS(7781), - [anon_sym_not_eq] = ACTIONS(7781), + [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(7781), - [anon_sym_override] = ACTIONS(7781), - [anon_sym_GT2] = ACTIONS(7781), - [anon_sym_requires] = ACTIONS(7781), + [anon_sym_decltype] = ACTIONS(7779), + [anon_sym_final] = ACTIONS(7779), + [anon_sym_override] = ACTIONS(7779), + [anon_sym_template] = ACTIONS(7779), + [anon_sym_requires] = ACTIONS(7779), + [anon_sym_LBRACK_COLON] = ACTIONS(7781), + }, + [STATE(3059)] = { + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_RBRACK] = ACTIONS(7796), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7796), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_and_eq] = ACTIONS(7794), + [anon_sym_or_eq] = ACTIONS(7794), + [anon_sym_xor_eq] = ACTIONS(7794), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), + }, + [STATE(3060)] = { + [sym_identifier] = ACTIONS(7798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7800), + [anon_sym_COMMA] = ACTIONS(7800), + [anon_sym_LPAREN2] = ACTIONS(7800), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_PLUS] = ACTIONS(7798), + [anon_sym_STAR] = ACTIONS(7798), + [anon_sym_SLASH] = ACTIONS(7798), + [anon_sym_PERCENT] = ACTIONS(7798), + [anon_sym_PIPE_PIPE] = ACTIONS(7800), + [anon_sym_AMP_AMP] = ACTIONS(7800), + [anon_sym_PIPE] = ACTIONS(7798), + [anon_sym_CARET] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7798), + [anon_sym_EQ_EQ] = ACTIONS(7800), + [anon_sym_BANG_EQ] = ACTIONS(7800), + [anon_sym_GT] = ACTIONS(7798), + [anon_sym_GT_EQ] = ACTIONS(7800), + [anon_sym_LT_EQ] = ACTIONS(7798), + [anon_sym_LT] = ACTIONS(7798), + [anon_sym_LT_LT] = ACTIONS(7798), + [anon_sym_GT_GT] = ACTIONS(7798), + [anon_sym___extension__] = ACTIONS(7798), + [anon_sym_COLON_COLON] = ACTIONS(7800), + [anon_sym_LBRACK] = ACTIONS(7798), + [anon_sym_RBRACK] = ACTIONS(7800), + [anon_sym_EQ] = ACTIONS(7798), + [anon_sym_const] = ACTIONS(7798), + [anon_sym_constexpr] = ACTIONS(7798), + [anon_sym_volatile] = ACTIONS(7798), + [anon_sym_restrict] = ACTIONS(7798), + [anon_sym___restrict__] = ACTIONS(7798), + [anon_sym__Atomic] = ACTIONS(7798), + [anon_sym__Noreturn] = ACTIONS(7798), + [anon_sym_noreturn] = ACTIONS(7798), + [anon_sym__Nonnull] = ACTIONS(7798), + [anon_sym_mutable] = ACTIONS(7798), + [anon_sym_constinit] = ACTIONS(7798), + [anon_sym_consteval] = ACTIONS(7798), + [anon_sym_alignas] = ACTIONS(7798), + [anon_sym__Alignas] = ACTIONS(7798), + [anon_sym_QMARK] = ACTIONS(7800), + [anon_sym_STAR_EQ] = ACTIONS(7800), + [anon_sym_SLASH_EQ] = ACTIONS(7800), + [anon_sym_PERCENT_EQ] = ACTIONS(7800), + [anon_sym_PLUS_EQ] = ACTIONS(7800), + [anon_sym_DASH_EQ] = ACTIONS(7800), + [anon_sym_LT_LT_EQ] = ACTIONS(7800), + [anon_sym_GT_GT_EQ] = ACTIONS(7800), + [anon_sym_AMP_EQ] = ACTIONS(7800), + [anon_sym_CARET_EQ] = ACTIONS(7800), + [anon_sym_PIPE_EQ] = ACTIONS(7800), + [anon_sym_and_eq] = ACTIONS(7798), + [anon_sym_or_eq] = ACTIONS(7798), + [anon_sym_xor_eq] = ACTIONS(7798), + [anon_sym_LT_EQ_GT] = ACTIONS(7800), + [anon_sym_or] = ACTIONS(7798), + [anon_sym_and] = ACTIONS(7798), + [anon_sym_bitor] = ACTIONS(7798), + [anon_sym_xor] = ACTIONS(7798), + [anon_sym_bitand] = ACTIONS(7798), + [anon_sym_not_eq] = ACTIONS(7798), + [anon_sym_DASH_DASH] = ACTIONS(7800), + [anon_sym_PLUS_PLUS] = ACTIONS(7800), + [anon_sym_DOT] = ACTIONS(7798), + [anon_sym_DOT_STAR] = ACTIONS(7800), + [anon_sym_DASH_GT] = ACTIONS(7800), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7798), + [anon_sym_final] = ACTIONS(7798), + [anon_sym_override] = ACTIONS(7798), + [anon_sym_template] = ACTIONS(7798), + [anon_sym_requires] = ACTIONS(7798), + [anon_sym_LBRACK_COLON] = ACTIONS(7800), + }, + [STATE(3061)] = { + [sym_identifier] = ACTIONS(7802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7804), + [anon_sym_COMMA] = ACTIONS(7804), + [anon_sym_LPAREN2] = ACTIONS(7804), + [anon_sym_DASH] = ACTIONS(7802), + [anon_sym_PLUS] = ACTIONS(7802), + [anon_sym_STAR] = ACTIONS(7802), + [anon_sym_SLASH] = ACTIONS(7802), + [anon_sym_PERCENT] = ACTIONS(7802), + [anon_sym_PIPE_PIPE] = ACTIONS(7804), + [anon_sym_AMP_AMP] = ACTIONS(7804), + [anon_sym_PIPE] = ACTIONS(7802), + [anon_sym_CARET] = ACTIONS(7802), + [anon_sym_AMP] = ACTIONS(7802), + [anon_sym_EQ_EQ] = ACTIONS(7804), + [anon_sym_BANG_EQ] = ACTIONS(7804), + [anon_sym_GT] = ACTIONS(7802), + [anon_sym_GT_EQ] = ACTIONS(7804), + [anon_sym_LT_EQ] = ACTIONS(7802), + [anon_sym_LT] = ACTIONS(7802), + [anon_sym_LT_LT] = ACTIONS(7802), + [anon_sym_GT_GT] = ACTIONS(7802), + [anon_sym___extension__] = ACTIONS(7802), + [anon_sym_COLON_COLON] = ACTIONS(7804), + [anon_sym_LBRACK] = ACTIONS(7802), + [anon_sym_RBRACK] = ACTIONS(7804), + [anon_sym_EQ] = ACTIONS(7802), + [anon_sym_const] = ACTIONS(7802), + [anon_sym_constexpr] = ACTIONS(7802), + [anon_sym_volatile] = ACTIONS(7802), + [anon_sym_restrict] = ACTIONS(7802), + [anon_sym___restrict__] = ACTIONS(7802), + [anon_sym__Atomic] = ACTIONS(7802), + [anon_sym__Noreturn] = ACTIONS(7802), + [anon_sym_noreturn] = ACTIONS(7802), + [anon_sym__Nonnull] = ACTIONS(7802), + [anon_sym_mutable] = ACTIONS(7802), + [anon_sym_constinit] = ACTIONS(7802), + [anon_sym_consteval] = ACTIONS(7802), + [anon_sym_alignas] = ACTIONS(7802), + [anon_sym__Alignas] = ACTIONS(7802), + [anon_sym_QMARK] = ACTIONS(7804), + [anon_sym_STAR_EQ] = ACTIONS(7804), + [anon_sym_SLASH_EQ] = ACTIONS(7804), + [anon_sym_PERCENT_EQ] = ACTIONS(7804), + [anon_sym_PLUS_EQ] = ACTIONS(7804), + [anon_sym_DASH_EQ] = ACTIONS(7804), + [anon_sym_LT_LT_EQ] = ACTIONS(7804), + [anon_sym_GT_GT_EQ] = ACTIONS(7804), + [anon_sym_AMP_EQ] = ACTIONS(7804), + [anon_sym_CARET_EQ] = ACTIONS(7804), + [anon_sym_PIPE_EQ] = ACTIONS(7804), + [anon_sym_and_eq] = ACTIONS(7802), + [anon_sym_or_eq] = ACTIONS(7802), + [anon_sym_xor_eq] = ACTIONS(7802), + [anon_sym_LT_EQ_GT] = ACTIONS(7804), + [anon_sym_or] = ACTIONS(7802), + [anon_sym_and] = ACTIONS(7802), + [anon_sym_bitor] = ACTIONS(7802), + [anon_sym_xor] = ACTIONS(7802), + [anon_sym_bitand] = ACTIONS(7802), + [anon_sym_not_eq] = ACTIONS(7802), + [anon_sym_DASH_DASH] = ACTIONS(7804), + [anon_sym_PLUS_PLUS] = ACTIONS(7804), + [anon_sym_DOT] = ACTIONS(7802), + [anon_sym_DOT_STAR] = ACTIONS(7804), + [anon_sym_DASH_GT] = ACTIONS(7804), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7802), + [anon_sym_final] = ACTIONS(7802), + [anon_sym_override] = ACTIONS(7802), + [anon_sym_template] = ACTIONS(7802), + [anon_sym_requires] = ACTIONS(7802), + [anon_sym_LBRACK_COLON] = ACTIONS(7804), + }, + [STATE(3062)] = { + [sym_template_argument_list] = STATE(2658), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7444), + [anon_sym_RPAREN] = ACTIONS(7444), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_DASH] = ACTIONS(7451), + [anon_sym_PLUS] = ACTIONS(7451), + [anon_sym_STAR] = ACTIONS(7451), + [anon_sym_SLASH] = ACTIONS(7451), + [anon_sym_PERCENT] = ACTIONS(7451), + [anon_sym_PIPE_PIPE] = ACTIONS(7444), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7451), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7444), + [anon_sym_BANG_EQ] = ACTIONS(7444), + [anon_sym_GT] = ACTIONS(7451), + [anon_sym_GT_EQ] = ACTIONS(7444), + [anon_sym_LT_EQ] = ACTIONS(7451), + [anon_sym_LT] = ACTIONS(8135), + [anon_sym_LT_LT] = ACTIONS(7451), + [anon_sym_GT_GT] = ACTIONS(7451), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_EQ] = ACTIONS(7451), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7444), + [anon_sym_STAR_EQ] = ACTIONS(7444), + [anon_sym_SLASH_EQ] = ACTIONS(7444), + [anon_sym_PERCENT_EQ] = ACTIONS(7444), + [anon_sym_PLUS_EQ] = ACTIONS(7444), + [anon_sym_DASH_EQ] = ACTIONS(7444), + [anon_sym_LT_LT_EQ] = ACTIONS(7444), + [anon_sym_GT_GT_EQ] = ACTIONS(7444), + [anon_sym_AMP_EQ] = ACTIONS(7444), + [anon_sym_CARET_EQ] = ACTIONS(7444), + [anon_sym_PIPE_EQ] = ACTIONS(7444), + [anon_sym_and_eq] = ACTIONS(7451), + [anon_sym_or_eq] = ACTIONS(7451), + [anon_sym_xor_eq] = ACTIONS(7451), + [anon_sym_LT_EQ_GT] = ACTIONS(7444), + [anon_sym_or] = ACTIONS(7451), + [anon_sym_and] = ACTIONS(7451), + [anon_sym_bitor] = ACTIONS(7451), + [anon_sym_xor] = ACTIONS(7451), + [anon_sym_bitand] = ACTIONS(7451), + [anon_sym_not_eq] = ACTIONS(7451), + [anon_sym_DASH_DASH] = ACTIONS(7444), + [anon_sym_PLUS_PLUS] = ACTIONS(7444), + [anon_sym_DOT] = ACTIONS(7451), + [anon_sym_DOT_STAR] = ACTIONS(7444), + [anon_sym_DASH_GT] = ACTIONS(7451), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_DASH_GT_STAR] = ACTIONS(7444), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + }, + [STATE(3063)] = { + [sym_identifier] = ACTIONS(7810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7812), + [anon_sym_COMMA] = ACTIONS(7812), + [anon_sym_LPAREN2] = ACTIONS(7812), + [anon_sym_DASH] = ACTIONS(7810), + [anon_sym_PLUS] = ACTIONS(7810), + [anon_sym_STAR] = ACTIONS(7810), + [anon_sym_SLASH] = ACTIONS(7810), + [anon_sym_PERCENT] = ACTIONS(7810), + [anon_sym_PIPE_PIPE] = ACTIONS(7812), + [anon_sym_AMP_AMP] = ACTIONS(7812), + [anon_sym_PIPE] = ACTIONS(7810), + [anon_sym_CARET] = ACTIONS(7810), + [anon_sym_AMP] = ACTIONS(7810), + [anon_sym_EQ_EQ] = ACTIONS(7812), + [anon_sym_BANG_EQ] = ACTIONS(7812), + [anon_sym_GT] = ACTIONS(7810), + [anon_sym_GT_EQ] = ACTIONS(7812), + [anon_sym_LT_EQ] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(7810), + [anon_sym_LT_LT] = ACTIONS(7810), + [anon_sym_GT_GT] = ACTIONS(7810), + [anon_sym___extension__] = ACTIONS(7810), + [anon_sym_COLON_COLON] = ACTIONS(7812), + [anon_sym_LBRACK] = ACTIONS(7810), + [anon_sym_RBRACK] = ACTIONS(7812), + [anon_sym_EQ] = ACTIONS(7810), + [anon_sym_const] = ACTIONS(7810), + [anon_sym_constexpr] = ACTIONS(7810), + [anon_sym_volatile] = ACTIONS(7810), + [anon_sym_restrict] = ACTIONS(7810), + [anon_sym___restrict__] = ACTIONS(7810), + [anon_sym__Atomic] = ACTIONS(7810), + [anon_sym__Noreturn] = ACTIONS(7810), + [anon_sym_noreturn] = ACTIONS(7810), + [anon_sym__Nonnull] = ACTIONS(7810), + [anon_sym_mutable] = ACTIONS(7810), + [anon_sym_constinit] = ACTIONS(7810), + [anon_sym_consteval] = ACTIONS(7810), + [anon_sym_alignas] = ACTIONS(7810), + [anon_sym__Alignas] = ACTIONS(7810), + [anon_sym_QMARK] = ACTIONS(7812), + [anon_sym_STAR_EQ] = ACTIONS(7812), + [anon_sym_SLASH_EQ] = ACTIONS(7812), + [anon_sym_PERCENT_EQ] = ACTIONS(7812), + [anon_sym_PLUS_EQ] = ACTIONS(7812), + [anon_sym_DASH_EQ] = ACTIONS(7812), + [anon_sym_LT_LT_EQ] = ACTIONS(7812), + [anon_sym_GT_GT_EQ] = ACTIONS(7812), + [anon_sym_AMP_EQ] = ACTIONS(7812), + [anon_sym_CARET_EQ] = ACTIONS(7812), + [anon_sym_PIPE_EQ] = ACTIONS(7812), + [anon_sym_and_eq] = ACTIONS(7810), + [anon_sym_or_eq] = ACTIONS(7810), + [anon_sym_xor_eq] = ACTIONS(7810), + [anon_sym_LT_EQ_GT] = ACTIONS(7812), + [anon_sym_or] = ACTIONS(7810), + [anon_sym_and] = ACTIONS(7810), + [anon_sym_bitor] = ACTIONS(7810), + [anon_sym_xor] = ACTIONS(7810), + [anon_sym_bitand] = ACTIONS(7810), + [anon_sym_not_eq] = ACTIONS(7810), + [anon_sym_DASH_DASH] = ACTIONS(7812), + [anon_sym_PLUS_PLUS] = ACTIONS(7812), + [anon_sym_DOT] = ACTIONS(7810), + [anon_sym_DOT_STAR] = ACTIONS(7812), + [anon_sym_DASH_GT] = ACTIONS(7812), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7810), + [anon_sym_final] = ACTIONS(7810), + [anon_sym_override] = ACTIONS(7810), + [anon_sym_template] = ACTIONS(7810), + [anon_sym_requires] = ACTIONS(7810), + [anon_sym_LBRACK_COLON] = ACTIONS(7812), + }, + [STATE(3064)] = { + [sym_identifier] = ACTIONS(7814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7816), + [anon_sym_COMMA] = ACTIONS(7816), + [anon_sym_LPAREN2] = ACTIONS(7816), + [anon_sym_DASH] = ACTIONS(7814), + [anon_sym_PLUS] = ACTIONS(7814), + [anon_sym_STAR] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7814), + [anon_sym_PERCENT] = ACTIONS(7814), + [anon_sym_PIPE_PIPE] = ACTIONS(7816), + [anon_sym_AMP_AMP] = ACTIONS(7816), + [anon_sym_PIPE] = ACTIONS(7814), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_AMP] = ACTIONS(7814), + [anon_sym_EQ_EQ] = ACTIONS(7816), + [anon_sym_BANG_EQ] = ACTIONS(7816), + [anon_sym_GT] = ACTIONS(7814), + [anon_sym_GT_EQ] = ACTIONS(7816), + [anon_sym_LT_EQ] = ACTIONS(7814), + [anon_sym_LT] = ACTIONS(7814), + [anon_sym_LT_LT] = ACTIONS(7814), + [anon_sym_GT_GT] = ACTIONS(7814), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym_COLON_COLON] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(7814), + [anon_sym_RBRACK] = ACTIONS(7816), + [anon_sym_EQ] = ACTIONS(7814), + [anon_sym_const] = ACTIONS(7814), + [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(7814), + [anon_sym__Alignas] = ACTIONS(7814), + [anon_sym_QMARK] = ACTIONS(7816), + [anon_sym_STAR_EQ] = ACTIONS(7816), + [anon_sym_SLASH_EQ] = ACTIONS(7816), + [anon_sym_PERCENT_EQ] = ACTIONS(7816), + [anon_sym_PLUS_EQ] = ACTIONS(7816), + [anon_sym_DASH_EQ] = ACTIONS(7816), + [anon_sym_LT_LT_EQ] = ACTIONS(7816), + [anon_sym_GT_GT_EQ] = ACTIONS(7816), + [anon_sym_AMP_EQ] = ACTIONS(7816), + [anon_sym_CARET_EQ] = ACTIONS(7816), + [anon_sym_PIPE_EQ] = ACTIONS(7816), + [anon_sym_and_eq] = ACTIONS(7814), + [anon_sym_or_eq] = ACTIONS(7814), + [anon_sym_xor_eq] = ACTIONS(7814), + [anon_sym_LT_EQ_GT] = ACTIONS(7816), + [anon_sym_or] = ACTIONS(7814), + [anon_sym_and] = ACTIONS(7814), + [anon_sym_bitor] = ACTIONS(7814), + [anon_sym_xor] = ACTIONS(7814), + [anon_sym_bitand] = ACTIONS(7814), + [anon_sym_not_eq] = ACTIONS(7814), + [anon_sym_DASH_DASH] = ACTIONS(7816), + [anon_sym_PLUS_PLUS] = ACTIONS(7816), + [anon_sym_DOT] = ACTIONS(7814), + [anon_sym_DOT_STAR] = ACTIONS(7816), + [anon_sym_DASH_GT] = ACTIONS(7816), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7814), + [anon_sym_final] = ACTIONS(7814), + [anon_sym_override] = ACTIONS(7814), + [anon_sym_template] = ACTIONS(7814), + [anon_sym_requires] = ACTIONS(7814), + [anon_sym_LBRACK_COLON] = ACTIONS(7816), + }, + [STATE(3065)] = { + [sym_identifier] = ACTIONS(7826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7828), + [anon_sym_COMMA] = ACTIONS(7828), + [anon_sym_LPAREN2] = ACTIONS(7828), + [anon_sym_DASH] = ACTIONS(7826), + [anon_sym_PLUS] = ACTIONS(7826), + [anon_sym_STAR] = ACTIONS(7826), + [anon_sym_SLASH] = ACTIONS(7826), + [anon_sym_PERCENT] = ACTIONS(7826), + [anon_sym_PIPE_PIPE] = ACTIONS(7828), + [anon_sym_AMP_AMP] = ACTIONS(7828), + [anon_sym_PIPE] = ACTIONS(7826), + [anon_sym_CARET] = ACTIONS(7826), + [anon_sym_AMP] = ACTIONS(7826), + [anon_sym_EQ_EQ] = ACTIONS(7828), + [anon_sym_BANG_EQ] = ACTIONS(7828), + [anon_sym_GT] = ACTIONS(7826), + [anon_sym_GT_EQ] = ACTIONS(7828), + [anon_sym_LT_EQ] = ACTIONS(7826), + [anon_sym_LT] = ACTIONS(7826), + [anon_sym_LT_LT] = ACTIONS(7826), + [anon_sym_GT_GT] = ACTIONS(7826), + [anon_sym___extension__] = ACTIONS(7826), + [anon_sym_COLON_COLON] = ACTIONS(7828), + [anon_sym_LBRACK] = ACTIONS(7826), + [anon_sym_RBRACK] = ACTIONS(7828), + [anon_sym_EQ] = ACTIONS(7826), + [anon_sym_const] = ACTIONS(7826), + [anon_sym_constexpr] = ACTIONS(7826), + [anon_sym_volatile] = ACTIONS(7826), + [anon_sym_restrict] = ACTIONS(7826), + [anon_sym___restrict__] = ACTIONS(7826), + [anon_sym__Atomic] = ACTIONS(7826), + [anon_sym__Noreturn] = ACTIONS(7826), + [anon_sym_noreturn] = ACTIONS(7826), + [anon_sym__Nonnull] = ACTIONS(7826), + [anon_sym_mutable] = ACTIONS(7826), + [anon_sym_constinit] = ACTIONS(7826), + [anon_sym_consteval] = ACTIONS(7826), + [anon_sym_alignas] = ACTIONS(7826), + [anon_sym__Alignas] = ACTIONS(7826), + [anon_sym_QMARK] = ACTIONS(7828), + [anon_sym_STAR_EQ] = ACTIONS(7828), + [anon_sym_SLASH_EQ] = ACTIONS(7828), + [anon_sym_PERCENT_EQ] = ACTIONS(7828), + [anon_sym_PLUS_EQ] = ACTIONS(7828), + [anon_sym_DASH_EQ] = ACTIONS(7828), + [anon_sym_LT_LT_EQ] = ACTIONS(7828), + [anon_sym_GT_GT_EQ] = ACTIONS(7828), + [anon_sym_AMP_EQ] = ACTIONS(7828), + [anon_sym_CARET_EQ] = ACTIONS(7828), + [anon_sym_PIPE_EQ] = ACTIONS(7828), + [anon_sym_and_eq] = ACTIONS(7826), + [anon_sym_or_eq] = ACTIONS(7826), + [anon_sym_xor_eq] = ACTIONS(7826), + [anon_sym_LT_EQ_GT] = ACTIONS(7828), + [anon_sym_or] = ACTIONS(7826), + [anon_sym_and] = ACTIONS(7826), + [anon_sym_bitor] = ACTIONS(7826), + [anon_sym_xor] = ACTIONS(7826), + [anon_sym_bitand] = ACTIONS(7826), + [anon_sym_not_eq] = ACTIONS(7826), + [anon_sym_DASH_DASH] = ACTIONS(7828), + [anon_sym_PLUS_PLUS] = ACTIONS(7828), + [anon_sym_DOT] = ACTIONS(7826), + [anon_sym_DOT_STAR] = ACTIONS(7828), + [anon_sym_DASH_GT] = ACTIONS(7828), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7826), + [anon_sym_final] = ACTIONS(7826), + [anon_sym_override] = ACTIONS(7826), + [anon_sym_template] = ACTIONS(7826), + [anon_sym_requires] = ACTIONS(7826), + [anon_sym_LBRACK_COLON] = ACTIONS(7828), + }, + [STATE(3066)] = { + [sym_identifier] = ACTIONS(7830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7832), + [anon_sym_COMMA] = ACTIONS(7832), + [anon_sym_LPAREN2] = ACTIONS(7832), + [anon_sym_DASH] = ACTIONS(7830), + [anon_sym_PLUS] = ACTIONS(7830), + [anon_sym_STAR] = ACTIONS(7830), + [anon_sym_SLASH] = ACTIONS(7830), + [anon_sym_PERCENT] = ACTIONS(7830), + [anon_sym_PIPE_PIPE] = ACTIONS(7832), + [anon_sym_AMP_AMP] = ACTIONS(7832), + [anon_sym_PIPE] = ACTIONS(7830), + [anon_sym_CARET] = ACTIONS(7830), + [anon_sym_AMP] = ACTIONS(7830), + [anon_sym_EQ_EQ] = ACTIONS(7832), + [anon_sym_BANG_EQ] = ACTIONS(7832), + [anon_sym_GT] = ACTIONS(7830), + [anon_sym_GT_EQ] = ACTIONS(7832), + [anon_sym_LT_EQ] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(7830), + [anon_sym_LT_LT] = ACTIONS(7830), + [anon_sym_GT_GT] = ACTIONS(7830), + [anon_sym___extension__] = ACTIONS(7830), + [anon_sym_COLON_COLON] = ACTIONS(7832), + [anon_sym_LBRACK] = ACTIONS(7830), + [anon_sym_RBRACK] = ACTIONS(7832), + [anon_sym_EQ] = ACTIONS(7830), + [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(7830), + [anon_sym__Alignas] = ACTIONS(7830), + [anon_sym_QMARK] = ACTIONS(7832), + [anon_sym_STAR_EQ] = ACTIONS(7832), + [anon_sym_SLASH_EQ] = ACTIONS(7832), + [anon_sym_PERCENT_EQ] = ACTIONS(7832), + [anon_sym_PLUS_EQ] = ACTIONS(7832), + [anon_sym_DASH_EQ] = ACTIONS(7832), + [anon_sym_LT_LT_EQ] = ACTIONS(7832), + [anon_sym_GT_GT_EQ] = ACTIONS(7832), + [anon_sym_AMP_EQ] = ACTIONS(7832), + [anon_sym_CARET_EQ] = ACTIONS(7832), + [anon_sym_PIPE_EQ] = ACTIONS(7832), + [anon_sym_and_eq] = ACTIONS(7830), + [anon_sym_or_eq] = ACTIONS(7830), + [anon_sym_xor_eq] = ACTIONS(7830), + [anon_sym_LT_EQ_GT] = ACTIONS(7832), + [anon_sym_or] = ACTIONS(7830), + [anon_sym_and] = ACTIONS(7830), + [anon_sym_bitor] = ACTIONS(7830), + [anon_sym_xor] = ACTIONS(7830), + [anon_sym_bitand] = ACTIONS(7830), + [anon_sym_not_eq] = ACTIONS(7830), + [anon_sym_DASH_DASH] = ACTIONS(7832), + [anon_sym_PLUS_PLUS] = ACTIONS(7832), + [anon_sym_DOT] = ACTIONS(7830), + [anon_sym_DOT_STAR] = ACTIONS(7832), + [anon_sym_DASH_GT] = ACTIONS(7832), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7830), + [anon_sym_final] = ACTIONS(7830), + [anon_sym_override] = ACTIONS(7830), + [anon_sym_template] = ACTIONS(7830), + [anon_sym_requires] = ACTIONS(7830), + [anon_sym_LBRACK_COLON] = ACTIONS(7832), + }, + [STATE(3067)] = { + [sym_identifier] = ACTIONS(7834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_LPAREN2] = ACTIONS(7836), + [anon_sym_DASH] = ACTIONS(7834), + [anon_sym_PLUS] = ACTIONS(7834), + [anon_sym_STAR] = ACTIONS(7834), + [anon_sym_SLASH] = ACTIONS(7834), + [anon_sym_PERCENT] = ACTIONS(7834), + [anon_sym_PIPE_PIPE] = ACTIONS(7836), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_PIPE] = ACTIONS(7834), + [anon_sym_CARET] = ACTIONS(7834), + [anon_sym_AMP] = ACTIONS(7834), + [anon_sym_EQ_EQ] = ACTIONS(7836), + [anon_sym_BANG_EQ] = ACTIONS(7836), + [anon_sym_GT] = ACTIONS(7834), + [anon_sym_GT_EQ] = ACTIONS(7836), + [anon_sym_LT_EQ] = ACTIONS(7834), + [anon_sym_LT] = ACTIONS(7834), + [anon_sym_LT_LT] = ACTIONS(7834), + [anon_sym_GT_GT] = ACTIONS(7834), + [anon_sym___extension__] = ACTIONS(7834), + [anon_sym_COLON_COLON] = ACTIONS(7836), + [anon_sym_LBRACK] = ACTIONS(7834), + [anon_sym_RBRACK] = ACTIONS(7836), + [anon_sym_EQ] = ACTIONS(7834), + [anon_sym_const] = ACTIONS(7834), + [anon_sym_constexpr] = ACTIONS(7834), + [anon_sym_volatile] = ACTIONS(7834), + [anon_sym_restrict] = ACTIONS(7834), + [anon_sym___restrict__] = ACTIONS(7834), + [anon_sym__Atomic] = ACTIONS(7834), + [anon_sym__Noreturn] = ACTIONS(7834), + [anon_sym_noreturn] = ACTIONS(7834), + [anon_sym__Nonnull] = ACTIONS(7834), + [anon_sym_mutable] = ACTIONS(7834), + [anon_sym_constinit] = ACTIONS(7834), + [anon_sym_consteval] = ACTIONS(7834), + [anon_sym_alignas] = ACTIONS(7834), + [anon_sym__Alignas] = ACTIONS(7834), + [anon_sym_QMARK] = ACTIONS(7836), + [anon_sym_STAR_EQ] = ACTIONS(7836), + [anon_sym_SLASH_EQ] = ACTIONS(7836), + [anon_sym_PERCENT_EQ] = ACTIONS(7836), + [anon_sym_PLUS_EQ] = ACTIONS(7836), + [anon_sym_DASH_EQ] = ACTIONS(7836), + [anon_sym_LT_LT_EQ] = ACTIONS(7836), + [anon_sym_GT_GT_EQ] = ACTIONS(7836), + [anon_sym_AMP_EQ] = ACTIONS(7836), + [anon_sym_CARET_EQ] = ACTIONS(7836), + [anon_sym_PIPE_EQ] = ACTIONS(7836), + [anon_sym_and_eq] = ACTIONS(7834), + [anon_sym_or_eq] = ACTIONS(7834), + [anon_sym_xor_eq] = ACTIONS(7834), + [anon_sym_LT_EQ_GT] = ACTIONS(7836), + [anon_sym_or] = ACTIONS(7834), + [anon_sym_and] = ACTIONS(7834), + [anon_sym_bitor] = ACTIONS(7834), + [anon_sym_xor] = ACTIONS(7834), + [anon_sym_bitand] = ACTIONS(7834), + [anon_sym_not_eq] = ACTIONS(7834), + [anon_sym_DASH_DASH] = ACTIONS(7836), + [anon_sym_PLUS_PLUS] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7834), + [anon_sym_DOT_STAR] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(7836), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7834), + [anon_sym_final] = ACTIONS(7834), + [anon_sym_override] = ACTIONS(7834), + [anon_sym_template] = ACTIONS(7834), + [anon_sym_requires] = ACTIONS(7834), + [anon_sym_LBRACK_COLON] = ACTIONS(7836), + }, + [STATE(3068)] = { + [sym_identifier] = ACTIONS(7842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7844), + [anon_sym_COMMA] = ACTIONS(7844), + [anon_sym_LPAREN2] = ACTIONS(7844), + [anon_sym_DASH] = ACTIONS(7842), + [anon_sym_PLUS] = ACTIONS(7842), + [anon_sym_STAR] = ACTIONS(7842), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_PERCENT] = ACTIONS(7842), + [anon_sym_PIPE_PIPE] = ACTIONS(7844), + [anon_sym_AMP_AMP] = ACTIONS(7844), + [anon_sym_PIPE] = ACTIONS(7842), + [anon_sym_CARET] = ACTIONS(7842), + [anon_sym_AMP] = ACTIONS(7842), + [anon_sym_EQ_EQ] = ACTIONS(7844), + [anon_sym_BANG_EQ] = ACTIONS(7844), + [anon_sym_GT] = ACTIONS(7842), + [anon_sym_GT_EQ] = ACTIONS(7844), + [anon_sym_LT_EQ] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(7842), + [anon_sym_LT_LT] = ACTIONS(7842), + [anon_sym_GT_GT] = ACTIONS(7842), + [anon_sym___extension__] = ACTIONS(7842), + [anon_sym_COLON_COLON] = ACTIONS(7844), + [anon_sym_LBRACK] = ACTIONS(7842), + [anon_sym_RBRACK] = ACTIONS(7844), + [anon_sym_EQ] = ACTIONS(7842), + [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(7842), + [anon_sym__Alignas] = ACTIONS(7842), + [anon_sym_QMARK] = ACTIONS(7844), + [anon_sym_STAR_EQ] = ACTIONS(7844), + [anon_sym_SLASH_EQ] = ACTIONS(7844), + [anon_sym_PERCENT_EQ] = ACTIONS(7844), + [anon_sym_PLUS_EQ] = ACTIONS(7844), + [anon_sym_DASH_EQ] = ACTIONS(7844), + [anon_sym_LT_LT_EQ] = ACTIONS(7844), + [anon_sym_GT_GT_EQ] = ACTIONS(7844), + [anon_sym_AMP_EQ] = ACTIONS(7844), + [anon_sym_CARET_EQ] = ACTIONS(7844), + [anon_sym_PIPE_EQ] = ACTIONS(7844), + [anon_sym_and_eq] = ACTIONS(7842), + [anon_sym_or_eq] = ACTIONS(7842), + [anon_sym_xor_eq] = ACTIONS(7842), + [anon_sym_LT_EQ_GT] = ACTIONS(7844), + [anon_sym_or] = ACTIONS(7842), + [anon_sym_and] = ACTIONS(7842), + [anon_sym_bitor] = ACTIONS(7842), + [anon_sym_xor] = ACTIONS(7842), + [anon_sym_bitand] = ACTIONS(7842), + [anon_sym_not_eq] = ACTIONS(7842), + [anon_sym_DASH_DASH] = ACTIONS(7844), + [anon_sym_PLUS_PLUS] = ACTIONS(7844), + [anon_sym_DOT] = ACTIONS(7842), + [anon_sym_DOT_STAR] = ACTIONS(7844), + [anon_sym_DASH_GT] = ACTIONS(7844), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7842), + [anon_sym_final] = ACTIONS(7842), + [anon_sym_override] = ACTIONS(7842), + [anon_sym_template] = ACTIONS(7842), + [anon_sym_requires] = ACTIONS(7842), + [anon_sym_LBRACK_COLON] = ACTIONS(7844), + }, + [STATE(3069)] = { + [sym_identifier] = ACTIONS(7846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7848), + [anon_sym_COMMA] = ACTIONS(7848), + [anon_sym_LPAREN2] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7846), + [anon_sym_STAR] = ACTIONS(7846), + [anon_sym_SLASH] = ACTIONS(7846), + [anon_sym_PERCENT] = ACTIONS(7846), + [anon_sym_PIPE_PIPE] = ACTIONS(7848), + [anon_sym_AMP_AMP] = ACTIONS(7848), + [anon_sym_PIPE] = ACTIONS(7846), + [anon_sym_CARET] = ACTIONS(7846), + [anon_sym_AMP] = ACTIONS(7846), + [anon_sym_EQ_EQ] = ACTIONS(7848), + [anon_sym_BANG_EQ] = ACTIONS(7848), + [anon_sym_GT] = ACTIONS(7846), + [anon_sym_GT_EQ] = ACTIONS(7848), + [anon_sym_LT_EQ] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(7846), + [anon_sym_LT_LT] = ACTIONS(7846), + [anon_sym_GT_GT] = ACTIONS(7846), + [anon_sym___extension__] = ACTIONS(7846), + [anon_sym_COLON_COLON] = ACTIONS(7848), + [anon_sym_LBRACK] = ACTIONS(7846), + [anon_sym_RBRACK] = ACTIONS(7848), + [anon_sym_EQ] = ACTIONS(7846), + [anon_sym_const] = ACTIONS(7846), + [anon_sym_constexpr] = ACTIONS(7846), + [anon_sym_volatile] = ACTIONS(7846), + [anon_sym_restrict] = ACTIONS(7846), + [anon_sym___restrict__] = ACTIONS(7846), + [anon_sym__Atomic] = ACTIONS(7846), + [anon_sym__Noreturn] = ACTIONS(7846), + [anon_sym_noreturn] = ACTIONS(7846), + [anon_sym__Nonnull] = ACTIONS(7846), + [anon_sym_mutable] = ACTIONS(7846), + [anon_sym_constinit] = ACTIONS(7846), + [anon_sym_consteval] = ACTIONS(7846), + [anon_sym_alignas] = ACTIONS(7846), + [anon_sym__Alignas] = ACTIONS(7846), + [anon_sym_QMARK] = ACTIONS(7848), + [anon_sym_STAR_EQ] = ACTIONS(7848), + [anon_sym_SLASH_EQ] = ACTIONS(7848), + [anon_sym_PERCENT_EQ] = ACTIONS(7848), + [anon_sym_PLUS_EQ] = ACTIONS(7848), + [anon_sym_DASH_EQ] = ACTIONS(7848), + [anon_sym_LT_LT_EQ] = ACTIONS(7848), + [anon_sym_GT_GT_EQ] = ACTIONS(7848), + [anon_sym_AMP_EQ] = ACTIONS(7848), + [anon_sym_CARET_EQ] = ACTIONS(7848), + [anon_sym_PIPE_EQ] = ACTIONS(7848), + [anon_sym_and_eq] = ACTIONS(7846), + [anon_sym_or_eq] = ACTIONS(7846), + [anon_sym_xor_eq] = ACTIONS(7846), + [anon_sym_LT_EQ_GT] = ACTIONS(7848), + [anon_sym_or] = ACTIONS(7846), + [anon_sym_and] = ACTIONS(7846), + [anon_sym_bitor] = ACTIONS(7846), + [anon_sym_xor] = ACTIONS(7846), + [anon_sym_bitand] = ACTIONS(7846), + [anon_sym_not_eq] = ACTIONS(7846), + [anon_sym_DASH_DASH] = ACTIONS(7848), + [anon_sym_PLUS_PLUS] = ACTIONS(7848), + [anon_sym_DOT] = ACTIONS(7846), + [anon_sym_DOT_STAR] = ACTIONS(7848), + [anon_sym_DASH_GT] = ACTIONS(7848), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7846), + [anon_sym_final] = ACTIONS(7846), + [anon_sym_override] = ACTIONS(7846), + [anon_sym_template] = ACTIONS(7846), + [anon_sym_requires] = ACTIONS(7846), + [anon_sym_LBRACK_COLON] = ACTIONS(7848), + }, + [STATE(3070)] = { + [sym_identifier] = ACTIONS(7854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7856), + [anon_sym_COMMA] = ACTIONS(7856), + [anon_sym_LPAREN2] = ACTIONS(7856), + [anon_sym_DASH] = ACTIONS(7854), + [anon_sym_PLUS] = ACTIONS(7854), + [anon_sym_STAR] = ACTIONS(7854), + [anon_sym_SLASH] = ACTIONS(7854), + [anon_sym_PERCENT] = ACTIONS(7854), + [anon_sym_PIPE_PIPE] = ACTIONS(7856), + [anon_sym_AMP_AMP] = ACTIONS(7856), + [anon_sym_PIPE] = ACTIONS(7854), + [anon_sym_CARET] = ACTIONS(7854), + [anon_sym_AMP] = ACTIONS(7854), + [anon_sym_EQ_EQ] = ACTIONS(7856), + [anon_sym_BANG_EQ] = ACTIONS(7856), + [anon_sym_GT] = ACTIONS(7854), + [anon_sym_GT_EQ] = ACTIONS(7856), + [anon_sym_LT_EQ] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(7854), + [anon_sym_GT_GT] = ACTIONS(7854), + [anon_sym___extension__] = ACTIONS(7854), + [anon_sym_COLON_COLON] = ACTIONS(7856), + [anon_sym_LBRACK] = ACTIONS(7854), + [anon_sym_RBRACK] = ACTIONS(7856), + [anon_sym_EQ] = ACTIONS(7854), + [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(7854), + [anon_sym__Alignas] = ACTIONS(7854), + [anon_sym_QMARK] = ACTIONS(7856), + [anon_sym_STAR_EQ] = ACTIONS(7856), + [anon_sym_SLASH_EQ] = ACTIONS(7856), + [anon_sym_PERCENT_EQ] = ACTIONS(7856), + [anon_sym_PLUS_EQ] = ACTIONS(7856), + [anon_sym_DASH_EQ] = ACTIONS(7856), + [anon_sym_LT_LT_EQ] = ACTIONS(7856), + [anon_sym_GT_GT_EQ] = ACTIONS(7856), + [anon_sym_AMP_EQ] = ACTIONS(7856), + [anon_sym_CARET_EQ] = ACTIONS(7856), + [anon_sym_PIPE_EQ] = ACTIONS(7856), + [anon_sym_and_eq] = ACTIONS(7854), + [anon_sym_or_eq] = ACTIONS(7854), + [anon_sym_xor_eq] = ACTIONS(7854), + [anon_sym_LT_EQ_GT] = ACTIONS(7856), + [anon_sym_or] = ACTIONS(7854), + [anon_sym_and] = ACTIONS(7854), + [anon_sym_bitor] = ACTIONS(7854), + [anon_sym_xor] = ACTIONS(7854), + [anon_sym_bitand] = ACTIONS(7854), + [anon_sym_not_eq] = ACTIONS(7854), + [anon_sym_DASH_DASH] = ACTIONS(7856), + [anon_sym_PLUS_PLUS] = ACTIONS(7856), + [anon_sym_DOT] = ACTIONS(7854), + [anon_sym_DOT_STAR] = ACTIONS(7856), + [anon_sym_DASH_GT] = ACTIONS(7856), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7854), + [anon_sym_final] = ACTIONS(7854), + [anon_sym_override] = ACTIONS(7854), + [anon_sym_template] = ACTIONS(7854), + [anon_sym_requires] = ACTIONS(7854), + [anon_sym_LBRACK_COLON] = ACTIONS(7856), + }, + [STATE(3071)] = { + [sym_identifier] = ACTIONS(7858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7860), + [anon_sym_COMMA] = ACTIONS(7860), + [anon_sym_LPAREN2] = ACTIONS(7860), + [anon_sym_DASH] = ACTIONS(7858), + [anon_sym_PLUS] = ACTIONS(7858), + [anon_sym_STAR] = ACTIONS(7858), + [anon_sym_SLASH] = ACTIONS(7858), + [anon_sym_PERCENT] = ACTIONS(7858), + [anon_sym_PIPE_PIPE] = ACTIONS(7860), + [anon_sym_AMP_AMP] = ACTIONS(7860), + [anon_sym_PIPE] = ACTIONS(7858), + [anon_sym_CARET] = ACTIONS(7858), + [anon_sym_AMP] = ACTIONS(7858), + [anon_sym_EQ_EQ] = ACTIONS(7860), + [anon_sym_BANG_EQ] = ACTIONS(7860), + [anon_sym_GT] = ACTIONS(7858), + [anon_sym_GT_EQ] = ACTIONS(7860), + [anon_sym_LT_EQ] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(7858), + [anon_sym_LT_LT] = ACTIONS(7858), + [anon_sym_GT_GT] = ACTIONS(7858), + [anon_sym___extension__] = ACTIONS(7858), + [anon_sym_COLON_COLON] = ACTIONS(7860), + [anon_sym_LBRACK] = ACTIONS(7858), + [anon_sym_RBRACK] = ACTIONS(7860), + [anon_sym_EQ] = ACTIONS(7858), + [anon_sym_const] = ACTIONS(7858), + [anon_sym_constexpr] = ACTIONS(7858), + [anon_sym_volatile] = ACTIONS(7858), + [anon_sym_restrict] = ACTIONS(7858), + [anon_sym___restrict__] = ACTIONS(7858), + [anon_sym__Atomic] = ACTIONS(7858), + [anon_sym__Noreturn] = ACTIONS(7858), + [anon_sym_noreturn] = ACTIONS(7858), + [anon_sym__Nonnull] = ACTIONS(7858), + [anon_sym_mutable] = ACTIONS(7858), + [anon_sym_constinit] = ACTIONS(7858), + [anon_sym_consteval] = ACTIONS(7858), + [anon_sym_alignas] = ACTIONS(7858), + [anon_sym__Alignas] = ACTIONS(7858), + [anon_sym_QMARK] = ACTIONS(7860), + [anon_sym_STAR_EQ] = ACTIONS(7860), + [anon_sym_SLASH_EQ] = ACTIONS(7860), + [anon_sym_PERCENT_EQ] = ACTIONS(7860), + [anon_sym_PLUS_EQ] = ACTIONS(7860), + [anon_sym_DASH_EQ] = ACTIONS(7860), + [anon_sym_LT_LT_EQ] = ACTIONS(7860), + [anon_sym_GT_GT_EQ] = ACTIONS(7860), + [anon_sym_AMP_EQ] = ACTIONS(7860), + [anon_sym_CARET_EQ] = ACTIONS(7860), + [anon_sym_PIPE_EQ] = ACTIONS(7860), + [anon_sym_and_eq] = ACTIONS(7858), + [anon_sym_or_eq] = ACTIONS(7858), + [anon_sym_xor_eq] = ACTIONS(7858), + [anon_sym_LT_EQ_GT] = ACTIONS(7860), + [anon_sym_or] = ACTIONS(7858), + [anon_sym_and] = ACTIONS(7858), + [anon_sym_bitor] = ACTIONS(7858), + [anon_sym_xor] = ACTIONS(7858), + [anon_sym_bitand] = ACTIONS(7858), + [anon_sym_not_eq] = ACTIONS(7858), + [anon_sym_DASH_DASH] = ACTIONS(7860), + [anon_sym_PLUS_PLUS] = ACTIONS(7860), + [anon_sym_DOT] = ACTIONS(7858), + [anon_sym_DOT_STAR] = ACTIONS(7860), + [anon_sym_DASH_GT] = ACTIONS(7860), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7858), + [anon_sym_final] = ACTIONS(7858), + [anon_sym_override] = ACTIONS(7858), + [anon_sym_template] = ACTIONS(7858), + [anon_sym_requires] = ACTIONS(7858), + [anon_sym_LBRACK_COLON] = ACTIONS(7860), + }, + [STATE(3072)] = { + [sym_template_argument_list] = STATE(3186), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_PIPE_PIPE] = ACTIONS(6778), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(6785), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6778), + [anon_sym_BANG_EQ] = ACTIONS(6778), + [anon_sym_GT] = ACTIONS(6785), + [anon_sym_GT_EQ] = ACTIONS(6785), + [anon_sym_LT_EQ] = ACTIONS(6785), + [anon_sym_LT] = ACTIONS(8884), + [anon_sym_LT_LT] = ACTIONS(6785), + [anon_sym_GT_GT] = ACTIONS(6785), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6778), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6783), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6778), + [anon_sym_or] = ACTIONS(6785), + [anon_sym_and] = ACTIONS(6785), + [anon_sym_bitor] = ACTIONS(6785), + [anon_sym_xor] = ACTIONS(6785), + [anon_sym_bitand] = ACTIONS(6785), + [anon_sym_not_eq] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(6778), + [anon_sym_PLUS_PLUS] = ACTIONS(6778), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_DOT_STAR] = ACTIONS(6778), + [anon_sym_DASH_GT] = ACTIONS(6778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_GT2] = ACTIONS(6778), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(3073)] = { + [sym_identifier] = ACTIONS(7491), + [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(7491), + [anon_sym_COLON_COLON] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [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(7491), + [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_decltype] = ACTIONS(7491), + [anon_sym_final] = ACTIONS(7491), + [anon_sym_override] = ACTIONS(7491), + [anon_sym_template] = ACTIONS(7491), + [anon_sym_GT2] = ACTIONS(7493), + [anon_sym_requires] = ACTIONS(7491), + [anon_sym_LBRACK_COLON] = ACTIONS(7493), + }, + [STATE(3074)] = { + [sym_argument_list] = STATE(6413), + [sym_initializer_list] = STATE(6473), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8462), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(3075)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3118), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_GT2] = ACTIONS(3108), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), + }, + [STATE(3076)] = { + [sym_template_argument_list] = STATE(3182), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_PIPE_PIPE] = ACTIONS(6778), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(6785), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6778), + [anon_sym_BANG_EQ] = ACTIONS(6778), + [anon_sym_GT] = ACTIONS(6785), + [anon_sym_GT_EQ] = ACTIONS(6785), + [anon_sym_LT_EQ] = ACTIONS(6785), + [anon_sym_LT] = ACTIONS(8884), + [anon_sym_LT_LT] = ACTIONS(6785), + [anon_sym_GT_GT] = ACTIONS(6785), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6778), + [anon_sym_STAR_EQ] = ACTIONS(6778), + [anon_sym_SLASH_EQ] = ACTIONS(6778), + [anon_sym_PERCENT_EQ] = ACTIONS(6778), + [anon_sym_PLUS_EQ] = ACTIONS(6778), + [anon_sym_DASH_EQ] = ACTIONS(6778), + [anon_sym_LT_LT_EQ] = ACTIONS(6778), + [anon_sym_GT_GT_EQ] = ACTIONS(6785), + [anon_sym_AMP_EQ] = ACTIONS(6778), + [anon_sym_CARET_EQ] = ACTIONS(6778), + [anon_sym_PIPE_EQ] = ACTIONS(6778), + [anon_sym_and_eq] = ACTIONS(6785), + [anon_sym_or_eq] = ACTIONS(6785), + [anon_sym_xor_eq] = ACTIONS(6785), + [anon_sym_LT_EQ_GT] = ACTIONS(6778), + [anon_sym_or] = ACTIONS(6785), + [anon_sym_and] = ACTIONS(6785), + [anon_sym_bitor] = ACTIONS(6785), + [anon_sym_xor] = ACTIONS(6785), + [anon_sym_bitand] = ACTIONS(6785), + [anon_sym_not_eq] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(6778), + [anon_sym_PLUS_PLUS] = ACTIONS(6778), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_DOT_STAR] = ACTIONS(6778), + [anon_sym_DASH_GT] = ACTIONS(6778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_GT2] = ACTIONS(6778), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(3077)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7293), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(3078)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7259), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_GT2] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), + }, + [STATE(3079)] = { + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token2] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [aux_sym_preproc_else_token1] = ACTIONS(3392), + [aux_sym_preproc_elif_token1] = ACTIONS(3392), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym___attribute] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym__Nonnull] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym__Alignas] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_private] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_friend] = ACTIONS(3392), + [anon_sym_public] = ACTIONS(3392), + [anon_sym_protected] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [anon_sym_catch] = ACTIONS(3392), + [anon_sym_LBRACK_COLON] = ACTIONS(3394), + }, + [STATE(3080)] = { + [sym_argument_list] = STATE(6556), + [sym_initializer_list] = STATE(6443), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8462), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(3081)] = { + [sym_attribute_specifier] = STATE(3312), + [sym_identifier] = ACTIONS(7706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7708), + [anon_sym_COMMA] = ACTIONS(7708), + [anon_sym_RPAREN] = ACTIONS(7708), + [aux_sym_preproc_if_token2] = ACTIONS(7708), + [aux_sym_preproc_else_token1] = ACTIONS(7708), + [aux_sym_preproc_elif_token1] = ACTIONS(7706), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7708), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7708), + [anon_sym_LPAREN2] = ACTIONS(7708), + [anon_sym_DASH] = ACTIONS(7706), + [anon_sym_PLUS] = ACTIONS(7706), + [anon_sym_STAR] = ACTIONS(7708), + [anon_sym_SLASH] = ACTIONS(7706), + [anon_sym_PERCENT] = ACTIONS(7708), + [anon_sym_PIPE_PIPE] = ACTIONS(7708), + [anon_sym_AMP_AMP] = ACTIONS(7708), + [anon_sym_PIPE] = ACTIONS(7706), + [anon_sym_CARET] = ACTIONS(7708), + [anon_sym_AMP] = ACTIONS(7706), + [anon_sym_EQ_EQ] = ACTIONS(7708), + [anon_sym_BANG_EQ] = ACTIONS(7708), + [anon_sym_GT] = ACTIONS(7706), + [anon_sym_GT_EQ] = ACTIONS(7708), + [anon_sym_LT_EQ] = ACTIONS(7706), + [anon_sym_LT] = ACTIONS(7706), + [anon_sym_LT_LT] = ACTIONS(7708), + [anon_sym_GT_GT] = ACTIONS(7708), + [anon_sym_SEMI] = ACTIONS(7708), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7706), + [anon_sym_COLON_COLON] = ACTIONS(7708), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7708), + [anon_sym_LBRACE] = ACTIONS(7708), + [anon_sym_RBRACE] = ACTIONS(7708), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_const] = ACTIONS(7706), + [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(7708), + [anon_sym_LT_EQ_GT] = ACTIONS(7708), + [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(7708), + [anon_sym_PLUS_PLUS] = ACTIONS(7708), + [anon_sym_DOT] = ACTIONS(7706), + [anon_sym_DOT_STAR] = ACTIONS(7708), + [anon_sym_DASH_GT] = ACTIONS(7708), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7706), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_template] = ACTIONS(7706), + [anon_sym_requires] = ACTIONS(7706), + [anon_sym_LBRACK_COLON] = ACTIONS(7708), + [anon_sym_COLON_RBRACK] = ACTIONS(7708), + }, + [STATE(3082)] = { + [sym_template_argument_list] = STATE(3200), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_PIPE_PIPE] = ACTIONS(6778), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(6785), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6778), + [anon_sym_BANG_EQ] = ACTIONS(6778), + [anon_sym_GT] = ACTIONS(6785), + [anon_sym_GT_EQ] = ACTIONS(6778), + [anon_sym_LT_EQ] = ACTIONS(6785), + [anon_sym_LT] = ACTIONS(8888), + [anon_sym_LT_LT] = ACTIONS(6785), + [anon_sym_GT_GT] = ACTIONS(6785), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_RBRACK] = ACTIONS(6778), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6778), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6778), + [anon_sym_or] = ACTIONS(6785), + [anon_sym_and] = ACTIONS(6785), + [anon_sym_bitor] = ACTIONS(6785), + [anon_sym_xor] = ACTIONS(6785), + [anon_sym_bitand] = ACTIONS(6785), + [anon_sym_not_eq] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(6778), + [anon_sym_PLUS_PLUS] = ACTIONS(6778), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_DOT_STAR] = ACTIONS(6778), + [anon_sym_DASH_GT] = ACTIONS(6778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(3083)] = { + [sym_identifier] = ACTIONS(7491), + [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(7491), + [anon_sym_COLON_COLON] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [anon_sym_RBRACK] = 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_decltype] = ACTIONS(7491), + [anon_sym_final] = ACTIONS(7491), + [anon_sym_override] = ACTIONS(7491), + [anon_sym_template] = ACTIONS(7491), + [anon_sym_requires] = ACTIONS(7491), + [anon_sym_LBRACK_COLON] = ACTIONS(7493), + }, + [STATE(3084)] = { + [sym_template_argument_list] = STATE(3199), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6778), + [anon_sym_COMMA] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6785), + [anon_sym_PLUS] = ACTIONS(6785), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6785), + [anon_sym_PERCENT] = ACTIONS(6785), + [anon_sym_PIPE_PIPE] = ACTIONS(6778), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6785), + [anon_sym_CARET] = ACTIONS(6785), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6778), + [anon_sym_BANG_EQ] = ACTIONS(6778), + [anon_sym_GT] = ACTIONS(6785), + [anon_sym_GT_EQ] = ACTIONS(6778), + [anon_sym_LT_EQ] = ACTIONS(6785), + [anon_sym_LT] = ACTIONS(8888), + [anon_sym_LT_LT] = ACTIONS(6785), + [anon_sym_GT_GT] = ACTIONS(6785), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_RBRACK] = ACTIONS(6778), + [anon_sym_EQ] = ACTIONS(6785), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6778), + [anon_sym_STAR_EQ] = ACTIONS(6778), + [anon_sym_SLASH_EQ] = ACTIONS(6778), + [anon_sym_PERCENT_EQ] = ACTIONS(6778), + [anon_sym_PLUS_EQ] = ACTIONS(6778), + [anon_sym_DASH_EQ] = ACTIONS(6778), + [anon_sym_LT_LT_EQ] = ACTIONS(6778), + [anon_sym_GT_GT_EQ] = ACTIONS(6778), + [anon_sym_AMP_EQ] = ACTIONS(6778), + [anon_sym_CARET_EQ] = ACTIONS(6778), + [anon_sym_PIPE_EQ] = ACTIONS(6778), + [anon_sym_and_eq] = ACTIONS(6785), + [anon_sym_or_eq] = ACTIONS(6785), + [anon_sym_xor_eq] = ACTIONS(6785), + [anon_sym_LT_EQ_GT] = ACTIONS(6778), + [anon_sym_or] = ACTIONS(6785), + [anon_sym_and] = ACTIONS(6785), + [anon_sym_bitor] = ACTIONS(6785), + [anon_sym_xor] = ACTIONS(6785), + [anon_sym_bitand] = ACTIONS(6785), + [anon_sym_not_eq] = ACTIONS(6785), + [anon_sym_DASH_DASH] = ACTIONS(6778), + [anon_sym_PLUS_PLUS] = ACTIONS(6778), + [anon_sym_DOT] = ACTIONS(6785), + [anon_sym_DOT_STAR] = ACTIONS(6778), + [anon_sym_DASH_GT] = ACTIONS(6778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(3085)] = { + [sym_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym__function_exception_specification] = STATE(3662), + [sym__function_attributes_end] = STATE(5056), + [sym__function_postfix] = STATE(6392), + [sym_trailing_return_type] = STATE(5132), + [sym_noexcept] = STATE(3662), + [sym_throw_specifier] = STATE(3662), + [sym_requires_clause] = STATE(6392), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7474), + [anon_sym_and] = ACTIONS(7474), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7474), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8834), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8837), + [anon_sym_override] = ACTIONS(8837), + [anon_sym_noexcept] = ACTIONS(7093), + [anon_sym_throw] = ACTIONS(7095), + [anon_sym_requires] = ACTIONS(8840), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), + }, + [STATE(3086)] = { + [sym_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym__function_exception_specification] = STATE(3666), + [sym__function_attributes_end] = STATE(5098), + [sym__function_postfix] = STATE(6229), + [sym_trailing_return_type] = STATE(5138), + [sym_noexcept] = STATE(3666), + [sym_throw_specifier] = STATE(3666), + [sym_requires_clause] = STATE(6229), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [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(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8870), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8892), + [anon_sym_override] = ACTIONS(8892), + [anon_sym_noexcept] = ACTIONS(7093), + [anon_sym_throw] = ACTIONS(7095), + [anon_sym_requires] = ACTIONS(8895), + [anon_sym_DASH_GT_STAR] = ACTIONS(7623), + }, + [STATE(3087)] = { + [sym_attribute_specifier] = STATE(3226), + [sym_identifier] = ACTIONS(7570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7572), + [anon_sym_COMMA] = ACTIONS(7572), + [anon_sym_RPAREN] = ACTIONS(7572), + [aux_sym_preproc_if_token2] = ACTIONS(7572), + [aux_sym_preproc_else_token1] = ACTIONS(7572), + [aux_sym_preproc_elif_token1] = ACTIONS(7570), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7572), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7572), + [anon_sym_LPAREN2] = ACTIONS(7572), + [anon_sym_DASH] = ACTIONS(7570), + [anon_sym_PLUS] = ACTIONS(7570), + [anon_sym_STAR] = ACTIONS(7572), + [anon_sym_SLASH] = ACTIONS(7570), + [anon_sym_PERCENT] = ACTIONS(7572), + [anon_sym_PIPE_PIPE] = ACTIONS(7572), + [anon_sym_AMP_AMP] = ACTIONS(7572), + [anon_sym_PIPE] = ACTIONS(7570), + [anon_sym_CARET] = ACTIONS(7572), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7572), + [anon_sym_BANG_EQ] = ACTIONS(7572), + [anon_sym_GT] = ACTIONS(7570), + [anon_sym_GT_EQ] = ACTIONS(7572), + [anon_sym_LT_EQ] = ACTIONS(7570), + [anon_sym_LT] = ACTIONS(7570), + [anon_sym_LT_LT] = ACTIONS(7572), + [anon_sym_GT_GT] = ACTIONS(7572), + [anon_sym_SEMI] = ACTIONS(7572), + [anon_sym___extension__] = ACTIONS(7570), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7570), + [anon_sym_COLON_COLON] = ACTIONS(7572), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7572), + [anon_sym_LBRACE] = ACTIONS(7572), + [anon_sym_RBRACE] = ACTIONS(7572), + [anon_sym_LBRACK] = ACTIONS(7570), + [anon_sym_const] = ACTIONS(7570), + [anon_sym_constexpr] = ACTIONS(7570), + [anon_sym_volatile] = ACTIONS(7570), + [anon_sym_restrict] = ACTIONS(7570), + [anon_sym___restrict__] = ACTIONS(7570), + [anon_sym__Atomic] = ACTIONS(7570), + [anon_sym__Noreturn] = ACTIONS(7570), + [anon_sym_noreturn] = ACTIONS(7570), + [anon_sym__Nonnull] = ACTIONS(7570), + [anon_sym_mutable] = ACTIONS(7570), + [anon_sym_constinit] = ACTIONS(7570), + [anon_sym_consteval] = ACTIONS(7570), + [anon_sym_alignas] = ACTIONS(7570), + [anon_sym__Alignas] = ACTIONS(7570), + [anon_sym_QMARK] = ACTIONS(7572), + [anon_sym_LT_EQ_GT] = ACTIONS(7572), + [anon_sym_or] = ACTIONS(7570), + [anon_sym_and] = ACTIONS(7570), + [anon_sym_bitor] = ACTIONS(7570), + [anon_sym_xor] = ACTIONS(7570), + [anon_sym_bitand] = ACTIONS(7570), + [anon_sym_not_eq] = ACTIONS(7570), + [anon_sym_DASH_DASH] = ACTIONS(7572), + [anon_sym_PLUS_PLUS] = ACTIONS(7572), + [anon_sym_DOT] = ACTIONS(7570), + [anon_sym_DOT_STAR] = ACTIONS(7572), + [anon_sym_DASH_GT] = ACTIONS(7572), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7570), + [anon_sym_final] = ACTIONS(7570), + [anon_sym_override] = ACTIONS(7570), + [anon_sym_template] = ACTIONS(7570), + [anon_sym_requires] = ACTIONS(7570), + [anon_sym_LBRACK_COLON] = ACTIONS(7572), + [anon_sym_COLON_RBRACK] = ACTIONS(7572), + }, + [STATE(3088)] = { + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(8477), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(3089)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_and_eq] = ACTIONS(3118), + [anon_sym_or_eq] = ACTIONS(3118), + [anon_sym_xor_eq] = ACTIONS(3118), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), + }, + [STATE(3090)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_RBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_and_eq] = ACTIONS(7259), + [anon_sym_or_eq] = ACTIONS(7259), + [anon_sym_xor_eq] = ACTIONS(7259), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), + }, + [STATE(3091)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6819), + [anon_sym_SLASH_EQ] = ACTIONS(6819), + [anon_sym_PERCENT_EQ] = ACTIONS(6819), + [anon_sym_PLUS_EQ] = ACTIONS(6819), + [anon_sym_DASH_EQ] = ACTIONS(6819), + [anon_sym_LT_LT_EQ] = ACTIONS(6819), + [anon_sym_GT_GT_EQ] = ACTIONS(6819), + [anon_sym_AMP_EQ] = ACTIONS(6819), + [anon_sym_CARET_EQ] = ACTIONS(6819), + [anon_sym_PIPE_EQ] = ACTIONS(6819), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6826), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6819), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(3092)] = { + [sym_ms_based_modifier] = STATE(12068), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(6459), + [sym__declarator] = STATE(9918), + [sym__abstract_declarator] = STATE(10162), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4041), + [sym_alignas_qualifier] = STATE(7255), + [sym_parameter_list] = STATE(5887), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8812), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(4041), + [aux_sym_pointer_declarator_repeat1] = STATE(6459), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8876), + [anon_sym_AMP_AMP] = ACTIONS(8878), + [anon_sym_AMP] = ACTIONS(8880), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(8882), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(5655), + [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(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3093)] = { + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [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(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym___extension__] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_virtual] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym___attribute__] = ACTIONS(8898), + [anon_sym___attribute] = ACTIONS(8898), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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_LBRACK_COLON] = ACTIONS(3176), + }, + [STATE(3094)] = { + [sym__abstract_declarator] = STATE(5682), + [sym_abstract_parenthesized_declarator] = STATE(5286), + [sym_abstract_pointer_declarator] = STATE(5286), + [sym_abstract_function_declarator] = STATE(5286), + [sym_abstract_array_declarator] = STATE(5286), + [sym_parameter_list] = STATE(2062), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5286), + [sym__function_declarator_seq] = STATE(5287), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9530), + [sym_abstract_qualified_identifier] = STATE(5286), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_RPAREN] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(6620), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6730), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6732), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6734), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6736), + [anon_sym_LBRACK] = ACTIONS(6636), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7862), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_and_eq] = ACTIONS(7864), + [anon_sym_or_eq] = ACTIONS(7864), + [anon_sym_xor_eq] = ACTIONS(7864), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7864), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(7862), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3095)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [aux_sym_preproc_if_token2] = ACTIONS(6822), + [aux_sym_preproc_else_token1] = ACTIONS(6822), + [aux_sym_preproc_elif_token1] = ACTIONS(6815), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6822), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_STAR] = ACTIONS(6822), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE] = ACTIONS(6815), + [anon_sym_CARET] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_EQ_EQ] = ACTIONS(6822), + [anon_sym_BANG_EQ] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6815), + [anon_sym_GT_EQ] = ACTIONS(6822), + [anon_sym_LT_EQ] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(6815), + [anon_sym_LT_LT] = ACTIONS(6822), + [anon_sym_GT_GT] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_LT_EQ_GT] = ACTIONS(6822), + [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(6822), + [anon_sym_PLUS_PLUS] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6815), + [anon_sym_DOT_STAR] = ACTIONS(6822), + [anon_sym_DASH_GT] = ACTIONS(6822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + [anon_sym_COLON_RBRACK] = ACTIONS(6822), }, [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), + [sym_ms_based_modifier] = STATE(12068), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(3097), + [sym__declarator] = STATE(9853), + [sym__abstract_declarator] = STATE(10144), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(3986), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8830), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(3986), + [aux_sym_pointer_declarator_repeat1] = STATE(3097), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8900), + [anon_sym_AMP_AMP] = ACTIONS(8902), + [anon_sym_AMP] = ACTIONS(8904), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(8906), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_ms_based_modifier] = STATE(12068), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(6459), + [sym__declarator] = STATE(9918), + [sym__abstract_declarator] = STATE(10183), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(3991), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8830), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(3991), + [aux_sym_pointer_declarator_repeat1] = STATE(6459), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8900), + [anon_sym_AMP_AMP] = ACTIONS(8902), + [anon_sym_AMP] = ACTIONS(8904), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(8906), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), [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_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_RPAREN] = ACTIONS(6831), + [aux_sym_preproc_if_token2] = ACTIONS(6831), + [aux_sym_preproc_else_token1] = ACTIONS(6831), + [aux_sym_preproc_elif_token1] = ACTIONS(6829), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6831), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6831), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6831), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6831), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6831), + [anon_sym_GT_GT] = ACTIONS(6831), + [anon_sym_SEMI] = ACTIONS(6831), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_RBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), + [anon_sym_COLON_RBRACK] = ACTIONS(6831), }, [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), + [sym_argument_list] = STATE(6570), + [sym_initializer_list] = STATE(6582), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym__abstract_declarator] = STATE(5568), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_parameter_list] = STATE(2107), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9628), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_RPAREN] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6740), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6742), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6744), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7862), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7864), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(7864), + [anon_sym_override] = ACTIONS(7864), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(7864), + [anon_sym_DASH_GT_STAR] = ACTIONS(7862), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_argument_list] = STATE(6427), + [sym_initializer_list] = STATE(6456), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(3038), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_RPAREN] = ACTIONS(6805), + [aux_sym_preproc_if_token2] = ACTIONS(6805), + [aux_sym_preproc_else_token1] = ACTIONS(6805), + [aux_sym_preproc_elif_token1] = ACTIONS(6803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6805), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6805), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6805), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6805), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6805), + [anon_sym_GT_GT] = ACTIONS(6805), + [anon_sym_SEMI] = ACTIONS(6805), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6805), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_RBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), + [anon_sym_COLON_RBRACK] = ACTIONS(6805), }, [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), + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [aux_sym_preproc_if_token2] = ACTIONS(6801), + [aux_sym_preproc_else_token1] = ACTIONS(6801), + [aux_sym_preproc_elif_token1] = ACTIONS(6799), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6801), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6801), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6801), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6801), + [anon_sym_SEMI] = ACTIONS(6801), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_RBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), + [anon_sym_COLON_RBRACK] = ACTIONS(6801), }, [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), + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_RPAREN] = ACTIONS(6809), + [aux_sym_preproc_if_token2] = ACTIONS(6809), + [aux_sym_preproc_else_token1] = ACTIONS(6809), + [aux_sym_preproc_elif_token1] = ACTIONS(6807), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6809), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6809), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6809), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6809), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6809), + [anon_sym_GT_GT] = ACTIONS(6809), + [anon_sym_SEMI] = ACTIONS(6809), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6809), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_RBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [anon_sym_LT_EQ_GT] = ACTIONS(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), + [anon_sym_COLON_RBRACK] = ACTIONS(6809), }, [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), + [sym_ms_based_modifier] = STATE(12869), + [sym_ms_unaligned_ptr_modifier] = STATE(7214), + [sym_ms_pointer_modifier] = STATE(3106), + [sym__type_declarator] = STATE(9308), + [sym__abstract_declarator] = STATE(10071), + [sym_parenthesized_type_declarator] = STATE(9579), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(9579), + [sym_pointer_type_declarator] = STATE(9634), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(9579), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(9579), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(3992), + [sym_alignas_qualifier] = STATE(7080), + [sym_parameter_list] = STATE(5388), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(9579), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9640), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(3992), + [aux_sym_pointer_declarator_repeat1] = STATE(3106), + [sym_identifier] = ACTIONS(8908), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(8910), + [anon_sym_STAR] = ACTIONS(8912), + [anon_sym_AMP_AMP] = ACTIONS(8914), + [anon_sym_AMP] = ACTIONS(8916), + [anon_sym___extension__] = ACTIONS(8918), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(8920), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(8922), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8922), + [sym_ms_signed_ptr_modifier] = ACTIONS(8922), + [anon_sym__unaligned] = ACTIONS(8924), + [anon_sym___unaligned] = ACTIONS(8924), + [anon_sym_signed] = ACTIONS(8926), + [anon_sym_unsigned] = ACTIONS(8926), + [anon_sym_long] = ACTIONS(8926), + [anon_sym_short] = ACTIONS(8926), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_const] = ACTIONS(8918), + [anon_sym_constexpr] = ACTIONS(8918), + [anon_sym_volatile] = ACTIONS(8918), + [anon_sym_restrict] = ACTIONS(8918), + [anon_sym___restrict__] = ACTIONS(8918), + [anon_sym__Atomic] = ACTIONS(8918), + [anon_sym__Noreturn] = ACTIONS(8918), + [anon_sym_noreturn] = ACTIONS(8918), + [anon_sym__Nonnull] = ACTIONS(8918), + [anon_sym_mutable] = ACTIONS(8918), + [anon_sym_constinit] = ACTIONS(8918), + [anon_sym_consteval] = ACTIONS(8918), + [anon_sym_alignas] = ACTIONS(8928), + [anon_sym__Alignas] = ACTIONS(8928), + [sym_primitive_type] = ACTIONS(8930), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5994), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_ms_based_modifier] = STATE(12869), + [sym_ms_unaligned_ptr_modifier] = STATE(7214), + [sym_ms_pointer_modifier] = STATE(7011), + [sym__type_declarator] = STATE(9288), + [sym__abstract_declarator] = STATE(10072), + [sym_parenthesized_type_declarator] = STATE(9579), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(9579), + [sym_pointer_type_declarator] = STATE(9634), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(9579), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(9579), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(3994), + [sym_alignas_qualifier] = STATE(7080), + [sym_parameter_list] = STATE(5388), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(9579), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9640), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(3994), + [aux_sym_pointer_declarator_repeat1] = STATE(7011), + [sym_identifier] = ACTIONS(8908), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(8910), + [anon_sym_STAR] = ACTIONS(8912), + [anon_sym_AMP_AMP] = ACTIONS(8914), + [anon_sym_AMP] = ACTIONS(8916), + [anon_sym___extension__] = ACTIONS(8918), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(8920), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(8922), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8922), + [sym_ms_signed_ptr_modifier] = ACTIONS(8922), + [anon_sym__unaligned] = ACTIONS(8924), + [anon_sym___unaligned] = ACTIONS(8924), + [anon_sym_signed] = ACTIONS(8926), + [anon_sym_unsigned] = ACTIONS(8926), + [anon_sym_long] = ACTIONS(8926), + [anon_sym_short] = ACTIONS(8926), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_EQ] = ACTIONS(5968), + [anon_sym_const] = ACTIONS(8918), + [anon_sym_constexpr] = ACTIONS(8918), + [anon_sym_volatile] = ACTIONS(8918), + [anon_sym_restrict] = ACTIONS(8918), + [anon_sym___restrict__] = ACTIONS(8918), + [anon_sym__Atomic] = ACTIONS(8918), + [anon_sym__Noreturn] = ACTIONS(8918), + [anon_sym_noreturn] = ACTIONS(8918), + [anon_sym__Nonnull] = ACTIONS(8918), + [anon_sym_mutable] = ACTIONS(8918), + [anon_sym_constinit] = ACTIONS(8918), + [anon_sym_consteval] = ACTIONS(8918), + [anon_sym_alignas] = ACTIONS(8928), + [anon_sym__Alignas] = ACTIONS(8928), + [sym_primitive_type] = ACTIONS(8930), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = ACTIONS(7545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7547), + [anon_sym_COMMA] = ACTIONS(7547), + [anon_sym_RPAREN] = ACTIONS(7547), + [aux_sym_preproc_if_token2] = ACTIONS(7547), + [aux_sym_preproc_else_token1] = ACTIONS(7547), + [aux_sym_preproc_elif_token1] = ACTIONS(7545), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7547), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7547), + [anon_sym_LPAREN2] = ACTIONS(7547), + [anon_sym_DASH] = ACTIONS(7545), + [anon_sym_PLUS] = ACTIONS(7545), + [anon_sym_STAR] = ACTIONS(7547), + [anon_sym_SLASH] = ACTIONS(7545), + [anon_sym_PERCENT] = ACTIONS(7547), + [anon_sym_PIPE_PIPE] = ACTIONS(7547), + [anon_sym_AMP_AMP] = ACTIONS(7547), + [anon_sym_PIPE] = ACTIONS(7545), + [anon_sym_CARET] = ACTIONS(7547), + [anon_sym_AMP] = ACTIONS(7545), + [anon_sym_EQ_EQ] = ACTIONS(7547), + [anon_sym_BANG_EQ] = ACTIONS(7547), + [anon_sym_GT] = ACTIONS(7545), + [anon_sym_GT_EQ] = ACTIONS(7547), + [anon_sym_LT_EQ] = ACTIONS(7545), + [anon_sym_LT] = ACTIONS(7545), + [anon_sym_LT_LT] = ACTIONS(7547), + [anon_sym_GT_GT] = ACTIONS(7547), + [anon_sym_SEMI] = ACTIONS(7547), + [anon_sym___extension__] = ACTIONS(7545), + [anon_sym___attribute__] = ACTIONS(7545), + [anon_sym___attribute] = ACTIONS(7545), + [anon_sym_COLON] = ACTIONS(7545), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7547), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7547), + [anon_sym_RBRACE] = ACTIONS(7547), + [anon_sym_LBRACK] = ACTIONS(7545), + [anon_sym_const] = ACTIONS(7545), + [anon_sym_constexpr] = ACTIONS(7545), + [anon_sym_volatile] = ACTIONS(7545), + [anon_sym_restrict] = ACTIONS(7545), + [anon_sym___restrict__] = ACTIONS(7545), + [anon_sym__Atomic] = ACTIONS(7545), + [anon_sym__Noreturn] = ACTIONS(7545), + [anon_sym_noreturn] = ACTIONS(7545), + [anon_sym__Nonnull] = ACTIONS(7545), + [anon_sym_mutable] = ACTIONS(7545), + [anon_sym_constinit] = ACTIONS(7545), + [anon_sym_consteval] = ACTIONS(7545), + [anon_sym_alignas] = ACTIONS(7545), + [anon_sym__Alignas] = ACTIONS(7545), + [anon_sym_QMARK] = ACTIONS(7547), + [anon_sym_LT_EQ_GT] = ACTIONS(7547), + [anon_sym_or] = ACTIONS(7545), + [anon_sym_and] = ACTIONS(7545), + [anon_sym_bitor] = ACTIONS(7545), + [anon_sym_xor] = ACTIONS(7545), + [anon_sym_bitand] = ACTIONS(7545), + [anon_sym_not_eq] = ACTIONS(7545), + [anon_sym_DASH_DASH] = ACTIONS(7547), + [anon_sym_PLUS_PLUS] = ACTIONS(7547), + [anon_sym_asm] = ACTIONS(7545), + [anon_sym___asm__] = ACTIONS(7545), + [anon_sym___asm] = ACTIONS(7545), + [anon_sym_DOT] = ACTIONS(7545), + [anon_sym_DOT_STAR] = ACTIONS(7547), + [anon_sym_DASH_GT] = ACTIONS(7547), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7545), + [anon_sym_override] = ACTIONS(7545), + [anon_sym_noexcept] = ACTIONS(7545), + [anon_sym_throw] = ACTIONS(7545), + [anon_sym_requires] = ACTIONS(7545), + [anon_sym_COLON_RBRACK] = ACTIONS(7547), }, [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), + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(6797), + [aux_sym_preproc_if_token2] = ACTIONS(6797), + [aux_sym_preproc_else_token1] = ACTIONS(6797), + [aux_sym_preproc_elif_token1] = ACTIONS(6795), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6797), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6797), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6797), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6797), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6797), + [anon_sym_GT_GT] = ACTIONS(6797), + [anon_sym_SEMI] = ACTIONS(6797), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_RBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), + [anon_sym_COLON_RBRACK] = ACTIONS(6797), }, [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), + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_RPAREN] = ACTIONS(6793), + [aux_sym_preproc_if_token2] = ACTIONS(6793), + [aux_sym_preproc_else_token1] = ACTIONS(6793), + [aux_sym_preproc_elif_token1] = ACTIONS(6791), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6793), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6793), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6793), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6793), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6793), + [anon_sym_GT_GT] = ACTIONS(6793), + [anon_sym_SEMI] = ACTIONS(6793), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6793), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_RBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), + [anon_sym_COLON_RBRACK] = ACTIONS(6793), }, [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), + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_RPAREN] = ACTIONS(6813), + [aux_sym_preproc_if_token2] = ACTIONS(6813), + [aux_sym_preproc_else_token1] = ACTIONS(6813), + [aux_sym_preproc_elif_token1] = ACTIONS(6811), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6813), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6813), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6813), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6813), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6813), + [anon_sym_GT_GT] = ACTIONS(6813), + [anon_sym_SEMI] = ACTIONS(6813), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_RBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), + [anon_sym_COLON_RBRACK] = ACTIONS(6813), }, [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), + [sym_template_argument_list] = STATE(3266), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7454), + [anon_sym_COMMA] = ACTIONS(7454), + [anon_sym_RPAREN] = ACTIONS(7444), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_DASH] = ACTIONS(7449), + [anon_sym_PLUS] = ACTIONS(7449), + [anon_sym_STAR] = ACTIONS(7451), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7449), + [anon_sym_PIPE_PIPE] = ACTIONS(7454), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7449), + [anon_sym_CARET] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7454), + [anon_sym_BANG_EQ] = ACTIONS(7454), + [anon_sym_GT] = ACTIONS(7449), + [anon_sym_GT_EQ] = ACTIONS(7454), + [anon_sym_LT_EQ] = ACTIONS(7449), + [anon_sym_LT] = ACTIONS(8364), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_GT_GT] = ACTIONS(7449), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_EQ] = ACTIONS(7449), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7454), + [anon_sym_STAR_EQ] = ACTIONS(7454), + [anon_sym_SLASH_EQ] = ACTIONS(7454), + [anon_sym_PERCENT_EQ] = ACTIONS(7454), + [anon_sym_PLUS_EQ] = ACTIONS(7454), + [anon_sym_DASH_EQ] = ACTIONS(7454), + [anon_sym_LT_LT_EQ] = ACTIONS(7454), + [anon_sym_GT_GT_EQ] = ACTIONS(7454), + [anon_sym_AMP_EQ] = ACTIONS(7454), + [anon_sym_CARET_EQ] = ACTIONS(7454), + [anon_sym_PIPE_EQ] = ACTIONS(7454), + [anon_sym_and_eq] = ACTIONS(7449), + [anon_sym_or_eq] = ACTIONS(7449), + [anon_sym_xor_eq] = ACTIONS(7449), + [anon_sym_LT_EQ_GT] = ACTIONS(7454), + [anon_sym_or] = ACTIONS(7449), + [anon_sym_and] = ACTIONS(7449), + [anon_sym_bitor] = ACTIONS(7449), + [anon_sym_xor] = ACTIONS(7449), + [anon_sym_bitand] = ACTIONS(7449), + [anon_sym_not_eq] = ACTIONS(7449), + [anon_sym_DASH_DASH] = ACTIONS(7454), + [anon_sym_PLUS_PLUS] = ACTIONS(7454), + [anon_sym_DOT] = ACTIONS(7449), + [anon_sym_DOT_STAR] = ACTIONS(7454), + [anon_sym_DASH_GT] = ACTIONS(7449), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_DASH_GT_STAR] = ACTIONS(7454), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_identifier] = ACTIONS(7911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7913), + [anon_sym_COMMA] = ACTIONS(7913), + [anon_sym_RPAREN] = ACTIONS(7913), + [anon_sym_LPAREN2] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(7911), + [anon_sym_PLUS] = ACTIONS(7911), + [anon_sym_STAR] = ACTIONS(7911), + [anon_sym_SLASH] = ACTIONS(7911), + [anon_sym_PERCENT] = ACTIONS(7911), + [anon_sym_PIPE_PIPE] = ACTIONS(7913), + [anon_sym_AMP_AMP] = ACTIONS(7913), + [anon_sym_PIPE] = ACTIONS(7911), + [anon_sym_CARET] = ACTIONS(7911), + [anon_sym_AMP] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(7913), + [anon_sym_BANG_EQ] = ACTIONS(7913), + [anon_sym_GT] = ACTIONS(7911), + [anon_sym_GT_EQ] = ACTIONS(7913), + [anon_sym_LT_EQ] = ACTIONS(7911), + [anon_sym_LT] = ACTIONS(7911), + [anon_sym_LT_LT] = ACTIONS(7911), + [anon_sym_GT_GT] = ACTIONS(7911), + [anon_sym___extension__] = ACTIONS(7911), + [anon_sym___attribute__] = ACTIONS(7911), + [anon_sym___attribute] = ACTIONS(7911), + [anon_sym_COLON_COLON] = ACTIONS(7913), + [anon_sym_LBRACK] = ACTIONS(7911), + [anon_sym_EQ] = ACTIONS(7911), + [anon_sym_const] = ACTIONS(7911), + [anon_sym_constexpr] = ACTIONS(7911), + [anon_sym_volatile] = ACTIONS(7911), + [anon_sym_restrict] = ACTIONS(7911), + [anon_sym___restrict__] = ACTIONS(7911), + [anon_sym__Atomic] = ACTIONS(7911), + [anon_sym__Noreturn] = ACTIONS(7911), + [anon_sym_noreturn] = ACTIONS(7911), + [anon_sym__Nonnull] = ACTIONS(7911), + [anon_sym_mutable] = ACTIONS(7911), + [anon_sym_constinit] = ACTIONS(7911), + [anon_sym_consteval] = ACTIONS(7911), + [anon_sym_alignas] = ACTIONS(7911), + [anon_sym__Alignas] = ACTIONS(7911), + [anon_sym_QMARK] = ACTIONS(7913), + [anon_sym_STAR_EQ] = ACTIONS(7913), + [anon_sym_SLASH_EQ] = ACTIONS(7913), + [anon_sym_PERCENT_EQ] = ACTIONS(7913), + [anon_sym_PLUS_EQ] = ACTIONS(7913), + [anon_sym_DASH_EQ] = ACTIONS(7913), + [anon_sym_LT_LT_EQ] = ACTIONS(7913), + [anon_sym_GT_GT_EQ] = ACTIONS(7913), + [anon_sym_AMP_EQ] = ACTIONS(7913), + [anon_sym_CARET_EQ] = ACTIONS(7913), + [anon_sym_PIPE_EQ] = ACTIONS(7913), + [anon_sym_LT_EQ_GT] = ACTIONS(7913), + [anon_sym_or] = ACTIONS(7911), + [anon_sym_and] = ACTIONS(7911), + [anon_sym_bitor] = ACTIONS(7911), + [anon_sym_xor] = ACTIONS(7911), + [anon_sym_bitand] = ACTIONS(7911), + [anon_sym_not_eq] = ACTIONS(7911), + [anon_sym_DASH_DASH] = ACTIONS(7913), + [anon_sym_PLUS_PLUS] = ACTIONS(7913), + [anon_sym_DOT] = ACTIONS(7911), + [anon_sym_DOT_STAR] = ACTIONS(7913), + [anon_sym_DASH_GT] = ACTIONS(7911), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7911), + [anon_sym_final] = ACTIONS(7911), + [anon_sym_override] = ACTIONS(7911), + [anon_sym_template] = ACTIONS(7911), + [anon_sym_requires] = ACTIONS(7911), + [anon_sym_DASH_GT_STAR] = ACTIONS(7913), + [anon_sym_LBRACK_COLON] = ACTIONS(7913), }, [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), + [sym_ms_based_modifier] = STATE(12242), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(3114), + [sym__declarator] = STATE(10063), + [sym__abstract_declarator] = STATE(10144), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4020), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8753), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(4020), + [aux_sym_pointer_declarator_repeat1] = STATE(3114), + [sym_identifier] = ACTIONS(8585), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8932), + [anon_sym_AMP_AMP] = ACTIONS(8934), + [anon_sym_AMP] = ACTIONS(8936), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(8938), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_ms_based_modifier] = STATE(12242), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(6459), + [sym__declarator] = STATE(10057), + [sym__abstract_declarator] = STATE(10183), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4025), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8753), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(4025), + [aux_sym_pointer_declarator_repeat1] = STATE(6459), + [sym_identifier] = ACTIONS(8585), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8932), + [anon_sym_AMP_AMP] = ACTIONS(8934), + [anon_sym_AMP] = ACTIONS(8936), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(8938), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), - [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_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), - [anon_sym_final] = ACTIONS(7749), - [anon_sym_override] = ACTIONS(7749), - [anon_sym_requires] = ACTIONS(7749), - [anon_sym_DASH_GT_STAR] = ACTIONS(7749), + [sym_identifier] = ACTIONS(7714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7716), + [anon_sym_COMMA] = ACTIONS(7716), + [anon_sym_RPAREN] = ACTIONS(7716), + [anon_sym_LPAREN2] = ACTIONS(7716), + [anon_sym_DASH] = ACTIONS(7714), + [anon_sym_PLUS] = ACTIONS(7714), + [anon_sym_STAR] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7714), + [anon_sym_PERCENT] = ACTIONS(7714), + [anon_sym_PIPE_PIPE] = ACTIONS(7716), + [anon_sym_AMP_AMP] = ACTIONS(7716), + [anon_sym_PIPE] = ACTIONS(7714), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_AMP] = ACTIONS(7714), + [anon_sym_EQ_EQ] = ACTIONS(7716), + [anon_sym_BANG_EQ] = ACTIONS(7716), + [anon_sym_GT] = ACTIONS(7714), + [anon_sym_GT_EQ] = ACTIONS(7716), + [anon_sym_LT_EQ] = ACTIONS(7714), + [anon_sym_LT] = ACTIONS(7714), + [anon_sym_LT_LT] = ACTIONS(7714), + [anon_sym_GT_GT] = ACTIONS(7714), + [anon_sym___extension__] = ACTIONS(7714), + [anon_sym___attribute__] = ACTIONS(7714), + [anon_sym___attribute] = ACTIONS(7714), + [anon_sym_COLON_COLON] = ACTIONS(7716), + [anon_sym_LBRACK] = ACTIONS(7714), + [anon_sym_EQ] = ACTIONS(7714), + [anon_sym_const] = ACTIONS(7714), + [anon_sym_constexpr] = ACTIONS(7714), + [anon_sym_volatile] = ACTIONS(7714), + [anon_sym_restrict] = ACTIONS(7714), + [anon_sym___restrict__] = ACTIONS(7714), + [anon_sym__Atomic] = ACTIONS(7714), + [anon_sym__Noreturn] = ACTIONS(7714), + [anon_sym_noreturn] = ACTIONS(7714), + [anon_sym__Nonnull] = ACTIONS(7714), + [anon_sym_mutable] = ACTIONS(7714), + [anon_sym_constinit] = ACTIONS(7714), + [anon_sym_consteval] = ACTIONS(7714), + [anon_sym_alignas] = ACTIONS(7714), + [anon_sym__Alignas] = ACTIONS(7714), + [anon_sym_QMARK] = ACTIONS(7716), + [anon_sym_STAR_EQ] = ACTIONS(7716), + [anon_sym_SLASH_EQ] = ACTIONS(7716), + [anon_sym_PERCENT_EQ] = ACTIONS(7716), + [anon_sym_PLUS_EQ] = ACTIONS(7716), + [anon_sym_DASH_EQ] = ACTIONS(7716), + [anon_sym_LT_LT_EQ] = ACTIONS(7716), + [anon_sym_GT_GT_EQ] = ACTIONS(7716), + [anon_sym_AMP_EQ] = ACTIONS(7716), + [anon_sym_CARET_EQ] = ACTIONS(7716), + [anon_sym_PIPE_EQ] = ACTIONS(7716), + [anon_sym_LT_EQ_GT] = ACTIONS(7716), + [anon_sym_or] = ACTIONS(7714), + [anon_sym_and] = ACTIONS(7714), + [anon_sym_bitor] = ACTIONS(7714), + [anon_sym_xor] = ACTIONS(7714), + [anon_sym_bitand] = ACTIONS(7714), + [anon_sym_not_eq] = ACTIONS(7714), + [anon_sym_DASH_DASH] = ACTIONS(7716), + [anon_sym_PLUS_PLUS] = ACTIONS(7716), + [anon_sym_DOT] = ACTIONS(7714), + [anon_sym_DOT_STAR] = ACTIONS(7716), + [anon_sym_DASH_GT] = ACTIONS(7714), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7714), + [anon_sym_final] = ACTIONS(7714), + [anon_sym_override] = ACTIONS(7714), + [anon_sym_template] = ACTIONS(7714), + [anon_sym_requires] = ACTIONS(7714), + [anon_sym_DASH_GT_STAR] = ACTIONS(7716), + [anon_sym_LBRACK_COLON] = ACTIONS(7716), }, [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), + [sym_attribute_specifier] = STATE(3282), + [sym_identifier] = ACTIONS(7574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7576), + [anon_sym_COMMA] = ACTIONS(7576), + [anon_sym_RPAREN] = ACTIONS(7576), + [aux_sym_preproc_if_token2] = ACTIONS(7576), + [aux_sym_preproc_else_token1] = ACTIONS(7576), + [aux_sym_preproc_elif_token1] = ACTIONS(7574), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7576), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7576), + [anon_sym_LPAREN2] = ACTIONS(7576), + [anon_sym_DASH] = ACTIONS(7574), + [anon_sym_PLUS] = ACTIONS(7574), + [anon_sym_STAR] = ACTIONS(7576), + [anon_sym_SLASH] = ACTIONS(7574), + [anon_sym_PERCENT] = ACTIONS(7576), + [anon_sym_PIPE_PIPE] = ACTIONS(7576), + [anon_sym_AMP_AMP] = ACTIONS(7576), + [anon_sym_PIPE] = ACTIONS(7574), + [anon_sym_CARET] = ACTIONS(7576), + [anon_sym_AMP] = ACTIONS(7574), + [anon_sym_EQ_EQ] = ACTIONS(7576), + [anon_sym_BANG_EQ] = ACTIONS(7576), + [anon_sym_GT] = ACTIONS(7574), + [anon_sym_GT_EQ] = ACTIONS(7576), + [anon_sym_LT_EQ] = ACTIONS(7574), + [anon_sym_LT] = ACTIONS(7574), + [anon_sym_LT_LT] = ACTIONS(7576), + [anon_sym_GT_GT] = ACTIONS(7576), + [anon_sym_SEMI] = ACTIONS(7576), + [anon_sym___extension__] = ACTIONS(7574), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7574), + [anon_sym_COLON_COLON] = ACTIONS(7576), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7576), + [anon_sym_LBRACE] = ACTIONS(7576), + [anon_sym_RBRACE] = ACTIONS(7576), + [anon_sym_LBRACK] = ACTIONS(7574), + [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(7574), + [anon_sym__Alignas] = ACTIONS(7574), + [anon_sym_QMARK] = ACTIONS(7576), + [anon_sym_LT_EQ_GT] = ACTIONS(7576), + [anon_sym_or] = ACTIONS(7574), + [anon_sym_and] = ACTIONS(7574), + [anon_sym_bitor] = ACTIONS(7574), + [anon_sym_xor] = ACTIONS(7574), + [anon_sym_bitand] = ACTIONS(7574), + [anon_sym_not_eq] = ACTIONS(7574), + [anon_sym_DASH_DASH] = ACTIONS(7576), + [anon_sym_PLUS_PLUS] = ACTIONS(7576), + [anon_sym_DOT] = ACTIONS(7574), + [anon_sym_DOT_STAR] = ACTIONS(7576), + [anon_sym_DASH_GT] = ACTIONS(7576), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7574), + [anon_sym_final] = ACTIONS(7574), + [anon_sym_override] = ACTIONS(7574), + [anon_sym_template] = ACTIONS(7574), + [anon_sym_requires] = ACTIONS(7574), + [anon_sym_LBRACK_COLON] = ACTIONS(7576), + [anon_sym_COLON_RBRACK] = ACTIONS(7576), }, [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), + [sym_attribute_specifier] = STATE(3288), + [sym_identifier] = ACTIONS(7578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7580), + [anon_sym_COMMA] = ACTIONS(7580), + [anon_sym_RPAREN] = ACTIONS(7580), + [aux_sym_preproc_if_token2] = ACTIONS(7580), + [aux_sym_preproc_else_token1] = ACTIONS(7580), + [aux_sym_preproc_elif_token1] = ACTIONS(7578), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7580), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7580), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym_DASH] = ACTIONS(7578), + [anon_sym_PLUS] = ACTIONS(7578), + [anon_sym_STAR] = ACTIONS(7580), + [anon_sym_SLASH] = ACTIONS(7578), + [anon_sym_PERCENT] = ACTIONS(7580), + [anon_sym_PIPE_PIPE] = ACTIONS(7580), + [anon_sym_AMP_AMP] = ACTIONS(7580), + [anon_sym_PIPE] = ACTIONS(7578), + [anon_sym_CARET] = ACTIONS(7580), + [anon_sym_AMP] = ACTIONS(7578), + [anon_sym_EQ_EQ] = ACTIONS(7580), + [anon_sym_BANG_EQ] = ACTIONS(7580), + [anon_sym_GT] = ACTIONS(7578), + [anon_sym_GT_EQ] = ACTIONS(7580), + [anon_sym_LT_EQ] = ACTIONS(7578), + [anon_sym_LT] = ACTIONS(7578), + [anon_sym_LT_LT] = ACTIONS(7580), + [anon_sym_GT_GT] = ACTIONS(7580), + [anon_sym_SEMI] = ACTIONS(7580), + [anon_sym___extension__] = ACTIONS(7578), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7578), + [anon_sym_COLON_COLON] = ACTIONS(7580), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7580), + [anon_sym_LBRACE] = ACTIONS(7580), + [anon_sym_RBRACE] = ACTIONS(7580), + [anon_sym_LBRACK] = ACTIONS(7578), + [anon_sym_const] = ACTIONS(7578), + [anon_sym_constexpr] = ACTIONS(7578), + [anon_sym_volatile] = ACTIONS(7578), + [anon_sym_restrict] = ACTIONS(7578), + [anon_sym___restrict__] = ACTIONS(7578), + [anon_sym__Atomic] = ACTIONS(7578), + [anon_sym__Noreturn] = ACTIONS(7578), + [anon_sym_noreturn] = ACTIONS(7578), + [anon_sym__Nonnull] = ACTIONS(7578), + [anon_sym_mutable] = ACTIONS(7578), + [anon_sym_constinit] = ACTIONS(7578), + [anon_sym_consteval] = ACTIONS(7578), + [anon_sym_alignas] = ACTIONS(7578), + [anon_sym__Alignas] = ACTIONS(7578), + [anon_sym_QMARK] = ACTIONS(7580), + [anon_sym_LT_EQ_GT] = ACTIONS(7580), + [anon_sym_or] = ACTIONS(7578), + [anon_sym_and] = ACTIONS(7578), + [anon_sym_bitor] = ACTIONS(7578), + [anon_sym_xor] = ACTIONS(7578), + [anon_sym_bitand] = ACTIONS(7578), + [anon_sym_not_eq] = ACTIONS(7578), + [anon_sym_DASH_DASH] = ACTIONS(7580), + [anon_sym_PLUS_PLUS] = ACTIONS(7580), + [anon_sym_DOT] = ACTIONS(7578), + [anon_sym_DOT_STAR] = ACTIONS(7580), + [anon_sym_DASH_GT] = ACTIONS(7580), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7578), + [anon_sym_final] = ACTIONS(7578), + [anon_sym_override] = ACTIONS(7578), + [anon_sym_template] = ACTIONS(7578), + [anon_sym_requires] = ACTIONS(7578), + [anon_sym_LBRACK_COLON] = ACTIONS(7580), + [anon_sym_COLON_RBRACK] = ACTIONS(7580), }, [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), + [sym_type_qualifier] = STATE(3118), + [sym_alignas_qualifier] = STATE(3456), + [aux_sym__type_definition_type_repeat1] = STATE(3118), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_RPAREN] = ACTIONS(7049), + [aux_sym_preproc_if_token2] = ACTIONS(7049), + [aux_sym_preproc_else_token1] = ACTIONS(7049), + [aux_sym_preproc_elif_token1] = ACTIONS(7047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7049), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7049), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7049), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7049), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7049), + [anon_sym_GT_GT] = ACTIONS(7049), + [anon_sym_SEMI] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(8940), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON] = ACTIONS(7047), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7049), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_RBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7049), + [anon_sym_const] = ACTIONS(8940), + [anon_sym_constexpr] = ACTIONS(8940), + [anon_sym_volatile] = ACTIONS(8940), + [anon_sym_restrict] = ACTIONS(8940), + [anon_sym___restrict__] = ACTIONS(8940), + [anon_sym__Atomic] = ACTIONS(8940), + [anon_sym__Noreturn] = ACTIONS(8940), + [anon_sym_noreturn] = ACTIONS(8940), + [anon_sym__Nonnull] = ACTIONS(8940), + [anon_sym_mutable] = ACTIONS(8940), + [anon_sym_constinit] = ACTIONS(8940), + [anon_sym_consteval] = ACTIONS(8940), + [anon_sym_alignas] = ACTIONS(8943), + [anon_sym__Alignas] = ACTIONS(8943), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7049), }, [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), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7497), + [anon_sym_SEMI] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = 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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), }, [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), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7497), + [anon_sym_SEMI] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = 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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), }, [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), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7497), + [anon_sym_SEMI] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7497), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = 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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), }, [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), + [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(7521), + [anon_sym_SLASH] = ACTIONS(7519), + [anon_sym_PERCENT] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7519), + [anon_sym_CARET] = ACTIONS(7521), + [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(7521), + [anon_sym_GT_GT] = ACTIONS(7521), + [anon_sym_SEMI] = ACTIONS(7521), + [anon_sym___extension__] = ACTIONS(7519), + [anon_sym___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7521), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_RBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = 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_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), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_template] = ACTIONS(7519), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_LBRACK_COLON] = ACTIONS(7521), + [anon_sym_COLON_RBRACK] = ACTIONS(7521), }, [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), + [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(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(7739), + [anon_sym___attribute__] = ACTIONS(7739), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_COLON_COLON] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7739), + [anon_sym_EQ] = ACTIONS(7739), + [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_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(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(7739), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7739), + [anon_sym_final] = ACTIONS(7739), + [anon_sym_override] = ACTIONS(7739), + [anon_sym_template] = ACTIONS(7739), + [anon_sym_requires] = ACTIONS(7739), + [anon_sym_DASH_GT_STAR] = ACTIONS(7741), + [anon_sym_LBRACK_COLON] = ACTIONS(7741), + }, + [STATE(3124)] = { + [sym_identifier] = ACTIONS(7790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7792), + [anon_sym_COMMA] = ACTIONS(7792), + [anon_sym_RPAREN] = ACTIONS(7792), + [anon_sym_LPAREN2] = ACTIONS(7792), + [anon_sym_DASH] = ACTIONS(7790), + [anon_sym_PLUS] = ACTIONS(7790), + [anon_sym_STAR] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7790), + [anon_sym_PERCENT] = ACTIONS(7790), + [anon_sym_PIPE_PIPE] = ACTIONS(7792), + [anon_sym_AMP_AMP] = ACTIONS(7792), + [anon_sym_PIPE] = ACTIONS(7790), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_AMP] = ACTIONS(7790), + [anon_sym_EQ_EQ] = ACTIONS(7792), + [anon_sym_BANG_EQ] = ACTIONS(7792), + [anon_sym_GT] = ACTIONS(7790), + [anon_sym_GT_EQ] = ACTIONS(7792), + [anon_sym_LT_EQ] = ACTIONS(7790), + [anon_sym_LT] = ACTIONS(7790), + [anon_sym_LT_LT] = ACTIONS(7790), + [anon_sym_GT_GT] = ACTIONS(7790), + [anon_sym___extension__] = ACTIONS(7790), + [anon_sym___attribute__] = ACTIONS(7790), + [anon_sym___attribute] = ACTIONS(7790), + [anon_sym_COLON_COLON] = ACTIONS(7792), + [anon_sym_LBRACK] = ACTIONS(7790), + [anon_sym_EQ] = ACTIONS(7790), + [anon_sym_const] = ACTIONS(7790), + [anon_sym_constexpr] = ACTIONS(7790), + [anon_sym_volatile] = ACTIONS(7790), + [anon_sym_restrict] = ACTIONS(7790), + [anon_sym___restrict__] = ACTIONS(7790), + [anon_sym__Atomic] = ACTIONS(7790), + [anon_sym__Noreturn] = ACTIONS(7790), + [anon_sym_noreturn] = ACTIONS(7790), + [anon_sym__Nonnull] = ACTIONS(7790), + [anon_sym_mutable] = ACTIONS(7790), + [anon_sym_constinit] = ACTIONS(7790), + [anon_sym_consteval] = ACTIONS(7790), + [anon_sym_alignas] = ACTIONS(7790), + [anon_sym__Alignas] = ACTIONS(7790), + [anon_sym_QMARK] = ACTIONS(7792), + [anon_sym_STAR_EQ] = ACTIONS(7792), + [anon_sym_SLASH_EQ] = ACTIONS(7792), + [anon_sym_PERCENT_EQ] = ACTIONS(7792), + [anon_sym_PLUS_EQ] = ACTIONS(7792), + [anon_sym_DASH_EQ] = ACTIONS(7792), + [anon_sym_LT_LT_EQ] = ACTIONS(7792), + [anon_sym_GT_GT_EQ] = ACTIONS(7792), + [anon_sym_AMP_EQ] = ACTIONS(7792), + [anon_sym_CARET_EQ] = ACTIONS(7792), + [anon_sym_PIPE_EQ] = ACTIONS(7792), + [anon_sym_LT_EQ_GT] = ACTIONS(7792), + [anon_sym_or] = ACTIONS(7790), + [anon_sym_and] = ACTIONS(7790), + [anon_sym_bitor] = ACTIONS(7790), + [anon_sym_xor] = ACTIONS(7790), + [anon_sym_bitand] = ACTIONS(7790), + [anon_sym_not_eq] = ACTIONS(7790), + [anon_sym_DASH_DASH] = ACTIONS(7792), + [anon_sym_PLUS_PLUS] = ACTIONS(7792), + [anon_sym_DOT] = ACTIONS(7790), + [anon_sym_DOT_STAR] = ACTIONS(7792), + [anon_sym_DASH_GT] = ACTIONS(7790), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7790), + [anon_sym_final] = ACTIONS(7790), + [anon_sym_override] = ACTIONS(7790), + [anon_sym_template] = ACTIONS(7790), + [anon_sym_requires] = ACTIONS(7790), + [anon_sym_DASH_GT_STAR] = ACTIONS(7792), + [anon_sym_LBRACK_COLON] = ACTIONS(7792), + }, + [STATE(3125)] = { + [sym_attribute_specifier] = STATE(3310), + [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(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(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7676), + [anon_sym_COLON_COLON] = ACTIONS(7678), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7678), + [anon_sym_LBRACE] = ACTIONS(7678), + [anon_sym_RBRACE] = ACTIONS(7678), + [anon_sym_LBRACK] = 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_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_decltype] = ACTIONS(7676), + [anon_sym_final] = ACTIONS(7676), + [anon_sym_override] = ACTIONS(7676), + [anon_sym_template] = ACTIONS(7676), + [anon_sym_requires] = ACTIONS(7676), + [anon_sym_LBRACK_COLON] = ACTIONS(7678), + [anon_sym_COLON_RBRACK] = ACTIONS(7678), }, [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), + [sym_attribute_specifier] = STATE(3216), + [sym_identifier] = ACTIONS(7617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7619), + [anon_sym_COMMA] = ACTIONS(7619), + [anon_sym_RPAREN] = ACTIONS(7619), + [aux_sym_preproc_if_token2] = ACTIONS(7619), + [aux_sym_preproc_else_token1] = ACTIONS(7619), + [aux_sym_preproc_elif_token1] = ACTIONS(7617), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7619), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7619), + [anon_sym_LPAREN2] = ACTIONS(7619), + [anon_sym_DASH] = ACTIONS(7617), + [anon_sym_PLUS] = ACTIONS(7617), + [anon_sym_STAR] = ACTIONS(7619), + [anon_sym_SLASH] = ACTIONS(7617), + [anon_sym_PERCENT] = ACTIONS(7619), + [anon_sym_PIPE_PIPE] = ACTIONS(7619), + [anon_sym_AMP_AMP] = ACTIONS(7619), + [anon_sym_PIPE] = ACTIONS(7617), + [anon_sym_CARET] = ACTIONS(7619), + [anon_sym_AMP] = ACTIONS(7617), + [anon_sym_EQ_EQ] = ACTIONS(7619), + [anon_sym_BANG_EQ] = ACTIONS(7619), + [anon_sym_GT] = ACTIONS(7617), + [anon_sym_GT_EQ] = ACTIONS(7619), + [anon_sym_LT_EQ] = ACTIONS(7617), + [anon_sym_LT] = ACTIONS(7617), + [anon_sym_LT_LT] = ACTIONS(7619), + [anon_sym_GT_GT] = ACTIONS(7619), + [anon_sym_SEMI] = ACTIONS(7619), + [anon_sym___extension__] = ACTIONS(7617), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7617), + [anon_sym_COLON_COLON] = ACTIONS(7619), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7619), + [anon_sym_LBRACE] = ACTIONS(7619), + [anon_sym_RBRACE] = ACTIONS(7619), + [anon_sym_LBRACK] = ACTIONS(7617), + [anon_sym_const] = ACTIONS(7617), + [anon_sym_constexpr] = ACTIONS(7617), + [anon_sym_volatile] = ACTIONS(7617), + [anon_sym_restrict] = ACTIONS(7617), + [anon_sym___restrict__] = ACTIONS(7617), + [anon_sym__Atomic] = ACTIONS(7617), + [anon_sym__Noreturn] = ACTIONS(7617), + [anon_sym_noreturn] = ACTIONS(7617), + [anon_sym__Nonnull] = ACTIONS(7617), + [anon_sym_mutable] = ACTIONS(7617), + [anon_sym_constinit] = ACTIONS(7617), + [anon_sym_consteval] = ACTIONS(7617), + [anon_sym_alignas] = ACTIONS(7617), + [anon_sym__Alignas] = ACTIONS(7617), + [anon_sym_QMARK] = ACTIONS(7619), + [anon_sym_LT_EQ_GT] = ACTIONS(7619), + [anon_sym_or] = ACTIONS(7617), + [anon_sym_and] = ACTIONS(7617), + [anon_sym_bitor] = ACTIONS(7617), + [anon_sym_xor] = ACTIONS(7617), + [anon_sym_bitand] = ACTIONS(7617), + [anon_sym_not_eq] = ACTIONS(7617), + [anon_sym_DASH_DASH] = ACTIONS(7619), + [anon_sym_PLUS_PLUS] = ACTIONS(7619), + [anon_sym_DOT] = ACTIONS(7617), + [anon_sym_DOT_STAR] = ACTIONS(7619), + [anon_sym_DASH_GT] = ACTIONS(7619), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7617), + [anon_sym_final] = ACTIONS(7617), + [anon_sym_override] = ACTIONS(7617), + [anon_sym_template] = ACTIONS(7617), + [anon_sym_requires] = ACTIONS(7617), + [anon_sym_LBRACK_COLON] = ACTIONS(7619), + [anon_sym_COLON_RBRACK] = ACTIONS(7619), }, [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), + [sym_identifier] = ACTIONS(7818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7820), + [anon_sym_COMMA] = ACTIONS(7820), + [anon_sym_RPAREN] = ACTIONS(7820), + [anon_sym_LPAREN2] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7818), + [anon_sym_STAR] = ACTIONS(7818), + [anon_sym_SLASH] = ACTIONS(7818), + [anon_sym_PERCENT] = ACTIONS(7818), + [anon_sym_PIPE_PIPE] = ACTIONS(7820), + [anon_sym_AMP_AMP] = ACTIONS(7820), + [anon_sym_PIPE] = ACTIONS(7818), + [anon_sym_CARET] = ACTIONS(7818), + [anon_sym_AMP] = ACTIONS(7818), + [anon_sym_EQ_EQ] = ACTIONS(7820), + [anon_sym_BANG_EQ] = ACTIONS(7820), + [anon_sym_GT] = ACTIONS(7818), + [anon_sym_GT_EQ] = ACTIONS(7820), + [anon_sym_LT_EQ] = ACTIONS(7818), + [anon_sym_LT] = ACTIONS(7818), + [anon_sym_LT_LT] = ACTIONS(7818), + [anon_sym_GT_GT] = ACTIONS(7818), + [anon_sym___extension__] = ACTIONS(7818), + [anon_sym___attribute__] = ACTIONS(7818), + [anon_sym___attribute] = ACTIONS(7818), + [anon_sym_COLON_COLON] = ACTIONS(7820), + [anon_sym_LBRACK] = ACTIONS(7818), + [anon_sym_EQ] = ACTIONS(7818), + [anon_sym_const] = ACTIONS(7818), + [anon_sym_constexpr] = ACTIONS(7818), + [anon_sym_volatile] = ACTIONS(7818), + [anon_sym_restrict] = ACTIONS(7818), + [anon_sym___restrict__] = ACTIONS(7818), + [anon_sym__Atomic] = ACTIONS(7818), + [anon_sym__Noreturn] = ACTIONS(7818), + [anon_sym_noreturn] = ACTIONS(7818), + [anon_sym__Nonnull] = ACTIONS(7818), + [anon_sym_mutable] = ACTIONS(7818), + [anon_sym_constinit] = ACTIONS(7818), + [anon_sym_consteval] = ACTIONS(7818), + [anon_sym_alignas] = ACTIONS(7818), + [anon_sym__Alignas] = ACTIONS(7818), + [anon_sym_QMARK] = ACTIONS(7820), + [anon_sym_STAR_EQ] = ACTIONS(7820), + [anon_sym_SLASH_EQ] = ACTIONS(7820), + [anon_sym_PERCENT_EQ] = ACTIONS(7820), + [anon_sym_PLUS_EQ] = ACTIONS(7820), + [anon_sym_DASH_EQ] = ACTIONS(7820), + [anon_sym_LT_LT_EQ] = ACTIONS(7820), + [anon_sym_GT_GT_EQ] = ACTIONS(7820), + [anon_sym_AMP_EQ] = ACTIONS(7820), + [anon_sym_CARET_EQ] = ACTIONS(7820), + [anon_sym_PIPE_EQ] = ACTIONS(7820), + [anon_sym_LT_EQ_GT] = ACTIONS(7820), + [anon_sym_or] = ACTIONS(7818), + [anon_sym_and] = ACTIONS(7818), + [anon_sym_bitor] = ACTIONS(7818), + [anon_sym_xor] = ACTIONS(7818), + [anon_sym_bitand] = ACTIONS(7818), + [anon_sym_not_eq] = ACTIONS(7818), + [anon_sym_DASH_DASH] = ACTIONS(7820), + [anon_sym_PLUS_PLUS] = ACTIONS(7820), + [anon_sym_DOT] = ACTIONS(7818), + [anon_sym_DOT_STAR] = ACTIONS(7820), + [anon_sym_DASH_GT] = ACTIONS(7818), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7818), + [anon_sym_final] = ACTIONS(7818), + [anon_sym_override] = ACTIONS(7818), + [anon_sym_template] = ACTIONS(7818), + [anon_sym_requires] = ACTIONS(7818), + [anon_sym_DASH_GT_STAR] = ACTIONS(7820), + [anon_sym_LBRACK_COLON] = ACTIONS(7820), }, [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), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7254), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym_attribute_specifier] = STATE(3295), + [sym_identifier] = ACTIONS(7692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7694), + [anon_sym_COMMA] = ACTIONS(7694), + [anon_sym_RPAREN] = ACTIONS(7694), + [aux_sym_preproc_if_token2] = ACTIONS(7694), + [aux_sym_preproc_else_token1] = ACTIONS(7694), + [aux_sym_preproc_elif_token1] = ACTIONS(7692), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7694), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7694), + [anon_sym_LPAREN2] = ACTIONS(7694), + [anon_sym_DASH] = ACTIONS(7692), + [anon_sym_PLUS] = ACTIONS(7692), + [anon_sym_STAR] = ACTIONS(7694), + [anon_sym_SLASH] = ACTIONS(7692), + [anon_sym_PERCENT] = ACTIONS(7694), + [anon_sym_PIPE_PIPE] = ACTIONS(7694), + [anon_sym_AMP_AMP] = ACTIONS(7694), + [anon_sym_PIPE] = ACTIONS(7692), + [anon_sym_CARET] = ACTIONS(7694), + [anon_sym_AMP] = ACTIONS(7692), + [anon_sym_EQ_EQ] = ACTIONS(7694), + [anon_sym_BANG_EQ] = ACTIONS(7694), + [anon_sym_GT] = ACTIONS(7692), + [anon_sym_GT_EQ] = ACTIONS(7694), + [anon_sym_LT_EQ] = ACTIONS(7692), + [anon_sym_LT] = ACTIONS(7692), + [anon_sym_LT_LT] = ACTIONS(7694), + [anon_sym_GT_GT] = ACTIONS(7694), + [anon_sym_SEMI] = ACTIONS(7694), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7692), + [anon_sym_COLON_COLON] = ACTIONS(7694), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7694), + [anon_sym_LBRACE] = ACTIONS(7694), + [anon_sym_RBRACE] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7692), + [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(7694), + [anon_sym_LT_EQ_GT] = ACTIONS(7694), + [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(7694), + [anon_sym_PLUS_PLUS] = ACTIONS(7694), + [anon_sym_DOT] = ACTIONS(7692), + [anon_sym_DOT_STAR] = ACTIONS(7694), + [anon_sym_DASH_GT] = ACTIONS(7694), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7692), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_template] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_LBRACK_COLON] = ACTIONS(7694), + [anon_sym_COLON_RBRACK] = ACTIONS(7694), }, [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), + [sym_attribute_specifier] = STATE(3304), + [sym_identifier] = ACTIONS(7702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7704), + [anon_sym_COMMA] = ACTIONS(7704), + [anon_sym_RPAREN] = ACTIONS(7704), + [aux_sym_preproc_if_token2] = ACTIONS(7704), + [aux_sym_preproc_else_token1] = ACTIONS(7704), + [aux_sym_preproc_elif_token1] = ACTIONS(7702), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7704), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7704), + [anon_sym_LPAREN2] = ACTIONS(7704), + [anon_sym_DASH] = ACTIONS(7702), + [anon_sym_PLUS] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7704), + [anon_sym_SLASH] = ACTIONS(7702), + [anon_sym_PERCENT] = ACTIONS(7704), + [anon_sym_PIPE_PIPE] = ACTIONS(7704), + [anon_sym_AMP_AMP] = ACTIONS(7704), + [anon_sym_PIPE] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7704), + [anon_sym_AMP] = ACTIONS(7702), + [anon_sym_EQ_EQ] = ACTIONS(7704), + [anon_sym_BANG_EQ] = ACTIONS(7704), + [anon_sym_GT] = ACTIONS(7702), + [anon_sym_GT_EQ] = ACTIONS(7704), + [anon_sym_LT_EQ] = ACTIONS(7702), + [anon_sym_LT] = ACTIONS(7702), + [anon_sym_LT_LT] = ACTIONS(7704), + [anon_sym_GT_GT] = ACTIONS(7704), + [anon_sym_SEMI] = ACTIONS(7704), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym___attribute__] = ACTIONS(8716), + [anon_sym___attribute] = ACTIONS(8716), + [anon_sym_COLON] = ACTIONS(7702), + [anon_sym_COLON_COLON] = ACTIONS(7704), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7704), + [anon_sym_LBRACE] = ACTIONS(7704), + [anon_sym_RBRACE] = ACTIONS(7704), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_const] = ACTIONS(7702), + [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(7704), + [anon_sym_LT_EQ_GT] = ACTIONS(7704), + [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(7704), + [anon_sym_PLUS_PLUS] = ACTIONS(7704), + [anon_sym_DOT] = ACTIONS(7702), + [anon_sym_DOT_STAR] = ACTIONS(7704), + [anon_sym_DASH_GT] = ACTIONS(7704), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7702), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_template] = ACTIONS(7702), + [anon_sym_requires] = ACTIONS(7702), + [anon_sym_LBRACK_COLON] = ACTIONS(7704), + [anon_sym_COLON_RBRACK] = ACTIONS(7704), }, [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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7316), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7318), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7657), - [anon_sym_override] = ACTIONS(7657), - [anon_sym_GT2] = ACTIONS(7657), - [anon_sym_requires] = ACTIONS(7657), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7319), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7321), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7773), - [anon_sym_override] = ACTIONS(7773), - [anon_sym_requires] = ACTIONS(7773), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym__declaration_modifiers] = STATE(3241), + [sym__declaration_specifiers] = STATE(7322), + [sym_attribute_specifier] = STATE(3241), + [sym_attribute_declaration] = STATE(3241), + [sym_ms_declspec_modifier] = STATE(3241), + [sym_storage_class_specifier] = STATE(3241), + [sym_type_qualifier] = STATE(3241), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4424), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(3241), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym_decltype_auto] = STATE(3045), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8751), + [anon_sym_decltype] = ACTIONS(7249), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), + [sym_decltype_auto] = STATE(3045), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8751), + [anon_sym_decltype] = ACTIONS(7249), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_RBRACK] = ACTIONS(7796), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7796), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_and_eq] = ACTIONS(7794), + [anon_sym_or_eq] = ACTIONS(7794), + [anon_sym_xor_eq] = ACTIONS(7794), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), }, [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), - [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_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), - [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_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), - [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), + [sym_identifier] = ACTIONS(7834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_RPAREN] = ACTIONS(7836), + [aux_sym_preproc_if_token2] = ACTIONS(7836), + [aux_sym_preproc_else_token1] = ACTIONS(7836), + [aux_sym_preproc_elif_token1] = ACTIONS(7834), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7836), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7836), + [anon_sym_LPAREN2] = ACTIONS(7836), + [anon_sym_DASH] = ACTIONS(7834), + [anon_sym_PLUS] = ACTIONS(7834), + [anon_sym_STAR] = ACTIONS(7836), + [anon_sym_SLASH] = ACTIONS(7834), + [anon_sym_PERCENT] = ACTIONS(7836), + [anon_sym_PIPE_PIPE] = ACTIONS(7836), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_PIPE] = ACTIONS(7834), + [anon_sym_CARET] = ACTIONS(7836), + [anon_sym_AMP] = ACTIONS(7834), + [anon_sym_EQ_EQ] = ACTIONS(7836), + [anon_sym_BANG_EQ] = ACTIONS(7836), + [anon_sym_GT] = ACTIONS(7834), + [anon_sym_GT_EQ] = ACTIONS(7836), + [anon_sym_LT_EQ] = ACTIONS(7834), + [anon_sym_LT] = ACTIONS(7834), + [anon_sym_LT_LT] = ACTIONS(7836), + [anon_sym_GT_GT] = ACTIONS(7836), + [anon_sym_SEMI] = ACTIONS(7836), + [anon_sym___extension__] = ACTIONS(7834), + [anon_sym___attribute__] = ACTIONS(7834), + [anon_sym___attribute] = ACTIONS(7834), + [anon_sym_COLON] = ACTIONS(7834), + [anon_sym_COLON_COLON] = ACTIONS(7836), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7836), + [anon_sym_LBRACE] = ACTIONS(7836), + [anon_sym_RBRACE] = ACTIONS(7836), + [anon_sym_LBRACK] = ACTIONS(7834), + [anon_sym_const] = ACTIONS(7834), + [anon_sym_constexpr] = ACTIONS(7834), + [anon_sym_volatile] = ACTIONS(7834), + [anon_sym_restrict] = ACTIONS(7834), + [anon_sym___restrict__] = ACTIONS(7834), + [anon_sym__Atomic] = ACTIONS(7834), + [anon_sym__Noreturn] = ACTIONS(7834), + [anon_sym_noreturn] = ACTIONS(7834), + [anon_sym__Nonnull] = ACTIONS(7834), + [anon_sym_mutable] = ACTIONS(7834), + [anon_sym_constinit] = ACTIONS(7834), + [anon_sym_consteval] = ACTIONS(7834), + [anon_sym_alignas] = ACTIONS(7834), + [anon_sym__Alignas] = ACTIONS(7834), + [anon_sym_QMARK] = ACTIONS(7836), + [anon_sym_LT_EQ_GT] = ACTIONS(7836), + [anon_sym_or] = ACTIONS(7834), + [anon_sym_and] = ACTIONS(7834), + [anon_sym_bitor] = ACTIONS(7834), + [anon_sym_xor] = ACTIONS(7834), + [anon_sym_bitand] = ACTIONS(7834), + [anon_sym_not_eq] = ACTIONS(7834), + [anon_sym_DASH_DASH] = ACTIONS(7836), + [anon_sym_PLUS_PLUS] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7834), + [anon_sym_DOT_STAR] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(7836), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7834), + [anon_sym_final] = ACTIONS(7834), + [anon_sym_override] = ACTIONS(7834), + [anon_sym_template] = ACTIONS(7834), + [anon_sym_requires] = ACTIONS(7834), + [anon_sym_LBRACK_COLON] = ACTIONS(7836), + [anon_sym_COLON_RBRACK] = ACTIONS(7836), }, [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), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9059), - [anon_sym_COLON_RBRACK] = ACTIONS(9061), + [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(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_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7670), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_RBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = 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_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_decltype] = ACTIONS(7668), + [anon_sym_final] = ACTIONS(7668), + [anon_sym_override] = ACTIONS(7668), + [anon_sym_template] = ACTIONS(7668), + [anon_sym_requires] = ACTIONS(7668), + [anon_sym_LBRACK_COLON] = ACTIONS(7670), + [anon_sym_COLON_RBRACK] = ACTIONS(7670), }, [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), + [sym_identifier] = ACTIONS(8946), + [aux_sym_preproc_def_token1] = ACTIONS(8946), + [aux_sym_preproc_if_token1] = ACTIONS(8946), + [aux_sym_preproc_if_token2] = ACTIONS(8946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8946), + [aux_sym_preproc_else_token1] = ACTIONS(8946), + [aux_sym_preproc_elif_token1] = ACTIONS(8946), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8946), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8946), + [sym_preproc_directive] = ACTIONS(8946), + [anon_sym_LPAREN2] = ACTIONS(8948), + [anon_sym_TILDE] = ACTIONS(8948), + [anon_sym_STAR] = ACTIONS(8948), + [anon_sym_AMP_AMP] = ACTIONS(8948), + [anon_sym_AMP] = ACTIONS(8946), + [anon_sym_SEMI] = ACTIONS(8948), + [anon_sym___extension__] = ACTIONS(8946), + [anon_sym_typedef] = 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_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_typename] = ACTIONS(8946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8946), + [anon_sym_decltype] = ACTIONS(8946), + [anon_sym_explicit] = ACTIONS(8946), + [anon_sym_private] = ACTIONS(8946), + [anon_sym_template] = ACTIONS(8946), + [anon_sym_operator] = ACTIONS(8946), + [anon_sym_friend] = ACTIONS(8946), + [anon_sym_public] = ACTIONS(8946), + [anon_sym_protected] = ACTIONS(8946), + [anon_sym_static_assert] = ACTIONS(8946), + [anon_sym_LBRACK_COLON] = ACTIONS(8948), }, [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_identifier] = ACTIONS(8950), + [aux_sym_preproc_def_token1] = ACTIONS(8950), + [aux_sym_preproc_if_token1] = ACTIONS(8950), + [aux_sym_preproc_if_token2] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8950), + [aux_sym_preproc_else_token1] = ACTIONS(8950), + [aux_sym_preproc_elif_token1] = ACTIONS(8950), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8950), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8950), + [sym_preproc_directive] = ACTIONS(8950), + [anon_sym_LPAREN2] = ACTIONS(8952), + [anon_sym_TILDE] = ACTIONS(8952), + [anon_sym_STAR] = ACTIONS(8952), + [anon_sym_AMP_AMP] = ACTIONS(8952), + [anon_sym_AMP] = ACTIONS(8950), + [anon_sym_SEMI] = ACTIONS(8952), + [anon_sym___extension__] = ACTIONS(8950), + [anon_sym_typedef] = 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_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_typename] = ACTIONS(8950), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7625), - [anon_sym_override] = ACTIONS(7625), - [anon_sym_GT2] = ACTIONS(7625), - [anon_sym_requires] = ACTIONS(7625), + [sym_auto] = ACTIONS(8950), + [anon_sym_decltype] = ACTIONS(8950), + [anon_sym_explicit] = ACTIONS(8950), + [anon_sym_private] = ACTIONS(8950), + [anon_sym_template] = ACTIONS(8950), + [anon_sym_operator] = ACTIONS(8950), + [anon_sym_friend] = ACTIONS(8950), + [anon_sym_public] = ACTIONS(8950), + [anon_sym_protected] = ACTIONS(8950), + [anon_sym_static_assert] = ACTIONS(8950), + [anon_sym_LBRACK_COLON] = ACTIONS(8952), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(3941), + [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_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_typename] = ACTIONS(3939), [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), + [sym_auto] = ACTIONS(3939), + [anon_sym_decltype] = ACTIONS(3939), + [anon_sym_explicit] = ACTIONS(3939), + [anon_sym_private] = ACTIONS(3939), + [anon_sym_template] = ACTIONS(3939), + [anon_sym_operator] = ACTIONS(3939), + [anon_sym_friend] = ACTIONS(3939), + [anon_sym_public] = ACTIONS(3939), + [anon_sym_protected] = ACTIONS(3939), + [anon_sym_static_assert] = ACTIONS(3939), + [anon_sym_LBRACK_COLON] = ACTIONS(3941), }, [STATE(3144)] = { - [sym_identifier] = ACTIONS(7743), - [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(7745), - [anon_sym_SLASH] = ACTIONS(7743), - [anon_sym_PERCENT] = ACTIONS(7745), - [anon_sym_PIPE_PIPE] = ACTIONS(7745), - [anon_sym_AMP_AMP] = ACTIONS(7745), - [anon_sym_PIPE] = ACTIONS(7743), - [anon_sym_CARET] = ACTIONS(7745), - [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(7745), - [anon_sym_GT_GT] = ACTIONS(7745), - [anon_sym_SEMI] = ACTIONS(7745), - [anon_sym___extension__] = ACTIONS(7743), - [anon_sym___attribute__] = ACTIONS(7743), - [anon_sym___attribute] = ACTIONS(7743), - [anon_sym_COLON] = ACTIONS(7743), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7745), - [anon_sym___based] = ACTIONS(7743), - [anon_sym_LBRACE] = ACTIONS(7745), - [anon_sym_RBRACE] = ACTIONS(7745), - [anon_sym_signed] = ACTIONS(7743), - [anon_sym_unsigned] = ACTIONS(7743), - [anon_sym_long] = ACTIONS(7743), - [anon_sym_short] = ACTIONS(7743), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_const] = ACTIONS(7743), - [anon_sym_constexpr] = ACTIONS(7743), - [anon_sym_volatile] = ACTIONS(7743), - [anon_sym_restrict] = ACTIONS(7743), - [anon_sym___restrict__] = ACTIONS(7743), - [anon_sym__Atomic] = ACTIONS(7743), - [anon_sym__Noreturn] = ACTIONS(7743), - [anon_sym_noreturn] = ACTIONS(7743), - [anon_sym__Nonnull] = ACTIONS(7743), - [anon_sym_mutable] = ACTIONS(7743), - [anon_sym_constinit] = ACTIONS(7743), - [anon_sym_consteval] = ACTIONS(7743), - [anon_sym_alignas] = ACTIONS(7743), - [anon_sym__Alignas] = ACTIONS(7743), - [sym_primitive_type] = ACTIONS(7743), - [anon_sym_QMARK] = ACTIONS(7745), - [anon_sym_LT_EQ_GT] = ACTIONS(7745), - [anon_sym_or] = ACTIONS(7743), - [anon_sym_and] = ACTIONS(7743), - [anon_sym_bitor] = ACTIONS(7743), - [anon_sym_xor] = ACTIONS(7743), - [anon_sym_bitand] = ACTIONS(7743), - [anon_sym_not_eq] = ACTIONS(7743), - [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(7743), - [anon_sym_override] = ACTIONS(7743), - [anon_sym_requires] = ACTIONS(7743), - [anon_sym_COLON_RBRACK] = ACTIONS(7745), + [sym_identifier] = ACTIONS(3959), + [aux_sym_preproc_def_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token2] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3959), + [aux_sym_preproc_else_token1] = ACTIONS(3959), + [aux_sym_preproc_elif_token1] = ACTIONS(3959), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3959), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3959), + [sym_preproc_directive] = ACTIONS(3959), + [anon_sym_LPAREN2] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym___extension__] = ACTIONS(3959), + [anon_sym_typedef] = ACTIONS(3959), + [anon_sym_virtual] = ACTIONS(3959), + [anon_sym_extern] = ACTIONS(3959), + [anon_sym___attribute__] = ACTIONS(3959), + [anon_sym___attribute] = ACTIONS(3959), + [anon_sym_using] = ACTIONS(3959), + [anon_sym_COLON_COLON] = ACTIONS(3961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3961), + [anon_sym___declspec] = ACTIONS(3959), + [anon_sym___based] = ACTIONS(3959), + [anon_sym_signed] = ACTIONS(3959), + [anon_sym_unsigned] = ACTIONS(3959), + [anon_sym_long] = ACTIONS(3959), + [anon_sym_short] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3959), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_register] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym___inline] = ACTIONS(3959), + [anon_sym___inline__] = ACTIONS(3959), + [anon_sym___forceinline] = ACTIONS(3959), + [anon_sym_thread_local] = ACTIONS(3959), + [anon_sym___thread] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_constexpr] = ACTIONS(3959), + [anon_sym_volatile] = ACTIONS(3959), + [anon_sym_restrict] = ACTIONS(3959), + [anon_sym___restrict__] = ACTIONS(3959), + [anon_sym__Atomic] = ACTIONS(3959), + [anon_sym__Noreturn] = ACTIONS(3959), + [anon_sym_noreturn] = ACTIONS(3959), + [anon_sym__Nonnull] = ACTIONS(3959), + [anon_sym_mutable] = ACTIONS(3959), + [anon_sym_constinit] = ACTIONS(3959), + [anon_sym_consteval] = ACTIONS(3959), + [anon_sym_alignas] = ACTIONS(3959), + [anon_sym__Alignas] = ACTIONS(3959), + [sym_primitive_type] = ACTIONS(3959), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_union] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3959), + [anon_sym_decltype] = ACTIONS(3959), + [anon_sym_explicit] = ACTIONS(3959), + [anon_sym_private] = ACTIONS(3959), + [anon_sym_template] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_friend] = ACTIONS(3959), + [anon_sym_public] = ACTIONS(3959), + [anon_sym_protected] = ACTIONS(3959), + [anon_sym_static_assert] = ACTIONS(3959), + [anon_sym_LBRACK_COLON] = ACTIONS(3961), }, [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), + [sym_identifier] = ACTIONS(8954), + [aux_sym_preproc_def_token1] = ACTIONS(8954), + [aux_sym_preproc_if_token1] = ACTIONS(8954), + [aux_sym_preproc_if_token2] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8954), + [aux_sym_preproc_else_token1] = ACTIONS(8954), + [aux_sym_preproc_elif_token1] = ACTIONS(8954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8954), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8954), + [sym_preproc_directive] = ACTIONS(8954), + [anon_sym_LPAREN2] = ACTIONS(8956), + [anon_sym_TILDE] = ACTIONS(8956), + [anon_sym_STAR] = ACTIONS(8956), + [anon_sym_AMP_AMP] = ACTIONS(8956), + [anon_sym_AMP] = ACTIONS(8954), + [anon_sym_SEMI] = ACTIONS(8956), + [anon_sym___extension__] = ACTIONS(8954), + [anon_sym_typedef] = 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_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_typename] = ACTIONS(8954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8954), + [anon_sym_decltype] = ACTIONS(8954), + [anon_sym_explicit] = ACTIONS(8954), + [anon_sym_private] = ACTIONS(8954), + [anon_sym_template] = ACTIONS(8954), + [anon_sym_operator] = ACTIONS(8954), + [anon_sym_friend] = ACTIONS(8954), + [anon_sym_public] = ACTIONS(8954), + [anon_sym_protected] = ACTIONS(8954), + [anon_sym_static_assert] = ACTIONS(8954), + [anon_sym_LBRACK_COLON] = ACTIONS(8956), }, [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), + [sym_identifier] = ACTIONS(8950), + [aux_sym_preproc_def_token1] = ACTIONS(8950), + [aux_sym_preproc_if_token1] = ACTIONS(8950), + [aux_sym_preproc_if_token2] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8950), + [aux_sym_preproc_else_token1] = ACTIONS(8950), + [aux_sym_preproc_elif_token1] = ACTIONS(8950), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8950), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8950), + [sym_preproc_directive] = ACTIONS(8950), + [anon_sym_LPAREN2] = ACTIONS(8952), + [anon_sym_TILDE] = ACTIONS(8952), + [anon_sym_STAR] = ACTIONS(8952), + [anon_sym_AMP_AMP] = ACTIONS(8952), + [anon_sym_AMP] = ACTIONS(8950), + [anon_sym_SEMI] = ACTIONS(8952), + [anon_sym___extension__] = ACTIONS(8950), + [anon_sym_typedef] = 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_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_typename] = ACTIONS(8950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8950), + [anon_sym_decltype] = ACTIONS(8950), + [anon_sym_explicit] = ACTIONS(8950), + [anon_sym_private] = ACTIONS(8950), + [anon_sym_template] = ACTIONS(8950), + [anon_sym_operator] = ACTIONS(8950), + [anon_sym_friend] = ACTIONS(8950), + [anon_sym_public] = ACTIONS(8950), + [anon_sym_protected] = ACTIONS(8950), + [anon_sym_static_assert] = ACTIONS(8950), + [anon_sym_LBRACK_COLON] = ACTIONS(8952), }, [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), + [sym_identifier] = ACTIONS(8954), + [aux_sym_preproc_def_token1] = ACTIONS(8954), + [aux_sym_preproc_if_token1] = ACTIONS(8954), + [aux_sym_preproc_if_token2] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8954), + [aux_sym_preproc_else_token1] = ACTIONS(8954), + [aux_sym_preproc_elif_token1] = ACTIONS(8954), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8954), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8954), + [sym_preproc_directive] = ACTIONS(8954), + [anon_sym_LPAREN2] = ACTIONS(8956), + [anon_sym_TILDE] = ACTIONS(8956), + [anon_sym_STAR] = ACTIONS(8956), + [anon_sym_AMP_AMP] = ACTIONS(8956), + [anon_sym_AMP] = ACTIONS(8954), + [anon_sym_SEMI] = ACTIONS(8956), + [anon_sym___extension__] = ACTIONS(8954), + [anon_sym_typedef] = 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_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_typename] = ACTIONS(8954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8954), + [anon_sym_decltype] = ACTIONS(8954), + [anon_sym_explicit] = ACTIONS(8954), + [anon_sym_private] = ACTIONS(8954), + [anon_sym_template] = ACTIONS(8954), + [anon_sym_operator] = ACTIONS(8954), + [anon_sym_friend] = ACTIONS(8954), + [anon_sym_public] = ACTIONS(8954), + [anon_sym_protected] = ACTIONS(8954), + [anon_sym_static_assert] = ACTIONS(8954), + [anon_sym_LBRACK_COLON] = ACTIONS(8956), + }, + [STATE(3148)] = { + [sym_identifier] = ACTIONS(7818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7820), + [anon_sym_COMMA] = ACTIONS(7820), + [anon_sym_RPAREN] = ACTIONS(7820), + [aux_sym_preproc_if_token2] = ACTIONS(7820), + [aux_sym_preproc_else_token1] = ACTIONS(7820), + [aux_sym_preproc_elif_token1] = ACTIONS(7818), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7820), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7820), + [anon_sym_LPAREN2] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7818), + [anon_sym_STAR] = ACTIONS(7820), + [anon_sym_SLASH] = ACTIONS(7818), + [anon_sym_PERCENT] = ACTIONS(7820), + [anon_sym_PIPE_PIPE] = ACTIONS(7820), + [anon_sym_AMP_AMP] = ACTIONS(7820), + [anon_sym_PIPE] = ACTIONS(7818), + [anon_sym_CARET] = ACTIONS(7820), + [anon_sym_AMP] = ACTIONS(7818), + [anon_sym_EQ_EQ] = ACTIONS(7820), + [anon_sym_BANG_EQ] = ACTIONS(7820), + [anon_sym_GT] = ACTIONS(7818), + [anon_sym_GT_EQ] = ACTIONS(7820), + [anon_sym_LT_EQ] = ACTIONS(7818), + [anon_sym_LT] = ACTIONS(7818), + [anon_sym_LT_LT] = ACTIONS(7820), + [anon_sym_GT_GT] = ACTIONS(7820), + [anon_sym_SEMI] = ACTIONS(7820), + [anon_sym___extension__] = ACTIONS(7818), + [anon_sym___attribute__] = ACTIONS(7818), + [anon_sym___attribute] = ACTIONS(7818), + [anon_sym_COLON] = ACTIONS(7818), + [anon_sym_COLON_COLON] = ACTIONS(7820), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7820), + [anon_sym_LBRACE] = ACTIONS(7820), + [anon_sym_RBRACE] = ACTIONS(7820), + [anon_sym_LBRACK] = ACTIONS(7818), + [anon_sym_const] = ACTIONS(7818), + [anon_sym_constexpr] = ACTIONS(7818), + [anon_sym_volatile] = ACTIONS(7818), + [anon_sym_restrict] = ACTIONS(7818), + [anon_sym___restrict__] = ACTIONS(7818), + [anon_sym__Atomic] = ACTIONS(7818), + [anon_sym__Noreturn] = ACTIONS(7818), + [anon_sym_noreturn] = ACTIONS(7818), + [anon_sym__Nonnull] = ACTIONS(7818), + [anon_sym_mutable] = ACTIONS(7818), + [anon_sym_constinit] = ACTIONS(7818), + [anon_sym_consteval] = ACTIONS(7818), + [anon_sym_alignas] = ACTIONS(7818), + [anon_sym__Alignas] = ACTIONS(7818), + [anon_sym_QMARK] = ACTIONS(7820), + [anon_sym_LT_EQ_GT] = ACTIONS(7820), + [anon_sym_or] = ACTIONS(7818), + [anon_sym_and] = ACTIONS(7818), + [anon_sym_bitor] = ACTIONS(7818), + [anon_sym_xor] = ACTIONS(7818), + [anon_sym_bitand] = ACTIONS(7818), + [anon_sym_not_eq] = ACTIONS(7818), + [anon_sym_DASH_DASH] = ACTIONS(7820), + [anon_sym_PLUS_PLUS] = ACTIONS(7820), + [anon_sym_DOT] = ACTIONS(7818), + [anon_sym_DOT_STAR] = ACTIONS(7820), + [anon_sym_DASH_GT] = ACTIONS(7820), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7818), + [anon_sym_final] = ACTIONS(7818), + [anon_sym_override] = ACTIONS(7818), + [anon_sym_template] = ACTIONS(7818), + [anon_sym_requires] = ACTIONS(7818), + [anon_sym_LBRACK_COLON] = ACTIONS(7820), + [anon_sym_COLON_RBRACK] = ACTIONS(7820), }, [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), + [sym_identifier] = ACTIONS(7822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7824), + [anon_sym_COMMA] = ACTIONS(7824), + [anon_sym_RPAREN] = ACTIONS(7824), + [aux_sym_preproc_if_token2] = ACTIONS(7824), + [aux_sym_preproc_else_token1] = ACTIONS(7824), + [aux_sym_preproc_elif_token1] = ACTIONS(7822), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7824), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7824), + [anon_sym_LPAREN2] = ACTIONS(7824), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_PLUS] = ACTIONS(7822), + [anon_sym_STAR] = ACTIONS(7824), + [anon_sym_SLASH] = ACTIONS(7822), + [anon_sym_PERCENT] = ACTIONS(7824), + [anon_sym_PIPE_PIPE] = ACTIONS(7824), + [anon_sym_AMP_AMP] = ACTIONS(7824), + [anon_sym_PIPE] = ACTIONS(7822), + [anon_sym_CARET] = ACTIONS(7824), + [anon_sym_AMP] = ACTIONS(7822), + [anon_sym_EQ_EQ] = ACTIONS(7824), + [anon_sym_BANG_EQ] = ACTIONS(7824), + [anon_sym_GT] = ACTIONS(7822), + [anon_sym_GT_EQ] = ACTIONS(7824), + [anon_sym_LT_EQ] = ACTIONS(7822), + [anon_sym_LT] = ACTIONS(7822), + [anon_sym_LT_LT] = ACTIONS(7824), + [anon_sym_GT_GT] = ACTIONS(7824), + [anon_sym_SEMI] = ACTIONS(7824), + [anon_sym___extension__] = ACTIONS(7822), + [anon_sym___attribute__] = ACTIONS(7822), + [anon_sym___attribute] = ACTIONS(7822), + [anon_sym_COLON] = ACTIONS(7822), + [anon_sym_COLON_COLON] = ACTIONS(7824), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7824), + [anon_sym_LBRACE] = ACTIONS(7824), + [anon_sym_RBRACE] = ACTIONS(7824), + [anon_sym_LBRACK] = ACTIONS(7822), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7822), + [anon_sym_volatile] = ACTIONS(7822), + [anon_sym_restrict] = ACTIONS(7822), + [anon_sym___restrict__] = ACTIONS(7822), + [anon_sym__Atomic] = ACTIONS(7822), + [anon_sym__Noreturn] = ACTIONS(7822), + [anon_sym_noreturn] = ACTIONS(7822), + [anon_sym__Nonnull] = ACTIONS(7822), + [anon_sym_mutable] = ACTIONS(7822), + [anon_sym_constinit] = ACTIONS(7822), + [anon_sym_consteval] = ACTIONS(7822), + [anon_sym_alignas] = ACTIONS(7822), + [anon_sym__Alignas] = ACTIONS(7822), + [anon_sym_QMARK] = ACTIONS(7824), + [anon_sym_LT_EQ_GT] = ACTIONS(7824), + [anon_sym_or] = ACTIONS(7822), + [anon_sym_and] = ACTIONS(7822), + [anon_sym_bitor] = ACTIONS(7822), + [anon_sym_xor] = ACTIONS(7822), + [anon_sym_bitand] = ACTIONS(7822), + [anon_sym_not_eq] = ACTIONS(7822), + [anon_sym_DASH_DASH] = ACTIONS(7824), + [anon_sym_PLUS_PLUS] = ACTIONS(7824), + [anon_sym_DOT] = ACTIONS(7822), + [anon_sym_DOT_STAR] = ACTIONS(7824), + [anon_sym_DASH_GT] = ACTIONS(7824), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7822), + [anon_sym_final] = ACTIONS(7822), + [anon_sym_override] = ACTIONS(7822), + [anon_sym_template] = ACTIONS(7822), + [anon_sym_requires] = ACTIONS(7822), + [anon_sym_LBRACK_COLON] = ACTIONS(7824), + [anon_sym_COLON_RBRACK] = ACTIONS(7824), }, [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), + [sym_identifier] = ACTIONS(8958), + [aux_sym_preproc_def_token1] = ACTIONS(8958), + [aux_sym_preproc_if_token1] = ACTIONS(8958), + [aux_sym_preproc_if_token2] = ACTIONS(8958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8958), + [aux_sym_preproc_else_token1] = ACTIONS(8958), + [aux_sym_preproc_elif_token1] = ACTIONS(8958), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8958), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8958), + [sym_preproc_directive] = ACTIONS(8958), + [anon_sym_LPAREN2] = ACTIONS(8960), + [anon_sym_TILDE] = ACTIONS(8960), + [anon_sym_STAR] = ACTIONS(8960), + [anon_sym_AMP_AMP] = ACTIONS(8960), + [anon_sym_AMP] = ACTIONS(8958), + [anon_sym_SEMI] = ACTIONS(8960), + [anon_sym___extension__] = ACTIONS(8958), + [anon_sym_typedef] = ACTIONS(8958), + [anon_sym_virtual] = ACTIONS(8958), + [anon_sym_extern] = ACTIONS(8958), + [anon_sym___attribute__] = ACTIONS(8958), + [anon_sym___attribute] = ACTIONS(8958), + [anon_sym_using] = ACTIONS(8958), + [anon_sym_COLON_COLON] = ACTIONS(8960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8960), + [anon_sym___declspec] = ACTIONS(8958), + [anon_sym___based] = ACTIONS(8958), + [anon_sym_signed] = ACTIONS(8958), + [anon_sym_unsigned] = ACTIONS(8958), + [anon_sym_long] = ACTIONS(8958), + [anon_sym_short] = ACTIONS(8958), + [anon_sym_LBRACK] = ACTIONS(8958), + [anon_sym_static] = ACTIONS(8958), + [anon_sym_register] = ACTIONS(8958), + [anon_sym_inline] = ACTIONS(8958), + [anon_sym___inline] = ACTIONS(8958), + [anon_sym___inline__] = ACTIONS(8958), + [anon_sym___forceinline] = ACTIONS(8958), + [anon_sym_thread_local] = ACTIONS(8958), + [anon_sym___thread] = ACTIONS(8958), + [anon_sym_const] = ACTIONS(8958), + [anon_sym_constexpr] = ACTIONS(8958), + [anon_sym_volatile] = ACTIONS(8958), + [anon_sym_restrict] = ACTIONS(8958), + [anon_sym___restrict__] = ACTIONS(8958), + [anon_sym__Atomic] = ACTIONS(8958), + [anon_sym__Noreturn] = ACTIONS(8958), + [anon_sym_noreturn] = ACTIONS(8958), + [anon_sym__Nonnull] = ACTIONS(8958), + [anon_sym_mutable] = ACTIONS(8958), + [anon_sym_constinit] = ACTIONS(8958), + [anon_sym_consteval] = ACTIONS(8958), + [anon_sym_alignas] = ACTIONS(8958), + [anon_sym__Alignas] = ACTIONS(8958), + [sym_primitive_type] = ACTIONS(8958), + [anon_sym_enum] = ACTIONS(8958), + [anon_sym_class] = ACTIONS(8958), + [anon_sym_struct] = ACTIONS(8958), + [anon_sym_union] = ACTIONS(8958), + [anon_sym_typename] = ACTIONS(8958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8958), + [anon_sym_decltype] = ACTIONS(8958), + [anon_sym_explicit] = ACTIONS(8958), + [anon_sym_private] = ACTIONS(8958), + [anon_sym_template] = ACTIONS(8958), + [anon_sym_operator] = ACTIONS(8958), + [anon_sym_friend] = ACTIONS(8958), + [anon_sym_public] = ACTIONS(8958), + [anon_sym_protected] = ACTIONS(8958), + [anon_sym_static_assert] = ACTIONS(8958), + [anon_sym_LBRACK_COLON] = ACTIONS(8960), }, [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), + [sym_identifier] = ACTIONS(7826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7828), + [anon_sym_COMMA] = ACTIONS(7828), + [anon_sym_RPAREN] = ACTIONS(7828), + [aux_sym_preproc_if_token2] = ACTIONS(7828), + [aux_sym_preproc_else_token1] = ACTIONS(7828), + [aux_sym_preproc_elif_token1] = ACTIONS(7826), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7828), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7828), + [anon_sym_LPAREN2] = ACTIONS(7828), + [anon_sym_DASH] = ACTIONS(7826), + [anon_sym_PLUS] = ACTIONS(7826), + [anon_sym_STAR] = ACTIONS(7828), + [anon_sym_SLASH] = ACTIONS(7826), + [anon_sym_PERCENT] = ACTIONS(7828), + [anon_sym_PIPE_PIPE] = ACTIONS(7828), + [anon_sym_AMP_AMP] = ACTIONS(7828), + [anon_sym_PIPE] = ACTIONS(7826), + [anon_sym_CARET] = ACTIONS(7828), + [anon_sym_AMP] = ACTIONS(7826), + [anon_sym_EQ_EQ] = ACTIONS(7828), + [anon_sym_BANG_EQ] = ACTIONS(7828), + [anon_sym_GT] = ACTIONS(7826), + [anon_sym_GT_EQ] = ACTIONS(7828), + [anon_sym_LT_EQ] = ACTIONS(7826), + [anon_sym_LT] = ACTIONS(7826), + [anon_sym_LT_LT] = ACTIONS(7828), + [anon_sym_GT_GT] = ACTIONS(7828), + [anon_sym_SEMI] = ACTIONS(7828), + [anon_sym___extension__] = ACTIONS(7826), + [anon_sym___attribute__] = ACTIONS(7826), + [anon_sym___attribute] = ACTIONS(7826), + [anon_sym_COLON] = ACTIONS(7826), + [anon_sym_COLON_COLON] = ACTIONS(7828), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7828), + [anon_sym_LBRACE] = ACTIONS(7828), + [anon_sym_RBRACE] = ACTIONS(7828), + [anon_sym_LBRACK] = ACTIONS(7826), + [anon_sym_const] = ACTIONS(7826), + [anon_sym_constexpr] = ACTIONS(7826), + [anon_sym_volatile] = ACTIONS(7826), + [anon_sym_restrict] = ACTIONS(7826), + [anon_sym___restrict__] = ACTIONS(7826), + [anon_sym__Atomic] = ACTIONS(7826), + [anon_sym__Noreturn] = ACTIONS(7826), + [anon_sym_noreturn] = ACTIONS(7826), + [anon_sym__Nonnull] = ACTIONS(7826), + [anon_sym_mutable] = ACTIONS(7826), + [anon_sym_constinit] = ACTIONS(7826), + [anon_sym_consteval] = ACTIONS(7826), + [anon_sym_alignas] = ACTIONS(7826), + [anon_sym__Alignas] = ACTIONS(7826), + [anon_sym_QMARK] = ACTIONS(7828), + [anon_sym_LT_EQ_GT] = ACTIONS(7828), + [anon_sym_or] = ACTIONS(7826), + [anon_sym_and] = ACTIONS(7826), + [anon_sym_bitor] = ACTIONS(7826), + [anon_sym_xor] = ACTIONS(7826), + [anon_sym_bitand] = ACTIONS(7826), + [anon_sym_not_eq] = ACTIONS(7826), + [anon_sym_DASH_DASH] = ACTIONS(7828), + [anon_sym_PLUS_PLUS] = ACTIONS(7828), + [anon_sym_DOT] = ACTIONS(7826), + [anon_sym_DOT_STAR] = ACTIONS(7828), + [anon_sym_DASH_GT] = ACTIONS(7828), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7826), + [anon_sym_final] = ACTIONS(7826), + [anon_sym_override] = ACTIONS(7826), + [anon_sym_template] = ACTIONS(7826), + [anon_sym_requires] = ACTIONS(7826), + [anon_sym_LBRACK_COLON] = ACTIONS(7828), + [anon_sym_COLON_RBRACK] = ACTIONS(7828), }, [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), + [sym_identifier] = ACTIONS(8962), + [aux_sym_preproc_def_token1] = ACTIONS(8962), + [aux_sym_preproc_if_token1] = ACTIONS(8962), + [aux_sym_preproc_if_token2] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8962), + [aux_sym_preproc_else_token1] = ACTIONS(8962), + [aux_sym_preproc_elif_token1] = ACTIONS(8962), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8962), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8962), + [sym_preproc_directive] = ACTIONS(8962), + [anon_sym_LPAREN2] = ACTIONS(8964), + [anon_sym_TILDE] = ACTIONS(8964), + [anon_sym_STAR] = ACTIONS(8964), + [anon_sym_AMP_AMP] = ACTIONS(8964), + [anon_sym_AMP] = ACTIONS(8962), + [anon_sym_SEMI] = ACTIONS(8964), + [anon_sym___extension__] = ACTIONS(8962), + [anon_sym_typedef] = ACTIONS(8962), + [anon_sym_virtual] = ACTIONS(8962), + [anon_sym_extern] = ACTIONS(8962), + [anon_sym___attribute__] = ACTIONS(8962), + [anon_sym___attribute] = ACTIONS(8962), + [anon_sym_using] = ACTIONS(8962), + [anon_sym_COLON_COLON] = ACTIONS(8964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8964), + [anon_sym___declspec] = ACTIONS(8962), + [anon_sym___based] = ACTIONS(8962), + [anon_sym_signed] = ACTIONS(8962), + [anon_sym_unsigned] = ACTIONS(8962), + [anon_sym_long] = ACTIONS(8962), + [anon_sym_short] = ACTIONS(8962), + [anon_sym_LBRACK] = ACTIONS(8962), + [anon_sym_static] = ACTIONS(8962), + [anon_sym_register] = ACTIONS(8962), + [anon_sym_inline] = ACTIONS(8962), + [anon_sym___inline] = ACTIONS(8962), + [anon_sym___inline__] = ACTIONS(8962), + [anon_sym___forceinline] = ACTIONS(8962), + [anon_sym_thread_local] = ACTIONS(8962), + [anon_sym___thread] = ACTIONS(8962), + [anon_sym_const] = ACTIONS(8962), + [anon_sym_constexpr] = ACTIONS(8962), + [anon_sym_volatile] = ACTIONS(8962), + [anon_sym_restrict] = ACTIONS(8962), + [anon_sym___restrict__] = ACTIONS(8962), + [anon_sym__Atomic] = ACTIONS(8962), + [anon_sym__Noreturn] = ACTIONS(8962), + [anon_sym_noreturn] = ACTIONS(8962), + [anon_sym__Nonnull] = ACTIONS(8962), + [anon_sym_mutable] = ACTIONS(8962), + [anon_sym_constinit] = ACTIONS(8962), + [anon_sym_consteval] = ACTIONS(8962), + [anon_sym_alignas] = ACTIONS(8962), + [anon_sym__Alignas] = ACTIONS(8962), + [sym_primitive_type] = ACTIONS(8962), + [anon_sym_enum] = ACTIONS(8962), + [anon_sym_class] = ACTIONS(8962), + [anon_sym_struct] = ACTIONS(8962), + [anon_sym_union] = ACTIONS(8962), + [anon_sym_typename] = ACTIONS(8962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8962), + [anon_sym_decltype] = ACTIONS(8962), + [anon_sym_explicit] = ACTIONS(8962), + [anon_sym_private] = ACTIONS(8962), + [anon_sym_template] = ACTIONS(8962), + [anon_sym_operator] = ACTIONS(8962), + [anon_sym_friend] = ACTIONS(8962), + [anon_sym_public] = ACTIONS(8962), + [anon_sym_protected] = ACTIONS(8962), + [anon_sym_static_assert] = ACTIONS(8962), + [anon_sym_LBRACK_COLON] = ACTIONS(8964), }, [STATE(3153)] = { - [sym_argument_list] = STATE(5807), - [sym_initializer_list] = STATE(5738), - [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), + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [aux_sym_preproc_if_token2] = ACTIONS(7796), + [aux_sym_preproc_else_token1] = ACTIONS(7796), + [aux_sym_preproc_elif_token1] = ACTIONS(7794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7796), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7796), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7796), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7796), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7796), + [anon_sym_GT_GT] = ACTIONS(7796), + [anon_sym_SEMI] = ACTIONS(7796), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym___attribute__] = ACTIONS(7794), + [anon_sym___attribute] = ACTIONS(7794), + [anon_sym_COLON] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7796), + [anon_sym_LBRACE] = ACTIONS(7796), + [anon_sym_RBRACE] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), + [anon_sym_COLON_RBRACK] = ACTIONS(7796), }, [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), + [sym_identifier] = ACTIONS(8966), + [aux_sym_preproc_def_token1] = ACTIONS(8966), + [aux_sym_preproc_if_token1] = ACTIONS(8966), + [aux_sym_preproc_if_token2] = ACTIONS(8966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8966), + [aux_sym_preproc_else_token1] = ACTIONS(8966), + [aux_sym_preproc_elif_token1] = ACTIONS(8966), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8966), + [sym_preproc_directive] = ACTIONS(8966), + [anon_sym_LPAREN2] = ACTIONS(8968), + [anon_sym_TILDE] = ACTIONS(8968), + [anon_sym_STAR] = ACTIONS(8968), + [anon_sym_AMP_AMP] = ACTIONS(8968), + [anon_sym_AMP] = ACTIONS(8966), + [anon_sym_SEMI] = ACTIONS(8968), + [anon_sym___extension__] = ACTIONS(8966), + [anon_sym_typedef] = ACTIONS(8966), + [anon_sym_virtual] = ACTIONS(8966), + [anon_sym_extern] = ACTIONS(8966), + [anon_sym___attribute__] = ACTIONS(8966), + [anon_sym___attribute] = ACTIONS(8966), + [anon_sym_using] = ACTIONS(8966), + [anon_sym_COLON_COLON] = ACTIONS(8968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8968), + [anon_sym___declspec] = ACTIONS(8966), + [anon_sym___based] = ACTIONS(8966), + [anon_sym_signed] = ACTIONS(8966), + [anon_sym_unsigned] = ACTIONS(8966), + [anon_sym_long] = ACTIONS(8966), + [anon_sym_short] = ACTIONS(8966), + [anon_sym_LBRACK] = ACTIONS(8966), + [anon_sym_static] = ACTIONS(8966), + [anon_sym_register] = ACTIONS(8966), + [anon_sym_inline] = ACTIONS(8966), + [anon_sym___inline] = ACTIONS(8966), + [anon_sym___inline__] = ACTIONS(8966), + [anon_sym___forceinline] = ACTIONS(8966), + [anon_sym_thread_local] = ACTIONS(8966), + [anon_sym___thread] = ACTIONS(8966), + [anon_sym_const] = ACTIONS(8966), + [anon_sym_constexpr] = ACTIONS(8966), + [anon_sym_volatile] = ACTIONS(8966), + [anon_sym_restrict] = ACTIONS(8966), + [anon_sym___restrict__] = ACTIONS(8966), + [anon_sym__Atomic] = ACTIONS(8966), + [anon_sym__Noreturn] = ACTIONS(8966), + [anon_sym_noreturn] = ACTIONS(8966), + [anon_sym__Nonnull] = ACTIONS(8966), + [anon_sym_mutable] = ACTIONS(8966), + [anon_sym_constinit] = ACTIONS(8966), + [anon_sym_consteval] = ACTIONS(8966), + [anon_sym_alignas] = ACTIONS(8966), + [anon_sym__Alignas] = ACTIONS(8966), + [sym_primitive_type] = ACTIONS(8966), + [anon_sym_enum] = ACTIONS(8966), + [anon_sym_class] = ACTIONS(8966), + [anon_sym_struct] = ACTIONS(8966), + [anon_sym_union] = ACTIONS(8966), + [anon_sym_typename] = ACTIONS(8966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8966), + [anon_sym_decltype] = ACTIONS(8966), + [anon_sym_explicit] = ACTIONS(8966), + [anon_sym_private] = ACTIONS(8966), + [anon_sym_template] = ACTIONS(8966), + [anon_sym_operator] = ACTIONS(8966), + [anon_sym_friend] = ACTIONS(8966), + [anon_sym_public] = ACTIONS(8966), + [anon_sym_protected] = ACTIONS(8966), + [anon_sym_static_assert] = ACTIONS(8966), + [anon_sym_LBRACK_COLON] = ACTIONS(8968), }, [STATE(3155)] = { - [sym_identifier] = ACTIONS(7751), - [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(7753), - [anon_sym_SLASH] = ACTIONS(7751), - [anon_sym_PERCENT] = ACTIONS(7753), - [anon_sym_PIPE_PIPE] = ACTIONS(7753), - [anon_sym_AMP_AMP] = ACTIONS(7753), - [anon_sym_PIPE] = ACTIONS(7751), - [anon_sym_CARET] = ACTIONS(7753), - [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(7753), - [anon_sym_GT_GT] = ACTIONS(7753), - [anon_sym_SEMI] = ACTIONS(7753), - [anon_sym___extension__] = ACTIONS(7751), - [anon_sym___attribute__] = ACTIONS(7751), - [anon_sym___attribute] = ACTIONS(7751), - [anon_sym_COLON] = ACTIONS(7751), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7753), - [anon_sym___based] = ACTIONS(7751), - [anon_sym_LBRACE] = ACTIONS(7753), - [anon_sym_RBRACE] = ACTIONS(7753), - [anon_sym_signed] = ACTIONS(7751), - [anon_sym_unsigned] = ACTIONS(7751), - [anon_sym_long] = ACTIONS(7751), - [anon_sym_short] = ACTIONS(7751), - [anon_sym_LBRACK] = ACTIONS(7753), - [anon_sym_const] = ACTIONS(7751), - [anon_sym_constexpr] = ACTIONS(7751), - [anon_sym_volatile] = ACTIONS(7751), - [anon_sym_restrict] = ACTIONS(7751), - [anon_sym___restrict__] = ACTIONS(7751), - [anon_sym__Atomic] = ACTIONS(7751), - [anon_sym__Noreturn] = ACTIONS(7751), - [anon_sym_noreturn] = ACTIONS(7751), - [anon_sym__Nonnull] = ACTIONS(7751), - [anon_sym_mutable] = ACTIONS(7751), - [anon_sym_constinit] = ACTIONS(7751), - [anon_sym_consteval] = ACTIONS(7751), - [anon_sym_alignas] = ACTIONS(7751), - [anon_sym__Alignas] = ACTIONS(7751), - [sym_primitive_type] = ACTIONS(7751), - [anon_sym_QMARK] = ACTIONS(7753), - [anon_sym_LT_EQ_GT] = ACTIONS(7753), - [anon_sym_or] = ACTIONS(7751), - [anon_sym_and] = ACTIONS(7751), - [anon_sym_bitor] = ACTIONS(7751), - [anon_sym_xor] = ACTIONS(7751), - [anon_sym_bitand] = ACTIONS(7751), - [anon_sym_not_eq] = ACTIONS(7751), - [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(7751), - [anon_sym_override] = ACTIONS(7751), - [anon_sym_requires] = ACTIONS(7751), - [anon_sym_COLON_RBRACK] = ACTIONS(7753), + [sym_identifier] = ACTIONS(7830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7832), + [anon_sym_COMMA] = ACTIONS(7832), + [anon_sym_RPAREN] = ACTIONS(7832), + [aux_sym_preproc_if_token2] = ACTIONS(7832), + [aux_sym_preproc_else_token1] = ACTIONS(7832), + [aux_sym_preproc_elif_token1] = ACTIONS(7830), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7832), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7832), + [anon_sym_LPAREN2] = ACTIONS(7832), + [anon_sym_DASH] = ACTIONS(7830), + [anon_sym_PLUS] = ACTIONS(7830), + [anon_sym_STAR] = ACTIONS(7832), + [anon_sym_SLASH] = ACTIONS(7830), + [anon_sym_PERCENT] = ACTIONS(7832), + [anon_sym_PIPE_PIPE] = ACTIONS(7832), + [anon_sym_AMP_AMP] = ACTIONS(7832), + [anon_sym_PIPE] = ACTIONS(7830), + [anon_sym_CARET] = ACTIONS(7832), + [anon_sym_AMP] = ACTIONS(7830), + [anon_sym_EQ_EQ] = ACTIONS(7832), + [anon_sym_BANG_EQ] = ACTIONS(7832), + [anon_sym_GT] = ACTIONS(7830), + [anon_sym_GT_EQ] = ACTIONS(7832), + [anon_sym_LT_EQ] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(7830), + [anon_sym_LT_LT] = ACTIONS(7832), + [anon_sym_GT_GT] = ACTIONS(7832), + [anon_sym_SEMI] = ACTIONS(7832), + [anon_sym___extension__] = ACTIONS(7830), + [anon_sym___attribute__] = ACTIONS(7830), + [anon_sym___attribute] = ACTIONS(7830), + [anon_sym_COLON] = ACTIONS(7830), + [anon_sym_COLON_COLON] = ACTIONS(7832), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7832), + [anon_sym_LBRACE] = ACTIONS(7832), + [anon_sym_RBRACE] = ACTIONS(7832), + [anon_sym_LBRACK] = ACTIONS(7830), + [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(7830), + [anon_sym__Alignas] = ACTIONS(7830), + [anon_sym_QMARK] = ACTIONS(7832), + [anon_sym_LT_EQ_GT] = ACTIONS(7832), + [anon_sym_or] = ACTIONS(7830), + [anon_sym_and] = ACTIONS(7830), + [anon_sym_bitor] = ACTIONS(7830), + [anon_sym_xor] = ACTIONS(7830), + [anon_sym_bitand] = ACTIONS(7830), + [anon_sym_not_eq] = ACTIONS(7830), + [anon_sym_DASH_DASH] = ACTIONS(7832), + [anon_sym_PLUS_PLUS] = ACTIONS(7832), + [anon_sym_DOT] = ACTIONS(7830), + [anon_sym_DOT_STAR] = ACTIONS(7832), + [anon_sym_DASH_GT] = ACTIONS(7832), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7830), + [anon_sym_final] = ACTIONS(7830), + [anon_sym_override] = ACTIONS(7830), + [anon_sym_template] = ACTIONS(7830), + [anon_sym_requires] = ACTIONS(7830), + [anon_sym_LBRACK_COLON] = ACTIONS(7832), + [anon_sym_COLON_RBRACK] = ACTIONS(7832), }, [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), + [sym_identifier] = ACTIONS(8970), + [aux_sym_preproc_def_token1] = ACTIONS(8970), + [aux_sym_preproc_if_token1] = ACTIONS(8970), + [aux_sym_preproc_if_token2] = ACTIONS(8970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8970), + [aux_sym_preproc_else_token1] = ACTIONS(8970), + [aux_sym_preproc_elif_token1] = ACTIONS(8970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8970), + [sym_preproc_directive] = ACTIONS(8970), + [anon_sym_LPAREN2] = ACTIONS(8972), + [anon_sym_TILDE] = ACTIONS(8972), + [anon_sym_STAR] = ACTIONS(8972), + [anon_sym_AMP_AMP] = ACTIONS(8972), + [anon_sym_AMP] = ACTIONS(8970), + [anon_sym_SEMI] = ACTIONS(8972), + [anon_sym___extension__] = ACTIONS(8970), + [anon_sym_typedef] = ACTIONS(8970), + [anon_sym_virtual] = ACTIONS(8970), + [anon_sym_extern] = ACTIONS(8970), + [anon_sym___attribute__] = ACTIONS(8970), + [anon_sym___attribute] = ACTIONS(8970), + [anon_sym_using] = ACTIONS(8970), + [anon_sym_COLON_COLON] = ACTIONS(8972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8972), + [anon_sym___declspec] = ACTIONS(8970), + [anon_sym___based] = ACTIONS(8970), + [anon_sym_signed] = ACTIONS(8970), + [anon_sym_unsigned] = ACTIONS(8970), + [anon_sym_long] = ACTIONS(8970), + [anon_sym_short] = ACTIONS(8970), + [anon_sym_LBRACK] = ACTIONS(8970), + [anon_sym_static] = ACTIONS(8970), + [anon_sym_register] = ACTIONS(8970), + [anon_sym_inline] = ACTIONS(8970), + [anon_sym___inline] = ACTIONS(8970), + [anon_sym___inline__] = ACTIONS(8970), + [anon_sym___forceinline] = ACTIONS(8970), + [anon_sym_thread_local] = ACTIONS(8970), + [anon_sym___thread] = ACTIONS(8970), + [anon_sym_const] = ACTIONS(8970), + [anon_sym_constexpr] = ACTIONS(8970), + [anon_sym_volatile] = ACTIONS(8970), + [anon_sym_restrict] = ACTIONS(8970), + [anon_sym___restrict__] = ACTIONS(8970), + [anon_sym__Atomic] = ACTIONS(8970), + [anon_sym__Noreturn] = ACTIONS(8970), + [anon_sym_noreturn] = ACTIONS(8970), + [anon_sym__Nonnull] = ACTIONS(8970), + [anon_sym_mutable] = ACTIONS(8970), + [anon_sym_constinit] = ACTIONS(8970), + [anon_sym_consteval] = ACTIONS(8970), + [anon_sym_alignas] = ACTIONS(8970), + [anon_sym__Alignas] = ACTIONS(8970), + [sym_primitive_type] = ACTIONS(8970), + [anon_sym_enum] = ACTIONS(8970), + [anon_sym_class] = ACTIONS(8970), + [anon_sym_struct] = ACTIONS(8970), + [anon_sym_union] = ACTIONS(8970), + [anon_sym_typename] = ACTIONS(8970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8970), + [anon_sym_decltype] = ACTIONS(8970), + [anon_sym_explicit] = ACTIONS(8970), + [anon_sym_private] = ACTIONS(8970), + [anon_sym_template] = ACTIONS(8970), + [anon_sym_operator] = ACTIONS(8970), + [anon_sym_friend] = ACTIONS(8970), + [anon_sym_public] = ACTIONS(8970), + [anon_sym_protected] = ACTIONS(8970), + [anon_sym_static_assert] = ACTIONS(8970), + [anon_sym_LBRACK_COLON] = ACTIONS(8972), }, [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), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [aux_sym_preproc_if_token2] = ACTIONS(7292), + [aux_sym_preproc_else_token1] = ACTIONS(7292), + [aux_sym_preproc_elif_token1] = ACTIONS(7290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7292), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7292), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7292), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7292), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_RBRACE] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), + [anon_sym_COLON_RBRACK] = ACTIONS(7292), }, [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), + [sym_identifier] = ACTIONS(8974), + [aux_sym_preproc_def_token1] = ACTIONS(8974), + [aux_sym_preproc_if_token1] = ACTIONS(8974), + [aux_sym_preproc_if_token2] = ACTIONS(8974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8974), + [aux_sym_preproc_else_token1] = ACTIONS(8974), + [aux_sym_preproc_elif_token1] = ACTIONS(8974), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8974), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8974), + [sym_preproc_directive] = ACTIONS(8974), + [anon_sym_LPAREN2] = ACTIONS(8976), + [anon_sym_TILDE] = ACTIONS(8976), + [anon_sym_STAR] = ACTIONS(8976), + [anon_sym_AMP_AMP] = ACTIONS(8976), + [anon_sym_AMP] = ACTIONS(8974), + [anon_sym_SEMI] = ACTIONS(8976), + [anon_sym___extension__] = ACTIONS(8974), + [anon_sym_typedef] = ACTIONS(8974), + [anon_sym_virtual] = ACTIONS(8974), + [anon_sym_extern] = ACTIONS(8974), + [anon_sym___attribute__] = ACTIONS(8974), + [anon_sym___attribute] = ACTIONS(8974), + [anon_sym_using] = ACTIONS(8974), + [anon_sym_COLON_COLON] = ACTIONS(8976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8976), + [anon_sym___declspec] = ACTIONS(8974), + [anon_sym___based] = ACTIONS(8974), + [anon_sym_signed] = ACTIONS(8974), + [anon_sym_unsigned] = ACTIONS(8974), + [anon_sym_long] = ACTIONS(8974), + [anon_sym_short] = ACTIONS(8974), + [anon_sym_LBRACK] = ACTIONS(8974), + [anon_sym_static] = ACTIONS(8974), + [anon_sym_register] = ACTIONS(8974), + [anon_sym_inline] = ACTIONS(8974), + [anon_sym___inline] = ACTIONS(8974), + [anon_sym___inline__] = ACTIONS(8974), + [anon_sym___forceinline] = ACTIONS(8974), + [anon_sym_thread_local] = ACTIONS(8974), + [anon_sym___thread] = ACTIONS(8974), + [anon_sym_const] = ACTIONS(8974), + [anon_sym_constexpr] = ACTIONS(8974), + [anon_sym_volatile] = ACTIONS(8974), + [anon_sym_restrict] = ACTIONS(8974), + [anon_sym___restrict__] = ACTIONS(8974), + [anon_sym__Atomic] = ACTIONS(8974), + [anon_sym__Noreturn] = ACTIONS(8974), + [anon_sym_noreturn] = ACTIONS(8974), + [anon_sym__Nonnull] = ACTIONS(8974), + [anon_sym_mutable] = ACTIONS(8974), + [anon_sym_constinit] = ACTIONS(8974), + [anon_sym_consteval] = ACTIONS(8974), + [anon_sym_alignas] = ACTIONS(8974), + [anon_sym__Alignas] = ACTIONS(8974), + [sym_primitive_type] = ACTIONS(8974), + [anon_sym_enum] = ACTIONS(8974), + [anon_sym_class] = ACTIONS(8974), + [anon_sym_struct] = ACTIONS(8974), + [anon_sym_union] = ACTIONS(8974), + [anon_sym_typename] = ACTIONS(8974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8974), + [anon_sym_decltype] = ACTIONS(8974), + [anon_sym_explicit] = ACTIONS(8974), + [anon_sym_private] = ACTIONS(8974), + [anon_sym_template] = ACTIONS(8974), + [anon_sym_operator] = ACTIONS(8974), + [anon_sym_friend] = ACTIONS(8974), + [anon_sym_public] = ACTIONS(8974), + [anon_sym_protected] = ACTIONS(8974), + [anon_sym_static_assert] = ACTIONS(8974), + [anon_sym_LBRACK_COLON] = ACTIONS(8976), }, [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), + [sym_identifier] = ACTIONS(8978), + [aux_sym_preproc_def_token1] = ACTIONS(8978), + [aux_sym_preproc_if_token1] = ACTIONS(8978), + [aux_sym_preproc_if_token2] = ACTIONS(8978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8978), + [aux_sym_preproc_else_token1] = ACTIONS(8978), + [aux_sym_preproc_elif_token1] = ACTIONS(8978), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8978), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8978), + [sym_preproc_directive] = ACTIONS(8978), + [anon_sym_LPAREN2] = ACTIONS(8980), + [anon_sym_TILDE] = ACTIONS(8980), + [anon_sym_STAR] = ACTIONS(8980), + [anon_sym_AMP_AMP] = ACTIONS(8980), + [anon_sym_AMP] = ACTIONS(8978), + [anon_sym_SEMI] = ACTIONS(8980), + [anon_sym___extension__] = ACTIONS(8978), + [anon_sym_typedef] = ACTIONS(8978), + [anon_sym_virtual] = ACTIONS(8978), + [anon_sym_extern] = ACTIONS(8978), + [anon_sym___attribute__] = ACTIONS(8978), + [anon_sym___attribute] = ACTIONS(8978), + [anon_sym_using] = ACTIONS(8978), + [anon_sym_COLON_COLON] = ACTIONS(8980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8980), + [anon_sym___declspec] = ACTIONS(8978), + [anon_sym___based] = ACTIONS(8978), + [anon_sym_signed] = ACTIONS(8978), + [anon_sym_unsigned] = ACTIONS(8978), + [anon_sym_long] = ACTIONS(8978), + [anon_sym_short] = ACTIONS(8978), + [anon_sym_LBRACK] = ACTIONS(8978), + [anon_sym_static] = ACTIONS(8978), + [anon_sym_register] = ACTIONS(8978), + [anon_sym_inline] = ACTIONS(8978), + [anon_sym___inline] = ACTIONS(8978), + [anon_sym___inline__] = ACTIONS(8978), + [anon_sym___forceinline] = ACTIONS(8978), + [anon_sym_thread_local] = ACTIONS(8978), + [anon_sym___thread] = ACTIONS(8978), + [anon_sym_const] = ACTIONS(8978), + [anon_sym_constexpr] = ACTIONS(8978), + [anon_sym_volatile] = ACTIONS(8978), + [anon_sym_restrict] = ACTIONS(8978), + [anon_sym___restrict__] = ACTIONS(8978), + [anon_sym__Atomic] = ACTIONS(8978), + [anon_sym__Noreturn] = ACTIONS(8978), + [anon_sym_noreturn] = ACTIONS(8978), + [anon_sym__Nonnull] = ACTIONS(8978), + [anon_sym_mutable] = ACTIONS(8978), + [anon_sym_constinit] = ACTIONS(8978), + [anon_sym_consteval] = ACTIONS(8978), + [anon_sym_alignas] = ACTIONS(8978), + [anon_sym__Alignas] = ACTIONS(8978), + [sym_primitive_type] = ACTIONS(8978), + [anon_sym_enum] = ACTIONS(8978), + [anon_sym_class] = ACTIONS(8978), + [anon_sym_struct] = ACTIONS(8978), + [anon_sym_union] = ACTIONS(8978), + [anon_sym_typename] = ACTIONS(8978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8978), + [anon_sym_decltype] = ACTIONS(8978), + [anon_sym_explicit] = ACTIONS(8978), + [anon_sym_private] = ACTIONS(8978), + [anon_sym_template] = ACTIONS(8978), + [anon_sym_operator] = ACTIONS(8978), + [anon_sym_friend] = ACTIONS(8978), + [anon_sym_public] = ACTIONS(8978), + [anon_sym_protected] = ACTIONS(8978), + [anon_sym_static_assert] = ACTIONS(8978), + [anon_sym_LBRACK_COLON] = ACTIONS(8980), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6824), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6824), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6824), + [anon_sym_GT_GT] = ACTIONS(6824), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6824), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_GT2] = ACTIONS(6819), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_identifier] = ACTIONS(8982), + [aux_sym_preproc_def_token1] = ACTIONS(8982), + [aux_sym_preproc_if_token1] = ACTIONS(8982), + [aux_sym_preproc_if_token2] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8982), + [aux_sym_preproc_else_token1] = ACTIONS(8982), + [aux_sym_preproc_elif_token1] = ACTIONS(8982), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8982), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8982), + [sym_preproc_directive] = ACTIONS(8982), + [anon_sym_LPAREN2] = ACTIONS(8984), + [anon_sym_TILDE] = ACTIONS(8984), + [anon_sym_STAR] = ACTIONS(8984), + [anon_sym_AMP_AMP] = ACTIONS(8984), + [anon_sym_AMP] = ACTIONS(8982), + [anon_sym_SEMI] = ACTIONS(8984), + [anon_sym___extension__] = ACTIONS(8982), + [anon_sym_typedef] = ACTIONS(8982), + [anon_sym_virtual] = ACTIONS(8982), + [anon_sym_extern] = ACTIONS(8982), + [anon_sym___attribute__] = ACTIONS(8982), + [anon_sym___attribute] = ACTIONS(8982), + [anon_sym_using] = ACTIONS(8982), + [anon_sym_COLON_COLON] = ACTIONS(8984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8984), + [anon_sym___declspec] = ACTIONS(8982), + [anon_sym___based] = ACTIONS(8982), + [anon_sym_signed] = ACTIONS(8982), + [anon_sym_unsigned] = ACTIONS(8982), + [anon_sym_long] = ACTIONS(8982), + [anon_sym_short] = ACTIONS(8982), + [anon_sym_LBRACK] = ACTIONS(8982), + [anon_sym_static] = ACTIONS(8982), + [anon_sym_register] = ACTIONS(8982), + [anon_sym_inline] = ACTIONS(8982), + [anon_sym___inline] = ACTIONS(8982), + [anon_sym___inline__] = ACTIONS(8982), + [anon_sym___forceinline] = ACTIONS(8982), + [anon_sym_thread_local] = ACTIONS(8982), + [anon_sym___thread] = ACTIONS(8982), + [anon_sym_const] = ACTIONS(8982), + [anon_sym_constexpr] = ACTIONS(8982), + [anon_sym_volatile] = ACTIONS(8982), + [anon_sym_restrict] = ACTIONS(8982), + [anon_sym___restrict__] = ACTIONS(8982), + [anon_sym__Atomic] = ACTIONS(8982), + [anon_sym__Noreturn] = ACTIONS(8982), + [anon_sym_noreturn] = ACTIONS(8982), + [anon_sym__Nonnull] = ACTIONS(8982), + [anon_sym_mutable] = ACTIONS(8982), + [anon_sym_constinit] = ACTIONS(8982), + [anon_sym_consteval] = ACTIONS(8982), + [anon_sym_alignas] = ACTIONS(8982), + [anon_sym__Alignas] = ACTIONS(8982), + [sym_primitive_type] = ACTIONS(8982), + [anon_sym_enum] = ACTIONS(8982), + [anon_sym_class] = ACTIONS(8982), + [anon_sym_struct] = ACTIONS(8982), + [anon_sym_union] = ACTIONS(8982), + [anon_sym_typename] = ACTIONS(8982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8982), + [anon_sym_decltype] = ACTIONS(8982), + [anon_sym_explicit] = ACTIONS(8982), + [anon_sym_private] = ACTIONS(8982), + [anon_sym_template] = ACTIONS(8982), + [anon_sym_operator] = ACTIONS(8982), + [anon_sym_friend] = ACTIONS(8982), + [anon_sym_public] = ACTIONS(8982), + [anon_sym_protected] = ACTIONS(8982), + [anon_sym_static_assert] = ACTIONS(8982), + [anon_sym_LBRACK_COLON] = ACTIONS(8984), }, [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), + [sym_identifier] = ACTIONS(3977), + [aux_sym_preproc_def_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token2] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3977), + [aux_sym_preproc_else_token1] = ACTIONS(3977), + [aux_sym_preproc_elif_token1] = ACTIONS(3977), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3977), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3977), + [sym_preproc_directive] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_TILDE] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_typedef] = ACTIONS(3977), + [anon_sym_virtual] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_using] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym___based] = ACTIONS(3977), + [anon_sym_signed] = ACTIONS(3977), + [anon_sym_unsigned] = ACTIONS(3977), + [anon_sym_long] = ACTIONS(3977), + [anon_sym_short] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_mutable] = ACTIONS(3977), + [anon_sym_constinit] = ACTIONS(3977), + [anon_sym_consteval] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [sym_primitive_type] = ACTIONS(3977), + [anon_sym_enum] = ACTIONS(3977), + [anon_sym_class] = ACTIONS(3977), + [anon_sym_struct] = ACTIONS(3977), + [anon_sym_union] = ACTIONS(3977), + [anon_sym_typename] = ACTIONS(3977), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3977), + [anon_sym_decltype] = ACTIONS(3977), + [anon_sym_explicit] = ACTIONS(3977), + [anon_sym_private] = ACTIONS(3977), + [anon_sym_template] = ACTIONS(3977), + [anon_sym_operator] = ACTIONS(3977), + [anon_sym_friend] = ACTIONS(3977), + [anon_sym_public] = ACTIONS(3977), + [anon_sym_protected] = ACTIONS(3977), + [anon_sym_static_assert] = ACTIONS(3977), + [anon_sym_LBRACK_COLON] = ACTIONS(3979), }, [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), + [sym_identifier] = ACTIONS(8986), + [aux_sym_preproc_def_token1] = ACTIONS(8986), + [aux_sym_preproc_if_token1] = ACTIONS(8986), + [aux_sym_preproc_if_token2] = ACTIONS(8986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8986), + [aux_sym_preproc_else_token1] = ACTIONS(8986), + [aux_sym_preproc_elif_token1] = ACTIONS(8986), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8986), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8986), + [sym_preproc_directive] = ACTIONS(8986), + [anon_sym_LPAREN2] = ACTIONS(8988), + [anon_sym_TILDE] = ACTIONS(8988), + [anon_sym_STAR] = ACTIONS(8988), + [anon_sym_AMP_AMP] = ACTIONS(8988), + [anon_sym_AMP] = ACTIONS(8986), + [anon_sym_SEMI] = ACTIONS(8988), + [anon_sym___extension__] = ACTIONS(8986), + [anon_sym_typedef] = ACTIONS(8986), + [anon_sym_virtual] = ACTIONS(8986), + [anon_sym_extern] = ACTIONS(8986), + [anon_sym___attribute__] = ACTIONS(8986), + [anon_sym___attribute] = ACTIONS(8986), + [anon_sym_using] = ACTIONS(8986), + [anon_sym_COLON_COLON] = ACTIONS(8988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8988), + [anon_sym___declspec] = ACTIONS(8986), + [anon_sym___based] = ACTIONS(8986), + [anon_sym_signed] = ACTIONS(8986), + [anon_sym_unsigned] = ACTIONS(8986), + [anon_sym_long] = ACTIONS(8986), + [anon_sym_short] = ACTIONS(8986), + [anon_sym_LBRACK] = ACTIONS(8986), + [anon_sym_static] = ACTIONS(8986), + [anon_sym_register] = ACTIONS(8986), + [anon_sym_inline] = ACTIONS(8986), + [anon_sym___inline] = ACTIONS(8986), + [anon_sym___inline__] = ACTIONS(8986), + [anon_sym___forceinline] = ACTIONS(8986), + [anon_sym_thread_local] = ACTIONS(8986), + [anon_sym___thread] = ACTIONS(8986), + [anon_sym_const] = ACTIONS(8986), + [anon_sym_constexpr] = ACTIONS(8986), + [anon_sym_volatile] = ACTIONS(8986), + [anon_sym_restrict] = ACTIONS(8986), + [anon_sym___restrict__] = ACTIONS(8986), + [anon_sym__Atomic] = ACTIONS(8986), + [anon_sym__Noreturn] = ACTIONS(8986), + [anon_sym_noreturn] = ACTIONS(8986), + [anon_sym__Nonnull] = ACTIONS(8986), + [anon_sym_mutable] = ACTIONS(8986), + [anon_sym_constinit] = ACTIONS(8986), + [anon_sym_consteval] = ACTIONS(8986), + [anon_sym_alignas] = ACTIONS(8986), + [anon_sym__Alignas] = ACTIONS(8986), + [sym_primitive_type] = ACTIONS(8986), + [anon_sym_enum] = ACTIONS(8986), + [anon_sym_class] = ACTIONS(8986), + [anon_sym_struct] = ACTIONS(8986), + [anon_sym_union] = ACTIONS(8986), + [anon_sym_typename] = ACTIONS(8986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8986), + [anon_sym_decltype] = ACTIONS(8986), + [anon_sym_explicit] = ACTIONS(8986), + [anon_sym_private] = ACTIONS(8986), + [anon_sym_template] = ACTIONS(8986), + [anon_sym_operator] = ACTIONS(8986), + [anon_sym_friend] = ACTIONS(8986), + [anon_sym_public] = ACTIONS(8986), + [anon_sym_protected] = ACTIONS(8986), + [anon_sym_static_assert] = ACTIONS(8986), + [anon_sym_LBRACK_COLON] = ACTIONS(8988), }, [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), + [sym_identifier] = ACTIONS(8990), + [aux_sym_preproc_def_token1] = ACTIONS(8990), + [aux_sym_preproc_if_token1] = ACTIONS(8990), + [aux_sym_preproc_if_token2] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8990), + [aux_sym_preproc_else_token1] = ACTIONS(8990), + [aux_sym_preproc_elif_token1] = ACTIONS(8990), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8990), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8990), + [sym_preproc_directive] = ACTIONS(8990), + [anon_sym_LPAREN2] = ACTIONS(8992), + [anon_sym_TILDE] = ACTIONS(8992), + [anon_sym_STAR] = ACTIONS(8992), + [anon_sym_AMP_AMP] = ACTIONS(8992), + [anon_sym_AMP] = ACTIONS(8990), + [anon_sym_SEMI] = ACTIONS(8992), + [anon_sym___extension__] = ACTIONS(8990), + [anon_sym_typedef] = ACTIONS(8990), + [anon_sym_virtual] = ACTIONS(8990), + [anon_sym_extern] = ACTIONS(8990), + [anon_sym___attribute__] = ACTIONS(8990), + [anon_sym___attribute] = ACTIONS(8990), + [anon_sym_using] = ACTIONS(8990), + [anon_sym_COLON_COLON] = ACTIONS(8992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8992), + [anon_sym___declspec] = ACTIONS(8990), + [anon_sym___based] = ACTIONS(8990), + [anon_sym_signed] = ACTIONS(8990), + [anon_sym_unsigned] = ACTIONS(8990), + [anon_sym_long] = ACTIONS(8990), + [anon_sym_short] = ACTIONS(8990), + [anon_sym_LBRACK] = ACTIONS(8990), + [anon_sym_static] = ACTIONS(8990), + [anon_sym_register] = ACTIONS(8990), + [anon_sym_inline] = ACTIONS(8990), + [anon_sym___inline] = ACTIONS(8990), + [anon_sym___inline__] = ACTIONS(8990), + [anon_sym___forceinline] = ACTIONS(8990), + [anon_sym_thread_local] = ACTIONS(8990), + [anon_sym___thread] = ACTIONS(8990), + [anon_sym_const] = ACTIONS(8990), + [anon_sym_constexpr] = ACTIONS(8990), + [anon_sym_volatile] = ACTIONS(8990), + [anon_sym_restrict] = ACTIONS(8990), + [anon_sym___restrict__] = ACTIONS(8990), + [anon_sym__Atomic] = ACTIONS(8990), + [anon_sym__Noreturn] = ACTIONS(8990), + [anon_sym_noreturn] = ACTIONS(8990), + [anon_sym__Nonnull] = ACTIONS(8990), + [anon_sym_mutable] = ACTIONS(8990), + [anon_sym_constinit] = ACTIONS(8990), + [anon_sym_consteval] = ACTIONS(8990), + [anon_sym_alignas] = ACTIONS(8990), + [anon_sym__Alignas] = ACTIONS(8990), + [sym_primitive_type] = ACTIONS(8990), + [anon_sym_enum] = ACTIONS(8990), + [anon_sym_class] = ACTIONS(8990), + [anon_sym_struct] = ACTIONS(8990), + [anon_sym_union] = ACTIONS(8990), + [anon_sym_typename] = ACTIONS(8990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8990), + [anon_sym_decltype] = ACTIONS(8990), + [anon_sym_explicit] = ACTIONS(8990), + [anon_sym_private] = ACTIONS(8990), + [anon_sym_template] = ACTIONS(8990), + [anon_sym_operator] = ACTIONS(8990), + [anon_sym_friend] = ACTIONS(8990), + [anon_sym_public] = ACTIONS(8990), + [anon_sym_protected] = ACTIONS(8990), + [anon_sym_static_assert] = ACTIONS(8990), + [anon_sym_LBRACK_COLON] = ACTIONS(8992), }, [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), + [sym_identifier] = ACTIONS(4347), + [aux_sym_preproc_def_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token2] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), + [aux_sym_preproc_else_token1] = ACTIONS(4347), + [aux_sym_preproc_elif_token1] = ACTIONS(4347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4347), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4347), + [sym_preproc_directive] = ACTIONS(4347), + [anon_sym_LPAREN2] = ACTIONS(4349), + [anon_sym_TILDE] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym___extension__] = ACTIONS(4347), + [anon_sym_typedef] = ACTIONS(4347), + [anon_sym_virtual] = ACTIONS(4347), + [anon_sym_extern] = ACTIONS(4347), + [anon_sym___attribute__] = ACTIONS(4347), + [anon_sym___attribute] = ACTIONS(4347), + [anon_sym_using] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4349), + [anon_sym___declspec] = ACTIONS(4347), + [anon_sym___based] = ACTIONS(4347), + [anon_sym_signed] = ACTIONS(4347), + [anon_sym_unsigned] = ACTIONS(4347), + [anon_sym_long] = ACTIONS(4347), + [anon_sym_short] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_static] = ACTIONS(4347), + [anon_sym_register] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym___inline] = ACTIONS(4347), + [anon_sym___inline__] = ACTIONS(4347), + [anon_sym___forceinline] = ACTIONS(4347), + [anon_sym_thread_local] = ACTIONS(4347), + [anon_sym___thread] = ACTIONS(4347), + [anon_sym_const] = ACTIONS(4347), + [anon_sym_constexpr] = ACTIONS(4347), + [anon_sym_volatile] = ACTIONS(4347), + [anon_sym_restrict] = ACTIONS(4347), + [anon_sym___restrict__] = ACTIONS(4347), + [anon_sym__Atomic] = ACTIONS(4347), + [anon_sym__Noreturn] = ACTIONS(4347), + [anon_sym_noreturn] = ACTIONS(4347), + [anon_sym__Nonnull] = ACTIONS(4347), + [anon_sym_mutable] = ACTIONS(4347), + [anon_sym_constinit] = ACTIONS(4347), + [anon_sym_consteval] = ACTIONS(4347), + [anon_sym_alignas] = ACTIONS(4347), + [anon_sym__Alignas] = ACTIONS(4347), + [sym_primitive_type] = ACTIONS(4347), + [anon_sym_enum] = ACTIONS(4347), + [anon_sym_class] = ACTIONS(4347), + [anon_sym_struct] = ACTIONS(4347), + [anon_sym_union] = ACTIONS(4347), + [anon_sym_typename] = ACTIONS(4347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4347), + [anon_sym_decltype] = ACTIONS(4347), + [anon_sym_explicit] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_template] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_friend] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_static_assert] = ACTIONS(4347), + [anon_sym_LBRACK_COLON] = ACTIONS(4349), }, [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7733), - [anon_sym_override] = ACTIONS(7733), - [anon_sym_requires] = ACTIONS(7733), + [sym_identifier] = ACTIONS(3981), + [aux_sym_preproc_def_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token2] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3981), + [aux_sym_preproc_else_token1] = ACTIONS(3981), + [aux_sym_preproc_elif_token1] = ACTIONS(3981), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3981), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3981), + [sym_preproc_directive] = ACTIONS(3981), + [anon_sym_LPAREN2] = ACTIONS(3983), + [anon_sym_TILDE] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym___extension__] = ACTIONS(3981), + [anon_sym_typedef] = ACTIONS(3981), + [anon_sym_virtual] = ACTIONS(3981), + [anon_sym_extern] = ACTIONS(3981), + [anon_sym___attribute__] = ACTIONS(3981), + [anon_sym___attribute] = ACTIONS(3981), + [anon_sym_using] = ACTIONS(3981), + [anon_sym_COLON_COLON] = ACTIONS(3983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3983), + [anon_sym___declspec] = ACTIONS(3981), + [anon_sym___based] = ACTIONS(3981), + [anon_sym_signed] = ACTIONS(3981), + [anon_sym_unsigned] = ACTIONS(3981), + [anon_sym_long] = ACTIONS(3981), + [anon_sym_short] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_register] = ACTIONS(3981), + [anon_sym_inline] = ACTIONS(3981), + [anon_sym___inline] = ACTIONS(3981), + [anon_sym___inline__] = ACTIONS(3981), + [anon_sym___forceinline] = ACTIONS(3981), + [anon_sym_thread_local] = ACTIONS(3981), + [anon_sym___thread] = ACTIONS(3981), + [anon_sym_const] = ACTIONS(3981), + [anon_sym_constexpr] = ACTIONS(3981), + [anon_sym_volatile] = ACTIONS(3981), + [anon_sym_restrict] = ACTIONS(3981), + [anon_sym___restrict__] = ACTIONS(3981), + [anon_sym__Atomic] = ACTIONS(3981), + [anon_sym__Noreturn] = ACTIONS(3981), + [anon_sym_noreturn] = ACTIONS(3981), + [anon_sym__Nonnull] = ACTIONS(3981), + [anon_sym_mutable] = ACTIONS(3981), + [anon_sym_constinit] = ACTIONS(3981), + [anon_sym_consteval] = ACTIONS(3981), + [anon_sym_alignas] = ACTIONS(3981), + [anon_sym__Alignas] = ACTIONS(3981), + [sym_primitive_type] = ACTIONS(3981), + [anon_sym_enum] = ACTIONS(3981), + [anon_sym_class] = ACTIONS(3981), + [anon_sym_struct] = ACTIONS(3981), + [anon_sym_union] = ACTIONS(3981), + [anon_sym_typename] = ACTIONS(3981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3981), + [anon_sym_decltype] = ACTIONS(3981), + [anon_sym_explicit] = ACTIONS(3981), + [anon_sym_private] = ACTIONS(3981), + [anon_sym_template] = ACTIONS(3981), + [anon_sym_operator] = ACTIONS(3981), + [anon_sym_friend] = ACTIONS(3981), + [anon_sym_public] = ACTIONS(3981), + [anon_sym_protected] = ACTIONS(3981), + [anon_sym_static_assert] = ACTIONS(3981), + [anon_sym_LBRACK_COLON] = ACTIONS(3983), }, [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), + [sym_identifier] = ACTIONS(8982), + [aux_sym_preproc_def_token1] = ACTIONS(8982), + [aux_sym_preproc_if_token1] = ACTIONS(8982), + [aux_sym_preproc_if_token2] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8982), + [aux_sym_preproc_else_token1] = ACTIONS(8982), + [aux_sym_preproc_elif_token1] = ACTIONS(8982), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8982), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8982), + [sym_preproc_directive] = ACTIONS(8982), + [anon_sym_LPAREN2] = ACTIONS(8984), + [anon_sym_TILDE] = ACTIONS(8984), + [anon_sym_STAR] = ACTIONS(8984), + [anon_sym_AMP_AMP] = ACTIONS(8984), + [anon_sym_AMP] = ACTIONS(8982), + [anon_sym_SEMI] = ACTIONS(8984), + [anon_sym___extension__] = ACTIONS(8982), + [anon_sym_typedef] = ACTIONS(8982), + [anon_sym_virtual] = ACTIONS(8982), + [anon_sym_extern] = ACTIONS(8982), + [anon_sym___attribute__] = ACTIONS(8982), + [anon_sym___attribute] = ACTIONS(8982), + [anon_sym_using] = ACTIONS(8982), + [anon_sym_COLON_COLON] = ACTIONS(8984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8984), + [anon_sym___declspec] = ACTIONS(8982), + [anon_sym___based] = ACTIONS(8982), + [anon_sym_signed] = ACTIONS(8982), + [anon_sym_unsigned] = ACTIONS(8982), + [anon_sym_long] = ACTIONS(8982), + [anon_sym_short] = ACTIONS(8982), + [anon_sym_LBRACK] = ACTIONS(8982), + [anon_sym_static] = ACTIONS(8982), + [anon_sym_register] = ACTIONS(8982), + [anon_sym_inline] = ACTIONS(8982), + [anon_sym___inline] = ACTIONS(8982), + [anon_sym___inline__] = ACTIONS(8982), + [anon_sym___forceinline] = ACTIONS(8982), + [anon_sym_thread_local] = ACTIONS(8982), + [anon_sym___thread] = ACTIONS(8982), + [anon_sym_const] = ACTIONS(8982), + [anon_sym_constexpr] = ACTIONS(8982), + [anon_sym_volatile] = ACTIONS(8982), + [anon_sym_restrict] = ACTIONS(8982), + [anon_sym___restrict__] = ACTIONS(8982), + [anon_sym__Atomic] = ACTIONS(8982), + [anon_sym__Noreturn] = ACTIONS(8982), + [anon_sym_noreturn] = ACTIONS(8982), + [anon_sym__Nonnull] = ACTIONS(8982), + [anon_sym_mutable] = ACTIONS(8982), + [anon_sym_constinit] = ACTIONS(8982), + [anon_sym_consteval] = ACTIONS(8982), + [anon_sym_alignas] = ACTIONS(8982), + [anon_sym__Alignas] = ACTIONS(8982), + [sym_primitive_type] = ACTIONS(8982), + [anon_sym_enum] = ACTIONS(8982), + [anon_sym_class] = ACTIONS(8982), + [anon_sym_struct] = ACTIONS(8982), + [anon_sym_union] = ACTIONS(8982), + [anon_sym_typename] = ACTIONS(8982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8982), + [anon_sym_decltype] = ACTIONS(8982), + [anon_sym_explicit] = ACTIONS(8982), + [anon_sym_private] = ACTIONS(8982), + [anon_sym_template] = ACTIONS(8982), + [anon_sym_operator] = ACTIONS(8982), + [anon_sym_friend] = ACTIONS(8982), + [anon_sym_public] = ACTIONS(8982), + [anon_sym_protected] = ACTIONS(8982), + [anon_sym_static_assert] = ACTIONS(8982), + [anon_sym_LBRACK_COLON] = ACTIONS(8984), }, [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), + [sym_identifier] = ACTIONS(3985), + [aux_sym_preproc_def_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token2] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3985), + [aux_sym_preproc_else_token1] = ACTIONS(3985), + [aux_sym_preproc_elif_token1] = ACTIONS(3985), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3985), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3985), + [sym_preproc_directive] = ACTIONS(3985), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_TILDE] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym___extension__] = ACTIONS(3985), + [anon_sym_typedef] = ACTIONS(3985), + [anon_sym_virtual] = ACTIONS(3985), + [anon_sym_extern] = ACTIONS(3985), + [anon_sym___attribute__] = ACTIONS(3985), + [anon_sym___attribute] = ACTIONS(3985), + [anon_sym_using] = ACTIONS(3985), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(3985), + [anon_sym___based] = ACTIONS(3985), + [anon_sym_signed] = ACTIONS(3985), + [anon_sym_unsigned] = ACTIONS(3985), + [anon_sym_long] = ACTIONS(3985), + [anon_sym_short] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_static] = ACTIONS(3985), + [anon_sym_register] = ACTIONS(3985), + [anon_sym_inline] = ACTIONS(3985), + [anon_sym___inline] = ACTIONS(3985), + [anon_sym___inline__] = ACTIONS(3985), + [anon_sym___forceinline] = ACTIONS(3985), + [anon_sym_thread_local] = ACTIONS(3985), + [anon_sym___thread] = ACTIONS(3985), + [anon_sym_const] = ACTIONS(3985), + [anon_sym_constexpr] = ACTIONS(3985), + [anon_sym_volatile] = ACTIONS(3985), + [anon_sym_restrict] = ACTIONS(3985), + [anon_sym___restrict__] = ACTIONS(3985), + [anon_sym__Atomic] = ACTIONS(3985), + [anon_sym__Noreturn] = ACTIONS(3985), + [anon_sym_noreturn] = ACTIONS(3985), + [anon_sym__Nonnull] = ACTIONS(3985), + [anon_sym_mutable] = ACTIONS(3985), + [anon_sym_constinit] = ACTIONS(3985), + [anon_sym_consteval] = ACTIONS(3985), + [anon_sym_alignas] = ACTIONS(3985), + [anon_sym__Alignas] = ACTIONS(3985), + [sym_primitive_type] = ACTIONS(3985), + [anon_sym_enum] = ACTIONS(3985), + [anon_sym_class] = ACTIONS(3985), + [anon_sym_struct] = ACTIONS(3985), + [anon_sym_union] = ACTIONS(3985), + [anon_sym_typename] = ACTIONS(3985), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3985), + [anon_sym_decltype] = ACTIONS(3985), + [anon_sym_explicit] = ACTIONS(3985), + [anon_sym_private] = ACTIONS(3985), + [anon_sym_template] = ACTIONS(3985), + [anon_sym_operator] = ACTIONS(3985), + [anon_sym_friend] = ACTIONS(3985), + [anon_sym_public] = ACTIONS(3985), + [anon_sym_protected] = ACTIONS(3985), + [anon_sym_static_assert] = ACTIONS(3985), + [anon_sym_LBRACK_COLON] = ACTIONS(3987), }, [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), + [sym_identifier] = ACTIONS(3989), + [aux_sym_preproc_def_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token2] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3989), + [aux_sym_preproc_else_token1] = ACTIONS(3989), + [aux_sym_preproc_elif_token1] = ACTIONS(3989), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3989), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3989), + [sym_preproc_directive] = ACTIONS(3989), + [anon_sym_LPAREN2] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_SEMI] = ACTIONS(3991), + [anon_sym___extension__] = ACTIONS(3989), + [anon_sym_typedef] = ACTIONS(3989), + [anon_sym_virtual] = ACTIONS(3989), + [anon_sym_extern] = ACTIONS(3989), + [anon_sym___attribute__] = ACTIONS(3989), + [anon_sym___attribute] = ACTIONS(3989), + [anon_sym_using] = ACTIONS(3989), + [anon_sym_COLON_COLON] = ACTIONS(3991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3991), + [anon_sym___declspec] = ACTIONS(3989), + [anon_sym___based] = ACTIONS(3989), + [anon_sym_signed] = ACTIONS(3989), + [anon_sym_unsigned] = ACTIONS(3989), + [anon_sym_long] = ACTIONS(3989), + [anon_sym_short] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_static] = ACTIONS(3989), + [anon_sym_register] = ACTIONS(3989), + [anon_sym_inline] = ACTIONS(3989), + [anon_sym___inline] = ACTIONS(3989), + [anon_sym___inline__] = ACTIONS(3989), + [anon_sym___forceinline] = ACTIONS(3989), + [anon_sym_thread_local] = ACTIONS(3989), + [anon_sym___thread] = ACTIONS(3989), + [anon_sym_const] = ACTIONS(3989), + [anon_sym_constexpr] = ACTIONS(3989), + [anon_sym_volatile] = ACTIONS(3989), + [anon_sym_restrict] = ACTIONS(3989), + [anon_sym___restrict__] = ACTIONS(3989), + [anon_sym__Atomic] = ACTIONS(3989), + [anon_sym__Noreturn] = ACTIONS(3989), + [anon_sym_noreturn] = ACTIONS(3989), + [anon_sym__Nonnull] = ACTIONS(3989), + [anon_sym_mutable] = ACTIONS(3989), + [anon_sym_constinit] = ACTIONS(3989), + [anon_sym_consteval] = ACTIONS(3989), + [anon_sym_alignas] = ACTIONS(3989), + [anon_sym__Alignas] = ACTIONS(3989), + [sym_primitive_type] = ACTIONS(3989), + [anon_sym_enum] = ACTIONS(3989), + [anon_sym_class] = ACTIONS(3989), + [anon_sym_struct] = ACTIONS(3989), + [anon_sym_union] = ACTIONS(3989), + [anon_sym_typename] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3989), + [anon_sym_decltype] = ACTIONS(3989), + [anon_sym_explicit] = ACTIONS(3989), + [anon_sym_private] = ACTIONS(3989), + [anon_sym_template] = ACTIONS(3989), + [anon_sym_operator] = ACTIONS(3989), + [anon_sym_friend] = ACTIONS(3989), + [anon_sym_public] = ACTIONS(3989), + [anon_sym_protected] = ACTIONS(3989), + [anon_sym_static_assert] = ACTIONS(3989), + [anon_sym_LBRACK_COLON] = ACTIONS(3991), }, [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), + [sym_identifier] = ACTIONS(8994), + [aux_sym_preproc_def_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token2] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8994), + [aux_sym_preproc_else_token1] = ACTIONS(8994), + [aux_sym_preproc_elif_token1] = ACTIONS(8994), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), + [sym_preproc_directive] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8996), + [anon_sym_TILDE] = ACTIONS(8996), + [anon_sym_STAR] = ACTIONS(8996), + [anon_sym_AMP_AMP] = ACTIONS(8996), + [anon_sym_AMP] = ACTIONS(8994), + [anon_sym_SEMI] = ACTIONS(8996), + [anon_sym___extension__] = ACTIONS(8994), + [anon_sym_typedef] = ACTIONS(8994), + [anon_sym_virtual] = ACTIONS(8994), + [anon_sym_extern] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8994), + [anon_sym___attribute] = ACTIONS(8994), + [anon_sym_using] = ACTIONS(8994), + [anon_sym_COLON_COLON] = ACTIONS(8996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8996), + [anon_sym___declspec] = ACTIONS(8994), + [anon_sym___based] = ACTIONS(8994), + [anon_sym_signed] = ACTIONS(8994), + [anon_sym_unsigned] = ACTIONS(8994), + [anon_sym_long] = ACTIONS(8994), + [anon_sym_short] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_static] = ACTIONS(8994), + [anon_sym_register] = ACTIONS(8994), + [anon_sym_inline] = ACTIONS(8994), + [anon_sym___inline] = ACTIONS(8994), + [anon_sym___inline__] = ACTIONS(8994), + [anon_sym___forceinline] = ACTIONS(8994), + [anon_sym_thread_local] = ACTIONS(8994), + [anon_sym___thread] = ACTIONS(8994), + [anon_sym_const] = ACTIONS(8994), + [anon_sym_constexpr] = ACTIONS(8994), + [anon_sym_volatile] = ACTIONS(8994), + [anon_sym_restrict] = ACTIONS(8994), + [anon_sym___restrict__] = ACTIONS(8994), + [anon_sym__Atomic] = ACTIONS(8994), + [anon_sym__Noreturn] = ACTIONS(8994), + [anon_sym_noreturn] = ACTIONS(8994), + [anon_sym__Nonnull] = ACTIONS(8994), + [anon_sym_mutable] = ACTIONS(8994), + [anon_sym_constinit] = ACTIONS(8994), + [anon_sym_consteval] = ACTIONS(8994), + [anon_sym_alignas] = ACTIONS(8994), + [anon_sym__Alignas] = ACTIONS(8994), + [sym_primitive_type] = ACTIONS(8994), + [anon_sym_enum] = ACTIONS(8994), + [anon_sym_class] = ACTIONS(8994), + [anon_sym_struct] = ACTIONS(8994), + [anon_sym_union] = ACTIONS(8994), + [anon_sym_typename] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8994), + [anon_sym_decltype] = ACTIONS(8994), + [anon_sym_explicit] = ACTIONS(8994), + [anon_sym_private] = ACTIONS(8994), + [anon_sym_template] = ACTIONS(8994), + [anon_sym_operator] = ACTIONS(8994), + [anon_sym_friend] = ACTIONS(8994), + [anon_sym_public] = ACTIONS(8994), + [anon_sym_protected] = ACTIONS(8994), + [anon_sym_static_assert] = ACTIONS(8994), + [anon_sym_LBRACK_COLON] = ACTIONS(8996), }, [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), + [sym_identifier] = ACTIONS(8994), + [aux_sym_preproc_def_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token2] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8994), + [aux_sym_preproc_else_token1] = ACTIONS(8994), + [aux_sym_preproc_elif_token1] = ACTIONS(8994), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), + [sym_preproc_directive] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8996), + [anon_sym_TILDE] = ACTIONS(8996), + [anon_sym_STAR] = ACTIONS(8996), + [anon_sym_AMP_AMP] = ACTIONS(8996), + [anon_sym_AMP] = ACTIONS(8994), + [anon_sym_SEMI] = ACTIONS(8996), + [anon_sym___extension__] = ACTIONS(8994), + [anon_sym_typedef] = ACTIONS(8994), + [anon_sym_virtual] = ACTIONS(8994), + [anon_sym_extern] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8994), + [anon_sym___attribute] = ACTIONS(8994), + [anon_sym_using] = ACTIONS(8994), + [anon_sym_COLON_COLON] = ACTIONS(8996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8996), + [anon_sym___declspec] = ACTIONS(8994), + [anon_sym___based] = ACTIONS(8994), + [anon_sym_signed] = ACTIONS(8994), + [anon_sym_unsigned] = ACTIONS(8994), + [anon_sym_long] = ACTIONS(8994), + [anon_sym_short] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_static] = ACTIONS(8994), + [anon_sym_register] = ACTIONS(8994), + [anon_sym_inline] = ACTIONS(8994), + [anon_sym___inline] = ACTIONS(8994), + [anon_sym___inline__] = ACTIONS(8994), + [anon_sym___forceinline] = ACTIONS(8994), + [anon_sym_thread_local] = ACTIONS(8994), + [anon_sym___thread] = ACTIONS(8994), + [anon_sym_const] = ACTIONS(8994), + [anon_sym_constexpr] = ACTIONS(8994), + [anon_sym_volatile] = ACTIONS(8994), + [anon_sym_restrict] = ACTIONS(8994), + [anon_sym___restrict__] = ACTIONS(8994), + [anon_sym__Atomic] = ACTIONS(8994), + [anon_sym__Noreturn] = ACTIONS(8994), + [anon_sym_noreturn] = ACTIONS(8994), + [anon_sym__Nonnull] = ACTIONS(8994), + [anon_sym_mutable] = ACTIONS(8994), + [anon_sym_constinit] = ACTIONS(8994), + [anon_sym_consteval] = ACTIONS(8994), + [anon_sym_alignas] = ACTIONS(8994), + [anon_sym__Alignas] = ACTIONS(8994), + [sym_primitive_type] = ACTIONS(8994), + [anon_sym_enum] = ACTIONS(8994), + [anon_sym_class] = ACTIONS(8994), + [anon_sym_struct] = ACTIONS(8994), + [anon_sym_union] = ACTIONS(8994), + [anon_sym_typename] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8994), + [anon_sym_decltype] = ACTIONS(8994), + [anon_sym_explicit] = ACTIONS(8994), + [anon_sym_private] = ACTIONS(8994), + [anon_sym_template] = ACTIONS(8994), + [anon_sym_operator] = ACTIONS(8994), + [anon_sym_friend] = ACTIONS(8994), + [anon_sym_public] = ACTIONS(8994), + [anon_sym_protected] = ACTIONS(8994), + [anon_sym_static_assert] = ACTIONS(8994), + [anon_sym_LBRACK_COLON] = ACTIONS(8996), }, [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), + [sym_identifier] = ACTIONS(8994), + [aux_sym_preproc_def_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token2] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8994), + [aux_sym_preproc_else_token1] = ACTIONS(8994), + [aux_sym_preproc_elif_token1] = ACTIONS(8994), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), + [sym_preproc_directive] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8996), + [anon_sym_TILDE] = ACTIONS(8996), + [anon_sym_STAR] = ACTIONS(8996), + [anon_sym_AMP_AMP] = ACTIONS(8996), + [anon_sym_AMP] = ACTIONS(8994), + [anon_sym_SEMI] = ACTIONS(8996), + [anon_sym___extension__] = ACTIONS(8994), + [anon_sym_typedef] = ACTIONS(8994), + [anon_sym_virtual] = ACTIONS(8994), + [anon_sym_extern] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8994), + [anon_sym___attribute] = ACTIONS(8994), + [anon_sym_using] = ACTIONS(8994), + [anon_sym_COLON_COLON] = ACTIONS(8996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8996), + [anon_sym___declspec] = ACTIONS(8994), + [anon_sym___based] = ACTIONS(8994), + [anon_sym_signed] = ACTIONS(8994), + [anon_sym_unsigned] = ACTIONS(8994), + [anon_sym_long] = ACTIONS(8994), + [anon_sym_short] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_static] = ACTIONS(8994), + [anon_sym_register] = ACTIONS(8994), + [anon_sym_inline] = ACTIONS(8994), + [anon_sym___inline] = ACTIONS(8994), + [anon_sym___inline__] = ACTIONS(8994), + [anon_sym___forceinline] = ACTIONS(8994), + [anon_sym_thread_local] = ACTIONS(8994), + [anon_sym___thread] = ACTIONS(8994), + [anon_sym_const] = ACTIONS(8994), + [anon_sym_constexpr] = ACTIONS(8994), + [anon_sym_volatile] = ACTIONS(8994), + [anon_sym_restrict] = ACTIONS(8994), + [anon_sym___restrict__] = ACTIONS(8994), + [anon_sym__Atomic] = ACTIONS(8994), + [anon_sym__Noreturn] = ACTIONS(8994), + [anon_sym_noreturn] = ACTIONS(8994), + [anon_sym__Nonnull] = ACTIONS(8994), + [anon_sym_mutable] = ACTIONS(8994), + [anon_sym_constinit] = ACTIONS(8994), + [anon_sym_consteval] = ACTIONS(8994), + [anon_sym_alignas] = ACTIONS(8994), + [anon_sym__Alignas] = ACTIONS(8994), + [sym_primitive_type] = ACTIONS(8994), + [anon_sym_enum] = ACTIONS(8994), + [anon_sym_class] = ACTIONS(8994), + [anon_sym_struct] = ACTIONS(8994), + [anon_sym_union] = ACTIONS(8994), + [anon_sym_typename] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8994), + [anon_sym_decltype] = ACTIONS(8994), + [anon_sym_explicit] = ACTIONS(8994), + [anon_sym_private] = ACTIONS(8994), + [anon_sym_template] = ACTIONS(8994), + [anon_sym_operator] = ACTIONS(8994), + [anon_sym_friend] = ACTIONS(8994), + [anon_sym_public] = ACTIONS(8994), + [anon_sym_protected] = ACTIONS(8994), + [anon_sym_static_assert] = ACTIONS(8994), + [anon_sym_LBRACK_COLON] = ACTIONS(8996), }, [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), + [sym_identifier] = ACTIONS(8990), + [aux_sym_preproc_def_token1] = ACTIONS(8990), + [aux_sym_preproc_if_token1] = ACTIONS(8990), + [aux_sym_preproc_if_token2] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8990), + [aux_sym_preproc_else_token1] = ACTIONS(8990), + [aux_sym_preproc_elif_token1] = ACTIONS(8990), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8990), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8990), + [sym_preproc_directive] = ACTIONS(8990), + [anon_sym_LPAREN2] = ACTIONS(8992), + [anon_sym_TILDE] = ACTIONS(8992), + [anon_sym_STAR] = ACTIONS(8992), + [anon_sym_AMP_AMP] = ACTIONS(8992), + [anon_sym_AMP] = ACTIONS(8990), + [anon_sym_SEMI] = ACTIONS(8992), + [anon_sym___extension__] = ACTIONS(8990), + [anon_sym_typedef] = ACTIONS(8990), + [anon_sym_virtual] = ACTIONS(8990), + [anon_sym_extern] = ACTIONS(8990), + [anon_sym___attribute__] = ACTIONS(8990), + [anon_sym___attribute] = ACTIONS(8990), + [anon_sym_using] = ACTIONS(8990), + [anon_sym_COLON_COLON] = ACTIONS(8992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8992), + [anon_sym___declspec] = ACTIONS(8990), + [anon_sym___based] = ACTIONS(8990), + [anon_sym_signed] = ACTIONS(8990), + [anon_sym_unsigned] = ACTIONS(8990), + [anon_sym_long] = ACTIONS(8990), + [anon_sym_short] = ACTIONS(8990), + [anon_sym_LBRACK] = ACTIONS(8990), + [anon_sym_static] = ACTIONS(8990), + [anon_sym_register] = ACTIONS(8990), + [anon_sym_inline] = ACTIONS(8990), + [anon_sym___inline] = ACTIONS(8990), + [anon_sym___inline__] = ACTIONS(8990), + [anon_sym___forceinline] = ACTIONS(8990), + [anon_sym_thread_local] = ACTIONS(8990), + [anon_sym___thread] = ACTIONS(8990), + [anon_sym_const] = ACTIONS(8990), + [anon_sym_constexpr] = ACTIONS(8990), + [anon_sym_volatile] = ACTIONS(8990), + [anon_sym_restrict] = ACTIONS(8990), + [anon_sym___restrict__] = ACTIONS(8990), + [anon_sym__Atomic] = ACTIONS(8990), + [anon_sym__Noreturn] = ACTIONS(8990), + [anon_sym_noreturn] = ACTIONS(8990), + [anon_sym__Nonnull] = ACTIONS(8990), + [anon_sym_mutable] = ACTIONS(8990), + [anon_sym_constinit] = ACTIONS(8990), + [anon_sym_consteval] = ACTIONS(8990), + [anon_sym_alignas] = ACTIONS(8990), + [anon_sym__Alignas] = ACTIONS(8990), + [sym_primitive_type] = ACTIONS(8990), + [anon_sym_enum] = ACTIONS(8990), + [anon_sym_class] = ACTIONS(8990), + [anon_sym_struct] = ACTIONS(8990), + [anon_sym_union] = ACTIONS(8990), + [anon_sym_typename] = ACTIONS(8990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8990), + [anon_sym_decltype] = ACTIONS(8990), + [anon_sym_explicit] = ACTIONS(8990), + [anon_sym_private] = ACTIONS(8990), + [anon_sym_template] = ACTIONS(8990), + [anon_sym_operator] = ACTIONS(8990), + [anon_sym_friend] = ACTIONS(8990), + [anon_sym_public] = ACTIONS(8990), + [anon_sym_protected] = ACTIONS(8990), + [anon_sym_static_assert] = ACTIONS(8990), + [anon_sym_LBRACK_COLON] = ACTIONS(8992), }, [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), + [sym_template_argument_list] = STATE(2703), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7444), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_DASH] = ACTIONS(7451), + [anon_sym_PLUS] = ACTIONS(7451), + [anon_sym_STAR] = ACTIONS(7451), + [anon_sym_SLASH] = ACTIONS(7451), + [anon_sym_PERCENT] = ACTIONS(7451), + [anon_sym_PIPE_PIPE] = ACTIONS(7444), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7451), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7444), + [anon_sym_BANG_EQ] = ACTIONS(7444), + [anon_sym_GT] = ACTIONS(7451), + [anon_sym_GT_EQ] = ACTIONS(7451), + [anon_sym_LT_EQ] = ACTIONS(7451), + [anon_sym_LT] = ACTIONS(8325), + [anon_sym_LT_LT] = ACTIONS(7451), + [anon_sym_GT_GT] = ACTIONS(7451), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_EQ] = ACTIONS(7451), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7444), + [anon_sym_STAR_EQ] = ACTIONS(7444), + [anon_sym_SLASH_EQ] = ACTIONS(7444), + [anon_sym_PERCENT_EQ] = ACTIONS(7444), + [anon_sym_PLUS_EQ] = ACTIONS(7444), + [anon_sym_DASH_EQ] = ACTIONS(7444), + [anon_sym_LT_LT_EQ] = ACTIONS(7444), + [anon_sym_GT_GT_EQ] = ACTIONS(7451), + [anon_sym_AMP_EQ] = ACTIONS(7444), + [anon_sym_CARET_EQ] = ACTIONS(7444), + [anon_sym_PIPE_EQ] = ACTIONS(7444), + [anon_sym_and_eq] = ACTIONS(7451), + [anon_sym_or_eq] = ACTIONS(7451), + [anon_sym_xor_eq] = ACTIONS(7451), + [anon_sym_LT_EQ_GT] = ACTIONS(7444), + [anon_sym_or] = ACTIONS(7451), + [anon_sym_and] = ACTIONS(7451), + [anon_sym_bitor] = ACTIONS(7451), + [anon_sym_xor] = ACTIONS(7451), + [anon_sym_bitand] = ACTIONS(7451), + [anon_sym_not_eq] = ACTIONS(7451), + [anon_sym_DASH_DASH] = ACTIONS(7444), + [anon_sym_PLUS_PLUS] = ACTIONS(7444), + [anon_sym_DOT] = ACTIONS(7451), + [anon_sym_DOT_STAR] = ACTIONS(7444), + [anon_sym_DASH_GT] = ACTIONS(7444), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_GT2] = ACTIONS(7444), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_identifier] = ACTIONS(3993), + [aux_sym_preproc_def_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token2] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3993), + [aux_sym_preproc_else_token1] = ACTIONS(3993), + [aux_sym_preproc_elif_token1] = ACTIONS(3993), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3993), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3993), + [sym_preproc_directive] = ACTIONS(3993), + [anon_sym_LPAREN2] = ACTIONS(3995), + [anon_sym_TILDE] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_AMP_AMP] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3993), + [anon_sym_SEMI] = ACTIONS(3995), + [anon_sym___extension__] = ACTIONS(3993), + [anon_sym_typedef] = ACTIONS(3993), + [anon_sym_virtual] = ACTIONS(3993), + [anon_sym_extern] = ACTIONS(3993), + [anon_sym___attribute__] = ACTIONS(3993), + [anon_sym___attribute] = ACTIONS(3993), + [anon_sym_using] = ACTIONS(3993), + [anon_sym_COLON_COLON] = ACTIONS(3995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3995), + [anon_sym___declspec] = ACTIONS(3993), + [anon_sym___based] = ACTIONS(3993), + [anon_sym_signed] = ACTIONS(3993), + [anon_sym_unsigned] = ACTIONS(3993), + [anon_sym_long] = ACTIONS(3993), + [anon_sym_short] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_static] = ACTIONS(3993), + [anon_sym_register] = ACTIONS(3993), + [anon_sym_inline] = ACTIONS(3993), + [anon_sym___inline] = ACTIONS(3993), + [anon_sym___inline__] = ACTIONS(3993), + [anon_sym___forceinline] = ACTIONS(3993), + [anon_sym_thread_local] = ACTIONS(3993), + [anon_sym___thread] = ACTIONS(3993), + [anon_sym_const] = ACTIONS(3993), + [anon_sym_constexpr] = ACTIONS(3993), + [anon_sym_volatile] = ACTIONS(3993), + [anon_sym_restrict] = ACTIONS(3993), + [anon_sym___restrict__] = ACTIONS(3993), + [anon_sym__Atomic] = ACTIONS(3993), + [anon_sym__Noreturn] = ACTIONS(3993), + [anon_sym_noreturn] = ACTIONS(3993), + [anon_sym__Nonnull] = ACTIONS(3993), + [anon_sym_mutable] = ACTIONS(3993), + [anon_sym_constinit] = ACTIONS(3993), + [anon_sym_consteval] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(3993), + [anon_sym__Alignas] = ACTIONS(3993), + [sym_primitive_type] = ACTIONS(3993), + [anon_sym_enum] = ACTIONS(3993), + [anon_sym_class] = ACTIONS(3993), + [anon_sym_struct] = ACTIONS(3993), + [anon_sym_union] = ACTIONS(3993), + [anon_sym_typename] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3993), + [anon_sym_decltype] = ACTIONS(3993), + [anon_sym_explicit] = ACTIONS(3993), + [anon_sym_private] = ACTIONS(3993), + [anon_sym_template] = ACTIONS(3993), + [anon_sym_operator] = ACTIONS(3993), + [anon_sym_friend] = ACTIONS(3993), + [anon_sym_public] = ACTIONS(3993), + [anon_sym_protected] = ACTIONS(3993), + [anon_sym_static_assert] = ACTIONS(3993), + [anon_sym_LBRACK_COLON] = ACTIONS(3995), }, [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), + [sym_identifier] = ACTIONS(8998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9000), + [anon_sym_COMMA] = ACTIONS(9000), + [anon_sym_RPAREN] = ACTIONS(9000), + [aux_sym_preproc_if_token2] = ACTIONS(9000), + [aux_sym_preproc_else_token1] = ACTIONS(9000), + [aux_sym_preproc_elif_token1] = ACTIONS(8998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9000), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9000), + [anon_sym_LPAREN2] = ACTIONS(9000), + [anon_sym_DASH] = ACTIONS(8998), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_STAR] = ACTIONS(8998), + [anon_sym_SLASH] = ACTIONS(8998), + [anon_sym_PERCENT] = ACTIONS(8998), + [anon_sym_PIPE_PIPE] = ACTIONS(9000), + [anon_sym_AMP_AMP] = ACTIONS(9000), + [anon_sym_PIPE] = ACTIONS(8998), + [anon_sym_CARET] = ACTIONS(8998), + [anon_sym_AMP] = ACTIONS(8998), + [anon_sym_EQ_EQ] = ACTIONS(9000), + [anon_sym_BANG_EQ] = ACTIONS(9000), + [anon_sym_GT] = ACTIONS(8998), + [anon_sym_GT_EQ] = ACTIONS(9000), + [anon_sym_LT_EQ] = ACTIONS(8998), + [anon_sym_LT] = ACTIONS(8998), + [anon_sym_LT_LT] = ACTIONS(8998), + [anon_sym_GT_GT] = ACTIONS(8998), + [anon_sym_SEMI] = ACTIONS(9000), + [anon_sym_COLON] = ACTIONS(8998), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9000), + [anon_sym_RBRACE] = ACTIONS(9000), + [anon_sym_LBRACK] = ACTIONS(9000), + [anon_sym_EQ] = ACTIONS(8998), + [anon_sym_QMARK] = ACTIONS(9000), + [anon_sym_STAR_EQ] = ACTIONS(9000), + [anon_sym_SLASH_EQ] = ACTIONS(9000), + [anon_sym_PERCENT_EQ] = ACTIONS(9000), + [anon_sym_PLUS_EQ] = ACTIONS(9000), + [anon_sym_DASH_EQ] = ACTIONS(9000), + [anon_sym_LT_LT_EQ] = ACTIONS(9000), + [anon_sym_GT_GT_EQ] = ACTIONS(9000), + [anon_sym_AMP_EQ] = ACTIONS(9000), + [anon_sym_CARET_EQ] = ACTIONS(9000), + [anon_sym_PIPE_EQ] = ACTIONS(9000), + [anon_sym_and_eq] = ACTIONS(8998), + [anon_sym_or_eq] = ACTIONS(8998), + [anon_sym_xor_eq] = ACTIONS(8998), + [anon_sym_LT_EQ_GT] = ACTIONS(9000), + [anon_sym_or] = ACTIONS(8998), + [anon_sym_and] = ACTIONS(8998), + [anon_sym_bitor] = ACTIONS(8998), + [anon_sym_xor] = ACTIONS(8998), + [anon_sym_bitand] = ACTIONS(8998), + [anon_sym_not_eq] = ACTIONS(8998), + [anon_sym_DASH_DASH] = ACTIONS(9000), + [anon_sym_PLUS_PLUS] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(8998), + [anon_sym_DOT_STAR] = ACTIONS(9000), + [anon_sym_DASH_GT] = ACTIONS(9000), + [anon_sym_L_DQUOTE] = ACTIONS(9000), + [anon_sym_u_DQUOTE] = ACTIONS(9000), + [anon_sym_U_DQUOTE] = ACTIONS(9000), + [anon_sym_u8_DQUOTE] = ACTIONS(9000), + [anon_sym_DQUOTE] = ACTIONS(9000), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9000), + [anon_sym_LR_DQUOTE] = ACTIONS(9000), + [anon_sym_uR_DQUOTE] = ACTIONS(9000), + [anon_sym_UR_DQUOTE] = ACTIONS(9000), + [anon_sym_u8R_DQUOTE] = ACTIONS(9000), + [anon_sym_COLON_RBRACK] = ACTIONS(9000), + [sym_literal_suffix] = ACTIONS(8998), }, [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), + [sym_identifier] = ACTIONS(9002), + [aux_sym_preproc_def_token1] = ACTIONS(9002), + [aux_sym_preproc_if_token1] = ACTIONS(9002), + [aux_sym_preproc_if_token2] = ACTIONS(9002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9002), + [aux_sym_preproc_else_token1] = ACTIONS(9002), + [aux_sym_preproc_elif_token1] = ACTIONS(9002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9002), + [sym_preproc_directive] = ACTIONS(9002), + [anon_sym_LPAREN2] = ACTIONS(9004), + [anon_sym_TILDE] = ACTIONS(9004), + [anon_sym_STAR] = ACTIONS(9004), + [anon_sym_AMP_AMP] = ACTIONS(9004), + [anon_sym_AMP] = ACTIONS(9002), + [anon_sym_SEMI] = ACTIONS(9004), + [anon_sym___extension__] = ACTIONS(9002), + [anon_sym_typedef] = ACTIONS(9002), + [anon_sym_virtual] = ACTIONS(9002), + [anon_sym_extern] = ACTIONS(9002), + [anon_sym___attribute__] = ACTIONS(9002), + [anon_sym___attribute] = ACTIONS(9002), + [anon_sym_using] = ACTIONS(9002), + [anon_sym_COLON_COLON] = ACTIONS(9004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9004), + [anon_sym___declspec] = ACTIONS(9002), + [anon_sym___based] = ACTIONS(9002), + [anon_sym_signed] = ACTIONS(9002), + [anon_sym_unsigned] = ACTIONS(9002), + [anon_sym_long] = ACTIONS(9002), + [anon_sym_short] = ACTIONS(9002), + [anon_sym_LBRACK] = ACTIONS(9002), + [anon_sym_static] = ACTIONS(9002), + [anon_sym_register] = ACTIONS(9002), + [anon_sym_inline] = ACTIONS(9002), + [anon_sym___inline] = ACTIONS(9002), + [anon_sym___inline__] = ACTIONS(9002), + [anon_sym___forceinline] = ACTIONS(9002), + [anon_sym_thread_local] = ACTIONS(9002), + [anon_sym___thread] = ACTIONS(9002), + [anon_sym_const] = ACTIONS(9002), + [anon_sym_constexpr] = ACTIONS(9002), + [anon_sym_volatile] = ACTIONS(9002), + [anon_sym_restrict] = ACTIONS(9002), + [anon_sym___restrict__] = ACTIONS(9002), + [anon_sym__Atomic] = ACTIONS(9002), + [anon_sym__Noreturn] = ACTIONS(9002), + [anon_sym_noreturn] = ACTIONS(9002), + [anon_sym__Nonnull] = ACTIONS(9002), + [anon_sym_mutable] = ACTIONS(9002), + [anon_sym_constinit] = ACTIONS(9002), + [anon_sym_consteval] = ACTIONS(9002), + [anon_sym_alignas] = ACTIONS(9002), + [anon_sym__Alignas] = ACTIONS(9002), + [sym_primitive_type] = ACTIONS(9002), + [anon_sym_enum] = ACTIONS(9002), + [anon_sym_class] = ACTIONS(9002), + [anon_sym_struct] = ACTIONS(9002), + [anon_sym_union] = ACTIONS(9002), + [anon_sym_typename] = ACTIONS(9002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9002), + [anon_sym_decltype] = ACTIONS(9002), + [anon_sym_explicit] = ACTIONS(9002), + [anon_sym_private] = ACTIONS(9002), + [anon_sym_template] = ACTIONS(9002), + [anon_sym_operator] = ACTIONS(9002), + [anon_sym_friend] = ACTIONS(9002), + [anon_sym_public] = ACTIONS(9002), + [anon_sym_protected] = ACTIONS(9002), + [anon_sym_static_assert] = ACTIONS(9002), + [anon_sym_LBRACK_COLON] = ACTIONS(9004), }, [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), + [sym_identifier] = ACTIONS(4351), + [aux_sym_preproc_def_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token2] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4351), + [aux_sym_preproc_else_token1] = ACTIONS(4351), + [aux_sym_preproc_elif_token1] = ACTIONS(4351), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4351), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4351), + [sym_preproc_directive] = ACTIONS(4351), + [anon_sym_LPAREN2] = ACTIONS(4353), + [anon_sym_TILDE] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym___extension__] = ACTIONS(4351), + [anon_sym_typedef] = ACTIONS(4351), + [anon_sym_virtual] = ACTIONS(4351), + [anon_sym_extern] = ACTIONS(4351), + [anon_sym___attribute__] = ACTIONS(4351), + [anon_sym___attribute] = ACTIONS(4351), + [anon_sym_using] = ACTIONS(4351), + [anon_sym_COLON_COLON] = ACTIONS(4353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4353), + [anon_sym___declspec] = ACTIONS(4351), + [anon_sym___based] = ACTIONS(4351), + [anon_sym_signed] = ACTIONS(4351), + [anon_sym_unsigned] = ACTIONS(4351), + [anon_sym_long] = ACTIONS(4351), + [anon_sym_short] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_static] = ACTIONS(4351), + [anon_sym_register] = ACTIONS(4351), + [anon_sym_inline] = ACTIONS(4351), + [anon_sym___inline] = ACTIONS(4351), + [anon_sym___inline__] = ACTIONS(4351), + [anon_sym___forceinline] = ACTIONS(4351), + [anon_sym_thread_local] = ACTIONS(4351), + [anon_sym___thread] = ACTIONS(4351), + [anon_sym_const] = ACTIONS(4351), + [anon_sym_constexpr] = ACTIONS(4351), + [anon_sym_volatile] = ACTIONS(4351), + [anon_sym_restrict] = ACTIONS(4351), + [anon_sym___restrict__] = ACTIONS(4351), + [anon_sym__Atomic] = ACTIONS(4351), + [anon_sym__Noreturn] = ACTIONS(4351), + [anon_sym_noreturn] = ACTIONS(4351), + [anon_sym__Nonnull] = ACTIONS(4351), + [anon_sym_mutable] = ACTIONS(4351), + [anon_sym_constinit] = ACTIONS(4351), + [anon_sym_consteval] = ACTIONS(4351), + [anon_sym_alignas] = ACTIONS(4351), + [anon_sym__Alignas] = ACTIONS(4351), + [sym_primitive_type] = ACTIONS(4351), + [anon_sym_enum] = ACTIONS(4351), + [anon_sym_class] = ACTIONS(4351), + [anon_sym_struct] = ACTIONS(4351), + [anon_sym_union] = ACTIONS(4351), + [anon_sym_typename] = ACTIONS(4351), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4351), + [anon_sym_decltype] = ACTIONS(4351), + [anon_sym_explicit] = ACTIONS(4351), + [anon_sym_private] = ACTIONS(4351), + [anon_sym_template] = ACTIONS(4351), + [anon_sym_operator] = ACTIONS(4351), + [anon_sym_friend] = ACTIONS(4351), + [anon_sym_public] = ACTIONS(4351), + [anon_sym_protected] = ACTIONS(4351), + [anon_sym_static_assert] = ACTIONS(4351), + [anon_sym_LBRACK_COLON] = ACTIONS(4353), }, [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), + [sym_identifier] = ACTIONS(7842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7844), + [anon_sym_COMMA] = ACTIONS(7844), + [anon_sym_RPAREN] = ACTIONS(7844), + [aux_sym_preproc_if_token2] = ACTIONS(7844), + [aux_sym_preproc_else_token1] = ACTIONS(7844), + [aux_sym_preproc_elif_token1] = ACTIONS(7842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7844), + [anon_sym_LPAREN2] = ACTIONS(7844), + [anon_sym_DASH] = ACTIONS(7842), + [anon_sym_PLUS] = ACTIONS(7842), + [anon_sym_STAR] = ACTIONS(7844), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_PERCENT] = ACTIONS(7844), + [anon_sym_PIPE_PIPE] = ACTIONS(7844), + [anon_sym_AMP_AMP] = ACTIONS(7844), + [anon_sym_PIPE] = ACTIONS(7842), + [anon_sym_CARET] = ACTIONS(7844), + [anon_sym_AMP] = ACTIONS(7842), + [anon_sym_EQ_EQ] = ACTIONS(7844), + [anon_sym_BANG_EQ] = ACTIONS(7844), + [anon_sym_GT] = ACTIONS(7842), + [anon_sym_GT_EQ] = ACTIONS(7844), + [anon_sym_LT_EQ] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(7842), + [anon_sym_LT_LT] = ACTIONS(7844), + [anon_sym_GT_GT] = ACTIONS(7844), + [anon_sym_SEMI] = ACTIONS(7844), + [anon_sym___extension__] = ACTIONS(7842), + [anon_sym___attribute__] = ACTIONS(7842), + [anon_sym___attribute] = ACTIONS(7842), + [anon_sym_COLON] = ACTIONS(7842), + [anon_sym_COLON_COLON] = ACTIONS(7844), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7844), + [anon_sym_LBRACE] = ACTIONS(7844), + [anon_sym_RBRACE] = ACTIONS(7844), + [anon_sym_LBRACK] = ACTIONS(7842), + [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(7842), + [anon_sym__Alignas] = ACTIONS(7842), + [anon_sym_QMARK] = ACTIONS(7844), + [anon_sym_LT_EQ_GT] = ACTIONS(7844), + [anon_sym_or] = ACTIONS(7842), + [anon_sym_and] = ACTIONS(7842), + [anon_sym_bitor] = ACTIONS(7842), + [anon_sym_xor] = ACTIONS(7842), + [anon_sym_bitand] = ACTIONS(7842), + [anon_sym_not_eq] = ACTIONS(7842), + [anon_sym_DASH_DASH] = ACTIONS(7844), + [anon_sym_PLUS_PLUS] = ACTIONS(7844), + [anon_sym_DOT] = ACTIONS(7842), + [anon_sym_DOT_STAR] = ACTIONS(7844), + [anon_sym_DASH_GT] = ACTIONS(7844), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7842), + [anon_sym_final] = ACTIONS(7842), + [anon_sym_override] = ACTIONS(7842), + [anon_sym_template] = ACTIONS(7842), + [anon_sym_requires] = ACTIONS(7842), + [anon_sym_LBRACK_COLON] = ACTIONS(7844), + [anon_sym_COLON_RBRACK] = ACTIONS(7844), }, [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), + [sym_identifier] = ACTIONS(7846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7848), + [anon_sym_COMMA] = ACTIONS(7848), + [anon_sym_RPAREN] = ACTIONS(7848), + [aux_sym_preproc_if_token2] = ACTIONS(7848), + [aux_sym_preproc_else_token1] = ACTIONS(7848), + [aux_sym_preproc_elif_token1] = ACTIONS(7846), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7848), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7848), + [anon_sym_LPAREN2] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7846), + [anon_sym_STAR] = ACTIONS(7848), + [anon_sym_SLASH] = ACTIONS(7846), + [anon_sym_PERCENT] = ACTIONS(7848), + [anon_sym_PIPE_PIPE] = ACTIONS(7848), + [anon_sym_AMP_AMP] = ACTIONS(7848), + [anon_sym_PIPE] = ACTIONS(7846), + [anon_sym_CARET] = ACTIONS(7848), + [anon_sym_AMP] = ACTIONS(7846), + [anon_sym_EQ_EQ] = ACTIONS(7848), + [anon_sym_BANG_EQ] = ACTIONS(7848), + [anon_sym_GT] = ACTIONS(7846), + [anon_sym_GT_EQ] = ACTIONS(7848), + [anon_sym_LT_EQ] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(7846), + [anon_sym_LT_LT] = ACTIONS(7848), + [anon_sym_GT_GT] = ACTIONS(7848), + [anon_sym_SEMI] = ACTIONS(7848), + [anon_sym___extension__] = ACTIONS(7846), + [anon_sym___attribute__] = ACTIONS(7846), + [anon_sym___attribute] = ACTIONS(7846), + [anon_sym_COLON] = ACTIONS(7846), + [anon_sym_COLON_COLON] = ACTIONS(7848), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7848), + [anon_sym_LBRACE] = ACTIONS(7848), + [anon_sym_RBRACE] = ACTIONS(7848), + [anon_sym_LBRACK] = ACTIONS(7846), + [anon_sym_const] = ACTIONS(7846), + [anon_sym_constexpr] = ACTIONS(7846), + [anon_sym_volatile] = ACTIONS(7846), + [anon_sym_restrict] = ACTIONS(7846), + [anon_sym___restrict__] = ACTIONS(7846), + [anon_sym__Atomic] = ACTIONS(7846), + [anon_sym__Noreturn] = ACTIONS(7846), + [anon_sym_noreturn] = ACTIONS(7846), + [anon_sym__Nonnull] = ACTIONS(7846), + [anon_sym_mutable] = ACTIONS(7846), + [anon_sym_constinit] = ACTIONS(7846), + [anon_sym_consteval] = ACTIONS(7846), + [anon_sym_alignas] = ACTIONS(7846), + [anon_sym__Alignas] = ACTIONS(7846), + [anon_sym_QMARK] = ACTIONS(7848), + [anon_sym_LT_EQ_GT] = ACTIONS(7848), + [anon_sym_or] = ACTIONS(7846), + [anon_sym_and] = ACTIONS(7846), + [anon_sym_bitor] = ACTIONS(7846), + [anon_sym_xor] = ACTIONS(7846), + [anon_sym_bitand] = ACTIONS(7846), + [anon_sym_not_eq] = ACTIONS(7846), + [anon_sym_DASH_DASH] = ACTIONS(7848), + [anon_sym_PLUS_PLUS] = ACTIONS(7848), + [anon_sym_DOT] = ACTIONS(7846), + [anon_sym_DOT_STAR] = ACTIONS(7848), + [anon_sym_DASH_GT] = ACTIONS(7848), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7846), + [anon_sym_final] = ACTIONS(7846), + [anon_sym_override] = ACTIONS(7846), + [anon_sym_template] = ACTIONS(7846), + [anon_sym_requires] = ACTIONS(7846), + [anon_sym_LBRACK_COLON] = ACTIONS(7848), + [anon_sym_COLON_RBRACK] = ACTIONS(7848), }, [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), + [sym_identifier] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token2] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [aux_sym_preproc_else_token1] = ACTIONS(4226), + [aux_sym_preproc_elif_token1] = ACTIONS(4226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_friend] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6826), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6819), + [anon_sym_SLASH_EQ] = ACTIONS(6819), + [anon_sym_PERCENT_EQ] = ACTIONS(6819), + [anon_sym_PLUS_EQ] = ACTIONS(6819), + [anon_sym_DASH_EQ] = ACTIONS(6819), + [anon_sym_LT_LT_EQ] = ACTIONS(6819), + [anon_sym_GT_GT_EQ] = ACTIONS(6826), + [anon_sym_AMP_EQ] = ACTIONS(6819), + [anon_sym_CARET_EQ] = ACTIONS(6819), + [anon_sym_PIPE_EQ] = ACTIONS(6819), + [anon_sym_and_eq] = ACTIONS(6826), + [anon_sym_or_eq] = ACTIONS(6826), + [anon_sym_xor_eq] = ACTIONS(6826), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_GT2] = ACTIONS(6819), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_identifier] = ACTIONS(9006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9008), + [anon_sym_COMMA] = ACTIONS(9008), + [anon_sym_RPAREN] = ACTIONS(9008), + [aux_sym_preproc_if_token2] = ACTIONS(9008), + [aux_sym_preproc_else_token1] = ACTIONS(9008), + [aux_sym_preproc_elif_token1] = ACTIONS(9006), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9008), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9008), + [anon_sym_LPAREN2] = ACTIONS(9008), + [anon_sym_DASH] = ACTIONS(9006), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_STAR] = ACTIONS(9006), + [anon_sym_SLASH] = ACTIONS(9006), + [anon_sym_PERCENT] = ACTIONS(9006), + [anon_sym_PIPE_PIPE] = ACTIONS(9008), + [anon_sym_AMP_AMP] = ACTIONS(9008), + [anon_sym_PIPE] = ACTIONS(9006), + [anon_sym_CARET] = ACTIONS(9006), + [anon_sym_AMP] = ACTIONS(9006), + [anon_sym_EQ_EQ] = ACTIONS(9008), + [anon_sym_BANG_EQ] = ACTIONS(9008), + [anon_sym_GT] = ACTIONS(9006), + [anon_sym_GT_EQ] = ACTIONS(9008), + [anon_sym_LT_EQ] = ACTIONS(9006), + [anon_sym_LT] = ACTIONS(9006), + [anon_sym_LT_LT] = ACTIONS(9006), + [anon_sym_GT_GT] = ACTIONS(9006), + [anon_sym_SEMI] = ACTIONS(9008), + [anon_sym_COLON] = ACTIONS(9006), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9008), + [anon_sym_RBRACE] = ACTIONS(9008), + [anon_sym_LBRACK] = ACTIONS(9008), + [anon_sym_EQ] = ACTIONS(9006), + [anon_sym_QMARK] = ACTIONS(9008), + [anon_sym_STAR_EQ] = ACTIONS(9008), + [anon_sym_SLASH_EQ] = ACTIONS(9008), + [anon_sym_PERCENT_EQ] = ACTIONS(9008), + [anon_sym_PLUS_EQ] = ACTIONS(9008), + [anon_sym_DASH_EQ] = ACTIONS(9008), + [anon_sym_LT_LT_EQ] = ACTIONS(9008), + [anon_sym_GT_GT_EQ] = ACTIONS(9008), + [anon_sym_AMP_EQ] = ACTIONS(9008), + [anon_sym_CARET_EQ] = ACTIONS(9008), + [anon_sym_PIPE_EQ] = ACTIONS(9008), + [anon_sym_and_eq] = ACTIONS(9006), + [anon_sym_or_eq] = ACTIONS(9006), + [anon_sym_xor_eq] = ACTIONS(9006), + [anon_sym_LT_EQ_GT] = ACTIONS(9008), + [anon_sym_or] = ACTIONS(9006), + [anon_sym_and] = ACTIONS(9006), + [anon_sym_bitor] = ACTIONS(9006), + [anon_sym_xor] = ACTIONS(9006), + [anon_sym_bitand] = ACTIONS(9006), + [anon_sym_not_eq] = ACTIONS(9006), + [anon_sym_DASH_DASH] = ACTIONS(9008), + [anon_sym_PLUS_PLUS] = ACTIONS(9008), + [anon_sym_DOT] = ACTIONS(9006), + [anon_sym_DOT_STAR] = ACTIONS(9008), + [anon_sym_DASH_GT] = ACTIONS(9008), + [anon_sym_L_DQUOTE] = ACTIONS(9008), + [anon_sym_u_DQUOTE] = ACTIONS(9008), + [anon_sym_U_DQUOTE] = ACTIONS(9008), + [anon_sym_u8_DQUOTE] = ACTIONS(9008), + [anon_sym_DQUOTE] = ACTIONS(9008), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9008), + [anon_sym_LR_DQUOTE] = ACTIONS(9008), + [anon_sym_uR_DQUOTE] = ACTIONS(9008), + [anon_sym_UR_DQUOTE] = ACTIONS(9008), + [anon_sym_u8R_DQUOTE] = ACTIONS(9008), + [anon_sym_COLON_RBRACK] = ACTIONS(9008), + [sym_literal_suffix] = ACTIONS(9006), }, [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), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token2] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [aux_sym_preproc_else_token1] = ACTIONS(3570), + [aux_sym_preproc_elif_token1] = ACTIONS(3570), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_private] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_friend] = ACTIONS(3570), + [anon_sym_public] = ACTIONS(3570), + [anon_sym_protected] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), }, [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), + [sym_identifier] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token2] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [aux_sym_preproc_else_token1] = ACTIONS(4226), + [aux_sym_preproc_elif_token1] = ACTIONS(4226), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_friend] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6826), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6824), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_GT2] = ACTIONS(6819), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token2] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [aux_sym_preproc_else_token1] = ACTIONS(3570), + [aux_sym_preproc_elif_token1] = ACTIONS(3570), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_private] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_friend] = ACTIONS(3570), + [anon_sym_public] = ACTIONS(3570), + [anon_sym_protected] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), }, [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), + [sym_identifier] = ACTIONS(9010), + [aux_sym_preproc_def_token1] = ACTIONS(9010), + [aux_sym_preproc_if_token1] = ACTIONS(9010), + [aux_sym_preproc_if_token2] = ACTIONS(9010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9010), + [aux_sym_preproc_else_token1] = ACTIONS(9010), + [aux_sym_preproc_elif_token1] = ACTIONS(9010), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9010), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9010), + [sym_preproc_directive] = ACTIONS(9010), + [anon_sym_LPAREN2] = ACTIONS(9012), + [anon_sym_TILDE] = ACTIONS(9012), + [anon_sym_STAR] = ACTIONS(9012), + [anon_sym_AMP_AMP] = ACTIONS(9012), + [anon_sym_AMP] = ACTIONS(9010), + [anon_sym_SEMI] = ACTIONS(9012), + [anon_sym___extension__] = ACTIONS(9010), + [anon_sym_typedef] = ACTIONS(9010), + [anon_sym_virtual] = ACTIONS(9010), + [anon_sym_extern] = ACTIONS(9010), + [anon_sym___attribute__] = ACTIONS(9010), + [anon_sym___attribute] = ACTIONS(9010), + [anon_sym_using] = ACTIONS(9010), + [anon_sym_COLON_COLON] = ACTIONS(9012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9012), + [anon_sym___declspec] = ACTIONS(9010), + [anon_sym___based] = ACTIONS(9010), + [anon_sym_signed] = ACTIONS(9010), + [anon_sym_unsigned] = ACTIONS(9010), + [anon_sym_long] = ACTIONS(9010), + [anon_sym_short] = ACTIONS(9010), + [anon_sym_LBRACK] = ACTIONS(9010), + [anon_sym_static] = ACTIONS(9010), + [anon_sym_register] = ACTIONS(9010), + [anon_sym_inline] = ACTIONS(9010), + [anon_sym___inline] = ACTIONS(9010), + [anon_sym___inline__] = ACTIONS(9010), + [anon_sym___forceinline] = ACTIONS(9010), + [anon_sym_thread_local] = ACTIONS(9010), + [anon_sym___thread] = ACTIONS(9010), + [anon_sym_const] = ACTIONS(9010), + [anon_sym_constexpr] = ACTIONS(9010), + [anon_sym_volatile] = ACTIONS(9010), + [anon_sym_restrict] = ACTIONS(9010), + [anon_sym___restrict__] = ACTIONS(9010), + [anon_sym__Atomic] = ACTIONS(9010), + [anon_sym__Noreturn] = ACTIONS(9010), + [anon_sym_noreturn] = ACTIONS(9010), + [anon_sym__Nonnull] = ACTIONS(9010), + [anon_sym_mutable] = ACTIONS(9010), + [anon_sym_constinit] = ACTIONS(9010), + [anon_sym_consteval] = ACTIONS(9010), + [anon_sym_alignas] = ACTIONS(9010), + [anon_sym__Alignas] = ACTIONS(9010), + [sym_primitive_type] = ACTIONS(9010), + [anon_sym_enum] = ACTIONS(9010), + [anon_sym_class] = ACTIONS(9010), + [anon_sym_struct] = ACTIONS(9010), + [anon_sym_union] = ACTIONS(9010), + [anon_sym_typename] = ACTIONS(9010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9010), + [anon_sym_decltype] = ACTIONS(9010), + [anon_sym_explicit] = ACTIONS(9010), + [anon_sym_private] = ACTIONS(9010), + [anon_sym_template] = ACTIONS(9010), + [anon_sym_operator] = ACTIONS(9010), + [anon_sym_friend] = ACTIONS(9010), + [anon_sym_public] = ACTIONS(9010), + [anon_sym_protected] = ACTIONS(9010), + [anon_sym_static_assert] = ACTIONS(9010), + [anon_sym_LBRACK_COLON] = ACTIONS(9012), }, [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), + [sym_identifier] = ACTIONS(3582), + [aux_sym_preproc_def_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token2] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3582), + [aux_sym_preproc_else_token1] = ACTIONS(3582), + [aux_sym_preproc_elif_token1] = ACTIONS(3582), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3582), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3582), + [sym_preproc_directive] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_STAR] = ACTIONS(3584), + [anon_sym_AMP_AMP] = ACTIONS(3584), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym___extension__] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3582), + [anon_sym_virtual] = ACTIONS(3582), + [anon_sym_extern] = ACTIONS(3582), + [anon_sym___attribute__] = ACTIONS(3582), + [anon_sym___attribute] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_COLON_COLON] = ACTIONS(3584), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3584), + [anon_sym___declspec] = ACTIONS(3582), + [anon_sym___based] = ACTIONS(3582), + [anon_sym_signed] = ACTIONS(3582), + [anon_sym_unsigned] = ACTIONS(3582), + [anon_sym_long] = ACTIONS(3582), + [anon_sym_short] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_register] = ACTIONS(3582), + [anon_sym_inline] = ACTIONS(3582), + [anon_sym___inline] = ACTIONS(3582), + [anon_sym___inline__] = ACTIONS(3582), + [anon_sym___forceinline] = ACTIONS(3582), + [anon_sym_thread_local] = ACTIONS(3582), + [anon_sym___thread] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_constexpr] = ACTIONS(3582), + [anon_sym_volatile] = ACTIONS(3582), + [anon_sym_restrict] = ACTIONS(3582), + [anon_sym___restrict__] = ACTIONS(3582), + [anon_sym__Atomic] = ACTIONS(3582), + [anon_sym__Noreturn] = ACTIONS(3582), + [anon_sym_noreturn] = ACTIONS(3582), + [anon_sym__Nonnull] = ACTIONS(3582), + [anon_sym_mutable] = ACTIONS(3582), + [anon_sym_constinit] = ACTIONS(3582), + [anon_sym_consteval] = ACTIONS(3582), + [anon_sym_alignas] = ACTIONS(3582), + [anon_sym__Alignas] = ACTIONS(3582), + [sym_primitive_type] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_struct] = ACTIONS(3582), + [anon_sym_union] = ACTIONS(3582), + [anon_sym_typename] = ACTIONS(3582), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(3582), + [anon_sym_explicit] = ACTIONS(3582), + [anon_sym_private] = ACTIONS(3582), + [anon_sym_template] = ACTIONS(3582), + [anon_sym_operator] = ACTIONS(3582), + [anon_sym_friend] = ACTIONS(3582), + [anon_sym_public] = ACTIONS(3582), + [anon_sym_protected] = ACTIONS(3582), + [anon_sym_static_assert] = ACTIONS(3582), + [anon_sym_LBRACK_COLON] = ACTIONS(3584), }, [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), - [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), + [sym_identifier] = ACTIONS(4146), + [aux_sym_preproc_def_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token2] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4146), + [aux_sym_preproc_else_token1] = ACTIONS(4146), + [aux_sym_preproc_elif_token1] = ACTIONS(4146), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4146), + [sym_preproc_directive] = ACTIONS(4146), + [anon_sym_LPAREN2] = ACTIONS(4148), + [anon_sym_TILDE] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym___extension__] = ACTIONS(4146), + [anon_sym_typedef] = ACTIONS(4146), + [anon_sym_virtual] = ACTIONS(4146), + [anon_sym_extern] = ACTIONS(4146), + [anon_sym___attribute__] = ACTIONS(4146), + [anon_sym___attribute] = ACTIONS(4146), + [anon_sym_using] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4148), + [anon_sym___declspec] = ACTIONS(4146), + [anon_sym___based] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4146), + [anon_sym_unsigned] = ACTIONS(4146), + [anon_sym_long] = ACTIONS(4146), + [anon_sym_short] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_static] = ACTIONS(4146), + [anon_sym_register] = ACTIONS(4146), + [anon_sym_inline] = ACTIONS(4146), + [anon_sym___inline] = ACTIONS(4146), + [anon_sym___inline__] = ACTIONS(4146), + [anon_sym___forceinline] = ACTIONS(4146), + [anon_sym_thread_local] = ACTIONS(4146), + [anon_sym___thread] = ACTIONS(4146), + [anon_sym_const] = ACTIONS(4146), + [anon_sym_constexpr] = ACTIONS(4146), + [anon_sym_volatile] = ACTIONS(4146), + [anon_sym_restrict] = ACTIONS(4146), + [anon_sym___restrict__] = ACTIONS(4146), + [anon_sym__Atomic] = ACTIONS(4146), + [anon_sym__Noreturn] = ACTIONS(4146), + [anon_sym_noreturn] = ACTIONS(4146), + [anon_sym__Nonnull] = ACTIONS(4146), + [anon_sym_mutable] = ACTIONS(4146), + [anon_sym_constinit] = ACTIONS(4146), + [anon_sym_consteval] = ACTIONS(4146), + [anon_sym_alignas] = ACTIONS(4146), + [anon_sym__Alignas] = ACTIONS(4146), + [sym_primitive_type] = ACTIONS(4146), + [anon_sym_enum] = ACTIONS(4146), + [anon_sym_class] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4146), + [anon_sym_union] = ACTIONS(4146), + [anon_sym_typename] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4146), + [anon_sym_decltype] = ACTIONS(4146), + [anon_sym_explicit] = ACTIONS(4146), + [anon_sym_private] = ACTIONS(4146), + [anon_sym_template] = ACTIONS(4146), + [anon_sym_operator] = ACTIONS(4146), + [anon_sym_friend] = ACTIONS(4146), + [anon_sym_public] = ACTIONS(4146), + [anon_sym_protected] = ACTIONS(4146), + [anon_sym_static_assert] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4148), }, [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), + [sym_identifier] = ACTIONS(7790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7792), + [anon_sym_COMMA] = ACTIONS(7792), + [anon_sym_RPAREN] = ACTIONS(7792), + [aux_sym_preproc_if_token2] = ACTIONS(7792), + [aux_sym_preproc_else_token1] = ACTIONS(7792), + [aux_sym_preproc_elif_token1] = ACTIONS(7790), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7792), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7792), + [anon_sym_LPAREN2] = ACTIONS(7792), + [anon_sym_DASH] = ACTIONS(7790), + [anon_sym_PLUS] = ACTIONS(7790), + [anon_sym_STAR] = ACTIONS(7792), + [anon_sym_SLASH] = ACTIONS(7790), + [anon_sym_PERCENT] = ACTIONS(7792), + [anon_sym_PIPE_PIPE] = ACTIONS(7792), + [anon_sym_AMP_AMP] = ACTIONS(7792), + [anon_sym_PIPE] = ACTIONS(7790), + [anon_sym_CARET] = ACTIONS(7792), + [anon_sym_AMP] = ACTIONS(7790), + [anon_sym_EQ_EQ] = ACTIONS(7792), + [anon_sym_BANG_EQ] = ACTIONS(7792), + [anon_sym_GT] = ACTIONS(7790), + [anon_sym_GT_EQ] = ACTIONS(7792), + [anon_sym_LT_EQ] = ACTIONS(7790), + [anon_sym_LT] = ACTIONS(7790), + [anon_sym_LT_LT] = ACTIONS(7792), + [anon_sym_GT_GT] = ACTIONS(7792), + [anon_sym_SEMI] = ACTIONS(7792), + [anon_sym___extension__] = ACTIONS(7790), + [anon_sym___attribute__] = ACTIONS(7790), + [anon_sym___attribute] = ACTIONS(7790), + [anon_sym_COLON] = ACTIONS(7790), + [anon_sym_COLON_COLON] = ACTIONS(7792), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7792), + [anon_sym_LBRACE] = ACTIONS(7792), + [anon_sym_RBRACE] = ACTIONS(7792), + [anon_sym_LBRACK] = ACTIONS(7790), + [anon_sym_const] = ACTIONS(7790), + [anon_sym_constexpr] = ACTIONS(7790), + [anon_sym_volatile] = ACTIONS(7790), + [anon_sym_restrict] = ACTIONS(7790), + [anon_sym___restrict__] = ACTIONS(7790), + [anon_sym__Atomic] = ACTIONS(7790), + [anon_sym__Noreturn] = ACTIONS(7790), + [anon_sym_noreturn] = ACTIONS(7790), + [anon_sym__Nonnull] = ACTIONS(7790), + [anon_sym_mutable] = ACTIONS(7790), + [anon_sym_constinit] = ACTIONS(7790), + [anon_sym_consteval] = ACTIONS(7790), + [anon_sym_alignas] = ACTIONS(7790), + [anon_sym__Alignas] = ACTIONS(7790), + [anon_sym_QMARK] = ACTIONS(7792), + [anon_sym_LT_EQ_GT] = ACTIONS(7792), + [anon_sym_or] = ACTIONS(7790), + [anon_sym_and] = ACTIONS(7790), + [anon_sym_bitor] = ACTIONS(7790), + [anon_sym_xor] = ACTIONS(7790), + [anon_sym_bitand] = ACTIONS(7790), + [anon_sym_not_eq] = ACTIONS(7790), + [anon_sym_DASH_DASH] = ACTIONS(7792), + [anon_sym_PLUS_PLUS] = ACTIONS(7792), + [anon_sym_DOT] = ACTIONS(7790), + [anon_sym_DOT_STAR] = ACTIONS(7792), + [anon_sym_DASH_GT] = ACTIONS(7792), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7790), + [anon_sym_final] = ACTIONS(7790), + [anon_sym_override] = ACTIONS(7790), + [anon_sym_template] = ACTIONS(7790), + [anon_sym_requires] = ACTIONS(7790), + [anon_sym_LBRACK_COLON] = ACTIONS(7792), + [anon_sym_COLON_RBRACK] = ACTIONS(7792), }, [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), - [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_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), - [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_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), + [sym_identifier] = ACTIONS(7810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7812), + [anon_sym_COMMA] = ACTIONS(7812), + [anon_sym_RPAREN] = ACTIONS(7812), + [aux_sym_preproc_if_token2] = ACTIONS(7812), + [aux_sym_preproc_else_token1] = ACTIONS(7812), + [aux_sym_preproc_elif_token1] = ACTIONS(7810), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7812), + [anon_sym_LPAREN2] = ACTIONS(7812), + [anon_sym_DASH] = ACTIONS(7810), + [anon_sym_PLUS] = ACTIONS(7810), + [anon_sym_STAR] = ACTIONS(7812), + [anon_sym_SLASH] = ACTIONS(7810), + [anon_sym_PERCENT] = ACTIONS(7812), + [anon_sym_PIPE_PIPE] = ACTIONS(7812), + [anon_sym_AMP_AMP] = ACTIONS(7812), + [anon_sym_PIPE] = ACTIONS(7810), + [anon_sym_CARET] = ACTIONS(7812), + [anon_sym_AMP] = ACTIONS(7810), + [anon_sym_EQ_EQ] = ACTIONS(7812), + [anon_sym_BANG_EQ] = ACTIONS(7812), + [anon_sym_GT] = ACTIONS(7810), + [anon_sym_GT_EQ] = ACTIONS(7812), + [anon_sym_LT_EQ] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(7810), + [anon_sym_LT_LT] = ACTIONS(7812), + [anon_sym_GT_GT] = ACTIONS(7812), + [anon_sym_SEMI] = ACTIONS(7812), + [anon_sym___extension__] = ACTIONS(7810), + [anon_sym___attribute__] = ACTIONS(7810), + [anon_sym___attribute] = ACTIONS(7810), + [anon_sym_COLON] = ACTIONS(7810), + [anon_sym_COLON_COLON] = ACTIONS(7812), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7812), + [anon_sym_LBRACE] = ACTIONS(7812), + [anon_sym_RBRACE] = ACTIONS(7812), + [anon_sym_LBRACK] = ACTIONS(7810), + [anon_sym_const] = ACTIONS(7810), + [anon_sym_constexpr] = ACTIONS(7810), + [anon_sym_volatile] = ACTIONS(7810), + [anon_sym_restrict] = ACTIONS(7810), + [anon_sym___restrict__] = ACTIONS(7810), + [anon_sym__Atomic] = ACTIONS(7810), + [anon_sym__Noreturn] = ACTIONS(7810), + [anon_sym_noreturn] = ACTIONS(7810), + [anon_sym__Nonnull] = ACTIONS(7810), + [anon_sym_mutable] = ACTIONS(7810), + [anon_sym_constinit] = ACTIONS(7810), + [anon_sym_consteval] = ACTIONS(7810), + [anon_sym_alignas] = ACTIONS(7810), + [anon_sym__Alignas] = ACTIONS(7810), + [anon_sym_QMARK] = ACTIONS(7812), + [anon_sym_LT_EQ_GT] = ACTIONS(7812), + [anon_sym_or] = ACTIONS(7810), + [anon_sym_and] = ACTIONS(7810), + [anon_sym_bitor] = ACTIONS(7810), + [anon_sym_xor] = ACTIONS(7810), + [anon_sym_bitand] = ACTIONS(7810), + [anon_sym_not_eq] = ACTIONS(7810), + [anon_sym_DASH_DASH] = ACTIONS(7812), + [anon_sym_PLUS_PLUS] = ACTIONS(7812), + [anon_sym_DOT] = ACTIONS(7810), + [anon_sym_DOT_STAR] = ACTIONS(7812), + [anon_sym_DASH_GT] = ACTIONS(7812), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7810), + [anon_sym_final] = ACTIONS(7810), + [anon_sym_override] = ACTIONS(7810), + [anon_sym_template] = ACTIONS(7810), + [anon_sym_requires] = ACTIONS(7810), + [anon_sym_LBRACK_COLON] = ACTIONS(7812), + [anon_sym_COLON_RBRACK] = ACTIONS(7812), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(3658), + [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_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_typename] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_friend] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(3658), + [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_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_typename] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_friend] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), }, [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), + [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(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), + [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(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), - [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), + [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(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), + [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(3199)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_RBRACK] = ACTIONS(6819), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6819), + [anon_sym_SLASH_EQ] = ACTIONS(6819), + [anon_sym_PERCENT_EQ] = ACTIONS(6819), + [anon_sym_PLUS_EQ] = ACTIONS(6819), + [anon_sym_DASH_EQ] = ACTIONS(6819), + [anon_sym_LT_LT_EQ] = ACTIONS(6819), + [anon_sym_GT_GT_EQ] = ACTIONS(6819), + [anon_sym_AMP_EQ] = ACTIONS(6819), + [anon_sym_CARET_EQ] = ACTIONS(6819), + [anon_sym_PIPE_EQ] = ACTIONS(6819), + [anon_sym_and_eq] = ACTIONS(6826), + [anon_sym_or_eq] = ACTIONS(6826), + [anon_sym_xor_eq] = ACTIONS(6826), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(3200)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_RBRACK] = ACTIONS(6819), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(3201)] = { + [sym_template_argument_list] = STATE(2704), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7444), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_DASH] = ACTIONS(7451), + [anon_sym_PLUS] = ACTIONS(7451), + [anon_sym_STAR] = ACTIONS(7451), + [anon_sym_SLASH] = ACTIONS(7451), + [anon_sym_PERCENT] = ACTIONS(7451), + [anon_sym_PIPE_PIPE] = ACTIONS(7444), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7451), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7444), + [anon_sym_BANG_EQ] = ACTIONS(7444), + [anon_sym_GT] = ACTIONS(7451), + [anon_sym_GT_EQ] = ACTIONS(7444), + [anon_sym_LT_EQ] = ACTIONS(7451), + [anon_sym_LT] = ACTIONS(8148), + [anon_sym_LT_LT] = ACTIONS(7451), + [anon_sym_GT_GT] = ACTIONS(7451), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_RBRACK] = ACTIONS(7444), + [anon_sym_EQ] = ACTIONS(7451), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7444), + [anon_sym_STAR_EQ] = ACTIONS(7444), + [anon_sym_SLASH_EQ] = ACTIONS(7444), + [anon_sym_PERCENT_EQ] = ACTIONS(7444), + [anon_sym_PLUS_EQ] = ACTIONS(7444), + [anon_sym_DASH_EQ] = ACTIONS(7444), + [anon_sym_LT_LT_EQ] = ACTIONS(7444), + [anon_sym_GT_GT_EQ] = ACTIONS(7444), + [anon_sym_AMP_EQ] = ACTIONS(7444), + [anon_sym_CARET_EQ] = ACTIONS(7444), + [anon_sym_PIPE_EQ] = ACTIONS(7444), + [anon_sym_and_eq] = ACTIONS(7451), + [anon_sym_or_eq] = ACTIONS(7451), + [anon_sym_xor_eq] = ACTIONS(7451), + [anon_sym_LT_EQ_GT] = ACTIONS(7444), + [anon_sym_or] = ACTIONS(7451), + [anon_sym_and] = ACTIONS(7451), + [anon_sym_bitor] = ACTIONS(7451), + [anon_sym_xor] = ACTIONS(7451), + [anon_sym_bitand] = ACTIONS(7451), + [anon_sym_not_eq] = ACTIONS(7451), + [anon_sym_DASH_DASH] = ACTIONS(7444), + [anon_sym_PLUS_PLUS] = ACTIONS(7444), + [anon_sym_DOT] = ACTIONS(7451), + [anon_sym_DOT_STAR] = ACTIONS(7444), + [anon_sym_DASH_GT] = ACTIONS(7444), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + }, + [STATE(3202)] = { + [sym_identifier] = ACTIONS(4389), + [aux_sym_preproc_def_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token2] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4389), + [aux_sym_preproc_else_token1] = ACTIONS(4389), + [aux_sym_preproc_elif_token1] = ACTIONS(4389), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4389), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4389), + [sym_preproc_directive] = ACTIONS(4389), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_typedef] = ACTIONS(4389), + [anon_sym_virtual] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym___attribute__] = ACTIONS(4389), + [anon_sym___attribute] = ACTIONS(4389), + [anon_sym_using] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4391), + [anon_sym___declspec] = ACTIONS(4389), + [anon_sym___based] = ACTIONS(4389), + [anon_sym_signed] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym___inline] = ACTIONS(4389), + [anon_sym___inline__] = ACTIONS(4389), + [anon_sym___forceinline] = ACTIONS(4389), + [anon_sym_thread_local] = ACTIONS(4389), + [anon_sym___thread] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_constinit] = ACTIONS(4389), + [anon_sym_consteval] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4389), + [anon_sym__Alignas] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_class] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4389), + [anon_sym_decltype] = ACTIONS(4389), + [anon_sym_explicit] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_template] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_friend] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_static_assert] = ACTIONS(4389), + [anon_sym_LBRACK_COLON] = ACTIONS(4391), + }, + [STATE(3203)] = { + [sym__declaration_modifiers] = STATE(5767), + [sym_attribute_specifier] = STATE(5767), + [sym_attribute_declaration] = STATE(5767), + [sym_ms_declspec_modifier] = STATE(5767), + [sym_storage_class_specifier] = STATE(5767), + [sym_type_qualifier] = STATE(5767), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4365), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(5767), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(9014), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3544), + [anon_sym_typename] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), + }, + [STATE(3204)] = { + [sym_identifier] = ACTIONS(7495), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7497), + [anon_sym_SEMI] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7497), + [anon_sym___based] = ACTIONS(7495), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_signed] = ACTIONS(7495), + [anon_sym_unsigned] = ACTIONS(7495), + [anon_sym_long] = ACTIONS(7495), + [anon_sym_short] = ACTIONS(7495), + [anon_sym_LBRACK] = ACTIONS(7497), + [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), + [sym_primitive_type] = ACTIONS(7495), + [anon_sym_QMARK] = ACTIONS(7497), + [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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), + }, + [STATE(3205)] = { + [sym_identifier] = ACTIONS(7495), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7497), + [anon_sym_SEMI] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7497), + [anon_sym___based] = ACTIONS(7495), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_signed] = ACTIONS(7495), + [anon_sym_unsigned] = ACTIONS(7495), + [anon_sym_long] = ACTIONS(7495), + [anon_sym_short] = ACTIONS(7495), + [anon_sym_LBRACK] = ACTIONS(7497), + [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), + [sym_primitive_type] = ACTIONS(7495), + [anon_sym_QMARK] = ACTIONS(7497), + [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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), + }, + [STATE(3206)] = { + [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(3207)] = { + [sym_identifier] = ACTIONS(7519), + [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(7521), + [anon_sym_SLASH] = ACTIONS(7519), + [anon_sym_PERCENT] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7519), + [anon_sym_CARET] = ACTIONS(7521), + [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(7521), + [anon_sym_GT_GT] = ACTIONS(7521), + [anon_sym_SEMI] = ACTIONS(7521), + [anon_sym___extension__] = ACTIONS(7519), + [anon_sym___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7521), + [anon_sym___based] = ACTIONS(7519), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_RBRACE] = ACTIONS(7521), + [anon_sym_signed] = ACTIONS(7519), + [anon_sym_unsigned] = ACTIONS(7519), + [anon_sym_long] = ACTIONS(7519), + [anon_sym_short] = ACTIONS(7519), + [anon_sym_LBRACK] = ACTIONS(7521), + [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), + [sym_primitive_type] = ACTIONS(7519), + [anon_sym_QMARK] = ACTIONS(7521), + [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), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_COLON_RBRACK] = ACTIONS(7521), + }, + [STATE(3208)] = { + [sym_identifier] = ACTIONS(7814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7816), + [anon_sym_COMMA] = ACTIONS(7816), + [anon_sym_RPAREN] = ACTIONS(7816), + [aux_sym_preproc_if_token2] = ACTIONS(7816), + [aux_sym_preproc_else_token1] = ACTIONS(7816), + [aux_sym_preproc_elif_token1] = ACTIONS(7814), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7816), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7816), + [anon_sym_LPAREN2] = ACTIONS(7816), + [anon_sym_DASH] = ACTIONS(7814), + [anon_sym_PLUS] = ACTIONS(7814), + [anon_sym_STAR] = ACTIONS(7816), + [anon_sym_SLASH] = ACTIONS(7814), + [anon_sym_PERCENT] = ACTIONS(7816), + [anon_sym_PIPE_PIPE] = ACTIONS(7816), + [anon_sym_AMP_AMP] = ACTIONS(7816), + [anon_sym_PIPE] = ACTIONS(7814), + [anon_sym_CARET] = ACTIONS(7816), + [anon_sym_AMP] = ACTIONS(7814), + [anon_sym_EQ_EQ] = ACTIONS(7816), + [anon_sym_BANG_EQ] = ACTIONS(7816), + [anon_sym_GT] = ACTIONS(7814), + [anon_sym_GT_EQ] = ACTIONS(7816), + [anon_sym_LT_EQ] = ACTIONS(7814), + [anon_sym_LT] = ACTIONS(7814), + [anon_sym_LT_LT] = ACTIONS(7816), + [anon_sym_GT_GT] = ACTIONS(7816), + [anon_sym_SEMI] = ACTIONS(7816), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym___attribute__] = ACTIONS(7814), + [anon_sym___attribute] = ACTIONS(7814), + [anon_sym_COLON] = ACTIONS(7814), + [anon_sym_COLON_COLON] = ACTIONS(7816), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7816), + [anon_sym_LBRACE] = ACTIONS(7816), + [anon_sym_RBRACE] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(7814), + [anon_sym_const] = ACTIONS(7814), + [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(7814), + [anon_sym__Alignas] = ACTIONS(7814), + [anon_sym_QMARK] = ACTIONS(7816), + [anon_sym_LT_EQ_GT] = ACTIONS(7816), + [anon_sym_or] = ACTIONS(7814), + [anon_sym_and] = ACTIONS(7814), + [anon_sym_bitor] = ACTIONS(7814), + [anon_sym_xor] = ACTIONS(7814), + [anon_sym_bitand] = ACTIONS(7814), + [anon_sym_not_eq] = ACTIONS(7814), + [anon_sym_DASH_DASH] = ACTIONS(7816), + [anon_sym_PLUS_PLUS] = ACTIONS(7816), + [anon_sym_DOT] = ACTIONS(7814), + [anon_sym_DOT_STAR] = ACTIONS(7816), + [anon_sym_DASH_GT] = ACTIONS(7816), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7814), + [anon_sym_final] = ACTIONS(7814), + [anon_sym_override] = ACTIONS(7814), + [anon_sym_template] = ACTIONS(7814), + [anon_sym_requires] = ACTIONS(7814), + [anon_sym_LBRACK_COLON] = ACTIONS(7816), + [anon_sym_COLON_RBRACK] = ACTIONS(7816), + }, + [STATE(3209)] = { + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token2] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [aux_sym_preproc_else_token1] = ACTIONS(3452), + [aux_sym_preproc_elif_token1] = ACTIONS(3452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_friend] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + }, + [STATE(3210)] = { + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token2] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [aux_sym_preproc_else_token1] = ACTIONS(3452), + [aux_sym_preproc_elif_token1] = ACTIONS(3452), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_friend] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), + }, + [STATE(3211)] = { + [sym_identifier] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [aux_sym_preproc_else_token1] = ACTIONS(4327), + [aux_sym_preproc_elif_token1] = ACTIONS(4327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_friend] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), + }, + [STATE(3212)] = { + [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(3213)] = { + [sym_identifier] = ACTIONS(8962), + [aux_sym_preproc_def_token1] = ACTIONS(8962), + [aux_sym_preproc_if_token1] = ACTIONS(8962), + [aux_sym_preproc_if_token2] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8962), + [aux_sym_preproc_else_token1] = ACTIONS(8962), + [aux_sym_preproc_elif_token1] = ACTIONS(8962), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8962), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8962), + [sym_preproc_directive] = ACTIONS(8962), + [anon_sym_LPAREN2] = ACTIONS(8964), + [anon_sym_TILDE] = ACTIONS(8964), + [anon_sym_STAR] = ACTIONS(8964), + [anon_sym_AMP_AMP] = ACTIONS(8964), + [anon_sym_AMP] = ACTIONS(8962), + [anon_sym_SEMI] = ACTIONS(8964), + [anon_sym___extension__] = ACTIONS(8962), + [anon_sym_typedef] = ACTIONS(8962), + [anon_sym_virtual] = ACTIONS(8962), + [anon_sym_extern] = ACTIONS(8962), + [anon_sym___attribute__] = ACTIONS(8962), + [anon_sym___attribute] = ACTIONS(8962), + [anon_sym_using] = ACTIONS(8962), + [anon_sym_COLON_COLON] = ACTIONS(8964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8964), + [anon_sym___declspec] = ACTIONS(8962), + [anon_sym___based] = ACTIONS(8962), + [anon_sym_signed] = ACTIONS(8962), + [anon_sym_unsigned] = ACTIONS(8962), + [anon_sym_long] = ACTIONS(8962), + [anon_sym_short] = ACTIONS(8962), + [anon_sym_LBRACK] = ACTIONS(8962), + [anon_sym_static] = ACTIONS(8962), + [anon_sym_register] = ACTIONS(8962), + [anon_sym_inline] = ACTIONS(8962), + [anon_sym___inline] = ACTIONS(8962), + [anon_sym___inline__] = ACTIONS(8962), + [anon_sym___forceinline] = ACTIONS(8962), + [anon_sym_thread_local] = ACTIONS(8962), + [anon_sym___thread] = ACTIONS(8962), + [anon_sym_const] = ACTIONS(8962), + [anon_sym_constexpr] = ACTIONS(8962), + [anon_sym_volatile] = ACTIONS(8962), + [anon_sym_restrict] = ACTIONS(8962), + [anon_sym___restrict__] = ACTIONS(8962), + [anon_sym__Atomic] = ACTIONS(8962), + [anon_sym__Noreturn] = ACTIONS(8962), + [anon_sym_noreturn] = ACTIONS(8962), + [anon_sym__Nonnull] = ACTIONS(8962), + [anon_sym_mutable] = ACTIONS(8962), + [anon_sym_constinit] = ACTIONS(8962), + [anon_sym_consteval] = ACTIONS(8962), + [anon_sym_alignas] = ACTIONS(8962), + [anon_sym__Alignas] = ACTIONS(8962), + [sym_primitive_type] = ACTIONS(8962), + [anon_sym_enum] = ACTIONS(8962), + [anon_sym_class] = ACTIONS(8962), + [anon_sym_struct] = ACTIONS(8962), + [anon_sym_union] = ACTIONS(8962), + [anon_sym_typename] = ACTIONS(8962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8962), + [anon_sym_decltype] = ACTIONS(8962), + [anon_sym_explicit] = ACTIONS(8962), + [anon_sym_private] = ACTIONS(8962), + [anon_sym_template] = ACTIONS(8962), + [anon_sym_operator] = ACTIONS(8962), + [anon_sym_friend] = ACTIONS(8962), + [anon_sym_public] = ACTIONS(8962), + [anon_sym_protected] = ACTIONS(8962), + [anon_sym_static_assert] = ACTIONS(8962), + [anon_sym_LBRACK_COLON] = ACTIONS(8964), + }, + [STATE(3214)] = { + [sym_identifier] = ACTIONS(3886), + [aux_sym_preproc_def_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token2] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3886), + [aux_sym_preproc_else_token1] = ACTIONS(3886), + [aux_sym_preproc_elif_token1] = ACTIONS(3886), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3886), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3886), + [sym_preproc_directive] = ACTIONS(3886), + [anon_sym_LPAREN2] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3888), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(3886), + [anon_sym_typedef] = ACTIONS(3886), + [anon_sym_virtual] = ACTIONS(3886), + [anon_sym_extern] = ACTIONS(3886), + [anon_sym___attribute__] = ACTIONS(3886), + [anon_sym___attribute] = ACTIONS(3886), + [anon_sym_using] = ACTIONS(3886), + [anon_sym_COLON_COLON] = ACTIONS(3888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3888), + [anon_sym___declspec] = ACTIONS(3886), + [anon_sym___based] = ACTIONS(3886), + [anon_sym_signed] = ACTIONS(3886), + [anon_sym_unsigned] = ACTIONS(3886), + [anon_sym_long] = ACTIONS(3886), + [anon_sym_short] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_static] = ACTIONS(3886), + [anon_sym_register] = ACTIONS(3886), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym___inline] = ACTIONS(3886), + [anon_sym___inline__] = ACTIONS(3886), + [anon_sym___forceinline] = ACTIONS(3886), + [anon_sym_thread_local] = ACTIONS(3886), + [anon_sym___thread] = ACTIONS(3886), + [anon_sym_const] = ACTIONS(3886), + [anon_sym_constexpr] = ACTIONS(3886), + [anon_sym_volatile] = ACTIONS(3886), + [anon_sym_restrict] = ACTIONS(3886), + [anon_sym___restrict__] = ACTIONS(3886), + [anon_sym__Atomic] = ACTIONS(3886), + [anon_sym__Noreturn] = ACTIONS(3886), + [anon_sym_noreturn] = ACTIONS(3886), + [anon_sym__Nonnull] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3886), + [anon_sym_constinit] = ACTIONS(3886), + [anon_sym_consteval] = ACTIONS(3886), + [anon_sym_alignas] = ACTIONS(3886), + [anon_sym__Alignas] = ACTIONS(3886), + [sym_primitive_type] = ACTIONS(3886), + [anon_sym_enum] = ACTIONS(3886), + [anon_sym_class] = ACTIONS(3886), + [anon_sym_struct] = ACTIONS(3886), + [anon_sym_union] = ACTIONS(3886), + [anon_sym_typename] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3886), + [anon_sym_decltype] = ACTIONS(3886), + [anon_sym_explicit] = ACTIONS(3886), + [anon_sym_private] = ACTIONS(3886), + [anon_sym_template] = ACTIONS(3886), + [anon_sym_operator] = ACTIONS(3886), + [anon_sym_friend] = ACTIONS(3886), + [anon_sym_public] = ACTIONS(3886), + [anon_sym_protected] = ACTIONS(3886), + [anon_sym_static_assert] = ACTIONS(3886), + [anon_sym_LBRACK_COLON] = ACTIONS(3888), + }, + [STATE(3215)] = { + [sym_type_qualifier] = STATE(2711), + [sym_alignas_qualifier] = STATE(2870), + [aux_sym__type_definition_type_repeat1] = STATE(2711), + [aux_sym_sized_type_specifier_repeat1] = STATE(3533), + [sym_identifier] = ACTIONS(9016), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_RPAREN] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_TILDE] = ACTIONS(7023), + [anon_sym_STAR] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_SEMI] = ACTIONS(7023), + [anon_sym___extension__] = ACTIONS(9019), + [anon_sym_virtual] = ACTIONS(7025), + [anon_sym_extern] = ACTIONS(7025), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON] = ACTIONS(7025), + [anon_sym_COLON_COLON] = ACTIONS(7023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7023), + [anon_sym___declspec] = ACTIONS(7025), + [anon_sym___based] = ACTIONS(7025), + [anon_sym___cdecl] = ACTIONS(7025), + [anon_sym___clrcall] = ACTIONS(7025), + [anon_sym___stdcall] = ACTIONS(7025), + [anon_sym___fastcall] = ACTIONS(7025), + [anon_sym___thiscall] = ACTIONS(7025), + [anon_sym___vectorcall] = ACTIONS(7025), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(9022), + [anon_sym_unsigned] = ACTIONS(9022), + [anon_sym_long] = ACTIONS(9022), + [anon_sym_short] = ACTIONS(9022), + [anon_sym_LBRACK] = ACTIONS(7025), + [anon_sym_static] = ACTIONS(7025), + [anon_sym_EQ] = ACTIONS(7023), + [anon_sym_register] = ACTIONS(7025), + [anon_sym_inline] = ACTIONS(7025), + [anon_sym___inline] = ACTIONS(7025), + [anon_sym___inline__] = ACTIONS(7025), + [anon_sym___forceinline] = ACTIONS(7025), + [anon_sym_thread_local] = ACTIONS(7025), + [anon_sym___thread] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(9019), + [anon_sym_constexpr] = ACTIONS(9019), + [anon_sym_volatile] = ACTIONS(9019), + [anon_sym_restrict] = ACTIONS(9019), + [anon_sym___restrict__] = ACTIONS(9019), + [anon_sym__Atomic] = ACTIONS(9019), + [anon_sym__Noreturn] = ACTIONS(9019), + [anon_sym_noreturn] = ACTIONS(9019), + [anon_sym__Nonnull] = ACTIONS(9019), + [anon_sym_mutable] = ACTIONS(9019), + [anon_sym_constinit] = ACTIONS(9019), + [anon_sym_consteval] = ACTIONS(9019), + [anon_sym_alignas] = ACTIONS(9024), + [anon_sym__Alignas] = ACTIONS(9024), + [sym_primitive_type] = ACTIONS(9027), + [anon_sym_asm] = ACTIONS(7025), + [anon_sym___asm__] = ACTIONS(7025), + [anon_sym___asm] = ACTIONS(7025), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7025), + [anon_sym_final] = ACTIONS(7025), + [anon_sym_override] = ACTIONS(7025), + [anon_sym_template] = ACTIONS(7025), + [anon_sym_GT2] = ACTIONS(7023), + [anon_sym_operator] = ACTIONS(7025), + [anon_sym_try] = ACTIONS(7025), + [anon_sym_requires] = ACTIONS(7025), + [anon_sym_LBRACK_COLON] = ACTIONS(7023), + }, + [STATE(3216)] = { [sym_identifier] = ACTIONS(7775), [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), [anon_sym_COMMA] = ACTIONS(7777), [anon_sym_RPAREN] = ACTIONS(7777), + [aux_sym_preproc_if_token2] = ACTIONS(7777), + [aux_sym_preproc_else_token1] = ACTIONS(7777), + [aux_sym_preproc_elif_token1] = ACTIONS(7775), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7777), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7777), [anon_sym_LPAREN2] = ACTIONS(7777), [anon_sym_DASH] = ACTIONS(7775), [anon_sym_PLUS] = ACTIONS(7775), @@ -408154,15 +420337,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7775), [anon_sym___attribute] = ACTIONS(7775), [anon_sym_COLON] = ACTIONS(7775), + [anon_sym_COLON_COLON] = ACTIONS(7777), [anon_sym_RBRACK_RBRACK] = ACTIONS(7777), - [anon_sym___based] = ACTIONS(7775), [anon_sym_LBRACE] = ACTIONS(7777), [anon_sym_RBRACE] = ACTIONS(7777), - [anon_sym_signed] = ACTIONS(7775), - [anon_sym_unsigned] = ACTIONS(7775), - [anon_sym_long] = ACTIONS(7775), - [anon_sym_short] = ACTIONS(7775), - [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7775), [anon_sym_const] = ACTIONS(7775), [anon_sym_constexpr] = ACTIONS(7775), [anon_sym_volatile] = ACTIONS(7775), @@ -408177,7 +420356,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(7775), [anon_sym_alignas] = ACTIONS(7775), [anon_sym__Alignas] = ACTIONS(7775), - [sym_primitive_type] = ACTIONS(7775), [anon_sym_QMARK] = ACTIONS(7777), [anon_sym_LT_EQ_GT] = ACTIONS(7777), [anon_sym_or] = ACTIONS(7775), @@ -408192,1096 +420370,624 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7777), [anon_sym_DASH_GT] = ACTIONS(7777), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7775), [anon_sym_final] = ACTIONS(7775), [anon_sym_override] = ACTIONS(7775), + [anon_sym_template] = ACTIONS(7775), [anon_sym_requires] = ACTIONS(7775), + [anon_sym_LBRACK_COLON] = ACTIONS(7777), [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(3217)] = { + [sym_identifier] = ACTIONS(4068), + [aux_sym_preproc_def_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token2] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4068), + [aux_sym_preproc_else_token1] = ACTIONS(4068), + [aux_sym_preproc_elif_token1] = ACTIONS(4068), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4068), + [sym_preproc_directive] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4070), + [anon_sym_TILDE] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym___extension__] = ACTIONS(4068), + [anon_sym_typedef] = ACTIONS(4068), + [anon_sym_virtual] = ACTIONS(4068), + [anon_sym_extern] = ACTIONS(4068), + [anon_sym___attribute__] = ACTIONS(4068), + [anon_sym___attribute] = ACTIONS(4068), + [anon_sym_using] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4070), + [anon_sym___declspec] = ACTIONS(4068), + [anon_sym___based] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(4068), + [anon_sym_unsigned] = ACTIONS(4068), + [anon_sym_long] = ACTIONS(4068), + [anon_sym_short] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_register] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym___inline] = ACTIONS(4068), + [anon_sym___inline__] = ACTIONS(4068), + [anon_sym___forceinline] = ACTIONS(4068), + [anon_sym_thread_local] = ACTIONS(4068), + [anon_sym___thread] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4068), + [anon_sym_constexpr] = ACTIONS(4068), + [anon_sym_volatile] = ACTIONS(4068), + [anon_sym_restrict] = ACTIONS(4068), + [anon_sym___restrict__] = ACTIONS(4068), + [anon_sym__Atomic] = ACTIONS(4068), + [anon_sym__Noreturn] = ACTIONS(4068), + [anon_sym_noreturn] = ACTIONS(4068), + [anon_sym__Nonnull] = ACTIONS(4068), + [anon_sym_mutable] = ACTIONS(4068), + [anon_sym_constinit] = ACTIONS(4068), + [anon_sym_consteval] = ACTIONS(4068), + [anon_sym_alignas] = ACTIONS(4068), + [anon_sym__Alignas] = ACTIONS(4068), + [sym_primitive_type] = ACTIONS(4068), + [anon_sym_enum] = ACTIONS(4068), + [anon_sym_class] = ACTIONS(4068), + [anon_sym_struct] = ACTIONS(4068), + [anon_sym_union] = ACTIONS(4068), + [anon_sym_typename] = ACTIONS(4068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4068), + [anon_sym_decltype] = ACTIONS(4068), + [anon_sym_explicit] = ACTIONS(4068), + [anon_sym_private] = ACTIONS(4068), + [anon_sym_template] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_friend] = ACTIONS(4068), + [anon_sym_public] = ACTIONS(4068), + [anon_sym_protected] = ACTIONS(4068), + [anon_sym_static_assert] = ACTIONS(4068), + [anon_sym_LBRACK_COLON] = ACTIONS(4070), }, - [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), - [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), - [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_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), - [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), - }, - [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), - [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(3205)] = { - [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), + [STATE(3218)] = { + [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), - [anon_sym_final] = ACTIONS(7781), - [anon_sym_override] = 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), + [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(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(3219)] = { + [sym_identifier] = ACTIONS(4005), + [aux_sym_preproc_def_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token2] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4005), + [aux_sym_preproc_else_token1] = ACTIONS(4005), + [aux_sym_preproc_elif_token1] = ACTIONS(4005), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4005), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4005), + [sym_preproc_directive] = ACTIONS(4005), + [anon_sym_LPAREN2] = ACTIONS(4007), + [anon_sym_TILDE] = ACTIONS(4007), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_AMP_AMP] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_SEMI] = ACTIONS(4007), + [anon_sym___extension__] = ACTIONS(4005), + [anon_sym_typedef] = ACTIONS(4005), + [anon_sym_virtual] = ACTIONS(4005), + [anon_sym_extern] = ACTIONS(4005), + [anon_sym___attribute__] = ACTIONS(4005), + [anon_sym___attribute] = ACTIONS(4005), + [anon_sym_using] = ACTIONS(4005), + [anon_sym_COLON_COLON] = ACTIONS(4007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4007), + [anon_sym___declspec] = ACTIONS(4005), + [anon_sym___based] = ACTIONS(4005), + [anon_sym_signed] = ACTIONS(4005), + [anon_sym_unsigned] = ACTIONS(4005), + [anon_sym_long] = ACTIONS(4005), + [anon_sym_short] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4005), + [anon_sym_register] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym___inline] = ACTIONS(4005), + [anon_sym___inline__] = ACTIONS(4005), + [anon_sym___forceinline] = ACTIONS(4005), + [anon_sym_thread_local] = ACTIONS(4005), + [anon_sym___thread] = ACTIONS(4005), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_constexpr] = ACTIONS(4005), + [anon_sym_volatile] = ACTIONS(4005), + [anon_sym_restrict] = ACTIONS(4005), + [anon_sym___restrict__] = ACTIONS(4005), + [anon_sym__Atomic] = ACTIONS(4005), + [anon_sym__Noreturn] = ACTIONS(4005), + [anon_sym_noreturn] = ACTIONS(4005), + [anon_sym__Nonnull] = ACTIONS(4005), + [anon_sym_mutable] = ACTIONS(4005), + [anon_sym_constinit] = ACTIONS(4005), + [anon_sym_consteval] = ACTIONS(4005), + [anon_sym_alignas] = ACTIONS(4005), + [anon_sym__Alignas] = ACTIONS(4005), + [sym_primitive_type] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_class] = ACTIONS(4005), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_typename] = ACTIONS(4005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4005), + [anon_sym_decltype] = ACTIONS(4005), + [anon_sym_explicit] = ACTIONS(4005), + [anon_sym_private] = ACTIONS(4005), + [anon_sym_template] = ACTIONS(4005), + [anon_sym_operator] = ACTIONS(4005), + [anon_sym_friend] = ACTIONS(4005), + [anon_sym_public] = ACTIONS(4005), + [anon_sym_protected] = ACTIONS(4005), + [anon_sym_static_assert] = ACTIONS(4005), + [anon_sym_LBRACK_COLON] = ACTIONS(4007), }, - [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(3220)] = { + [sym_identifier] = ACTIONS(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token2] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [aux_sym_preproc_else_token1] = ACTIONS(3712), + [aux_sym_preproc_elif_token1] = ACTIONS(3712), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_private] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_friend] = ACTIONS(3712), + [anon_sym_public] = ACTIONS(3712), + [anon_sym_protected] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), }, - [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(3221)] = { + [sym_identifier] = ACTIONS(4009), + [aux_sym_preproc_def_token1] = ACTIONS(4009), + [aux_sym_preproc_if_token1] = ACTIONS(4009), + [aux_sym_preproc_if_token2] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4009), + [aux_sym_preproc_else_token1] = ACTIONS(4009), + [aux_sym_preproc_elif_token1] = ACTIONS(4009), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4009), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4009), + [sym_preproc_directive] = ACTIONS(4009), + [anon_sym_LPAREN2] = ACTIONS(4011), + [anon_sym_TILDE] = ACTIONS(4011), + [anon_sym_STAR] = ACTIONS(4011), + [anon_sym_AMP_AMP] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_SEMI] = ACTIONS(4011), + [anon_sym___extension__] = ACTIONS(4009), + [anon_sym_typedef] = ACTIONS(4009), + [anon_sym_virtual] = ACTIONS(4009), + [anon_sym_extern] = ACTIONS(4009), + [anon_sym___attribute__] = ACTIONS(4009), + [anon_sym___attribute] = ACTIONS(4009), + [anon_sym_using] = ACTIONS(4009), + [anon_sym_COLON_COLON] = ACTIONS(4011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4011), + [anon_sym___declspec] = ACTIONS(4009), + [anon_sym___based] = ACTIONS(4009), + [anon_sym_signed] = ACTIONS(4009), + [anon_sym_unsigned] = ACTIONS(4009), + [anon_sym_long] = ACTIONS(4009), + [anon_sym_short] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4009), + [anon_sym_register] = ACTIONS(4009), + [anon_sym_inline] = ACTIONS(4009), + [anon_sym___inline] = ACTIONS(4009), + [anon_sym___inline__] = ACTIONS(4009), + [anon_sym___forceinline] = ACTIONS(4009), + [anon_sym_thread_local] = ACTIONS(4009), + [anon_sym___thread] = ACTIONS(4009), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_constexpr] = ACTIONS(4009), + [anon_sym_volatile] = ACTIONS(4009), + [anon_sym_restrict] = ACTIONS(4009), + [anon_sym___restrict__] = ACTIONS(4009), + [anon_sym__Atomic] = ACTIONS(4009), + [anon_sym__Noreturn] = ACTIONS(4009), + [anon_sym_noreturn] = ACTIONS(4009), + [anon_sym__Nonnull] = ACTIONS(4009), + [anon_sym_mutable] = ACTIONS(4009), + [anon_sym_constinit] = ACTIONS(4009), + [anon_sym_consteval] = ACTIONS(4009), + [anon_sym_alignas] = ACTIONS(4009), + [anon_sym__Alignas] = ACTIONS(4009), + [sym_primitive_type] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_class] = ACTIONS(4009), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_typename] = ACTIONS(4009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4009), + [anon_sym_decltype] = ACTIONS(4009), + [anon_sym_explicit] = ACTIONS(4009), + [anon_sym_private] = ACTIONS(4009), + [anon_sym_template] = ACTIONS(4009), + [anon_sym_operator] = ACTIONS(4009), + [anon_sym_friend] = ACTIONS(4009), + [anon_sym_public] = ACTIONS(4009), + [anon_sym_protected] = ACTIONS(4009), + [anon_sym_static_assert] = ACTIONS(4009), + [anon_sym_LBRACK_COLON] = ACTIONS(4011), }, - [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), - [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_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(3222)] = { + [sym_identifier] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [aux_sym_preproc_else_token1] = ACTIONS(4327), + [aux_sym_preproc_elif_token1] = ACTIONS(4327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_friend] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), }, - [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(3223)] = { + [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), - [anon_sym_final] = ACTIONS(7771), - [anon_sym_override] = ACTIONS(7771), - [anon_sym_requires] = ACTIONS(7771), - [anon_sym_COLON_RBRACK] = ACTIONS(7773), - }, - [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), + [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(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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7741), - [anon_sym_override] = ACTIONS(7741), - [anon_sym_requires] = ACTIONS(7741), + [STATE(3224)] = { + [sym_identifier] = ACTIONS(9029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9031), + [anon_sym_COMMA] = ACTIONS(9031), + [anon_sym_RPAREN] = ACTIONS(9031), + [aux_sym_preproc_if_token2] = ACTIONS(9031), + [aux_sym_preproc_else_token1] = ACTIONS(9031), + [aux_sym_preproc_elif_token1] = ACTIONS(9029), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9031), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9031), + [anon_sym_LPAREN2] = ACTIONS(9031), + [anon_sym_DASH] = ACTIONS(9029), + [anon_sym_PLUS] = ACTIONS(9029), + [anon_sym_STAR] = ACTIONS(9029), + [anon_sym_SLASH] = ACTIONS(9029), + [anon_sym_PERCENT] = ACTIONS(9029), + [anon_sym_PIPE_PIPE] = ACTIONS(9031), + [anon_sym_AMP_AMP] = ACTIONS(9031), + [anon_sym_PIPE] = ACTIONS(9029), + [anon_sym_CARET] = ACTIONS(9029), + [anon_sym_AMP] = ACTIONS(9029), + [anon_sym_EQ_EQ] = ACTIONS(9031), + [anon_sym_BANG_EQ] = ACTIONS(9031), + [anon_sym_GT] = ACTIONS(9029), + [anon_sym_GT_EQ] = ACTIONS(9031), + [anon_sym_LT_EQ] = ACTIONS(9029), + [anon_sym_LT] = ACTIONS(9029), + [anon_sym_LT_LT] = ACTIONS(9029), + [anon_sym_GT_GT] = ACTIONS(9029), + [anon_sym_SEMI] = ACTIONS(9031), + [anon_sym_COLON] = ACTIONS(9029), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9031), + [anon_sym_RBRACE] = ACTIONS(9031), + [anon_sym_LBRACK] = ACTIONS(9031), + [anon_sym_EQ] = ACTIONS(9029), + [anon_sym_QMARK] = ACTIONS(9031), + [anon_sym_STAR_EQ] = ACTIONS(9031), + [anon_sym_SLASH_EQ] = ACTIONS(9031), + [anon_sym_PERCENT_EQ] = ACTIONS(9031), + [anon_sym_PLUS_EQ] = ACTIONS(9031), + [anon_sym_DASH_EQ] = ACTIONS(9031), + [anon_sym_LT_LT_EQ] = ACTIONS(9031), + [anon_sym_GT_GT_EQ] = ACTIONS(9031), + [anon_sym_AMP_EQ] = ACTIONS(9031), + [anon_sym_CARET_EQ] = ACTIONS(9031), + [anon_sym_PIPE_EQ] = ACTIONS(9031), + [anon_sym_and_eq] = ACTIONS(9029), + [anon_sym_or_eq] = ACTIONS(9029), + [anon_sym_xor_eq] = ACTIONS(9029), + [anon_sym_LT_EQ_GT] = ACTIONS(9031), + [anon_sym_or] = ACTIONS(9029), + [anon_sym_and] = ACTIONS(9029), + [anon_sym_bitor] = ACTIONS(9029), + [anon_sym_xor] = ACTIONS(9029), + [anon_sym_bitand] = ACTIONS(9029), + [anon_sym_not_eq] = ACTIONS(9029), + [anon_sym_DASH_DASH] = ACTIONS(9031), + [anon_sym_PLUS_PLUS] = ACTIONS(9031), + [anon_sym_DOT] = ACTIONS(9029), + [anon_sym_DOT_STAR] = ACTIONS(9031), + [anon_sym_DASH_GT] = ACTIONS(9031), + [anon_sym_L_DQUOTE] = ACTIONS(9031), + [anon_sym_u_DQUOTE] = ACTIONS(9031), + [anon_sym_U_DQUOTE] = ACTIONS(9031), + [anon_sym_u8_DQUOTE] = ACTIONS(9031), + [anon_sym_DQUOTE] = ACTIONS(9031), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9031), + [anon_sym_LR_DQUOTE] = ACTIONS(9031), + [anon_sym_uR_DQUOTE] = ACTIONS(9031), + [anon_sym_UR_DQUOTE] = ACTIONS(9031), + [anon_sym_u8R_DQUOTE] = ACTIONS(9031), + [anon_sym_COLON_RBRACK] = ACTIONS(9031), + [sym_literal_suffix] = ACTIONS(9029), }, - [STATE(3215)] = { + [STATE(3225)] = { [sym_identifier] = ACTIONS(7779), [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), [anon_sym_COMMA] = ACTIONS(7781), [anon_sym_RPAREN] = ACTIONS(7781), + [aux_sym_preproc_if_token2] = ACTIONS(7781), + [aux_sym_preproc_else_token1] = ACTIONS(7781), + [aux_sym_preproc_elif_token1] = ACTIONS(7779), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7781), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7781), [anon_sym_LPAREN2] = ACTIONS(7781), [anon_sym_DASH] = ACTIONS(7779), [anon_sym_PLUS] = ACTIONS(7779), @@ -409306,15 +421012,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(7779), [anon_sym___attribute] = ACTIONS(7779), [anon_sym_COLON] = ACTIONS(7779), + [anon_sym_COLON_COLON] = ACTIONS(7781), [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_LBRACK] = ACTIONS(7779), [anon_sym_const] = ACTIONS(7779), [anon_sym_constexpr] = ACTIONS(7779), [anon_sym_volatile] = ACTIONS(7779), @@ -409329,7 +421031,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -409344,40684 +421045,42407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7781), [anon_sym_DASH_GT] = ACTIONS(7781), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7779), [anon_sym_final] = ACTIONS(7779), [anon_sym_override] = ACTIONS(7779), + [anon_sym_template] = ACTIONS(7779), [anon_sym_requires] = ACTIONS(7779), + [anon_sym_LBRACK_COLON] = ACTIONS(7781), [anon_sym_COLON_RBRACK] = ACTIONS(7781), }, - [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7741), - [anon_sym_override] = ACTIONS(7741), - [anon_sym_GT2] = ACTIONS(7741), - [anon_sym_requires] = ACTIONS(7741), - }, - [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), - }, - [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_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7745), - [anon_sym_override] = ACTIONS(7745), - [anon_sym_GT2] = ACTIONS(7745), - [anon_sym_requires] = ACTIONS(7745), - }, - [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), - }, - [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), - }, - [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), - }, [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(7858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7860), + [anon_sym_COMMA] = ACTIONS(7860), + [anon_sym_RPAREN] = ACTIONS(7860), + [aux_sym_preproc_if_token2] = ACTIONS(7860), + [aux_sym_preproc_else_token1] = ACTIONS(7860), + [aux_sym_preproc_elif_token1] = ACTIONS(7858), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7860), + [anon_sym_LPAREN2] = ACTIONS(7860), + [anon_sym_DASH] = ACTIONS(7858), + [anon_sym_PLUS] = ACTIONS(7858), + [anon_sym_STAR] = ACTIONS(7860), + [anon_sym_SLASH] = ACTIONS(7858), + [anon_sym_PERCENT] = ACTIONS(7860), + [anon_sym_PIPE_PIPE] = ACTIONS(7860), + [anon_sym_AMP_AMP] = ACTIONS(7860), + [anon_sym_PIPE] = ACTIONS(7858), + [anon_sym_CARET] = ACTIONS(7860), + [anon_sym_AMP] = ACTIONS(7858), + [anon_sym_EQ_EQ] = ACTIONS(7860), + [anon_sym_BANG_EQ] = ACTIONS(7860), + [anon_sym_GT] = ACTIONS(7858), + [anon_sym_GT_EQ] = ACTIONS(7860), + [anon_sym_LT_EQ] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(7858), + [anon_sym_LT_LT] = ACTIONS(7860), + [anon_sym_GT_GT] = ACTIONS(7860), + [anon_sym_SEMI] = ACTIONS(7860), + [anon_sym___extension__] = ACTIONS(7858), + [anon_sym___attribute__] = ACTIONS(7858), + [anon_sym___attribute] = ACTIONS(7858), + [anon_sym_COLON] = ACTIONS(7858), + [anon_sym_COLON_COLON] = ACTIONS(7860), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7860), + [anon_sym_LBRACE] = ACTIONS(7860), + [anon_sym_RBRACE] = ACTIONS(7860), + [anon_sym_LBRACK] = ACTIONS(7858), + [anon_sym_const] = ACTIONS(7858), + [anon_sym_constexpr] = ACTIONS(7858), + [anon_sym_volatile] = ACTIONS(7858), + [anon_sym_restrict] = ACTIONS(7858), + [anon_sym___restrict__] = ACTIONS(7858), + [anon_sym__Atomic] = ACTIONS(7858), + [anon_sym__Noreturn] = ACTIONS(7858), + [anon_sym_noreturn] = ACTIONS(7858), + [anon_sym__Nonnull] = ACTIONS(7858), + [anon_sym_mutable] = ACTIONS(7858), + [anon_sym_constinit] = ACTIONS(7858), + [anon_sym_consteval] = ACTIONS(7858), + [anon_sym_alignas] = ACTIONS(7858), + [anon_sym__Alignas] = ACTIONS(7858), + [anon_sym_QMARK] = ACTIONS(7860), + [anon_sym_LT_EQ_GT] = ACTIONS(7860), + [anon_sym_or] = ACTIONS(7858), + [anon_sym_and] = ACTIONS(7858), + [anon_sym_bitor] = ACTIONS(7858), + [anon_sym_xor] = ACTIONS(7858), + [anon_sym_bitand] = ACTIONS(7858), + [anon_sym_not_eq] = ACTIONS(7858), + [anon_sym_DASH_DASH] = ACTIONS(7860), + [anon_sym_PLUS_PLUS] = ACTIONS(7860), + [anon_sym_DOT] = ACTIONS(7858), + [anon_sym_DOT_STAR] = ACTIONS(7860), + [anon_sym_DASH_GT] = ACTIONS(7860), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7858), + [anon_sym_final] = ACTIONS(7858), + [anon_sym_override] = ACTIONS(7858), + [anon_sym_template] = ACTIONS(7858), + [anon_sym_requires] = ACTIONS(7858), + [anon_sym_LBRACK_COLON] = ACTIONS(7860), + [anon_sym_COLON_RBRACK] = ACTIONS(7860), }, [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_identifier] = 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_TILDE] = ACTIONS(4034), + [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_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_typename] = ACTIONS(4032), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7745), - [anon_sym_override] = ACTIONS(7745), - [anon_sym_requires] = ACTIONS(7745), + [sym_auto] = ACTIONS(4032), + [anon_sym_decltype] = ACTIONS(4032), + [anon_sym_explicit] = ACTIONS(4032), + [anon_sym_private] = ACTIONS(4032), + [anon_sym_template] = ACTIONS(4032), + [anon_sym_operator] = ACTIONS(4032), + [anon_sym_friend] = ACTIONS(4032), + [anon_sym_public] = ACTIONS(4032), + [anon_sym_protected] = ACTIONS(4032), + [anon_sym_static_assert] = ACTIONS(4032), + [anon_sym_LBRACK_COLON] = ACTIONS(4034), }, [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), + [sym_identifier] = ACTIONS(9033), + [aux_sym_preproc_def_token1] = ACTIONS(9033), + [aux_sym_preproc_if_token1] = ACTIONS(9033), + [aux_sym_preproc_if_token2] = ACTIONS(9033), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9033), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9033), + [aux_sym_preproc_else_token1] = ACTIONS(9033), + [aux_sym_preproc_elif_token1] = ACTIONS(9033), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9033), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9033), + [sym_preproc_directive] = ACTIONS(9033), + [anon_sym_LPAREN2] = ACTIONS(9035), + [anon_sym_TILDE] = ACTIONS(9035), + [anon_sym_STAR] = ACTIONS(9035), + [anon_sym_AMP_AMP] = ACTIONS(9035), + [anon_sym_AMP] = ACTIONS(9033), + [anon_sym_SEMI] = ACTIONS(9035), + [anon_sym___extension__] = ACTIONS(9033), + [anon_sym_typedef] = ACTIONS(9033), + [anon_sym_virtual] = ACTIONS(9033), + [anon_sym_extern] = ACTIONS(9033), + [anon_sym___attribute__] = ACTIONS(9033), + [anon_sym___attribute] = ACTIONS(9033), + [anon_sym_using] = ACTIONS(9033), + [anon_sym_COLON_COLON] = ACTIONS(9035), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9035), + [anon_sym___declspec] = ACTIONS(9033), + [anon_sym___based] = ACTIONS(9033), + [anon_sym_signed] = ACTIONS(9033), + [anon_sym_unsigned] = ACTIONS(9033), + [anon_sym_long] = ACTIONS(9033), + [anon_sym_short] = ACTIONS(9033), + [anon_sym_LBRACK] = ACTIONS(9033), + [anon_sym_static] = ACTIONS(9033), + [anon_sym_register] = ACTIONS(9033), + [anon_sym_inline] = ACTIONS(9033), + [anon_sym___inline] = ACTIONS(9033), + [anon_sym___inline__] = ACTIONS(9033), + [anon_sym___forceinline] = ACTIONS(9033), + [anon_sym_thread_local] = ACTIONS(9033), + [anon_sym___thread] = ACTIONS(9033), + [anon_sym_const] = ACTIONS(9033), + [anon_sym_constexpr] = ACTIONS(9033), + [anon_sym_volatile] = ACTIONS(9033), + [anon_sym_restrict] = ACTIONS(9033), + [anon_sym___restrict__] = ACTIONS(9033), + [anon_sym__Atomic] = ACTIONS(9033), + [anon_sym__Noreturn] = ACTIONS(9033), + [anon_sym_noreturn] = ACTIONS(9033), + [anon_sym__Nonnull] = ACTIONS(9033), + [anon_sym_mutable] = ACTIONS(9033), + [anon_sym_constinit] = ACTIONS(9033), + [anon_sym_consteval] = ACTIONS(9033), + [anon_sym_alignas] = ACTIONS(9033), + [anon_sym__Alignas] = ACTIONS(9033), + [sym_primitive_type] = ACTIONS(9033), + [anon_sym_enum] = ACTIONS(9033), + [anon_sym_class] = ACTIONS(9033), + [anon_sym_struct] = ACTIONS(9033), + [anon_sym_union] = ACTIONS(9033), + [anon_sym_typename] = ACTIONS(9033), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9033), + [anon_sym_decltype] = ACTIONS(9033), + [anon_sym_explicit] = ACTIONS(9033), + [anon_sym_private] = ACTIONS(9033), + [anon_sym_template] = ACTIONS(9033), + [anon_sym_operator] = ACTIONS(9033), + [anon_sym_friend] = ACTIONS(9033), + [anon_sym_public] = ACTIONS(9033), + [anon_sym_protected] = ACTIONS(9033), + [anon_sym_static_assert] = ACTIONS(9033), + [anon_sym_LBRACK_COLON] = ACTIONS(9035), }, [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), + [sym_identifier] = ACTIONS(4017), + [aux_sym_preproc_def_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token2] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4017), + [aux_sym_preproc_else_token1] = ACTIONS(4017), + [aux_sym_preproc_elif_token1] = ACTIONS(4017), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4017), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4017), + [sym_preproc_directive] = ACTIONS(4017), + [anon_sym_LPAREN2] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_AMP_AMP] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_SEMI] = ACTIONS(4019), + [anon_sym___extension__] = ACTIONS(4017), + [anon_sym_typedef] = ACTIONS(4017), + [anon_sym_virtual] = ACTIONS(4017), + [anon_sym_extern] = ACTIONS(4017), + [anon_sym___attribute__] = ACTIONS(4017), + [anon_sym___attribute] = ACTIONS(4017), + [anon_sym_using] = ACTIONS(4017), + [anon_sym_COLON_COLON] = ACTIONS(4019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4019), + [anon_sym___declspec] = ACTIONS(4017), + [anon_sym___based] = ACTIONS(4017), + [anon_sym_signed] = ACTIONS(4017), + [anon_sym_unsigned] = ACTIONS(4017), + [anon_sym_long] = ACTIONS(4017), + [anon_sym_short] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4017), + [anon_sym_static] = ACTIONS(4017), + [anon_sym_register] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym___inline] = ACTIONS(4017), + [anon_sym___inline__] = ACTIONS(4017), + [anon_sym___forceinline] = ACTIONS(4017), + [anon_sym_thread_local] = ACTIONS(4017), + [anon_sym___thread] = ACTIONS(4017), + [anon_sym_const] = ACTIONS(4017), + [anon_sym_constexpr] = ACTIONS(4017), + [anon_sym_volatile] = ACTIONS(4017), + [anon_sym_restrict] = ACTIONS(4017), + [anon_sym___restrict__] = ACTIONS(4017), + [anon_sym__Atomic] = ACTIONS(4017), + [anon_sym__Noreturn] = ACTIONS(4017), + [anon_sym_noreturn] = ACTIONS(4017), + [anon_sym__Nonnull] = ACTIONS(4017), + [anon_sym_mutable] = ACTIONS(4017), + [anon_sym_constinit] = ACTIONS(4017), + [anon_sym_consteval] = ACTIONS(4017), + [anon_sym_alignas] = ACTIONS(4017), + [anon_sym__Alignas] = ACTIONS(4017), + [sym_primitive_type] = ACTIONS(4017), + [anon_sym_enum] = ACTIONS(4017), + [anon_sym_class] = ACTIONS(4017), + [anon_sym_struct] = ACTIONS(4017), + [anon_sym_union] = ACTIONS(4017), + [anon_sym_typename] = ACTIONS(4017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4017), + [anon_sym_decltype] = ACTIONS(4017), + [anon_sym_explicit] = ACTIONS(4017), + [anon_sym_private] = ACTIONS(4017), + [anon_sym_template] = ACTIONS(4017), + [anon_sym_operator] = ACTIONS(4017), + [anon_sym_friend] = ACTIONS(4017), + [anon_sym_public] = ACTIONS(4017), + [anon_sym_protected] = ACTIONS(4017), + [anon_sym_static_assert] = ACTIONS(4017), + [anon_sym_LBRACK_COLON] = ACTIONS(4019), }, [STATE(3230)] = { + [sym__abstract_declarator] = STATE(5996), + [sym_abstract_parenthesized_declarator] = STATE(5674), + [sym_abstract_pointer_declarator] = STATE(5674), + [sym_abstract_function_declarator] = STATE(5674), + [sym_abstract_array_declarator] = STATE(5674), + [sym_parameter_list] = STATE(2068), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5674), + [sym__function_declarator_seq] = STATE(5677), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9573), + [sym_abstract_qualified_identifier] = STATE(5674), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(6698), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6758), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6760), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6762), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7864), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(6714), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7864), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_and_eq] = ACTIONS(7864), + [anon_sym_or_eq] = ACTIONS(7864), + [anon_sym_xor_eq] = ACTIONS(7864), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7862), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(7862), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3231)] = { + [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), + [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(7755), + [anon_sym_STAR] = ACTIONS(7757), [anon_sym_SLASH] = ACTIONS(7755), - [anon_sym_PERCENT] = 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(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(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_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_COLON_COLON] = ACTIONS(7757), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7757), [anon_sym_LBRACE] = ACTIONS(7757), - [anon_sym_LBRACK] = ACTIONS(7757), - [anon_sym_EQ] = ACTIONS(7755), + [anon_sym_RBRACE] = ACTIONS(7757), + [anon_sym_LBRACK] = 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_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_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_bitor] = ACTIONS(7755), [anon_sym_xor] = ACTIONS(7755), - [anon_sym_bitand] = ACTIONS(7757), - [anon_sym_not_eq] = ACTIONS(7757), + [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(7757), - [anon_sym_override] = ACTIONS(7757), - [anon_sym_GT2] = ACTIONS(7757), - [anon_sym_requires] = ACTIONS(7757), - }, - [STATE(3231)] = { - [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), - [anon_sym_final] = ACTIONS(7753), - [anon_sym_override] = ACTIONS(7753), - [anon_sym_requires] = ACTIONS(7753), + [anon_sym_decltype] = ACTIONS(7755), + [anon_sym_final] = ACTIONS(7755), + [anon_sym_override] = ACTIONS(7755), + [anon_sym_template] = ACTIONS(7755), + [anon_sym_requires] = ACTIONS(7755), + [anon_sym_LBRACK_COLON] = ACTIONS(7757), + [anon_sym_COLON_RBRACK] = ACTIONS(7757), }, [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), + [sym_identifier] = ACTIONS(4331), + [aux_sym_preproc_def_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token2] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), + [aux_sym_preproc_else_token1] = ACTIONS(4331), + [aux_sym_preproc_elif_token1] = ACTIONS(4331), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4331), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4331), + [sym_preproc_directive] = ACTIONS(4331), + [anon_sym_LPAREN2] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym___extension__] = ACTIONS(4331), + [anon_sym_typedef] = ACTIONS(4331), + [anon_sym_virtual] = ACTIONS(4331), + [anon_sym_extern] = ACTIONS(4331), + [anon_sym___attribute__] = ACTIONS(4331), + [anon_sym___attribute] = ACTIONS(4331), + [anon_sym_using] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4333), + [anon_sym___declspec] = ACTIONS(4331), + [anon_sym___based] = ACTIONS(4331), + [anon_sym_signed] = ACTIONS(4331), + [anon_sym_unsigned] = ACTIONS(4331), + [anon_sym_long] = ACTIONS(4331), + [anon_sym_short] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_static] = ACTIONS(4331), + [anon_sym_register] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym___inline] = ACTIONS(4331), + [anon_sym___inline__] = ACTIONS(4331), + [anon_sym___forceinline] = ACTIONS(4331), + [anon_sym_thread_local] = ACTIONS(4331), + [anon_sym___thread] = ACTIONS(4331), + [anon_sym_const] = ACTIONS(4331), + [anon_sym_constexpr] = ACTIONS(4331), + [anon_sym_volatile] = ACTIONS(4331), + [anon_sym_restrict] = ACTIONS(4331), + [anon_sym___restrict__] = ACTIONS(4331), + [anon_sym__Atomic] = ACTIONS(4331), + [anon_sym__Noreturn] = ACTIONS(4331), + [anon_sym_noreturn] = ACTIONS(4331), + [anon_sym__Nonnull] = ACTIONS(4331), + [anon_sym_mutable] = ACTIONS(4331), + [anon_sym_constinit] = ACTIONS(4331), + [anon_sym_consteval] = ACTIONS(4331), + [anon_sym_alignas] = ACTIONS(4331), + [anon_sym__Alignas] = ACTIONS(4331), + [sym_primitive_type] = ACTIONS(4331), + [anon_sym_enum] = ACTIONS(4331), + [anon_sym_class] = ACTIONS(4331), + [anon_sym_struct] = ACTIONS(4331), + [anon_sym_union] = ACTIONS(4331), + [anon_sym_typename] = ACTIONS(4331), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4331), + [anon_sym_decltype] = ACTIONS(4331), + [anon_sym_explicit] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_template] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_friend] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_static_assert] = ACTIONS(4331), + [anon_sym_LBRACK_COLON] = ACTIONS(4333), }, [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_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7757), - [anon_sym_override] = ACTIONS(7757), - [anon_sym_requires] = ACTIONS(7757), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [aux_sym_preproc_else_token1] = ACTIONS(4335), + [aux_sym_preproc_elif_token1] = ACTIONS(4335), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4335), + [anon_sym_typedef] = ACTIONS(4335), + [anon_sym_virtual] = ACTIONS(4335), + [anon_sym_extern] = ACTIONS(4335), + [anon_sym___attribute__] = ACTIONS(4335), + [anon_sym___attribute] = ACTIONS(4335), + [anon_sym_using] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4337), + [anon_sym___declspec] = ACTIONS(4335), + [anon_sym___based] = ACTIONS(4335), + [anon_sym_signed] = ACTIONS(4335), + [anon_sym_unsigned] = ACTIONS(4335), + [anon_sym_long] = ACTIONS(4335), + [anon_sym_short] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4335), + [anon_sym_static] = ACTIONS(4335), + [anon_sym_register] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym___inline] = ACTIONS(4335), + [anon_sym___inline__] = ACTIONS(4335), + [anon_sym___forceinline] = ACTIONS(4335), + [anon_sym_thread_local] = ACTIONS(4335), + [anon_sym___thread] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(4335), + [anon_sym_constexpr] = ACTIONS(4335), + [anon_sym_volatile] = ACTIONS(4335), + [anon_sym_restrict] = ACTIONS(4335), + [anon_sym___restrict__] = ACTIONS(4335), + [anon_sym__Atomic] = ACTIONS(4335), + [anon_sym__Noreturn] = ACTIONS(4335), + [anon_sym_noreturn] = ACTIONS(4335), + [anon_sym__Nonnull] = ACTIONS(4335), + [anon_sym_mutable] = ACTIONS(4335), + [anon_sym_constinit] = ACTIONS(4335), + [anon_sym_consteval] = ACTIONS(4335), + [anon_sym_alignas] = ACTIONS(4335), + [anon_sym__Alignas] = ACTIONS(4335), + [sym_primitive_type] = ACTIONS(4335), + [anon_sym_enum] = ACTIONS(4335), + [anon_sym_class] = ACTIONS(4335), + [anon_sym_struct] = ACTIONS(4335), + [anon_sym_union] = ACTIONS(4335), + [anon_sym_typename] = ACTIONS(4335), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4335), + [anon_sym_decltype] = ACTIONS(4335), + [anon_sym_explicit] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_template] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_friend] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_static_assert] = ACTIONS(4335), + [anon_sym_LBRACK_COLON] = ACTIONS(4337), }, [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), + [sym_identifier] = ACTIONS(4072), + [aux_sym_preproc_def_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token2] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4072), + [aux_sym_preproc_else_token1] = ACTIONS(4072), + [aux_sym_preproc_elif_token1] = ACTIONS(4072), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4072), + [sym_preproc_directive] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4072), + [anon_sym_typedef] = ACTIONS(4072), + [anon_sym_virtual] = ACTIONS(4072), + [anon_sym_extern] = ACTIONS(4072), + [anon_sym___attribute__] = ACTIONS(4072), + [anon_sym___attribute] = ACTIONS(4072), + [anon_sym_using] = ACTIONS(4072), + [anon_sym_COLON_COLON] = ACTIONS(4074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4074), + [anon_sym___declspec] = ACTIONS(4072), + [anon_sym___based] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4072), + [anon_sym_unsigned] = ACTIONS(4072), + [anon_sym_long] = ACTIONS(4072), + [anon_sym_short] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_static] = ACTIONS(4072), + [anon_sym_register] = ACTIONS(4072), + [anon_sym_inline] = ACTIONS(4072), + [anon_sym___inline] = ACTIONS(4072), + [anon_sym___inline__] = ACTIONS(4072), + [anon_sym___forceinline] = ACTIONS(4072), + [anon_sym_thread_local] = ACTIONS(4072), + [anon_sym___thread] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4072), + [anon_sym_constexpr] = ACTIONS(4072), + [anon_sym_volatile] = ACTIONS(4072), + [anon_sym_restrict] = ACTIONS(4072), + [anon_sym___restrict__] = ACTIONS(4072), + [anon_sym__Atomic] = ACTIONS(4072), + [anon_sym__Noreturn] = ACTIONS(4072), + [anon_sym_noreturn] = ACTIONS(4072), + [anon_sym__Nonnull] = ACTIONS(4072), + [anon_sym_mutable] = ACTIONS(4072), + [anon_sym_constinit] = ACTIONS(4072), + [anon_sym_consteval] = ACTIONS(4072), + [anon_sym_alignas] = ACTIONS(4072), + [anon_sym__Alignas] = ACTIONS(4072), + [sym_primitive_type] = ACTIONS(4072), + [anon_sym_enum] = ACTIONS(4072), + [anon_sym_class] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_union] = ACTIONS(4072), + [anon_sym_typename] = ACTIONS(4072), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4072), + [anon_sym_decltype] = ACTIONS(4072), + [anon_sym_explicit] = ACTIONS(4072), + [anon_sym_private] = ACTIONS(4072), + [anon_sym_template] = ACTIONS(4072), + [anon_sym_operator] = ACTIONS(4072), + [anon_sym_friend] = ACTIONS(4072), + [anon_sym_public] = ACTIONS(4072), + [anon_sym_protected] = ACTIONS(4072), + [anon_sym_static_assert] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4074), }, [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), + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token2] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [aux_sym_preproc_else_token1] = ACTIONS(3708), + [aux_sym_preproc_elif_token1] = ACTIONS(3708), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_private] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_friend] = ACTIONS(3708), + [anon_sym_public] = ACTIONS(3708), + [anon_sym_protected] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), }, [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), + [sym_identifier] = ACTIONS(4339), + [aux_sym_preproc_def_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token2] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4339), + [aux_sym_preproc_else_token1] = ACTIONS(4339), + [aux_sym_preproc_elif_token1] = ACTIONS(4339), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4339), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4339), + [sym_preproc_directive] = ACTIONS(4339), + [anon_sym_LPAREN2] = ACTIONS(4341), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym___extension__] = ACTIONS(4339), + [anon_sym_typedef] = ACTIONS(4339), + [anon_sym_virtual] = ACTIONS(4339), + [anon_sym_extern] = ACTIONS(4339), + [anon_sym___attribute__] = ACTIONS(4339), + [anon_sym___attribute] = ACTIONS(4339), + [anon_sym_using] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4341), + [anon_sym___declspec] = ACTIONS(4339), + [anon_sym___based] = ACTIONS(4339), + [anon_sym_signed] = ACTIONS(4339), + [anon_sym_unsigned] = ACTIONS(4339), + [anon_sym_long] = ACTIONS(4339), + [anon_sym_short] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_static] = ACTIONS(4339), + [anon_sym_register] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym___inline] = ACTIONS(4339), + [anon_sym___inline__] = ACTIONS(4339), + [anon_sym___forceinline] = ACTIONS(4339), + [anon_sym_thread_local] = ACTIONS(4339), + [anon_sym___thread] = ACTIONS(4339), + [anon_sym_const] = ACTIONS(4339), + [anon_sym_constexpr] = ACTIONS(4339), + [anon_sym_volatile] = ACTIONS(4339), + [anon_sym_restrict] = ACTIONS(4339), + [anon_sym___restrict__] = ACTIONS(4339), + [anon_sym__Atomic] = ACTIONS(4339), + [anon_sym__Noreturn] = ACTIONS(4339), + [anon_sym_noreturn] = ACTIONS(4339), + [anon_sym__Nonnull] = ACTIONS(4339), + [anon_sym_mutable] = ACTIONS(4339), + [anon_sym_constinit] = ACTIONS(4339), + [anon_sym_consteval] = ACTIONS(4339), + [anon_sym_alignas] = ACTIONS(4339), + [anon_sym__Alignas] = ACTIONS(4339), + [sym_primitive_type] = ACTIONS(4339), + [anon_sym_enum] = ACTIONS(4339), + [anon_sym_class] = ACTIONS(4339), + [anon_sym_struct] = ACTIONS(4339), + [anon_sym_union] = ACTIONS(4339), + [anon_sym_typename] = ACTIONS(4339), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4339), + [anon_sym_decltype] = ACTIONS(4339), + [anon_sym_explicit] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_template] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_friend] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_static_assert] = ACTIONS(4339), + [anon_sym_LBRACK_COLON] = ACTIONS(4341), }, [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), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [aux_sym_preproc_if_token2] = ACTIONS(7447), + [aux_sym_preproc_else_token1] = ACTIONS(7447), + [aux_sym_preproc_elif_token1] = ACTIONS(7442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7447), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7447), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7442), + [anon_sym_LT_LT] = ACTIONS(7447), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_SEMI] = ACTIONS(7447), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7447), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7447), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + [anon_sym_COLON_RBRACK] = ACTIONS(7447), }, [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), + [sym_template_argument_list] = STATE(3319), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6776), + [anon_sym_RPAREN] = ACTIONS(6778), + [anon_sym_LPAREN2] = ACTIONS(6778), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6785), + [anon_sym_SLASH] = ACTIONS(6783), + [anon_sym_PERCENT] = ACTIONS(6783), + [anon_sym_PIPE_PIPE] = ACTIONS(6776), + [anon_sym_AMP_AMP] = ACTIONS(6778), + [anon_sym_PIPE] = ACTIONS(6783), + [anon_sym_CARET] = ACTIONS(6783), + [anon_sym_AMP] = ACTIONS(6785), + [anon_sym_EQ_EQ] = ACTIONS(6776), + [anon_sym_BANG_EQ] = ACTIONS(6776), + [anon_sym_GT] = ACTIONS(6783), + [anon_sym_GT_EQ] = ACTIONS(6776), + [anon_sym_LT_EQ] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(9037), + [anon_sym_LT_LT] = ACTIONS(6783), + [anon_sym_GT_GT] = ACTIONS(6783), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6785), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6776), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6776), + [anon_sym_or] = ACTIONS(6783), + [anon_sym_and] = ACTIONS(6783), + [anon_sym_bitor] = ACTIONS(6783), + [anon_sym_xor] = ACTIONS(6783), + [anon_sym_bitand] = ACTIONS(6783), + [anon_sym_not_eq] = ACTIONS(6783), + [anon_sym_DASH_DASH] = ACTIONS(6776), + [anon_sym_PLUS_PLUS] = ACTIONS(6776), + [anon_sym_DOT] = ACTIONS(6783), + [anon_sym_DOT_STAR] = ACTIONS(6776), + [anon_sym_DASH_GT] = ACTIONS(6776), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, [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), + [sym__declaration_modifiers] = STATE(5767), + [sym_attribute_specifier] = STATE(5767), + [sym_attribute_declaration] = STATE(5767), + [sym_ms_declspec_modifier] = STATE(5767), + [sym_storage_class_specifier] = STATE(5767), + [sym_type_qualifier] = STATE(5767), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4365), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9818), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4349), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(5767), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(9014), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5190), + [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(3536), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token2] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [aux_sym_preproc_else_token1] = ACTIONS(3708), + [aux_sym_preproc_elif_token1] = ACTIONS(3708), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_private] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_friend] = ACTIONS(3708), + [anon_sym_public] = ACTIONS(3708), + [anon_sym_protected] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), }, [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), + [sym_identifier] = ACTIONS(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token2] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [aux_sym_preproc_else_token1] = ACTIONS(3716), + [aux_sym_preproc_elif_token1] = ACTIONS(3716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_friend] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), }, [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), + [sym_identifier] = ACTIONS(4060), + [aux_sym_preproc_def_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token2] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4060), + [aux_sym_preproc_else_token1] = ACTIONS(4060), + [aux_sym_preproc_elif_token1] = ACTIONS(4060), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4060), + [sym_preproc_directive] = ACTIONS(4060), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym___extension__] = ACTIONS(4060), + [anon_sym_typedef] = ACTIONS(4060), + [anon_sym_virtual] = ACTIONS(4060), + [anon_sym_extern] = ACTIONS(4060), + [anon_sym___attribute__] = ACTIONS(4060), + [anon_sym___attribute] = ACTIONS(4060), + [anon_sym_using] = ACTIONS(4060), + [anon_sym_COLON_COLON] = ACTIONS(4062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4062), + [anon_sym___declspec] = ACTIONS(4060), + [anon_sym___based] = ACTIONS(4060), + [anon_sym_signed] = ACTIONS(4060), + [anon_sym_unsigned] = ACTIONS(4060), + [anon_sym_long] = ACTIONS(4060), + [anon_sym_short] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_static] = ACTIONS(4060), + [anon_sym_register] = ACTIONS(4060), + [anon_sym_inline] = ACTIONS(4060), + [anon_sym___inline] = ACTIONS(4060), + [anon_sym___inline__] = ACTIONS(4060), + [anon_sym___forceinline] = ACTIONS(4060), + [anon_sym_thread_local] = ACTIONS(4060), + [anon_sym___thread] = ACTIONS(4060), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_constexpr] = ACTIONS(4060), + [anon_sym_volatile] = ACTIONS(4060), + [anon_sym_restrict] = ACTIONS(4060), + [anon_sym___restrict__] = ACTIONS(4060), + [anon_sym__Atomic] = ACTIONS(4060), + [anon_sym__Noreturn] = ACTIONS(4060), + [anon_sym_noreturn] = ACTIONS(4060), + [anon_sym__Nonnull] = ACTIONS(4060), + [anon_sym_mutable] = ACTIONS(4060), + [anon_sym_constinit] = ACTIONS(4060), + [anon_sym_consteval] = ACTIONS(4060), + [anon_sym_alignas] = ACTIONS(4060), + [anon_sym__Alignas] = ACTIONS(4060), + [sym_primitive_type] = ACTIONS(4060), + [anon_sym_enum] = ACTIONS(4060), + [anon_sym_class] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4060), + [anon_sym_union] = ACTIONS(4060), + [anon_sym_typename] = ACTIONS(4060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4060), + [anon_sym_decltype] = ACTIONS(4060), + [anon_sym_explicit] = ACTIONS(4060), + [anon_sym_private] = ACTIONS(4060), + [anon_sym_template] = ACTIONS(4060), + [anon_sym_operator] = ACTIONS(4060), + [anon_sym_friend] = ACTIONS(4060), + [anon_sym_public] = ACTIONS(4060), + [anon_sym_protected] = ACTIONS(4060), + [anon_sym_static_assert] = ACTIONS(4060), + [anon_sym_LBRACK_COLON] = ACTIONS(4062), }, [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), + [sym_type_qualifier] = STATE(3215), + [sym_alignas_qualifier] = STATE(2870), + [aux_sym__type_definition_type_repeat1] = STATE(3215), + [aux_sym_sized_type_specifier_repeat1] = STATE(3494), + [sym_identifier] = ACTIONS(9040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_TILDE] = ACTIONS(6934), + [anon_sym_STAR] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_SEMI] = ACTIONS(6934), + [anon_sym___extension__] = ACTIONS(9043), + [anon_sym_virtual] = ACTIONS(6936), + [anon_sym_extern] = ACTIONS(6936), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON] = ACTIONS(6936), + [anon_sym_COLON_COLON] = ACTIONS(6934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6934), + [anon_sym___declspec] = ACTIONS(6936), + [anon_sym___based] = ACTIONS(6936), + [anon_sym___cdecl] = ACTIONS(6936), + [anon_sym___clrcall] = ACTIONS(6936), + [anon_sym___stdcall] = ACTIONS(6936), + [anon_sym___fastcall] = ACTIONS(6936), + [anon_sym___thiscall] = ACTIONS(6936), + [anon_sym___vectorcall] = ACTIONS(6936), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(9046), + [anon_sym_unsigned] = ACTIONS(9046), + [anon_sym_long] = ACTIONS(9046), + [anon_sym_short] = ACTIONS(9046), + [anon_sym_LBRACK] = ACTIONS(6936), + [anon_sym_static] = ACTIONS(6936), + [anon_sym_EQ] = ACTIONS(6934), + [anon_sym_register] = ACTIONS(6936), + [anon_sym_inline] = ACTIONS(6936), + [anon_sym___inline] = ACTIONS(6936), + [anon_sym___inline__] = ACTIONS(6936), + [anon_sym___forceinline] = ACTIONS(6936), + [anon_sym_thread_local] = ACTIONS(6936), + [anon_sym___thread] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(9043), + [anon_sym_constexpr] = ACTIONS(9043), + [anon_sym_volatile] = ACTIONS(9043), + [anon_sym_restrict] = ACTIONS(9043), + [anon_sym___restrict__] = ACTIONS(9043), + [anon_sym__Atomic] = ACTIONS(9043), + [anon_sym__Noreturn] = ACTIONS(9043), + [anon_sym_noreturn] = ACTIONS(9043), + [anon_sym__Nonnull] = ACTIONS(9043), + [anon_sym_mutable] = ACTIONS(9043), + [anon_sym_constinit] = ACTIONS(9043), + [anon_sym_consteval] = ACTIONS(9043), + [anon_sym_alignas] = ACTIONS(9048), + [anon_sym__Alignas] = ACTIONS(9048), + [sym_primitive_type] = ACTIONS(9051), + [anon_sym_asm] = ACTIONS(6936), + [anon_sym___asm__] = ACTIONS(6936), + [anon_sym___asm] = ACTIONS(6936), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6936), + [anon_sym_final] = ACTIONS(6936), + [anon_sym_override] = ACTIONS(6936), + [anon_sym_template] = ACTIONS(6936), + [anon_sym_GT2] = ACTIONS(6934), + [anon_sym_operator] = ACTIONS(6936), + [anon_sym_try] = ACTIONS(6936), + [anon_sym_requires] = ACTIONS(6936), + [anon_sym_LBRACK_COLON] = ACTIONS(6934), }, [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), + [sym_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_RPAREN] = ACTIONS(7568), + [aux_sym_preproc_if_token2] = ACTIONS(7568), + [aux_sym_preproc_else_token1] = ACTIONS(7568), + [aux_sym_preproc_elif_token1] = ACTIONS(7566), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7568), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_STAR] = ACTIONS(7568), + [anon_sym_SLASH] = ACTIONS(7566), + [anon_sym_PERCENT] = ACTIONS(7568), + [anon_sym_PIPE_PIPE] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7566), + [anon_sym_CARET] = ACTIONS(7568), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_EQ_EQ] = ACTIONS(7568), + [anon_sym_BANG_EQ] = ACTIONS(7568), + [anon_sym_GT] = ACTIONS(7566), + [anon_sym_GT_EQ] = ACTIONS(7568), + [anon_sym_LT_EQ] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7566), + [anon_sym_LT_LT] = ACTIONS(7568), + [anon_sym_GT_GT] = ACTIONS(7568), + [anon_sym_SEMI] = ACTIONS(7568), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7568), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_RBRACE] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_mutable] = ACTIONS(7566), + [anon_sym_constinit] = ACTIONS(7566), + [anon_sym_consteval] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(7568), + [anon_sym_LT_EQ_GT] = ACTIONS(7568), + [anon_sym_or] = ACTIONS(7566), + [anon_sym_and] = ACTIONS(7566), + [anon_sym_bitor] = ACTIONS(7566), + [anon_sym_xor] = ACTIONS(7566), + [anon_sym_bitand] = ACTIONS(7566), + [anon_sym_not_eq] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(7568), + [anon_sym_PLUS_PLUS] = ACTIONS(7568), + [anon_sym_DOT] = ACTIONS(7566), + [anon_sym_DOT_STAR] = ACTIONS(7568), + [anon_sym_DASH_GT] = ACTIONS(7568), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7566), + [anon_sym_final] = ACTIONS(7566), + [anon_sym_override] = ACTIONS(7566), + [anon_sym_template] = ACTIONS(7566), + [anon_sym_requires] = ACTIONS(7566), + [anon_sym_LBRACK_COLON] = ACTIONS(7568), + [anon_sym_COLON_RBRACK] = ACTIONS(7568), }, [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), + [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(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), + [sym_identifier] = ACTIONS(9053), + [aux_sym_preproc_def_token1] = ACTIONS(9053), + [aux_sym_preproc_if_token1] = ACTIONS(9053), + [aux_sym_preproc_if_token2] = ACTIONS(9053), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9053), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9053), + [aux_sym_preproc_else_token1] = ACTIONS(9053), + [aux_sym_preproc_elif_token1] = ACTIONS(9053), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9053), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9053), + [sym_preproc_directive] = ACTIONS(9053), + [anon_sym_LPAREN2] = ACTIONS(9055), + [anon_sym_TILDE] = ACTIONS(9055), + [anon_sym_STAR] = ACTIONS(9055), + [anon_sym_AMP_AMP] = ACTIONS(9055), + [anon_sym_AMP] = ACTIONS(9053), + [anon_sym_SEMI] = ACTIONS(9055), + [anon_sym___extension__] = ACTIONS(9053), + [anon_sym_typedef] = ACTIONS(9053), + [anon_sym_virtual] = ACTIONS(9053), + [anon_sym_extern] = ACTIONS(9053), + [anon_sym___attribute__] = ACTIONS(9053), + [anon_sym___attribute] = ACTIONS(9053), + [anon_sym_using] = ACTIONS(9053), + [anon_sym_COLON_COLON] = ACTIONS(9055), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9055), + [anon_sym___declspec] = ACTIONS(9053), + [anon_sym___based] = ACTIONS(9053), + [anon_sym_signed] = ACTIONS(9053), + [anon_sym_unsigned] = ACTIONS(9053), + [anon_sym_long] = ACTIONS(9053), + [anon_sym_short] = ACTIONS(9053), + [anon_sym_LBRACK] = ACTIONS(9053), + [anon_sym_static] = ACTIONS(9053), + [anon_sym_register] = ACTIONS(9053), + [anon_sym_inline] = ACTIONS(9053), + [anon_sym___inline] = ACTIONS(9053), + [anon_sym___inline__] = ACTIONS(9053), + [anon_sym___forceinline] = ACTIONS(9053), + [anon_sym_thread_local] = ACTIONS(9053), + [anon_sym___thread] = ACTIONS(9053), + [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(9053), + [anon_sym__Alignas] = ACTIONS(9053), + [sym_primitive_type] = ACTIONS(9053), + [anon_sym_enum] = ACTIONS(9053), + [anon_sym_class] = ACTIONS(9053), + [anon_sym_struct] = ACTIONS(9053), + [anon_sym_union] = ACTIONS(9053), + [anon_sym_typename] = ACTIONS(9053), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9053), + [anon_sym_decltype] = ACTIONS(9053), + [anon_sym_explicit] = ACTIONS(9053), + [anon_sym_private] = ACTIONS(9053), + [anon_sym_template] = ACTIONS(9053), + [anon_sym_operator] = ACTIONS(9053), + [anon_sym_friend] = ACTIONS(9053), + [anon_sym_public] = ACTIONS(9053), + [anon_sym_protected] = ACTIONS(9053), + [anon_sym_static_assert] = ACTIONS(9053), + [anon_sym_LBRACK_COLON] = ACTIONS(9055), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(4038), + [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_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_typename] = ACTIONS(4036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4036), + [anon_sym_decltype] = ACTIONS(4036), + [anon_sym_explicit] = ACTIONS(4036), + [anon_sym_private] = ACTIONS(4036), + [anon_sym_template] = ACTIONS(4036), + [anon_sym_operator] = ACTIONS(4036), + [anon_sym_friend] = ACTIONS(4036), + [anon_sym_public] = ACTIONS(4036), + [anon_sym_protected] = ACTIONS(4036), + [anon_sym_static_assert] = ACTIONS(4036), + [anon_sym_LBRACK_COLON] = ACTIONS(4038), }, [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), + [sym_identifier] = ACTIONS(7743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_RPAREN] = ACTIONS(7745), + [aux_sym_preproc_if_token2] = ACTIONS(7745), + [aux_sym_preproc_else_token1] = ACTIONS(7745), + [aux_sym_preproc_elif_token1] = ACTIONS(7743), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7745), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7745), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7745), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7745), + [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(7745), + [anon_sym_GT_GT] = ACTIONS(7745), + [anon_sym_SEMI] = ACTIONS(7745), + [anon_sym___extension__] = ACTIONS(7743), + [anon_sym___attribute__] = ACTIONS(7743), + [anon_sym___attribute] = ACTIONS(7743), + [anon_sym_COLON] = ACTIONS(7743), + [anon_sym_COLON_COLON] = ACTIONS(7745), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7745), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_RBRACE] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7743), + [anon_sym_volatile] = ACTIONS(7743), + [anon_sym_restrict] = ACTIONS(7743), + [anon_sym___restrict__] = ACTIONS(7743), + [anon_sym__Atomic] = ACTIONS(7743), + [anon_sym__Noreturn] = ACTIONS(7743), + [anon_sym_noreturn] = ACTIONS(7743), + [anon_sym__Nonnull] = ACTIONS(7743), + [anon_sym_mutable] = ACTIONS(7743), + [anon_sym_constinit] = ACTIONS(7743), + [anon_sym_consteval] = ACTIONS(7743), + [anon_sym_alignas] = ACTIONS(7743), + [anon_sym__Alignas] = ACTIONS(7743), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7743), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7743), + [anon_sym_not_eq] = ACTIONS(7743), + [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_decltype] = ACTIONS(7743), + [anon_sym_final] = ACTIONS(7743), + [anon_sym_override] = ACTIONS(7743), + [anon_sym_template] = ACTIONS(7743), + [anon_sym_requires] = ACTIONS(7743), + [anon_sym_LBRACK_COLON] = ACTIONS(7745), + [anon_sym_COLON_RBRACK] = ACTIONS(7745), }, [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), + [sym_identifier] = ACTIONS(7751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_RPAREN] = ACTIONS(7753), + [aux_sym_preproc_if_token2] = ACTIONS(7753), + [aux_sym_preproc_else_token1] = ACTIONS(7753), + [aux_sym_preproc_elif_token1] = ACTIONS(7751), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7753), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7753), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7753), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7753), + [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(7753), + [anon_sym_GT_GT] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [anon_sym___extension__] = ACTIONS(7751), + [anon_sym___attribute__] = ACTIONS(7751), + [anon_sym___attribute] = ACTIONS(7751), + [anon_sym_COLON] = ACTIONS(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_restrict] = ACTIONS(7751), + [anon_sym___restrict__] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [anon_sym__Noreturn] = ACTIONS(7751), + [anon_sym_noreturn] = ACTIONS(7751), + [anon_sym__Nonnull] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [anon_sym_constinit] = ACTIONS(7751), + [anon_sym_consteval] = ACTIONS(7751), + [anon_sym_alignas] = ACTIONS(7751), + [anon_sym__Alignas] = ACTIONS(7751), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7751), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7751), + [anon_sym_not_eq] = ACTIONS(7751), + [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_decltype] = ACTIONS(7751), + [anon_sym_final] = ACTIONS(7751), + [anon_sym_override] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_requires] = ACTIONS(7751), + [anon_sym_LBRACK_COLON] = ACTIONS(7753), + [anon_sym_COLON_RBRACK] = ACTIONS(7753), }, [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), + [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(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_COLON_COLON] = ACTIONS(7761), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7761), + [anon_sym_LBRACE] = ACTIONS(7761), + [anon_sym_RBRACE] = ACTIONS(7761), + [anon_sym_LBRACK] = 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_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_decltype] = ACTIONS(7759), + [anon_sym_final] = ACTIONS(7759), + [anon_sym_override] = ACTIONS(7759), + [anon_sym_template] = ACTIONS(7759), + [anon_sym_requires] = ACTIONS(7759), + [anon_sym_LBRACK_COLON] = ACTIONS(7761), + [anon_sym_COLON_RBRACK] = ACTIONS(7761), }, [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), + [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(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), + [anon_sym___extension__] = ACTIONS(7767), + [anon_sym___attribute__] = ACTIONS(7767), + [anon_sym___attribute] = ACTIONS(7767), + [anon_sym_COLON] = ACTIONS(7767), + [anon_sym_COLON_COLON] = ACTIONS(7769), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7769), + [anon_sym_RBRACE] = ACTIONS(7769), + [anon_sym_LBRACK] = 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_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), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7767), + [anon_sym_final] = ACTIONS(7767), + [anon_sym_override] = ACTIONS(7767), + [anon_sym_template] = ACTIONS(7767), + [anon_sym_requires] = ACTIONS(7767), + [anon_sym_LBRACK_COLON] = ACTIONS(7769), + [anon_sym_COLON_RBRACK] = ACTIONS(7769), }, [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), + [sym_identifier] = ACTIONS(7786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7788), + [anon_sym_COMMA] = ACTIONS(7788), + [anon_sym_RPAREN] = ACTIONS(7788), + [aux_sym_preproc_if_token2] = ACTIONS(7788), + [aux_sym_preproc_else_token1] = ACTIONS(7788), + [aux_sym_preproc_elif_token1] = ACTIONS(7786), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7788), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7788), + [anon_sym_LPAREN2] = ACTIONS(7788), + [anon_sym_DASH] = ACTIONS(7786), + [anon_sym_PLUS] = ACTIONS(7786), + [anon_sym_STAR] = ACTIONS(7788), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_PERCENT] = ACTIONS(7788), + [anon_sym_PIPE_PIPE] = ACTIONS(7788), + [anon_sym_AMP_AMP] = ACTIONS(7788), + [anon_sym_PIPE] = ACTIONS(7786), + [anon_sym_CARET] = ACTIONS(7788), + [anon_sym_AMP] = ACTIONS(7786), + [anon_sym_EQ_EQ] = ACTIONS(7788), + [anon_sym_BANG_EQ] = ACTIONS(7788), + [anon_sym_GT] = ACTIONS(7786), + [anon_sym_GT_EQ] = ACTIONS(7788), + [anon_sym_LT_EQ] = ACTIONS(7786), + [anon_sym_LT] = ACTIONS(7786), + [anon_sym_LT_LT] = ACTIONS(7788), + [anon_sym_GT_GT] = ACTIONS(7788), + [anon_sym_SEMI] = ACTIONS(7788), + [anon_sym___extension__] = ACTIONS(7786), + [anon_sym___attribute__] = ACTIONS(7786), + [anon_sym___attribute] = ACTIONS(7786), + [anon_sym_COLON] = ACTIONS(7786), + [anon_sym_COLON_COLON] = ACTIONS(7788), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7788), + [anon_sym_LBRACE] = ACTIONS(7788), + [anon_sym_RBRACE] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7786), + [anon_sym_const] = ACTIONS(7786), + [anon_sym_constexpr] = ACTIONS(7786), + [anon_sym_volatile] = ACTIONS(7786), + [anon_sym_restrict] = ACTIONS(7786), + [anon_sym___restrict__] = ACTIONS(7786), + [anon_sym__Atomic] = ACTIONS(7786), + [anon_sym__Noreturn] = ACTIONS(7786), + [anon_sym_noreturn] = ACTIONS(7786), + [anon_sym__Nonnull] = ACTIONS(7786), + [anon_sym_mutable] = ACTIONS(7786), + [anon_sym_constinit] = ACTIONS(7786), + [anon_sym_consteval] = ACTIONS(7786), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7788), + [anon_sym_LT_EQ_GT] = ACTIONS(7788), + [anon_sym_or] = ACTIONS(7786), + [anon_sym_and] = ACTIONS(7786), + [anon_sym_bitor] = ACTIONS(7786), + [anon_sym_xor] = ACTIONS(7786), + [anon_sym_bitand] = ACTIONS(7786), + [anon_sym_not_eq] = ACTIONS(7786), + [anon_sym_DASH_DASH] = ACTIONS(7788), + [anon_sym_PLUS_PLUS] = ACTIONS(7788), + [anon_sym_DOT] = ACTIONS(7786), + [anon_sym_DOT_STAR] = ACTIONS(7788), + [anon_sym_DASH_GT] = ACTIONS(7788), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7786), + [anon_sym_final] = ACTIONS(7786), + [anon_sym_override] = ACTIONS(7786), + [anon_sym_template] = ACTIONS(7786), + [anon_sym_requires] = ACTIONS(7786), + [anon_sym_LBRACK_COLON] = ACTIONS(7788), + [anon_sym_COLON_RBRACK] = ACTIONS(7788), }, [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), + [sym_identifier] = ACTIONS(7806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7808), + [anon_sym_COMMA] = ACTIONS(7808), + [anon_sym_RPAREN] = ACTIONS(7808), + [aux_sym_preproc_if_token2] = ACTIONS(7808), + [aux_sym_preproc_else_token1] = ACTIONS(7808), + [aux_sym_preproc_elif_token1] = ACTIONS(7806), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7808), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7808), + [anon_sym_LPAREN2] = ACTIONS(7808), + [anon_sym_DASH] = ACTIONS(7806), + [anon_sym_PLUS] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7808), + [anon_sym_SLASH] = ACTIONS(7806), + [anon_sym_PERCENT] = ACTIONS(7808), + [anon_sym_PIPE_PIPE] = ACTIONS(7808), + [anon_sym_AMP_AMP] = ACTIONS(7808), + [anon_sym_PIPE] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7808), + [anon_sym_AMP] = ACTIONS(7806), + [anon_sym_EQ_EQ] = ACTIONS(7808), + [anon_sym_BANG_EQ] = ACTIONS(7808), + [anon_sym_GT] = ACTIONS(7806), + [anon_sym_GT_EQ] = ACTIONS(7808), + [anon_sym_LT_EQ] = ACTIONS(7806), + [anon_sym_LT] = ACTIONS(7806), + [anon_sym_LT_LT] = ACTIONS(7808), + [anon_sym_GT_GT] = ACTIONS(7808), + [anon_sym_SEMI] = ACTIONS(7808), + [anon_sym___extension__] = ACTIONS(7806), + [anon_sym___attribute__] = ACTIONS(7806), + [anon_sym___attribute] = ACTIONS(7806), + [anon_sym_COLON] = ACTIONS(7806), + [anon_sym_COLON_COLON] = ACTIONS(7808), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7808), + [anon_sym_LBRACE] = ACTIONS(7808), + [anon_sym_RBRACE] = ACTIONS(7808), + [anon_sym_LBRACK] = ACTIONS(7806), + [anon_sym_const] = ACTIONS(7806), + [anon_sym_constexpr] = ACTIONS(7806), + [anon_sym_volatile] = ACTIONS(7806), + [anon_sym_restrict] = ACTIONS(7806), + [anon_sym___restrict__] = ACTIONS(7806), + [anon_sym__Atomic] = ACTIONS(7806), + [anon_sym__Noreturn] = ACTIONS(7806), + [anon_sym_noreturn] = ACTIONS(7806), + [anon_sym__Nonnull] = ACTIONS(7806), + [anon_sym_mutable] = ACTIONS(7806), + [anon_sym_constinit] = ACTIONS(7806), + [anon_sym_consteval] = ACTIONS(7806), + [anon_sym_alignas] = ACTIONS(7806), + [anon_sym__Alignas] = ACTIONS(7806), + [anon_sym_QMARK] = ACTIONS(7808), + [anon_sym_LT_EQ_GT] = ACTIONS(7808), + [anon_sym_or] = ACTIONS(7806), + [anon_sym_and] = ACTIONS(7806), + [anon_sym_bitor] = ACTIONS(7806), + [anon_sym_xor] = ACTIONS(7806), + [anon_sym_bitand] = ACTIONS(7806), + [anon_sym_not_eq] = ACTIONS(7806), + [anon_sym_DASH_DASH] = ACTIONS(7808), + [anon_sym_PLUS_PLUS] = ACTIONS(7808), + [anon_sym_DOT] = ACTIONS(7806), + [anon_sym_DOT_STAR] = ACTIONS(7808), + [anon_sym_DASH_GT] = ACTIONS(7808), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7806), + [anon_sym_final] = ACTIONS(7806), + [anon_sym_override] = ACTIONS(7806), + [anon_sym_template] = ACTIONS(7806), + [anon_sym_requires] = ACTIONS(7806), + [anon_sym_LBRACK_COLON] = ACTIONS(7808), + [anon_sym_COLON_RBRACK] = ACTIONS(7808), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(4078), + [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_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_typename] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4076), + [anon_sym_decltype] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_private] = ACTIONS(4076), + [anon_sym_template] = ACTIONS(4076), + [anon_sym_operator] = ACTIONS(4076), + [anon_sym_friend] = ACTIONS(4076), + [anon_sym_public] = ACTIONS(4076), + [anon_sym_protected] = ACTIONS(4076), + [anon_sym_static_assert] = ACTIONS(4076), + [anon_sym_LBRACK_COLON] = ACTIONS(4078), }, [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), + [sym_identifier] = ACTIONS(3788), + [aux_sym_preproc_def_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token2] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3788), + [aux_sym_preproc_else_token1] = ACTIONS(3788), + [aux_sym_preproc_elif_token1] = ACTIONS(3788), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3788), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3788), + [sym_preproc_directive] = ACTIONS(3788), + [anon_sym_LPAREN2] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_STAR] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_AMP] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(3790), + [anon_sym___extension__] = ACTIONS(3788), + [anon_sym_typedef] = ACTIONS(3788), + [anon_sym_virtual] = ACTIONS(3788), + [anon_sym_extern] = ACTIONS(3788), + [anon_sym___attribute__] = ACTIONS(3788), + [anon_sym___attribute] = ACTIONS(3788), + [anon_sym_using] = ACTIONS(3788), + [anon_sym_COLON_COLON] = ACTIONS(3790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3790), + [anon_sym___declspec] = ACTIONS(3788), + [anon_sym___based] = ACTIONS(3788), + [anon_sym_signed] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3788), + [anon_sym_long] = ACTIONS(3788), + [anon_sym_short] = ACTIONS(3788), + [anon_sym_LBRACK] = ACTIONS(3788), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_register] = ACTIONS(3788), + [anon_sym_inline] = ACTIONS(3788), + [anon_sym___inline] = ACTIONS(3788), + [anon_sym___inline__] = ACTIONS(3788), + [anon_sym___forceinline] = ACTIONS(3788), + [anon_sym_thread_local] = ACTIONS(3788), + [anon_sym___thread] = ACTIONS(3788), + [anon_sym_const] = ACTIONS(3788), + [anon_sym_constexpr] = ACTIONS(3788), + [anon_sym_volatile] = ACTIONS(3788), + [anon_sym_restrict] = ACTIONS(3788), + [anon_sym___restrict__] = ACTIONS(3788), + [anon_sym__Atomic] = ACTIONS(3788), + [anon_sym__Noreturn] = ACTIONS(3788), + [anon_sym_noreturn] = ACTIONS(3788), + [anon_sym__Nonnull] = ACTIONS(3788), + [anon_sym_mutable] = ACTIONS(3788), + [anon_sym_constinit] = ACTIONS(3788), + [anon_sym_consteval] = ACTIONS(3788), + [anon_sym_alignas] = ACTIONS(3788), + [anon_sym__Alignas] = ACTIONS(3788), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_union] = ACTIONS(3788), + [anon_sym_typename] = ACTIONS(3788), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3788), + [anon_sym_decltype] = ACTIONS(3788), + [anon_sym_explicit] = ACTIONS(3788), + [anon_sym_private] = ACTIONS(3788), + [anon_sym_template] = ACTIONS(3788), + [anon_sym_operator] = ACTIONS(3788), + [anon_sym_friend] = ACTIONS(3788), + [anon_sym_public] = ACTIONS(3788), + [anon_sym_protected] = ACTIONS(3788), + [anon_sym_static_assert] = ACTIONS(3788), + [anon_sym_LBRACK_COLON] = ACTIONS(3790), }, [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), + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_RPAREN] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6831), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6831), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6831), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6831), + [anon_sym_GT_GT] = ACTIONS(6831), + [anon_sym_SEMI] = ACTIONS(6831), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6831), + [anon_sym___based] = ACTIONS(6829), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_RBRACE] = ACTIONS(6831), + [anon_sym_signed] = ACTIONS(6829), + [anon_sym_unsigned] = ACTIONS(6829), + [anon_sym_long] = ACTIONS(6829), + [anon_sym_short] = ACTIONS(6829), + [anon_sym_LBRACK] = ACTIONS(6831), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [sym_primitive_type] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_COLON_RBRACK] = ACTIONS(6831), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(4078), + [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_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_typename] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4076), + [anon_sym_decltype] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_private] = ACTIONS(4076), + [anon_sym_template] = ACTIONS(4076), + [anon_sym_operator] = ACTIONS(4076), + [anon_sym_friend] = ACTIONS(4076), + [anon_sym_public] = ACTIONS(4076), + [anon_sym_protected] = ACTIONS(4076), + [anon_sym_static_assert] = ACTIONS(4076), + [anon_sym_LBRACK_COLON] = ACTIONS(4078), }, [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), + [sym_identifier] = ACTIONS(7850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7852), + [anon_sym_COMMA] = ACTIONS(7852), + [anon_sym_RPAREN] = ACTIONS(7852), + [aux_sym_preproc_if_token2] = ACTIONS(7852), + [aux_sym_preproc_else_token1] = ACTIONS(7852), + [aux_sym_preproc_elif_token1] = ACTIONS(7850), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7852), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7852), + [anon_sym_LPAREN2] = ACTIONS(7852), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_PLUS] = ACTIONS(7850), + [anon_sym_STAR] = ACTIONS(7852), + [anon_sym_SLASH] = ACTIONS(7850), + [anon_sym_PERCENT] = ACTIONS(7852), + [anon_sym_PIPE_PIPE] = ACTIONS(7852), + [anon_sym_AMP_AMP] = ACTIONS(7852), + [anon_sym_PIPE] = ACTIONS(7850), + [anon_sym_CARET] = ACTIONS(7852), + [anon_sym_AMP] = ACTIONS(7850), + [anon_sym_EQ_EQ] = ACTIONS(7852), + [anon_sym_BANG_EQ] = ACTIONS(7852), + [anon_sym_GT] = ACTIONS(7850), + [anon_sym_GT_EQ] = ACTIONS(7852), + [anon_sym_LT_EQ] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(7850), + [anon_sym_LT_LT] = ACTIONS(7852), + [anon_sym_GT_GT] = ACTIONS(7852), + [anon_sym_SEMI] = ACTIONS(7852), + [anon_sym___extension__] = ACTIONS(7850), + [anon_sym___attribute__] = ACTIONS(7850), + [anon_sym___attribute] = ACTIONS(7850), + [anon_sym_COLON] = ACTIONS(7850), + [anon_sym_COLON_COLON] = ACTIONS(7852), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7852), + [anon_sym_LBRACE] = ACTIONS(7852), + [anon_sym_RBRACE] = ACTIONS(7852), + [anon_sym_LBRACK] = ACTIONS(7850), + [anon_sym_const] = ACTIONS(7850), + [anon_sym_constexpr] = ACTIONS(7850), + [anon_sym_volatile] = ACTIONS(7850), + [anon_sym_restrict] = ACTIONS(7850), + [anon_sym___restrict__] = ACTIONS(7850), + [anon_sym__Atomic] = ACTIONS(7850), + [anon_sym__Noreturn] = ACTIONS(7850), + [anon_sym_noreturn] = ACTIONS(7850), + [anon_sym__Nonnull] = ACTIONS(7850), + [anon_sym_mutable] = ACTIONS(7850), + [anon_sym_constinit] = ACTIONS(7850), + [anon_sym_consteval] = ACTIONS(7850), + [anon_sym_alignas] = ACTIONS(7850), + [anon_sym__Alignas] = ACTIONS(7850), + [anon_sym_QMARK] = ACTIONS(7852), + [anon_sym_LT_EQ_GT] = ACTIONS(7852), + [anon_sym_or] = ACTIONS(7850), + [anon_sym_and] = ACTIONS(7850), + [anon_sym_bitor] = ACTIONS(7850), + [anon_sym_xor] = ACTIONS(7850), + [anon_sym_bitand] = ACTIONS(7850), + [anon_sym_not_eq] = ACTIONS(7850), + [anon_sym_DASH_DASH] = ACTIONS(7852), + [anon_sym_PLUS_PLUS] = ACTIONS(7852), + [anon_sym_DOT] = ACTIONS(7850), + [anon_sym_DOT_STAR] = ACTIONS(7852), + [anon_sym_DASH_GT] = ACTIONS(7852), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7850), + [anon_sym_final] = ACTIONS(7850), + [anon_sym_override] = ACTIONS(7850), + [anon_sym_template] = ACTIONS(7850), + [anon_sym_requires] = ACTIONS(7850), + [anon_sym_LBRACK_COLON] = ACTIONS(7852), + [anon_sym_COLON_RBRACK] = ACTIONS(7852), }, [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), + [sym_identifier] = ACTIONS(9057), + [aux_sym_preproc_def_token1] = ACTIONS(9057), + [aux_sym_preproc_if_token1] = ACTIONS(9057), + [aux_sym_preproc_if_token2] = ACTIONS(9057), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9057), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9057), + [aux_sym_preproc_else_token1] = ACTIONS(9057), + [aux_sym_preproc_elif_token1] = ACTIONS(9057), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9057), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9057), + [sym_preproc_directive] = ACTIONS(9057), + [anon_sym_LPAREN2] = ACTIONS(9059), + [anon_sym_TILDE] = ACTIONS(9059), + [anon_sym_STAR] = ACTIONS(9059), + [anon_sym_AMP_AMP] = ACTIONS(9059), + [anon_sym_AMP] = ACTIONS(9057), + [anon_sym_SEMI] = ACTIONS(9059), + [anon_sym___extension__] = ACTIONS(9057), + [anon_sym_typedef] = ACTIONS(9057), + [anon_sym_virtual] = ACTIONS(9057), + [anon_sym_extern] = ACTIONS(9057), + [anon_sym___attribute__] = ACTIONS(9057), + [anon_sym___attribute] = ACTIONS(9057), + [anon_sym_using] = ACTIONS(9057), + [anon_sym_COLON_COLON] = ACTIONS(9059), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9059), + [anon_sym___declspec] = ACTIONS(9057), + [anon_sym___based] = ACTIONS(9057), + [anon_sym_signed] = ACTIONS(9057), + [anon_sym_unsigned] = ACTIONS(9057), + [anon_sym_long] = ACTIONS(9057), + [anon_sym_short] = ACTIONS(9057), + [anon_sym_LBRACK] = ACTIONS(9057), + [anon_sym_static] = ACTIONS(9057), + [anon_sym_register] = ACTIONS(9057), + [anon_sym_inline] = ACTIONS(9057), + [anon_sym___inline] = ACTIONS(9057), + [anon_sym___inline__] = ACTIONS(9057), + [anon_sym___forceinline] = ACTIONS(9057), + [anon_sym_thread_local] = ACTIONS(9057), + [anon_sym___thread] = ACTIONS(9057), + [anon_sym_const] = ACTIONS(9057), + [anon_sym_constexpr] = ACTIONS(9057), + [anon_sym_volatile] = ACTIONS(9057), + [anon_sym_restrict] = ACTIONS(9057), + [anon_sym___restrict__] = ACTIONS(9057), + [anon_sym__Atomic] = ACTIONS(9057), + [anon_sym__Noreturn] = ACTIONS(9057), + [anon_sym_noreturn] = ACTIONS(9057), + [anon_sym__Nonnull] = ACTIONS(9057), + [anon_sym_mutable] = ACTIONS(9057), + [anon_sym_constinit] = ACTIONS(9057), + [anon_sym_consteval] = ACTIONS(9057), + [anon_sym_alignas] = ACTIONS(9057), + [anon_sym__Alignas] = ACTIONS(9057), + [sym_primitive_type] = ACTIONS(9057), + [anon_sym_enum] = ACTIONS(9057), + [anon_sym_class] = ACTIONS(9057), + [anon_sym_struct] = ACTIONS(9057), + [anon_sym_union] = ACTIONS(9057), + [anon_sym_typename] = ACTIONS(9057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9057), + [anon_sym_decltype] = ACTIONS(9057), + [anon_sym_explicit] = ACTIONS(9057), + [anon_sym_private] = ACTIONS(9057), + [anon_sym_template] = ACTIONS(9057), + [anon_sym_operator] = ACTIONS(9057), + [anon_sym_friend] = ACTIONS(9057), + [anon_sym_public] = ACTIONS(9057), + [anon_sym_protected] = ACTIONS(9057), + [anon_sym_static_assert] = ACTIONS(9057), + [anon_sym_LBRACK_COLON] = ACTIONS(9059), }, [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), + [sym_identifier] = ACTIONS(9061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9063), + [anon_sym_COMMA] = ACTIONS(9063), + [anon_sym_RPAREN] = ACTIONS(9063), + [aux_sym_preproc_if_token2] = ACTIONS(9063), + [aux_sym_preproc_else_token1] = ACTIONS(9063), + [aux_sym_preproc_elif_token1] = ACTIONS(9061), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9063), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9063), + [anon_sym_LPAREN2] = ACTIONS(9063), + [anon_sym_DASH] = ACTIONS(9061), + [anon_sym_PLUS] = ACTIONS(9061), + [anon_sym_STAR] = ACTIONS(9061), + [anon_sym_SLASH] = ACTIONS(9061), + [anon_sym_PERCENT] = ACTIONS(9061), + [anon_sym_PIPE_PIPE] = ACTIONS(9063), + [anon_sym_AMP_AMP] = ACTIONS(9063), + [anon_sym_PIPE] = ACTIONS(9061), + [anon_sym_CARET] = ACTIONS(9061), + [anon_sym_AMP] = ACTIONS(9061), + [anon_sym_EQ_EQ] = ACTIONS(9063), + [anon_sym_BANG_EQ] = ACTIONS(9063), + [anon_sym_GT] = ACTIONS(9061), + [anon_sym_GT_EQ] = ACTIONS(9063), + [anon_sym_LT_EQ] = ACTIONS(9061), + [anon_sym_LT] = ACTIONS(9061), + [anon_sym_LT_LT] = ACTIONS(9061), + [anon_sym_GT_GT] = ACTIONS(9061), + [anon_sym_SEMI] = ACTIONS(9063), + [anon_sym___attribute__] = ACTIONS(9061), + [anon_sym___attribute] = ACTIONS(9061), + [anon_sym_COLON] = ACTIONS(9061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9063), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9063), + [anon_sym_RBRACE] = ACTIONS(9063), + [anon_sym_LBRACK] = ACTIONS(9061), + [anon_sym_EQ] = ACTIONS(9061), + [anon_sym_QMARK] = ACTIONS(9063), + [anon_sym_STAR_EQ] = ACTIONS(9063), + [anon_sym_SLASH_EQ] = ACTIONS(9063), + [anon_sym_PERCENT_EQ] = ACTIONS(9063), + [anon_sym_PLUS_EQ] = ACTIONS(9063), + [anon_sym_DASH_EQ] = ACTIONS(9063), + [anon_sym_LT_LT_EQ] = ACTIONS(9063), + [anon_sym_GT_GT_EQ] = ACTIONS(9063), + [anon_sym_AMP_EQ] = ACTIONS(9063), + [anon_sym_CARET_EQ] = ACTIONS(9063), + [anon_sym_PIPE_EQ] = ACTIONS(9063), + [anon_sym_and_eq] = ACTIONS(9061), + [anon_sym_or_eq] = ACTIONS(9061), + [anon_sym_xor_eq] = ACTIONS(9061), + [anon_sym_LT_EQ_GT] = ACTIONS(9063), + [anon_sym_or] = ACTIONS(9061), + [anon_sym_and] = ACTIONS(9061), + [anon_sym_bitor] = ACTIONS(9061), + [anon_sym_xor] = ACTIONS(9061), + [anon_sym_bitand] = ACTIONS(9061), + [anon_sym_not_eq] = ACTIONS(9061), + [anon_sym_DASH_DASH] = ACTIONS(9063), + [anon_sym_PLUS_PLUS] = ACTIONS(9063), + [anon_sym_asm] = ACTIONS(9061), + [anon_sym___asm__] = ACTIONS(9061), + [anon_sym___asm] = ACTIONS(9061), + [anon_sym_DOT] = ACTIONS(9061), + [anon_sym_DOT_STAR] = ACTIONS(9063), + [anon_sym_DASH_GT] = ACTIONS(9063), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9061), + [anon_sym_override] = ACTIONS(9061), + [anon_sym_noexcept] = ACTIONS(9061), + [anon_sym_throw] = ACTIONS(9061), + [anon_sym_requires] = ACTIONS(9061), + [anon_sym_COLON_RBRACK] = ACTIONS(9063), }, [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), + [sym_identifier] = ACTIONS(9065), + [aux_sym_preproc_def_token1] = ACTIONS(9065), + [aux_sym_preproc_if_token1] = ACTIONS(9065), + [aux_sym_preproc_if_token2] = ACTIONS(9065), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9065), + [aux_sym_preproc_else_token1] = ACTIONS(9065), + [aux_sym_preproc_elif_token1] = ACTIONS(9065), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9065), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9065), + [sym_preproc_directive] = ACTIONS(9065), + [anon_sym_LPAREN2] = ACTIONS(9067), + [anon_sym_TILDE] = ACTIONS(9067), + [anon_sym_STAR] = ACTIONS(9067), + [anon_sym_AMP_AMP] = ACTIONS(9067), + [anon_sym_AMP] = ACTIONS(9065), + [anon_sym_SEMI] = ACTIONS(9067), + [anon_sym___extension__] = ACTIONS(9065), + [anon_sym_typedef] = ACTIONS(9065), + [anon_sym_virtual] = ACTIONS(9065), + [anon_sym_extern] = ACTIONS(9065), + [anon_sym___attribute__] = ACTIONS(9065), + [anon_sym___attribute] = ACTIONS(9065), + [anon_sym_using] = ACTIONS(9065), + [anon_sym_COLON_COLON] = ACTIONS(9067), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9067), + [anon_sym___declspec] = ACTIONS(9065), + [anon_sym___based] = ACTIONS(9065), + [anon_sym_signed] = ACTIONS(9065), + [anon_sym_unsigned] = ACTIONS(9065), + [anon_sym_long] = ACTIONS(9065), + [anon_sym_short] = ACTIONS(9065), + [anon_sym_LBRACK] = ACTIONS(9065), + [anon_sym_static] = ACTIONS(9065), + [anon_sym_register] = ACTIONS(9065), + [anon_sym_inline] = ACTIONS(9065), + [anon_sym___inline] = ACTIONS(9065), + [anon_sym___inline__] = ACTIONS(9065), + [anon_sym___forceinline] = ACTIONS(9065), + [anon_sym_thread_local] = ACTIONS(9065), + [anon_sym___thread] = ACTIONS(9065), + [anon_sym_const] = ACTIONS(9065), + [anon_sym_constexpr] = ACTIONS(9065), + [anon_sym_volatile] = ACTIONS(9065), + [anon_sym_restrict] = ACTIONS(9065), + [anon_sym___restrict__] = ACTIONS(9065), + [anon_sym__Atomic] = ACTIONS(9065), + [anon_sym__Noreturn] = ACTIONS(9065), + [anon_sym_noreturn] = ACTIONS(9065), + [anon_sym__Nonnull] = ACTIONS(9065), + [anon_sym_mutable] = ACTIONS(9065), + [anon_sym_constinit] = ACTIONS(9065), + [anon_sym_consteval] = ACTIONS(9065), + [anon_sym_alignas] = ACTIONS(9065), + [anon_sym__Alignas] = ACTIONS(9065), + [sym_primitive_type] = ACTIONS(9065), + [anon_sym_enum] = ACTIONS(9065), + [anon_sym_class] = ACTIONS(9065), + [anon_sym_struct] = ACTIONS(9065), + [anon_sym_union] = ACTIONS(9065), + [anon_sym_typename] = ACTIONS(9065), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9065), + [anon_sym_decltype] = ACTIONS(9065), + [anon_sym_explicit] = ACTIONS(9065), + [anon_sym_private] = ACTIONS(9065), + [anon_sym_template] = ACTIONS(9065), + [anon_sym_operator] = ACTIONS(9065), + [anon_sym_friend] = ACTIONS(9065), + [anon_sym_public] = ACTIONS(9065), + [anon_sym_protected] = ACTIONS(9065), + [anon_sym_static_assert] = ACTIONS(9065), + [anon_sym_LBRACK_COLON] = ACTIONS(9067), }, [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), + [sym_identifier] = ACTIONS(9069), + [aux_sym_preproc_def_token1] = ACTIONS(9069), + [aux_sym_preproc_if_token1] = ACTIONS(9069), + [aux_sym_preproc_if_token2] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9069), + [aux_sym_preproc_else_token1] = ACTIONS(9069), + [aux_sym_preproc_elif_token1] = ACTIONS(9069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9069), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9069), + [sym_preproc_directive] = ACTIONS(9069), + [anon_sym_LPAREN2] = ACTIONS(9071), + [anon_sym_TILDE] = ACTIONS(9071), + [anon_sym_STAR] = ACTIONS(9071), + [anon_sym_AMP_AMP] = ACTIONS(9071), + [anon_sym_AMP] = ACTIONS(9069), + [anon_sym_SEMI] = ACTIONS(9071), + [anon_sym___extension__] = ACTIONS(9069), + [anon_sym_typedef] = ACTIONS(9069), + [anon_sym_virtual] = ACTIONS(9069), + [anon_sym_extern] = ACTIONS(9069), + [anon_sym___attribute__] = ACTIONS(9069), + [anon_sym___attribute] = ACTIONS(9069), + [anon_sym_using] = ACTIONS(9069), + [anon_sym_COLON_COLON] = ACTIONS(9071), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9071), + [anon_sym___declspec] = ACTIONS(9069), + [anon_sym___based] = ACTIONS(9069), + [anon_sym_signed] = ACTIONS(9069), + [anon_sym_unsigned] = ACTIONS(9069), + [anon_sym_long] = ACTIONS(9069), + [anon_sym_short] = ACTIONS(9069), + [anon_sym_LBRACK] = ACTIONS(9069), + [anon_sym_static] = ACTIONS(9069), + [anon_sym_register] = ACTIONS(9069), + [anon_sym_inline] = ACTIONS(9069), + [anon_sym___inline] = ACTIONS(9069), + [anon_sym___inline__] = ACTIONS(9069), + [anon_sym___forceinline] = ACTIONS(9069), + [anon_sym_thread_local] = ACTIONS(9069), + [anon_sym___thread] = ACTIONS(9069), + [anon_sym_const] = ACTIONS(9069), + [anon_sym_constexpr] = ACTIONS(9069), + [anon_sym_volatile] = ACTIONS(9069), + [anon_sym_restrict] = ACTIONS(9069), + [anon_sym___restrict__] = ACTIONS(9069), + [anon_sym__Atomic] = ACTIONS(9069), + [anon_sym__Noreturn] = ACTIONS(9069), + [anon_sym_noreturn] = ACTIONS(9069), + [anon_sym__Nonnull] = ACTIONS(9069), + [anon_sym_mutable] = ACTIONS(9069), + [anon_sym_constinit] = ACTIONS(9069), + [anon_sym_consteval] = ACTIONS(9069), + [anon_sym_alignas] = ACTIONS(9069), + [anon_sym__Alignas] = ACTIONS(9069), + [sym_primitive_type] = ACTIONS(9069), + [anon_sym_enum] = ACTIONS(9069), + [anon_sym_class] = ACTIONS(9069), + [anon_sym_struct] = ACTIONS(9069), + [anon_sym_union] = ACTIONS(9069), + [anon_sym_typename] = ACTIONS(9069), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9069), + [anon_sym_decltype] = ACTIONS(9069), + [anon_sym_explicit] = ACTIONS(9069), + [anon_sym_private] = ACTIONS(9069), + [anon_sym_template] = ACTIONS(9069), + [anon_sym_operator] = ACTIONS(9069), + [anon_sym_friend] = ACTIONS(9069), + [anon_sym_public] = ACTIONS(9069), + [anon_sym_protected] = ACTIONS(9069), + [anon_sym_static_assert] = ACTIONS(9069), + [anon_sym_LBRACK_COLON] = ACTIONS(9071), }, [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), + [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(7493), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7493), + [anon_sym_PIPE_PIPE] = ACTIONS(7493), + [anon_sym_AMP_AMP] = ACTIONS(7493), + [anon_sym_PIPE] = ACTIONS(7491), + [anon_sym_CARET] = ACTIONS(7493), + [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(7493), + [anon_sym_GT_GT] = ACTIONS(7493), + [anon_sym_SEMI] = ACTIONS(7493), + [anon_sym___extension__] = ACTIONS(7491), + [anon_sym___attribute__] = ACTIONS(7491), + [anon_sym___attribute] = ACTIONS(7491), + [anon_sym_COLON] = ACTIONS(7491), + [anon_sym_COLON_COLON] = ACTIONS(7493), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7493), + [anon_sym_LBRACE] = ACTIONS(7493), + [anon_sym_RBRACE] = ACTIONS(7493), + [anon_sym_LBRACK] = 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_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_decltype] = ACTIONS(7491), + [anon_sym_final] = ACTIONS(7491), + [anon_sym_override] = ACTIONS(7491), + [anon_sym_template] = ACTIONS(7491), + [anon_sym_requires] = ACTIONS(7491), + [anon_sym_LBRACK_COLON] = ACTIONS(7493), + [anon_sym_COLON_RBRACK] = ACTIONS(7493), }, [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), + [sym_identifier] = ACTIONS(7149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7151), + [anon_sym_COMMA] = ACTIONS(7151), + [anon_sym_RPAREN] = ACTIONS(7151), + [aux_sym_preproc_if_token2] = ACTIONS(7151), + [aux_sym_preproc_else_token1] = ACTIONS(7151), + [aux_sym_preproc_elif_token1] = ACTIONS(7149), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7151), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7151), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_DASH] = ACTIONS(7149), + [anon_sym_PLUS] = ACTIONS(7149), + [anon_sym_STAR] = ACTIONS(7151), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_PIPE_PIPE] = ACTIONS(7151), + [anon_sym_AMP_AMP] = ACTIONS(7151), + [anon_sym_PIPE] = ACTIONS(7149), + [anon_sym_CARET] = ACTIONS(7151), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym_EQ_EQ] = ACTIONS(7151), + [anon_sym_BANG_EQ] = ACTIONS(7151), + [anon_sym_GT] = ACTIONS(7149), + [anon_sym_GT_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7149), + [anon_sym_LT] = ACTIONS(7149), + [anon_sym_LT_LT] = ACTIONS(7151), + [anon_sym_GT_GT] = ACTIONS(7151), + [anon_sym_SEMI] = ACTIONS(7151), + [anon_sym___extension__] = ACTIONS(7149), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_COLON] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7151), + [anon_sym_LBRACE] = ACTIONS(7151), + [anon_sym_RBRACE] = ACTIONS(7151), + [anon_sym_LBRACK] = ACTIONS(7149), + [anon_sym_const] = ACTIONS(7149), + [anon_sym_constexpr] = ACTIONS(7149), + [anon_sym_volatile] = ACTIONS(7149), + [anon_sym_restrict] = ACTIONS(7149), + [anon_sym___restrict__] = ACTIONS(7149), + [anon_sym__Atomic] = ACTIONS(7149), + [anon_sym__Noreturn] = ACTIONS(7149), + [anon_sym_noreturn] = ACTIONS(7149), + [anon_sym__Nonnull] = ACTIONS(7149), + [anon_sym_mutable] = ACTIONS(7149), + [anon_sym_constinit] = ACTIONS(7149), + [anon_sym_consteval] = ACTIONS(7149), + [anon_sym_alignas] = ACTIONS(7149), + [anon_sym__Alignas] = ACTIONS(7149), + [anon_sym_QMARK] = ACTIONS(7151), + [anon_sym_LT_EQ_GT] = ACTIONS(7151), + [anon_sym_or] = ACTIONS(7149), + [anon_sym_and] = ACTIONS(7149), + [anon_sym_bitor] = ACTIONS(7149), + [anon_sym_xor] = ACTIONS(7149), + [anon_sym_bitand] = ACTIONS(7149), + [anon_sym_not_eq] = ACTIONS(7149), + [anon_sym_DASH_DASH] = ACTIONS(7151), + [anon_sym_PLUS_PLUS] = ACTIONS(7151), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_DOT_STAR] = ACTIONS(7151), + [anon_sym_DASH_GT] = ACTIONS(7151), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7149), + [anon_sym_final] = ACTIONS(7149), + [anon_sym_override] = ACTIONS(7149), + [anon_sym_template] = ACTIONS(7149), + [anon_sym_requires] = ACTIONS(7149), + [anon_sym_LBRACK_COLON] = ACTIONS(7151), + [anon_sym_COLON_RBRACK] = ACTIONS(7151), }, [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), + [sym_identifier] = ACTIONS(9069), + [aux_sym_preproc_def_token1] = ACTIONS(9069), + [aux_sym_preproc_if_token1] = ACTIONS(9069), + [aux_sym_preproc_if_token2] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9069), + [aux_sym_preproc_else_token1] = ACTIONS(9069), + [aux_sym_preproc_elif_token1] = ACTIONS(9069), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9069), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9069), + [sym_preproc_directive] = ACTIONS(9069), + [anon_sym_LPAREN2] = ACTIONS(9071), + [anon_sym_TILDE] = ACTIONS(9071), + [anon_sym_STAR] = ACTIONS(9071), + [anon_sym_AMP_AMP] = ACTIONS(9071), + [anon_sym_AMP] = ACTIONS(9069), + [anon_sym_SEMI] = ACTIONS(9071), + [anon_sym___extension__] = ACTIONS(9069), + [anon_sym_typedef] = ACTIONS(9069), + [anon_sym_virtual] = ACTIONS(9069), + [anon_sym_extern] = ACTIONS(9069), + [anon_sym___attribute__] = ACTIONS(9069), + [anon_sym___attribute] = ACTIONS(9069), + [anon_sym_using] = ACTIONS(9069), + [anon_sym_COLON_COLON] = ACTIONS(9071), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9071), + [anon_sym___declspec] = ACTIONS(9069), + [anon_sym___based] = ACTIONS(9069), + [anon_sym_signed] = ACTIONS(9069), + [anon_sym_unsigned] = ACTIONS(9069), + [anon_sym_long] = ACTIONS(9069), + [anon_sym_short] = ACTIONS(9069), + [anon_sym_LBRACK] = ACTIONS(9069), + [anon_sym_static] = ACTIONS(9069), + [anon_sym_register] = ACTIONS(9069), + [anon_sym_inline] = ACTIONS(9069), + [anon_sym___inline] = ACTIONS(9069), + [anon_sym___inline__] = ACTIONS(9069), + [anon_sym___forceinline] = ACTIONS(9069), + [anon_sym_thread_local] = ACTIONS(9069), + [anon_sym___thread] = ACTIONS(9069), + [anon_sym_const] = ACTIONS(9069), + [anon_sym_constexpr] = ACTIONS(9069), + [anon_sym_volatile] = ACTIONS(9069), + [anon_sym_restrict] = ACTIONS(9069), + [anon_sym___restrict__] = ACTIONS(9069), + [anon_sym__Atomic] = ACTIONS(9069), + [anon_sym__Noreturn] = ACTIONS(9069), + [anon_sym_noreturn] = ACTIONS(9069), + [anon_sym__Nonnull] = ACTIONS(9069), + [anon_sym_mutable] = ACTIONS(9069), + [anon_sym_constinit] = ACTIONS(9069), + [anon_sym_consteval] = ACTIONS(9069), + [anon_sym_alignas] = ACTIONS(9069), + [anon_sym__Alignas] = ACTIONS(9069), + [sym_primitive_type] = ACTIONS(9069), + [anon_sym_enum] = ACTIONS(9069), + [anon_sym_class] = ACTIONS(9069), + [anon_sym_struct] = ACTIONS(9069), + [anon_sym_union] = ACTIONS(9069), + [anon_sym_typename] = ACTIONS(9069), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9069), + [anon_sym_decltype] = ACTIONS(9069), + [anon_sym_explicit] = ACTIONS(9069), + [anon_sym_private] = ACTIONS(9069), + [anon_sym_template] = ACTIONS(9069), + [anon_sym_operator] = ACTIONS(9069), + [anon_sym_friend] = ACTIONS(9069), + [anon_sym_public] = ACTIONS(9069), + [anon_sym_protected] = ACTIONS(9069), + [anon_sym_static_assert] = ACTIONS(9069), + [anon_sym_LBRACK_COLON] = ACTIONS(9071), }, [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), + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_RPAREN] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6805), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6805), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6805), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6805), + [anon_sym_GT_GT] = ACTIONS(6805), + [anon_sym_SEMI] = ACTIONS(6805), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6805), + [anon_sym___based] = ACTIONS(6803), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_RBRACE] = ACTIONS(6805), + [anon_sym_signed] = ACTIONS(6803), + [anon_sym_unsigned] = ACTIONS(6803), + [anon_sym_long] = ACTIONS(6803), + [anon_sym_short] = ACTIONS(6803), + [anon_sym_LBRACK] = ACTIONS(6805), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [sym_primitive_type] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_COLON_RBRACK] = ACTIONS(6805), }, [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), + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6801), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6801), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6801), + [anon_sym_SEMI] = ACTIONS(6801), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6801), + [anon_sym___based] = ACTIONS(6799), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_RBRACE] = ACTIONS(6801), + [anon_sym_signed] = ACTIONS(6799), + [anon_sym_unsigned] = ACTIONS(6799), + [anon_sym_long] = ACTIONS(6799), + [anon_sym_short] = ACTIONS(6799), + [anon_sym_LBRACK] = ACTIONS(6801), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [sym_primitive_type] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_COLON_RBRACK] = ACTIONS(6801), }, [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), + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_RPAREN] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6809), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6809), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6809), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6809), + [anon_sym_GT_GT] = ACTIONS(6809), + [anon_sym_SEMI] = ACTIONS(6809), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6809), + [anon_sym___based] = ACTIONS(6807), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_RBRACE] = ACTIONS(6809), + [anon_sym_signed] = ACTIONS(6807), + [anon_sym_unsigned] = ACTIONS(6807), + [anon_sym_long] = ACTIONS(6807), + [anon_sym_short] = ACTIONS(6807), + [anon_sym_LBRACK] = ACTIONS(6809), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [sym_primitive_type] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [anon_sym_LT_EQ_GT] = ACTIONS(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_COLON_RBRACK] = ACTIONS(6809), }, [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), + [sym__declaration_modifiers] = STATE(5767), + [sym_attribute_specifier] = STATE(5767), + [sym_attribute_declaration] = STATE(5767), + [sym_ms_declspec_modifier] = STATE(5767), + [sym_storage_class_specifier] = STATE(5767), + [sym_type_qualifier] = STATE(5767), + [sym_alignas_qualifier] = STATE(2870), + [sym_type_specifier] = STATE(4365), + [sym_sized_type_specifier] = STATE(4346), + [sym_enum_specifier] = STATE(4346), + [sym_struct_specifier] = STATE(4346), + [sym_union_specifier] = STATE(4346), + [sym_placeholder_type_specifier] = STATE(4346), + [sym_decltype_auto] = STATE(4287), + [sym_decltype] = STATE(4211), + [sym_class_specifier] = STATE(4346), + [sym_dependent_type] = STATE(4346), + [sym_template_type] = STATE(4033), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9769), + [sym_qualified_type_identifier] = STATE(4036), + [sym_splice_specifier] = STATE(4770), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(4211), + [sym_splice_expression] = STATE(13053), + [aux_sym__declaration_specifiers_repeat1] = STATE(5767), + [aux_sym_sized_type_specifier_repeat1] = STATE(3245), + [sym_identifier] = ACTIONS(6640), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(9014), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(8222), + [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(3536), + [anon_sym_enum] = ACTIONS(2314), + [anon_sym_class] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2318), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_typename] = ACTIONS(5657), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(3556), }, [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), + [sym_identifier] = ACTIONS(3997), + [aux_sym_preproc_def_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token2] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [aux_sym_preproc_else_token1] = ACTIONS(3997), + [aux_sym_preproc_elif_token1] = ACTIONS(3997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3997), + [sym_preproc_directive] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3999), + [anon_sym_TILDE] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_SEMI] = ACTIONS(3999), + [anon_sym___extension__] = ACTIONS(3997), + [anon_sym_typedef] = ACTIONS(3997), + [anon_sym_virtual] = ACTIONS(3997), + [anon_sym_extern] = ACTIONS(3997), + [anon_sym___attribute__] = ACTIONS(3997), + [anon_sym___attribute] = ACTIONS(3997), + [anon_sym_using] = ACTIONS(3997), + [anon_sym_COLON_COLON] = ACTIONS(3999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3999), + [anon_sym___declspec] = ACTIONS(3997), + [anon_sym___based] = ACTIONS(3997), + [anon_sym_signed] = ACTIONS(3997), + [anon_sym_unsigned] = ACTIONS(3997), + [anon_sym_long] = ACTIONS(3997), + [anon_sym_short] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_register] = ACTIONS(3997), + [anon_sym_inline] = ACTIONS(3997), + [anon_sym___inline] = ACTIONS(3997), + [anon_sym___inline__] = ACTIONS(3997), + [anon_sym___forceinline] = ACTIONS(3997), + [anon_sym_thread_local] = ACTIONS(3997), + [anon_sym___thread] = ACTIONS(3997), + [anon_sym_const] = ACTIONS(3997), + [anon_sym_constexpr] = ACTIONS(3997), + [anon_sym_volatile] = ACTIONS(3997), + [anon_sym_restrict] = ACTIONS(3997), + [anon_sym___restrict__] = ACTIONS(3997), + [anon_sym__Atomic] = ACTIONS(3997), + [anon_sym__Noreturn] = ACTIONS(3997), + [anon_sym_noreturn] = ACTIONS(3997), + [anon_sym__Nonnull] = ACTIONS(3997), + [anon_sym_mutable] = ACTIONS(3997), + [anon_sym_constinit] = ACTIONS(3997), + [anon_sym_consteval] = ACTIONS(3997), + [anon_sym_alignas] = ACTIONS(3997), + [anon_sym__Alignas] = ACTIONS(3997), + [sym_primitive_type] = ACTIONS(3997), + [anon_sym_enum] = ACTIONS(3997), + [anon_sym_class] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3997), + [anon_sym_union] = ACTIONS(3997), + [anon_sym_typename] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3997), + [anon_sym_decltype] = ACTIONS(3997), + [anon_sym_explicit] = ACTIONS(3997), + [anon_sym_private] = ACTIONS(3997), + [anon_sym_template] = ACTIONS(3997), + [anon_sym_operator] = ACTIONS(3997), + [anon_sym_friend] = ACTIONS(3997), + [anon_sym_public] = ACTIONS(3997), + [anon_sym_protected] = ACTIONS(3997), + [anon_sym_static_assert] = ACTIONS(3997), + [anon_sym_LBRACK_COLON] = ACTIONS(3999), }, [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), + [sym_identifier] = ACTIONS(9073), + [aux_sym_preproc_def_token1] = ACTIONS(9073), + [aux_sym_preproc_if_token1] = ACTIONS(9073), + [aux_sym_preproc_if_token2] = ACTIONS(9073), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9073), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9073), + [aux_sym_preproc_else_token1] = ACTIONS(9073), + [aux_sym_preproc_elif_token1] = ACTIONS(9073), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9073), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9073), + [sym_preproc_directive] = ACTIONS(9073), + [anon_sym_LPAREN2] = ACTIONS(9075), + [anon_sym_TILDE] = ACTIONS(9075), + [anon_sym_STAR] = ACTIONS(9075), + [anon_sym_AMP_AMP] = ACTIONS(9075), + [anon_sym_AMP] = ACTIONS(9073), + [anon_sym_SEMI] = ACTIONS(9075), + [anon_sym___extension__] = ACTIONS(9073), + [anon_sym_typedef] = ACTIONS(9073), + [anon_sym_virtual] = ACTIONS(9073), + [anon_sym_extern] = ACTIONS(9073), + [anon_sym___attribute__] = ACTIONS(9073), + [anon_sym___attribute] = ACTIONS(9073), + [anon_sym_using] = ACTIONS(9073), + [anon_sym_COLON_COLON] = ACTIONS(9075), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9075), + [anon_sym___declspec] = ACTIONS(9073), + [anon_sym___based] = ACTIONS(9073), + [anon_sym_signed] = ACTIONS(9073), + [anon_sym_unsigned] = ACTIONS(9073), + [anon_sym_long] = ACTIONS(9073), + [anon_sym_short] = ACTIONS(9073), + [anon_sym_LBRACK] = ACTIONS(9073), + [anon_sym_static] = ACTIONS(9073), + [anon_sym_register] = ACTIONS(9073), + [anon_sym_inline] = ACTIONS(9073), + [anon_sym___inline] = ACTIONS(9073), + [anon_sym___inline__] = ACTIONS(9073), + [anon_sym___forceinline] = ACTIONS(9073), + [anon_sym_thread_local] = ACTIONS(9073), + [anon_sym___thread] = ACTIONS(9073), + [anon_sym_const] = ACTIONS(9073), + [anon_sym_constexpr] = ACTIONS(9073), + [anon_sym_volatile] = ACTIONS(9073), + [anon_sym_restrict] = ACTIONS(9073), + [anon_sym___restrict__] = ACTIONS(9073), + [anon_sym__Atomic] = ACTIONS(9073), + [anon_sym__Noreturn] = ACTIONS(9073), + [anon_sym_noreturn] = ACTIONS(9073), + [anon_sym__Nonnull] = ACTIONS(9073), + [anon_sym_mutable] = ACTIONS(9073), + [anon_sym_constinit] = ACTIONS(9073), + [anon_sym_consteval] = ACTIONS(9073), + [anon_sym_alignas] = ACTIONS(9073), + [anon_sym__Alignas] = ACTIONS(9073), + [sym_primitive_type] = ACTIONS(9073), + [anon_sym_enum] = ACTIONS(9073), + [anon_sym_class] = ACTIONS(9073), + [anon_sym_struct] = ACTIONS(9073), + [anon_sym_union] = ACTIONS(9073), + [anon_sym_typename] = ACTIONS(9073), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9073), + [anon_sym_decltype] = ACTIONS(9073), + [anon_sym_explicit] = ACTIONS(9073), + [anon_sym_private] = ACTIONS(9073), + [anon_sym_template] = ACTIONS(9073), + [anon_sym_operator] = ACTIONS(9073), + [anon_sym_friend] = ACTIONS(9073), + [anon_sym_public] = ACTIONS(9073), + [anon_sym_protected] = ACTIONS(9073), + [anon_sym_static_assert] = ACTIONS(9073), + [anon_sym_LBRACK_COLON] = ACTIONS(9075), }, [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), + [sym_identifier] = ACTIONS(4021), + [aux_sym_preproc_def_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token2] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4021), + [aux_sym_preproc_else_token1] = ACTIONS(4021), + [aux_sym_preproc_elif_token1] = ACTIONS(4021), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4021), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4021), + [sym_preproc_directive] = ACTIONS(4021), + [anon_sym_LPAREN2] = ACTIONS(4023), + [anon_sym_TILDE] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_AMP_AMP] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_SEMI] = ACTIONS(4023), + [anon_sym___extension__] = ACTIONS(4021), + [anon_sym_typedef] = ACTIONS(4021), + [anon_sym_virtual] = ACTIONS(4021), + [anon_sym_extern] = ACTIONS(4021), + [anon_sym___attribute__] = ACTIONS(4021), + [anon_sym___attribute] = ACTIONS(4021), + [anon_sym_using] = ACTIONS(4021), + [anon_sym_COLON_COLON] = ACTIONS(4023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4023), + [anon_sym___declspec] = ACTIONS(4021), + [anon_sym___based] = ACTIONS(4021), + [anon_sym_signed] = ACTIONS(4021), + [anon_sym_unsigned] = ACTIONS(4021), + [anon_sym_long] = ACTIONS(4021), + [anon_sym_short] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_register] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym___inline] = ACTIONS(4021), + [anon_sym___inline__] = ACTIONS(4021), + [anon_sym___forceinline] = ACTIONS(4021), + [anon_sym_thread_local] = ACTIONS(4021), + [anon_sym___thread] = ACTIONS(4021), + [anon_sym_const] = ACTIONS(4021), + [anon_sym_constexpr] = ACTIONS(4021), + [anon_sym_volatile] = ACTIONS(4021), + [anon_sym_restrict] = ACTIONS(4021), + [anon_sym___restrict__] = ACTIONS(4021), + [anon_sym__Atomic] = ACTIONS(4021), + [anon_sym__Noreturn] = ACTIONS(4021), + [anon_sym_noreturn] = ACTIONS(4021), + [anon_sym__Nonnull] = ACTIONS(4021), + [anon_sym_mutable] = ACTIONS(4021), + [anon_sym_constinit] = ACTIONS(4021), + [anon_sym_consteval] = ACTIONS(4021), + [anon_sym_alignas] = ACTIONS(4021), + [anon_sym__Alignas] = ACTIONS(4021), + [sym_primitive_type] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_struct] = ACTIONS(4021), + [anon_sym_union] = ACTIONS(4021), + [anon_sym_typename] = ACTIONS(4021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4021), + [anon_sym_decltype] = ACTIONS(4021), + [anon_sym_explicit] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_template] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_friend] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_static_assert] = ACTIONS(4021), + [anon_sym_LBRACK_COLON] = ACTIONS(4023), }, [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), + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6797), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6797), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6797), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6797), + [anon_sym_GT_GT] = ACTIONS(6797), + [anon_sym_SEMI] = ACTIONS(6797), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6797), + [anon_sym___based] = ACTIONS(6795), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_RBRACE] = ACTIONS(6797), + [anon_sym_signed] = ACTIONS(6795), + [anon_sym_unsigned] = ACTIONS(6795), + [anon_sym_long] = ACTIONS(6795), + [anon_sym_short] = ACTIONS(6795), + [anon_sym_LBRACK] = ACTIONS(6797), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [sym_primitive_type] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_COLON_RBRACK] = ACTIONS(6797), }, [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), + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_RPAREN] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6793), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6793), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6793), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6793), + [anon_sym_GT_GT] = ACTIONS(6793), + [anon_sym_SEMI] = ACTIONS(6793), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6793), + [anon_sym___based] = ACTIONS(6791), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_RBRACE] = ACTIONS(6793), + [anon_sym_signed] = ACTIONS(6791), + [anon_sym_unsigned] = ACTIONS(6791), + [anon_sym_long] = ACTIONS(6791), + [anon_sym_short] = ACTIONS(6791), + [anon_sym_LBRACK] = ACTIONS(6793), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [sym_primitive_type] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_COLON_RBRACK] = ACTIONS(6793), }, [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), + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_RPAREN] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6813), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6813), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6813), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6813), + [anon_sym_GT_GT] = ACTIONS(6813), + [anon_sym_SEMI] = ACTIONS(6813), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6813), + [anon_sym___based] = ACTIONS(6811), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_RBRACE] = ACTIONS(6813), + [anon_sym_signed] = ACTIONS(6811), + [anon_sym_unsigned] = ACTIONS(6811), + [anon_sym_long] = ACTIONS(6811), + [anon_sym_short] = ACTIONS(6811), + [anon_sym_LBRACK] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [sym_primitive_type] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_COLON_RBRACK] = ACTIONS(6813), }, [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), + [sym_identifier] = ACTIONS(9077), + [aux_sym_preproc_def_token1] = ACTIONS(9077), + [aux_sym_preproc_if_token1] = ACTIONS(9077), + [aux_sym_preproc_if_token2] = ACTIONS(9077), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9077), + [aux_sym_preproc_else_token1] = ACTIONS(9077), + [aux_sym_preproc_elif_token1] = ACTIONS(9077), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9077), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9077), + [sym_preproc_directive] = ACTIONS(9077), + [anon_sym_LPAREN2] = ACTIONS(9079), + [anon_sym_TILDE] = ACTIONS(9079), + [anon_sym_STAR] = ACTIONS(9079), + [anon_sym_AMP_AMP] = ACTIONS(9079), + [anon_sym_AMP] = ACTIONS(9077), + [anon_sym_SEMI] = ACTIONS(9079), + [anon_sym___extension__] = ACTIONS(9077), + [anon_sym_typedef] = ACTIONS(9077), + [anon_sym_virtual] = ACTIONS(9077), + [anon_sym_extern] = ACTIONS(9077), + [anon_sym___attribute__] = ACTIONS(9077), + [anon_sym___attribute] = ACTIONS(9077), + [anon_sym_using] = ACTIONS(9077), + [anon_sym_COLON_COLON] = ACTIONS(9079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9079), + [anon_sym___declspec] = ACTIONS(9077), + [anon_sym___based] = ACTIONS(9077), + [anon_sym_signed] = ACTIONS(9077), + [anon_sym_unsigned] = ACTIONS(9077), + [anon_sym_long] = ACTIONS(9077), + [anon_sym_short] = ACTIONS(9077), + [anon_sym_LBRACK] = ACTIONS(9077), + [anon_sym_static] = ACTIONS(9077), + [anon_sym_register] = ACTIONS(9077), + [anon_sym_inline] = ACTIONS(9077), + [anon_sym___inline] = ACTIONS(9077), + [anon_sym___inline__] = ACTIONS(9077), + [anon_sym___forceinline] = ACTIONS(9077), + [anon_sym_thread_local] = ACTIONS(9077), + [anon_sym___thread] = ACTIONS(9077), + [anon_sym_const] = ACTIONS(9077), + [anon_sym_constexpr] = ACTIONS(9077), + [anon_sym_volatile] = ACTIONS(9077), + [anon_sym_restrict] = ACTIONS(9077), + [anon_sym___restrict__] = ACTIONS(9077), + [anon_sym__Atomic] = ACTIONS(9077), + [anon_sym__Noreturn] = ACTIONS(9077), + [anon_sym_noreturn] = ACTIONS(9077), + [anon_sym__Nonnull] = ACTIONS(9077), + [anon_sym_mutable] = ACTIONS(9077), + [anon_sym_constinit] = ACTIONS(9077), + [anon_sym_consteval] = ACTIONS(9077), + [anon_sym_alignas] = ACTIONS(9077), + [anon_sym__Alignas] = ACTIONS(9077), + [sym_primitive_type] = ACTIONS(9077), + [anon_sym_enum] = ACTIONS(9077), + [anon_sym_class] = ACTIONS(9077), + [anon_sym_struct] = ACTIONS(9077), + [anon_sym_union] = ACTIONS(9077), + [anon_sym_typename] = ACTIONS(9077), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9077), + [anon_sym_decltype] = ACTIONS(9077), + [anon_sym_explicit] = ACTIONS(9077), + [anon_sym_private] = ACTIONS(9077), + [anon_sym_template] = ACTIONS(9077), + [anon_sym_operator] = ACTIONS(9077), + [anon_sym_friend] = ACTIONS(9077), + [anon_sym_public] = ACTIONS(9077), + [anon_sym_protected] = ACTIONS(9077), + [anon_sym_static_assert] = ACTIONS(9077), + [anon_sym_LBRACK_COLON] = ACTIONS(9079), }, [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), + [sym_identifier] = ACTIONS(7911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7913), + [anon_sym_COMMA] = ACTIONS(7913), + [anon_sym_RPAREN] = ACTIONS(7913), + [aux_sym_preproc_if_token2] = ACTIONS(7913), + [aux_sym_preproc_else_token1] = ACTIONS(7913), + [aux_sym_preproc_elif_token1] = ACTIONS(7911), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7913), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7913), + [anon_sym_LPAREN2] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(7911), + [anon_sym_PLUS] = ACTIONS(7911), + [anon_sym_STAR] = ACTIONS(7913), + [anon_sym_SLASH] = ACTIONS(7911), + [anon_sym_PERCENT] = ACTIONS(7913), + [anon_sym_PIPE_PIPE] = ACTIONS(7913), + [anon_sym_AMP_AMP] = ACTIONS(7913), + [anon_sym_PIPE] = ACTIONS(7911), + [anon_sym_CARET] = ACTIONS(7913), + [anon_sym_AMP] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(7913), + [anon_sym_BANG_EQ] = ACTIONS(7913), + [anon_sym_GT] = ACTIONS(7911), + [anon_sym_GT_EQ] = ACTIONS(7913), + [anon_sym_LT_EQ] = ACTIONS(7911), + [anon_sym_LT] = ACTIONS(7911), + [anon_sym_LT_LT] = ACTIONS(7913), + [anon_sym_GT_GT] = ACTIONS(7913), + [anon_sym_SEMI] = ACTIONS(7913), + [anon_sym___extension__] = ACTIONS(7911), + [anon_sym___attribute__] = ACTIONS(7911), + [anon_sym___attribute] = ACTIONS(7911), + [anon_sym_COLON] = ACTIONS(7911), + [anon_sym_COLON_COLON] = ACTIONS(7913), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7913), + [anon_sym_LBRACE] = ACTIONS(7913), + [anon_sym_RBRACE] = ACTIONS(7913), + [anon_sym_LBRACK] = ACTIONS(7911), + [anon_sym_const] = ACTIONS(7911), + [anon_sym_constexpr] = ACTIONS(7911), + [anon_sym_volatile] = ACTIONS(7911), + [anon_sym_restrict] = ACTIONS(7911), + [anon_sym___restrict__] = ACTIONS(7911), + [anon_sym__Atomic] = ACTIONS(7911), + [anon_sym__Noreturn] = ACTIONS(7911), + [anon_sym_noreturn] = ACTIONS(7911), + [anon_sym__Nonnull] = ACTIONS(7911), + [anon_sym_mutable] = ACTIONS(7911), + [anon_sym_constinit] = ACTIONS(7911), + [anon_sym_consteval] = ACTIONS(7911), + [anon_sym_alignas] = ACTIONS(7911), + [anon_sym__Alignas] = ACTIONS(7911), + [anon_sym_QMARK] = ACTIONS(7913), + [anon_sym_LT_EQ_GT] = ACTIONS(7913), + [anon_sym_or] = ACTIONS(7911), + [anon_sym_and] = ACTIONS(7911), + [anon_sym_bitor] = ACTIONS(7911), + [anon_sym_xor] = ACTIONS(7911), + [anon_sym_bitand] = ACTIONS(7911), + [anon_sym_not_eq] = ACTIONS(7911), + [anon_sym_DASH_DASH] = ACTIONS(7913), + [anon_sym_PLUS_PLUS] = ACTIONS(7913), + [anon_sym_DOT] = ACTIONS(7911), + [anon_sym_DOT_STAR] = ACTIONS(7913), + [anon_sym_DASH_GT] = ACTIONS(7913), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7911), + [anon_sym_final] = ACTIONS(7911), + [anon_sym_override] = ACTIONS(7911), + [anon_sym_template] = ACTIONS(7911), + [anon_sym_requires] = ACTIONS(7911), + [anon_sym_LBRACK_COLON] = ACTIONS(7913), + [anon_sym_COLON_RBRACK] = ACTIONS(7913), }, [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), + [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(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), + [sym_identifier] = ACTIONS(9081), + [aux_sym_preproc_def_token1] = ACTIONS(9081), + [aux_sym_preproc_if_token1] = ACTIONS(9081), + [aux_sym_preproc_if_token2] = ACTIONS(9081), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9081), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9081), + [aux_sym_preproc_else_token1] = ACTIONS(9081), + [aux_sym_preproc_elif_token1] = ACTIONS(9081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9081), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9081), + [sym_preproc_directive] = ACTIONS(9081), + [anon_sym_LPAREN2] = ACTIONS(9083), + [anon_sym_TILDE] = ACTIONS(9083), + [anon_sym_STAR] = ACTIONS(9083), + [anon_sym_AMP_AMP] = ACTIONS(9083), + [anon_sym_AMP] = ACTIONS(9081), + [anon_sym_SEMI] = ACTIONS(9083), + [anon_sym___extension__] = ACTIONS(9081), + [anon_sym_typedef] = ACTIONS(9081), + [anon_sym_virtual] = ACTIONS(9081), + [anon_sym_extern] = ACTIONS(9081), + [anon_sym___attribute__] = ACTIONS(9081), + [anon_sym___attribute] = ACTIONS(9081), + [anon_sym_using] = ACTIONS(9081), + [anon_sym_COLON_COLON] = ACTIONS(9083), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9083), + [anon_sym___declspec] = ACTIONS(9081), + [anon_sym___based] = ACTIONS(9081), + [anon_sym_signed] = ACTIONS(9081), + [anon_sym_unsigned] = ACTIONS(9081), + [anon_sym_long] = ACTIONS(9081), + [anon_sym_short] = ACTIONS(9081), + [anon_sym_LBRACK] = ACTIONS(9081), + [anon_sym_static] = ACTIONS(9081), + [anon_sym_register] = ACTIONS(9081), + [anon_sym_inline] = ACTIONS(9081), + [anon_sym___inline] = ACTIONS(9081), + [anon_sym___inline__] = ACTIONS(9081), + [anon_sym___forceinline] = ACTIONS(9081), + [anon_sym_thread_local] = ACTIONS(9081), + [anon_sym___thread] = ACTIONS(9081), + [anon_sym_const] = ACTIONS(9081), + [anon_sym_constexpr] = ACTIONS(9081), + [anon_sym_volatile] = ACTIONS(9081), + [anon_sym_restrict] = ACTIONS(9081), + [anon_sym___restrict__] = ACTIONS(9081), + [anon_sym__Atomic] = ACTIONS(9081), + [anon_sym__Noreturn] = ACTIONS(9081), + [anon_sym_noreturn] = ACTIONS(9081), + [anon_sym__Nonnull] = ACTIONS(9081), + [anon_sym_mutable] = ACTIONS(9081), + [anon_sym_constinit] = ACTIONS(9081), + [anon_sym_consteval] = ACTIONS(9081), + [anon_sym_alignas] = ACTIONS(9081), + [anon_sym__Alignas] = ACTIONS(9081), + [sym_primitive_type] = ACTIONS(9081), + [anon_sym_enum] = ACTIONS(9081), + [anon_sym_class] = ACTIONS(9081), + [anon_sym_struct] = ACTIONS(9081), + [anon_sym_union] = ACTIONS(9081), + [anon_sym_typename] = ACTIONS(9081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9081), + [anon_sym_decltype] = ACTIONS(9081), + [anon_sym_explicit] = ACTIONS(9081), + [anon_sym_private] = ACTIONS(9081), + [anon_sym_template] = ACTIONS(9081), + [anon_sym_operator] = ACTIONS(9081), + [anon_sym_friend] = ACTIONS(9081), + [anon_sym_public] = ACTIONS(9081), + [anon_sym_protected] = ACTIONS(9081), + [anon_sym_static_assert] = ACTIONS(9081), + [anon_sym_LBRACK_COLON] = ACTIONS(9083), }, [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), + [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(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_COLON_COLON] = ACTIONS(7773), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7773), + [anon_sym_LBRACE] = ACTIONS(7773), + [anon_sym_RBRACE] = ACTIONS(7773), + [anon_sym_LBRACK] = 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_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), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7771), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_template] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_LBRACK_COLON] = ACTIONS(7773), + [anon_sym_COLON_RBRACK] = ACTIONS(7773), }, [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), + [sym_identifier] = ACTIONS(7710), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7712), + [anon_sym_COMMA] = ACTIONS(7712), + [anon_sym_RPAREN] = ACTIONS(7712), + [aux_sym_preproc_if_token2] = ACTIONS(7712), + [aux_sym_preproc_else_token1] = ACTIONS(7712), + [aux_sym_preproc_elif_token1] = ACTIONS(7710), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7712), + [anon_sym_LPAREN2] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7710), + [anon_sym_STAR] = ACTIONS(7712), + [anon_sym_SLASH] = ACTIONS(7710), + [anon_sym_PERCENT] = ACTIONS(7712), + [anon_sym_PIPE_PIPE] = ACTIONS(7712), + [anon_sym_AMP_AMP] = ACTIONS(7712), + [anon_sym_PIPE] = ACTIONS(7710), + [anon_sym_CARET] = ACTIONS(7712), + [anon_sym_AMP] = ACTIONS(7710), + [anon_sym_EQ_EQ] = ACTIONS(7712), + [anon_sym_BANG_EQ] = ACTIONS(7712), + [anon_sym_GT] = ACTIONS(7710), + [anon_sym_GT_EQ] = ACTIONS(7712), + [anon_sym_LT_EQ] = ACTIONS(7710), + [anon_sym_LT] = ACTIONS(7710), + [anon_sym_LT_LT] = ACTIONS(7712), + [anon_sym_GT_GT] = ACTIONS(7712), + [anon_sym_SEMI] = ACTIONS(7712), + [anon_sym___extension__] = ACTIONS(7710), + [anon_sym___attribute__] = ACTIONS(7710), + [anon_sym___attribute] = ACTIONS(7710), + [anon_sym_COLON] = ACTIONS(7710), + [anon_sym_COLON_COLON] = ACTIONS(7712), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7712), + [anon_sym_LBRACE] = ACTIONS(7712), + [anon_sym_RBRACE] = ACTIONS(7712), + [anon_sym_LBRACK] = ACTIONS(7710), + [anon_sym_const] = ACTIONS(7710), + [anon_sym_constexpr] = ACTIONS(7710), + [anon_sym_volatile] = ACTIONS(7710), + [anon_sym_restrict] = ACTIONS(7710), + [anon_sym___restrict__] = ACTIONS(7710), + [anon_sym__Atomic] = ACTIONS(7710), + [anon_sym__Noreturn] = ACTIONS(7710), + [anon_sym_noreturn] = ACTIONS(7710), + [anon_sym__Nonnull] = ACTIONS(7710), + [anon_sym_mutable] = ACTIONS(7710), + [anon_sym_constinit] = ACTIONS(7710), + [anon_sym_consteval] = ACTIONS(7710), + [anon_sym_alignas] = ACTIONS(7710), + [anon_sym__Alignas] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [anon_sym_LT_EQ_GT] = ACTIONS(7712), + [anon_sym_or] = ACTIONS(7710), + [anon_sym_and] = ACTIONS(7710), + [anon_sym_bitor] = ACTIONS(7710), + [anon_sym_xor] = ACTIONS(7710), + [anon_sym_bitand] = ACTIONS(7710), + [anon_sym_not_eq] = ACTIONS(7710), + [anon_sym_DASH_DASH] = ACTIONS(7712), + [anon_sym_PLUS_PLUS] = ACTIONS(7712), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_DOT_STAR] = ACTIONS(7712), + [anon_sym_DASH_GT] = ACTIONS(7712), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7710), + [anon_sym_final] = ACTIONS(7710), + [anon_sym_override] = ACTIONS(7710), + [anon_sym_template] = ACTIONS(7710), + [anon_sym_requires] = ACTIONS(7710), + [anon_sym_LBRACK_COLON] = ACTIONS(7712), + [anon_sym_COLON_RBRACK] = ACTIONS(7712), }, [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), + [sym_identifier] = ACTIONS(9085), + [aux_sym_preproc_def_token1] = ACTIONS(9085), + [aux_sym_preproc_if_token1] = ACTIONS(9085), + [aux_sym_preproc_if_token2] = ACTIONS(9085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9085), + [aux_sym_preproc_else_token1] = ACTIONS(9085), + [aux_sym_preproc_elif_token1] = ACTIONS(9085), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9085), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9085), + [sym_preproc_directive] = ACTIONS(9085), + [anon_sym_LPAREN2] = ACTIONS(9087), + [anon_sym_TILDE] = ACTIONS(9087), + [anon_sym_STAR] = ACTIONS(9087), + [anon_sym_AMP_AMP] = ACTIONS(9087), + [anon_sym_AMP] = ACTIONS(9085), + [anon_sym_SEMI] = ACTIONS(9087), + [anon_sym___extension__] = ACTIONS(9085), + [anon_sym_typedef] = ACTIONS(9085), + [anon_sym_virtual] = ACTIONS(9085), + [anon_sym_extern] = ACTIONS(9085), + [anon_sym___attribute__] = ACTIONS(9085), + [anon_sym___attribute] = ACTIONS(9085), + [anon_sym_using] = ACTIONS(9085), + [anon_sym_COLON_COLON] = ACTIONS(9087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9087), + [anon_sym___declspec] = ACTIONS(9085), + [anon_sym___based] = ACTIONS(9085), + [anon_sym_signed] = ACTIONS(9085), + [anon_sym_unsigned] = ACTIONS(9085), + [anon_sym_long] = ACTIONS(9085), + [anon_sym_short] = ACTIONS(9085), + [anon_sym_LBRACK] = ACTIONS(9085), + [anon_sym_static] = ACTIONS(9085), + [anon_sym_register] = ACTIONS(9085), + [anon_sym_inline] = ACTIONS(9085), + [anon_sym___inline] = ACTIONS(9085), + [anon_sym___inline__] = ACTIONS(9085), + [anon_sym___forceinline] = ACTIONS(9085), + [anon_sym_thread_local] = ACTIONS(9085), + [anon_sym___thread] = ACTIONS(9085), + [anon_sym_const] = ACTIONS(9085), + [anon_sym_constexpr] = ACTIONS(9085), + [anon_sym_volatile] = ACTIONS(9085), + [anon_sym_restrict] = ACTIONS(9085), + [anon_sym___restrict__] = ACTIONS(9085), + [anon_sym__Atomic] = ACTIONS(9085), + [anon_sym__Noreturn] = ACTIONS(9085), + [anon_sym_noreturn] = ACTIONS(9085), + [anon_sym__Nonnull] = ACTIONS(9085), + [anon_sym_mutable] = ACTIONS(9085), + [anon_sym_constinit] = ACTIONS(9085), + [anon_sym_consteval] = ACTIONS(9085), + [anon_sym_alignas] = ACTIONS(9085), + [anon_sym__Alignas] = ACTIONS(9085), + [sym_primitive_type] = ACTIONS(9085), + [anon_sym_enum] = ACTIONS(9085), + [anon_sym_class] = ACTIONS(9085), + [anon_sym_struct] = ACTIONS(9085), + [anon_sym_union] = ACTIONS(9085), + [anon_sym_typename] = ACTIONS(9085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9085), + [anon_sym_decltype] = ACTIONS(9085), + [anon_sym_explicit] = ACTIONS(9085), + [anon_sym_private] = ACTIONS(9085), + [anon_sym_template] = ACTIONS(9085), + [anon_sym_operator] = ACTIONS(9085), + [anon_sym_friend] = ACTIONS(9085), + [anon_sym_public] = ACTIONS(9085), + [anon_sym_protected] = ACTIONS(9085), + [anon_sym_static_assert] = ACTIONS(9085), + [anon_sym_LBRACK_COLON] = ACTIONS(9087), }, [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), + [sym_identifier] = ACTIONS(9089), + [aux_sym_preproc_def_token1] = ACTIONS(9089), + [aux_sym_preproc_if_token1] = ACTIONS(9089), + [aux_sym_preproc_if_token2] = ACTIONS(9089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9089), + [aux_sym_preproc_else_token1] = ACTIONS(9089), + [aux_sym_preproc_elif_token1] = ACTIONS(9089), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9089), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9089), + [sym_preproc_directive] = ACTIONS(9089), + [anon_sym_LPAREN2] = ACTIONS(9091), + [anon_sym_TILDE] = ACTIONS(9091), + [anon_sym_STAR] = ACTIONS(9091), + [anon_sym_AMP_AMP] = ACTIONS(9091), + [anon_sym_AMP] = ACTIONS(9089), + [anon_sym_SEMI] = ACTIONS(9091), + [anon_sym___extension__] = ACTIONS(9089), + [anon_sym_typedef] = ACTIONS(9089), + [anon_sym_virtual] = ACTIONS(9089), + [anon_sym_extern] = ACTIONS(9089), + [anon_sym___attribute__] = ACTIONS(9089), + [anon_sym___attribute] = ACTIONS(9089), + [anon_sym_using] = ACTIONS(9089), + [anon_sym_COLON_COLON] = ACTIONS(9091), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9091), + [anon_sym___declspec] = ACTIONS(9089), + [anon_sym___based] = ACTIONS(9089), + [anon_sym_signed] = ACTIONS(9089), + [anon_sym_unsigned] = ACTIONS(9089), + [anon_sym_long] = ACTIONS(9089), + [anon_sym_short] = ACTIONS(9089), + [anon_sym_LBRACK] = ACTIONS(9089), + [anon_sym_static] = ACTIONS(9089), + [anon_sym_register] = ACTIONS(9089), + [anon_sym_inline] = ACTIONS(9089), + [anon_sym___inline] = ACTIONS(9089), + [anon_sym___inline__] = ACTIONS(9089), + [anon_sym___forceinline] = ACTIONS(9089), + [anon_sym_thread_local] = ACTIONS(9089), + [anon_sym___thread] = ACTIONS(9089), + [anon_sym_const] = ACTIONS(9089), + [anon_sym_constexpr] = ACTIONS(9089), + [anon_sym_volatile] = ACTIONS(9089), + [anon_sym_restrict] = ACTIONS(9089), + [anon_sym___restrict__] = ACTIONS(9089), + [anon_sym__Atomic] = ACTIONS(9089), + [anon_sym__Noreturn] = ACTIONS(9089), + [anon_sym_noreturn] = ACTIONS(9089), + [anon_sym__Nonnull] = ACTIONS(9089), + [anon_sym_mutable] = ACTIONS(9089), + [anon_sym_constinit] = ACTIONS(9089), + [anon_sym_consteval] = ACTIONS(9089), + [anon_sym_alignas] = ACTIONS(9089), + [anon_sym__Alignas] = ACTIONS(9089), + [sym_primitive_type] = ACTIONS(9089), + [anon_sym_enum] = ACTIONS(9089), + [anon_sym_class] = ACTIONS(9089), + [anon_sym_struct] = ACTIONS(9089), + [anon_sym_union] = ACTIONS(9089), + [anon_sym_typename] = ACTIONS(9089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9089), + [anon_sym_decltype] = ACTIONS(9089), + [anon_sym_explicit] = ACTIONS(9089), + [anon_sym_private] = ACTIONS(9089), + [anon_sym_template] = ACTIONS(9089), + [anon_sym_operator] = ACTIONS(9089), + [anon_sym_friend] = ACTIONS(9089), + [anon_sym_public] = ACTIONS(9089), + [anon_sym_protected] = ACTIONS(9089), + [anon_sym_static_assert] = ACTIONS(9089), + [anon_sym_LBRACK_COLON] = ACTIONS(9091), }, [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), + [sym_identifier] = ACTIONS(7714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7716), + [anon_sym_COMMA] = ACTIONS(7716), + [anon_sym_RPAREN] = ACTIONS(7716), + [aux_sym_preproc_if_token2] = ACTIONS(7716), + [aux_sym_preproc_else_token1] = ACTIONS(7716), + [aux_sym_preproc_elif_token1] = ACTIONS(7714), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7716), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7716), + [anon_sym_LPAREN2] = ACTIONS(7716), + [anon_sym_DASH] = ACTIONS(7714), + [anon_sym_PLUS] = ACTIONS(7714), + [anon_sym_STAR] = ACTIONS(7716), + [anon_sym_SLASH] = ACTIONS(7714), + [anon_sym_PERCENT] = ACTIONS(7716), + [anon_sym_PIPE_PIPE] = ACTIONS(7716), + [anon_sym_AMP_AMP] = ACTIONS(7716), + [anon_sym_PIPE] = ACTIONS(7714), + [anon_sym_CARET] = ACTIONS(7716), + [anon_sym_AMP] = ACTIONS(7714), + [anon_sym_EQ_EQ] = ACTIONS(7716), + [anon_sym_BANG_EQ] = ACTIONS(7716), + [anon_sym_GT] = ACTIONS(7714), + [anon_sym_GT_EQ] = ACTIONS(7716), + [anon_sym_LT_EQ] = ACTIONS(7714), + [anon_sym_LT] = ACTIONS(7714), + [anon_sym_LT_LT] = ACTIONS(7716), + [anon_sym_GT_GT] = ACTIONS(7716), + [anon_sym_SEMI] = ACTIONS(7716), + [anon_sym___extension__] = ACTIONS(7714), + [anon_sym___attribute__] = ACTIONS(7714), + [anon_sym___attribute] = ACTIONS(7714), + [anon_sym_COLON] = ACTIONS(7714), + [anon_sym_COLON_COLON] = ACTIONS(7716), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7716), + [anon_sym_LBRACE] = ACTIONS(7716), + [anon_sym_RBRACE] = ACTIONS(7716), + [anon_sym_LBRACK] = ACTIONS(7714), + [anon_sym_const] = ACTIONS(7714), + [anon_sym_constexpr] = ACTIONS(7714), + [anon_sym_volatile] = ACTIONS(7714), + [anon_sym_restrict] = ACTIONS(7714), + [anon_sym___restrict__] = ACTIONS(7714), + [anon_sym__Atomic] = ACTIONS(7714), + [anon_sym__Noreturn] = ACTIONS(7714), + [anon_sym_noreturn] = ACTIONS(7714), + [anon_sym__Nonnull] = ACTIONS(7714), + [anon_sym_mutable] = ACTIONS(7714), + [anon_sym_constinit] = ACTIONS(7714), + [anon_sym_consteval] = ACTIONS(7714), + [anon_sym_alignas] = ACTIONS(7714), + [anon_sym__Alignas] = ACTIONS(7714), + [anon_sym_QMARK] = ACTIONS(7716), + [anon_sym_LT_EQ_GT] = ACTIONS(7716), + [anon_sym_or] = ACTIONS(7714), + [anon_sym_and] = ACTIONS(7714), + [anon_sym_bitor] = ACTIONS(7714), + [anon_sym_xor] = ACTIONS(7714), + [anon_sym_bitand] = ACTIONS(7714), + [anon_sym_not_eq] = ACTIONS(7714), + [anon_sym_DASH_DASH] = ACTIONS(7716), + [anon_sym_PLUS_PLUS] = ACTIONS(7716), + [anon_sym_DOT] = ACTIONS(7714), + [anon_sym_DOT_STAR] = ACTIONS(7716), + [anon_sym_DASH_GT] = ACTIONS(7716), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7714), + [anon_sym_final] = ACTIONS(7714), + [anon_sym_override] = ACTIONS(7714), + [anon_sym_template] = ACTIONS(7714), + [anon_sym_requires] = ACTIONS(7714), + [anon_sym_LBRACK_COLON] = ACTIONS(7716), + [anon_sym_COLON_RBRACK] = ACTIONS(7716), }, [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), + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_else_token1] = ACTIONS(7720), + [aux_sym_preproc_elif_token1] = ACTIONS(7718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7720), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7720), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7720), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7720), + [anon_sym_GT_GT] = ACTIONS(7720), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym_LBRACE] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), }, [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), + [sym_identifier] = ACTIONS(7735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_RPAREN] = ACTIONS(7737), + [aux_sym_preproc_if_token2] = ACTIONS(7737), + [aux_sym_preproc_else_token1] = ACTIONS(7737), + [aux_sym_preproc_elif_token1] = ACTIONS(7735), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7737), + [aux_sym_preproc_elifdef_token2] = 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_COLON_COLON] = ACTIONS(7737), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7737), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_RBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7735), + [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), + [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_decltype] = ACTIONS(7735), + [anon_sym_final] = ACTIONS(7735), + [anon_sym_override] = ACTIONS(7735), + [anon_sym_template] = ACTIONS(7735), + [anon_sym_requires] = ACTIONS(7735), + [anon_sym_LBRACK_COLON] = ACTIONS(7737), + [anon_sym_COLON_RBRACK] = ACTIONS(7737), }, [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), + [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(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_COLON_COLON] = ACTIONS(7765), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7765), + [anon_sym_LBRACE] = ACTIONS(7765), + [anon_sym_RBRACE] = ACTIONS(7765), + [anon_sym_LBRACK] = 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_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), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7763), + [anon_sym_final] = ACTIONS(7763), + [anon_sym_override] = ACTIONS(7763), + [anon_sym_template] = ACTIONS(7763), + [anon_sym_requires] = ACTIONS(7763), + [anon_sym_LBRACK_COLON] = ACTIONS(7765), + [anon_sym_COLON_RBRACK] = ACTIONS(7765), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_STAR] = ACTIONS(6822), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE] = ACTIONS(6815), + [anon_sym_CARET] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_EQ_EQ] = ACTIONS(6822), + [anon_sym_BANG_EQ] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6815), + [anon_sym_GT_EQ] = ACTIONS(6822), + [anon_sym_LT_EQ] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(6815), + [anon_sym_LT_LT] = ACTIONS(6822), + [anon_sym_GT_GT] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6822), + [anon_sym___based] = ACTIONS(6815), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6822), + [anon_sym_signed] = ACTIONS(6815), + [anon_sym_unsigned] = ACTIONS(6815), + [anon_sym_long] = ACTIONS(6815), + [anon_sym_short] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(6822), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [sym_primitive_type] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_LT_EQ_GT] = ACTIONS(6822), + [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(6822), + [anon_sym_PLUS_PLUS] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6815), + [anon_sym_DOT_STAR] = ACTIONS(6822), + [anon_sym_DASH_GT] = ACTIONS(6822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_COLON_RBRACK] = ACTIONS(6822), }, [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), + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [aux_sym_preproc_if_token2] = ACTIONS(7796), + [aux_sym_preproc_else_token1] = ACTIONS(7796), + [aux_sym_preproc_elif_token1] = ACTIONS(7794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7796), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7796), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7796), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7796), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7796), + [anon_sym_GT_GT] = ACTIONS(7796), + [anon_sym_SEMI] = ACTIONS(7796), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym___attribute__] = ACTIONS(7794), + [anon_sym___attribute] = ACTIONS(7794), + [anon_sym_COLON] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7796), + [anon_sym_LBRACE] = ACTIONS(7796), + [anon_sym_RBRACE] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), + [anon_sym_COLON_RBRACK] = ACTIONS(7796), }, [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), + [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(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), + [sym_identifier] = ACTIONS(9093), + [aux_sym_preproc_def_token1] = ACTIONS(9093), + [aux_sym_preproc_if_token1] = ACTIONS(9093), + [aux_sym_preproc_if_token2] = ACTIONS(9093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9093), + [aux_sym_preproc_else_token1] = ACTIONS(9093), + [aux_sym_preproc_elif_token1] = ACTIONS(9093), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9093), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9093), + [sym_preproc_directive] = ACTIONS(9093), + [anon_sym_LPAREN2] = ACTIONS(9095), + [anon_sym_TILDE] = ACTIONS(9095), + [anon_sym_STAR] = ACTIONS(9095), + [anon_sym_AMP_AMP] = ACTIONS(9095), + [anon_sym_AMP] = ACTIONS(9093), + [anon_sym_SEMI] = ACTIONS(9095), + [anon_sym___extension__] = ACTIONS(9093), + [anon_sym_typedef] = ACTIONS(9093), + [anon_sym_virtual] = ACTIONS(9093), + [anon_sym_extern] = ACTIONS(9093), + [anon_sym___attribute__] = ACTIONS(9093), + [anon_sym___attribute] = ACTIONS(9093), + [anon_sym_using] = ACTIONS(9093), + [anon_sym_COLON_COLON] = ACTIONS(9095), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9095), + [anon_sym___declspec] = ACTIONS(9093), + [anon_sym___based] = ACTIONS(9093), + [anon_sym_signed] = ACTIONS(9093), + [anon_sym_unsigned] = ACTIONS(9093), + [anon_sym_long] = ACTIONS(9093), + [anon_sym_short] = ACTIONS(9093), + [anon_sym_LBRACK] = ACTIONS(9093), + [anon_sym_static] = ACTIONS(9093), + [anon_sym_register] = ACTIONS(9093), + [anon_sym_inline] = ACTIONS(9093), + [anon_sym___inline] = ACTIONS(9093), + [anon_sym___inline__] = ACTIONS(9093), + [anon_sym___forceinline] = ACTIONS(9093), + [anon_sym_thread_local] = ACTIONS(9093), + [anon_sym___thread] = ACTIONS(9093), + [anon_sym_const] = ACTIONS(9093), + [anon_sym_constexpr] = ACTIONS(9093), + [anon_sym_volatile] = ACTIONS(9093), + [anon_sym_restrict] = ACTIONS(9093), + [anon_sym___restrict__] = ACTIONS(9093), + [anon_sym__Atomic] = ACTIONS(9093), + [anon_sym__Noreturn] = ACTIONS(9093), + [anon_sym_noreturn] = ACTIONS(9093), + [anon_sym__Nonnull] = ACTIONS(9093), + [anon_sym_mutable] = ACTIONS(9093), + [anon_sym_constinit] = ACTIONS(9093), + [anon_sym_consteval] = ACTIONS(9093), + [anon_sym_alignas] = ACTIONS(9093), + [anon_sym__Alignas] = ACTIONS(9093), + [sym_primitive_type] = ACTIONS(9093), + [anon_sym_enum] = ACTIONS(9093), + [anon_sym_class] = ACTIONS(9093), + [anon_sym_struct] = ACTIONS(9093), + [anon_sym_union] = ACTIONS(9093), + [anon_sym_typename] = ACTIONS(9093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9093), + [anon_sym_decltype] = ACTIONS(9093), + [anon_sym_explicit] = ACTIONS(9093), + [anon_sym_private] = ACTIONS(9093), + [anon_sym_template] = ACTIONS(9093), + [anon_sym_operator] = ACTIONS(9093), + [anon_sym_friend] = ACTIONS(9093), + [anon_sym_public] = ACTIONS(9093), + [anon_sym_protected] = ACTIONS(9093), + [anon_sym_static_assert] = ACTIONS(9093), + [anon_sym_LBRACK_COLON] = ACTIONS(9095), }, [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), + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_else_token1] = ACTIONS(7720), + [aux_sym_preproc_elif_token1] = ACTIONS(7718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7720), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7720), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7720), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7720), + [anon_sym_GT_GT] = ACTIONS(7720), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym_LBRACE] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), }, [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), + [sym_identifier] = ACTIONS(7798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7800), + [anon_sym_COMMA] = ACTIONS(7800), + [anon_sym_RPAREN] = ACTIONS(7800), + [aux_sym_preproc_if_token2] = ACTIONS(7800), + [aux_sym_preproc_else_token1] = ACTIONS(7800), + [aux_sym_preproc_elif_token1] = ACTIONS(7798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7800), + [anon_sym_LPAREN2] = ACTIONS(7800), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_PLUS] = ACTIONS(7798), + [anon_sym_STAR] = ACTIONS(7800), + [anon_sym_SLASH] = ACTIONS(7798), + [anon_sym_PERCENT] = ACTIONS(7800), + [anon_sym_PIPE_PIPE] = ACTIONS(7800), + [anon_sym_AMP_AMP] = ACTIONS(7800), + [anon_sym_PIPE] = ACTIONS(7798), + [anon_sym_CARET] = ACTIONS(7800), + [anon_sym_AMP] = ACTIONS(7798), + [anon_sym_EQ_EQ] = ACTIONS(7800), + [anon_sym_BANG_EQ] = ACTIONS(7800), + [anon_sym_GT] = ACTIONS(7798), + [anon_sym_GT_EQ] = ACTIONS(7800), + [anon_sym_LT_EQ] = ACTIONS(7798), + [anon_sym_LT] = ACTIONS(7798), + [anon_sym_LT_LT] = ACTIONS(7800), + [anon_sym_GT_GT] = ACTIONS(7800), + [anon_sym_SEMI] = ACTIONS(7800), + [anon_sym___extension__] = ACTIONS(7798), + [anon_sym___attribute__] = ACTIONS(7798), + [anon_sym___attribute] = ACTIONS(7798), + [anon_sym_COLON] = ACTIONS(7798), + [anon_sym_COLON_COLON] = ACTIONS(7800), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7800), + [anon_sym_LBRACE] = ACTIONS(7800), + [anon_sym_RBRACE] = ACTIONS(7800), + [anon_sym_LBRACK] = ACTIONS(7798), + [anon_sym_const] = ACTIONS(7798), + [anon_sym_constexpr] = ACTIONS(7798), + [anon_sym_volatile] = ACTIONS(7798), + [anon_sym_restrict] = ACTIONS(7798), + [anon_sym___restrict__] = ACTIONS(7798), + [anon_sym__Atomic] = ACTIONS(7798), + [anon_sym__Noreturn] = ACTIONS(7798), + [anon_sym_noreturn] = ACTIONS(7798), + [anon_sym__Nonnull] = ACTIONS(7798), + [anon_sym_mutable] = ACTIONS(7798), + [anon_sym_constinit] = ACTIONS(7798), + [anon_sym_consteval] = ACTIONS(7798), + [anon_sym_alignas] = ACTIONS(7798), + [anon_sym__Alignas] = ACTIONS(7798), + [anon_sym_QMARK] = ACTIONS(7800), + [anon_sym_LT_EQ_GT] = ACTIONS(7800), + [anon_sym_or] = ACTIONS(7798), + [anon_sym_and] = ACTIONS(7798), + [anon_sym_bitor] = ACTIONS(7798), + [anon_sym_xor] = ACTIONS(7798), + [anon_sym_bitand] = ACTIONS(7798), + [anon_sym_not_eq] = ACTIONS(7798), + [anon_sym_DASH_DASH] = ACTIONS(7800), + [anon_sym_PLUS_PLUS] = ACTIONS(7800), + [anon_sym_DOT] = ACTIONS(7798), + [anon_sym_DOT_STAR] = ACTIONS(7800), + [anon_sym_DASH_GT] = ACTIONS(7800), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7798), + [anon_sym_final] = ACTIONS(7798), + [anon_sym_override] = ACTIONS(7798), + [anon_sym_template] = ACTIONS(7798), + [anon_sym_requires] = ACTIONS(7798), + [anon_sym_LBRACK_COLON] = ACTIONS(7800), + [anon_sym_COLON_RBRACK] = ACTIONS(7800), }, [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), + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_else_token1] = ACTIONS(7720), + [aux_sym_preproc_elif_token1] = ACTIONS(7718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7720), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7720), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7720), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7720), + [anon_sym_GT_GT] = ACTIONS(7720), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym_LBRACE] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(3772), + [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_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_typename] = ACTIONS(3770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3770), + [anon_sym_decltype] = ACTIONS(3770), + [anon_sym_explicit] = ACTIONS(3770), + [anon_sym_private] = ACTIONS(3770), + [anon_sym_template] = ACTIONS(3770), + [anon_sym_operator] = ACTIONS(3770), + [anon_sym_friend] = ACTIONS(3770), + [anon_sym_public] = ACTIONS(3770), + [anon_sym_protected] = ACTIONS(3770), + [anon_sym_static_assert] = ACTIONS(3770), + [anon_sym_LBRACK_COLON] = ACTIONS(3772), }, [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), + [sym_identifier] = ACTIONS(9097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9099), + [anon_sym_COMMA] = ACTIONS(9099), + [anon_sym_RPAREN] = ACTIONS(9099), + [aux_sym_preproc_if_token2] = ACTIONS(9099), + [aux_sym_preproc_else_token1] = ACTIONS(9099), + [aux_sym_preproc_elif_token1] = ACTIONS(9097), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9099), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9099), + [anon_sym_LPAREN2] = ACTIONS(9099), + [anon_sym_DASH] = ACTIONS(9097), + [anon_sym_PLUS] = ACTIONS(9097), + [anon_sym_STAR] = ACTIONS(9097), + [anon_sym_SLASH] = ACTIONS(9097), + [anon_sym_PERCENT] = ACTIONS(9097), + [anon_sym_PIPE_PIPE] = ACTIONS(9099), + [anon_sym_AMP_AMP] = ACTIONS(9099), + [anon_sym_PIPE] = ACTIONS(9097), + [anon_sym_CARET] = ACTIONS(9097), + [anon_sym_AMP] = ACTIONS(9097), + [anon_sym_EQ_EQ] = ACTIONS(9099), + [anon_sym_BANG_EQ] = ACTIONS(9099), + [anon_sym_GT] = ACTIONS(9097), + [anon_sym_GT_EQ] = ACTIONS(9099), + [anon_sym_LT_EQ] = ACTIONS(9097), + [anon_sym_LT] = ACTIONS(9097), + [anon_sym_LT_LT] = ACTIONS(9097), + [anon_sym_GT_GT] = ACTIONS(9097), + [anon_sym_SEMI] = ACTIONS(9099), + [anon_sym_COLON] = ACTIONS(9097), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9099), + [anon_sym_RBRACE] = ACTIONS(9099), + [anon_sym_LBRACK] = ACTIONS(9099), + [anon_sym_EQ] = ACTIONS(9097), + [anon_sym_QMARK] = ACTIONS(9099), + [anon_sym_STAR_EQ] = ACTIONS(9099), + [anon_sym_SLASH_EQ] = ACTIONS(9099), + [anon_sym_PERCENT_EQ] = ACTIONS(9099), + [anon_sym_PLUS_EQ] = ACTIONS(9099), + [anon_sym_DASH_EQ] = ACTIONS(9099), + [anon_sym_LT_LT_EQ] = ACTIONS(9099), + [anon_sym_GT_GT_EQ] = ACTIONS(9099), + [anon_sym_AMP_EQ] = ACTIONS(9099), + [anon_sym_CARET_EQ] = ACTIONS(9099), + [anon_sym_PIPE_EQ] = ACTIONS(9099), + [anon_sym_and_eq] = ACTIONS(9097), + [anon_sym_or_eq] = ACTIONS(9097), + [anon_sym_xor_eq] = ACTIONS(9097), + [anon_sym_LT_EQ_GT] = ACTIONS(9099), + [anon_sym_or] = ACTIONS(9097), + [anon_sym_and] = ACTIONS(9097), + [anon_sym_bitor] = ACTIONS(9097), + [anon_sym_xor] = ACTIONS(9097), + [anon_sym_bitand] = ACTIONS(9097), + [anon_sym_not_eq] = ACTIONS(9097), + [anon_sym_DASH_DASH] = ACTIONS(9099), + [anon_sym_PLUS_PLUS] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9097), + [anon_sym_DOT_STAR] = ACTIONS(9099), + [anon_sym_DASH_GT] = ACTIONS(9099), + [anon_sym_L_DQUOTE] = ACTIONS(9099), + [anon_sym_u_DQUOTE] = ACTIONS(9099), + [anon_sym_U_DQUOTE] = ACTIONS(9099), + [anon_sym_u8_DQUOTE] = ACTIONS(9099), + [anon_sym_DQUOTE] = ACTIONS(9099), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9099), + [anon_sym_LR_DQUOTE] = ACTIONS(9099), + [anon_sym_uR_DQUOTE] = ACTIONS(9099), + [anon_sym_UR_DQUOTE] = ACTIONS(9099), + [anon_sym_u8R_DQUOTE] = ACTIONS(9099), + [anon_sym_COLON_RBRACK] = ACTIONS(9099), + [sym_literal_suffix] = ACTIONS(9097), }, [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), + [sym_identifier] = ACTIONS(9101), + [aux_sym_preproc_def_token1] = ACTIONS(9101), + [aux_sym_preproc_if_token1] = ACTIONS(9101), + [aux_sym_preproc_if_token2] = ACTIONS(9101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9101), + [aux_sym_preproc_else_token1] = ACTIONS(9101), + [aux_sym_preproc_elif_token1] = ACTIONS(9101), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9101), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9101), + [sym_preproc_directive] = ACTIONS(9101), + [anon_sym_LPAREN2] = ACTIONS(9103), + [anon_sym_TILDE] = ACTIONS(9103), + [anon_sym_STAR] = ACTIONS(9103), + [anon_sym_AMP_AMP] = ACTIONS(9103), + [anon_sym_AMP] = ACTIONS(9101), + [anon_sym_SEMI] = ACTIONS(9103), + [anon_sym___extension__] = ACTIONS(9101), + [anon_sym_typedef] = ACTIONS(9101), + [anon_sym_virtual] = ACTIONS(9101), + [anon_sym_extern] = ACTIONS(9101), + [anon_sym___attribute__] = ACTIONS(9101), + [anon_sym___attribute] = ACTIONS(9101), + [anon_sym_using] = ACTIONS(9101), + [anon_sym_COLON_COLON] = ACTIONS(9103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9103), + [anon_sym___declspec] = ACTIONS(9101), + [anon_sym___based] = ACTIONS(9101), [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), + [anon_sym_LBRACK] = ACTIONS(9101), + [anon_sym_static] = ACTIONS(9101), + [anon_sym_register] = ACTIONS(9101), + [anon_sym_inline] = ACTIONS(9101), + [anon_sym___inline] = ACTIONS(9101), + [anon_sym___inline__] = ACTIONS(9101), + [anon_sym___forceinline] = ACTIONS(9101), + [anon_sym_thread_local] = ACTIONS(9101), + [anon_sym___thread] = ACTIONS(9101), + [anon_sym_const] = ACTIONS(9101), + [anon_sym_constexpr] = ACTIONS(9101), + [anon_sym_volatile] = ACTIONS(9101), + [anon_sym_restrict] = ACTIONS(9101), + [anon_sym___restrict__] = ACTIONS(9101), + [anon_sym__Atomic] = ACTIONS(9101), + [anon_sym__Noreturn] = ACTIONS(9101), + [anon_sym_noreturn] = ACTIONS(9101), + [anon_sym__Nonnull] = ACTIONS(9101), + [anon_sym_mutable] = ACTIONS(9101), + [anon_sym_constinit] = ACTIONS(9101), + [anon_sym_consteval] = ACTIONS(9101), + [anon_sym_alignas] = ACTIONS(9101), + [anon_sym__Alignas] = ACTIONS(9101), + [sym_primitive_type] = ACTIONS(9101), + [anon_sym_enum] = ACTIONS(9101), + [anon_sym_class] = ACTIONS(9101), + [anon_sym_struct] = ACTIONS(9101), + [anon_sym_union] = ACTIONS(9101), + [anon_sym_typename] = ACTIONS(9101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9101), + [anon_sym_decltype] = ACTIONS(9101), + [anon_sym_explicit] = ACTIONS(9101), + [anon_sym_private] = ACTIONS(9101), + [anon_sym_template] = ACTIONS(9101), + [anon_sym_operator] = ACTIONS(9101), + [anon_sym_friend] = ACTIONS(9101), + [anon_sym_public] = ACTIONS(9101), + [anon_sym_protected] = ACTIONS(9101), + [anon_sym_static_assert] = ACTIONS(9101), + [anon_sym_LBRACK_COLON] = ACTIONS(9103), }, [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), + [sym_identifier] = ACTIONS(4343), + [aux_sym_preproc_def_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token2] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4343), + [aux_sym_preproc_else_token1] = ACTIONS(4343), + [aux_sym_preproc_elif_token1] = ACTIONS(4343), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4343), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4343), + [sym_preproc_directive] = ACTIONS(4343), + [anon_sym_LPAREN2] = ACTIONS(4345), + [anon_sym_TILDE] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym___extension__] = ACTIONS(4343), + [anon_sym_typedef] = ACTIONS(4343), + [anon_sym_virtual] = ACTIONS(4343), + [anon_sym_extern] = ACTIONS(4343), + [anon_sym___attribute__] = ACTIONS(4343), + [anon_sym___attribute] = ACTIONS(4343), + [anon_sym_using] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4345), + [anon_sym___declspec] = ACTIONS(4343), + [anon_sym___based] = ACTIONS(4343), + [anon_sym_signed] = ACTIONS(4343), + [anon_sym_unsigned] = ACTIONS(4343), + [anon_sym_long] = ACTIONS(4343), + [anon_sym_short] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4343), + [anon_sym_static] = ACTIONS(4343), + [anon_sym_register] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym___inline] = ACTIONS(4343), + [anon_sym___inline__] = ACTIONS(4343), + [anon_sym___forceinline] = ACTIONS(4343), + [anon_sym_thread_local] = ACTIONS(4343), + [anon_sym___thread] = ACTIONS(4343), + [anon_sym_const] = ACTIONS(4343), + [anon_sym_constexpr] = ACTIONS(4343), + [anon_sym_volatile] = ACTIONS(4343), + [anon_sym_restrict] = ACTIONS(4343), + [anon_sym___restrict__] = ACTIONS(4343), + [anon_sym__Atomic] = ACTIONS(4343), + [anon_sym__Noreturn] = ACTIONS(4343), + [anon_sym_noreturn] = ACTIONS(4343), + [anon_sym__Nonnull] = ACTIONS(4343), + [anon_sym_mutable] = ACTIONS(4343), + [anon_sym_constinit] = ACTIONS(4343), + [anon_sym_consteval] = ACTIONS(4343), + [anon_sym_alignas] = ACTIONS(4343), + [anon_sym__Alignas] = ACTIONS(4343), + [sym_primitive_type] = ACTIONS(4343), + [anon_sym_enum] = ACTIONS(4343), + [anon_sym_class] = ACTIONS(4343), + [anon_sym_struct] = ACTIONS(4343), + [anon_sym_union] = ACTIONS(4343), + [anon_sym_typename] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4343), + [anon_sym_decltype] = ACTIONS(4343), + [anon_sym_explicit] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_template] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_friend] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_static_assert] = ACTIONS(4343), + [anon_sym_LBRACK_COLON] = ACTIONS(4345), }, [STATE(3301)] = { - [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), + [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(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), + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(3108), }, [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_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7713), - [anon_sym_override] = ACTIONS(7713), - [anon_sym_requires] = ACTIONS(7713), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7261), }, [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), + [sym_identifier] = ACTIONS(7802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7804), + [anon_sym_COMMA] = ACTIONS(7804), + [anon_sym_RPAREN] = ACTIONS(7804), + [aux_sym_preproc_if_token2] = ACTIONS(7804), + [aux_sym_preproc_else_token1] = ACTIONS(7804), + [aux_sym_preproc_elif_token1] = ACTIONS(7802), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7804), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7804), + [anon_sym_LPAREN2] = ACTIONS(7804), + [anon_sym_DASH] = ACTIONS(7802), + [anon_sym_PLUS] = ACTIONS(7802), + [anon_sym_STAR] = ACTIONS(7804), + [anon_sym_SLASH] = ACTIONS(7802), + [anon_sym_PERCENT] = ACTIONS(7804), + [anon_sym_PIPE_PIPE] = ACTIONS(7804), + [anon_sym_AMP_AMP] = ACTIONS(7804), + [anon_sym_PIPE] = ACTIONS(7802), + [anon_sym_CARET] = ACTIONS(7804), + [anon_sym_AMP] = ACTIONS(7802), + [anon_sym_EQ_EQ] = ACTIONS(7804), + [anon_sym_BANG_EQ] = ACTIONS(7804), + [anon_sym_GT] = ACTIONS(7802), + [anon_sym_GT_EQ] = ACTIONS(7804), + [anon_sym_LT_EQ] = ACTIONS(7802), + [anon_sym_LT] = ACTIONS(7802), + [anon_sym_LT_LT] = ACTIONS(7804), + [anon_sym_GT_GT] = ACTIONS(7804), + [anon_sym_SEMI] = ACTIONS(7804), + [anon_sym___extension__] = ACTIONS(7802), + [anon_sym___attribute__] = ACTIONS(7802), + [anon_sym___attribute] = ACTIONS(7802), + [anon_sym_COLON] = ACTIONS(7802), + [anon_sym_COLON_COLON] = ACTIONS(7804), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7804), + [anon_sym_LBRACE] = ACTIONS(7804), + [anon_sym_RBRACE] = ACTIONS(7804), + [anon_sym_LBRACK] = ACTIONS(7802), + [anon_sym_const] = ACTIONS(7802), + [anon_sym_constexpr] = ACTIONS(7802), + [anon_sym_volatile] = ACTIONS(7802), + [anon_sym_restrict] = ACTIONS(7802), + [anon_sym___restrict__] = ACTIONS(7802), + [anon_sym__Atomic] = ACTIONS(7802), + [anon_sym__Noreturn] = ACTIONS(7802), + [anon_sym_noreturn] = ACTIONS(7802), + [anon_sym__Nonnull] = ACTIONS(7802), + [anon_sym_mutable] = ACTIONS(7802), + [anon_sym_constinit] = ACTIONS(7802), + [anon_sym_consteval] = ACTIONS(7802), + [anon_sym_alignas] = ACTIONS(7802), + [anon_sym__Alignas] = ACTIONS(7802), + [anon_sym_QMARK] = ACTIONS(7804), + [anon_sym_LT_EQ_GT] = ACTIONS(7804), + [anon_sym_or] = ACTIONS(7802), + [anon_sym_and] = ACTIONS(7802), + [anon_sym_bitor] = ACTIONS(7802), + [anon_sym_xor] = ACTIONS(7802), + [anon_sym_bitand] = ACTIONS(7802), + [anon_sym_not_eq] = ACTIONS(7802), + [anon_sym_DASH_DASH] = ACTIONS(7804), + [anon_sym_PLUS_PLUS] = ACTIONS(7804), + [anon_sym_DOT] = ACTIONS(7802), + [anon_sym_DOT_STAR] = ACTIONS(7804), + [anon_sym_DASH_GT] = ACTIONS(7804), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7802), + [anon_sym_final] = ACTIONS(7802), + [anon_sym_override] = ACTIONS(7802), + [anon_sym_template] = ACTIONS(7802), + [anon_sym_requires] = ACTIONS(7802), + [anon_sym_LBRACK_COLON] = ACTIONS(7804), + [anon_sym_COLON_RBRACK] = ACTIONS(7804), }, [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), + [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(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_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(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_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(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), + [sym_identifier] = ACTIONS(4130), + [aux_sym_preproc_def_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token2] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4130), + [aux_sym_preproc_else_token1] = ACTIONS(4130), + [aux_sym_preproc_elif_token1] = ACTIONS(4130), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4130), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4130), + [sym_preproc_directive] = ACTIONS(4130), + [anon_sym_LPAREN2] = ACTIONS(4132), + [anon_sym_TILDE] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym___extension__] = ACTIONS(4130), + [anon_sym_typedef] = ACTIONS(4130), + [anon_sym_virtual] = ACTIONS(4130), + [anon_sym_extern] = ACTIONS(4130), + [anon_sym___attribute__] = ACTIONS(4130), + [anon_sym___attribute] = ACTIONS(4130), + [anon_sym_using] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4132), + [anon_sym___declspec] = ACTIONS(4130), + [anon_sym___based] = ACTIONS(4130), + [anon_sym_signed] = ACTIONS(4130), + [anon_sym_unsigned] = ACTIONS(4130), + [anon_sym_long] = ACTIONS(4130), + [anon_sym_short] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4130), + [anon_sym_static] = ACTIONS(4130), + [anon_sym_register] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym___inline] = ACTIONS(4130), + [anon_sym___inline__] = ACTIONS(4130), + [anon_sym___forceinline] = ACTIONS(4130), + [anon_sym_thread_local] = ACTIONS(4130), + [anon_sym___thread] = ACTIONS(4130), + [anon_sym_const] = ACTIONS(4130), + [anon_sym_constexpr] = ACTIONS(4130), + [anon_sym_volatile] = ACTIONS(4130), + [anon_sym_restrict] = ACTIONS(4130), + [anon_sym___restrict__] = ACTIONS(4130), + [anon_sym__Atomic] = ACTIONS(4130), + [anon_sym__Noreturn] = ACTIONS(4130), + [anon_sym_noreturn] = ACTIONS(4130), + [anon_sym__Nonnull] = ACTIONS(4130), + [anon_sym_mutable] = ACTIONS(4130), + [anon_sym_constinit] = ACTIONS(4130), + [anon_sym_consteval] = ACTIONS(4130), + [anon_sym_alignas] = ACTIONS(4130), + [anon_sym__Alignas] = ACTIONS(4130), + [sym_primitive_type] = ACTIONS(4130), + [anon_sym_enum] = ACTIONS(4130), + [anon_sym_class] = ACTIONS(4130), + [anon_sym_struct] = ACTIONS(4130), + [anon_sym_union] = ACTIONS(4130), + [anon_sym_typename] = ACTIONS(4130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4130), + [anon_sym_decltype] = ACTIONS(4130), + [anon_sym_explicit] = ACTIONS(4130), + [anon_sym_private] = ACTIONS(4130), + [anon_sym_template] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_friend] = ACTIONS(4130), + [anon_sym_public] = ACTIONS(4130), + [anon_sym_protected] = ACTIONS(4130), + [anon_sym_static_assert] = ACTIONS(4130), + [anon_sym_LBRACK_COLON] = ACTIONS(4132), }, [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), + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token2] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [aux_sym_preproc_else_token1] = ACTIONS(4134), + [aux_sym_preproc_elif_token1] = ACTIONS(4134), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_friend] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), }, [STATE(3309)] = { - [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(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(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), + [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_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_COLON_COLON] = ACTIONS(7741), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7741), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_LBRACK] = ACTIONS(7739), + [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_decltype] = ACTIONS(7739), + [anon_sym_final] = ACTIONS(7739), + [anon_sym_override] = ACTIONS(7739), + [anon_sym_template] = ACTIONS(7739), + [anon_sym_requires] = ACTIONS(7739), + [anon_sym_LBRACK_COLON] = ACTIONS(7741), + [anon_sym_COLON_RBRACK] = ACTIONS(7741), }, [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), + [sym_identifier] = ACTIONS(7747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_RPAREN] = ACTIONS(7749), + [aux_sym_preproc_if_token2] = ACTIONS(7749), + [aux_sym_preproc_else_token1] = ACTIONS(7749), + [aux_sym_preproc_elif_token1] = ACTIONS(7747), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7749), + [aux_sym_preproc_elifdef_token2] = 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_COLON_COLON] = ACTIONS(7749), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7749), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_RBRACE] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7747), + [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), + [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_decltype] = ACTIONS(7747), + [anon_sym_final] = ACTIONS(7747), + [anon_sym_override] = ACTIONS(7747), + [anon_sym_template] = ACTIONS(7747), + [anon_sym_requires] = ACTIONS(7747), + [anon_sym_LBRACK_COLON] = ACTIONS(7749), + [anon_sym_COLON_RBRACK] = ACTIONS(7749), }, [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), + [sym__abstract_declarator] = STATE(6000), + [sym_abstract_parenthesized_declarator] = STATE(5679), + [sym_abstract_pointer_declarator] = STATE(5679), + [sym_abstract_function_declarator] = STATE(5679), + [sym_abstract_array_declarator] = STATE(5679), + [sym_parameter_list] = STATE(2085), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(5679), + [sym__function_declarator_seq] = STATE(5680), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9653), + [sym_abstract_qualified_identifier] = STATE(5679), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(6658), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6766), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6768), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6770), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6772), + [anon_sym_LBRACK] = ACTIONS(6674), + [anon_sym_RBRACK] = ACTIONS(7862), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7862), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_and_eq] = ACTIONS(7864), + [anon_sym_or_eq] = ACTIONS(7864), + [anon_sym_xor_eq] = ACTIONS(7864), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7862), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = ACTIONS(7854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7856), + [anon_sym_COMMA] = ACTIONS(7856), + [anon_sym_RPAREN] = ACTIONS(7856), + [aux_sym_preproc_if_token2] = ACTIONS(7856), + [aux_sym_preproc_else_token1] = ACTIONS(7856), + [aux_sym_preproc_elif_token1] = ACTIONS(7854), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7856), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7856), + [anon_sym_LPAREN2] = ACTIONS(7856), + [anon_sym_DASH] = ACTIONS(7854), + [anon_sym_PLUS] = ACTIONS(7854), + [anon_sym_STAR] = ACTIONS(7856), + [anon_sym_SLASH] = ACTIONS(7854), + [anon_sym_PERCENT] = ACTIONS(7856), + [anon_sym_PIPE_PIPE] = ACTIONS(7856), + [anon_sym_AMP_AMP] = ACTIONS(7856), + [anon_sym_PIPE] = ACTIONS(7854), + [anon_sym_CARET] = ACTIONS(7856), + [anon_sym_AMP] = ACTIONS(7854), + [anon_sym_EQ_EQ] = ACTIONS(7856), + [anon_sym_BANG_EQ] = ACTIONS(7856), + [anon_sym_GT] = ACTIONS(7854), + [anon_sym_GT_EQ] = ACTIONS(7856), + [anon_sym_LT_EQ] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(7856), + [anon_sym_GT_GT] = ACTIONS(7856), + [anon_sym_SEMI] = ACTIONS(7856), + [anon_sym___extension__] = ACTIONS(7854), + [anon_sym___attribute__] = ACTIONS(7854), + [anon_sym___attribute] = ACTIONS(7854), + [anon_sym_COLON] = ACTIONS(7854), + [anon_sym_COLON_COLON] = ACTIONS(7856), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7856), + [anon_sym_LBRACE] = ACTIONS(7856), + [anon_sym_RBRACE] = ACTIONS(7856), + [anon_sym_LBRACK] = ACTIONS(7854), + [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(7854), + [anon_sym__Alignas] = ACTIONS(7854), + [anon_sym_QMARK] = ACTIONS(7856), + [anon_sym_LT_EQ_GT] = ACTIONS(7856), + [anon_sym_or] = ACTIONS(7854), + [anon_sym_and] = ACTIONS(7854), + [anon_sym_bitor] = ACTIONS(7854), + [anon_sym_xor] = ACTIONS(7854), + [anon_sym_bitand] = ACTIONS(7854), + [anon_sym_not_eq] = ACTIONS(7854), + [anon_sym_DASH_DASH] = ACTIONS(7856), + [anon_sym_PLUS_PLUS] = ACTIONS(7856), + [anon_sym_DOT] = ACTIONS(7854), + [anon_sym_DOT_STAR] = ACTIONS(7856), + [anon_sym_DASH_GT] = ACTIONS(7856), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7854), + [anon_sym_final] = ACTIONS(7854), + [anon_sym_override] = ACTIONS(7854), + [anon_sym_template] = ACTIONS(7854), + [anon_sym_requires] = ACTIONS(7854), + [anon_sym_LBRACK_COLON] = ACTIONS(7856), + [anon_sym_COLON_RBRACK] = ACTIONS(7856), }, [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), + [sym_identifier] = ACTIONS(9105), + [aux_sym_preproc_def_token1] = ACTIONS(9105), + [aux_sym_preproc_if_token1] = ACTIONS(9105), + [aux_sym_preproc_if_token2] = ACTIONS(9105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9105), + [aux_sym_preproc_else_token1] = ACTIONS(9105), + [aux_sym_preproc_elif_token1] = ACTIONS(9105), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9105), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9105), + [sym_preproc_directive] = ACTIONS(9105), + [anon_sym_LPAREN2] = ACTIONS(9107), + [anon_sym_TILDE] = ACTIONS(9107), + [anon_sym_STAR] = ACTIONS(9107), + [anon_sym_AMP_AMP] = ACTIONS(9107), + [anon_sym_AMP] = ACTIONS(9105), + [anon_sym_SEMI] = ACTIONS(9107), + [anon_sym___extension__] = ACTIONS(9105), + [anon_sym_typedef] = ACTIONS(9105), + [anon_sym_virtual] = ACTIONS(9105), + [anon_sym_extern] = ACTIONS(9105), + [anon_sym___attribute__] = ACTIONS(9105), + [anon_sym___attribute] = ACTIONS(9105), + [anon_sym_using] = ACTIONS(9105), + [anon_sym_COLON_COLON] = ACTIONS(9107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9107), + [anon_sym___declspec] = ACTIONS(9105), + [anon_sym___based] = ACTIONS(9105), + [anon_sym_signed] = ACTIONS(9105), + [anon_sym_unsigned] = ACTIONS(9105), + [anon_sym_long] = ACTIONS(9105), + [anon_sym_short] = ACTIONS(9105), + [anon_sym_LBRACK] = ACTIONS(9105), + [anon_sym_static] = ACTIONS(9105), + [anon_sym_register] = ACTIONS(9105), + [anon_sym_inline] = ACTIONS(9105), + [anon_sym___inline] = ACTIONS(9105), + [anon_sym___inline__] = ACTIONS(9105), + [anon_sym___forceinline] = ACTIONS(9105), + [anon_sym_thread_local] = ACTIONS(9105), + [anon_sym___thread] = ACTIONS(9105), + [anon_sym_const] = ACTIONS(9105), + [anon_sym_constexpr] = ACTIONS(9105), + [anon_sym_volatile] = ACTIONS(9105), + [anon_sym_restrict] = ACTIONS(9105), + [anon_sym___restrict__] = ACTIONS(9105), + [anon_sym__Atomic] = ACTIONS(9105), + [anon_sym__Noreturn] = ACTIONS(9105), + [anon_sym_noreturn] = ACTIONS(9105), + [anon_sym__Nonnull] = ACTIONS(9105), + [anon_sym_mutable] = ACTIONS(9105), + [anon_sym_constinit] = ACTIONS(9105), + [anon_sym_consteval] = ACTIONS(9105), + [anon_sym_alignas] = ACTIONS(9105), + [anon_sym__Alignas] = ACTIONS(9105), + [sym_primitive_type] = ACTIONS(9105), + [anon_sym_enum] = ACTIONS(9105), + [anon_sym_class] = ACTIONS(9105), + [anon_sym_struct] = ACTIONS(9105), + [anon_sym_union] = ACTIONS(9105), + [anon_sym_typename] = ACTIONS(9105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9105), + [anon_sym_decltype] = ACTIONS(9105), + [anon_sym_explicit] = ACTIONS(9105), + [anon_sym_private] = ACTIONS(9105), + [anon_sym_template] = ACTIONS(9105), + [anon_sym_operator] = ACTIONS(9105), + [anon_sym_friend] = ACTIONS(9105), + [anon_sym_public] = ACTIONS(9105), + [anon_sym_protected] = ACTIONS(9105), + [anon_sym_static_assert] = ACTIONS(9105), + [anon_sym_LBRACK_COLON] = ACTIONS(9107), }, [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), + [sym_identifier] = ACTIONS(7838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7840), + [anon_sym_COMMA] = ACTIONS(7840), + [anon_sym_RPAREN] = ACTIONS(7840), + [aux_sym_preproc_if_token2] = ACTIONS(7840), + [aux_sym_preproc_else_token1] = ACTIONS(7840), + [aux_sym_preproc_elif_token1] = ACTIONS(7838), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7840), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7840), + [anon_sym_LPAREN2] = ACTIONS(7840), + [anon_sym_DASH] = ACTIONS(7838), + [anon_sym_PLUS] = ACTIONS(7838), + [anon_sym_STAR] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7838), + [anon_sym_PERCENT] = ACTIONS(7840), + [anon_sym_PIPE_PIPE] = ACTIONS(7840), + [anon_sym_AMP_AMP] = ACTIONS(7840), + [anon_sym_PIPE] = ACTIONS(7838), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_AMP] = ACTIONS(7838), + [anon_sym_EQ_EQ] = ACTIONS(7840), + [anon_sym_BANG_EQ] = ACTIONS(7840), + [anon_sym_GT] = ACTIONS(7838), + [anon_sym_GT_EQ] = ACTIONS(7840), + [anon_sym_LT_EQ] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(7838), + [anon_sym_LT_LT] = ACTIONS(7840), + [anon_sym_GT_GT] = ACTIONS(7840), + [anon_sym_SEMI] = ACTIONS(7840), + [anon_sym___extension__] = ACTIONS(7838), + [anon_sym___attribute__] = ACTIONS(7838), + [anon_sym___attribute] = ACTIONS(7838), + [anon_sym_COLON] = ACTIONS(7838), + [anon_sym_COLON_COLON] = ACTIONS(7840), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7840), + [anon_sym_LBRACE] = ACTIONS(7840), + [anon_sym_RBRACE] = ACTIONS(7840), + [anon_sym_LBRACK] = ACTIONS(7838), + [anon_sym_const] = ACTIONS(7838), + [anon_sym_constexpr] = ACTIONS(7838), + [anon_sym_volatile] = ACTIONS(7838), + [anon_sym_restrict] = ACTIONS(7838), + [anon_sym___restrict__] = ACTIONS(7838), + [anon_sym__Atomic] = ACTIONS(7838), + [anon_sym__Noreturn] = ACTIONS(7838), + [anon_sym_noreturn] = ACTIONS(7838), + [anon_sym__Nonnull] = ACTIONS(7838), + [anon_sym_mutable] = ACTIONS(7838), + [anon_sym_constinit] = ACTIONS(7838), + [anon_sym_consteval] = ACTIONS(7838), + [anon_sym_alignas] = ACTIONS(7838), + [anon_sym__Alignas] = ACTIONS(7838), + [anon_sym_QMARK] = ACTIONS(7840), + [anon_sym_LT_EQ_GT] = ACTIONS(7840), + [anon_sym_or] = ACTIONS(7838), + [anon_sym_and] = ACTIONS(7838), + [anon_sym_bitor] = ACTIONS(7838), + [anon_sym_xor] = ACTIONS(7838), + [anon_sym_bitand] = ACTIONS(7838), + [anon_sym_not_eq] = ACTIONS(7838), + [anon_sym_DASH_DASH] = ACTIONS(7840), + [anon_sym_PLUS_PLUS] = ACTIONS(7840), + [anon_sym_DOT] = ACTIONS(7838), + [anon_sym_DOT_STAR] = ACTIONS(7840), + [anon_sym_DASH_GT] = ACTIONS(7840), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7838), + [anon_sym_final] = ACTIONS(7838), + [anon_sym_override] = ACTIONS(7838), + [anon_sym_template] = ACTIONS(7838), + [anon_sym_requires] = ACTIONS(7838), + [anon_sym_LBRACK_COLON] = ACTIONS(7840), + [anon_sym_COLON_RBRACK] = ACTIONS(7840), }, [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_ms_based_modifier] = STATE(12437), + [sym_ms_unaligned_ptr_modifier] = STATE(7214), + [sym_ms_pointer_modifier] = STATE(3335), + [sym__type_declarator] = STATE(9430), + [sym__abstract_declarator] = STATE(10144), + [sym_parenthesized_type_declarator] = STATE(3501), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(3501), + [sym_pointer_type_declarator] = STATE(3478), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(3501), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(3501), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4311), + [sym_alignas_qualifier] = STATE(2649), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(3501), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9525), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4311), + [aux_sym_pointer_declarator_repeat1] = STATE(3335), + [sym_identifier] = ACTIONS(8908), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(6000), + [anon_sym_STAR] = ACTIONS(9109), + [anon_sym_AMP_AMP] = ACTIONS(9111), + [anon_sym_AMP] = ACTIONS(9113), + [anon_sym___extension__] = ACTIONS(9115), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(9117), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(8922), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8922), + [sym_ms_signed_ptr_modifier] = ACTIONS(8922), + [anon_sym__unaligned] = ACTIONS(8924), + [anon_sym___unaligned] = ACTIONS(8924), + [anon_sym_signed] = ACTIONS(9119), + [anon_sym_unsigned] = ACTIONS(9119), + [anon_sym_long] = ACTIONS(9119), + [anon_sym_short] = ACTIONS(9119), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_const] = ACTIONS(9115), + [anon_sym_constexpr] = ACTIONS(9115), + [anon_sym_volatile] = ACTIONS(9115), + [anon_sym_restrict] = ACTIONS(9115), + [anon_sym___restrict__] = ACTIONS(9115), + [anon_sym__Atomic] = ACTIONS(9115), + [anon_sym__Noreturn] = ACTIONS(9115), + [anon_sym_noreturn] = ACTIONS(9115), + [anon_sym__Nonnull] = ACTIONS(9115), + [anon_sym_mutable] = ACTIONS(9115), + [anon_sym_constinit] = ACTIONS(9115), + [anon_sym_consteval] = ACTIONS(9115), + [anon_sym_alignas] = ACTIONS(9121), + [anon_sym__Alignas] = ACTIONS(9121), + [sym_primitive_type] = ACTIONS(9123), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_type_qualifier] = STATE(3393), + [sym_alignas_qualifier] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(3393), + [aux_sym_sized_type_specifier_repeat1] = STATE(3823), + [sym_identifier] = ACTIONS(9125), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7023), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7023), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7023), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7023), + [anon_sym_GT_GT] = ACTIONS(7023), + [anon_sym___extension__] = ACTIONS(9128), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON_COLON] = ACTIONS(7023), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(9131), + [anon_sym_unsigned] = ACTIONS(9131), + [anon_sym_long] = ACTIONS(9131), + [anon_sym_short] = ACTIONS(9131), + [anon_sym_LBRACK] = ACTIONS(7025), + [anon_sym_RBRACK] = ACTIONS(7023), + [anon_sym_const] = ACTIONS(9128), + [anon_sym_constexpr] = ACTIONS(9128), + [anon_sym_volatile] = ACTIONS(9128), + [anon_sym_restrict] = ACTIONS(9128), + [anon_sym___restrict__] = ACTIONS(9128), + [anon_sym__Atomic] = ACTIONS(9128), + [anon_sym__Noreturn] = ACTIONS(9128), + [anon_sym_noreturn] = ACTIONS(9128), + [anon_sym__Nonnull] = ACTIONS(9128), + [anon_sym_mutable] = ACTIONS(9128), + [anon_sym_constinit] = ACTIONS(9128), + [anon_sym_consteval] = ACTIONS(9128), + [anon_sym_alignas] = ACTIONS(9133), + [anon_sym__Alignas] = ACTIONS(9133), + [sym_primitive_type] = ACTIONS(9136), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7025), + [anon_sym_final] = ACTIONS(7025), + [anon_sym_override] = ACTIONS(7025), + [anon_sym_template] = ACTIONS(7025), + [anon_sym_requires] = ACTIONS(7025), + [anon_sym_LBRACK_COLON] = ACTIONS(7023), }, [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), + [sym_catch_clause] = STATE(3327), + [aux_sym_constructor_try_statement_repeat1] = STATE(3327), + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token2] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym___attribute] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym__Nonnull] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym__Alignas] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_friend] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_catch] = ACTIONS(9138), + [anon_sym_LBRACK_COLON] = ACTIONS(3186), }, [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), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym__function_attributes_end] = STATE(4788), + [sym__function_postfix] = STATE(5450), + [sym_trailing_return_type] = STATE(4872), + [sym_requires_clause] = STATE(5450), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8287), + [anon_sym_or_eq] = ACTIONS(8287), + [anon_sym_xor_eq] = ACTIONS(8287), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8287), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8287), + [anon_sym_not_eq] = ACTIONS(8287), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(9140), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6884), + [anon_sym_DASH_GT_STAR] = ACTIONS(8287), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6817), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6824), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6824), + [anon_sym_GT_GT] = ACTIONS(6824), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), - [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), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym__function_attributes_end] = STATE(4776), + [sym__function_postfix] = STATE(5368), + [sym_trailing_return_type] = STATE(4813), + [sym_requires_clause] = STATE(5368), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8528), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8573), + [anon_sym_override] = ACTIONS(8573), + [anon_sym_requires] = ACTIONS(8576), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [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), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym__function_attributes_end] = STATE(4780), + [sym__function_postfix] = STATE(5426), + [sym_trailing_return_type] = STATE(4814), + [sym_requires_clause] = STATE(5426), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8646), + [anon_sym_override] = ACTIONS(8646), + [anon_sym_requires] = ACTIONS(8649), + [anon_sym_DASH_GT_STAR] = ACTIONS(7623), }, [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), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym__function_attributes_end] = STATE(4796), + [sym__function_postfix] = STATE(5450), + [sym_trailing_return_type] = STATE(4815), + [sym_requires_clause] = STATE(5450), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8287), + [anon_sym_or_eq] = ACTIONS(8287), + [anon_sym_xor_eq] = ACTIONS(8287), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8287), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8287), + [anon_sym_not_eq] = ACTIONS(8287), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(9140), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9143), + [anon_sym_override] = ACTIONS(9143), + [anon_sym_requires] = ACTIONS(9146), + [anon_sym_DASH_GT_STAR] = ACTIONS(8287), }, [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), + [sym_catch_clause] = STATE(3327), + [aux_sym_constructor_try_statement_repeat1] = STATE(3327), + [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(9138), + [anon_sym_LBRACK_COLON] = ACTIONS(3182), }, [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), + [sym_type_qualifier] = STATE(3324), + [sym_alignas_qualifier] = STATE(3630), + [aux_sym__type_definition_type_repeat1] = STATE(3324), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7049), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7049), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7049), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7047), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7049), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(9149), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym___based] = ACTIONS(7047), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(9149), + [anon_sym_constexpr] = ACTIONS(9149), + [anon_sym_volatile] = ACTIONS(9149), + [anon_sym_restrict] = ACTIONS(9149), + [anon_sym___restrict__] = ACTIONS(9149), + [anon_sym__Atomic] = ACTIONS(9149), + [anon_sym__Noreturn] = ACTIONS(9149), + [anon_sym_noreturn] = ACTIONS(9149), + [anon_sym__Nonnull] = ACTIONS(9149), + [anon_sym_mutable] = ACTIONS(9149), + [anon_sym_constinit] = ACTIONS(9149), + [anon_sym_consteval] = ACTIONS(9149), + [anon_sym_alignas] = ACTIONS(9152), + [anon_sym__Alignas] = ACTIONS(9152), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_GT2] = ACTIONS(7049), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), }, [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), + [sym_identifier] = ACTIONS(7491), + [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(7491), + [anon_sym_COLON_COLON] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [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_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(7491), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7491), + [anon_sym_final] = ACTIONS(7491), + [anon_sym_override] = ACTIONS(7491), + [anon_sym_template] = ACTIONS(7491), + [anon_sym_requires] = ACTIONS(7491), + [anon_sym_DASH_GT_STAR] = ACTIONS(7493), + [anon_sym_LBRACK_COLON] = ACTIONS(7493), }, [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), + [sym_catch_clause] = STATE(3327), + [aux_sym_constructor_try_statement_repeat1] = STATE(3327), + [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(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3165), + [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(3165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3165), + [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(9138), + [anon_sym_LBRACK_COLON] = ACTIONS(3165), }, [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), + [sym_catch_clause] = STATE(3327), + [aux_sym_constructor_try_statement_repeat1] = STATE(3327), + [sym_identifier] = ACTIONS(3169), + [aux_sym_preproc_def_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token2] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3169), + [sym_preproc_directive] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym___extension__] = ACTIONS(3169), + [anon_sym_typedef] = ACTIONS(3169), + [anon_sym_virtual] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym___attribute__] = ACTIONS(3169), + [anon_sym___attribute] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3171), + [anon_sym___declspec] = ACTIONS(3169), + [anon_sym___based] = ACTIONS(3169), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_register] = ACTIONS(3169), + [anon_sym_inline] = ACTIONS(3169), + [anon_sym___inline] = ACTIONS(3169), + [anon_sym___inline__] = ACTIONS(3169), + [anon_sym___forceinline] = ACTIONS(3169), + [anon_sym_thread_local] = ACTIONS(3169), + [anon_sym___thread] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_constexpr] = ACTIONS(3169), + [anon_sym_volatile] = ACTIONS(3169), + [anon_sym_restrict] = ACTIONS(3169), + [anon_sym___restrict__] = ACTIONS(3169), + [anon_sym__Atomic] = ACTIONS(3169), + [anon_sym__Noreturn] = ACTIONS(3169), + [anon_sym_noreturn] = ACTIONS(3169), + [anon_sym__Nonnull] = ACTIONS(3169), + [anon_sym_mutable] = ACTIONS(3169), + [anon_sym_constinit] = ACTIONS(3169), + [anon_sym_consteval] = ACTIONS(3169), + [anon_sym_alignas] = ACTIONS(3169), + [anon_sym__Alignas] = ACTIONS(3169), + [sym_primitive_type] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_typename] = ACTIONS(3169), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3169), + [anon_sym_decltype] = ACTIONS(3169), + [anon_sym_explicit] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_template] = ACTIONS(3169), + [anon_sym_operator] = ACTIONS(3169), + [anon_sym_friend] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_protected] = ACTIONS(3169), + [anon_sym_static_assert] = ACTIONS(3169), + [anon_sym_catch] = ACTIONS(9155), + [anon_sym_LBRACK_COLON] = ACTIONS(3171), }, [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), + [sym_catch_clause] = STATE(3331), + [aux_sym_constructor_try_statement_repeat1] = STATE(3331), + [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(3165), + [anon_sym_TILDE] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_AMP_AMP] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3165), + [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(3165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3165), + [anon_sym___declspec] = ACTIONS(3163), + [anon_sym___based] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3165), + [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(9158), + [anon_sym_LBRACK_COLON] = ACTIONS(3165), }, [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_ms_based_modifier] = STATE(12869), + [sym_ms_unaligned_ptr_modifier] = STATE(7214), + [sym_ms_pointer_modifier] = STATE(3345), + [sym__type_declarator] = STATE(9308), + [sym__abstract_declarator] = STATE(10143), + [sym_parenthesized_type_declarator] = STATE(9579), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(9579), + [sym_pointer_type_declarator] = STATE(9634), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(9579), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(9579), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4243), + [sym_alignas_qualifier] = STATE(3630), + [sym_parameter_list] = STATE(5887), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(9579), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9603), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4243), + [aux_sym_pointer_declarator_repeat1] = STATE(3345), + [sym_identifier] = ACTIONS(8908), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(8910), + [anon_sym_STAR] = ACTIONS(9160), + [anon_sym_AMP_AMP] = ACTIONS(9162), + [anon_sym_AMP] = ACTIONS(9164), + [anon_sym___extension__] = ACTIONS(9166), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(9168), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(8922), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8922), + [sym_ms_signed_ptr_modifier] = ACTIONS(8922), + [anon_sym__unaligned] = ACTIONS(8924), + [anon_sym___unaligned] = ACTIONS(8924), + [anon_sym_signed] = ACTIONS(8926), + [anon_sym_unsigned] = ACTIONS(8926), + [anon_sym_long] = ACTIONS(8926), + [anon_sym_short] = ACTIONS(8926), + [anon_sym_LBRACK] = ACTIONS(6014), + [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(9170), + [anon_sym__Alignas] = ACTIONS(9170), + [sym_primitive_type] = ACTIONS(8930), [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), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5994), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = ACTIONS(7495), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7497), + [anon_sym_SEMI] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7497), + [anon_sym___based] = ACTIONS(7495), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_signed] = ACTIONS(7495), + [anon_sym_unsigned] = ACTIONS(7495), + [anon_sym_long] = ACTIONS(7495), + [anon_sym_short] = ACTIONS(7495), + [anon_sym_LBRACK] = ACTIONS(7497), + [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), + [sym_primitive_type] = ACTIONS(7495), + [anon_sym_QMARK] = ACTIONS(7497), + [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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), }, [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), + [sym_catch_clause] = STATE(3331), + [aux_sym_constructor_try_statement_repeat1] = STATE(3331), + [sym_identifier] = ACTIONS(3169), + [aux_sym_preproc_def_token1] = ACTIONS(3169), + [aux_sym_preproc_if_token1] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3169), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3169), + [sym_preproc_directive] = ACTIONS(3169), + [anon_sym_LPAREN2] = ACTIONS(3171), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_SEMI] = ACTIONS(3171), + [anon_sym___extension__] = ACTIONS(3169), + [anon_sym_typedef] = ACTIONS(3169), + [anon_sym_virtual] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym___attribute__] = ACTIONS(3169), + [anon_sym___attribute] = ACTIONS(3169), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3171), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3171), + [anon_sym___declspec] = ACTIONS(3169), + [anon_sym___based] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_signed] = ACTIONS(3169), + [anon_sym_unsigned] = ACTIONS(3169), + [anon_sym_long] = ACTIONS(3169), + [anon_sym_short] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_register] = ACTIONS(3169), + [anon_sym_inline] = ACTIONS(3169), + [anon_sym___inline] = ACTIONS(3169), + [anon_sym___inline__] = ACTIONS(3169), + [anon_sym___forceinline] = ACTIONS(3169), + [anon_sym_thread_local] = ACTIONS(3169), + [anon_sym___thread] = ACTIONS(3169), + [anon_sym_const] = ACTIONS(3169), + [anon_sym_constexpr] = ACTIONS(3169), + [anon_sym_volatile] = ACTIONS(3169), + [anon_sym_restrict] = ACTIONS(3169), + [anon_sym___restrict__] = ACTIONS(3169), + [anon_sym__Atomic] = ACTIONS(3169), + [anon_sym__Noreturn] = ACTIONS(3169), + [anon_sym_noreturn] = ACTIONS(3169), + [anon_sym__Nonnull] = ACTIONS(3169), + [anon_sym_mutable] = ACTIONS(3169), + [anon_sym_constinit] = ACTIONS(3169), + [anon_sym_consteval] = ACTIONS(3169), + [anon_sym_alignas] = ACTIONS(3169), + [anon_sym__Alignas] = ACTIONS(3169), + [sym_primitive_type] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_struct] = ACTIONS(3169), + [anon_sym_union] = ACTIONS(3169), + [anon_sym_typename] = ACTIONS(3169), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3169), + [anon_sym_decltype] = ACTIONS(3169), + [anon_sym_explicit] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_template] = ACTIONS(3169), + [anon_sym_operator] = ACTIONS(3169), + [anon_sym_friend] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_protected] = ACTIONS(3169), + [anon_sym_static_assert] = ACTIONS(3169), + [anon_sym_catch] = ACTIONS(9172), + [anon_sym_LBRACK_COLON] = ACTIONS(3171), }, [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), + [sym_ms_based_modifier] = STATE(12869), + [sym_ms_unaligned_ptr_modifier] = STATE(7214), + [sym_ms_pointer_modifier] = STATE(3333), + [sym__type_declarator] = STATE(9308), + [sym__abstract_declarator] = STATE(10144), + [sym_parenthesized_type_declarator] = STATE(9579), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(9579), + [sym_pointer_type_declarator] = STATE(9634), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(9579), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(9579), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4261), + [sym_alignas_qualifier] = STATE(2649), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(9579), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9525), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4261), + [aux_sym_pointer_declarator_repeat1] = STATE(3333), + [sym_identifier] = ACTIONS(8908), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(8910), + [anon_sym_STAR] = ACTIONS(9175), + [anon_sym_AMP_AMP] = ACTIONS(9177), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym___extension__] = ACTIONS(9115), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(9117), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(8922), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8922), + [sym_ms_signed_ptr_modifier] = ACTIONS(8922), + [anon_sym__unaligned] = ACTIONS(8924), + [anon_sym___unaligned] = ACTIONS(8924), + [anon_sym_signed] = ACTIONS(8926), + [anon_sym_unsigned] = ACTIONS(8926), + [anon_sym_long] = ACTIONS(8926), + [anon_sym_short] = ACTIONS(8926), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_const] = ACTIONS(9115), + [anon_sym_constexpr] = ACTIONS(9115), + [anon_sym_volatile] = ACTIONS(9115), + [anon_sym_restrict] = ACTIONS(9115), + [anon_sym___restrict__] = ACTIONS(9115), + [anon_sym__Atomic] = ACTIONS(9115), + [anon_sym__Noreturn] = ACTIONS(9115), + [anon_sym_noreturn] = ACTIONS(9115), + [anon_sym__Nonnull] = ACTIONS(9115), + [anon_sym_mutable] = ACTIONS(9115), + [anon_sym_constinit] = ACTIONS(9115), + [anon_sym_consteval] = ACTIONS(9115), + [anon_sym_alignas] = ACTIONS(9121), + [anon_sym__Alignas] = ACTIONS(9121), + [sym_primitive_type] = ACTIONS(8930), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_ms_based_modifier] = STATE(12869), + [sym_ms_unaligned_ptr_modifier] = STATE(7214), + [sym_ms_pointer_modifier] = STATE(7011), + [sym__type_declarator] = STATE(9288), + [sym__abstract_declarator] = STATE(10183), + [sym_parenthesized_type_declarator] = STATE(9579), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(9579), + [sym_pointer_type_declarator] = STATE(9634), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(9579), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(9579), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4264), + [sym_alignas_qualifier] = STATE(2649), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(9579), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9525), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4264), + [aux_sym_pointer_declarator_repeat1] = STATE(7011), + [sym_identifier] = ACTIONS(8908), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(8910), + [anon_sym_STAR] = ACTIONS(9175), + [anon_sym_AMP_AMP] = ACTIONS(9177), + [anon_sym_AMP] = ACTIONS(9179), + [anon_sym___extension__] = ACTIONS(9115), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(9117), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(8922), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8922), + [sym_ms_signed_ptr_modifier] = ACTIONS(8922), + [anon_sym__unaligned] = ACTIONS(8924), + [anon_sym___unaligned] = ACTIONS(8924), + [anon_sym_signed] = ACTIONS(8926), + [anon_sym_unsigned] = ACTIONS(8926), + [anon_sym_long] = ACTIONS(8926), + [anon_sym_short] = ACTIONS(8926), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_const] = ACTIONS(9115), + [anon_sym_constexpr] = ACTIONS(9115), + [anon_sym_volatile] = ACTIONS(9115), + [anon_sym_restrict] = ACTIONS(9115), + [anon_sym___restrict__] = ACTIONS(9115), + [anon_sym__Atomic] = ACTIONS(9115), + [anon_sym__Noreturn] = ACTIONS(9115), + [anon_sym_noreturn] = ACTIONS(9115), + [anon_sym__Nonnull] = ACTIONS(9115), + [anon_sym_mutable] = ACTIONS(9115), + [anon_sym_constinit] = ACTIONS(9115), + [anon_sym_consteval] = ACTIONS(9115), + [anon_sym_alignas] = ACTIONS(9121), + [anon_sym__Alignas] = ACTIONS(9121), + [sym_primitive_type] = ACTIONS(8930), [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_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym__function_attributes_end] = STATE(4759), + [sym__function_postfix] = STATE(5426), + [sym_trailing_return_type] = STATE(4862), + [sym_requires_clause] = STATE(5426), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8643), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6884), + [anon_sym_DASH_GT_STAR] = ACTIONS(7623), }, [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_ms_based_modifier] = STATE(12437), + [sym_ms_unaligned_ptr_modifier] = STATE(7214), + [sym_ms_pointer_modifier] = STATE(7011), + [sym__type_declarator] = STATE(9434), + [sym__abstract_declarator] = STATE(10183), + [sym_parenthesized_type_declarator] = STATE(3501), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(3501), + [sym_pointer_type_declarator] = STATE(3478), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(3501), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(3501), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4314), + [sym_alignas_qualifier] = STATE(2649), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(3501), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9525), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4314), + [aux_sym_pointer_declarator_repeat1] = STATE(7011), + [sym_identifier] = ACTIONS(8908), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6000), + [anon_sym_STAR] = ACTIONS(9109), + [anon_sym_AMP_AMP] = ACTIONS(9111), + [anon_sym_AMP] = ACTIONS(9113), + [anon_sym___extension__] = ACTIONS(9115), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(9117), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(8922), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8922), + [sym_ms_signed_ptr_modifier] = ACTIONS(8922), + [anon_sym__unaligned] = ACTIONS(8924), + [anon_sym___unaligned] = ACTIONS(8924), + [anon_sym_signed] = ACTIONS(9119), + [anon_sym_unsigned] = ACTIONS(9119), + [anon_sym_long] = ACTIONS(9119), + [anon_sym_short] = ACTIONS(9119), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_const] = ACTIONS(9115), + [anon_sym_constexpr] = ACTIONS(9115), + [anon_sym_volatile] = ACTIONS(9115), + [anon_sym_restrict] = ACTIONS(9115), + [anon_sym___restrict__] = ACTIONS(9115), + [anon_sym__Atomic] = ACTIONS(9115), + [anon_sym__Noreturn] = ACTIONS(9115), + [anon_sym_noreturn] = ACTIONS(9115), + [anon_sym__Nonnull] = ACTIONS(9115), + [anon_sym_mutable] = ACTIONS(9115), + [anon_sym_constinit] = ACTIONS(9115), + [anon_sym_consteval] = ACTIONS(9115), + [anon_sym_alignas] = ACTIONS(9121), + [anon_sym__Alignas] = ACTIONS(9121), + [sym_primitive_type] = ACTIONS(9123), [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_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = ACTIONS(7838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7840), + [anon_sym_COMMA] = ACTIONS(7840), + [anon_sym_RPAREN] = ACTIONS(7840), + [anon_sym_LPAREN2] = ACTIONS(7840), + [anon_sym_DASH] = ACTIONS(7838), + [anon_sym_PLUS] = ACTIONS(7838), + [anon_sym_STAR] = ACTIONS(7838), + [anon_sym_SLASH] = ACTIONS(7838), + [anon_sym_PERCENT] = ACTIONS(7838), + [anon_sym_PIPE_PIPE] = ACTIONS(7840), + [anon_sym_AMP_AMP] = ACTIONS(7840), + [anon_sym_PIPE] = ACTIONS(7838), + [anon_sym_CARET] = ACTIONS(7838), + [anon_sym_AMP] = ACTIONS(7838), + [anon_sym_EQ_EQ] = ACTIONS(7840), + [anon_sym_BANG_EQ] = ACTIONS(7840), + [anon_sym_GT] = ACTIONS(7838), + [anon_sym_GT_EQ] = ACTIONS(7840), + [anon_sym_LT_EQ] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(7838), + [anon_sym_LT_LT] = ACTIONS(7838), + [anon_sym_GT_GT] = ACTIONS(7838), + [anon_sym___extension__] = ACTIONS(7838), + [anon_sym_COLON_COLON] = ACTIONS(7840), + [anon_sym_LBRACK] = ACTIONS(7838), + [anon_sym_EQ] = ACTIONS(7838), + [anon_sym_const] = ACTIONS(7838), + [anon_sym_constexpr] = ACTIONS(7838), + [anon_sym_volatile] = ACTIONS(7838), + [anon_sym_restrict] = ACTIONS(7838), + [anon_sym___restrict__] = ACTIONS(7838), + [anon_sym__Atomic] = ACTIONS(7838), + [anon_sym__Noreturn] = ACTIONS(7838), + [anon_sym_noreturn] = ACTIONS(7838), + [anon_sym__Nonnull] = ACTIONS(7838), + [anon_sym_mutable] = ACTIONS(7838), + [anon_sym_constinit] = ACTIONS(7838), + [anon_sym_consteval] = ACTIONS(7838), + [anon_sym_alignas] = ACTIONS(7838), + [anon_sym__Alignas] = ACTIONS(7838), + [anon_sym_QMARK] = ACTIONS(7840), + [anon_sym_STAR_EQ] = ACTIONS(7840), + [anon_sym_SLASH_EQ] = ACTIONS(7840), + [anon_sym_PERCENT_EQ] = ACTIONS(7840), + [anon_sym_PLUS_EQ] = ACTIONS(7840), + [anon_sym_DASH_EQ] = ACTIONS(7840), + [anon_sym_LT_LT_EQ] = ACTIONS(7840), + [anon_sym_GT_GT_EQ] = ACTIONS(7840), + [anon_sym_AMP_EQ] = ACTIONS(7840), + [anon_sym_CARET_EQ] = ACTIONS(7840), + [anon_sym_PIPE_EQ] = ACTIONS(7840), + [anon_sym_LT_EQ_GT] = ACTIONS(7840), + [anon_sym_or] = ACTIONS(7838), + [anon_sym_and] = ACTIONS(7838), + [anon_sym_bitor] = ACTIONS(7838), + [anon_sym_xor] = ACTIONS(7838), + [anon_sym_bitand] = ACTIONS(7838), + [anon_sym_not_eq] = ACTIONS(7838), + [anon_sym_DASH_DASH] = ACTIONS(7840), + [anon_sym_PLUS_PLUS] = ACTIONS(7840), + [anon_sym_DOT] = ACTIONS(7838), + [anon_sym_DOT_STAR] = ACTIONS(7840), + [anon_sym_DASH_GT] = ACTIONS(7838), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7838), + [anon_sym_final] = ACTIONS(7838), + [anon_sym_override] = ACTIONS(7838), + [anon_sym_template] = ACTIONS(7838), + [anon_sym_requires] = ACTIONS(7838), + [anon_sym_DASH_GT_STAR] = ACTIONS(7840), + [anon_sym_LBRACK_COLON] = ACTIONS(7840), }, [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), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_type_qualifier] = STATE(3360), + [sym_alignas_qualifier] = STATE(3630), + [aux_sym__type_definition_type_repeat1] = STATE(3360), + [aux_sym_sized_type_specifier_repeat1] = STATE(3551), + [sym_identifier] = ACTIONS(9181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6934), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6934), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6934), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6936), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(9184), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON_COLON] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(9187), + [anon_sym_unsigned] = ACTIONS(9187), + [anon_sym_long] = ACTIONS(9187), + [anon_sym_short] = ACTIONS(9187), + [anon_sym_LBRACK] = ACTIONS(6936), + [anon_sym_const] = ACTIONS(9184), + [anon_sym_constexpr] = ACTIONS(9184), + [anon_sym_volatile] = ACTIONS(9184), + [anon_sym_restrict] = ACTIONS(9184), + [anon_sym___restrict__] = ACTIONS(9184), + [anon_sym__Atomic] = ACTIONS(9184), + [anon_sym__Noreturn] = ACTIONS(9184), + [anon_sym_noreturn] = ACTIONS(9184), + [anon_sym__Nonnull] = ACTIONS(9184), + [anon_sym_mutable] = ACTIONS(9184), + [anon_sym_constinit] = ACTIONS(9184), + [anon_sym_consteval] = ACTIONS(9184), + [anon_sym_alignas] = ACTIONS(9189), + [anon_sym__Alignas] = ACTIONS(9189), + [sym_primitive_type] = ACTIONS(9192), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6936), + [anon_sym_final] = ACTIONS(6936), + [anon_sym_override] = ACTIONS(6936), + [anon_sym_template] = ACTIONS(6936), + [anon_sym_GT2] = ACTIONS(6934), + [anon_sym_requires] = ACTIONS(6936), + [anon_sym_LBRACK_COLON] = ACTIONS(6934), }, [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), + [sym_identifier] = ACTIONS(7743), + [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(7743), + [anon_sym_COLON_COLON] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7743), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7743), + [anon_sym_volatile] = ACTIONS(7743), + [anon_sym_restrict] = ACTIONS(7743), + [anon_sym___restrict__] = ACTIONS(7743), + [anon_sym__Atomic] = ACTIONS(7743), + [anon_sym__Noreturn] = ACTIONS(7743), + [anon_sym_noreturn] = ACTIONS(7743), + [anon_sym__Nonnull] = ACTIONS(7743), + [anon_sym_mutable] = ACTIONS(7743), + [anon_sym_constinit] = ACTIONS(7743), + [anon_sym_consteval] = ACTIONS(7743), + [anon_sym_alignas] = ACTIONS(7743), + [anon_sym__Alignas] = ACTIONS(7743), + [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(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7743), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7743), + [anon_sym_not_eq] = ACTIONS(7743), + [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_decltype] = ACTIONS(7743), + [anon_sym_final] = ACTIONS(7743), + [anon_sym_override] = ACTIONS(7743), + [anon_sym_template] = ACTIONS(7743), + [anon_sym_requires] = ACTIONS(7743), + [anon_sym_DASH_GT_STAR] = ACTIONS(7745), + [anon_sym_LBRACK_COLON] = ACTIONS(7745), }, [STATE(3341)] = { - [sym_identifier] = 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_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_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_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), + [sym_identifier] = ACTIONS(7751), + [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(7751), + [anon_sym_COLON_COLON] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7751), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_restrict] = ACTIONS(7751), + [anon_sym___restrict__] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [anon_sym__Noreturn] = ACTIONS(7751), + [anon_sym_noreturn] = ACTIONS(7751), + [anon_sym__Nonnull] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [anon_sym_constinit] = ACTIONS(7751), + [anon_sym_consteval] = ACTIONS(7751), + [anon_sym_alignas] = ACTIONS(7751), + [anon_sym__Alignas] = ACTIONS(7751), + [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(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7751), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7751), + [anon_sym_not_eq] = ACTIONS(7751), + [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_decltype] = ACTIONS(7751), + [anon_sym_final] = ACTIONS(7751), + [anon_sym_override] = ACTIONS(7751), + [anon_sym_template] = ACTIONS(7751), + [anon_sym_requires] = ACTIONS(7751), + [anon_sym_DASH_GT_STAR] = ACTIONS(7753), + [anon_sym_LBRACK_COLON] = ACTIONS(7753), }, [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), + [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(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(7759), + [anon_sym_COLON_COLON] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7759), + [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_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(7759), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7759), + [anon_sym_final] = ACTIONS(7759), + [anon_sym_override] = ACTIONS(7759), + [anon_sym_template] = ACTIONS(7759), + [anon_sym_requires] = ACTIONS(7759), + [anon_sym_DASH_GT_STAR] = ACTIONS(7761), + [anon_sym_LBRACK_COLON] = ACTIONS(7761), }, [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), + [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(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(7767), + [anon_sym_COLON_COLON] = ACTIONS(7769), + [anon_sym_LBRACK] = ACTIONS(7767), + [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_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(7767), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7767), + [anon_sym_final] = ACTIONS(7767), + [anon_sym_override] = ACTIONS(7767), + [anon_sym_template] = ACTIONS(7767), + [anon_sym_requires] = ACTIONS(7767), + [anon_sym_DASH_GT_STAR] = ACTIONS(7769), + [anon_sym_LBRACK_COLON] = ACTIONS(7769), }, [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), + [sym_identifier] = ACTIONS(7786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7788), + [anon_sym_COMMA] = ACTIONS(7788), + [anon_sym_RPAREN] = ACTIONS(7788), + [anon_sym_LPAREN2] = ACTIONS(7788), + [anon_sym_DASH] = ACTIONS(7786), + [anon_sym_PLUS] = ACTIONS(7786), + [anon_sym_STAR] = ACTIONS(7786), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_PERCENT] = ACTIONS(7786), + [anon_sym_PIPE_PIPE] = ACTIONS(7788), + [anon_sym_AMP_AMP] = ACTIONS(7788), + [anon_sym_PIPE] = ACTIONS(7786), + [anon_sym_CARET] = ACTIONS(7786), + [anon_sym_AMP] = ACTIONS(7786), + [anon_sym_EQ_EQ] = ACTIONS(7788), + [anon_sym_BANG_EQ] = ACTIONS(7788), + [anon_sym_GT] = ACTIONS(7786), + [anon_sym_GT_EQ] = ACTIONS(7788), + [anon_sym_LT_EQ] = ACTIONS(7786), + [anon_sym_LT] = ACTIONS(7786), + [anon_sym_LT_LT] = ACTIONS(7786), + [anon_sym_GT_GT] = ACTIONS(7786), + [anon_sym___extension__] = ACTIONS(7786), + [anon_sym_COLON_COLON] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7786), + [anon_sym_EQ] = ACTIONS(7786), + [anon_sym_const] = ACTIONS(7786), + [anon_sym_constexpr] = ACTIONS(7786), + [anon_sym_volatile] = ACTIONS(7786), + [anon_sym_restrict] = ACTIONS(7786), + [anon_sym___restrict__] = ACTIONS(7786), + [anon_sym__Atomic] = ACTIONS(7786), + [anon_sym__Noreturn] = ACTIONS(7786), + [anon_sym_noreturn] = ACTIONS(7786), + [anon_sym__Nonnull] = ACTIONS(7786), + [anon_sym_mutable] = ACTIONS(7786), + [anon_sym_constinit] = ACTIONS(7786), + [anon_sym_consteval] = ACTIONS(7786), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7788), + [anon_sym_STAR_EQ] = ACTIONS(7788), + [anon_sym_SLASH_EQ] = ACTIONS(7788), + [anon_sym_PERCENT_EQ] = ACTIONS(7788), + [anon_sym_PLUS_EQ] = ACTIONS(7788), + [anon_sym_DASH_EQ] = ACTIONS(7788), + [anon_sym_LT_LT_EQ] = ACTIONS(7788), + [anon_sym_GT_GT_EQ] = ACTIONS(7788), + [anon_sym_AMP_EQ] = ACTIONS(7788), + [anon_sym_CARET_EQ] = ACTIONS(7788), + [anon_sym_PIPE_EQ] = ACTIONS(7788), + [anon_sym_LT_EQ_GT] = ACTIONS(7788), + [anon_sym_or] = ACTIONS(7786), + [anon_sym_and] = ACTIONS(7786), + [anon_sym_bitor] = ACTIONS(7786), + [anon_sym_xor] = ACTIONS(7786), + [anon_sym_bitand] = ACTIONS(7786), + [anon_sym_not_eq] = ACTIONS(7786), + [anon_sym_DASH_DASH] = ACTIONS(7788), + [anon_sym_PLUS_PLUS] = ACTIONS(7788), + [anon_sym_DOT] = ACTIONS(7786), + [anon_sym_DOT_STAR] = ACTIONS(7788), + [anon_sym_DASH_GT] = ACTIONS(7786), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7786), + [anon_sym_final] = ACTIONS(7786), + [anon_sym_override] = ACTIONS(7786), + [anon_sym_template] = ACTIONS(7786), + [anon_sym_requires] = ACTIONS(7786), + [anon_sym_DASH_GT_STAR] = ACTIONS(7788), + [anon_sym_LBRACK_COLON] = ACTIONS(7788), }, [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), + [sym_ms_based_modifier] = STATE(12869), + [sym_ms_unaligned_ptr_modifier] = STATE(7214), + [sym_ms_pointer_modifier] = STATE(7011), + [sym__type_declarator] = STATE(9288), + [sym__abstract_declarator] = STATE(10162), + [sym_parenthesized_type_declarator] = STATE(9579), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(9579), + [sym_pointer_type_declarator] = STATE(9634), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(9579), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(9579), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4306), + [sym_alignas_qualifier] = STATE(3630), + [sym_parameter_list] = STATE(5887), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(9579), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9603), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4306), + [aux_sym_pointer_declarator_repeat1] = STATE(7011), + [sym_identifier] = ACTIONS(8908), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(8910), + [anon_sym_STAR] = ACTIONS(9160), + [anon_sym_AMP_AMP] = ACTIONS(9162), + [anon_sym_AMP] = ACTIONS(9164), + [anon_sym___extension__] = ACTIONS(9166), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(9168), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(8922), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8922), + [sym_ms_signed_ptr_modifier] = ACTIONS(8922), + [anon_sym__unaligned] = ACTIONS(8924), + [anon_sym___unaligned] = ACTIONS(8924), + [anon_sym_signed] = ACTIONS(8926), + [anon_sym_unsigned] = ACTIONS(8926), + [anon_sym_long] = ACTIONS(8926), + [anon_sym_short] = ACTIONS(8926), + [anon_sym_LBRACK] = ACTIONS(6014), + [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(9170), + [anon_sym__Alignas] = ACTIONS(9170), + [sym_primitive_type] = ACTIONS(8930), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = ACTIONS(7806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7808), + [anon_sym_COMMA] = ACTIONS(7808), + [anon_sym_RPAREN] = ACTIONS(7808), + [anon_sym_LPAREN2] = ACTIONS(7808), + [anon_sym_DASH] = ACTIONS(7806), + [anon_sym_PLUS] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7806), + [anon_sym_SLASH] = ACTIONS(7806), + [anon_sym_PERCENT] = ACTIONS(7806), + [anon_sym_PIPE_PIPE] = ACTIONS(7808), + [anon_sym_AMP_AMP] = ACTIONS(7808), + [anon_sym_PIPE] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7806), + [anon_sym_AMP] = ACTIONS(7806), + [anon_sym_EQ_EQ] = ACTIONS(7808), + [anon_sym_BANG_EQ] = ACTIONS(7808), + [anon_sym_GT] = ACTIONS(7806), + [anon_sym_GT_EQ] = ACTIONS(7808), + [anon_sym_LT_EQ] = ACTIONS(7806), + [anon_sym_LT] = ACTIONS(7806), + [anon_sym_LT_LT] = ACTIONS(7806), + [anon_sym_GT_GT] = ACTIONS(7806), + [anon_sym___extension__] = ACTIONS(7806), + [anon_sym_COLON_COLON] = ACTIONS(7808), + [anon_sym_LBRACK] = ACTIONS(7806), + [anon_sym_EQ] = ACTIONS(7806), + [anon_sym_const] = ACTIONS(7806), + [anon_sym_constexpr] = ACTIONS(7806), + [anon_sym_volatile] = ACTIONS(7806), + [anon_sym_restrict] = ACTIONS(7806), + [anon_sym___restrict__] = ACTIONS(7806), + [anon_sym__Atomic] = ACTIONS(7806), + [anon_sym__Noreturn] = ACTIONS(7806), + [anon_sym_noreturn] = ACTIONS(7806), + [anon_sym__Nonnull] = ACTIONS(7806), + [anon_sym_mutable] = ACTIONS(7806), + [anon_sym_constinit] = ACTIONS(7806), + [anon_sym_consteval] = ACTIONS(7806), + [anon_sym_alignas] = ACTIONS(7806), + [anon_sym__Alignas] = ACTIONS(7806), + [anon_sym_QMARK] = ACTIONS(7808), + [anon_sym_STAR_EQ] = ACTIONS(7808), + [anon_sym_SLASH_EQ] = ACTIONS(7808), + [anon_sym_PERCENT_EQ] = ACTIONS(7808), + [anon_sym_PLUS_EQ] = ACTIONS(7808), + [anon_sym_DASH_EQ] = ACTIONS(7808), + [anon_sym_LT_LT_EQ] = ACTIONS(7808), + [anon_sym_GT_GT_EQ] = ACTIONS(7808), + [anon_sym_AMP_EQ] = ACTIONS(7808), + [anon_sym_CARET_EQ] = ACTIONS(7808), + [anon_sym_PIPE_EQ] = ACTIONS(7808), + [anon_sym_LT_EQ_GT] = ACTIONS(7808), + [anon_sym_or] = ACTIONS(7806), + [anon_sym_and] = ACTIONS(7806), + [anon_sym_bitor] = ACTIONS(7806), + [anon_sym_xor] = ACTIONS(7806), + [anon_sym_bitand] = ACTIONS(7806), + [anon_sym_not_eq] = ACTIONS(7806), + [anon_sym_DASH_DASH] = ACTIONS(7808), + [anon_sym_PLUS_PLUS] = ACTIONS(7808), + [anon_sym_DOT] = ACTIONS(7806), + [anon_sym_DOT_STAR] = ACTIONS(7808), + [anon_sym_DASH_GT] = ACTIONS(7806), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7806), + [anon_sym_final] = ACTIONS(7806), + [anon_sym_override] = ACTIONS(7806), + [anon_sym_template] = ACTIONS(7806), + [anon_sym_requires] = ACTIONS(7806), + [anon_sym_DASH_GT_STAR] = ACTIONS(7808), + [anon_sym_LBRACK_COLON] = ACTIONS(7808), }, [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), + [sym_identifier] = ACTIONS(7850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7852), + [anon_sym_COMMA] = ACTIONS(7852), + [anon_sym_RPAREN] = ACTIONS(7852), + [anon_sym_LPAREN2] = ACTIONS(7852), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_PLUS] = ACTIONS(7850), + [anon_sym_STAR] = ACTIONS(7850), + [anon_sym_SLASH] = ACTIONS(7850), + [anon_sym_PERCENT] = ACTIONS(7850), + [anon_sym_PIPE_PIPE] = ACTIONS(7852), + [anon_sym_AMP_AMP] = ACTIONS(7852), + [anon_sym_PIPE] = ACTIONS(7850), + [anon_sym_CARET] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7850), + [anon_sym_EQ_EQ] = ACTIONS(7852), + [anon_sym_BANG_EQ] = ACTIONS(7852), + [anon_sym_GT] = ACTIONS(7850), + [anon_sym_GT_EQ] = ACTIONS(7852), + [anon_sym_LT_EQ] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(7850), + [anon_sym_LT_LT] = ACTIONS(7850), + [anon_sym_GT_GT] = ACTIONS(7850), + [anon_sym___extension__] = ACTIONS(7850), + [anon_sym_COLON_COLON] = ACTIONS(7852), + [anon_sym_LBRACK] = ACTIONS(7850), + [anon_sym_EQ] = ACTIONS(7850), + [anon_sym_const] = ACTIONS(7850), + [anon_sym_constexpr] = ACTIONS(7850), + [anon_sym_volatile] = ACTIONS(7850), + [anon_sym_restrict] = ACTIONS(7850), + [anon_sym___restrict__] = ACTIONS(7850), + [anon_sym__Atomic] = ACTIONS(7850), + [anon_sym__Noreturn] = ACTIONS(7850), + [anon_sym_noreturn] = ACTIONS(7850), + [anon_sym__Nonnull] = ACTIONS(7850), + [anon_sym_mutable] = ACTIONS(7850), + [anon_sym_constinit] = ACTIONS(7850), + [anon_sym_consteval] = ACTIONS(7850), + [anon_sym_alignas] = ACTIONS(7850), + [anon_sym__Alignas] = ACTIONS(7850), + [anon_sym_QMARK] = ACTIONS(7852), + [anon_sym_STAR_EQ] = ACTIONS(7852), + [anon_sym_SLASH_EQ] = ACTIONS(7852), + [anon_sym_PERCENT_EQ] = ACTIONS(7852), + [anon_sym_PLUS_EQ] = ACTIONS(7852), + [anon_sym_DASH_EQ] = ACTIONS(7852), + [anon_sym_LT_LT_EQ] = ACTIONS(7852), + [anon_sym_GT_GT_EQ] = ACTIONS(7852), + [anon_sym_AMP_EQ] = ACTIONS(7852), + [anon_sym_CARET_EQ] = ACTIONS(7852), + [anon_sym_PIPE_EQ] = ACTIONS(7852), + [anon_sym_LT_EQ_GT] = ACTIONS(7852), + [anon_sym_or] = ACTIONS(7850), + [anon_sym_and] = ACTIONS(7850), + [anon_sym_bitor] = ACTIONS(7850), + [anon_sym_xor] = ACTIONS(7850), + [anon_sym_bitand] = ACTIONS(7850), + [anon_sym_not_eq] = ACTIONS(7850), + [anon_sym_DASH_DASH] = ACTIONS(7852), + [anon_sym_PLUS_PLUS] = ACTIONS(7852), + [anon_sym_DOT] = ACTIONS(7850), + [anon_sym_DOT_STAR] = ACTIONS(7852), + [anon_sym_DASH_GT] = ACTIONS(7850), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7850), + [anon_sym_final] = ACTIONS(7850), + [anon_sym_override] = ACTIONS(7850), + [anon_sym_template] = ACTIONS(7850), + [anon_sym_requires] = ACTIONS(7850), + [anon_sym_DASH_GT_STAR] = ACTIONS(7852), + [anon_sym_LBRACK_COLON] = ACTIONS(7852), }, [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), + [sym_type_qualifier] = STATE(3316), + [sym_alignas_qualifier] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(3316), + [aux_sym_sized_type_specifier_repeat1] = STATE(3613), + [sym_identifier] = ACTIONS(9194), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6934), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6934), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6934), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6934), + [anon_sym___extension__] = ACTIONS(9197), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON_COLON] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(9200), + [anon_sym_unsigned] = ACTIONS(9200), + [anon_sym_long] = ACTIONS(9200), + [anon_sym_short] = ACTIONS(9200), + [anon_sym_LBRACK] = ACTIONS(6936), + [anon_sym_RBRACK] = ACTIONS(6934), + [anon_sym_const] = ACTIONS(9197), + [anon_sym_constexpr] = ACTIONS(9197), + [anon_sym_volatile] = ACTIONS(9197), + [anon_sym_restrict] = ACTIONS(9197), + [anon_sym___restrict__] = ACTIONS(9197), + [anon_sym__Atomic] = ACTIONS(9197), + [anon_sym__Noreturn] = ACTIONS(9197), + [anon_sym_noreturn] = ACTIONS(9197), + [anon_sym__Nonnull] = ACTIONS(9197), + [anon_sym_mutable] = ACTIONS(9197), + [anon_sym_constinit] = ACTIONS(9197), + [anon_sym_consteval] = ACTIONS(9197), + [anon_sym_alignas] = ACTIONS(9202), + [anon_sym__Alignas] = ACTIONS(9202), + [sym_primitive_type] = ACTIONS(9205), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(6936), + [anon_sym_final] = ACTIONS(6936), + [anon_sym_override] = ACTIONS(6936), + [anon_sym_template] = ACTIONS(6936), + [anon_sym_requires] = ACTIONS(6936), + [anon_sym_LBRACK_COLON] = ACTIONS(6934), }, [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), + [sym_decltype_auto] = STATE(3260), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8822), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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), + [sym_decltype_auto] = STATE(3260), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8822), + [anon_sym_decltype] = ACTIONS(6960), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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(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(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(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(3357)] = { - [sym_identifier] = 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_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_RBRACE] = 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_typename] = ACTIONS(4044), + [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(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(7771), + [anon_sym_COLON_COLON] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7771), + [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_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(7771), [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), + [anon_sym_decltype] = ACTIONS(7771), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_template] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_DASH_GT_STAR] = ACTIONS(7773), + [anon_sym_LBRACK_COLON] = ACTIONS(7773), + }, + [STATE(3352)] = { + [sym_identifier] = ACTIONS(7710), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7712), + [anon_sym_COMMA] = ACTIONS(7712), + [anon_sym_RPAREN] = ACTIONS(7712), + [anon_sym_LPAREN2] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7710), + [anon_sym_STAR] = ACTIONS(7710), + [anon_sym_SLASH] = ACTIONS(7710), + [anon_sym_PERCENT] = ACTIONS(7710), + [anon_sym_PIPE_PIPE] = ACTIONS(7712), + [anon_sym_AMP_AMP] = ACTIONS(7712), + [anon_sym_PIPE] = ACTIONS(7710), + [anon_sym_CARET] = ACTIONS(7710), + [anon_sym_AMP] = ACTIONS(7710), + [anon_sym_EQ_EQ] = ACTIONS(7712), + [anon_sym_BANG_EQ] = ACTIONS(7712), + [anon_sym_GT] = ACTIONS(7710), + [anon_sym_GT_EQ] = ACTIONS(7712), + [anon_sym_LT_EQ] = ACTIONS(7710), + [anon_sym_LT] = ACTIONS(7710), + [anon_sym_LT_LT] = ACTIONS(7710), + [anon_sym_GT_GT] = ACTIONS(7710), + [anon_sym___extension__] = ACTIONS(7710), + [anon_sym_COLON_COLON] = ACTIONS(7712), + [anon_sym_LBRACK] = ACTIONS(7710), + [anon_sym_EQ] = ACTIONS(7710), + [anon_sym_const] = ACTIONS(7710), + [anon_sym_constexpr] = ACTIONS(7710), + [anon_sym_volatile] = ACTIONS(7710), + [anon_sym_restrict] = ACTIONS(7710), + [anon_sym___restrict__] = ACTIONS(7710), + [anon_sym__Atomic] = ACTIONS(7710), + [anon_sym__Noreturn] = ACTIONS(7710), + [anon_sym_noreturn] = ACTIONS(7710), + [anon_sym__Nonnull] = ACTIONS(7710), + [anon_sym_mutable] = ACTIONS(7710), + [anon_sym_constinit] = ACTIONS(7710), + [anon_sym_consteval] = ACTIONS(7710), + [anon_sym_alignas] = ACTIONS(7710), + [anon_sym__Alignas] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [anon_sym_STAR_EQ] = ACTIONS(7712), + [anon_sym_SLASH_EQ] = ACTIONS(7712), + [anon_sym_PERCENT_EQ] = ACTIONS(7712), + [anon_sym_PLUS_EQ] = ACTIONS(7712), + [anon_sym_DASH_EQ] = ACTIONS(7712), + [anon_sym_LT_LT_EQ] = ACTIONS(7712), + [anon_sym_GT_GT_EQ] = ACTIONS(7712), + [anon_sym_AMP_EQ] = ACTIONS(7712), + [anon_sym_CARET_EQ] = ACTIONS(7712), + [anon_sym_PIPE_EQ] = ACTIONS(7712), + [anon_sym_LT_EQ_GT] = ACTIONS(7712), + [anon_sym_or] = ACTIONS(7710), + [anon_sym_and] = ACTIONS(7710), + [anon_sym_bitor] = ACTIONS(7710), + [anon_sym_xor] = ACTIONS(7710), + [anon_sym_bitand] = ACTIONS(7710), + [anon_sym_not_eq] = ACTIONS(7710), + [anon_sym_DASH_DASH] = ACTIONS(7712), + [anon_sym_PLUS_PLUS] = ACTIONS(7712), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_DOT_STAR] = ACTIONS(7712), + [anon_sym_DASH_GT] = ACTIONS(7710), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7710), + [anon_sym_final] = ACTIONS(7710), + [anon_sym_override] = ACTIONS(7710), + [anon_sym_template] = ACTIONS(7710), + [anon_sym_requires] = ACTIONS(7710), + [anon_sym_DASH_GT_STAR] = ACTIONS(7712), + [anon_sym_LBRACK_COLON] = ACTIONS(7712), + }, + [STATE(3353)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7718), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_DASH_GT_STAR] = ACTIONS(7720), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), + }, + [STATE(3354)] = { + [sym_decltype_auto] = STATE(3347), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8865), + [anon_sym_decltype] = ACTIONS(7171), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(3355)] = { + [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(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(7735), + [anon_sym_COLON_COLON] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7735), + [anon_sym_EQ] = ACTIONS(7735), + [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), + [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(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(7735), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7735), + [anon_sym_final] = ACTIONS(7735), + [anon_sym_override] = ACTIONS(7735), + [anon_sym_template] = ACTIONS(7735), + [anon_sym_requires] = ACTIONS(7735), + [anon_sym_DASH_GT_STAR] = ACTIONS(7737), + [anon_sym_LBRACK_COLON] = ACTIONS(7737), + }, + [STATE(3356)] = { + [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(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(7763), + [anon_sym_COLON_COLON] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7763), + [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_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(7763), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7763), + [anon_sym_final] = ACTIONS(7763), + [anon_sym_override] = ACTIONS(7763), + [anon_sym_template] = ACTIONS(7763), + [anon_sym_requires] = ACTIONS(7763), + [anon_sym_DASH_GT_STAR] = ACTIONS(7765), + [anon_sym_LBRACK_COLON] = ACTIONS(7765), + }, + [STATE(3357)] = { + [sym_decltype_auto] = STATE(3347), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8865), + [anon_sym_decltype] = ACTIONS(7171), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7718), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_DASH_GT_STAR] = ACTIONS(7720), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), }, [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), + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym_COLON_COLON] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7718), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7718), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7718), + [anon_sym_final] = ACTIONS(7718), + [anon_sym_override] = ACTIONS(7718), + [anon_sym_template] = ACTIONS(7718), + [anon_sym_requires] = ACTIONS(7718), + [anon_sym_DASH_GT_STAR] = ACTIONS(7720), + [anon_sym_LBRACK_COLON] = ACTIONS(7720), }, [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), + [sym_type_qualifier] = STATE(3324), + [sym_alignas_qualifier] = STATE(3630), + [aux_sym__type_definition_type_repeat1] = STATE(3324), + [aux_sym_sized_type_specifier_repeat1] = STATE(3827), + [sym_identifier] = ACTIONS(9207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7023), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7023), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7023), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7025), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7023), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym___extension__] = ACTIONS(9210), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON_COLON] = ACTIONS(7023), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(9213), + [anon_sym_unsigned] = ACTIONS(9213), + [anon_sym_long] = ACTIONS(9213), + [anon_sym_short] = ACTIONS(9213), + [anon_sym_LBRACK] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(9210), + [anon_sym_constexpr] = ACTIONS(9210), + [anon_sym_volatile] = ACTIONS(9210), + [anon_sym_restrict] = ACTIONS(9210), + [anon_sym___restrict__] = ACTIONS(9210), + [anon_sym__Atomic] = ACTIONS(9210), + [anon_sym__Noreturn] = ACTIONS(9210), + [anon_sym_noreturn] = ACTIONS(9210), + [anon_sym__Nonnull] = ACTIONS(9210), + [anon_sym_mutable] = ACTIONS(9210), + [anon_sym_constinit] = ACTIONS(9210), + [anon_sym_consteval] = ACTIONS(9210), + [anon_sym_alignas] = ACTIONS(9215), + [anon_sym__Alignas] = ACTIONS(9215), + [sym_primitive_type] = ACTIONS(9218), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7025), + [anon_sym_final] = ACTIONS(7025), + [anon_sym_override] = ACTIONS(7025), + [anon_sym_template] = ACTIONS(7025), + [anon_sym_GT2] = ACTIONS(7023), + [anon_sym_requires] = ACTIONS(7025), + [anon_sym_LBRACK_COLON] = ACTIONS(7023), }, [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), + [sym_attribute_specifier] = STATE(2209), + [sym_attribute_declaration] = STATE(3480), + [aux_sym_type_definition_repeat1] = STATE(2209), + [aux_sym_attributed_declarator_repeat1] = STATE(3480), + [sym_identifier] = ACTIONS(9220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9222), + [anon_sym_COMMA] = ACTIONS(9222), + [anon_sym_RPAREN] = ACTIONS(9222), + [aux_sym_preproc_if_token2] = ACTIONS(9222), + [aux_sym_preproc_else_token1] = ACTIONS(9222), + [aux_sym_preproc_elif_token1] = ACTIONS(9220), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9222), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9222), + [anon_sym_LPAREN2] = ACTIONS(9222), + [anon_sym_DASH] = ACTIONS(9220), + [anon_sym_PLUS] = ACTIONS(9220), + [anon_sym_STAR] = ACTIONS(9220), + [anon_sym_SLASH] = ACTIONS(9220), + [anon_sym_PERCENT] = ACTIONS(9220), + [anon_sym_PIPE_PIPE] = ACTIONS(9222), + [anon_sym_AMP_AMP] = ACTIONS(9222), + [anon_sym_PIPE] = ACTIONS(9220), + [anon_sym_CARET] = ACTIONS(9220), + [anon_sym_AMP] = ACTIONS(9220), + [anon_sym_EQ_EQ] = ACTIONS(9222), + [anon_sym_BANG_EQ] = ACTIONS(9222), + [anon_sym_GT] = ACTIONS(9220), + [anon_sym_GT_EQ] = ACTIONS(9222), + [anon_sym_LT_EQ] = ACTIONS(9220), + [anon_sym_LT] = ACTIONS(9220), + [anon_sym_LT_LT] = ACTIONS(9220), + [anon_sym_GT_GT] = ACTIONS(9220), + [anon_sym_SEMI] = ACTIONS(9222), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(9220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9222), + [anon_sym_RBRACE] = ACTIONS(9222), + [anon_sym_LBRACK] = ACTIONS(9220), + [anon_sym_EQ] = ACTIONS(9220), + [anon_sym_QMARK] = ACTIONS(9222), + [anon_sym_STAR_EQ] = ACTIONS(9222), + [anon_sym_SLASH_EQ] = ACTIONS(9222), + [anon_sym_PERCENT_EQ] = ACTIONS(9222), + [anon_sym_PLUS_EQ] = ACTIONS(9222), + [anon_sym_DASH_EQ] = ACTIONS(9222), + [anon_sym_LT_LT_EQ] = ACTIONS(9222), + [anon_sym_GT_GT_EQ] = ACTIONS(9222), + [anon_sym_AMP_EQ] = ACTIONS(9222), + [anon_sym_CARET_EQ] = ACTIONS(9222), + [anon_sym_PIPE_EQ] = ACTIONS(9222), + [anon_sym_and_eq] = ACTIONS(9220), + [anon_sym_or_eq] = ACTIONS(9220), + [anon_sym_xor_eq] = ACTIONS(9220), + [anon_sym_LT_EQ_GT] = ACTIONS(9222), + [anon_sym_or] = ACTIONS(9220), + [anon_sym_and] = ACTIONS(9220), + [anon_sym_bitor] = ACTIONS(9220), + [anon_sym_xor] = ACTIONS(9220), + [anon_sym_bitand] = ACTIONS(9220), + [anon_sym_not_eq] = ACTIONS(9220), + [anon_sym_DASH_DASH] = ACTIONS(9222), + [anon_sym_PLUS_PLUS] = ACTIONS(9222), + [anon_sym_DOT] = ACTIONS(9220), + [anon_sym_DOT_STAR] = ACTIONS(9222), + [anon_sym_DASH_GT] = ACTIONS(9222), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9220), + [anon_sym_override] = ACTIONS(9220), + [anon_sym_requires] = ACTIONS(9220), + [anon_sym_COLON_RBRACK] = ACTIONS(9222), }, [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), + [sym_attribute_specifier] = STATE(2209), + [sym_attribute_declaration] = STATE(3497), + [aux_sym_type_definition_repeat1] = STATE(2209), + [aux_sym_attributed_declarator_repeat1] = STATE(3497), + [sym_identifier] = ACTIONS(9224), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9226), + [anon_sym_COMMA] = ACTIONS(9226), + [anon_sym_RPAREN] = ACTIONS(9226), + [aux_sym_preproc_if_token2] = ACTIONS(9226), + [aux_sym_preproc_else_token1] = ACTIONS(9226), + [aux_sym_preproc_elif_token1] = ACTIONS(9224), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9226), + [anon_sym_LPAREN2] = ACTIONS(9226), + [anon_sym_DASH] = ACTIONS(9224), + [anon_sym_PLUS] = ACTIONS(9224), + [anon_sym_STAR] = ACTIONS(9224), + [anon_sym_SLASH] = ACTIONS(9224), + [anon_sym_PERCENT] = ACTIONS(9224), + [anon_sym_PIPE_PIPE] = ACTIONS(9226), + [anon_sym_AMP_AMP] = ACTIONS(9226), + [anon_sym_PIPE] = ACTIONS(9224), + [anon_sym_CARET] = ACTIONS(9224), + [anon_sym_AMP] = ACTIONS(9224), + [anon_sym_EQ_EQ] = ACTIONS(9226), + [anon_sym_BANG_EQ] = ACTIONS(9226), + [anon_sym_GT] = ACTIONS(9224), + [anon_sym_GT_EQ] = ACTIONS(9226), + [anon_sym_LT_EQ] = ACTIONS(9224), + [anon_sym_LT] = ACTIONS(9224), + [anon_sym_LT_LT] = ACTIONS(9224), + [anon_sym_GT_GT] = ACTIONS(9224), + [anon_sym_SEMI] = ACTIONS(9226), + [anon_sym___attribute__] = ACTIONS(6409), + [anon_sym___attribute] = ACTIONS(6409), + [anon_sym_COLON] = ACTIONS(9224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9226), + [anon_sym_RBRACE] = ACTIONS(9226), + [anon_sym_LBRACK] = ACTIONS(9224), + [anon_sym_EQ] = ACTIONS(9224), + [anon_sym_QMARK] = ACTIONS(9226), + [anon_sym_STAR_EQ] = ACTIONS(9226), + [anon_sym_SLASH_EQ] = ACTIONS(9226), + [anon_sym_PERCENT_EQ] = ACTIONS(9226), + [anon_sym_PLUS_EQ] = ACTIONS(9226), + [anon_sym_DASH_EQ] = ACTIONS(9226), + [anon_sym_LT_LT_EQ] = ACTIONS(9226), + [anon_sym_GT_GT_EQ] = ACTIONS(9226), + [anon_sym_AMP_EQ] = ACTIONS(9226), + [anon_sym_CARET_EQ] = ACTIONS(9226), + [anon_sym_PIPE_EQ] = ACTIONS(9226), + [anon_sym_and_eq] = ACTIONS(9224), + [anon_sym_or_eq] = ACTIONS(9224), + [anon_sym_xor_eq] = ACTIONS(9224), + [anon_sym_LT_EQ_GT] = ACTIONS(9226), + [anon_sym_or] = ACTIONS(9224), + [anon_sym_and] = ACTIONS(9224), + [anon_sym_bitor] = ACTIONS(9224), + [anon_sym_xor] = ACTIONS(9224), + [anon_sym_bitand] = ACTIONS(9224), + [anon_sym_not_eq] = ACTIONS(9224), + [anon_sym_DASH_DASH] = ACTIONS(9226), + [anon_sym_PLUS_PLUS] = ACTIONS(9226), + [anon_sym_DOT] = ACTIONS(9224), + [anon_sym_DOT_STAR] = ACTIONS(9226), + [anon_sym_DASH_GT] = ACTIONS(9226), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9224), + [anon_sym_override] = ACTIONS(9224), + [anon_sym_requires] = ACTIONS(9224), + [anon_sym_COLON_RBRACK] = ACTIONS(9226), }, [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), + [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(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(7747), + [anon_sym_COLON_COLON] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7747), + [anon_sym_EQ] = ACTIONS(7747), + [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), + [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(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(7747), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7747), + [anon_sym_final] = ACTIONS(7747), + [anon_sym_override] = ACTIONS(7747), + [anon_sym_template] = ACTIONS(7747), + [anon_sym_requires] = ACTIONS(7747), + [anon_sym_DASH_GT_STAR] = ACTIONS(7749), + [anon_sym_LBRACK_COLON] = ACTIONS(7749), }, [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), + [sym_catch_clause] = STATE(3331), + [aux_sym_constructor_try_statement_repeat1] = STATE(3331), + [sym_identifier] = ACTIONS(3184), + [aux_sym_preproc_def_token1] = ACTIONS(3184), + [aux_sym_preproc_if_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3184), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3186), + [anon_sym_STAR] = ACTIONS(3186), + [anon_sym_AMP_AMP] = ACTIONS(3186), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3186), + [anon_sym___extension__] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_virtual] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym___attribute__] = ACTIONS(3184), + [anon_sym___attribute] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3186), + [anon_sym___declspec] = ACTIONS(3184), + [anon_sym___based] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_signed] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym___inline] = ACTIONS(3184), + [anon_sym___inline__] = ACTIONS(3184), + [anon_sym___forceinline] = ACTIONS(3184), + [anon_sym_thread_local] = ACTIONS(3184), + [anon_sym___thread] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym___restrict__] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym__Noreturn] = ACTIONS(3184), + [anon_sym_noreturn] = ACTIONS(3184), + [anon_sym__Nonnull] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_constinit] = ACTIONS(3184), + [anon_sym_consteval] = ACTIONS(3184), + [anon_sym_alignas] = ACTIONS(3184), + [anon_sym__Alignas] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_operator] = ACTIONS(3184), + [anon_sym_friend] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_static_assert] = ACTIONS(3184), + [anon_sym_catch] = ACTIONS(9158), + [anon_sym_LBRACK_COLON] = ACTIONS(3186), }, [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_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(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(7755), + [anon_sym_COLON_COLON] = ACTIONS(7757), + [anon_sym_LBRACK] = ACTIONS(7755), + [anon_sym_EQ] = ACTIONS(7755), + [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_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(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(7755), [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), + [anon_sym_decltype] = ACTIONS(7755), + [anon_sym_final] = ACTIONS(7755), + [anon_sym_override] = ACTIONS(7755), + [anon_sym_template] = ACTIONS(7755), + [anon_sym_requires] = ACTIONS(7755), + [anon_sym_DASH_GT_STAR] = ACTIONS(7757), + [anon_sym_LBRACK_COLON] = ACTIONS(7757), }, [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), - [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_attribute_specifier] = STATE(4535), + [sym_attribute_declaration] = STATE(4929), + [sym_gnu_asm_expression] = STATE(10225), + [sym_virtual_specifier] = STATE(5085), + [sym__function_attributes_end] = STATE(4806), + [sym__function_postfix] = STATE(5368), + [sym_trailing_return_type] = STATE(4919), + [sym_requires_clause] = STATE(5368), + [aux_sym_type_definition_repeat1] = STATE(4535), + [aux_sym_attributed_declarator_repeat1] = STATE(4929), + [aux_sym__function_postfix_repeat1] = STATE(5085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6863), + [anon_sym___attribute] = ACTIONS(6865), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6867), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8528), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6884), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [STATE(3367)] = { - [sym_identifier] = 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_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_RBRACE] = 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_typename] = ACTIONS(4092), + [sym_identifier] = ACTIONS(7775), + [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(7775), + [anon_sym_COLON_COLON] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7775), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7775), + [anon_sym_volatile] = ACTIONS(7775), + [anon_sym_restrict] = ACTIONS(7775), + [anon_sym___restrict__] = ACTIONS(7775), + [anon_sym__Atomic] = ACTIONS(7775), + [anon_sym__Noreturn] = ACTIONS(7775), + [anon_sym_noreturn] = ACTIONS(7775), + [anon_sym__Nonnull] = ACTIONS(7775), + [anon_sym_mutable] = ACTIONS(7775), + [anon_sym_constinit] = ACTIONS(7775), + [anon_sym_consteval] = ACTIONS(7775), + [anon_sym_alignas] = ACTIONS(7775), + [anon_sym__Alignas] = ACTIONS(7775), + [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_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7775), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7775), + [anon_sym_not_eq] = ACTIONS(7775), + [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), - [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), + [anon_sym_decltype] = ACTIONS(7775), + [anon_sym_final] = ACTIONS(7775), + [anon_sym_override] = ACTIONS(7775), + [anon_sym_template] = ACTIONS(7775), + [anon_sym_requires] = ACTIONS(7775), + [anon_sym_DASH_GT_STAR] = ACTIONS(7777), + [anon_sym_LBRACK_COLON] = ACTIONS(7777), }, [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), + [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(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(7779), + [anon_sym_COLON_COLON] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7779), + [anon_sym_EQ] = ACTIONS(7779), + [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), + [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(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(7779), [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), + [anon_sym_decltype] = ACTIONS(7779), + [anon_sym_final] = ACTIONS(7779), + [anon_sym_override] = ACTIONS(7779), + [anon_sym_template] = ACTIONS(7779), + [anon_sym_requires] = ACTIONS(7779), + [anon_sym_DASH_GT_STAR] = ACTIONS(7781), + [anon_sym_LBRACK_COLON] = ACTIONS(7781), }, [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_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3118), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3118), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3118), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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(3108), + [anon_sym_STAR_EQ] = ACTIONS(3108), + [anon_sym_SLASH_EQ] = ACTIONS(3108), + [anon_sym_PERCENT_EQ] = ACTIONS(3108), + [anon_sym_PLUS_EQ] = ACTIONS(3108), + [anon_sym_DASH_EQ] = ACTIONS(3108), + [anon_sym_LT_LT_EQ] = ACTIONS(3108), + [anon_sym_GT_GT_EQ] = ACTIONS(3108), + [anon_sym_AMP_EQ] = ACTIONS(3108), + [anon_sym_CARET_EQ] = ACTIONS(3108), + [anon_sym_PIPE_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3118), [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), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_DASH_GT_STAR] = ACTIONS(3108), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), }, [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(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7796), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_DASH_GT_STAR] = ACTIONS(7796), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), }, [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(7798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7800), + [anon_sym_COMMA] = ACTIONS(7800), + [anon_sym_RPAREN] = ACTIONS(7800), + [anon_sym_LPAREN2] = ACTIONS(7800), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_PLUS] = ACTIONS(7798), + [anon_sym_STAR] = ACTIONS(7798), + [anon_sym_SLASH] = ACTIONS(7798), + [anon_sym_PERCENT] = ACTIONS(7798), + [anon_sym_PIPE_PIPE] = ACTIONS(7800), + [anon_sym_AMP_AMP] = ACTIONS(7800), + [anon_sym_PIPE] = ACTIONS(7798), + [anon_sym_CARET] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7798), + [anon_sym_EQ_EQ] = ACTIONS(7800), + [anon_sym_BANG_EQ] = ACTIONS(7800), + [anon_sym_GT] = ACTIONS(7798), + [anon_sym_GT_EQ] = ACTIONS(7800), + [anon_sym_LT_EQ] = ACTIONS(7798), + [anon_sym_LT] = ACTIONS(7798), + [anon_sym_LT_LT] = ACTIONS(7798), + [anon_sym_GT_GT] = ACTIONS(7798), + [anon_sym___extension__] = ACTIONS(7798), + [anon_sym_COLON_COLON] = ACTIONS(7800), + [anon_sym_LBRACK] = ACTIONS(7798), + [anon_sym_EQ] = ACTIONS(7798), + [anon_sym_const] = ACTIONS(7798), + [anon_sym_constexpr] = ACTIONS(7798), + [anon_sym_volatile] = ACTIONS(7798), + [anon_sym_restrict] = ACTIONS(7798), + [anon_sym___restrict__] = ACTIONS(7798), + [anon_sym__Atomic] = ACTIONS(7798), + [anon_sym__Noreturn] = ACTIONS(7798), + [anon_sym_noreturn] = ACTIONS(7798), + [anon_sym__Nonnull] = ACTIONS(7798), + [anon_sym_mutable] = ACTIONS(7798), + [anon_sym_constinit] = ACTIONS(7798), + [anon_sym_consteval] = ACTIONS(7798), + [anon_sym_alignas] = ACTIONS(7798), + [anon_sym__Alignas] = ACTIONS(7798), + [anon_sym_QMARK] = ACTIONS(7800), + [anon_sym_STAR_EQ] = ACTIONS(7800), + [anon_sym_SLASH_EQ] = ACTIONS(7800), + [anon_sym_PERCENT_EQ] = ACTIONS(7800), + [anon_sym_PLUS_EQ] = ACTIONS(7800), + [anon_sym_DASH_EQ] = ACTIONS(7800), + [anon_sym_LT_LT_EQ] = ACTIONS(7800), + [anon_sym_GT_GT_EQ] = ACTIONS(7800), + [anon_sym_AMP_EQ] = ACTIONS(7800), + [anon_sym_CARET_EQ] = ACTIONS(7800), + [anon_sym_PIPE_EQ] = ACTIONS(7800), + [anon_sym_LT_EQ_GT] = ACTIONS(7800), + [anon_sym_or] = ACTIONS(7798), + [anon_sym_and] = ACTIONS(7798), + [anon_sym_bitor] = ACTIONS(7798), + [anon_sym_xor] = ACTIONS(7798), + [anon_sym_bitand] = ACTIONS(7798), + [anon_sym_not_eq] = ACTIONS(7798), + [anon_sym_DASH_DASH] = ACTIONS(7800), + [anon_sym_PLUS_PLUS] = ACTIONS(7800), + [anon_sym_DOT] = ACTIONS(7798), + [anon_sym_DOT_STAR] = ACTIONS(7800), + [anon_sym_DASH_GT] = ACTIONS(7798), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7798), + [anon_sym_final] = ACTIONS(7798), + [anon_sym_override] = ACTIONS(7798), + [anon_sym_template] = ACTIONS(7798), + [anon_sym_requires] = ACTIONS(7798), + [anon_sym_DASH_GT_STAR] = ACTIONS(7800), + [anon_sym_LBRACK_COLON] = ACTIONS(7800), }, [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_catch_clause] = STATE(3331), + [aux_sym_constructor_try_statement_repeat1] = STATE(3331), + [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(9158), + [anon_sym_LBRACK_COLON] = ACTIONS(3182), }, [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(7802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7804), + [anon_sym_COMMA] = ACTIONS(7804), + [anon_sym_RPAREN] = ACTIONS(7804), + [anon_sym_LPAREN2] = ACTIONS(7804), + [anon_sym_DASH] = ACTIONS(7802), + [anon_sym_PLUS] = ACTIONS(7802), + [anon_sym_STAR] = ACTIONS(7802), + [anon_sym_SLASH] = ACTIONS(7802), + [anon_sym_PERCENT] = ACTIONS(7802), + [anon_sym_PIPE_PIPE] = ACTIONS(7804), + [anon_sym_AMP_AMP] = ACTIONS(7804), + [anon_sym_PIPE] = ACTIONS(7802), + [anon_sym_CARET] = ACTIONS(7802), + [anon_sym_AMP] = ACTIONS(7802), + [anon_sym_EQ_EQ] = ACTIONS(7804), + [anon_sym_BANG_EQ] = ACTIONS(7804), + [anon_sym_GT] = ACTIONS(7802), + [anon_sym_GT_EQ] = ACTIONS(7804), + [anon_sym_LT_EQ] = ACTIONS(7802), + [anon_sym_LT] = ACTIONS(7802), + [anon_sym_LT_LT] = ACTIONS(7802), + [anon_sym_GT_GT] = ACTIONS(7802), + [anon_sym___extension__] = ACTIONS(7802), + [anon_sym_COLON_COLON] = ACTIONS(7804), + [anon_sym_LBRACK] = ACTIONS(7802), + [anon_sym_EQ] = ACTIONS(7802), + [anon_sym_const] = ACTIONS(7802), + [anon_sym_constexpr] = ACTIONS(7802), + [anon_sym_volatile] = ACTIONS(7802), + [anon_sym_restrict] = ACTIONS(7802), + [anon_sym___restrict__] = ACTIONS(7802), + [anon_sym__Atomic] = ACTIONS(7802), + [anon_sym__Noreturn] = ACTIONS(7802), + [anon_sym_noreturn] = ACTIONS(7802), + [anon_sym__Nonnull] = ACTIONS(7802), + [anon_sym_mutable] = ACTIONS(7802), + [anon_sym_constinit] = ACTIONS(7802), + [anon_sym_consteval] = ACTIONS(7802), + [anon_sym_alignas] = ACTIONS(7802), + [anon_sym__Alignas] = ACTIONS(7802), + [anon_sym_QMARK] = ACTIONS(7804), + [anon_sym_STAR_EQ] = ACTIONS(7804), + [anon_sym_SLASH_EQ] = ACTIONS(7804), + [anon_sym_PERCENT_EQ] = ACTIONS(7804), + [anon_sym_PLUS_EQ] = ACTIONS(7804), + [anon_sym_DASH_EQ] = ACTIONS(7804), + [anon_sym_LT_LT_EQ] = ACTIONS(7804), + [anon_sym_GT_GT_EQ] = ACTIONS(7804), + [anon_sym_AMP_EQ] = ACTIONS(7804), + [anon_sym_CARET_EQ] = ACTIONS(7804), + [anon_sym_PIPE_EQ] = ACTIONS(7804), + [anon_sym_LT_EQ_GT] = ACTIONS(7804), + [anon_sym_or] = ACTIONS(7802), + [anon_sym_and] = ACTIONS(7802), + [anon_sym_bitor] = ACTIONS(7802), + [anon_sym_xor] = ACTIONS(7802), + [anon_sym_bitand] = ACTIONS(7802), + [anon_sym_not_eq] = ACTIONS(7802), + [anon_sym_DASH_DASH] = ACTIONS(7804), + [anon_sym_PLUS_PLUS] = ACTIONS(7804), + [anon_sym_DOT] = ACTIONS(7802), + [anon_sym_DOT_STAR] = ACTIONS(7804), + [anon_sym_DASH_GT] = ACTIONS(7802), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7802), + [anon_sym_final] = ACTIONS(7802), + [anon_sym_override] = ACTIONS(7802), + [anon_sym_template] = ACTIONS(7802), + [anon_sym_requires] = ACTIONS(7802), + [anon_sym_DASH_GT_STAR] = ACTIONS(7804), + [anon_sym_LBRACK_COLON] = ACTIONS(7804), }, [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(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym_COLON_COLON] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7794), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7796), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7794), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7794), + [anon_sym_final] = ACTIONS(7794), + [anon_sym_override] = ACTIONS(7794), + [anon_sym_template] = ACTIONS(7794), + [anon_sym_requires] = ACTIONS(7794), + [anon_sym_DASH_GT_STAR] = ACTIONS(7796), + [anon_sym_LBRACK_COLON] = ACTIONS(7796), }, [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(7810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7812), + [anon_sym_COMMA] = ACTIONS(7812), + [anon_sym_RPAREN] = ACTIONS(7812), + [anon_sym_LPAREN2] = ACTIONS(7812), + [anon_sym_DASH] = ACTIONS(7810), + [anon_sym_PLUS] = ACTIONS(7810), + [anon_sym_STAR] = ACTIONS(7810), + [anon_sym_SLASH] = ACTIONS(7810), + [anon_sym_PERCENT] = ACTIONS(7810), + [anon_sym_PIPE_PIPE] = ACTIONS(7812), + [anon_sym_AMP_AMP] = ACTIONS(7812), + [anon_sym_PIPE] = ACTIONS(7810), + [anon_sym_CARET] = ACTIONS(7810), + [anon_sym_AMP] = ACTIONS(7810), + [anon_sym_EQ_EQ] = ACTIONS(7812), + [anon_sym_BANG_EQ] = ACTIONS(7812), + [anon_sym_GT] = ACTIONS(7810), + [anon_sym_GT_EQ] = ACTIONS(7812), + [anon_sym_LT_EQ] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(7810), + [anon_sym_LT_LT] = ACTIONS(7810), + [anon_sym_GT_GT] = ACTIONS(7810), + [anon_sym___extension__] = ACTIONS(7810), + [anon_sym_COLON_COLON] = ACTIONS(7812), + [anon_sym_LBRACK] = ACTIONS(7810), + [anon_sym_EQ] = ACTIONS(7810), + [anon_sym_const] = ACTIONS(7810), + [anon_sym_constexpr] = ACTIONS(7810), + [anon_sym_volatile] = ACTIONS(7810), + [anon_sym_restrict] = ACTIONS(7810), + [anon_sym___restrict__] = ACTIONS(7810), + [anon_sym__Atomic] = ACTIONS(7810), + [anon_sym__Noreturn] = ACTIONS(7810), + [anon_sym_noreturn] = ACTIONS(7810), + [anon_sym__Nonnull] = ACTIONS(7810), + [anon_sym_mutable] = ACTIONS(7810), + [anon_sym_constinit] = ACTIONS(7810), + [anon_sym_consteval] = ACTIONS(7810), + [anon_sym_alignas] = ACTIONS(7810), + [anon_sym__Alignas] = ACTIONS(7810), + [anon_sym_QMARK] = ACTIONS(7812), + [anon_sym_STAR_EQ] = ACTIONS(7812), + [anon_sym_SLASH_EQ] = ACTIONS(7812), + [anon_sym_PERCENT_EQ] = ACTIONS(7812), + [anon_sym_PLUS_EQ] = ACTIONS(7812), + [anon_sym_DASH_EQ] = ACTIONS(7812), + [anon_sym_LT_LT_EQ] = ACTIONS(7812), + [anon_sym_GT_GT_EQ] = ACTIONS(7812), + [anon_sym_AMP_EQ] = ACTIONS(7812), + [anon_sym_CARET_EQ] = ACTIONS(7812), + [anon_sym_PIPE_EQ] = ACTIONS(7812), + [anon_sym_LT_EQ_GT] = ACTIONS(7812), + [anon_sym_or] = ACTIONS(7810), + [anon_sym_and] = ACTIONS(7810), + [anon_sym_bitor] = ACTIONS(7810), + [anon_sym_xor] = ACTIONS(7810), + [anon_sym_bitand] = ACTIONS(7810), + [anon_sym_not_eq] = ACTIONS(7810), + [anon_sym_DASH_DASH] = ACTIONS(7812), + [anon_sym_PLUS_PLUS] = ACTIONS(7812), + [anon_sym_DOT] = ACTIONS(7810), + [anon_sym_DOT_STAR] = ACTIONS(7812), + [anon_sym_DASH_GT] = ACTIONS(7810), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7810), + [anon_sym_final] = ACTIONS(7810), + [anon_sym_override] = ACTIONS(7810), + [anon_sym_template] = ACTIONS(7810), + [anon_sym_requires] = ACTIONS(7810), + [anon_sym_DASH_GT_STAR] = ACTIONS(7812), + [anon_sym_LBRACK_COLON] = ACTIONS(7812), }, [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), - }, - [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), - }, - [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), - }, - [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(7814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7816), + [anon_sym_COMMA] = ACTIONS(7816), + [anon_sym_RPAREN] = ACTIONS(7816), + [anon_sym_LPAREN2] = ACTIONS(7816), + [anon_sym_DASH] = ACTIONS(7814), + [anon_sym_PLUS] = ACTIONS(7814), + [anon_sym_STAR] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7814), + [anon_sym_PERCENT] = ACTIONS(7814), + [anon_sym_PIPE_PIPE] = ACTIONS(7816), + [anon_sym_AMP_AMP] = ACTIONS(7816), + [anon_sym_PIPE] = ACTIONS(7814), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_AMP] = ACTIONS(7814), + [anon_sym_EQ_EQ] = ACTIONS(7816), + [anon_sym_BANG_EQ] = ACTIONS(7816), + [anon_sym_GT] = ACTIONS(7814), + [anon_sym_GT_EQ] = ACTIONS(7816), + [anon_sym_LT_EQ] = ACTIONS(7814), + [anon_sym_LT] = ACTIONS(7814), + [anon_sym_LT_LT] = ACTIONS(7814), + [anon_sym_GT_GT] = ACTIONS(7814), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym_COLON_COLON] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(7814), + [anon_sym_EQ] = ACTIONS(7814), + [anon_sym_const] = ACTIONS(7814), + [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(7814), + [anon_sym__Alignas] = ACTIONS(7814), + [anon_sym_QMARK] = ACTIONS(7816), + [anon_sym_STAR_EQ] = ACTIONS(7816), + [anon_sym_SLASH_EQ] = ACTIONS(7816), + [anon_sym_PERCENT_EQ] = ACTIONS(7816), + [anon_sym_PLUS_EQ] = ACTIONS(7816), + [anon_sym_DASH_EQ] = ACTIONS(7816), + [anon_sym_LT_LT_EQ] = ACTIONS(7816), + [anon_sym_GT_GT_EQ] = ACTIONS(7816), + [anon_sym_AMP_EQ] = ACTIONS(7816), + [anon_sym_CARET_EQ] = ACTIONS(7816), + [anon_sym_PIPE_EQ] = ACTIONS(7816), + [anon_sym_LT_EQ_GT] = ACTIONS(7816), + [anon_sym_or] = ACTIONS(7814), + [anon_sym_and] = ACTIONS(7814), + [anon_sym_bitor] = ACTIONS(7814), + [anon_sym_xor] = ACTIONS(7814), + [anon_sym_bitand] = ACTIONS(7814), + [anon_sym_not_eq] = ACTIONS(7814), + [anon_sym_DASH_DASH] = ACTIONS(7816), + [anon_sym_PLUS_PLUS] = ACTIONS(7816), + [anon_sym_DOT] = ACTIONS(7814), + [anon_sym_DOT_STAR] = ACTIONS(7816), + [anon_sym_DASH_GT] = ACTIONS(7814), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7814), + [anon_sym_final] = ACTIONS(7814), + [anon_sym_override] = ACTIONS(7814), + [anon_sym_template] = ACTIONS(7814), + [anon_sym_requires] = ACTIONS(7814), + [anon_sym_DASH_GT_STAR] = ACTIONS(7816), + [anon_sym_LBRACK_COLON] = ACTIONS(7816), + }, + [STATE(3377)] = { + [sym_argument_list] = STATE(6170), + [sym_initializer_list] = STATE(6770), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8372), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(3378)] = { + [sym_identifier] = ACTIONS(7822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7824), + [anon_sym_COMMA] = ACTIONS(7824), + [anon_sym_RPAREN] = ACTIONS(7824), + [anon_sym_LPAREN2] = ACTIONS(7824), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_PLUS] = ACTIONS(7822), + [anon_sym_STAR] = ACTIONS(7822), + [anon_sym_SLASH] = ACTIONS(7822), + [anon_sym_PERCENT] = ACTIONS(7822), + [anon_sym_PIPE_PIPE] = ACTIONS(7824), + [anon_sym_AMP_AMP] = ACTIONS(7824), + [anon_sym_PIPE] = ACTIONS(7822), + [anon_sym_CARET] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7822), + [anon_sym_EQ_EQ] = ACTIONS(7824), + [anon_sym_BANG_EQ] = ACTIONS(7824), + [anon_sym_GT] = ACTIONS(7822), + [anon_sym_GT_EQ] = ACTIONS(7824), + [anon_sym_LT_EQ] = ACTIONS(7822), + [anon_sym_LT] = ACTIONS(7822), + [anon_sym_LT_LT] = ACTIONS(7822), + [anon_sym_GT_GT] = ACTIONS(7822), + [anon_sym___extension__] = ACTIONS(7822), + [anon_sym_COLON_COLON] = ACTIONS(7824), + [anon_sym_LBRACK] = ACTIONS(7822), + [anon_sym_EQ] = ACTIONS(7822), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7822), + [anon_sym_volatile] = ACTIONS(7822), + [anon_sym_restrict] = ACTIONS(7822), + [anon_sym___restrict__] = ACTIONS(7822), + [anon_sym__Atomic] = ACTIONS(7822), + [anon_sym__Noreturn] = ACTIONS(7822), + [anon_sym_noreturn] = ACTIONS(7822), + [anon_sym__Nonnull] = ACTIONS(7822), + [anon_sym_mutable] = ACTIONS(7822), + [anon_sym_constinit] = ACTIONS(7822), + [anon_sym_consteval] = ACTIONS(7822), + [anon_sym_alignas] = ACTIONS(7822), + [anon_sym__Alignas] = ACTIONS(7822), + [anon_sym_QMARK] = ACTIONS(7824), + [anon_sym_STAR_EQ] = ACTIONS(7824), + [anon_sym_SLASH_EQ] = ACTIONS(7824), + [anon_sym_PERCENT_EQ] = ACTIONS(7824), + [anon_sym_PLUS_EQ] = ACTIONS(7824), + [anon_sym_DASH_EQ] = ACTIONS(7824), + [anon_sym_LT_LT_EQ] = ACTIONS(7824), + [anon_sym_GT_GT_EQ] = ACTIONS(7824), + [anon_sym_AMP_EQ] = ACTIONS(7824), + [anon_sym_CARET_EQ] = ACTIONS(7824), + [anon_sym_PIPE_EQ] = ACTIONS(7824), + [anon_sym_LT_EQ_GT] = ACTIONS(7824), + [anon_sym_or] = ACTIONS(7822), + [anon_sym_and] = ACTIONS(7822), + [anon_sym_bitor] = ACTIONS(7822), + [anon_sym_xor] = ACTIONS(7822), + [anon_sym_bitand] = ACTIONS(7822), + [anon_sym_not_eq] = ACTIONS(7822), + [anon_sym_DASH_DASH] = ACTIONS(7824), + [anon_sym_PLUS_PLUS] = ACTIONS(7824), + [anon_sym_DOT] = ACTIONS(7822), + [anon_sym_DOT_STAR] = ACTIONS(7824), + [anon_sym_DASH_GT] = ACTIONS(7822), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7822), + [anon_sym_final] = ACTIONS(7822), + [anon_sym_override] = ACTIONS(7822), + [anon_sym_template] = ACTIONS(7822), + [anon_sym_requires] = ACTIONS(7822), + [anon_sym_DASH_GT_STAR] = ACTIONS(7824), + [anon_sym_LBRACK_COLON] = ACTIONS(7824), + }, + [STATE(3379)] = { + [sym_identifier] = ACTIONS(7826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7828), + [anon_sym_COMMA] = ACTIONS(7828), + [anon_sym_RPAREN] = ACTIONS(7828), + [anon_sym_LPAREN2] = ACTIONS(7828), + [anon_sym_DASH] = ACTIONS(7826), + [anon_sym_PLUS] = ACTIONS(7826), + [anon_sym_STAR] = ACTIONS(7826), + [anon_sym_SLASH] = ACTIONS(7826), + [anon_sym_PERCENT] = ACTIONS(7826), + [anon_sym_PIPE_PIPE] = ACTIONS(7828), + [anon_sym_AMP_AMP] = ACTIONS(7828), + [anon_sym_PIPE] = ACTIONS(7826), + [anon_sym_CARET] = ACTIONS(7826), + [anon_sym_AMP] = ACTIONS(7826), + [anon_sym_EQ_EQ] = ACTIONS(7828), + [anon_sym_BANG_EQ] = ACTIONS(7828), + [anon_sym_GT] = ACTIONS(7826), + [anon_sym_GT_EQ] = ACTIONS(7828), + [anon_sym_LT_EQ] = ACTIONS(7826), + [anon_sym_LT] = ACTIONS(7826), + [anon_sym_LT_LT] = ACTIONS(7826), + [anon_sym_GT_GT] = ACTIONS(7826), + [anon_sym___extension__] = ACTIONS(7826), + [anon_sym_COLON_COLON] = ACTIONS(7828), + [anon_sym_LBRACK] = ACTIONS(7826), + [anon_sym_EQ] = ACTIONS(7826), + [anon_sym_const] = ACTIONS(7826), + [anon_sym_constexpr] = ACTIONS(7826), + [anon_sym_volatile] = ACTIONS(7826), + [anon_sym_restrict] = ACTIONS(7826), + [anon_sym___restrict__] = ACTIONS(7826), + [anon_sym__Atomic] = ACTIONS(7826), + [anon_sym__Noreturn] = ACTIONS(7826), + [anon_sym_noreturn] = ACTIONS(7826), + [anon_sym__Nonnull] = ACTIONS(7826), + [anon_sym_mutable] = ACTIONS(7826), + [anon_sym_constinit] = ACTIONS(7826), + [anon_sym_consteval] = ACTIONS(7826), + [anon_sym_alignas] = ACTIONS(7826), + [anon_sym__Alignas] = ACTIONS(7826), + [anon_sym_QMARK] = ACTIONS(7828), + [anon_sym_STAR_EQ] = ACTIONS(7828), + [anon_sym_SLASH_EQ] = ACTIONS(7828), + [anon_sym_PERCENT_EQ] = ACTIONS(7828), + [anon_sym_PLUS_EQ] = ACTIONS(7828), + [anon_sym_DASH_EQ] = ACTIONS(7828), + [anon_sym_LT_LT_EQ] = ACTIONS(7828), + [anon_sym_GT_GT_EQ] = ACTIONS(7828), + [anon_sym_AMP_EQ] = ACTIONS(7828), + [anon_sym_CARET_EQ] = ACTIONS(7828), + [anon_sym_PIPE_EQ] = ACTIONS(7828), + [anon_sym_LT_EQ_GT] = ACTIONS(7828), + [anon_sym_or] = ACTIONS(7826), + [anon_sym_and] = ACTIONS(7826), + [anon_sym_bitor] = ACTIONS(7826), + [anon_sym_xor] = ACTIONS(7826), + [anon_sym_bitand] = ACTIONS(7826), + [anon_sym_not_eq] = ACTIONS(7826), + [anon_sym_DASH_DASH] = ACTIONS(7828), + [anon_sym_PLUS_PLUS] = ACTIONS(7828), + [anon_sym_DOT] = ACTIONS(7826), + [anon_sym_DOT_STAR] = ACTIONS(7828), + [anon_sym_DASH_GT] = ACTIONS(7826), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7826), + [anon_sym_final] = ACTIONS(7826), + [anon_sym_override] = ACTIONS(7826), + [anon_sym_template] = ACTIONS(7826), + [anon_sym_requires] = ACTIONS(7826), + [anon_sym_DASH_GT_STAR] = ACTIONS(7828), + [anon_sym_LBRACK_COLON] = ACTIONS(7828), + }, [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_argument_list] = STATE(6364), + [sym_initializer_list] = STATE(6784), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8372), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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_identifier] = ACTIONS(7830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7832), + [anon_sym_COMMA] = ACTIONS(7832), + [anon_sym_RPAREN] = ACTIONS(7832), + [anon_sym_LPAREN2] = ACTIONS(7832), + [anon_sym_DASH] = ACTIONS(7830), + [anon_sym_PLUS] = ACTIONS(7830), + [anon_sym_STAR] = ACTIONS(7830), + [anon_sym_SLASH] = ACTIONS(7830), + [anon_sym_PERCENT] = ACTIONS(7830), + [anon_sym_PIPE_PIPE] = ACTIONS(7832), + [anon_sym_AMP_AMP] = ACTIONS(7832), + [anon_sym_PIPE] = ACTIONS(7830), + [anon_sym_CARET] = ACTIONS(7830), + [anon_sym_AMP] = ACTIONS(7830), + [anon_sym_EQ_EQ] = ACTIONS(7832), + [anon_sym_BANG_EQ] = ACTIONS(7832), + [anon_sym_GT] = ACTIONS(7830), + [anon_sym_GT_EQ] = ACTIONS(7832), + [anon_sym_LT_EQ] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(7830), + [anon_sym_LT_LT] = ACTIONS(7830), + [anon_sym_GT_GT] = ACTIONS(7830), + [anon_sym___extension__] = ACTIONS(7830), + [anon_sym_COLON_COLON] = ACTIONS(7832), + [anon_sym_LBRACK] = ACTIONS(7830), + [anon_sym_EQ] = ACTIONS(7830), + [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(7830), + [anon_sym__Alignas] = ACTIONS(7830), + [anon_sym_QMARK] = ACTIONS(7832), + [anon_sym_STAR_EQ] = ACTIONS(7832), + [anon_sym_SLASH_EQ] = ACTIONS(7832), + [anon_sym_PERCENT_EQ] = ACTIONS(7832), + [anon_sym_PLUS_EQ] = ACTIONS(7832), + [anon_sym_DASH_EQ] = ACTIONS(7832), + [anon_sym_LT_LT_EQ] = ACTIONS(7832), + [anon_sym_GT_GT_EQ] = ACTIONS(7832), + [anon_sym_AMP_EQ] = ACTIONS(7832), + [anon_sym_CARET_EQ] = ACTIONS(7832), + [anon_sym_PIPE_EQ] = ACTIONS(7832), + [anon_sym_LT_EQ_GT] = ACTIONS(7832), + [anon_sym_or] = ACTIONS(7830), + [anon_sym_and] = ACTIONS(7830), + [anon_sym_bitor] = ACTIONS(7830), + [anon_sym_xor] = ACTIONS(7830), + [anon_sym_bitand] = ACTIONS(7830), + [anon_sym_not_eq] = ACTIONS(7830), + [anon_sym_DASH_DASH] = ACTIONS(7832), + [anon_sym_PLUS_PLUS] = ACTIONS(7832), + [anon_sym_DOT] = ACTIONS(7830), + [anon_sym_DOT_STAR] = ACTIONS(7832), + [anon_sym_DASH_GT] = ACTIONS(7830), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7830), + [anon_sym_final] = ACTIONS(7830), + [anon_sym_override] = ACTIONS(7830), + [anon_sym_template] = ACTIONS(7830), + [anon_sym_requires] = ACTIONS(7830), + [anon_sym_DASH_GT_STAR] = ACTIONS(7832), + [anon_sym_LBRACK_COLON] = ACTIONS(7832), }, [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(7834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_RPAREN] = ACTIONS(7836), + [anon_sym_LPAREN2] = ACTIONS(7836), + [anon_sym_DASH] = ACTIONS(7834), + [anon_sym_PLUS] = ACTIONS(7834), + [anon_sym_STAR] = ACTIONS(7834), + [anon_sym_SLASH] = ACTIONS(7834), + [anon_sym_PERCENT] = ACTIONS(7834), + [anon_sym_PIPE_PIPE] = ACTIONS(7836), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_PIPE] = ACTIONS(7834), + [anon_sym_CARET] = ACTIONS(7834), + [anon_sym_AMP] = ACTIONS(7834), + [anon_sym_EQ_EQ] = ACTIONS(7836), + [anon_sym_BANG_EQ] = ACTIONS(7836), + [anon_sym_GT] = ACTIONS(7834), + [anon_sym_GT_EQ] = ACTIONS(7836), + [anon_sym_LT_EQ] = ACTIONS(7834), + [anon_sym_LT] = ACTIONS(7834), + [anon_sym_LT_LT] = ACTIONS(7834), + [anon_sym_GT_GT] = ACTIONS(7834), + [anon_sym___extension__] = ACTIONS(7834), + [anon_sym_COLON_COLON] = ACTIONS(7836), + [anon_sym_LBRACK] = ACTIONS(7834), + [anon_sym_EQ] = ACTIONS(7834), + [anon_sym_const] = ACTIONS(7834), + [anon_sym_constexpr] = ACTIONS(7834), + [anon_sym_volatile] = ACTIONS(7834), + [anon_sym_restrict] = ACTIONS(7834), + [anon_sym___restrict__] = ACTIONS(7834), + [anon_sym__Atomic] = ACTIONS(7834), + [anon_sym__Noreturn] = ACTIONS(7834), + [anon_sym_noreturn] = ACTIONS(7834), + [anon_sym__Nonnull] = ACTIONS(7834), + [anon_sym_mutable] = ACTIONS(7834), + [anon_sym_constinit] = ACTIONS(7834), + [anon_sym_consteval] = ACTIONS(7834), + [anon_sym_alignas] = ACTIONS(7834), + [anon_sym__Alignas] = ACTIONS(7834), + [anon_sym_QMARK] = ACTIONS(7836), + [anon_sym_STAR_EQ] = ACTIONS(7836), + [anon_sym_SLASH_EQ] = ACTIONS(7836), + [anon_sym_PERCENT_EQ] = ACTIONS(7836), + [anon_sym_PLUS_EQ] = ACTIONS(7836), + [anon_sym_DASH_EQ] = ACTIONS(7836), + [anon_sym_LT_LT_EQ] = ACTIONS(7836), + [anon_sym_GT_GT_EQ] = ACTIONS(7836), + [anon_sym_AMP_EQ] = ACTIONS(7836), + [anon_sym_CARET_EQ] = ACTIONS(7836), + [anon_sym_PIPE_EQ] = ACTIONS(7836), + [anon_sym_LT_EQ_GT] = ACTIONS(7836), + [anon_sym_or] = ACTIONS(7834), + [anon_sym_and] = ACTIONS(7834), + [anon_sym_bitor] = ACTIONS(7834), + [anon_sym_xor] = ACTIONS(7834), + [anon_sym_bitand] = ACTIONS(7834), + [anon_sym_not_eq] = ACTIONS(7834), + [anon_sym_DASH_DASH] = ACTIONS(7836), + [anon_sym_PLUS_PLUS] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7834), + [anon_sym_DOT_STAR] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(7834), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7834), + [anon_sym_final] = ACTIONS(7834), + [anon_sym_override] = ACTIONS(7834), + [anon_sym_template] = ACTIONS(7834), + [anon_sym_requires] = ACTIONS(7834), + [anon_sym_DASH_GT_STAR] = ACTIONS(7836), + [anon_sym_LBRACK_COLON] = ACTIONS(7836), }, [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(7842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7844), + [anon_sym_COMMA] = ACTIONS(7844), + [anon_sym_RPAREN] = ACTIONS(7844), + [anon_sym_LPAREN2] = ACTIONS(7844), + [anon_sym_DASH] = ACTIONS(7842), + [anon_sym_PLUS] = ACTIONS(7842), + [anon_sym_STAR] = ACTIONS(7842), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_PERCENT] = ACTIONS(7842), + [anon_sym_PIPE_PIPE] = ACTIONS(7844), + [anon_sym_AMP_AMP] = ACTIONS(7844), + [anon_sym_PIPE] = ACTIONS(7842), + [anon_sym_CARET] = ACTIONS(7842), + [anon_sym_AMP] = ACTIONS(7842), + [anon_sym_EQ_EQ] = ACTIONS(7844), + [anon_sym_BANG_EQ] = ACTIONS(7844), + [anon_sym_GT] = ACTIONS(7842), + [anon_sym_GT_EQ] = ACTIONS(7844), + [anon_sym_LT_EQ] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(7842), + [anon_sym_LT_LT] = ACTIONS(7842), + [anon_sym_GT_GT] = ACTIONS(7842), + [anon_sym___extension__] = ACTIONS(7842), + [anon_sym_COLON_COLON] = ACTIONS(7844), + [anon_sym_LBRACK] = ACTIONS(7842), + [anon_sym_EQ] = ACTIONS(7842), + [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(7842), + [anon_sym__Alignas] = ACTIONS(7842), + [anon_sym_QMARK] = ACTIONS(7844), + [anon_sym_STAR_EQ] = ACTIONS(7844), + [anon_sym_SLASH_EQ] = ACTIONS(7844), + [anon_sym_PERCENT_EQ] = ACTIONS(7844), + [anon_sym_PLUS_EQ] = ACTIONS(7844), + [anon_sym_DASH_EQ] = ACTIONS(7844), + [anon_sym_LT_LT_EQ] = ACTIONS(7844), + [anon_sym_GT_GT_EQ] = ACTIONS(7844), + [anon_sym_AMP_EQ] = ACTIONS(7844), + [anon_sym_CARET_EQ] = ACTIONS(7844), + [anon_sym_PIPE_EQ] = ACTIONS(7844), + [anon_sym_LT_EQ_GT] = ACTIONS(7844), + [anon_sym_or] = ACTIONS(7842), + [anon_sym_and] = ACTIONS(7842), + [anon_sym_bitor] = ACTIONS(7842), + [anon_sym_xor] = ACTIONS(7842), + [anon_sym_bitand] = ACTIONS(7842), + [anon_sym_not_eq] = ACTIONS(7842), + [anon_sym_DASH_DASH] = ACTIONS(7844), + [anon_sym_PLUS_PLUS] = ACTIONS(7844), + [anon_sym_DOT] = ACTIONS(7842), + [anon_sym_DOT_STAR] = ACTIONS(7844), + [anon_sym_DASH_GT] = ACTIONS(7842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7842), + [anon_sym_final] = ACTIONS(7842), + [anon_sym_override] = ACTIONS(7842), + [anon_sym_template] = ACTIONS(7842), + [anon_sym_requires] = ACTIONS(7842), + [anon_sym_DASH_GT_STAR] = ACTIONS(7844), + [anon_sym_LBRACK_COLON] = ACTIONS(7844), }, [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(7846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7848), + [anon_sym_COMMA] = ACTIONS(7848), + [anon_sym_RPAREN] = ACTIONS(7848), + [anon_sym_LPAREN2] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7846), + [anon_sym_STAR] = ACTIONS(7846), + [anon_sym_SLASH] = ACTIONS(7846), + [anon_sym_PERCENT] = ACTIONS(7846), + [anon_sym_PIPE_PIPE] = ACTIONS(7848), + [anon_sym_AMP_AMP] = ACTIONS(7848), + [anon_sym_PIPE] = ACTIONS(7846), + [anon_sym_CARET] = ACTIONS(7846), + [anon_sym_AMP] = ACTIONS(7846), + [anon_sym_EQ_EQ] = ACTIONS(7848), + [anon_sym_BANG_EQ] = ACTIONS(7848), + [anon_sym_GT] = ACTIONS(7846), + [anon_sym_GT_EQ] = ACTIONS(7848), + [anon_sym_LT_EQ] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(7846), + [anon_sym_LT_LT] = ACTIONS(7846), + [anon_sym_GT_GT] = ACTIONS(7846), + [anon_sym___extension__] = ACTIONS(7846), + [anon_sym_COLON_COLON] = ACTIONS(7848), + [anon_sym_LBRACK] = ACTIONS(7846), + [anon_sym_EQ] = ACTIONS(7846), + [anon_sym_const] = ACTIONS(7846), + [anon_sym_constexpr] = ACTIONS(7846), + [anon_sym_volatile] = ACTIONS(7846), + [anon_sym_restrict] = ACTIONS(7846), + [anon_sym___restrict__] = ACTIONS(7846), + [anon_sym__Atomic] = ACTIONS(7846), + [anon_sym__Noreturn] = ACTIONS(7846), + [anon_sym_noreturn] = ACTIONS(7846), + [anon_sym__Nonnull] = ACTIONS(7846), + [anon_sym_mutable] = ACTIONS(7846), + [anon_sym_constinit] = ACTIONS(7846), + [anon_sym_consteval] = ACTIONS(7846), + [anon_sym_alignas] = ACTIONS(7846), + [anon_sym__Alignas] = ACTIONS(7846), + [anon_sym_QMARK] = ACTIONS(7848), + [anon_sym_STAR_EQ] = ACTIONS(7848), + [anon_sym_SLASH_EQ] = ACTIONS(7848), + [anon_sym_PERCENT_EQ] = ACTIONS(7848), + [anon_sym_PLUS_EQ] = ACTIONS(7848), + [anon_sym_DASH_EQ] = ACTIONS(7848), + [anon_sym_LT_LT_EQ] = ACTIONS(7848), + [anon_sym_GT_GT_EQ] = ACTIONS(7848), + [anon_sym_AMP_EQ] = ACTIONS(7848), + [anon_sym_CARET_EQ] = ACTIONS(7848), + [anon_sym_PIPE_EQ] = ACTIONS(7848), + [anon_sym_LT_EQ_GT] = ACTIONS(7848), + [anon_sym_or] = ACTIONS(7846), + [anon_sym_and] = ACTIONS(7846), + [anon_sym_bitor] = ACTIONS(7846), + [anon_sym_xor] = ACTIONS(7846), + [anon_sym_bitand] = ACTIONS(7846), + [anon_sym_not_eq] = ACTIONS(7846), + [anon_sym_DASH_DASH] = ACTIONS(7848), + [anon_sym_PLUS_PLUS] = ACTIONS(7848), + [anon_sym_DOT] = ACTIONS(7846), + [anon_sym_DOT_STAR] = ACTIONS(7848), + [anon_sym_DASH_GT] = ACTIONS(7846), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7846), + [anon_sym_final] = ACTIONS(7846), + [anon_sym_override] = ACTIONS(7846), + [anon_sym_template] = ACTIONS(7846), + [anon_sym_requires] = ACTIONS(7846), + [anon_sym_DASH_GT_STAR] = ACTIONS(7848), + [anon_sym_LBRACK_COLON] = ACTIONS(7848), }, [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_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7259), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7259), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7259), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7259), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_STAR_EQ] = ACTIONS(7261), + [anon_sym_SLASH_EQ] = ACTIONS(7261), + [anon_sym_PERCENT_EQ] = ACTIONS(7261), + [anon_sym_PLUS_EQ] = ACTIONS(7261), + [anon_sym_DASH_EQ] = ACTIONS(7261), + [anon_sym_LT_LT_EQ] = ACTIONS(7261), + [anon_sym_GT_GT_EQ] = ACTIONS(7261), + [anon_sym_AMP_EQ] = ACTIONS(7261), + [anon_sym_CARET_EQ] = ACTIONS(7261), + [anon_sym_PIPE_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_DASH_GT_STAR] = ACTIONS(7261), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), }, [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(7854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7856), + [anon_sym_COMMA] = ACTIONS(7856), + [anon_sym_RPAREN] = ACTIONS(7856), + [anon_sym_LPAREN2] = ACTIONS(7856), + [anon_sym_DASH] = ACTIONS(7854), + [anon_sym_PLUS] = ACTIONS(7854), + [anon_sym_STAR] = ACTIONS(7854), + [anon_sym_SLASH] = ACTIONS(7854), + [anon_sym_PERCENT] = ACTIONS(7854), + [anon_sym_PIPE_PIPE] = ACTIONS(7856), + [anon_sym_AMP_AMP] = ACTIONS(7856), + [anon_sym_PIPE] = ACTIONS(7854), + [anon_sym_CARET] = ACTIONS(7854), + [anon_sym_AMP] = ACTIONS(7854), + [anon_sym_EQ_EQ] = ACTIONS(7856), + [anon_sym_BANG_EQ] = ACTIONS(7856), + [anon_sym_GT] = ACTIONS(7854), + [anon_sym_GT_EQ] = ACTIONS(7856), + [anon_sym_LT_EQ] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(7854), + [anon_sym_GT_GT] = ACTIONS(7854), + [anon_sym___extension__] = ACTIONS(7854), + [anon_sym_COLON_COLON] = ACTIONS(7856), + [anon_sym_LBRACK] = ACTIONS(7854), + [anon_sym_EQ] = ACTIONS(7854), + [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(7854), + [anon_sym__Alignas] = ACTIONS(7854), + [anon_sym_QMARK] = ACTIONS(7856), + [anon_sym_STAR_EQ] = ACTIONS(7856), + [anon_sym_SLASH_EQ] = ACTIONS(7856), + [anon_sym_PERCENT_EQ] = ACTIONS(7856), + [anon_sym_PLUS_EQ] = ACTIONS(7856), + [anon_sym_DASH_EQ] = ACTIONS(7856), + [anon_sym_LT_LT_EQ] = ACTIONS(7856), + [anon_sym_GT_GT_EQ] = ACTIONS(7856), + [anon_sym_AMP_EQ] = ACTIONS(7856), + [anon_sym_CARET_EQ] = ACTIONS(7856), + [anon_sym_PIPE_EQ] = ACTIONS(7856), + [anon_sym_LT_EQ_GT] = ACTIONS(7856), + [anon_sym_or] = ACTIONS(7854), + [anon_sym_and] = ACTIONS(7854), + [anon_sym_bitor] = ACTIONS(7854), + [anon_sym_xor] = ACTIONS(7854), + [anon_sym_bitand] = ACTIONS(7854), + [anon_sym_not_eq] = ACTIONS(7854), + [anon_sym_DASH_DASH] = ACTIONS(7856), + [anon_sym_PLUS_PLUS] = ACTIONS(7856), + [anon_sym_DOT] = ACTIONS(7854), + [anon_sym_DOT_STAR] = ACTIONS(7856), + [anon_sym_DASH_GT] = ACTIONS(7854), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7854), + [anon_sym_final] = ACTIONS(7854), + [anon_sym_override] = ACTIONS(7854), + [anon_sym_template] = ACTIONS(7854), + [anon_sym_requires] = ACTIONS(7854), + [anon_sym_DASH_GT_STAR] = ACTIONS(7856), + [anon_sym_LBRACK_COLON] = ACTIONS(7856), }, [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(7858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7860), + [anon_sym_COMMA] = ACTIONS(7860), + [anon_sym_RPAREN] = ACTIONS(7860), + [anon_sym_LPAREN2] = ACTIONS(7860), + [anon_sym_DASH] = ACTIONS(7858), + [anon_sym_PLUS] = ACTIONS(7858), + [anon_sym_STAR] = ACTIONS(7858), + [anon_sym_SLASH] = ACTIONS(7858), + [anon_sym_PERCENT] = ACTIONS(7858), + [anon_sym_PIPE_PIPE] = ACTIONS(7860), + [anon_sym_AMP_AMP] = ACTIONS(7860), + [anon_sym_PIPE] = ACTIONS(7858), + [anon_sym_CARET] = ACTIONS(7858), + [anon_sym_AMP] = ACTIONS(7858), + [anon_sym_EQ_EQ] = ACTIONS(7860), + [anon_sym_BANG_EQ] = ACTIONS(7860), + [anon_sym_GT] = ACTIONS(7858), + [anon_sym_GT_EQ] = ACTIONS(7860), + [anon_sym_LT_EQ] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(7858), + [anon_sym_LT_LT] = ACTIONS(7858), + [anon_sym_GT_GT] = ACTIONS(7858), + [anon_sym___extension__] = ACTIONS(7858), + [anon_sym_COLON_COLON] = ACTIONS(7860), + [anon_sym_LBRACK] = ACTIONS(7858), + [anon_sym_EQ] = ACTIONS(7858), + [anon_sym_const] = ACTIONS(7858), + [anon_sym_constexpr] = ACTIONS(7858), + [anon_sym_volatile] = ACTIONS(7858), + [anon_sym_restrict] = ACTIONS(7858), + [anon_sym___restrict__] = ACTIONS(7858), + [anon_sym__Atomic] = ACTIONS(7858), + [anon_sym__Noreturn] = ACTIONS(7858), + [anon_sym_noreturn] = ACTIONS(7858), + [anon_sym__Nonnull] = ACTIONS(7858), + [anon_sym_mutable] = ACTIONS(7858), + [anon_sym_constinit] = ACTIONS(7858), + [anon_sym_consteval] = ACTIONS(7858), + [anon_sym_alignas] = ACTIONS(7858), + [anon_sym__Alignas] = ACTIONS(7858), + [anon_sym_QMARK] = ACTIONS(7860), + [anon_sym_STAR_EQ] = ACTIONS(7860), + [anon_sym_SLASH_EQ] = ACTIONS(7860), + [anon_sym_PERCENT_EQ] = ACTIONS(7860), + [anon_sym_PLUS_EQ] = ACTIONS(7860), + [anon_sym_DASH_EQ] = ACTIONS(7860), + [anon_sym_LT_LT_EQ] = ACTIONS(7860), + [anon_sym_GT_GT_EQ] = ACTIONS(7860), + [anon_sym_AMP_EQ] = ACTIONS(7860), + [anon_sym_CARET_EQ] = ACTIONS(7860), + [anon_sym_PIPE_EQ] = ACTIONS(7860), + [anon_sym_LT_EQ_GT] = ACTIONS(7860), + [anon_sym_or] = ACTIONS(7858), + [anon_sym_and] = ACTIONS(7858), + [anon_sym_bitor] = ACTIONS(7858), + [anon_sym_xor] = ACTIONS(7858), + [anon_sym_bitand] = ACTIONS(7858), + [anon_sym_not_eq] = ACTIONS(7858), + [anon_sym_DASH_DASH] = ACTIONS(7860), + [anon_sym_PLUS_PLUS] = ACTIONS(7860), + [anon_sym_DOT] = ACTIONS(7858), + [anon_sym_DOT_STAR] = ACTIONS(7860), + [anon_sym_DASH_GT] = ACTIONS(7858), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7858), + [anon_sym_final] = ACTIONS(7858), + [anon_sym_override] = ACTIONS(7858), + [anon_sym_template] = ACTIONS(7858), + [anon_sym_requires] = ACTIONS(7858), + [anon_sym_DASH_GT_STAR] = ACTIONS(7860), + [anon_sym_LBRACK_COLON] = ACTIONS(7860), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3388), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [aux_sym_preproc_if_token2] = ACTIONS(7175), + [aux_sym_preproc_else_token1] = ACTIONS(7175), + [aux_sym_preproc_elif_token1] = ACTIONS(7173), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7175), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7175), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7175), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7175), + [anon_sym_GT_GT] = ACTIONS(7175), + [anon_sym_SEMI] = ACTIONS(7175), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON] = ACTIONS(7173), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_RBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(9228), + [anon_sym_unsigned] = ACTIONS(9228), + [anon_sym_long] = ACTIONS(9228), + [anon_sym_short] = ACTIONS(9228), + [anon_sym_LBRACK] = ACTIONS(7175), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7175), }, [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_template_argument_list] = STATE(3471), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6781), + [anon_sym_RPAREN] = ACTIONS(6781), + [aux_sym_preproc_if_token2] = ACTIONS(6781), + [aux_sym_preproc_else_token1] = ACTIONS(6781), + [aux_sym_preproc_elif_token1] = ACTIONS(6774), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6781), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6781), + [anon_sym_LPAREN2] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6774), + [anon_sym_PLUS] = ACTIONS(6774), + [anon_sym_STAR] = ACTIONS(6774), + [anon_sym_SLASH] = ACTIONS(6774), + [anon_sym_PERCENT] = ACTIONS(6774), + [anon_sym_PIPE_PIPE] = ACTIONS(6781), + [anon_sym_AMP_AMP] = ACTIONS(6781), + [anon_sym_PIPE] = ACTIONS(6774), + [anon_sym_CARET] = ACTIONS(6774), + [anon_sym_AMP] = ACTIONS(6774), + [anon_sym_EQ_EQ] = ACTIONS(6781), + [anon_sym_BANG_EQ] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(6774), + [anon_sym_GT_EQ] = ACTIONS(6781), + [anon_sym_LT_EQ] = ACTIONS(6774), + [anon_sym_LT] = ACTIONS(9231), + [anon_sym_LT_LT] = ACTIONS(6774), + [anon_sym_GT_GT] = ACTIONS(6774), + [anon_sym_SEMI] = ACTIONS(6781), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6781), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_RBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6781), + [anon_sym_EQ] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_STAR_EQ] = ACTIONS(6781), + [anon_sym_SLASH_EQ] = ACTIONS(6781), + [anon_sym_PERCENT_EQ] = ACTIONS(6781), + [anon_sym_PLUS_EQ] = ACTIONS(6781), + [anon_sym_DASH_EQ] = ACTIONS(6781), + [anon_sym_LT_LT_EQ] = ACTIONS(6781), + [anon_sym_GT_GT_EQ] = ACTIONS(6781), + [anon_sym_AMP_EQ] = ACTIONS(6781), + [anon_sym_CARET_EQ] = ACTIONS(6781), + [anon_sym_PIPE_EQ] = ACTIONS(6781), + [anon_sym_and_eq] = ACTIONS(6774), + [anon_sym_or_eq] = ACTIONS(6774), + [anon_sym_xor_eq] = ACTIONS(6774), + [anon_sym_LT_EQ_GT] = ACTIONS(6781), + [anon_sym_or] = ACTIONS(6774), + [anon_sym_and] = ACTIONS(6774), + [anon_sym_bitor] = ACTIONS(6774), + [anon_sym_xor] = ACTIONS(6774), + [anon_sym_bitand] = ACTIONS(6774), + [anon_sym_not_eq] = ACTIONS(6774), + [anon_sym_DASH_DASH] = ACTIONS(6781), + [anon_sym_PLUS_PLUS] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(6774), + [anon_sym_DOT_STAR] = ACTIONS(6781), + [anon_sym_DASH_GT] = ACTIONS(6781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_final] = ACTIONS(6774), + [anon_sym_override] = ACTIONS(6774), + [anon_sym_requires] = ACTIONS(6774), + [anon_sym_COLON_RBRACK] = ACTIONS(6781), }, [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_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym__function_attributes_end] = STATE(4916), + [sym__function_postfix] = STATE(5771), + [sym_trailing_return_type] = STATE(5020), + [sym_requires_clause] = STATE(5771), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_RBRACK] = ACTIONS(7623), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8737), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7043), + [anon_sym_override] = ACTIONS(7043), + [anon_sym_requires] = ACTIONS(7045), }, [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_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym__function_attributes_end] = STATE(4914), + [sym__function_postfix] = STATE(5746), + [sym_trailing_return_type] = STATE(5019), + [sym_requires_clause] = STATE(5746), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_RBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8640), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7043), + [anon_sym_override] = ACTIONS(7043), + [anon_sym_requires] = ACTIONS(7045), }, [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(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6826), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6826), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6826), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6826), + [anon_sym_GT_GT] = ACTIONS(6826), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_STAR_EQ] = ACTIONS(6819), + [anon_sym_SLASH_EQ] = ACTIONS(6819), + [anon_sym_PERCENT_EQ] = ACTIONS(6819), + [anon_sym_PLUS_EQ] = ACTIONS(6819), + [anon_sym_DASH_EQ] = ACTIONS(6819), + [anon_sym_LT_LT_EQ] = ACTIONS(6819), + [anon_sym_GT_GT_EQ] = ACTIONS(6819), + [anon_sym_AMP_EQ] = ACTIONS(6819), + [anon_sym_CARET_EQ] = ACTIONS(6819), + [anon_sym_PIPE_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6826), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6819), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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_type_qualifier] = STATE(3393), + [sym_alignas_qualifier] = STATE(3813), + [aux_sym__type_definition_type_repeat1] = STATE(3393), + [sym_identifier] = ACTIONS(7047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7049), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7049), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7049), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7049), + [anon_sym_GT_GT] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(9234), + [anon_sym___attribute__] = ACTIONS(7047), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_COLON_COLON] = ACTIONS(7049), + [anon_sym_LBRACE] = ACTIONS(7049), + [anon_sym_signed] = ACTIONS(7047), + [anon_sym_unsigned] = ACTIONS(7047), + [anon_sym_long] = ACTIONS(7047), + [anon_sym_short] = ACTIONS(7047), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_RBRACK] = ACTIONS(7049), + [anon_sym_const] = ACTIONS(9234), + [anon_sym_constexpr] = ACTIONS(9234), + [anon_sym_volatile] = ACTIONS(9234), + [anon_sym_restrict] = ACTIONS(9234), + [anon_sym___restrict__] = ACTIONS(9234), + [anon_sym__Atomic] = ACTIONS(9234), + [anon_sym__Noreturn] = ACTIONS(9234), + [anon_sym_noreturn] = ACTIONS(9234), + [anon_sym__Nonnull] = ACTIONS(9234), + [anon_sym_mutable] = ACTIONS(9234), + [anon_sym_constinit] = ACTIONS(9234), + [anon_sym_consteval] = ACTIONS(9234), + [anon_sym_alignas] = ACTIONS(9237), + [anon_sym__Alignas] = ACTIONS(9237), + [sym_primitive_type] = ACTIONS(7047), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7047), + [anon_sym_and] = ACTIONS(7047), + [anon_sym_bitor] = ACTIONS(7047), + [anon_sym_xor] = ACTIONS(7047), + [anon_sym_bitand] = ACTIONS(7047), + [anon_sym_not_eq] = ACTIONS(7047), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7047), + [anon_sym_final] = ACTIONS(7047), + [anon_sym_override] = ACTIONS(7047), + [anon_sym_template] = ACTIONS(7047), + [anon_sym_requires] = ACTIONS(7047), + [anon_sym_LBRACK_COLON] = ACTIONS(7049), }, [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_attribute_specifier] = STATE(4056), + [sym_field_declaration_list] = STATE(4037), + [sym_virtual_specifier] = STATE(10640), + [sym_base_class_clause] = STATE(11587), + [sym_identifier] = ACTIONS(7370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(7372), + [anon_sym_RPAREN] = ACTIONS(7372), + [aux_sym_preproc_if_token2] = ACTIONS(7372), + [aux_sym_preproc_else_token1] = ACTIONS(7372), + [aux_sym_preproc_elif_token1] = ACTIONS(7370), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7372), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7372), + [anon_sym_LPAREN2] = ACTIONS(7372), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_STAR] = ACTIONS(7370), + [anon_sym_SLASH] = ACTIONS(7370), + [anon_sym_PERCENT] = ACTIONS(7370), + [anon_sym_PIPE_PIPE] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7372), + [anon_sym_PIPE] = ACTIONS(7370), + [anon_sym_CARET] = ACTIONS(7370), + [anon_sym_AMP] = ACTIONS(7370), + [anon_sym_EQ_EQ] = ACTIONS(7372), + [anon_sym_BANG_EQ] = ACTIONS(7372), + [anon_sym_GT] = ACTIONS(7370), + [anon_sym_GT_EQ] = ACTIONS(7372), + [anon_sym_LT_EQ] = ACTIONS(7370), + [anon_sym_LT] = ACTIONS(7370), + [anon_sym_LT_LT] = ACTIONS(7370), + [anon_sym_GT_GT] = ACTIONS(7370), + [anon_sym_SEMI] = ACTIONS(7372), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7372), + [anon_sym_LBRACE] = ACTIONS(9242), + [anon_sym_RBRACE] = ACTIONS(7372), + [anon_sym_LBRACK] = ACTIONS(7372), + [anon_sym_EQ] = ACTIONS(7370), + [anon_sym_QMARK] = ACTIONS(7372), + [anon_sym_STAR_EQ] = ACTIONS(7372), + [anon_sym_SLASH_EQ] = ACTIONS(7372), + [anon_sym_PERCENT_EQ] = ACTIONS(7372), + [anon_sym_PLUS_EQ] = ACTIONS(7372), + [anon_sym_DASH_EQ] = ACTIONS(7372), + [anon_sym_LT_LT_EQ] = ACTIONS(7372), + [anon_sym_GT_GT_EQ] = ACTIONS(7372), + [anon_sym_AMP_EQ] = ACTIONS(7372), + [anon_sym_CARET_EQ] = ACTIONS(7372), + [anon_sym_PIPE_EQ] = ACTIONS(7372), + [anon_sym_and_eq] = ACTIONS(7370), + [anon_sym_or_eq] = ACTIONS(7370), + [anon_sym_xor_eq] = ACTIONS(7370), + [anon_sym_LT_EQ_GT] = ACTIONS(7372), + [anon_sym_or] = ACTIONS(7370), + [anon_sym_and] = ACTIONS(7370), + [anon_sym_bitor] = ACTIONS(7370), + [anon_sym_xor] = ACTIONS(7370), + [anon_sym_bitand] = ACTIONS(7370), + [anon_sym_not_eq] = ACTIONS(7370), + [anon_sym_DASH_DASH] = ACTIONS(7372), + [anon_sym_PLUS_PLUS] = ACTIONS(7372), + [anon_sym_DOT] = ACTIONS(7370), + [anon_sym_DOT_STAR] = ACTIONS(7372), + [anon_sym_DASH_GT] = ACTIONS(7372), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7380), + [anon_sym_override] = ACTIONS(7380), + [anon_sym_COLON_RBRACK] = ACTIONS(7372), }, [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_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym__function_attributes_end] = STATE(4892), + [sym__function_postfix] = STATE(5657), + [sym_trailing_return_type] = STATE(4991), + [sym_requires_clause] = STATE(5657), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7472), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7472), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8619), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6923), + [anon_sym_override] = ACTIONS(6923), + [anon_sym_GT2] = ACTIONS(7474), + [anon_sym_requires] = ACTIONS(6929), }, [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), + [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___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [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_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), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_COLON_RBRACK] = ACTIONS(7521), }, [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__abstract_declarator] = STATE(6548), + [sym_abstract_parenthesized_declarator] = STATE(6358), + [sym_abstract_pointer_declarator] = STATE(6358), + [sym_abstract_function_declarator] = STATE(6358), + [sym_abstract_array_declarator] = STATE(6358), + [sym_parameter_list] = STATE(2116), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6358), + [sym__function_declarator_seq] = STATE(6123), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9528), + [sym_abstract_qualified_identifier] = STATE(6358), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_RPAREN] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(6738), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(6847), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7864), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(6849), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7864), + [anon_sym_AMP] = ACTIONS(6851), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7864), + [anon_sym_GT_GT] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(7864), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_STAR_EQ] = ACTIONS(7862), + [anon_sym_SLASH_EQ] = ACTIONS(7862), + [anon_sym_PERCENT_EQ] = ACTIONS(7862), + [anon_sym_PLUS_EQ] = ACTIONS(7862), + [anon_sym_DASH_EQ] = ACTIONS(7862), + [anon_sym_LT_LT_EQ] = ACTIONS(7862), + [anon_sym_GT_GT_EQ] = ACTIONS(7862), + [anon_sym_AMP_EQ] = ACTIONS(7862), + [anon_sym_CARET_EQ] = ACTIONS(7862), + [anon_sym_PIPE_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7864), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_DASH_GT_STAR] = ACTIONS(7862), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(4615), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3432), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(8658), + [anon_sym___attribute] = ACTIONS(8661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6975), + [anon_sym_override] = ACTIONS(6975), + [anon_sym_requires] = ACTIONS(6981), }, [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_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(4616), + [sym__function_postfix] = STATE(3975), + [sym_trailing_return_type] = STATE(3462), + [sym_requires_clause] = STATE(3975), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(8722), + [anon_sym___attribute] = ACTIONS(8725), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8728), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6975), + [anon_sym_override] = ACTIONS(6975), + [anon_sym_requires] = ACTIONS(6981), }, [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_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(4617), + [sym__function_postfix] = STATE(3850), + [sym_trailing_return_type] = STATE(3459), + [sym_requires_clause] = STATE(3850), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym___attribute__] = ACTIONS(9244), + [anon_sym___attribute] = ACTIONS(9247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8287), + [anon_sym_or_eq] = ACTIONS(8287), + [anon_sym_xor_eq] = ACTIONS(8287), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8287), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8287), + [anon_sym_not_eq] = ACTIONS(8287), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(9250), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6975), + [anon_sym_override] = ACTIONS(6975), + [anon_sym_requires] = ACTIONS(6981), }, [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(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_RPAREN] = ACTIONS(6805), + [aux_sym_preproc_if_token2] = ACTIONS(6805), + [aux_sym_preproc_else_token1] = ACTIONS(6805), + [aux_sym_preproc_elif_token1] = ACTIONS(6803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6805), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6803), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6803), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6803), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6803), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym_SEMI] = ACTIONS(6805), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6805), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_RBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6805), + [anon_sym_EQ] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_STAR_EQ] = ACTIONS(6805), + [anon_sym_SLASH_EQ] = ACTIONS(6805), + [anon_sym_PERCENT_EQ] = ACTIONS(6805), + [anon_sym_PLUS_EQ] = ACTIONS(6805), + [anon_sym_DASH_EQ] = ACTIONS(6805), + [anon_sym_LT_LT_EQ] = ACTIONS(6805), + [anon_sym_GT_GT_EQ] = ACTIONS(6805), + [anon_sym_AMP_EQ] = ACTIONS(6805), + [anon_sym_CARET_EQ] = ACTIONS(6805), + [anon_sym_PIPE_EQ] = ACTIONS(6805), + [anon_sym_and_eq] = ACTIONS(6803), + [anon_sym_or_eq] = ACTIONS(6803), + [anon_sym_xor_eq] = ACTIONS(6803), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_COLON_RBRACK] = ACTIONS(6805), }, [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(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_RPAREN] = ACTIONS(6801), + [aux_sym_preproc_if_token2] = ACTIONS(6801), + [aux_sym_preproc_else_token1] = ACTIONS(6801), + [aux_sym_preproc_elif_token1] = ACTIONS(6799), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6801), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6799), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6799), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6799), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6799), + [anon_sym_GT_GT] = ACTIONS(6799), + [anon_sym_SEMI] = ACTIONS(6801), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_RBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6801), + [anon_sym_EQ] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_STAR_EQ] = ACTIONS(6801), + [anon_sym_SLASH_EQ] = ACTIONS(6801), + [anon_sym_PERCENT_EQ] = ACTIONS(6801), + [anon_sym_PLUS_EQ] = ACTIONS(6801), + [anon_sym_DASH_EQ] = ACTIONS(6801), + [anon_sym_LT_LT_EQ] = ACTIONS(6801), + [anon_sym_GT_GT_EQ] = ACTIONS(6801), + [anon_sym_AMP_EQ] = ACTIONS(6801), + [anon_sym_CARET_EQ] = ACTIONS(6801), + [anon_sym_PIPE_EQ] = ACTIONS(6801), + [anon_sym_and_eq] = ACTIONS(6799), + [anon_sym_or_eq] = ACTIONS(6799), + [anon_sym_xor_eq] = ACTIONS(6799), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_COLON_RBRACK] = ACTIONS(6801), }, [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_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym__function_attributes_end] = STATE(4842), + [sym__function_postfix] = STATE(5657), + [sym_trailing_return_type] = STATE(4930), + [sym_requires_clause] = STATE(5657), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7472), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7472), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8619), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8673), + [anon_sym_override] = ACTIONS(8673), + [anon_sym_GT2] = ACTIONS(7474), + [anon_sym_requires] = ACTIONS(8676), }, [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(9253), + [anon_sym_LPAREN2] = ACTIONS(9255), + [anon_sym_TILDE] = ACTIONS(9255), + [anon_sym_STAR] = ACTIONS(9255), + [anon_sym_PIPE_PIPE] = ACTIONS(9255), + [anon_sym_AMP_AMP] = ACTIONS(9255), + [anon_sym_AMP] = ACTIONS(9253), + [anon_sym___extension__] = ACTIONS(9253), + [anon_sym_virtual] = ACTIONS(9253), + [anon_sym_extern] = ACTIONS(9253), + [anon_sym___attribute__] = ACTIONS(9253), + [anon_sym___attribute] = ACTIONS(9253), + [anon_sym_using] = ACTIONS(9253), + [anon_sym_COLON_COLON] = ACTIONS(9255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9255), + [anon_sym___declspec] = ACTIONS(9253), + [anon_sym___based] = ACTIONS(9253), + [anon_sym___cdecl] = ACTIONS(9253), + [anon_sym___clrcall] = ACTIONS(9253), + [anon_sym___stdcall] = ACTIONS(9253), + [anon_sym___fastcall] = ACTIONS(9253), + [anon_sym___thiscall] = ACTIONS(9253), + [anon_sym___vectorcall] = ACTIONS(9253), + [anon_sym_LBRACE] = ACTIONS(9255), + [anon_sym_signed] = ACTIONS(9253), + [anon_sym_unsigned] = ACTIONS(9253), + [anon_sym_long] = ACTIONS(9253), + [anon_sym_short] = ACTIONS(9253), + [anon_sym_LBRACK] = ACTIONS(9253), + [anon_sym_static] = ACTIONS(9253), + [anon_sym_register] = ACTIONS(9253), + [anon_sym_inline] = ACTIONS(9253), + [anon_sym___inline] = ACTIONS(9253), + [anon_sym___inline__] = ACTIONS(9253), + [anon_sym___forceinline] = ACTIONS(9253), + [anon_sym_thread_local] = ACTIONS(9253), + [anon_sym___thread] = ACTIONS(9253), + [anon_sym_const] = ACTIONS(9253), + [anon_sym_constexpr] = ACTIONS(9253), + [anon_sym_volatile] = ACTIONS(9253), + [anon_sym_restrict] = ACTIONS(9253), + [anon_sym___restrict__] = ACTIONS(9253), + [anon_sym__Atomic] = ACTIONS(9253), + [anon_sym__Noreturn] = ACTIONS(9253), + [anon_sym_noreturn] = ACTIONS(9253), + [anon_sym__Nonnull] = ACTIONS(9253), + [anon_sym_mutable] = ACTIONS(9253), + [anon_sym_constinit] = ACTIONS(9253), + [anon_sym_consteval] = ACTIONS(9253), + [anon_sym_alignas] = ACTIONS(9253), + [anon_sym__Alignas] = ACTIONS(9253), + [sym_primitive_type] = ACTIONS(9253), + [anon_sym_enum] = ACTIONS(9253), + [anon_sym_class] = ACTIONS(9253), + [anon_sym_struct] = ACTIONS(9253), + [anon_sym_union] = ACTIONS(9253), + [anon_sym_or] = ACTIONS(9253), + [anon_sym_and] = ACTIONS(9253), + [anon_sym_typename] = ACTIONS(9253), + [anon_sym_DASH_GT] = ACTIONS(9255), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9253), + [anon_sym_decltype] = ACTIONS(9253), + [anon_sym_explicit] = ACTIONS(9253), + [anon_sym_template] = ACTIONS(9253), + [anon_sym_operator] = ACTIONS(9253), + [anon_sym_friend] = ACTIONS(9253), + [anon_sym_noexcept] = ACTIONS(9253), + [anon_sym_throw] = ACTIONS(9253), + [anon_sym_concept] = ACTIONS(9253), + [anon_sym_LBRACK_COLON] = ACTIONS(9255), }, [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_ms_based_modifier] = STATE(11956), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(3406), + [sym__declarator] = STATE(9959), + [sym__abstract_declarator] = STATE(10124), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4431), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(5186), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8774), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(4431), + [aux_sym_pointer_declarator_repeat1] = STATE(3406), + [sym_identifier] = ACTIONS(8585), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_AMP_AMP] = ACTIONS(5649), + [anon_sym_AMP] = ACTIONS(5651), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(9257), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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_ms_based_modifier] = STATE(11956), + [sym_ms_unaligned_ptr_modifier] = STATE(6832), + [sym_ms_pointer_modifier] = STATE(6459), + [sym__declarator] = STATE(9936), + [sym__abstract_declarator] = STATE(10106), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4435), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(5186), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8774), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(4435), + [aux_sym_pointer_declarator_repeat1] = STATE(6459), + [sym_identifier] = ACTIONS(8585), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_AMP_AMP] = ACTIONS(5649), + [anon_sym_AMP] = ACTIONS(5651), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym_COLON_COLON] = ACTIONS(9257), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3222), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3222), + [sym_ms_signed_ptr_modifier] = ACTIONS(3222), + [anon_sym__unaligned] = ACTIONS(3224), + [anon_sym___unaligned] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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(3149), + [anon_sym_LPAREN2] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym___attribute__] = ACTIONS(3149), + [anon_sym___attribute] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), + [anon_sym___declspec] = ACTIONS(3149), + [anon_sym___based] = ACTIONS(3149), + [anon_sym___cdecl] = ACTIONS(3149), + [anon_sym___clrcall] = ACTIONS(3149), + [anon_sym___stdcall] = ACTIONS(3149), + [anon_sym___fastcall] = ACTIONS(3149), + [anon_sym___thiscall] = ACTIONS(3149), + [anon_sym___vectorcall] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_signed] = ACTIONS(3149), + [anon_sym_unsigned] = ACTIONS(3149), + [anon_sym_long] = ACTIONS(3149), + [anon_sym_short] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_register] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym___inline] = ACTIONS(3149), + [anon_sym___inline__] = ACTIONS(3149), + [anon_sym___forceinline] = ACTIONS(3149), + [anon_sym_thread_local] = ACTIONS(3149), + [anon_sym___thread] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_constexpr] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_restrict] = ACTIONS(3149), + [anon_sym___restrict__] = ACTIONS(3149), + [anon_sym__Atomic] = ACTIONS(3149), + [anon_sym__Noreturn] = ACTIONS(3149), + [anon_sym_noreturn] = ACTIONS(3149), + [anon_sym__Nonnull] = ACTIONS(3149), + [anon_sym_mutable] = ACTIONS(3149), + [anon_sym_constinit] = ACTIONS(3149), + [anon_sym_consteval] = ACTIONS(3149), + [anon_sym_alignas] = ACTIONS(3149), + [anon_sym__Alignas] = ACTIONS(3149), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_or] = ACTIONS(3149), + [anon_sym_and] = ACTIONS(3149), + [anon_sym_typename] = ACTIONS(3149), + [anon_sym_DASH_GT] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3149), + [anon_sym_decltype] = ACTIONS(3149), + [anon_sym_explicit] = ACTIONS(3149), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_operator] = ACTIONS(3149), + [anon_sym_friend] = ACTIONS(3149), + [anon_sym_noexcept] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_concept] = ACTIONS(3149), + [anon_sym_LBRACK_COLON] = ACTIONS(3147), }, [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(9259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9261), + [anon_sym_COMMA] = ACTIONS(9261), + [anon_sym_RPAREN] = ACTIONS(9261), + [aux_sym_preproc_if_token2] = ACTIONS(9261), + [aux_sym_preproc_else_token1] = ACTIONS(9261), + [aux_sym_preproc_elif_token1] = ACTIONS(9259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9261), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9261), + [anon_sym_LPAREN2] = ACTIONS(9261), + [anon_sym_DASH] = ACTIONS(9259), + [anon_sym_PLUS] = ACTIONS(9259), + [anon_sym_STAR] = ACTIONS(9259), + [anon_sym_SLASH] = ACTIONS(9259), + [anon_sym_PERCENT] = ACTIONS(9259), + [anon_sym_PIPE_PIPE] = ACTIONS(9261), + [anon_sym_AMP_AMP] = ACTIONS(9261), + [anon_sym_PIPE] = ACTIONS(9259), + [anon_sym_CARET] = ACTIONS(9259), + [anon_sym_AMP] = ACTIONS(9259), + [anon_sym_EQ_EQ] = ACTIONS(9261), + [anon_sym_BANG_EQ] = ACTIONS(9261), + [anon_sym_GT] = ACTIONS(9259), + [anon_sym_GT_EQ] = ACTIONS(9261), + [anon_sym_LT_EQ] = ACTIONS(9259), + [anon_sym_LT] = ACTIONS(9259), + [anon_sym_LT_LT] = ACTIONS(9259), + [anon_sym_GT_GT] = ACTIONS(9259), + [anon_sym_SEMI] = ACTIONS(9261), + [anon_sym___attribute__] = ACTIONS(9259), + [anon_sym___attribute] = ACTIONS(9259), + [anon_sym_COLON] = ACTIONS(9259), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9261), + [anon_sym_RBRACE] = ACTIONS(9261), + [anon_sym_LBRACK] = ACTIONS(9259), + [anon_sym_EQ] = ACTIONS(9259), + [anon_sym_QMARK] = ACTIONS(9261), + [anon_sym_STAR_EQ] = ACTIONS(9261), + [anon_sym_SLASH_EQ] = ACTIONS(9261), + [anon_sym_PERCENT_EQ] = ACTIONS(9261), + [anon_sym_PLUS_EQ] = ACTIONS(9261), + [anon_sym_DASH_EQ] = ACTIONS(9261), + [anon_sym_LT_LT_EQ] = ACTIONS(9261), + [anon_sym_GT_GT_EQ] = ACTIONS(9261), + [anon_sym_AMP_EQ] = ACTIONS(9261), + [anon_sym_CARET_EQ] = ACTIONS(9261), + [anon_sym_PIPE_EQ] = ACTIONS(9261), + [anon_sym_and_eq] = ACTIONS(9259), + [anon_sym_or_eq] = ACTIONS(9259), + [anon_sym_xor_eq] = ACTIONS(9259), + [anon_sym_LT_EQ_GT] = ACTIONS(9261), + [anon_sym_or] = ACTIONS(9259), + [anon_sym_and] = ACTIONS(9259), + [anon_sym_bitor] = ACTIONS(9259), + [anon_sym_xor] = ACTIONS(9259), + [anon_sym_bitand] = ACTIONS(9259), + [anon_sym_not_eq] = ACTIONS(9259), + [anon_sym_DASH_DASH] = ACTIONS(9261), + [anon_sym_PLUS_PLUS] = ACTIONS(9261), + [anon_sym_asm] = ACTIONS(9259), + [anon_sym___asm__] = ACTIONS(9259), + [anon_sym___asm] = ACTIONS(9259), + [anon_sym_DOT] = ACTIONS(9259), + [anon_sym_DOT_STAR] = ACTIONS(9261), + [anon_sym_DASH_GT] = ACTIONS(9261), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9259), + [anon_sym_override] = ACTIONS(9259), + [anon_sym_requires] = ACTIONS(9259), + [anon_sym_COLON_RBRACK] = ACTIONS(9261), }, [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(9263), + [anon_sym_LPAREN2] = ACTIONS(9265), + [anon_sym_TILDE] = ACTIONS(9265), + [anon_sym_STAR] = ACTIONS(9265), + [anon_sym_PIPE_PIPE] = ACTIONS(9265), + [anon_sym_AMP_AMP] = ACTIONS(9265), + [anon_sym_AMP] = ACTIONS(9263), + [anon_sym___extension__] = ACTIONS(9263), + [anon_sym_virtual] = ACTIONS(9263), + [anon_sym_extern] = ACTIONS(9263), + [anon_sym___attribute__] = ACTIONS(9263), + [anon_sym___attribute] = ACTIONS(9263), + [anon_sym_using] = ACTIONS(9263), + [anon_sym_COLON_COLON] = ACTIONS(9265), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9265), + [anon_sym___declspec] = ACTIONS(9263), + [anon_sym___based] = ACTIONS(9263), + [anon_sym___cdecl] = ACTIONS(9263), + [anon_sym___clrcall] = ACTIONS(9263), + [anon_sym___stdcall] = ACTIONS(9263), + [anon_sym___fastcall] = ACTIONS(9263), + [anon_sym___thiscall] = ACTIONS(9263), + [anon_sym___vectorcall] = ACTIONS(9263), + [anon_sym_LBRACE] = ACTIONS(9265), + [anon_sym_signed] = ACTIONS(9263), + [anon_sym_unsigned] = ACTIONS(9263), + [anon_sym_long] = ACTIONS(9263), + [anon_sym_short] = ACTIONS(9263), + [anon_sym_LBRACK] = ACTIONS(9263), + [anon_sym_static] = ACTIONS(9263), + [anon_sym_register] = ACTIONS(9263), + [anon_sym_inline] = ACTIONS(9263), + [anon_sym___inline] = ACTIONS(9263), + [anon_sym___inline__] = ACTIONS(9263), + [anon_sym___forceinline] = ACTIONS(9263), + [anon_sym_thread_local] = ACTIONS(9263), + [anon_sym___thread] = ACTIONS(9263), + [anon_sym_const] = ACTIONS(9263), + [anon_sym_constexpr] = ACTIONS(9263), + [anon_sym_volatile] = ACTIONS(9263), + [anon_sym_restrict] = ACTIONS(9263), + [anon_sym___restrict__] = ACTIONS(9263), + [anon_sym__Atomic] = ACTIONS(9263), + [anon_sym__Noreturn] = ACTIONS(9263), + [anon_sym_noreturn] = ACTIONS(9263), + [anon_sym__Nonnull] = ACTIONS(9263), + [anon_sym_mutable] = ACTIONS(9263), + [anon_sym_constinit] = ACTIONS(9263), + [anon_sym_consteval] = ACTIONS(9263), + [anon_sym_alignas] = ACTIONS(9263), + [anon_sym__Alignas] = ACTIONS(9263), + [sym_primitive_type] = ACTIONS(9263), + [anon_sym_enum] = ACTIONS(9263), + [anon_sym_class] = ACTIONS(9263), + [anon_sym_struct] = ACTIONS(9263), + [anon_sym_union] = ACTIONS(9263), + [anon_sym_or] = ACTIONS(9263), + [anon_sym_and] = ACTIONS(9263), + [anon_sym_typename] = ACTIONS(9263), + [anon_sym_DASH_GT] = ACTIONS(9265), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9263), + [anon_sym_decltype] = ACTIONS(9263), + [anon_sym_explicit] = ACTIONS(9263), + [anon_sym_template] = ACTIONS(9263), + [anon_sym_operator] = ACTIONS(9263), + [anon_sym_friend] = ACTIONS(9263), + [anon_sym_noexcept] = ACTIONS(9263), + [anon_sym_throw] = ACTIONS(9263), + [anon_sym_concept] = ACTIONS(9263), + [anon_sym_LBRACK_COLON] = ACTIONS(9265), }, [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_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym__function_attributes_end] = STATE(4843), + [sym__function_postfix] = STATE(5572), + [sym_trailing_return_type] = STATE(4932), + [sym_requires_clause] = STATE(5572), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7621), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7621), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8810), + [anon_sym_override] = ACTIONS(8810), + [anon_sym_GT2] = ACTIONS(7623), + [anon_sym_requires] = ACTIONS(8813), }, [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_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3907), + [sym_requires_clause] = STATE(3907), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(9267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9269), + [anon_sym_COMMA] = ACTIONS(9269), + [anon_sym_RPAREN] = ACTIONS(9269), + [aux_sym_preproc_if_token2] = ACTIONS(9269), + [aux_sym_preproc_else_token1] = ACTIONS(9269), + [aux_sym_preproc_elif_token1] = ACTIONS(9267), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9269), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9269), + [anon_sym_LPAREN2] = ACTIONS(9269), + [anon_sym_DASH] = ACTIONS(9267), + [anon_sym_PLUS] = ACTIONS(9267), + [anon_sym_STAR] = ACTIONS(9267), + [anon_sym_SLASH] = ACTIONS(9267), + [anon_sym_PERCENT] = ACTIONS(9267), + [anon_sym_PIPE_PIPE] = ACTIONS(9269), + [anon_sym_AMP_AMP] = ACTIONS(9269), + [anon_sym_PIPE] = ACTIONS(9267), + [anon_sym_CARET] = ACTIONS(9267), + [anon_sym_AMP] = ACTIONS(9267), + [anon_sym_EQ_EQ] = ACTIONS(9269), + [anon_sym_BANG_EQ] = ACTIONS(9269), + [anon_sym_GT] = ACTIONS(9267), + [anon_sym_GT_EQ] = ACTIONS(9269), + [anon_sym_LT_EQ] = ACTIONS(9267), + [anon_sym_LT] = ACTIONS(9267), + [anon_sym_LT_LT] = ACTIONS(9267), + [anon_sym_GT_GT] = ACTIONS(9267), + [anon_sym_SEMI] = ACTIONS(9269), + [anon_sym___attribute__] = ACTIONS(9267), + [anon_sym___attribute] = ACTIONS(9267), + [anon_sym_COLON] = ACTIONS(9267), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9269), + [anon_sym_RBRACE] = ACTIONS(9269), + [anon_sym_LBRACK] = ACTIONS(9269), + [anon_sym_EQ] = ACTIONS(9267), + [anon_sym_QMARK] = ACTIONS(9269), + [anon_sym_STAR_EQ] = ACTIONS(9269), + [anon_sym_SLASH_EQ] = ACTIONS(9269), + [anon_sym_PERCENT_EQ] = ACTIONS(9269), + [anon_sym_PLUS_EQ] = ACTIONS(9269), + [anon_sym_DASH_EQ] = ACTIONS(9269), + [anon_sym_LT_LT_EQ] = ACTIONS(9269), + [anon_sym_GT_GT_EQ] = ACTIONS(9269), + [anon_sym_AMP_EQ] = ACTIONS(9269), + [anon_sym_CARET_EQ] = ACTIONS(9269), + [anon_sym_PIPE_EQ] = ACTIONS(9269), + [anon_sym_and_eq] = ACTIONS(9267), + [anon_sym_or_eq] = ACTIONS(9267), + [anon_sym_xor_eq] = ACTIONS(9267), + [anon_sym_LT_EQ_GT] = ACTIONS(9269), + [anon_sym_or] = ACTIONS(9267), + [anon_sym_and] = ACTIONS(9267), + [anon_sym_bitor] = ACTIONS(9267), + [anon_sym_xor] = ACTIONS(9267), + [anon_sym_bitand] = ACTIONS(9267), + [anon_sym_not_eq] = ACTIONS(9267), + [anon_sym_DASH_DASH] = ACTIONS(9269), + [anon_sym_PLUS_PLUS] = ACTIONS(9269), + [anon_sym_DOT] = ACTIONS(9267), + [anon_sym_DOT_STAR] = ACTIONS(9269), + [anon_sym_DASH_GT] = ACTIONS(9269), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(9269), }, [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(7519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_RPAREN] = ACTIONS(7521), + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_TILDE] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7519), + [anon_sym_SEMI] = ACTIONS(7521), + [anon_sym___extension__] = ACTIONS(7519), + [anon_sym_virtual] = ACTIONS(7519), + [anon_sym_extern] = ACTIONS(7519), + [anon_sym___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7521), + [anon_sym___declspec] = ACTIONS(7519), + [anon_sym___based] = ACTIONS(7519), + [anon_sym___cdecl] = ACTIONS(7519), + [anon_sym___clrcall] = ACTIONS(7519), + [anon_sym___stdcall] = ACTIONS(7519), + [anon_sym___fastcall] = ACTIONS(7519), + [anon_sym___thiscall] = ACTIONS(7519), + [anon_sym___vectorcall] = ACTIONS(7519), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7519), + [anon_sym_static] = ACTIONS(7519), + [anon_sym_EQ] = ACTIONS(7521), + [anon_sym_register] = ACTIONS(7519), + [anon_sym_inline] = ACTIONS(7519), + [anon_sym___inline] = ACTIONS(7519), + [anon_sym___inline__] = ACTIONS(7519), + [anon_sym___forceinline] = ACTIONS(7519), + [anon_sym_thread_local] = ACTIONS(7519), + [anon_sym___thread] = 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_or] = ACTIONS(7519), + [anon_sym_and] = ACTIONS(7519), + [anon_sym_asm] = ACTIONS(7519), + [anon_sym___asm__] = ACTIONS(7519), + [anon_sym___asm] = ACTIONS(7519), + [anon_sym_DASH_GT] = ACTIONS(7521), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_template] = ACTIONS(7519), + [anon_sym_GT2] = ACTIONS(7521), + [anon_sym_operator] = ACTIONS(7519), + [anon_sym_try] = ACTIONS(7519), + [anon_sym_noexcept] = ACTIONS(7519), + [anon_sym_throw] = ACTIONS(7519), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_LBRACK_COLON] = ACTIONS(7521), }, [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(9271), + [anon_sym_LPAREN2] = ACTIONS(9273), + [anon_sym_TILDE] = ACTIONS(9273), + [anon_sym_STAR] = ACTIONS(9273), + [anon_sym_PIPE_PIPE] = ACTIONS(9273), + [anon_sym_AMP_AMP] = ACTIONS(9273), + [anon_sym_AMP] = ACTIONS(9271), + [anon_sym___extension__] = ACTIONS(9271), + [anon_sym_virtual] = ACTIONS(9271), + [anon_sym_extern] = ACTIONS(9271), + [anon_sym___attribute__] = ACTIONS(9271), + [anon_sym___attribute] = ACTIONS(9271), + [anon_sym_using] = ACTIONS(9271), + [anon_sym_COLON_COLON] = ACTIONS(9273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9273), + [anon_sym___declspec] = ACTIONS(9271), + [anon_sym___based] = ACTIONS(9271), + [anon_sym___cdecl] = ACTIONS(9271), + [anon_sym___clrcall] = ACTIONS(9271), + [anon_sym___stdcall] = ACTIONS(9271), + [anon_sym___fastcall] = ACTIONS(9271), + [anon_sym___thiscall] = ACTIONS(9271), + [anon_sym___vectorcall] = ACTIONS(9271), + [anon_sym_LBRACE] = ACTIONS(9273), + [anon_sym_signed] = ACTIONS(9271), + [anon_sym_unsigned] = ACTIONS(9271), + [anon_sym_long] = ACTIONS(9271), + [anon_sym_short] = ACTIONS(9271), + [anon_sym_LBRACK] = ACTIONS(9271), + [anon_sym_static] = ACTIONS(9271), + [anon_sym_register] = ACTIONS(9271), + [anon_sym_inline] = ACTIONS(9271), + [anon_sym___inline] = ACTIONS(9271), + [anon_sym___inline__] = ACTIONS(9271), + [anon_sym___forceinline] = ACTIONS(9271), + [anon_sym_thread_local] = ACTIONS(9271), + [anon_sym___thread] = ACTIONS(9271), + [anon_sym_const] = ACTIONS(9271), + [anon_sym_constexpr] = ACTIONS(9271), + [anon_sym_volatile] = ACTIONS(9271), + [anon_sym_restrict] = ACTIONS(9271), + [anon_sym___restrict__] = ACTIONS(9271), + [anon_sym__Atomic] = ACTIONS(9271), + [anon_sym__Noreturn] = ACTIONS(9271), + [anon_sym_noreturn] = ACTIONS(9271), + [anon_sym__Nonnull] = ACTIONS(9271), + [anon_sym_mutable] = ACTIONS(9271), + [anon_sym_constinit] = ACTIONS(9271), + [anon_sym_consteval] = ACTIONS(9271), + [anon_sym_alignas] = ACTIONS(9271), + [anon_sym__Alignas] = ACTIONS(9271), + [sym_primitive_type] = ACTIONS(9271), + [anon_sym_enum] = ACTIONS(9271), + [anon_sym_class] = ACTIONS(9271), + [anon_sym_struct] = ACTIONS(9271), + [anon_sym_union] = ACTIONS(9271), + [anon_sym_or] = ACTIONS(9271), + [anon_sym_and] = ACTIONS(9271), + [anon_sym_typename] = ACTIONS(9271), + [anon_sym_DASH_GT] = ACTIONS(9273), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9271), + [anon_sym_decltype] = ACTIONS(9271), + [anon_sym_explicit] = ACTIONS(9271), + [anon_sym_template] = ACTIONS(9271), + [anon_sym_operator] = ACTIONS(9271), + [anon_sym_friend] = ACTIONS(9271), + [anon_sym_noexcept] = ACTIONS(9271), + [anon_sym_throw] = ACTIONS(9271), + [anon_sym_concept] = ACTIONS(9271), + [anon_sym_LBRACK_COLON] = ACTIONS(9273), }, [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_identifier] = ACTIONS(9275), + [anon_sym_LPAREN2] = ACTIONS(9277), + [anon_sym_TILDE] = ACTIONS(9277), + [anon_sym_STAR] = ACTIONS(9277), + [anon_sym_PIPE_PIPE] = ACTIONS(9277), + [anon_sym_AMP_AMP] = ACTIONS(9277), + [anon_sym_AMP] = ACTIONS(9275), + [anon_sym___extension__] = ACTIONS(9275), + [anon_sym_virtual] = ACTIONS(9275), + [anon_sym_extern] = ACTIONS(9275), + [anon_sym___attribute__] = ACTIONS(9275), + [anon_sym___attribute] = ACTIONS(9275), + [anon_sym_using] = ACTIONS(9275), + [anon_sym_COLON_COLON] = ACTIONS(9277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9277), + [anon_sym___declspec] = ACTIONS(9275), + [anon_sym___based] = ACTIONS(9275), + [anon_sym___cdecl] = ACTIONS(9275), + [anon_sym___clrcall] = ACTIONS(9275), + [anon_sym___stdcall] = ACTIONS(9275), + [anon_sym___fastcall] = ACTIONS(9275), + [anon_sym___thiscall] = ACTIONS(9275), + [anon_sym___vectorcall] = ACTIONS(9275), + [anon_sym_LBRACE] = ACTIONS(9277), + [anon_sym_signed] = ACTIONS(9275), + [anon_sym_unsigned] = ACTIONS(9275), + [anon_sym_long] = ACTIONS(9275), + [anon_sym_short] = ACTIONS(9275), + [anon_sym_LBRACK] = ACTIONS(9275), + [anon_sym_static] = ACTIONS(9275), + [anon_sym_register] = ACTIONS(9275), + [anon_sym_inline] = ACTIONS(9275), + [anon_sym___inline] = ACTIONS(9275), + [anon_sym___inline__] = ACTIONS(9275), + [anon_sym___forceinline] = ACTIONS(9275), + [anon_sym_thread_local] = ACTIONS(9275), + [anon_sym___thread] = ACTIONS(9275), + [anon_sym_const] = ACTIONS(9275), + [anon_sym_constexpr] = ACTIONS(9275), + [anon_sym_volatile] = ACTIONS(9275), + [anon_sym_restrict] = ACTIONS(9275), + [anon_sym___restrict__] = ACTIONS(9275), + [anon_sym__Atomic] = ACTIONS(9275), + [anon_sym__Noreturn] = ACTIONS(9275), + [anon_sym_noreturn] = ACTIONS(9275), + [anon_sym__Nonnull] = ACTIONS(9275), + [anon_sym_mutable] = ACTIONS(9275), + [anon_sym_constinit] = ACTIONS(9275), + [anon_sym_consteval] = ACTIONS(9275), + [anon_sym_alignas] = ACTIONS(9275), + [anon_sym__Alignas] = ACTIONS(9275), + [sym_primitive_type] = ACTIONS(9275), + [anon_sym_enum] = ACTIONS(9275), + [anon_sym_class] = ACTIONS(9275), + [anon_sym_struct] = ACTIONS(9275), + [anon_sym_union] = ACTIONS(9275), + [anon_sym_or] = ACTIONS(9275), + [anon_sym_and] = ACTIONS(9275), + [anon_sym_typename] = ACTIONS(9275), + [anon_sym_DASH_GT] = ACTIONS(9277), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9275), + [anon_sym_decltype] = ACTIONS(9275), + [anon_sym_explicit] = ACTIONS(9275), + [anon_sym_template] = ACTIONS(9275), + [anon_sym_operator] = ACTIONS(9275), + [anon_sym_friend] = ACTIONS(9275), + [anon_sym_noexcept] = ACTIONS(9275), + [anon_sym_throw] = ACTIONS(9275), + [anon_sym_concept] = ACTIONS(9275), + [anon_sym_LBRACK_COLON] = ACTIONS(9277), }, [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(9279), + [anon_sym_LPAREN2] = ACTIONS(9281), + [anon_sym_TILDE] = ACTIONS(9281), + [anon_sym_STAR] = ACTIONS(9281), + [anon_sym_PIPE_PIPE] = ACTIONS(9281), + [anon_sym_AMP_AMP] = ACTIONS(9281), + [anon_sym_AMP] = ACTIONS(9279), + [anon_sym___extension__] = ACTIONS(9279), + [anon_sym_virtual] = ACTIONS(9279), + [anon_sym_extern] = ACTIONS(9279), + [anon_sym___attribute__] = ACTIONS(9279), + [anon_sym___attribute] = ACTIONS(9279), + [anon_sym_using] = ACTIONS(9279), + [anon_sym_COLON_COLON] = ACTIONS(9281), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9281), + [anon_sym___declspec] = ACTIONS(9279), + [anon_sym___based] = ACTIONS(9279), + [anon_sym___cdecl] = ACTIONS(9279), + [anon_sym___clrcall] = ACTIONS(9279), + [anon_sym___stdcall] = ACTIONS(9279), + [anon_sym___fastcall] = ACTIONS(9279), + [anon_sym___thiscall] = ACTIONS(9279), + [anon_sym___vectorcall] = ACTIONS(9279), + [anon_sym_LBRACE] = ACTIONS(9281), + [anon_sym_signed] = ACTIONS(9279), + [anon_sym_unsigned] = ACTIONS(9279), + [anon_sym_long] = ACTIONS(9279), + [anon_sym_short] = ACTIONS(9279), + [anon_sym_LBRACK] = ACTIONS(9279), + [anon_sym_static] = ACTIONS(9279), + [anon_sym_register] = ACTIONS(9279), + [anon_sym_inline] = ACTIONS(9279), + [anon_sym___inline] = ACTIONS(9279), + [anon_sym___inline__] = ACTIONS(9279), + [anon_sym___forceinline] = ACTIONS(9279), + [anon_sym_thread_local] = ACTIONS(9279), + [anon_sym___thread] = ACTIONS(9279), + [anon_sym_const] = ACTIONS(9279), + [anon_sym_constexpr] = ACTIONS(9279), + [anon_sym_volatile] = ACTIONS(9279), + [anon_sym_restrict] = ACTIONS(9279), + [anon_sym___restrict__] = ACTIONS(9279), + [anon_sym__Atomic] = ACTIONS(9279), + [anon_sym__Noreturn] = ACTIONS(9279), + [anon_sym_noreturn] = ACTIONS(9279), + [anon_sym__Nonnull] = ACTIONS(9279), + [anon_sym_mutable] = ACTIONS(9279), + [anon_sym_constinit] = ACTIONS(9279), + [anon_sym_consteval] = ACTIONS(9279), + [anon_sym_alignas] = ACTIONS(9279), + [anon_sym__Alignas] = ACTIONS(9279), + [sym_primitive_type] = ACTIONS(9279), + [anon_sym_enum] = ACTIONS(9279), + [anon_sym_class] = ACTIONS(9279), + [anon_sym_struct] = ACTIONS(9279), + [anon_sym_union] = ACTIONS(9279), + [anon_sym_or] = ACTIONS(9279), + [anon_sym_and] = ACTIONS(9279), + [anon_sym_typename] = ACTIONS(9279), + [anon_sym_DASH_GT] = ACTIONS(9281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9279), + [anon_sym_decltype] = ACTIONS(9279), + [anon_sym_explicit] = ACTIONS(9279), + [anon_sym_template] = ACTIONS(9279), + [anon_sym_operator] = ACTIONS(9279), + [anon_sym_friend] = ACTIONS(9279), + [anon_sym_noexcept] = ACTIONS(9279), + [anon_sym_throw] = ACTIONS(9279), + [anon_sym_concept] = ACTIONS(9279), + [anon_sym_LBRACK_COLON] = ACTIONS(9281), }, [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_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym__function_attributes_end] = STATE(4844), + [sym__function_postfix] = STATE(5594), + [sym_trailing_return_type] = STATE(4933), + [sym_requires_clause] = STATE(5594), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8285), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8285), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8287), + [anon_sym_or_eq] = ACTIONS(8287), + [anon_sym_xor_eq] = ACTIONS(8287), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8287), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8287), + [anon_sym_not_eq] = ACTIONS(8287), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(9283), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9286), + [anon_sym_override] = ACTIONS(9286), + [anon_sym_GT2] = ACTIONS(8287), + [anon_sym_requires] = ACTIONS(9289), }, [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(9292), + [anon_sym_LPAREN2] = ACTIONS(9294), + [anon_sym_TILDE] = ACTIONS(9294), + [anon_sym_STAR] = ACTIONS(9294), + [anon_sym_PIPE_PIPE] = ACTIONS(9294), + [anon_sym_AMP_AMP] = ACTIONS(9294), + [anon_sym_AMP] = ACTIONS(9292), + [anon_sym___extension__] = ACTIONS(9292), + [anon_sym_virtual] = ACTIONS(9292), + [anon_sym_extern] = ACTIONS(9292), + [anon_sym___attribute__] = ACTIONS(9292), + [anon_sym___attribute] = ACTIONS(9292), + [anon_sym_using] = ACTIONS(9292), + [anon_sym_COLON_COLON] = ACTIONS(9294), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9294), + [anon_sym___declspec] = ACTIONS(9292), + [anon_sym___based] = ACTIONS(9292), + [anon_sym___cdecl] = ACTIONS(9292), + [anon_sym___clrcall] = ACTIONS(9292), + [anon_sym___stdcall] = ACTIONS(9292), + [anon_sym___fastcall] = ACTIONS(9292), + [anon_sym___thiscall] = ACTIONS(9292), + [anon_sym___vectorcall] = ACTIONS(9292), + [anon_sym_LBRACE] = ACTIONS(9294), + [anon_sym_signed] = ACTIONS(9292), + [anon_sym_unsigned] = ACTIONS(9292), + [anon_sym_long] = ACTIONS(9292), + [anon_sym_short] = ACTIONS(9292), + [anon_sym_LBRACK] = ACTIONS(9292), + [anon_sym_static] = ACTIONS(9292), + [anon_sym_register] = ACTIONS(9292), + [anon_sym_inline] = ACTIONS(9292), + [anon_sym___inline] = ACTIONS(9292), + [anon_sym___inline__] = ACTIONS(9292), + [anon_sym___forceinline] = ACTIONS(9292), + [anon_sym_thread_local] = ACTIONS(9292), + [anon_sym___thread] = ACTIONS(9292), + [anon_sym_const] = ACTIONS(9292), + [anon_sym_constexpr] = ACTIONS(9292), + [anon_sym_volatile] = ACTIONS(9292), + [anon_sym_restrict] = ACTIONS(9292), + [anon_sym___restrict__] = ACTIONS(9292), + [anon_sym__Atomic] = ACTIONS(9292), + [anon_sym__Noreturn] = ACTIONS(9292), + [anon_sym_noreturn] = ACTIONS(9292), + [anon_sym__Nonnull] = ACTIONS(9292), + [anon_sym_mutable] = ACTIONS(9292), + [anon_sym_constinit] = ACTIONS(9292), + [anon_sym_consteval] = ACTIONS(9292), + [anon_sym_alignas] = ACTIONS(9292), + [anon_sym__Alignas] = ACTIONS(9292), + [sym_primitive_type] = ACTIONS(9292), + [anon_sym_enum] = ACTIONS(9292), + [anon_sym_class] = ACTIONS(9292), + [anon_sym_struct] = ACTIONS(9292), + [anon_sym_union] = ACTIONS(9292), + [anon_sym_or] = ACTIONS(9292), + [anon_sym_and] = ACTIONS(9292), + [anon_sym_typename] = ACTIONS(9292), + [anon_sym_DASH_GT] = ACTIONS(9294), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9292), + [anon_sym_decltype] = ACTIONS(9292), + [anon_sym_explicit] = ACTIONS(9292), + [anon_sym_template] = ACTIONS(9292), + [anon_sym_operator] = ACTIONS(9292), + [anon_sym_friend] = ACTIONS(9292), + [anon_sym_noexcept] = ACTIONS(9292), + [anon_sym_throw] = ACTIONS(9292), + [anon_sym_concept] = ACTIONS(9292), + [anon_sym_LBRACK_COLON] = ACTIONS(9294), }, [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(9296), + [anon_sym_LPAREN2] = ACTIONS(9298), + [anon_sym_TILDE] = ACTIONS(9298), + [anon_sym_STAR] = ACTIONS(9298), + [anon_sym_PIPE_PIPE] = ACTIONS(9298), + [anon_sym_AMP_AMP] = ACTIONS(9298), + [anon_sym_AMP] = ACTIONS(9296), + [anon_sym___extension__] = ACTIONS(9296), + [anon_sym_virtual] = ACTIONS(9296), + [anon_sym_extern] = ACTIONS(9296), + [anon_sym___attribute__] = ACTIONS(9296), + [anon_sym___attribute] = ACTIONS(9296), + [anon_sym_using] = ACTIONS(9296), + [anon_sym_COLON_COLON] = ACTIONS(9298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9298), + [anon_sym___declspec] = ACTIONS(9296), + [anon_sym___based] = ACTIONS(9296), + [anon_sym___cdecl] = ACTIONS(9296), + [anon_sym___clrcall] = ACTIONS(9296), + [anon_sym___stdcall] = ACTIONS(9296), + [anon_sym___fastcall] = ACTIONS(9296), + [anon_sym___thiscall] = ACTIONS(9296), + [anon_sym___vectorcall] = ACTIONS(9296), + [anon_sym_LBRACE] = ACTIONS(9298), + [anon_sym_signed] = ACTIONS(9296), + [anon_sym_unsigned] = ACTIONS(9296), + [anon_sym_long] = ACTIONS(9296), + [anon_sym_short] = ACTIONS(9296), + [anon_sym_LBRACK] = ACTIONS(9296), + [anon_sym_static] = ACTIONS(9296), + [anon_sym_register] = ACTIONS(9296), + [anon_sym_inline] = ACTIONS(9296), + [anon_sym___inline] = ACTIONS(9296), + [anon_sym___inline__] = ACTIONS(9296), + [anon_sym___forceinline] = ACTIONS(9296), + [anon_sym_thread_local] = ACTIONS(9296), + [anon_sym___thread] = ACTIONS(9296), + [anon_sym_const] = ACTIONS(9296), + [anon_sym_constexpr] = ACTIONS(9296), + [anon_sym_volatile] = ACTIONS(9296), + [anon_sym_restrict] = ACTIONS(9296), + [anon_sym___restrict__] = ACTIONS(9296), + [anon_sym__Atomic] = ACTIONS(9296), + [anon_sym__Noreturn] = ACTIONS(9296), + [anon_sym_noreturn] = ACTIONS(9296), + [anon_sym__Nonnull] = ACTIONS(9296), + [anon_sym_mutable] = ACTIONS(9296), + [anon_sym_constinit] = ACTIONS(9296), + [anon_sym_consteval] = ACTIONS(9296), + [anon_sym_alignas] = ACTIONS(9296), + [anon_sym__Alignas] = ACTIONS(9296), + [sym_primitive_type] = ACTIONS(9296), + [anon_sym_enum] = ACTIONS(9296), + [anon_sym_class] = ACTIONS(9296), + [anon_sym_struct] = ACTIONS(9296), + [anon_sym_union] = ACTIONS(9296), + [anon_sym_or] = ACTIONS(9296), + [anon_sym_and] = ACTIONS(9296), + [anon_sym_typename] = ACTIONS(9296), + [anon_sym_DASH_GT] = ACTIONS(9298), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9296), + [anon_sym_decltype] = ACTIONS(9296), + [anon_sym_explicit] = ACTIONS(9296), + [anon_sym_template] = ACTIONS(9296), + [anon_sym_operator] = ACTIONS(9296), + [anon_sym_friend] = ACTIONS(9296), + [anon_sym_noexcept] = ACTIONS(9296), + [anon_sym_throw] = ACTIONS(9296), + [anon_sym_concept] = ACTIONS(9296), + [anon_sym_LBRACK_COLON] = ACTIONS(9298), }, [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(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(9302), + [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(9302), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9302), + [anon_sym_RBRACE] = ACTIONS(9302), + [anon_sym_LBRACK] = ACTIONS(9300), + [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_asm] = ACTIONS(9300), + [anon_sym___asm__] = ACTIONS(9300), + [anon_sym___asm] = ACTIONS(9300), + [anon_sym_DOT] = ACTIONS(9300), + [anon_sym_DOT_STAR] = ACTIONS(9302), + [anon_sym_DASH_GT] = ACTIONS(9302), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9300), + [anon_sym_override] = ACTIONS(9300), + [anon_sym_requires] = ACTIONS(9300), + [anon_sym_COLON_RBRACK] = ACTIONS(9302), }, [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(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_COLON_COLON] = ACTIONS(7458), + [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(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(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_RPAREN] = ACTIONS(6809), + [aux_sym_preproc_if_token2] = ACTIONS(6809), + [aux_sym_preproc_else_token1] = ACTIONS(6809), + [aux_sym_preproc_elif_token1] = ACTIONS(6807), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6809), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6807), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6807), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6807), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6807), + [anon_sym_GT_GT] = ACTIONS(6807), + [anon_sym_SEMI] = ACTIONS(6809), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6809), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_RBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6809), + [anon_sym_EQ] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [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(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_COLON_RBRACK] = ACTIONS(6809), }, [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(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_RPAREN] = ACTIONS(6797), + [aux_sym_preproc_if_token2] = ACTIONS(6797), + [aux_sym_preproc_else_token1] = ACTIONS(6797), + [aux_sym_preproc_elif_token1] = ACTIONS(6795), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6797), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6795), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6795), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6795), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6795), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym_SEMI] = ACTIONS(6797), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_RBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6797), + [anon_sym_EQ] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_STAR_EQ] = ACTIONS(6797), + [anon_sym_SLASH_EQ] = ACTIONS(6797), + [anon_sym_PERCENT_EQ] = ACTIONS(6797), + [anon_sym_PLUS_EQ] = ACTIONS(6797), + [anon_sym_DASH_EQ] = ACTIONS(6797), + [anon_sym_LT_LT_EQ] = ACTIONS(6797), + [anon_sym_GT_GT_EQ] = ACTIONS(6797), + [anon_sym_AMP_EQ] = ACTIONS(6797), + [anon_sym_CARET_EQ] = ACTIONS(6797), + [anon_sym_PIPE_EQ] = ACTIONS(6797), + [anon_sym_and_eq] = ACTIONS(6795), + [anon_sym_or_eq] = ACTIONS(6795), + [anon_sym_xor_eq] = ACTIONS(6795), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_COLON_RBRACK] = ACTIONS(6797), }, [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(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_RPAREN] = ACTIONS(6793), + [aux_sym_preproc_if_token2] = ACTIONS(6793), + [aux_sym_preproc_else_token1] = ACTIONS(6793), + [aux_sym_preproc_elif_token1] = ACTIONS(6791), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6793), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6791), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6791), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6791), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6791), + [anon_sym_GT_GT] = ACTIONS(6791), + [anon_sym_SEMI] = ACTIONS(6793), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6793), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_RBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6793), + [anon_sym_EQ] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_STAR_EQ] = ACTIONS(6793), + [anon_sym_SLASH_EQ] = ACTIONS(6793), + [anon_sym_PERCENT_EQ] = ACTIONS(6793), + [anon_sym_PLUS_EQ] = ACTIONS(6793), + [anon_sym_DASH_EQ] = ACTIONS(6793), + [anon_sym_LT_LT_EQ] = ACTIONS(6793), + [anon_sym_GT_GT_EQ] = ACTIONS(6793), + [anon_sym_AMP_EQ] = ACTIONS(6793), + [anon_sym_CARET_EQ] = ACTIONS(6793), + [anon_sym_PIPE_EQ] = ACTIONS(6793), + [anon_sym_and_eq] = ACTIONS(6791), + [anon_sym_or_eq] = ACTIONS(6791), + [anon_sym_xor_eq] = ACTIONS(6791), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_COLON_RBRACK] = ACTIONS(6793), }, [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(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_RPAREN] = ACTIONS(6813), + [aux_sym_preproc_if_token2] = ACTIONS(6813), + [aux_sym_preproc_else_token1] = ACTIONS(6813), + [aux_sym_preproc_elif_token1] = ACTIONS(6811), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6813), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6811), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6811), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6811), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6811), + [anon_sym_GT_GT] = ACTIONS(6811), + [anon_sym_SEMI] = ACTIONS(6813), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_RBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6813), + [anon_sym_EQ] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_STAR_EQ] = ACTIONS(6813), + [anon_sym_SLASH_EQ] = ACTIONS(6813), + [anon_sym_PERCENT_EQ] = ACTIONS(6813), + [anon_sym_PLUS_EQ] = ACTIONS(6813), + [anon_sym_DASH_EQ] = ACTIONS(6813), + [anon_sym_LT_LT_EQ] = ACTIONS(6813), + [anon_sym_GT_GT_EQ] = ACTIONS(6813), + [anon_sym_AMP_EQ] = ACTIONS(6813), + [anon_sym_CARET_EQ] = ACTIONS(6813), + [anon_sym_PIPE_EQ] = ACTIONS(6813), + [anon_sym_and_eq] = ACTIONS(6811), + [anon_sym_or_eq] = ACTIONS(6811), + [anon_sym_xor_eq] = ACTIONS(6811), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_COLON_RBRACK] = ACTIONS(6813), }, [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_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym__function_attributes_end] = STATE(4900), + [sym__function_postfix] = STATE(5572), + [sym_trailing_return_type] = STATE(4998), + [sym_requires_clause] = STATE(5572), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7621), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7621), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8792), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6923), + [anon_sym_override] = ACTIONS(6923), + [anon_sym_GT2] = ACTIONS(7623), + [anon_sym_requires] = ACTIONS(6929), }, [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_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym__function_attributes_end] = STATE(4846), + [sym__function_postfix] = STATE(5746), + [sym_trailing_return_type] = STATE(4955), + [sym_requires_clause] = STATE(5746), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_RBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8640), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8679), + [anon_sym_override] = ACTIONS(8679), + [anon_sym_requires] = ACTIONS(8682), }, [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_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym__function_attributes_end] = STATE(4847), + [sym__function_postfix] = STATE(5771), + [sym_trailing_return_type] = STATE(4960), + [sym_requires_clause] = STATE(5771), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_RBRACK] = ACTIONS(7623), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8737), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8816), + [anon_sym_override] = ACTIONS(8816), + [anon_sym_requires] = ACTIONS(8819), }, [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_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym__function_attributes_end] = STATE(4848), + [sym__function_postfix] = STATE(5778), + [sym_trailing_return_type] = STATE(4961), + [sym_requires_clause] = STATE(5778), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_RBRACK] = ACTIONS(8287), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8287), + [anon_sym_or_eq] = ACTIONS(8287), + [anon_sym_xor_eq] = ACTIONS(8287), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8287), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8287), + [anon_sym_not_eq] = ACTIONS(8287), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(9304), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9307), + [anon_sym_override] = ACTIONS(9307), + [anon_sym_requires] = ACTIONS(9310), }, [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(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___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), }, [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_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___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), }, [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_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(4620), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3439), + [sym_requires_clause] = STATE(3849), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(8658), + [anon_sym___attribute] = ACTIONS(8661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7474), + [anon_sym_or_eq] = ACTIONS(7474), + [anon_sym_xor_eq] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8685), + [anon_sym_override] = ACTIONS(8685), + [anon_sym_requires] = ACTIONS(8688), }, [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_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3975), + [sym_requires_clause] = STATE(3975), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(7621), + [anon_sym___attribute] = ACTIONS(7621), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7623), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7621), + [anon_sym_or_eq] = ACTIONS(7621), + [anon_sym_xor_eq] = ACTIONS(7621), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(7623), [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), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), }, [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_attribute_specifier] = STATE(4579), + [sym_attribute_declaration] = STATE(5078), + [sym_gnu_asm_expression] = STATE(10222), + [sym_virtual_specifier] = STATE(5151), + [sym__function_attributes_end] = STATE(4901), + [sym__function_postfix] = STATE(5594), + [sym_trailing_return_type] = STATE(4999), + [sym_requires_clause] = STATE(5594), + [aux_sym_type_definition_repeat1] = STATE(4579), + [aux_sym_attributed_declarator_repeat1] = STATE(5078), + [aux_sym__function_postfix_repeat1] = STATE(5151), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8285), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(6910), + [anon_sym___attribute] = ACTIONS(6912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6914), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8285), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8287), + [anon_sym_or_eq] = ACTIONS(8287), + [anon_sym_xor_eq] = ACTIONS(8287), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8287), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8287), + [anon_sym_not_eq] = ACTIONS(8287), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(9283), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6923), + [anon_sym_override] = ACTIONS(6923), + [anon_sym_GT2] = ACTIONS(8287), + [anon_sym_requires] = ACTIONS(6929), }, [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_argument_list] = STATE(4288), + [sym_initializer_list] = STATE(6698), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7363), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(4621), + [sym__function_postfix] = STATE(3975), + [sym_trailing_return_type] = STATE(3444), + [sym_requires_clause] = STATE(3975), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(8722), + [anon_sym___attribute] = ACTIONS(8725), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7623), + [anon_sym_or_eq] = ACTIONS(7623), + [anon_sym_xor_eq] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7623), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7623), + [anon_sym_not_eq] = ACTIONS(7623), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8728), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8731), + [anon_sym_override] = ACTIONS(8731), + [anon_sym_requires] = ACTIONS(8734), }, [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(9313), + [anon_sym_LPAREN2] = ACTIONS(9315), + [anon_sym_TILDE] = ACTIONS(9315), + [anon_sym_STAR] = ACTIONS(9315), + [anon_sym_PIPE_PIPE] = ACTIONS(9315), + [anon_sym_AMP_AMP] = ACTIONS(9315), + [anon_sym_AMP] = ACTIONS(9313), + [anon_sym___extension__] = ACTIONS(9313), + [anon_sym_virtual] = ACTIONS(9313), + [anon_sym_extern] = ACTIONS(9313), + [anon_sym___attribute__] = ACTIONS(9313), + [anon_sym___attribute] = ACTIONS(9313), + [anon_sym_using] = ACTIONS(9313), + [anon_sym_COLON_COLON] = ACTIONS(9315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9315), + [anon_sym___declspec] = ACTIONS(9313), + [anon_sym___based] = ACTIONS(9313), + [anon_sym___cdecl] = ACTIONS(9313), + [anon_sym___clrcall] = ACTIONS(9313), + [anon_sym___stdcall] = ACTIONS(9313), + [anon_sym___fastcall] = ACTIONS(9313), + [anon_sym___thiscall] = ACTIONS(9313), + [anon_sym___vectorcall] = ACTIONS(9313), + [anon_sym_LBRACE] = ACTIONS(9315), + [anon_sym_signed] = ACTIONS(9313), + [anon_sym_unsigned] = ACTIONS(9313), + [anon_sym_long] = ACTIONS(9313), + [anon_sym_short] = ACTIONS(9313), + [anon_sym_LBRACK] = ACTIONS(9313), + [anon_sym_static] = ACTIONS(9313), + [anon_sym_register] = ACTIONS(9313), + [anon_sym_inline] = ACTIONS(9313), + [anon_sym___inline] = ACTIONS(9313), + [anon_sym___inline__] = ACTIONS(9313), + [anon_sym___forceinline] = ACTIONS(9313), + [anon_sym_thread_local] = ACTIONS(9313), + [anon_sym___thread] = ACTIONS(9313), + [anon_sym_const] = ACTIONS(9313), + [anon_sym_constexpr] = ACTIONS(9313), + [anon_sym_volatile] = ACTIONS(9313), + [anon_sym_restrict] = ACTIONS(9313), + [anon_sym___restrict__] = ACTIONS(9313), + [anon_sym__Atomic] = ACTIONS(9313), + [anon_sym__Noreturn] = ACTIONS(9313), + [anon_sym_noreturn] = ACTIONS(9313), + [anon_sym__Nonnull] = ACTIONS(9313), + [anon_sym_mutable] = ACTIONS(9313), + [anon_sym_constinit] = ACTIONS(9313), + [anon_sym_consteval] = ACTIONS(9313), + [anon_sym_alignas] = ACTIONS(9313), + [anon_sym__Alignas] = ACTIONS(9313), + [sym_primitive_type] = ACTIONS(9313), + [anon_sym_enum] = ACTIONS(9313), + [anon_sym_class] = ACTIONS(9313), + [anon_sym_struct] = ACTIONS(9313), + [anon_sym_union] = ACTIONS(9313), + [anon_sym_or] = ACTIONS(9313), + [anon_sym_and] = ACTIONS(9313), + [anon_sym_typename] = ACTIONS(9313), + [anon_sym_DASH_GT] = ACTIONS(9315), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9313), + [anon_sym_decltype] = ACTIONS(9313), + [anon_sym_explicit] = ACTIONS(9313), + [anon_sym_template] = ACTIONS(9313), + [anon_sym_operator] = ACTIONS(9313), + [anon_sym_friend] = ACTIONS(9313), + [anon_sym_noexcept] = ACTIONS(9313), + [anon_sym_throw] = ACTIONS(9313), + [anon_sym_concept] = ACTIONS(9313), + [anon_sym_LBRACK_COLON] = ACTIONS(9315), }, [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_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3849), + [sym_requires_clause] = STATE(3849), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7472), + [anon_sym___attribute] = ACTIONS(7472), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7474), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7485), + [anon_sym_override] = ACTIONS(7485), + [anon_sym_requires] = ACTIONS(7488), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), }, [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_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(7129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [anon_sym_RPAREN] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_TILDE] = ACTIONS(7131), + [anon_sym_STAR] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(9317), + [anon_sym_SEMI] = ACTIONS(7131), + [anon_sym___extension__] = ACTIONS(7129), + [anon_sym_virtual] = ACTIONS(7129), + [anon_sym_extern] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7129), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7131), + [anon_sym___declspec] = ACTIONS(7129), + [anon_sym___based] = ACTIONS(7129), + [anon_sym___cdecl] = ACTIONS(7129), + [anon_sym___clrcall] = ACTIONS(7129), + [anon_sym___stdcall] = ACTIONS(7129), + [anon_sym___fastcall] = ACTIONS(7129), + [anon_sym___thiscall] = ACTIONS(7129), + [anon_sym___vectorcall] = ACTIONS(7129), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_static] = ACTIONS(7129), + [anon_sym_EQ] = ACTIONS(7131), + [anon_sym_register] = ACTIONS(7129), + [anon_sym_inline] = ACTIONS(7129), + [anon_sym___inline] = ACTIONS(7129), + [anon_sym___inline__] = ACTIONS(7129), + [anon_sym___forceinline] = ACTIONS(7129), + [anon_sym_thread_local] = ACTIONS(7129), + [anon_sym___thread] = ACTIONS(7129), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_restrict] = ACTIONS(7129), + [anon_sym___restrict__] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [anon_sym__Noreturn] = ACTIONS(7129), + [anon_sym_noreturn] = ACTIONS(7129), + [anon_sym__Nonnull] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [anon_sym_constinit] = ACTIONS(7129), + [anon_sym_consteval] = ACTIONS(7129), + [anon_sym_alignas] = ACTIONS(7129), + [anon_sym__Alignas] = ACTIONS(7129), + [anon_sym_asm] = ACTIONS(7129), + [anon_sym___asm__] = ACTIONS(7129), + [anon_sym___asm] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7129), + [anon_sym_final] = ACTIONS(7129), + [anon_sym_override] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_GT2] = ACTIONS(7131), + [anon_sym_operator] = ACTIONS(7129), + [anon_sym_try] = ACTIONS(7129), + [anon_sym_requires] = ACTIONS(7129), + [anon_sym_LBRACK_COLON] = ACTIONS(7131), }, [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_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3975), + [sym_requires_clause] = STATE(3975), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(7621), + [anon_sym___attribute] = ACTIONS(7621), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7623), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7621), + [anon_sym_or_eq] = ACTIONS(7621), + [anon_sym_xor_eq] = ACTIONS(7621), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(7623), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7628), + [anon_sym_override] = ACTIONS(7628), + [anon_sym_requires] = ACTIONS(7631), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), }, [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(9319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9321), + [anon_sym_COMMA] = ACTIONS(9321), + [anon_sym_RPAREN] = ACTIONS(9321), + [aux_sym_preproc_if_token2] = ACTIONS(9321), + [aux_sym_preproc_else_token1] = ACTIONS(9321), + [aux_sym_preproc_elif_token1] = ACTIONS(9319), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9321), + [anon_sym_LPAREN2] = ACTIONS(9321), + [anon_sym_DASH] = ACTIONS(9319), + [anon_sym_PLUS] = ACTIONS(9319), + [anon_sym_STAR] = ACTIONS(9319), + [anon_sym_SLASH] = ACTIONS(9319), + [anon_sym_PERCENT] = ACTIONS(9319), + [anon_sym_PIPE_PIPE] = ACTIONS(9321), + [anon_sym_AMP_AMP] = ACTIONS(9321), + [anon_sym_PIPE] = ACTIONS(9319), + [anon_sym_CARET] = ACTIONS(9319), + [anon_sym_AMP] = ACTIONS(9319), + [anon_sym_EQ_EQ] = ACTIONS(9321), + [anon_sym_BANG_EQ] = ACTIONS(9321), + [anon_sym_GT] = ACTIONS(9319), + [anon_sym_GT_EQ] = ACTIONS(9321), + [anon_sym_LT_EQ] = ACTIONS(9319), + [anon_sym_LT] = ACTIONS(9319), + [anon_sym_LT_LT] = ACTIONS(9319), + [anon_sym_GT_GT] = ACTIONS(9319), + [anon_sym_SEMI] = ACTIONS(9321), + [anon_sym___attribute__] = ACTIONS(9319), + [anon_sym___attribute] = ACTIONS(9319), + [anon_sym_COLON] = ACTIONS(9319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9321), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9321), + [anon_sym_RBRACE] = ACTIONS(9321), + [anon_sym_LBRACK] = ACTIONS(9319), + [anon_sym_EQ] = ACTIONS(9319), + [anon_sym_QMARK] = ACTIONS(9321), + [anon_sym_STAR_EQ] = ACTIONS(9321), + [anon_sym_SLASH_EQ] = ACTIONS(9321), + [anon_sym_PERCENT_EQ] = ACTIONS(9321), + [anon_sym_PLUS_EQ] = ACTIONS(9321), + [anon_sym_DASH_EQ] = ACTIONS(9321), + [anon_sym_LT_LT_EQ] = ACTIONS(9321), + [anon_sym_GT_GT_EQ] = ACTIONS(9321), + [anon_sym_AMP_EQ] = ACTIONS(9321), + [anon_sym_CARET_EQ] = ACTIONS(9321), + [anon_sym_PIPE_EQ] = ACTIONS(9321), + [anon_sym_and_eq] = ACTIONS(9319), + [anon_sym_or_eq] = ACTIONS(9319), + [anon_sym_xor_eq] = ACTIONS(9319), + [anon_sym_LT_EQ_GT] = ACTIONS(9321), + [anon_sym_or] = ACTIONS(9319), + [anon_sym_and] = ACTIONS(9319), + [anon_sym_bitor] = ACTIONS(9319), + [anon_sym_xor] = ACTIONS(9319), + [anon_sym_bitand] = ACTIONS(9319), + [anon_sym_not_eq] = ACTIONS(9319), + [anon_sym_DASH_DASH] = ACTIONS(9321), + [anon_sym_PLUS_PLUS] = ACTIONS(9321), + [anon_sym_asm] = ACTIONS(9319), + [anon_sym___asm__] = ACTIONS(9319), + [anon_sym___asm] = ACTIONS(9319), + [anon_sym_DOT] = ACTIONS(9319), + [anon_sym_DOT_STAR] = ACTIONS(9321), + [anon_sym_DASH_GT] = ACTIONS(9321), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9319), + [anon_sym_override] = ACTIONS(9319), + [anon_sym_requires] = ACTIONS(9319), + [anon_sym_COLON_RBRACK] = ACTIONS(9321), }, [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_attribute_specifier] = STATE(3362), + [sym_attribute_declaration] = STATE(3515), + [sym_gnu_asm_expression] = STATE(10282), + [sym_virtual_specifier] = STATE(3628), + [sym__function_attributes_end] = STATE(4622), + [sym__function_postfix] = STATE(3850), + [sym_trailing_return_type] = STATE(3449), + [sym_requires_clause] = STATE(3850), + [aux_sym_type_definition_repeat1] = STATE(3362), + [aux_sym_attributed_declarator_repeat1] = STATE(3515), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym___attribute__] = ACTIONS(9244), + [anon_sym___attribute] = ACTIONS(9247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8287), + [anon_sym_or_eq] = ACTIONS(8287), + [anon_sym_xor_eq] = ACTIONS(8287), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8287), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8287), + [anon_sym_not_eq] = ACTIONS(8287), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(9250), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9323), + [anon_sym_override] = ACTIONS(9323), + [anon_sym_requires] = ACTIONS(9326), }, [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_attribute_specifier] = STATE(4605), + [sym_attribute_declaration] = STATE(5053), + [sym_gnu_asm_expression] = STATE(10238), + [sym_virtual_specifier] = STATE(5136), + [sym__function_attributes_end] = STATE(4917), + [sym__function_postfix] = STATE(5778), + [sym_trailing_return_type] = STATE(5021), + [sym_requires_clause] = STATE(5778), + [aux_sym_type_definition_repeat1] = STATE(4605), + [aux_sym_attributed_declarator_repeat1] = STATE(5053), + [aux_sym__function_postfix_repeat1] = STATE(5136), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(6997), + [anon_sym___attribute] = ACTIONS(6999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7001), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_RBRACK] = ACTIONS(8287), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8287), + [anon_sym_or_eq] = ACTIONS(8287), + [anon_sym_xor_eq] = ACTIONS(8287), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8287), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8287), + [anon_sym_not_eq] = ACTIONS(8287), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(9304), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7043), + [anon_sym_override] = ACTIONS(7043), + [anon_sym_requires] = ACTIONS(7045), }, [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), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7447), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7447), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7442), + [anon_sym_LT_LT] = ACTIONS(7447), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym_SEMI] = ACTIONS(7447), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7447), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7447), + [anon_sym___based] = ACTIONS(7442), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7447), + [anon_sym_signed] = ACTIONS(7442), + [anon_sym_unsigned] = ACTIONS(7442), + [anon_sym_long] = ACTIONS(7442), + [anon_sym_short] = ACTIONS(7442), + [anon_sym_LBRACK] = ACTIONS(7447), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [sym_primitive_type] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_COLON_RBRACK] = ACTIONS(7447), }, [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3850), + [sym_requires_clause] = STATE(3850), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(8285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [aux_sym_preproc_if_token2] = ACTIONS(8287), + [aux_sym_preproc_else_token1] = ACTIONS(8287), + [aux_sym_preproc_elif_token1] = ACTIONS(8285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8287), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym___attribute__] = ACTIONS(8285), + [anon_sym___attribute] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8287), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_LBRACK] = ACTIONS(8287), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8285), + [anon_sym_or_eq] = ACTIONS(8285), + [anon_sym_xor_eq] = ACTIONS(8285), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8285), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8285), + [anon_sym_not_eq] = ACTIONS(8285), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(8287), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8296), + [anon_sym_override] = ACTIONS(8296), + [anon_sym_requires] = ACTIONS(8299), + [anon_sym_COLON_RBRACK] = ACTIONS(8287), }, [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), + [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(9331), + [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_LBRACE] = ACTIONS(9331), + [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(9329), + [anon_sym_typename] = ACTIONS(9329), + [anon_sym_DASH_GT] = ACTIONS(9331), + [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_noexcept] = ACTIONS(9329), + [anon_sym_throw] = ACTIONS(9329), + [anon_sym_concept] = ACTIONS(9329), + [anon_sym_LBRACK_COLON] = ACTIONS(9331), }, [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), + [sym_identifier] = ACTIONS(7495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7497), + [anon_sym_COMMA] = ACTIONS(7497), + [anon_sym_RPAREN] = ACTIONS(7497), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_TILDE] = ACTIONS(7497), + [anon_sym_STAR] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym_SEMI] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym_virtual] = ACTIONS(7495), + [anon_sym_extern] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7497), + [anon_sym___declspec] = ACTIONS(7495), + [anon_sym___based] = ACTIONS(7495), + [anon_sym___cdecl] = ACTIONS(7495), + [anon_sym___clrcall] = ACTIONS(7495), + [anon_sym___stdcall] = ACTIONS(7495), + [anon_sym___fastcall] = ACTIONS(7495), + [anon_sym___thiscall] = ACTIONS(7495), + [anon_sym___vectorcall] = ACTIONS(7495), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_static] = ACTIONS(7495), + [anon_sym_EQ] = ACTIONS(7497), + [anon_sym_register] = ACTIONS(7495), + [anon_sym_inline] = ACTIONS(7495), + [anon_sym___inline] = ACTIONS(7495), + [anon_sym___inline__] = ACTIONS(7495), + [anon_sym___forceinline] = ACTIONS(7495), + [anon_sym_thread_local] = ACTIONS(7495), + [anon_sym___thread] = 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_or] = ACTIONS(7495), + [anon_sym_and] = ACTIONS(7495), + [anon_sym_asm] = ACTIONS(7495), + [anon_sym___asm__] = ACTIONS(7495), + [anon_sym___asm] = ACTIONS(7495), + [anon_sym_DASH_GT] = ACTIONS(7497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_GT2] = ACTIONS(7497), + [anon_sym_operator] = ACTIONS(7495), + [anon_sym_try] = ACTIONS(7495), + [anon_sym_noexcept] = ACTIONS(7495), + [anon_sym_throw] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [sym_identifier] = ACTIONS(5671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [aux_sym_preproc_if_token2] = ACTIONS(5663), + [aux_sym_preproc_else_token1] = ACTIONS(5663), + [aux_sym_preproc_elif_token1] = ACTIONS(5671), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5663), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9333), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(6954), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(6956), + [anon_sym_SLASH_EQ] = ACTIONS(6956), + [anon_sym_PERCENT_EQ] = ACTIONS(6956), + [anon_sym_PLUS_EQ] = ACTIONS(6956), + [anon_sym_DASH_EQ] = ACTIONS(6956), + [anon_sym_LT_LT_EQ] = ACTIONS(6956), + [anon_sym_GT_GT_EQ] = ACTIONS(6956), + [anon_sym_AMP_EQ] = ACTIONS(6956), + [anon_sym_CARET_EQ] = ACTIONS(6956), + [anon_sym_PIPE_EQ] = ACTIONS(6956), + [anon_sym_and_eq] = ACTIONS(6954), + [anon_sym_or_eq] = ACTIONS(6954), + [anon_sym_xor_eq] = ACTIONS(6954), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), }, [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3849), + [sym_requires_clause] = STATE(3849), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7472), + [anon_sym___attribute] = ACTIONS(7472), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7474), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), }, [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3905), + [sym_requires_clause] = STATE(3905), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(9336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9338), + [anon_sym_COMMA] = ACTIONS(9338), + [anon_sym_RPAREN] = ACTIONS(9338), + [aux_sym_preproc_if_token2] = ACTIONS(9338), + [aux_sym_preproc_else_token1] = ACTIONS(9338), + [aux_sym_preproc_elif_token1] = ACTIONS(9336), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9338), + [anon_sym_LPAREN2] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9336), + [anon_sym_STAR] = ACTIONS(9336), + [anon_sym_SLASH] = ACTIONS(9336), + [anon_sym_PERCENT] = ACTIONS(9336), + [anon_sym_PIPE_PIPE] = ACTIONS(9338), + [anon_sym_AMP_AMP] = ACTIONS(9338), + [anon_sym_PIPE] = ACTIONS(9336), + [anon_sym_CARET] = ACTIONS(9336), + [anon_sym_AMP] = ACTIONS(9336), + [anon_sym_EQ_EQ] = ACTIONS(9338), + [anon_sym_BANG_EQ] = ACTIONS(9338), + [anon_sym_GT] = ACTIONS(9336), + [anon_sym_GT_EQ] = ACTIONS(9338), + [anon_sym_LT_EQ] = ACTIONS(9336), + [anon_sym_LT] = ACTIONS(9336), + [anon_sym_LT_LT] = ACTIONS(9336), + [anon_sym_GT_GT] = ACTIONS(9336), + [anon_sym_SEMI] = ACTIONS(9338), + [anon_sym___attribute__] = ACTIONS(9336), + [anon_sym___attribute] = ACTIONS(9336), + [anon_sym_COLON] = ACTIONS(9336), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9338), + [anon_sym_RBRACE] = ACTIONS(9338), + [anon_sym_LBRACK] = ACTIONS(9338), + [anon_sym_EQ] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [anon_sym_STAR_EQ] = ACTIONS(9338), + [anon_sym_SLASH_EQ] = ACTIONS(9338), + [anon_sym_PERCENT_EQ] = ACTIONS(9338), + [anon_sym_PLUS_EQ] = ACTIONS(9338), + [anon_sym_DASH_EQ] = ACTIONS(9338), + [anon_sym_LT_LT_EQ] = ACTIONS(9338), + [anon_sym_GT_GT_EQ] = ACTIONS(9338), + [anon_sym_AMP_EQ] = ACTIONS(9338), + [anon_sym_CARET_EQ] = ACTIONS(9338), + [anon_sym_PIPE_EQ] = ACTIONS(9338), + [anon_sym_and_eq] = ACTIONS(9336), + [anon_sym_or_eq] = ACTIONS(9336), + [anon_sym_xor_eq] = ACTIONS(9336), + [anon_sym_LT_EQ_GT] = ACTIONS(9338), + [anon_sym_or] = ACTIONS(9336), + [anon_sym_and] = ACTIONS(9336), + [anon_sym_bitor] = ACTIONS(9336), + [anon_sym_xor] = ACTIONS(9336), + [anon_sym_bitand] = ACTIONS(9336), + [anon_sym_not_eq] = ACTIONS(9336), + [anon_sym_DASH_DASH] = ACTIONS(9338), + [anon_sym_PLUS_PLUS] = ACTIONS(9338), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_DOT_STAR] = ACTIONS(9338), + [anon_sym_DASH_GT] = ACTIONS(9338), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9340), + [anon_sym_override] = ACTIONS(9340), + [anon_sym_requires] = ACTIONS(9343), + [anon_sym_COLON_RBRACK] = ACTIONS(9338), }, [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3907), + [sym_requires_clause] = STATE(3907), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(9267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9269), + [anon_sym_COMMA] = ACTIONS(9269), + [anon_sym_RPAREN] = ACTIONS(9269), + [aux_sym_preproc_if_token2] = ACTIONS(9269), + [aux_sym_preproc_else_token1] = ACTIONS(9269), + [aux_sym_preproc_elif_token1] = ACTIONS(9267), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9269), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9269), + [anon_sym_LPAREN2] = ACTIONS(9269), + [anon_sym_DASH] = ACTIONS(9267), + [anon_sym_PLUS] = ACTIONS(9267), + [anon_sym_STAR] = ACTIONS(9267), + [anon_sym_SLASH] = ACTIONS(9267), + [anon_sym_PERCENT] = ACTIONS(9267), + [anon_sym_PIPE_PIPE] = ACTIONS(9269), + [anon_sym_AMP_AMP] = ACTIONS(9269), + [anon_sym_PIPE] = ACTIONS(9267), + [anon_sym_CARET] = ACTIONS(9267), + [anon_sym_AMP] = ACTIONS(9267), + [anon_sym_EQ_EQ] = ACTIONS(9269), + [anon_sym_BANG_EQ] = ACTIONS(9269), + [anon_sym_GT] = ACTIONS(9267), + [anon_sym_GT_EQ] = ACTIONS(9269), + [anon_sym_LT_EQ] = ACTIONS(9267), + [anon_sym_LT] = ACTIONS(9267), + [anon_sym_LT_LT] = ACTIONS(9267), + [anon_sym_GT_GT] = ACTIONS(9267), + [anon_sym_SEMI] = ACTIONS(9269), + [anon_sym___attribute__] = ACTIONS(9267), + [anon_sym___attribute] = ACTIONS(9267), + [anon_sym_COLON] = ACTIONS(9267), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9269), + [anon_sym_RBRACE] = ACTIONS(9269), + [anon_sym_LBRACK] = ACTIONS(9269), + [anon_sym_EQ] = ACTIONS(9267), + [anon_sym_QMARK] = ACTIONS(9269), + [anon_sym_STAR_EQ] = ACTIONS(9269), + [anon_sym_SLASH_EQ] = ACTIONS(9269), + [anon_sym_PERCENT_EQ] = ACTIONS(9269), + [anon_sym_PLUS_EQ] = ACTIONS(9269), + [anon_sym_DASH_EQ] = ACTIONS(9269), + [anon_sym_LT_LT_EQ] = ACTIONS(9269), + [anon_sym_GT_GT_EQ] = ACTIONS(9269), + [anon_sym_AMP_EQ] = ACTIONS(9269), + [anon_sym_CARET_EQ] = ACTIONS(9269), + [anon_sym_PIPE_EQ] = ACTIONS(9269), + [anon_sym_and_eq] = ACTIONS(9267), + [anon_sym_or_eq] = ACTIONS(9267), + [anon_sym_xor_eq] = ACTIONS(9267), + [anon_sym_LT_EQ_GT] = ACTIONS(9269), + [anon_sym_or] = ACTIONS(9267), + [anon_sym_and] = ACTIONS(9267), + [anon_sym_bitor] = ACTIONS(9267), + [anon_sym_xor] = ACTIONS(9267), + [anon_sym_bitand] = ACTIONS(9267), + [anon_sym_not_eq] = ACTIONS(9267), + [anon_sym_DASH_DASH] = ACTIONS(9269), + [anon_sym_PLUS_PLUS] = ACTIONS(9269), + [anon_sym_DOT] = ACTIONS(9267), + [anon_sym_DOT_STAR] = ACTIONS(9269), + [anon_sym_DASH_GT] = ACTIONS(9269), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9346), + [anon_sym_override] = ACTIONS(9346), + [anon_sym_requires] = ACTIONS(9349), + [anon_sym_COLON_RBRACK] = ACTIONS(9269), }, [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), + [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(9331), + [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_LBRACE] = ACTIONS(9331), + [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(9329), + [anon_sym_typename] = ACTIONS(9329), + [anon_sym_DASH_GT] = ACTIONS(9331), + [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_noexcept] = ACTIONS(9329), + [anon_sym_throw] = ACTIONS(9329), + [anon_sym_concept] = ACTIONS(9329), + [anon_sym_LBRACK_COLON] = ACTIONS(9331), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_TILDE] = ACTIONS(6822), + [anon_sym_STAR] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_virtual] = ACTIONS(6815), + [anon_sym_extern] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6822), + [anon_sym___declspec] = ACTIONS(6815), + [anon_sym___based] = ACTIONS(6815), + [anon_sym___cdecl] = ACTIONS(6815), + [anon_sym___clrcall] = ACTIONS(6815), + [anon_sym___stdcall] = ACTIONS(6815), + [anon_sym___fastcall] = ACTIONS(6815), + [anon_sym___thiscall] = ACTIONS(6815), + [anon_sym___vectorcall] = ACTIONS(6815), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6815), + [anon_sym_static] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6822), + [anon_sym_register] = ACTIONS(6815), + [anon_sym_inline] = ACTIONS(6815), + [anon_sym___inline] = ACTIONS(6815), + [anon_sym___inline__] = ACTIONS(6815), + [anon_sym___forceinline] = ACTIONS(6815), + [anon_sym_thread_local] = ACTIONS(6815), + [anon_sym___thread] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_asm] = ACTIONS(6815), + [anon_sym___asm__] = ACTIONS(6815), + [anon_sym___asm] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_GT2] = ACTIONS(6822), + [anon_sym_operator] = ACTIONS(6815), + [anon_sym_try] = ACTIONS(6815), + [anon_sym_noexcept] = ACTIONS(6815), + [anon_sym_throw] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), }, [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), + [sym_identifier] = ACTIONS(7495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7497), + [anon_sym_COMMA] = ACTIONS(7497), + [anon_sym_RPAREN] = ACTIONS(7497), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_TILDE] = ACTIONS(7497), + [anon_sym_STAR] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym_SEMI] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym_virtual] = ACTIONS(7495), + [anon_sym_extern] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7497), + [anon_sym___declspec] = ACTIONS(7495), + [anon_sym___based] = ACTIONS(7495), + [anon_sym___cdecl] = ACTIONS(7495), + [anon_sym___clrcall] = ACTIONS(7495), + [anon_sym___stdcall] = ACTIONS(7495), + [anon_sym___fastcall] = ACTIONS(7495), + [anon_sym___thiscall] = ACTIONS(7495), + [anon_sym___vectorcall] = ACTIONS(7495), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_static] = ACTIONS(7495), + [anon_sym_EQ] = ACTIONS(7497), + [anon_sym_register] = ACTIONS(7495), + [anon_sym_inline] = ACTIONS(7495), + [anon_sym___inline] = ACTIONS(7495), + [anon_sym___inline__] = ACTIONS(7495), + [anon_sym___forceinline] = ACTIONS(7495), + [anon_sym_thread_local] = ACTIONS(7495), + [anon_sym___thread] = 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_or] = ACTIONS(7495), + [anon_sym_and] = ACTIONS(7495), + [anon_sym_asm] = ACTIONS(7495), + [anon_sym___asm__] = ACTIONS(7495), + [anon_sym___asm] = ACTIONS(7495), + [anon_sym_DASH_GT] = ACTIONS(7497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_GT2] = ACTIONS(7497), + [anon_sym_operator] = ACTIONS(7495), + [anon_sym_try] = ACTIONS(7495), + [anon_sym_noexcept] = ACTIONS(7495), + [anon_sym_throw] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), + [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(9331), + [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_LBRACE] = ACTIONS(9331), + [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(9329), + [anon_sym_typename] = ACTIONS(9329), + [anon_sym_DASH_GT] = ACTIONS(9331), + [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_noexcept] = ACTIONS(9329), + [anon_sym_throw] = ACTIONS(9329), + [anon_sym_concept] = ACTIONS(9329), + [anon_sym_LBRACK_COLON] = ACTIONS(9331), }, [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), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [aux_sym_preproc_if_token2] = ACTIONS(7261), + [aux_sym_preproc_else_token1] = ACTIONS(7261), + [aux_sym_preproc_elif_token1] = ACTIONS(7259), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7261), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7261), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7261), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7261), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7261), + [anon_sym_GT_GT] = ACTIONS(7261), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_RBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7261), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7261), }, [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_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [aux_sym_preproc_if_token2] = ACTIONS(3108), + [aux_sym_preproc_else_token1] = ACTIONS(3108), + [aux_sym_preproc_elif_token1] = ACTIONS(3118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3108), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3108), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3108), + [anon_sym_GT_GT] = ACTIONS(3108), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_RBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), [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), + [anon_sym_COLON_RBRACK] = ACTIONS(3108), }, [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), + [sym_identifier] = ACTIONS(9352), + [anon_sym_LPAREN2] = ACTIONS(9354), + [anon_sym_TILDE] = ACTIONS(9354), + [anon_sym_STAR] = ACTIONS(9354), + [anon_sym_PIPE_PIPE] = ACTIONS(9354), + [anon_sym_AMP_AMP] = ACTIONS(9354), + [anon_sym_AMP] = ACTIONS(9352), + [anon_sym___extension__] = ACTIONS(9352), + [anon_sym_virtual] = ACTIONS(9352), + [anon_sym_extern] = ACTIONS(9352), + [anon_sym___attribute__] = ACTIONS(9352), + [anon_sym___attribute] = ACTIONS(9352), + [anon_sym_using] = ACTIONS(9352), + [anon_sym_COLON_COLON] = ACTIONS(9354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9354), + [anon_sym___declspec] = ACTIONS(9352), + [anon_sym___based] = ACTIONS(9352), + [anon_sym___cdecl] = ACTIONS(9352), + [anon_sym___clrcall] = ACTIONS(9352), + [anon_sym___stdcall] = ACTIONS(9352), + [anon_sym___fastcall] = ACTIONS(9352), + [anon_sym___thiscall] = ACTIONS(9352), + [anon_sym___vectorcall] = ACTIONS(9352), + [anon_sym_LBRACE] = ACTIONS(9354), + [anon_sym_signed] = ACTIONS(9352), + [anon_sym_unsigned] = ACTIONS(9352), + [anon_sym_long] = ACTIONS(9352), + [anon_sym_short] = ACTIONS(9352), + [anon_sym_LBRACK] = ACTIONS(9352), + [anon_sym_static] = ACTIONS(9352), + [anon_sym_register] = ACTIONS(9352), + [anon_sym_inline] = ACTIONS(9352), + [anon_sym___inline] = ACTIONS(9352), + [anon_sym___inline__] = ACTIONS(9352), + [anon_sym___forceinline] = ACTIONS(9352), + [anon_sym_thread_local] = ACTIONS(9352), + [anon_sym___thread] = ACTIONS(9352), + [anon_sym_const] = ACTIONS(9352), + [anon_sym_constexpr] = ACTIONS(9352), + [anon_sym_volatile] = ACTIONS(9352), + [anon_sym_restrict] = ACTIONS(9352), + [anon_sym___restrict__] = ACTIONS(9352), + [anon_sym__Atomic] = ACTIONS(9352), + [anon_sym__Noreturn] = ACTIONS(9352), + [anon_sym_noreturn] = ACTIONS(9352), + [anon_sym__Nonnull] = ACTIONS(9352), + [anon_sym_mutable] = ACTIONS(9352), + [anon_sym_constinit] = ACTIONS(9352), + [anon_sym_consteval] = ACTIONS(9352), + [anon_sym_alignas] = ACTIONS(9352), + [anon_sym__Alignas] = ACTIONS(9352), + [sym_primitive_type] = ACTIONS(9352), + [anon_sym_enum] = ACTIONS(9352), + [anon_sym_class] = ACTIONS(9352), + [anon_sym_struct] = ACTIONS(9352), + [anon_sym_union] = ACTIONS(9352), + [anon_sym_or] = ACTIONS(9352), + [anon_sym_and] = ACTIONS(9352), + [anon_sym_typename] = ACTIONS(9352), + [anon_sym_DASH_GT] = ACTIONS(9354), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9352), + [anon_sym_decltype] = ACTIONS(9352), + [anon_sym_explicit] = ACTIONS(9352), + [anon_sym_template] = ACTIONS(9352), + [anon_sym_operator] = ACTIONS(9352), + [anon_sym_friend] = ACTIONS(9352), + [anon_sym_noexcept] = ACTIONS(9352), + [anon_sym_throw] = ACTIONS(9352), + [anon_sym_concept] = ACTIONS(9352), + [anon_sym_LBRACK_COLON] = ACTIONS(9354), }, [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), + [sym_identifier] = ACTIONS(7149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7151), + [anon_sym_COMMA] = ACTIONS(7151), + [anon_sym_RPAREN] = ACTIONS(7151), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_DASH] = ACTIONS(7149), + [anon_sym_PLUS] = ACTIONS(7149), + [anon_sym_STAR] = ACTIONS(7151), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7151), + [anon_sym_PIPE_PIPE] = ACTIONS(7151), + [anon_sym_AMP_AMP] = ACTIONS(7151), + [anon_sym_PIPE] = ACTIONS(7149), + [anon_sym_CARET] = ACTIONS(7151), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym_EQ_EQ] = ACTIONS(7151), + [anon_sym_BANG_EQ] = ACTIONS(7151), + [anon_sym_GT] = ACTIONS(7149), + [anon_sym_GT_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7149), + [anon_sym_LT] = ACTIONS(7149), + [anon_sym_LT_LT] = ACTIONS(7151), + [anon_sym_GT_GT] = ACTIONS(7151), + [anon_sym_SEMI] = ACTIONS(7151), + [anon_sym___extension__] = ACTIONS(7149), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_COLON] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7151), + [anon_sym___based] = ACTIONS(7149), + [anon_sym_LBRACE] = ACTIONS(7151), + [anon_sym_RBRACE] = ACTIONS(7151), + [anon_sym_signed] = ACTIONS(7149), + [anon_sym_unsigned] = ACTIONS(7149), + [anon_sym_long] = ACTIONS(7149), + [anon_sym_short] = ACTIONS(7149), + [anon_sym_LBRACK] = ACTIONS(7151), + [anon_sym_const] = ACTIONS(7149), + [anon_sym_constexpr] = ACTIONS(7149), + [anon_sym_volatile] = ACTIONS(7149), + [anon_sym_restrict] = ACTIONS(7149), + [anon_sym___restrict__] = ACTIONS(7149), + [anon_sym__Atomic] = ACTIONS(7149), + [anon_sym__Noreturn] = ACTIONS(7149), + [anon_sym_noreturn] = ACTIONS(7149), + [anon_sym__Nonnull] = ACTIONS(7149), + [anon_sym_mutable] = ACTIONS(7149), + [anon_sym_constinit] = ACTIONS(7149), + [anon_sym_consteval] = ACTIONS(7149), + [anon_sym_alignas] = ACTIONS(7149), + [anon_sym__Alignas] = ACTIONS(7149), + [sym_primitive_type] = ACTIONS(7149), + [anon_sym_QMARK] = ACTIONS(7151), + [anon_sym_LT_EQ_GT] = ACTIONS(7151), + [anon_sym_or] = ACTIONS(7149), + [anon_sym_and] = ACTIONS(7149), + [anon_sym_bitor] = ACTIONS(7149), + [anon_sym_xor] = ACTIONS(7149), + [anon_sym_bitand] = ACTIONS(7149), + [anon_sym_not_eq] = ACTIONS(7149), + [anon_sym_DASH_DASH] = ACTIONS(7151), + [anon_sym_PLUS_PLUS] = ACTIONS(7151), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_DOT_STAR] = ACTIONS(7151), + [anon_sym_DASH_GT] = ACTIONS(7151), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7149), + [anon_sym_override] = ACTIONS(7149), + [anon_sym_requires] = ACTIONS(7149), + [anon_sym_COLON_RBRACK] = ACTIONS(7151), }, [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3905), + [sym_requires_clause] = STATE(3905), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(9336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9338), + [anon_sym_COMMA] = ACTIONS(9338), + [anon_sym_RPAREN] = ACTIONS(9338), + [aux_sym_preproc_if_token2] = ACTIONS(9338), + [aux_sym_preproc_else_token1] = ACTIONS(9338), + [aux_sym_preproc_elif_token1] = ACTIONS(9336), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9338), + [anon_sym_LPAREN2] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9336), + [anon_sym_STAR] = ACTIONS(9336), + [anon_sym_SLASH] = ACTIONS(9336), + [anon_sym_PERCENT] = ACTIONS(9336), + [anon_sym_PIPE_PIPE] = ACTIONS(9338), + [anon_sym_AMP_AMP] = ACTIONS(9338), + [anon_sym_PIPE] = ACTIONS(9336), + [anon_sym_CARET] = ACTIONS(9336), + [anon_sym_AMP] = ACTIONS(9336), + [anon_sym_EQ_EQ] = ACTIONS(9338), + [anon_sym_BANG_EQ] = ACTIONS(9338), + [anon_sym_GT] = ACTIONS(9336), + [anon_sym_GT_EQ] = ACTIONS(9338), + [anon_sym_LT_EQ] = ACTIONS(9336), + [anon_sym_LT] = ACTIONS(9336), + [anon_sym_LT_LT] = ACTIONS(9336), + [anon_sym_GT_GT] = ACTIONS(9336), + [anon_sym_SEMI] = ACTIONS(9338), + [anon_sym___attribute__] = ACTIONS(9336), + [anon_sym___attribute] = ACTIONS(9336), + [anon_sym_COLON] = ACTIONS(9336), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9338), + [anon_sym_RBRACE] = ACTIONS(9338), + [anon_sym_LBRACK] = ACTIONS(9338), + [anon_sym_EQ] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [anon_sym_STAR_EQ] = ACTIONS(9338), + [anon_sym_SLASH_EQ] = ACTIONS(9338), + [anon_sym_PERCENT_EQ] = ACTIONS(9338), + [anon_sym_PLUS_EQ] = ACTIONS(9338), + [anon_sym_DASH_EQ] = ACTIONS(9338), + [anon_sym_LT_LT_EQ] = ACTIONS(9338), + [anon_sym_GT_GT_EQ] = ACTIONS(9338), + [anon_sym_AMP_EQ] = ACTIONS(9338), + [anon_sym_CARET_EQ] = ACTIONS(9338), + [anon_sym_PIPE_EQ] = ACTIONS(9338), + [anon_sym_and_eq] = ACTIONS(9336), + [anon_sym_or_eq] = ACTIONS(9336), + [anon_sym_xor_eq] = ACTIONS(9336), + [anon_sym_LT_EQ_GT] = ACTIONS(9338), + [anon_sym_or] = ACTIONS(9336), + [anon_sym_and] = ACTIONS(9336), + [anon_sym_bitor] = ACTIONS(9336), + [anon_sym_xor] = ACTIONS(9336), + [anon_sym_bitand] = ACTIONS(9336), + [anon_sym_not_eq] = ACTIONS(9336), + [anon_sym_DASH_DASH] = ACTIONS(9338), + [anon_sym_PLUS_PLUS] = ACTIONS(9338), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_DOT_STAR] = ACTIONS(9338), + [anon_sym_DASH_GT] = ACTIONS(9338), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(9338), }, [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), + [sym_identifier] = ACTIONS(9356), + [anon_sym_LPAREN2] = ACTIONS(9358), + [anon_sym_TILDE] = ACTIONS(9358), + [anon_sym_STAR] = ACTIONS(9358), + [anon_sym_PIPE_PIPE] = ACTIONS(9358), + [anon_sym_AMP_AMP] = ACTIONS(9358), + [anon_sym_AMP] = ACTIONS(9356), + [anon_sym___extension__] = ACTIONS(9356), + [anon_sym_virtual] = ACTIONS(9356), + [anon_sym_extern] = ACTIONS(9356), + [anon_sym___attribute__] = ACTIONS(9356), + [anon_sym___attribute] = ACTIONS(9356), + [anon_sym_using] = ACTIONS(9356), + [anon_sym_COLON_COLON] = ACTIONS(9358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9358), + [anon_sym___declspec] = ACTIONS(9356), + [anon_sym___based] = ACTIONS(9356), + [anon_sym___cdecl] = ACTIONS(9356), + [anon_sym___clrcall] = ACTIONS(9356), + [anon_sym___stdcall] = ACTIONS(9356), + [anon_sym___fastcall] = ACTIONS(9356), + [anon_sym___thiscall] = ACTIONS(9356), + [anon_sym___vectorcall] = ACTIONS(9356), + [anon_sym_LBRACE] = ACTIONS(9358), + [anon_sym_signed] = ACTIONS(9356), + [anon_sym_unsigned] = ACTIONS(9356), + [anon_sym_long] = ACTIONS(9356), + [anon_sym_short] = ACTIONS(9356), + [anon_sym_LBRACK] = ACTIONS(9356), + [anon_sym_static] = ACTIONS(9356), + [anon_sym_register] = ACTIONS(9356), + [anon_sym_inline] = ACTIONS(9356), + [anon_sym___inline] = ACTIONS(9356), + [anon_sym___inline__] = ACTIONS(9356), + [anon_sym___forceinline] = ACTIONS(9356), + [anon_sym_thread_local] = ACTIONS(9356), + [anon_sym___thread] = ACTIONS(9356), + [anon_sym_const] = ACTIONS(9356), + [anon_sym_constexpr] = ACTIONS(9356), + [anon_sym_volatile] = ACTIONS(9356), + [anon_sym_restrict] = ACTIONS(9356), + [anon_sym___restrict__] = ACTIONS(9356), + [anon_sym__Atomic] = ACTIONS(9356), + [anon_sym__Noreturn] = ACTIONS(9356), + [anon_sym_noreturn] = ACTIONS(9356), + [anon_sym__Nonnull] = ACTIONS(9356), + [anon_sym_mutable] = ACTIONS(9356), + [anon_sym_constinit] = ACTIONS(9356), + [anon_sym_consteval] = ACTIONS(9356), + [anon_sym_alignas] = ACTIONS(9356), + [anon_sym__Alignas] = ACTIONS(9356), + [sym_primitive_type] = ACTIONS(9356), + [anon_sym_enum] = ACTIONS(9356), + [anon_sym_class] = ACTIONS(9356), + [anon_sym_struct] = ACTIONS(9356), + [anon_sym_union] = ACTIONS(9356), + [anon_sym_or] = ACTIONS(9356), + [anon_sym_and] = ACTIONS(9356), + [anon_sym_typename] = ACTIONS(9356), + [anon_sym_DASH_GT] = ACTIONS(9358), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9356), + [anon_sym_decltype] = ACTIONS(9356), + [anon_sym_explicit] = ACTIONS(9356), + [anon_sym_template] = ACTIONS(9356), + [anon_sym_operator] = ACTIONS(9356), + [anon_sym_friend] = ACTIONS(9356), + [anon_sym_noexcept] = ACTIONS(9356), + [anon_sym_throw] = ACTIONS(9356), + [anon_sym_concept] = ACTIONS(9356), + [anon_sym_LBRACK_COLON] = ACTIONS(9358), }, [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), + [sym_identifier] = ACTIONS(9360), + [anon_sym_LPAREN2] = ACTIONS(9362), + [anon_sym_TILDE] = ACTIONS(9362), + [anon_sym_STAR] = ACTIONS(9362), + [anon_sym_PIPE_PIPE] = ACTIONS(9362), + [anon_sym_AMP_AMP] = ACTIONS(9362), + [anon_sym_AMP] = ACTIONS(9360), + [anon_sym___extension__] = ACTIONS(9360), + [anon_sym_virtual] = ACTIONS(9360), + [anon_sym_extern] = ACTIONS(9360), + [anon_sym___attribute__] = ACTIONS(9360), + [anon_sym___attribute] = ACTIONS(9360), + [anon_sym_using] = ACTIONS(9360), + [anon_sym_COLON_COLON] = ACTIONS(9362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9362), + [anon_sym___declspec] = ACTIONS(9360), + [anon_sym___based] = ACTIONS(9360), + [anon_sym___cdecl] = ACTIONS(9360), + [anon_sym___clrcall] = ACTIONS(9360), + [anon_sym___stdcall] = ACTIONS(9360), + [anon_sym___fastcall] = ACTIONS(9360), + [anon_sym___thiscall] = ACTIONS(9360), + [anon_sym___vectorcall] = ACTIONS(9360), + [anon_sym_LBRACE] = ACTIONS(9362), + [anon_sym_signed] = ACTIONS(9360), + [anon_sym_unsigned] = ACTIONS(9360), + [anon_sym_long] = ACTIONS(9360), + [anon_sym_short] = ACTIONS(9360), + [anon_sym_LBRACK] = ACTIONS(9360), + [anon_sym_static] = ACTIONS(9360), + [anon_sym_register] = ACTIONS(9360), + [anon_sym_inline] = ACTIONS(9360), + [anon_sym___inline] = ACTIONS(9360), + [anon_sym___inline__] = ACTIONS(9360), + [anon_sym___forceinline] = ACTIONS(9360), + [anon_sym_thread_local] = ACTIONS(9360), + [anon_sym___thread] = ACTIONS(9360), + [anon_sym_const] = ACTIONS(9360), + [anon_sym_constexpr] = ACTIONS(9360), + [anon_sym_volatile] = ACTIONS(9360), + [anon_sym_restrict] = ACTIONS(9360), + [anon_sym___restrict__] = ACTIONS(9360), + [anon_sym__Atomic] = ACTIONS(9360), + [anon_sym__Noreturn] = ACTIONS(9360), + [anon_sym_noreturn] = ACTIONS(9360), + [anon_sym__Nonnull] = ACTIONS(9360), + [anon_sym_mutable] = ACTIONS(9360), + [anon_sym_constinit] = ACTIONS(9360), + [anon_sym_consteval] = ACTIONS(9360), + [anon_sym_alignas] = ACTIONS(9360), + [anon_sym__Alignas] = ACTIONS(9360), + [sym_primitive_type] = ACTIONS(9360), + [anon_sym_enum] = ACTIONS(9360), + [anon_sym_class] = ACTIONS(9360), + [anon_sym_struct] = ACTIONS(9360), + [anon_sym_union] = ACTIONS(9360), + [anon_sym_or] = ACTIONS(9360), + [anon_sym_and] = ACTIONS(9360), + [anon_sym_typename] = ACTIONS(9360), + [anon_sym_DASH_GT] = ACTIONS(9362), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9360), + [anon_sym_decltype] = ACTIONS(9360), + [anon_sym_explicit] = ACTIONS(9360), + [anon_sym_template] = ACTIONS(9360), + [anon_sym_operator] = ACTIONS(9360), + [anon_sym_friend] = ACTIONS(9360), + [anon_sym_noexcept] = ACTIONS(9360), + [anon_sym_throw] = ACTIONS(9360), + [anon_sym_concept] = ACTIONS(9360), + [anon_sym_LBRACK_COLON] = ACTIONS(9362), }, [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), - [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3850), + [sym_requires_clause] = STATE(3850), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(8285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [aux_sym_preproc_if_token2] = ACTIONS(8287), + [aux_sym_preproc_else_token1] = ACTIONS(8287), + [aux_sym_preproc_elif_token1] = ACTIONS(8285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8287), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym___attribute__] = ACTIONS(8285), + [anon_sym___attribute] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8287), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_LBRACK] = ACTIONS(8287), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8285), + [anon_sym_or_eq] = ACTIONS(8285), + [anon_sym_xor_eq] = ACTIONS(8285), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8285), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8285), + [anon_sym_not_eq] = ACTIONS(8285), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(8287), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(8287), }, [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), + [sym_identifier] = ACTIONS(9364), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9366), + [anon_sym_COMMA] = ACTIONS(9366), + [anon_sym_RPAREN] = ACTIONS(9366), + [aux_sym_preproc_if_token2] = ACTIONS(9366), + [aux_sym_preproc_else_token1] = ACTIONS(9366), + [aux_sym_preproc_elif_token1] = ACTIONS(9364), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9366), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9366), + [anon_sym_LPAREN2] = ACTIONS(9366), + [anon_sym_DASH] = ACTIONS(9364), + [anon_sym_PLUS] = ACTIONS(9364), + [anon_sym_STAR] = ACTIONS(9364), + [anon_sym_SLASH] = ACTIONS(9364), + [anon_sym_PERCENT] = ACTIONS(9364), + [anon_sym_PIPE_PIPE] = ACTIONS(9366), + [anon_sym_AMP_AMP] = ACTIONS(9366), + [anon_sym_PIPE] = ACTIONS(9364), + [anon_sym_CARET] = ACTIONS(9364), + [anon_sym_AMP] = ACTIONS(9364), + [anon_sym_EQ_EQ] = ACTIONS(9366), + [anon_sym_BANG_EQ] = ACTIONS(9366), + [anon_sym_GT] = ACTIONS(9364), + [anon_sym_GT_EQ] = ACTIONS(9366), + [anon_sym_LT_EQ] = ACTIONS(9364), + [anon_sym_LT] = ACTIONS(9364), + [anon_sym_LT_LT] = ACTIONS(9364), + [anon_sym_GT_GT] = ACTIONS(9364), + [anon_sym_SEMI] = ACTIONS(9366), + [anon_sym___attribute__] = ACTIONS(9364), + [anon_sym___attribute] = ACTIONS(9364), + [anon_sym_COLON] = ACTIONS(9364), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9366), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9366), + [anon_sym_RBRACE] = ACTIONS(9366), + [anon_sym_LBRACK] = ACTIONS(9364), + [anon_sym_EQ] = ACTIONS(9364), + [anon_sym_QMARK] = ACTIONS(9366), + [anon_sym_STAR_EQ] = ACTIONS(9366), + [anon_sym_SLASH_EQ] = ACTIONS(9366), + [anon_sym_PERCENT_EQ] = ACTIONS(9366), + [anon_sym_PLUS_EQ] = ACTIONS(9366), + [anon_sym_DASH_EQ] = ACTIONS(9366), + [anon_sym_LT_LT_EQ] = ACTIONS(9366), + [anon_sym_GT_GT_EQ] = ACTIONS(9366), + [anon_sym_AMP_EQ] = ACTIONS(9366), + [anon_sym_CARET_EQ] = ACTIONS(9366), + [anon_sym_PIPE_EQ] = ACTIONS(9366), + [anon_sym_and_eq] = ACTIONS(9364), + [anon_sym_or_eq] = ACTIONS(9364), + [anon_sym_xor_eq] = ACTIONS(9364), + [anon_sym_LT_EQ_GT] = ACTIONS(9366), + [anon_sym_or] = ACTIONS(9364), + [anon_sym_and] = ACTIONS(9364), + [anon_sym_bitor] = ACTIONS(9364), + [anon_sym_xor] = ACTIONS(9364), + [anon_sym_bitand] = ACTIONS(9364), + [anon_sym_not_eq] = ACTIONS(9364), + [anon_sym_DASH_DASH] = ACTIONS(9366), + [anon_sym_PLUS_PLUS] = ACTIONS(9366), + [anon_sym_asm] = ACTIONS(9364), + [anon_sym___asm__] = ACTIONS(9364), + [anon_sym___asm] = ACTIONS(9364), + [anon_sym_DOT] = ACTIONS(9364), + [anon_sym_DOT_STAR] = ACTIONS(9366), + [anon_sym_DASH_GT] = ACTIONS(9366), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9364), + [anon_sym_override] = ACTIONS(9364), + [anon_sym_requires] = ACTIONS(9364), + [anon_sym_COLON_RBRACK] = ACTIONS(9366), }, [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), + [sym_identifier] = ACTIONS(3178), + [anon_sym_LPAREN2] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_PIPE_PIPE] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym___extension__] = 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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3176), + [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_or] = ACTIONS(3178), + [anon_sym_and] = ACTIONS(3178), + [anon_sym_typename] = ACTIONS(3178), + [anon_sym_DASH_GT] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3178), + [anon_sym_decltype] = ACTIONS(3178), + [anon_sym_explicit] = ACTIONS(3178), + [anon_sym_template] = ACTIONS(3178), + [anon_sym_operator] = ACTIONS(3178), + [anon_sym_friend] = ACTIONS(3178), + [anon_sym_noexcept] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_concept] = ACTIONS(3178), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), }, [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), + [sym_identifier] = ACTIONS(7495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7497), + [anon_sym_COMMA] = ACTIONS(7497), + [anon_sym_RPAREN] = ACTIONS(7497), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_TILDE] = ACTIONS(7497), + [anon_sym_STAR] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym_SEMI] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym_virtual] = ACTIONS(7495), + [anon_sym_extern] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7497), + [anon_sym___declspec] = ACTIONS(7495), + [anon_sym___based] = ACTIONS(7495), + [anon_sym___cdecl] = ACTIONS(7495), + [anon_sym___clrcall] = ACTIONS(7495), + [anon_sym___stdcall] = ACTIONS(7495), + [anon_sym___fastcall] = ACTIONS(7495), + [anon_sym___thiscall] = ACTIONS(7495), + [anon_sym___vectorcall] = ACTIONS(7495), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_static] = ACTIONS(7495), + [anon_sym_EQ] = ACTIONS(7497), + [anon_sym_register] = ACTIONS(7495), + [anon_sym_inline] = ACTIONS(7495), + [anon_sym___inline] = ACTIONS(7495), + [anon_sym___inline__] = ACTIONS(7495), + [anon_sym___forceinline] = ACTIONS(7495), + [anon_sym_thread_local] = ACTIONS(7495), + [anon_sym___thread] = 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_or] = ACTIONS(7495), + [anon_sym_and] = ACTIONS(7495), + [anon_sym_asm] = ACTIONS(7495), + [anon_sym___asm__] = ACTIONS(7495), + [anon_sym___asm] = ACTIONS(7495), + [anon_sym_DASH_GT] = ACTIONS(7497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_GT2] = ACTIONS(7497), + [anon_sym_operator] = ACTIONS(7495), + [anon_sym_try] = ACTIONS(7495), + [anon_sym_noexcept] = ACTIONS(7495), + [anon_sym_throw] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), }, [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), + [sym_identifier] = ACTIONS(9368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9370), + [anon_sym_COMMA] = ACTIONS(9370), + [anon_sym_RPAREN] = ACTIONS(9370), + [aux_sym_preproc_if_token2] = ACTIONS(9370), + [aux_sym_preproc_else_token1] = ACTIONS(9370), + [aux_sym_preproc_elif_token1] = ACTIONS(9368), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9370), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9370), + [anon_sym_LPAREN2] = ACTIONS(9370), + [anon_sym_DASH] = ACTIONS(9368), + [anon_sym_PLUS] = ACTIONS(9368), + [anon_sym_STAR] = ACTIONS(9368), + [anon_sym_SLASH] = ACTIONS(9368), + [anon_sym_PERCENT] = ACTIONS(9368), + [anon_sym_PIPE_PIPE] = ACTIONS(9370), + [anon_sym_AMP_AMP] = ACTIONS(9370), + [anon_sym_PIPE] = ACTIONS(9368), + [anon_sym_CARET] = ACTIONS(9368), + [anon_sym_AMP] = ACTIONS(9368), + [anon_sym_EQ_EQ] = ACTIONS(9370), + [anon_sym_BANG_EQ] = ACTIONS(9370), + [anon_sym_GT] = ACTIONS(9368), + [anon_sym_GT_EQ] = ACTIONS(9370), + [anon_sym_LT_EQ] = ACTIONS(9368), + [anon_sym_LT] = ACTIONS(9368), + [anon_sym_LT_LT] = ACTIONS(9368), + [anon_sym_GT_GT] = ACTIONS(9368), + [anon_sym_SEMI] = ACTIONS(9370), + [anon_sym___attribute__] = ACTIONS(9368), + [anon_sym___attribute] = ACTIONS(9368), + [anon_sym_COLON] = ACTIONS(9368), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9370), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9370), + [anon_sym_RBRACE] = ACTIONS(9370), + [anon_sym_LBRACK] = ACTIONS(9368), + [anon_sym_EQ] = ACTIONS(9368), + [anon_sym_QMARK] = ACTIONS(9370), + [anon_sym_STAR_EQ] = ACTIONS(9370), + [anon_sym_SLASH_EQ] = ACTIONS(9370), + [anon_sym_PERCENT_EQ] = ACTIONS(9370), + [anon_sym_PLUS_EQ] = ACTIONS(9370), + [anon_sym_DASH_EQ] = ACTIONS(9370), + [anon_sym_LT_LT_EQ] = ACTIONS(9370), + [anon_sym_GT_GT_EQ] = ACTIONS(9370), + [anon_sym_AMP_EQ] = ACTIONS(9370), + [anon_sym_CARET_EQ] = ACTIONS(9370), + [anon_sym_PIPE_EQ] = ACTIONS(9370), + [anon_sym_and_eq] = ACTIONS(9368), + [anon_sym_or_eq] = ACTIONS(9368), + [anon_sym_xor_eq] = ACTIONS(9368), + [anon_sym_LT_EQ_GT] = ACTIONS(9370), + [anon_sym_or] = ACTIONS(9368), + [anon_sym_and] = ACTIONS(9368), + [anon_sym_bitor] = ACTIONS(9368), + [anon_sym_xor] = ACTIONS(9368), + [anon_sym_bitand] = ACTIONS(9368), + [anon_sym_not_eq] = ACTIONS(9368), + [anon_sym_DASH_DASH] = ACTIONS(9370), + [anon_sym_PLUS_PLUS] = ACTIONS(9370), + [anon_sym_asm] = ACTIONS(9368), + [anon_sym___asm__] = ACTIONS(9368), + [anon_sym___asm] = ACTIONS(9368), + [anon_sym_DOT] = ACTIONS(9368), + [anon_sym_DOT_STAR] = ACTIONS(9370), + [anon_sym_DASH_GT] = ACTIONS(9370), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9368), + [anon_sym_override] = ACTIONS(9368), + [anon_sym_requires] = ACTIONS(9368), + [anon_sym_COLON_RBRACK] = ACTIONS(9370), }, [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), + [sym_identifier] = ACTIONS(9372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9374), + [anon_sym_COMMA] = ACTIONS(9374), + [anon_sym_RPAREN] = ACTIONS(9374), + [aux_sym_preproc_if_token2] = ACTIONS(9374), + [aux_sym_preproc_else_token1] = ACTIONS(9374), + [aux_sym_preproc_elif_token1] = ACTIONS(9372), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9374), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9374), + [anon_sym_LPAREN2] = ACTIONS(9376), + [anon_sym_DASH] = ACTIONS(9372), + [anon_sym_PLUS] = ACTIONS(9372), + [anon_sym_STAR] = ACTIONS(9372), + [anon_sym_SLASH] = ACTIONS(9372), + [anon_sym_PERCENT] = ACTIONS(9372), + [anon_sym_PIPE_PIPE] = ACTIONS(9374), + [anon_sym_AMP_AMP] = ACTIONS(9374), + [anon_sym_PIPE] = ACTIONS(9372), + [anon_sym_CARET] = ACTIONS(9372), + [anon_sym_AMP] = ACTIONS(9372), + [anon_sym_EQ_EQ] = ACTIONS(9374), + [anon_sym_BANG_EQ] = ACTIONS(9374), + [anon_sym_GT] = ACTIONS(9372), + [anon_sym_GT_EQ] = ACTIONS(9374), + [anon_sym_LT_EQ] = ACTIONS(9372), + [anon_sym_LT] = ACTIONS(9372), + [anon_sym_LT_LT] = ACTIONS(9372), + [anon_sym_GT_GT] = ACTIONS(9372), + [anon_sym_SEMI] = ACTIONS(9374), + [anon_sym___attribute__] = ACTIONS(9372), + [anon_sym___attribute] = ACTIONS(9372), + [anon_sym_COLON] = ACTIONS(9372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9374), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9374), + [anon_sym_RBRACE] = ACTIONS(9374), + [anon_sym_LBRACK] = ACTIONS(9372), + [anon_sym_EQ] = ACTIONS(9372), + [anon_sym_QMARK] = ACTIONS(9374), + [anon_sym_STAR_EQ] = ACTIONS(9374), + [anon_sym_SLASH_EQ] = ACTIONS(9374), + [anon_sym_PERCENT_EQ] = ACTIONS(9374), + [anon_sym_PLUS_EQ] = ACTIONS(9374), + [anon_sym_DASH_EQ] = ACTIONS(9374), + [anon_sym_LT_LT_EQ] = ACTIONS(9374), + [anon_sym_GT_GT_EQ] = ACTIONS(9374), + [anon_sym_AMP_EQ] = ACTIONS(9374), + [anon_sym_CARET_EQ] = ACTIONS(9374), + [anon_sym_PIPE_EQ] = ACTIONS(9374), + [anon_sym_and_eq] = ACTIONS(9372), + [anon_sym_or_eq] = ACTIONS(9372), + [anon_sym_xor_eq] = ACTIONS(9372), + [anon_sym_LT_EQ_GT] = ACTIONS(9374), + [anon_sym_or] = ACTIONS(9372), + [anon_sym_and] = ACTIONS(9372), + [anon_sym_bitor] = ACTIONS(9372), + [anon_sym_xor] = ACTIONS(9372), + [anon_sym_bitand] = ACTIONS(9372), + [anon_sym_not_eq] = ACTIONS(9372), + [anon_sym_DASH_DASH] = ACTIONS(9374), + [anon_sym_PLUS_PLUS] = ACTIONS(9374), + [anon_sym_asm] = ACTIONS(9372), + [anon_sym___asm__] = ACTIONS(9372), + [anon_sym___asm] = ACTIONS(9372), + [anon_sym_DOT] = ACTIONS(9372), + [anon_sym_DOT_STAR] = ACTIONS(9374), + [anon_sym_DASH_GT] = ACTIONS(9374), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9372), + [anon_sym_override] = ACTIONS(9372), + [anon_sym_requires] = ACTIONS(9372), + [anon_sym_COLON_RBRACK] = ACTIONS(9374), }, [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), + [sym_identifier] = ACTIONS(9378), + [anon_sym_LPAREN2] = ACTIONS(9380), + [anon_sym_TILDE] = ACTIONS(9380), + [anon_sym_STAR] = ACTIONS(9380), + [anon_sym_PIPE_PIPE] = ACTIONS(9380), + [anon_sym_AMP_AMP] = ACTIONS(9380), + [anon_sym_AMP] = ACTIONS(9378), + [anon_sym___extension__] = ACTIONS(9378), + [anon_sym_virtual] = ACTIONS(9378), + [anon_sym_extern] = ACTIONS(9378), + [anon_sym___attribute__] = ACTIONS(9378), + [anon_sym___attribute] = ACTIONS(9378), + [anon_sym_using] = ACTIONS(9378), + [anon_sym_COLON_COLON] = ACTIONS(9380), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9380), + [anon_sym___declspec] = ACTIONS(9378), + [anon_sym___based] = ACTIONS(9378), + [anon_sym___cdecl] = ACTIONS(9378), + [anon_sym___clrcall] = ACTIONS(9378), + [anon_sym___stdcall] = ACTIONS(9378), + [anon_sym___fastcall] = ACTIONS(9378), + [anon_sym___thiscall] = ACTIONS(9378), + [anon_sym___vectorcall] = ACTIONS(9378), + [anon_sym_LBRACE] = ACTIONS(9380), + [anon_sym_signed] = ACTIONS(9378), + [anon_sym_unsigned] = ACTIONS(9378), + [anon_sym_long] = ACTIONS(9378), + [anon_sym_short] = ACTIONS(9378), + [anon_sym_LBRACK] = ACTIONS(9378), + [anon_sym_static] = ACTIONS(9378), + [anon_sym_register] = ACTIONS(9378), + [anon_sym_inline] = ACTIONS(9378), + [anon_sym___inline] = ACTIONS(9378), + [anon_sym___inline__] = ACTIONS(9378), + [anon_sym___forceinline] = ACTIONS(9378), + [anon_sym_thread_local] = ACTIONS(9378), + [anon_sym___thread] = ACTIONS(9378), + [anon_sym_const] = ACTIONS(9378), + [anon_sym_constexpr] = ACTIONS(9378), + [anon_sym_volatile] = ACTIONS(9378), + [anon_sym_restrict] = ACTIONS(9378), + [anon_sym___restrict__] = ACTIONS(9378), + [anon_sym__Atomic] = ACTIONS(9378), + [anon_sym__Noreturn] = ACTIONS(9378), + [anon_sym_noreturn] = ACTIONS(9378), + [anon_sym__Nonnull] = ACTIONS(9378), + [anon_sym_mutable] = ACTIONS(9378), + [anon_sym_constinit] = ACTIONS(9378), + [anon_sym_consteval] = ACTIONS(9378), + [anon_sym_alignas] = ACTIONS(9378), + [anon_sym__Alignas] = ACTIONS(9378), + [sym_primitive_type] = ACTIONS(9378), + [anon_sym_enum] = ACTIONS(9378), + [anon_sym_class] = ACTIONS(9378), + [anon_sym_struct] = ACTIONS(9378), + [anon_sym_union] = ACTIONS(9378), + [anon_sym_or] = ACTIONS(9378), + [anon_sym_and] = ACTIONS(9378), + [anon_sym_typename] = ACTIONS(9378), + [anon_sym_DASH_GT] = ACTIONS(9380), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9378), + [anon_sym_decltype] = ACTIONS(9378), + [anon_sym_explicit] = ACTIONS(9378), + [anon_sym_template] = ACTIONS(9378), + [anon_sym_operator] = ACTIONS(9378), + [anon_sym_friend] = ACTIONS(9378), + [anon_sym_noexcept] = ACTIONS(9378), + [anon_sym_throw] = ACTIONS(9378), + [anon_sym_concept] = ACTIONS(9378), + [anon_sym_LBRACK_COLON] = ACTIONS(9380), }, [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), + [sym_template_argument_list] = STATE(2877), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7444), + [anon_sym_RPAREN] = ACTIONS(7444), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_DASH] = ACTIONS(7451), + [anon_sym_PLUS] = ACTIONS(7451), + [anon_sym_STAR] = ACTIONS(7451), + [anon_sym_SLASH] = ACTIONS(7451), + [anon_sym_PERCENT] = ACTIONS(7451), + [anon_sym_PIPE_PIPE] = ACTIONS(7444), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7451), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7444), + [anon_sym_BANG_EQ] = ACTIONS(7444), + [anon_sym_GT] = ACTIONS(7451), + [anon_sym_GT_EQ] = ACTIONS(7444), + [anon_sym_LT_EQ] = ACTIONS(7451), + [anon_sym_LT] = ACTIONS(8375), + [anon_sym_LT_LT] = ACTIONS(7451), + [anon_sym_GT_GT] = ACTIONS(7451), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_EQ] = ACTIONS(7451), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7444), + [anon_sym_STAR_EQ] = ACTIONS(7444), + [anon_sym_SLASH_EQ] = ACTIONS(7444), + [anon_sym_PERCENT_EQ] = ACTIONS(7444), + [anon_sym_PLUS_EQ] = ACTIONS(7444), + [anon_sym_DASH_EQ] = ACTIONS(7444), + [anon_sym_LT_LT_EQ] = ACTIONS(7444), + [anon_sym_GT_GT_EQ] = ACTIONS(7444), + [anon_sym_AMP_EQ] = ACTIONS(7444), + [anon_sym_CARET_EQ] = ACTIONS(7444), + [anon_sym_PIPE_EQ] = ACTIONS(7444), + [anon_sym_LT_EQ_GT] = ACTIONS(7444), + [anon_sym_or] = ACTIONS(7451), + [anon_sym_and] = ACTIONS(7451), + [anon_sym_bitor] = ACTIONS(7451), + [anon_sym_xor] = ACTIONS(7451), + [anon_sym_bitand] = ACTIONS(7451), + [anon_sym_not_eq] = ACTIONS(7451), + [anon_sym_DASH_DASH] = ACTIONS(7444), + [anon_sym_PLUS_PLUS] = ACTIONS(7444), + [anon_sym_DOT] = ACTIONS(7451), + [anon_sym_DOT_STAR] = ACTIONS(7444), + [anon_sym_DASH_GT] = ACTIONS(7451), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_DASH_GT_STAR] = ACTIONS(7444), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_decltype_auto] = STATE(3854), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym___based] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(7359), + [anon_sym_unsigned] = ACTIONS(7359), + [anon_sym_long] = ACTIONS(7359), + [anon_sym_short] = ACTIONS(7359), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_const] = ACTIONS(7359), + [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), + [sym_primitive_type] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9382), + [anon_sym_decltype] = ACTIONS(9384), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [aux_sym_preproc_if_token2] = ACTIONS(6822), + [aux_sym_preproc_else_token1] = ACTIONS(6822), + [aux_sym_preproc_elif_token1] = ACTIONS(6815), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6822), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_STAR] = ACTIONS(6815), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE] = ACTIONS(6815), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_EQ_EQ] = ACTIONS(6822), + [anon_sym_BANG_EQ] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6815), + [anon_sym_GT_EQ] = ACTIONS(6822), + [anon_sym_LT_EQ] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(6815), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6822), + [anon_sym_EQ] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_STAR_EQ] = ACTIONS(6822), + [anon_sym_SLASH_EQ] = ACTIONS(6822), + [anon_sym_PERCENT_EQ] = ACTIONS(6822), + [anon_sym_PLUS_EQ] = ACTIONS(6822), + [anon_sym_DASH_EQ] = ACTIONS(6822), + [anon_sym_LT_LT_EQ] = ACTIONS(6822), + [anon_sym_GT_GT_EQ] = ACTIONS(6822), + [anon_sym_AMP_EQ] = ACTIONS(6822), + [anon_sym_CARET_EQ] = ACTIONS(6822), + [anon_sym_PIPE_EQ] = ACTIONS(6822), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6822), + [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(6822), + [anon_sym_PLUS_PLUS] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6815), + [anon_sym_DOT_STAR] = ACTIONS(6822), + [anon_sym_DASH_GT] = ACTIONS(6822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_COLON_RBRACK] = ACTIONS(6822), }, [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), + [sym_argument_list] = STATE(4271), + [sym_initializer_list] = STATE(6708), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7363), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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), + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_RPAREN] = ACTIONS(6831), + [aux_sym_preproc_if_token2] = ACTIONS(6831), + [aux_sym_preproc_else_token1] = ACTIONS(6831), + [aux_sym_preproc_elif_token1] = ACTIONS(6829), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6831), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6829), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6829), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6829), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6829), + [anon_sym_GT_GT] = ACTIONS(6829), + [anon_sym_SEMI] = ACTIONS(6831), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_RBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6831), + [anon_sym_EQ] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_STAR_EQ] = ACTIONS(6831), + [anon_sym_SLASH_EQ] = ACTIONS(6831), + [anon_sym_PERCENT_EQ] = ACTIONS(6831), + [anon_sym_PLUS_EQ] = ACTIONS(6831), + [anon_sym_DASH_EQ] = ACTIONS(6831), + [anon_sym_LT_LT_EQ] = ACTIONS(6831), + [anon_sym_GT_GT_EQ] = ACTIONS(6831), + [anon_sym_AMP_EQ] = ACTIONS(6831), + [anon_sym_CARET_EQ] = ACTIONS(6831), + [anon_sym_PIPE_EQ] = ACTIONS(6831), + [anon_sym_and_eq] = ACTIONS(6829), + [anon_sym_or_eq] = ACTIONS(6829), + [anon_sym_xor_eq] = ACTIONS(6829), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_COLON_RBRACK] = ACTIONS(6831), }, [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), + [sym_decltype_auto] = STATE(3854), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym___based] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(7359), + [anon_sym_unsigned] = ACTIONS(7359), + [anon_sym_long] = ACTIONS(7359), + [anon_sym_short] = ACTIONS(7359), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_const] = ACTIONS(7359), + [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), + [sym_primitive_type] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9382), + [anon_sym_decltype] = ACTIONS(9384), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [STATE(3475)] = { - [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), - [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3905), + [sym_trailing_return_type] = STATE(3450), + [sym_requires_clause] = STATE(3905), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(9336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9338), + [anon_sym_COMMA] = ACTIONS(9338), + [anon_sym_RPAREN] = ACTIONS(9338), + [aux_sym_preproc_if_token2] = ACTIONS(9338), + [aux_sym_preproc_else_token1] = ACTIONS(9338), + [aux_sym_preproc_elif_token1] = ACTIONS(9336), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9338), + [anon_sym_LPAREN2] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9336), + [anon_sym_STAR] = ACTIONS(9336), + [anon_sym_SLASH] = ACTIONS(9336), + [anon_sym_PERCENT] = ACTIONS(9336), + [anon_sym_PIPE_PIPE] = ACTIONS(9338), + [anon_sym_AMP_AMP] = ACTIONS(9338), + [anon_sym_PIPE] = ACTIONS(9336), + [anon_sym_CARET] = ACTIONS(9336), + [anon_sym_AMP] = ACTIONS(9336), + [anon_sym_EQ_EQ] = ACTIONS(9338), + [anon_sym_BANG_EQ] = ACTIONS(9338), + [anon_sym_GT] = ACTIONS(9336), + [anon_sym_GT_EQ] = ACTIONS(9338), + [anon_sym_LT_EQ] = ACTIONS(9336), + [anon_sym_LT] = ACTIONS(9336), + [anon_sym_LT_LT] = ACTIONS(9336), + [anon_sym_GT_GT] = ACTIONS(9336), + [anon_sym_SEMI] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9336), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9338), + [anon_sym_RBRACE] = ACTIONS(9338), + [anon_sym_LBRACK] = ACTIONS(9338), + [anon_sym_EQ] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [anon_sym_STAR_EQ] = ACTIONS(9338), + [anon_sym_SLASH_EQ] = ACTIONS(9338), + [anon_sym_PERCENT_EQ] = ACTIONS(9338), + [anon_sym_PLUS_EQ] = ACTIONS(9338), + [anon_sym_DASH_EQ] = ACTIONS(9338), + [anon_sym_LT_LT_EQ] = ACTIONS(9338), + [anon_sym_GT_GT_EQ] = ACTIONS(9338), + [anon_sym_AMP_EQ] = ACTIONS(9338), + [anon_sym_CARET_EQ] = ACTIONS(9338), + [anon_sym_PIPE_EQ] = ACTIONS(9338), + [anon_sym_and_eq] = ACTIONS(9336), + [anon_sym_or_eq] = ACTIONS(9336), + [anon_sym_xor_eq] = ACTIONS(9336), + [anon_sym_LT_EQ_GT] = ACTIONS(9338), + [anon_sym_or] = ACTIONS(9336), + [anon_sym_and] = ACTIONS(9336), + [anon_sym_bitor] = ACTIONS(9336), + [anon_sym_xor] = ACTIONS(9336), + [anon_sym_bitand] = ACTIONS(9336), + [anon_sym_not_eq] = ACTIONS(9336), + [anon_sym_DASH_DASH] = ACTIONS(9338), + [anon_sym_PLUS_PLUS] = ACTIONS(9338), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_DOT_STAR] = ACTIONS(9338), + [anon_sym_DASH_GT] = ACTIONS(9386), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9340), + [anon_sym_override] = ACTIONS(9340), + [anon_sym_requires] = ACTIONS(9343), + [anon_sym_COLON_RBRACK] = ACTIONS(9338), }, [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), + [sym_attribute_specifier] = STATE(4055), + [sym_attribute_declaration] = STATE(7249), + [sym_type_qualifier] = STATE(4013), + [sym_alignas_qualifier] = STATE(4428), + [aux_sym_type_definition_repeat1] = STATE(4055), + [aux_sym__type_definition_type_repeat1] = STATE(4013), + [aux_sym_attributed_declarator_repeat1] = STATE(7249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7059), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7059), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7059), + [anon_sym_GT_GT] = ACTIONS(7059), + [anon_sym___extension__] = ACTIONS(8162), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_RBRACK] = ACTIONS(7059), + [anon_sym_const] = ACTIONS(8170), + [anon_sym_constexpr] = ACTIONS(8162), + [anon_sym_volatile] = ACTIONS(8162), + [anon_sym_restrict] = ACTIONS(8162), + [anon_sym___restrict__] = ACTIONS(8162), + [anon_sym__Atomic] = ACTIONS(8162), + [anon_sym__Noreturn] = ACTIONS(8162), + [anon_sym_noreturn] = ACTIONS(8162), + [anon_sym__Nonnull] = ACTIONS(8162), + [anon_sym_mutable] = ACTIONS(8162), + [anon_sym_constinit] = ACTIONS(8162), + [anon_sym_consteval] = ACTIONS(8162), + [anon_sym_alignas] = ACTIONS(8172), + [anon_sym__Alignas] = ACTIONS(8172), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7059), + [anon_sym_and] = ACTIONS(7059), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7059), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), }, [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), + [sym_identifier] = ACTIONS(3149), + [aux_sym_preproc_def_token1] = ACTIONS(3149), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), + [sym_preproc_directive] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym___attribute__] = ACTIONS(3149), + [anon_sym___attribute] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), + [anon_sym___declspec] = ACTIONS(3149), + [anon_sym___based] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_signed] = ACTIONS(3149), + [anon_sym_unsigned] = ACTIONS(3149), + [anon_sym_long] = ACTIONS(3149), + [anon_sym_short] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_register] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym___inline] = ACTIONS(3149), + [anon_sym___inline__] = ACTIONS(3149), + [anon_sym___forceinline] = ACTIONS(3149), + [anon_sym_thread_local] = ACTIONS(3149), + [anon_sym___thread] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_constexpr] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_restrict] = ACTIONS(3149), + [anon_sym___restrict__] = ACTIONS(3149), + [anon_sym__Atomic] = ACTIONS(3149), + [anon_sym__Noreturn] = ACTIONS(3149), + [anon_sym_noreturn] = ACTIONS(3149), + [anon_sym__Nonnull] = ACTIONS(3149), + [anon_sym_mutable] = ACTIONS(3149), + [anon_sym_constinit] = ACTIONS(3149), + [anon_sym_consteval] = ACTIONS(3149), + [anon_sym_alignas] = ACTIONS(3149), + [anon_sym__Alignas] = ACTIONS(3149), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_typename] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3149), + [anon_sym_decltype] = ACTIONS(3149), + [anon_sym_explicit] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_operator] = ACTIONS(3149), + [anon_sym_friend] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_static_assert] = ACTIONS(3149), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_LBRACK_COLON] = ACTIONS(3147), }, [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_identifier] = ACTIONS(9389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9391), + [anon_sym_COMMA] = ACTIONS(9391), + [anon_sym_RPAREN] = ACTIONS(9391), + [aux_sym_preproc_if_token2] = ACTIONS(9391), + [aux_sym_preproc_else_token1] = ACTIONS(9391), + [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_DASH] = ACTIONS(9389), + [anon_sym_PLUS] = ACTIONS(9389), + [anon_sym_STAR] = ACTIONS(9389), + [anon_sym_SLASH] = ACTIONS(9389), + [anon_sym_PERCENT] = ACTIONS(9389), + [anon_sym_PIPE_PIPE] = ACTIONS(9391), + [anon_sym_AMP_AMP] = ACTIONS(9391), + [anon_sym_PIPE] = ACTIONS(9389), + [anon_sym_CARET] = ACTIONS(9389), + [anon_sym_AMP] = ACTIONS(9389), + [anon_sym_EQ_EQ] = ACTIONS(9391), + [anon_sym_BANG_EQ] = ACTIONS(9391), + [anon_sym_GT] = ACTIONS(9389), + [anon_sym_GT_EQ] = ACTIONS(9391), + [anon_sym_LT_EQ] = ACTIONS(9389), + [anon_sym_LT] = ACTIONS(9389), + [anon_sym_LT_LT] = ACTIONS(9389), + [anon_sym_GT_GT] = ACTIONS(9389), + [anon_sym_SEMI] = ACTIONS(9391), + [anon_sym___attribute__] = ACTIONS(9389), + [anon_sym___attribute] = ACTIONS(9389), + [anon_sym_COLON] = ACTIONS(9389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9391), + [anon_sym_LBRACE] = ACTIONS(9391), + [anon_sym_RBRACE] = ACTIONS(9391), + [anon_sym_LBRACK] = ACTIONS(9389), + [anon_sym_RBRACK] = ACTIONS(9391), + [anon_sym_EQ] = ACTIONS(9389), + [anon_sym_QMARK] = ACTIONS(9391), + [anon_sym_STAR_EQ] = ACTIONS(9391), + [anon_sym_SLASH_EQ] = ACTIONS(9391), + [anon_sym_PERCENT_EQ] = ACTIONS(9391), + [anon_sym_PLUS_EQ] = ACTIONS(9391), + [anon_sym_DASH_EQ] = ACTIONS(9391), + [anon_sym_LT_LT_EQ] = ACTIONS(9391), + [anon_sym_GT_GT_EQ] = ACTIONS(9391), + [anon_sym_AMP_EQ] = ACTIONS(9391), + [anon_sym_CARET_EQ] = ACTIONS(9391), + [anon_sym_PIPE_EQ] = ACTIONS(9391), + [anon_sym_and_eq] = ACTIONS(9389), + [anon_sym_or_eq] = ACTIONS(9389), + [anon_sym_xor_eq] = ACTIONS(9389), + [anon_sym_LT_EQ_GT] = ACTIONS(9391), + [anon_sym_or] = ACTIONS(9389), + [anon_sym_and] = ACTIONS(9389), + [anon_sym_bitor] = ACTIONS(9389), + [anon_sym_xor] = ACTIONS(9389), + [anon_sym_bitand] = ACTIONS(9389), + [anon_sym_not_eq] = ACTIONS(9389), + [anon_sym_DASH_DASH] = ACTIONS(9391), + [anon_sym_PLUS_PLUS] = ACTIONS(9391), + [anon_sym_asm] = ACTIONS(9389), + [anon_sym___asm__] = ACTIONS(9389), + [anon_sym___asm] = ACTIONS(9389), + [anon_sym_DOT] = ACTIONS(9389), + [anon_sym_DOT_STAR] = ACTIONS(9391), + [anon_sym_DASH_GT] = ACTIONS(9391), [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), + [anon_sym_try] = ACTIONS(9389), + [anon_sym_COLON_RBRACK] = ACTIONS(9391), }, [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), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [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(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym___extension__] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_virtual] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym___attribute__] = ACTIONS(8898), + [anon_sym___attribute] = ACTIONS(8898), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(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(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_LBRACK_COLON] = ACTIONS(3176), }, [STATE(3480)] = { - [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), - [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(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), + [sym_attribute_declaration] = STATE(3509), + [aux_sym_attributed_declarator_repeat1] = STATE(3509), + [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(9395), + [anon_sym_AMP_AMP] = ACTIONS(9395), + [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_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9395), + [anon_sym_RBRACE] = ACTIONS(9395), + [anon_sym_LBRACK] = ACTIONS(9393), + [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(9393), + [anon_sym_and] = ACTIONS(9393), + [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), - [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), + [anon_sym_final] = ACTIONS(9393), + [anon_sym_override] = ACTIONS(9393), + [anon_sym_requires] = ACTIONS(9393), + [anon_sym_COLON_RBRACK] = ACTIONS(9395), + }, + [STATE(3481)] = { + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token2] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym___attribute] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym__Nonnull] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym__Alignas] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_private] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_friend] = ACTIONS(3392), + [anon_sym_public] = ACTIONS(3392), + [anon_sym_protected] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [anon_sym_catch] = ACTIONS(3392), + [anon_sym_LBRACK_COLON] = ACTIONS(3394), }, [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_identifier] = ACTIONS(3149), + [aux_sym_preproc_def_token1] = ACTIONS(3149), + [aux_sym_preproc_if_token1] = ACTIONS(3149), + [aux_sym_preproc_if_token2] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3149), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3149), + [sym_preproc_directive] = ACTIONS(3149), + [anon_sym_LPAREN2] = ACTIONS(3147), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym___extension__] = ACTIONS(3149), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym___attribute__] = ACTIONS(3149), + [anon_sym___attribute] = ACTIONS(3149), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3147), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3147), + [anon_sym___declspec] = ACTIONS(3149), + [anon_sym___based] = ACTIONS(3149), + [anon_sym_signed] = ACTIONS(3149), + [anon_sym_unsigned] = ACTIONS(3149), + [anon_sym_long] = ACTIONS(3149), + [anon_sym_short] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_register] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym___inline] = ACTIONS(3149), + [anon_sym___inline__] = ACTIONS(3149), + [anon_sym___forceinline] = ACTIONS(3149), + [anon_sym_thread_local] = ACTIONS(3149), + [anon_sym___thread] = ACTIONS(3149), + [anon_sym_const] = ACTIONS(3149), + [anon_sym_constexpr] = ACTIONS(3149), + [anon_sym_volatile] = ACTIONS(3149), + [anon_sym_restrict] = ACTIONS(3149), + [anon_sym___restrict__] = ACTIONS(3149), + [anon_sym__Atomic] = ACTIONS(3149), + [anon_sym__Noreturn] = ACTIONS(3149), + [anon_sym_noreturn] = ACTIONS(3149), + [anon_sym__Nonnull] = ACTIONS(3149), + [anon_sym_mutable] = ACTIONS(3149), + [anon_sym_constinit] = ACTIONS(3149), + [anon_sym_consteval] = ACTIONS(3149), + [anon_sym_alignas] = ACTIONS(3149), + [anon_sym__Alignas] = ACTIONS(3149), + [sym_primitive_type] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_struct] = ACTIONS(3149), + [anon_sym_union] = ACTIONS(3149), + [anon_sym_typename] = ACTIONS(3149), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3149), + [anon_sym_decltype] = ACTIONS(3149), + [anon_sym_explicit] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_template] = ACTIONS(3149), + [anon_sym_operator] = ACTIONS(3149), + [anon_sym_friend] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_protected] = ACTIONS(3149), + [anon_sym_static_assert] = ACTIONS(3149), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_LBRACK_COLON] = ACTIONS(3147), }, [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_identifier] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [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(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym___extension__] = ACTIONS(3178), + [anon_sym_typedef] = ACTIONS(3178), + [anon_sym_virtual] = ACTIONS(3178), + [anon_sym_extern] = ACTIONS(3178), + [anon_sym___attribute__] = ACTIONS(8898), + [anon_sym___attribute] = ACTIONS(8898), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_COLON_COLON] = ACTIONS(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym___based] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3176), + [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_LBRACK_COLON] = ACTIONS(3176), }, [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_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3439), + [sym_requires_clause] = STATE(3849), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7482), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7485), + [anon_sym_override] = ACTIONS(7485), + [anon_sym_requires] = ACTIONS(7488), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), }, [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_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(3452), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_RPAREN] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_STAR] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(9317), + [anon_sym_SEMI] = ACTIONS(5669), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym___cdecl] = ACTIONS(5661), + [anon_sym___clrcall] = ACTIONS(5661), + [anon_sym___stdcall] = ACTIONS(5661), + [anon_sym___fastcall] = ACTIONS(5661), + [anon_sym___thiscall] = ACTIONS(5661), + [anon_sym___vectorcall] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5669), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5661), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_asm] = ACTIONS(5661), + [anon_sym___asm__] = ACTIONS(5661), + [anon_sym___asm] = ACTIONS(5661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_try] = ACTIONS(5661), + [anon_sym_requires] = ACTIONS(5661), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, [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_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_TILDE] = ACTIONS(7670), + [anon_sym_STAR] = ACTIONS(7670), + [anon_sym_PIPE_PIPE] = ACTIONS(7670), + [anon_sym_AMP_AMP] = ACTIONS(7670), + [anon_sym_AMP] = ACTIONS(7668), + [anon_sym_SEMI] = ACTIONS(7670), + [anon_sym___extension__] = ACTIONS(7668), + [anon_sym_virtual] = ACTIONS(7668), + [anon_sym_extern] = ACTIONS(7668), + [anon_sym___attribute__] = ACTIONS(7668), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_COLON] = ACTIONS(7668), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7670), + [anon_sym___declspec] = ACTIONS(7668), + [anon_sym___based] = ACTIONS(7668), + [anon_sym___cdecl] = ACTIONS(7668), + [anon_sym___clrcall] = ACTIONS(7668), + [anon_sym___stdcall] = ACTIONS(7668), + [anon_sym___fastcall] = ACTIONS(7668), + [anon_sym___thiscall] = ACTIONS(7668), + [anon_sym___vectorcall] = ACTIONS(7668), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7668), + [anon_sym_static] = ACTIONS(7668), + [anon_sym_EQ] = ACTIONS(7670), + [anon_sym_register] = ACTIONS(7668), + [anon_sym_inline] = ACTIONS(7668), + [anon_sym___inline] = ACTIONS(7668), + [anon_sym___inline__] = ACTIONS(7668), + [anon_sym___forceinline] = ACTIONS(7668), + [anon_sym_thread_local] = ACTIONS(7668), + [anon_sym___thread] = 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_or] = ACTIONS(7668), + [anon_sym_and] = ACTIONS(7668), + [anon_sym_asm] = ACTIONS(7668), + [anon_sym___asm__] = ACTIONS(7668), + [anon_sym___asm] = ACTIONS(7668), + [anon_sym_DASH_GT] = ACTIONS(7670), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7668), + [anon_sym_final] = ACTIONS(7668), + [anon_sym_override] = ACTIONS(7668), + [anon_sym_template] = ACTIONS(7668), + [anon_sym_GT2] = ACTIONS(7670), + [anon_sym_operator] = ACTIONS(7668), + [anon_sym_try] = ACTIONS(7668), + [anon_sym_noexcept] = ACTIONS(7668), + [anon_sym_throw] = ACTIONS(7668), + [anon_sym_requires] = ACTIONS(7668), + [anon_sym_LBRACK_COLON] = ACTIONS(7670), }, [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), - [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), + [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(9399), + [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(9399), + [anon_sym_LBRACE] = ACTIONS(9399), + [anon_sym_RBRACE] = ACTIONS(9399), + [anon_sym_LBRACK] = ACTIONS(9397), + [anon_sym_RBRACK] = ACTIONS(9399), + [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_asm] = ACTIONS(9397), + [anon_sym___asm__] = ACTIONS(9397), + [anon_sym___asm] = ACTIONS(9397), + [anon_sym_DOT] = ACTIONS(9397), + [anon_sym_DOT_STAR] = ACTIONS(9399), + [anon_sym_DASH_GT] = ACTIONS(9399), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9397), + [anon_sym_COLON_RBRACK] = ACTIONS(9399), }, [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3975), + [sym_trailing_return_type] = STATE(3444), + [sym_requires_clause] = STATE(3975), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7623), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7621), + [anon_sym_or_eq] = ACTIONS(7621), + [anon_sym_xor_eq] = ACTIONS(7621), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(7625), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7628), + [anon_sym_override] = ACTIONS(7628), + [anon_sym_requires] = ACTIONS(7631), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), }, [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_identifier] = ACTIONS(9401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9403), + [anon_sym_COMMA] = ACTIONS(9403), + [anon_sym_RPAREN] = ACTIONS(9403), + [aux_sym_preproc_if_token2] = ACTIONS(9403), + [aux_sym_preproc_else_token1] = ACTIONS(9403), + [aux_sym_preproc_elif_token1] = ACTIONS(9401), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9403), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9403), + [anon_sym_LPAREN2] = ACTIONS(9403), + [anon_sym_DASH] = ACTIONS(9401), + [anon_sym_PLUS] = ACTIONS(9401), + [anon_sym_STAR] = ACTIONS(9401), + [anon_sym_SLASH] = ACTIONS(9401), + [anon_sym_PERCENT] = ACTIONS(9401), + [anon_sym_PIPE_PIPE] = ACTIONS(9403), + [anon_sym_AMP_AMP] = ACTIONS(9403), + [anon_sym_PIPE] = ACTIONS(9401), + [anon_sym_CARET] = ACTIONS(9401), + [anon_sym_AMP] = ACTIONS(9401), + [anon_sym_EQ_EQ] = ACTIONS(9403), + [anon_sym_BANG_EQ] = ACTIONS(9403), + [anon_sym_GT] = ACTIONS(9401), + [anon_sym_GT_EQ] = ACTIONS(9403), + [anon_sym_LT_EQ] = ACTIONS(9401), + [anon_sym_LT] = ACTIONS(9401), + [anon_sym_LT_LT] = ACTIONS(9401), + [anon_sym_GT_GT] = ACTIONS(9401), + [anon_sym_SEMI] = ACTIONS(9403), + [anon_sym___attribute__] = ACTIONS(9401), + [anon_sym___attribute] = ACTIONS(9401), + [anon_sym_COLON] = ACTIONS(9401), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9403), + [anon_sym_LBRACE] = ACTIONS(9403), + [anon_sym_RBRACE] = ACTIONS(9403), + [anon_sym_LBRACK] = ACTIONS(9401), + [anon_sym_RBRACK] = ACTIONS(9403), + [anon_sym_EQ] = ACTIONS(9401), + [anon_sym_QMARK] = ACTIONS(9403), + [anon_sym_STAR_EQ] = ACTIONS(9403), + [anon_sym_SLASH_EQ] = ACTIONS(9403), + [anon_sym_PERCENT_EQ] = ACTIONS(9403), + [anon_sym_PLUS_EQ] = ACTIONS(9403), + [anon_sym_DASH_EQ] = ACTIONS(9403), + [anon_sym_LT_LT_EQ] = ACTIONS(9403), + [anon_sym_GT_GT_EQ] = ACTIONS(9403), + [anon_sym_AMP_EQ] = ACTIONS(9403), + [anon_sym_CARET_EQ] = ACTIONS(9403), + [anon_sym_PIPE_EQ] = ACTIONS(9403), + [anon_sym_and_eq] = ACTIONS(9401), + [anon_sym_or_eq] = ACTIONS(9401), + [anon_sym_xor_eq] = ACTIONS(9401), + [anon_sym_LT_EQ_GT] = ACTIONS(9403), + [anon_sym_or] = ACTIONS(9401), + [anon_sym_and] = ACTIONS(9401), + [anon_sym_bitor] = ACTIONS(9401), + [anon_sym_xor] = ACTIONS(9401), + [anon_sym_bitand] = ACTIONS(9401), + [anon_sym_not_eq] = ACTIONS(9401), + [anon_sym_DASH_DASH] = ACTIONS(9403), + [anon_sym_PLUS_PLUS] = ACTIONS(9403), + [anon_sym_asm] = ACTIONS(9401), + [anon_sym___asm__] = ACTIONS(9401), + [anon_sym___asm] = ACTIONS(9401), + [anon_sym_DOT] = ACTIONS(9401), + [anon_sym_DOT_STAR] = ACTIONS(9403), + [anon_sym_DASH_GT] = ACTIONS(9403), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9401), + [anon_sym_COLON_RBRACK] = ACTIONS(9403), }, [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_template_argument_list] = STATE(3701), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [aux_sym_preproc_if_token2] = ACTIONS(7447), + [aux_sym_preproc_else_token1] = ACTIONS(7447), + [aux_sym_preproc_elif_token1] = ACTIONS(7442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(9405), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym_SEMI] = ACTIONS(7447), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7447), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7447), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7447), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_and_eq] = ACTIONS(7442), + [anon_sym_or_eq] = ACTIONS(7442), + [anon_sym_xor_eq] = ACTIONS(7442), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_COLON_RBRACK] = ACTIONS(7447), }, [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_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3850), + [sym_trailing_return_type] = STATE(3449), + [sym_requires_clause] = STATE(3850), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(8285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [aux_sym_preproc_if_token2] = ACTIONS(8287), + [aux_sym_preproc_else_token1] = ACTIONS(8287), + [aux_sym_preproc_elif_token1] = ACTIONS(8285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8287), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym_COLON] = ACTIONS(8285), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8287), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_LBRACK] = ACTIONS(8287), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8285), + [anon_sym_or_eq] = ACTIONS(8285), + [anon_sym_xor_eq] = ACTIONS(8285), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8285), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8285), + [anon_sym_not_eq] = ACTIONS(8285), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(8289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8296), + [anon_sym_override] = ACTIONS(8296), + [anon_sym_requires] = ACTIONS(8299), + [anon_sym_COLON_RBRACK] = ACTIONS(8287), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3492), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_TILDE] = ACTIONS(7175), + [anon_sym_STAR] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_SEMI] = ACTIONS(7175), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym_virtual] = ACTIONS(7173), + [anon_sym_extern] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7175), + [anon_sym___declspec] = ACTIONS(7173), + [anon_sym___based] = ACTIONS(7173), + [anon_sym___cdecl] = ACTIONS(7173), + [anon_sym___clrcall] = ACTIONS(7173), + [anon_sym___stdcall] = ACTIONS(7173), + [anon_sym___fastcall] = ACTIONS(7173), + [anon_sym___thiscall] = ACTIONS(7173), + [anon_sym___vectorcall] = ACTIONS(7173), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(9407), + [anon_sym_unsigned] = ACTIONS(9407), + [anon_sym_long] = ACTIONS(9407), + [anon_sym_short] = ACTIONS(9407), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_static] = ACTIONS(7173), + [anon_sym_EQ] = ACTIONS(7175), + [anon_sym_register] = ACTIONS(7173), + [anon_sym_inline] = ACTIONS(7173), + [anon_sym___inline] = ACTIONS(7173), + [anon_sym___inline__] = ACTIONS(7173), + [anon_sym___forceinline] = ACTIONS(7173), + [anon_sym_thread_local] = ACTIONS(7173), + [anon_sym___thread] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_asm] = ACTIONS(7173), + [anon_sym___asm__] = ACTIONS(7173), + [anon_sym___asm] = ACTIONS(7173), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_GT2] = ACTIONS(7175), + [anon_sym_operator] = ACTIONS(7173), + [anon_sym_try] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), }, [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_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(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3176), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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(3178), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3492), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_TILDE] = ACTIONS(7186), + [anon_sym_STAR] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_SEMI] = ACTIONS(7186), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym_virtual] = ACTIONS(7183), + [anon_sym_extern] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON] = ACTIONS(7183), + [anon_sym_COLON_COLON] = ACTIONS(7186), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7186), + [anon_sym___declspec] = ACTIONS(7183), + [anon_sym___based] = ACTIONS(7183), + [anon_sym___cdecl] = ACTIONS(7183), + [anon_sym___clrcall] = ACTIONS(7183), + [anon_sym___stdcall] = ACTIONS(7183), + [anon_sym___fastcall] = ACTIONS(7183), + [anon_sym___thiscall] = ACTIONS(7183), + [anon_sym___vectorcall] = ACTIONS(7183), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(9407), + [anon_sym_unsigned] = ACTIONS(9407), + [anon_sym_long] = ACTIONS(9407), + [anon_sym_short] = ACTIONS(9407), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_static] = ACTIONS(7183), + [anon_sym_EQ] = ACTIONS(7186), + [anon_sym_register] = ACTIONS(7183), + [anon_sym_inline] = ACTIONS(7183), + [anon_sym___inline] = ACTIONS(7183), + [anon_sym___inline__] = ACTIONS(7183), + [anon_sym___forceinline] = ACTIONS(7183), + [anon_sym_thread_local] = ACTIONS(7183), + [anon_sym___thread] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7183), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_asm] = ACTIONS(7183), + [anon_sym___asm__] = ACTIONS(7183), + [anon_sym___asm] = ACTIONS(7183), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7183), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_template] = ACTIONS(7183), + [anon_sym_GT2] = ACTIONS(7186), + [anon_sym_operator] = ACTIONS(7183), + [anon_sym_try] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_LBRACK_COLON] = ACTIONS(7186), }, [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_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_TILDE] = ACTIONS(7447), + [anon_sym_STAR] = ACTIONS(7447), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_SEMI] = ACTIONS(7447), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_virtual] = ACTIONS(7442), + [anon_sym_extern] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7447), + [anon_sym___declspec] = ACTIONS(7442), + [anon_sym___based] = ACTIONS(7442), + [anon_sym___cdecl] = ACTIONS(7442), + [anon_sym___clrcall] = ACTIONS(7442), + [anon_sym___stdcall] = ACTIONS(7442), + [anon_sym___fastcall] = ACTIONS(7442), + [anon_sym___thiscall] = ACTIONS(7442), + [anon_sym___vectorcall] = ACTIONS(7442), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_static] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(7447), + [anon_sym_register] = ACTIONS(7442), + [anon_sym_inline] = ACTIONS(7442), + [anon_sym___inline] = ACTIONS(7442), + [anon_sym___inline__] = ACTIONS(7442), + [anon_sym___forceinline] = ACTIONS(7442), + [anon_sym_thread_local] = ACTIONS(7442), + [anon_sym___thread] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_asm] = ACTIONS(7442), + [anon_sym___asm__] = ACTIONS(7442), + [anon_sym___asm] = ACTIONS(7442), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_GT2] = ACTIONS(7447), + [anon_sym_operator] = ACTIONS(7442), + [anon_sym_try] = ACTIONS(7442), + [anon_sym_noexcept] = ACTIONS(7442), + [anon_sym_throw] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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_template_argument_list] = STATE(3471), + [sym_identifier] = ACTIONS(7543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5689), + [anon_sym_COMMA] = ACTIONS(5689), + [anon_sym_RPAREN] = ACTIONS(5689), + [aux_sym_preproc_if_token2] = ACTIONS(5689), + [aux_sym_preproc_else_token1] = ACTIONS(5689), + [aux_sym_preproc_elif_token1] = ACTIONS(7543), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5689), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5689), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(7543), + [anon_sym_PLUS] = ACTIONS(7543), + [anon_sym_STAR] = ACTIONS(7543), + [anon_sym_SLASH] = ACTIONS(7543), + [anon_sym_PERCENT] = ACTIONS(7543), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_PIPE] = ACTIONS(7543), + [anon_sym_CARET] = ACTIONS(7543), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_GT] = ACTIONS(7543), + [anon_sym_GT_EQ] = ACTIONS(5689), + [anon_sym_LT_EQ] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(9405), + [anon_sym_LT_LT] = ACTIONS(7543), + [anon_sym_GT_GT] = ACTIONS(7543), + [anon_sym_SEMI] = ACTIONS(5689), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5689), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5689), + [anon_sym_EQ] = ACTIONS(7543), + [anon_sym_QMARK] = ACTIONS(5689), + [anon_sym_STAR_EQ] = ACTIONS(5689), + [anon_sym_SLASH_EQ] = ACTIONS(5689), + [anon_sym_PERCENT_EQ] = ACTIONS(5689), + [anon_sym_PLUS_EQ] = ACTIONS(5689), + [anon_sym_DASH_EQ] = ACTIONS(5689), + [anon_sym_LT_LT_EQ] = ACTIONS(5689), + [anon_sym_GT_GT_EQ] = ACTIONS(5689), + [anon_sym_AMP_EQ] = ACTIONS(5689), + [anon_sym_CARET_EQ] = ACTIONS(5689), + [anon_sym_PIPE_EQ] = ACTIONS(5689), + [anon_sym_and_eq] = ACTIONS(7543), + [anon_sym_or_eq] = ACTIONS(7543), + [anon_sym_xor_eq] = ACTIONS(7543), + [anon_sym_LT_EQ_GT] = ACTIONS(5689), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_bitor] = ACTIONS(7543), + [anon_sym_xor] = ACTIONS(7543), + [anon_sym_bitand] = ACTIONS(7543), + [anon_sym_not_eq] = ACTIONS(7543), + [anon_sym_DASH_DASH] = ACTIONS(5689), + [anon_sym_PLUS_PLUS] = ACTIONS(5689), + [anon_sym_DOT] = ACTIONS(7543), + [anon_sym_DOT_STAR] = ACTIONS(5689), + [anon_sym_DASH_GT] = ACTIONS(5689), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7543), + [anon_sym_override] = ACTIONS(7543), + [anon_sym_requires] = ACTIONS(7543), + [anon_sym_COLON_RBRACK] = ACTIONS(5689), }, [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_attribute_declaration] = STATE(3509), + [aux_sym_attributed_declarator_repeat1] = STATE(3509), + [sym_identifier] = ACTIONS(9220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9222), + [anon_sym_COMMA] = ACTIONS(9222), + [anon_sym_RPAREN] = ACTIONS(9222), + [aux_sym_preproc_if_token2] = ACTIONS(9222), + [aux_sym_preproc_else_token1] = ACTIONS(9222), + [aux_sym_preproc_elif_token1] = ACTIONS(9220), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9222), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9222), + [anon_sym_LPAREN2] = ACTIONS(9222), + [anon_sym_DASH] = ACTIONS(9220), + [anon_sym_PLUS] = ACTIONS(9220), + [anon_sym_STAR] = ACTIONS(9220), + [anon_sym_SLASH] = ACTIONS(9220), + [anon_sym_PERCENT] = ACTIONS(9220), + [anon_sym_PIPE_PIPE] = ACTIONS(9222), + [anon_sym_AMP_AMP] = ACTIONS(9222), + [anon_sym_PIPE] = ACTIONS(9220), + [anon_sym_CARET] = ACTIONS(9220), + [anon_sym_AMP] = ACTIONS(9220), + [anon_sym_EQ_EQ] = ACTIONS(9222), + [anon_sym_BANG_EQ] = ACTIONS(9222), + [anon_sym_GT] = ACTIONS(9220), + [anon_sym_GT_EQ] = ACTIONS(9222), + [anon_sym_LT_EQ] = ACTIONS(9220), + [anon_sym_LT] = ACTIONS(9220), + [anon_sym_LT_LT] = ACTIONS(9220), + [anon_sym_GT_GT] = ACTIONS(9220), + [anon_sym_SEMI] = ACTIONS(9222), + [anon_sym___attribute__] = ACTIONS(9220), + [anon_sym___attribute] = ACTIONS(9220), + [anon_sym_COLON] = ACTIONS(9220), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9222), + [anon_sym_RBRACE] = ACTIONS(9222), + [anon_sym_LBRACK] = ACTIONS(9220), + [anon_sym_EQ] = ACTIONS(9220), + [anon_sym_QMARK] = ACTIONS(9222), + [anon_sym_STAR_EQ] = ACTIONS(9222), + [anon_sym_SLASH_EQ] = ACTIONS(9222), + [anon_sym_PERCENT_EQ] = ACTIONS(9222), + [anon_sym_PLUS_EQ] = ACTIONS(9222), + [anon_sym_DASH_EQ] = ACTIONS(9222), + [anon_sym_LT_LT_EQ] = ACTIONS(9222), + [anon_sym_GT_GT_EQ] = ACTIONS(9222), + [anon_sym_AMP_EQ] = ACTIONS(9222), + [anon_sym_CARET_EQ] = ACTIONS(9222), + [anon_sym_PIPE_EQ] = ACTIONS(9222), + [anon_sym_and_eq] = ACTIONS(9220), + [anon_sym_or_eq] = ACTIONS(9220), + [anon_sym_xor_eq] = ACTIONS(9220), + [anon_sym_LT_EQ_GT] = ACTIONS(9222), + [anon_sym_or] = ACTIONS(9220), + [anon_sym_and] = ACTIONS(9220), + [anon_sym_bitor] = ACTIONS(9220), + [anon_sym_xor] = ACTIONS(9220), + [anon_sym_bitand] = ACTIONS(9220), + [anon_sym_not_eq] = ACTIONS(9220), + [anon_sym_DASH_DASH] = ACTIONS(9222), + [anon_sym_PLUS_PLUS] = ACTIONS(9222), + [anon_sym_DOT] = ACTIONS(9220), + [anon_sym_DOT_STAR] = ACTIONS(9222), + [anon_sym_DASH_GT] = ACTIONS(9222), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9220), + [anon_sym_override] = ACTIONS(9220), + [anon_sym_requires] = ACTIONS(9220), + [anon_sym_COLON_RBRACK] = ACTIONS(9222), }, [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3975), + [sym_trailing_return_type] = STATE(3462), + [sym_requires_clause] = STATE(3975), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7623), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7621), + [anon_sym_or_eq] = ACTIONS(7621), + [anon_sym_xor_eq] = ACTIONS(7621), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(7625), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), }, [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_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(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3176), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym___based] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3176), + [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(3178), + [anon_sym_LBRACK_COLON] = ACTIONS(3176), }, [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), + [sym_identifier] = ACTIONS(9410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9412), + [anon_sym_COMMA] = ACTIONS(9412), + [anon_sym_RPAREN] = ACTIONS(9412), + [aux_sym_preproc_if_token2] = ACTIONS(9412), + [aux_sym_preproc_else_token1] = ACTIONS(9412), + [aux_sym_preproc_elif_token1] = ACTIONS(9410), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9412), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9412), + [anon_sym_LPAREN2] = ACTIONS(9412), + [anon_sym_DASH] = ACTIONS(9410), + [anon_sym_PLUS] = ACTIONS(9410), + [anon_sym_STAR] = ACTIONS(9410), + [anon_sym_SLASH] = ACTIONS(9410), + [anon_sym_PERCENT] = ACTIONS(9410), + [anon_sym_PIPE_PIPE] = ACTIONS(9412), + [anon_sym_AMP_AMP] = ACTIONS(9412), + [anon_sym_PIPE] = ACTIONS(9410), + [anon_sym_CARET] = ACTIONS(9410), + [anon_sym_AMP] = ACTIONS(9410), + [anon_sym_EQ_EQ] = ACTIONS(9412), + [anon_sym_BANG_EQ] = ACTIONS(9412), + [anon_sym_GT] = ACTIONS(9410), + [anon_sym_GT_EQ] = ACTIONS(9412), + [anon_sym_LT_EQ] = ACTIONS(9410), + [anon_sym_LT] = ACTIONS(9410), + [anon_sym_LT_LT] = ACTIONS(9410), + [anon_sym_GT_GT] = ACTIONS(9410), + [anon_sym_SEMI] = ACTIONS(9412), + [anon_sym___attribute__] = ACTIONS(9410), + [anon_sym___attribute] = ACTIONS(9410), + [anon_sym_COLON] = ACTIONS(9410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9412), + [anon_sym_LBRACE] = ACTIONS(9412), + [anon_sym_RBRACE] = ACTIONS(9412), + [anon_sym_LBRACK] = ACTIONS(9410), + [anon_sym_RBRACK] = ACTIONS(9412), + [anon_sym_EQ] = ACTIONS(9410), + [anon_sym_QMARK] = ACTIONS(9412), + [anon_sym_STAR_EQ] = ACTIONS(9412), + [anon_sym_SLASH_EQ] = ACTIONS(9412), + [anon_sym_PERCENT_EQ] = ACTIONS(9412), + [anon_sym_PLUS_EQ] = ACTIONS(9412), + [anon_sym_DASH_EQ] = ACTIONS(9412), + [anon_sym_LT_LT_EQ] = ACTIONS(9412), + [anon_sym_GT_GT_EQ] = ACTIONS(9412), + [anon_sym_AMP_EQ] = ACTIONS(9412), + [anon_sym_CARET_EQ] = ACTIONS(9412), + [anon_sym_PIPE_EQ] = ACTIONS(9412), + [anon_sym_and_eq] = ACTIONS(9410), + [anon_sym_or_eq] = ACTIONS(9410), + [anon_sym_xor_eq] = ACTIONS(9410), + [anon_sym_LT_EQ_GT] = ACTIONS(9412), + [anon_sym_or] = ACTIONS(9410), + [anon_sym_and] = ACTIONS(9410), + [anon_sym_bitor] = ACTIONS(9410), + [anon_sym_xor] = ACTIONS(9410), + [anon_sym_bitand] = ACTIONS(9410), + [anon_sym_not_eq] = ACTIONS(9410), + [anon_sym_DASH_DASH] = ACTIONS(9412), + [anon_sym_PLUS_PLUS] = ACTIONS(9412), + [anon_sym_asm] = ACTIONS(9410), + [anon_sym___asm__] = ACTIONS(9410), + [anon_sym___asm] = ACTIONS(9410), + [anon_sym_DOT] = ACTIONS(9410), + [anon_sym_DOT_STAR] = ACTIONS(9412), + [anon_sym_DASH_GT] = ACTIONS(9412), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9410), + [anon_sym_COLON_RBRACK] = ACTIONS(9412), }, [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_identifier] = ACTIONS(9414), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9416), + [anon_sym_COMMA] = ACTIONS(9416), + [anon_sym_RPAREN] = ACTIONS(9416), + [aux_sym_preproc_if_token2] = ACTIONS(9416), + [aux_sym_preproc_else_token1] = ACTIONS(9416), + [aux_sym_preproc_elif_token1] = ACTIONS(9414), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9416), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9416), + [anon_sym_LPAREN2] = ACTIONS(9416), + [anon_sym_DASH] = ACTIONS(9414), + [anon_sym_PLUS] = ACTIONS(9414), + [anon_sym_STAR] = ACTIONS(9414), + [anon_sym_SLASH] = ACTIONS(9414), + [anon_sym_PERCENT] = ACTIONS(9414), + [anon_sym_PIPE_PIPE] = ACTIONS(9416), + [anon_sym_AMP_AMP] = ACTIONS(9416), + [anon_sym_PIPE] = ACTIONS(9414), + [anon_sym_CARET] = ACTIONS(9414), + [anon_sym_AMP] = ACTIONS(9414), + [anon_sym_EQ_EQ] = ACTIONS(9416), + [anon_sym_BANG_EQ] = ACTIONS(9416), + [anon_sym_GT] = ACTIONS(9414), + [anon_sym_GT_EQ] = ACTIONS(9416), + [anon_sym_LT_EQ] = ACTIONS(9414), + [anon_sym_LT] = ACTIONS(9414), + [anon_sym_LT_LT] = ACTIONS(9414), + [anon_sym_GT_GT] = ACTIONS(9414), + [anon_sym_SEMI] = ACTIONS(9416), + [anon_sym___attribute__] = ACTIONS(9414), + [anon_sym___attribute] = ACTIONS(9414), + [anon_sym_COLON] = ACTIONS(9414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9416), + [anon_sym_LBRACE] = ACTIONS(9416), + [anon_sym_RBRACE] = ACTIONS(9416), + [anon_sym_LBRACK] = ACTIONS(9414), + [anon_sym_RBRACK] = ACTIONS(9416), + [anon_sym_EQ] = ACTIONS(9414), + [anon_sym_QMARK] = ACTIONS(9416), + [anon_sym_STAR_EQ] = ACTIONS(9416), + [anon_sym_SLASH_EQ] = ACTIONS(9416), + [anon_sym_PERCENT_EQ] = ACTIONS(9416), + [anon_sym_PLUS_EQ] = ACTIONS(9416), + [anon_sym_DASH_EQ] = ACTIONS(9416), + [anon_sym_LT_LT_EQ] = ACTIONS(9416), + [anon_sym_GT_GT_EQ] = ACTIONS(9416), + [anon_sym_AMP_EQ] = ACTIONS(9416), + [anon_sym_CARET_EQ] = ACTIONS(9416), + [anon_sym_PIPE_EQ] = ACTIONS(9416), + [anon_sym_and_eq] = ACTIONS(9414), + [anon_sym_or_eq] = ACTIONS(9414), + [anon_sym_xor_eq] = ACTIONS(9414), + [anon_sym_LT_EQ_GT] = ACTIONS(9416), + [anon_sym_or] = ACTIONS(9414), + [anon_sym_and] = ACTIONS(9414), + [anon_sym_bitor] = ACTIONS(9414), + [anon_sym_xor] = ACTIONS(9414), + [anon_sym_bitand] = ACTIONS(9414), + [anon_sym_not_eq] = ACTIONS(9414), + [anon_sym_DASH_DASH] = ACTIONS(9416), + [anon_sym_PLUS_PLUS] = ACTIONS(9416), + [anon_sym_asm] = ACTIONS(9414), + [anon_sym___asm__] = ACTIONS(9414), + [anon_sym___asm] = ACTIONS(9414), + [anon_sym_DOT] = ACTIONS(9414), + [anon_sym_DOT_STAR] = ACTIONS(9416), + [anon_sym_DASH_GT] = ACTIONS(9416), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9414), + [anon_sym_COLON_RBRACK] = ACTIONS(9416), }, [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_identifier] = ACTIONS(9418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9420), + [anon_sym_COMMA] = ACTIONS(9420), + [anon_sym_RPAREN] = ACTIONS(9420), + [aux_sym_preproc_if_token2] = ACTIONS(9420), + [aux_sym_preproc_else_token1] = ACTIONS(9420), + [aux_sym_preproc_elif_token1] = ACTIONS(9418), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9420), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9420), + [anon_sym_LPAREN2] = ACTIONS(9420), + [anon_sym_DASH] = ACTIONS(9418), + [anon_sym_PLUS] = ACTIONS(9418), + [anon_sym_STAR] = ACTIONS(9418), + [anon_sym_SLASH] = ACTIONS(9418), + [anon_sym_PERCENT] = ACTIONS(9418), + [anon_sym_PIPE_PIPE] = ACTIONS(9420), + [anon_sym_AMP_AMP] = ACTIONS(9420), + [anon_sym_PIPE] = ACTIONS(9418), + [anon_sym_CARET] = ACTIONS(9418), + [anon_sym_AMP] = ACTIONS(9418), + [anon_sym_EQ_EQ] = ACTIONS(9420), + [anon_sym_BANG_EQ] = ACTIONS(9420), + [anon_sym_GT] = ACTIONS(9418), + [anon_sym_GT_EQ] = ACTIONS(9420), + [anon_sym_LT_EQ] = ACTIONS(9418), + [anon_sym_LT] = ACTIONS(9418), + [anon_sym_LT_LT] = ACTIONS(9418), + [anon_sym_GT_GT] = ACTIONS(9418), + [anon_sym_SEMI] = ACTIONS(9420), + [anon_sym___attribute__] = ACTIONS(9418), + [anon_sym___attribute] = ACTIONS(9418), + [anon_sym_COLON] = ACTIONS(9418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9420), + [anon_sym_LBRACE] = ACTIONS(9420), + [anon_sym_RBRACE] = ACTIONS(9420), + [anon_sym_LBRACK] = ACTIONS(9418), + [anon_sym_RBRACK] = ACTIONS(9420), + [anon_sym_EQ] = ACTIONS(9418), + [anon_sym_QMARK] = ACTIONS(9420), + [anon_sym_STAR_EQ] = ACTIONS(9420), + [anon_sym_SLASH_EQ] = ACTIONS(9420), + [anon_sym_PERCENT_EQ] = ACTIONS(9420), + [anon_sym_PLUS_EQ] = ACTIONS(9420), + [anon_sym_DASH_EQ] = ACTIONS(9420), + [anon_sym_LT_LT_EQ] = ACTIONS(9420), + [anon_sym_GT_GT_EQ] = ACTIONS(9420), + [anon_sym_AMP_EQ] = ACTIONS(9420), + [anon_sym_CARET_EQ] = ACTIONS(9420), + [anon_sym_PIPE_EQ] = ACTIONS(9420), + [anon_sym_and_eq] = ACTIONS(9418), + [anon_sym_or_eq] = ACTIONS(9418), + [anon_sym_xor_eq] = ACTIONS(9418), + [anon_sym_LT_EQ_GT] = ACTIONS(9420), + [anon_sym_or] = ACTIONS(9418), + [anon_sym_and] = ACTIONS(9418), + [anon_sym_bitor] = ACTIONS(9418), + [anon_sym_xor] = ACTIONS(9418), + [anon_sym_bitand] = ACTIONS(9418), + [anon_sym_not_eq] = ACTIONS(9418), + [anon_sym_DASH_DASH] = ACTIONS(9420), + [anon_sym_PLUS_PLUS] = ACTIONS(9420), + [anon_sym_asm] = ACTIONS(9418), + [anon_sym___asm__] = ACTIONS(9418), + [anon_sym___asm] = ACTIONS(9418), + [anon_sym_DOT] = ACTIONS(9418), + [anon_sym_DOT_STAR] = ACTIONS(9420), + [anon_sym_DASH_GT] = ACTIONS(9420), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9418), + [anon_sym_COLON_RBRACK] = ACTIONS(9420), }, [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), - [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), + [sym_identifier] = ACTIONS(9422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9424), + [anon_sym_COMMA] = ACTIONS(9424), + [anon_sym_RPAREN] = ACTIONS(9424), + [aux_sym_preproc_if_token2] = ACTIONS(9424), + [aux_sym_preproc_else_token1] = ACTIONS(9424), + [aux_sym_preproc_elif_token1] = ACTIONS(9422), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9424), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9424), + [anon_sym_LPAREN2] = ACTIONS(9424), + [anon_sym_DASH] = ACTIONS(9422), + [anon_sym_PLUS] = ACTIONS(9422), + [anon_sym_STAR] = ACTIONS(9422), + [anon_sym_SLASH] = ACTIONS(9422), + [anon_sym_PERCENT] = ACTIONS(9422), + [anon_sym_PIPE_PIPE] = ACTIONS(9424), + [anon_sym_AMP_AMP] = ACTIONS(9424), + [anon_sym_PIPE] = ACTIONS(9422), + [anon_sym_CARET] = ACTIONS(9422), + [anon_sym_AMP] = ACTIONS(9422), + [anon_sym_EQ_EQ] = ACTIONS(9424), + [anon_sym_BANG_EQ] = ACTIONS(9424), + [anon_sym_GT] = ACTIONS(9422), + [anon_sym_GT_EQ] = ACTIONS(9424), + [anon_sym_LT_EQ] = ACTIONS(9422), + [anon_sym_LT] = ACTIONS(9422), + [anon_sym_LT_LT] = ACTIONS(9422), + [anon_sym_GT_GT] = ACTIONS(9422), + [anon_sym_SEMI] = ACTIONS(9424), + [anon_sym___attribute__] = ACTIONS(9422), + [anon_sym___attribute] = ACTIONS(9422), + [anon_sym_COLON] = ACTIONS(9422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9424), + [anon_sym_LBRACE] = ACTIONS(9424), + [anon_sym_RBRACE] = ACTIONS(9424), + [anon_sym_LBRACK] = ACTIONS(9422), + [anon_sym_RBRACK] = ACTIONS(9424), + [anon_sym_EQ] = ACTIONS(9422), + [anon_sym_QMARK] = ACTIONS(9424), + [anon_sym_STAR_EQ] = ACTIONS(9424), + [anon_sym_SLASH_EQ] = ACTIONS(9424), + [anon_sym_PERCENT_EQ] = ACTIONS(9424), + [anon_sym_PLUS_EQ] = ACTIONS(9424), + [anon_sym_DASH_EQ] = ACTIONS(9424), + [anon_sym_LT_LT_EQ] = ACTIONS(9424), + [anon_sym_GT_GT_EQ] = ACTIONS(9424), + [anon_sym_AMP_EQ] = ACTIONS(9424), + [anon_sym_CARET_EQ] = ACTIONS(9424), + [anon_sym_PIPE_EQ] = ACTIONS(9424), + [anon_sym_and_eq] = ACTIONS(9422), + [anon_sym_or_eq] = ACTIONS(9422), + [anon_sym_xor_eq] = ACTIONS(9422), + [anon_sym_LT_EQ_GT] = ACTIONS(9424), + [anon_sym_or] = ACTIONS(9422), + [anon_sym_and] = ACTIONS(9422), + [anon_sym_bitor] = ACTIONS(9422), + [anon_sym_xor] = ACTIONS(9422), + [anon_sym_bitand] = ACTIONS(9422), + [anon_sym_not_eq] = ACTIONS(9422), + [anon_sym_DASH_DASH] = ACTIONS(9424), + [anon_sym_PLUS_PLUS] = ACTIONS(9424), + [anon_sym_asm] = ACTIONS(9422), + [anon_sym___asm__] = ACTIONS(9422), + [anon_sym___asm] = ACTIONS(9422), + [anon_sym_DOT] = ACTIONS(9422), + [anon_sym_DOT_STAR] = ACTIONS(9424), + [anon_sym_DASH_GT] = ACTIONS(9424), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9422), + [anon_sym_COLON_RBRACK] = ACTIONS(9424), }, [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), + [sym_identifier] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [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(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3472), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [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_LBRACK_COLON] = ACTIONS(3176), }, [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_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3905), + [sym_trailing_return_type] = STATE(3411), + [sym_requires_clause] = STATE(3905), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(9336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9338), + [anon_sym_COMMA] = ACTIONS(9338), + [anon_sym_RPAREN] = ACTIONS(9338), + [aux_sym_preproc_if_token2] = ACTIONS(9338), + [aux_sym_preproc_else_token1] = ACTIONS(9338), + [aux_sym_preproc_elif_token1] = ACTIONS(9336), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9338), + [anon_sym_LPAREN2] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9336), + [anon_sym_STAR] = ACTIONS(9336), + [anon_sym_SLASH] = ACTIONS(9336), + [anon_sym_PERCENT] = ACTIONS(9336), + [anon_sym_PIPE_PIPE] = ACTIONS(9338), + [anon_sym_AMP_AMP] = ACTIONS(9338), + [anon_sym_PIPE] = ACTIONS(9336), + [anon_sym_CARET] = ACTIONS(9336), + [anon_sym_AMP] = ACTIONS(9336), + [anon_sym_EQ_EQ] = ACTIONS(9338), + [anon_sym_BANG_EQ] = ACTIONS(9338), + [anon_sym_GT] = ACTIONS(9336), + [anon_sym_GT_EQ] = ACTIONS(9338), + [anon_sym_LT_EQ] = ACTIONS(9336), + [anon_sym_LT] = ACTIONS(9336), + [anon_sym_LT_LT] = ACTIONS(9336), + [anon_sym_GT_GT] = ACTIONS(9336), + [anon_sym_SEMI] = ACTIONS(9338), + [anon_sym_COLON] = ACTIONS(9336), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9338), + [anon_sym_RBRACE] = ACTIONS(9338), + [anon_sym_LBRACK] = ACTIONS(9338), + [anon_sym_EQ] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [anon_sym_STAR_EQ] = ACTIONS(9338), + [anon_sym_SLASH_EQ] = ACTIONS(9338), + [anon_sym_PERCENT_EQ] = ACTIONS(9338), + [anon_sym_PLUS_EQ] = ACTIONS(9338), + [anon_sym_DASH_EQ] = ACTIONS(9338), + [anon_sym_LT_LT_EQ] = ACTIONS(9338), + [anon_sym_GT_GT_EQ] = ACTIONS(9338), + [anon_sym_AMP_EQ] = ACTIONS(9338), + [anon_sym_CARET_EQ] = ACTIONS(9338), + [anon_sym_PIPE_EQ] = ACTIONS(9338), + [anon_sym_and_eq] = ACTIONS(9336), + [anon_sym_or_eq] = ACTIONS(9336), + [anon_sym_xor_eq] = ACTIONS(9336), + [anon_sym_LT_EQ_GT] = ACTIONS(9338), + [anon_sym_or] = ACTIONS(9336), + [anon_sym_and] = ACTIONS(9336), + [anon_sym_bitor] = ACTIONS(9336), + [anon_sym_xor] = ACTIONS(9336), + [anon_sym_bitand] = ACTIONS(9336), + [anon_sym_not_eq] = ACTIONS(9336), + [anon_sym_DASH_DASH] = ACTIONS(9338), + [anon_sym_PLUS_PLUS] = ACTIONS(9338), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_DOT_STAR] = ACTIONS(9338), + [anon_sym_DASH_GT] = ACTIONS(9386), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(9338), }, [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), + [sym_identifier] = ACTIONS(9426), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9428), + [anon_sym_COMMA] = ACTIONS(9428), + [anon_sym_RPAREN] = ACTIONS(9428), + [aux_sym_preproc_if_token2] = ACTIONS(9428), + [aux_sym_preproc_else_token1] = ACTIONS(9428), + [aux_sym_preproc_elif_token1] = ACTIONS(9426), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9428), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9428), + [anon_sym_LPAREN2] = ACTIONS(9428), + [anon_sym_DASH] = ACTIONS(9426), + [anon_sym_PLUS] = ACTIONS(9426), + [anon_sym_STAR] = ACTIONS(9426), + [anon_sym_SLASH] = ACTIONS(9426), + [anon_sym_PERCENT] = ACTIONS(9426), + [anon_sym_PIPE_PIPE] = ACTIONS(9428), + [anon_sym_AMP_AMP] = ACTIONS(9428), + [anon_sym_PIPE] = ACTIONS(9426), + [anon_sym_CARET] = ACTIONS(9426), + [anon_sym_AMP] = ACTIONS(9426), + [anon_sym_EQ_EQ] = ACTIONS(9428), + [anon_sym_BANG_EQ] = ACTIONS(9428), + [anon_sym_GT] = ACTIONS(9426), + [anon_sym_GT_EQ] = ACTIONS(9428), + [anon_sym_LT_EQ] = ACTIONS(9426), + [anon_sym_LT] = ACTIONS(9426), + [anon_sym_LT_LT] = ACTIONS(9426), + [anon_sym_GT_GT] = ACTIONS(9426), + [anon_sym_SEMI] = ACTIONS(9428), + [anon_sym___attribute__] = ACTIONS(9426), + [anon_sym___attribute] = ACTIONS(9426), + [anon_sym_COLON] = ACTIONS(9426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9428), + [anon_sym_LBRACE] = ACTIONS(9428), + [anon_sym_RBRACE] = ACTIONS(9428), + [anon_sym_LBRACK] = ACTIONS(9426), + [anon_sym_RBRACK] = ACTIONS(9428), + [anon_sym_EQ] = ACTIONS(9426), + [anon_sym_QMARK] = ACTIONS(9428), + [anon_sym_STAR_EQ] = ACTIONS(9428), + [anon_sym_SLASH_EQ] = ACTIONS(9428), + [anon_sym_PERCENT_EQ] = ACTIONS(9428), + [anon_sym_PLUS_EQ] = ACTIONS(9428), + [anon_sym_DASH_EQ] = ACTIONS(9428), + [anon_sym_LT_LT_EQ] = ACTIONS(9428), + [anon_sym_GT_GT_EQ] = ACTIONS(9428), + [anon_sym_AMP_EQ] = ACTIONS(9428), + [anon_sym_CARET_EQ] = ACTIONS(9428), + [anon_sym_PIPE_EQ] = ACTIONS(9428), + [anon_sym_and_eq] = ACTIONS(9426), + [anon_sym_or_eq] = ACTIONS(9426), + [anon_sym_xor_eq] = ACTIONS(9426), + [anon_sym_LT_EQ_GT] = ACTIONS(9428), + [anon_sym_or] = ACTIONS(9426), + [anon_sym_and] = ACTIONS(9426), + [anon_sym_bitor] = ACTIONS(9426), + [anon_sym_xor] = ACTIONS(9426), + [anon_sym_bitand] = ACTIONS(9426), + [anon_sym_not_eq] = ACTIONS(9426), + [anon_sym_DASH_DASH] = ACTIONS(9428), + [anon_sym_PLUS_PLUS] = ACTIONS(9428), + [anon_sym_asm] = ACTIONS(9426), + [anon_sym___asm__] = ACTIONS(9426), + [anon_sym___asm] = ACTIONS(9426), + [anon_sym_DOT] = ACTIONS(9426), + [anon_sym_DOT_STAR] = ACTIONS(9428), + [anon_sym_DASH_GT] = ACTIONS(9428), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9426), + [anon_sym_COLON_RBRACK] = ACTIONS(9428), }, [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_identifier] = ACTIONS(3178), + [aux_sym_preproc_def_token1] = ACTIONS(3178), + [anon_sym_COMMA] = ACTIONS(3472), + [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(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3472), + [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(3176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3176), + [anon_sym___declspec] = ACTIONS(3178), + [anon_sym___based] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3176), + [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), - [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_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_LBRACK_COLON] = ACTIONS(3176), }, [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), + [sym_type_qualifier] = STATE(3118), + [sym_alignas_qualifier] = STATE(3456), + [aux_sym__type_definition_type_repeat1] = STATE(3118), + [aux_sym_sized_type_specifier_repeat1] = STATE(6633), + [sym_identifier] = ACTIONS(9430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_RPAREN] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7023), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7023), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7023), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7023), + [anon_sym_GT_GT] = ACTIONS(7023), + [anon_sym_SEMI] = ACTIONS(7023), + [anon_sym___extension__] = ACTIONS(9432), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_COLON] = ACTIONS(7025), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7023), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_RBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(9434), + [anon_sym_unsigned] = ACTIONS(9434), + [anon_sym_long] = ACTIONS(9434), + [anon_sym_short] = ACTIONS(9434), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym_const] = ACTIONS(9432), + [anon_sym_constexpr] = ACTIONS(9432), + [anon_sym_volatile] = ACTIONS(9432), + [anon_sym_restrict] = ACTIONS(9432), + [anon_sym___restrict__] = ACTIONS(9432), + [anon_sym__Atomic] = ACTIONS(9432), + [anon_sym__Noreturn] = ACTIONS(9432), + [anon_sym_noreturn] = ACTIONS(9432), + [anon_sym__Nonnull] = ACTIONS(9432), + [anon_sym_mutable] = ACTIONS(9432), + [anon_sym_constinit] = ACTIONS(9432), + [anon_sym_consteval] = ACTIONS(9432), + [anon_sym_alignas] = ACTIONS(9436), + [anon_sym__Alignas] = ACTIONS(9436), + [sym_primitive_type] = ACTIONS(9438), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7023), }, [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_attribute_declaration] = STATE(3509), + [aux_sym_attributed_declarator_repeat1] = STATE(3509), + [sym_identifier] = ACTIONS(2461), + [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(2461), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9440), + [anon_sym_LPAREN2] = ACTIONS(9440), + [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(9440), + [anon_sym_AMP_AMP] = ACTIONS(9440), + [anon_sym_PIPE] = ACTIONS(2461), + [anon_sym_CARET] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_EQ_EQ] = ACTIONS(9440), + [anon_sym_BANG_EQ] = ACTIONS(9440), + [anon_sym_GT] = ACTIONS(2461), + [anon_sym_GT_EQ] = ACTIONS(9440), + [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(9440), + [anon_sym___attribute__] = ACTIONS(2461), + [anon_sym___attribute] = ACTIONS(2461), + [anon_sym_COLON] = ACTIONS(2461), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9442), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9440), + [anon_sym_RBRACE] = ACTIONS(9440), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_EQ] = ACTIONS(2461), + [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(2461), + [anon_sym_or_eq] = ACTIONS(2461), + [anon_sym_xor_eq] = ACTIONS(2461), + [anon_sym_LT_EQ_GT] = ACTIONS(9440), + [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(9440), + [anon_sym_PLUS_PLUS] = ACTIONS(9440), + [anon_sym_DOT] = ACTIONS(2461), + [anon_sym_DOT_STAR] = ACTIONS(9440), + [anon_sym_DASH_GT] = ACTIONS(9440), [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_final] = ACTIONS(2461), + [anon_sym_override] = ACTIONS(2461), + [anon_sym_requires] = ACTIONS(2461), + [anon_sym_COLON_RBRACK] = ACTIONS(9440), }, [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3849), + [sym_trailing_return_type] = STATE(3432), + [sym_requires_clause] = STATE(3849), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7482), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), }, [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), + [sym_attribute_specifier] = STATE(4140), + [sym_attribute_declaration] = STATE(7234), + [sym_type_qualifier] = STATE(4038), + [sym_alignas_qualifier] = STATE(4359), + [aux_sym_type_definition_repeat1] = STATE(4140), + [aux_sym__type_definition_type_repeat1] = STATE(4038), + [aux_sym_attributed_declarator_repeat1] = STATE(7234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7059), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7059), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7057), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7059), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(8197), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(8205), + [anon_sym_constexpr] = ACTIONS(8197), + [anon_sym_volatile] = ACTIONS(8197), + [anon_sym_restrict] = ACTIONS(8197), + [anon_sym___restrict__] = ACTIONS(8197), + [anon_sym__Atomic] = ACTIONS(8197), + [anon_sym__Noreturn] = ACTIONS(8197), + [anon_sym_noreturn] = ACTIONS(8197), + [anon_sym__Nonnull] = ACTIONS(8197), + [anon_sym_mutable] = ACTIONS(8197), + [anon_sym_constinit] = ACTIONS(8197), + [anon_sym_consteval] = ACTIONS(8197), + [anon_sym_alignas] = ACTIONS(8207), + [anon_sym__Alignas] = ACTIONS(8207), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7059), + [anon_sym_and] = ACTIONS(7059), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7059), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_GT2] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), }, [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_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_LBRACK_LBRACK] = ACTIONS(9447), + [anon_sym_LBRACE] = ACTIONS(9447), + [anon_sym_RBRACE] = ACTIONS(9447), + [anon_sym_LBRACK] = ACTIONS(9445), + [anon_sym_RBRACK] = 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_asm] = ACTIONS(9445), + [anon_sym___asm__] = ACTIONS(9445), + [anon_sym___asm] = ACTIONS(9445), + [anon_sym_DOT] = ACTIONS(9445), + [anon_sym_DOT_STAR] = ACTIONS(9447), + [anon_sym_DASH_GT] = ACTIONS(9447), [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9445), + [anon_sym_COLON_RBRACK] = ACTIONS(9447), }, [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), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3392), + [aux_sym_preproc_def_token1] = ACTIONS(3392), + [aux_sym_preproc_if_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3392), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3392), + [sym_preproc_directive] = ACTIONS(3392), + [anon_sym_LPAREN2] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_SEMI] = ACTIONS(3394), + [anon_sym___extension__] = ACTIONS(3392), + [anon_sym_typedef] = ACTIONS(3392), + [anon_sym_virtual] = ACTIONS(3392), + [anon_sym_extern] = ACTIONS(3392), + [anon_sym___attribute__] = ACTIONS(3392), + [anon_sym___attribute] = ACTIONS(3392), + [anon_sym_using] = ACTIONS(3392), + [anon_sym_COLON_COLON] = ACTIONS(3394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3394), + [anon_sym___declspec] = ACTIONS(3392), + [anon_sym___based] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_signed] = ACTIONS(3392), + [anon_sym_unsigned] = ACTIONS(3392), + [anon_sym_long] = ACTIONS(3392), + [anon_sym_short] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3392), + [anon_sym_register] = ACTIONS(3392), + [anon_sym_inline] = ACTIONS(3392), + [anon_sym___inline] = ACTIONS(3392), + [anon_sym___inline__] = ACTIONS(3392), + [anon_sym___forceinline] = ACTIONS(3392), + [anon_sym_thread_local] = ACTIONS(3392), + [anon_sym___thread] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_constexpr] = ACTIONS(3392), + [anon_sym_volatile] = ACTIONS(3392), + [anon_sym_restrict] = ACTIONS(3392), + [anon_sym___restrict__] = ACTIONS(3392), + [anon_sym__Atomic] = ACTIONS(3392), + [anon_sym__Noreturn] = ACTIONS(3392), + [anon_sym_noreturn] = ACTIONS(3392), + [anon_sym__Nonnull] = ACTIONS(3392), + [anon_sym_mutable] = ACTIONS(3392), + [anon_sym_constinit] = ACTIONS(3392), + [anon_sym_consteval] = ACTIONS(3392), + [anon_sym_alignas] = ACTIONS(3392), + [anon_sym__Alignas] = ACTIONS(3392), + [sym_primitive_type] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_class] = ACTIONS(3392), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_typename] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3392), + [anon_sym_decltype] = ACTIONS(3392), + [anon_sym_explicit] = ACTIONS(3392), + [anon_sym_private] = ACTIONS(3392), + [anon_sym_template] = ACTIONS(3392), + [anon_sym_operator] = ACTIONS(3392), + [anon_sym_friend] = ACTIONS(3392), + [anon_sym_public] = ACTIONS(3392), + [anon_sym_protected] = ACTIONS(3392), + [anon_sym_static_assert] = ACTIONS(3392), + [anon_sym_catch] = ACTIONS(3392), + [anon_sym_LBRACK_COLON] = ACTIONS(3394), }, [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), - [sym_comment] = ACTIONS(3), + [sym_type_qualifier] = STATE(3508), + [sym_alignas_qualifier] = STATE(3456), + [aux_sym__type_definition_type_repeat1] = STATE(3508), + [aux_sym_sized_type_specifier_repeat1] = STATE(3952), + [sym_identifier] = ACTIONS(9449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6934), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6934), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6934), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6934), + [anon_sym_SEMI] = ACTIONS(6934), + [anon_sym___extension__] = ACTIONS(9432), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_COLON] = ACTIONS(6936), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6934), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_RBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(9451), + [anon_sym_unsigned] = ACTIONS(9451), + [anon_sym_long] = ACTIONS(9451), + [anon_sym_short] = ACTIONS(9451), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_const] = ACTIONS(9432), + [anon_sym_constexpr] = ACTIONS(9432), + [anon_sym_volatile] = ACTIONS(9432), + [anon_sym_restrict] = ACTIONS(9432), + [anon_sym___restrict__] = ACTIONS(9432), + [anon_sym__Atomic] = ACTIONS(9432), + [anon_sym__Noreturn] = ACTIONS(9432), + [anon_sym_noreturn] = ACTIONS(9432), + [anon_sym__Nonnull] = ACTIONS(9432), + [anon_sym_mutable] = ACTIONS(9432), + [anon_sym_constinit] = ACTIONS(9432), + [anon_sym_consteval] = ACTIONS(9432), + [anon_sym_alignas] = ACTIONS(9436), + [anon_sym__Alignas] = ACTIONS(9436), + [sym_primitive_type] = ACTIONS(9453), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6934), }, [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), - [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(8416), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8418), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8420), - [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), + [sym_attribute_declaration] = STATE(3509), + [aux_sym_attributed_declarator_repeat1] = STATE(3509), + [sym_identifier] = ACTIONS(9224), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9226), + [anon_sym_COMMA] = ACTIONS(9226), + [anon_sym_RPAREN] = ACTIONS(9226), + [aux_sym_preproc_if_token2] = ACTIONS(9226), + [aux_sym_preproc_else_token1] = ACTIONS(9226), + [aux_sym_preproc_elif_token1] = ACTIONS(9224), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9226), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9226), + [anon_sym_LPAREN2] = ACTIONS(9226), + [anon_sym_DASH] = ACTIONS(9224), + [anon_sym_PLUS] = ACTIONS(9224), + [anon_sym_STAR] = ACTIONS(9224), + [anon_sym_SLASH] = ACTIONS(9224), + [anon_sym_PERCENT] = ACTIONS(9224), + [anon_sym_PIPE_PIPE] = ACTIONS(9226), + [anon_sym_AMP_AMP] = ACTIONS(9226), + [anon_sym_PIPE] = ACTIONS(9224), + [anon_sym_CARET] = ACTIONS(9224), + [anon_sym_AMP] = ACTIONS(9224), + [anon_sym_EQ_EQ] = ACTIONS(9226), + [anon_sym_BANG_EQ] = ACTIONS(9226), + [anon_sym_GT] = ACTIONS(9224), + [anon_sym_GT_EQ] = ACTIONS(9226), + [anon_sym_LT_EQ] = ACTIONS(9224), + [anon_sym_LT] = ACTIONS(9224), + [anon_sym_LT_LT] = ACTIONS(9224), + [anon_sym_GT_GT] = ACTIONS(9224), + [anon_sym_SEMI] = ACTIONS(9226), + [anon_sym___attribute__] = ACTIONS(9224), + [anon_sym___attribute] = ACTIONS(9224), + [anon_sym_COLON] = ACTIONS(9224), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9226), + [anon_sym_RBRACE] = ACTIONS(9226), + [anon_sym_LBRACK] = ACTIONS(9224), + [anon_sym_EQ] = ACTIONS(9224), + [anon_sym_QMARK] = ACTIONS(9226), + [anon_sym_STAR_EQ] = ACTIONS(9226), + [anon_sym_SLASH_EQ] = ACTIONS(9226), + [anon_sym_PERCENT_EQ] = ACTIONS(9226), + [anon_sym_PLUS_EQ] = ACTIONS(9226), + [anon_sym_DASH_EQ] = ACTIONS(9226), + [anon_sym_LT_LT_EQ] = ACTIONS(9226), + [anon_sym_GT_GT_EQ] = ACTIONS(9226), + [anon_sym_AMP_EQ] = ACTIONS(9226), + [anon_sym_CARET_EQ] = ACTIONS(9226), + [anon_sym_PIPE_EQ] = ACTIONS(9226), + [anon_sym_and_eq] = ACTIONS(9224), + [anon_sym_or_eq] = ACTIONS(9224), + [anon_sym_xor_eq] = ACTIONS(9224), + [anon_sym_LT_EQ_GT] = ACTIONS(9226), + [anon_sym_or] = ACTIONS(9224), + [anon_sym_and] = ACTIONS(9224), + [anon_sym_bitor] = ACTIONS(9224), + [anon_sym_xor] = ACTIONS(9224), + [anon_sym_bitand] = ACTIONS(9224), + [anon_sym_not_eq] = ACTIONS(9224), + [anon_sym_DASH_DASH] = ACTIONS(9226), + [anon_sym_PLUS_PLUS] = ACTIONS(9226), + [anon_sym_DOT] = ACTIONS(9224), + [anon_sym_DOT_STAR] = ACTIONS(9226), + [anon_sym_DASH_GT] = ACTIONS(9226), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9224), + [anon_sym_override] = ACTIONS(9224), + [anon_sym_requires] = ACTIONS(9224), + [anon_sym_COLON_RBRACK] = ACTIONS(9226), }, [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), + [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(9457), + [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_LBRACK_LBRACK] = ACTIONS(9457), + [anon_sym_LBRACE] = ACTIONS(9457), + [anon_sym_RBRACE] = ACTIONS(9457), + [anon_sym_LBRACK] = ACTIONS(9455), + [anon_sym_RBRACK] = 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_asm] = ACTIONS(9455), + [anon_sym___asm__] = ACTIONS(9455), + [anon_sym___asm] = ACTIONS(9455), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_DOT_STAR] = ACTIONS(9457), + [anon_sym_DASH_GT] = ACTIONS(9457), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9455), + [anon_sym_COLON_RBRACK] = ACTIONS(9457), }, [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), + [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___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), }, [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), + [sym_identifier] = ACTIONS(9459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9461), + [anon_sym_COMMA] = ACTIONS(9461), + [anon_sym_RPAREN] = ACTIONS(9461), + [aux_sym_preproc_if_token2] = ACTIONS(9461), + [aux_sym_preproc_else_token1] = ACTIONS(9461), + [aux_sym_preproc_elif_token1] = ACTIONS(9459), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9461), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9461), + [anon_sym_LPAREN2] = ACTIONS(9461), + [anon_sym_DASH] = ACTIONS(9459), + [anon_sym_PLUS] = ACTIONS(9459), + [anon_sym_STAR] = ACTIONS(9459), + [anon_sym_SLASH] = ACTIONS(9459), + [anon_sym_PERCENT] = ACTIONS(9459), + [anon_sym_PIPE_PIPE] = ACTIONS(9461), + [anon_sym_AMP_AMP] = ACTIONS(9461), + [anon_sym_PIPE] = ACTIONS(9459), + [anon_sym_CARET] = ACTIONS(9459), + [anon_sym_AMP] = ACTIONS(9459), + [anon_sym_EQ_EQ] = ACTIONS(9461), + [anon_sym_BANG_EQ] = ACTIONS(9461), + [anon_sym_GT] = ACTIONS(9459), + [anon_sym_GT_EQ] = ACTIONS(9461), + [anon_sym_LT_EQ] = ACTIONS(9459), + [anon_sym_LT] = ACTIONS(9459), + [anon_sym_LT_LT] = ACTIONS(9459), + [anon_sym_GT_GT] = ACTIONS(9459), + [anon_sym_SEMI] = ACTIONS(9461), + [anon_sym___attribute__] = ACTIONS(9459), + [anon_sym___attribute] = ACTIONS(9459), + [anon_sym_COLON] = ACTIONS(9459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9461), + [anon_sym_LBRACE] = ACTIONS(9461), + [anon_sym_RBRACE] = ACTIONS(9461), + [anon_sym_LBRACK] = ACTIONS(9459), + [anon_sym_RBRACK] = ACTIONS(9461), + [anon_sym_EQ] = ACTIONS(9459), + [anon_sym_QMARK] = ACTIONS(9461), + [anon_sym_STAR_EQ] = ACTIONS(9461), + [anon_sym_SLASH_EQ] = ACTIONS(9461), + [anon_sym_PERCENT_EQ] = ACTIONS(9461), + [anon_sym_PLUS_EQ] = ACTIONS(9461), + [anon_sym_DASH_EQ] = ACTIONS(9461), + [anon_sym_LT_LT_EQ] = ACTIONS(9461), + [anon_sym_GT_GT_EQ] = ACTIONS(9461), + [anon_sym_AMP_EQ] = ACTIONS(9461), + [anon_sym_CARET_EQ] = ACTIONS(9461), + [anon_sym_PIPE_EQ] = ACTIONS(9461), + [anon_sym_and_eq] = ACTIONS(9459), + [anon_sym_or_eq] = ACTIONS(9459), + [anon_sym_xor_eq] = ACTIONS(9459), + [anon_sym_LT_EQ_GT] = ACTIONS(9461), + [anon_sym_or] = ACTIONS(9459), + [anon_sym_and] = ACTIONS(9459), + [anon_sym_bitor] = ACTIONS(9459), + [anon_sym_xor] = ACTIONS(9459), + [anon_sym_bitand] = ACTIONS(9459), + [anon_sym_not_eq] = ACTIONS(9459), + [anon_sym_DASH_DASH] = ACTIONS(9461), + [anon_sym_PLUS_PLUS] = ACTIONS(9461), + [anon_sym_asm] = ACTIONS(9459), + [anon_sym___asm__] = ACTIONS(9459), + [anon_sym___asm] = ACTIONS(9459), + [anon_sym_DOT] = ACTIONS(9459), + [anon_sym_DOT_STAR] = ACTIONS(9461), + [anon_sym_DASH_GT] = ACTIONS(9461), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9459), + [anon_sym_COLON_RBRACK] = ACTIONS(9461), }, [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), + [sym_virtual_specifier] = STATE(3628), + [sym__function_postfix] = STATE(3850), + [sym_trailing_return_type] = STATE(3459), + [sym_requires_clause] = STATE(3850), + [aux_sym__function_postfix_repeat1] = STATE(3628), + [sym_identifier] = ACTIONS(8285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [aux_sym_preproc_if_token2] = ACTIONS(8287), + [aux_sym_preproc_else_token1] = ACTIONS(8287), + [aux_sym_preproc_elif_token1] = ACTIONS(8285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8287), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym_COLON] = ACTIONS(8285), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8287), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_LBRACK] = ACTIONS(8287), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8285), + [anon_sym_or_eq] = ACTIONS(8285), + [anon_sym_xor_eq] = ACTIONS(8285), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8285), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8285), + [anon_sym_not_eq] = ACTIONS(8285), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(8289), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(6426), + [anon_sym_COLON_RBRACK] = ACTIONS(8287), }, [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), + [sym_identifier] = ACTIONS(9057), + [aux_sym_preproc_def_token1] = ACTIONS(9057), + [aux_sym_preproc_if_token1] = ACTIONS(9057), + [aux_sym_preproc_if_token2] = ACTIONS(9057), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9057), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9057), + [sym_preproc_directive] = ACTIONS(9057), + [anon_sym_LPAREN2] = ACTIONS(9059), + [anon_sym_TILDE] = ACTIONS(9059), + [anon_sym_STAR] = ACTIONS(9059), + [anon_sym_AMP_AMP] = ACTIONS(9059), + [anon_sym_AMP] = ACTIONS(9057), + [anon_sym_SEMI] = ACTIONS(9059), + [anon_sym___extension__] = ACTIONS(9057), + [anon_sym_typedef] = ACTIONS(9057), + [anon_sym_virtual] = ACTIONS(9057), + [anon_sym_extern] = ACTIONS(9057), + [anon_sym___attribute__] = ACTIONS(9057), + [anon_sym___attribute] = ACTIONS(9057), + [anon_sym_using] = ACTIONS(9057), + [anon_sym_COLON_COLON] = ACTIONS(9059), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9059), + [anon_sym___declspec] = ACTIONS(9057), + [anon_sym___based] = ACTIONS(9057), + [anon_sym_signed] = ACTIONS(9057), + [anon_sym_unsigned] = ACTIONS(9057), + [anon_sym_long] = ACTIONS(9057), + [anon_sym_short] = ACTIONS(9057), + [anon_sym_LBRACK] = ACTIONS(9057), + [anon_sym_static] = ACTIONS(9057), + [anon_sym_register] = ACTIONS(9057), + [anon_sym_inline] = ACTIONS(9057), + [anon_sym___inline] = ACTIONS(9057), + [anon_sym___inline__] = ACTIONS(9057), + [anon_sym___forceinline] = ACTIONS(9057), + [anon_sym_thread_local] = ACTIONS(9057), + [anon_sym___thread] = ACTIONS(9057), + [anon_sym_const] = ACTIONS(9057), + [anon_sym_constexpr] = ACTIONS(9057), + [anon_sym_volatile] = ACTIONS(9057), + [anon_sym_restrict] = ACTIONS(9057), + [anon_sym___restrict__] = ACTIONS(9057), + [anon_sym__Atomic] = ACTIONS(9057), + [anon_sym__Noreturn] = ACTIONS(9057), + [anon_sym_noreturn] = ACTIONS(9057), + [anon_sym__Nonnull] = ACTIONS(9057), + [anon_sym_mutable] = ACTIONS(9057), + [anon_sym_constinit] = ACTIONS(9057), + [anon_sym_consteval] = ACTIONS(9057), + [anon_sym_alignas] = ACTIONS(9057), + [anon_sym__Alignas] = ACTIONS(9057), + [sym_primitive_type] = ACTIONS(9057), + [anon_sym_enum] = ACTIONS(9057), + [anon_sym_class] = ACTIONS(9057), + [anon_sym_struct] = ACTIONS(9057), + [anon_sym_union] = ACTIONS(9057), + [anon_sym_typename] = ACTIONS(9057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9057), + [anon_sym_decltype] = ACTIONS(9057), + [anon_sym_explicit] = ACTIONS(9057), + [anon_sym_private] = ACTIONS(9057), + [anon_sym_template] = ACTIONS(9057), + [anon_sym_operator] = ACTIONS(9057), + [anon_sym_friend] = ACTIONS(9057), + [anon_sym_public] = ACTIONS(9057), + [anon_sym_protected] = ACTIONS(9057), + [anon_sym_static_assert] = ACTIONS(9057), + [anon_sym_LBRACK_COLON] = ACTIONS(9059), }, [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), + [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(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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3714), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_RPAREN] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_TILDE] = ACTIONS(7255), + [anon_sym_STAR] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_SEMI] = ACTIONS(7255), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym_virtual] = ACTIONS(7253), + [anon_sym_extern] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(7255), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7255), + [anon_sym___declspec] = ACTIONS(7253), + [anon_sym___based] = ACTIONS(7253), + [anon_sym___cdecl] = ACTIONS(7253), + [anon_sym___clrcall] = ACTIONS(7253), + [anon_sym___stdcall] = ACTIONS(7253), + [anon_sym___fastcall] = ACTIONS(7253), + [anon_sym___thiscall] = ACTIONS(7253), + [anon_sym___vectorcall] = ACTIONS(7253), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(9463), + [anon_sym_unsigned] = ACTIONS(9463), + [anon_sym_long] = ACTIONS(9463), + [anon_sym_short] = ACTIONS(9463), + [anon_sym_LBRACK] = ACTIONS(7253), + [anon_sym_static] = ACTIONS(7253), + [anon_sym_EQ] = ACTIONS(7255), + [anon_sym_register] = ACTIONS(7253), + [anon_sym_inline] = ACTIONS(7253), + [anon_sym___inline] = ACTIONS(7253), + [anon_sym___inline__] = ACTIONS(7253), + [anon_sym___forceinline] = ACTIONS(7253), + [anon_sym_thread_local] = ACTIONS(7253), + [anon_sym___thread] = ACTIONS(7253), + [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(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_asm] = ACTIONS(7253), + [anon_sym___asm__] = ACTIONS(7253), + [anon_sym___asm] = ACTIONS(7253), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7253), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_template] = ACTIONS(7253), + [anon_sym_GT2] = ACTIONS(7255), + [anon_sym_operator] = ACTIONS(7253), + [anon_sym_try] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_LBRACK_COLON] = ACTIONS(7255), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3710), + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_RPAREN] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_TILDE] = ACTIONS(7265), + [anon_sym_STAR] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_SEMI] = ACTIONS(7265), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym_virtual] = ACTIONS(7263), + [anon_sym_extern] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON] = ACTIONS(7263), + [anon_sym_COLON_COLON] = ACTIONS(7265), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7265), + [anon_sym___declspec] = ACTIONS(7263), + [anon_sym___based] = ACTIONS(7263), + [anon_sym___cdecl] = ACTIONS(7263), + [anon_sym___clrcall] = ACTIONS(7263), + [anon_sym___stdcall] = ACTIONS(7263), + [anon_sym___fastcall] = ACTIONS(7263), + [anon_sym___thiscall] = ACTIONS(7263), + [anon_sym___vectorcall] = ACTIONS(7263), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_signed] = ACTIONS(9465), + [anon_sym_unsigned] = ACTIONS(9465), + [anon_sym_long] = ACTIONS(9465), + [anon_sym_short] = ACTIONS(9465), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym_static] = ACTIONS(7263), + [anon_sym_EQ] = ACTIONS(7265), + [anon_sym_register] = ACTIONS(7263), + [anon_sym_inline] = ACTIONS(7263), + [anon_sym___inline] = ACTIONS(7263), + [anon_sym___inline__] = ACTIONS(7263), + [anon_sym___forceinline] = ACTIONS(7263), + [anon_sym_thread_local] = ACTIONS(7263), + [anon_sym___thread] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [anon_sym_asm] = ACTIONS(7263), + [anon_sym___asm__] = ACTIONS(7263), + [anon_sym___asm] = ACTIONS(7263), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7263), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_template] = ACTIONS(7263), + [anon_sym_GT2] = ACTIONS(7265), + [anon_sym_operator] = ACTIONS(7263), + [anon_sym_try] = ACTIONS(7263), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_LBRACK_COLON] = ACTIONS(7265), }, [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7345), - [anon_sym_override] = ACTIONS(7345), - [anon_sym_requires] = ACTIONS(7345), + [sym_identifier] = ACTIONS(9069), + [aux_sym_preproc_def_token1] = ACTIONS(9069), + [aux_sym_preproc_if_token1] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9069), + [sym_preproc_directive] = ACTIONS(9069), + [anon_sym_LPAREN2] = ACTIONS(9071), + [anon_sym_TILDE] = ACTIONS(9071), + [anon_sym_STAR] = ACTIONS(9071), + [anon_sym_AMP_AMP] = ACTIONS(9071), + [anon_sym_AMP] = ACTIONS(9069), + [anon_sym_SEMI] = ACTIONS(9071), + [anon_sym___extension__] = ACTIONS(9069), + [anon_sym_typedef] = ACTIONS(9069), + [anon_sym_virtual] = ACTIONS(9069), + [anon_sym_extern] = ACTIONS(9069), + [anon_sym___attribute__] = ACTIONS(9069), + [anon_sym___attribute] = ACTIONS(9069), + [anon_sym_using] = ACTIONS(9069), + [anon_sym_COLON_COLON] = ACTIONS(9071), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9071), + [anon_sym___declspec] = ACTIONS(9069), + [anon_sym___based] = ACTIONS(9069), + [anon_sym_RBRACE] = ACTIONS(9071), + [anon_sym_signed] = ACTIONS(9069), + [anon_sym_unsigned] = ACTIONS(9069), + [anon_sym_long] = ACTIONS(9069), + [anon_sym_short] = ACTIONS(9069), + [anon_sym_LBRACK] = ACTIONS(9069), + [anon_sym_static] = ACTIONS(9069), + [anon_sym_register] = ACTIONS(9069), + [anon_sym_inline] = ACTIONS(9069), + [anon_sym___inline] = ACTIONS(9069), + [anon_sym___inline__] = ACTIONS(9069), + [anon_sym___forceinline] = ACTIONS(9069), + [anon_sym_thread_local] = ACTIONS(9069), + [anon_sym___thread] = ACTIONS(9069), + [anon_sym_const] = ACTIONS(9069), + [anon_sym_constexpr] = ACTIONS(9069), + [anon_sym_volatile] = ACTIONS(9069), + [anon_sym_restrict] = ACTIONS(9069), + [anon_sym___restrict__] = ACTIONS(9069), + [anon_sym__Atomic] = ACTIONS(9069), + [anon_sym__Noreturn] = ACTIONS(9069), + [anon_sym_noreturn] = ACTIONS(9069), + [anon_sym__Nonnull] = ACTIONS(9069), + [anon_sym_mutable] = ACTIONS(9069), + [anon_sym_constinit] = ACTIONS(9069), + [anon_sym_consteval] = ACTIONS(9069), + [anon_sym_alignas] = ACTIONS(9069), + [anon_sym__Alignas] = ACTIONS(9069), + [sym_primitive_type] = ACTIONS(9069), + [anon_sym_enum] = ACTIONS(9069), + [anon_sym_class] = ACTIONS(9069), + [anon_sym_struct] = ACTIONS(9069), + [anon_sym_union] = ACTIONS(9069), + [anon_sym_typename] = ACTIONS(9069), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9069), + [anon_sym_decltype] = ACTIONS(9069), + [anon_sym_explicit] = ACTIONS(9069), + [anon_sym_private] = ACTIONS(9069), + [anon_sym_template] = ACTIONS(9069), + [anon_sym_operator] = ACTIONS(9069), + [anon_sym_friend] = ACTIONS(9069), + [anon_sym_public] = ACTIONS(9069), + [anon_sym_protected] = ACTIONS(9069), + [anon_sym_static_assert] = ACTIONS(9069), + [anon_sym_LBRACK_COLON] = ACTIONS(9071), }, [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), + [sym_identifier] = ACTIONS(9069), + [aux_sym_preproc_def_token1] = ACTIONS(9069), + [aux_sym_preproc_if_token1] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9069), + [sym_preproc_directive] = ACTIONS(9069), + [anon_sym_LPAREN2] = ACTIONS(9071), + [anon_sym_TILDE] = ACTIONS(9071), + [anon_sym_STAR] = ACTIONS(9071), + [anon_sym_AMP_AMP] = ACTIONS(9071), + [anon_sym_AMP] = ACTIONS(9069), + [anon_sym_SEMI] = ACTIONS(9071), + [anon_sym___extension__] = ACTIONS(9069), + [anon_sym_typedef] = ACTIONS(9069), + [anon_sym_virtual] = ACTIONS(9069), + [anon_sym_extern] = ACTIONS(9069), + [anon_sym___attribute__] = ACTIONS(9069), + [anon_sym___attribute] = ACTIONS(9069), + [anon_sym_using] = ACTIONS(9069), + [anon_sym_COLON_COLON] = ACTIONS(9071), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9071), + [anon_sym___declspec] = ACTIONS(9069), + [anon_sym___based] = ACTIONS(9069), + [anon_sym_RBRACE] = ACTIONS(9071), + [anon_sym_signed] = ACTIONS(9069), + [anon_sym_unsigned] = ACTIONS(9069), + [anon_sym_long] = ACTIONS(9069), + [anon_sym_short] = ACTIONS(9069), + [anon_sym_LBRACK] = ACTIONS(9069), + [anon_sym_static] = ACTIONS(9069), + [anon_sym_register] = ACTIONS(9069), + [anon_sym_inline] = ACTIONS(9069), + [anon_sym___inline] = ACTIONS(9069), + [anon_sym___inline__] = ACTIONS(9069), + [anon_sym___forceinline] = ACTIONS(9069), + [anon_sym_thread_local] = ACTIONS(9069), + [anon_sym___thread] = ACTIONS(9069), + [anon_sym_const] = ACTIONS(9069), + [anon_sym_constexpr] = ACTIONS(9069), + [anon_sym_volatile] = ACTIONS(9069), + [anon_sym_restrict] = ACTIONS(9069), + [anon_sym___restrict__] = ACTIONS(9069), + [anon_sym__Atomic] = ACTIONS(9069), + [anon_sym__Noreturn] = ACTIONS(9069), + [anon_sym_noreturn] = ACTIONS(9069), + [anon_sym__Nonnull] = ACTIONS(9069), + [anon_sym_mutable] = ACTIONS(9069), + [anon_sym_constinit] = ACTIONS(9069), + [anon_sym_consteval] = ACTIONS(9069), + [anon_sym_alignas] = ACTIONS(9069), + [anon_sym__Alignas] = ACTIONS(9069), + [sym_primitive_type] = ACTIONS(9069), + [anon_sym_enum] = ACTIONS(9069), + [anon_sym_class] = ACTIONS(9069), + [anon_sym_struct] = ACTIONS(9069), + [anon_sym_union] = ACTIONS(9069), + [anon_sym_typename] = ACTIONS(9069), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9069), + [anon_sym_decltype] = ACTIONS(9069), + [anon_sym_explicit] = ACTIONS(9069), + [anon_sym_private] = ACTIONS(9069), + [anon_sym_template] = ACTIONS(9069), + [anon_sym_operator] = ACTIONS(9069), + [anon_sym_friend] = ACTIONS(9069), + [anon_sym_public] = ACTIONS(9069), + [anon_sym_protected] = ACTIONS(9069), + [anon_sym_static_assert] = ACTIONS(9069), + [anon_sym_LBRACK_COLON] = ACTIONS(9071), }, [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), + [sym_identifier] = ACTIONS(9077), + [aux_sym_preproc_def_token1] = ACTIONS(9077), + [aux_sym_preproc_if_token1] = ACTIONS(9077), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9077), + [sym_preproc_directive] = ACTIONS(9077), + [anon_sym_LPAREN2] = ACTIONS(9079), + [anon_sym_TILDE] = ACTIONS(9079), + [anon_sym_STAR] = ACTIONS(9079), + [anon_sym_AMP_AMP] = ACTIONS(9079), + [anon_sym_AMP] = ACTIONS(9077), + [anon_sym_SEMI] = ACTIONS(9079), + [anon_sym___extension__] = ACTIONS(9077), + [anon_sym_typedef] = ACTIONS(9077), + [anon_sym_virtual] = ACTIONS(9077), + [anon_sym_extern] = ACTIONS(9077), + [anon_sym___attribute__] = ACTIONS(9077), + [anon_sym___attribute] = ACTIONS(9077), + [anon_sym_using] = ACTIONS(9077), + [anon_sym_COLON_COLON] = ACTIONS(9079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9079), + [anon_sym___declspec] = ACTIONS(9077), + [anon_sym___based] = ACTIONS(9077), + [anon_sym_RBRACE] = ACTIONS(9079), + [anon_sym_signed] = ACTIONS(9077), + [anon_sym_unsigned] = ACTIONS(9077), + [anon_sym_long] = ACTIONS(9077), + [anon_sym_short] = ACTIONS(9077), + [anon_sym_LBRACK] = ACTIONS(9077), + [anon_sym_static] = ACTIONS(9077), + [anon_sym_register] = ACTIONS(9077), + [anon_sym_inline] = ACTIONS(9077), + [anon_sym___inline] = ACTIONS(9077), + [anon_sym___inline__] = ACTIONS(9077), + [anon_sym___forceinline] = ACTIONS(9077), + [anon_sym_thread_local] = ACTIONS(9077), + [anon_sym___thread] = ACTIONS(9077), + [anon_sym_const] = ACTIONS(9077), + [anon_sym_constexpr] = ACTIONS(9077), + [anon_sym_volatile] = ACTIONS(9077), + [anon_sym_restrict] = ACTIONS(9077), + [anon_sym___restrict__] = ACTIONS(9077), + [anon_sym__Atomic] = ACTIONS(9077), + [anon_sym__Noreturn] = ACTIONS(9077), + [anon_sym_noreturn] = ACTIONS(9077), + [anon_sym__Nonnull] = ACTIONS(9077), + [anon_sym_mutable] = ACTIONS(9077), + [anon_sym_constinit] = ACTIONS(9077), + [anon_sym_consteval] = ACTIONS(9077), + [anon_sym_alignas] = ACTIONS(9077), + [anon_sym__Alignas] = ACTIONS(9077), + [sym_primitive_type] = ACTIONS(9077), + [anon_sym_enum] = ACTIONS(9077), + [anon_sym_class] = ACTIONS(9077), + [anon_sym_struct] = ACTIONS(9077), + [anon_sym_union] = ACTIONS(9077), + [anon_sym_typename] = ACTIONS(9077), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9077), + [anon_sym_decltype] = ACTIONS(9077), + [anon_sym_explicit] = ACTIONS(9077), + [anon_sym_private] = ACTIONS(9077), + [anon_sym_template] = ACTIONS(9077), + [anon_sym_operator] = ACTIONS(9077), + [anon_sym_friend] = ACTIONS(9077), + [anon_sym_public] = ACTIONS(9077), + [anon_sym_protected] = ACTIONS(9077), + [anon_sym_static_assert] = ACTIONS(9077), + [anon_sym_LBRACK_COLON] = ACTIONS(9079), }, [STATE(3527)] = { - [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_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(7733), - [anon_sym_override] = ACTIONS(7733), - [anon_sym_requires] = ACTIONS(7733), - [anon_sym_DASH_GT_STAR] = ACTIONS(7733), + [sym_identifier] = ACTIONS(9081), + [aux_sym_preproc_def_token1] = ACTIONS(9081), + [aux_sym_preproc_if_token1] = ACTIONS(9081), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9081), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9081), + [sym_preproc_directive] = ACTIONS(9081), + [anon_sym_LPAREN2] = ACTIONS(9083), + [anon_sym_TILDE] = ACTIONS(9083), + [anon_sym_STAR] = ACTIONS(9083), + [anon_sym_AMP_AMP] = ACTIONS(9083), + [anon_sym_AMP] = ACTIONS(9081), + [anon_sym_SEMI] = ACTIONS(9083), + [anon_sym___extension__] = ACTIONS(9081), + [anon_sym_typedef] = ACTIONS(9081), + [anon_sym_virtual] = ACTIONS(9081), + [anon_sym_extern] = ACTIONS(9081), + [anon_sym___attribute__] = ACTIONS(9081), + [anon_sym___attribute] = ACTIONS(9081), + [anon_sym_using] = ACTIONS(9081), + [anon_sym_COLON_COLON] = ACTIONS(9083), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9083), + [anon_sym___declspec] = ACTIONS(9081), + [anon_sym___based] = ACTIONS(9081), + [anon_sym_RBRACE] = ACTIONS(9083), + [anon_sym_signed] = ACTIONS(9081), + [anon_sym_unsigned] = ACTIONS(9081), + [anon_sym_long] = ACTIONS(9081), + [anon_sym_short] = ACTIONS(9081), + [anon_sym_LBRACK] = ACTIONS(9081), + [anon_sym_static] = ACTIONS(9081), + [anon_sym_register] = ACTIONS(9081), + [anon_sym_inline] = ACTIONS(9081), + [anon_sym___inline] = ACTIONS(9081), + [anon_sym___inline__] = ACTIONS(9081), + [anon_sym___forceinline] = ACTIONS(9081), + [anon_sym_thread_local] = ACTIONS(9081), + [anon_sym___thread] = ACTIONS(9081), + [anon_sym_const] = ACTIONS(9081), + [anon_sym_constexpr] = ACTIONS(9081), + [anon_sym_volatile] = ACTIONS(9081), + [anon_sym_restrict] = ACTIONS(9081), + [anon_sym___restrict__] = ACTIONS(9081), + [anon_sym__Atomic] = ACTIONS(9081), + [anon_sym__Noreturn] = ACTIONS(9081), + [anon_sym_noreturn] = ACTIONS(9081), + [anon_sym__Nonnull] = ACTIONS(9081), + [anon_sym_mutable] = ACTIONS(9081), + [anon_sym_constinit] = ACTIONS(9081), + [anon_sym_consteval] = ACTIONS(9081), + [anon_sym_alignas] = ACTIONS(9081), + [anon_sym__Alignas] = ACTIONS(9081), + [sym_primitive_type] = ACTIONS(9081), + [anon_sym_enum] = ACTIONS(9081), + [anon_sym_class] = ACTIONS(9081), + [anon_sym_struct] = ACTIONS(9081), + [anon_sym_union] = ACTIONS(9081), + [anon_sym_typename] = ACTIONS(9081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9081), + [anon_sym_decltype] = ACTIONS(9081), + [anon_sym_explicit] = ACTIONS(9081), + [anon_sym_private] = ACTIONS(9081), + [anon_sym_template] = ACTIONS(9081), + [anon_sym_operator] = ACTIONS(9081), + [anon_sym_friend] = ACTIONS(9081), + [anon_sym_public] = ACTIONS(9081), + [anon_sym_protected] = ACTIONS(9081), + [anon_sym_static_assert] = ACTIONS(9081), + [anon_sym_LBRACK_COLON] = ACTIONS(9083), }, [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), + [sym_identifier] = ACTIONS(9085), + [aux_sym_preproc_def_token1] = ACTIONS(9085), + [aux_sym_preproc_if_token1] = ACTIONS(9085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9085), + [sym_preproc_directive] = ACTIONS(9085), + [anon_sym_LPAREN2] = ACTIONS(9087), + [anon_sym_TILDE] = ACTIONS(9087), + [anon_sym_STAR] = ACTIONS(9087), + [anon_sym_AMP_AMP] = ACTIONS(9087), + [anon_sym_AMP] = ACTIONS(9085), + [anon_sym_SEMI] = ACTIONS(9087), + [anon_sym___extension__] = ACTIONS(9085), + [anon_sym_typedef] = ACTIONS(9085), + [anon_sym_virtual] = ACTIONS(9085), + [anon_sym_extern] = ACTIONS(9085), + [anon_sym___attribute__] = ACTIONS(9085), + [anon_sym___attribute] = ACTIONS(9085), + [anon_sym_using] = ACTIONS(9085), + [anon_sym_COLON_COLON] = ACTIONS(9087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9087), + [anon_sym___declspec] = ACTIONS(9085), + [anon_sym___based] = ACTIONS(9085), + [anon_sym_RBRACE] = ACTIONS(9087), + [anon_sym_signed] = ACTIONS(9085), + [anon_sym_unsigned] = ACTIONS(9085), + [anon_sym_long] = ACTIONS(9085), + [anon_sym_short] = ACTIONS(9085), + [anon_sym_LBRACK] = ACTIONS(9085), + [anon_sym_static] = ACTIONS(9085), + [anon_sym_register] = ACTIONS(9085), + [anon_sym_inline] = ACTIONS(9085), + [anon_sym___inline] = ACTIONS(9085), + [anon_sym___inline__] = ACTIONS(9085), + [anon_sym___forceinline] = ACTIONS(9085), + [anon_sym_thread_local] = ACTIONS(9085), + [anon_sym___thread] = ACTIONS(9085), + [anon_sym_const] = ACTIONS(9085), + [anon_sym_constexpr] = ACTIONS(9085), + [anon_sym_volatile] = ACTIONS(9085), + [anon_sym_restrict] = ACTIONS(9085), + [anon_sym___restrict__] = ACTIONS(9085), + [anon_sym__Atomic] = ACTIONS(9085), + [anon_sym__Noreturn] = ACTIONS(9085), + [anon_sym_noreturn] = ACTIONS(9085), + [anon_sym__Nonnull] = ACTIONS(9085), + [anon_sym_mutable] = ACTIONS(9085), + [anon_sym_constinit] = ACTIONS(9085), + [anon_sym_consteval] = ACTIONS(9085), + [anon_sym_alignas] = ACTIONS(9085), + [anon_sym__Alignas] = ACTIONS(9085), + [sym_primitive_type] = ACTIONS(9085), + [anon_sym_enum] = ACTIONS(9085), + [anon_sym_class] = ACTIONS(9085), + [anon_sym_struct] = ACTIONS(9085), + [anon_sym_union] = ACTIONS(9085), + [anon_sym_typename] = ACTIONS(9085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9085), + [anon_sym_decltype] = ACTIONS(9085), + [anon_sym_explicit] = ACTIONS(9085), + [anon_sym_private] = ACTIONS(9085), + [anon_sym_template] = ACTIONS(9085), + [anon_sym_operator] = ACTIONS(9085), + [anon_sym_friend] = ACTIONS(9085), + [anon_sym_public] = ACTIONS(9085), + [anon_sym_protected] = ACTIONS(9085), + [anon_sym_static_assert] = ACTIONS(9085), + [anon_sym_LBRACK_COLON] = ACTIONS(9087), }, [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), + [sym_identifier] = ACTIONS(8970), + [aux_sym_preproc_def_token1] = ACTIONS(8970), + [aux_sym_preproc_if_token1] = ACTIONS(8970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8970), + [sym_preproc_directive] = ACTIONS(8970), + [anon_sym_LPAREN2] = ACTIONS(8972), + [anon_sym_TILDE] = ACTIONS(8972), + [anon_sym_STAR] = ACTIONS(8972), + [anon_sym_AMP_AMP] = ACTIONS(8972), + [anon_sym_AMP] = ACTIONS(8970), + [anon_sym_SEMI] = ACTIONS(8972), + [anon_sym___extension__] = ACTIONS(8970), + [anon_sym_typedef] = ACTIONS(8970), + [anon_sym_virtual] = ACTIONS(8970), + [anon_sym_extern] = ACTIONS(8970), + [anon_sym___attribute__] = ACTIONS(8970), + [anon_sym___attribute] = ACTIONS(8970), + [anon_sym_using] = ACTIONS(8970), + [anon_sym_COLON_COLON] = ACTIONS(8972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8972), + [anon_sym___declspec] = ACTIONS(8970), + [anon_sym___based] = ACTIONS(8970), + [anon_sym_RBRACE] = ACTIONS(8972), + [anon_sym_signed] = ACTIONS(8970), + [anon_sym_unsigned] = ACTIONS(8970), + [anon_sym_long] = ACTIONS(8970), + [anon_sym_short] = ACTIONS(8970), + [anon_sym_LBRACK] = ACTIONS(8970), + [anon_sym_static] = ACTIONS(8970), + [anon_sym_register] = ACTIONS(8970), + [anon_sym_inline] = ACTIONS(8970), + [anon_sym___inline] = ACTIONS(8970), + [anon_sym___inline__] = ACTIONS(8970), + [anon_sym___forceinline] = ACTIONS(8970), + [anon_sym_thread_local] = ACTIONS(8970), + [anon_sym___thread] = ACTIONS(8970), + [anon_sym_const] = ACTIONS(8970), + [anon_sym_constexpr] = ACTIONS(8970), + [anon_sym_volatile] = ACTIONS(8970), + [anon_sym_restrict] = ACTIONS(8970), + [anon_sym___restrict__] = ACTIONS(8970), + [anon_sym__Atomic] = ACTIONS(8970), + [anon_sym__Noreturn] = ACTIONS(8970), + [anon_sym_noreturn] = ACTIONS(8970), + [anon_sym__Nonnull] = ACTIONS(8970), + [anon_sym_mutable] = ACTIONS(8970), + [anon_sym_constinit] = ACTIONS(8970), + [anon_sym_consteval] = ACTIONS(8970), + [anon_sym_alignas] = ACTIONS(8970), + [anon_sym__Alignas] = ACTIONS(8970), + [sym_primitive_type] = ACTIONS(8970), + [anon_sym_enum] = ACTIONS(8970), + [anon_sym_class] = ACTIONS(8970), + [anon_sym_struct] = ACTIONS(8970), + [anon_sym_union] = ACTIONS(8970), + [anon_sym_typename] = ACTIONS(8970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8970), + [anon_sym_decltype] = ACTIONS(8970), + [anon_sym_explicit] = ACTIONS(8970), + [anon_sym_private] = ACTIONS(8970), + [anon_sym_template] = ACTIONS(8970), + [anon_sym_operator] = ACTIONS(8970), + [anon_sym_friend] = ACTIONS(8970), + [anon_sym_public] = ACTIONS(8970), + [anon_sym_protected] = ACTIONS(8970), + [anon_sym_static_assert] = ACTIONS(8970), + [anon_sym_LBRACK_COLON] = ACTIONS(8972), }, [STATE(3530)] = { - [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_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), + [sym_identifier] = ACTIONS(9089), + [aux_sym_preproc_def_token1] = ACTIONS(9089), + [aux_sym_preproc_if_token1] = ACTIONS(9089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9089), + [sym_preproc_directive] = ACTIONS(9089), + [anon_sym_LPAREN2] = ACTIONS(9091), + [anon_sym_TILDE] = ACTIONS(9091), + [anon_sym_STAR] = ACTIONS(9091), + [anon_sym_AMP_AMP] = ACTIONS(9091), + [anon_sym_AMP] = ACTIONS(9089), + [anon_sym_SEMI] = ACTIONS(9091), + [anon_sym___extension__] = ACTIONS(9089), + [anon_sym_typedef] = ACTIONS(9089), + [anon_sym_virtual] = ACTIONS(9089), + [anon_sym_extern] = ACTIONS(9089), + [anon_sym___attribute__] = ACTIONS(9089), + [anon_sym___attribute] = ACTIONS(9089), + [anon_sym_using] = ACTIONS(9089), + [anon_sym_COLON_COLON] = ACTIONS(9091), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9091), + [anon_sym___declspec] = ACTIONS(9089), + [anon_sym___based] = ACTIONS(9089), + [anon_sym_RBRACE] = ACTIONS(9091), + [anon_sym_signed] = ACTIONS(9089), + [anon_sym_unsigned] = ACTIONS(9089), + [anon_sym_long] = ACTIONS(9089), + [anon_sym_short] = ACTIONS(9089), + [anon_sym_LBRACK] = ACTIONS(9089), + [anon_sym_static] = ACTIONS(9089), + [anon_sym_register] = ACTIONS(9089), + [anon_sym_inline] = ACTIONS(9089), + [anon_sym___inline] = ACTIONS(9089), + [anon_sym___inline__] = ACTIONS(9089), + [anon_sym___forceinline] = ACTIONS(9089), + [anon_sym_thread_local] = ACTIONS(9089), + [anon_sym___thread] = ACTIONS(9089), + [anon_sym_const] = ACTIONS(9089), + [anon_sym_constexpr] = ACTIONS(9089), + [anon_sym_volatile] = ACTIONS(9089), + [anon_sym_restrict] = ACTIONS(9089), + [anon_sym___restrict__] = ACTIONS(9089), + [anon_sym__Atomic] = ACTIONS(9089), + [anon_sym__Noreturn] = ACTIONS(9089), + [anon_sym_noreturn] = ACTIONS(9089), + [anon_sym__Nonnull] = ACTIONS(9089), + [anon_sym_mutable] = ACTIONS(9089), + [anon_sym_constinit] = ACTIONS(9089), + [anon_sym_consteval] = ACTIONS(9089), + [anon_sym_alignas] = ACTIONS(9089), + [anon_sym__Alignas] = ACTIONS(9089), + [sym_primitive_type] = ACTIONS(9089), + [anon_sym_enum] = ACTIONS(9089), + [anon_sym_class] = ACTIONS(9089), + [anon_sym_struct] = ACTIONS(9089), + [anon_sym_union] = ACTIONS(9089), + [anon_sym_typename] = ACTIONS(9089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9089), + [anon_sym_decltype] = ACTIONS(9089), + [anon_sym_explicit] = ACTIONS(9089), + [anon_sym_private] = ACTIONS(9089), + [anon_sym_template] = ACTIONS(9089), + [anon_sym_operator] = ACTIONS(9089), + [anon_sym_friend] = ACTIONS(9089), + [anon_sym_public] = ACTIONS(9089), + [anon_sym_protected] = ACTIONS(9089), + [anon_sym_static_assert] = ACTIONS(9089), + [anon_sym_LBRACK_COLON] = ACTIONS(9091), }, [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), + [sym_identifier] = ACTIONS(9093), + [aux_sym_preproc_def_token1] = ACTIONS(9093), + [aux_sym_preproc_if_token1] = ACTIONS(9093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9093), + [sym_preproc_directive] = ACTIONS(9093), + [anon_sym_LPAREN2] = ACTIONS(9095), + [anon_sym_TILDE] = ACTIONS(9095), + [anon_sym_STAR] = ACTIONS(9095), + [anon_sym_AMP_AMP] = ACTIONS(9095), + [anon_sym_AMP] = ACTIONS(9093), + [anon_sym_SEMI] = ACTIONS(9095), + [anon_sym___extension__] = ACTIONS(9093), + [anon_sym_typedef] = ACTIONS(9093), + [anon_sym_virtual] = ACTIONS(9093), + [anon_sym_extern] = ACTIONS(9093), + [anon_sym___attribute__] = ACTIONS(9093), + [anon_sym___attribute] = ACTIONS(9093), + [anon_sym_using] = ACTIONS(9093), + [anon_sym_COLON_COLON] = ACTIONS(9095), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9095), + [anon_sym___declspec] = ACTIONS(9093), + [anon_sym___based] = ACTIONS(9093), + [anon_sym_RBRACE] = ACTIONS(9095), + [anon_sym_signed] = ACTIONS(9093), + [anon_sym_unsigned] = ACTIONS(9093), + [anon_sym_long] = ACTIONS(9093), + [anon_sym_short] = ACTIONS(9093), + [anon_sym_LBRACK] = ACTIONS(9093), + [anon_sym_static] = ACTIONS(9093), + [anon_sym_register] = ACTIONS(9093), + [anon_sym_inline] = ACTIONS(9093), + [anon_sym___inline] = ACTIONS(9093), + [anon_sym___inline__] = ACTIONS(9093), + [anon_sym___forceinline] = ACTIONS(9093), + [anon_sym_thread_local] = ACTIONS(9093), + [anon_sym___thread] = ACTIONS(9093), + [anon_sym_const] = ACTIONS(9093), + [anon_sym_constexpr] = ACTIONS(9093), + [anon_sym_volatile] = ACTIONS(9093), + [anon_sym_restrict] = ACTIONS(9093), + [anon_sym___restrict__] = ACTIONS(9093), + [anon_sym__Atomic] = ACTIONS(9093), + [anon_sym__Noreturn] = ACTIONS(9093), + [anon_sym_noreturn] = ACTIONS(9093), + [anon_sym__Nonnull] = ACTIONS(9093), + [anon_sym_mutable] = ACTIONS(9093), + [anon_sym_constinit] = ACTIONS(9093), + [anon_sym_consteval] = ACTIONS(9093), + [anon_sym_alignas] = ACTIONS(9093), + [anon_sym__Alignas] = ACTIONS(9093), + [sym_primitive_type] = ACTIONS(9093), + [anon_sym_enum] = ACTIONS(9093), + [anon_sym_class] = ACTIONS(9093), + [anon_sym_struct] = ACTIONS(9093), + [anon_sym_union] = ACTIONS(9093), + [anon_sym_typename] = ACTIONS(9093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9093), + [anon_sym_decltype] = ACTIONS(9093), + [anon_sym_explicit] = ACTIONS(9093), + [anon_sym_private] = ACTIONS(9093), + [anon_sym_template] = ACTIONS(9093), + [anon_sym_operator] = ACTIONS(9093), + [anon_sym_friend] = ACTIONS(9093), + [anon_sym_public] = ACTIONS(9093), + [anon_sym_protected] = ACTIONS(9093), + [anon_sym_static_assert] = ACTIONS(9093), + [anon_sym_LBRACK_COLON] = ACTIONS(9095), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3713), + [sym_identifier] = ACTIONS(7269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7271), + [anon_sym_COMMA] = ACTIONS(7271), + [anon_sym_RPAREN] = ACTIONS(7271), + [anon_sym_LPAREN2] = ACTIONS(7271), + [anon_sym_TILDE] = ACTIONS(7271), + [anon_sym_STAR] = ACTIONS(7271), + [anon_sym_AMP_AMP] = ACTIONS(7271), + [anon_sym_AMP] = ACTIONS(7269), + [anon_sym_SEMI] = ACTIONS(7271), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym_virtual] = ACTIONS(7269), + [anon_sym_extern] = ACTIONS(7269), + [anon_sym___attribute__] = ACTIONS(7269), + [anon_sym___attribute] = ACTIONS(7269), + [anon_sym_COLON] = ACTIONS(7269), + [anon_sym_COLON_COLON] = ACTIONS(7271), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7271), + [anon_sym___declspec] = ACTIONS(7269), + [anon_sym___based] = ACTIONS(7269), + [anon_sym___cdecl] = ACTIONS(7269), + [anon_sym___clrcall] = ACTIONS(7269), + [anon_sym___stdcall] = ACTIONS(7269), + [anon_sym___fastcall] = ACTIONS(7269), + [anon_sym___thiscall] = ACTIONS(7269), + [anon_sym___vectorcall] = ACTIONS(7269), + [anon_sym_LBRACE] = ACTIONS(7271), + [anon_sym_signed] = ACTIONS(9467), + [anon_sym_unsigned] = ACTIONS(9467), + [anon_sym_long] = ACTIONS(9467), + [anon_sym_short] = ACTIONS(9467), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_static] = ACTIONS(7269), + [anon_sym_EQ] = ACTIONS(7271), + [anon_sym_register] = ACTIONS(7269), + [anon_sym_inline] = ACTIONS(7269), + [anon_sym___inline] = ACTIONS(7269), + [anon_sym___inline__] = ACTIONS(7269), + [anon_sym___forceinline] = ACTIONS(7269), + [anon_sym_thread_local] = ACTIONS(7269), + [anon_sym___thread] = ACTIONS(7269), + [anon_sym_const] = ACTIONS(7269), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_asm] = ACTIONS(7269), + [anon_sym___asm__] = ACTIONS(7269), + [anon_sym___asm] = ACTIONS(7269), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7269), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_template] = ACTIONS(7269), + [anon_sym_GT2] = ACTIONS(7271), + [anon_sym_operator] = ACTIONS(7269), + [anon_sym_try] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_LBRACK_COLON] = ACTIONS(7271), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3714), + [sym_identifier] = ACTIONS(7300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7302), + [anon_sym_RPAREN] = ACTIONS(7302), + [anon_sym_LPAREN2] = ACTIONS(7302), + [anon_sym_TILDE] = ACTIONS(7302), + [anon_sym_STAR] = ACTIONS(7302), + [anon_sym_AMP_AMP] = ACTIONS(7302), + [anon_sym_AMP] = ACTIONS(7300), + [anon_sym_SEMI] = ACTIONS(7302), + [anon_sym___extension__] = ACTIONS(7300), + [anon_sym_virtual] = ACTIONS(7300), + [anon_sym_extern] = ACTIONS(7300), + [anon_sym___attribute__] = ACTIONS(7300), + [anon_sym___attribute] = ACTIONS(7300), + [anon_sym_COLON] = ACTIONS(7300), + [anon_sym_COLON_COLON] = ACTIONS(7302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7302), + [anon_sym___declspec] = ACTIONS(7300), + [anon_sym___based] = ACTIONS(7300), + [anon_sym___cdecl] = ACTIONS(7300), + [anon_sym___clrcall] = ACTIONS(7300), + [anon_sym___stdcall] = ACTIONS(7300), + [anon_sym___fastcall] = ACTIONS(7300), + [anon_sym___thiscall] = ACTIONS(7300), + [anon_sym___vectorcall] = ACTIONS(7300), + [anon_sym_LBRACE] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(9463), + [anon_sym_unsigned] = ACTIONS(9463), + [anon_sym_long] = ACTIONS(9463), + [anon_sym_short] = ACTIONS(9463), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_static] = ACTIONS(7300), + [anon_sym_EQ] = ACTIONS(7302), + [anon_sym_register] = ACTIONS(7300), + [anon_sym_inline] = ACTIONS(7300), + [anon_sym___inline] = ACTIONS(7300), + [anon_sym___inline__] = ACTIONS(7300), + [anon_sym___forceinline] = ACTIONS(7300), + [anon_sym_thread_local] = ACTIONS(7300), + [anon_sym___thread] = ACTIONS(7300), + [anon_sym_const] = ACTIONS(7300), + [anon_sym_constexpr] = ACTIONS(7300), + [anon_sym_volatile] = ACTIONS(7300), + [anon_sym_restrict] = ACTIONS(7300), + [anon_sym___restrict__] = ACTIONS(7300), + [anon_sym__Atomic] = ACTIONS(7300), + [anon_sym__Noreturn] = ACTIONS(7300), + [anon_sym_noreturn] = ACTIONS(7300), + [anon_sym__Nonnull] = ACTIONS(7300), + [anon_sym_mutable] = ACTIONS(7300), + [anon_sym_constinit] = ACTIONS(7300), + [anon_sym_consteval] = ACTIONS(7300), + [anon_sym_alignas] = ACTIONS(7300), + [anon_sym__Alignas] = ACTIONS(7300), + [anon_sym_asm] = ACTIONS(7300), + [anon_sym___asm__] = ACTIONS(7300), + [anon_sym___asm] = ACTIONS(7300), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7300), + [anon_sym_final] = ACTIONS(7300), + [anon_sym_override] = ACTIONS(7300), + [anon_sym_template] = ACTIONS(7300), + [anon_sym_GT2] = ACTIONS(7302), + [anon_sym_operator] = ACTIONS(7300), + [anon_sym_try] = ACTIONS(7300), + [anon_sym_requires] = ACTIONS(7300), + [anon_sym_LBRACK_COLON] = ACTIONS(7302), }, [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), + [sym_template_argument_list] = STATE(3935), + [sym_identifier] = ACTIONS(6774), + [anon_sym_LPAREN2] = ACTIONS(6781), + [anon_sym_TILDE] = ACTIONS(6781), + [anon_sym_STAR] = ACTIONS(6781), + [anon_sym_PIPE_PIPE] = ACTIONS(6781), + [anon_sym_AMP_AMP] = ACTIONS(6781), + [anon_sym_AMP] = ACTIONS(6774), + [anon_sym_LT] = ACTIONS(9469), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym_virtual] = ACTIONS(6774), + [anon_sym_extern] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_using] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6781), + [anon_sym___declspec] = ACTIONS(6774), + [anon_sym___based] = ACTIONS(6774), + [anon_sym___cdecl] = ACTIONS(6774), + [anon_sym___clrcall] = ACTIONS(6774), + [anon_sym___stdcall] = ACTIONS(6774), + [anon_sym___fastcall] = ACTIONS(6774), + [anon_sym___thiscall] = ACTIONS(6774), + [anon_sym___vectorcall] = ACTIONS(6774), + [anon_sym_signed] = ACTIONS(6774), + [anon_sym_unsigned] = ACTIONS(6774), + [anon_sym_long] = ACTIONS(6774), + [anon_sym_short] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(6774), + [anon_sym_static] = ACTIONS(6774), + [anon_sym_register] = ACTIONS(6774), + [anon_sym_inline] = ACTIONS(6774), + [anon_sym___inline] = ACTIONS(6774), + [anon_sym___inline__] = ACTIONS(6774), + [anon_sym___forceinline] = ACTIONS(6774), + [anon_sym_thread_local] = ACTIONS(6774), + [anon_sym___thread] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [sym_primitive_type] = ACTIONS(6774), + [anon_sym_enum] = ACTIONS(6774), + [anon_sym_class] = ACTIONS(6774), + [anon_sym_struct] = ACTIONS(6774), + [anon_sym_union] = ACTIONS(6774), + [anon_sym_or] = ACTIONS(6774), + [anon_sym_and] = ACTIONS(6774), + [anon_sym_typename] = ACTIONS(6774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_explicit] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_operator] = ACTIONS(6774), + [anon_sym_friend] = ACTIONS(6774), + [anon_sym_concept] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), }, [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), + [sym_identifier] = ACTIONS(8946), + [aux_sym_preproc_def_token1] = ACTIONS(8946), + [aux_sym_preproc_if_token1] = ACTIONS(8946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8946), + [sym_preproc_directive] = ACTIONS(8946), + [anon_sym_LPAREN2] = ACTIONS(8948), + [anon_sym_TILDE] = ACTIONS(8948), + [anon_sym_STAR] = ACTIONS(8948), + [anon_sym_AMP_AMP] = ACTIONS(8948), + [anon_sym_AMP] = ACTIONS(8946), + [anon_sym_SEMI] = ACTIONS(8948), + [anon_sym___extension__] = ACTIONS(8946), + [anon_sym_typedef] = 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_RBRACE] = 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_typename] = ACTIONS(8946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8946), + [anon_sym_decltype] = ACTIONS(8946), + [anon_sym_explicit] = ACTIONS(8946), + [anon_sym_private] = ACTIONS(8946), + [anon_sym_template] = ACTIONS(8946), + [anon_sym_operator] = ACTIONS(8946), + [anon_sym_friend] = ACTIONS(8946), + [anon_sym_public] = ACTIONS(8946), + [anon_sym_protected] = ACTIONS(8946), + [anon_sym_static_assert] = ACTIONS(8946), + [anon_sym_LBRACK_COLON] = ACTIONS(8948), }, [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), + [sym_identifier] = ACTIONS(8950), + [aux_sym_preproc_def_token1] = ACTIONS(8950), + [aux_sym_preproc_if_token1] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8950), + [sym_preproc_directive] = ACTIONS(8950), + [anon_sym_LPAREN2] = ACTIONS(8952), + [anon_sym_TILDE] = ACTIONS(8952), + [anon_sym_STAR] = ACTIONS(8952), + [anon_sym_AMP_AMP] = ACTIONS(8952), + [anon_sym_AMP] = ACTIONS(8950), + [anon_sym_SEMI] = ACTIONS(8952), + [anon_sym___extension__] = ACTIONS(8950), + [anon_sym_typedef] = 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_RBRACE] = 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_typename] = ACTIONS(8950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8950), + [anon_sym_decltype] = ACTIONS(8950), + [anon_sym_explicit] = ACTIONS(8950), + [anon_sym_private] = ACTIONS(8950), + [anon_sym_template] = ACTIONS(8950), + [anon_sym_operator] = ACTIONS(8950), + [anon_sym_friend] = ACTIONS(8950), + [anon_sym_public] = ACTIONS(8950), + [anon_sym_protected] = ACTIONS(8950), + [anon_sym_static_assert] = ACTIONS(8950), + [anon_sym_LBRACK_COLON] = ACTIONS(8952), }, [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), + [sym_identifier] = ACTIONS(8954), + [aux_sym_preproc_def_token1] = ACTIONS(8954), + [aux_sym_preproc_if_token1] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8954), + [sym_preproc_directive] = ACTIONS(8954), + [anon_sym_LPAREN2] = ACTIONS(8956), + [anon_sym_TILDE] = ACTIONS(8956), + [anon_sym_STAR] = ACTIONS(8956), + [anon_sym_AMP_AMP] = ACTIONS(8956), + [anon_sym_AMP] = ACTIONS(8954), + [anon_sym_SEMI] = ACTIONS(8956), + [anon_sym___extension__] = ACTIONS(8954), + [anon_sym_typedef] = 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_RBRACE] = 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_typename] = ACTIONS(8954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8954), + [anon_sym_decltype] = ACTIONS(8954), + [anon_sym_explicit] = ACTIONS(8954), + [anon_sym_private] = ACTIONS(8954), + [anon_sym_template] = ACTIONS(8954), + [anon_sym_operator] = ACTIONS(8954), + [anon_sym_friend] = ACTIONS(8954), + [anon_sym_public] = ACTIONS(8954), + [anon_sym_protected] = ACTIONS(8954), + [anon_sym_static_assert] = ACTIONS(8954), + [anon_sym_LBRACK_COLON] = ACTIONS(8956), }, [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), + [sym_identifier] = ACTIONS(8950), + [aux_sym_preproc_def_token1] = ACTIONS(8950), + [aux_sym_preproc_if_token1] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8950), + [sym_preproc_directive] = ACTIONS(8950), + [anon_sym_LPAREN2] = ACTIONS(8952), + [anon_sym_TILDE] = ACTIONS(8952), + [anon_sym_STAR] = ACTIONS(8952), + [anon_sym_AMP_AMP] = ACTIONS(8952), + [anon_sym_AMP] = ACTIONS(8950), + [anon_sym_SEMI] = ACTIONS(8952), + [anon_sym___extension__] = ACTIONS(8950), + [anon_sym_typedef] = 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_RBRACE] = 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_typename] = ACTIONS(8950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8950), + [anon_sym_decltype] = ACTIONS(8950), + [anon_sym_explicit] = ACTIONS(8950), + [anon_sym_private] = ACTIONS(8950), + [anon_sym_template] = ACTIONS(8950), + [anon_sym_operator] = ACTIONS(8950), + [anon_sym_friend] = ACTIONS(8950), + [anon_sym_public] = ACTIONS(8950), + [anon_sym_protected] = ACTIONS(8950), + [anon_sym_static_assert] = ACTIONS(8950), + [anon_sym_LBRACK_COLON] = ACTIONS(8952), }, [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), + [sym_identifier] = ACTIONS(8954), + [aux_sym_preproc_def_token1] = ACTIONS(8954), + [aux_sym_preproc_if_token1] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8954), + [sym_preproc_directive] = ACTIONS(8954), + [anon_sym_LPAREN2] = ACTIONS(8956), + [anon_sym_TILDE] = ACTIONS(8956), + [anon_sym_STAR] = ACTIONS(8956), + [anon_sym_AMP_AMP] = ACTIONS(8956), + [anon_sym_AMP] = ACTIONS(8954), + [anon_sym_SEMI] = ACTIONS(8956), + [anon_sym___extension__] = ACTIONS(8954), + [anon_sym_typedef] = 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_RBRACE] = 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_typename] = ACTIONS(8954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8954), + [anon_sym_decltype] = ACTIONS(8954), + [anon_sym_explicit] = ACTIONS(8954), + [anon_sym_private] = ACTIONS(8954), + [anon_sym_template] = ACTIONS(8954), + [anon_sym_operator] = ACTIONS(8954), + [anon_sym_friend] = ACTIONS(8954), + [anon_sym_public] = ACTIONS(8954), + [anon_sym_protected] = ACTIONS(8954), + [anon_sym_static_assert] = ACTIONS(8954), + [anon_sym_LBRACK_COLON] = ACTIONS(8956), }, [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), + [sym_identifier] = ACTIONS(4351), + [aux_sym_preproc_def_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token2] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4351), + [sym_preproc_directive] = ACTIONS(4351), + [anon_sym_LPAREN2] = ACTIONS(4353), + [anon_sym_TILDE] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym___extension__] = ACTIONS(4351), + [anon_sym_typedef] = ACTIONS(4351), + [anon_sym_virtual] = ACTIONS(4351), + [anon_sym_extern] = ACTIONS(4351), + [anon_sym___attribute__] = ACTIONS(4351), + [anon_sym___attribute] = ACTIONS(4351), + [anon_sym_using] = ACTIONS(4351), + [anon_sym_COLON_COLON] = ACTIONS(4353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4353), + [anon_sym___declspec] = ACTIONS(4351), + [anon_sym___based] = ACTIONS(4351), + [anon_sym_signed] = ACTIONS(4351), + [anon_sym_unsigned] = ACTIONS(4351), + [anon_sym_long] = ACTIONS(4351), + [anon_sym_short] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_static] = ACTIONS(4351), + [anon_sym_register] = ACTIONS(4351), + [anon_sym_inline] = ACTIONS(4351), + [anon_sym___inline] = ACTIONS(4351), + [anon_sym___inline__] = ACTIONS(4351), + [anon_sym___forceinline] = ACTIONS(4351), + [anon_sym_thread_local] = ACTIONS(4351), + [anon_sym___thread] = ACTIONS(4351), + [anon_sym_const] = ACTIONS(4351), + [anon_sym_constexpr] = ACTIONS(4351), + [anon_sym_volatile] = ACTIONS(4351), + [anon_sym_restrict] = ACTIONS(4351), + [anon_sym___restrict__] = ACTIONS(4351), + [anon_sym__Atomic] = ACTIONS(4351), + [anon_sym__Noreturn] = ACTIONS(4351), + [anon_sym_noreturn] = ACTIONS(4351), + [anon_sym__Nonnull] = ACTIONS(4351), + [anon_sym_mutable] = ACTIONS(4351), + [anon_sym_constinit] = ACTIONS(4351), + [anon_sym_consteval] = ACTIONS(4351), + [anon_sym_alignas] = ACTIONS(4351), + [anon_sym__Alignas] = ACTIONS(4351), + [sym_primitive_type] = ACTIONS(4351), + [anon_sym_enum] = ACTIONS(4351), + [anon_sym_class] = ACTIONS(4351), + [anon_sym_struct] = ACTIONS(4351), + [anon_sym_union] = ACTIONS(4351), + [anon_sym_typename] = ACTIONS(4351), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4351), + [anon_sym_decltype] = ACTIONS(4351), + [anon_sym_explicit] = ACTIONS(4351), + [anon_sym_private] = ACTIONS(4351), + [anon_sym_template] = ACTIONS(4351), + [anon_sym_operator] = ACTIONS(4351), + [anon_sym_friend] = ACTIONS(4351), + [anon_sym_public] = ACTIONS(4351), + [anon_sym_protected] = ACTIONS(4351), + [anon_sym_static_assert] = ACTIONS(4351), + [anon_sym_LBRACK_COLON] = ACTIONS(4353), }, [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), + [sym_virtual_specifier] = STATE(3541), + [aux_sym__function_postfix_repeat1] = STATE(3541), + [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(9473), + [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_RBRACK_RBRACK] = ACTIONS(9473), + [anon_sym_RBRACE] = ACTIONS(9473), + [anon_sym_LBRACK] = ACTIONS(9473), + [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_final] = ACTIONS(9475), + [anon_sym_override] = ACTIONS(9475), + [anon_sym_requires] = ACTIONS(9471), + [anon_sym_COLON_RBRACK] = ACTIONS(9473), }, [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), + [sym_identifier] = ACTIONS(8966), + [aux_sym_preproc_def_token1] = ACTIONS(8966), + [aux_sym_preproc_if_token1] = ACTIONS(8966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8966), + [sym_preproc_directive] = ACTIONS(8966), + [anon_sym_LPAREN2] = ACTIONS(8968), + [anon_sym_TILDE] = ACTIONS(8968), + [anon_sym_STAR] = ACTIONS(8968), + [anon_sym_AMP_AMP] = ACTIONS(8968), + [anon_sym_AMP] = ACTIONS(8966), + [anon_sym_SEMI] = ACTIONS(8968), + [anon_sym___extension__] = ACTIONS(8966), + [anon_sym_typedef] = ACTIONS(8966), + [anon_sym_virtual] = ACTIONS(8966), + [anon_sym_extern] = ACTIONS(8966), + [anon_sym___attribute__] = ACTIONS(8966), + [anon_sym___attribute] = ACTIONS(8966), + [anon_sym_using] = ACTIONS(8966), + [anon_sym_COLON_COLON] = ACTIONS(8968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8968), + [anon_sym___declspec] = ACTIONS(8966), + [anon_sym___based] = ACTIONS(8966), + [anon_sym_RBRACE] = ACTIONS(8968), + [anon_sym_signed] = ACTIONS(8966), + [anon_sym_unsigned] = ACTIONS(8966), + [anon_sym_long] = ACTIONS(8966), + [anon_sym_short] = ACTIONS(8966), + [anon_sym_LBRACK] = ACTIONS(8966), + [anon_sym_static] = ACTIONS(8966), + [anon_sym_register] = ACTIONS(8966), + [anon_sym_inline] = ACTIONS(8966), + [anon_sym___inline] = ACTIONS(8966), + [anon_sym___inline__] = ACTIONS(8966), + [anon_sym___forceinline] = ACTIONS(8966), + [anon_sym_thread_local] = ACTIONS(8966), + [anon_sym___thread] = ACTIONS(8966), + [anon_sym_const] = ACTIONS(8966), + [anon_sym_constexpr] = ACTIONS(8966), + [anon_sym_volatile] = ACTIONS(8966), + [anon_sym_restrict] = ACTIONS(8966), + [anon_sym___restrict__] = ACTIONS(8966), + [anon_sym__Atomic] = ACTIONS(8966), + [anon_sym__Noreturn] = ACTIONS(8966), + [anon_sym_noreturn] = ACTIONS(8966), + [anon_sym__Nonnull] = ACTIONS(8966), + [anon_sym_mutable] = ACTIONS(8966), + [anon_sym_constinit] = ACTIONS(8966), + [anon_sym_consteval] = ACTIONS(8966), + [anon_sym_alignas] = ACTIONS(8966), + [anon_sym__Alignas] = ACTIONS(8966), + [sym_primitive_type] = ACTIONS(8966), + [anon_sym_enum] = ACTIONS(8966), + [anon_sym_class] = ACTIONS(8966), + [anon_sym_struct] = ACTIONS(8966), + [anon_sym_union] = ACTIONS(8966), + [anon_sym_typename] = ACTIONS(8966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8966), + [anon_sym_decltype] = ACTIONS(8966), + [anon_sym_explicit] = ACTIONS(8966), + [anon_sym_private] = ACTIONS(8966), + [anon_sym_template] = ACTIONS(8966), + [anon_sym_operator] = ACTIONS(8966), + [anon_sym_friend] = ACTIONS(8966), + [anon_sym_public] = ACTIONS(8966), + [anon_sym_protected] = ACTIONS(8966), + [anon_sym_static_assert] = ACTIONS(8966), + [anon_sym_LBRACK_COLON] = ACTIONS(8968), }, [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), + [sym_identifier] = ACTIONS(8978), + [aux_sym_preproc_def_token1] = ACTIONS(8978), + [aux_sym_preproc_if_token1] = ACTIONS(8978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8978), + [sym_preproc_directive] = ACTIONS(8978), + [anon_sym_LPAREN2] = ACTIONS(8980), + [anon_sym_TILDE] = ACTIONS(8980), + [anon_sym_STAR] = ACTIONS(8980), + [anon_sym_AMP_AMP] = ACTIONS(8980), + [anon_sym_AMP] = ACTIONS(8978), + [anon_sym_SEMI] = ACTIONS(8980), + [anon_sym___extension__] = ACTIONS(8978), + [anon_sym_typedef] = ACTIONS(8978), + [anon_sym_virtual] = ACTIONS(8978), + [anon_sym_extern] = ACTIONS(8978), + [anon_sym___attribute__] = ACTIONS(8978), + [anon_sym___attribute] = ACTIONS(8978), + [anon_sym_using] = ACTIONS(8978), + [anon_sym_COLON_COLON] = ACTIONS(8980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8980), + [anon_sym___declspec] = ACTIONS(8978), + [anon_sym___based] = ACTIONS(8978), + [anon_sym_RBRACE] = ACTIONS(8980), + [anon_sym_signed] = ACTIONS(8978), + [anon_sym_unsigned] = ACTIONS(8978), + [anon_sym_long] = ACTIONS(8978), + [anon_sym_short] = ACTIONS(8978), + [anon_sym_LBRACK] = ACTIONS(8978), + [anon_sym_static] = ACTIONS(8978), + [anon_sym_register] = ACTIONS(8978), + [anon_sym_inline] = ACTIONS(8978), + [anon_sym___inline] = ACTIONS(8978), + [anon_sym___inline__] = ACTIONS(8978), + [anon_sym___forceinline] = ACTIONS(8978), + [anon_sym_thread_local] = ACTIONS(8978), + [anon_sym___thread] = ACTIONS(8978), + [anon_sym_const] = ACTIONS(8978), + [anon_sym_constexpr] = ACTIONS(8978), + [anon_sym_volatile] = ACTIONS(8978), + [anon_sym_restrict] = ACTIONS(8978), + [anon_sym___restrict__] = ACTIONS(8978), + [anon_sym__Atomic] = ACTIONS(8978), + [anon_sym__Noreturn] = ACTIONS(8978), + [anon_sym_noreturn] = ACTIONS(8978), + [anon_sym__Nonnull] = ACTIONS(8978), + [anon_sym_mutable] = ACTIONS(8978), + [anon_sym_constinit] = ACTIONS(8978), + [anon_sym_consteval] = ACTIONS(8978), + [anon_sym_alignas] = ACTIONS(8978), + [anon_sym__Alignas] = ACTIONS(8978), + [sym_primitive_type] = ACTIONS(8978), + [anon_sym_enum] = ACTIONS(8978), + [anon_sym_class] = ACTIONS(8978), + [anon_sym_struct] = ACTIONS(8978), + [anon_sym_union] = ACTIONS(8978), + [anon_sym_typename] = ACTIONS(8978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8978), + [anon_sym_decltype] = ACTIONS(8978), + [anon_sym_explicit] = ACTIONS(8978), + [anon_sym_private] = ACTIONS(8978), + [anon_sym_template] = ACTIONS(8978), + [anon_sym_operator] = ACTIONS(8978), + [anon_sym_friend] = ACTIONS(8978), + [anon_sym_public] = ACTIONS(8978), + [anon_sym_protected] = ACTIONS(8978), + [anon_sym_static_assert] = ACTIONS(8978), + [anon_sym_LBRACK_COLON] = ACTIONS(8980), }, [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), + [sym_identifier] = ACTIONS(4331), + [aux_sym_preproc_def_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token2] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), + [sym_preproc_directive] = ACTIONS(4331), + [anon_sym_LPAREN2] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym___extension__] = ACTIONS(4331), + [anon_sym_typedef] = ACTIONS(4331), + [anon_sym_virtual] = ACTIONS(4331), + [anon_sym_extern] = ACTIONS(4331), + [anon_sym___attribute__] = ACTIONS(4331), + [anon_sym___attribute] = ACTIONS(4331), + [anon_sym_using] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4333), + [anon_sym___declspec] = ACTIONS(4331), + [anon_sym___based] = ACTIONS(4331), + [anon_sym_signed] = ACTIONS(4331), + [anon_sym_unsigned] = ACTIONS(4331), + [anon_sym_long] = ACTIONS(4331), + [anon_sym_short] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_static] = ACTIONS(4331), + [anon_sym_register] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym___inline] = ACTIONS(4331), + [anon_sym___inline__] = ACTIONS(4331), + [anon_sym___forceinline] = ACTIONS(4331), + [anon_sym_thread_local] = ACTIONS(4331), + [anon_sym___thread] = ACTIONS(4331), + [anon_sym_const] = ACTIONS(4331), + [anon_sym_constexpr] = ACTIONS(4331), + [anon_sym_volatile] = ACTIONS(4331), + [anon_sym_restrict] = ACTIONS(4331), + [anon_sym___restrict__] = ACTIONS(4331), + [anon_sym__Atomic] = ACTIONS(4331), + [anon_sym__Noreturn] = ACTIONS(4331), + [anon_sym_noreturn] = ACTIONS(4331), + [anon_sym__Nonnull] = ACTIONS(4331), + [anon_sym_mutable] = ACTIONS(4331), + [anon_sym_constinit] = ACTIONS(4331), + [anon_sym_consteval] = ACTIONS(4331), + [anon_sym_alignas] = ACTIONS(4331), + [anon_sym__Alignas] = ACTIONS(4331), + [sym_primitive_type] = ACTIONS(4331), + [anon_sym_enum] = ACTIONS(4331), + [anon_sym_class] = ACTIONS(4331), + [anon_sym_struct] = ACTIONS(4331), + [anon_sym_union] = ACTIONS(4331), + [anon_sym_typename] = ACTIONS(4331), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4331), + [anon_sym_decltype] = ACTIONS(4331), + [anon_sym_explicit] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_template] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_friend] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_static_assert] = ACTIONS(4331), + [anon_sym_LBRACK_COLON] = ACTIONS(4333), }, [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), + [sym_identifier] = ACTIONS(8982), + [aux_sym_preproc_def_token1] = ACTIONS(8982), + [aux_sym_preproc_if_token1] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8982), + [sym_preproc_directive] = ACTIONS(8982), + [anon_sym_LPAREN2] = ACTIONS(8984), + [anon_sym_TILDE] = ACTIONS(8984), + [anon_sym_STAR] = ACTIONS(8984), + [anon_sym_AMP_AMP] = ACTIONS(8984), + [anon_sym_AMP] = ACTIONS(8982), + [anon_sym_SEMI] = ACTIONS(8984), + [anon_sym___extension__] = ACTIONS(8982), + [anon_sym_typedef] = ACTIONS(8982), + [anon_sym_virtual] = ACTIONS(8982), + [anon_sym_extern] = ACTIONS(8982), + [anon_sym___attribute__] = ACTIONS(8982), + [anon_sym___attribute] = ACTIONS(8982), + [anon_sym_using] = ACTIONS(8982), + [anon_sym_COLON_COLON] = ACTIONS(8984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8984), + [anon_sym___declspec] = ACTIONS(8982), + [anon_sym___based] = ACTIONS(8982), + [anon_sym_RBRACE] = ACTIONS(8984), + [anon_sym_signed] = ACTIONS(8982), + [anon_sym_unsigned] = ACTIONS(8982), + [anon_sym_long] = ACTIONS(8982), + [anon_sym_short] = ACTIONS(8982), + [anon_sym_LBRACK] = ACTIONS(8982), + [anon_sym_static] = ACTIONS(8982), + [anon_sym_register] = ACTIONS(8982), + [anon_sym_inline] = ACTIONS(8982), + [anon_sym___inline] = ACTIONS(8982), + [anon_sym___inline__] = ACTIONS(8982), + [anon_sym___forceinline] = ACTIONS(8982), + [anon_sym_thread_local] = ACTIONS(8982), + [anon_sym___thread] = ACTIONS(8982), + [anon_sym_const] = ACTIONS(8982), + [anon_sym_constexpr] = ACTIONS(8982), + [anon_sym_volatile] = ACTIONS(8982), + [anon_sym_restrict] = ACTIONS(8982), + [anon_sym___restrict__] = ACTIONS(8982), + [anon_sym__Atomic] = ACTIONS(8982), + [anon_sym__Noreturn] = ACTIONS(8982), + [anon_sym_noreturn] = ACTIONS(8982), + [anon_sym__Nonnull] = ACTIONS(8982), + [anon_sym_mutable] = ACTIONS(8982), + [anon_sym_constinit] = ACTIONS(8982), + [anon_sym_consteval] = ACTIONS(8982), + [anon_sym_alignas] = ACTIONS(8982), + [anon_sym__Alignas] = ACTIONS(8982), + [sym_primitive_type] = ACTIONS(8982), + [anon_sym_enum] = ACTIONS(8982), + [anon_sym_class] = ACTIONS(8982), + [anon_sym_struct] = ACTIONS(8982), + [anon_sym_union] = ACTIONS(8982), + [anon_sym_typename] = ACTIONS(8982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8982), + [anon_sym_decltype] = ACTIONS(8982), + [anon_sym_explicit] = ACTIONS(8982), + [anon_sym_private] = ACTIONS(8982), + [anon_sym_template] = ACTIONS(8982), + [anon_sym_operator] = ACTIONS(8982), + [anon_sym_friend] = ACTIONS(8982), + [anon_sym_public] = ACTIONS(8982), + [anon_sym_protected] = ACTIONS(8982), + [anon_sym_static_assert] = ACTIONS(8982), + [anon_sym_LBRACK_COLON] = ACTIONS(8984), }, [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), + [sym_identifier] = ACTIONS(8982), + [aux_sym_preproc_def_token1] = ACTIONS(8982), + [aux_sym_preproc_if_token1] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8982), + [sym_preproc_directive] = ACTIONS(8982), + [anon_sym_LPAREN2] = ACTIONS(8984), + [anon_sym_TILDE] = ACTIONS(8984), + [anon_sym_STAR] = ACTIONS(8984), + [anon_sym_AMP_AMP] = ACTIONS(8984), + [anon_sym_AMP] = ACTIONS(8982), + [anon_sym_SEMI] = ACTIONS(8984), + [anon_sym___extension__] = ACTIONS(8982), + [anon_sym_typedef] = ACTIONS(8982), + [anon_sym_virtual] = ACTIONS(8982), + [anon_sym_extern] = ACTIONS(8982), + [anon_sym___attribute__] = ACTIONS(8982), + [anon_sym___attribute] = ACTIONS(8982), + [anon_sym_using] = ACTIONS(8982), + [anon_sym_COLON_COLON] = ACTIONS(8984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8984), + [anon_sym___declspec] = ACTIONS(8982), + [anon_sym___based] = ACTIONS(8982), + [anon_sym_RBRACE] = ACTIONS(8984), + [anon_sym_signed] = ACTIONS(8982), + [anon_sym_unsigned] = ACTIONS(8982), + [anon_sym_long] = ACTIONS(8982), + [anon_sym_short] = ACTIONS(8982), + [anon_sym_LBRACK] = ACTIONS(8982), + [anon_sym_static] = ACTIONS(8982), + [anon_sym_register] = ACTIONS(8982), + [anon_sym_inline] = ACTIONS(8982), + [anon_sym___inline] = ACTIONS(8982), + [anon_sym___inline__] = ACTIONS(8982), + [anon_sym___forceinline] = ACTIONS(8982), + [anon_sym_thread_local] = ACTIONS(8982), + [anon_sym___thread] = ACTIONS(8982), + [anon_sym_const] = ACTIONS(8982), + [anon_sym_constexpr] = ACTIONS(8982), + [anon_sym_volatile] = ACTIONS(8982), + [anon_sym_restrict] = ACTIONS(8982), + [anon_sym___restrict__] = ACTIONS(8982), + [anon_sym__Atomic] = ACTIONS(8982), + [anon_sym__Noreturn] = ACTIONS(8982), + [anon_sym_noreturn] = ACTIONS(8982), + [anon_sym__Nonnull] = ACTIONS(8982), + [anon_sym_mutable] = ACTIONS(8982), + [anon_sym_constinit] = ACTIONS(8982), + [anon_sym_consteval] = ACTIONS(8982), + [anon_sym_alignas] = ACTIONS(8982), + [anon_sym__Alignas] = ACTIONS(8982), + [sym_primitive_type] = ACTIONS(8982), + [anon_sym_enum] = ACTIONS(8982), + [anon_sym_class] = ACTIONS(8982), + [anon_sym_struct] = ACTIONS(8982), + [anon_sym_union] = ACTIONS(8982), + [anon_sym_typename] = ACTIONS(8982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8982), + [anon_sym_decltype] = ACTIONS(8982), + [anon_sym_explicit] = ACTIONS(8982), + [anon_sym_private] = ACTIONS(8982), + [anon_sym_template] = ACTIONS(8982), + [anon_sym_operator] = ACTIONS(8982), + [anon_sym_friend] = ACTIONS(8982), + [anon_sym_public] = ACTIONS(8982), + [anon_sym_protected] = ACTIONS(8982), + [anon_sym_static_assert] = ACTIONS(8982), + [anon_sym_LBRACK_COLON] = ACTIONS(8984), }, [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), + [sym_identifier] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_private] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_friend] = ACTIONS(3708), + [anon_sym_public] = ACTIONS(3708), + [anon_sym_protected] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), }, [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), + [sym_identifier] = ACTIONS(4343), + [aux_sym_preproc_def_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token2] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4343), + [sym_preproc_directive] = ACTIONS(4343), + [anon_sym_LPAREN2] = ACTIONS(4345), + [anon_sym_TILDE] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym___extension__] = ACTIONS(4343), + [anon_sym_typedef] = ACTIONS(4343), + [anon_sym_virtual] = ACTIONS(4343), + [anon_sym_extern] = ACTIONS(4343), + [anon_sym___attribute__] = ACTIONS(4343), + [anon_sym___attribute] = ACTIONS(4343), + [anon_sym_using] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4345), + [anon_sym___declspec] = ACTIONS(4343), + [anon_sym___based] = ACTIONS(4343), + [anon_sym_signed] = ACTIONS(4343), + [anon_sym_unsigned] = ACTIONS(4343), + [anon_sym_long] = ACTIONS(4343), + [anon_sym_short] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4343), + [anon_sym_static] = ACTIONS(4343), + [anon_sym_register] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym___inline] = ACTIONS(4343), + [anon_sym___inline__] = ACTIONS(4343), + [anon_sym___forceinline] = ACTIONS(4343), + [anon_sym_thread_local] = ACTIONS(4343), + [anon_sym___thread] = ACTIONS(4343), + [anon_sym_const] = ACTIONS(4343), + [anon_sym_constexpr] = ACTIONS(4343), + [anon_sym_volatile] = ACTIONS(4343), + [anon_sym_restrict] = ACTIONS(4343), + [anon_sym___restrict__] = ACTIONS(4343), + [anon_sym__Atomic] = ACTIONS(4343), + [anon_sym__Noreturn] = ACTIONS(4343), + [anon_sym_noreturn] = ACTIONS(4343), + [anon_sym__Nonnull] = ACTIONS(4343), + [anon_sym_mutable] = ACTIONS(4343), + [anon_sym_constinit] = ACTIONS(4343), + [anon_sym_consteval] = ACTIONS(4343), + [anon_sym_alignas] = ACTIONS(4343), + [anon_sym__Alignas] = ACTIONS(4343), + [sym_primitive_type] = ACTIONS(4343), + [anon_sym_enum] = ACTIONS(4343), + [anon_sym_class] = ACTIONS(4343), + [anon_sym_struct] = ACTIONS(4343), + [anon_sym_union] = ACTIONS(4343), + [anon_sym_typename] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4343), + [anon_sym_decltype] = ACTIONS(4343), + [anon_sym_explicit] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_template] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_friend] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_static_assert] = ACTIONS(4343), + [anon_sym_LBRACK_COLON] = ACTIONS(4345), }, [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), + [sym_identifier] = ACTIONS(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token2] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_friend] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), }, [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), + [sym_identifier] = ACTIONS(3788), + [aux_sym_preproc_def_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token2] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3788), + [sym_preproc_directive] = ACTIONS(3788), + [anon_sym_LPAREN2] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_STAR] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_AMP] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(3790), + [anon_sym___extension__] = ACTIONS(3788), + [anon_sym_typedef] = ACTIONS(3788), + [anon_sym_virtual] = ACTIONS(3788), + [anon_sym_extern] = ACTIONS(3788), + [anon_sym___attribute__] = ACTIONS(3788), + [anon_sym___attribute] = ACTIONS(3788), + [anon_sym_using] = ACTIONS(3788), + [anon_sym_COLON_COLON] = ACTIONS(3790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3790), + [anon_sym___declspec] = ACTIONS(3788), + [anon_sym___based] = ACTIONS(3788), + [anon_sym_signed] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3788), + [anon_sym_long] = ACTIONS(3788), + [anon_sym_short] = ACTIONS(3788), + [anon_sym_LBRACK] = ACTIONS(3788), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_register] = ACTIONS(3788), + [anon_sym_inline] = ACTIONS(3788), + [anon_sym___inline] = ACTIONS(3788), + [anon_sym___inline__] = ACTIONS(3788), + [anon_sym___forceinline] = ACTIONS(3788), + [anon_sym_thread_local] = ACTIONS(3788), + [anon_sym___thread] = ACTIONS(3788), + [anon_sym_const] = ACTIONS(3788), + [anon_sym_constexpr] = ACTIONS(3788), + [anon_sym_volatile] = ACTIONS(3788), + [anon_sym_restrict] = ACTIONS(3788), + [anon_sym___restrict__] = ACTIONS(3788), + [anon_sym__Atomic] = ACTIONS(3788), + [anon_sym__Noreturn] = ACTIONS(3788), + [anon_sym_noreturn] = ACTIONS(3788), + [anon_sym__Nonnull] = ACTIONS(3788), + [anon_sym_mutable] = ACTIONS(3788), + [anon_sym_constinit] = ACTIONS(3788), + [anon_sym_consteval] = ACTIONS(3788), + [anon_sym_alignas] = ACTIONS(3788), + [anon_sym__Alignas] = ACTIONS(3788), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_union] = ACTIONS(3788), + [anon_sym_typename] = ACTIONS(3788), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3788), + [anon_sym_decltype] = ACTIONS(3788), + [anon_sym_explicit] = ACTIONS(3788), + [anon_sym_private] = ACTIONS(3788), + [anon_sym_template] = ACTIONS(3788), + [anon_sym_operator] = ACTIONS(3788), + [anon_sym_friend] = ACTIONS(3788), + [anon_sym_public] = ACTIONS(3788), + [anon_sym_protected] = ACTIONS(3788), + [anon_sym_static_assert] = ACTIONS(3788), + [anon_sym_LBRACK_COLON] = ACTIONS(3790), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3644), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7186), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7186), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7186), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7183), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7186), + [anon_sym_GT_GT] = ACTIONS(7183), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON_COLON] = ACTIONS(7186), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(9478), + [anon_sym_unsigned] = ACTIONS(9478), + [anon_sym_long] = ACTIONS(9478), + [anon_sym_short] = ACTIONS(9478), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_const] = ACTIONS(7183), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7183), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_template] = ACTIONS(7183), + [anon_sym_GT2] = ACTIONS(7186), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_LBRACK_COLON] = ACTIONS(7186), }, [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), + [sym_identifier] = ACTIONS(4005), + [aux_sym_preproc_def_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token2] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4005), + [sym_preproc_directive] = ACTIONS(4005), + [anon_sym_LPAREN2] = ACTIONS(4007), + [anon_sym_TILDE] = ACTIONS(4007), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_AMP_AMP] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_SEMI] = ACTIONS(4007), + [anon_sym___extension__] = ACTIONS(4005), + [anon_sym_typedef] = ACTIONS(4005), + [anon_sym_virtual] = ACTIONS(4005), + [anon_sym_extern] = ACTIONS(4005), + [anon_sym___attribute__] = ACTIONS(4005), + [anon_sym___attribute] = ACTIONS(4005), + [anon_sym_using] = ACTIONS(4005), + [anon_sym_COLON_COLON] = ACTIONS(4007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4007), + [anon_sym___declspec] = ACTIONS(4005), + [anon_sym___based] = ACTIONS(4005), + [anon_sym_signed] = ACTIONS(4005), + [anon_sym_unsigned] = ACTIONS(4005), + [anon_sym_long] = ACTIONS(4005), + [anon_sym_short] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4005), + [anon_sym_register] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym___inline] = ACTIONS(4005), + [anon_sym___inline__] = ACTIONS(4005), + [anon_sym___forceinline] = ACTIONS(4005), + [anon_sym_thread_local] = ACTIONS(4005), + [anon_sym___thread] = ACTIONS(4005), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_constexpr] = ACTIONS(4005), + [anon_sym_volatile] = ACTIONS(4005), + [anon_sym_restrict] = ACTIONS(4005), + [anon_sym___restrict__] = ACTIONS(4005), + [anon_sym__Atomic] = ACTIONS(4005), + [anon_sym__Noreturn] = ACTIONS(4005), + [anon_sym_noreturn] = ACTIONS(4005), + [anon_sym__Nonnull] = ACTIONS(4005), + [anon_sym_mutable] = ACTIONS(4005), + [anon_sym_constinit] = ACTIONS(4005), + [anon_sym_consteval] = ACTIONS(4005), + [anon_sym_alignas] = ACTIONS(4005), + [anon_sym__Alignas] = ACTIONS(4005), + [sym_primitive_type] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_class] = ACTIONS(4005), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_typename] = ACTIONS(4005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4005), + [anon_sym_decltype] = ACTIONS(4005), + [anon_sym_explicit] = ACTIONS(4005), + [anon_sym_private] = ACTIONS(4005), + [anon_sym_template] = ACTIONS(4005), + [anon_sym_operator] = ACTIONS(4005), + [anon_sym_friend] = ACTIONS(4005), + [anon_sym_public] = ACTIONS(4005), + [anon_sym_protected] = ACTIONS(4005), + [anon_sym_static_assert] = ACTIONS(4005), + [anon_sym_LBRACK_COLON] = ACTIONS(4007), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(4034), + [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_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_typename] = ACTIONS(4032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4032), + [anon_sym_decltype] = ACTIONS(4032), + [anon_sym_explicit] = ACTIONS(4032), + [anon_sym_private] = ACTIONS(4032), + [anon_sym_template] = ACTIONS(4032), + [anon_sym_operator] = ACTIONS(4032), + [anon_sym_friend] = ACTIONS(4032), + [anon_sym_public] = ACTIONS(4032), + [anon_sym_protected] = ACTIONS(4032), + [anon_sym_static_assert] = ACTIONS(4032), + [anon_sym_LBRACK_COLON] = ACTIONS(4034), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(4034), + [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_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_typename] = ACTIONS(4032), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4032), + [anon_sym_decltype] = ACTIONS(4032), + [anon_sym_explicit] = ACTIONS(4032), + [anon_sym_private] = ACTIONS(4032), + [anon_sym_template] = ACTIONS(4032), + [anon_sym_operator] = ACTIONS(4032), + [anon_sym_friend] = ACTIONS(4032), + [anon_sym_public] = ACTIONS(4032), + [anon_sym_protected] = ACTIONS(4032), + [anon_sym_static_assert] = ACTIONS(4032), + [anon_sym_LBRACK_COLON] = ACTIONS(4034), }, [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), + [sym_identifier] = ACTIONS(4009), + [aux_sym_preproc_def_token1] = ACTIONS(4009), + [aux_sym_preproc_if_token1] = ACTIONS(4009), + [aux_sym_preproc_if_token2] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4009), + [sym_preproc_directive] = ACTIONS(4009), + [anon_sym_LPAREN2] = ACTIONS(4011), + [anon_sym_TILDE] = ACTIONS(4011), + [anon_sym_STAR] = ACTIONS(4011), + [anon_sym_AMP_AMP] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_SEMI] = ACTIONS(4011), + [anon_sym___extension__] = ACTIONS(4009), + [anon_sym_typedef] = ACTIONS(4009), + [anon_sym_virtual] = ACTIONS(4009), + [anon_sym_extern] = ACTIONS(4009), + [anon_sym___attribute__] = ACTIONS(4009), + [anon_sym___attribute] = ACTIONS(4009), + [anon_sym_using] = ACTIONS(4009), + [anon_sym_COLON_COLON] = ACTIONS(4011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4011), + [anon_sym___declspec] = ACTIONS(4009), + [anon_sym___based] = ACTIONS(4009), + [anon_sym_signed] = ACTIONS(4009), + [anon_sym_unsigned] = ACTIONS(4009), + [anon_sym_long] = ACTIONS(4009), + [anon_sym_short] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4009), + [anon_sym_register] = ACTIONS(4009), + [anon_sym_inline] = ACTIONS(4009), + [anon_sym___inline] = ACTIONS(4009), + [anon_sym___inline__] = ACTIONS(4009), + [anon_sym___forceinline] = ACTIONS(4009), + [anon_sym_thread_local] = ACTIONS(4009), + [anon_sym___thread] = ACTIONS(4009), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_constexpr] = ACTIONS(4009), + [anon_sym_volatile] = ACTIONS(4009), + [anon_sym_restrict] = ACTIONS(4009), + [anon_sym___restrict__] = ACTIONS(4009), + [anon_sym__Atomic] = ACTIONS(4009), + [anon_sym__Noreturn] = ACTIONS(4009), + [anon_sym_noreturn] = ACTIONS(4009), + [anon_sym__Nonnull] = ACTIONS(4009), + [anon_sym_mutable] = ACTIONS(4009), + [anon_sym_constinit] = ACTIONS(4009), + [anon_sym_consteval] = ACTIONS(4009), + [anon_sym_alignas] = ACTIONS(4009), + [anon_sym__Alignas] = ACTIONS(4009), + [sym_primitive_type] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_class] = ACTIONS(4009), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_typename] = ACTIONS(4009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4009), + [anon_sym_decltype] = ACTIONS(4009), + [anon_sym_explicit] = ACTIONS(4009), + [anon_sym_private] = ACTIONS(4009), + [anon_sym_template] = ACTIONS(4009), + [anon_sym_operator] = ACTIONS(4009), + [anon_sym_friend] = ACTIONS(4009), + [anon_sym_public] = ACTIONS(4009), + [anon_sym_protected] = ACTIONS(4009), + [anon_sym_static_assert] = ACTIONS(4009), + [anon_sym_LBRACK_COLON] = ACTIONS(4011), }, [STATE(3556)] = { - [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_LT_EQ_GT] = ACTIONS(7777), - [anon_sym_or] = ACTIONS(7777), - [anon_sym_and] = ACTIONS(7777), - [anon_sym_bitor] = ACTIONS(7777), - [anon_sym_xor] = ACTIONS(7777), - [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_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3796), + [sym_identifier] = ACTIONS(7129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7131), + [anon_sym_SLASH] = ACTIONS(7129), + [anon_sym_PERCENT] = ACTIONS(7131), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7129), + [anon_sym_CARET] = ACTIONS(7131), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_EQ_EQ] = ACTIONS(7131), + [anon_sym_BANG_EQ] = ACTIONS(7131), + [anon_sym_GT] = ACTIONS(7129), + [anon_sym_GT_EQ] = ACTIONS(7131), + [anon_sym_LT_EQ] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(7129), + [anon_sym_LT_LT] = ACTIONS(7131), + [anon_sym_GT_GT] = ACTIONS(7131), + [anon_sym___extension__] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7129), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(7217), + [anon_sym_unsigned] = ACTIONS(7217), + [anon_sym_long] = ACTIONS(7217), + [anon_sym_short] = ACTIONS(7217), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_RBRACK] = ACTIONS(7131), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_restrict] = ACTIONS(7129), + [anon_sym___restrict__] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [anon_sym__Noreturn] = ACTIONS(7129), + [anon_sym_noreturn] = ACTIONS(7129), + [anon_sym__Nonnull] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [anon_sym_constinit] = ACTIONS(7129), + [anon_sym_consteval] = ACTIONS(7129), + [anon_sym_alignas] = ACTIONS(7129), + [anon_sym__Alignas] = ACTIONS(7129), + [anon_sym_QMARK] = ACTIONS(7131), + [anon_sym_LT_EQ_GT] = ACTIONS(7131), + [anon_sym_or] = ACTIONS(7129), + [anon_sym_and] = ACTIONS(7129), + [anon_sym_bitor] = ACTIONS(7129), + [anon_sym_xor] = ACTIONS(7129), + [anon_sym_bitand] = ACTIONS(7129), + [anon_sym_not_eq] = ACTIONS(7129), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DOT] = ACTIONS(7129), + [anon_sym_DOT_STAR] = ACTIONS(7131), + [anon_sym_DASH_GT] = ACTIONS(7131), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7129), + [anon_sym_final] = ACTIONS(7129), + [anon_sym_override] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_requires] = ACTIONS(7129), + [anon_sym_LBRACK_COLON] = ACTIONS(7131), }, [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), + [sym_identifier] = ACTIONS(8970), + [aux_sym_preproc_def_token1] = ACTIONS(8970), + [aux_sym_preproc_if_token1] = ACTIONS(8970), + [aux_sym_preproc_if_token2] = ACTIONS(8970), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8970), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8970), + [sym_preproc_directive] = ACTIONS(8970), + [anon_sym_LPAREN2] = ACTIONS(8972), + [anon_sym_TILDE] = ACTIONS(8972), + [anon_sym_STAR] = ACTIONS(8972), + [anon_sym_AMP_AMP] = ACTIONS(8972), + [anon_sym_AMP] = ACTIONS(8970), + [anon_sym_SEMI] = ACTIONS(8972), + [anon_sym___extension__] = ACTIONS(8970), + [anon_sym_typedef] = ACTIONS(8970), + [anon_sym_virtual] = ACTIONS(8970), + [anon_sym_extern] = ACTIONS(8970), + [anon_sym___attribute__] = ACTIONS(8970), + [anon_sym___attribute] = ACTIONS(8970), + [anon_sym_using] = ACTIONS(8970), + [anon_sym_COLON_COLON] = ACTIONS(8972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8972), + [anon_sym___declspec] = ACTIONS(8970), + [anon_sym___based] = ACTIONS(8970), + [anon_sym_signed] = ACTIONS(8970), + [anon_sym_unsigned] = ACTIONS(8970), + [anon_sym_long] = ACTIONS(8970), + [anon_sym_short] = ACTIONS(8970), + [anon_sym_LBRACK] = ACTIONS(8970), + [anon_sym_static] = ACTIONS(8970), + [anon_sym_register] = ACTIONS(8970), + [anon_sym_inline] = ACTIONS(8970), + [anon_sym___inline] = ACTIONS(8970), + [anon_sym___inline__] = ACTIONS(8970), + [anon_sym___forceinline] = ACTIONS(8970), + [anon_sym_thread_local] = ACTIONS(8970), + [anon_sym___thread] = ACTIONS(8970), + [anon_sym_const] = ACTIONS(8970), + [anon_sym_constexpr] = ACTIONS(8970), + [anon_sym_volatile] = ACTIONS(8970), + [anon_sym_restrict] = ACTIONS(8970), + [anon_sym___restrict__] = ACTIONS(8970), + [anon_sym__Atomic] = ACTIONS(8970), + [anon_sym__Noreturn] = ACTIONS(8970), + [anon_sym_noreturn] = ACTIONS(8970), + [anon_sym__Nonnull] = ACTIONS(8970), + [anon_sym_mutable] = ACTIONS(8970), + [anon_sym_constinit] = ACTIONS(8970), + [anon_sym_consteval] = ACTIONS(8970), + [anon_sym_alignas] = ACTIONS(8970), + [anon_sym__Alignas] = ACTIONS(8970), + [sym_primitive_type] = ACTIONS(8970), + [anon_sym_enum] = ACTIONS(8970), + [anon_sym_class] = ACTIONS(8970), + [anon_sym_struct] = ACTIONS(8970), + [anon_sym_union] = ACTIONS(8970), + [anon_sym_typename] = ACTIONS(8970), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8970), + [anon_sym_decltype] = ACTIONS(8970), + [anon_sym_explicit] = ACTIONS(8970), + [anon_sym_private] = ACTIONS(8970), + [anon_sym_template] = ACTIONS(8970), + [anon_sym_operator] = ACTIONS(8970), + [anon_sym_friend] = ACTIONS(8970), + [anon_sym_public] = ACTIONS(8970), + [anon_sym_protected] = ACTIONS(8970), + [anon_sym_static_assert] = ACTIONS(8970), + [anon_sym_LBRACK_COLON] = ACTIONS(8972), }, [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), + [sym_template_argument_list] = STATE(3970), + [sym_identifier] = ACTIONS(7442), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_TILDE] = ACTIONS(7447), + [anon_sym_STAR] = ACTIONS(7447), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(9469), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_virtual] = ACTIONS(7442), + [anon_sym_extern] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_using] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7447), + [anon_sym___declspec] = ACTIONS(7442), + [anon_sym___based] = ACTIONS(7442), + [anon_sym___cdecl] = ACTIONS(7442), + [anon_sym___clrcall] = ACTIONS(7442), + [anon_sym___stdcall] = ACTIONS(7442), + [anon_sym___fastcall] = ACTIONS(7442), + [anon_sym___thiscall] = ACTIONS(7442), + [anon_sym___vectorcall] = ACTIONS(7442), + [anon_sym_signed] = ACTIONS(7442), + [anon_sym_unsigned] = ACTIONS(7442), + [anon_sym_long] = ACTIONS(7442), + [anon_sym_short] = ACTIONS(7442), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_static] = ACTIONS(7442), + [anon_sym_register] = ACTIONS(7442), + [anon_sym_inline] = ACTIONS(7442), + [anon_sym___inline] = ACTIONS(7442), + [anon_sym___inline__] = ACTIONS(7442), + [anon_sym___forceinline] = ACTIONS(7442), + [anon_sym_thread_local] = ACTIONS(7442), + [anon_sym___thread] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [sym_primitive_type] = ACTIONS(7442), + [anon_sym_enum] = ACTIONS(7442), + [anon_sym_class] = ACTIONS(7442), + [anon_sym_struct] = ACTIONS(7442), + [anon_sym_union] = ACTIONS(7442), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_typename] = ACTIONS(7442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7442), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_explicit] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_operator] = ACTIONS(7442), + [anon_sym_friend] = ACTIONS(7442), + [anon_sym_concept] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), }, [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), + [sym_identifier] = ACTIONS(8974), + [aux_sym_preproc_def_token1] = ACTIONS(8974), + [aux_sym_preproc_if_token1] = ACTIONS(8974), + [aux_sym_preproc_if_token2] = ACTIONS(8974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8974), + [sym_preproc_directive] = ACTIONS(8974), + [anon_sym_LPAREN2] = ACTIONS(8976), + [anon_sym_TILDE] = ACTIONS(8976), + [anon_sym_STAR] = ACTIONS(8976), + [anon_sym_AMP_AMP] = ACTIONS(8976), + [anon_sym_AMP] = ACTIONS(8974), + [anon_sym_SEMI] = ACTIONS(8976), + [anon_sym___extension__] = ACTIONS(8974), + [anon_sym_typedef] = ACTIONS(8974), + [anon_sym_virtual] = ACTIONS(8974), + [anon_sym_extern] = ACTIONS(8974), + [anon_sym___attribute__] = ACTIONS(8974), + [anon_sym___attribute] = ACTIONS(8974), + [anon_sym_using] = ACTIONS(8974), + [anon_sym_COLON_COLON] = ACTIONS(8976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8976), + [anon_sym___declspec] = ACTIONS(8974), + [anon_sym___based] = ACTIONS(8974), + [anon_sym_signed] = ACTIONS(8974), + [anon_sym_unsigned] = ACTIONS(8974), + [anon_sym_long] = ACTIONS(8974), + [anon_sym_short] = ACTIONS(8974), + [anon_sym_LBRACK] = ACTIONS(8974), + [anon_sym_static] = ACTIONS(8974), + [anon_sym_register] = ACTIONS(8974), + [anon_sym_inline] = ACTIONS(8974), + [anon_sym___inline] = ACTIONS(8974), + [anon_sym___inline__] = ACTIONS(8974), + [anon_sym___forceinline] = ACTIONS(8974), + [anon_sym_thread_local] = ACTIONS(8974), + [anon_sym___thread] = ACTIONS(8974), + [anon_sym_const] = ACTIONS(8974), + [anon_sym_constexpr] = ACTIONS(8974), + [anon_sym_volatile] = ACTIONS(8974), + [anon_sym_restrict] = ACTIONS(8974), + [anon_sym___restrict__] = ACTIONS(8974), + [anon_sym__Atomic] = ACTIONS(8974), + [anon_sym__Noreturn] = ACTIONS(8974), + [anon_sym_noreturn] = ACTIONS(8974), + [anon_sym__Nonnull] = ACTIONS(8974), + [anon_sym_mutable] = ACTIONS(8974), + [anon_sym_constinit] = ACTIONS(8974), + [anon_sym_consteval] = ACTIONS(8974), + [anon_sym_alignas] = ACTIONS(8974), + [anon_sym__Alignas] = ACTIONS(8974), + [sym_primitive_type] = ACTIONS(8974), + [anon_sym_enum] = ACTIONS(8974), + [anon_sym_class] = ACTIONS(8974), + [anon_sym_struct] = ACTIONS(8974), + [anon_sym_union] = ACTIONS(8974), + [anon_sym_typename] = ACTIONS(8974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8974), + [anon_sym_decltype] = ACTIONS(8974), + [anon_sym_explicit] = ACTIONS(8974), + [anon_sym_private] = ACTIONS(8974), + [anon_sym_template] = ACTIONS(8974), + [anon_sym_operator] = ACTIONS(8974), + [anon_sym_friend] = ACTIONS(8974), + [anon_sym_public] = ACTIONS(8974), + [anon_sym_protected] = ACTIONS(8974), + [anon_sym_static_assert] = ACTIONS(8974), + [anon_sym_LBRACK_COLON] = ACTIONS(8976), }, [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), + [sym_identifier] = ACTIONS(8986), + [aux_sym_preproc_def_token1] = ACTIONS(8986), + [aux_sym_preproc_if_token1] = ACTIONS(8986), + [aux_sym_preproc_if_token2] = ACTIONS(8986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8986), + [sym_preproc_directive] = ACTIONS(8986), + [anon_sym_LPAREN2] = ACTIONS(8988), + [anon_sym_TILDE] = ACTIONS(8988), + [anon_sym_STAR] = ACTIONS(8988), + [anon_sym_AMP_AMP] = ACTIONS(8988), + [anon_sym_AMP] = ACTIONS(8986), + [anon_sym_SEMI] = ACTIONS(8988), + [anon_sym___extension__] = ACTIONS(8986), + [anon_sym_typedef] = ACTIONS(8986), + [anon_sym_virtual] = ACTIONS(8986), + [anon_sym_extern] = ACTIONS(8986), + [anon_sym___attribute__] = ACTIONS(8986), + [anon_sym___attribute] = ACTIONS(8986), + [anon_sym_using] = ACTIONS(8986), + [anon_sym_COLON_COLON] = ACTIONS(8988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8988), + [anon_sym___declspec] = ACTIONS(8986), + [anon_sym___based] = ACTIONS(8986), + [anon_sym_signed] = ACTIONS(8986), + [anon_sym_unsigned] = ACTIONS(8986), + [anon_sym_long] = ACTIONS(8986), + [anon_sym_short] = ACTIONS(8986), + [anon_sym_LBRACK] = ACTIONS(8986), + [anon_sym_static] = ACTIONS(8986), + [anon_sym_register] = ACTIONS(8986), + [anon_sym_inline] = ACTIONS(8986), + [anon_sym___inline] = ACTIONS(8986), + [anon_sym___inline__] = ACTIONS(8986), + [anon_sym___forceinline] = ACTIONS(8986), + [anon_sym_thread_local] = ACTIONS(8986), + [anon_sym___thread] = ACTIONS(8986), + [anon_sym_const] = ACTIONS(8986), + [anon_sym_constexpr] = ACTIONS(8986), + [anon_sym_volatile] = ACTIONS(8986), + [anon_sym_restrict] = ACTIONS(8986), + [anon_sym___restrict__] = ACTIONS(8986), + [anon_sym__Atomic] = ACTIONS(8986), + [anon_sym__Noreturn] = ACTIONS(8986), + [anon_sym_noreturn] = ACTIONS(8986), + [anon_sym__Nonnull] = ACTIONS(8986), + [anon_sym_mutable] = ACTIONS(8986), + [anon_sym_constinit] = ACTIONS(8986), + [anon_sym_consteval] = ACTIONS(8986), + [anon_sym_alignas] = ACTIONS(8986), + [anon_sym__Alignas] = ACTIONS(8986), + [sym_primitive_type] = ACTIONS(8986), + [anon_sym_enum] = ACTIONS(8986), + [anon_sym_class] = ACTIONS(8986), + [anon_sym_struct] = ACTIONS(8986), + [anon_sym_union] = ACTIONS(8986), + [anon_sym_typename] = ACTIONS(8986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8986), + [anon_sym_decltype] = ACTIONS(8986), + [anon_sym_explicit] = ACTIONS(8986), + [anon_sym_private] = ACTIONS(8986), + [anon_sym_template] = ACTIONS(8986), + [anon_sym_operator] = ACTIONS(8986), + [anon_sym_friend] = ACTIONS(8986), + [anon_sym_public] = ACTIONS(8986), + [anon_sym_protected] = ACTIONS(8986), + [anon_sym_static_assert] = ACTIONS(8986), + [anon_sym_LBRACK_COLON] = ACTIONS(8988), }, [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), + [sym_identifier] = ACTIONS(8990), + [aux_sym_preproc_def_token1] = ACTIONS(8990), + [aux_sym_preproc_if_token1] = ACTIONS(8990), + [aux_sym_preproc_if_token2] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8990), + [sym_preproc_directive] = ACTIONS(8990), + [anon_sym_LPAREN2] = ACTIONS(8992), + [anon_sym_TILDE] = ACTIONS(8992), + [anon_sym_STAR] = ACTIONS(8992), + [anon_sym_AMP_AMP] = ACTIONS(8992), + [anon_sym_AMP] = ACTIONS(8990), + [anon_sym_SEMI] = ACTIONS(8992), + [anon_sym___extension__] = ACTIONS(8990), + [anon_sym_typedef] = ACTIONS(8990), + [anon_sym_virtual] = ACTIONS(8990), + [anon_sym_extern] = ACTIONS(8990), + [anon_sym___attribute__] = ACTIONS(8990), + [anon_sym___attribute] = ACTIONS(8990), + [anon_sym_using] = ACTIONS(8990), + [anon_sym_COLON_COLON] = ACTIONS(8992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8992), + [anon_sym___declspec] = ACTIONS(8990), + [anon_sym___based] = ACTIONS(8990), + [anon_sym_signed] = ACTIONS(8990), + [anon_sym_unsigned] = ACTIONS(8990), + [anon_sym_long] = ACTIONS(8990), + [anon_sym_short] = ACTIONS(8990), + [anon_sym_LBRACK] = ACTIONS(8990), + [anon_sym_static] = ACTIONS(8990), + [anon_sym_register] = ACTIONS(8990), + [anon_sym_inline] = ACTIONS(8990), + [anon_sym___inline] = ACTIONS(8990), + [anon_sym___inline__] = ACTIONS(8990), + [anon_sym___forceinline] = ACTIONS(8990), + [anon_sym_thread_local] = ACTIONS(8990), + [anon_sym___thread] = ACTIONS(8990), + [anon_sym_const] = ACTIONS(8990), + [anon_sym_constexpr] = ACTIONS(8990), + [anon_sym_volatile] = ACTIONS(8990), + [anon_sym_restrict] = ACTIONS(8990), + [anon_sym___restrict__] = ACTIONS(8990), + [anon_sym__Atomic] = ACTIONS(8990), + [anon_sym__Noreturn] = ACTIONS(8990), + [anon_sym_noreturn] = ACTIONS(8990), + [anon_sym__Nonnull] = ACTIONS(8990), + [anon_sym_mutable] = ACTIONS(8990), + [anon_sym_constinit] = ACTIONS(8990), + [anon_sym_consteval] = ACTIONS(8990), + [anon_sym_alignas] = ACTIONS(8990), + [anon_sym__Alignas] = ACTIONS(8990), + [sym_primitive_type] = ACTIONS(8990), + [anon_sym_enum] = ACTIONS(8990), + [anon_sym_class] = ACTIONS(8990), + [anon_sym_struct] = ACTIONS(8990), + [anon_sym_union] = ACTIONS(8990), + [anon_sym_typename] = ACTIONS(8990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8990), + [anon_sym_decltype] = ACTIONS(8990), + [anon_sym_explicit] = ACTIONS(8990), + [anon_sym_private] = ACTIONS(8990), + [anon_sym_template] = ACTIONS(8990), + [anon_sym_operator] = ACTIONS(8990), + [anon_sym_friend] = ACTIONS(8990), + [anon_sym_public] = ACTIONS(8990), + [anon_sym_protected] = ACTIONS(8990), + [anon_sym_static_assert] = ACTIONS(8990), + [anon_sym_LBRACK_COLON] = ACTIONS(8992), }, [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), + [sym_identifier] = ACTIONS(8994), + [aux_sym_preproc_def_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token2] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8994), + [sym_preproc_directive] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8996), + [anon_sym_TILDE] = ACTIONS(8996), + [anon_sym_STAR] = ACTIONS(8996), + [anon_sym_AMP_AMP] = ACTIONS(8996), + [anon_sym_AMP] = ACTIONS(8994), + [anon_sym_SEMI] = ACTIONS(8996), + [anon_sym___extension__] = ACTIONS(8994), + [anon_sym_typedef] = ACTIONS(8994), + [anon_sym_virtual] = ACTIONS(8994), + [anon_sym_extern] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8994), + [anon_sym___attribute] = ACTIONS(8994), + [anon_sym_using] = ACTIONS(8994), + [anon_sym_COLON_COLON] = ACTIONS(8996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8996), + [anon_sym___declspec] = ACTIONS(8994), + [anon_sym___based] = ACTIONS(8994), + [anon_sym_signed] = ACTIONS(8994), + [anon_sym_unsigned] = ACTIONS(8994), + [anon_sym_long] = ACTIONS(8994), + [anon_sym_short] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_static] = ACTIONS(8994), + [anon_sym_register] = ACTIONS(8994), + [anon_sym_inline] = ACTIONS(8994), + [anon_sym___inline] = ACTIONS(8994), + [anon_sym___inline__] = ACTIONS(8994), + [anon_sym___forceinline] = ACTIONS(8994), + [anon_sym_thread_local] = ACTIONS(8994), + [anon_sym___thread] = ACTIONS(8994), + [anon_sym_const] = ACTIONS(8994), + [anon_sym_constexpr] = ACTIONS(8994), + [anon_sym_volatile] = ACTIONS(8994), + [anon_sym_restrict] = ACTIONS(8994), + [anon_sym___restrict__] = ACTIONS(8994), + [anon_sym__Atomic] = ACTIONS(8994), + [anon_sym__Noreturn] = ACTIONS(8994), + [anon_sym_noreturn] = ACTIONS(8994), + [anon_sym__Nonnull] = ACTIONS(8994), + [anon_sym_mutable] = ACTIONS(8994), + [anon_sym_constinit] = ACTIONS(8994), + [anon_sym_consteval] = ACTIONS(8994), + [anon_sym_alignas] = ACTIONS(8994), + [anon_sym__Alignas] = ACTIONS(8994), + [sym_primitive_type] = ACTIONS(8994), + [anon_sym_enum] = ACTIONS(8994), + [anon_sym_class] = ACTIONS(8994), + [anon_sym_struct] = ACTIONS(8994), + [anon_sym_union] = ACTIONS(8994), + [anon_sym_typename] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8994), + [anon_sym_decltype] = ACTIONS(8994), + [anon_sym_explicit] = ACTIONS(8994), + [anon_sym_private] = ACTIONS(8994), + [anon_sym_template] = ACTIONS(8994), + [anon_sym_operator] = ACTIONS(8994), + [anon_sym_friend] = ACTIONS(8994), + [anon_sym_public] = ACTIONS(8994), + [anon_sym_protected] = ACTIONS(8994), + [anon_sym_static_assert] = ACTIONS(8994), + [anon_sym_LBRACK_COLON] = ACTIONS(8996), }, [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), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_DASH_GT_STAR] = ACTIONS(6598), + [sym_identifier] = ACTIONS(8994), + [aux_sym_preproc_def_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token2] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8994), + [sym_preproc_directive] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8996), + [anon_sym_TILDE] = ACTIONS(8996), + [anon_sym_STAR] = ACTIONS(8996), + [anon_sym_AMP_AMP] = ACTIONS(8996), + [anon_sym_AMP] = ACTIONS(8994), + [anon_sym_SEMI] = ACTIONS(8996), + [anon_sym___extension__] = ACTIONS(8994), + [anon_sym_typedef] = ACTIONS(8994), + [anon_sym_virtual] = ACTIONS(8994), + [anon_sym_extern] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8994), + [anon_sym___attribute] = ACTIONS(8994), + [anon_sym_using] = ACTIONS(8994), + [anon_sym_COLON_COLON] = ACTIONS(8996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8996), + [anon_sym___declspec] = ACTIONS(8994), + [anon_sym___based] = ACTIONS(8994), + [anon_sym_signed] = ACTIONS(8994), + [anon_sym_unsigned] = ACTIONS(8994), + [anon_sym_long] = ACTIONS(8994), + [anon_sym_short] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_static] = ACTIONS(8994), + [anon_sym_register] = ACTIONS(8994), + [anon_sym_inline] = ACTIONS(8994), + [anon_sym___inline] = ACTIONS(8994), + [anon_sym___inline__] = ACTIONS(8994), + [anon_sym___forceinline] = ACTIONS(8994), + [anon_sym_thread_local] = ACTIONS(8994), + [anon_sym___thread] = ACTIONS(8994), + [anon_sym_const] = ACTIONS(8994), + [anon_sym_constexpr] = ACTIONS(8994), + [anon_sym_volatile] = ACTIONS(8994), + [anon_sym_restrict] = ACTIONS(8994), + [anon_sym___restrict__] = ACTIONS(8994), + [anon_sym__Atomic] = ACTIONS(8994), + [anon_sym__Noreturn] = ACTIONS(8994), + [anon_sym_noreturn] = ACTIONS(8994), + [anon_sym__Nonnull] = ACTIONS(8994), + [anon_sym_mutable] = ACTIONS(8994), + [anon_sym_constinit] = ACTIONS(8994), + [anon_sym_consteval] = ACTIONS(8994), + [anon_sym_alignas] = ACTIONS(8994), + [anon_sym__Alignas] = ACTIONS(8994), + [sym_primitive_type] = ACTIONS(8994), + [anon_sym_enum] = ACTIONS(8994), + [anon_sym_class] = ACTIONS(8994), + [anon_sym_struct] = ACTIONS(8994), + [anon_sym_union] = ACTIONS(8994), + [anon_sym_typename] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8994), + [anon_sym_decltype] = ACTIONS(8994), + [anon_sym_explicit] = ACTIONS(8994), + [anon_sym_private] = ACTIONS(8994), + [anon_sym_template] = ACTIONS(8994), + [anon_sym_operator] = ACTIONS(8994), + [anon_sym_friend] = ACTIONS(8994), + [anon_sym_public] = ACTIONS(8994), + [anon_sym_protected] = ACTIONS(8994), + [anon_sym_static_assert] = ACTIONS(8994), + [anon_sym_LBRACK_COLON] = ACTIONS(8996), }, [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), - [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_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_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), + [sym_identifier] = ACTIONS(8994), + [aux_sym_preproc_def_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token2] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8994), + [sym_preproc_directive] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8996), + [anon_sym_TILDE] = ACTIONS(8996), + [anon_sym_STAR] = ACTIONS(8996), + [anon_sym_AMP_AMP] = ACTIONS(8996), + [anon_sym_AMP] = ACTIONS(8994), + [anon_sym_SEMI] = ACTIONS(8996), + [anon_sym___extension__] = ACTIONS(8994), + [anon_sym_typedef] = ACTIONS(8994), + [anon_sym_virtual] = ACTIONS(8994), + [anon_sym_extern] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8994), + [anon_sym___attribute] = ACTIONS(8994), + [anon_sym_using] = ACTIONS(8994), + [anon_sym_COLON_COLON] = ACTIONS(8996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8996), + [anon_sym___declspec] = ACTIONS(8994), + [anon_sym___based] = ACTIONS(8994), + [anon_sym_signed] = ACTIONS(8994), + [anon_sym_unsigned] = ACTIONS(8994), + [anon_sym_long] = ACTIONS(8994), + [anon_sym_short] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_static] = ACTIONS(8994), + [anon_sym_register] = ACTIONS(8994), + [anon_sym_inline] = ACTIONS(8994), + [anon_sym___inline] = ACTIONS(8994), + [anon_sym___inline__] = ACTIONS(8994), + [anon_sym___forceinline] = ACTIONS(8994), + [anon_sym_thread_local] = ACTIONS(8994), + [anon_sym___thread] = ACTIONS(8994), + [anon_sym_const] = ACTIONS(8994), + [anon_sym_constexpr] = ACTIONS(8994), + [anon_sym_volatile] = ACTIONS(8994), + [anon_sym_restrict] = ACTIONS(8994), + [anon_sym___restrict__] = ACTIONS(8994), + [anon_sym__Atomic] = ACTIONS(8994), + [anon_sym__Noreturn] = ACTIONS(8994), + [anon_sym_noreturn] = ACTIONS(8994), + [anon_sym__Nonnull] = ACTIONS(8994), + [anon_sym_mutable] = ACTIONS(8994), + [anon_sym_constinit] = ACTIONS(8994), + [anon_sym_consteval] = ACTIONS(8994), + [anon_sym_alignas] = ACTIONS(8994), + [anon_sym__Alignas] = ACTIONS(8994), + [sym_primitive_type] = ACTIONS(8994), + [anon_sym_enum] = ACTIONS(8994), + [anon_sym_class] = ACTIONS(8994), + [anon_sym_struct] = ACTIONS(8994), + [anon_sym_union] = ACTIONS(8994), + [anon_sym_typename] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8994), + [anon_sym_decltype] = ACTIONS(8994), + [anon_sym_explicit] = ACTIONS(8994), + [anon_sym_private] = ACTIONS(8994), + [anon_sym_template] = ACTIONS(8994), + [anon_sym_operator] = ACTIONS(8994), + [anon_sym_friend] = ACTIONS(8994), + [anon_sym_public] = ACTIONS(8994), + [anon_sym_protected] = ACTIONS(8994), + [anon_sym_static_assert] = ACTIONS(8994), + [anon_sym_LBRACK_COLON] = ACTIONS(8996), }, [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), + [sym_identifier] = ACTIONS(8990), + [aux_sym_preproc_def_token1] = ACTIONS(8990), + [aux_sym_preproc_if_token1] = ACTIONS(8990), + [aux_sym_preproc_if_token2] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8990), + [sym_preproc_directive] = ACTIONS(8990), + [anon_sym_LPAREN2] = ACTIONS(8992), + [anon_sym_TILDE] = ACTIONS(8992), + [anon_sym_STAR] = ACTIONS(8992), + [anon_sym_AMP_AMP] = ACTIONS(8992), + [anon_sym_AMP] = ACTIONS(8990), + [anon_sym_SEMI] = ACTIONS(8992), + [anon_sym___extension__] = ACTIONS(8990), + [anon_sym_typedef] = ACTIONS(8990), + [anon_sym_virtual] = ACTIONS(8990), + [anon_sym_extern] = ACTIONS(8990), + [anon_sym___attribute__] = ACTIONS(8990), + [anon_sym___attribute] = ACTIONS(8990), + [anon_sym_using] = ACTIONS(8990), + [anon_sym_COLON_COLON] = ACTIONS(8992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8992), + [anon_sym___declspec] = ACTIONS(8990), + [anon_sym___based] = ACTIONS(8990), + [anon_sym_signed] = ACTIONS(8990), + [anon_sym_unsigned] = ACTIONS(8990), + [anon_sym_long] = ACTIONS(8990), + [anon_sym_short] = ACTIONS(8990), + [anon_sym_LBRACK] = ACTIONS(8990), + [anon_sym_static] = ACTIONS(8990), + [anon_sym_register] = ACTIONS(8990), + [anon_sym_inline] = ACTIONS(8990), + [anon_sym___inline] = ACTIONS(8990), + [anon_sym___inline__] = ACTIONS(8990), + [anon_sym___forceinline] = ACTIONS(8990), + [anon_sym_thread_local] = ACTIONS(8990), + [anon_sym___thread] = ACTIONS(8990), + [anon_sym_const] = ACTIONS(8990), + [anon_sym_constexpr] = ACTIONS(8990), + [anon_sym_volatile] = ACTIONS(8990), + [anon_sym_restrict] = ACTIONS(8990), + [anon_sym___restrict__] = ACTIONS(8990), + [anon_sym__Atomic] = ACTIONS(8990), + [anon_sym__Noreturn] = ACTIONS(8990), + [anon_sym_noreturn] = ACTIONS(8990), + [anon_sym__Nonnull] = ACTIONS(8990), + [anon_sym_mutable] = ACTIONS(8990), + [anon_sym_constinit] = ACTIONS(8990), + [anon_sym_consteval] = ACTIONS(8990), + [anon_sym_alignas] = ACTIONS(8990), + [anon_sym__Alignas] = ACTIONS(8990), + [sym_primitive_type] = ACTIONS(8990), + [anon_sym_enum] = ACTIONS(8990), + [anon_sym_class] = ACTIONS(8990), + [anon_sym_struct] = ACTIONS(8990), + [anon_sym_union] = ACTIONS(8990), + [anon_sym_typename] = ACTIONS(8990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8990), + [anon_sym_decltype] = ACTIONS(8990), + [anon_sym_explicit] = ACTIONS(8990), + [anon_sym_private] = ACTIONS(8990), + [anon_sym_template] = ACTIONS(8990), + [anon_sym_operator] = ACTIONS(8990), + [anon_sym_friend] = ACTIONS(8990), + [anon_sym_public] = ACTIONS(8990), + [anon_sym_protected] = ACTIONS(8990), + [anon_sym_static_assert] = ACTIONS(8990), + [anon_sym_LBRACK_COLON] = ACTIONS(8992), }, [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), + [sym_identifier] = ACTIONS(4060), + [aux_sym_preproc_def_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token2] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4060), + [sym_preproc_directive] = ACTIONS(4060), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym___extension__] = ACTIONS(4060), + [anon_sym_typedef] = ACTIONS(4060), + [anon_sym_virtual] = ACTIONS(4060), + [anon_sym_extern] = ACTIONS(4060), + [anon_sym___attribute__] = ACTIONS(4060), + [anon_sym___attribute] = ACTIONS(4060), + [anon_sym_using] = ACTIONS(4060), + [anon_sym_COLON_COLON] = ACTIONS(4062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4062), + [anon_sym___declspec] = ACTIONS(4060), + [anon_sym___based] = ACTIONS(4060), + [anon_sym_signed] = ACTIONS(4060), + [anon_sym_unsigned] = ACTIONS(4060), + [anon_sym_long] = ACTIONS(4060), + [anon_sym_short] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_static] = ACTIONS(4060), + [anon_sym_register] = ACTIONS(4060), + [anon_sym_inline] = ACTIONS(4060), + [anon_sym___inline] = ACTIONS(4060), + [anon_sym___inline__] = ACTIONS(4060), + [anon_sym___forceinline] = ACTIONS(4060), + [anon_sym_thread_local] = ACTIONS(4060), + [anon_sym___thread] = ACTIONS(4060), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_constexpr] = ACTIONS(4060), + [anon_sym_volatile] = ACTIONS(4060), + [anon_sym_restrict] = ACTIONS(4060), + [anon_sym___restrict__] = ACTIONS(4060), + [anon_sym__Atomic] = ACTIONS(4060), + [anon_sym__Noreturn] = ACTIONS(4060), + [anon_sym_noreturn] = ACTIONS(4060), + [anon_sym__Nonnull] = ACTIONS(4060), + [anon_sym_mutable] = ACTIONS(4060), + [anon_sym_constinit] = ACTIONS(4060), + [anon_sym_consteval] = ACTIONS(4060), + [anon_sym_alignas] = ACTIONS(4060), + [anon_sym__Alignas] = ACTIONS(4060), + [sym_primitive_type] = ACTIONS(4060), + [anon_sym_enum] = ACTIONS(4060), + [anon_sym_class] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4060), + [anon_sym_union] = ACTIONS(4060), + [anon_sym_typename] = ACTIONS(4060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4060), + [anon_sym_decltype] = ACTIONS(4060), + [anon_sym_explicit] = ACTIONS(4060), + [anon_sym_private] = ACTIONS(4060), + [anon_sym_template] = ACTIONS(4060), + [anon_sym_operator] = ACTIONS(4060), + [anon_sym_friend] = ACTIONS(4060), + [anon_sym_public] = ACTIONS(4060), + [anon_sym_protected] = ACTIONS(4060), + [anon_sym_static_assert] = ACTIONS(4060), + [anon_sym_LBRACK_COLON] = ACTIONS(4062), }, [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), + [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(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), + [sym_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym__function_attributes_end] = STATE(5083), + [sym__function_postfix] = STATE(6229), + [sym_trailing_return_type] = STATE(5130), + [sym_requires_clause] = STATE(6229), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [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(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8870), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_requires] = ACTIONS(7117), + [anon_sym_DASH_GT_STAR] = ACTIONS(7623), }, [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), + [sym_ms_based_modifier] = STATE(12437), + [sym_ms_unaligned_ptr_modifier] = STATE(7214), + [sym_ms_pointer_modifier] = STATE(3602), + [sym__type_declarator] = STATE(9430), + [sym__abstract_declarator] = STATE(10124), + [sym_parenthesized_type_declarator] = STATE(3501), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(3501), + [sym_pointer_type_declarator] = STATE(3478), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(3501), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(3501), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4683), + [sym_alignas_qualifier] = STATE(2649), + [sym_parameter_list] = STATE(5186), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(3501), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9625), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4683), + [aux_sym_pointer_declarator_repeat1] = STATE(3602), + [sym_identifier] = ACTIONS(8908), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(6000), + [anon_sym_STAR] = ACTIONS(6002), + [anon_sym_AMP_AMP] = ACTIONS(6004), + [anon_sym_AMP] = ACTIONS(6006), + [anon_sym___extension__] = ACTIONS(9115), + [anon_sym_COLON_COLON] = ACTIONS(9481), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(8922), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8922), + [sym_ms_signed_ptr_modifier] = ACTIONS(8922), + [anon_sym__unaligned] = ACTIONS(8924), + [anon_sym___unaligned] = ACTIONS(8924), + [anon_sym_signed] = ACTIONS(9119), + [anon_sym_unsigned] = ACTIONS(9119), + [anon_sym_long] = ACTIONS(9119), + [anon_sym_short] = ACTIONS(9119), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_const] = ACTIONS(9115), + [anon_sym_constexpr] = ACTIONS(9115), + [anon_sym_volatile] = ACTIONS(9115), + [anon_sym_restrict] = ACTIONS(9115), + [anon_sym___restrict__] = ACTIONS(9115), + [anon_sym__Atomic] = ACTIONS(9115), + [anon_sym__Noreturn] = ACTIONS(9115), + [anon_sym_noreturn] = ACTIONS(9115), + [anon_sym__Nonnull] = ACTIONS(9115), + [anon_sym_mutable] = ACTIONS(9115), + [anon_sym_constinit] = ACTIONS(9115), + [anon_sym_consteval] = ACTIONS(9115), + [anon_sym_alignas] = ACTIONS(9121), + [anon_sym__Alignas] = ACTIONS(9121), + [sym_primitive_type] = ACTIONS(9123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(3658), + [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_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_typename] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_friend] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), }, [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), + [sym_identifier] = ACTIONS(4072), + [aux_sym_preproc_def_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token2] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4072), + [sym_preproc_directive] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4072), + [anon_sym_typedef] = ACTIONS(4072), + [anon_sym_virtual] = ACTIONS(4072), + [anon_sym_extern] = ACTIONS(4072), + [anon_sym___attribute__] = ACTIONS(4072), + [anon_sym___attribute] = ACTIONS(4072), + [anon_sym_using] = ACTIONS(4072), + [anon_sym_COLON_COLON] = ACTIONS(4074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4074), + [anon_sym___declspec] = ACTIONS(4072), + [anon_sym___based] = ACTIONS(4072), + [anon_sym_signed] = ACTIONS(4072), + [anon_sym_unsigned] = ACTIONS(4072), + [anon_sym_long] = ACTIONS(4072), + [anon_sym_short] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_static] = ACTIONS(4072), + [anon_sym_register] = ACTIONS(4072), + [anon_sym_inline] = ACTIONS(4072), + [anon_sym___inline] = ACTIONS(4072), + [anon_sym___inline__] = ACTIONS(4072), + [anon_sym___forceinline] = ACTIONS(4072), + [anon_sym_thread_local] = ACTIONS(4072), + [anon_sym___thread] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4072), + [anon_sym_constexpr] = ACTIONS(4072), + [anon_sym_volatile] = ACTIONS(4072), + [anon_sym_restrict] = ACTIONS(4072), + [anon_sym___restrict__] = ACTIONS(4072), + [anon_sym__Atomic] = ACTIONS(4072), + [anon_sym__Noreturn] = ACTIONS(4072), + [anon_sym_noreturn] = ACTIONS(4072), + [anon_sym__Nonnull] = ACTIONS(4072), + [anon_sym_mutable] = ACTIONS(4072), + [anon_sym_constinit] = ACTIONS(4072), + [anon_sym_consteval] = ACTIONS(4072), + [anon_sym_alignas] = ACTIONS(4072), + [anon_sym__Alignas] = ACTIONS(4072), + [sym_primitive_type] = ACTIONS(4072), + [anon_sym_enum] = ACTIONS(4072), + [anon_sym_class] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_union] = ACTIONS(4072), + [anon_sym_typename] = ACTIONS(4072), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4072), + [anon_sym_decltype] = ACTIONS(4072), + [anon_sym_explicit] = ACTIONS(4072), + [anon_sym_private] = ACTIONS(4072), + [anon_sym_template] = ACTIONS(4072), + [anon_sym_operator] = ACTIONS(4072), + [anon_sym_friend] = ACTIONS(4072), + [anon_sym_public] = ACTIONS(4072), + [anon_sym_protected] = ACTIONS(4072), + [anon_sym_static_assert] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4074), }, [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), + [sym_identifier] = ACTIONS(9483), + [anon_sym_LPAREN2] = ACTIONS(9485), + [anon_sym_TILDE] = ACTIONS(9485), + [anon_sym_STAR] = ACTIONS(9485), + [anon_sym_AMP_AMP] = ACTIONS(9485), + [anon_sym_AMP] = ACTIONS(9483), + [anon_sym___extension__] = ACTIONS(9483), + [anon_sym_virtual] = ACTIONS(9483), + [anon_sym_extern] = ACTIONS(9483), + [anon_sym___attribute__] = ACTIONS(9483), + [anon_sym___attribute] = ACTIONS(9483), + [anon_sym_using] = ACTIONS(9483), + [anon_sym_COLON_COLON] = ACTIONS(9485), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9485), + [anon_sym___declspec] = ACTIONS(9483), + [anon_sym___based] = ACTIONS(9483), + [anon_sym___cdecl] = ACTIONS(9483), + [anon_sym___clrcall] = ACTIONS(9483), + [anon_sym___stdcall] = ACTIONS(9483), + [anon_sym___fastcall] = ACTIONS(9483), + [anon_sym___thiscall] = ACTIONS(9483), + [anon_sym___vectorcall] = ACTIONS(9483), + [anon_sym_LBRACE] = ACTIONS(9485), + [anon_sym_signed] = ACTIONS(9483), + [anon_sym_unsigned] = ACTIONS(9483), + [anon_sym_long] = ACTIONS(9483), + [anon_sym_short] = ACTIONS(9483), + [anon_sym_LBRACK] = ACTIONS(9483), + [anon_sym_static] = ACTIONS(9483), + [anon_sym_register] = ACTIONS(9483), + [anon_sym_inline] = ACTIONS(9483), + [anon_sym___inline] = ACTIONS(9483), + [anon_sym___inline__] = ACTIONS(9483), + [anon_sym___forceinline] = ACTIONS(9483), + [anon_sym_thread_local] = ACTIONS(9483), + [anon_sym___thread] = ACTIONS(9483), + [anon_sym_const] = ACTIONS(9483), + [anon_sym_constexpr] = ACTIONS(9483), + [anon_sym_volatile] = ACTIONS(9483), + [anon_sym_restrict] = ACTIONS(9483), + [anon_sym___restrict__] = ACTIONS(9483), + [anon_sym__Atomic] = ACTIONS(9483), + [anon_sym__Noreturn] = ACTIONS(9483), + [anon_sym_noreturn] = ACTIONS(9483), + [anon_sym__Nonnull] = ACTIONS(9483), + [anon_sym_mutable] = ACTIONS(9483), + [anon_sym_constinit] = ACTIONS(9483), + [anon_sym_consteval] = ACTIONS(9483), + [anon_sym_alignas] = ACTIONS(9483), + [anon_sym__Alignas] = ACTIONS(9483), + [sym_primitive_type] = ACTIONS(9483), + [anon_sym_enum] = ACTIONS(9483), + [anon_sym_class] = ACTIONS(9483), + [anon_sym_struct] = ACTIONS(9483), + [anon_sym_union] = ACTIONS(9483), + [anon_sym_typename] = ACTIONS(9483), + [anon_sym_DASH_GT] = ACTIONS(9485), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9483), + [anon_sym_decltype] = ACTIONS(9483), + [anon_sym_explicit] = ACTIONS(9483), + [anon_sym_template] = ACTIONS(9483), + [anon_sym_operator] = ACTIONS(9483), + [anon_sym_friend] = ACTIONS(9483), + [anon_sym_noexcept] = ACTIONS(9483), + [anon_sym_throw] = ACTIONS(9483), + [anon_sym_concept] = ACTIONS(9483), + [anon_sym_requires] = ACTIONS(9483), + [anon_sym_LBRACK_COLON] = ACTIONS(9485), }, [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), + [sym_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(3799), + [sym_identifier] = ACTIONS(7129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7131), + [anon_sym_SLASH] = ACTIONS(7129), + [anon_sym_PERCENT] = ACTIONS(7131), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7129), + [anon_sym_CARET] = ACTIONS(7131), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_EQ_EQ] = ACTIONS(7131), + [anon_sym_BANG_EQ] = ACTIONS(7131), + [anon_sym_GT] = ACTIONS(7129), + [anon_sym_GT_EQ] = ACTIONS(7129), + [anon_sym_LT_EQ] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(7129), + [anon_sym_LT_LT] = ACTIONS(7131), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym___extension__] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7129), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(7195), + [anon_sym_unsigned] = ACTIONS(7195), + [anon_sym_long] = ACTIONS(7195), + [anon_sym_short] = ACTIONS(7195), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_const] = ACTIONS(7129), + [anon_sym_constexpr] = ACTIONS(7129), + [anon_sym_volatile] = ACTIONS(7129), + [anon_sym_restrict] = ACTIONS(7129), + [anon_sym___restrict__] = ACTIONS(7129), + [anon_sym__Atomic] = ACTIONS(7129), + [anon_sym__Noreturn] = ACTIONS(7129), + [anon_sym_noreturn] = ACTIONS(7129), + [anon_sym__Nonnull] = ACTIONS(7129), + [anon_sym_mutable] = ACTIONS(7129), + [anon_sym_constinit] = ACTIONS(7129), + [anon_sym_consteval] = ACTIONS(7129), + [anon_sym_alignas] = ACTIONS(7129), + [anon_sym__Alignas] = ACTIONS(7129), + [anon_sym_QMARK] = ACTIONS(7131), + [anon_sym_LT_EQ_GT] = ACTIONS(7131), + [anon_sym_or] = ACTIONS(7129), + [anon_sym_and] = ACTIONS(7129), + [anon_sym_bitor] = ACTIONS(7129), + [anon_sym_xor] = ACTIONS(7129), + [anon_sym_bitand] = ACTIONS(7129), + [anon_sym_not_eq] = ACTIONS(7129), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DOT] = ACTIONS(7129), + [anon_sym_DOT_STAR] = ACTIONS(7131), + [anon_sym_DASH_GT] = ACTIONS(7131), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7129), + [anon_sym_final] = ACTIONS(7129), + [anon_sym_override] = ACTIONS(7129), + [anon_sym_template] = ACTIONS(7129), + [anon_sym_GT2] = ACTIONS(7131), + [anon_sym_requires] = ACTIONS(7129), + [anon_sym_LBRACK_COLON] = ACTIONS(7131), }, [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), + [sym_identifier] = ACTIONS(3977), + [aux_sym_preproc_def_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token2] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3977), + [sym_preproc_directive] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_TILDE] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_typedef] = ACTIONS(3977), + [anon_sym_virtual] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_using] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym___based] = ACTIONS(3977), + [anon_sym_signed] = ACTIONS(3977), + [anon_sym_unsigned] = ACTIONS(3977), + [anon_sym_long] = ACTIONS(3977), + [anon_sym_short] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_mutable] = ACTIONS(3977), + [anon_sym_constinit] = ACTIONS(3977), + [anon_sym_consteval] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [sym_primitive_type] = ACTIONS(3977), + [anon_sym_enum] = ACTIONS(3977), + [anon_sym_class] = ACTIONS(3977), + [anon_sym_struct] = ACTIONS(3977), + [anon_sym_union] = ACTIONS(3977), + [anon_sym_typename] = ACTIONS(3977), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3977), + [anon_sym_decltype] = ACTIONS(3977), + [anon_sym_explicit] = ACTIONS(3977), + [anon_sym_private] = ACTIONS(3977), + [anon_sym_template] = ACTIONS(3977), + [anon_sym_operator] = ACTIONS(3977), + [anon_sym_friend] = ACTIONS(3977), + [anon_sym_public] = ACTIONS(3977), + [anon_sym_protected] = ACTIONS(3977), + [anon_sym_static_assert] = ACTIONS(3977), + [anon_sym_LBRACK_COLON] = ACTIONS(3979), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(4078), + [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_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_typename] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4076), + [anon_sym_decltype] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_private] = ACTIONS(4076), + [anon_sym_template] = ACTIONS(4076), + [anon_sym_operator] = ACTIONS(4076), + [anon_sym_friend] = ACTIONS(4076), + [anon_sym_public] = ACTIONS(4076), + [anon_sym_protected] = ACTIONS(4076), + [anon_sym_static_assert] = ACTIONS(4076), + [anon_sym_LBRACK_COLON] = ACTIONS(4078), }, [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), + [sym_identifier] = ACTIONS(9105), + [aux_sym_preproc_def_token1] = ACTIONS(9105), + [aux_sym_preproc_if_token1] = ACTIONS(9105), + [aux_sym_preproc_if_token2] = ACTIONS(9105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9105), + [sym_preproc_directive] = ACTIONS(9105), + [anon_sym_LPAREN2] = ACTIONS(9107), + [anon_sym_TILDE] = ACTIONS(9107), + [anon_sym_STAR] = ACTIONS(9107), + [anon_sym_AMP_AMP] = ACTIONS(9107), + [anon_sym_AMP] = ACTIONS(9105), + [anon_sym_SEMI] = ACTIONS(9107), + [anon_sym___extension__] = ACTIONS(9105), + [anon_sym_typedef] = ACTIONS(9105), + [anon_sym_virtual] = ACTIONS(9105), + [anon_sym_extern] = ACTIONS(9105), + [anon_sym___attribute__] = ACTIONS(9105), + [anon_sym___attribute] = ACTIONS(9105), + [anon_sym_using] = ACTIONS(9105), + [anon_sym_COLON_COLON] = ACTIONS(9107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9107), + [anon_sym___declspec] = ACTIONS(9105), + [anon_sym___based] = ACTIONS(9105), + [anon_sym_signed] = ACTIONS(9105), + [anon_sym_unsigned] = ACTIONS(9105), + [anon_sym_long] = ACTIONS(9105), + [anon_sym_short] = ACTIONS(9105), + [anon_sym_LBRACK] = ACTIONS(9105), + [anon_sym_static] = ACTIONS(9105), + [anon_sym_register] = ACTIONS(9105), + [anon_sym_inline] = ACTIONS(9105), + [anon_sym___inline] = ACTIONS(9105), + [anon_sym___inline__] = ACTIONS(9105), + [anon_sym___forceinline] = ACTIONS(9105), + [anon_sym_thread_local] = ACTIONS(9105), + [anon_sym___thread] = ACTIONS(9105), + [anon_sym_const] = ACTIONS(9105), + [anon_sym_constexpr] = ACTIONS(9105), + [anon_sym_volatile] = ACTIONS(9105), + [anon_sym_restrict] = ACTIONS(9105), + [anon_sym___restrict__] = ACTIONS(9105), + [anon_sym__Atomic] = ACTIONS(9105), + [anon_sym__Noreturn] = ACTIONS(9105), + [anon_sym_noreturn] = ACTIONS(9105), + [anon_sym__Nonnull] = ACTIONS(9105), + [anon_sym_mutable] = ACTIONS(9105), + [anon_sym_constinit] = ACTIONS(9105), + [anon_sym_consteval] = ACTIONS(9105), + [anon_sym_alignas] = ACTIONS(9105), + [anon_sym__Alignas] = ACTIONS(9105), + [sym_primitive_type] = ACTIONS(9105), + [anon_sym_enum] = ACTIONS(9105), + [anon_sym_class] = ACTIONS(9105), + [anon_sym_struct] = ACTIONS(9105), + [anon_sym_union] = ACTIONS(9105), + [anon_sym_typename] = ACTIONS(9105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9105), + [anon_sym_decltype] = ACTIONS(9105), + [anon_sym_explicit] = ACTIONS(9105), + [anon_sym_private] = ACTIONS(9105), + [anon_sym_template] = ACTIONS(9105), + [anon_sym_operator] = ACTIONS(9105), + [anon_sym_friend] = ACTIONS(9105), + [anon_sym_public] = ACTIONS(9105), + [anon_sym_protected] = ACTIONS(9105), + [anon_sym_static_assert] = ACTIONS(9105), + [anon_sym_LBRACK_COLON] = ACTIONS(9107), }, [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), + [sym_identifier] = ACTIONS(9002), + [aux_sym_preproc_def_token1] = ACTIONS(9002), + [aux_sym_preproc_if_token1] = ACTIONS(9002), + [aux_sym_preproc_if_token2] = ACTIONS(9002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9002), + [sym_preproc_directive] = ACTIONS(9002), + [anon_sym_LPAREN2] = ACTIONS(9004), + [anon_sym_TILDE] = ACTIONS(9004), + [anon_sym_STAR] = ACTIONS(9004), + [anon_sym_AMP_AMP] = ACTIONS(9004), + [anon_sym_AMP] = ACTIONS(9002), + [anon_sym_SEMI] = ACTIONS(9004), + [anon_sym___extension__] = ACTIONS(9002), + [anon_sym_typedef] = ACTIONS(9002), + [anon_sym_virtual] = ACTIONS(9002), + [anon_sym_extern] = ACTIONS(9002), + [anon_sym___attribute__] = ACTIONS(9002), + [anon_sym___attribute] = ACTIONS(9002), + [anon_sym_using] = ACTIONS(9002), + [anon_sym_COLON_COLON] = ACTIONS(9004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9004), + [anon_sym___declspec] = ACTIONS(9002), + [anon_sym___based] = ACTIONS(9002), + [anon_sym_signed] = ACTIONS(9002), + [anon_sym_unsigned] = ACTIONS(9002), + [anon_sym_long] = ACTIONS(9002), + [anon_sym_short] = ACTIONS(9002), + [anon_sym_LBRACK] = ACTIONS(9002), + [anon_sym_static] = ACTIONS(9002), + [anon_sym_register] = ACTIONS(9002), + [anon_sym_inline] = ACTIONS(9002), + [anon_sym___inline] = ACTIONS(9002), + [anon_sym___inline__] = ACTIONS(9002), + [anon_sym___forceinline] = ACTIONS(9002), + [anon_sym_thread_local] = ACTIONS(9002), + [anon_sym___thread] = ACTIONS(9002), + [anon_sym_const] = ACTIONS(9002), + [anon_sym_constexpr] = ACTIONS(9002), + [anon_sym_volatile] = ACTIONS(9002), + [anon_sym_restrict] = ACTIONS(9002), + [anon_sym___restrict__] = ACTIONS(9002), + [anon_sym__Atomic] = ACTIONS(9002), + [anon_sym__Noreturn] = ACTIONS(9002), + [anon_sym_noreturn] = ACTIONS(9002), + [anon_sym__Nonnull] = ACTIONS(9002), + [anon_sym_mutable] = ACTIONS(9002), + [anon_sym_constinit] = ACTIONS(9002), + [anon_sym_consteval] = ACTIONS(9002), + [anon_sym_alignas] = ACTIONS(9002), + [anon_sym__Alignas] = ACTIONS(9002), + [sym_primitive_type] = ACTIONS(9002), + [anon_sym_enum] = ACTIONS(9002), + [anon_sym_class] = ACTIONS(9002), + [anon_sym_struct] = ACTIONS(9002), + [anon_sym_union] = ACTIONS(9002), + [anon_sym_typename] = ACTIONS(9002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9002), + [anon_sym_decltype] = ACTIONS(9002), + [anon_sym_explicit] = ACTIONS(9002), + [anon_sym_private] = ACTIONS(9002), + [anon_sym_template] = ACTIONS(9002), + [anon_sym_operator] = ACTIONS(9002), + [anon_sym_friend] = ACTIONS(9002), + [anon_sym_public] = ACTIONS(9002), + [anon_sym_protected] = ACTIONS(9002), + [anon_sym_static_assert] = ACTIONS(9002), + [anon_sym_LBRACK_COLON] = ACTIONS(9004), }, [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), - [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_identifier] = ACTIONS(9033), + [aux_sym_preproc_def_token1] = ACTIONS(9033), + [aux_sym_preproc_if_token1] = ACTIONS(9033), + [aux_sym_preproc_if_token2] = ACTIONS(9033), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9033), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9033), + [sym_preproc_directive] = ACTIONS(9033), + [anon_sym_LPAREN2] = ACTIONS(9035), + [anon_sym_TILDE] = ACTIONS(9035), + [anon_sym_STAR] = ACTIONS(9035), + [anon_sym_AMP_AMP] = ACTIONS(9035), + [anon_sym_AMP] = ACTIONS(9033), + [anon_sym_SEMI] = ACTIONS(9035), + [anon_sym___extension__] = ACTIONS(9033), + [anon_sym_typedef] = ACTIONS(9033), + [anon_sym_virtual] = ACTIONS(9033), + [anon_sym_extern] = ACTIONS(9033), + [anon_sym___attribute__] = ACTIONS(9033), + [anon_sym___attribute] = ACTIONS(9033), + [anon_sym_using] = ACTIONS(9033), + [anon_sym_COLON_COLON] = ACTIONS(9035), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9035), + [anon_sym___declspec] = ACTIONS(9033), + [anon_sym___based] = ACTIONS(9033), + [anon_sym_signed] = ACTIONS(9033), + [anon_sym_unsigned] = ACTIONS(9033), + [anon_sym_long] = ACTIONS(9033), + [anon_sym_short] = ACTIONS(9033), + [anon_sym_LBRACK] = ACTIONS(9033), + [anon_sym_static] = ACTIONS(9033), + [anon_sym_register] = ACTIONS(9033), + [anon_sym_inline] = ACTIONS(9033), + [anon_sym___inline] = ACTIONS(9033), + [anon_sym___inline__] = ACTIONS(9033), + [anon_sym___forceinline] = ACTIONS(9033), + [anon_sym_thread_local] = ACTIONS(9033), + [anon_sym___thread] = ACTIONS(9033), + [anon_sym_const] = ACTIONS(9033), + [anon_sym_constexpr] = ACTIONS(9033), + [anon_sym_volatile] = ACTIONS(9033), + [anon_sym_restrict] = ACTIONS(9033), + [anon_sym___restrict__] = ACTIONS(9033), + [anon_sym__Atomic] = ACTIONS(9033), + [anon_sym__Noreturn] = ACTIONS(9033), + [anon_sym_noreturn] = ACTIONS(9033), + [anon_sym__Nonnull] = ACTIONS(9033), + [anon_sym_mutable] = ACTIONS(9033), + [anon_sym_constinit] = ACTIONS(9033), + [anon_sym_consteval] = ACTIONS(9033), + [anon_sym_alignas] = ACTIONS(9033), + [anon_sym__Alignas] = ACTIONS(9033), + [sym_primitive_type] = ACTIONS(9033), + [anon_sym_enum] = ACTIONS(9033), + [anon_sym_class] = ACTIONS(9033), + [anon_sym_struct] = ACTIONS(9033), + [anon_sym_union] = ACTIONS(9033), + [anon_sym_typename] = ACTIONS(9033), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9033), + [anon_sym_decltype] = ACTIONS(9033), + [anon_sym_explicit] = ACTIONS(9033), + [anon_sym_private] = ACTIONS(9033), + [anon_sym_template] = ACTIONS(9033), + [anon_sym_operator] = ACTIONS(9033), + [anon_sym_friend] = ACTIONS(9033), + [anon_sym_public] = ACTIONS(9033), + [anon_sym_protected] = ACTIONS(9033), + [anon_sym_static_assert] = ACTIONS(9033), + [anon_sym_LBRACK_COLON] = ACTIONS(9035), }, [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), + [sym_identifier] = ACTIONS(8962), + [aux_sym_preproc_def_token1] = ACTIONS(8962), + [aux_sym_preproc_if_token1] = ACTIONS(8962), + [aux_sym_preproc_if_token2] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8962), + [sym_preproc_directive] = ACTIONS(8962), + [anon_sym_LPAREN2] = ACTIONS(8964), + [anon_sym_TILDE] = ACTIONS(8964), + [anon_sym_STAR] = ACTIONS(8964), + [anon_sym_AMP_AMP] = ACTIONS(8964), + [anon_sym_AMP] = ACTIONS(8962), + [anon_sym_SEMI] = ACTIONS(8964), + [anon_sym___extension__] = ACTIONS(8962), + [anon_sym_typedef] = ACTIONS(8962), + [anon_sym_virtual] = ACTIONS(8962), + [anon_sym_extern] = ACTIONS(8962), + [anon_sym___attribute__] = ACTIONS(8962), + [anon_sym___attribute] = ACTIONS(8962), + [anon_sym_using] = ACTIONS(8962), + [anon_sym_COLON_COLON] = ACTIONS(8964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8964), + [anon_sym___declspec] = ACTIONS(8962), + [anon_sym___based] = ACTIONS(8962), + [anon_sym_signed] = ACTIONS(8962), + [anon_sym_unsigned] = ACTIONS(8962), + [anon_sym_long] = ACTIONS(8962), + [anon_sym_short] = ACTIONS(8962), + [anon_sym_LBRACK] = ACTIONS(8962), + [anon_sym_static] = ACTIONS(8962), + [anon_sym_register] = ACTIONS(8962), + [anon_sym_inline] = ACTIONS(8962), + [anon_sym___inline] = ACTIONS(8962), + [anon_sym___inline__] = ACTIONS(8962), + [anon_sym___forceinline] = ACTIONS(8962), + [anon_sym_thread_local] = ACTIONS(8962), + [anon_sym___thread] = ACTIONS(8962), + [anon_sym_const] = ACTIONS(8962), + [anon_sym_constexpr] = ACTIONS(8962), + [anon_sym_volatile] = ACTIONS(8962), + [anon_sym_restrict] = ACTIONS(8962), + [anon_sym___restrict__] = ACTIONS(8962), + [anon_sym__Atomic] = ACTIONS(8962), + [anon_sym__Noreturn] = ACTIONS(8962), + [anon_sym_noreturn] = ACTIONS(8962), + [anon_sym__Nonnull] = ACTIONS(8962), + [anon_sym_mutable] = ACTIONS(8962), + [anon_sym_constinit] = ACTIONS(8962), + [anon_sym_consteval] = ACTIONS(8962), + [anon_sym_alignas] = ACTIONS(8962), + [anon_sym__Alignas] = ACTIONS(8962), + [sym_primitive_type] = ACTIONS(8962), + [anon_sym_enum] = ACTIONS(8962), + [anon_sym_class] = ACTIONS(8962), + [anon_sym_struct] = ACTIONS(8962), + [anon_sym_union] = ACTIONS(8962), + [anon_sym_typename] = ACTIONS(8962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8962), + [anon_sym_decltype] = ACTIONS(8962), + [anon_sym_explicit] = ACTIONS(8962), + [anon_sym_private] = ACTIONS(8962), + [anon_sym_template] = ACTIONS(8962), + [anon_sym_operator] = ACTIONS(8962), + [anon_sym_friend] = ACTIONS(8962), + [anon_sym_public] = ACTIONS(8962), + [anon_sym_protected] = ACTIONS(8962), + [anon_sym_static_assert] = ACTIONS(8962), + [anon_sym_LBRACK_COLON] = ACTIONS(8964), }, [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), + [sym_identifier] = ACTIONS(8962), + [aux_sym_preproc_def_token1] = ACTIONS(8962), + [aux_sym_preproc_if_token1] = ACTIONS(8962), + [aux_sym_preproc_if_token2] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8962), + [sym_preproc_directive] = ACTIONS(8962), + [anon_sym_LPAREN2] = ACTIONS(8964), + [anon_sym_TILDE] = ACTIONS(8964), + [anon_sym_STAR] = ACTIONS(8964), + [anon_sym_AMP_AMP] = ACTIONS(8964), + [anon_sym_AMP] = ACTIONS(8962), + [anon_sym_SEMI] = ACTIONS(8964), + [anon_sym___extension__] = ACTIONS(8962), + [anon_sym_typedef] = ACTIONS(8962), + [anon_sym_virtual] = ACTIONS(8962), + [anon_sym_extern] = ACTIONS(8962), + [anon_sym___attribute__] = ACTIONS(8962), + [anon_sym___attribute] = ACTIONS(8962), + [anon_sym_using] = ACTIONS(8962), + [anon_sym_COLON_COLON] = ACTIONS(8964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8964), + [anon_sym___declspec] = ACTIONS(8962), + [anon_sym___based] = ACTIONS(8962), + [anon_sym_signed] = ACTIONS(8962), + [anon_sym_unsigned] = ACTIONS(8962), + [anon_sym_long] = ACTIONS(8962), + [anon_sym_short] = ACTIONS(8962), + [anon_sym_LBRACK] = ACTIONS(8962), + [anon_sym_static] = ACTIONS(8962), + [anon_sym_register] = ACTIONS(8962), + [anon_sym_inline] = ACTIONS(8962), + [anon_sym___inline] = ACTIONS(8962), + [anon_sym___inline__] = ACTIONS(8962), + [anon_sym___forceinline] = ACTIONS(8962), + [anon_sym_thread_local] = ACTIONS(8962), + [anon_sym___thread] = ACTIONS(8962), + [anon_sym_const] = ACTIONS(8962), + [anon_sym_constexpr] = ACTIONS(8962), + [anon_sym_volatile] = ACTIONS(8962), + [anon_sym_restrict] = ACTIONS(8962), + [anon_sym___restrict__] = ACTIONS(8962), + [anon_sym__Atomic] = ACTIONS(8962), + [anon_sym__Noreturn] = ACTIONS(8962), + [anon_sym_noreturn] = ACTIONS(8962), + [anon_sym__Nonnull] = ACTIONS(8962), + [anon_sym_mutable] = ACTIONS(8962), + [anon_sym_constinit] = ACTIONS(8962), + [anon_sym_consteval] = ACTIONS(8962), + [anon_sym_alignas] = ACTIONS(8962), + [anon_sym__Alignas] = ACTIONS(8962), + [sym_primitive_type] = ACTIONS(8962), + [anon_sym_enum] = ACTIONS(8962), + [anon_sym_class] = ACTIONS(8962), + [anon_sym_struct] = ACTIONS(8962), + [anon_sym_union] = ACTIONS(8962), + [anon_sym_typename] = ACTIONS(8962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8962), + [anon_sym_decltype] = ACTIONS(8962), + [anon_sym_explicit] = ACTIONS(8962), + [anon_sym_private] = ACTIONS(8962), + [anon_sym_template] = ACTIONS(8962), + [anon_sym_operator] = ACTIONS(8962), + [anon_sym_friend] = ACTIONS(8962), + [anon_sym_public] = ACTIONS(8962), + [anon_sym_protected] = ACTIONS(8962), + [anon_sym_static_assert] = ACTIONS(8962), + [anon_sym_LBRACK_COLON] = ACTIONS(8964), }, [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), + [sym_identifier] = ACTIONS(9073), + [aux_sym_preproc_def_token1] = ACTIONS(9073), + [aux_sym_preproc_if_token1] = ACTIONS(9073), + [aux_sym_preproc_if_token2] = ACTIONS(9073), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9073), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9073), + [sym_preproc_directive] = ACTIONS(9073), + [anon_sym_LPAREN2] = ACTIONS(9075), + [anon_sym_TILDE] = ACTIONS(9075), + [anon_sym_STAR] = ACTIONS(9075), + [anon_sym_AMP_AMP] = ACTIONS(9075), + [anon_sym_AMP] = ACTIONS(9073), + [anon_sym_SEMI] = ACTIONS(9075), + [anon_sym___extension__] = ACTIONS(9073), + [anon_sym_typedef] = ACTIONS(9073), + [anon_sym_virtual] = ACTIONS(9073), + [anon_sym_extern] = ACTIONS(9073), + [anon_sym___attribute__] = ACTIONS(9073), + [anon_sym___attribute] = ACTIONS(9073), + [anon_sym_using] = ACTIONS(9073), + [anon_sym_COLON_COLON] = ACTIONS(9075), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9075), + [anon_sym___declspec] = ACTIONS(9073), + [anon_sym___based] = ACTIONS(9073), + [anon_sym_signed] = ACTIONS(9073), + [anon_sym_unsigned] = ACTIONS(9073), + [anon_sym_long] = ACTIONS(9073), + [anon_sym_short] = ACTIONS(9073), + [anon_sym_LBRACK] = ACTIONS(9073), + [anon_sym_static] = ACTIONS(9073), + [anon_sym_register] = ACTIONS(9073), + [anon_sym_inline] = ACTIONS(9073), + [anon_sym___inline] = ACTIONS(9073), + [anon_sym___inline__] = ACTIONS(9073), + [anon_sym___forceinline] = ACTIONS(9073), + [anon_sym_thread_local] = ACTIONS(9073), + [anon_sym___thread] = ACTIONS(9073), + [anon_sym_const] = ACTIONS(9073), + [anon_sym_constexpr] = ACTIONS(9073), + [anon_sym_volatile] = ACTIONS(9073), + [anon_sym_restrict] = ACTIONS(9073), + [anon_sym___restrict__] = ACTIONS(9073), + [anon_sym__Atomic] = ACTIONS(9073), + [anon_sym__Noreturn] = ACTIONS(9073), + [anon_sym_noreturn] = ACTIONS(9073), + [anon_sym__Nonnull] = ACTIONS(9073), + [anon_sym_mutable] = ACTIONS(9073), + [anon_sym_constinit] = ACTIONS(9073), + [anon_sym_consteval] = ACTIONS(9073), + [anon_sym_alignas] = ACTIONS(9073), + [anon_sym__Alignas] = ACTIONS(9073), + [sym_primitive_type] = ACTIONS(9073), + [anon_sym_enum] = ACTIONS(9073), + [anon_sym_class] = ACTIONS(9073), + [anon_sym_struct] = ACTIONS(9073), + [anon_sym_union] = ACTIONS(9073), + [anon_sym_typename] = ACTIONS(9073), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9073), + [anon_sym_decltype] = ACTIONS(9073), + [anon_sym_explicit] = ACTIONS(9073), + [anon_sym_private] = ACTIONS(9073), + [anon_sym_template] = ACTIONS(9073), + [anon_sym_operator] = ACTIONS(9073), + [anon_sym_friend] = ACTIONS(9073), + [anon_sym_public] = ACTIONS(9073), + [anon_sym_protected] = ACTIONS(9073), + [anon_sym_static_assert] = ACTIONS(9073), + [anon_sym_LBRACK_COLON] = ACTIONS(9075), }, [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), - [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_identifier] = ACTIONS(9101), + [aux_sym_preproc_def_token1] = ACTIONS(9101), + [aux_sym_preproc_if_token1] = ACTIONS(9101), + [aux_sym_preproc_if_token2] = ACTIONS(9101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9101), + [sym_preproc_directive] = ACTIONS(9101), + [anon_sym_LPAREN2] = ACTIONS(9103), + [anon_sym_TILDE] = ACTIONS(9103), + [anon_sym_STAR] = ACTIONS(9103), + [anon_sym_AMP_AMP] = ACTIONS(9103), + [anon_sym_AMP] = ACTIONS(9101), + [anon_sym_SEMI] = ACTIONS(9103), + [anon_sym___extension__] = ACTIONS(9101), + [anon_sym_typedef] = ACTIONS(9101), + [anon_sym_virtual] = ACTIONS(9101), + [anon_sym_extern] = ACTIONS(9101), + [anon_sym___attribute__] = ACTIONS(9101), + [anon_sym___attribute] = ACTIONS(9101), + [anon_sym_using] = ACTIONS(9101), + [anon_sym_COLON_COLON] = ACTIONS(9103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9103), + [anon_sym___declspec] = ACTIONS(9101), + [anon_sym___based] = ACTIONS(9101), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(9101), + [anon_sym_static] = ACTIONS(9101), + [anon_sym_register] = ACTIONS(9101), + [anon_sym_inline] = ACTIONS(9101), + [anon_sym___inline] = ACTIONS(9101), + [anon_sym___inline__] = ACTIONS(9101), + [anon_sym___forceinline] = ACTIONS(9101), + [anon_sym_thread_local] = ACTIONS(9101), + [anon_sym___thread] = ACTIONS(9101), + [anon_sym_const] = ACTIONS(9101), + [anon_sym_constexpr] = ACTIONS(9101), + [anon_sym_volatile] = ACTIONS(9101), + [anon_sym_restrict] = ACTIONS(9101), + [anon_sym___restrict__] = ACTIONS(9101), + [anon_sym__Atomic] = ACTIONS(9101), + [anon_sym__Noreturn] = ACTIONS(9101), + [anon_sym_noreturn] = ACTIONS(9101), + [anon_sym__Nonnull] = ACTIONS(9101), + [anon_sym_mutable] = ACTIONS(9101), + [anon_sym_constinit] = ACTIONS(9101), + [anon_sym_consteval] = ACTIONS(9101), + [anon_sym_alignas] = ACTIONS(9101), + [anon_sym__Alignas] = ACTIONS(9101), + [sym_primitive_type] = ACTIONS(9101), + [anon_sym_enum] = ACTIONS(9101), + [anon_sym_class] = ACTIONS(9101), + [anon_sym_struct] = ACTIONS(9101), + [anon_sym_union] = ACTIONS(9101), + [anon_sym_typename] = ACTIONS(9101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9101), + [anon_sym_decltype] = ACTIONS(9101), + [anon_sym_explicit] = ACTIONS(9101), + [anon_sym_private] = ACTIONS(9101), + [anon_sym_template] = ACTIONS(9101), + [anon_sym_operator] = ACTIONS(9101), + [anon_sym_friend] = ACTIONS(9101), + [anon_sym_public] = ACTIONS(9101), + [anon_sym_protected] = ACTIONS(9101), + [anon_sym_static_assert] = ACTIONS(9101), + [anon_sym_LBRACK_COLON] = ACTIONS(9103), }, [STATE(3583)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [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(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_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_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(7729), - [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3656), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_TILDE] = ACTIONS(7361), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_virtual] = ACTIONS(7359), + [anon_sym_extern] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7361), + [anon_sym___declspec] = ACTIONS(7359), + [anon_sym___based] = ACTIONS(7359), + [anon_sym___cdecl] = ACTIONS(7359), + [anon_sym___clrcall] = ACTIONS(7359), + [anon_sym___stdcall] = ACTIONS(7359), + [anon_sym___fastcall] = ACTIONS(7359), + [anon_sym___thiscall] = ACTIONS(7359), + [anon_sym___vectorcall] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(9487), + [anon_sym_unsigned] = ACTIONS(9487), + [anon_sym_long] = ACTIONS(9487), + [anon_sym_short] = ACTIONS(9487), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_static] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7361), + [anon_sym_register] = ACTIONS(7359), + [anon_sym_inline] = ACTIONS(7359), + [anon_sym___inline] = ACTIONS(7359), + [anon_sym___inline__] = ACTIONS(7359), + [anon_sym___forceinline] = ACTIONS(7359), + [anon_sym_thread_local] = ACTIONS(7359), + [anon_sym___thread] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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_asm] = ACTIONS(7359), + [anon_sym___asm__] = ACTIONS(7359), + [anon_sym___asm] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_operator] = ACTIONS(7359), + [anon_sym_try] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), }, [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), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7345), + [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(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), + [sym_identifier] = ACTIONS(9053), + [aux_sym_preproc_def_token1] = ACTIONS(9053), + [aux_sym_preproc_if_token1] = ACTIONS(9053), + [aux_sym_preproc_if_token2] = ACTIONS(9053), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9053), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9053), + [sym_preproc_directive] = ACTIONS(9053), + [anon_sym_LPAREN2] = ACTIONS(9055), + [anon_sym_TILDE] = ACTIONS(9055), + [anon_sym_STAR] = ACTIONS(9055), + [anon_sym_AMP_AMP] = ACTIONS(9055), + [anon_sym_AMP] = ACTIONS(9053), + [anon_sym_SEMI] = ACTIONS(9055), + [anon_sym___extension__] = ACTIONS(9053), + [anon_sym_typedef] = ACTIONS(9053), + [anon_sym_virtual] = ACTIONS(9053), + [anon_sym_extern] = ACTIONS(9053), + [anon_sym___attribute__] = ACTIONS(9053), + [anon_sym___attribute] = ACTIONS(9053), + [anon_sym_using] = ACTIONS(9053), + [anon_sym_COLON_COLON] = ACTIONS(9055), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9055), + [anon_sym___declspec] = ACTIONS(9053), + [anon_sym___based] = ACTIONS(9053), + [anon_sym_signed] = ACTIONS(9053), + [anon_sym_unsigned] = ACTIONS(9053), + [anon_sym_long] = ACTIONS(9053), + [anon_sym_short] = ACTIONS(9053), + [anon_sym_LBRACK] = ACTIONS(9053), + [anon_sym_static] = ACTIONS(9053), + [anon_sym_register] = ACTIONS(9053), + [anon_sym_inline] = ACTIONS(9053), + [anon_sym___inline] = ACTIONS(9053), + [anon_sym___inline__] = ACTIONS(9053), + [anon_sym___forceinline] = ACTIONS(9053), + [anon_sym_thread_local] = ACTIONS(9053), + [anon_sym___thread] = ACTIONS(9053), + [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(9053), + [anon_sym__Alignas] = ACTIONS(9053), + [sym_primitive_type] = ACTIONS(9053), + [anon_sym_enum] = ACTIONS(9053), + [anon_sym_class] = ACTIONS(9053), + [anon_sym_struct] = ACTIONS(9053), + [anon_sym_union] = ACTIONS(9053), + [anon_sym_typename] = ACTIONS(9053), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9053), + [anon_sym_decltype] = ACTIONS(9053), + [anon_sym_explicit] = ACTIONS(9053), + [anon_sym_private] = ACTIONS(9053), + [anon_sym_template] = ACTIONS(9053), + [anon_sym_operator] = ACTIONS(9053), + [anon_sym_friend] = ACTIONS(9053), + [anon_sym_public] = ACTIONS(9053), + [anon_sym_protected] = ACTIONS(9053), + [anon_sym_static_assert] = ACTIONS(9053), + [anon_sym_LBRACK_COLON] = ACTIONS(9055), }, [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_identifier] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_friend] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), }, [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), + [sym_identifier] = ACTIONS(9065), + [aux_sym_preproc_def_token1] = ACTIONS(9065), + [aux_sym_preproc_if_token1] = ACTIONS(9065), + [aux_sym_preproc_if_token2] = ACTIONS(9065), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9065), + [sym_preproc_directive] = ACTIONS(9065), + [anon_sym_LPAREN2] = ACTIONS(9067), + [anon_sym_TILDE] = ACTIONS(9067), + [anon_sym_STAR] = ACTIONS(9067), + [anon_sym_AMP_AMP] = ACTIONS(9067), + [anon_sym_AMP] = ACTIONS(9065), + [anon_sym_SEMI] = ACTIONS(9067), + [anon_sym___extension__] = ACTIONS(9065), + [anon_sym_typedef] = ACTIONS(9065), + [anon_sym_virtual] = ACTIONS(9065), + [anon_sym_extern] = ACTIONS(9065), + [anon_sym___attribute__] = ACTIONS(9065), + [anon_sym___attribute] = ACTIONS(9065), + [anon_sym_using] = ACTIONS(9065), + [anon_sym_COLON_COLON] = ACTIONS(9067), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9067), + [anon_sym___declspec] = ACTIONS(9065), + [anon_sym___based] = ACTIONS(9065), + [anon_sym_signed] = ACTIONS(9065), + [anon_sym_unsigned] = ACTIONS(9065), + [anon_sym_long] = ACTIONS(9065), + [anon_sym_short] = ACTIONS(9065), + [anon_sym_LBRACK] = ACTIONS(9065), + [anon_sym_static] = ACTIONS(9065), + [anon_sym_register] = ACTIONS(9065), + [anon_sym_inline] = ACTIONS(9065), + [anon_sym___inline] = ACTIONS(9065), + [anon_sym___inline__] = ACTIONS(9065), + [anon_sym___forceinline] = ACTIONS(9065), + [anon_sym_thread_local] = ACTIONS(9065), + [anon_sym___thread] = ACTIONS(9065), + [anon_sym_const] = ACTIONS(9065), + [anon_sym_constexpr] = ACTIONS(9065), + [anon_sym_volatile] = ACTIONS(9065), + [anon_sym_restrict] = ACTIONS(9065), + [anon_sym___restrict__] = ACTIONS(9065), + [anon_sym__Atomic] = ACTIONS(9065), + [anon_sym__Noreturn] = ACTIONS(9065), + [anon_sym_noreturn] = ACTIONS(9065), + [anon_sym__Nonnull] = ACTIONS(9065), + [anon_sym_mutable] = ACTIONS(9065), + [anon_sym_constinit] = ACTIONS(9065), + [anon_sym_consteval] = ACTIONS(9065), + [anon_sym_alignas] = ACTIONS(9065), + [anon_sym__Alignas] = ACTIONS(9065), + [sym_primitive_type] = ACTIONS(9065), + [anon_sym_enum] = ACTIONS(9065), + [anon_sym_class] = ACTIONS(9065), + [anon_sym_struct] = ACTIONS(9065), + [anon_sym_union] = ACTIONS(9065), + [anon_sym_typename] = ACTIONS(9065), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9065), + [anon_sym_decltype] = ACTIONS(9065), + [anon_sym_explicit] = ACTIONS(9065), + [anon_sym_private] = ACTIONS(9065), + [anon_sym_template] = ACTIONS(9065), + [anon_sym_operator] = ACTIONS(9065), + [anon_sym_friend] = ACTIONS(9065), + [anon_sym_public] = ACTIONS(9065), + [anon_sym_protected] = ACTIONS(9065), + [anon_sym_static_assert] = ACTIONS(9065), + [anon_sym_LBRACK_COLON] = ACTIONS(9067), }, [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), + [sym_identifier] = ACTIONS(9069), + [aux_sym_preproc_def_token1] = ACTIONS(9069), + [aux_sym_preproc_if_token1] = ACTIONS(9069), + [aux_sym_preproc_if_token2] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9069), + [sym_preproc_directive] = ACTIONS(9069), + [anon_sym_LPAREN2] = ACTIONS(9071), + [anon_sym_TILDE] = ACTIONS(9071), + [anon_sym_STAR] = ACTIONS(9071), + [anon_sym_AMP_AMP] = ACTIONS(9071), + [anon_sym_AMP] = ACTIONS(9069), + [anon_sym_SEMI] = ACTIONS(9071), + [anon_sym___extension__] = ACTIONS(9069), + [anon_sym_typedef] = ACTIONS(9069), + [anon_sym_virtual] = ACTIONS(9069), + [anon_sym_extern] = ACTIONS(9069), + [anon_sym___attribute__] = ACTIONS(9069), + [anon_sym___attribute] = ACTIONS(9069), + [anon_sym_using] = ACTIONS(9069), + [anon_sym_COLON_COLON] = ACTIONS(9071), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9071), + [anon_sym___declspec] = ACTIONS(9069), + [anon_sym___based] = ACTIONS(9069), + [anon_sym_signed] = ACTIONS(9069), + [anon_sym_unsigned] = ACTIONS(9069), + [anon_sym_long] = ACTIONS(9069), + [anon_sym_short] = ACTIONS(9069), + [anon_sym_LBRACK] = ACTIONS(9069), + [anon_sym_static] = ACTIONS(9069), + [anon_sym_register] = ACTIONS(9069), + [anon_sym_inline] = ACTIONS(9069), + [anon_sym___inline] = ACTIONS(9069), + [anon_sym___inline__] = ACTIONS(9069), + [anon_sym___forceinline] = ACTIONS(9069), + [anon_sym_thread_local] = ACTIONS(9069), + [anon_sym___thread] = ACTIONS(9069), + [anon_sym_const] = ACTIONS(9069), + [anon_sym_constexpr] = ACTIONS(9069), + [anon_sym_volatile] = ACTIONS(9069), + [anon_sym_restrict] = ACTIONS(9069), + [anon_sym___restrict__] = ACTIONS(9069), + [anon_sym__Atomic] = ACTIONS(9069), + [anon_sym__Noreturn] = ACTIONS(9069), + [anon_sym_noreturn] = ACTIONS(9069), + [anon_sym__Nonnull] = ACTIONS(9069), + [anon_sym_mutable] = ACTIONS(9069), + [anon_sym_constinit] = ACTIONS(9069), + [anon_sym_consteval] = ACTIONS(9069), + [anon_sym_alignas] = ACTIONS(9069), + [anon_sym__Alignas] = ACTIONS(9069), + [sym_primitive_type] = ACTIONS(9069), + [anon_sym_enum] = ACTIONS(9069), + [anon_sym_class] = ACTIONS(9069), + [anon_sym_struct] = ACTIONS(9069), + [anon_sym_union] = ACTIONS(9069), + [anon_sym_typename] = ACTIONS(9069), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9069), + [anon_sym_decltype] = ACTIONS(9069), + [anon_sym_explicit] = ACTIONS(9069), + [anon_sym_private] = ACTIONS(9069), + [anon_sym_template] = ACTIONS(9069), + [anon_sym_operator] = ACTIONS(9069), + [anon_sym_friend] = ACTIONS(9069), + [anon_sym_public] = ACTIONS(9069), + [anon_sym_protected] = ACTIONS(9069), + [anon_sym_static_assert] = ACTIONS(9069), + [anon_sym_LBRACK_COLON] = ACTIONS(9071), }, [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_identifier] = ACTIONS(9069), + [aux_sym_preproc_def_token1] = ACTIONS(9069), + [aux_sym_preproc_if_token1] = ACTIONS(9069), + [aux_sym_preproc_if_token2] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9069), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9069), + [sym_preproc_directive] = ACTIONS(9069), + [anon_sym_LPAREN2] = ACTIONS(9071), + [anon_sym_TILDE] = ACTIONS(9071), + [anon_sym_STAR] = ACTIONS(9071), + [anon_sym_AMP_AMP] = ACTIONS(9071), + [anon_sym_AMP] = ACTIONS(9069), + [anon_sym_SEMI] = ACTIONS(9071), + [anon_sym___extension__] = ACTIONS(9069), + [anon_sym_typedef] = ACTIONS(9069), + [anon_sym_virtual] = ACTIONS(9069), + [anon_sym_extern] = ACTIONS(9069), + [anon_sym___attribute__] = ACTIONS(9069), + [anon_sym___attribute] = ACTIONS(9069), + [anon_sym_using] = ACTIONS(9069), + [anon_sym_COLON_COLON] = ACTIONS(9071), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9071), + [anon_sym___declspec] = ACTIONS(9069), + [anon_sym___based] = ACTIONS(9069), + [anon_sym_signed] = ACTIONS(9069), + [anon_sym_unsigned] = ACTIONS(9069), + [anon_sym_long] = ACTIONS(9069), + [anon_sym_short] = ACTIONS(9069), + [anon_sym_LBRACK] = ACTIONS(9069), + [anon_sym_static] = ACTIONS(9069), + [anon_sym_register] = ACTIONS(9069), + [anon_sym_inline] = ACTIONS(9069), + [anon_sym___inline] = ACTIONS(9069), + [anon_sym___inline__] = ACTIONS(9069), + [anon_sym___forceinline] = ACTIONS(9069), + [anon_sym_thread_local] = ACTIONS(9069), + [anon_sym___thread] = ACTIONS(9069), + [anon_sym_const] = ACTIONS(9069), + [anon_sym_constexpr] = ACTIONS(9069), + [anon_sym_volatile] = ACTIONS(9069), + [anon_sym_restrict] = ACTIONS(9069), + [anon_sym___restrict__] = ACTIONS(9069), + [anon_sym__Atomic] = ACTIONS(9069), + [anon_sym__Noreturn] = ACTIONS(9069), + [anon_sym_noreturn] = ACTIONS(9069), + [anon_sym__Nonnull] = ACTIONS(9069), + [anon_sym_mutable] = ACTIONS(9069), + [anon_sym_constinit] = ACTIONS(9069), + [anon_sym_consteval] = ACTIONS(9069), + [anon_sym_alignas] = ACTIONS(9069), + [anon_sym__Alignas] = ACTIONS(9069), + [sym_primitive_type] = ACTIONS(9069), + [anon_sym_enum] = ACTIONS(9069), + [anon_sym_class] = ACTIONS(9069), + [anon_sym_struct] = ACTIONS(9069), + [anon_sym_union] = ACTIONS(9069), + [anon_sym_typename] = ACTIONS(9069), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9069), + [anon_sym_decltype] = ACTIONS(9069), + [anon_sym_explicit] = ACTIONS(9069), + [anon_sym_private] = ACTIONS(9069), + [anon_sym_template] = ACTIONS(9069), + [anon_sym_operator] = ACTIONS(9069), + [anon_sym_friend] = ACTIONS(9069), + [anon_sym_public] = ACTIONS(9069), + [anon_sym_protected] = ACTIONS(9069), + [anon_sym_static_assert] = ACTIONS(9069), + [anon_sym_LBRACK_COLON] = ACTIONS(9071), }, [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(9077), + [aux_sym_preproc_def_token1] = ACTIONS(9077), + [aux_sym_preproc_if_token1] = ACTIONS(9077), + [aux_sym_preproc_if_token2] = ACTIONS(9077), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9077), + [sym_preproc_directive] = ACTIONS(9077), + [anon_sym_LPAREN2] = ACTIONS(9079), + [anon_sym_TILDE] = ACTIONS(9079), + [anon_sym_STAR] = ACTIONS(9079), + [anon_sym_AMP_AMP] = ACTIONS(9079), + [anon_sym_AMP] = ACTIONS(9077), + [anon_sym_SEMI] = ACTIONS(9079), + [anon_sym___extension__] = ACTIONS(9077), + [anon_sym_typedef] = ACTIONS(9077), + [anon_sym_virtual] = ACTIONS(9077), + [anon_sym_extern] = ACTIONS(9077), + [anon_sym___attribute__] = ACTIONS(9077), + [anon_sym___attribute] = ACTIONS(9077), + [anon_sym_using] = ACTIONS(9077), + [anon_sym_COLON_COLON] = ACTIONS(9079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9079), + [anon_sym___declspec] = ACTIONS(9077), + [anon_sym___based] = ACTIONS(9077), + [anon_sym_signed] = ACTIONS(9077), + [anon_sym_unsigned] = ACTIONS(9077), + [anon_sym_long] = ACTIONS(9077), + [anon_sym_short] = ACTIONS(9077), + [anon_sym_LBRACK] = ACTIONS(9077), + [anon_sym_static] = ACTIONS(9077), + [anon_sym_register] = ACTIONS(9077), + [anon_sym_inline] = ACTIONS(9077), + [anon_sym___inline] = ACTIONS(9077), + [anon_sym___inline__] = ACTIONS(9077), + [anon_sym___forceinline] = ACTIONS(9077), + [anon_sym_thread_local] = ACTIONS(9077), + [anon_sym___thread] = ACTIONS(9077), + [anon_sym_const] = ACTIONS(9077), + [anon_sym_constexpr] = ACTIONS(9077), + [anon_sym_volatile] = ACTIONS(9077), + [anon_sym_restrict] = ACTIONS(9077), + [anon_sym___restrict__] = ACTIONS(9077), + [anon_sym__Atomic] = ACTIONS(9077), + [anon_sym__Noreturn] = ACTIONS(9077), + [anon_sym_noreturn] = ACTIONS(9077), + [anon_sym__Nonnull] = ACTIONS(9077), + [anon_sym_mutable] = ACTIONS(9077), + [anon_sym_constinit] = ACTIONS(9077), + [anon_sym_consteval] = ACTIONS(9077), + [anon_sym_alignas] = ACTIONS(9077), + [anon_sym__Alignas] = ACTIONS(9077), + [sym_primitive_type] = ACTIONS(9077), + [anon_sym_enum] = ACTIONS(9077), + [anon_sym_class] = ACTIONS(9077), + [anon_sym_struct] = ACTIONS(9077), + [anon_sym_union] = ACTIONS(9077), + [anon_sym_typename] = ACTIONS(9077), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9077), + [anon_sym_decltype] = ACTIONS(9077), + [anon_sym_explicit] = ACTIONS(9077), + [anon_sym_private] = ACTIONS(9077), + [anon_sym_template] = ACTIONS(9077), + [anon_sym_operator] = ACTIONS(9077), + [anon_sym_friend] = ACTIONS(9077), + [anon_sym_public] = ACTIONS(9077), + [anon_sym_protected] = ACTIONS(9077), + [anon_sym_static_assert] = ACTIONS(9077), + [anon_sym_LBRACK_COLON] = ACTIONS(9079), }, [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_identifier] = ACTIONS(9081), + [aux_sym_preproc_def_token1] = ACTIONS(9081), + [aux_sym_preproc_if_token1] = ACTIONS(9081), + [aux_sym_preproc_if_token2] = ACTIONS(9081), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9081), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9081), + [sym_preproc_directive] = ACTIONS(9081), + [anon_sym_LPAREN2] = ACTIONS(9083), + [anon_sym_TILDE] = ACTIONS(9083), + [anon_sym_STAR] = ACTIONS(9083), + [anon_sym_AMP_AMP] = ACTIONS(9083), + [anon_sym_AMP] = ACTIONS(9081), + [anon_sym_SEMI] = ACTIONS(9083), + [anon_sym___extension__] = ACTIONS(9081), + [anon_sym_typedef] = ACTIONS(9081), + [anon_sym_virtual] = ACTIONS(9081), + [anon_sym_extern] = ACTIONS(9081), + [anon_sym___attribute__] = ACTIONS(9081), + [anon_sym___attribute] = ACTIONS(9081), + [anon_sym_using] = ACTIONS(9081), + [anon_sym_COLON_COLON] = ACTIONS(9083), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9083), + [anon_sym___declspec] = ACTIONS(9081), + [anon_sym___based] = ACTIONS(9081), + [anon_sym_signed] = ACTIONS(9081), + [anon_sym_unsigned] = ACTIONS(9081), + [anon_sym_long] = ACTIONS(9081), + [anon_sym_short] = ACTIONS(9081), + [anon_sym_LBRACK] = ACTIONS(9081), + [anon_sym_static] = ACTIONS(9081), + [anon_sym_register] = ACTIONS(9081), + [anon_sym_inline] = ACTIONS(9081), + [anon_sym___inline] = ACTIONS(9081), + [anon_sym___inline__] = ACTIONS(9081), + [anon_sym___forceinline] = ACTIONS(9081), + [anon_sym_thread_local] = ACTIONS(9081), + [anon_sym___thread] = ACTIONS(9081), + [anon_sym_const] = ACTIONS(9081), + [anon_sym_constexpr] = ACTIONS(9081), + [anon_sym_volatile] = ACTIONS(9081), + [anon_sym_restrict] = ACTIONS(9081), + [anon_sym___restrict__] = ACTIONS(9081), + [anon_sym__Atomic] = ACTIONS(9081), + [anon_sym__Noreturn] = ACTIONS(9081), + [anon_sym_noreturn] = ACTIONS(9081), + [anon_sym__Nonnull] = ACTIONS(9081), + [anon_sym_mutable] = ACTIONS(9081), + [anon_sym_constinit] = ACTIONS(9081), + [anon_sym_consteval] = ACTIONS(9081), + [anon_sym_alignas] = ACTIONS(9081), + [anon_sym__Alignas] = ACTIONS(9081), + [sym_primitive_type] = ACTIONS(9081), + [anon_sym_enum] = ACTIONS(9081), + [anon_sym_class] = ACTIONS(9081), + [anon_sym_struct] = ACTIONS(9081), + [anon_sym_union] = ACTIONS(9081), + [anon_sym_typename] = ACTIONS(9081), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9081), + [anon_sym_decltype] = ACTIONS(9081), + [anon_sym_explicit] = ACTIONS(9081), + [anon_sym_private] = ACTIONS(9081), + [anon_sym_template] = ACTIONS(9081), + [anon_sym_operator] = ACTIONS(9081), + [anon_sym_friend] = ACTIONS(9081), + [anon_sym_public] = ACTIONS(9081), + [anon_sym_protected] = ACTIONS(9081), + [anon_sym_static_assert] = ACTIONS(9081), + [anon_sym_LBRACK_COLON] = ACTIONS(9083), }, [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(9085), + [aux_sym_preproc_def_token1] = ACTIONS(9085), + [aux_sym_preproc_if_token1] = ACTIONS(9085), + [aux_sym_preproc_if_token2] = ACTIONS(9085), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9085), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9085), + [sym_preproc_directive] = ACTIONS(9085), + [anon_sym_LPAREN2] = ACTIONS(9087), + [anon_sym_TILDE] = ACTIONS(9087), + [anon_sym_STAR] = ACTIONS(9087), + [anon_sym_AMP_AMP] = ACTIONS(9087), + [anon_sym_AMP] = ACTIONS(9085), + [anon_sym_SEMI] = ACTIONS(9087), + [anon_sym___extension__] = ACTIONS(9085), + [anon_sym_typedef] = ACTIONS(9085), + [anon_sym_virtual] = ACTIONS(9085), + [anon_sym_extern] = ACTIONS(9085), + [anon_sym___attribute__] = ACTIONS(9085), + [anon_sym___attribute] = ACTIONS(9085), + [anon_sym_using] = ACTIONS(9085), + [anon_sym_COLON_COLON] = ACTIONS(9087), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9087), + [anon_sym___declspec] = ACTIONS(9085), + [anon_sym___based] = ACTIONS(9085), + [anon_sym_signed] = ACTIONS(9085), + [anon_sym_unsigned] = ACTIONS(9085), + [anon_sym_long] = ACTIONS(9085), + [anon_sym_short] = ACTIONS(9085), + [anon_sym_LBRACK] = ACTIONS(9085), + [anon_sym_static] = ACTIONS(9085), + [anon_sym_register] = ACTIONS(9085), + [anon_sym_inline] = ACTIONS(9085), + [anon_sym___inline] = ACTIONS(9085), + [anon_sym___inline__] = ACTIONS(9085), + [anon_sym___forceinline] = ACTIONS(9085), + [anon_sym_thread_local] = ACTIONS(9085), + [anon_sym___thread] = ACTIONS(9085), + [anon_sym_const] = ACTIONS(9085), + [anon_sym_constexpr] = ACTIONS(9085), + [anon_sym_volatile] = ACTIONS(9085), + [anon_sym_restrict] = ACTIONS(9085), + [anon_sym___restrict__] = ACTIONS(9085), + [anon_sym__Atomic] = ACTIONS(9085), + [anon_sym__Noreturn] = ACTIONS(9085), + [anon_sym_noreturn] = ACTIONS(9085), + [anon_sym__Nonnull] = ACTIONS(9085), + [anon_sym_mutable] = ACTIONS(9085), + [anon_sym_constinit] = ACTIONS(9085), + [anon_sym_consteval] = ACTIONS(9085), + [anon_sym_alignas] = ACTIONS(9085), + [anon_sym__Alignas] = ACTIONS(9085), + [sym_primitive_type] = ACTIONS(9085), + [anon_sym_enum] = ACTIONS(9085), + [anon_sym_class] = ACTIONS(9085), + [anon_sym_struct] = ACTIONS(9085), + [anon_sym_union] = ACTIONS(9085), + [anon_sym_typename] = ACTIONS(9085), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9085), + [anon_sym_decltype] = ACTIONS(9085), + [anon_sym_explicit] = ACTIONS(9085), + [anon_sym_private] = ACTIONS(9085), + [anon_sym_template] = ACTIONS(9085), + [anon_sym_operator] = ACTIONS(9085), + [anon_sym_friend] = ACTIONS(9085), + [anon_sym_public] = ACTIONS(9085), + [anon_sym_protected] = ACTIONS(9085), + [anon_sym_static_assert] = ACTIONS(9085), + [anon_sym_LBRACK_COLON] = ACTIONS(9087), }, [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_identifier] = ACTIONS(9089), + [aux_sym_preproc_def_token1] = ACTIONS(9089), + [aux_sym_preproc_if_token1] = ACTIONS(9089), + [aux_sym_preproc_if_token2] = ACTIONS(9089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9089), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9089), + [sym_preproc_directive] = ACTIONS(9089), + [anon_sym_LPAREN2] = ACTIONS(9091), + [anon_sym_TILDE] = ACTIONS(9091), + [anon_sym_STAR] = ACTIONS(9091), + [anon_sym_AMP_AMP] = ACTIONS(9091), + [anon_sym_AMP] = ACTIONS(9089), + [anon_sym_SEMI] = ACTIONS(9091), + [anon_sym___extension__] = ACTIONS(9089), + [anon_sym_typedef] = ACTIONS(9089), + [anon_sym_virtual] = ACTIONS(9089), + [anon_sym_extern] = ACTIONS(9089), + [anon_sym___attribute__] = ACTIONS(9089), + [anon_sym___attribute] = ACTIONS(9089), + [anon_sym_using] = ACTIONS(9089), + [anon_sym_COLON_COLON] = ACTIONS(9091), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9091), + [anon_sym___declspec] = ACTIONS(9089), + [anon_sym___based] = ACTIONS(9089), + [anon_sym_signed] = ACTIONS(9089), + [anon_sym_unsigned] = ACTIONS(9089), + [anon_sym_long] = ACTIONS(9089), + [anon_sym_short] = ACTIONS(9089), + [anon_sym_LBRACK] = ACTIONS(9089), + [anon_sym_static] = ACTIONS(9089), + [anon_sym_register] = ACTIONS(9089), + [anon_sym_inline] = ACTIONS(9089), + [anon_sym___inline] = ACTIONS(9089), + [anon_sym___inline__] = ACTIONS(9089), + [anon_sym___forceinline] = ACTIONS(9089), + [anon_sym_thread_local] = ACTIONS(9089), + [anon_sym___thread] = ACTIONS(9089), + [anon_sym_const] = ACTIONS(9089), + [anon_sym_constexpr] = ACTIONS(9089), + [anon_sym_volatile] = ACTIONS(9089), + [anon_sym_restrict] = ACTIONS(9089), + [anon_sym___restrict__] = ACTIONS(9089), + [anon_sym__Atomic] = ACTIONS(9089), + [anon_sym__Noreturn] = ACTIONS(9089), + [anon_sym_noreturn] = ACTIONS(9089), + [anon_sym__Nonnull] = ACTIONS(9089), + [anon_sym_mutable] = ACTIONS(9089), + [anon_sym_constinit] = ACTIONS(9089), + [anon_sym_consteval] = ACTIONS(9089), + [anon_sym_alignas] = ACTIONS(9089), + [anon_sym__Alignas] = ACTIONS(9089), + [sym_primitive_type] = ACTIONS(9089), + [anon_sym_enum] = ACTIONS(9089), + [anon_sym_class] = ACTIONS(9089), + [anon_sym_struct] = ACTIONS(9089), + [anon_sym_union] = ACTIONS(9089), + [anon_sym_typename] = ACTIONS(9089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9089), + [anon_sym_decltype] = ACTIONS(9089), + [anon_sym_explicit] = ACTIONS(9089), + [anon_sym_private] = ACTIONS(9089), + [anon_sym_template] = ACTIONS(9089), + [anon_sym_operator] = ACTIONS(9089), + [anon_sym_friend] = ACTIONS(9089), + [anon_sym_public] = ACTIONS(9089), + [anon_sym_protected] = ACTIONS(9089), + [anon_sym_static_assert] = ACTIONS(9089), + [anon_sym_LBRACK_COLON] = ACTIONS(9091), }, [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(9093), + [aux_sym_preproc_def_token1] = ACTIONS(9093), + [aux_sym_preproc_if_token1] = ACTIONS(9093), + [aux_sym_preproc_if_token2] = ACTIONS(9093), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9093), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9093), + [sym_preproc_directive] = ACTIONS(9093), + [anon_sym_LPAREN2] = ACTIONS(9095), + [anon_sym_TILDE] = ACTIONS(9095), + [anon_sym_STAR] = ACTIONS(9095), + [anon_sym_AMP_AMP] = ACTIONS(9095), + [anon_sym_AMP] = ACTIONS(9093), + [anon_sym_SEMI] = ACTIONS(9095), + [anon_sym___extension__] = ACTIONS(9093), + [anon_sym_typedef] = ACTIONS(9093), + [anon_sym_virtual] = ACTIONS(9093), + [anon_sym_extern] = ACTIONS(9093), + [anon_sym___attribute__] = ACTIONS(9093), + [anon_sym___attribute] = ACTIONS(9093), + [anon_sym_using] = ACTIONS(9093), + [anon_sym_COLON_COLON] = ACTIONS(9095), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9095), + [anon_sym___declspec] = ACTIONS(9093), + [anon_sym___based] = ACTIONS(9093), + [anon_sym_signed] = ACTIONS(9093), + [anon_sym_unsigned] = ACTIONS(9093), + [anon_sym_long] = ACTIONS(9093), + [anon_sym_short] = ACTIONS(9093), + [anon_sym_LBRACK] = ACTIONS(9093), + [anon_sym_static] = ACTIONS(9093), + [anon_sym_register] = ACTIONS(9093), + [anon_sym_inline] = ACTIONS(9093), + [anon_sym___inline] = ACTIONS(9093), + [anon_sym___inline__] = ACTIONS(9093), + [anon_sym___forceinline] = ACTIONS(9093), + [anon_sym_thread_local] = ACTIONS(9093), + [anon_sym___thread] = ACTIONS(9093), + [anon_sym_const] = ACTIONS(9093), + [anon_sym_constexpr] = ACTIONS(9093), + [anon_sym_volatile] = ACTIONS(9093), + [anon_sym_restrict] = ACTIONS(9093), + [anon_sym___restrict__] = ACTIONS(9093), + [anon_sym__Atomic] = ACTIONS(9093), + [anon_sym__Noreturn] = ACTIONS(9093), + [anon_sym_noreturn] = ACTIONS(9093), + [anon_sym__Nonnull] = ACTIONS(9093), + [anon_sym_mutable] = ACTIONS(9093), + [anon_sym_constinit] = ACTIONS(9093), + [anon_sym_consteval] = ACTIONS(9093), + [anon_sym_alignas] = ACTIONS(9093), + [anon_sym__Alignas] = ACTIONS(9093), + [sym_primitive_type] = ACTIONS(9093), + [anon_sym_enum] = ACTIONS(9093), + [anon_sym_class] = ACTIONS(9093), + [anon_sym_struct] = ACTIONS(9093), + [anon_sym_union] = ACTIONS(9093), + [anon_sym_typename] = ACTIONS(9093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9093), + [anon_sym_decltype] = ACTIONS(9093), + [anon_sym_explicit] = ACTIONS(9093), + [anon_sym_private] = ACTIONS(9093), + [anon_sym_template] = ACTIONS(9093), + [anon_sym_operator] = ACTIONS(9093), + [anon_sym_friend] = ACTIONS(9093), + [anon_sym_public] = ACTIONS(9093), + [anon_sym_protected] = ACTIONS(9093), + [anon_sym_static_assert] = ACTIONS(9093), + [anon_sym_LBRACK_COLON] = ACTIONS(9095), }, [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), - }, - [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), - }, - [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), - }, - [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), - }, - [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(8946), + [aux_sym_preproc_def_token1] = ACTIONS(8946), + [aux_sym_preproc_if_token1] = ACTIONS(8946), + [aux_sym_preproc_if_token2] = ACTIONS(8946), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8946), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8946), + [sym_preproc_directive] = ACTIONS(8946), + [anon_sym_LPAREN2] = ACTIONS(8948), + [anon_sym_TILDE] = ACTIONS(8948), + [anon_sym_STAR] = ACTIONS(8948), + [anon_sym_AMP_AMP] = ACTIONS(8948), + [anon_sym_AMP] = ACTIONS(8946), + [anon_sym_SEMI] = ACTIONS(8948), + [anon_sym___extension__] = ACTIONS(8946), + [anon_sym_typedef] = 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_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_typename] = ACTIONS(8946), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8946), + [anon_sym_decltype] = ACTIONS(8946), + [anon_sym_explicit] = ACTIONS(8946), + [anon_sym_private] = ACTIONS(8946), + [anon_sym_template] = ACTIONS(8946), + [anon_sym_operator] = ACTIONS(8946), + [anon_sym_friend] = ACTIONS(8946), + [anon_sym_public] = ACTIONS(8946), + [anon_sym_protected] = ACTIONS(8946), + [anon_sym_static_assert] = ACTIONS(8946), + [anon_sym_LBRACK_COLON] = ACTIONS(8948), + }, + [STATE(3596)] = { + [sym_identifier] = ACTIONS(8950), + [aux_sym_preproc_def_token1] = ACTIONS(8950), + [aux_sym_preproc_if_token1] = ACTIONS(8950), + [aux_sym_preproc_if_token2] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8950), + [sym_preproc_directive] = ACTIONS(8950), + [anon_sym_LPAREN2] = ACTIONS(8952), + [anon_sym_TILDE] = ACTIONS(8952), + [anon_sym_STAR] = ACTIONS(8952), + [anon_sym_AMP_AMP] = ACTIONS(8952), + [anon_sym_AMP] = ACTIONS(8950), + [anon_sym_SEMI] = ACTIONS(8952), + [anon_sym___extension__] = ACTIONS(8950), + [anon_sym_typedef] = 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_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_typename] = ACTIONS(8950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8950), + [anon_sym_decltype] = ACTIONS(8950), + [anon_sym_explicit] = ACTIONS(8950), + [anon_sym_private] = ACTIONS(8950), + [anon_sym_template] = ACTIONS(8950), + [anon_sym_operator] = ACTIONS(8950), + [anon_sym_friend] = ACTIONS(8950), + [anon_sym_public] = ACTIONS(8950), + [anon_sym_protected] = ACTIONS(8950), + [anon_sym_static_assert] = ACTIONS(8950), + [anon_sym_LBRACK_COLON] = ACTIONS(8952), + }, + [STATE(3597)] = { + [sym_identifier] = ACTIONS(8954), + [aux_sym_preproc_def_token1] = ACTIONS(8954), + [aux_sym_preproc_if_token1] = ACTIONS(8954), + [aux_sym_preproc_if_token2] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8954), + [sym_preproc_directive] = ACTIONS(8954), + [anon_sym_LPAREN2] = ACTIONS(8956), + [anon_sym_TILDE] = ACTIONS(8956), + [anon_sym_STAR] = ACTIONS(8956), + [anon_sym_AMP_AMP] = ACTIONS(8956), + [anon_sym_AMP] = ACTIONS(8954), + [anon_sym_SEMI] = ACTIONS(8956), + [anon_sym___extension__] = ACTIONS(8954), + [anon_sym_typedef] = 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_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_typename] = ACTIONS(8954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8954), + [anon_sym_decltype] = ACTIONS(8954), + [anon_sym_explicit] = ACTIONS(8954), + [anon_sym_private] = ACTIONS(8954), + [anon_sym_template] = ACTIONS(8954), + [anon_sym_operator] = ACTIONS(8954), + [anon_sym_friend] = ACTIONS(8954), + [anon_sym_public] = ACTIONS(8954), + [anon_sym_protected] = ACTIONS(8954), + [anon_sym_static_assert] = ACTIONS(8954), + [anon_sym_LBRACK_COLON] = ACTIONS(8956), + }, + [STATE(3598)] = { + [sym_identifier] = ACTIONS(8950), + [aux_sym_preproc_def_token1] = ACTIONS(8950), + [aux_sym_preproc_if_token1] = ACTIONS(8950), + [aux_sym_preproc_if_token2] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8950), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8950), + [sym_preproc_directive] = ACTIONS(8950), + [anon_sym_LPAREN2] = ACTIONS(8952), + [anon_sym_TILDE] = ACTIONS(8952), + [anon_sym_STAR] = ACTIONS(8952), + [anon_sym_AMP_AMP] = ACTIONS(8952), + [anon_sym_AMP] = ACTIONS(8950), + [anon_sym_SEMI] = ACTIONS(8952), + [anon_sym___extension__] = ACTIONS(8950), + [anon_sym_typedef] = 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_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_typename] = ACTIONS(8950), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8950), + [anon_sym_decltype] = ACTIONS(8950), + [anon_sym_explicit] = ACTIONS(8950), + [anon_sym_private] = ACTIONS(8950), + [anon_sym_template] = ACTIONS(8950), + [anon_sym_operator] = ACTIONS(8950), + [anon_sym_friend] = ACTIONS(8950), + [anon_sym_public] = ACTIONS(8950), + [anon_sym_protected] = ACTIONS(8950), + [anon_sym_static_assert] = ACTIONS(8950), + [anon_sym_LBRACK_COLON] = ACTIONS(8952), + }, + [STATE(3599)] = { + [sym_identifier] = ACTIONS(8954), + [aux_sym_preproc_def_token1] = ACTIONS(8954), + [aux_sym_preproc_if_token1] = ACTIONS(8954), + [aux_sym_preproc_if_token2] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8954), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8954), + [sym_preproc_directive] = ACTIONS(8954), + [anon_sym_LPAREN2] = ACTIONS(8956), + [anon_sym_TILDE] = ACTIONS(8956), + [anon_sym_STAR] = ACTIONS(8956), + [anon_sym_AMP_AMP] = ACTIONS(8956), + [anon_sym_AMP] = ACTIONS(8954), + [anon_sym_SEMI] = ACTIONS(8956), + [anon_sym___extension__] = ACTIONS(8954), + [anon_sym_typedef] = 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_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_typename] = ACTIONS(8954), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8954), + [anon_sym_decltype] = ACTIONS(8954), + [anon_sym_explicit] = ACTIONS(8954), + [anon_sym_private] = ACTIONS(8954), + [anon_sym_template] = ACTIONS(8954), + [anon_sym_operator] = ACTIONS(8954), + [anon_sym_friend] = ACTIONS(8954), + [anon_sym_public] = ACTIONS(8954), + [anon_sym_protected] = ACTIONS(8954), + [anon_sym_static_assert] = ACTIONS(8954), + [anon_sym_LBRACK_COLON] = ACTIONS(8956), }, [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(8966), + [aux_sym_preproc_def_token1] = ACTIONS(8966), + [aux_sym_preproc_if_token1] = ACTIONS(8966), + [aux_sym_preproc_if_token2] = ACTIONS(8966), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8966), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8966), + [sym_preproc_directive] = ACTIONS(8966), + [anon_sym_LPAREN2] = ACTIONS(8968), + [anon_sym_TILDE] = ACTIONS(8968), + [anon_sym_STAR] = ACTIONS(8968), + [anon_sym_AMP_AMP] = ACTIONS(8968), + [anon_sym_AMP] = ACTIONS(8966), + [anon_sym_SEMI] = ACTIONS(8968), + [anon_sym___extension__] = ACTIONS(8966), + [anon_sym_typedef] = ACTIONS(8966), + [anon_sym_virtual] = ACTIONS(8966), + [anon_sym_extern] = ACTIONS(8966), + [anon_sym___attribute__] = ACTIONS(8966), + [anon_sym___attribute] = ACTIONS(8966), + [anon_sym_using] = ACTIONS(8966), + [anon_sym_COLON_COLON] = ACTIONS(8968), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8968), + [anon_sym___declspec] = ACTIONS(8966), + [anon_sym___based] = ACTIONS(8966), + [anon_sym_signed] = ACTIONS(8966), + [anon_sym_unsigned] = ACTIONS(8966), + [anon_sym_long] = ACTIONS(8966), + [anon_sym_short] = ACTIONS(8966), + [anon_sym_LBRACK] = ACTIONS(8966), + [anon_sym_static] = ACTIONS(8966), + [anon_sym_register] = ACTIONS(8966), + [anon_sym_inline] = ACTIONS(8966), + [anon_sym___inline] = ACTIONS(8966), + [anon_sym___inline__] = ACTIONS(8966), + [anon_sym___forceinline] = ACTIONS(8966), + [anon_sym_thread_local] = ACTIONS(8966), + [anon_sym___thread] = ACTIONS(8966), + [anon_sym_const] = ACTIONS(8966), + [anon_sym_constexpr] = ACTIONS(8966), + [anon_sym_volatile] = ACTIONS(8966), + [anon_sym_restrict] = ACTIONS(8966), + [anon_sym___restrict__] = ACTIONS(8966), + [anon_sym__Atomic] = ACTIONS(8966), + [anon_sym__Noreturn] = ACTIONS(8966), + [anon_sym_noreturn] = ACTIONS(8966), + [anon_sym__Nonnull] = ACTIONS(8966), + [anon_sym_mutable] = ACTIONS(8966), + [anon_sym_constinit] = ACTIONS(8966), + [anon_sym_consteval] = ACTIONS(8966), + [anon_sym_alignas] = ACTIONS(8966), + [anon_sym__Alignas] = ACTIONS(8966), + [sym_primitive_type] = ACTIONS(8966), + [anon_sym_enum] = ACTIONS(8966), + [anon_sym_class] = ACTIONS(8966), + [anon_sym_struct] = ACTIONS(8966), + [anon_sym_union] = ACTIONS(8966), + [anon_sym_typename] = ACTIONS(8966), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8966), + [anon_sym_decltype] = ACTIONS(8966), + [anon_sym_explicit] = ACTIONS(8966), + [anon_sym_private] = ACTIONS(8966), + [anon_sym_template] = ACTIONS(8966), + [anon_sym_operator] = ACTIONS(8966), + [anon_sym_friend] = ACTIONS(8966), + [anon_sym_public] = ACTIONS(8966), + [anon_sym_protected] = ACTIONS(8966), + [anon_sym_static_assert] = ACTIONS(8966), + [anon_sym_LBRACK_COLON] = ACTIONS(8968), }, [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_identifier] = ACTIONS(8978), + [aux_sym_preproc_def_token1] = ACTIONS(8978), + [aux_sym_preproc_if_token1] = ACTIONS(8978), + [aux_sym_preproc_if_token2] = ACTIONS(8978), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8978), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8978), + [sym_preproc_directive] = ACTIONS(8978), + [anon_sym_LPAREN2] = ACTIONS(8980), + [anon_sym_TILDE] = ACTIONS(8980), + [anon_sym_STAR] = ACTIONS(8980), + [anon_sym_AMP_AMP] = ACTIONS(8980), + [anon_sym_AMP] = ACTIONS(8978), + [anon_sym_SEMI] = ACTIONS(8980), + [anon_sym___extension__] = ACTIONS(8978), + [anon_sym_typedef] = ACTIONS(8978), + [anon_sym_virtual] = ACTIONS(8978), + [anon_sym_extern] = ACTIONS(8978), + [anon_sym___attribute__] = ACTIONS(8978), + [anon_sym___attribute] = ACTIONS(8978), + [anon_sym_using] = ACTIONS(8978), + [anon_sym_COLON_COLON] = ACTIONS(8980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8980), + [anon_sym___declspec] = ACTIONS(8978), + [anon_sym___based] = ACTIONS(8978), + [anon_sym_signed] = ACTIONS(8978), + [anon_sym_unsigned] = ACTIONS(8978), + [anon_sym_long] = ACTIONS(8978), + [anon_sym_short] = ACTIONS(8978), + [anon_sym_LBRACK] = ACTIONS(8978), + [anon_sym_static] = ACTIONS(8978), + [anon_sym_register] = ACTIONS(8978), + [anon_sym_inline] = ACTIONS(8978), + [anon_sym___inline] = ACTIONS(8978), + [anon_sym___inline__] = ACTIONS(8978), + [anon_sym___forceinline] = ACTIONS(8978), + [anon_sym_thread_local] = ACTIONS(8978), + [anon_sym___thread] = ACTIONS(8978), + [anon_sym_const] = ACTIONS(8978), + [anon_sym_constexpr] = ACTIONS(8978), + [anon_sym_volatile] = ACTIONS(8978), + [anon_sym_restrict] = ACTIONS(8978), + [anon_sym___restrict__] = ACTIONS(8978), + [anon_sym__Atomic] = ACTIONS(8978), + [anon_sym__Noreturn] = ACTIONS(8978), + [anon_sym_noreturn] = ACTIONS(8978), + [anon_sym__Nonnull] = ACTIONS(8978), + [anon_sym_mutable] = ACTIONS(8978), + [anon_sym_constinit] = ACTIONS(8978), + [anon_sym_consteval] = ACTIONS(8978), + [anon_sym_alignas] = ACTIONS(8978), + [anon_sym__Alignas] = ACTIONS(8978), + [sym_primitive_type] = ACTIONS(8978), + [anon_sym_enum] = ACTIONS(8978), + [anon_sym_class] = ACTIONS(8978), + [anon_sym_struct] = ACTIONS(8978), + [anon_sym_union] = ACTIONS(8978), + [anon_sym_typename] = ACTIONS(8978), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8978), + [anon_sym_decltype] = ACTIONS(8978), + [anon_sym_explicit] = ACTIONS(8978), + [anon_sym_private] = ACTIONS(8978), + [anon_sym_template] = ACTIONS(8978), + [anon_sym_operator] = ACTIONS(8978), + [anon_sym_friend] = ACTIONS(8978), + [anon_sym_public] = ACTIONS(8978), + [anon_sym_protected] = ACTIONS(8978), + [anon_sym_static_assert] = ACTIONS(8978), + [anon_sym_LBRACK_COLON] = ACTIONS(8980), }, [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_ms_based_modifier] = STATE(12437), + [sym_ms_unaligned_ptr_modifier] = STATE(7214), + [sym_ms_pointer_modifier] = STATE(7011), + [sym__type_declarator] = STATE(9434), + [sym__abstract_declarator] = STATE(10106), + [sym_parenthesized_type_declarator] = STATE(3501), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(3501), + [sym_pointer_type_declarator] = STATE(3478), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(3501), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(3501), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(4639), + [sym_alignas_qualifier] = STATE(2649), + [sym_parameter_list] = STATE(5186), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(3501), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9625), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4639), + [aux_sym_pointer_declarator_repeat1] = STATE(7011), + [sym_identifier] = ACTIONS(8908), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(6000), + [anon_sym_STAR] = ACTIONS(6002), + [anon_sym_AMP_AMP] = ACTIONS(6004), + [anon_sym_AMP] = ACTIONS(6006), + [anon_sym___extension__] = ACTIONS(9115), + [anon_sym_COLON_COLON] = ACTIONS(9481), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(8922), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8922), + [sym_ms_signed_ptr_modifier] = ACTIONS(8922), + [anon_sym__unaligned] = ACTIONS(8924), + [anon_sym___unaligned] = ACTIONS(8924), + [anon_sym_signed] = ACTIONS(9119), + [anon_sym_unsigned] = ACTIONS(9119), + [anon_sym_long] = ACTIONS(9119), + [anon_sym_short] = ACTIONS(9119), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_const] = ACTIONS(9115), + [anon_sym_constexpr] = ACTIONS(9115), + [anon_sym_volatile] = ACTIONS(9115), + [anon_sym_restrict] = ACTIONS(9115), + [anon_sym___restrict__] = ACTIONS(9115), + [anon_sym__Atomic] = ACTIONS(9115), + [anon_sym__Noreturn] = ACTIONS(9115), + [anon_sym_noreturn] = ACTIONS(9115), + [anon_sym__Nonnull] = ACTIONS(9115), + [anon_sym_mutable] = ACTIONS(9115), + [anon_sym_constinit] = ACTIONS(9115), + [anon_sym_consteval] = ACTIONS(9115), + [anon_sym_alignas] = ACTIONS(9121), + [anon_sym__Alignas] = ACTIONS(9121), + [sym_primitive_type] = ACTIONS(9123), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_identifier] = ACTIONS(8982), + [aux_sym_preproc_def_token1] = ACTIONS(8982), + [aux_sym_preproc_if_token1] = ACTIONS(8982), + [aux_sym_preproc_if_token2] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8982), + [sym_preproc_directive] = ACTIONS(8982), + [anon_sym_LPAREN2] = ACTIONS(8984), + [anon_sym_TILDE] = ACTIONS(8984), + [anon_sym_STAR] = ACTIONS(8984), + [anon_sym_AMP_AMP] = ACTIONS(8984), + [anon_sym_AMP] = ACTIONS(8982), + [anon_sym_SEMI] = ACTIONS(8984), + [anon_sym___extension__] = ACTIONS(8982), + [anon_sym_typedef] = ACTIONS(8982), + [anon_sym_virtual] = ACTIONS(8982), + [anon_sym_extern] = ACTIONS(8982), + [anon_sym___attribute__] = ACTIONS(8982), + [anon_sym___attribute] = ACTIONS(8982), + [anon_sym_using] = ACTIONS(8982), + [anon_sym_COLON_COLON] = ACTIONS(8984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8984), + [anon_sym___declspec] = ACTIONS(8982), + [anon_sym___based] = ACTIONS(8982), + [anon_sym_signed] = ACTIONS(8982), + [anon_sym_unsigned] = ACTIONS(8982), + [anon_sym_long] = ACTIONS(8982), + [anon_sym_short] = ACTIONS(8982), + [anon_sym_LBRACK] = ACTIONS(8982), + [anon_sym_static] = ACTIONS(8982), + [anon_sym_register] = ACTIONS(8982), + [anon_sym_inline] = ACTIONS(8982), + [anon_sym___inline] = ACTIONS(8982), + [anon_sym___inline__] = ACTIONS(8982), + [anon_sym___forceinline] = ACTIONS(8982), + [anon_sym_thread_local] = ACTIONS(8982), + [anon_sym___thread] = ACTIONS(8982), + [anon_sym_const] = ACTIONS(8982), + [anon_sym_constexpr] = ACTIONS(8982), + [anon_sym_volatile] = ACTIONS(8982), + [anon_sym_restrict] = ACTIONS(8982), + [anon_sym___restrict__] = ACTIONS(8982), + [anon_sym__Atomic] = ACTIONS(8982), + [anon_sym__Noreturn] = ACTIONS(8982), + [anon_sym_noreturn] = ACTIONS(8982), + [anon_sym__Nonnull] = ACTIONS(8982), + [anon_sym_mutable] = ACTIONS(8982), + [anon_sym_constinit] = ACTIONS(8982), + [anon_sym_consteval] = ACTIONS(8982), + [anon_sym_alignas] = ACTIONS(8982), + [anon_sym__Alignas] = ACTIONS(8982), + [sym_primitive_type] = ACTIONS(8982), + [anon_sym_enum] = ACTIONS(8982), + [anon_sym_class] = ACTIONS(8982), + [anon_sym_struct] = ACTIONS(8982), + [anon_sym_union] = ACTIONS(8982), + [anon_sym_typename] = ACTIONS(8982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8982), + [anon_sym_decltype] = ACTIONS(8982), + [anon_sym_explicit] = ACTIONS(8982), + [anon_sym_private] = ACTIONS(8982), + [anon_sym_template] = ACTIONS(8982), + [anon_sym_operator] = ACTIONS(8982), + [anon_sym_friend] = ACTIONS(8982), + [anon_sym_public] = ACTIONS(8982), + [anon_sym_protected] = ACTIONS(8982), + [anon_sym_static_assert] = ACTIONS(8982), + [anon_sym_LBRACK_COLON] = ACTIONS(8984), }, [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_identifier] = ACTIONS(8982), + [aux_sym_preproc_def_token1] = ACTIONS(8982), + [aux_sym_preproc_if_token1] = ACTIONS(8982), + [aux_sym_preproc_if_token2] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8982), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8982), + [sym_preproc_directive] = ACTIONS(8982), + [anon_sym_LPAREN2] = ACTIONS(8984), + [anon_sym_TILDE] = ACTIONS(8984), + [anon_sym_STAR] = ACTIONS(8984), + [anon_sym_AMP_AMP] = ACTIONS(8984), + [anon_sym_AMP] = ACTIONS(8982), + [anon_sym_SEMI] = ACTIONS(8984), + [anon_sym___extension__] = ACTIONS(8982), + [anon_sym_typedef] = ACTIONS(8982), + [anon_sym_virtual] = ACTIONS(8982), + [anon_sym_extern] = ACTIONS(8982), + [anon_sym___attribute__] = ACTIONS(8982), + [anon_sym___attribute] = ACTIONS(8982), + [anon_sym_using] = ACTIONS(8982), + [anon_sym_COLON_COLON] = ACTIONS(8984), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8984), + [anon_sym___declspec] = ACTIONS(8982), + [anon_sym___based] = ACTIONS(8982), + [anon_sym_signed] = ACTIONS(8982), + [anon_sym_unsigned] = ACTIONS(8982), + [anon_sym_long] = ACTIONS(8982), + [anon_sym_short] = ACTIONS(8982), + [anon_sym_LBRACK] = ACTIONS(8982), + [anon_sym_static] = ACTIONS(8982), + [anon_sym_register] = ACTIONS(8982), + [anon_sym_inline] = ACTIONS(8982), + [anon_sym___inline] = ACTIONS(8982), + [anon_sym___inline__] = ACTIONS(8982), + [anon_sym___forceinline] = ACTIONS(8982), + [anon_sym_thread_local] = ACTIONS(8982), + [anon_sym___thread] = ACTIONS(8982), + [anon_sym_const] = ACTIONS(8982), + [anon_sym_constexpr] = ACTIONS(8982), + [anon_sym_volatile] = ACTIONS(8982), + [anon_sym_restrict] = ACTIONS(8982), + [anon_sym___restrict__] = ACTIONS(8982), + [anon_sym__Atomic] = ACTIONS(8982), + [anon_sym__Noreturn] = ACTIONS(8982), + [anon_sym_noreturn] = ACTIONS(8982), + [anon_sym__Nonnull] = ACTIONS(8982), + [anon_sym_mutable] = ACTIONS(8982), + [anon_sym_constinit] = ACTIONS(8982), + [anon_sym_consteval] = ACTIONS(8982), + [anon_sym_alignas] = ACTIONS(8982), + [anon_sym__Alignas] = ACTIONS(8982), + [sym_primitive_type] = ACTIONS(8982), + [anon_sym_enum] = ACTIONS(8982), + [anon_sym_class] = ACTIONS(8982), + [anon_sym_struct] = ACTIONS(8982), + [anon_sym_union] = ACTIONS(8982), + [anon_sym_typename] = ACTIONS(8982), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8982), + [anon_sym_decltype] = ACTIONS(8982), + [anon_sym_explicit] = ACTIONS(8982), + [anon_sym_private] = ACTIONS(8982), + [anon_sym_template] = ACTIONS(8982), + [anon_sym_operator] = ACTIONS(8982), + [anon_sym_friend] = ACTIONS(8982), + [anon_sym_public] = ACTIONS(8982), + [anon_sym_protected] = ACTIONS(8982), + [anon_sym_static_assert] = ACTIONS(8982), + [anon_sym_LBRACK_COLON] = ACTIONS(8984), }, [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(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym_RBRACE] = ACTIONS(3714), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_private] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_friend] = ACTIONS(3712), + [anon_sym_public] = ACTIONS(3712), + [anon_sym_protected] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), }, [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(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym__function_attributes_end] = STATE(5110), + [sym__function_postfix] = STATE(6224), + [sym_trailing_return_type] = STATE(5181), + [sym_requires_clause] = STATE(6224), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8287), + [anon_sym_and] = ACTIONS(8287), + [anon_sym_bitor] = ACTIONS(8287), + [anon_sym_xor] = ACTIONS(8287), + [anon_sym_bitand] = ACTIONS(8287), + [anon_sym_not_eq] = ACTIONS(8287), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(9489), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_requires] = ACTIONS(7117), + [anon_sym_DASH_GT_STAR] = ACTIONS(8287), }, [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_identifier] = 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_TILDE] = ACTIONS(3941), + [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_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_typename] = ACTIONS(3939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3939), + [anon_sym_decltype] = ACTIONS(3939), + [anon_sym_explicit] = ACTIONS(3939), + [anon_sym_private] = ACTIONS(3939), + [anon_sym_template] = ACTIONS(3939), + [anon_sym_operator] = ACTIONS(3939), + [anon_sym_friend] = ACTIONS(3939), + [anon_sym_public] = ACTIONS(3939), + [anon_sym_protected] = ACTIONS(3939), + [anon_sym_static_assert] = ACTIONS(3939), + [anon_sym_LBRACK_COLON] = ACTIONS(3941), }, [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), + [sym_identifier] = ACTIONS(3981), + [aux_sym_preproc_def_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token2] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3981), + [sym_preproc_directive] = ACTIONS(3981), + [anon_sym_LPAREN2] = ACTIONS(3983), + [anon_sym_TILDE] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym___extension__] = ACTIONS(3981), + [anon_sym_typedef] = ACTIONS(3981), + [anon_sym_virtual] = ACTIONS(3981), + [anon_sym_extern] = ACTIONS(3981), + [anon_sym___attribute__] = ACTIONS(3981), + [anon_sym___attribute] = ACTIONS(3981), + [anon_sym_using] = ACTIONS(3981), + [anon_sym_COLON_COLON] = ACTIONS(3983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3983), + [anon_sym___declspec] = ACTIONS(3981), + [anon_sym___based] = ACTIONS(3981), + [anon_sym_signed] = ACTIONS(3981), + [anon_sym_unsigned] = ACTIONS(3981), + [anon_sym_long] = ACTIONS(3981), + [anon_sym_short] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_register] = ACTIONS(3981), + [anon_sym_inline] = ACTIONS(3981), + [anon_sym___inline] = ACTIONS(3981), + [anon_sym___inline__] = ACTIONS(3981), + [anon_sym___forceinline] = ACTIONS(3981), + [anon_sym_thread_local] = ACTIONS(3981), + [anon_sym___thread] = ACTIONS(3981), + [anon_sym_const] = ACTIONS(3981), + [anon_sym_constexpr] = ACTIONS(3981), + [anon_sym_volatile] = ACTIONS(3981), + [anon_sym_restrict] = ACTIONS(3981), + [anon_sym___restrict__] = ACTIONS(3981), + [anon_sym__Atomic] = ACTIONS(3981), + [anon_sym__Noreturn] = ACTIONS(3981), + [anon_sym_noreturn] = ACTIONS(3981), + [anon_sym__Nonnull] = ACTIONS(3981), + [anon_sym_mutable] = ACTIONS(3981), + [anon_sym_constinit] = ACTIONS(3981), + [anon_sym_consteval] = ACTIONS(3981), + [anon_sym_alignas] = ACTIONS(3981), + [anon_sym__Alignas] = ACTIONS(3981), + [sym_primitive_type] = ACTIONS(3981), + [anon_sym_enum] = ACTIONS(3981), + [anon_sym_class] = ACTIONS(3981), + [anon_sym_struct] = ACTIONS(3981), + [anon_sym_union] = ACTIONS(3981), + [anon_sym_typename] = ACTIONS(3981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3981), + [anon_sym_decltype] = ACTIONS(3981), + [anon_sym_explicit] = ACTIONS(3981), + [anon_sym_private] = ACTIONS(3981), + [anon_sym_template] = ACTIONS(3981), + [anon_sym_operator] = ACTIONS(3981), + [anon_sym_friend] = ACTIONS(3981), + [anon_sym_public] = ACTIONS(3981), + [anon_sym_protected] = ACTIONS(3981), + [anon_sym_static_assert] = ACTIONS(3981), + [anon_sym_LBRACK_COLON] = ACTIONS(3983), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(4078), + [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_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_typename] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4076), + [anon_sym_decltype] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_private] = ACTIONS(4076), + [anon_sym_template] = ACTIONS(4076), + [anon_sym_operator] = ACTIONS(4076), + [anon_sym_friend] = ACTIONS(4076), + [anon_sym_public] = ACTIONS(4076), + [anon_sym_protected] = ACTIONS(4076), + [anon_sym_static_assert] = ACTIONS(4076), + [anon_sym_LBRACK_COLON] = ACTIONS(4078), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(3772), + [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_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_typename] = ACTIONS(3770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3770), + [anon_sym_decltype] = ACTIONS(3770), + [anon_sym_explicit] = ACTIONS(3770), + [anon_sym_private] = ACTIONS(3770), + [anon_sym_template] = ACTIONS(3770), + [anon_sym_operator] = ACTIONS(3770), + [anon_sym_friend] = ACTIONS(3770), + [anon_sym_public] = ACTIONS(3770), + [anon_sym_protected] = ACTIONS(3770), + [anon_sym_static_assert] = ACTIONS(3770), + [anon_sym_LBRACK_COLON] = ACTIONS(3772), }, [STATE(3611)] = { - [sym_identifier] = ACTIONS(9316), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9318), - [anon_sym_COMMA] = ACTIONS(9318), - [anon_sym_RPAREN] = ACTIONS(9318), - [aux_sym_preproc_if_token2] = ACTIONS(9318), - [aux_sym_preproc_else_token1] = ACTIONS(9318), - [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_DASH] = ACTIONS(9316), - [anon_sym_PLUS] = ACTIONS(9316), - [anon_sym_STAR] = ACTIONS(9316), - [anon_sym_SLASH] = ACTIONS(9316), - [anon_sym_PERCENT] = ACTIONS(9316), - [anon_sym_PIPE_PIPE] = ACTIONS(9318), - [anon_sym_AMP_AMP] = ACTIONS(9318), - [anon_sym_PIPE] = ACTIONS(9316), - [anon_sym_CARET] = ACTIONS(9316), - [anon_sym_AMP] = ACTIONS(9316), - [anon_sym_EQ_EQ] = ACTIONS(9318), - [anon_sym_BANG_EQ] = ACTIONS(9318), - [anon_sym_GT] = ACTIONS(9316), - [anon_sym_GT_EQ] = ACTIONS(9318), - [anon_sym_LT_EQ] = ACTIONS(9316), - [anon_sym_LT] = ACTIONS(9316), - [anon_sym_LT_LT] = ACTIONS(9316), - [anon_sym_GT_GT] = ACTIONS(9316), - [anon_sym_SEMI] = ACTIONS(9318), - [anon_sym___attribute__] = ACTIONS(9316), - [anon_sym___attribute] = ACTIONS(9316), - [anon_sym_COLON] = ACTIONS(9316), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9318), - [anon_sym_RBRACE] = ACTIONS(9318), - [anon_sym_LBRACK] = ACTIONS(9318), - [anon_sym_EQ] = ACTIONS(9316), - [anon_sym_QMARK] = ACTIONS(9318), - [anon_sym_STAR_EQ] = ACTIONS(9318), - [anon_sym_SLASH_EQ] = ACTIONS(9318), - [anon_sym_PERCENT_EQ] = ACTIONS(9318), - [anon_sym_PLUS_EQ] = ACTIONS(9318), - [anon_sym_DASH_EQ] = ACTIONS(9318), - [anon_sym_LT_LT_EQ] = ACTIONS(9318), - [anon_sym_GT_GT_EQ] = ACTIONS(9318), - [anon_sym_AMP_EQ] = ACTIONS(9318), - [anon_sym_CARET_EQ] = ACTIONS(9318), - [anon_sym_PIPE_EQ] = ACTIONS(9318), - [anon_sym_and_eq] = ACTIONS(9316), - [anon_sym_or_eq] = ACTIONS(9316), - [anon_sym_xor_eq] = ACTIONS(9316), - [anon_sym_LT_EQ_GT] = ACTIONS(9318), - [anon_sym_or] = ACTIONS(9316), - [anon_sym_and] = ACTIONS(9316), - [anon_sym_bitor] = ACTIONS(9316), - [anon_sym_xor] = ACTIONS(9316), - [anon_sym_bitand] = ACTIONS(9316), - [anon_sym_not_eq] = ACTIONS(9316), - [anon_sym_DASH_DASH] = ACTIONS(9318), - [anon_sym_PLUS_PLUS] = ACTIONS(9318), - [anon_sym_DOT] = ACTIONS(9316), - [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), + [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(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(3959), + [aux_sym_preproc_def_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token1] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3959), + [sym_preproc_directive] = ACTIONS(3959), + [anon_sym_LPAREN2] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym___extension__] = ACTIONS(3959), + [anon_sym_typedef] = ACTIONS(3959), + [anon_sym_virtual] = ACTIONS(3959), + [anon_sym_extern] = ACTIONS(3959), + [anon_sym___attribute__] = ACTIONS(3959), + [anon_sym___attribute] = ACTIONS(3959), + [anon_sym_using] = ACTIONS(3959), + [anon_sym_COLON_COLON] = ACTIONS(3961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3961), + [anon_sym___declspec] = ACTIONS(3959), + [anon_sym___based] = ACTIONS(3959), + [anon_sym_RBRACE] = ACTIONS(3961), + [anon_sym_signed] = ACTIONS(3959), + [anon_sym_unsigned] = ACTIONS(3959), + [anon_sym_long] = ACTIONS(3959), + [anon_sym_short] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3959), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_register] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym___inline] = ACTIONS(3959), + [anon_sym___inline__] = ACTIONS(3959), + [anon_sym___forceinline] = ACTIONS(3959), + [anon_sym_thread_local] = ACTIONS(3959), + [anon_sym___thread] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_constexpr] = ACTIONS(3959), + [anon_sym_volatile] = ACTIONS(3959), + [anon_sym_restrict] = ACTIONS(3959), + [anon_sym___restrict__] = ACTIONS(3959), + [anon_sym__Atomic] = ACTIONS(3959), + [anon_sym__Noreturn] = ACTIONS(3959), + [anon_sym_noreturn] = ACTIONS(3959), + [anon_sym__Nonnull] = ACTIONS(3959), + [anon_sym_mutable] = ACTIONS(3959), + [anon_sym_constinit] = ACTIONS(3959), + [anon_sym_consteval] = ACTIONS(3959), + [anon_sym_alignas] = ACTIONS(3959), + [anon_sym__Alignas] = ACTIONS(3959), + [sym_primitive_type] = ACTIONS(3959), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_union] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3959), + [anon_sym_decltype] = ACTIONS(3959), + [anon_sym_explicit] = ACTIONS(3959), + [anon_sym_private] = ACTIONS(3959), + [anon_sym_template] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_friend] = ACTIONS(3959), + [anon_sym_public] = ACTIONS(3959), + [anon_sym_protected] = ACTIONS(3959), + [anon_sym_static_assert] = ACTIONS(3959), + [anon_sym_LBRACK_COLON] = ACTIONS(3961), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3763), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7186), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7186), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7186), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7186), + [anon_sym_GT_GT] = ACTIONS(7186), + [anon_sym___extension__] = ACTIONS(7183), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON_COLON] = ACTIONS(7186), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(9492), + [anon_sym_unsigned] = ACTIONS(9492), + [anon_sym_long] = ACTIONS(9492), + [anon_sym_short] = ACTIONS(9492), + [anon_sym_LBRACK] = ACTIONS(7183), + [anon_sym_RBRACK] = ACTIONS(7186), + [anon_sym_const] = ACTIONS(7183), + [anon_sym_constexpr] = ACTIONS(7183), + [anon_sym_volatile] = ACTIONS(7183), + [anon_sym_restrict] = ACTIONS(7183), + [anon_sym___restrict__] = ACTIONS(7183), + [anon_sym__Atomic] = ACTIONS(7183), + [anon_sym__Noreturn] = ACTIONS(7183), + [anon_sym_noreturn] = ACTIONS(7183), + [anon_sym__Nonnull] = ACTIONS(7183), + [anon_sym_mutable] = ACTIONS(7183), + [anon_sym_constinit] = ACTIONS(7183), + [anon_sym_consteval] = ACTIONS(7183), + [anon_sym_alignas] = ACTIONS(7183), + [anon_sym__Alignas] = ACTIONS(7183), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7183), + [anon_sym_final] = ACTIONS(7183), + [anon_sym_override] = ACTIONS(7183), + [anon_sym_template] = ACTIONS(7183), + [anon_sym_requires] = ACTIONS(7183), + [anon_sym_LBRACK_COLON] = ACTIONS(7186), }, [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(3977), + [aux_sym_preproc_def_token1] = ACTIONS(3977), + [aux_sym_preproc_if_token1] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3977), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3977), + [sym_preproc_directive] = ACTIONS(3977), + [anon_sym_LPAREN2] = ACTIONS(3979), + [anon_sym_TILDE] = ACTIONS(3979), + [anon_sym_STAR] = ACTIONS(3979), + [anon_sym_AMP_AMP] = ACTIONS(3979), + [anon_sym_AMP] = ACTIONS(3977), + [anon_sym_SEMI] = ACTIONS(3979), + [anon_sym___extension__] = ACTIONS(3977), + [anon_sym_typedef] = ACTIONS(3977), + [anon_sym_virtual] = ACTIONS(3977), + [anon_sym_extern] = ACTIONS(3977), + [anon_sym___attribute__] = ACTIONS(3977), + [anon_sym___attribute] = ACTIONS(3977), + [anon_sym_using] = ACTIONS(3977), + [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3979), + [anon_sym___declspec] = ACTIONS(3977), + [anon_sym___based] = ACTIONS(3977), + [anon_sym_RBRACE] = ACTIONS(3979), + [anon_sym_signed] = ACTIONS(3977), + [anon_sym_unsigned] = ACTIONS(3977), + [anon_sym_long] = ACTIONS(3977), + [anon_sym_short] = ACTIONS(3977), + [anon_sym_LBRACK] = ACTIONS(3977), + [anon_sym_static] = ACTIONS(3977), + [anon_sym_register] = ACTIONS(3977), + [anon_sym_inline] = ACTIONS(3977), + [anon_sym___inline] = ACTIONS(3977), + [anon_sym___inline__] = ACTIONS(3977), + [anon_sym___forceinline] = ACTIONS(3977), + [anon_sym_thread_local] = ACTIONS(3977), + [anon_sym___thread] = ACTIONS(3977), + [anon_sym_const] = ACTIONS(3977), + [anon_sym_constexpr] = ACTIONS(3977), + [anon_sym_volatile] = ACTIONS(3977), + [anon_sym_restrict] = ACTIONS(3977), + [anon_sym___restrict__] = ACTIONS(3977), + [anon_sym__Atomic] = ACTIONS(3977), + [anon_sym__Noreturn] = ACTIONS(3977), + [anon_sym_noreturn] = ACTIONS(3977), + [anon_sym__Nonnull] = ACTIONS(3977), + [anon_sym_mutable] = ACTIONS(3977), + [anon_sym_constinit] = ACTIONS(3977), + [anon_sym_consteval] = ACTIONS(3977), + [anon_sym_alignas] = ACTIONS(3977), + [anon_sym__Alignas] = ACTIONS(3977), + [sym_primitive_type] = ACTIONS(3977), + [anon_sym_enum] = ACTIONS(3977), + [anon_sym_class] = ACTIONS(3977), + [anon_sym_struct] = ACTIONS(3977), + [anon_sym_union] = ACTIONS(3977), + [anon_sym_typename] = ACTIONS(3977), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3977), + [anon_sym_decltype] = ACTIONS(3977), + [anon_sym_explicit] = ACTIONS(3977), + [anon_sym_private] = ACTIONS(3977), + [anon_sym_template] = ACTIONS(3977), + [anon_sym_operator] = ACTIONS(3977), + [anon_sym_friend] = ACTIONS(3977), + [anon_sym_public] = ACTIONS(3977), + [anon_sym_protected] = ACTIONS(3977), + [anon_sym_static_assert] = ACTIONS(3977), + [anon_sym_LBRACK_COLON] = ACTIONS(3979), }, [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_identifier] = ACTIONS(3981), + [aux_sym_preproc_def_token1] = ACTIONS(3981), + [aux_sym_preproc_if_token1] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3981), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3981), + [sym_preproc_directive] = ACTIONS(3981), + [anon_sym_LPAREN2] = ACTIONS(3983), + [anon_sym_TILDE] = ACTIONS(3983), + [anon_sym_STAR] = ACTIONS(3983), + [anon_sym_AMP_AMP] = ACTIONS(3983), + [anon_sym_AMP] = ACTIONS(3981), + [anon_sym_SEMI] = ACTIONS(3983), + [anon_sym___extension__] = ACTIONS(3981), + [anon_sym_typedef] = ACTIONS(3981), + [anon_sym_virtual] = ACTIONS(3981), + [anon_sym_extern] = ACTIONS(3981), + [anon_sym___attribute__] = ACTIONS(3981), + [anon_sym___attribute] = ACTIONS(3981), + [anon_sym_using] = ACTIONS(3981), + [anon_sym_COLON_COLON] = ACTIONS(3983), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3983), + [anon_sym___declspec] = ACTIONS(3981), + [anon_sym___based] = ACTIONS(3981), + [anon_sym_RBRACE] = ACTIONS(3983), + [anon_sym_signed] = ACTIONS(3981), + [anon_sym_unsigned] = ACTIONS(3981), + [anon_sym_long] = ACTIONS(3981), + [anon_sym_short] = ACTIONS(3981), + [anon_sym_LBRACK] = ACTIONS(3981), + [anon_sym_static] = ACTIONS(3981), + [anon_sym_register] = ACTIONS(3981), + [anon_sym_inline] = ACTIONS(3981), + [anon_sym___inline] = ACTIONS(3981), + [anon_sym___inline__] = ACTIONS(3981), + [anon_sym___forceinline] = ACTIONS(3981), + [anon_sym_thread_local] = ACTIONS(3981), + [anon_sym___thread] = ACTIONS(3981), + [anon_sym_const] = ACTIONS(3981), + [anon_sym_constexpr] = ACTIONS(3981), + [anon_sym_volatile] = ACTIONS(3981), + [anon_sym_restrict] = ACTIONS(3981), + [anon_sym___restrict__] = ACTIONS(3981), + [anon_sym__Atomic] = ACTIONS(3981), + [anon_sym__Noreturn] = ACTIONS(3981), + [anon_sym_noreturn] = ACTIONS(3981), + [anon_sym__Nonnull] = ACTIONS(3981), + [anon_sym_mutable] = ACTIONS(3981), + [anon_sym_constinit] = ACTIONS(3981), + [anon_sym_consteval] = ACTIONS(3981), + [anon_sym_alignas] = ACTIONS(3981), + [anon_sym__Alignas] = ACTIONS(3981), + [sym_primitive_type] = ACTIONS(3981), + [anon_sym_enum] = ACTIONS(3981), + [anon_sym_class] = ACTIONS(3981), + [anon_sym_struct] = ACTIONS(3981), + [anon_sym_union] = ACTIONS(3981), + [anon_sym_typename] = ACTIONS(3981), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3981), + [anon_sym_decltype] = ACTIONS(3981), + [anon_sym_explicit] = ACTIONS(3981), + [anon_sym_private] = ACTIONS(3981), + [anon_sym_template] = ACTIONS(3981), + [anon_sym_operator] = ACTIONS(3981), + [anon_sym_friend] = ACTIONS(3981), + [anon_sym_public] = ACTIONS(3981), + [anon_sym_protected] = ACTIONS(3981), + [anon_sym_static_assert] = ACTIONS(3981), + [anon_sym_LBRACK_COLON] = ACTIONS(3983), }, [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), + [sym_identifier] = ACTIONS(9495), + [anon_sym_LPAREN2] = ACTIONS(9497), + [anon_sym_TILDE] = ACTIONS(9497), + [anon_sym_STAR] = ACTIONS(9497), + [anon_sym_AMP_AMP] = ACTIONS(9497), + [anon_sym_AMP] = ACTIONS(9495), + [anon_sym___extension__] = ACTIONS(9495), + [anon_sym_virtual] = ACTIONS(9495), + [anon_sym_extern] = ACTIONS(9495), + [anon_sym___attribute__] = ACTIONS(9495), + [anon_sym___attribute] = ACTIONS(9495), + [anon_sym_using] = ACTIONS(9495), + [anon_sym_COLON_COLON] = ACTIONS(9497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9497), + [anon_sym___declspec] = ACTIONS(9495), + [anon_sym___based] = ACTIONS(9495), + [anon_sym___cdecl] = ACTIONS(9495), + [anon_sym___clrcall] = ACTIONS(9495), + [anon_sym___stdcall] = ACTIONS(9495), + [anon_sym___fastcall] = ACTIONS(9495), + [anon_sym___thiscall] = ACTIONS(9495), + [anon_sym___vectorcall] = ACTIONS(9495), + [anon_sym_LBRACE] = ACTIONS(9497), + [anon_sym_signed] = ACTIONS(9495), + [anon_sym_unsigned] = ACTIONS(9495), + [anon_sym_long] = ACTIONS(9495), + [anon_sym_short] = ACTIONS(9495), + [anon_sym_LBRACK] = ACTIONS(9495), + [anon_sym_static] = ACTIONS(9495), + [anon_sym_register] = ACTIONS(9495), + [anon_sym_inline] = ACTIONS(9495), + [anon_sym___inline] = ACTIONS(9495), + [anon_sym___inline__] = ACTIONS(9495), + [anon_sym___forceinline] = ACTIONS(9495), + [anon_sym_thread_local] = ACTIONS(9495), + [anon_sym___thread] = ACTIONS(9495), + [anon_sym_const] = ACTIONS(9495), + [anon_sym_constexpr] = ACTIONS(9495), + [anon_sym_volatile] = ACTIONS(9495), + [anon_sym_restrict] = ACTIONS(9495), + [anon_sym___restrict__] = ACTIONS(9495), + [anon_sym__Atomic] = ACTIONS(9495), + [anon_sym__Noreturn] = ACTIONS(9495), + [anon_sym_noreturn] = ACTIONS(9495), + [anon_sym__Nonnull] = ACTIONS(9495), + [anon_sym_mutable] = ACTIONS(9495), + [anon_sym_constinit] = ACTIONS(9495), + [anon_sym_consteval] = ACTIONS(9495), + [anon_sym_alignas] = ACTIONS(9495), + [anon_sym__Alignas] = ACTIONS(9495), + [sym_primitive_type] = ACTIONS(9495), + [anon_sym_enum] = ACTIONS(9495), + [anon_sym_class] = ACTIONS(9495), + [anon_sym_struct] = ACTIONS(9495), + [anon_sym_union] = ACTIONS(9495), + [anon_sym_typename] = ACTIONS(9495), + [anon_sym_DASH_GT] = ACTIONS(9497), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9495), + [anon_sym_decltype] = ACTIONS(9495), + [anon_sym_explicit] = ACTIONS(9495), + [anon_sym_template] = ACTIONS(9495), + [anon_sym_operator] = ACTIONS(9495), + [anon_sym_friend] = ACTIONS(9495), + [anon_sym_noexcept] = ACTIONS(9495), + [anon_sym_throw] = ACTIONS(9495), + [anon_sym_concept] = ACTIONS(9495), + [anon_sym_requires] = ACTIONS(9495), + [anon_sym_LBRACK_COLON] = ACTIONS(9497), }, [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), + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_private] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_friend] = ACTIONS(3570), + [anon_sym_public] = ACTIONS(3570), + [anon_sym_protected] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), }, [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), + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_friend] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), }, [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), + [sym_identifier] = ACTIONS(3989), + [aux_sym_preproc_def_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token1] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3989), + [sym_preproc_directive] = ACTIONS(3989), + [anon_sym_LPAREN2] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_SEMI] = ACTIONS(3991), + [anon_sym___extension__] = ACTIONS(3989), + [anon_sym_typedef] = ACTIONS(3989), + [anon_sym_virtual] = ACTIONS(3989), + [anon_sym_extern] = ACTIONS(3989), + [anon_sym___attribute__] = ACTIONS(3989), + [anon_sym___attribute] = ACTIONS(3989), + [anon_sym_using] = ACTIONS(3989), + [anon_sym_COLON_COLON] = ACTIONS(3991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3991), + [anon_sym___declspec] = ACTIONS(3989), + [anon_sym___based] = ACTIONS(3989), + [anon_sym_RBRACE] = ACTIONS(3991), + [anon_sym_signed] = ACTIONS(3989), + [anon_sym_unsigned] = ACTIONS(3989), + [anon_sym_long] = ACTIONS(3989), + [anon_sym_short] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_static] = ACTIONS(3989), + [anon_sym_register] = ACTIONS(3989), + [anon_sym_inline] = ACTIONS(3989), + [anon_sym___inline] = ACTIONS(3989), + [anon_sym___inline__] = ACTIONS(3989), + [anon_sym___forceinline] = ACTIONS(3989), + [anon_sym_thread_local] = ACTIONS(3989), + [anon_sym___thread] = ACTIONS(3989), + [anon_sym_const] = ACTIONS(3989), + [anon_sym_constexpr] = ACTIONS(3989), + [anon_sym_volatile] = ACTIONS(3989), + [anon_sym_restrict] = ACTIONS(3989), + [anon_sym___restrict__] = ACTIONS(3989), + [anon_sym__Atomic] = ACTIONS(3989), + [anon_sym__Noreturn] = ACTIONS(3989), + [anon_sym_noreturn] = ACTIONS(3989), + [anon_sym__Nonnull] = ACTIONS(3989), + [anon_sym_mutable] = ACTIONS(3989), + [anon_sym_constinit] = ACTIONS(3989), + [anon_sym_consteval] = ACTIONS(3989), + [anon_sym_alignas] = ACTIONS(3989), + [anon_sym__Alignas] = ACTIONS(3989), + [sym_primitive_type] = ACTIONS(3989), + [anon_sym_enum] = ACTIONS(3989), + [anon_sym_class] = ACTIONS(3989), + [anon_sym_struct] = ACTIONS(3989), + [anon_sym_union] = ACTIONS(3989), + [anon_sym_typename] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3989), + [anon_sym_decltype] = ACTIONS(3989), + [anon_sym_explicit] = ACTIONS(3989), + [anon_sym_private] = ACTIONS(3989), + [anon_sym_template] = ACTIONS(3989), + [anon_sym_operator] = ACTIONS(3989), + [anon_sym_friend] = ACTIONS(3989), + [anon_sym_public] = ACTIONS(3989), + [anon_sym_protected] = ACTIONS(3989), + [anon_sym_static_assert] = ACTIONS(3989), + [anon_sym_LBRACK_COLON] = ACTIONS(3991), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(4038), + [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_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_typename] = ACTIONS(4036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4036), + [anon_sym_decltype] = ACTIONS(4036), + [anon_sym_explicit] = ACTIONS(4036), + [anon_sym_private] = ACTIONS(4036), + [anon_sym_template] = ACTIONS(4036), + [anon_sym_operator] = ACTIONS(4036), + [anon_sym_friend] = ACTIONS(4036), + [anon_sym_public] = ACTIONS(4036), + [anon_sym_protected] = ACTIONS(4036), + [anon_sym_static_assert] = ACTIONS(4036), + [anon_sym_LBRACK_COLON] = ACTIONS(4038), }, [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), + [sym_identifier] = ACTIONS(3993), + [aux_sym_preproc_def_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token1] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3993), + [sym_preproc_directive] = ACTIONS(3993), + [anon_sym_LPAREN2] = ACTIONS(3995), + [anon_sym_TILDE] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_AMP_AMP] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3993), + [anon_sym_SEMI] = ACTIONS(3995), + [anon_sym___extension__] = ACTIONS(3993), + [anon_sym_typedef] = ACTIONS(3993), + [anon_sym_virtual] = ACTIONS(3993), + [anon_sym_extern] = ACTIONS(3993), + [anon_sym___attribute__] = ACTIONS(3993), + [anon_sym___attribute] = ACTIONS(3993), + [anon_sym_using] = ACTIONS(3993), + [anon_sym_COLON_COLON] = ACTIONS(3995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3995), + [anon_sym___declspec] = ACTIONS(3993), + [anon_sym___based] = ACTIONS(3993), + [anon_sym_RBRACE] = ACTIONS(3995), + [anon_sym_signed] = ACTIONS(3993), + [anon_sym_unsigned] = ACTIONS(3993), + [anon_sym_long] = ACTIONS(3993), + [anon_sym_short] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_static] = ACTIONS(3993), + [anon_sym_register] = ACTIONS(3993), + [anon_sym_inline] = ACTIONS(3993), + [anon_sym___inline] = ACTIONS(3993), + [anon_sym___inline__] = ACTIONS(3993), + [anon_sym___forceinline] = ACTIONS(3993), + [anon_sym_thread_local] = ACTIONS(3993), + [anon_sym___thread] = ACTIONS(3993), + [anon_sym_const] = ACTIONS(3993), + [anon_sym_constexpr] = ACTIONS(3993), + [anon_sym_volatile] = ACTIONS(3993), + [anon_sym_restrict] = ACTIONS(3993), + [anon_sym___restrict__] = ACTIONS(3993), + [anon_sym__Atomic] = ACTIONS(3993), + [anon_sym__Noreturn] = ACTIONS(3993), + [anon_sym_noreturn] = ACTIONS(3993), + [anon_sym__Nonnull] = ACTIONS(3993), + [anon_sym_mutable] = ACTIONS(3993), + [anon_sym_constinit] = ACTIONS(3993), + [anon_sym_consteval] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(3993), + [anon_sym__Alignas] = ACTIONS(3993), + [sym_primitive_type] = ACTIONS(3993), + [anon_sym_enum] = ACTIONS(3993), + [anon_sym_class] = ACTIONS(3993), + [anon_sym_struct] = ACTIONS(3993), + [anon_sym_union] = ACTIONS(3993), + [anon_sym_typename] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3993), + [anon_sym_decltype] = ACTIONS(3993), + [anon_sym_explicit] = ACTIONS(3993), + [anon_sym_private] = ACTIONS(3993), + [anon_sym_template] = ACTIONS(3993), + [anon_sym_operator] = ACTIONS(3993), + [anon_sym_friend] = ACTIONS(3993), + [anon_sym_public] = ACTIONS(3993), + [anon_sym_protected] = ACTIONS(3993), + [anon_sym_static_assert] = ACTIONS(3993), + [anon_sym_LBRACK_COLON] = ACTIONS(3995), }, [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), + [sym_identifier] = ACTIONS(4005), + [aux_sym_preproc_def_token1] = ACTIONS(4005), + [aux_sym_preproc_if_token1] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4005), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4005), + [sym_preproc_directive] = ACTIONS(4005), + [anon_sym_LPAREN2] = ACTIONS(4007), + [anon_sym_TILDE] = ACTIONS(4007), + [anon_sym_STAR] = ACTIONS(4007), + [anon_sym_AMP_AMP] = ACTIONS(4007), + [anon_sym_AMP] = ACTIONS(4005), + [anon_sym_SEMI] = ACTIONS(4007), + [anon_sym___extension__] = ACTIONS(4005), + [anon_sym_typedef] = ACTIONS(4005), + [anon_sym_virtual] = ACTIONS(4005), + [anon_sym_extern] = ACTIONS(4005), + [anon_sym___attribute__] = ACTIONS(4005), + [anon_sym___attribute] = ACTIONS(4005), + [anon_sym_using] = ACTIONS(4005), + [anon_sym_COLON_COLON] = ACTIONS(4007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4007), + [anon_sym___declspec] = ACTIONS(4005), + [anon_sym___based] = ACTIONS(4005), + [anon_sym_RBRACE] = ACTIONS(4007), + [anon_sym_signed] = ACTIONS(4005), + [anon_sym_unsigned] = ACTIONS(4005), + [anon_sym_long] = ACTIONS(4005), + [anon_sym_short] = ACTIONS(4005), + [anon_sym_LBRACK] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4005), + [anon_sym_register] = ACTIONS(4005), + [anon_sym_inline] = ACTIONS(4005), + [anon_sym___inline] = ACTIONS(4005), + [anon_sym___inline__] = ACTIONS(4005), + [anon_sym___forceinline] = ACTIONS(4005), + [anon_sym_thread_local] = ACTIONS(4005), + [anon_sym___thread] = ACTIONS(4005), + [anon_sym_const] = ACTIONS(4005), + [anon_sym_constexpr] = ACTIONS(4005), + [anon_sym_volatile] = ACTIONS(4005), + [anon_sym_restrict] = ACTIONS(4005), + [anon_sym___restrict__] = ACTIONS(4005), + [anon_sym__Atomic] = ACTIONS(4005), + [anon_sym__Noreturn] = ACTIONS(4005), + [anon_sym_noreturn] = ACTIONS(4005), + [anon_sym__Nonnull] = ACTIONS(4005), + [anon_sym_mutable] = ACTIONS(4005), + [anon_sym_constinit] = ACTIONS(4005), + [anon_sym_consteval] = ACTIONS(4005), + [anon_sym_alignas] = ACTIONS(4005), + [anon_sym__Alignas] = ACTIONS(4005), + [sym_primitive_type] = ACTIONS(4005), + [anon_sym_enum] = ACTIONS(4005), + [anon_sym_class] = ACTIONS(4005), + [anon_sym_struct] = ACTIONS(4005), + [anon_sym_union] = ACTIONS(4005), + [anon_sym_typename] = ACTIONS(4005), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4005), + [anon_sym_decltype] = ACTIONS(4005), + [anon_sym_explicit] = ACTIONS(4005), + [anon_sym_private] = ACTIONS(4005), + [anon_sym_template] = ACTIONS(4005), + [anon_sym_operator] = ACTIONS(4005), + [anon_sym_friend] = ACTIONS(4005), + [anon_sym_public] = ACTIONS(4005), + [anon_sym_protected] = ACTIONS(4005), + [anon_sym_static_assert] = ACTIONS(4005), + [anon_sym_LBRACK_COLON] = ACTIONS(4007), }, [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), + [sym_identifier] = ACTIONS(4009), + [aux_sym_preproc_def_token1] = ACTIONS(4009), + [aux_sym_preproc_if_token1] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4009), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4009), + [sym_preproc_directive] = ACTIONS(4009), + [anon_sym_LPAREN2] = ACTIONS(4011), + [anon_sym_TILDE] = ACTIONS(4011), + [anon_sym_STAR] = ACTIONS(4011), + [anon_sym_AMP_AMP] = ACTIONS(4011), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_SEMI] = ACTIONS(4011), + [anon_sym___extension__] = ACTIONS(4009), + [anon_sym_typedef] = ACTIONS(4009), + [anon_sym_virtual] = ACTIONS(4009), + [anon_sym_extern] = ACTIONS(4009), + [anon_sym___attribute__] = ACTIONS(4009), + [anon_sym___attribute] = ACTIONS(4009), + [anon_sym_using] = ACTIONS(4009), + [anon_sym_COLON_COLON] = ACTIONS(4011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4011), + [anon_sym___declspec] = ACTIONS(4009), + [anon_sym___based] = ACTIONS(4009), + [anon_sym_RBRACE] = ACTIONS(4011), + [anon_sym_signed] = ACTIONS(4009), + [anon_sym_unsigned] = ACTIONS(4009), + [anon_sym_long] = ACTIONS(4009), + [anon_sym_short] = ACTIONS(4009), + [anon_sym_LBRACK] = ACTIONS(4009), + [anon_sym_static] = ACTIONS(4009), + [anon_sym_register] = ACTIONS(4009), + [anon_sym_inline] = ACTIONS(4009), + [anon_sym___inline] = ACTIONS(4009), + [anon_sym___inline__] = ACTIONS(4009), + [anon_sym___forceinline] = ACTIONS(4009), + [anon_sym_thread_local] = ACTIONS(4009), + [anon_sym___thread] = ACTIONS(4009), + [anon_sym_const] = ACTIONS(4009), + [anon_sym_constexpr] = ACTIONS(4009), + [anon_sym_volatile] = ACTIONS(4009), + [anon_sym_restrict] = ACTIONS(4009), + [anon_sym___restrict__] = ACTIONS(4009), + [anon_sym__Atomic] = ACTIONS(4009), + [anon_sym__Noreturn] = ACTIONS(4009), + [anon_sym_noreturn] = ACTIONS(4009), + [anon_sym__Nonnull] = ACTIONS(4009), + [anon_sym_mutable] = ACTIONS(4009), + [anon_sym_constinit] = ACTIONS(4009), + [anon_sym_consteval] = ACTIONS(4009), + [anon_sym_alignas] = ACTIONS(4009), + [anon_sym__Alignas] = ACTIONS(4009), + [sym_primitive_type] = ACTIONS(4009), + [anon_sym_enum] = ACTIONS(4009), + [anon_sym_class] = ACTIONS(4009), + [anon_sym_struct] = ACTIONS(4009), + [anon_sym_union] = ACTIONS(4009), + [anon_sym_typename] = ACTIONS(4009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4009), + [anon_sym_decltype] = ACTIONS(4009), + [anon_sym_explicit] = ACTIONS(4009), + [anon_sym_private] = ACTIONS(4009), + [anon_sym_template] = ACTIONS(4009), + [anon_sym_operator] = ACTIONS(4009), + [anon_sym_friend] = ACTIONS(4009), + [anon_sym_public] = ACTIONS(4009), + [anon_sym_protected] = ACTIONS(4009), + [anon_sym_static_assert] = ACTIONS(4009), + [anon_sym_LBRACK_COLON] = ACTIONS(4011), }, [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), + [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(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), + [sym_identifier] = ACTIONS(4017), + [aux_sym_preproc_def_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token1] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4017), + [sym_preproc_directive] = ACTIONS(4017), + [anon_sym_LPAREN2] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_AMP_AMP] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_SEMI] = ACTIONS(4019), + [anon_sym___extension__] = ACTIONS(4017), + [anon_sym_typedef] = ACTIONS(4017), + [anon_sym_virtual] = ACTIONS(4017), + [anon_sym_extern] = ACTIONS(4017), + [anon_sym___attribute__] = ACTIONS(4017), + [anon_sym___attribute] = ACTIONS(4017), + [anon_sym_using] = ACTIONS(4017), + [anon_sym_COLON_COLON] = ACTIONS(4019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4019), + [anon_sym___declspec] = ACTIONS(4017), + [anon_sym___based] = ACTIONS(4017), + [anon_sym_RBRACE] = ACTIONS(4019), + [anon_sym_signed] = ACTIONS(4017), + [anon_sym_unsigned] = ACTIONS(4017), + [anon_sym_long] = ACTIONS(4017), + [anon_sym_short] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4017), + [anon_sym_static] = ACTIONS(4017), + [anon_sym_register] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym___inline] = ACTIONS(4017), + [anon_sym___inline__] = ACTIONS(4017), + [anon_sym___forceinline] = ACTIONS(4017), + [anon_sym_thread_local] = ACTIONS(4017), + [anon_sym___thread] = ACTIONS(4017), + [anon_sym_const] = ACTIONS(4017), + [anon_sym_constexpr] = ACTIONS(4017), + [anon_sym_volatile] = ACTIONS(4017), + [anon_sym_restrict] = ACTIONS(4017), + [anon_sym___restrict__] = ACTIONS(4017), + [anon_sym__Atomic] = ACTIONS(4017), + [anon_sym__Noreturn] = ACTIONS(4017), + [anon_sym_noreturn] = ACTIONS(4017), + [anon_sym__Nonnull] = ACTIONS(4017), + [anon_sym_mutable] = ACTIONS(4017), + [anon_sym_constinit] = ACTIONS(4017), + [anon_sym_consteval] = ACTIONS(4017), + [anon_sym_alignas] = ACTIONS(4017), + [anon_sym__Alignas] = ACTIONS(4017), + [sym_primitive_type] = ACTIONS(4017), + [anon_sym_enum] = ACTIONS(4017), + [anon_sym_class] = ACTIONS(4017), + [anon_sym_struct] = ACTIONS(4017), + [anon_sym_union] = ACTIONS(4017), + [anon_sym_typename] = ACTIONS(4017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4017), + [anon_sym_decltype] = ACTIONS(4017), + [anon_sym_explicit] = ACTIONS(4017), + [anon_sym_private] = ACTIONS(4017), + [anon_sym_template] = ACTIONS(4017), + [anon_sym_operator] = ACTIONS(4017), + [anon_sym_friend] = ACTIONS(4017), + [anon_sym_public] = ACTIONS(4017), + [anon_sym_protected] = ACTIONS(4017), + [anon_sym_static_assert] = ACTIONS(4017), + [anon_sym_LBRACK_COLON] = ACTIONS(4019), }, [STATE(3626)] = { - [sym_identifier] = ACTIONS(9337), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9339), - [anon_sym_COMMA] = ACTIONS(9339), - [anon_sym_RPAREN] = ACTIONS(9339), - [aux_sym_preproc_if_token2] = ACTIONS(9339), - [aux_sym_preproc_else_token1] = ACTIONS(9339), - [aux_sym_preproc_elif_token1] = ACTIONS(9337), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9339), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9339), - [anon_sym_LPAREN2] = ACTIONS(9339), - [anon_sym_DASH] = ACTIONS(9337), - [anon_sym_PLUS] = ACTIONS(9337), - [anon_sym_STAR] = ACTIONS(9337), - [anon_sym_SLASH] = ACTIONS(9337), - [anon_sym_PERCENT] = ACTIONS(9337), - [anon_sym_PIPE_PIPE] = ACTIONS(9339), - [anon_sym_AMP_AMP] = ACTIONS(9339), - [anon_sym_PIPE] = ACTIONS(9337), - [anon_sym_CARET] = ACTIONS(9337), - [anon_sym_AMP] = ACTIONS(9337), - [anon_sym_EQ_EQ] = ACTIONS(9339), - [anon_sym_BANG_EQ] = ACTIONS(9339), - [anon_sym_GT] = ACTIONS(9337), - [anon_sym_GT_EQ] = ACTIONS(9339), - [anon_sym_LT_EQ] = ACTIONS(9337), - [anon_sym_LT] = ACTIONS(9337), - [anon_sym_LT_LT] = ACTIONS(9337), - [anon_sym_GT_GT] = ACTIONS(9337), - [anon_sym_SEMI] = ACTIONS(9339), - [anon_sym___attribute__] = ACTIONS(9337), - [anon_sym___attribute] = ACTIONS(9337), - [anon_sym_COLON] = ACTIONS(9337), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9339), - [anon_sym_RBRACE] = ACTIONS(9339), - [anon_sym_LBRACK] = ACTIONS(9339), - [anon_sym_EQ] = ACTIONS(9337), - [anon_sym_QMARK] = ACTIONS(9339), - [anon_sym_STAR_EQ] = ACTIONS(9339), - [anon_sym_SLASH_EQ] = ACTIONS(9339), - [anon_sym_PERCENT_EQ] = ACTIONS(9339), - [anon_sym_PLUS_EQ] = ACTIONS(9339), - [anon_sym_DASH_EQ] = ACTIONS(9339), - [anon_sym_LT_LT_EQ] = ACTIONS(9339), - [anon_sym_GT_GT_EQ] = ACTIONS(9339), - [anon_sym_AMP_EQ] = ACTIONS(9339), - [anon_sym_CARET_EQ] = ACTIONS(9339), - [anon_sym_PIPE_EQ] = ACTIONS(9339), - [anon_sym_and_eq] = ACTIONS(9337), - [anon_sym_or_eq] = ACTIONS(9337), - [anon_sym_xor_eq] = ACTIONS(9337), - [anon_sym_LT_EQ_GT] = ACTIONS(9339), - [anon_sym_or] = ACTIONS(9337), - [anon_sym_and] = ACTIONS(9337), - [anon_sym_bitor] = ACTIONS(9337), - [anon_sym_xor] = ACTIONS(9337), - [anon_sym_bitand] = ACTIONS(9337), - [anon_sym_not_eq] = ACTIONS(9337), - [anon_sym_DASH_DASH] = ACTIONS(9339), - [anon_sym_PLUS_PLUS] = ACTIONS(9339), - [anon_sym_DOT] = ACTIONS(9337), - [anon_sym_DOT_STAR] = ACTIONS(9339), - [anon_sym_DASH_GT] = ACTIONS(9339), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9337), - [anon_sym_override] = ACTIONS(9337), - [anon_sym_requires] = ACTIONS(9337), - [anon_sym_COLON_RBRACK] = ACTIONS(9339), + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token2] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_private] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_friend] = ACTIONS(3570), + [anon_sym_public] = ACTIONS(3570), + [anon_sym_protected] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), }, [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), + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token2] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_private] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_friend] = ACTIONS(3570), + [anon_sym_public] = ACTIONS(3570), + [anon_sym_protected] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), }, [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), + [sym_virtual_specifier] = STATE(3541), + [aux_sym__function_postfix_repeat1] = STATE(3541), + [sym_identifier] = ACTIONS(9499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9501), + [anon_sym_COMMA] = ACTIONS(9501), + [anon_sym_RPAREN] = ACTIONS(9501), + [aux_sym_preproc_if_token2] = ACTIONS(9501), + [aux_sym_preproc_else_token1] = ACTIONS(9501), + [aux_sym_preproc_elif_token1] = ACTIONS(9499), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9501), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9501), + [anon_sym_LPAREN2] = ACTIONS(9501), + [anon_sym_DASH] = ACTIONS(9499), + [anon_sym_PLUS] = ACTIONS(9499), + [anon_sym_STAR] = ACTIONS(9499), + [anon_sym_SLASH] = ACTIONS(9499), + [anon_sym_PERCENT] = ACTIONS(9499), + [anon_sym_PIPE_PIPE] = ACTIONS(9501), + [anon_sym_AMP_AMP] = ACTIONS(9501), + [anon_sym_PIPE] = ACTIONS(9499), + [anon_sym_CARET] = ACTIONS(9499), + [anon_sym_AMP] = ACTIONS(9499), + [anon_sym_EQ_EQ] = ACTIONS(9501), + [anon_sym_BANG_EQ] = ACTIONS(9501), + [anon_sym_GT] = ACTIONS(9499), + [anon_sym_GT_EQ] = ACTIONS(9501), + [anon_sym_LT_EQ] = ACTIONS(9499), + [anon_sym_LT] = ACTIONS(9499), + [anon_sym_LT_LT] = ACTIONS(9499), + [anon_sym_GT_GT] = ACTIONS(9499), + [anon_sym_SEMI] = ACTIONS(9501), + [anon_sym___attribute__] = ACTIONS(9499), + [anon_sym___attribute] = ACTIONS(9499), + [anon_sym_COLON] = ACTIONS(9499), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9501), + [anon_sym_RBRACE] = ACTIONS(9501), + [anon_sym_LBRACK] = ACTIONS(9501), + [anon_sym_EQ] = ACTIONS(9499), + [anon_sym_QMARK] = ACTIONS(9501), + [anon_sym_STAR_EQ] = ACTIONS(9501), + [anon_sym_SLASH_EQ] = ACTIONS(9501), + [anon_sym_PERCENT_EQ] = ACTIONS(9501), + [anon_sym_PLUS_EQ] = ACTIONS(9501), + [anon_sym_DASH_EQ] = ACTIONS(9501), + [anon_sym_LT_LT_EQ] = ACTIONS(9501), + [anon_sym_GT_GT_EQ] = ACTIONS(9501), + [anon_sym_AMP_EQ] = ACTIONS(9501), + [anon_sym_CARET_EQ] = ACTIONS(9501), + [anon_sym_PIPE_EQ] = ACTIONS(9501), + [anon_sym_and_eq] = ACTIONS(9499), + [anon_sym_or_eq] = ACTIONS(9499), + [anon_sym_xor_eq] = ACTIONS(9499), + [anon_sym_LT_EQ_GT] = ACTIONS(9501), + [anon_sym_or] = ACTIONS(9499), + [anon_sym_and] = ACTIONS(9499), + [anon_sym_bitor] = ACTIONS(9499), + [anon_sym_xor] = ACTIONS(9499), + [anon_sym_bitand] = ACTIONS(9499), + [anon_sym_not_eq] = ACTIONS(9499), + [anon_sym_DASH_DASH] = ACTIONS(9501), + [anon_sym_PLUS_PLUS] = ACTIONS(9501), + [anon_sym_DOT] = ACTIONS(9499), + [anon_sym_DOT_STAR] = ACTIONS(9501), + [anon_sym_DASH_GT] = ACTIONS(9501), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6420), + [anon_sym_override] = ACTIONS(6420), + [anon_sym_requires] = ACTIONS(9499), + [anon_sym_COLON_RBRACK] = ACTIONS(9501), }, [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), + [sym_identifier] = ACTIONS(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_friend] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), }, [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), + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3108), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3118), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3108), + [anon_sym_GT_GT] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym___based] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_GT2] = ACTIONS(3108), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), }, [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), + [sym_identifier] = ACTIONS(4060), + [aux_sym_preproc_def_token1] = ACTIONS(4060), + [aux_sym_preproc_if_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4060), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4060), + [sym_preproc_directive] = ACTIONS(4060), + [anon_sym_LPAREN2] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_AMP_AMP] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4060), + [anon_sym_SEMI] = ACTIONS(4062), + [anon_sym___extension__] = ACTIONS(4060), + [anon_sym_typedef] = ACTIONS(4060), + [anon_sym_virtual] = ACTIONS(4060), + [anon_sym_extern] = ACTIONS(4060), + [anon_sym___attribute__] = ACTIONS(4060), + [anon_sym___attribute] = ACTIONS(4060), + [anon_sym_using] = ACTIONS(4060), + [anon_sym_COLON_COLON] = ACTIONS(4062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4062), + [anon_sym___declspec] = ACTIONS(4060), + [anon_sym___based] = ACTIONS(4060), + [anon_sym_RBRACE] = ACTIONS(4062), + [anon_sym_signed] = ACTIONS(4060), + [anon_sym_unsigned] = ACTIONS(4060), + [anon_sym_long] = ACTIONS(4060), + [anon_sym_short] = ACTIONS(4060), + [anon_sym_LBRACK] = ACTIONS(4060), + [anon_sym_static] = ACTIONS(4060), + [anon_sym_register] = ACTIONS(4060), + [anon_sym_inline] = ACTIONS(4060), + [anon_sym___inline] = ACTIONS(4060), + [anon_sym___inline__] = ACTIONS(4060), + [anon_sym___forceinline] = ACTIONS(4060), + [anon_sym_thread_local] = ACTIONS(4060), + [anon_sym___thread] = ACTIONS(4060), + [anon_sym_const] = ACTIONS(4060), + [anon_sym_constexpr] = ACTIONS(4060), + [anon_sym_volatile] = ACTIONS(4060), + [anon_sym_restrict] = ACTIONS(4060), + [anon_sym___restrict__] = ACTIONS(4060), + [anon_sym__Atomic] = ACTIONS(4060), + [anon_sym__Noreturn] = ACTIONS(4060), + [anon_sym_noreturn] = ACTIONS(4060), + [anon_sym__Nonnull] = ACTIONS(4060), + [anon_sym_mutable] = ACTIONS(4060), + [anon_sym_constinit] = ACTIONS(4060), + [anon_sym_consteval] = ACTIONS(4060), + [anon_sym_alignas] = ACTIONS(4060), + [anon_sym__Alignas] = ACTIONS(4060), + [sym_primitive_type] = ACTIONS(4060), + [anon_sym_enum] = ACTIONS(4060), + [anon_sym_class] = ACTIONS(4060), + [anon_sym_struct] = ACTIONS(4060), + [anon_sym_union] = ACTIONS(4060), + [anon_sym_typename] = ACTIONS(4060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4060), + [anon_sym_decltype] = ACTIONS(4060), + [anon_sym_explicit] = ACTIONS(4060), + [anon_sym_private] = ACTIONS(4060), + [anon_sym_template] = ACTIONS(4060), + [anon_sym_operator] = ACTIONS(4060), + [anon_sym_friend] = ACTIONS(4060), + [anon_sym_public] = ACTIONS(4060), + [anon_sym_protected] = ACTIONS(4060), + [anon_sym_static_assert] = ACTIONS(4060), + [anon_sym_LBRACK_COLON] = ACTIONS(4062), }, [STATE(3632)] = { - [sym_string_literal] = STATE(3618), - [sym_raw_string_literal] = STATE(3618), - [aux_sym_concatenated_string_repeat1] = STATE(3618), - [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), + [sym_identifier] = ACTIONS(3570), + [aux_sym_preproc_def_token1] = ACTIONS(3570), + [aux_sym_preproc_if_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3570), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3570), + [sym_preproc_directive] = ACTIONS(3570), + [anon_sym_LPAREN2] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_STAR] = ACTIONS(3572), + [anon_sym_AMP_AMP] = ACTIONS(3572), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym___extension__] = ACTIONS(3570), + [anon_sym_typedef] = ACTIONS(3570), + [anon_sym_virtual] = ACTIONS(3570), + [anon_sym_extern] = ACTIONS(3570), + [anon_sym___attribute__] = ACTIONS(3570), + [anon_sym___attribute] = ACTIONS(3570), + [anon_sym_using] = ACTIONS(3570), + [anon_sym_COLON_COLON] = ACTIONS(3572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3572), + [anon_sym___declspec] = ACTIONS(3570), + [anon_sym___based] = ACTIONS(3570), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_signed] = ACTIONS(3570), + [anon_sym_unsigned] = ACTIONS(3570), + [anon_sym_long] = ACTIONS(3570), + [anon_sym_short] = ACTIONS(3570), + [anon_sym_LBRACK] = ACTIONS(3570), + [anon_sym_static] = ACTIONS(3570), + [anon_sym_register] = ACTIONS(3570), + [anon_sym_inline] = ACTIONS(3570), + [anon_sym___inline] = ACTIONS(3570), + [anon_sym___inline__] = ACTIONS(3570), + [anon_sym___forceinline] = ACTIONS(3570), + [anon_sym_thread_local] = ACTIONS(3570), + [anon_sym___thread] = ACTIONS(3570), + [anon_sym_const] = ACTIONS(3570), + [anon_sym_constexpr] = ACTIONS(3570), + [anon_sym_volatile] = ACTIONS(3570), + [anon_sym_restrict] = ACTIONS(3570), + [anon_sym___restrict__] = ACTIONS(3570), + [anon_sym__Atomic] = ACTIONS(3570), + [anon_sym__Noreturn] = ACTIONS(3570), + [anon_sym_noreturn] = ACTIONS(3570), + [anon_sym__Nonnull] = ACTIONS(3570), + [anon_sym_mutable] = ACTIONS(3570), + [anon_sym_constinit] = ACTIONS(3570), + [anon_sym_consteval] = ACTIONS(3570), + [anon_sym_alignas] = ACTIONS(3570), + [anon_sym__Alignas] = ACTIONS(3570), + [sym_primitive_type] = ACTIONS(3570), + [anon_sym_enum] = ACTIONS(3570), + [anon_sym_class] = ACTIONS(3570), + [anon_sym_struct] = ACTIONS(3570), + [anon_sym_union] = ACTIONS(3570), + [anon_sym_typename] = ACTIONS(3570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3570), + [anon_sym_decltype] = ACTIONS(3570), + [anon_sym_explicit] = ACTIONS(3570), + [anon_sym_private] = ACTIONS(3570), + [anon_sym_template] = ACTIONS(3570), + [anon_sym_operator] = ACTIONS(3570), + [anon_sym_friend] = ACTIONS(3570), + [anon_sym_public] = ACTIONS(3570), + [anon_sym_protected] = ACTIONS(3570), + [anon_sym_static_assert] = ACTIONS(3570), + [anon_sym_LBRACK_COLON] = ACTIONS(3572), }, [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), - [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_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_RPAREN] = ACTIONS(7568), + [aux_sym_preproc_if_token2] = ACTIONS(7568), + [aux_sym_preproc_else_token1] = ACTIONS(7568), + [aux_sym_preproc_elif_token1] = ACTIONS(7566), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7568), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_DASH] = ACTIONS(7566), + [anon_sym_PLUS] = ACTIONS(7566), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7566), + [anon_sym_PERCENT] = ACTIONS(7566), + [anon_sym_PIPE_PIPE] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7566), + [anon_sym_CARET] = ACTIONS(7566), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_EQ_EQ] = ACTIONS(7568), + [anon_sym_BANG_EQ] = ACTIONS(7568), + [anon_sym_GT] = ACTIONS(7566), + [anon_sym_GT_EQ] = ACTIONS(7568), + [anon_sym_LT_EQ] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7566), + [anon_sym_LT_LT] = ACTIONS(7566), + [anon_sym_GT_GT] = ACTIONS(7566), + [anon_sym_SEMI] = ACTIONS(7568), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7568), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_RBRACE] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(7568), + [anon_sym_EQ] = ACTIONS(7566), + [anon_sym_QMARK] = ACTIONS(7568), + [anon_sym_STAR_EQ] = ACTIONS(7568), + [anon_sym_SLASH_EQ] = ACTIONS(7568), + [anon_sym_PERCENT_EQ] = ACTIONS(7568), + [anon_sym_PLUS_EQ] = ACTIONS(7568), + [anon_sym_DASH_EQ] = ACTIONS(7568), + [anon_sym_LT_LT_EQ] = ACTIONS(7568), + [anon_sym_GT_GT_EQ] = ACTIONS(7568), + [anon_sym_AMP_EQ] = ACTIONS(7568), + [anon_sym_CARET_EQ] = ACTIONS(7568), + [anon_sym_PIPE_EQ] = ACTIONS(7568), + [anon_sym_and_eq] = ACTIONS(7566), + [anon_sym_or_eq] = ACTIONS(7566), + [anon_sym_xor_eq] = ACTIONS(7566), + [anon_sym_LT_EQ_GT] = ACTIONS(7568), + [anon_sym_or] = ACTIONS(7566), + [anon_sym_and] = ACTIONS(7566), + [anon_sym_bitor] = ACTIONS(7566), + [anon_sym_xor] = ACTIONS(7566), + [anon_sym_bitand] = ACTIONS(7566), + [anon_sym_not_eq] = ACTIONS(7566), + [anon_sym_DASH_DASH] = ACTIONS(7568), + [anon_sym_PLUS_PLUS] = ACTIONS(7568), + [anon_sym_DOT] = ACTIONS(7566), + [anon_sym_DOT_STAR] = ACTIONS(7568), + [anon_sym_DASH_GT] = ACTIONS(7568), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7566), + [anon_sym_override] = ACTIONS(7566), + [anon_sym_requires] = ACTIONS(7566), + [anon_sym_COLON_RBRACK] = ACTIONS(7568), }, [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), + [sym_identifier] = ACTIONS(8974), + [aux_sym_preproc_def_token1] = ACTIONS(8974), + [aux_sym_preproc_if_token1] = ACTIONS(8974), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8974), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8974), + [sym_preproc_directive] = ACTIONS(8974), + [anon_sym_LPAREN2] = ACTIONS(8976), + [anon_sym_TILDE] = ACTIONS(8976), + [anon_sym_STAR] = ACTIONS(8976), + [anon_sym_AMP_AMP] = ACTIONS(8976), + [anon_sym_AMP] = ACTIONS(8974), + [anon_sym_SEMI] = ACTIONS(8976), + [anon_sym___extension__] = ACTIONS(8974), + [anon_sym_typedef] = ACTIONS(8974), + [anon_sym_virtual] = ACTIONS(8974), + [anon_sym_extern] = ACTIONS(8974), + [anon_sym___attribute__] = ACTIONS(8974), + [anon_sym___attribute] = ACTIONS(8974), + [anon_sym_using] = ACTIONS(8974), + [anon_sym_COLON_COLON] = ACTIONS(8976), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8976), + [anon_sym___declspec] = ACTIONS(8974), + [anon_sym___based] = ACTIONS(8974), + [anon_sym_RBRACE] = ACTIONS(8976), + [anon_sym_signed] = ACTIONS(8974), + [anon_sym_unsigned] = ACTIONS(8974), + [anon_sym_long] = ACTIONS(8974), + [anon_sym_short] = ACTIONS(8974), + [anon_sym_LBRACK] = ACTIONS(8974), + [anon_sym_static] = ACTIONS(8974), + [anon_sym_register] = ACTIONS(8974), + [anon_sym_inline] = ACTIONS(8974), + [anon_sym___inline] = ACTIONS(8974), + [anon_sym___inline__] = ACTIONS(8974), + [anon_sym___forceinline] = ACTIONS(8974), + [anon_sym_thread_local] = ACTIONS(8974), + [anon_sym___thread] = ACTIONS(8974), + [anon_sym_const] = ACTIONS(8974), + [anon_sym_constexpr] = ACTIONS(8974), + [anon_sym_volatile] = ACTIONS(8974), + [anon_sym_restrict] = ACTIONS(8974), + [anon_sym___restrict__] = ACTIONS(8974), + [anon_sym__Atomic] = ACTIONS(8974), + [anon_sym__Noreturn] = ACTIONS(8974), + [anon_sym_noreturn] = ACTIONS(8974), + [anon_sym__Nonnull] = ACTIONS(8974), + [anon_sym_mutable] = ACTIONS(8974), + [anon_sym_constinit] = ACTIONS(8974), + [anon_sym_consteval] = ACTIONS(8974), + [anon_sym_alignas] = ACTIONS(8974), + [anon_sym__Alignas] = ACTIONS(8974), + [sym_primitive_type] = ACTIONS(8974), + [anon_sym_enum] = ACTIONS(8974), + [anon_sym_class] = ACTIONS(8974), + [anon_sym_struct] = ACTIONS(8974), + [anon_sym_union] = ACTIONS(8974), + [anon_sym_typename] = ACTIONS(8974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8974), + [anon_sym_decltype] = ACTIONS(8974), + [anon_sym_explicit] = ACTIONS(8974), + [anon_sym_private] = ACTIONS(8974), + [anon_sym_template] = ACTIONS(8974), + [anon_sym_operator] = ACTIONS(8974), + [anon_sym_friend] = ACTIONS(8974), + [anon_sym_public] = ACTIONS(8974), + [anon_sym_protected] = ACTIONS(8974), + [anon_sym_static_assert] = ACTIONS(8974), + [anon_sym_LBRACK_COLON] = ACTIONS(8976), }, [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), + [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(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), + [sym_identifier] = ACTIONS(8994), + [aux_sym_preproc_def_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8994), + [sym_preproc_directive] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8996), + [anon_sym_TILDE] = ACTIONS(8996), + [anon_sym_STAR] = ACTIONS(8996), + [anon_sym_AMP_AMP] = ACTIONS(8996), + [anon_sym_AMP] = ACTIONS(8994), + [anon_sym_SEMI] = ACTIONS(8996), + [anon_sym___extension__] = ACTIONS(8994), + [anon_sym_typedef] = ACTIONS(8994), + [anon_sym_virtual] = ACTIONS(8994), + [anon_sym_extern] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8994), + [anon_sym___attribute] = ACTIONS(8994), + [anon_sym_using] = ACTIONS(8994), + [anon_sym_COLON_COLON] = ACTIONS(8996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8996), + [anon_sym___declspec] = ACTIONS(8994), + [anon_sym___based] = ACTIONS(8994), + [anon_sym_RBRACE] = ACTIONS(8996), + [anon_sym_signed] = ACTIONS(8994), + [anon_sym_unsigned] = ACTIONS(8994), + [anon_sym_long] = ACTIONS(8994), + [anon_sym_short] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_static] = ACTIONS(8994), + [anon_sym_register] = ACTIONS(8994), + [anon_sym_inline] = ACTIONS(8994), + [anon_sym___inline] = ACTIONS(8994), + [anon_sym___inline__] = ACTIONS(8994), + [anon_sym___forceinline] = ACTIONS(8994), + [anon_sym_thread_local] = ACTIONS(8994), + [anon_sym___thread] = ACTIONS(8994), + [anon_sym_const] = ACTIONS(8994), + [anon_sym_constexpr] = ACTIONS(8994), + [anon_sym_volatile] = ACTIONS(8994), + [anon_sym_restrict] = ACTIONS(8994), + [anon_sym___restrict__] = ACTIONS(8994), + [anon_sym__Atomic] = ACTIONS(8994), + [anon_sym__Noreturn] = ACTIONS(8994), + [anon_sym_noreturn] = ACTIONS(8994), + [anon_sym__Nonnull] = ACTIONS(8994), + [anon_sym_mutable] = ACTIONS(8994), + [anon_sym_constinit] = ACTIONS(8994), + [anon_sym_consteval] = ACTIONS(8994), + [anon_sym_alignas] = ACTIONS(8994), + [anon_sym__Alignas] = ACTIONS(8994), + [sym_primitive_type] = ACTIONS(8994), + [anon_sym_enum] = ACTIONS(8994), + [anon_sym_class] = ACTIONS(8994), + [anon_sym_struct] = ACTIONS(8994), + [anon_sym_union] = ACTIONS(8994), + [anon_sym_typename] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8994), + [anon_sym_decltype] = ACTIONS(8994), + [anon_sym_explicit] = ACTIONS(8994), + [anon_sym_private] = ACTIONS(8994), + [anon_sym_template] = ACTIONS(8994), + [anon_sym_operator] = ACTIONS(8994), + [anon_sym_friend] = ACTIONS(8994), + [anon_sym_public] = ACTIONS(8994), + [anon_sym_protected] = ACTIONS(8994), + [anon_sym_static_assert] = ACTIONS(8994), + [anon_sym_LBRACK_COLON] = ACTIONS(8996), }, [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), + [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), }, [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), + [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), + [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(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(3640)] = { - [sym_identifier] = ACTIONS(9369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9371), - [anon_sym_COMMA] = ACTIONS(9371), - [anon_sym_RPAREN] = ACTIONS(9371), - [aux_sym_preproc_if_token2] = ACTIONS(9371), - [aux_sym_preproc_else_token1] = ACTIONS(9371), - [aux_sym_preproc_elif_token1] = ACTIONS(9369), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9371), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9371), - [anon_sym_LPAREN2] = ACTIONS(9371), - [anon_sym_DASH] = ACTIONS(9369), - [anon_sym_PLUS] = ACTIONS(9369), - [anon_sym_STAR] = ACTIONS(9369), - [anon_sym_SLASH] = ACTIONS(9369), - [anon_sym_PERCENT] = ACTIONS(9369), - [anon_sym_PIPE_PIPE] = ACTIONS(9371), - [anon_sym_AMP_AMP] = ACTIONS(9371), - [anon_sym_PIPE] = ACTIONS(9369), - [anon_sym_CARET] = ACTIONS(9369), - [anon_sym_AMP] = ACTIONS(9369), - [anon_sym_EQ_EQ] = ACTIONS(9371), - [anon_sym_BANG_EQ] = ACTIONS(9371), - [anon_sym_GT] = ACTIONS(9369), - [anon_sym_GT_EQ] = ACTIONS(9371), - [anon_sym_LT_EQ] = ACTIONS(9369), - [anon_sym_LT] = ACTIONS(9369), - [anon_sym_LT_LT] = ACTIONS(9369), - [anon_sym_GT_GT] = ACTIONS(9369), - [anon_sym_SEMI] = ACTIONS(9371), - [anon_sym___attribute__] = ACTIONS(9369), - [anon_sym___attribute] = ACTIONS(9369), - [anon_sym_COLON] = ACTIONS(9369), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9371), - [anon_sym_RBRACE] = ACTIONS(9371), - [anon_sym_LBRACK] = ACTIONS(9371), - [anon_sym_EQ] = ACTIONS(9369), - [anon_sym_QMARK] = ACTIONS(9371), - [anon_sym_STAR_EQ] = ACTIONS(9371), - [anon_sym_SLASH_EQ] = ACTIONS(9371), - [anon_sym_PERCENT_EQ] = ACTIONS(9371), - [anon_sym_PLUS_EQ] = ACTIONS(9371), - [anon_sym_DASH_EQ] = ACTIONS(9371), - [anon_sym_LT_LT_EQ] = ACTIONS(9371), - [anon_sym_GT_GT_EQ] = ACTIONS(9371), - [anon_sym_AMP_EQ] = ACTIONS(9371), - [anon_sym_CARET_EQ] = ACTIONS(9371), - [anon_sym_PIPE_EQ] = ACTIONS(9371), - [anon_sym_and_eq] = ACTIONS(9369), - [anon_sym_or_eq] = ACTIONS(9369), - [anon_sym_xor_eq] = ACTIONS(9369), - [anon_sym_LT_EQ_GT] = ACTIONS(9371), - [anon_sym_or] = ACTIONS(9369), - [anon_sym_and] = ACTIONS(9369), - [anon_sym_bitor] = ACTIONS(9369), - [anon_sym_xor] = ACTIONS(9369), - [anon_sym_bitand] = ACTIONS(9369), - [anon_sym_not_eq] = ACTIONS(9369), - [anon_sym_DASH_DASH] = ACTIONS(9371), - [anon_sym_PLUS_PLUS] = ACTIONS(9371), - [anon_sym_DOT] = ACTIONS(9369), - [anon_sym_DOT_STAR] = ACTIONS(9371), - [anon_sym_DASH_GT] = ACTIONS(9371), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9369), - [anon_sym_override] = ACTIONS(9369), - [anon_sym_requires] = ACTIONS(9369), - [anon_sym_COLON_RBRACK] = ACTIONS(9371), - }, - [STATE(3641)] = { - [sym_identifier] = ACTIONS(9373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9375), - [anon_sym_COMMA] = ACTIONS(9375), - [anon_sym_RPAREN] = ACTIONS(9375), - [aux_sym_preproc_if_token2] = ACTIONS(9375), - [aux_sym_preproc_else_token1] = ACTIONS(9375), - [aux_sym_preproc_elif_token1] = ACTIONS(9373), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9375), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9375), - [anon_sym_LPAREN2] = ACTIONS(9375), - [anon_sym_DASH] = ACTIONS(9373), - [anon_sym_PLUS] = ACTIONS(9373), - [anon_sym_STAR] = ACTIONS(9373), - [anon_sym_SLASH] = ACTIONS(9373), - [anon_sym_PERCENT] = ACTIONS(9373), - [anon_sym_PIPE_PIPE] = ACTIONS(9375), - [anon_sym_AMP_AMP] = ACTIONS(9375), - [anon_sym_PIPE] = ACTIONS(9373), - [anon_sym_CARET] = ACTIONS(9373), - [anon_sym_AMP] = ACTIONS(9373), - [anon_sym_EQ_EQ] = ACTIONS(9375), - [anon_sym_BANG_EQ] = ACTIONS(9375), - [anon_sym_GT] = ACTIONS(9373), - [anon_sym_GT_EQ] = ACTIONS(9375), - [anon_sym_LT_EQ] = ACTIONS(9373), - [anon_sym_LT] = ACTIONS(9373), - [anon_sym_LT_LT] = ACTIONS(9373), - [anon_sym_GT_GT] = ACTIONS(9373), - [anon_sym_SEMI] = ACTIONS(9375), - [anon_sym___attribute__] = ACTIONS(9373), - [anon_sym___attribute] = ACTIONS(9373), - [anon_sym_COLON] = ACTIONS(9373), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9375), - [anon_sym_RBRACE] = ACTIONS(9375), - [anon_sym_LBRACK] = ACTIONS(9375), - [anon_sym_EQ] = ACTIONS(9373), - [anon_sym_QMARK] = ACTIONS(9375), - [anon_sym_STAR_EQ] = ACTIONS(9375), - [anon_sym_SLASH_EQ] = ACTIONS(9375), - [anon_sym_PERCENT_EQ] = ACTIONS(9375), - [anon_sym_PLUS_EQ] = ACTIONS(9375), - [anon_sym_DASH_EQ] = ACTIONS(9375), - [anon_sym_LT_LT_EQ] = ACTIONS(9375), - [anon_sym_GT_GT_EQ] = ACTIONS(9375), - [anon_sym_AMP_EQ] = ACTIONS(9375), - [anon_sym_CARET_EQ] = ACTIONS(9375), - [anon_sym_PIPE_EQ] = ACTIONS(9375), - [anon_sym_and_eq] = ACTIONS(9373), - [anon_sym_or_eq] = ACTIONS(9373), - [anon_sym_xor_eq] = ACTIONS(9373), - [anon_sym_LT_EQ_GT] = ACTIONS(9375), - [anon_sym_or] = ACTIONS(9373), - [anon_sym_and] = ACTIONS(9373), - [anon_sym_bitor] = ACTIONS(9373), - [anon_sym_xor] = ACTIONS(9373), - [anon_sym_bitand] = ACTIONS(9373), - [anon_sym_not_eq] = ACTIONS(9373), - [anon_sym_DASH_DASH] = ACTIONS(9375), - [anon_sym_PLUS_PLUS] = ACTIONS(9375), - [anon_sym_DOT] = ACTIONS(9373), - [anon_sym_DOT_STAR] = ACTIONS(9375), - [anon_sym_DASH_GT] = ACTIONS(9375), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9373), - [anon_sym_override] = ACTIONS(9373), - [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(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(3645)] = { - [sym_argument_list] = STATE(3859), - [sym_initializer_list] = STATE(3859), - [sym_identifier] = ACTIONS(9377), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9379), - [anon_sym_COMMA] = ACTIONS(9379), - [anon_sym_RPAREN] = ACTIONS(9379), - [aux_sym_preproc_if_token2] = ACTIONS(9379), - [aux_sym_preproc_else_token1] = ACTIONS(9379), - [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_DASH] = ACTIONS(9377), - [anon_sym_PLUS] = ACTIONS(9377), - [anon_sym_STAR] = ACTIONS(9377), - [anon_sym_SLASH] = ACTIONS(9377), - [anon_sym_PERCENT] = ACTIONS(9377), - [anon_sym_PIPE_PIPE] = ACTIONS(9379), - [anon_sym_AMP_AMP] = ACTIONS(9379), - [anon_sym_PIPE] = ACTIONS(9377), - [anon_sym_CARET] = ACTIONS(9377), - [anon_sym_AMP] = ACTIONS(9377), - [anon_sym_EQ_EQ] = ACTIONS(9379), - [anon_sym_BANG_EQ] = ACTIONS(9379), - [anon_sym_GT] = ACTIONS(9377), - [anon_sym_GT_EQ] = ACTIONS(9379), - [anon_sym_LT_EQ] = ACTIONS(9377), - [anon_sym_LT] = ACTIONS(9377), - [anon_sym_LT_LT] = ACTIONS(9377), - [anon_sym_GT_GT] = ACTIONS(9377), - [anon_sym_SEMI] = ACTIONS(9379), - [anon_sym___attribute__] = ACTIONS(9377), - [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), - [anon_sym_QMARK] = ACTIONS(9379), - [anon_sym_STAR_EQ] = ACTIONS(9379), - [anon_sym_SLASH_EQ] = ACTIONS(9379), - [anon_sym_PERCENT_EQ] = ACTIONS(9379), - [anon_sym_PLUS_EQ] = ACTIONS(9379), - [anon_sym_DASH_EQ] = ACTIONS(9379), - [anon_sym_LT_LT_EQ] = ACTIONS(9379), - [anon_sym_GT_GT_EQ] = ACTIONS(9379), - [anon_sym_AMP_EQ] = ACTIONS(9379), - [anon_sym_CARET_EQ] = ACTIONS(9379), - [anon_sym_PIPE_EQ] = ACTIONS(9379), - [anon_sym_and_eq] = ACTIONS(9377), - [anon_sym_or_eq] = ACTIONS(9377), - [anon_sym_xor_eq] = ACTIONS(9377), - [anon_sym_LT_EQ_GT] = ACTIONS(9379), - [anon_sym_or] = ACTIONS(9377), - [anon_sym_and] = ACTIONS(9377), - [anon_sym_bitor] = ACTIONS(9377), - [anon_sym_xor] = ACTIONS(9377), - [anon_sym_bitand] = ACTIONS(9377), - [anon_sym_not_eq] = ACTIONS(9377), - [anon_sym_DASH_DASH] = ACTIONS(9379), - [anon_sym_PLUS_PLUS] = ACTIONS(9379), - [anon_sym_DOT] = ACTIONS(9377), - [anon_sym_DOT_STAR] = ACTIONS(9379), - [anon_sym_DASH_GT] = ACTIONS(9379), - [sym_comment] = ACTIONS(3), - [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(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(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(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(3651)] = { - [sym_identifier] = ACTIONS(9389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9391), - [anon_sym_COMMA] = ACTIONS(9391), - [anon_sym_RPAREN] = ACTIONS(9391), - [aux_sym_preproc_if_token2] = ACTIONS(9391), - [aux_sym_preproc_else_token1] = ACTIONS(9391), - [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_DASH] = ACTIONS(9389), - [anon_sym_PLUS] = ACTIONS(9389), - [anon_sym_STAR] = ACTIONS(9389), - [anon_sym_SLASH] = ACTIONS(9389), - [anon_sym_PERCENT] = ACTIONS(9389), - [anon_sym_PIPE_PIPE] = ACTIONS(9391), - [anon_sym_AMP_AMP] = ACTIONS(9391), - [anon_sym_PIPE] = ACTIONS(9389), - [anon_sym_CARET] = ACTIONS(9389), - [anon_sym_AMP] = ACTIONS(9389), - [anon_sym_EQ_EQ] = ACTIONS(9391), - [anon_sym_BANG_EQ] = ACTIONS(9391), - [anon_sym_GT] = ACTIONS(9389), - [anon_sym_GT_EQ] = ACTIONS(9391), - [anon_sym_LT_EQ] = ACTIONS(9389), - [anon_sym_LT] = ACTIONS(9389), - [anon_sym_LT_LT] = ACTIONS(9389), - [anon_sym_GT_GT] = ACTIONS(9389), - [anon_sym_SEMI] = ACTIONS(9391), - [anon_sym___attribute__] = ACTIONS(9389), - [anon_sym___attribute] = ACTIONS(9389), - [anon_sym_COLON] = ACTIONS(9389), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9391), - [anon_sym_RBRACE] = ACTIONS(9391), - [anon_sym_LBRACK] = ACTIONS(9391), - [anon_sym_EQ] = ACTIONS(9389), - [anon_sym_QMARK] = ACTIONS(9391), - [anon_sym_STAR_EQ] = ACTIONS(9391), - [anon_sym_SLASH_EQ] = ACTIONS(9391), - [anon_sym_PERCENT_EQ] = ACTIONS(9391), - [anon_sym_PLUS_EQ] = ACTIONS(9391), - [anon_sym_DASH_EQ] = ACTIONS(9391), - [anon_sym_LT_LT_EQ] = ACTIONS(9391), - [anon_sym_GT_GT_EQ] = ACTIONS(9391), - [anon_sym_AMP_EQ] = ACTIONS(9391), - [anon_sym_CARET_EQ] = ACTIONS(9391), - [anon_sym_PIPE_EQ] = ACTIONS(9391), - [anon_sym_and_eq] = ACTIONS(9389), - [anon_sym_or_eq] = ACTIONS(9389), - [anon_sym_xor_eq] = ACTIONS(9389), - [anon_sym_LT_EQ_GT] = ACTIONS(9391), - [anon_sym_or] = ACTIONS(9389), - [anon_sym_and] = ACTIONS(9389), - [anon_sym_bitor] = ACTIONS(9389), - [anon_sym_xor] = ACTIONS(9389), - [anon_sym_bitand] = ACTIONS(9389), - [anon_sym_not_eq] = ACTIONS(9389), - [anon_sym_DASH_DASH] = ACTIONS(9391), - [anon_sym_PLUS_PLUS] = ACTIONS(9391), - [anon_sym_DOT] = ACTIONS(9389), - [anon_sym_DOT_STAR] = ACTIONS(9391), - [anon_sym_DASH_GT] = ACTIONS(9391), + [sym_identifier] = 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_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_RBRACE] = 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_typename] = ACTIONS(4092), [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), + [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(3640)] = { + [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), + [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(3641)] = { + [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), + }, + [STATE(3642)] = { + [sym_identifier] = ACTIONS(4130), + [aux_sym_preproc_def_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4130), + [sym_preproc_directive] = ACTIONS(4130), + [anon_sym_LPAREN2] = ACTIONS(4132), + [anon_sym_TILDE] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym___extension__] = ACTIONS(4130), + [anon_sym_typedef] = ACTIONS(4130), + [anon_sym_virtual] = ACTIONS(4130), + [anon_sym_extern] = ACTIONS(4130), + [anon_sym___attribute__] = ACTIONS(4130), + [anon_sym___attribute] = ACTIONS(4130), + [anon_sym_using] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4132), + [anon_sym___declspec] = ACTIONS(4130), + [anon_sym___based] = ACTIONS(4130), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_signed] = ACTIONS(4130), + [anon_sym_unsigned] = ACTIONS(4130), + [anon_sym_long] = ACTIONS(4130), + [anon_sym_short] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4130), + [anon_sym_static] = ACTIONS(4130), + [anon_sym_register] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym___inline] = ACTIONS(4130), + [anon_sym___inline__] = ACTIONS(4130), + [anon_sym___forceinline] = ACTIONS(4130), + [anon_sym_thread_local] = ACTIONS(4130), + [anon_sym___thread] = ACTIONS(4130), + [anon_sym_const] = ACTIONS(4130), + [anon_sym_constexpr] = ACTIONS(4130), + [anon_sym_volatile] = ACTIONS(4130), + [anon_sym_restrict] = ACTIONS(4130), + [anon_sym___restrict__] = ACTIONS(4130), + [anon_sym__Atomic] = ACTIONS(4130), + [anon_sym__Noreturn] = ACTIONS(4130), + [anon_sym_noreturn] = ACTIONS(4130), + [anon_sym__Nonnull] = ACTIONS(4130), + [anon_sym_mutable] = ACTIONS(4130), + [anon_sym_constinit] = ACTIONS(4130), + [anon_sym_consteval] = ACTIONS(4130), + [anon_sym_alignas] = ACTIONS(4130), + [anon_sym__Alignas] = ACTIONS(4130), + [sym_primitive_type] = ACTIONS(4130), + [anon_sym_enum] = ACTIONS(4130), + [anon_sym_class] = ACTIONS(4130), + [anon_sym_struct] = ACTIONS(4130), + [anon_sym_union] = ACTIONS(4130), + [anon_sym_typename] = ACTIONS(4130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4130), + [anon_sym_decltype] = ACTIONS(4130), + [anon_sym_explicit] = ACTIONS(4130), + [anon_sym_private] = ACTIONS(4130), + [anon_sym_template] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_friend] = ACTIONS(4130), + [anon_sym_public] = ACTIONS(4130), + [anon_sym_protected] = ACTIONS(4130), + [anon_sym_static_assert] = ACTIONS(4130), + [anon_sym_LBRACK_COLON] = ACTIONS(4132), + }, + [STATE(3643)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_friend] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + }, + [STATE(3644)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3644), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7175), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7175), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7175), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7173), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7175), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(9478), + [anon_sym_unsigned] = ACTIONS(9478), + [anon_sym_long] = ACTIONS(9478), + [anon_sym_short] = ACTIONS(9478), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_GT2] = ACTIONS(7175), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), + }, + [STATE(3645)] = { + [sym_type_qualifier] = STATE(3647), + [sym_alignas_qualifier] = STATE(3456), + [aux_sym__type_definition_type_repeat1] = STATE(3647), + [aux_sym_sized_type_specifier_repeat1] = STATE(4027), + [sym_identifier] = ACTIONS(9503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [aux_sym_preproc_if_token2] = ACTIONS(6934), + [aux_sym_preproc_else_token1] = ACTIONS(6934), + [aux_sym_preproc_elif_token1] = ACTIONS(6936), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6934), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6934), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6934), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6934), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6934), + [anon_sym___extension__] = ACTIONS(9432), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(9506), + [anon_sym_unsigned] = ACTIONS(9506), + [anon_sym_long] = ACTIONS(9506), + [anon_sym_short] = ACTIONS(9506), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_const] = ACTIONS(9432), + [anon_sym_constexpr] = ACTIONS(9432), + [anon_sym_volatile] = ACTIONS(9432), + [anon_sym_restrict] = ACTIONS(9432), + [anon_sym___restrict__] = ACTIONS(9432), + [anon_sym__Atomic] = ACTIONS(9432), + [anon_sym__Noreturn] = ACTIONS(9432), + [anon_sym_noreturn] = ACTIONS(9432), + [anon_sym__Nonnull] = ACTIONS(9432), + [anon_sym_mutable] = ACTIONS(9432), + [anon_sym_constinit] = ACTIONS(9432), + [anon_sym_consteval] = ACTIONS(9432), + [anon_sym_alignas] = ACTIONS(9436), + [anon_sym__Alignas] = ACTIONS(9436), + [sym_primitive_type] = ACTIONS(9508), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + }, + [STATE(3646)] = { + [sym_identifier] = ACTIONS(3582), + [aux_sym_preproc_def_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token1] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3582), + [sym_preproc_directive] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_STAR] = ACTIONS(3584), + [anon_sym_AMP_AMP] = ACTIONS(3584), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym___extension__] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3582), + [anon_sym_virtual] = ACTIONS(3582), + [anon_sym_extern] = ACTIONS(3582), + [anon_sym___attribute__] = ACTIONS(3582), + [anon_sym___attribute] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_COLON_COLON] = ACTIONS(3584), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3584), + [anon_sym___declspec] = ACTIONS(3582), + [anon_sym___based] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_signed] = ACTIONS(3582), + [anon_sym_unsigned] = ACTIONS(3582), + [anon_sym_long] = ACTIONS(3582), + [anon_sym_short] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_register] = ACTIONS(3582), + [anon_sym_inline] = ACTIONS(3582), + [anon_sym___inline] = ACTIONS(3582), + [anon_sym___inline__] = ACTIONS(3582), + [anon_sym___forceinline] = ACTIONS(3582), + [anon_sym_thread_local] = ACTIONS(3582), + [anon_sym___thread] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_constexpr] = ACTIONS(3582), + [anon_sym_volatile] = ACTIONS(3582), + [anon_sym_restrict] = ACTIONS(3582), + [anon_sym___restrict__] = ACTIONS(3582), + [anon_sym__Atomic] = ACTIONS(3582), + [anon_sym__Noreturn] = ACTIONS(3582), + [anon_sym_noreturn] = ACTIONS(3582), + [anon_sym__Nonnull] = ACTIONS(3582), + [anon_sym_mutable] = ACTIONS(3582), + [anon_sym_constinit] = ACTIONS(3582), + [anon_sym_consteval] = ACTIONS(3582), + [anon_sym_alignas] = ACTIONS(3582), + [anon_sym__Alignas] = ACTIONS(3582), + [sym_primitive_type] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_struct] = ACTIONS(3582), + [anon_sym_union] = ACTIONS(3582), + [anon_sym_typename] = ACTIONS(3582), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(3582), + [anon_sym_explicit] = ACTIONS(3582), + [anon_sym_private] = ACTIONS(3582), + [anon_sym_template] = ACTIONS(3582), + [anon_sym_operator] = ACTIONS(3582), + [anon_sym_friend] = ACTIONS(3582), + [anon_sym_public] = ACTIONS(3582), + [anon_sym_protected] = ACTIONS(3582), + [anon_sym_static_assert] = ACTIONS(3582), + [anon_sym_LBRACK_COLON] = ACTIONS(3584), + }, + [STATE(3647)] = { + [sym_type_qualifier] = STATE(3118), + [sym_alignas_qualifier] = STATE(3456), + [aux_sym__type_definition_type_repeat1] = STATE(3118), + [aux_sym_sized_type_specifier_repeat1] = STATE(6646), + [sym_identifier] = ACTIONS(9510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [aux_sym_preproc_if_token2] = ACTIONS(7023), + [aux_sym_preproc_else_token1] = ACTIONS(7023), + [aux_sym_preproc_elif_token1] = ACTIONS(7025), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7023), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7023), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7023), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7023), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7023), + [anon_sym_GT_GT] = ACTIONS(7023), + [anon_sym___extension__] = ACTIONS(9432), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(9513), + [anon_sym_unsigned] = ACTIONS(9513), + [anon_sym_long] = ACTIONS(9513), + [anon_sym_short] = ACTIONS(9513), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym_const] = ACTIONS(9432), + [anon_sym_constexpr] = ACTIONS(9432), + [anon_sym_volatile] = ACTIONS(9432), + [anon_sym_restrict] = ACTIONS(9432), + [anon_sym___restrict__] = ACTIONS(9432), + [anon_sym__Atomic] = ACTIONS(9432), + [anon_sym__Noreturn] = ACTIONS(9432), + [anon_sym_noreturn] = ACTIONS(9432), + [anon_sym__Nonnull] = ACTIONS(9432), + [anon_sym_mutable] = ACTIONS(9432), + [anon_sym_constinit] = ACTIONS(9432), + [anon_sym_consteval] = ACTIONS(9432), + [anon_sym_alignas] = ACTIONS(9436), + [anon_sym__Alignas] = ACTIONS(9436), + [sym_primitive_type] = ACTIONS(9515), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + }, + [STATE(3648)] = { + [sym_identifier] = ACTIONS(4146), + [aux_sym_preproc_def_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4146), + [sym_preproc_directive] = ACTIONS(4146), + [anon_sym_LPAREN2] = ACTIONS(4148), + [anon_sym_TILDE] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym___extension__] = ACTIONS(4146), + [anon_sym_typedef] = ACTIONS(4146), + [anon_sym_virtual] = ACTIONS(4146), + [anon_sym_extern] = ACTIONS(4146), + [anon_sym___attribute__] = ACTIONS(4146), + [anon_sym___attribute] = ACTIONS(4146), + [anon_sym_using] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4148), + [anon_sym___declspec] = ACTIONS(4146), + [anon_sym___based] = ACTIONS(4146), + [anon_sym_RBRACE] = ACTIONS(4148), + [anon_sym_signed] = ACTIONS(4146), + [anon_sym_unsigned] = ACTIONS(4146), + [anon_sym_long] = ACTIONS(4146), + [anon_sym_short] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_static] = ACTIONS(4146), + [anon_sym_register] = ACTIONS(4146), + [anon_sym_inline] = ACTIONS(4146), + [anon_sym___inline] = ACTIONS(4146), + [anon_sym___inline__] = ACTIONS(4146), + [anon_sym___forceinline] = ACTIONS(4146), + [anon_sym_thread_local] = ACTIONS(4146), + [anon_sym___thread] = ACTIONS(4146), + [anon_sym_const] = ACTIONS(4146), + [anon_sym_constexpr] = ACTIONS(4146), + [anon_sym_volatile] = ACTIONS(4146), + [anon_sym_restrict] = ACTIONS(4146), + [anon_sym___restrict__] = ACTIONS(4146), + [anon_sym__Atomic] = ACTIONS(4146), + [anon_sym__Noreturn] = ACTIONS(4146), + [anon_sym_noreturn] = ACTIONS(4146), + [anon_sym__Nonnull] = ACTIONS(4146), + [anon_sym_mutable] = ACTIONS(4146), + [anon_sym_constinit] = ACTIONS(4146), + [anon_sym_consteval] = ACTIONS(4146), + [anon_sym_alignas] = ACTIONS(4146), + [anon_sym__Alignas] = ACTIONS(4146), + [sym_primitive_type] = ACTIONS(4146), + [anon_sym_enum] = ACTIONS(4146), + [anon_sym_class] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4146), + [anon_sym_union] = ACTIONS(4146), + [anon_sym_typename] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4146), + [anon_sym_decltype] = ACTIONS(4146), + [anon_sym_explicit] = ACTIONS(4146), + [anon_sym_private] = ACTIONS(4146), + [anon_sym_template] = ACTIONS(4146), + [anon_sym_operator] = ACTIONS(4146), + [anon_sym_friend] = ACTIONS(4146), + [anon_sym_public] = ACTIONS(4146), + [anon_sym_protected] = ACTIONS(4146), + [anon_sym_static_assert] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4148), + }, + [STATE(3649)] = { + [sym_string_literal] = STATE(2884), + [sym_raw_string_literal] = STATE(2884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9517), + [anon_sym_COMMA] = ACTIONS(9517), + [anon_sym_RPAREN] = ACTIONS(9517), + [anon_sym_LPAREN2] = ACTIONS(9517), + [anon_sym_DASH] = ACTIONS(9519), + [anon_sym_PLUS] = ACTIONS(9519), + [anon_sym_STAR] = ACTIONS(9519), + [anon_sym_SLASH] = ACTIONS(9519), + [anon_sym_PERCENT] = ACTIONS(9519), + [anon_sym_PIPE_PIPE] = ACTIONS(9517), + [anon_sym_AMP_AMP] = ACTIONS(9517), + [anon_sym_PIPE] = ACTIONS(9519), + [anon_sym_CARET] = ACTIONS(9519), + [anon_sym_AMP] = ACTIONS(9519), + [anon_sym_EQ_EQ] = ACTIONS(9517), + [anon_sym_BANG_EQ] = ACTIONS(9517), + [anon_sym_GT] = ACTIONS(9519), + [anon_sym_GT_EQ] = ACTIONS(9517), + [anon_sym_LT_EQ] = ACTIONS(9519), + [anon_sym_LT] = ACTIONS(9519), + [anon_sym_LT_LT] = ACTIONS(9519), + [anon_sym_GT_GT] = ACTIONS(9519), + [anon_sym_SEMI] = ACTIONS(9517), + [anon_sym_COLON] = ACTIONS(9519), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9517), + [anon_sym_RBRACE] = ACTIONS(9517), + [anon_sym_LBRACK] = ACTIONS(9517), + [anon_sym_EQ] = ACTIONS(9519), + [anon_sym_QMARK] = ACTIONS(9517), + [anon_sym_STAR_EQ] = ACTIONS(9517), + [anon_sym_SLASH_EQ] = ACTIONS(9517), + [anon_sym_PERCENT_EQ] = ACTIONS(9517), + [anon_sym_PLUS_EQ] = ACTIONS(9517), + [anon_sym_DASH_EQ] = ACTIONS(9517), + [anon_sym_LT_LT_EQ] = ACTIONS(9517), + [anon_sym_GT_GT_EQ] = ACTIONS(9517), + [anon_sym_AMP_EQ] = ACTIONS(9517), + [anon_sym_CARET_EQ] = ACTIONS(9517), + [anon_sym_PIPE_EQ] = ACTIONS(9517), + [anon_sym_and_eq] = ACTIONS(9519), + [anon_sym_or_eq] = ACTIONS(9519), + [anon_sym_xor_eq] = ACTIONS(9519), + [anon_sym_LT_EQ_GT] = ACTIONS(9517), + [anon_sym_or] = ACTIONS(9519), + [anon_sym_and] = ACTIONS(9519), + [anon_sym_bitor] = ACTIONS(9519), + [anon_sym_xor] = ACTIONS(9519), + [anon_sym_bitand] = ACTIONS(9519), + [anon_sym_not_eq] = ACTIONS(9519), + [anon_sym_DASH_DASH] = ACTIONS(9517), + [anon_sym_PLUS_PLUS] = ACTIONS(9517), + [anon_sym_DOT] = ACTIONS(9519), + [anon_sym_DOT_STAR] = ACTIONS(9517), + [anon_sym_DASH_GT] = ACTIONS(9517), + [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(9517), + [sym_literal_suffix] = ACTIONS(9519), + }, + [STATE(3650)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3714), + [sym_identifier] = ACTIONS(7308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7310), + [anon_sym_RPAREN] = ACTIONS(7310), + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_TILDE] = ACTIONS(7310), + [anon_sym_STAR] = ACTIONS(7310), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_AMP] = ACTIONS(7308), + [anon_sym_SEMI] = ACTIONS(7310), + [anon_sym___extension__] = ACTIONS(7308), + [anon_sym_virtual] = ACTIONS(7308), + [anon_sym_extern] = ACTIONS(7308), + [anon_sym___attribute__] = ACTIONS(7308), + [anon_sym___attribute] = ACTIONS(7308), + [anon_sym_COLON] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7310), + [anon_sym___declspec] = ACTIONS(7308), + [anon_sym___based] = ACTIONS(7308), + [anon_sym___cdecl] = ACTIONS(7308), + [anon_sym___clrcall] = ACTIONS(7308), + [anon_sym___stdcall] = ACTIONS(7308), + [anon_sym___fastcall] = ACTIONS(7308), + [anon_sym___thiscall] = ACTIONS(7308), + [anon_sym___vectorcall] = ACTIONS(7308), + [anon_sym_LBRACE] = ACTIONS(7310), + [anon_sym_signed] = ACTIONS(9463), + [anon_sym_unsigned] = ACTIONS(9463), + [anon_sym_long] = ACTIONS(9463), + [anon_sym_short] = ACTIONS(9463), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym_static] = ACTIONS(7308), + [anon_sym_EQ] = ACTIONS(7310), + [anon_sym_register] = ACTIONS(7308), + [anon_sym_inline] = ACTIONS(7308), + [anon_sym___inline] = ACTIONS(7308), + [anon_sym___inline__] = ACTIONS(7308), + [anon_sym___forceinline] = ACTIONS(7308), + [anon_sym_thread_local] = ACTIONS(7308), + [anon_sym___thread] = ACTIONS(7308), + [anon_sym_const] = ACTIONS(7308), + [anon_sym_constexpr] = ACTIONS(7308), + [anon_sym_volatile] = ACTIONS(7308), + [anon_sym_restrict] = ACTIONS(7308), + [anon_sym___restrict__] = ACTIONS(7308), + [anon_sym__Atomic] = ACTIONS(7308), + [anon_sym__Noreturn] = ACTIONS(7308), + [anon_sym_noreturn] = ACTIONS(7308), + [anon_sym__Nonnull] = ACTIONS(7308), + [anon_sym_mutable] = ACTIONS(7308), + [anon_sym_constinit] = ACTIONS(7308), + [anon_sym_consteval] = ACTIONS(7308), + [anon_sym_alignas] = ACTIONS(7308), + [anon_sym__Alignas] = ACTIONS(7308), + [anon_sym_asm] = ACTIONS(7308), + [anon_sym___asm__] = ACTIONS(7308), + [anon_sym___asm] = ACTIONS(7308), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7308), + [anon_sym_final] = ACTIONS(7308), + [anon_sym_override] = ACTIONS(7308), + [anon_sym_template] = ACTIONS(7308), + [anon_sym_GT2] = ACTIONS(7310), + [anon_sym_operator] = ACTIONS(7308), + [anon_sym_try] = ACTIONS(7308), + [anon_sym_requires] = ACTIONS(7308), + [anon_sym_LBRACK_COLON] = ACTIONS(7310), + }, + [STATE(3651)] = { + [sym_identifier] = ACTIONS(8986), + [aux_sym_preproc_def_token1] = ACTIONS(8986), + [aux_sym_preproc_if_token1] = ACTIONS(8986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8986), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8986), + [sym_preproc_directive] = ACTIONS(8986), + [anon_sym_LPAREN2] = ACTIONS(8988), + [anon_sym_TILDE] = ACTIONS(8988), + [anon_sym_STAR] = ACTIONS(8988), + [anon_sym_AMP_AMP] = ACTIONS(8988), + [anon_sym_AMP] = ACTIONS(8986), + [anon_sym_SEMI] = ACTIONS(8988), + [anon_sym___extension__] = ACTIONS(8986), + [anon_sym_typedef] = ACTIONS(8986), + [anon_sym_virtual] = ACTIONS(8986), + [anon_sym_extern] = ACTIONS(8986), + [anon_sym___attribute__] = ACTIONS(8986), + [anon_sym___attribute] = ACTIONS(8986), + [anon_sym_using] = ACTIONS(8986), + [anon_sym_COLON_COLON] = ACTIONS(8988), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8988), + [anon_sym___declspec] = ACTIONS(8986), + [anon_sym___based] = ACTIONS(8986), + [anon_sym_RBRACE] = ACTIONS(8988), + [anon_sym_signed] = ACTIONS(8986), + [anon_sym_unsigned] = ACTIONS(8986), + [anon_sym_long] = ACTIONS(8986), + [anon_sym_short] = ACTIONS(8986), + [anon_sym_LBRACK] = ACTIONS(8986), + [anon_sym_static] = ACTIONS(8986), + [anon_sym_register] = ACTIONS(8986), + [anon_sym_inline] = ACTIONS(8986), + [anon_sym___inline] = ACTIONS(8986), + [anon_sym___inline__] = ACTIONS(8986), + [anon_sym___forceinline] = ACTIONS(8986), + [anon_sym_thread_local] = ACTIONS(8986), + [anon_sym___thread] = ACTIONS(8986), + [anon_sym_const] = ACTIONS(8986), + [anon_sym_constexpr] = ACTIONS(8986), + [anon_sym_volatile] = ACTIONS(8986), + [anon_sym_restrict] = ACTIONS(8986), + [anon_sym___restrict__] = ACTIONS(8986), + [anon_sym__Atomic] = ACTIONS(8986), + [anon_sym__Noreturn] = ACTIONS(8986), + [anon_sym_noreturn] = ACTIONS(8986), + [anon_sym__Nonnull] = ACTIONS(8986), + [anon_sym_mutable] = ACTIONS(8986), + [anon_sym_constinit] = ACTIONS(8986), + [anon_sym_consteval] = ACTIONS(8986), + [anon_sym_alignas] = ACTIONS(8986), + [anon_sym__Alignas] = ACTIONS(8986), + [sym_primitive_type] = ACTIONS(8986), + [anon_sym_enum] = ACTIONS(8986), + [anon_sym_class] = ACTIONS(8986), + [anon_sym_struct] = ACTIONS(8986), + [anon_sym_union] = ACTIONS(8986), + [anon_sym_typename] = ACTIONS(8986), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8986), + [anon_sym_decltype] = ACTIONS(8986), + [anon_sym_explicit] = ACTIONS(8986), + [anon_sym_private] = ACTIONS(8986), + [anon_sym_template] = ACTIONS(8986), + [anon_sym_operator] = ACTIONS(8986), + [anon_sym_friend] = ACTIONS(8986), + [anon_sym_public] = ACTIONS(8986), + [anon_sym_protected] = ACTIONS(8986), + [anon_sym_static_assert] = ACTIONS(8986), + [anon_sym_LBRACK_COLON] = ACTIONS(8988), }, [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), - [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), + [sym_identifier] = ACTIONS(3582), + [aux_sym_preproc_def_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token1] = ACTIONS(3582), + [aux_sym_preproc_if_token2] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3582), + [sym_preproc_directive] = ACTIONS(3582), + [anon_sym_LPAREN2] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_STAR] = ACTIONS(3584), + [anon_sym_AMP_AMP] = ACTIONS(3584), + [anon_sym_AMP] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym___extension__] = ACTIONS(3582), + [anon_sym_typedef] = ACTIONS(3582), + [anon_sym_virtual] = ACTIONS(3582), + [anon_sym_extern] = ACTIONS(3582), + [anon_sym___attribute__] = ACTIONS(3582), + [anon_sym___attribute] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_COLON_COLON] = ACTIONS(3584), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3584), + [anon_sym___declspec] = ACTIONS(3582), + [anon_sym___based] = ACTIONS(3582), + [anon_sym_signed] = ACTIONS(3582), + [anon_sym_unsigned] = ACTIONS(3582), + [anon_sym_long] = ACTIONS(3582), + [anon_sym_short] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_register] = ACTIONS(3582), + [anon_sym_inline] = ACTIONS(3582), + [anon_sym___inline] = ACTIONS(3582), + [anon_sym___inline__] = ACTIONS(3582), + [anon_sym___forceinline] = ACTIONS(3582), + [anon_sym_thread_local] = ACTIONS(3582), + [anon_sym___thread] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_constexpr] = ACTIONS(3582), + [anon_sym_volatile] = ACTIONS(3582), + [anon_sym_restrict] = ACTIONS(3582), + [anon_sym___restrict__] = ACTIONS(3582), + [anon_sym__Atomic] = ACTIONS(3582), + [anon_sym__Noreturn] = ACTIONS(3582), + [anon_sym_noreturn] = ACTIONS(3582), + [anon_sym__Nonnull] = ACTIONS(3582), + [anon_sym_mutable] = ACTIONS(3582), + [anon_sym_constinit] = ACTIONS(3582), + [anon_sym_consteval] = ACTIONS(3582), + [anon_sym_alignas] = ACTIONS(3582), + [anon_sym__Alignas] = ACTIONS(3582), + [sym_primitive_type] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_struct] = ACTIONS(3582), + [anon_sym_union] = ACTIONS(3582), + [anon_sym_typename] = ACTIONS(3582), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3582), + [anon_sym_decltype] = ACTIONS(3582), + [anon_sym_explicit] = ACTIONS(3582), + [anon_sym_private] = ACTIONS(3582), + [anon_sym_template] = ACTIONS(3582), + [anon_sym_operator] = ACTIONS(3582), + [anon_sym_friend] = ACTIONS(3582), + [anon_sym_public] = ACTIONS(3582), + [anon_sym_protected] = ACTIONS(3582), + [anon_sym_static_assert] = ACTIONS(3582), + [anon_sym_LBRACK_COLON] = ACTIONS(3584), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(4038), + [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_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_typename] = ACTIONS(4036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4036), + [anon_sym_decltype] = ACTIONS(4036), + [anon_sym_explicit] = ACTIONS(4036), + [anon_sym_private] = ACTIONS(4036), + [anon_sym_template] = ACTIONS(4036), + [anon_sym_operator] = ACTIONS(4036), + [anon_sym_friend] = ACTIONS(4036), + [anon_sym_public] = ACTIONS(4036), + [anon_sym_protected] = ACTIONS(4036), + [anon_sym_static_assert] = ACTIONS(4036), + [anon_sym_LBRACK_COLON] = ACTIONS(4038), }, [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(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), }, [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(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_friend] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3714), + [sym_identifier] = ACTIONS(7304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7306), + [anon_sym_RPAREN] = ACTIONS(7306), + [anon_sym_LPAREN2] = ACTIONS(7306), + [anon_sym_TILDE] = ACTIONS(7306), + [anon_sym_STAR] = ACTIONS(7306), + [anon_sym_AMP_AMP] = ACTIONS(7306), + [anon_sym_AMP] = ACTIONS(7304), + [anon_sym_SEMI] = ACTIONS(7306), + [anon_sym___extension__] = ACTIONS(7304), + [anon_sym_virtual] = ACTIONS(7304), + [anon_sym_extern] = ACTIONS(7304), + [anon_sym___attribute__] = ACTIONS(7304), + [anon_sym___attribute] = ACTIONS(7304), + [anon_sym_COLON] = ACTIONS(7304), + [anon_sym_COLON_COLON] = ACTIONS(7306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7306), + [anon_sym___declspec] = ACTIONS(7304), + [anon_sym___based] = ACTIONS(7304), + [anon_sym___cdecl] = ACTIONS(7304), + [anon_sym___clrcall] = ACTIONS(7304), + [anon_sym___stdcall] = ACTIONS(7304), + [anon_sym___fastcall] = ACTIONS(7304), + [anon_sym___thiscall] = ACTIONS(7304), + [anon_sym___vectorcall] = ACTIONS(7304), + [anon_sym_LBRACE] = ACTIONS(7306), + [anon_sym_signed] = ACTIONS(9463), + [anon_sym_unsigned] = ACTIONS(9463), + [anon_sym_long] = ACTIONS(9463), + [anon_sym_short] = ACTIONS(9463), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_static] = ACTIONS(7304), + [anon_sym_EQ] = ACTIONS(7306), + [anon_sym_register] = ACTIONS(7304), + [anon_sym_inline] = ACTIONS(7304), + [anon_sym___inline] = ACTIONS(7304), + [anon_sym___inline__] = ACTIONS(7304), + [anon_sym___forceinline] = ACTIONS(7304), + [anon_sym_thread_local] = ACTIONS(7304), + [anon_sym___thread] = ACTIONS(7304), + [anon_sym_const] = ACTIONS(7304), + [anon_sym_constexpr] = ACTIONS(7304), + [anon_sym_volatile] = ACTIONS(7304), + [anon_sym_restrict] = ACTIONS(7304), + [anon_sym___restrict__] = ACTIONS(7304), + [anon_sym__Atomic] = ACTIONS(7304), + [anon_sym__Noreturn] = ACTIONS(7304), + [anon_sym_noreturn] = ACTIONS(7304), + [anon_sym__Nonnull] = ACTIONS(7304), + [anon_sym_mutable] = ACTIONS(7304), + [anon_sym_constinit] = ACTIONS(7304), + [anon_sym_consteval] = ACTIONS(7304), + [anon_sym_alignas] = ACTIONS(7304), + [anon_sym__Alignas] = ACTIONS(7304), + [anon_sym_asm] = ACTIONS(7304), + [anon_sym___asm__] = ACTIONS(7304), + [anon_sym___asm] = ACTIONS(7304), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7304), + [anon_sym_final] = ACTIONS(7304), + [anon_sym_override] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7304), + [anon_sym_GT2] = ACTIONS(7306), + [anon_sym_operator] = ACTIONS(7304), + [anon_sym_try] = ACTIONS(7304), + [anon_sym_requires] = ACTIONS(7304), + [anon_sym_LBRACK_COLON] = ACTIONS(7306), }, [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_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym__function_attributes_end] = STATE(5056), + [sym__function_postfix] = STATE(6392), + [sym_trailing_return_type] = STATE(5132), + [sym_requires_clause] = STATE(6392), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7474), + [anon_sym_and] = ACTIONS(7474), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7474), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8834), [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), + [anon_sym_final] = ACTIONS(8837), + [anon_sym_override] = ACTIONS(8837), + [anon_sym_requires] = ACTIONS(8840), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [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(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym_RBRACE] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_private] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_friend] = ACTIONS(3708), + [anon_sym_public] = ACTIONS(3708), + [anon_sym_protected] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3656), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_TILDE] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym_virtual] = ACTIONS(7290), + [anon_sym_extern] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7292), + [anon_sym___declspec] = ACTIONS(7290), + [anon_sym___based] = ACTIONS(7290), + [anon_sym___cdecl] = ACTIONS(7290), + [anon_sym___clrcall] = ACTIONS(7290), + [anon_sym___stdcall] = ACTIONS(7290), + [anon_sym___fastcall] = ACTIONS(7290), + [anon_sym___thiscall] = ACTIONS(7290), + [anon_sym___vectorcall] = ACTIONS(7290), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(9487), + [anon_sym_unsigned] = ACTIONS(9487), + [anon_sym_long] = ACTIONS(9487), + [anon_sym_short] = ACTIONS(9487), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_static] = ACTIONS(7290), + [anon_sym_EQ] = ACTIONS(7292), + [anon_sym_register] = ACTIONS(7290), + [anon_sym_inline] = ACTIONS(7290), + [anon_sym___inline] = ACTIONS(7290), + [anon_sym___inline__] = ACTIONS(7290), + [anon_sym___forceinline] = ACTIONS(7290), + [anon_sym_thread_local] = ACTIONS(7290), + [anon_sym___thread] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_asm] = ACTIONS(7290), + [anon_sym___asm__] = ACTIONS(7290), + [anon_sym___asm] = ACTIONS(7290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_GT2] = ACTIONS(7292), + [anon_sym_operator] = ACTIONS(7290), + [anon_sym_try] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), }, [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_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), }, [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_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7261), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7261), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7261), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7259), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7261), + [anon_sym_GT_GT] = ACTIONS(7259), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym___based] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_GT2] = ACTIONS(7261), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), }, [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), + [sym_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym__function_attributes_end] = STATE(5098), + [sym__function_postfix] = STATE(6229), + [sym_trailing_return_type] = STATE(5138), + [sym_requires_clause] = STATE(6229), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [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(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(8870), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8892), + [anon_sym_override] = ACTIONS(8892), + [anon_sym_requires] = ACTIONS(8895), + [anon_sym_DASH_GT_STAR] = ACTIONS(7623), }, [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_template_argument_list] = STATE(3452), + [sym_identifier] = ACTIONS(7543), + [anon_sym_COMMA] = ACTIONS(5689), + [anon_sym_RPAREN] = ACTIONS(5689), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_TILDE] = ACTIONS(5689), + [anon_sym_STAR] = ACTIONS(5689), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(9317), + [anon_sym_SEMI] = ACTIONS(5689), + [anon_sym___extension__] = ACTIONS(7543), + [anon_sym_virtual] = ACTIONS(7543), + [anon_sym_extern] = ACTIONS(7543), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5689), + [anon_sym___declspec] = ACTIONS(7543), + [anon_sym___based] = ACTIONS(7543), + [anon_sym___cdecl] = ACTIONS(7543), + [anon_sym___clrcall] = ACTIONS(7543), + [anon_sym___stdcall] = ACTIONS(7543), + [anon_sym___fastcall] = ACTIONS(7543), + [anon_sym___thiscall] = ACTIONS(7543), + [anon_sym___vectorcall] = ACTIONS(7543), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_static] = ACTIONS(7543), + [anon_sym_register] = ACTIONS(7543), + [anon_sym_inline] = ACTIONS(7543), + [anon_sym___inline] = ACTIONS(7543), + [anon_sym___inline__] = ACTIONS(7543), + [anon_sym___forceinline] = ACTIONS(7543), + [anon_sym_thread_local] = ACTIONS(7543), + [anon_sym___thread] = ACTIONS(7543), + [anon_sym_const] = ACTIONS(7543), + [anon_sym_constexpr] = ACTIONS(7543), + [anon_sym_volatile] = ACTIONS(7543), + [anon_sym_restrict] = ACTIONS(7543), + [anon_sym___restrict__] = ACTIONS(7543), + [anon_sym__Atomic] = ACTIONS(7543), + [anon_sym__Noreturn] = ACTIONS(7543), + [anon_sym_noreturn] = ACTIONS(7543), + [anon_sym__Nonnull] = ACTIONS(7543), + [anon_sym_mutable] = ACTIONS(7543), + [anon_sym_constinit] = ACTIONS(7543), + [anon_sym_consteval] = ACTIONS(7543), + [anon_sym_alignas] = ACTIONS(7543), + [anon_sym__Alignas] = ACTIONS(7543), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_asm] = ACTIONS(7543), + [anon_sym___asm__] = ACTIONS(7543), + [anon_sym___asm] = ACTIONS(7543), + [anon_sym_DASH_GT] = ACTIONS(5689), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7543), + [anon_sym_final] = ACTIONS(7543), + [anon_sym_override] = ACTIONS(7543), + [anon_sym_template] = ACTIONS(7543), + [anon_sym_operator] = ACTIONS(7543), + [anon_sym_try] = ACTIONS(7543), + [anon_sym_noexcept] = ACTIONS(7543), + [anon_sym_throw] = ACTIONS(7543), + [anon_sym_requires] = ACTIONS(7543), + [anon_sym_LBRACK_COLON] = ACTIONS(5689), }, [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_identifier] = ACTIONS(3985), + [aux_sym_preproc_def_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token2] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3985), + [sym_preproc_directive] = ACTIONS(3985), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_TILDE] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym___extension__] = ACTIONS(3985), + [anon_sym_typedef] = ACTIONS(3985), + [anon_sym_virtual] = ACTIONS(3985), + [anon_sym_extern] = ACTIONS(3985), + [anon_sym___attribute__] = ACTIONS(3985), + [anon_sym___attribute] = ACTIONS(3985), + [anon_sym_using] = ACTIONS(3985), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(3985), + [anon_sym___based] = ACTIONS(3985), + [anon_sym_signed] = ACTIONS(3985), + [anon_sym_unsigned] = ACTIONS(3985), + [anon_sym_long] = ACTIONS(3985), + [anon_sym_short] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_static] = ACTIONS(3985), + [anon_sym_register] = ACTIONS(3985), + [anon_sym_inline] = ACTIONS(3985), + [anon_sym___inline] = ACTIONS(3985), + [anon_sym___inline__] = ACTIONS(3985), + [anon_sym___forceinline] = ACTIONS(3985), + [anon_sym_thread_local] = ACTIONS(3985), + [anon_sym___thread] = ACTIONS(3985), + [anon_sym_const] = ACTIONS(3985), + [anon_sym_constexpr] = ACTIONS(3985), + [anon_sym_volatile] = ACTIONS(3985), + [anon_sym_restrict] = ACTIONS(3985), + [anon_sym___restrict__] = ACTIONS(3985), + [anon_sym__Atomic] = ACTIONS(3985), + [anon_sym__Noreturn] = ACTIONS(3985), + [anon_sym_noreturn] = ACTIONS(3985), + [anon_sym__Nonnull] = ACTIONS(3985), + [anon_sym_mutable] = ACTIONS(3985), + [anon_sym_constinit] = ACTIONS(3985), + [anon_sym_consteval] = ACTIONS(3985), + [anon_sym_alignas] = ACTIONS(3985), + [anon_sym__Alignas] = ACTIONS(3985), + [sym_primitive_type] = ACTIONS(3985), + [anon_sym_enum] = ACTIONS(3985), + [anon_sym_class] = ACTIONS(3985), + [anon_sym_struct] = ACTIONS(3985), + [anon_sym_union] = ACTIONS(3985), + [anon_sym_typename] = ACTIONS(3985), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3985), + [anon_sym_decltype] = ACTIONS(3985), + [anon_sym_explicit] = ACTIONS(3985), + [anon_sym_private] = ACTIONS(3985), + [anon_sym_template] = ACTIONS(3985), + [anon_sym_operator] = ACTIONS(3985), + [anon_sym_friend] = ACTIONS(3985), + [anon_sym_public] = ACTIONS(3985), + [anon_sym_protected] = ACTIONS(3985), + [anon_sym_static_assert] = ACTIONS(3985), + [anon_sym_LBRACK_COLON] = ACTIONS(3987), }, [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_identifier] = ACTIONS(3997), + [aux_sym_preproc_def_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [sym_preproc_directive] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3999), + [anon_sym_TILDE] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_SEMI] = ACTIONS(3999), + [anon_sym___extension__] = ACTIONS(3997), + [anon_sym_typedef] = ACTIONS(3997), + [anon_sym_virtual] = ACTIONS(3997), + [anon_sym_extern] = ACTIONS(3997), + [anon_sym___attribute__] = ACTIONS(3997), + [anon_sym___attribute] = ACTIONS(3997), + [anon_sym_using] = ACTIONS(3997), + [anon_sym_COLON_COLON] = ACTIONS(3999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3999), + [anon_sym___declspec] = ACTIONS(3997), + [anon_sym___based] = ACTIONS(3997), + [anon_sym_RBRACE] = ACTIONS(3999), + [anon_sym_signed] = ACTIONS(3997), + [anon_sym_unsigned] = ACTIONS(3997), + [anon_sym_long] = ACTIONS(3997), + [anon_sym_short] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_register] = ACTIONS(3997), + [anon_sym_inline] = ACTIONS(3997), + [anon_sym___inline] = ACTIONS(3997), + [anon_sym___inline__] = ACTIONS(3997), + [anon_sym___forceinline] = ACTIONS(3997), + [anon_sym_thread_local] = ACTIONS(3997), + [anon_sym___thread] = ACTIONS(3997), + [anon_sym_const] = ACTIONS(3997), + [anon_sym_constexpr] = ACTIONS(3997), + [anon_sym_volatile] = ACTIONS(3997), + [anon_sym_restrict] = ACTIONS(3997), + [anon_sym___restrict__] = ACTIONS(3997), + [anon_sym__Atomic] = ACTIONS(3997), + [anon_sym__Noreturn] = ACTIONS(3997), + [anon_sym_noreturn] = ACTIONS(3997), + [anon_sym__Nonnull] = ACTIONS(3997), + [anon_sym_mutable] = ACTIONS(3997), + [anon_sym_constinit] = ACTIONS(3997), + [anon_sym_consteval] = ACTIONS(3997), + [anon_sym_alignas] = ACTIONS(3997), + [anon_sym__Alignas] = ACTIONS(3997), + [sym_primitive_type] = ACTIONS(3997), + [anon_sym_enum] = ACTIONS(3997), + [anon_sym_class] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3997), + [anon_sym_union] = ACTIONS(3997), + [anon_sym_typename] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3997), + [anon_sym_decltype] = ACTIONS(3997), + [anon_sym_explicit] = ACTIONS(3997), + [anon_sym_private] = ACTIONS(3997), + [anon_sym_template] = ACTIONS(3997), + [anon_sym_operator] = ACTIONS(3997), + [anon_sym_friend] = ACTIONS(3997), + [anon_sym_public] = ACTIONS(3997), + [anon_sym_protected] = ACTIONS(3997), + [anon_sym_static_assert] = ACTIONS(3997), + [anon_sym_LBRACK_COLON] = ACTIONS(3999), }, [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_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym__function_attributes_end] = STATE(5111), + [sym__function_postfix] = STATE(6224), + [sym_trailing_return_type] = STATE(5139), + [sym_requires_clause] = STATE(6224), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8287), + [anon_sym_and] = ACTIONS(8287), + [anon_sym_bitor] = ACTIONS(8287), + [anon_sym_xor] = ACTIONS(8287), + [anon_sym_bitand] = ACTIONS(8287), + [anon_sym_not_eq] = ACTIONS(8287), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(9489), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9521), + [anon_sym_override] = ACTIONS(9521), + [anon_sym_requires] = ACTIONS(9524), + [anon_sym_DASH_GT_STAR] = ACTIONS(8287), }, [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), + [sym_identifier] = ACTIONS(8958), + [aux_sym_preproc_def_token1] = ACTIONS(8958), + [aux_sym_preproc_if_token1] = ACTIONS(8958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8958), + [sym_preproc_directive] = ACTIONS(8958), + [anon_sym_LPAREN2] = ACTIONS(8960), + [anon_sym_TILDE] = ACTIONS(8960), + [anon_sym_STAR] = ACTIONS(8960), + [anon_sym_AMP_AMP] = ACTIONS(8960), + [anon_sym_AMP] = ACTIONS(8958), + [anon_sym_SEMI] = ACTIONS(8960), + [anon_sym___extension__] = ACTIONS(8958), + [anon_sym_typedef] = ACTIONS(8958), + [anon_sym_virtual] = ACTIONS(8958), + [anon_sym_extern] = ACTIONS(8958), + [anon_sym___attribute__] = ACTIONS(8958), + [anon_sym___attribute] = ACTIONS(8958), + [anon_sym_using] = ACTIONS(8958), + [anon_sym_COLON_COLON] = ACTIONS(8960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8960), + [anon_sym___declspec] = ACTIONS(8958), + [anon_sym___based] = ACTIONS(8958), + [anon_sym_RBRACE] = ACTIONS(8960), + [anon_sym_signed] = ACTIONS(8958), + [anon_sym_unsigned] = ACTIONS(8958), + [anon_sym_long] = ACTIONS(8958), + [anon_sym_short] = ACTIONS(8958), + [anon_sym_LBRACK] = ACTIONS(8958), + [anon_sym_static] = ACTIONS(8958), + [anon_sym_register] = ACTIONS(8958), + [anon_sym_inline] = ACTIONS(8958), + [anon_sym___inline] = ACTIONS(8958), + [anon_sym___inline__] = ACTIONS(8958), + [anon_sym___forceinline] = ACTIONS(8958), + [anon_sym_thread_local] = ACTIONS(8958), + [anon_sym___thread] = ACTIONS(8958), + [anon_sym_const] = ACTIONS(8958), + [anon_sym_constexpr] = ACTIONS(8958), + [anon_sym_volatile] = ACTIONS(8958), + [anon_sym_restrict] = ACTIONS(8958), + [anon_sym___restrict__] = ACTIONS(8958), + [anon_sym__Atomic] = ACTIONS(8958), + [anon_sym__Noreturn] = ACTIONS(8958), + [anon_sym_noreturn] = ACTIONS(8958), + [anon_sym__Nonnull] = ACTIONS(8958), + [anon_sym_mutable] = ACTIONS(8958), + [anon_sym_constinit] = ACTIONS(8958), + [anon_sym_consteval] = ACTIONS(8958), + [anon_sym_alignas] = ACTIONS(8958), + [anon_sym__Alignas] = ACTIONS(8958), + [sym_primitive_type] = ACTIONS(8958), + [anon_sym_enum] = ACTIONS(8958), + [anon_sym_class] = ACTIONS(8958), + [anon_sym_struct] = ACTIONS(8958), + [anon_sym_union] = ACTIONS(8958), + [anon_sym_typename] = ACTIONS(8958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8958), + [anon_sym_decltype] = ACTIONS(8958), + [anon_sym_explicit] = ACTIONS(8958), + [anon_sym_private] = ACTIONS(8958), + [anon_sym_template] = ACTIONS(8958), + [anon_sym_operator] = ACTIONS(8958), + [anon_sym_friend] = ACTIONS(8958), + [anon_sym_public] = ACTIONS(8958), + [anon_sym_protected] = ACTIONS(8958), + [anon_sym_static_assert] = ACTIONS(8958), + [anon_sym_LBRACK_COLON] = ACTIONS(8960), }, [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(4021), + [aux_sym_preproc_def_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token1] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4021), + [sym_preproc_directive] = ACTIONS(4021), + [anon_sym_LPAREN2] = ACTIONS(4023), + [anon_sym_TILDE] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_AMP_AMP] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_SEMI] = ACTIONS(4023), + [anon_sym___extension__] = ACTIONS(4021), + [anon_sym_typedef] = ACTIONS(4021), + [anon_sym_virtual] = ACTIONS(4021), + [anon_sym_extern] = ACTIONS(4021), + [anon_sym___attribute__] = ACTIONS(4021), + [anon_sym___attribute] = ACTIONS(4021), + [anon_sym_using] = ACTIONS(4021), + [anon_sym_COLON_COLON] = ACTIONS(4023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4023), + [anon_sym___declspec] = ACTIONS(4021), + [anon_sym___based] = ACTIONS(4021), + [anon_sym_RBRACE] = ACTIONS(4023), + [anon_sym_signed] = ACTIONS(4021), + [anon_sym_unsigned] = ACTIONS(4021), + [anon_sym_long] = ACTIONS(4021), + [anon_sym_short] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_register] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym___inline] = ACTIONS(4021), + [anon_sym___inline__] = ACTIONS(4021), + [anon_sym___forceinline] = ACTIONS(4021), + [anon_sym_thread_local] = ACTIONS(4021), + [anon_sym___thread] = ACTIONS(4021), + [anon_sym_const] = ACTIONS(4021), + [anon_sym_constexpr] = ACTIONS(4021), + [anon_sym_volatile] = ACTIONS(4021), + [anon_sym_restrict] = ACTIONS(4021), + [anon_sym___restrict__] = ACTIONS(4021), + [anon_sym__Atomic] = ACTIONS(4021), + [anon_sym__Noreturn] = ACTIONS(4021), + [anon_sym_noreturn] = ACTIONS(4021), + [anon_sym__Nonnull] = ACTIONS(4021), + [anon_sym_mutable] = ACTIONS(4021), + [anon_sym_constinit] = ACTIONS(4021), + [anon_sym_consteval] = ACTIONS(4021), + [anon_sym_alignas] = ACTIONS(4021), + [anon_sym__Alignas] = ACTIONS(4021), + [sym_primitive_type] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_struct] = ACTIONS(4021), + [anon_sym_union] = ACTIONS(4021), + [anon_sym_typename] = ACTIONS(4021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4021), + [anon_sym_decltype] = ACTIONS(4021), + [anon_sym_explicit] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_template] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_friend] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_static_assert] = ACTIONS(4021), + [anon_sym_LBRACK_COLON] = ACTIONS(4023), }, [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(4331), + [aux_sym_preproc_def_token1] = ACTIONS(4331), + [aux_sym_preproc_if_token1] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4331), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4331), + [sym_preproc_directive] = ACTIONS(4331), + [anon_sym_LPAREN2] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(4333), + [anon_sym_AMP_AMP] = ACTIONS(4333), + [anon_sym_AMP] = ACTIONS(4331), + [anon_sym_SEMI] = ACTIONS(4333), + [anon_sym___extension__] = ACTIONS(4331), + [anon_sym_typedef] = ACTIONS(4331), + [anon_sym_virtual] = ACTIONS(4331), + [anon_sym_extern] = ACTIONS(4331), + [anon_sym___attribute__] = ACTIONS(4331), + [anon_sym___attribute] = ACTIONS(4331), + [anon_sym_using] = ACTIONS(4331), + [anon_sym_COLON_COLON] = ACTIONS(4333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4333), + [anon_sym___declspec] = ACTIONS(4331), + [anon_sym___based] = ACTIONS(4331), + [anon_sym_RBRACE] = ACTIONS(4333), + [anon_sym_signed] = ACTIONS(4331), + [anon_sym_unsigned] = ACTIONS(4331), + [anon_sym_long] = ACTIONS(4331), + [anon_sym_short] = ACTIONS(4331), + [anon_sym_LBRACK] = ACTIONS(4331), + [anon_sym_static] = ACTIONS(4331), + [anon_sym_register] = ACTIONS(4331), + [anon_sym_inline] = ACTIONS(4331), + [anon_sym___inline] = ACTIONS(4331), + [anon_sym___inline__] = ACTIONS(4331), + [anon_sym___forceinline] = ACTIONS(4331), + [anon_sym_thread_local] = ACTIONS(4331), + [anon_sym___thread] = ACTIONS(4331), + [anon_sym_const] = ACTIONS(4331), + [anon_sym_constexpr] = ACTIONS(4331), + [anon_sym_volatile] = ACTIONS(4331), + [anon_sym_restrict] = ACTIONS(4331), + [anon_sym___restrict__] = ACTIONS(4331), + [anon_sym__Atomic] = ACTIONS(4331), + [anon_sym__Noreturn] = ACTIONS(4331), + [anon_sym_noreturn] = ACTIONS(4331), + [anon_sym__Nonnull] = ACTIONS(4331), + [anon_sym_mutable] = ACTIONS(4331), + [anon_sym_constinit] = ACTIONS(4331), + [anon_sym_consteval] = ACTIONS(4331), + [anon_sym_alignas] = ACTIONS(4331), + [anon_sym__Alignas] = ACTIONS(4331), + [sym_primitive_type] = ACTIONS(4331), + [anon_sym_enum] = ACTIONS(4331), + [anon_sym_class] = ACTIONS(4331), + [anon_sym_struct] = ACTIONS(4331), + [anon_sym_union] = ACTIONS(4331), + [anon_sym_typename] = ACTIONS(4331), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4331), + [anon_sym_decltype] = ACTIONS(4331), + [anon_sym_explicit] = ACTIONS(4331), + [anon_sym_private] = ACTIONS(4331), + [anon_sym_template] = ACTIONS(4331), + [anon_sym_operator] = ACTIONS(4331), + [anon_sym_friend] = ACTIONS(4331), + [anon_sym_public] = ACTIONS(4331), + [anon_sym_protected] = ACTIONS(4331), + [anon_sym_static_assert] = ACTIONS(4331), + [anon_sym_LBRACK_COLON] = ACTIONS(4333), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3750), + [sym_identifier] = ACTIONS(7316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7318), + [anon_sym_RPAREN] = ACTIONS(7318), + [anon_sym_LPAREN2] = ACTIONS(7318), + [anon_sym_TILDE] = ACTIONS(7318), + [anon_sym_STAR] = ACTIONS(7318), + [anon_sym_AMP_AMP] = ACTIONS(7318), + [anon_sym_AMP] = ACTIONS(7316), + [anon_sym_SEMI] = ACTIONS(7318), + [anon_sym___extension__] = ACTIONS(7316), + [anon_sym_virtual] = ACTIONS(7316), + [anon_sym_extern] = ACTIONS(7316), + [anon_sym___attribute__] = ACTIONS(7316), + [anon_sym___attribute] = ACTIONS(7316), + [anon_sym_COLON] = ACTIONS(7316), + [anon_sym_COLON_COLON] = ACTIONS(7318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7318), + [anon_sym___declspec] = ACTIONS(7316), + [anon_sym___based] = ACTIONS(7316), + [anon_sym___cdecl] = ACTIONS(7316), + [anon_sym___clrcall] = ACTIONS(7316), + [anon_sym___stdcall] = ACTIONS(7316), + [anon_sym___fastcall] = ACTIONS(7316), + [anon_sym___thiscall] = ACTIONS(7316), + [anon_sym___vectorcall] = ACTIONS(7316), + [anon_sym_LBRACE] = ACTIONS(7318), + [anon_sym_signed] = ACTIONS(9527), + [anon_sym_unsigned] = ACTIONS(9527), + [anon_sym_long] = ACTIONS(9527), + [anon_sym_short] = ACTIONS(9527), + [anon_sym_LBRACK] = ACTIONS(7316), + [anon_sym_static] = ACTIONS(7316), + [anon_sym_EQ] = ACTIONS(7318), + [anon_sym_register] = ACTIONS(7316), + [anon_sym_inline] = ACTIONS(7316), + [anon_sym___inline] = ACTIONS(7316), + [anon_sym___inline__] = ACTIONS(7316), + [anon_sym___forceinline] = ACTIONS(7316), + [anon_sym_thread_local] = ACTIONS(7316), + [anon_sym___thread] = ACTIONS(7316), + [anon_sym_const] = ACTIONS(7316), + [anon_sym_constexpr] = ACTIONS(7316), + [anon_sym_volatile] = ACTIONS(7316), + [anon_sym_restrict] = ACTIONS(7316), + [anon_sym___restrict__] = ACTIONS(7316), + [anon_sym__Atomic] = ACTIONS(7316), + [anon_sym__Noreturn] = ACTIONS(7316), + [anon_sym_noreturn] = ACTIONS(7316), + [anon_sym__Nonnull] = ACTIONS(7316), + [anon_sym_mutable] = ACTIONS(7316), + [anon_sym_constinit] = ACTIONS(7316), + [anon_sym_consteval] = ACTIONS(7316), + [anon_sym_alignas] = ACTIONS(7316), + [anon_sym__Alignas] = ACTIONS(7316), + [anon_sym_asm] = ACTIONS(7316), + [anon_sym___asm__] = ACTIONS(7316), + [anon_sym___asm] = ACTIONS(7316), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7316), + [anon_sym_final] = ACTIONS(7316), + [anon_sym_override] = ACTIONS(7316), + [anon_sym_template] = ACTIONS(7316), + [anon_sym_GT2] = ACTIONS(7318), + [anon_sym_operator] = ACTIONS(7316), + [anon_sym_try] = ACTIONS(7316), + [anon_sym_requires] = ACTIONS(7316), + [anon_sym_LBRACK_COLON] = ACTIONS(7318), }, [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_identifier] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4335), + [anon_sym_typedef] = ACTIONS(4335), + [anon_sym_virtual] = ACTIONS(4335), + [anon_sym_extern] = ACTIONS(4335), + [anon_sym___attribute__] = ACTIONS(4335), + [anon_sym___attribute] = ACTIONS(4335), + [anon_sym_using] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4337), + [anon_sym___declspec] = ACTIONS(4335), + [anon_sym___based] = ACTIONS(4335), + [anon_sym_RBRACE] = ACTIONS(4337), + [anon_sym_signed] = ACTIONS(4335), + [anon_sym_unsigned] = ACTIONS(4335), + [anon_sym_long] = ACTIONS(4335), + [anon_sym_short] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4335), + [anon_sym_static] = ACTIONS(4335), + [anon_sym_register] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym___inline] = ACTIONS(4335), + [anon_sym___inline__] = ACTIONS(4335), + [anon_sym___forceinline] = ACTIONS(4335), + [anon_sym_thread_local] = ACTIONS(4335), + [anon_sym___thread] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(4335), + [anon_sym_constexpr] = ACTIONS(4335), + [anon_sym_volatile] = ACTIONS(4335), + [anon_sym_restrict] = ACTIONS(4335), + [anon_sym___restrict__] = ACTIONS(4335), + [anon_sym__Atomic] = ACTIONS(4335), + [anon_sym__Noreturn] = ACTIONS(4335), + [anon_sym_noreturn] = ACTIONS(4335), + [anon_sym__Nonnull] = ACTIONS(4335), + [anon_sym_mutable] = ACTIONS(4335), + [anon_sym_constinit] = ACTIONS(4335), + [anon_sym_consteval] = ACTIONS(4335), + [anon_sym_alignas] = ACTIONS(4335), + [anon_sym__Alignas] = ACTIONS(4335), + [sym_primitive_type] = ACTIONS(4335), + [anon_sym_enum] = ACTIONS(4335), + [anon_sym_class] = ACTIONS(4335), + [anon_sym_struct] = ACTIONS(4335), + [anon_sym_union] = ACTIONS(4335), + [anon_sym_typename] = ACTIONS(4335), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4335), + [anon_sym_decltype] = ACTIONS(4335), + [anon_sym_explicit] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_template] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_friend] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_static_assert] = ACTIONS(4335), + [anon_sym_LBRACK_COLON] = ACTIONS(4337), }, [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_identifier] = ACTIONS(4339), + [aux_sym_preproc_def_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token1] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4339), + [sym_preproc_directive] = ACTIONS(4339), + [anon_sym_LPAREN2] = ACTIONS(4341), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym___extension__] = ACTIONS(4339), + [anon_sym_typedef] = ACTIONS(4339), + [anon_sym_virtual] = ACTIONS(4339), + [anon_sym_extern] = ACTIONS(4339), + [anon_sym___attribute__] = ACTIONS(4339), + [anon_sym___attribute] = ACTIONS(4339), + [anon_sym_using] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4341), + [anon_sym___declspec] = ACTIONS(4339), + [anon_sym___based] = ACTIONS(4339), + [anon_sym_RBRACE] = ACTIONS(4341), + [anon_sym_signed] = ACTIONS(4339), + [anon_sym_unsigned] = ACTIONS(4339), + [anon_sym_long] = ACTIONS(4339), + [anon_sym_short] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_static] = ACTIONS(4339), + [anon_sym_register] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym___inline] = ACTIONS(4339), + [anon_sym___inline__] = ACTIONS(4339), + [anon_sym___forceinline] = ACTIONS(4339), + [anon_sym_thread_local] = ACTIONS(4339), + [anon_sym___thread] = ACTIONS(4339), + [anon_sym_const] = ACTIONS(4339), + [anon_sym_constexpr] = ACTIONS(4339), + [anon_sym_volatile] = ACTIONS(4339), + [anon_sym_restrict] = ACTIONS(4339), + [anon_sym___restrict__] = ACTIONS(4339), + [anon_sym__Atomic] = ACTIONS(4339), + [anon_sym__Noreturn] = ACTIONS(4339), + [anon_sym_noreturn] = ACTIONS(4339), + [anon_sym__Nonnull] = ACTIONS(4339), + [anon_sym_mutable] = ACTIONS(4339), + [anon_sym_constinit] = ACTIONS(4339), + [anon_sym_consteval] = ACTIONS(4339), + [anon_sym_alignas] = ACTIONS(4339), + [anon_sym__Alignas] = ACTIONS(4339), + [sym_primitive_type] = ACTIONS(4339), + [anon_sym_enum] = ACTIONS(4339), + [anon_sym_class] = ACTIONS(4339), + [anon_sym_struct] = ACTIONS(4339), + [anon_sym_union] = ACTIONS(4339), + [anon_sym_typename] = ACTIONS(4339), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4339), + [anon_sym_decltype] = ACTIONS(4339), + [anon_sym_explicit] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_template] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_friend] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_static_assert] = ACTIONS(4339), + [anon_sym_LBRACK_COLON] = ACTIONS(4341), }, [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_identifier] = ACTIONS(3989), + [aux_sym_preproc_def_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token1] = ACTIONS(3989), + [aux_sym_preproc_if_token2] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3989), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3989), + [sym_preproc_directive] = ACTIONS(3989), + [anon_sym_LPAREN2] = ACTIONS(3991), + [anon_sym_TILDE] = ACTIONS(3991), + [anon_sym_STAR] = ACTIONS(3991), + [anon_sym_AMP_AMP] = ACTIONS(3991), + [anon_sym_AMP] = ACTIONS(3989), + [anon_sym_SEMI] = ACTIONS(3991), + [anon_sym___extension__] = ACTIONS(3989), + [anon_sym_typedef] = ACTIONS(3989), + [anon_sym_virtual] = ACTIONS(3989), + [anon_sym_extern] = ACTIONS(3989), + [anon_sym___attribute__] = ACTIONS(3989), + [anon_sym___attribute] = ACTIONS(3989), + [anon_sym_using] = ACTIONS(3989), + [anon_sym_COLON_COLON] = ACTIONS(3991), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3991), + [anon_sym___declspec] = ACTIONS(3989), + [anon_sym___based] = ACTIONS(3989), + [anon_sym_signed] = ACTIONS(3989), + [anon_sym_unsigned] = ACTIONS(3989), + [anon_sym_long] = ACTIONS(3989), + [anon_sym_short] = ACTIONS(3989), + [anon_sym_LBRACK] = ACTIONS(3989), + [anon_sym_static] = ACTIONS(3989), + [anon_sym_register] = ACTIONS(3989), + [anon_sym_inline] = ACTIONS(3989), + [anon_sym___inline] = ACTIONS(3989), + [anon_sym___inline__] = ACTIONS(3989), + [anon_sym___forceinline] = ACTIONS(3989), + [anon_sym_thread_local] = ACTIONS(3989), + [anon_sym___thread] = ACTIONS(3989), + [anon_sym_const] = ACTIONS(3989), + [anon_sym_constexpr] = ACTIONS(3989), + [anon_sym_volatile] = ACTIONS(3989), + [anon_sym_restrict] = ACTIONS(3989), + [anon_sym___restrict__] = ACTIONS(3989), + [anon_sym__Atomic] = ACTIONS(3989), + [anon_sym__Noreturn] = ACTIONS(3989), + [anon_sym_noreturn] = ACTIONS(3989), + [anon_sym__Nonnull] = ACTIONS(3989), + [anon_sym_mutable] = ACTIONS(3989), + [anon_sym_constinit] = ACTIONS(3989), + [anon_sym_consteval] = ACTIONS(3989), + [anon_sym_alignas] = ACTIONS(3989), + [anon_sym__Alignas] = ACTIONS(3989), + [sym_primitive_type] = ACTIONS(3989), + [anon_sym_enum] = ACTIONS(3989), + [anon_sym_class] = ACTIONS(3989), + [anon_sym_struct] = ACTIONS(3989), + [anon_sym_union] = ACTIONS(3989), + [anon_sym_typename] = ACTIONS(3989), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3989), + [anon_sym_decltype] = ACTIONS(3989), + [anon_sym_explicit] = ACTIONS(3989), + [anon_sym_private] = ACTIONS(3989), + [anon_sym_template] = ACTIONS(3989), + [anon_sym_operator] = ACTIONS(3989), + [anon_sym_friend] = ACTIONS(3989), + [anon_sym_public] = ACTIONS(3989), + [anon_sym_protected] = ACTIONS(3989), + [anon_sym_static_assert] = ACTIONS(3989), + [anon_sym_LBRACK_COLON] = ACTIONS(3991), }, [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), + [sym_identifier] = ACTIONS(9010), + [aux_sym_preproc_def_token1] = ACTIONS(9010), + [aux_sym_preproc_if_token1] = ACTIONS(9010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9010), + [sym_preproc_directive] = ACTIONS(9010), + [anon_sym_LPAREN2] = ACTIONS(9012), + [anon_sym_TILDE] = ACTIONS(9012), + [anon_sym_STAR] = ACTIONS(9012), + [anon_sym_AMP_AMP] = ACTIONS(9012), + [anon_sym_AMP] = ACTIONS(9010), + [anon_sym_SEMI] = ACTIONS(9012), + [anon_sym___extension__] = ACTIONS(9010), + [anon_sym_typedef] = ACTIONS(9010), + [anon_sym_virtual] = ACTIONS(9010), + [anon_sym_extern] = ACTIONS(9010), + [anon_sym___attribute__] = ACTIONS(9010), + [anon_sym___attribute] = ACTIONS(9010), + [anon_sym_using] = ACTIONS(9010), + [anon_sym_COLON_COLON] = ACTIONS(9012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9012), + [anon_sym___declspec] = ACTIONS(9010), + [anon_sym___based] = ACTIONS(9010), + [anon_sym_RBRACE] = ACTIONS(9012), + [anon_sym_signed] = ACTIONS(9010), + [anon_sym_unsigned] = ACTIONS(9010), + [anon_sym_long] = ACTIONS(9010), + [anon_sym_short] = ACTIONS(9010), + [anon_sym_LBRACK] = ACTIONS(9010), + [anon_sym_static] = ACTIONS(9010), + [anon_sym_register] = ACTIONS(9010), + [anon_sym_inline] = ACTIONS(9010), + [anon_sym___inline] = ACTIONS(9010), + [anon_sym___inline__] = ACTIONS(9010), + [anon_sym___forceinline] = ACTIONS(9010), + [anon_sym_thread_local] = ACTIONS(9010), + [anon_sym___thread] = ACTIONS(9010), + [anon_sym_const] = ACTIONS(9010), + [anon_sym_constexpr] = ACTIONS(9010), + [anon_sym_volatile] = ACTIONS(9010), + [anon_sym_restrict] = ACTIONS(9010), + [anon_sym___restrict__] = ACTIONS(9010), + [anon_sym__Atomic] = ACTIONS(9010), + [anon_sym__Noreturn] = ACTIONS(9010), + [anon_sym_noreturn] = ACTIONS(9010), + [anon_sym__Nonnull] = ACTIONS(9010), + [anon_sym_mutable] = ACTIONS(9010), + [anon_sym_constinit] = ACTIONS(9010), + [anon_sym_consteval] = ACTIONS(9010), + [anon_sym_alignas] = ACTIONS(9010), + [anon_sym__Alignas] = ACTIONS(9010), + [sym_primitive_type] = ACTIONS(9010), + [anon_sym_enum] = ACTIONS(9010), + [anon_sym_class] = ACTIONS(9010), + [anon_sym_struct] = ACTIONS(9010), + [anon_sym_union] = ACTIONS(9010), + [anon_sym_typename] = ACTIONS(9010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9010), + [anon_sym_decltype] = ACTIONS(9010), + [anon_sym_explicit] = ACTIONS(9010), + [anon_sym_private] = ACTIONS(9010), + [anon_sym_template] = ACTIONS(9010), + [anon_sym_operator] = ACTIONS(9010), + [anon_sym_friend] = ACTIONS(9010), + [anon_sym_public] = ACTIONS(9010), + [anon_sym_protected] = ACTIONS(9010), + [anon_sym_static_assert] = ACTIONS(9010), + [anon_sym_LBRACK_COLON] = ACTIONS(9012), }, [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), + [sym_identifier] = ACTIONS(4343), + [aux_sym_preproc_def_token1] = ACTIONS(4343), + [aux_sym_preproc_if_token1] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4343), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4343), + [sym_preproc_directive] = ACTIONS(4343), + [anon_sym_LPAREN2] = ACTIONS(4345), + [anon_sym_TILDE] = ACTIONS(4345), + [anon_sym_STAR] = ACTIONS(4345), + [anon_sym_AMP_AMP] = ACTIONS(4345), + [anon_sym_AMP] = ACTIONS(4343), + [anon_sym_SEMI] = ACTIONS(4345), + [anon_sym___extension__] = ACTIONS(4343), + [anon_sym_typedef] = ACTIONS(4343), + [anon_sym_virtual] = ACTIONS(4343), + [anon_sym_extern] = ACTIONS(4343), + [anon_sym___attribute__] = ACTIONS(4343), + [anon_sym___attribute] = ACTIONS(4343), + [anon_sym_using] = ACTIONS(4343), + [anon_sym_COLON_COLON] = ACTIONS(4345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4345), + [anon_sym___declspec] = ACTIONS(4343), + [anon_sym___based] = ACTIONS(4343), + [anon_sym_RBRACE] = ACTIONS(4345), + [anon_sym_signed] = ACTIONS(4343), + [anon_sym_unsigned] = ACTIONS(4343), + [anon_sym_long] = ACTIONS(4343), + [anon_sym_short] = ACTIONS(4343), + [anon_sym_LBRACK] = ACTIONS(4343), + [anon_sym_static] = ACTIONS(4343), + [anon_sym_register] = ACTIONS(4343), + [anon_sym_inline] = ACTIONS(4343), + [anon_sym___inline] = ACTIONS(4343), + [anon_sym___inline__] = ACTIONS(4343), + [anon_sym___forceinline] = ACTIONS(4343), + [anon_sym_thread_local] = ACTIONS(4343), + [anon_sym___thread] = ACTIONS(4343), + [anon_sym_const] = ACTIONS(4343), + [anon_sym_constexpr] = ACTIONS(4343), + [anon_sym_volatile] = ACTIONS(4343), + [anon_sym_restrict] = ACTIONS(4343), + [anon_sym___restrict__] = ACTIONS(4343), + [anon_sym__Atomic] = ACTIONS(4343), + [anon_sym__Noreturn] = ACTIONS(4343), + [anon_sym_noreturn] = ACTIONS(4343), + [anon_sym__Nonnull] = ACTIONS(4343), + [anon_sym_mutable] = ACTIONS(4343), + [anon_sym_constinit] = ACTIONS(4343), + [anon_sym_consteval] = ACTIONS(4343), + [anon_sym_alignas] = ACTIONS(4343), + [anon_sym__Alignas] = ACTIONS(4343), + [sym_primitive_type] = ACTIONS(4343), + [anon_sym_enum] = ACTIONS(4343), + [anon_sym_class] = ACTIONS(4343), + [anon_sym_struct] = ACTIONS(4343), + [anon_sym_union] = ACTIONS(4343), + [anon_sym_typename] = ACTIONS(4343), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4343), + [anon_sym_decltype] = ACTIONS(4343), + [anon_sym_explicit] = ACTIONS(4343), + [anon_sym_private] = ACTIONS(4343), + [anon_sym_template] = ACTIONS(4343), + [anon_sym_operator] = ACTIONS(4343), + [anon_sym_friend] = ACTIONS(4343), + [anon_sym_public] = ACTIONS(4343), + [anon_sym_protected] = ACTIONS(4343), + [anon_sym_static_assert] = ACTIONS(4343), + [anon_sym_LBRACK_COLON] = ACTIONS(4345), }, [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), + [sym_identifier] = ACTIONS(8990), + [aux_sym_preproc_def_token1] = ACTIONS(8990), + [aux_sym_preproc_if_token1] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8990), + [sym_preproc_directive] = ACTIONS(8990), + [anon_sym_LPAREN2] = ACTIONS(8992), + [anon_sym_TILDE] = ACTIONS(8992), + [anon_sym_STAR] = ACTIONS(8992), + [anon_sym_AMP_AMP] = ACTIONS(8992), + [anon_sym_AMP] = ACTIONS(8990), + [anon_sym_SEMI] = ACTIONS(8992), + [anon_sym___extension__] = ACTIONS(8990), + [anon_sym_typedef] = ACTIONS(8990), + [anon_sym_virtual] = ACTIONS(8990), + [anon_sym_extern] = ACTIONS(8990), + [anon_sym___attribute__] = ACTIONS(8990), + [anon_sym___attribute] = ACTIONS(8990), + [anon_sym_using] = ACTIONS(8990), + [anon_sym_COLON_COLON] = ACTIONS(8992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8992), + [anon_sym___declspec] = ACTIONS(8990), + [anon_sym___based] = ACTIONS(8990), + [anon_sym_RBRACE] = ACTIONS(8992), + [anon_sym_signed] = ACTIONS(8990), + [anon_sym_unsigned] = ACTIONS(8990), + [anon_sym_long] = ACTIONS(8990), + [anon_sym_short] = ACTIONS(8990), + [anon_sym_LBRACK] = ACTIONS(8990), + [anon_sym_static] = ACTIONS(8990), + [anon_sym_register] = ACTIONS(8990), + [anon_sym_inline] = ACTIONS(8990), + [anon_sym___inline] = ACTIONS(8990), + [anon_sym___inline__] = ACTIONS(8990), + [anon_sym___forceinline] = ACTIONS(8990), + [anon_sym_thread_local] = ACTIONS(8990), + [anon_sym___thread] = ACTIONS(8990), + [anon_sym_const] = ACTIONS(8990), + [anon_sym_constexpr] = ACTIONS(8990), + [anon_sym_volatile] = ACTIONS(8990), + [anon_sym_restrict] = ACTIONS(8990), + [anon_sym___restrict__] = ACTIONS(8990), + [anon_sym__Atomic] = ACTIONS(8990), + [anon_sym__Noreturn] = ACTIONS(8990), + [anon_sym_noreturn] = ACTIONS(8990), + [anon_sym__Nonnull] = ACTIONS(8990), + [anon_sym_mutable] = ACTIONS(8990), + [anon_sym_constinit] = ACTIONS(8990), + [anon_sym_consteval] = ACTIONS(8990), + [anon_sym_alignas] = ACTIONS(8990), + [anon_sym__Alignas] = ACTIONS(8990), + [sym_primitive_type] = ACTIONS(8990), + [anon_sym_enum] = ACTIONS(8990), + [anon_sym_class] = ACTIONS(8990), + [anon_sym_struct] = ACTIONS(8990), + [anon_sym_union] = ACTIONS(8990), + [anon_sym_typename] = ACTIONS(8990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8990), + [anon_sym_decltype] = ACTIONS(8990), + [anon_sym_explicit] = ACTIONS(8990), + [anon_sym_private] = ACTIONS(8990), + [anon_sym_template] = ACTIONS(8990), + [anon_sym_operator] = ACTIONS(8990), + [anon_sym_friend] = ACTIONS(8990), + [anon_sym_public] = ACTIONS(8990), + [anon_sym_protected] = ACTIONS(8990), + [anon_sym_static_assert] = ACTIONS(8990), + [anon_sym_LBRACK_COLON] = ACTIONS(8992), }, [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), + [sym_identifier] = ACTIONS(4347), + [aux_sym_preproc_def_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token1] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), + [sym_preproc_directive] = ACTIONS(4347), + [anon_sym_LPAREN2] = ACTIONS(4349), + [anon_sym_TILDE] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym___extension__] = ACTIONS(4347), + [anon_sym_typedef] = ACTIONS(4347), + [anon_sym_virtual] = ACTIONS(4347), + [anon_sym_extern] = ACTIONS(4347), + [anon_sym___attribute__] = ACTIONS(4347), + [anon_sym___attribute] = ACTIONS(4347), + [anon_sym_using] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4349), + [anon_sym___declspec] = ACTIONS(4347), + [anon_sym___based] = ACTIONS(4347), + [anon_sym_RBRACE] = ACTIONS(4349), + [anon_sym_signed] = ACTIONS(4347), + [anon_sym_unsigned] = ACTIONS(4347), + [anon_sym_long] = ACTIONS(4347), + [anon_sym_short] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_static] = ACTIONS(4347), + [anon_sym_register] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym___inline] = ACTIONS(4347), + [anon_sym___inline__] = ACTIONS(4347), + [anon_sym___forceinline] = ACTIONS(4347), + [anon_sym_thread_local] = ACTIONS(4347), + [anon_sym___thread] = ACTIONS(4347), + [anon_sym_const] = ACTIONS(4347), + [anon_sym_constexpr] = ACTIONS(4347), + [anon_sym_volatile] = ACTIONS(4347), + [anon_sym_restrict] = ACTIONS(4347), + [anon_sym___restrict__] = ACTIONS(4347), + [anon_sym__Atomic] = ACTIONS(4347), + [anon_sym__Noreturn] = ACTIONS(4347), + [anon_sym_noreturn] = ACTIONS(4347), + [anon_sym__Nonnull] = ACTIONS(4347), + [anon_sym_mutable] = ACTIONS(4347), + [anon_sym_constinit] = ACTIONS(4347), + [anon_sym_consteval] = ACTIONS(4347), + [anon_sym_alignas] = ACTIONS(4347), + [anon_sym__Alignas] = ACTIONS(4347), + [sym_primitive_type] = ACTIONS(4347), + [anon_sym_enum] = ACTIONS(4347), + [anon_sym_class] = ACTIONS(4347), + [anon_sym_struct] = ACTIONS(4347), + [anon_sym_union] = ACTIONS(4347), + [anon_sym_typename] = ACTIONS(4347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4347), + [anon_sym_decltype] = ACTIONS(4347), + [anon_sym_explicit] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_template] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_friend] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_static_assert] = ACTIONS(4347), + [anon_sym_LBRACK_COLON] = ACTIONS(4349), }, [STATE(3678)] = { - [sym_argument_list] = STATE(3898), - [sym_initializer_list] = STATE(3898), - [sym_identifier] = ACTIONS(9431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9433), - [anon_sym_COMMA] = ACTIONS(9433), - [anon_sym_RPAREN] = ACTIONS(9433), - [aux_sym_preproc_if_token2] = ACTIONS(9433), - [aux_sym_preproc_else_token1] = ACTIONS(9433), - [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_DASH] = ACTIONS(9431), - [anon_sym_PLUS] = ACTIONS(9431), - [anon_sym_STAR] = ACTIONS(9431), - [anon_sym_SLASH] = ACTIONS(9431), - [anon_sym_PERCENT] = ACTIONS(9431), - [anon_sym_PIPE_PIPE] = ACTIONS(9433), - [anon_sym_AMP_AMP] = ACTIONS(9433), - [anon_sym_PIPE] = ACTIONS(9431), - [anon_sym_CARET] = ACTIONS(9431), - [anon_sym_AMP] = ACTIONS(9431), - [anon_sym_EQ_EQ] = ACTIONS(9433), - [anon_sym_BANG_EQ] = ACTIONS(9433), - [anon_sym_GT] = ACTIONS(9431), - [anon_sym_GT_EQ] = ACTIONS(9433), - [anon_sym_LT_EQ] = ACTIONS(9431), - [anon_sym_LT] = ACTIONS(9431), - [anon_sym_LT_LT] = ACTIONS(9431), - [anon_sym_GT_GT] = ACTIONS(9431), - [anon_sym_SEMI] = ACTIONS(9433), - [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_RBRACE] = ACTIONS(9433), - [anon_sym_LBRACK] = ACTIONS(9433), - [anon_sym_EQ] = ACTIONS(9431), - [anon_sym_QMARK] = ACTIONS(9433), - [anon_sym_STAR_EQ] = ACTIONS(9433), - [anon_sym_SLASH_EQ] = ACTIONS(9433), - [anon_sym_PERCENT_EQ] = ACTIONS(9433), - [anon_sym_PLUS_EQ] = ACTIONS(9433), - [anon_sym_DASH_EQ] = ACTIONS(9433), - [anon_sym_LT_LT_EQ] = ACTIONS(9433), - [anon_sym_GT_GT_EQ] = ACTIONS(9433), - [anon_sym_AMP_EQ] = ACTIONS(9433), - [anon_sym_CARET_EQ] = ACTIONS(9433), - [anon_sym_PIPE_EQ] = ACTIONS(9433), - [anon_sym_and_eq] = ACTIONS(9431), - [anon_sym_or_eq] = ACTIONS(9431), - [anon_sym_xor_eq] = ACTIONS(9431), - [anon_sym_LT_EQ_GT] = ACTIONS(9433), - [anon_sym_or] = ACTIONS(9431), - [anon_sym_and] = ACTIONS(9431), - [anon_sym_bitor] = ACTIONS(9431), - [anon_sym_xor] = ACTIONS(9431), - [anon_sym_bitand] = ACTIONS(9431), - [anon_sym_not_eq] = ACTIONS(9431), - [anon_sym_DASH_DASH] = ACTIONS(9433), - [anon_sym_PLUS_PLUS] = ACTIONS(9433), - [anon_sym_DOT] = ACTIONS(9431), - [anon_sym_DOT_STAR] = ACTIONS(9433), - [anon_sym_DASH_GT] = ACTIONS(9433), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9433), + [sym_identifier] = ACTIONS(4351), + [aux_sym_preproc_def_token1] = ACTIONS(4351), + [aux_sym_preproc_if_token1] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4351), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4351), + [sym_preproc_directive] = ACTIONS(4351), + [anon_sym_LPAREN2] = ACTIONS(4353), + [anon_sym_TILDE] = ACTIONS(4353), + [anon_sym_STAR] = ACTIONS(4353), + [anon_sym_AMP_AMP] = ACTIONS(4353), + [anon_sym_AMP] = ACTIONS(4351), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym___extension__] = ACTIONS(4351), + [anon_sym_typedef] = ACTIONS(4351), + [anon_sym_virtual] = ACTIONS(4351), + [anon_sym_extern] = ACTIONS(4351), + [anon_sym___attribute__] = ACTIONS(4351), + [anon_sym___attribute] = ACTIONS(4351), + [anon_sym_using] = ACTIONS(4351), + [anon_sym_COLON_COLON] = ACTIONS(4353), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4353), + [anon_sym___declspec] = ACTIONS(4351), + [anon_sym___based] = ACTIONS(4351), + [anon_sym_RBRACE] = ACTIONS(4353), + [anon_sym_signed] = ACTIONS(4351), + [anon_sym_unsigned] = ACTIONS(4351), + [anon_sym_long] = ACTIONS(4351), + [anon_sym_short] = ACTIONS(4351), + [anon_sym_LBRACK] = ACTIONS(4351), + [anon_sym_static] = ACTIONS(4351), + [anon_sym_register] = ACTIONS(4351), + [anon_sym_inline] = ACTIONS(4351), + [anon_sym___inline] = ACTIONS(4351), + [anon_sym___inline__] = ACTIONS(4351), + [anon_sym___forceinline] = ACTIONS(4351), + [anon_sym_thread_local] = ACTIONS(4351), + [anon_sym___thread] = ACTIONS(4351), + [anon_sym_const] = ACTIONS(4351), + [anon_sym_constexpr] = ACTIONS(4351), + [anon_sym_volatile] = ACTIONS(4351), + [anon_sym_restrict] = ACTIONS(4351), + [anon_sym___restrict__] = ACTIONS(4351), + [anon_sym__Atomic] = ACTIONS(4351), + [anon_sym__Noreturn] = ACTIONS(4351), + [anon_sym_noreturn] = ACTIONS(4351), + [anon_sym__Nonnull] = ACTIONS(4351), + [anon_sym_mutable] = ACTIONS(4351), + [anon_sym_constinit] = ACTIONS(4351), + [anon_sym_consteval] = ACTIONS(4351), + [anon_sym_alignas] = ACTIONS(4351), + [anon_sym__Alignas] = ACTIONS(4351), + [sym_primitive_type] = ACTIONS(4351), + [anon_sym_enum] = ACTIONS(4351), + [anon_sym_class] = ACTIONS(4351), + [anon_sym_struct] = ACTIONS(4351), + [anon_sym_union] = ACTIONS(4351), + [anon_sym_typename] = ACTIONS(4351), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4351), + [anon_sym_decltype] = ACTIONS(4351), + [anon_sym_explicit] = ACTIONS(4351), + [anon_sym_private] = ACTIONS(4351), + [anon_sym_template] = ACTIONS(4351), + [anon_sym_operator] = ACTIONS(4351), + [anon_sym_friend] = ACTIONS(4351), + [anon_sym_public] = ACTIONS(4351), + [anon_sym_protected] = ACTIONS(4351), + [anon_sym_static_assert] = ACTIONS(4351), + [anon_sym_LBRACK_COLON] = ACTIONS(4353), }, [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), - [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3522), + [sym_identifier] = ACTIONS(7322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7324), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_RPAREN] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_TILDE] = ACTIONS(7324), + [anon_sym_STAR] = ACTIONS(7324), + [anon_sym_AMP_AMP] = ACTIONS(7324), + [anon_sym_AMP] = ACTIONS(7322), + [anon_sym_SEMI] = ACTIONS(7324), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym_virtual] = ACTIONS(7322), + [anon_sym_extern] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_COLON] = ACTIONS(7322), + [anon_sym_COLON_COLON] = ACTIONS(7324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7324), + [anon_sym___declspec] = ACTIONS(7322), + [anon_sym___based] = ACTIONS(7322), + [anon_sym___cdecl] = ACTIONS(7322), + [anon_sym___clrcall] = ACTIONS(7322), + [anon_sym___stdcall] = ACTIONS(7322), + [anon_sym___fastcall] = ACTIONS(7322), + [anon_sym___thiscall] = ACTIONS(7322), + [anon_sym___vectorcall] = ACTIONS(7322), + [anon_sym_LBRACE] = ACTIONS(7324), + [anon_sym_signed] = ACTIONS(9529), + [anon_sym_unsigned] = ACTIONS(9529), + [anon_sym_long] = ACTIONS(9529), + [anon_sym_short] = ACTIONS(9529), + [anon_sym_LBRACK] = ACTIONS(7322), + [anon_sym_static] = ACTIONS(7322), + [anon_sym_EQ] = ACTIONS(7324), + [anon_sym_register] = ACTIONS(7322), + [anon_sym_inline] = ACTIONS(7322), + [anon_sym___inline] = ACTIONS(7322), + [anon_sym___inline__] = ACTIONS(7322), + [anon_sym___forceinline] = ACTIONS(7322), + [anon_sym_thread_local] = ACTIONS(7322), + [anon_sym___thread] = ACTIONS(7322), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_mutable] = ACTIONS(7322), + [anon_sym_constinit] = ACTIONS(7322), + [anon_sym_consteval] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [anon_sym_asm] = ACTIONS(7322), + [anon_sym___asm__] = ACTIONS(7322), + [anon_sym___asm] = ACTIONS(7322), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7322), + [anon_sym_final] = ACTIONS(7322), + [anon_sym_override] = ACTIONS(7322), + [anon_sym_template] = ACTIONS(7322), + [anon_sym_GT2] = ACTIONS(7324), + [anon_sym_operator] = ACTIONS(7322), + [anon_sym_try] = ACTIONS(7322), + [anon_sym_requires] = ACTIONS(7322), + [anon_sym_LBRACK_COLON] = ACTIONS(7324), }, [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), + [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(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(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(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(4389), + [aux_sym_preproc_def_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token1] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4389), + [sym_preproc_directive] = ACTIONS(4389), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_typedef] = ACTIONS(4389), + [anon_sym_virtual] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym___attribute__] = ACTIONS(4389), + [anon_sym___attribute] = ACTIONS(4389), + [anon_sym_using] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4391), + [anon_sym___declspec] = ACTIONS(4389), + [anon_sym___based] = ACTIONS(4389), + [anon_sym_RBRACE] = ACTIONS(4391), + [anon_sym_signed] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym___inline] = ACTIONS(4389), + [anon_sym___inline__] = ACTIONS(4389), + [anon_sym___forceinline] = ACTIONS(4389), + [anon_sym_thread_local] = ACTIONS(4389), + [anon_sym___thread] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_constinit] = ACTIONS(4389), + [anon_sym_consteval] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4389), + [anon_sym__Alignas] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_class] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4389), + [anon_sym_decltype] = ACTIONS(4389), + [anon_sym_explicit] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_template] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_friend] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_static_assert] = ACTIONS(4389), + [anon_sym_LBRACK_COLON] = ACTIONS(4391), }, [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_identifier] = ACTIONS(4017), + [aux_sym_preproc_def_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token1] = ACTIONS(4017), + [aux_sym_preproc_if_token2] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4017), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4017), + [sym_preproc_directive] = ACTIONS(4017), + [anon_sym_LPAREN2] = ACTIONS(4019), + [anon_sym_TILDE] = ACTIONS(4019), + [anon_sym_STAR] = ACTIONS(4019), + [anon_sym_AMP_AMP] = ACTIONS(4019), + [anon_sym_AMP] = ACTIONS(4017), + [anon_sym_SEMI] = ACTIONS(4019), + [anon_sym___extension__] = ACTIONS(4017), + [anon_sym_typedef] = ACTIONS(4017), + [anon_sym_virtual] = ACTIONS(4017), + [anon_sym_extern] = ACTIONS(4017), + [anon_sym___attribute__] = ACTIONS(4017), + [anon_sym___attribute] = ACTIONS(4017), + [anon_sym_using] = ACTIONS(4017), + [anon_sym_COLON_COLON] = ACTIONS(4019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4019), + [anon_sym___declspec] = ACTIONS(4017), + [anon_sym___based] = ACTIONS(4017), + [anon_sym_signed] = ACTIONS(4017), + [anon_sym_unsigned] = ACTIONS(4017), + [anon_sym_long] = ACTIONS(4017), + [anon_sym_short] = ACTIONS(4017), + [anon_sym_LBRACK] = ACTIONS(4017), + [anon_sym_static] = ACTIONS(4017), + [anon_sym_register] = ACTIONS(4017), + [anon_sym_inline] = ACTIONS(4017), + [anon_sym___inline] = ACTIONS(4017), + [anon_sym___inline__] = ACTIONS(4017), + [anon_sym___forceinline] = ACTIONS(4017), + [anon_sym_thread_local] = ACTIONS(4017), + [anon_sym___thread] = ACTIONS(4017), + [anon_sym_const] = ACTIONS(4017), + [anon_sym_constexpr] = ACTIONS(4017), + [anon_sym_volatile] = ACTIONS(4017), + [anon_sym_restrict] = ACTIONS(4017), + [anon_sym___restrict__] = ACTIONS(4017), + [anon_sym__Atomic] = ACTIONS(4017), + [anon_sym__Noreturn] = ACTIONS(4017), + [anon_sym_noreturn] = ACTIONS(4017), + [anon_sym__Nonnull] = ACTIONS(4017), + [anon_sym_mutable] = ACTIONS(4017), + [anon_sym_constinit] = ACTIONS(4017), + [anon_sym_consteval] = ACTIONS(4017), + [anon_sym_alignas] = ACTIONS(4017), + [anon_sym__Alignas] = ACTIONS(4017), + [sym_primitive_type] = ACTIONS(4017), + [anon_sym_enum] = ACTIONS(4017), + [anon_sym_class] = ACTIONS(4017), + [anon_sym_struct] = ACTIONS(4017), + [anon_sym_union] = ACTIONS(4017), + [anon_sym_typename] = ACTIONS(4017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4017), + [anon_sym_decltype] = ACTIONS(4017), + [anon_sym_explicit] = ACTIONS(4017), + [anon_sym_private] = ACTIONS(4017), + [anon_sym_template] = ACTIONS(4017), + [anon_sym_operator] = ACTIONS(4017), + [anon_sym_friend] = ACTIONS(4017), + [anon_sym_public] = ACTIONS(4017), + [anon_sym_protected] = ACTIONS(4017), + [anon_sym_static_assert] = ACTIONS(4017), + [anon_sym_LBRACK_COLON] = ACTIONS(4019), }, [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_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5699), + [anon_sym_or_eq] = ACTIONS(5699), + [anon_sym_xor_eq] = ACTIONS(5699), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + [anon_sym_COLON_RBRACK] = ACTIONS(5663), }, [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_identifier] = ACTIONS(4347), + [aux_sym_preproc_def_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token1] = ACTIONS(4347), + [aux_sym_preproc_if_token2] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4347), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4347), + [sym_preproc_directive] = ACTIONS(4347), + [anon_sym_LPAREN2] = ACTIONS(4349), + [anon_sym_TILDE] = ACTIONS(4349), + [anon_sym_STAR] = ACTIONS(4349), + [anon_sym_AMP_AMP] = ACTIONS(4349), + [anon_sym_AMP] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym___extension__] = ACTIONS(4347), + [anon_sym_typedef] = ACTIONS(4347), + [anon_sym_virtual] = ACTIONS(4347), + [anon_sym_extern] = ACTIONS(4347), + [anon_sym___attribute__] = ACTIONS(4347), + [anon_sym___attribute] = ACTIONS(4347), + [anon_sym_using] = ACTIONS(4347), + [anon_sym_COLON_COLON] = ACTIONS(4349), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4349), + [anon_sym___declspec] = ACTIONS(4347), + [anon_sym___based] = ACTIONS(4347), + [anon_sym_signed] = ACTIONS(4347), + [anon_sym_unsigned] = ACTIONS(4347), + [anon_sym_long] = ACTIONS(4347), + [anon_sym_short] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_static] = ACTIONS(4347), + [anon_sym_register] = ACTIONS(4347), + [anon_sym_inline] = ACTIONS(4347), + [anon_sym___inline] = ACTIONS(4347), + [anon_sym___inline__] = ACTIONS(4347), + [anon_sym___forceinline] = ACTIONS(4347), + [anon_sym_thread_local] = ACTIONS(4347), + [anon_sym___thread] = ACTIONS(4347), + [anon_sym_const] = ACTIONS(4347), + [anon_sym_constexpr] = ACTIONS(4347), + [anon_sym_volatile] = ACTIONS(4347), + [anon_sym_restrict] = ACTIONS(4347), + [anon_sym___restrict__] = ACTIONS(4347), + [anon_sym__Atomic] = ACTIONS(4347), + [anon_sym__Noreturn] = ACTIONS(4347), + [anon_sym_noreturn] = ACTIONS(4347), + [anon_sym__Nonnull] = ACTIONS(4347), + [anon_sym_mutable] = ACTIONS(4347), + [anon_sym_constinit] = ACTIONS(4347), + [anon_sym_consteval] = ACTIONS(4347), + [anon_sym_alignas] = ACTIONS(4347), + [anon_sym__Alignas] = ACTIONS(4347), + [sym_primitive_type] = ACTIONS(4347), + [anon_sym_enum] = ACTIONS(4347), + [anon_sym_class] = ACTIONS(4347), + [anon_sym_struct] = ACTIONS(4347), + [anon_sym_union] = ACTIONS(4347), + [anon_sym_typename] = ACTIONS(4347), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4347), + [anon_sym_decltype] = ACTIONS(4347), + [anon_sym_explicit] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_template] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [anon_sym_friend] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_static_assert] = ACTIONS(4347), + [anon_sym_LBRACK_COLON] = ACTIONS(4349), }, [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_identifier] = ACTIONS(9105), + [aux_sym_preproc_def_token1] = ACTIONS(9105), + [aux_sym_preproc_if_token1] = ACTIONS(9105), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9105), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9105), + [sym_preproc_directive] = ACTIONS(9105), + [anon_sym_LPAREN2] = ACTIONS(9107), + [anon_sym_TILDE] = ACTIONS(9107), + [anon_sym_STAR] = ACTIONS(9107), + [anon_sym_AMP_AMP] = ACTIONS(9107), + [anon_sym_AMP] = ACTIONS(9105), + [anon_sym_SEMI] = ACTIONS(9107), + [anon_sym___extension__] = ACTIONS(9105), + [anon_sym_typedef] = ACTIONS(9105), + [anon_sym_virtual] = ACTIONS(9105), + [anon_sym_extern] = ACTIONS(9105), + [anon_sym___attribute__] = ACTIONS(9105), + [anon_sym___attribute] = ACTIONS(9105), + [anon_sym_using] = ACTIONS(9105), + [anon_sym_COLON_COLON] = ACTIONS(9107), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9107), + [anon_sym___declspec] = ACTIONS(9105), + [anon_sym___based] = ACTIONS(9105), + [anon_sym_RBRACE] = ACTIONS(9107), + [anon_sym_signed] = ACTIONS(9105), + [anon_sym_unsigned] = ACTIONS(9105), + [anon_sym_long] = ACTIONS(9105), + [anon_sym_short] = ACTIONS(9105), + [anon_sym_LBRACK] = ACTIONS(9105), + [anon_sym_static] = ACTIONS(9105), + [anon_sym_register] = ACTIONS(9105), + [anon_sym_inline] = ACTIONS(9105), + [anon_sym___inline] = ACTIONS(9105), + [anon_sym___inline__] = ACTIONS(9105), + [anon_sym___forceinline] = ACTIONS(9105), + [anon_sym_thread_local] = ACTIONS(9105), + [anon_sym___thread] = ACTIONS(9105), + [anon_sym_const] = ACTIONS(9105), + [anon_sym_constexpr] = ACTIONS(9105), + [anon_sym_volatile] = ACTIONS(9105), + [anon_sym_restrict] = ACTIONS(9105), + [anon_sym___restrict__] = ACTIONS(9105), + [anon_sym__Atomic] = ACTIONS(9105), + [anon_sym__Noreturn] = ACTIONS(9105), + [anon_sym_noreturn] = ACTIONS(9105), + [anon_sym__Nonnull] = ACTIONS(9105), + [anon_sym_mutable] = ACTIONS(9105), + [anon_sym_constinit] = ACTIONS(9105), + [anon_sym_consteval] = ACTIONS(9105), + [anon_sym_alignas] = ACTIONS(9105), + [anon_sym__Alignas] = ACTIONS(9105), + [sym_primitive_type] = ACTIONS(9105), + [anon_sym_enum] = ACTIONS(9105), + [anon_sym_class] = ACTIONS(9105), + [anon_sym_struct] = ACTIONS(9105), + [anon_sym_union] = ACTIONS(9105), + [anon_sym_typename] = ACTIONS(9105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9105), + [anon_sym_decltype] = ACTIONS(9105), + [anon_sym_explicit] = ACTIONS(9105), + [anon_sym_private] = ACTIONS(9105), + [anon_sym_template] = ACTIONS(9105), + [anon_sym_operator] = ACTIONS(9105), + [anon_sym_friend] = ACTIONS(9105), + [anon_sym_public] = ACTIONS(9105), + [anon_sym_protected] = ACTIONS(9105), + [anon_sym_static_assert] = ACTIONS(9105), + [anon_sym_LBRACK_COLON] = ACTIONS(9107), }, [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_identifier] = ACTIONS(4068), + [aux_sym_preproc_def_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4068), + [sym_preproc_directive] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4070), + [anon_sym_TILDE] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym___extension__] = ACTIONS(4068), + [anon_sym_typedef] = ACTIONS(4068), + [anon_sym_virtual] = ACTIONS(4068), + [anon_sym_extern] = ACTIONS(4068), + [anon_sym___attribute__] = ACTIONS(4068), + [anon_sym___attribute] = ACTIONS(4068), + [anon_sym_using] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4070), + [anon_sym___declspec] = ACTIONS(4068), + [anon_sym___based] = ACTIONS(4068), + [anon_sym_RBRACE] = ACTIONS(4070), + [anon_sym_signed] = ACTIONS(4068), + [anon_sym_unsigned] = ACTIONS(4068), + [anon_sym_long] = ACTIONS(4068), + [anon_sym_short] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_register] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym___inline] = ACTIONS(4068), + [anon_sym___inline__] = ACTIONS(4068), + [anon_sym___forceinline] = ACTIONS(4068), + [anon_sym_thread_local] = ACTIONS(4068), + [anon_sym___thread] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4068), + [anon_sym_constexpr] = ACTIONS(4068), + [anon_sym_volatile] = ACTIONS(4068), + [anon_sym_restrict] = ACTIONS(4068), + [anon_sym___restrict__] = ACTIONS(4068), + [anon_sym__Atomic] = ACTIONS(4068), + [anon_sym__Noreturn] = ACTIONS(4068), + [anon_sym_noreturn] = ACTIONS(4068), + [anon_sym__Nonnull] = ACTIONS(4068), + [anon_sym_mutable] = ACTIONS(4068), + [anon_sym_constinit] = ACTIONS(4068), + [anon_sym_consteval] = ACTIONS(4068), + [anon_sym_alignas] = ACTIONS(4068), + [anon_sym__Alignas] = ACTIONS(4068), + [sym_primitive_type] = ACTIONS(4068), + [anon_sym_enum] = ACTIONS(4068), + [anon_sym_class] = ACTIONS(4068), + [anon_sym_struct] = ACTIONS(4068), + [anon_sym_union] = ACTIONS(4068), + [anon_sym_typename] = ACTIONS(4068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4068), + [anon_sym_decltype] = ACTIONS(4068), + [anon_sym_explicit] = ACTIONS(4068), + [anon_sym_private] = ACTIONS(4068), + [anon_sym_template] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_friend] = ACTIONS(4068), + [anon_sym_public] = ACTIONS(4068), + [anon_sym_protected] = ACTIONS(4068), + [anon_sym_static_assert] = ACTIONS(4068), + [anon_sym_LBRACK_COLON] = ACTIONS(4070), }, [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(3959), + [aux_sym_preproc_def_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token1] = ACTIONS(3959), + [aux_sym_preproc_if_token2] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3959), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3959), + [sym_preproc_directive] = ACTIONS(3959), + [anon_sym_LPAREN2] = ACTIONS(3961), + [anon_sym_TILDE] = ACTIONS(3961), + [anon_sym_STAR] = ACTIONS(3961), + [anon_sym_AMP_AMP] = ACTIONS(3961), + [anon_sym_AMP] = ACTIONS(3959), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym___extension__] = ACTIONS(3959), + [anon_sym_typedef] = ACTIONS(3959), + [anon_sym_virtual] = ACTIONS(3959), + [anon_sym_extern] = ACTIONS(3959), + [anon_sym___attribute__] = ACTIONS(3959), + [anon_sym___attribute] = ACTIONS(3959), + [anon_sym_using] = ACTIONS(3959), + [anon_sym_COLON_COLON] = ACTIONS(3961), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3961), + [anon_sym___declspec] = ACTIONS(3959), + [anon_sym___based] = ACTIONS(3959), + [anon_sym_signed] = ACTIONS(3959), + [anon_sym_unsigned] = ACTIONS(3959), + [anon_sym_long] = ACTIONS(3959), + [anon_sym_short] = ACTIONS(3959), + [anon_sym_LBRACK] = ACTIONS(3959), + [anon_sym_static] = ACTIONS(3959), + [anon_sym_register] = ACTIONS(3959), + [anon_sym_inline] = ACTIONS(3959), + [anon_sym___inline] = ACTIONS(3959), + [anon_sym___inline__] = ACTIONS(3959), + [anon_sym___forceinline] = ACTIONS(3959), + [anon_sym_thread_local] = ACTIONS(3959), + [anon_sym___thread] = ACTIONS(3959), + [anon_sym_const] = ACTIONS(3959), + [anon_sym_constexpr] = ACTIONS(3959), + [anon_sym_volatile] = ACTIONS(3959), + [anon_sym_restrict] = ACTIONS(3959), + [anon_sym___restrict__] = ACTIONS(3959), + [anon_sym__Atomic] = ACTIONS(3959), + [anon_sym__Noreturn] = ACTIONS(3959), + [anon_sym_noreturn] = ACTIONS(3959), + [anon_sym__Nonnull] = ACTIONS(3959), + [anon_sym_mutable] = ACTIONS(3959), + [anon_sym_constinit] = ACTIONS(3959), + [anon_sym_consteval] = ACTIONS(3959), + [anon_sym_alignas] = ACTIONS(3959), + [anon_sym__Alignas] = ACTIONS(3959), + [sym_primitive_type] = ACTIONS(3959), + [anon_sym_enum] = ACTIONS(3959), + [anon_sym_class] = ACTIONS(3959), + [anon_sym_struct] = ACTIONS(3959), + [anon_sym_union] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(3959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3959), + [anon_sym_decltype] = ACTIONS(3959), + [anon_sym_explicit] = ACTIONS(3959), + [anon_sym_private] = ACTIONS(3959), + [anon_sym_template] = ACTIONS(3959), + [anon_sym_operator] = ACTIONS(3959), + [anon_sym_friend] = ACTIONS(3959), + [anon_sym_public] = ACTIONS(3959), + [anon_sym_protected] = ACTIONS(3959), + [anon_sym_static_assert] = ACTIONS(3959), + [anon_sym_LBRACK_COLON] = ACTIONS(3961), }, [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_identifier] = ACTIONS(9002), + [aux_sym_preproc_def_token1] = ACTIONS(9002), + [aux_sym_preproc_if_token1] = ACTIONS(9002), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9002), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9002), + [sym_preproc_directive] = ACTIONS(9002), + [anon_sym_LPAREN2] = ACTIONS(9004), + [anon_sym_TILDE] = ACTIONS(9004), + [anon_sym_STAR] = ACTIONS(9004), + [anon_sym_AMP_AMP] = ACTIONS(9004), + [anon_sym_AMP] = ACTIONS(9002), + [anon_sym_SEMI] = ACTIONS(9004), + [anon_sym___extension__] = ACTIONS(9002), + [anon_sym_typedef] = ACTIONS(9002), + [anon_sym_virtual] = ACTIONS(9002), + [anon_sym_extern] = ACTIONS(9002), + [anon_sym___attribute__] = ACTIONS(9002), + [anon_sym___attribute] = ACTIONS(9002), + [anon_sym_using] = ACTIONS(9002), + [anon_sym_COLON_COLON] = ACTIONS(9004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9004), + [anon_sym___declspec] = ACTIONS(9002), + [anon_sym___based] = ACTIONS(9002), + [anon_sym_RBRACE] = ACTIONS(9004), + [anon_sym_signed] = ACTIONS(9002), + [anon_sym_unsigned] = ACTIONS(9002), + [anon_sym_long] = ACTIONS(9002), + [anon_sym_short] = ACTIONS(9002), + [anon_sym_LBRACK] = ACTIONS(9002), + [anon_sym_static] = ACTIONS(9002), + [anon_sym_register] = ACTIONS(9002), + [anon_sym_inline] = ACTIONS(9002), + [anon_sym___inline] = ACTIONS(9002), + [anon_sym___inline__] = ACTIONS(9002), + [anon_sym___forceinline] = ACTIONS(9002), + [anon_sym_thread_local] = ACTIONS(9002), + [anon_sym___thread] = ACTIONS(9002), + [anon_sym_const] = ACTIONS(9002), + [anon_sym_constexpr] = ACTIONS(9002), + [anon_sym_volatile] = ACTIONS(9002), + [anon_sym_restrict] = ACTIONS(9002), + [anon_sym___restrict__] = ACTIONS(9002), + [anon_sym__Atomic] = ACTIONS(9002), + [anon_sym__Noreturn] = ACTIONS(9002), + [anon_sym_noreturn] = ACTIONS(9002), + [anon_sym__Nonnull] = ACTIONS(9002), + [anon_sym_mutable] = ACTIONS(9002), + [anon_sym_constinit] = ACTIONS(9002), + [anon_sym_consteval] = ACTIONS(9002), + [anon_sym_alignas] = ACTIONS(9002), + [anon_sym__Alignas] = ACTIONS(9002), + [sym_primitive_type] = ACTIONS(9002), + [anon_sym_enum] = ACTIONS(9002), + [anon_sym_class] = ACTIONS(9002), + [anon_sym_struct] = ACTIONS(9002), + [anon_sym_union] = ACTIONS(9002), + [anon_sym_typename] = ACTIONS(9002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9002), + [anon_sym_decltype] = ACTIONS(9002), + [anon_sym_explicit] = ACTIONS(9002), + [anon_sym_private] = ACTIONS(9002), + [anon_sym_template] = ACTIONS(9002), + [anon_sym_operator] = ACTIONS(9002), + [anon_sym_friend] = ACTIONS(9002), + [anon_sym_public] = ACTIONS(9002), + [anon_sym_protected] = ACTIONS(9002), + [anon_sym_static_assert] = ACTIONS(9002), + [anon_sym_LBRACK_COLON] = ACTIONS(9004), }, [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(9033), + [aux_sym_preproc_def_token1] = ACTIONS(9033), + [aux_sym_preproc_if_token1] = ACTIONS(9033), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9033), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9033), + [sym_preproc_directive] = ACTIONS(9033), + [anon_sym_LPAREN2] = ACTIONS(9035), + [anon_sym_TILDE] = ACTIONS(9035), + [anon_sym_STAR] = ACTIONS(9035), + [anon_sym_AMP_AMP] = ACTIONS(9035), + [anon_sym_AMP] = ACTIONS(9033), + [anon_sym_SEMI] = ACTIONS(9035), + [anon_sym___extension__] = ACTIONS(9033), + [anon_sym_typedef] = ACTIONS(9033), + [anon_sym_virtual] = ACTIONS(9033), + [anon_sym_extern] = ACTIONS(9033), + [anon_sym___attribute__] = ACTIONS(9033), + [anon_sym___attribute] = ACTIONS(9033), + [anon_sym_using] = ACTIONS(9033), + [anon_sym_COLON_COLON] = ACTIONS(9035), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9035), + [anon_sym___declspec] = ACTIONS(9033), + [anon_sym___based] = ACTIONS(9033), + [anon_sym_RBRACE] = ACTIONS(9035), + [anon_sym_signed] = ACTIONS(9033), + [anon_sym_unsigned] = ACTIONS(9033), + [anon_sym_long] = ACTIONS(9033), + [anon_sym_short] = ACTIONS(9033), + [anon_sym_LBRACK] = ACTIONS(9033), + [anon_sym_static] = ACTIONS(9033), + [anon_sym_register] = ACTIONS(9033), + [anon_sym_inline] = ACTIONS(9033), + [anon_sym___inline] = ACTIONS(9033), + [anon_sym___inline__] = ACTIONS(9033), + [anon_sym___forceinline] = ACTIONS(9033), + [anon_sym_thread_local] = ACTIONS(9033), + [anon_sym___thread] = ACTIONS(9033), + [anon_sym_const] = ACTIONS(9033), + [anon_sym_constexpr] = ACTIONS(9033), + [anon_sym_volatile] = ACTIONS(9033), + [anon_sym_restrict] = ACTIONS(9033), + [anon_sym___restrict__] = ACTIONS(9033), + [anon_sym__Atomic] = ACTIONS(9033), + [anon_sym__Noreturn] = ACTIONS(9033), + [anon_sym_noreturn] = ACTIONS(9033), + [anon_sym__Nonnull] = ACTIONS(9033), + [anon_sym_mutable] = ACTIONS(9033), + [anon_sym_constinit] = ACTIONS(9033), + [anon_sym_consteval] = ACTIONS(9033), + [anon_sym_alignas] = ACTIONS(9033), + [anon_sym__Alignas] = ACTIONS(9033), + [sym_primitive_type] = ACTIONS(9033), + [anon_sym_enum] = ACTIONS(9033), + [anon_sym_class] = ACTIONS(9033), + [anon_sym_struct] = ACTIONS(9033), + [anon_sym_union] = ACTIONS(9033), + [anon_sym_typename] = ACTIONS(9033), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9033), + [anon_sym_decltype] = ACTIONS(9033), + [anon_sym_explicit] = ACTIONS(9033), + [anon_sym_private] = ACTIONS(9033), + [anon_sym_template] = ACTIONS(9033), + [anon_sym_operator] = ACTIONS(9033), + [anon_sym_friend] = ACTIONS(9033), + [anon_sym_public] = ACTIONS(9033), + [anon_sym_protected] = ACTIONS(9033), + [anon_sym_static_assert] = ACTIONS(9033), + [anon_sym_LBRACK_COLON] = ACTIONS(9035), }, [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(4072), + [aux_sym_preproc_def_token1] = ACTIONS(4072), + [aux_sym_preproc_if_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4072), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4072), + [sym_preproc_directive] = ACTIONS(4072), + [anon_sym_LPAREN2] = ACTIONS(4074), + [anon_sym_TILDE] = ACTIONS(4074), + [anon_sym_STAR] = ACTIONS(4074), + [anon_sym_AMP_AMP] = ACTIONS(4074), + [anon_sym_AMP] = ACTIONS(4072), + [anon_sym_SEMI] = ACTIONS(4074), + [anon_sym___extension__] = ACTIONS(4072), + [anon_sym_typedef] = ACTIONS(4072), + [anon_sym_virtual] = ACTIONS(4072), + [anon_sym_extern] = ACTIONS(4072), + [anon_sym___attribute__] = ACTIONS(4072), + [anon_sym___attribute] = ACTIONS(4072), + [anon_sym_using] = ACTIONS(4072), + [anon_sym_COLON_COLON] = ACTIONS(4074), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4074), + [anon_sym___declspec] = ACTIONS(4072), + [anon_sym___based] = ACTIONS(4072), + [anon_sym_RBRACE] = ACTIONS(4074), + [anon_sym_signed] = ACTIONS(4072), + [anon_sym_unsigned] = ACTIONS(4072), + [anon_sym_long] = ACTIONS(4072), + [anon_sym_short] = ACTIONS(4072), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_static] = ACTIONS(4072), + [anon_sym_register] = ACTIONS(4072), + [anon_sym_inline] = ACTIONS(4072), + [anon_sym___inline] = ACTIONS(4072), + [anon_sym___inline__] = ACTIONS(4072), + [anon_sym___forceinline] = ACTIONS(4072), + [anon_sym_thread_local] = ACTIONS(4072), + [anon_sym___thread] = ACTIONS(4072), + [anon_sym_const] = ACTIONS(4072), + [anon_sym_constexpr] = ACTIONS(4072), + [anon_sym_volatile] = ACTIONS(4072), + [anon_sym_restrict] = ACTIONS(4072), + [anon_sym___restrict__] = ACTIONS(4072), + [anon_sym__Atomic] = ACTIONS(4072), + [anon_sym__Noreturn] = ACTIONS(4072), + [anon_sym_noreturn] = ACTIONS(4072), + [anon_sym__Nonnull] = ACTIONS(4072), + [anon_sym_mutable] = ACTIONS(4072), + [anon_sym_constinit] = ACTIONS(4072), + [anon_sym_consteval] = ACTIONS(4072), + [anon_sym_alignas] = ACTIONS(4072), + [anon_sym__Alignas] = ACTIONS(4072), + [sym_primitive_type] = ACTIONS(4072), + [anon_sym_enum] = ACTIONS(4072), + [anon_sym_class] = ACTIONS(4072), + [anon_sym_struct] = ACTIONS(4072), + [anon_sym_union] = ACTIONS(4072), + [anon_sym_typename] = ACTIONS(4072), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4072), + [anon_sym_decltype] = ACTIONS(4072), + [anon_sym_explicit] = ACTIONS(4072), + [anon_sym_private] = ACTIONS(4072), + [anon_sym_template] = ACTIONS(4072), + [anon_sym_operator] = ACTIONS(4072), + [anon_sym_friend] = ACTIONS(4072), + [anon_sym_public] = ACTIONS(4072), + [anon_sym_protected] = ACTIONS(4072), + [anon_sym_static_assert] = ACTIONS(4072), + [anon_sym_LBRACK_COLON] = ACTIONS(4074), }, [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(3716), + [aux_sym_preproc_def_token1] = ACTIONS(3716), + [aux_sym_preproc_if_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3716), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3716), + [sym_preproc_directive] = ACTIONS(3716), + [anon_sym_LPAREN2] = ACTIONS(3718), + [anon_sym_TILDE] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AMP_AMP] = ACTIONS(3718), + [anon_sym_AMP] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3718), + [anon_sym___extension__] = ACTIONS(3716), + [anon_sym_typedef] = ACTIONS(3716), + [anon_sym_virtual] = ACTIONS(3716), + [anon_sym_extern] = ACTIONS(3716), + [anon_sym___attribute__] = ACTIONS(3716), + [anon_sym___attribute] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_COLON_COLON] = ACTIONS(3718), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3718), + [anon_sym___declspec] = ACTIONS(3716), + [anon_sym___based] = ACTIONS(3716), + [anon_sym_RBRACE] = ACTIONS(3718), + [anon_sym_signed] = ACTIONS(3716), + [anon_sym_unsigned] = ACTIONS(3716), + [anon_sym_long] = ACTIONS(3716), + [anon_sym_short] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_register] = ACTIONS(3716), + [anon_sym_inline] = ACTIONS(3716), + [anon_sym___inline] = ACTIONS(3716), + [anon_sym___inline__] = ACTIONS(3716), + [anon_sym___forceinline] = ACTIONS(3716), + [anon_sym_thread_local] = ACTIONS(3716), + [anon_sym___thread] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_constexpr] = ACTIONS(3716), + [anon_sym_volatile] = ACTIONS(3716), + [anon_sym_restrict] = ACTIONS(3716), + [anon_sym___restrict__] = ACTIONS(3716), + [anon_sym__Atomic] = ACTIONS(3716), + [anon_sym__Noreturn] = ACTIONS(3716), + [anon_sym_noreturn] = ACTIONS(3716), + [anon_sym__Nonnull] = ACTIONS(3716), + [anon_sym_mutable] = ACTIONS(3716), + [anon_sym_constinit] = ACTIONS(3716), + [anon_sym_consteval] = ACTIONS(3716), + [anon_sym_alignas] = ACTIONS(3716), + [anon_sym__Alignas] = ACTIONS(3716), + [sym_primitive_type] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_struct] = ACTIONS(3716), + [anon_sym_union] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3716), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3716), + [anon_sym_decltype] = ACTIONS(3716), + [anon_sym_explicit] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_template] = ACTIONS(3716), + [anon_sym_operator] = ACTIONS(3716), + [anon_sym_friend] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_static_assert] = ACTIONS(3716), + [anon_sym_LBRACK_COLON] = ACTIONS(3718), }, [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_identifier] = ACTIONS(3788), + [aux_sym_preproc_def_token1] = ACTIONS(3788), + [aux_sym_preproc_if_token1] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3788), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3788), + [sym_preproc_directive] = ACTIONS(3788), + [anon_sym_LPAREN2] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_STAR] = ACTIONS(3790), + [anon_sym_AMP_AMP] = ACTIONS(3790), + [anon_sym_AMP] = ACTIONS(3788), + [anon_sym_SEMI] = ACTIONS(3790), + [anon_sym___extension__] = ACTIONS(3788), + [anon_sym_typedef] = ACTIONS(3788), + [anon_sym_virtual] = ACTIONS(3788), + [anon_sym_extern] = ACTIONS(3788), + [anon_sym___attribute__] = ACTIONS(3788), + [anon_sym___attribute] = ACTIONS(3788), + [anon_sym_using] = ACTIONS(3788), + [anon_sym_COLON_COLON] = ACTIONS(3790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3790), + [anon_sym___declspec] = ACTIONS(3788), + [anon_sym___based] = ACTIONS(3788), + [anon_sym_RBRACE] = ACTIONS(3790), + [anon_sym_signed] = ACTIONS(3788), + [anon_sym_unsigned] = ACTIONS(3788), + [anon_sym_long] = ACTIONS(3788), + [anon_sym_short] = ACTIONS(3788), + [anon_sym_LBRACK] = ACTIONS(3788), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_register] = ACTIONS(3788), + [anon_sym_inline] = ACTIONS(3788), + [anon_sym___inline] = ACTIONS(3788), + [anon_sym___inline__] = ACTIONS(3788), + [anon_sym___forceinline] = ACTIONS(3788), + [anon_sym_thread_local] = ACTIONS(3788), + [anon_sym___thread] = ACTIONS(3788), + [anon_sym_const] = ACTIONS(3788), + [anon_sym_constexpr] = ACTIONS(3788), + [anon_sym_volatile] = ACTIONS(3788), + [anon_sym_restrict] = ACTIONS(3788), + [anon_sym___restrict__] = ACTIONS(3788), + [anon_sym__Atomic] = ACTIONS(3788), + [anon_sym__Noreturn] = ACTIONS(3788), + [anon_sym_noreturn] = ACTIONS(3788), + [anon_sym__Nonnull] = ACTIONS(3788), + [anon_sym_mutable] = ACTIONS(3788), + [anon_sym_constinit] = ACTIONS(3788), + [anon_sym_consteval] = ACTIONS(3788), + [anon_sym_alignas] = ACTIONS(3788), + [anon_sym__Alignas] = ACTIONS(3788), + [sym_primitive_type] = ACTIONS(3788), + [anon_sym_enum] = ACTIONS(3788), + [anon_sym_class] = ACTIONS(3788), + [anon_sym_struct] = ACTIONS(3788), + [anon_sym_union] = ACTIONS(3788), + [anon_sym_typename] = ACTIONS(3788), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3788), + [anon_sym_decltype] = ACTIONS(3788), + [anon_sym_explicit] = ACTIONS(3788), + [anon_sym_private] = ACTIONS(3788), + [anon_sym_template] = ACTIONS(3788), + [anon_sym_operator] = ACTIONS(3788), + [anon_sym_friend] = ACTIONS(3788), + [anon_sym_public] = ACTIONS(3788), + [anon_sym_protected] = ACTIONS(3788), + [anon_sym_static_assert] = ACTIONS(3788), + [anon_sym_LBRACK_COLON] = ACTIONS(3790), }, [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_identifier] = ACTIONS(8962), + [aux_sym_preproc_def_token1] = ACTIONS(8962), + [aux_sym_preproc_if_token1] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8962), + [sym_preproc_directive] = ACTIONS(8962), + [anon_sym_LPAREN2] = ACTIONS(8964), + [anon_sym_TILDE] = ACTIONS(8964), + [anon_sym_STAR] = ACTIONS(8964), + [anon_sym_AMP_AMP] = ACTIONS(8964), + [anon_sym_AMP] = ACTIONS(8962), + [anon_sym_SEMI] = ACTIONS(8964), + [anon_sym___extension__] = ACTIONS(8962), + [anon_sym_typedef] = ACTIONS(8962), + [anon_sym_virtual] = ACTIONS(8962), + [anon_sym_extern] = ACTIONS(8962), + [anon_sym___attribute__] = ACTIONS(8962), + [anon_sym___attribute] = ACTIONS(8962), + [anon_sym_using] = ACTIONS(8962), + [anon_sym_COLON_COLON] = ACTIONS(8964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8964), + [anon_sym___declspec] = ACTIONS(8962), + [anon_sym___based] = ACTIONS(8962), + [anon_sym_RBRACE] = ACTIONS(8964), + [anon_sym_signed] = ACTIONS(8962), + [anon_sym_unsigned] = ACTIONS(8962), + [anon_sym_long] = ACTIONS(8962), + [anon_sym_short] = ACTIONS(8962), + [anon_sym_LBRACK] = ACTIONS(8962), + [anon_sym_static] = ACTIONS(8962), + [anon_sym_register] = ACTIONS(8962), + [anon_sym_inline] = ACTIONS(8962), + [anon_sym___inline] = ACTIONS(8962), + [anon_sym___inline__] = ACTIONS(8962), + [anon_sym___forceinline] = ACTIONS(8962), + [anon_sym_thread_local] = ACTIONS(8962), + [anon_sym___thread] = ACTIONS(8962), + [anon_sym_const] = ACTIONS(8962), + [anon_sym_constexpr] = ACTIONS(8962), + [anon_sym_volatile] = ACTIONS(8962), + [anon_sym_restrict] = ACTIONS(8962), + [anon_sym___restrict__] = ACTIONS(8962), + [anon_sym__Atomic] = ACTIONS(8962), + [anon_sym__Noreturn] = ACTIONS(8962), + [anon_sym_noreturn] = ACTIONS(8962), + [anon_sym__Nonnull] = ACTIONS(8962), + [anon_sym_mutable] = ACTIONS(8962), + [anon_sym_constinit] = ACTIONS(8962), + [anon_sym_consteval] = ACTIONS(8962), + [anon_sym_alignas] = ACTIONS(8962), + [anon_sym__Alignas] = ACTIONS(8962), + [sym_primitive_type] = ACTIONS(8962), + [anon_sym_enum] = ACTIONS(8962), + [anon_sym_class] = ACTIONS(8962), + [anon_sym_struct] = ACTIONS(8962), + [anon_sym_union] = ACTIONS(8962), + [anon_sym_typename] = ACTIONS(8962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8962), + [anon_sym_decltype] = ACTIONS(8962), + [anon_sym_explicit] = ACTIONS(8962), + [anon_sym_private] = ACTIONS(8962), + [anon_sym_template] = ACTIONS(8962), + [anon_sym_operator] = ACTIONS(8962), + [anon_sym_friend] = ACTIONS(8962), + [anon_sym_public] = ACTIONS(8962), + [anon_sym_protected] = ACTIONS(8962), + [anon_sym_static_assert] = ACTIONS(8962), + [anon_sym_LBRACK_COLON] = ACTIONS(8964), }, [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_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(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(3886), + [aux_sym_preproc_def_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token1] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3886), + [sym_preproc_directive] = ACTIONS(3886), + [anon_sym_LPAREN2] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3888), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(3886), + [anon_sym_typedef] = ACTIONS(3886), + [anon_sym_virtual] = ACTIONS(3886), + [anon_sym_extern] = ACTIONS(3886), + [anon_sym___attribute__] = ACTIONS(3886), + [anon_sym___attribute] = ACTIONS(3886), + [anon_sym_using] = ACTIONS(3886), + [anon_sym_COLON_COLON] = ACTIONS(3888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3888), + [anon_sym___declspec] = ACTIONS(3886), + [anon_sym___based] = ACTIONS(3886), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_signed] = ACTIONS(3886), + [anon_sym_unsigned] = ACTIONS(3886), + [anon_sym_long] = ACTIONS(3886), + [anon_sym_short] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_static] = ACTIONS(3886), + [anon_sym_register] = ACTIONS(3886), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym___inline] = ACTIONS(3886), + [anon_sym___inline__] = ACTIONS(3886), + [anon_sym___forceinline] = ACTIONS(3886), + [anon_sym_thread_local] = ACTIONS(3886), + [anon_sym___thread] = ACTIONS(3886), + [anon_sym_const] = ACTIONS(3886), + [anon_sym_constexpr] = ACTIONS(3886), + [anon_sym_volatile] = ACTIONS(3886), + [anon_sym_restrict] = ACTIONS(3886), + [anon_sym___restrict__] = ACTIONS(3886), + [anon_sym__Atomic] = ACTIONS(3886), + [anon_sym__Noreturn] = ACTIONS(3886), + [anon_sym_noreturn] = ACTIONS(3886), + [anon_sym__Nonnull] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3886), + [anon_sym_constinit] = ACTIONS(3886), + [anon_sym_consteval] = ACTIONS(3886), + [anon_sym_alignas] = ACTIONS(3886), + [anon_sym__Alignas] = ACTIONS(3886), + [sym_primitive_type] = ACTIONS(3886), + [anon_sym_enum] = ACTIONS(3886), + [anon_sym_class] = ACTIONS(3886), + [anon_sym_struct] = ACTIONS(3886), + [anon_sym_union] = ACTIONS(3886), + [anon_sym_typename] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3886), + [anon_sym_decltype] = ACTIONS(3886), + [anon_sym_explicit] = ACTIONS(3886), + [anon_sym_private] = ACTIONS(3886), + [anon_sym_template] = ACTIONS(3886), + [anon_sym_operator] = ACTIONS(3886), + [anon_sym_friend] = ACTIONS(3886), + [anon_sym_public] = ACTIONS(3886), + [anon_sym_protected] = ACTIONS(3886), + [anon_sym_static_assert] = ACTIONS(3886), + [anon_sym_LBRACK_COLON] = ACTIONS(3888), }, [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(8962), + [aux_sym_preproc_def_token1] = ACTIONS(8962), + [aux_sym_preproc_if_token1] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8962), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8962), + [sym_preproc_directive] = ACTIONS(8962), + [anon_sym_LPAREN2] = ACTIONS(8964), + [anon_sym_TILDE] = ACTIONS(8964), + [anon_sym_STAR] = ACTIONS(8964), + [anon_sym_AMP_AMP] = ACTIONS(8964), + [anon_sym_AMP] = ACTIONS(8962), + [anon_sym_SEMI] = ACTIONS(8964), + [anon_sym___extension__] = ACTIONS(8962), + [anon_sym_typedef] = ACTIONS(8962), + [anon_sym_virtual] = ACTIONS(8962), + [anon_sym_extern] = ACTIONS(8962), + [anon_sym___attribute__] = ACTIONS(8962), + [anon_sym___attribute] = ACTIONS(8962), + [anon_sym_using] = ACTIONS(8962), + [anon_sym_COLON_COLON] = ACTIONS(8964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8964), + [anon_sym___declspec] = ACTIONS(8962), + [anon_sym___based] = ACTIONS(8962), + [anon_sym_RBRACE] = ACTIONS(8964), + [anon_sym_signed] = ACTIONS(8962), + [anon_sym_unsigned] = ACTIONS(8962), + [anon_sym_long] = ACTIONS(8962), + [anon_sym_short] = ACTIONS(8962), + [anon_sym_LBRACK] = ACTIONS(8962), + [anon_sym_static] = ACTIONS(8962), + [anon_sym_register] = ACTIONS(8962), + [anon_sym_inline] = ACTIONS(8962), + [anon_sym___inline] = ACTIONS(8962), + [anon_sym___inline__] = ACTIONS(8962), + [anon_sym___forceinline] = ACTIONS(8962), + [anon_sym_thread_local] = ACTIONS(8962), + [anon_sym___thread] = ACTIONS(8962), + [anon_sym_const] = ACTIONS(8962), + [anon_sym_constexpr] = ACTIONS(8962), + [anon_sym_volatile] = ACTIONS(8962), + [anon_sym_restrict] = ACTIONS(8962), + [anon_sym___restrict__] = ACTIONS(8962), + [anon_sym__Atomic] = ACTIONS(8962), + [anon_sym__Noreturn] = ACTIONS(8962), + [anon_sym_noreturn] = ACTIONS(8962), + [anon_sym__Nonnull] = ACTIONS(8962), + [anon_sym_mutable] = ACTIONS(8962), + [anon_sym_constinit] = ACTIONS(8962), + [anon_sym_consteval] = ACTIONS(8962), + [anon_sym_alignas] = ACTIONS(8962), + [anon_sym__Alignas] = ACTIONS(8962), + [sym_primitive_type] = ACTIONS(8962), + [anon_sym_enum] = ACTIONS(8962), + [anon_sym_class] = ACTIONS(8962), + [anon_sym_struct] = ACTIONS(8962), + [anon_sym_union] = ACTIONS(8962), + [anon_sym_typename] = ACTIONS(8962), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8962), + [anon_sym_decltype] = ACTIONS(8962), + [anon_sym_explicit] = ACTIONS(8962), + [anon_sym_private] = ACTIONS(8962), + [anon_sym_template] = ACTIONS(8962), + [anon_sym_operator] = ACTIONS(8962), + [anon_sym_friend] = ACTIONS(8962), + [anon_sym_public] = ACTIONS(8962), + [anon_sym_protected] = ACTIONS(8962), + [anon_sym_static_assert] = ACTIONS(8962), + [anon_sym_LBRACK_COLON] = ACTIONS(8964), }, [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(9073), + [aux_sym_preproc_def_token1] = ACTIONS(9073), + [aux_sym_preproc_if_token1] = ACTIONS(9073), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9073), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9073), + [sym_preproc_directive] = ACTIONS(9073), + [anon_sym_LPAREN2] = ACTIONS(9075), + [anon_sym_TILDE] = ACTIONS(9075), + [anon_sym_STAR] = ACTIONS(9075), + [anon_sym_AMP_AMP] = ACTIONS(9075), + [anon_sym_AMP] = ACTIONS(9073), + [anon_sym_SEMI] = ACTIONS(9075), + [anon_sym___extension__] = ACTIONS(9073), + [anon_sym_typedef] = ACTIONS(9073), + [anon_sym_virtual] = ACTIONS(9073), + [anon_sym_extern] = ACTIONS(9073), + [anon_sym___attribute__] = ACTIONS(9073), + [anon_sym___attribute] = ACTIONS(9073), + [anon_sym_using] = ACTIONS(9073), + [anon_sym_COLON_COLON] = ACTIONS(9075), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9075), + [anon_sym___declspec] = ACTIONS(9073), + [anon_sym___based] = ACTIONS(9073), + [anon_sym_RBRACE] = ACTIONS(9075), + [anon_sym_signed] = ACTIONS(9073), + [anon_sym_unsigned] = ACTIONS(9073), + [anon_sym_long] = ACTIONS(9073), + [anon_sym_short] = ACTIONS(9073), + [anon_sym_LBRACK] = ACTIONS(9073), + [anon_sym_static] = ACTIONS(9073), + [anon_sym_register] = ACTIONS(9073), + [anon_sym_inline] = ACTIONS(9073), + [anon_sym___inline] = ACTIONS(9073), + [anon_sym___inline__] = ACTIONS(9073), + [anon_sym___forceinline] = ACTIONS(9073), + [anon_sym_thread_local] = ACTIONS(9073), + [anon_sym___thread] = ACTIONS(9073), + [anon_sym_const] = ACTIONS(9073), + [anon_sym_constexpr] = ACTIONS(9073), + [anon_sym_volatile] = ACTIONS(9073), + [anon_sym_restrict] = ACTIONS(9073), + [anon_sym___restrict__] = ACTIONS(9073), + [anon_sym__Atomic] = ACTIONS(9073), + [anon_sym__Noreturn] = ACTIONS(9073), + [anon_sym_noreturn] = ACTIONS(9073), + [anon_sym__Nonnull] = ACTIONS(9073), + [anon_sym_mutable] = ACTIONS(9073), + [anon_sym_constinit] = ACTIONS(9073), + [anon_sym_consteval] = ACTIONS(9073), + [anon_sym_alignas] = ACTIONS(9073), + [anon_sym__Alignas] = ACTIONS(9073), + [sym_primitive_type] = ACTIONS(9073), + [anon_sym_enum] = ACTIONS(9073), + [anon_sym_class] = ACTIONS(9073), + [anon_sym_struct] = ACTIONS(9073), + [anon_sym_union] = ACTIONS(9073), + [anon_sym_typename] = ACTIONS(9073), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9073), + [anon_sym_decltype] = ACTIONS(9073), + [anon_sym_explicit] = ACTIONS(9073), + [anon_sym_private] = ACTIONS(9073), + [anon_sym_template] = ACTIONS(9073), + [anon_sym_operator] = ACTIONS(9073), + [anon_sym_friend] = ACTIONS(9073), + [anon_sym_public] = ACTIONS(9073), + [anon_sym_protected] = ACTIONS(9073), + [anon_sym_static_assert] = ACTIONS(9073), + [anon_sym_LBRACK_COLON] = ACTIONS(9075), }, [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_identifier] = 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_TILDE] = ACTIONS(3772), + [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_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_typename] = ACTIONS(3770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3770), + [anon_sym_decltype] = ACTIONS(3770), + [anon_sym_explicit] = ACTIONS(3770), + [anon_sym_private] = ACTIONS(3770), + [anon_sym_template] = ACTIONS(3770), + [anon_sym_operator] = ACTIONS(3770), + [anon_sym_friend] = ACTIONS(3770), + [anon_sym_public] = ACTIONS(3770), + [anon_sym_protected] = ACTIONS(3770), + [anon_sym_static_assert] = ACTIONS(3770), + [anon_sym_LBRACK_COLON] = ACTIONS(3772), }, [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(9101), + [aux_sym_preproc_def_token1] = ACTIONS(9101), + [aux_sym_preproc_if_token1] = ACTIONS(9101), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9101), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9101), + [sym_preproc_directive] = ACTIONS(9101), + [anon_sym_LPAREN2] = ACTIONS(9103), + [anon_sym_TILDE] = ACTIONS(9103), + [anon_sym_STAR] = ACTIONS(9103), + [anon_sym_AMP_AMP] = ACTIONS(9103), + [anon_sym_AMP] = ACTIONS(9101), + [anon_sym_SEMI] = ACTIONS(9103), + [anon_sym___extension__] = ACTIONS(9101), + [anon_sym_typedef] = ACTIONS(9101), + [anon_sym_virtual] = ACTIONS(9101), + [anon_sym_extern] = ACTIONS(9101), + [anon_sym___attribute__] = ACTIONS(9101), + [anon_sym___attribute] = ACTIONS(9101), + [anon_sym_using] = ACTIONS(9101), + [anon_sym_COLON_COLON] = ACTIONS(9103), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9103), + [anon_sym___declspec] = ACTIONS(9101), + [anon_sym___based] = ACTIONS(9101), + [anon_sym_RBRACE] = ACTIONS(9103), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(9101), + [anon_sym_static] = ACTIONS(9101), + [anon_sym_register] = ACTIONS(9101), + [anon_sym_inline] = ACTIONS(9101), + [anon_sym___inline] = ACTIONS(9101), + [anon_sym___inline__] = ACTIONS(9101), + [anon_sym___forceinline] = ACTIONS(9101), + [anon_sym_thread_local] = ACTIONS(9101), + [anon_sym___thread] = ACTIONS(9101), + [anon_sym_const] = ACTIONS(9101), + [anon_sym_constexpr] = ACTIONS(9101), + [anon_sym_volatile] = ACTIONS(9101), + [anon_sym_restrict] = ACTIONS(9101), + [anon_sym___restrict__] = ACTIONS(9101), + [anon_sym__Atomic] = ACTIONS(9101), + [anon_sym__Noreturn] = ACTIONS(9101), + [anon_sym_noreturn] = ACTIONS(9101), + [anon_sym__Nonnull] = ACTIONS(9101), + [anon_sym_mutable] = ACTIONS(9101), + [anon_sym_constinit] = ACTIONS(9101), + [anon_sym_consteval] = ACTIONS(9101), + [anon_sym_alignas] = ACTIONS(9101), + [anon_sym__Alignas] = ACTIONS(9101), + [sym_primitive_type] = ACTIONS(9101), + [anon_sym_enum] = ACTIONS(9101), + [anon_sym_class] = ACTIONS(9101), + [anon_sym_struct] = ACTIONS(9101), + [anon_sym_union] = ACTIONS(9101), + [anon_sym_typename] = ACTIONS(9101), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9101), + [anon_sym_decltype] = ACTIONS(9101), + [anon_sym_explicit] = ACTIONS(9101), + [anon_sym_private] = ACTIONS(9101), + [anon_sym_template] = ACTIONS(9101), + [anon_sym_operator] = ACTIONS(9101), + [anon_sym_friend] = ACTIONS(9101), + [anon_sym_public] = ACTIONS(9101), + [anon_sym_protected] = ACTIONS(9101), + [anon_sym_static_assert] = ACTIONS(9101), + [anon_sym_LBRACK_COLON] = ACTIONS(9103), }, [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), + [sym_identifier] = ACTIONS(7149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7151), + [anon_sym_COMMA] = ACTIONS(7151), + [anon_sym_RPAREN] = ACTIONS(7151), + [aux_sym_preproc_if_token2] = ACTIONS(7151), + [aux_sym_preproc_else_token1] = ACTIONS(7151), + [aux_sym_preproc_elif_token1] = ACTIONS(7149), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7151), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7151), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_DASH] = ACTIONS(7149), + [anon_sym_PLUS] = ACTIONS(7149), + [anon_sym_STAR] = ACTIONS(7149), + [anon_sym_SLASH] = ACTIONS(7149), + [anon_sym_PERCENT] = ACTIONS(7149), + [anon_sym_PIPE_PIPE] = ACTIONS(7151), + [anon_sym_AMP_AMP] = ACTIONS(7151), + [anon_sym_PIPE] = ACTIONS(7149), + [anon_sym_CARET] = ACTIONS(7149), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym_EQ_EQ] = ACTIONS(7151), + [anon_sym_BANG_EQ] = ACTIONS(7151), + [anon_sym_GT] = ACTIONS(7149), + [anon_sym_GT_EQ] = ACTIONS(7151), + [anon_sym_LT_EQ] = ACTIONS(7149), + [anon_sym_LT] = ACTIONS(7149), + [anon_sym_LT_LT] = ACTIONS(7149), + [anon_sym_GT_GT] = ACTIONS(7149), + [anon_sym_SEMI] = ACTIONS(7151), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_COLON] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7151), + [anon_sym_LBRACE] = ACTIONS(7151), + [anon_sym_RBRACE] = ACTIONS(7151), + [anon_sym_LBRACK] = ACTIONS(7151), + [anon_sym_EQ] = ACTIONS(7149), + [anon_sym_QMARK] = ACTIONS(7151), + [anon_sym_STAR_EQ] = ACTIONS(7151), + [anon_sym_SLASH_EQ] = ACTIONS(7151), + [anon_sym_PERCENT_EQ] = ACTIONS(7151), + [anon_sym_PLUS_EQ] = ACTIONS(7151), + [anon_sym_DASH_EQ] = ACTIONS(7151), + [anon_sym_LT_LT_EQ] = ACTIONS(7151), + [anon_sym_GT_GT_EQ] = ACTIONS(7151), + [anon_sym_AMP_EQ] = ACTIONS(7151), + [anon_sym_CARET_EQ] = ACTIONS(7151), + [anon_sym_PIPE_EQ] = ACTIONS(7151), + [anon_sym_and_eq] = ACTIONS(7149), + [anon_sym_or_eq] = ACTIONS(7149), + [anon_sym_xor_eq] = ACTIONS(7149), + [anon_sym_LT_EQ_GT] = ACTIONS(7151), + [anon_sym_or] = ACTIONS(7149), + [anon_sym_and] = ACTIONS(7149), + [anon_sym_bitor] = ACTIONS(7149), + [anon_sym_xor] = ACTIONS(7149), + [anon_sym_bitand] = ACTIONS(7149), + [anon_sym_not_eq] = ACTIONS(7149), + [anon_sym_DASH_DASH] = ACTIONS(7151), + [anon_sym_PLUS_PLUS] = ACTIONS(7151), + [anon_sym_DOT] = ACTIONS(7149), + [anon_sym_DOT_STAR] = ACTIONS(7151), + [anon_sym_DASH_GT] = ACTIONS(7151), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7149), + [anon_sym_override] = ACTIONS(7149), + [anon_sym_requires] = ACTIONS(7149), + [anon_sym_COLON_RBRACK] = ACTIONS(7151), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(3658), + [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_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_typename] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_friend] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), }, [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), + [sym_identifier] = 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_TILDE] = ACTIONS(3658), + [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_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_typename] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_friend] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), }, [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), + [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(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), + [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___attribute__] = ACTIONS(7668), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_COLON] = ACTIONS(7668), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [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_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(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), + [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(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), + [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), + [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(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), + [sym_decltype_auto] = STATE(4145), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9534), + [anon_sym_decltype] = ACTIONS(9536), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, [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), + [sym_attribute_specifier] = STATE(4902), + [sym_attribute_declaration] = STATE(5272), + [sym_gnu_asm_expression] = STATE(10280), + [sym_virtual_specifier] = STATE(5770), + [sym__function_attributes_end] = STATE(5049), + [sym__function_postfix] = STATE(6392), + [sym_trailing_return_type] = STATE(5135), + [sym_requires_clause] = STATE(6392), + [aux_sym_type_definition_repeat1] = STATE(4902), + [aux_sym_attributed_declarator_repeat1] = STATE(5272), + [aux_sym__function_postfix_repeat1] = STATE(5770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym___attribute__] = ACTIONS(7077), + [anon_sym___attribute] = ACTIONS(7079), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7081), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7474), + [anon_sym_and] = ACTIONS(7474), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7474), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(8834), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_requires] = ACTIONS(7117), + [anon_sym_DASH_GT_STAR] = ACTIONS(7474), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3714), + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_RPAREN] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_TILDE] = ACTIONS(7277), + [anon_sym_STAR] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_SEMI] = ACTIONS(7277), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym_virtual] = ACTIONS(7275), + [anon_sym_extern] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON] = ACTIONS(7275), + [anon_sym_COLON_COLON] = ACTIONS(7277), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7277), + [anon_sym___declspec] = ACTIONS(7275), + [anon_sym___based] = ACTIONS(7275), + [anon_sym___cdecl] = ACTIONS(7275), + [anon_sym___clrcall] = ACTIONS(7275), + [anon_sym___stdcall] = ACTIONS(7275), + [anon_sym___fastcall] = ACTIONS(7275), + [anon_sym___thiscall] = ACTIONS(7275), + [anon_sym___vectorcall] = ACTIONS(7275), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_signed] = ACTIONS(9463), + [anon_sym_unsigned] = ACTIONS(9463), + [anon_sym_long] = ACTIONS(9463), + [anon_sym_short] = ACTIONS(9463), + [anon_sym_LBRACK] = ACTIONS(7275), + [anon_sym_static] = ACTIONS(7275), + [anon_sym_EQ] = ACTIONS(7277), + [anon_sym_register] = ACTIONS(7275), + [anon_sym_inline] = ACTIONS(7275), + [anon_sym___inline] = ACTIONS(7275), + [anon_sym___inline__] = ACTIONS(7275), + [anon_sym___forceinline] = ACTIONS(7275), + [anon_sym_thread_local] = ACTIONS(7275), + [anon_sym___thread] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [anon_sym_asm] = ACTIONS(7275), + [anon_sym___asm__] = ACTIONS(7275), + [anon_sym___asm] = ACTIONS(7275), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7275), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_template] = ACTIONS(7275), + [anon_sym_GT2] = ACTIONS(7277), + [anon_sym_operator] = ACTIONS(7275), + [anon_sym_try] = ACTIONS(7275), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_LBRACK_COLON] = ACTIONS(7277), }, [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), + [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), + [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(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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(8600), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(8602), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8604), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8606), - [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(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_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_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(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(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(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(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), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(8572), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(8574), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8576), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8578), - [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(8580), - [anon_sym_LBRACK] = ACTIONS(8588), - [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_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(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_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), + [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(3713)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3714), + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_RPAREN] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_TILDE] = ACTIONS(7281), + [anon_sym_STAR] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_SEMI] = ACTIONS(7281), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym_virtual] = ACTIONS(7279), + [anon_sym_extern] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON] = ACTIONS(7279), + [anon_sym_COLON_COLON] = ACTIONS(7281), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7281), + [anon_sym___declspec] = ACTIONS(7279), + [anon_sym___based] = ACTIONS(7279), + [anon_sym___cdecl] = ACTIONS(7279), + [anon_sym___clrcall] = ACTIONS(7279), + [anon_sym___stdcall] = ACTIONS(7279), + [anon_sym___fastcall] = ACTIONS(7279), + [anon_sym___thiscall] = ACTIONS(7279), + [anon_sym___vectorcall] = ACTIONS(7279), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_signed] = ACTIONS(9463), + [anon_sym_unsigned] = ACTIONS(9463), + [anon_sym_long] = ACTIONS(9463), + [anon_sym_short] = ACTIONS(9463), + [anon_sym_LBRACK] = ACTIONS(7279), + [anon_sym_static] = ACTIONS(7279), + [anon_sym_EQ] = ACTIONS(7281), + [anon_sym_register] = ACTIONS(7279), + [anon_sym_inline] = ACTIONS(7279), + [anon_sym___inline] = ACTIONS(7279), + [anon_sym___inline__] = ACTIONS(7279), + [anon_sym___forceinline] = ACTIONS(7279), + [anon_sym_thread_local] = ACTIONS(7279), + [anon_sym___thread] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [anon_sym_asm] = ACTIONS(7279), + [anon_sym___asm__] = ACTIONS(7279), + [anon_sym___asm] = ACTIONS(7279), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7279), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_template] = ACTIONS(7279), + [anon_sym_GT2] = ACTIONS(7281), + [anon_sym_operator] = ACTIONS(7279), + [anon_sym_try] = ACTIONS(7279), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_LBRACK_COLON] = ACTIONS(7281), + }, + [STATE(3714)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3714), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_TILDE] = ACTIONS(7175), + [anon_sym_STAR] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_SEMI] = ACTIONS(7175), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym_virtual] = ACTIONS(7173), + [anon_sym_extern] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7175), + [anon_sym___declspec] = ACTIONS(7173), + [anon_sym___based] = ACTIONS(7173), + [anon_sym___cdecl] = ACTIONS(7173), + [anon_sym___clrcall] = ACTIONS(7173), + [anon_sym___stdcall] = ACTIONS(7173), + [anon_sym___fastcall] = ACTIONS(7173), + [anon_sym___thiscall] = ACTIONS(7173), + [anon_sym___vectorcall] = ACTIONS(7173), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(9538), + [anon_sym_unsigned] = ACTIONS(9538), + [anon_sym_long] = ACTIONS(9538), + [anon_sym_short] = ACTIONS(9538), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_static] = ACTIONS(7173), + [anon_sym_EQ] = ACTIONS(7175), + [anon_sym_register] = ACTIONS(7173), + [anon_sym_inline] = ACTIONS(7173), + [anon_sym___inline] = ACTIONS(7173), + [anon_sym___inline__] = ACTIONS(7173), + [anon_sym___forceinline] = ACTIONS(7173), + [anon_sym_thread_local] = ACTIONS(7173), + [anon_sym___thread] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [anon_sym_asm] = ACTIONS(7173), + [anon_sym___asm__] = ACTIONS(7173), + [anon_sym___asm] = ACTIONS(7173), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_GT2] = ACTIONS(7175), + [anon_sym_operator] = ACTIONS(7173), + [anon_sym_try] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), + }, + [STATE(3715)] = { + [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(3716)] = { + [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(3717)] = { + [sym_identifier] = ACTIONS(4389), + [aux_sym_preproc_def_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token1] = ACTIONS(4389), + [aux_sym_preproc_if_token2] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4389), + [sym_preproc_directive] = ACTIONS(4389), + [anon_sym_LPAREN2] = ACTIONS(4391), + [anon_sym_TILDE] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4391), + [anon_sym_AMP_AMP] = ACTIONS(4391), + [anon_sym_AMP] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4391), + [anon_sym___extension__] = ACTIONS(4389), + [anon_sym_typedef] = ACTIONS(4389), + [anon_sym_virtual] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym___attribute__] = ACTIONS(4389), + [anon_sym___attribute] = ACTIONS(4389), + [anon_sym_using] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4391), + [anon_sym___declspec] = ACTIONS(4389), + [anon_sym___based] = ACTIONS(4389), + [anon_sym_signed] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [anon_sym_LBRACK] = ACTIONS(4389), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym___inline] = ACTIONS(4389), + [anon_sym___inline__] = ACTIONS(4389), + [anon_sym___forceinline] = ACTIONS(4389), + [anon_sym_thread_local] = ACTIONS(4389), + [anon_sym___thread] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym___restrict__] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym__Noreturn] = ACTIONS(4389), + [anon_sym_noreturn] = ACTIONS(4389), + [anon_sym__Nonnull] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_constinit] = ACTIONS(4389), + [anon_sym_consteval] = ACTIONS(4389), + [anon_sym_alignas] = ACTIONS(4389), + [anon_sym__Alignas] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_class] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4389), + [anon_sym_decltype] = ACTIONS(4389), + [anon_sym_explicit] = ACTIONS(4389), + [anon_sym_private] = ACTIONS(4389), + [anon_sym_template] = ACTIONS(4389), + [anon_sym_operator] = ACTIONS(4389), + [anon_sym_friend] = ACTIONS(4389), + [anon_sym_public] = ACTIONS(4389), + [anon_sym_protected] = ACTIONS(4389), + [anon_sym_static_assert] = ACTIONS(4389), + [anon_sym_LBRACK_COLON] = ACTIONS(4391), + }, + [STATE(3718)] = { + [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), + }, + [STATE(3719)] = { + [sym_identifier] = ACTIONS(4130), + [aux_sym_preproc_def_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token1] = ACTIONS(4130), + [aux_sym_preproc_if_token2] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4130), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4130), + [sym_preproc_directive] = ACTIONS(4130), + [anon_sym_LPAREN2] = ACTIONS(4132), + [anon_sym_TILDE] = ACTIONS(4132), + [anon_sym_STAR] = ACTIONS(4132), + [anon_sym_AMP_AMP] = ACTIONS(4132), + [anon_sym_AMP] = ACTIONS(4130), + [anon_sym_SEMI] = ACTIONS(4132), + [anon_sym___extension__] = ACTIONS(4130), + [anon_sym_typedef] = ACTIONS(4130), + [anon_sym_virtual] = ACTIONS(4130), + [anon_sym_extern] = ACTIONS(4130), + [anon_sym___attribute__] = ACTIONS(4130), + [anon_sym___attribute] = ACTIONS(4130), + [anon_sym_using] = ACTIONS(4130), + [anon_sym_COLON_COLON] = ACTIONS(4132), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4132), + [anon_sym___declspec] = ACTIONS(4130), + [anon_sym___based] = ACTIONS(4130), + [anon_sym_signed] = ACTIONS(4130), + [anon_sym_unsigned] = ACTIONS(4130), + [anon_sym_long] = ACTIONS(4130), + [anon_sym_short] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4130), + [anon_sym_static] = ACTIONS(4130), + [anon_sym_register] = ACTIONS(4130), + [anon_sym_inline] = ACTIONS(4130), + [anon_sym___inline] = ACTIONS(4130), + [anon_sym___inline__] = ACTIONS(4130), + [anon_sym___forceinline] = ACTIONS(4130), + [anon_sym_thread_local] = ACTIONS(4130), + [anon_sym___thread] = ACTIONS(4130), + [anon_sym_const] = ACTIONS(4130), + [anon_sym_constexpr] = ACTIONS(4130), + [anon_sym_volatile] = ACTIONS(4130), + [anon_sym_restrict] = ACTIONS(4130), + [anon_sym___restrict__] = ACTIONS(4130), + [anon_sym__Atomic] = ACTIONS(4130), + [anon_sym__Noreturn] = ACTIONS(4130), + [anon_sym_noreturn] = ACTIONS(4130), + [anon_sym__Nonnull] = ACTIONS(4130), + [anon_sym_mutable] = ACTIONS(4130), + [anon_sym_constinit] = ACTIONS(4130), + [anon_sym_consteval] = ACTIONS(4130), + [anon_sym_alignas] = ACTIONS(4130), + [anon_sym__Alignas] = ACTIONS(4130), + [sym_primitive_type] = ACTIONS(4130), + [anon_sym_enum] = ACTIONS(4130), + [anon_sym_class] = ACTIONS(4130), + [anon_sym_struct] = ACTIONS(4130), + [anon_sym_union] = ACTIONS(4130), + [anon_sym_typename] = ACTIONS(4130), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4130), + [anon_sym_decltype] = ACTIONS(4130), + [anon_sym_explicit] = ACTIONS(4130), + [anon_sym_private] = ACTIONS(4130), + [anon_sym_template] = ACTIONS(4130), + [anon_sym_operator] = ACTIONS(4130), + [anon_sym_friend] = ACTIONS(4130), + [anon_sym_public] = ACTIONS(4130), + [anon_sym_protected] = ACTIONS(4130), + [anon_sym_static_assert] = ACTIONS(4130), + [anon_sym_LBRACK_COLON] = ACTIONS(4132), + }, + [STATE(3720)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(4078), + [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_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_typename] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4076), + [anon_sym_decltype] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_private] = ACTIONS(4076), + [anon_sym_template] = ACTIONS(4076), + [anon_sym_operator] = ACTIONS(4076), + [anon_sym_friend] = ACTIONS(4076), + [anon_sym_public] = ACTIONS(4076), + [anon_sym_protected] = ACTIONS(4076), + [anon_sym_static_assert] = ACTIONS(4076), + [anon_sym_LBRACK_COLON] = ACTIONS(4078), + }, + [STATE(3721)] = { + [sym_identifier] = ACTIONS(4134), + [aux_sym_preproc_def_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token1] = ACTIONS(4134), + [aux_sym_preproc_if_token2] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4134), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4134), + [sym_preproc_directive] = ACTIONS(4134), + [anon_sym_LPAREN2] = ACTIONS(4136), + [anon_sym_TILDE] = ACTIONS(4136), + [anon_sym_STAR] = ACTIONS(4136), + [anon_sym_AMP_AMP] = ACTIONS(4136), + [anon_sym_AMP] = ACTIONS(4134), + [anon_sym_SEMI] = ACTIONS(4136), + [anon_sym___extension__] = ACTIONS(4134), + [anon_sym_typedef] = ACTIONS(4134), + [anon_sym_virtual] = ACTIONS(4134), + [anon_sym_extern] = ACTIONS(4134), + [anon_sym___attribute__] = ACTIONS(4134), + [anon_sym___attribute] = ACTIONS(4134), + [anon_sym_using] = ACTIONS(4134), + [anon_sym_COLON_COLON] = ACTIONS(4136), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4136), + [anon_sym___declspec] = ACTIONS(4134), + [anon_sym___based] = ACTIONS(4134), + [anon_sym_signed] = ACTIONS(4134), + [anon_sym_unsigned] = ACTIONS(4134), + [anon_sym_long] = ACTIONS(4134), + [anon_sym_short] = ACTIONS(4134), + [anon_sym_LBRACK] = ACTIONS(4134), + [anon_sym_static] = ACTIONS(4134), + [anon_sym_register] = ACTIONS(4134), + [anon_sym_inline] = ACTIONS(4134), + [anon_sym___inline] = ACTIONS(4134), + [anon_sym___inline__] = ACTIONS(4134), + [anon_sym___forceinline] = ACTIONS(4134), + [anon_sym_thread_local] = ACTIONS(4134), + [anon_sym___thread] = ACTIONS(4134), + [anon_sym_const] = ACTIONS(4134), + [anon_sym_constexpr] = ACTIONS(4134), + [anon_sym_volatile] = ACTIONS(4134), + [anon_sym_restrict] = ACTIONS(4134), + [anon_sym___restrict__] = ACTIONS(4134), + [anon_sym__Atomic] = ACTIONS(4134), + [anon_sym__Noreturn] = ACTIONS(4134), + [anon_sym_noreturn] = ACTIONS(4134), + [anon_sym__Nonnull] = ACTIONS(4134), + [anon_sym_mutable] = ACTIONS(4134), + [anon_sym_constinit] = ACTIONS(4134), + [anon_sym_consteval] = ACTIONS(4134), + [anon_sym_alignas] = ACTIONS(4134), + [anon_sym__Alignas] = ACTIONS(4134), + [sym_primitive_type] = ACTIONS(4134), + [anon_sym_enum] = ACTIONS(4134), + [anon_sym_class] = ACTIONS(4134), + [anon_sym_struct] = ACTIONS(4134), + [anon_sym_union] = ACTIONS(4134), + [anon_sym_typename] = ACTIONS(4134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4134), + [anon_sym_decltype] = ACTIONS(4134), + [anon_sym_explicit] = ACTIONS(4134), + [anon_sym_private] = ACTIONS(4134), + [anon_sym_template] = ACTIONS(4134), + [anon_sym_operator] = ACTIONS(4134), + [anon_sym_friend] = ACTIONS(4134), + [anon_sym_public] = ACTIONS(4134), + [anon_sym_protected] = ACTIONS(4134), + [anon_sym_static_assert] = ACTIONS(4134), + [anon_sym_LBRACK_COLON] = ACTIONS(4136), + }, + [STATE(3722)] = { + [sym_template_argument_list] = STATE(3935), + [sym_identifier] = ACTIONS(7543), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_TILDE] = ACTIONS(5689), + [anon_sym_STAR] = ACTIONS(5689), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(9469), + [anon_sym___extension__] = ACTIONS(7543), + [anon_sym_virtual] = ACTIONS(7543), + [anon_sym_extern] = ACTIONS(7543), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_using] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5689), + [anon_sym___declspec] = ACTIONS(7543), + [anon_sym___based] = ACTIONS(7543), + [anon_sym___cdecl] = ACTIONS(7543), + [anon_sym___clrcall] = ACTIONS(7543), + [anon_sym___stdcall] = ACTIONS(7543), + [anon_sym___fastcall] = ACTIONS(7543), + [anon_sym___thiscall] = ACTIONS(7543), + [anon_sym___vectorcall] = ACTIONS(7543), + [anon_sym_signed] = ACTIONS(7543), + [anon_sym_unsigned] = ACTIONS(7543), + [anon_sym_long] = ACTIONS(7543), + [anon_sym_short] = ACTIONS(7543), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_static] = ACTIONS(7543), + [anon_sym_register] = ACTIONS(7543), + [anon_sym_inline] = ACTIONS(7543), + [anon_sym___inline] = ACTIONS(7543), + [anon_sym___inline__] = ACTIONS(7543), + [anon_sym___forceinline] = ACTIONS(7543), + [anon_sym_thread_local] = ACTIONS(7543), + [anon_sym___thread] = ACTIONS(7543), + [anon_sym_const] = ACTIONS(7543), + [anon_sym_constexpr] = ACTIONS(7543), + [anon_sym_volatile] = ACTIONS(7543), + [anon_sym_restrict] = ACTIONS(7543), + [anon_sym___restrict__] = ACTIONS(7543), + [anon_sym__Atomic] = ACTIONS(7543), + [anon_sym__Noreturn] = ACTIONS(7543), + [anon_sym_noreturn] = ACTIONS(7543), + [anon_sym__Nonnull] = ACTIONS(7543), + [anon_sym_mutable] = ACTIONS(7543), + [anon_sym_constinit] = ACTIONS(7543), + [anon_sym_consteval] = ACTIONS(7543), + [anon_sym_alignas] = ACTIONS(7543), + [anon_sym__Alignas] = ACTIONS(7543), + [sym_primitive_type] = ACTIONS(7543), + [anon_sym_enum] = ACTIONS(7543), + [anon_sym_class] = ACTIONS(7543), + [anon_sym_struct] = ACTIONS(7543), + [anon_sym_union] = ACTIONS(7543), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_typename] = ACTIONS(7543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7543), + [anon_sym_decltype] = ACTIONS(7543), + [anon_sym_explicit] = ACTIONS(7543), + [anon_sym_template] = ACTIONS(7543), + [anon_sym_operator] = ACTIONS(7543), + [anon_sym_friend] = ACTIONS(7543), + [anon_sym_concept] = ACTIONS(7543), + [anon_sym_LBRACK_COLON] = ACTIONS(5689), + }, + [STATE(3723)] = { + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_RPAREN] = ACTIONS(7447), + [aux_sym_preproc_if_token2] = ACTIONS(7447), + [aux_sym_preproc_else_token1] = ACTIONS(7447), + [aux_sym_preproc_elif_token1] = ACTIONS(7442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7447), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7442), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7442), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(7442), + [anon_sym_LT_LT] = ACTIONS(7442), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym_SEMI] = ACTIONS(7447), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7447), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7447), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7447), + [anon_sym_EQ] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_STAR_EQ] = ACTIONS(7447), + [anon_sym_SLASH_EQ] = ACTIONS(7447), + [anon_sym_PERCENT_EQ] = ACTIONS(7447), + [anon_sym_PLUS_EQ] = ACTIONS(7447), + [anon_sym_DASH_EQ] = ACTIONS(7447), + [anon_sym_LT_LT_EQ] = ACTIONS(7447), + [anon_sym_GT_GT_EQ] = ACTIONS(7447), + [anon_sym_AMP_EQ] = ACTIONS(7447), + [anon_sym_CARET_EQ] = ACTIONS(7447), + [anon_sym_PIPE_EQ] = ACTIONS(7447), + [anon_sym_and_eq] = ACTIONS(7442), + [anon_sym_or_eq] = ACTIONS(7442), + [anon_sym_xor_eq] = ACTIONS(7442), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_COLON_RBRACK] = ACTIONS(7447), + }, + [STATE(3724)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(3658), + [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_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_typename] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_friend] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + }, + [STATE(3725)] = { + [sym_identifier] = ACTIONS(4068), + [aux_sym_preproc_def_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token1] = ACTIONS(4068), + [aux_sym_preproc_if_token2] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4068), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4068), + [sym_preproc_directive] = ACTIONS(4068), + [anon_sym_LPAREN2] = ACTIONS(4070), + [anon_sym_TILDE] = ACTIONS(4070), + [anon_sym_STAR] = ACTIONS(4070), + [anon_sym_AMP_AMP] = ACTIONS(4070), + [anon_sym_AMP] = ACTIONS(4068), + [anon_sym_SEMI] = ACTIONS(4070), + [anon_sym___extension__] = ACTIONS(4068), + [anon_sym_typedef] = ACTIONS(4068), + [anon_sym_virtual] = ACTIONS(4068), + [anon_sym_extern] = ACTIONS(4068), + [anon_sym___attribute__] = ACTIONS(4068), + [anon_sym___attribute] = ACTIONS(4068), + [anon_sym_using] = ACTIONS(4068), + [anon_sym_COLON_COLON] = ACTIONS(4070), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4070), + [anon_sym___declspec] = ACTIONS(4068), + [anon_sym___based] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(4068), + [anon_sym_unsigned] = ACTIONS(4068), + [anon_sym_long] = ACTIONS(4068), + [anon_sym_short] = ACTIONS(4068), + [anon_sym_LBRACK] = ACTIONS(4068), + [anon_sym_static] = ACTIONS(4068), + [anon_sym_register] = ACTIONS(4068), + [anon_sym_inline] = ACTIONS(4068), + [anon_sym___inline] = ACTIONS(4068), + [anon_sym___inline__] = ACTIONS(4068), + [anon_sym___forceinline] = ACTIONS(4068), + [anon_sym_thread_local] = ACTIONS(4068), + [anon_sym___thread] = ACTIONS(4068), + [anon_sym_const] = ACTIONS(4068), + [anon_sym_constexpr] = ACTIONS(4068), + [anon_sym_volatile] = ACTIONS(4068), + [anon_sym_restrict] = ACTIONS(4068), + [anon_sym___restrict__] = ACTIONS(4068), + [anon_sym__Atomic] = ACTIONS(4068), + [anon_sym__Noreturn] = ACTIONS(4068), + [anon_sym_noreturn] = ACTIONS(4068), + [anon_sym__Nonnull] = ACTIONS(4068), + [anon_sym_mutable] = ACTIONS(4068), + [anon_sym_constinit] = ACTIONS(4068), + [anon_sym_consteval] = ACTIONS(4068), + [anon_sym_alignas] = ACTIONS(4068), + [anon_sym__Alignas] = ACTIONS(4068), + [sym_primitive_type] = ACTIONS(4068), + [anon_sym_enum] = ACTIONS(4068), + [anon_sym_class] = ACTIONS(4068), + [anon_sym_struct] = ACTIONS(4068), + [anon_sym_union] = ACTIONS(4068), + [anon_sym_typename] = ACTIONS(4068), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4068), + [anon_sym_decltype] = ACTIONS(4068), + [anon_sym_explicit] = ACTIONS(4068), + [anon_sym_private] = ACTIONS(4068), + [anon_sym_template] = ACTIONS(4068), + [anon_sym_operator] = ACTIONS(4068), + [anon_sym_friend] = ACTIONS(4068), + [anon_sym_public] = ACTIONS(4068), + [anon_sym_protected] = ACTIONS(4068), + [anon_sym_static_assert] = ACTIONS(4068), + [anon_sym_LBRACK_COLON] = ACTIONS(4070), + }, [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), + [sym_identifier] = ACTIONS(4335), + [aux_sym_preproc_def_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token1] = ACTIONS(4335), + [aux_sym_preproc_if_token2] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4335), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4335), + [sym_preproc_directive] = ACTIONS(4335), + [anon_sym_LPAREN2] = ACTIONS(4337), + [anon_sym_TILDE] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP_AMP] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4335), + [anon_sym_SEMI] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4335), + [anon_sym_typedef] = ACTIONS(4335), + [anon_sym_virtual] = ACTIONS(4335), + [anon_sym_extern] = ACTIONS(4335), + [anon_sym___attribute__] = ACTIONS(4335), + [anon_sym___attribute] = ACTIONS(4335), + [anon_sym_using] = ACTIONS(4335), + [anon_sym_COLON_COLON] = ACTIONS(4337), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4337), + [anon_sym___declspec] = ACTIONS(4335), + [anon_sym___based] = ACTIONS(4335), + [anon_sym_signed] = ACTIONS(4335), + [anon_sym_unsigned] = ACTIONS(4335), + [anon_sym_long] = ACTIONS(4335), + [anon_sym_short] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4335), + [anon_sym_static] = ACTIONS(4335), + [anon_sym_register] = ACTIONS(4335), + [anon_sym_inline] = ACTIONS(4335), + [anon_sym___inline] = ACTIONS(4335), + [anon_sym___inline__] = ACTIONS(4335), + [anon_sym___forceinline] = ACTIONS(4335), + [anon_sym_thread_local] = ACTIONS(4335), + [anon_sym___thread] = ACTIONS(4335), + [anon_sym_const] = ACTIONS(4335), + [anon_sym_constexpr] = ACTIONS(4335), + [anon_sym_volatile] = ACTIONS(4335), + [anon_sym_restrict] = ACTIONS(4335), + [anon_sym___restrict__] = ACTIONS(4335), + [anon_sym__Atomic] = ACTIONS(4335), + [anon_sym__Noreturn] = ACTIONS(4335), + [anon_sym_noreturn] = ACTIONS(4335), + [anon_sym__Nonnull] = ACTIONS(4335), + [anon_sym_mutable] = ACTIONS(4335), + [anon_sym_constinit] = ACTIONS(4335), + [anon_sym_consteval] = ACTIONS(4335), + [anon_sym_alignas] = ACTIONS(4335), + [anon_sym__Alignas] = ACTIONS(4335), + [sym_primitive_type] = ACTIONS(4335), + [anon_sym_enum] = ACTIONS(4335), + [anon_sym_class] = ACTIONS(4335), + [anon_sym_struct] = ACTIONS(4335), + [anon_sym_union] = ACTIONS(4335), + [anon_sym_typename] = ACTIONS(4335), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4335), + [anon_sym_decltype] = ACTIONS(4335), + [anon_sym_explicit] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_template] = ACTIONS(4335), + [anon_sym_operator] = ACTIONS(4335), + [anon_sym_friend] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_static_assert] = ACTIONS(4335), + [anon_sym_LBRACK_COLON] = ACTIONS(4337), }, [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_identifier] = ACTIONS(9541), + [anon_sym_LPAREN2] = ACTIONS(9543), + [anon_sym_TILDE] = ACTIONS(9543), + [anon_sym_STAR] = ACTIONS(9543), + [anon_sym_AMP_AMP] = ACTIONS(9543), + [anon_sym_AMP] = ACTIONS(9541), + [anon_sym___extension__] = ACTIONS(9541), + [anon_sym_virtual] = ACTIONS(9541), + [anon_sym_extern] = ACTIONS(9541), + [anon_sym___attribute__] = ACTIONS(9541), + [anon_sym___attribute] = ACTIONS(9541), + [anon_sym_using] = ACTIONS(9541), + [anon_sym_COLON_COLON] = ACTIONS(9543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9543), + [anon_sym___declspec] = ACTIONS(9541), + [anon_sym___based] = ACTIONS(9541), + [anon_sym___cdecl] = ACTIONS(9541), + [anon_sym___clrcall] = ACTIONS(9541), + [anon_sym___stdcall] = ACTIONS(9541), + [anon_sym___fastcall] = ACTIONS(9541), + [anon_sym___thiscall] = ACTIONS(9541), + [anon_sym___vectorcall] = ACTIONS(9541), + [anon_sym_LBRACE] = ACTIONS(9543), + [anon_sym_signed] = ACTIONS(9541), + [anon_sym_unsigned] = ACTIONS(9541), + [anon_sym_long] = ACTIONS(9541), + [anon_sym_short] = ACTIONS(9541), + [anon_sym_LBRACK] = ACTIONS(9541), + [anon_sym_static] = ACTIONS(9541), + [anon_sym_register] = ACTIONS(9541), + [anon_sym_inline] = ACTIONS(9541), + [anon_sym___inline] = ACTIONS(9541), + [anon_sym___inline__] = ACTIONS(9541), + [anon_sym___forceinline] = ACTIONS(9541), + [anon_sym_thread_local] = ACTIONS(9541), + [anon_sym___thread] = ACTIONS(9541), + [anon_sym_const] = ACTIONS(9541), + [anon_sym_constexpr] = ACTIONS(9541), + [anon_sym_volatile] = ACTIONS(9541), + [anon_sym_restrict] = ACTIONS(9541), + [anon_sym___restrict__] = ACTIONS(9541), + [anon_sym__Atomic] = ACTIONS(9541), + [anon_sym__Noreturn] = ACTIONS(9541), + [anon_sym_noreturn] = ACTIONS(9541), + [anon_sym__Nonnull] = ACTIONS(9541), + [anon_sym_mutable] = ACTIONS(9541), + [anon_sym_constinit] = ACTIONS(9541), + [anon_sym_consteval] = ACTIONS(9541), + [anon_sym_alignas] = ACTIONS(9541), + [anon_sym__Alignas] = ACTIONS(9541), + [sym_primitive_type] = ACTIONS(9541), + [anon_sym_enum] = ACTIONS(9541), + [anon_sym_class] = ACTIONS(9541), + [anon_sym_struct] = ACTIONS(9541), + [anon_sym_union] = ACTIONS(9541), + [anon_sym_typename] = ACTIONS(9541), + [anon_sym_DASH_GT] = ACTIONS(9543), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9541), + [anon_sym_decltype] = ACTIONS(9541), + [anon_sym_explicit] = ACTIONS(9541), + [anon_sym_template] = ACTIONS(9541), + [anon_sym_operator] = ACTIONS(9541), + [anon_sym_friend] = ACTIONS(9541), + [anon_sym_noexcept] = ACTIONS(9541), + [anon_sym_throw] = ACTIONS(9541), + [anon_sym_concept] = ACTIONS(9541), + [anon_sym_requires] = ACTIONS(9541), + [anon_sym_LBRACK_COLON] = ACTIONS(9543), }, [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_identifier] = ACTIONS(3712), + [aux_sym_preproc_def_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token1] = ACTIONS(3712), + [aux_sym_preproc_if_token2] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3712), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3712), + [sym_preproc_directive] = ACTIONS(3712), + [anon_sym_LPAREN2] = ACTIONS(3714), + [anon_sym_TILDE] = ACTIONS(3714), + [anon_sym_STAR] = ACTIONS(3714), + [anon_sym_AMP_AMP] = ACTIONS(3714), + [anon_sym_AMP] = ACTIONS(3712), + [anon_sym_SEMI] = ACTIONS(3714), + [anon_sym___extension__] = ACTIONS(3712), + [anon_sym_typedef] = ACTIONS(3712), + [anon_sym_virtual] = ACTIONS(3712), + [anon_sym_extern] = ACTIONS(3712), + [anon_sym___attribute__] = ACTIONS(3712), + [anon_sym___attribute] = ACTIONS(3712), + [anon_sym_using] = ACTIONS(3712), + [anon_sym_COLON_COLON] = ACTIONS(3714), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3714), + [anon_sym___declspec] = ACTIONS(3712), + [anon_sym___based] = ACTIONS(3712), + [anon_sym_signed] = ACTIONS(3712), + [anon_sym_unsigned] = ACTIONS(3712), + [anon_sym_long] = ACTIONS(3712), + [anon_sym_short] = ACTIONS(3712), + [anon_sym_LBRACK] = ACTIONS(3712), + [anon_sym_static] = ACTIONS(3712), + [anon_sym_register] = ACTIONS(3712), + [anon_sym_inline] = ACTIONS(3712), + [anon_sym___inline] = ACTIONS(3712), + [anon_sym___inline__] = ACTIONS(3712), + [anon_sym___forceinline] = ACTIONS(3712), + [anon_sym_thread_local] = ACTIONS(3712), + [anon_sym___thread] = ACTIONS(3712), + [anon_sym_const] = ACTIONS(3712), + [anon_sym_constexpr] = ACTIONS(3712), + [anon_sym_volatile] = ACTIONS(3712), + [anon_sym_restrict] = ACTIONS(3712), + [anon_sym___restrict__] = ACTIONS(3712), + [anon_sym__Atomic] = ACTIONS(3712), + [anon_sym__Noreturn] = ACTIONS(3712), + [anon_sym_noreturn] = ACTIONS(3712), + [anon_sym__Nonnull] = ACTIONS(3712), + [anon_sym_mutable] = ACTIONS(3712), + [anon_sym_constinit] = ACTIONS(3712), + [anon_sym_consteval] = ACTIONS(3712), + [anon_sym_alignas] = ACTIONS(3712), + [anon_sym__Alignas] = ACTIONS(3712), + [sym_primitive_type] = ACTIONS(3712), + [anon_sym_enum] = ACTIONS(3712), + [anon_sym_class] = ACTIONS(3712), + [anon_sym_struct] = ACTIONS(3712), + [anon_sym_union] = ACTIONS(3712), + [anon_sym_typename] = ACTIONS(3712), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3712), + [anon_sym_decltype] = ACTIONS(3712), + [anon_sym_explicit] = ACTIONS(3712), + [anon_sym_private] = ACTIONS(3712), + [anon_sym_template] = ACTIONS(3712), + [anon_sym_operator] = ACTIONS(3712), + [anon_sym_friend] = ACTIONS(3712), + [anon_sym_public] = ACTIONS(3712), + [anon_sym_protected] = ACTIONS(3712), + [anon_sym_static_assert] = ACTIONS(3712), + [anon_sym_LBRACK_COLON] = ACTIONS(3714), }, [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_identifier] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym_RBRACE] = ACTIONS(4329), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_friend] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), }, [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_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(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(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token2] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_private] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_friend] = ACTIONS(3708), + [anon_sym_public] = ACTIONS(3708), + [anon_sym_protected] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), }, [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_identifier] = 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_TILDE] = ACTIONS(3941), + [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_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_typename] = ACTIONS(3939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3939), + [anon_sym_decltype] = ACTIONS(3939), + [anon_sym_explicit] = ACTIONS(3939), + [anon_sym_private] = ACTIONS(3939), + [anon_sym_template] = ACTIONS(3939), + [anon_sym_operator] = ACTIONS(3939), + [anon_sym_friend] = ACTIONS(3939), + [anon_sym_public] = ACTIONS(3939), + [anon_sym_protected] = ACTIONS(3939), + [anon_sym_static_assert] = ACTIONS(3939), + [anon_sym_LBRACK_COLON] = ACTIONS(3941), }, [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_identifier] = ACTIONS(4146), + [aux_sym_preproc_def_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token1] = ACTIONS(4146), + [aux_sym_preproc_if_token2] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4146), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4146), + [sym_preproc_directive] = ACTIONS(4146), + [anon_sym_LPAREN2] = ACTIONS(4148), + [anon_sym_TILDE] = ACTIONS(4148), + [anon_sym_STAR] = ACTIONS(4148), + [anon_sym_AMP_AMP] = ACTIONS(4148), + [anon_sym_AMP] = ACTIONS(4146), + [anon_sym_SEMI] = ACTIONS(4148), + [anon_sym___extension__] = ACTIONS(4146), + [anon_sym_typedef] = ACTIONS(4146), + [anon_sym_virtual] = ACTIONS(4146), + [anon_sym_extern] = ACTIONS(4146), + [anon_sym___attribute__] = ACTIONS(4146), + [anon_sym___attribute] = ACTIONS(4146), + [anon_sym_using] = ACTIONS(4146), + [anon_sym_COLON_COLON] = ACTIONS(4148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4148), + [anon_sym___declspec] = ACTIONS(4146), + [anon_sym___based] = ACTIONS(4146), + [anon_sym_signed] = ACTIONS(4146), + [anon_sym_unsigned] = ACTIONS(4146), + [anon_sym_long] = ACTIONS(4146), + [anon_sym_short] = ACTIONS(4146), + [anon_sym_LBRACK] = ACTIONS(4146), + [anon_sym_static] = ACTIONS(4146), + [anon_sym_register] = ACTIONS(4146), + [anon_sym_inline] = ACTIONS(4146), + [anon_sym___inline] = ACTIONS(4146), + [anon_sym___inline__] = ACTIONS(4146), + [anon_sym___forceinline] = ACTIONS(4146), + [anon_sym_thread_local] = ACTIONS(4146), + [anon_sym___thread] = ACTIONS(4146), + [anon_sym_const] = ACTIONS(4146), + [anon_sym_constexpr] = ACTIONS(4146), + [anon_sym_volatile] = ACTIONS(4146), + [anon_sym_restrict] = ACTIONS(4146), + [anon_sym___restrict__] = ACTIONS(4146), + [anon_sym__Atomic] = ACTIONS(4146), + [anon_sym__Noreturn] = ACTIONS(4146), + [anon_sym_noreturn] = ACTIONS(4146), + [anon_sym__Nonnull] = ACTIONS(4146), + [anon_sym_mutable] = ACTIONS(4146), + [anon_sym_constinit] = ACTIONS(4146), + [anon_sym_consteval] = ACTIONS(4146), + [anon_sym_alignas] = ACTIONS(4146), + [anon_sym__Alignas] = ACTIONS(4146), + [sym_primitive_type] = ACTIONS(4146), + [anon_sym_enum] = ACTIONS(4146), + [anon_sym_class] = ACTIONS(4146), + [anon_sym_struct] = ACTIONS(4146), + [anon_sym_union] = ACTIONS(4146), + [anon_sym_typename] = ACTIONS(4146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4146), + [anon_sym_decltype] = ACTIONS(4146), + [anon_sym_explicit] = ACTIONS(4146), + [anon_sym_private] = ACTIONS(4146), + [anon_sym_template] = ACTIONS(4146), + [anon_sym_operator] = ACTIONS(4146), + [anon_sym_friend] = ACTIONS(4146), + [anon_sym_public] = ACTIONS(4146), + [anon_sym_protected] = ACTIONS(4146), + [anon_sym_static_assert] = ACTIONS(4146), + [anon_sym_LBRACK_COLON] = ACTIONS(4148), }, [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_identifier] = ACTIONS(3993), + [aux_sym_preproc_def_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token1] = ACTIONS(3993), + [aux_sym_preproc_if_token2] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3993), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3993), + [sym_preproc_directive] = ACTIONS(3993), + [anon_sym_LPAREN2] = ACTIONS(3995), + [anon_sym_TILDE] = ACTIONS(3995), + [anon_sym_STAR] = ACTIONS(3995), + [anon_sym_AMP_AMP] = ACTIONS(3995), + [anon_sym_AMP] = ACTIONS(3993), + [anon_sym_SEMI] = ACTIONS(3995), + [anon_sym___extension__] = ACTIONS(3993), + [anon_sym_typedef] = ACTIONS(3993), + [anon_sym_virtual] = ACTIONS(3993), + [anon_sym_extern] = ACTIONS(3993), + [anon_sym___attribute__] = ACTIONS(3993), + [anon_sym___attribute] = ACTIONS(3993), + [anon_sym_using] = ACTIONS(3993), + [anon_sym_COLON_COLON] = ACTIONS(3995), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3995), + [anon_sym___declspec] = ACTIONS(3993), + [anon_sym___based] = ACTIONS(3993), + [anon_sym_signed] = ACTIONS(3993), + [anon_sym_unsigned] = ACTIONS(3993), + [anon_sym_long] = ACTIONS(3993), + [anon_sym_short] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_static] = ACTIONS(3993), + [anon_sym_register] = ACTIONS(3993), + [anon_sym_inline] = ACTIONS(3993), + [anon_sym___inline] = ACTIONS(3993), + [anon_sym___inline__] = ACTIONS(3993), + [anon_sym___forceinline] = ACTIONS(3993), + [anon_sym_thread_local] = ACTIONS(3993), + [anon_sym___thread] = ACTIONS(3993), + [anon_sym_const] = ACTIONS(3993), + [anon_sym_constexpr] = ACTIONS(3993), + [anon_sym_volatile] = ACTIONS(3993), + [anon_sym_restrict] = ACTIONS(3993), + [anon_sym___restrict__] = ACTIONS(3993), + [anon_sym__Atomic] = ACTIONS(3993), + [anon_sym__Noreturn] = ACTIONS(3993), + [anon_sym_noreturn] = ACTIONS(3993), + [anon_sym__Nonnull] = ACTIONS(3993), + [anon_sym_mutable] = ACTIONS(3993), + [anon_sym_constinit] = ACTIONS(3993), + [anon_sym_consteval] = ACTIONS(3993), + [anon_sym_alignas] = ACTIONS(3993), + [anon_sym__Alignas] = ACTIONS(3993), + [sym_primitive_type] = ACTIONS(3993), + [anon_sym_enum] = ACTIONS(3993), + [anon_sym_class] = ACTIONS(3993), + [anon_sym_struct] = ACTIONS(3993), + [anon_sym_union] = ACTIONS(3993), + [anon_sym_typename] = ACTIONS(3993), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3993), + [anon_sym_decltype] = ACTIONS(3993), + [anon_sym_explicit] = ACTIONS(3993), + [anon_sym_private] = ACTIONS(3993), + [anon_sym_template] = ACTIONS(3993), + [anon_sym_operator] = ACTIONS(3993), + [anon_sym_friend] = ACTIONS(3993), + [anon_sym_public] = ACTIONS(3993), + [anon_sym_protected] = ACTIONS(3993), + [anon_sym_static_assert] = ACTIONS(3993), + [anon_sym_LBRACK_COLON] = ACTIONS(3995), }, [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(3997), + [aux_sym_preproc_def_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token1] = ACTIONS(3997), + [aux_sym_preproc_if_token2] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3997), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3997), + [sym_preproc_directive] = ACTIONS(3997), + [anon_sym_LPAREN2] = ACTIONS(3999), + [anon_sym_TILDE] = ACTIONS(3999), + [anon_sym_STAR] = ACTIONS(3999), + [anon_sym_AMP_AMP] = ACTIONS(3999), + [anon_sym_AMP] = ACTIONS(3997), + [anon_sym_SEMI] = ACTIONS(3999), + [anon_sym___extension__] = ACTIONS(3997), + [anon_sym_typedef] = ACTIONS(3997), + [anon_sym_virtual] = ACTIONS(3997), + [anon_sym_extern] = ACTIONS(3997), + [anon_sym___attribute__] = ACTIONS(3997), + [anon_sym___attribute] = ACTIONS(3997), + [anon_sym_using] = ACTIONS(3997), + [anon_sym_COLON_COLON] = ACTIONS(3999), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3999), + [anon_sym___declspec] = ACTIONS(3997), + [anon_sym___based] = ACTIONS(3997), + [anon_sym_signed] = ACTIONS(3997), + [anon_sym_unsigned] = ACTIONS(3997), + [anon_sym_long] = ACTIONS(3997), + [anon_sym_short] = ACTIONS(3997), + [anon_sym_LBRACK] = ACTIONS(3997), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_register] = ACTIONS(3997), + [anon_sym_inline] = ACTIONS(3997), + [anon_sym___inline] = ACTIONS(3997), + [anon_sym___inline__] = ACTIONS(3997), + [anon_sym___forceinline] = ACTIONS(3997), + [anon_sym_thread_local] = ACTIONS(3997), + [anon_sym___thread] = ACTIONS(3997), + [anon_sym_const] = ACTIONS(3997), + [anon_sym_constexpr] = ACTIONS(3997), + [anon_sym_volatile] = ACTIONS(3997), + [anon_sym_restrict] = ACTIONS(3997), + [anon_sym___restrict__] = ACTIONS(3997), + [anon_sym__Atomic] = ACTIONS(3997), + [anon_sym__Noreturn] = ACTIONS(3997), + [anon_sym_noreturn] = ACTIONS(3997), + [anon_sym__Nonnull] = ACTIONS(3997), + [anon_sym_mutable] = ACTIONS(3997), + [anon_sym_constinit] = ACTIONS(3997), + [anon_sym_consteval] = ACTIONS(3997), + [anon_sym_alignas] = ACTIONS(3997), + [anon_sym__Alignas] = ACTIONS(3997), + [sym_primitive_type] = ACTIONS(3997), + [anon_sym_enum] = ACTIONS(3997), + [anon_sym_class] = ACTIONS(3997), + [anon_sym_struct] = ACTIONS(3997), + [anon_sym_union] = ACTIONS(3997), + [anon_sym_typename] = ACTIONS(3997), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3997), + [anon_sym_decltype] = ACTIONS(3997), + [anon_sym_explicit] = ACTIONS(3997), + [anon_sym_private] = ACTIONS(3997), + [anon_sym_template] = ACTIONS(3997), + [anon_sym_operator] = ACTIONS(3997), + [anon_sym_friend] = ACTIONS(3997), + [anon_sym_public] = ACTIONS(3997), + [anon_sym_protected] = ACTIONS(3997), + [anon_sym_static_assert] = ACTIONS(3997), + [anon_sym_LBRACK_COLON] = ACTIONS(3999), }, [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(4021), + [aux_sym_preproc_def_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token1] = ACTIONS(4021), + [aux_sym_preproc_if_token2] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4021), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4021), + [sym_preproc_directive] = ACTIONS(4021), + [anon_sym_LPAREN2] = ACTIONS(4023), + [anon_sym_TILDE] = ACTIONS(4023), + [anon_sym_STAR] = ACTIONS(4023), + [anon_sym_AMP_AMP] = ACTIONS(4023), + [anon_sym_AMP] = ACTIONS(4021), + [anon_sym_SEMI] = ACTIONS(4023), + [anon_sym___extension__] = ACTIONS(4021), + [anon_sym_typedef] = ACTIONS(4021), + [anon_sym_virtual] = ACTIONS(4021), + [anon_sym_extern] = ACTIONS(4021), + [anon_sym___attribute__] = ACTIONS(4021), + [anon_sym___attribute] = ACTIONS(4021), + [anon_sym_using] = ACTIONS(4021), + [anon_sym_COLON_COLON] = ACTIONS(4023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4023), + [anon_sym___declspec] = ACTIONS(4021), + [anon_sym___based] = ACTIONS(4021), + [anon_sym_signed] = ACTIONS(4021), + [anon_sym_unsigned] = ACTIONS(4021), + [anon_sym_long] = ACTIONS(4021), + [anon_sym_short] = ACTIONS(4021), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_register] = ACTIONS(4021), + [anon_sym_inline] = ACTIONS(4021), + [anon_sym___inline] = ACTIONS(4021), + [anon_sym___inline__] = ACTIONS(4021), + [anon_sym___forceinline] = ACTIONS(4021), + [anon_sym_thread_local] = ACTIONS(4021), + [anon_sym___thread] = ACTIONS(4021), + [anon_sym_const] = ACTIONS(4021), + [anon_sym_constexpr] = ACTIONS(4021), + [anon_sym_volatile] = ACTIONS(4021), + [anon_sym_restrict] = ACTIONS(4021), + [anon_sym___restrict__] = ACTIONS(4021), + [anon_sym__Atomic] = ACTIONS(4021), + [anon_sym__Noreturn] = ACTIONS(4021), + [anon_sym_noreturn] = ACTIONS(4021), + [anon_sym__Nonnull] = ACTIONS(4021), + [anon_sym_mutable] = ACTIONS(4021), + [anon_sym_constinit] = ACTIONS(4021), + [anon_sym_consteval] = ACTIONS(4021), + [anon_sym_alignas] = ACTIONS(4021), + [anon_sym__Alignas] = ACTIONS(4021), + [sym_primitive_type] = ACTIONS(4021), + [anon_sym_enum] = ACTIONS(4021), + [anon_sym_class] = ACTIONS(4021), + [anon_sym_struct] = ACTIONS(4021), + [anon_sym_union] = ACTIONS(4021), + [anon_sym_typename] = ACTIONS(4021), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4021), + [anon_sym_decltype] = ACTIONS(4021), + [anon_sym_explicit] = ACTIONS(4021), + [anon_sym_private] = ACTIONS(4021), + [anon_sym_template] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(4021), + [anon_sym_friend] = ACTIONS(4021), + [anon_sym_public] = ACTIONS(4021), + [anon_sym_protected] = ACTIONS(4021), + [anon_sym_static_assert] = ACTIONS(4021), + [anon_sym_LBRACK_COLON] = ACTIONS(4023), }, [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_identifier] = ACTIONS(3708), + [aux_sym_preproc_def_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token1] = ACTIONS(3708), + [aux_sym_preproc_if_token2] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3708), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3708), + [sym_preproc_directive] = ACTIONS(3708), + [anon_sym_LPAREN2] = ACTIONS(3710), + [anon_sym_TILDE] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3710), + [anon_sym_AMP_AMP] = ACTIONS(3710), + [anon_sym_AMP] = ACTIONS(3708), + [anon_sym_SEMI] = ACTIONS(3710), + [anon_sym___extension__] = ACTIONS(3708), + [anon_sym_typedef] = ACTIONS(3708), + [anon_sym_virtual] = ACTIONS(3708), + [anon_sym_extern] = ACTIONS(3708), + [anon_sym___attribute__] = ACTIONS(3708), + [anon_sym___attribute] = ACTIONS(3708), + [anon_sym_using] = ACTIONS(3708), + [anon_sym_COLON_COLON] = ACTIONS(3710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3710), + [anon_sym___declspec] = ACTIONS(3708), + [anon_sym___based] = ACTIONS(3708), + [anon_sym_signed] = ACTIONS(3708), + [anon_sym_unsigned] = ACTIONS(3708), + [anon_sym_long] = ACTIONS(3708), + [anon_sym_short] = ACTIONS(3708), + [anon_sym_LBRACK] = ACTIONS(3708), + [anon_sym_static] = ACTIONS(3708), + [anon_sym_register] = ACTIONS(3708), + [anon_sym_inline] = ACTIONS(3708), + [anon_sym___inline] = ACTIONS(3708), + [anon_sym___inline__] = ACTIONS(3708), + [anon_sym___forceinline] = ACTIONS(3708), + [anon_sym_thread_local] = ACTIONS(3708), + [anon_sym___thread] = ACTIONS(3708), + [anon_sym_const] = ACTIONS(3708), + [anon_sym_constexpr] = ACTIONS(3708), + [anon_sym_volatile] = ACTIONS(3708), + [anon_sym_restrict] = ACTIONS(3708), + [anon_sym___restrict__] = ACTIONS(3708), + [anon_sym__Atomic] = ACTIONS(3708), + [anon_sym__Noreturn] = ACTIONS(3708), + [anon_sym_noreturn] = ACTIONS(3708), + [anon_sym__Nonnull] = ACTIONS(3708), + [anon_sym_mutable] = ACTIONS(3708), + [anon_sym_constinit] = ACTIONS(3708), + [anon_sym_consteval] = ACTIONS(3708), + [anon_sym_alignas] = ACTIONS(3708), + [anon_sym__Alignas] = ACTIONS(3708), + [sym_primitive_type] = ACTIONS(3708), + [anon_sym_enum] = ACTIONS(3708), + [anon_sym_class] = ACTIONS(3708), + [anon_sym_struct] = ACTIONS(3708), + [anon_sym_union] = ACTIONS(3708), + [anon_sym_typename] = ACTIONS(3708), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3708), + [anon_sym_decltype] = ACTIONS(3708), + [anon_sym_explicit] = ACTIONS(3708), + [anon_sym_private] = ACTIONS(3708), + [anon_sym_template] = ACTIONS(3708), + [anon_sym_operator] = ACTIONS(3708), + [anon_sym_friend] = ACTIONS(3708), + [anon_sym_public] = ACTIONS(3708), + [anon_sym_protected] = ACTIONS(3708), + [anon_sym_static_assert] = ACTIONS(3708), + [anon_sym_LBRACK_COLON] = ACTIONS(3710), }, [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_identifier] = ACTIONS(3985), + [aux_sym_preproc_def_token1] = ACTIONS(3985), + [aux_sym_preproc_if_token1] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3985), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3985), + [sym_preproc_directive] = ACTIONS(3985), + [anon_sym_LPAREN2] = ACTIONS(3987), + [anon_sym_TILDE] = ACTIONS(3987), + [anon_sym_STAR] = ACTIONS(3987), + [anon_sym_AMP_AMP] = ACTIONS(3987), + [anon_sym_AMP] = ACTIONS(3985), + [anon_sym_SEMI] = ACTIONS(3987), + [anon_sym___extension__] = ACTIONS(3985), + [anon_sym_typedef] = ACTIONS(3985), + [anon_sym_virtual] = ACTIONS(3985), + [anon_sym_extern] = ACTIONS(3985), + [anon_sym___attribute__] = ACTIONS(3985), + [anon_sym___attribute] = ACTIONS(3985), + [anon_sym_using] = ACTIONS(3985), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3987), + [anon_sym___declspec] = ACTIONS(3985), + [anon_sym___based] = ACTIONS(3985), + [anon_sym_RBRACE] = ACTIONS(3987), + [anon_sym_signed] = ACTIONS(3985), + [anon_sym_unsigned] = ACTIONS(3985), + [anon_sym_long] = ACTIONS(3985), + [anon_sym_short] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3985), + [anon_sym_static] = ACTIONS(3985), + [anon_sym_register] = ACTIONS(3985), + [anon_sym_inline] = ACTIONS(3985), + [anon_sym___inline] = ACTIONS(3985), + [anon_sym___inline__] = ACTIONS(3985), + [anon_sym___forceinline] = ACTIONS(3985), + [anon_sym_thread_local] = ACTIONS(3985), + [anon_sym___thread] = ACTIONS(3985), + [anon_sym_const] = ACTIONS(3985), + [anon_sym_constexpr] = ACTIONS(3985), + [anon_sym_volatile] = ACTIONS(3985), + [anon_sym_restrict] = ACTIONS(3985), + [anon_sym___restrict__] = ACTIONS(3985), + [anon_sym__Atomic] = ACTIONS(3985), + [anon_sym__Noreturn] = ACTIONS(3985), + [anon_sym_noreturn] = ACTIONS(3985), + [anon_sym__Nonnull] = ACTIONS(3985), + [anon_sym_mutable] = ACTIONS(3985), + [anon_sym_constinit] = ACTIONS(3985), + [anon_sym_consteval] = ACTIONS(3985), + [anon_sym_alignas] = ACTIONS(3985), + [anon_sym__Alignas] = ACTIONS(3985), + [sym_primitive_type] = ACTIONS(3985), + [anon_sym_enum] = ACTIONS(3985), + [anon_sym_class] = ACTIONS(3985), + [anon_sym_struct] = ACTIONS(3985), + [anon_sym_union] = ACTIONS(3985), + [anon_sym_typename] = ACTIONS(3985), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3985), + [anon_sym_decltype] = ACTIONS(3985), + [anon_sym_explicit] = ACTIONS(3985), + [anon_sym_private] = ACTIONS(3985), + [anon_sym_template] = ACTIONS(3985), + [anon_sym_operator] = ACTIONS(3985), + [anon_sym_friend] = ACTIONS(3985), + [anon_sym_public] = ACTIONS(3985), + [anon_sym_protected] = ACTIONS(3985), + [anon_sym_static_assert] = ACTIONS(3985), + [anon_sym_LBRACK_COLON] = ACTIONS(3987), }, [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(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token2] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_friend] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), }, [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(3452), + [aux_sym_preproc_def_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token1] = ACTIONS(3452), + [aux_sym_preproc_if_token2] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3452), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3452), + [sym_preproc_directive] = ACTIONS(3452), + [anon_sym_LPAREN2] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_STAR] = ACTIONS(3454), + [anon_sym_AMP_AMP] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym___extension__] = ACTIONS(3452), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(3452), + [anon_sym_extern] = ACTIONS(3452), + [anon_sym___attribute__] = ACTIONS(3452), + [anon_sym___attribute] = ACTIONS(3452), + [anon_sym_using] = ACTIONS(3452), + [anon_sym_COLON_COLON] = ACTIONS(3454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3454), + [anon_sym___declspec] = ACTIONS(3452), + [anon_sym___based] = ACTIONS(3452), + [anon_sym_signed] = ACTIONS(3452), + [anon_sym_unsigned] = ACTIONS(3452), + [anon_sym_long] = ACTIONS(3452), + [anon_sym_short] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3452), + [anon_sym_register] = ACTIONS(3452), + [anon_sym_inline] = ACTIONS(3452), + [anon_sym___inline] = ACTIONS(3452), + [anon_sym___inline__] = ACTIONS(3452), + [anon_sym___forceinline] = ACTIONS(3452), + [anon_sym_thread_local] = ACTIONS(3452), + [anon_sym___thread] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_constexpr] = ACTIONS(3452), + [anon_sym_volatile] = ACTIONS(3452), + [anon_sym_restrict] = ACTIONS(3452), + [anon_sym___restrict__] = ACTIONS(3452), + [anon_sym__Atomic] = ACTIONS(3452), + [anon_sym__Noreturn] = ACTIONS(3452), + [anon_sym_noreturn] = ACTIONS(3452), + [anon_sym__Nonnull] = ACTIONS(3452), + [anon_sym_mutable] = ACTIONS(3452), + [anon_sym_constinit] = ACTIONS(3452), + [anon_sym_consteval] = ACTIONS(3452), + [anon_sym_alignas] = ACTIONS(3452), + [anon_sym__Alignas] = ACTIONS(3452), + [sym_primitive_type] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_class] = ACTIONS(3452), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_typename] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3452), + [anon_sym_decltype] = ACTIONS(3452), + [anon_sym_explicit] = ACTIONS(3452), + [anon_sym_private] = ACTIONS(3452), + [anon_sym_template] = ACTIONS(3452), + [anon_sym_operator] = ACTIONS(3452), + [anon_sym_friend] = ACTIONS(3452), + [anon_sym_public] = ACTIONS(3452), + [anon_sym_protected] = ACTIONS(3452), + [anon_sym_static_assert] = ACTIONS(3452), + [anon_sym_LBRACK_COLON] = ACTIONS(3454), }, [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_identifier] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym_RBRACE] = ACTIONS(4228), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_friend] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), }, [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(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(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(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_identifier] = ACTIONS(3886), + [aux_sym_preproc_def_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token1] = ACTIONS(3886), + [aux_sym_preproc_if_token2] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3886), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3886), + [sym_preproc_directive] = ACTIONS(3886), + [anon_sym_LPAREN2] = ACTIONS(3888), + [anon_sym_TILDE] = ACTIONS(3888), + [anon_sym_STAR] = ACTIONS(3888), + [anon_sym_AMP_AMP] = ACTIONS(3888), + [anon_sym_AMP] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym___extension__] = ACTIONS(3886), + [anon_sym_typedef] = ACTIONS(3886), + [anon_sym_virtual] = ACTIONS(3886), + [anon_sym_extern] = ACTIONS(3886), + [anon_sym___attribute__] = ACTIONS(3886), + [anon_sym___attribute] = ACTIONS(3886), + [anon_sym_using] = ACTIONS(3886), + [anon_sym_COLON_COLON] = ACTIONS(3888), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3888), + [anon_sym___declspec] = ACTIONS(3886), + [anon_sym___based] = ACTIONS(3886), + [anon_sym_signed] = ACTIONS(3886), + [anon_sym_unsigned] = ACTIONS(3886), + [anon_sym_long] = ACTIONS(3886), + [anon_sym_short] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3886), + [anon_sym_static] = ACTIONS(3886), + [anon_sym_register] = ACTIONS(3886), + [anon_sym_inline] = ACTIONS(3886), + [anon_sym___inline] = ACTIONS(3886), + [anon_sym___inline__] = ACTIONS(3886), + [anon_sym___forceinline] = ACTIONS(3886), + [anon_sym_thread_local] = ACTIONS(3886), + [anon_sym___thread] = ACTIONS(3886), + [anon_sym_const] = ACTIONS(3886), + [anon_sym_constexpr] = ACTIONS(3886), + [anon_sym_volatile] = ACTIONS(3886), + [anon_sym_restrict] = ACTIONS(3886), + [anon_sym___restrict__] = ACTIONS(3886), + [anon_sym__Atomic] = ACTIONS(3886), + [anon_sym__Noreturn] = ACTIONS(3886), + [anon_sym_noreturn] = ACTIONS(3886), + [anon_sym__Nonnull] = ACTIONS(3886), + [anon_sym_mutable] = ACTIONS(3886), + [anon_sym_constinit] = ACTIONS(3886), + [anon_sym_consteval] = ACTIONS(3886), + [anon_sym_alignas] = ACTIONS(3886), + [anon_sym__Alignas] = ACTIONS(3886), + [sym_primitive_type] = ACTIONS(3886), + [anon_sym_enum] = ACTIONS(3886), + [anon_sym_class] = ACTIONS(3886), + [anon_sym_struct] = ACTIONS(3886), + [anon_sym_union] = ACTIONS(3886), + [anon_sym_typename] = ACTIONS(3886), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3886), + [anon_sym_decltype] = ACTIONS(3886), + [anon_sym_explicit] = ACTIONS(3886), + [anon_sym_private] = ACTIONS(3886), + [anon_sym_template] = ACTIONS(3886), + [anon_sym_operator] = ACTIONS(3886), + [anon_sym_friend] = ACTIONS(3886), + [anon_sym_public] = ACTIONS(3886), + [anon_sym_protected] = ACTIONS(3886), + [anon_sym_static_assert] = ACTIONS(3886), + [anon_sym_LBRACK_COLON] = ACTIONS(3888), }, [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_identifier] = 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_TILDE] = ACTIONS(4078), + [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_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_typename] = ACTIONS(4076), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4076), + [anon_sym_decltype] = ACTIONS(4076), + [anon_sym_explicit] = ACTIONS(4076), + [anon_sym_private] = ACTIONS(4076), + [anon_sym_template] = ACTIONS(4076), + [anon_sym_operator] = ACTIONS(4076), + [anon_sym_friend] = ACTIONS(4076), + [anon_sym_public] = ACTIONS(4076), + [anon_sym_protected] = ACTIONS(4076), + [anon_sym_static_assert] = ACTIONS(4076), + [anon_sym_LBRACK_COLON] = ACTIONS(4078), }, [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), + [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(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), + [sym_string_literal] = STATE(2884), + [sym_raw_string_literal] = STATE(2884), + [sym_identifier] = ACTIONS(9519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9517), + [anon_sym_COMMA] = ACTIONS(9517), + [aux_sym_preproc_if_token2] = ACTIONS(9517), + [aux_sym_preproc_else_token1] = ACTIONS(9517), + [aux_sym_preproc_elif_token1] = ACTIONS(9519), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9517), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9517), + [anon_sym_LPAREN2] = ACTIONS(9517), + [anon_sym_DASH] = ACTIONS(9519), + [anon_sym_PLUS] = ACTIONS(9519), + [anon_sym_STAR] = ACTIONS(9519), + [anon_sym_SLASH] = ACTIONS(9519), + [anon_sym_PERCENT] = ACTIONS(9519), + [anon_sym_PIPE_PIPE] = ACTIONS(9517), + [anon_sym_AMP_AMP] = ACTIONS(9517), + [anon_sym_PIPE] = ACTIONS(9519), + [anon_sym_CARET] = ACTIONS(9519), + [anon_sym_AMP] = ACTIONS(9519), + [anon_sym_EQ_EQ] = ACTIONS(9517), + [anon_sym_BANG_EQ] = ACTIONS(9517), + [anon_sym_GT] = ACTIONS(9519), + [anon_sym_GT_EQ] = ACTIONS(9517), + [anon_sym_LT_EQ] = ACTIONS(9519), + [anon_sym_LT] = ACTIONS(9519), + [anon_sym_LT_LT] = ACTIONS(9519), + [anon_sym_GT_GT] = ACTIONS(9519), + [anon_sym_LBRACK] = ACTIONS(9517), + [anon_sym_EQ] = ACTIONS(9519), + [anon_sym_QMARK] = ACTIONS(9517), + [anon_sym_STAR_EQ] = ACTIONS(9517), + [anon_sym_SLASH_EQ] = ACTIONS(9517), + [anon_sym_PERCENT_EQ] = ACTIONS(9517), + [anon_sym_PLUS_EQ] = ACTIONS(9517), + [anon_sym_DASH_EQ] = ACTIONS(9517), + [anon_sym_LT_LT_EQ] = ACTIONS(9517), + [anon_sym_GT_GT_EQ] = ACTIONS(9517), + [anon_sym_AMP_EQ] = ACTIONS(9517), + [anon_sym_CARET_EQ] = ACTIONS(9517), + [anon_sym_PIPE_EQ] = ACTIONS(9517), + [anon_sym_and_eq] = ACTIONS(9519), + [anon_sym_or_eq] = ACTIONS(9519), + [anon_sym_xor_eq] = ACTIONS(9519), + [anon_sym_LT_EQ_GT] = ACTIONS(9517), + [anon_sym_or] = ACTIONS(9519), + [anon_sym_and] = ACTIONS(9519), + [anon_sym_bitor] = ACTIONS(9519), + [anon_sym_xor] = ACTIONS(9519), + [anon_sym_bitand] = ACTIONS(9519), + [anon_sym_not_eq] = ACTIONS(9519), + [anon_sym_DASH_DASH] = ACTIONS(9517), + [anon_sym_PLUS_PLUS] = ACTIONS(9517), + [anon_sym_DOT] = ACTIONS(9519), + [anon_sym_DOT_STAR] = ACTIONS(9517), + [anon_sym_DASH_GT] = ACTIONS(9517), + [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(9519), }, [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), + [sym_identifier] = ACTIONS(4339), + [aux_sym_preproc_def_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token1] = ACTIONS(4339), + [aux_sym_preproc_if_token2] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4339), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4339), + [sym_preproc_directive] = ACTIONS(4339), + [anon_sym_LPAREN2] = ACTIONS(4341), + [anon_sym_TILDE] = ACTIONS(4341), + [anon_sym_STAR] = ACTIONS(4341), + [anon_sym_AMP_AMP] = ACTIONS(4341), + [anon_sym_AMP] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym___extension__] = ACTIONS(4339), + [anon_sym_typedef] = ACTIONS(4339), + [anon_sym_virtual] = ACTIONS(4339), + [anon_sym_extern] = ACTIONS(4339), + [anon_sym___attribute__] = ACTIONS(4339), + [anon_sym___attribute] = ACTIONS(4339), + [anon_sym_using] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4341), + [anon_sym___declspec] = ACTIONS(4339), + [anon_sym___based] = ACTIONS(4339), + [anon_sym_signed] = ACTIONS(4339), + [anon_sym_unsigned] = ACTIONS(4339), + [anon_sym_long] = ACTIONS(4339), + [anon_sym_short] = ACTIONS(4339), + [anon_sym_LBRACK] = ACTIONS(4339), + [anon_sym_static] = ACTIONS(4339), + [anon_sym_register] = ACTIONS(4339), + [anon_sym_inline] = ACTIONS(4339), + [anon_sym___inline] = ACTIONS(4339), + [anon_sym___inline__] = ACTIONS(4339), + [anon_sym___forceinline] = ACTIONS(4339), + [anon_sym_thread_local] = ACTIONS(4339), + [anon_sym___thread] = ACTIONS(4339), + [anon_sym_const] = ACTIONS(4339), + [anon_sym_constexpr] = ACTIONS(4339), + [anon_sym_volatile] = ACTIONS(4339), + [anon_sym_restrict] = ACTIONS(4339), + [anon_sym___restrict__] = ACTIONS(4339), + [anon_sym__Atomic] = ACTIONS(4339), + [anon_sym__Noreturn] = ACTIONS(4339), + [anon_sym_noreturn] = ACTIONS(4339), + [anon_sym__Nonnull] = ACTIONS(4339), + [anon_sym_mutable] = ACTIONS(4339), + [anon_sym_constinit] = ACTIONS(4339), + [anon_sym_consteval] = ACTIONS(4339), + [anon_sym_alignas] = ACTIONS(4339), + [anon_sym__Alignas] = ACTIONS(4339), + [sym_primitive_type] = ACTIONS(4339), + [anon_sym_enum] = ACTIONS(4339), + [anon_sym_class] = ACTIONS(4339), + [anon_sym_struct] = ACTIONS(4339), + [anon_sym_union] = ACTIONS(4339), + [anon_sym_typename] = ACTIONS(4339), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4339), + [anon_sym_decltype] = ACTIONS(4339), + [anon_sym_explicit] = ACTIONS(4339), + [anon_sym_private] = ACTIONS(4339), + [anon_sym_template] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [anon_sym_friend] = ACTIONS(4339), + [anon_sym_public] = ACTIONS(4339), + [anon_sym_protected] = ACTIONS(4339), + [anon_sym_static_assert] = ACTIONS(4339), + [anon_sym_LBRACK_COLON] = ACTIONS(4341), }, [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), + [sym_identifier] = ACTIONS(9053), + [aux_sym_preproc_def_token1] = ACTIONS(9053), + [aux_sym_preproc_if_token1] = ACTIONS(9053), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9053), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9053), + [sym_preproc_directive] = ACTIONS(9053), + [anon_sym_LPAREN2] = ACTIONS(9055), + [anon_sym_TILDE] = ACTIONS(9055), + [anon_sym_STAR] = ACTIONS(9055), + [anon_sym_AMP_AMP] = ACTIONS(9055), + [anon_sym_AMP] = ACTIONS(9053), + [anon_sym_SEMI] = ACTIONS(9055), + [anon_sym___extension__] = ACTIONS(9053), + [anon_sym_typedef] = ACTIONS(9053), + [anon_sym_virtual] = ACTIONS(9053), + [anon_sym_extern] = ACTIONS(9053), + [anon_sym___attribute__] = ACTIONS(9053), + [anon_sym___attribute] = ACTIONS(9053), + [anon_sym_using] = ACTIONS(9053), + [anon_sym_COLON_COLON] = ACTIONS(9055), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9055), + [anon_sym___declspec] = ACTIONS(9053), + [anon_sym___based] = ACTIONS(9053), + [anon_sym_RBRACE] = ACTIONS(9055), + [anon_sym_signed] = ACTIONS(9053), + [anon_sym_unsigned] = ACTIONS(9053), + [anon_sym_long] = ACTIONS(9053), + [anon_sym_short] = ACTIONS(9053), + [anon_sym_LBRACK] = ACTIONS(9053), + [anon_sym_static] = ACTIONS(9053), + [anon_sym_register] = ACTIONS(9053), + [anon_sym_inline] = ACTIONS(9053), + [anon_sym___inline] = ACTIONS(9053), + [anon_sym___inline__] = ACTIONS(9053), + [anon_sym___forceinline] = ACTIONS(9053), + [anon_sym_thread_local] = ACTIONS(9053), + [anon_sym___thread] = ACTIONS(9053), + [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(9053), + [anon_sym__Alignas] = ACTIONS(9053), + [sym_primitive_type] = ACTIONS(9053), + [anon_sym_enum] = ACTIONS(9053), + [anon_sym_class] = ACTIONS(9053), + [anon_sym_struct] = ACTIONS(9053), + [anon_sym_union] = ACTIONS(9053), + [anon_sym_typename] = ACTIONS(9053), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9053), + [anon_sym_decltype] = ACTIONS(9053), + [anon_sym_explicit] = ACTIONS(9053), + [anon_sym_private] = ACTIONS(9053), + [anon_sym_template] = ACTIONS(9053), + [anon_sym_operator] = ACTIONS(9053), + [anon_sym_friend] = ACTIONS(9053), + [anon_sym_public] = ACTIONS(9053), + [anon_sym_protected] = ACTIONS(9053), + [anon_sym_static_assert] = ACTIONS(9053), + [anon_sym_LBRACK_COLON] = ACTIONS(9055), }, [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), + [sym_identifier] = ACTIONS(9057), + [aux_sym_preproc_def_token1] = ACTIONS(9057), + [aux_sym_preproc_if_token1] = ACTIONS(9057), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9057), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9057), + [sym_preproc_directive] = ACTIONS(9057), + [anon_sym_LPAREN2] = ACTIONS(9059), + [anon_sym_TILDE] = ACTIONS(9059), + [anon_sym_STAR] = ACTIONS(9059), + [anon_sym_AMP_AMP] = ACTIONS(9059), + [anon_sym_AMP] = ACTIONS(9057), + [anon_sym_SEMI] = ACTIONS(9059), + [anon_sym___extension__] = ACTIONS(9057), + [anon_sym_typedef] = ACTIONS(9057), + [anon_sym_virtual] = ACTIONS(9057), + [anon_sym_extern] = ACTIONS(9057), + [anon_sym___attribute__] = ACTIONS(9057), + [anon_sym___attribute] = ACTIONS(9057), + [anon_sym_using] = ACTIONS(9057), + [anon_sym_COLON_COLON] = ACTIONS(9059), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9059), + [anon_sym___declspec] = ACTIONS(9057), + [anon_sym___based] = ACTIONS(9057), + [anon_sym_RBRACE] = ACTIONS(9059), + [anon_sym_signed] = ACTIONS(9057), + [anon_sym_unsigned] = ACTIONS(9057), + [anon_sym_long] = ACTIONS(9057), + [anon_sym_short] = ACTIONS(9057), + [anon_sym_LBRACK] = ACTIONS(9057), + [anon_sym_static] = ACTIONS(9057), + [anon_sym_register] = ACTIONS(9057), + [anon_sym_inline] = ACTIONS(9057), + [anon_sym___inline] = ACTIONS(9057), + [anon_sym___inline__] = ACTIONS(9057), + [anon_sym___forceinline] = ACTIONS(9057), + [anon_sym_thread_local] = ACTIONS(9057), + [anon_sym___thread] = ACTIONS(9057), + [anon_sym_const] = ACTIONS(9057), + [anon_sym_constexpr] = ACTIONS(9057), + [anon_sym_volatile] = ACTIONS(9057), + [anon_sym_restrict] = ACTIONS(9057), + [anon_sym___restrict__] = ACTIONS(9057), + [anon_sym__Atomic] = ACTIONS(9057), + [anon_sym__Noreturn] = ACTIONS(9057), + [anon_sym_noreturn] = ACTIONS(9057), + [anon_sym__Nonnull] = ACTIONS(9057), + [anon_sym_mutable] = ACTIONS(9057), + [anon_sym_constinit] = ACTIONS(9057), + [anon_sym_consteval] = ACTIONS(9057), + [anon_sym_alignas] = ACTIONS(9057), + [anon_sym__Alignas] = ACTIONS(9057), + [sym_primitive_type] = ACTIONS(9057), + [anon_sym_enum] = ACTIONS(9057), + [anon_sym_class] = ACTIONS(9057), + [anon_sym_struct] = ACTIONS(9057), + [anon_sym_union] = ACTIONS(9057), + [anon_sym_typename] = ACTIONS(9057), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9057), + [anon_sym_decltype] = ACTIONS(9057), + [anon_sym_explicit] = ACTIONS(9057), + [anon_sym_private] = ACTIONS(9057), + [anon_sym_template] = ACTIONS(9057), + [anon_sym_operator] = ACTIONS(9057), + [anon_sym_friend] = ACTIONS(9057), + [anon_sym_public] = ACTIONS(9057), + [anon_sym_protected] = ACTIONS(9057), + [anon_sym_static_assert] = ACTIONS(9057), + [anon_sym_LBRACK_COLON] = ACTIONS(9059), }, [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), - [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7371), - [anon_sym_override] = ACTIONS(7371), - [anon_sym_requires] = ACTIONS(7371), + [aux_sym_sized_type_specifier_repeat1] = STATE(3714), + [sym_identifier] = ACTIONS(7296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7298), + [anon_sym_RPAREN] = ACTIONS(7298), + [anon_sym_LPAREN2] = ACTIONS(7298), + [anon_sym_TILDE] = ACTIONS(7298), + [anon_sym_STAR] = ACTIONS(7298), + [anon_sym_AMP_AMP] = ACTIONS(7298), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_SEMI] = ACTIONS(7298), + [anon_sym___extension__] = ACTIONS(7296), + [anon_sym_virtual] = ACTIONS(7296), + [anon_sym_extern] = ACTIONS(7296), + [anon_sym___attribute__] = ACTIONS(7296), + [anon_sym___attribute] = ACTIONS(7296), + [anon_sym_COLON] = ACTIONS(7296), + [anon_sym_COLON_COLON] = ACTIONS(7298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7298), + [anon_sym___declspec] = ACTIONS(7296), + [anon_sym___based] = ACTIONS(7296), + [anon_sym___cdecl] = ACTIONS(7296), + [anon_sym___clrcall] = ACTIONS(7296), + [anon_sym___stdcall] = ACTIONS(7296), + [anon_sym___fastcall] = ACTIONS(7296), + [anon_sym___thiscall] = ACTIONS(7296), + [anon_sym___vectorcall] = ACTIONS(7296), + [anon_sym_LBRACE] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(9463), + [anon_sym_unsigned] = ACTIONS(9463), + [anon_sym_long] = ACTIONS(9463), + [anon_sym_short] = ACTIONS(9463), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_static] = ACTIONS(7296), + [anon_sym_EQ] = ACTIONS(7298), + [anon_sym_register] = ACTIONS(7296), + [anon_sym_inline] = ACTIONS(7296), + [anon_sym___inline] = ACTIONS(7296), + [anon_sym___inline__] = ACTIONS(7296), + [anon_sym___forceinline] = ACTIONS(7296), + [anon_sym_thread_local] = ACTIONS(7296), + [anon_sym___thread] = ACTIONS(7296), + [anon_sym_const] = ACTIONS(7296), + [anon_sym_constexpr] = ACTIONS(7296), + [anon_sym_volatile] = ACTIONS(7296), + [anon_sym_restrict] = ACTIONS(7296), + [anon_sym___restrict__] = ACTIONS(7296), + [anon_sym__Atomic] = ACTIONS(7296), + [anon_sym__Noreturn] = ACTIONS(7296), + [anon_sym_noreturn] = ACTIONS(7296), + [anon_sym__Nonnull] = ACTIONS(7296), + [anon_sym_mutable] = ACTIONS(7296), + [anon_sym_constinit] = ACTIONS(7296), + [anon_sym_consteval] = ACTIONS(7296), + [anon_sym_alignas] = ACTIONS(7296), + [anon_sym__Alignas] = ACTIONS(7296), + [anon_sym_asm] = ACTIONS(7296), + [anon_sym___asm__] = ACTIONS(7296), + [anon_sym___asm] = ACTIONS(7296), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7296), + [anon_sym_final] = ACTIONS(7296), + [anon_sym_override] = ACTIONS(7296), + [anon_sym_template] = ACTIONS(7296), + [anon_sym_GT2] = ACTIONS(7298), + [anon_sym_operator] = ACTIONS(7296), + [anon_sym_try] = ACTIONS(7296), + [anon_sym_requires] = ACTIONS(7296), + [anon_sym_LBRACK_COLON] = ACTIONS(7298), }, [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_identifier] = ACTIONS(8958), + [aux_sym_preproc_def_token1] = ACTIONS(8958), + [aux_sym_preproc_if_token1] = ACTIONS(8958), + [aux_sym_preproc_if_token2] = ACTIONS(8958), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8958), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8958), + [sym_preproc_directive] = ACTIONS(8958), + [anon_sym_LPAREN2] = ACTIONS(8960), + [anon_sym_TILDE] = ACTIONS(8960), + [anon_sym_STAR] = ACTIONS(8960), + [anon_sym_AMP_AMP] = ACTIONS(8960), + [anon_sym_AMP] = ACTIONS(8958), + [anon_sym_SEMI] = ACTIONS(8960), + [anon_sym___extension__] = ACTIONS(8958), + [anon_sym_typedef] = ACTIONS(8958), + [anon_sym_virtual] = ACTIONS(8958), + [anon_sym_extern] = ACTIONS(8958), + [anon_sym___attribute__] = ACTIONS(8958), + [anon_sym___attribute] = ACTIONS(8958), + [anon_sym_using] = ACTIONS(8958), + [anon_sym_COLON_COLON] = ACTIONS(8960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8960), + [anon_sym___declspec] = ACTIONS(8958), + [anon_sym___based] = ACTIONS(8958), + [anon_sym_signed] = ACTIONS(8958), + [anon_sym_unsigned] = ACTIONS(8958), + [anon_sym_long] = ACTIONS(8958), + [anon_sym_short] = ACTIONS(8958), + [anon_sym_LBRACK] = ACTIONS(8958), + [anon_sym_static] = ACTIONS(8958), + [anon_sym_register] = ACTIONS(8958), + [anon_sym_inline] = ACTIONS(8958), + [anon_sym___inline] = ACTIONS(8958), + [anon_sym___inline__] = ACTIONS(8958), + [anon_sym___forceinline] = ACTIONS(8958), + [anon_sym_thread_local] = ACTIONS(8958), + [anon_sym___thread] = ACTIONS(8958), + [anon_sym_const] = ACTIONS(8958), + [anon_sym_constexpr] = ACTIONS(8958), + [anon_sym_volatile] = ACTIONS(8958), + [anon_sym_restrict] = ACTIONS(8958), + [anon_sym___restrict__] = ACTIONS(8958), + [anon_sym__Atomic] = ACTIONS(8958), + [anon_sym__Noreturn] = ACTIONS(8958), + [anon_sym_noreturn] = ACTIONS(8958), + [anon_sym__Nonnull] = ACTIONS(8958), + [anon_sym_mutable] = ACTIONS(8958), + [anon_sym_constinit] = ACTIONS(8958), + [anon_sym_consteval] = ACTIONS(8958), + [anon_sym_alignas] = ACTIONS(8958), + [anon_sym__Alignas] = ACTIONS(8958), + [sym_primitive_type] = ACTIONS(8958), + [anon_sym_enum] = ACTIONS(8958), + [anon_sym_class] = ACTIONS(8958), + [anon_sym_struct] = ACTIONS(8958), + [anon_sym_union] = ACTIONS(8958), + [anon_sym_typename] = ACTIONS(8958), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8958), + [anon_sym_decltype] = ACTIONS(8958), + [anon_sym_explicit] = ACTIONS(8958), + [anon_sym_private] = ACTIONS(8958), + [anon_sym_template] = ACTIONS(8958), + [anon_sym_operator] = ACTIONS(8958), + [anon_sym_friend] = ACTIONS(8958), + [anon_sym_public] = ACTIONS(8958), + [anon_sym_protected] = ACTIONS(8958), + [anon_sym_static_assert] = ACTIONS(8958), + [anon_sym_LBRACK_COLON] = ACTIONS(8960), }, [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_identifier] = ACTIONS(9065), + [aux_sym_preproc_def_token1] = ACTIONS(9065), + [aux_sym_preproc_if_token1] = ACTIONS(9065), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9065), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9065), + [sym_preproc_directive] = ACTIONS(9065), + [anon_sym_LPAREN2] = ACTIONS(9067), + [anon_sym_TILDE] = ACTIONS(9067), + [anon_sym_STAR] = ACTIONS(9067), + [anon_sym_AMP_AMP] = ACTIONS(9067), + [anon_sym_AMP] = ACTIONS(9065), + [anon_sym_SEMI] = ACTIONS(9067), + [anon_sym___extension__] = ACTIONS(9065), + [anon_sym_typedef] = ACTIONS(9065), + [anon_sym_virtual] = ACTIONS(9065), + [anon_sym_extern] = ACTIONS(9065), + [anon_sym___attribute__] = ACTIONS(9065), + [anon_sym___attribute] = ACTIONS(9065), + [anon_sym_using] = ACTIONS(9065), + [anon_sym_COLON_COLON] = ACTIONS(9067), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9067), + [anon_sym___declspec] = ACTIONS(9065), + [anon_sym___based] = ACTIONS(9065), + [anon_sym_RBRACE] = ACTIONS(9067), + [anon_sym_signed] = ACTIONS(9065), + [anon_sym_unsigned] = ACTIONS(9065), + [anon_sym_long] = ACTIONS(9065), + [anon_sym_short] = ACTIONS(9065), + [anon_sym_LBRACK] = ACTIONS(9065), + [anon_sym_static] = ACTIONS(9065), + [anon_sym_register] = ACTIONS(9065), + [anon_sym_inline] = ACTIONS(9065), + [anon_sym___inline] = ACTIONS(9065), + [anon_sym___inline__] = ACTIONS(9065), + [anon_sym___forceinline] = ACTIONS(9065), + [anon_sym_thread_local] = ACTIONS(9065), + [anon_sym___thread] = ACTIONS(9065), + [anon_sym_const] = ACTIONS(9065), + [anon_sym_constexpr] = ACTIONS(9065), + [anon_sym_volatile] = ACTIONS(9065), + [anon_sym_restrict] = ACTIONS(9065), + [anon_sym___restrict__] = ACTIONS(9065), + [anon_sym__Atomic] = ACTIONS(9065), + [anon_sym__Noreturn] = ACTIONS(9065), + [anon_sym_noreturn] = ACTIONS(9065), + [anon_sym__Nonnull] = ACTIONS(9065), + [anon_sym_mutable] = ACTIONS(9065), + [anon_sym_constinit] = ACTIONS(9065), + [anon_sym_consteval] = ACTIONS(9065), + [anon_sym_alignas] = ACTIONS(9065), + [anon_sym__Alignas] = ACTIONS(9065), + [sym_primitive_type] = ACTIONS(9065), + [anon_sym_enum] = ACTIONS(9065), + [anon_sym_class] = ACTIONS(9065), + [anon_sym_struct] = ACTIONS(9065), + [anon_sym_union] = ACTIONS(9065), + [anon_sym_typename] = ACTIONS(9065), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9065), + [anon_sym_decltype] = ACTIONS(9065), + [anon_sym_explicit] = ACTIONS(9065), + [anon_sym_private] = ACTIONS(9065), + [anon_sym_template] = ACTIONS(9065), + [anon_sym_operator] = ACTIONS(9065), + [anon_sym_friend] = ACTIONS(9065), + [anon_sym_public] = ACTIONS(9065), + [anon_sym_protected] = ACTIONS(9065), + [anon_sym_static_assert] = ACTIONS(9065), + [anon_sym_LBRACK_COLON] = ACTIONS(9067), }, [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_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(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_identifier] = ACTIONS(8990), + [aux_sym_preproc_def_token1] = ACTIONS(8990), + [aux_sym_preproc_if_token1] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8990), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8990), + [sym_preproc_directive] = ACTIONS(8990), + [anon_sym_LPAREN2] = ACTIONS(8992), + [anon_sym_TILDE] = ACTIONS(8992), + [anon_sym_STAR] = ACTIONS(8992), + [anon_sym_AMP_AMP] = ACTIONS(8992), + [anon_sym_AMP] = ACTIONS(8990), + [anon_sym_SEMI] = ACTIONS(8992), + [anon_sym___extension__] = ACTIONS(8990), + [anon_sym_typedef] = ACTIONS(8990), + [anon_sym_virtual] = ACTIONS(8990), + [anon_sym_extern] = ACTIONS(8990), + [anon_sym___attribute__] = ACTIONS(8990), + [anon_sym___attribute] = ACTIONS(8990), + [anon_sym_using] = ACTIONS(8990), + [anon_sym_COLON_COLON] = ACTIONS(8992), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8992), + [anon_sym___declspec] = ACTIONS(8990), + [anon_sym___based] = ACTIONS(8990), + [anon_sym_RBRACE] = ACTIONS(8992), + [anon_sym_signed] = ACTIONS(8990), + [anon_sym_unsigned] = ACTIONS(8990), + [anon_sym_long] = ACTIONS(8990), + [anon_sym_short] = ACTIONS(8990), + [anon_sym_LBRACK] = ACTIONS(8990), + [anon_sym_static] = ACTIONS(8990), + [anon_sym_register] = ACTIONS(8990), + [anon_sym_inline] = ACTIONS(8990), + [anon_sym___inline] = ACTIONS(8990), + [anon_sym___inline__] = ACTIONS(8990), + [anon_sym___forceinline] = ACTIONS(8990), + [anon_sym_thread_local] = ACTIONS(8990), + [anon_sym___thread] = ACTIONS(8990), + [anon_sym_const] = ACTIONS(8990), + [anon_sym_constexpr] = ACTIONS(8990), + [anon_sym_volatile] = ACTIONS(8990), + [anon_sym_restrict] = ACTIONS(8990), + [anon_sym___restrict__] = ACTIONS(8990), + [anon_sym__Atomic] = ACTIONS(8990), + [anon_sym__Noreturn] = ACTIONS(8990), + [anon_sym_noreturn] = ACTIONS(8990), + [anon_sym__Nonnull] = ACTIONS(8990), + [anon_sym_mutable] = ACTIONS(8990), + [anon_sym_constinit] = ACTIONS(8990), + [anon_sym_consteval] = ACTIONS(8990), + [anon_sym_alignas] = ACTIONS(8990), + [anon_sym__Alignas] = ACTIONS(8990), + [sym_primitive_type] = ACTIONS(8990), + [anon_sym_enum] = ACTIONS(8990), + [anon_sym_class] = ACTIONS(8990), + [anon_sym_struct] = ACTIONS(8990), + [anon_sym_union] = ACTIONS(8990), + [anon_sym_typename] = ACTIONS(8990), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8990), + [anon_sym_decltype] = ACTIONS(8990), + [anon_sym_explicit] = ACTIONS(8990), + [anon_sym_private] = ACTIONS(8990), + [anon_sym_template] = ACTIONS(8990), + [anon_sym_operator] = ACTIONS(8990), + [anon_sym_friend] = ACTIONS(8990), + [anon_sym_public] = ACTIONS(8990), + [anon_sym_protected] = ACTIONS(8990), + [anon_sym_static_assert] = ACTIONS(8990), + [anon_sym_LBRACK_COLON] = ACTIONS(8992), }, [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_decltype_auto] = STATE(4142), + [sym_template_argument_list] = STATE(3471), + [aux_sym_sized_type_specifier_repeat1] = STATE(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_RPAREN] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5661), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_PIPE_PIPE] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5661), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5669), + [anon_sym_BANG_EQ] = ACTIONS(5669), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5669), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(9405), + [anon_sym_LT_LT] = ACTIONS(5661), + [anon_sym_GT_GT] = ACTIONS(5661), + [anon_sym_SEMI] = ACTIONS(5669), + [anon_sym___attribute__] = ACTIONS(5669), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5669), + [anon_sym_LBRACE] = ACTIONS(5669), + [anon_sym_RBRACE] = ACTIONS(5669), + [anon_sym_signed] = ACTIONS(9545), + [anon_sym_unsigned] = ACTIONS(9545), + [anon_sym_long] = ACTIONS(9545), + [anon_sym_short] = ACTIONS(9545), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5669), + [anon_sym_STAR_EQ] = ACTIONS(5669), + [anon_sym_SLASH_EQ] = ACTIONS(5669), + [anon_sym_PERCENT_EQ] = ACTIONS(5669), + [anon_sym_PLUS_EQ] = ACTIONS(5669), + [anon_sym_DASH_EQ] = ACTIONS(5669), + [anon_sym_LT_LT_EQ] = ACTIONS(5669), + [anon_sym_GT_GT_EQ] = ACTIONS(5669), + [anon_sym_AMP_EQ] = ACTIONS(5669), + [anon_sym_CARET_EQ] = ACTIONS(5669), + [anon_sym_PIPE_EQ] = ACTIONS(5669), + [anon_sym_and_eq] = ACTIONS(5669), + [anon_sym_or_eq] = ACTIONS(5669), + [anon_sym_xor_eq] = ACTIONS(5669), + [anon_sym_LT_EQ_GT] = ACTIONS(5669), + [anon_sym_or] = ACTIONS(5661), + [anon_sym_and] = ACTIONS(5661), + [anon_sym_bitor] = ACTIONS(5669), + [anon_sym_xor] = ACTIONS(5661), + [anon_sym_bitand] = ACTIONS(5669), + [anon_sym_not_eq] = ACTIONS(5669), + [anon_sym_DASH_DASH] = ACTIONS(5669), + [anon_sym_PLUS_PLUS] = ACTIONS(5669), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5669), + [anon_sym_DASH_GT] = ACTIONS(5669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9547), + [anon_sym_decltype] = ACTIONS(9549), + [anon_sym_COLON_RBRACK] = ACTIONS(5669), }, [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_identifier] = ACTIONS(9010), + [aux_sym_preproc_def_token1] = ACTIONS(9010), + [aux_sym_preproc_if_token1] = ACTIONS(9010), + [aux_sym_preproc_if_token2] = ACTIONS(9010), + [aux_sym_preproc_ifdef_token1] = ACTIONS(9010), + [aux_sym_preproc_ifdef_token2] = ACTIONS(9010), + [sym_preproc_directive] = ACTIONS(9010), + [anon_sym_LPAREN2] = ACTIONS(9012), + [anon_sym_TILDE] = ACTIONS(9012), + [anon_sym_STAR] = ACTIONS(9012), + [anon_sym_AMP_AMP] = ACTIONS(9012), + [anon_sym_AMP] = ACTIONS(9010), + [anon_sym_SEMI] = ACTIONS(9012), + [anon_sym___extension__] = ACTIONS(9010), + [anon_sym_typedef] = ACTIONS(9010), + [anon_sym_virtual] = ACTIONS(9010), + [anon_sym_extern] = ACTIONS(9010), + [anon_sym___attribute__] = ACTIONS(9010), + [anon_sym___attribute] = ACTIONS(9010), + [anon_sym_using] = ACTIONS(9010), + [anon_sym_COLON_COLON] = ACTIONS(9012), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9012), + [anon_sym___declspec] = ACTIONS(9010), + [anon_sym___based] = ACTIONS(9010), + [anon_sym_signed] = ACTIONS(9010), + [anon_sym_unsigned] = ACTIONS(9010), + [anon_sym_long] = ACTIONS(9010), + [anon_sym_short] = ACTIONS(9010), + [anon_sym_LBRACK] = ACTIONS(9010), + [anon_sym_static] = ACTIONS(9010), + [anon_sym_register] = ACTIONS(9010), + [anon_sym_inline] = ACTIONS(9010), + [anon_sym___inline] = ACTIONS(9010), + [anon_sym___inline__] = ACTIONS(9010), + [anon_sym___forceinline] = ACTIONS(9010), + [anon_sym_thread_local] = ACTIONS(9010), + [anon_sym___thread] = ACTIONS(9010), + [anon_sym_const] = ACTIONS(9010), + [anon_sym_constexpr] = ACTIONS(9010), + [anon_sym_volatile] = ACTIONS(9010), + [anon_sym_restrict] = ACTIONS(9010), + [anon_sym___restrict__] = ACTIONS(9010), + [anon_sym__Atomic] = ACTIONS(9010), + [anon_sym__Noreturn] = ACTIONS(9010), + [anon_sym_noreturn] = ACTIONS(9010), + [anon_sym__Nonnull] = ACTIONS(9010), + [anon_sym_mutable] = ACTIONS(9010), + [anon_sym_constinit] = ACTIONS(9010), + [anon_sym_consteval] = ACTIONS(9010), + [anon_sym_alignas] = ACTIONS(9010), + [anon_sym__Alignas] = ACTIONS(9010), + [sym_primitive_type] = ACTIONS(9010), + [anon_sym_enum] = ACTIONS(9010), + [anon_sym_class] = ACTIONS(9010), + [anon_sym_struct] = ACTIONS(9010), + [anon_sym_union] = ACTIONS(9010), + [anon_sym_typename] = ACTIONS(9010), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9010), + [anon_sym_decltype] = ACTIONS(9010), + [anon_sym_explicit] = ACTIONS(9010), + [anon_sym_private] = ACTIONS(9010), + [anon_sym_template] = ACTIONS(9010), + [anon_sym_operator] = ACTIONS(9010), + [anon_sym_friend] = ACTIONS(9010), + [anon_sym_public] = ACTIONS(9010), + [anon_sym_protected] = ACTIONS(9010), + [anon_sym_static_assert] = ACTIONS(9010), + [anon_sym_LBRACK_COLON] = ACTIONS(9012), }, [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_identifier] = ACTIONS(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token2] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_friend] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), }, [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(8994), + [aux_sym_preproc_def_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8994), + [sym_preproc_directive] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8996), + [anon_sym_TILDE] = ACTIONS(8996), + [anon_sym_STAR] = ACTIONS(8996), + [anon_sym_AMP_AMP] = ACTIONS(8996), + [anon_sym_AMP] = ACTIONS(8994), + [anon_sym_SEMI] = ACTIONS(8996), + [anon_sym___extension__] = ACTIONS(8994), + [anon_sym_typedef] = ACTIONS(8994), + [anon_sym_virtual] = ACTIONS(8994), + [anon_sym_extern] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8994), + [anon_sym___attribute] = ACTIONS(8994), + [anon_sym_using] = ACTIONS(8994), + [anon_sym_COLON_COLON] = ACTIONS(8996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8996), + [anon_sym___declspec] = ACTIONS(8994), + [anon_sym___based] = ACTIONS(8994), + [anon_sym_RBRACE] = ACTIONS(8996), + [anon_sym_signed] = ACTIONS(8994), + [anon_sym_unsigned] = ACTIONS(8994), + [anon_sym_long] = ACTIONS(8994), + [anon_sym_short] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_static] = ACTIONS(8994), + [anon_sym_register] = ACTIONS(8994), + [anon_sym_inline] = ACTIONS(8994), + [anon_sym___inline] = ACTIONS(8994), + [anon_sym___inline__] = ACTIONS(8994), + [anon_sym___forceinline] = ACTIONS(8994), + [anon_sym_thread_local] = ACTIONS(8994), + [anon_sym___thread] = ACTIONS(8994), + [anon_sym_const] = ACTIONS(8994), + [anon_sym_constexpr] = ACTIONS(8994), + [anon_sym_volatile] = ACTIONS(8994), + [anon_sym_restrict] = ACTIONS(8994), + [anon_sym___restrict__] = ACTIONS(8994), + [anon_sym__Atomic] = ACTIONS(8994), + [anon_sym__Noreturn] = ACTIONS(8994), + [anon_sym_noreturn] = ACTIONS(8994), + [anon_sym__Nonnull] = ACTIONS(8994), + [anon_sym_mutable] = ACTIONS(8994), + [anon_sym_constinit] = ACTIONS(8994), + [anon_sym_consteval] = ACTIONS(8994), + [anon_sym_alignas] = ACTIONS(8994), + [anon_sym__Alignas] = ACTIONS(8994), + [sym_primitive_type] = ACTIONS(8994), + [anon_sym_enum] = ACTIONS(8994), + [anon_sym_class] = ACTIONS(8994), + [anon_sym_struct] = ACTIONS(8994), + [anon_sym_union] = ACTIONS(8994), + [anon_sym_typename] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8994), + [anon_sym_decltype] = ACTIONS(8994), + [anon_sym_explicit] = ACTIONS(8994), + [anon_sym_private] = ACTIONS(8994), + [anon_sym_template] = ACTIONS(8994), + [anon_sym_operator] = ACTIONS(8994), + [anon_sym_friend] = ACTIONS(8994), + [anon_sym_public] = ACTIONS(8994), + [anon_sym_protected] = ACTIONS(8994), + [anon_sym_static_assert] = ACTIONS(8994), + [anon_sym_LBRACK_COLON] = ACTIONS(8996), }, [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(4226), + [aux_sym_preproc_def_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token1] = ACTIONS(4226), + [aux_sym_preproc_if_token2] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4226), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4226), + [sym_preproc_directive] = ACTIONS(4226), + [anon_sym_LPAREN2] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4226), + [anon_sym_SEMI] = ACTIONS(4228), + [anon_sym___extension__] = ACTIONS(4226), + [anon_sym_typedef] = ACTIONS(4226), + [anon_sym_virtual] = ACTIONS(4226), + [anon_sym_extern] = ACTIONS(4226), + [anon_sym___attribute__] = ACTIONS(4226), + [anon_sym___attribute] = ACTIONS(4226), + [anon_sym_using] = ACTIONS(4226), + [anon_sym_COLON_COLON] = ACTIONS(4228), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4228), + [anon_sym___declspec] = ACTIONS(4226), + [anon_sym___based] = ACTIONS(4226), + [anon_sym_signed] = ACTIONS(4226), + [anon_sym_unsigned] = ACTIONS(4226), + [anon_sym_long] = ACTIONS(4226), + [anon_sym_short] = ACTIONS(4226), + [anon_sym_LBRACK] = ACTIONS(4226), + [anon_sym_static] = ACTIONS(4226), + [anon_sym_register] = ACTIONS(4226), + [anon_sym_inline] = ACTIONS(4226), + [anon_sym___inline] = ACTIONS(4226), + [anon_sym___inline__] = ACTIONS(4226), + [anon_sym___forceinline] = ACTIONS(4226), + [anon_sym_thread_local] = ACTIONS(4226), + [anon_sym___thread] = ACTIONS(4226), + [anon_sym_const] = ACTIONS(4226), + [anon_sym_constexpr] = ACTIONS(4226), + [anon_sym_volatile] = ACTIONS(4226), + [anon_sym_restrict] = ACTIONS(4226), + [anon_sym___restrict__] = ACTIONS(4226), + [anon_sym__Atomic] = ACTIONS(4226), + [anon_sym__Noreturn] = ACTIONS(4226), + [anon_sym_noreturn] = ACTIONS(4226), + [anon_sym__Nonnull] = ACTIONS(4226), + [anon_sym_mutable] = ACTIONS(4226), + [anon_sym_constinit] = ACTIONS(4226), + [anon_sym_consteval] = ACTIONS(4226), + [anon_sym_alignas] = ACTIONS(4226), + [anon_sym__Alignas] = ACTIONS(4226), + [sym_primitive_type] = ACTIONS(4226), + [anon_sym_enum] = ACTIONS(4226), + [anon_sym_class] = ACTIONS(4226), + [anon_sym_struct] = ACTIONS(4226), + [anon_sym_union] = ACTIONS(4226), + [anon_sym_typename] = ACTIONS(4226), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4226), + [anon_sym_decltype] = ACTIONS(4226), + [anon_sym_explicit] = ACTIONS(4226), + [anon_sym_private] = ACTIONS(4226), + [anon_sym_template] = ACTIONS(4226), + [anon_sym_operator] = ACTIONS(4226), + [anon_sym_friend] = ACTIONS(4226), + [anon_sym_public] = ACTIONS(4226), + [anon_sym_protected] = ACTIONS(4226), + [anon_sym_static_assert] = ACTIONS(4226), + [anon_sym_LBRACK_COLON] = ACTIONS(4228), }, [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(8994), + [aux_sym_preproc_def_token1] = ACTIONS(8994), + [aux_sym_preproc_if_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8994), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8994), + [sym_preproc_directive] = ACTIONS(8994), + [anon_sym_LPAREN2] = ACTIONS(8996), + [anon_sym_TILDE] = ACTIONS(8996), + [anon_sym_STAR] = ACTIONS(8996), + [anon_sym_AMP_AMP] = ACTIONS(8996), + [anon_sym_AMP] = ACTIONS(8994), + [anon_sym_SEMI] = ACTIONS(8996), + [anon_sym___extension__] = ACTIONS(8994), + [anon_sym_typedef] = ACTIONS(8994), + [anon_sym_virtual] = ACTIONS(8994), + [anon_sym_extern] = ACTIONS(8994), + [anon_sym___attribute__] = ACTIONS(8994), + [anon_sym___attribute] = ACTIONS(8994), + [anon_sym_using] = ACTIONS(8994), + [anon_sym_COLON_COLON] = ACTIONS(8996), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8996), + [anon_sym___declspec] = ACTIONS(8994), + [anon_sym___based] = ACTIONS(8994), + [anon_sym_RBRACE] = ACTIONS(8996), + [anon_sym_signed] = ACTIONS(8994), + [anon_sym_unsigned] = ACTIONS(8994), + [anon_sym_long] = ACTIONS(8994), + [anon_sym_short] = ACTIONS(8994), + [anon_sym_LBRACK] = ACTIONS(8994), + [anon_sym_static] = ACTIONS(8994), + [anon_sym_register] = ACTIONS(8994), + [anon_sym_inline] = ACTIONS(8994), + [anon_sym___inline] = ACTIONS(8994), + [anon_sym___inline__] = ACTIONS(8994), + [anon_sym___forceinline] = ACTIONS(8994), + [anon_sym_thread_local] = ACTIONS(8994), + [anon_sym___thread] = ACTIONS(8994), + [anon_sym_const] = ACTIONS(8994), + [anon_sym_constexpr] = ACTIONS(8994), + [anon_sym_volatile] = ACTIONS(8994), + [anon_sym_restrict] = ACTIONS(8994), + [anon_sym___restrict__] = ACTIONS(8994), + [anon_sym__Atomic] = ACTIONS(8994), + [anon_sym__Noreturn] = ACTIONS(8994), + [anon_sym_noreturn] = ACTIONS(8994), + [anon_sym__Nonnull] = ACTIONS(8994), + [anon_sym_mutable] = ACTIONS(8994), + [anon_sym_constinit] = ACTIONS(8994), + [anon_sym_consteval] = ACTIONS(8994), + [anon_sym_alignas] = ACTIONS(8994), + [anon_sym__Alignas] = ACTIONS(8994), + [sym_primitive_type] = ACTIONS(8994), + [anon_sym_enum] = ACTIONS(8994), + [anon_sym_class] = ACTIONS(8994), + [anon_sym_struct] = ACTIONS(8994), + [anon_sym_union] = ACTIONS(8994), + [anon_sym_typename] = ACTIONS(8994), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8994), + [anon_sym_decltype] = ACTIONS(8994), + [anon_sym_explicit] = ACTIONS(8994), + [anon_sym_private] = ACTIONS(8994), + [anon_sym_template] = ACTIONS(8994), + [anon_sym_operator] = ACTIONS(8994), + [anon_sym_friend] = ACTIONS(8994), + [anon_sym_public] = ACTIONS(8994), + [anon_sym_protected] = ACTIONS(8994), + [anon_sym_static_assert] = ACTIONS(8994), + [anon_sym_LBRACK_COLON] = ACTIONS(8996), }, [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_identifier] = ACTIONS(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_friend] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), }, [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(4327), + [aux_sym_preproc_def_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token1] = ACTIONS(4327), + [aux_sym_preproc_if_token2] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4327), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4327), + [sym_preproc_directive] = ACTIONS(4327), + [anon_sym_LPAREN2] = ACTIONS(4329), + [anon_sym_TILDE] = ACTIONS(4329), + [anon_sym_STAR] = ACTIONS(4329), + [anon_sym_AMP_AMP] = ACTIONS(4329), + [anon_sym_AMP] = ACTIONS(4327), + [anon_sym_SEMI] = ACTIONS(4329), + [anon_sym___extension__] = ACTIONS(4327), + [anon_sym_typedef] = ACTIONS(4327), + [anon_sym_virtual] = ACTIONS(4327), + [anon_sym_extern] = ACTIONS(4327), + [anon_sym___attribute__] = ACTIONS(4327), + [anon_sym___attribute] = ACTIONS(4327), + [anon_sym_using] = ACTIONS(4327), + [anon_sym_COLON_COLON] = ACTIONS(4329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4329), + [anon_sym___declspec] = ACTIONS(4327), + [anon_sym___based] = ACTIONS(4327), + [anon_sym_signed] = ACTIONS(4327), + [anon_sym_unsigned] = ACTIONS(4327), + [anon_sym_long] = ACTIONS(4327), + [anon_sym_short] = ACTIONS(4327), + [anon_sym_LBRACK] = ACTIONS(4327), + [anon_sym_static] = ACTIONS(4327), + [anon_sym_register] = ACTIONS(4327), + [anon_sym_inline] = ACTIONS(4327), + [anon_sym___inline] = ACTIONS(4327), + [anon_sym___inline__] = ACTIONS(4327), + [anon_sym___forceinline] = ACTIONS(4327), + [anon_sym_thread_local] = ACTIONS(4327), + [anon_sym___thread] = ACTIONS(4327), + [anon_sym_const] = ACTIONS(4327), + [anon_sym_constexpr] = ACTIONS(4327), + [anon_sym_volatile] = ACTIONS(4327), + [anon_sym_restrict] = ACTIONS(4327), + [anon_sym___restrict__] = ACTIONS(4327), + [anon_sym__Atomic] = ACTIONS(4327), + [anon_sym__Noreturn] = ACTIONS(4327), + [anon_sym_noreturn] = ACTIONS(4327), + [anon_sym__Nonnull] = ACTIONS(4327), + [anon_sym_mutable] = ACTIONS(4327), + [anon_sym_constinit] = ACTIONS(4327), + [anon_sym_consteval] = ACTIONS(4327), + [anon_sym_alignas] = ACTIONS(4327), + [anon_sym__Alignas] = ACTIONS(4327), + [sym_primitive_type] = ACTIONS(4327), + [anon_sym_enum] = ACTIONS(4327), + [anon_sym_class] = ACTIONS(4327), + [anon_sym_struct] = ACTIONS(4327), + [anon_sym_union] = ACTIONS(4327), + [anon_sym_typename] = ACTIONS(4327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4327), + [anon_sym_decltype] = ACTIONS(4327), + [anon_sym_explicit] = ACTIONS(4327), + [anon_sym_private] = ACTIONS(4327), + [anon_sym_template] = ACTIONS(4327), + [anon_sym_operator] = ACTIONS(4327), + [anon_sym_friend] = ACTIONS(4327), + [anon_sym_public] = ACTIONS(4327), + [anon_sym_protected] = ACTIONS(4327), + [anon_sym_static_assert] = ACTIONS(4327), + [anon_sym_LBRACK_COLON] = ACTIONS(4329), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3763), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7175), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7175), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7175), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7175), + [anon_sym_GT_GT] = ACTIONS(7175), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(9492), + [anon_sym_unsigned] = ACTIONS(9492), + [anon_sym_long] = ACTIONS(9492), + [anon_sym_short] = ACTIONS(9492), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_RBRACK] = ACTIONS(7175), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), }, [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), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_GT2] = ACTIONS(7525), - [anon_sym_requires] = ACTIONS(7528), + [aux_sym_sized_type_specifier_repeat1] = STATE(3789), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7292), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7292), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7292), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(9551), + [anon_sym_unsigned] = ACTIONS(9551), + [anon_sym_long] = ACTIONS(9551), + [anon_sym_short] = ACTIONS(9551), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_RBRACK] = ACTIONS(7292), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), }, [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), + [sym_ms_based_modifier] = STATE(12068), + [sym__declarator] = STATE(9918), + [sym__abstract_declarator] = STATE(10072), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(7054), + [sym_alignas_qualifier] = STATE(7255), + [sym_parameter_list] = STATE(5388), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8855), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(7054), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_AMP_AMP] = ACTIONS(8778), + [anon_sym_AMP] = ACTIONS(8780), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(8784), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_EQ] = ACTIONS(5968), + [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(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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(7814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7816), + [anon_sym_COMMA] = ACTIONS(7816), + [anon_sym_RPAREN] = ACTIONS(7816), + [anon_sym_LPAREN2] = ACTIONS(7816), + [anon_sym_DASH] = ACTIONS(7814), + [anon_sym_PLUS] = ACTIONS(7814), + [anon_sym_STAR] = ACTIONS(7816), + [anon_sym_SLASH] = ACTIONS(7814), + [anon_sym_PERCENT] = ACTIONS(7816), + [anon_sym_PIPE_PIPE] = ACTIONS(7816), + [anon_sym_AMP_AMP] = ACTIONS(7816), + [anon_sym_PIPE] = ACTIONS(7814), + [anon_sym_CARET] = ACTIONS(7816), + [anon_sym_AMP] = ACTIONS(7814), + [anon_sym_EQ_EQ] = ACTIONS(7816), + [anon_sym_BANG_EQ] = ACTIONS(7816), + [anon_sym_GT] = ACTIONS(7814), + [anon_sym_GT_EQ] = ACTIONS(7816), + [anon_sym_LT_EQ] = ACTIONS(7814), + [anon_sym_LT] = ACTIONS(7814), + [anon_sym_LT_LT] = ACTIONS(7816), + [anon_sym_GT_GT] = ACTIONS(7816), + [anon_sym_SEMI] = ACTIONS(7816), + [anon_sym___extension__] = ACTIONS(7814), + [anon_sym___attribute__] = ACTIONS(7814), + [anon_sym___attribute] = ACTIONS(7814), + [anon_sym_COLON] = ACTIONS(7814), + [anon_sym_COLON_COLON] = ACTIONS(7816), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7816), + [anon_sym___based] = ACTIONS(7814), + [anon_sym_LBRACE] = ACTIONS(7816), + [anon_sym_RBRACE] = ACTIONS(7816), + [anon_sym_signed] = ACTIONS(7814), + [anon_sym_unsigned] = ACTIONS(7814), + [anon_sym_long] = ACTIONS(7814), + [anon_sym_short] = ACTIONS(7814), + [anon_sym_LBRACK] = ACTIONS(7816), + [anon_sym_const] = ACTIONS(7814), + [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(7814), + [anon_sym__Alignas] = ACTIONS(7814), + [sym_primitive_type] = ACTIONS(7814), + [anon_sym_QMARK] = ACTIONS(7816), + [anon_sym_LT_EQ_GT] = ACTIONS(7816), + [anon_sym_or] = ACTIONS(7814), + [anon_sym_and] = ACTIONS(7814), + [anon_sym_bitor] = ACTIONS(7814), + [anon_sym_xor] = ACTIONS(7814), + [anon_sym_bitand] = ACTIONS(7814), + [anon_sym_not_eq] = ACTIONS(7814), + [anon_sym_DASH_DASH] = ACTIONS(7816), + [anon_sym_PLUS_PLUS] = ACTIONS(7816), + [anon_sym_DOT] = ACTIONS(7814), + [anon_sym_DOT_STAR] = ACTIONS(7816), + [anon_sym_DASH_GT] = ACTIONS(7816), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7816), }, [STATE(3767)] = { - [sym_attribute_specifier] = STATE(3201), - [sym_enumerator_list] = STATE(3839), - [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(7389), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7389), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7389), - [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(7389), - [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_COLON] = ACTIONS(7387), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7389), - [anon_sym_LBRACE] = ACTIONS(9576), - [anon_sym_RBRACE] = ACTIONS(7389), - [anon_sym_LBRACK] = ACTIONS(7389), - [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_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(7389), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7389), - [anon_sym_override] = ACTIONS(7389), - [anon_sym_requires] = ACTIONS(7389), - [anon_sym_COLON_RBRACK] = ACTIONS(7389), + [sym_ms_based_modifier] = STATE(12068), + [sym__declarator] = STATE(9890), + [sym__abstract_declarator] = STATE(10073), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(7054), + [sym_alignas_qualifier] = STATE(7255), + [sym_parameter_list] = STATE(5388), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8855), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(7054), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_AMP_AMP] = ACTIONS(8778), + [anon_sym_AMP] = ACTIONS(8780), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(8784), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_EQ] = ACTIONS(6600), + [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(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6600), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), }, [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), + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON] = ACTIONS(9553), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5699), + [anon_sym_or_eq] = ACTIONS(5699), + [anon_sym_xor_eq] = ACTIONS(5699), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), }, [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), + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_DASH] = ACTIONS(7259), + [anon_sym_PLUS] = ACTIONS(7259), + [anon_sym_STAR] = ACTIONS(7261), + [anon_sym_SLASH] = ACTIONS(7259), + [anon_sym_PERCENT] = ACTIONS(7261), + [anon_sym_PIPE_PIPE] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_PIPE] = ACTIONS(7259), + [anon_sym_CARET] = ACTIONS(7261), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_EQ_EQ] = ACTIONS(7261), + [anon_sym_BANG_EQ] = ACTIONS(7261), + [anon_sym_GT] = ACTIONS(7259), + [anon_sym_GT_EQ] = ACTIONS(7261), + [anon_sym_LT_EQ] = ACTIONS(7259), + [anon_sym_LT] = ACTIONS(7259), + [anon_sym_LT_LT] = ACTIONS(7261), + [anon_sym_GT_GT] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_signed] = ACTIONS(7259), + [anon_sym_unsigned] = ACTIONS(7259), + [anon_sym_long] = ACTIONS(7259), + [anon_sym_short] = ACTIONS(7259), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_RBRACK] = ACTIONS(7261), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [sym_primitive_type] = ACTIONS(7259), + [anon_sym_QMARK] = ACTIONS(7261), + [anon_sym_LT_EQ_GT] = ACTIONS(7261), + [anon_sym_or] = ACTIONS(7259), + [anon_sym_and] = ACTIONS(7259), + [anon_sym_bitor] = ACTIONS(7259), + [anon_sym_xor] = ACTIONS(7259), + [anon_sym_bitand] = ACTIONS(7259), + [anon_sym_not_eq] = ACTIONS(7259), + [anon_sym_DASH_DASH] = ACTIONS(7261), + [anon_sym_PLUS_PLUS] = ACTIONS(7261), + [anon_sym_DOT] = ACTIONS(7259), + [anon_sym_DOT_STAR] = ACTIONS(7261), + [anon_sym_DASH_GT] = ACTIONS(7261), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), }, [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), + [sym_string_literal] = STATE(3770), + [sym_raw_string_literal] = STATE(3770), + [aux_sym_concatenated_string_repeat1] = STATE(3770), + [sym_identifier] = ACTIONS(9555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8756), + [anon_sym_COMMA] = ACTIONS(8756), + [anon_sym_LPAREN2] = ACTIONS(8756), + [anon_sym_DASH] = ACTIONS(8758), + [anon_sym_PLUS] = ACTIONS(8758), + [anon_sym_STAR] = ACTIONS(8758), + [anon_sym_SLASH] = ACTIONS(8758), + [anon_sym_PERCENT] = ACTIONS(8758), + [anon_sym_PIPE_PIPE] = ACTIONS(8756), + [anon_sym_AMP_AMP] = ACTIONS(8756), + [anon_sym_PIPE] = ACTIONS(8758), + [anon_sym_CARET] = ACTIONS(8758), + [anon_sym_AMP] = ACTIONS(8758), + [anon_sym_EQ_EQ] = ACTIONS(8756), + [anon_sym_BANG_EQ] = ACTIONS(8756), + [anon_sym_GT] = ACTIONS(8758), + [anon_sym_GT_EQ] = ACTIONS(8756), + [anon_sym_LT_EQ] = ACTIONS(8758), + [anon_sym_LT] = ACTIONS(8758), + [anon_sym_LT_LT] = ACTIONS(8758), + [anon_sym_GT_GT] = ACTIONS(8758), + [anon_sym_SEMI] = ACTIONS(8756), + [anon_sym___attribute__] = ACTIONS(8758), + [anon_sym___attribute] = ACTIONS(8758), + [anon_sym_LBRACK] = ACTIONS(8756), + [anon_sym_EQ] = ACTIONS(8758), + [anon_sym_QMARK] = ACTIONS(8756), + [anon_sym_STAR_EQ] = ACTIONS(8756), + [anon_sym_SLASH_EQ] = ACTIONS(8756), + [anon_sym_PERCENT_EQ] = ACTIONS(8756), + [anon_sym_PLUS_EQ] = ACTIONS(8756), + [anon_sym_DASH_EQ] = ACTIONS(8756), + [anon_sym_LT_LT_EQ] = ACTIONS(8756), + [anon_sym_GT_GT_EQ] = ACTIONS(8756), + [anon_sym_AMP_EQ] = ACTIONS(8756), + [anon_sym_CARET_EQ] = ACTIONS(8756), + [anon_sym_PIPE_EQ] = ACTIONS(8756), + [anon_sym_and_eq] = ACTIONS(8758), + [anon_sym_or_eq] = ACTIONS(8758), + [anon_sym_xor_eq] = ACTIONS(8758), + [anon_sym_LT_EQ_GT] = ACTIONS(8756), + [anon_sym_or] = ACTIONS(8758), + [anon_sym_and] = ACTIONS(8758), + [anon_sym_bitor] = ACTIONS(8758), + [anon_sym_xor] = ACTIONS(8758), + [anon_sym_bitand] = ACTIONS(8758), + [anon_sym_not_eq] = ACTIONS(8758), + [anon_sym_DASH_DASH] = ACTIONS(8756), + [anon_sym_PLUS_PLUS] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8758), + [anon_sym_DOT_STAR] = ACTIONS(8756), + [anon_sym_DASH_GT] = ACTIONS(8756), + [anon_sym_L_DQUOTE] = ACTIONS(9558), + [anon_sym_u_DQUOTE] = ACTIONS(9558), + [anon_sym_U_DQUOTE] = ACTIONS(9558), + [anon_sym_u8_DQUOTE] = ACTIONS(9558), + [anon_sym_DQUOTE] = ACTIONS(9558), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9561), + [anon_sym_LR_DQUOTE] = ACTIONS(9561), + [anon_sym_uR_DQUOTE] = ACTIONS(9561), + [anon_sym_UR_DQUOTE] = ACTIONS(9561), + [anon_sym_u8R_DQUOTE] = ACTIONS(9561), + [sym_literal_suffix] = ACTIONS(8758), }, [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), + [sym_ms_unaligned_ptr_modifier] = STATE(4124), + [sym_ms_pointer_modifier] = STATE(3771), + [aux_sym_pointer_declarator_repeat1] = STATE(3771), + [sym_identifier] = ACTIONS(7119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7121), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_LPAREN2] = ACTIONS(7121), + [anon_sym_DASH] = ACTIONS(7119), + [anon_sym_PLUS] = ACTIONS(7119), + [anon_sym_STAR] = ACTIONS(7121), + [anon_sym_SLASH] = ACTIONS(7119), + [anon_sym_PERCENT] = ACTIONS(7121), + [anon_sym_PIPE_PIPE] = ACTIONS(7121), + [anon_sym_AMP_AMP] = ACTIONS(7121), + [anon_sym_PIPE] = ACTIONS(7119), + [anon_sym_CARET] = ACTIONS(7121), + [anon_sym_AMP] = ACTIONS(7119), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_GT] = ACTIONS(7119), + [anon_sym_GT_EQ] = ACTIONS(7119), + [anon_sym_LT_EQ] = ACTIONS(7119), + [anon_sym_LT] = ACTIONS(7119), + [anon_sym_LT_LT] = ACTIONS(7121), + [anon_sym_GT_GT] = ACTIONS(7119), + [anon_sym___extension__] = ACTIONS(7119), + [anon_sym_COLON_COLON] = ACTIONS(7121), + [sym_ms_restrict_modifier] = ACTIONS(9564), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(9564), + [sym_ms_signed_ptr_modifier] = ACTIONS(9564), + [anon_sym__unaligned] = ACTIONS(9567), + [anon_sym___unaligned] = ACTIONS(9567), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_const] = ACTIONS(7119), + [anon_sym_constexpr] = ACTIONS(7119), + [anon_sym_volatile] = ACTIONS(7119), + [anon_sym_restrict] = ACTIONS(7119), + [anon_sym___restrict__] = ACTIONS(7119), + [anon_sym__Atomic] = ACTIONS(7119), + [anon_sym__Noreturn] = ACTIONS(7119), + [anon_sym_noreturn] = ACTIONS(7119), + [anon_sym__Nonnull] = ACTIONS(7119), + [anon_sym_mutable] = ACTIONS(7119), + [anon_sym_constinit] = ACTIONS(7119), + [anon_sym_consteval] = ACTIONS(7119), + [anon_sym_alignas] = ACTIONS(7119), + [anon_sym__Alignas] = ACTIONS(7119), + [anon_sym_QMARK] = ACTIONS(7121), + [anon_sym_LT_EQ_GT] = ACTIONS(7121), + [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(7121), + [anon_sym_PLUS_PLUS] = ACTIONS(7121), + [anon_sym_DOT] = ACTIONS(7119), + [anon_sym_DOT_STAR] = ACTIONS(7121), + [anon_sym_DASH_GT] = ACTIONS(7121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7119), + [anon_sym_final] = ACTIONS(7119), + [anon_sym_override] = ACTIONS(7119), + [anon_sym_template] = ACTIONS(7119), + [anon_sym_GT2] = ACTIONS(7121), + [anon_sym_requires] = ACTIONS(7119), + [anon_sym_LBRACK_COLON] = ACTIONS(7121), }, [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), + [sym_attribute_specifier] = STATE(4505), + [sym_field_declaration_list] = STATE(4373), + [sym_virtual_specifier] = STATE(10809), + [sym_base_class_clause] = STATE(11848), + [sym_identifier] = ACTIONS(7370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(7372), + [anon_sym_LPAREN2] = ACTIONS(7372), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_STAR] = ACTIONS(7372), + [anon_sym_SLASH] = ACTIONS(7370), + [anon_sym_PERCENT] = ACTIONS(7372), + [anon_sym_PIPE_PIPE] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7372), + [anon_sym_PIPE] = ACTIONS(7370), + [anon_sym_CARET] = ACTIONS(7372), + [anon_sym_AMP] = ACTIONS(7370), + [anon_sym_EQ_EQ] = ACTIONS(7372), + [anon_sym_BANG_EQ] = ACTIONS(7372), + [anon_sym_GT] = ACTIONS(7370), + [anon_sym_GT_EQ] = ACTIONS(7370), + [anon_sym_LT_EQ] = ACTIONS(7370), + [anon_sym_LT] = ACTIONS(7370), + [anon_sym_LT_LT] = ACTIONS(7372), + [anon_sym_GT_GT] = ACTIONS(7370), + [anon_sym___extension__] = ACTIONS(7370), + [anon_sym___attribute__] = ACTIONS(9570), + [anon_sym___attribute] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7372), + [anon_sym_LBRACE] = ACTIONS(9572), + [anon_sym_LBRACK] = ACTIONS(7370), + [anon_sym_const] = ACTIONS(7370), + [anon_sym_constexpr] = ACTIONS(7370), + [anon_sym_volatile] = ACTIONS(7370), + [anon_sym_restrict] = ACTIONS(7370), + [anon_sym___restrict__] = ACTIONS(7370), + [anon_sym__Atomic] = ACTIONS(7370), + [anon_sym__Noreturn] = ACTIONS(7370), + [anon_sym_noreturn] = ACTIONS(7370), + [anon_sym__Nonnull] = ACTIONS(7370), + [anon_sym_mutable] = ACTIONS(7370), + [anon_sym_constinit] = ACTIONS(7370), + [anon_sym_consteval] = ACTIONS(7370), + [anon_sym_alignas] = ACTIONS(7370), + [anon_sym__Alignas] = ACTIONS(7370), + [anon_sym_QMARK] = ACTIONS(7372), + [anon_sym_LT_EQ_GT] = ACTIONS(7372), + [anon_sym_or] = ACTIONS(7370), + [anon_sym_and] = ACTIONS(7370), + [anon_sym_bitor] = ACTIONS(7370), + [anon_sym_xor] = ACTIONS(7370), + [anon_sym_bitand] = ACTIONS(7370), + [anon_sym_not_eq] = ACTIONS(7370), + [anon_sym_DASH_DASH] = ACTIONS(7372), + [anon_sym_PLUS_PLUS] = ACTIONS(7372), + [anon_sym_DOT] = ACTIONS(7370), + [anon_sym_DOT_STAR] = ACTIONS(7372), + [anon_sym_DASH_GT] = ACTIONS(7372), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7370), + [anon_sym_final] = ACTIONS(7380), + [anon_sym_override] = ACTIONS(7380), + [anon_sym_template] = ACTIONS(7370), + [anon_sym_GT2] = ACTIONS(7372), + [anon_sym_requires] = ACTIONS(7370), + [anon_sym_LBRACK_COLON] = ACTIONS(7372), }, [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), + [sym_decltype_auto] = STATE(4708), + [sym_template_argument_list] = STATE(4168), + [aux_sym_sized_type_specifier_repeat1] = STATE(3796), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5669), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5669), + [anon_sym_BANG_EQ] = ACTIONS(5669), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5669), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(9574), + [anon_sym_LT_LT] = ACTIONS(5669), + [anon_sym_GT_GT] = ACTIONS(5669), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_signed] = ACTIONS(7217), + [anon_sym_unsigned] = ACTIONS(7217), + [anon_sym_long] = ACTIONS(7217), + [anon_sym_short] = ACTIONS(7217), + [anon_sym_LBRACK] = ACTIONS(5661), + [anon_sym_RBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5669), + [anon_sym_LT_EQ_GT] = ACTIONS(5669), + [anon_sym_or] = ACTIONS(5661), + [anon_sym_and] = ACTIONS(5661), + [anon_sym_bitor] = ACTIONS(5661), + [anon_sym_xor] = ACTIONS(5661), + [anon_sym_bitand] = ACTIONS(5661), + [anon_sym_not_eq] = ACTIONS(5661), + [anon_sym_DASH_DASH] = ACTIONS(5669), + [anon_sym_PLUS_PLUS] = ACTIONS(5669), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5669), + [anon_sym_DASH_GT] = ACTIONS(5669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7225), + [anon_sym_decltype] = ACTIONS(7227), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_requires] = ACTIONS(5661), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, [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), - [sym_comment] = ACTIONS(3), + [sym_string_literal] = STATE(3770), + [sym_raw_string_literal] = STATE(3770), + [aux_sym_concatenated_string_repeat1] = STATE(3770), + [sym_identifier] = ACTIONS(9576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8744), + [anon_sym_COMMA] = ACTIONS(8744), + [anon_sym_LPAREN2] = ACTIONS(8744), + [anon_sym_DASH] = ACTIONS(8746), + [anon_sym_PLUS] = ACTIONS(8746), + [anon_sym_STAR] = ACTIONS(8746), + [anon_sym_SLASH] = ACTIONS(8746), + [anon_sym_PERCENT] = ACTIONS(8746), + [anon_sym_PIPE_PIPE] = ACTIONS(8744), + [anon_sym_AMP_AMP] = ACTIONS(8744), + [anon_sym_PIPE] = ACTIONS(8746), + [anon_sym_CARET] = ACTIONS(8746), + [anon_sym_AMP] = ACTIONS(8746), + [anon_sym_EQ_EQ] = ACTIONS(8744), + [anon_sym_BANG_EQ] = ACTIONS(8744), + [anon_sym_GT] = ACTIONS(8746), + [anon_sym_GT_EQ] = ACTIONS(8744), + [anon_sym_LT_EQ] = ACTIONS(8746), + [anon_sym_LT] = ACTIONS(8746), + [anon_sym_LT_LT] = ACTIONS(8746), + [anon_sym_GT_GT] = ACTIONS(8746), + [anon_sym_SEMI] = ACTIONS(8744), + [anon_sym___attribute__] = ACTIONS(8746), + [anon_sym___attribute] = ACTIONS(8746), + [anon_sym_LBRACK] = ACTIONS(8744), + [anon_sym_EQ] = ACTIONS(8746), + [anon_sym_QMARK] = ACTIONS(8744), + [anon_sym_STAR_EQ] = ACTIONS(8744), + [anon_sym_SLASH_EQ] = ACTIONS(8744), + [anon_sym_PERCENT_EQ] = ACTIONS(8744), + [anon_sym_PLUS_EQ] = ACTIONS(8744), + [anon_sym_DASH_EQ] = ACTIONS(8744), + [anon_sym_LT_LT_EQ] = ACTIONS(8744), + [anon_sym_GT_GT_EQ] = ACTIONS(8744), + [anon_sym_AMP_EQ] = ACTIONS(8744), + [anon_sym_CARET_EQ] = ACTIONS(8744), + [anon_sym_PIPE_EQ] = ACTIONS(8744), + [anon_sym_and_eq] = ACTIONS(8746), + [anon_sym_or_eq] = ACTIONS(8746), + [anon_sym_xor_eq] = ACTIONS(8746), + [anon_sym_LT_EQ_GT] = ACTIONS(8744), + [anon_sym_or] = ACTIONS(8746), + [anon_sym_and] = ACTIONS(8746), + [anon_sym_bitor] = ACTIONS(8746), + [anon_sym_xor] = ACTIONS(8746), + [anon_sym_bitand] = ACTIONS(8746), + [anon_sym_not_eq] = ACTIONS(8746), + [anon_sym_DASH_DASH] = ACTIONS(8744), + [anon_sym_PLUS_PLUS] = ACTIONS(8744), + [anon_sym_DOT] = ACTIONS(8746), + [anon_sym_DOT_STAR] = ACTIONS(8744), + [anon_sym_DASH_GT] = ACTIONS(8744), + [anon_sym_L_DQUOTE] = ACTIONS(7102), + [anon_sym_u_DQUOTE] = ACTIONS(7102), + [anon_sym_U_DQUOTE] = ACTIONS(7102), + [anon_sym_u8_DQUOTE] = ACTIONS(7102), + [anon_sym_DQUOTE] = ACTIONS(7102), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7104), + [anon_sym_LR_DQUOTE] = ACTIONS(7104), + [anon_sym_uR_DQUOTE] = ACTIONS(7104), + [anon_sym_UR_DQUOTE] = ACTIONS(7104), + [anon_sym_u8R_DQUOTE] = ACTIONS(7104), + [sym_literal_suffix] = ACTIONS(8746), }, [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), - [sym_comment] = ACTIONS(3), + [sym_ms_unaligned_ptr_modifier] = STATE(4157), + [sym_ms_pointer_modifier] = STATE(3775), + [aux_sym_pointer_declarator_repeat1] = STATE(3775), + [sym_identifier] = ACTIONS(7119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7121), + [anon_sym_COMMA] = ACTIONS(7121), + [anon_sym_LPAREN2] = ACTIONS(7121), + [anon_sym_DASH] = ACTIONS(7119), + [anon_sym_PLUS] = ACTIONS(7119), + [anon_sym_STAR] = ACTIONS(7121), + [anon_sym_SLASH] = ACTIONS(7119), + [anon_sym_PERCENT] = ACTIONS(7121), + [anon_sym_PIPE_PIPE] = ACTIONS(7121), + [anon_sym_AMP_AMP] = ACTIONS(7121), + [anon_sym_PIPE] = ACTIONS(7119), + [anon_sym_CARET] = ACTIONS(7121), + [anon_sym_AMP] = ACTIONS(7119), + [anon_sym_EQ_EQ] = ACTIONS(7121), + [anon_sym_BANG_EQ] = ACTIONS(7121), + [anon_sym_GT] = ACTIONS(7119), + [anon_sym_GT_EQ] = ACTIONS(7121), + [anon_sym_LT_EQ] = ACTIONS(7119), + [anon_sym_LT] = ACTIONS(7119), + [anon_sym_LT_LT] = ACTIONS(7121), + [anon_sym_GT_GT] = ACTIONS(7121), + [anon_sym___extension__] = ACTIONS(7119), + [anon_sym_COLON_COLON] = ACTIONS(7121), + [sym_ms_restrict_modifier] = ACTIONS(9578), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(9578), + [sym_ms_signed_ptr_modifier] = ACTIONS(9578), + [anon_sym__unaligned] = ACTIONS(9581), + [anon_sym___unaligned] = ACTIONS(9581), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_RBRACK] = ACTIONS(7121), + [anon_sym_const] = ACTIONS(7119), + [anon_sym_constexpr] = ACTIONS(7119), + [anon_sym_volatile] = ACTIONS(7119), + [anon_sym_restrict] = ACTIONS(7119), + [anon_sym___restrict__] = ACTIONS(7119), + [anon_sym__Atomic] = ACTIONS(7119), + [anon_sym__Noreturn] = ACTIONS(7119), + [anon_sym_noreturn] = ACTIONS(7119), + [anon_sym__Nonnull] = ACTIONS(7119), + [anon_sym_mutable] = ACTIONS(7119), + [anon_sym_constinit] = ACTIONS(7119), + [anon_sym_consteval] = ACTIONS(7119), + [anon_sym_alignas] = ACTIONS(7119), + [anon_sym__Alignas] = ACTIONS(7119), + [anon_sym_QMARK] = ACTIONS(7121), + [anon_sym_LT_EQ_GT] = ACTIONS(7121), + [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(7121), + [anon_sym_PLUS_PLUS] = ACTIONS(7121), + [anon_sym_DOT] = ACTIONS(7119), + [anon_sym_DOT_STAR] = ACTIONS(7121), + [anon_sym_DASH_GT] = ACTIONS(7121), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7119), + [anon_sym_final] = ACTIONS(7119), + [anon_sym_override] = ACTIONS(7119), + [anon_sym_template] = ACTIONS(7119), + [anon_sym_requires] = ACTIONS(7119), + [anon_sym_LBRACK_COLON] = ACTIONS(7121), }, [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), - [sym_comment] = ACTIONS(3), + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym_ref_qualifier] = STATE(3979), + [sym__function_exception_specification] = STATE(4558), + [sym__function_attributes_end] = STATE(6630), + [sym__function_postfix] = STATE(5947), + [sym_trailing_return_type] = STATE(6496), + [sym_noexcept] = STATE(4558), + [sym_throw_specifier] = STATE(4558), + [sym_requires_clause] = STATE(5947), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7474), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7474), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(9584), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7474), + [anon_sym_AMP] = ACTIONS(9587), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7474), + [anon_sym_GT_GT] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7653), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7474), + [anon_sym_and] = ACTIONS(7474), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7474), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(9590), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9593), + [anon_sym_override] = ACTIONS(9593), + [anon_sym_noexcept] = ACTIONS(7662), + [anon_sym_throw] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(9596), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), }, [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), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(3801), + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7265), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7265), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7265), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7265), + [anon_sym_GT_GT] = ACTIONS(7265), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON_COLON] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_signed] = ACTIONS(9599), + [anon_sym_unsigned] = ACTIONS(9599), + [anon_sym_long] = ACTIONS(9599), + [anon_sym_short] = ACTIONS(9599), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym_RBRACK] = ACTIONS(7265), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7263), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7263), + [anon_sym_not_eq] = ACTIONS(7263), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7265), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7263), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_template] = ACTIONS(7263), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_LBRACK_COLON] = ACTIONS(7265), }, [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), - [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(8677), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8679), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8681), - [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), + [sym_string_literal] = STATE(2884), + [sym_template_argument_list] = STATE(4042), + [sym_raw_string_literal] = STATE(2884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(9601), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(8625), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9601), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(9603), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [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(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), + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym_ref_qualifier] = STATE(3967), + [sym__function_exception_specification] = STATE(4519), + [sym__function_attributes_end] = STATE(6654), + [sym__function_postfix] = STATE(5947), + [sym_trailing_return_type] = STATE(6819), + [sym_noexcept] = STATE(4519), + [sym_throw_specifier] = STATE(4519), + [sym_requires_clause] = STATE(5947), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7474), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7474), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(9584), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7474), + [anon_sym_AMP] = ACTIONS(9587), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7474), + [anon_sym_GT_GT] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7590), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(9605), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7684), + [anon_sym_override] = ACTIONS(7684), + [anon_sym_noexcept] = ACTIONS(7602), + [anon_sym_throw] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(7686), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3784), + [sym_identifier] = ACTIONS(7316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7318), + [anon_sym_LPAREN2] = ACTIONS(7318), + [anon_sym_DASH] = ACTIONS(7316), + [anon_sym_PLUS] = ACTIONS(7316), + [anon_sym_STAR] = ACTIONS(7318), + [anon_sym_SLASH] = ACTIONS(7316), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_PIPE_PIPE] = ACTIONS(7318), + [anon_sym_AMP_AMP] = ACTIONS(7318), + [anon_sym_PIPE] = ACTIONS(7316), + [anon_sym_CARET] = ACTIONS(7318), + [anon_sym_AMP] = ACTIONS(7316), + [anon_sym_EQ_EQ] = ACTIONS(7318), + [anon_sym_BANG_EQ] = ACTIONS(7318), + [anon_sym_GT] = ACTIONS(7316), + [anon_sym_GT_EQ] = ACTIONS(7316), + [anon_sym_LT_EQ] = ACTIONS(7316), + [anon_sym_LT] = ACTIONS(7316), + [anon_sym_LT_LT] = ACTIONS(7318), + [anon_sym_GT_GT] = ACTIONS(7316), + [anon_sym___extension__] = ACTIONS(7316), + [anon_sym___attribute__] = ACTIONS(7316), + [anon_sym___attribute] = ACTIONS(7316), + [anon_sym_COLON_COLON] = ACTIONS(7318), + [anon_sym_LBRACE] = ACTIONS(7318), + [anon_sym_signed] = ACTIONS(9608), + [anon_sym_unsigned] = ACTIONS(9608), + [anon_sym_long] = ACTIONS(9608), + [anon_sym_short] = ACTIONS(9608), + [anon_sym_LBRACK] = ACTIONS(7316), + [anon_sym_const] = ACTIONS(7316), + [anon_sym_constexpr] = ACTIONS(7316), + [anon_sym_volatile] = ACTIONS(7316), + [anon_sym_restrict] = ACTIONS(7316), + [anon_sym___restrict__] = ACTIONS(7316), + [anon_sym__Atomic] = ACTIONS(7316), + [anon_sym__Noreturn] = ACTIONS(7316), + [anon_sym_noreturn] = ACTIONS(7316), + [anon_sym__Nonnull] = ACTIONS(7316), + [anon_sym_mutable] = ACTIONS(7316), + [anon_sym_constinit] = ACTIONS(7316), + [anon_sym_consteval] = ACTIONS(7316), + [anon_sym_alignas] = ACTIONS(7316), + [anon_sym__Alignas] = ACTIONS(7316), + [anon_sym_QMARK] = ACTIONS(7318), + [anon_sym_LT_EQ_GT] = ACTIONS(7318), + [anon_sym_or] = ACTIONS(7316), + [anon_sym_and] = ACTIONS(7316), + [anon_sym_bitor] = ACTIONS(7316), + [anon_sym_xor] = ACTIONS(7316), + [anon_sym_bitand] = ACTIONS(7316), + [anon_sym_not_eq] = ACTIONS(7316), + [anon_sym_DASH_DASH] = ACTIONS(7318), + [anon_sym_PLUS_PLUS] = ACTIONS(7318), + [anon_sym_DOT] = ACTIONS(7316), + [anon_sym_DOT_STAR] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(7318), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7316), + [anon_sym_final] = ACTIONS(7316), + [anon_sym_override] = ACTIONS(7316), + [anon_sym_template] = ACTIONS(7316), + [anon_sym_GT2] = ACTIONS(7318), + [anon_sym_requires] = ACTIONS(7316), + [anon_sym_LBRACK_COLON] = ACTIONS(7318), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7298), + [anon_sym_LPAREN2] = ACTIONS(7298), + [anon_sym_DASH] = ACTIONS(7296), + [anon_sym_PLUS] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7298), + [anon_sym_SLASH] = ACTIONS(7296), + [anon_sym_PERCENT] = ACTIONS(7298), + [anon_sym_PIPE_PIPE] = ACTIONS(7298), + [anon_sym_AMP_AMP] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_EQ_EQ] = ACTIONS(7298), + [anon_sym_BANG_EQ] = ACTIONS(7298), + [anon_sym_GT] = ACTIONS(7296), + [anon_sym_GT_EQ] = ACTIONS(7298), + [anon_sym_LT_EQ] = ACTIONS(7296), + [anon_sym_LT] = ACTIONS(7296), + [anon_sym_LT_LT] = ACTIONS(7298), + [anon_sym_GT_GT] = ACTIONS(7298), + [anon_sym___extension__] = ACTIONS(7296), + [anon_sym___attribute__] = ACTIONS(7296), + [anon_sym___attribute] = ACTIONS(7296), + [anon_sym_COLON_COLON] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(9610), + [anon_sym_unsigned] = ACTIONS(9610), + [anon_sym_long] = ACTIONS(9610), + [anon_sym_short] = ACTIONS(9610), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_RBRACK] = ACTIONS(7298), + [anon_sym_const] = ACTIONS(7296), + [anon_sym_constexpr] = ACTIONS(7296), + [anon_sym_volatile] = ACTIONS(7296), + [anon_sym_restrict] = ACTIONS(7296), + [anon_sym___restrict__] = ACTIONS(7296), + [anon_sym__Atomic] = ACTIONS(7296), + [anon_sym__Noreturn] = ACTIONS(7296), + [anon_sym_noreturn] = ACTIONS(7296), + [anon_sym__Nonnull] = ACTIONS(7296), + [anon_sym_mutable] = ACTIONS(7296), + [anon_sym_constinit] = ACTIONS(7296), + [anon_sym_consteval] = ACTIONS(7296), + [anon_sym_alignas] = ACTIONS(7296), + [anon_sym__Alignas] = ACTIONS(7296), + [anon_sym_QMARK] = ACTIONS(7298), + [anon_sym_LT_EQ_GT] = ACTIONS(7298), + [anon_sym_or] = ACTIONS(7296), + [anon_sym_and] = ACTIONS(7296), + [anon_sym_bitor] = ACTIONS(7296), + [anon_sym_xor] = ACTIONS(7296), + [anon_sym_bitand] = ACTIONS(7296), + [anon_sym_not_eq] = ACTIONS(7296), + [anon_sym_DASH_DASH] = ACTIONS(7298), + [anon_sym_PLUS_PLUS] = ACTIONS(7298), + [anon_sym_DOT] = ACTIONS(7296), + [anon_sym_DOT_STAR] = ACTIONS(7298), + [anon_sym_DASH_GT] = ACTIONS(7298), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7296), + [anon_sym_final] = ACTIONS(7296), + [anon_sym_override] = ACTIONS(7296), + [anon_sym_template] = ACTIONS(7296), + [anon_sym_requires] = ACTIONS(7296), + [anon_sym_LBRACK_COLON] = ACTIONS(7298), }, [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), + [sym_identifier] = ACTIONS(5623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5625), + [anon_sym_COMMA] = ACTIONS(5625), + [anon_sym_RPAREN] = ACTIONS(5625), + [aux_sym_preproc_if_token2] = ACTIONS(5625), + [aux_sym_preproc_else_token1] = ACTIONS(5625), + [aux_sym_preproc_elif_token1] = ACTIONS(5623), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5625), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5625), + [anon_sym_LPAREN2] = ACTIONS(5625), + [anon_sym_DASH] = ACTIONS(5623), + [anon_sym_PLUS] = ACTIONS(5623), + [anon_sym_STAR] = ACTIONS(5623), + [anon_sym_SLASH] = ACTIONS(5623), + [anon_sym_PERCENT] = ACTIONS(5623), + [anon_sym_PIPE_PIPE] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5625), + [anon_sym_PIPE] = ACTIONS(5623), + [anon_sym_CARET] = ACTIONS(5623), + [anon_sym_AMP] = ACTIONS(5623), + [anon_sym_EQ_EQ] = ACTIONS(5625), + [anon_sym_BANG_EQ] = ACTIONS(5625), + [anon_sym_GT] = ACTIONS(5623), + [anon_sym_GT_EQ] = ACTIONS(5625), + [anon_sym_LT_EQ] = ACTIONS(5623), + [anon_sym_LT] = ACTIONS(5623), + [anon_sym_LT_LT] = ACTIONS(5623), + [anon_sym_GT_GT] = ACTIONS(5623), + [anon_sym_SEMI] = ACTIONS(5625), + [anon_sym___attribute__] = ACTIONS(5623), + [anon_sym___attribute] = ACTIONS(5623), + [anon_sym_COLON] = ACTIONS(5623), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5625), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5625), + [anon_sym_RBRACE] = ACTIONS(5625), + [anon_sym_LBRACK] = ACTIONS(5623), + [anon_sym_EQ] = ACTIONS(5623), + [anon_sym_QMARK] = ACTIONS(5625), + [anon_sym_STAR_EQ] = ACTIONS(5625), + [anon_sym_SLASH_EQ] = ACTIONS(5625), + [anon_sym_PERCENT_EQ] = ACTIONS(5625), + [anon_sym_PLUS_EQ] = ACTIONS(5625), + [anon_sym_DASH_EQ] = ACTIONS(5625), + [anon_sym_LT_LT_EQ] = ACTIONS(5625), + [anon_sym_GT_GT_EQ] = ACTIONS(5625), + [anon_sym_AMP_EQ] = ACTIONS(5625), + [anon_sym_CARET_EQ] = ACTIONS(5625), + [anon_sym_PIPE_EQ] = ACTIONS(5625), + [anon_sym_and_eq] = ACTIONS(5623), + [anon_sym_or_eq] = ACTIONS(5623), + [anon_sym_xor_eq] = ACTIONS(5623), + [anon_sym_LT_EQ_GT] = ACTIONS(5625), + [anon_sym_or] = ACTIONS(5623), + [anon_sym_and] = ACTIONS(5623), + [anon_sym_bitor] = ACTIONS(5623), + [anon_sym_xor] = ACTIONS(5623), + [anon_sym_bitand] = ACTIONS(5623), + [anon_sym_not_eq] = ACTIONS(5623), + [anon_sym_DASH_DASH] = ACTIONS(5625), + [anon_sym_PLUS_PLUS] = ACTIONS(5625), + [anon_sym_DOT] = ACTIONS(5623), + [anon_sym_DOT_STAR] = ACTIONS(5625), + [anon_sym_DASH_GT] = ACTIONS(5625), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5623), + [anon_sym_override] = ACTIONS(5623), + [anon_sym_requires] = ACTIONS(5623), + [anon_sym_COLON_RBRACK] = ACTIONS(5625), }, [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), + [sym_string_literal] = STATE(5659), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(5659), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___attribute__] = ACTIONS(5663), + [anon_sym___attribute] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(7061), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(7063), + [anon_sym_SLASH_EQ] = ACTIONS(7063), + [anon_sym_PERCENT_EQ] = ACTIONS(7063), + [anon_sym_PLUS_EQ] = ACTIONS(7063), + [anon_sym_DASH_EQ] = ACTIONS(7063), + [anon_sym_LT_LT_EQ] = ACTIONS(7063), + [anon_sym_GT_GT_EQ] = ACTIONS(7063), + [anon_sym_AMP_EQ] = ACTIONS(7063), + [anon_sym_CARET_EQ] = ACTIONS(7063), + [anon_sym_PIPE_EQ] = ACTIONS(7063), + [anon_sym_and_eq] = ACTIONS(7063), + [anon_sym_or_eq] = ACTIONS(7063), + [anon_sym_xor_eq] = ACTIONS(7063), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7065), + [anon_sym_u_DQUOTE] = ACTIONS(7065), + [anon_sym_U_DQUOTE] = ACTIONS(7065), + [anon_sym_u8_DQUOTE] = ACTIONS(7065), + [anon_sym_DQUOTE] = ACTIONS(7065), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7067), + [anon_sym_LR_DQUOTE] = ACTIONS(7067), + [anon_sym_uR_DQUOTE] = ACTIONS(7067), + [anon_sym_UR_DQUOTE] = ACTIONS(7067), + [anon_sym_u8R_DQUOTE] = ACTIONS(7067), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3790), + [sym_identifier] = ACTIONS(7296), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7298), + [anon_sym_COMMA] = ACTIONS(7298), + [anon_sym_LPAREN2] = ACTIONS(7298), + [anon_sym_DASH] = ACTIONS(7296), + [anon_sym_PLUS] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(7298), + [anon_sym_SLASH] = ACTIONS(7296), + [anon_sym_PERCENT] = ACTIONS(7298), + [anon_sym_PIPE_PIPE] = ACTIONS(7298), + [anon_sym_AMP_AMP] = ACTIONS(7298), + [anon_sym_PIPE] = ACTIONS(7296), + [anon_sym_CARET] = ACTIONS(7298), + [anon_sym_AMP] = ACTIONS(7296), + [anon_sym_EQ_EQ] = ACTIONS(7298), + [anon_sym_BANG_EQ] = ACTIONS(7298), + [anon_sym_GT] = ACTIONS(7296), + [anon_sym_GT_EQ] = ACTIONS(7296), + [anon_sym_LT_EQ] = ACTIONS(7296), + [anon_sym_LT] = ACTIONS(7296), + [anon_sym_LT_LT] = ACTIONS(7298), + [anon_sym_GT_GT] = ACTIONS(7296), + [anon_sym___extension__] = ACTIONS(7296), + [anon_sym___attribute__] = ACTIONS(7296), + [anon_sym___attribute] = ACTIONS(7296), + [anon_sym_COLON_COLON] = ACTIONS(7298), + [anon_sym_LBRACE] = ACTIONS(7298), + [anon_sym_signed] = ACTIONS(9612), + [anon_sym_unsigned] = ACTIONS(9612), + [anon_sym_long] = ACTIONS(9612), + [anon_sym_short] = ACTIONS(9612), + [anon_sym_LBRACK] = ACTIONS(7296), + [anon_sym_const] = ACTIONS(7296), + [anon_sym_constexpr] = ACTIONS(7296), + [anon_sym_volatile] = ACTIONS(7296), + [anon_sym_restrict] = ACTIONS(7296), + [anon_sym___restrict__] = ACTIONS(7296), + [anon_sym__Atomic] = ACTIONS(7296), + [anon_sym__Noreturn] = ACTIONS(7296), + [anon_sym_noreturn] = ACTIONS(7296), + [anon_sym__Nonnull] = ACTIONS(7296), + [anon_sym_mutable] = ACTIONS(7296), + [anon_sym_constinit] = ACTIONS(7296), + [anon_sym_consteval] = ACTIONS(7296), + [anon_sym_alignas] = ACTIONS(7296), + [anon_sym__Alignas] = ACTIONS(7296), + [anon_sym_QMARK] = ACTIONS(7298), + [anon_sym_LT_EQ_GT] = ACTIONS(7298), + [anon_sym_or] = ACTIONS(7296), + [anon_sym_and] = ACTIONS(7296), + [anon_sym_bitor] = ACTIONS(7296), + [anon_sym_xor] = ACTIONS(7296), + [anon_sym_bitand] = ACTIONS(7296), + [anon_sym_not_eq] = ACTIONS(7296), + [anon_sym_DASH_DASH] = ACTIONS(7298), + [anon_sym_PLUS_PLUS] = ACTIONS(7298), + [anon_sym_DOT] = ACTIONS(7296), + [anon_sym_DOT_STAR] = ACTIONS(7298), + [anon_sym_DASH_GT] = ACTIONS(7298), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7296), + [anon_sym_final] = ACTIONS(7296), + [anon_sym_override] = ACTIONS(7296), + [anon_sym_template] = ACTIONS(7296), + [anon_sym_GT2] = ACTIONS(7298), + [anon_sym_requires] = ACTIONS(7296), + [anon_sym_LBRACK_COLON] = ACTIONS(7298), }, [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), + [sym_string_literal] = STATE(2884), + [sym_template_argument_list] = STATE(4467), + [sym_raw_string_literal] = STATE(2884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(9614), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9617), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7109), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(9620), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [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(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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3790), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7255), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7255), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7253), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7255), + [anon_sym_GT_GT] = ACTIONS(7253), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(9612), + [anon_sym_unsigned] = ACTIONS(9612), + [anon_sym_long] = ACTIONS(9612), + [anon_sym_short] = ACTIONS(9612), + [anon_sym_LBRACK] = ACTIONS(7253), + [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(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7253), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_template] = ACTIONS(7253), + [anon_sym_GT2] = ACTIONS(7255), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_LBRACK_COLON] = ACTIONS(7255), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3817), + [sym_identifier] = ACTIONS(7263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7265), + [anon_sym_COMMA] = ACTIONS(7265), + [anon_sym_LPAREN2] = ACTIONS(7265), + [anon_sym_DASH] = ACTIONS(7263), + [anon_sym_PLUS] = ACTIONS(7263), + [anon_sym_STAR] = ACTIONS(7265), + [anon_sym_SLASH] = ACTIONS(7263), + [anon_sym_PERCENT] = ACTIONS(7265), + [anon_sym_PIPE_PIPE] = ACTIONS(7265), + [anon_sym_AMP_AMP] = ACTIONS(7265), + [anon_sym_PIPE] = ACTIONS(7263), + [anon_sym_CARET] = ACTIONS(7265), + [anon_sym_AMP] = ACTIONS(7263), + [anon_sym_EQ_EQ] = ACTIONS(7265), + [anon_sym_BANG_EQ] = ACTIONS(7265), + [anon_sym_GT] = ACTIONS(7263), + [anon_sym_GT_EQ] = ACTIONS(7263), + [anon_sym_LT_EQ] = ACTIONS(7263), + [anon_sym_LT] = ACTIONS(7263), + [anon_sym_LT_LT] = ACTIONS(7265), + [anon_sym_GT_GT] = ACTIONS(7263), + [anon_sym___extension__] = ACTIONS(7263), + [anon_sym___attribute__] = ACTIONS(7263), + [anon_sym___attribute] = ACTIONS(7263), + [anon_sym_COLON_COLON] = ACTIONS(7265), + [anon_sym_LBRACE] = ACTIONS(7265), + [anon_sym_signed] = ACTIONS(9623), + [anon_sym_unsigned] = ACTIONS(9623), + [anon_sym_long] = ACTIONS(9623), + [anon_sym_short] = ACTIONS(9623), + [anon_sym_LBRACK] = ACTIONS(7263), + [anon_sym_const] = ACTIONS(7263), + [anon_sym_constexpr] = ACTIONS(7263), + [anon_sym_volatile] = ACTIONS(7263), + [anon_sym_restrict] = ACTIONS(7263), + [anon_sym___restrict__] = ACTIONS(7263), + [anon_sym__Atomic] = ACTIONS(7263), + [anon_sym__Noreturn] = ACTIONS(7263), + [anon_sym_noreturn] = ACTIONS(7263), + [anon_sym__Nonnull] = ACTIONS(7263), + [anon_sym_mutable] = ACTIONS(7263), + [anon_sym_constinit] = ACTIONS(7263), + [anon_sym_consteval] = ACTIONS(7263), + [anon_sym_alignas] = ACTIONS(7263), + [anon_sym__Alignas] = ACTIONS(7263), + [anon_sym_QMARK] = ACTIONS(7265), + [anon_sym_LT_EQ_GT] = ACTIONS(7265), + [anon_sym_or] = ACTIONS(7263), + [anon_sym_and] = ACTIONS(7263), + [anon_sym_bitor] = ACTIONS(7263), + [anon_sym_xor] = ACTIONS(7263), + [anon_sym_bitand] = ACTIONS(7263), + [anon_sym_not_eq] = ACTIONS(7263), + [anon_sym_DASH_DASH] = ACTIONS(7265), + [anon_sym_PLUS_PLUS] = ACTIONS(7265), + [anon_sym_DOT] = ACTIONS(7263), + [anon_sym_DOT_STAR] = ACTIONS(7265), + [anon_sym_DASH_GT] = ACTIONS(7265), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7263), + [anon_sym_final] = ACTIONS(7263), + [anon_sym_override] = ACTIONS(7263), + [anon_sym_template] = ACTIONS(7263), + [anon_sym_GT2] = ACTIONS(7265), + [anon_sym_requires] = ACTIONS(7263), + [anon_sym_LBRACK_COLON] = ACTIONS(7265), }, [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), - [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3821), + [sym_identifier] = ACTIONS(7269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7271), + [anon_sym_COMMA] = ACTIONS(7271), + [anon_sym_LPAREN2] = ACTIONS(7271), + [anon_sym_DASH] = ACTIONS(7269), + [anon_sym_PLUS] = ACTIONS(7269), + [anon_sym_STAR] = ACTIONS(7271), + [anon_sym_SLASH] = ACTIONS(7269), + [anon_sym_PERCENT] = ACTIONS(7271), + [anon_sym_PIPE_PIPE] = ACTIONS(7271), + [anon_sym_AMP_AMP] = ACTIONS(7271), + [anon_sym_PIPE] = ACTIONS(7269), + [anon_sym_CARET] = ACTIONS(7271), + [anon_sym_AMP] = ACTIONS(7269), + [anon_sym_EQ_EQ] = ACTIONS(7271), + [anon_sym_BANG_EQ] = ACTIONS(7271), + [anon_sym_GT] = ACTIONS(7269), + [anon_sym_GT_EQ] = ACTIONS(7269), + [anon_sym_LT_EQ] = ACTIONS(7269), + [anon_sym_LT] = ACTIONS(7269), + [anon_sym_LT_LT] = ACTIONS(7271), + [anon_sym_GT_GT] = ACTIONS(7269), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym___attribute__] = ACTIONS(7269), + [anon_sym___attribute] = ACTIONS(7269), + [anon_sym_COLON_COLON] = ACTIONS(7271), + [anon_sym_LBRACE] = ACTIONS(7271), + [anon_sym_signed] = ACTIONS(9625), + [anon_sym_unsigned] = ACTIONS(9625), + [anon_sym_long] = ACTIONS(9625), + [anon_sym_short] = ACTIONS(9625), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_const] = ACTIONS(7269), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7271), + [anon_sym_LT_EQ_GT] = ACTIONS(7271), + [anon_sym_or] = ACTIONS(7269), + [anon_sym_and] = ACTIONS(7269), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7269), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7271), + [anon_sym_PLUS_PLUS] = ACTIONS(7271), + [anon_sym_DOT] = ACTIONS(7269), + [anon_sym_DOT_STAR] = ACTIONS(7271), + [anon_sym_DASH_GT] = ACTIONS(7271), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7269), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_template] = ACTIONS(7269), + [anon_sym_GT2] = ACTIONS(7271), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_LBRACK_COLON] = ACTIONS(7271), }, [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), - [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___attribute__] = ACTIONS(7347), - [anon_sym___attribute] = ACTIONS(7347), - [anon_sym_COLON_COLON] = ACTIONS(8675), - [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7306), + [anon_sym_LPAREN2] = ACTIONS(7306), + [anon_sym_DASH] = ACTIONS(7304), + [anon_sym_PLUS] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7306), + [anon_sym_SLASH] = ACTIONS(7304), + [anon_sym_PERCENT] = ACTIONS(7306), + [anon_sym_PIPE_PIPE] = ACTIONS(7306), + [anon_sym_AMP_AMP] = ACTIONS(7306), + [anon_sym_PIPE] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(7306), + [anon_sym_AMP] = ACTIONS(7304), + [anon_sym_EQ_EQ] = ACTIONS(7306), + [anon_sym_BANG_EQ] = ACTIONS(7306), + [anon_sym_GT] = ACTIONS(7304), + [anon_sym_GT_EQ] = ACTIONS(7306), + [anon_sym_LT_EQ] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7304), + [anon_sym_LT_LT] = ACTIONS(7306), + [anon_sym_GT_GT] = ACTIONS(7306), + [anon_sym___extension__] = ACTIONS(7304), + [anon_sym___attribute__] = ACTIONS(7304), + [anon_sym___attribute] = ACTIONS(7304), + [anon_sym_COLON_COLON] = ACTIONS(7306), + [anon_sym_LBRACE] = ACTIONS(7306), + [anon_sym_signed] = ACTIONS(9610), + [anon_sym_unsigned] = ACTIONS(9610), + [anon_sym_long] = ACTIONS(9610), + [anon_sym_short] = ACTIONS(9610), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_RBRACK] = ACTIONS(7306), + [anon_sym_const] = ACTIONS(7304), + [anon_sym_constexpr] = ACTIONS(7304), + [anon_sym_volatile] = ACTIONS(7304), + [anon_sym_restrict] = ACTIONS(7304), + [anon_sym___restrict__] = ACTIONS(7304), + [anon_sym__Atomic] = ACTIONS(7304), + [anon_sym__Noreturn] = ACTIONS(7304), + [anon_sym_noreturn] = ACTIONS(7304), + [anon_sym__Nonnull] = ACTIONS(7304), + [anon_sym_mutable] = ACTIONS(7304), + [anon_sym_constinit] = ACTIONS(7304), + [anon_sym_consteval] = ACTIONS(7304), + [anon_sym_alignas] = ACTIONS(7304), + [anon_sym__Alignas] = ACTIONS(7304), + [anon_sym_QMARK] = ACTIONS(7306), + [anon_sym_LT_EQ_GT] = ACTIONS(7306), + [anon_sym_or] = ACTIONS(7304), + [anon_sym_and] = ACTIONS(7304), + [anon_sym_bitor] = ACTIONS(7304), + [anon_sym_xor] = ACTIONS(7304), + [anon_sym_bitand] = ACTIONS(7304), + [anon_sym_not_eq] = ACTIONS(7304), + [anon_sym_DASH_DASH] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(7306), + [anon_sym_DOT] = ACTIONS(7304), + [anon_sym_DOT_STAR] = ACTIONS(7306), + [anon_sym_DASH_GT] = ACTIONS(7306), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7304), + [anon_sym_final] = ACTIONS(7304), + [anon_sym_override] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7304), + [anon_sym_requires] = ACTIONS(7304), + [anon_sym_LBRACK_COLON] = ACTIONS(7306), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3790), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7175), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7175), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7175), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7173), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7175), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(9627), + [anon_sym_unsigned] = ACTIONS(9627), + [anon_sym_long] = ACTIONS(9627), + [anon_sym_short] = ACTIONS(9627), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_GT2] = ACTIONS(7175), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), }, [STATE(3791)] = { - [sym_argument_list] = STATE(3874), - [sym_subscript_argument_list] = STATE(3900), - [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), + [sym_attribute_specifier] = STATE(4184), + [sym_field_declaration_list] = STATE(4102), + [sym_virtual_specifier] = STATE(10719), + [sym_base_class_clause] = STATE(11764), + [sym_identifier] = ACTIONS(7370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(7372), + [anon_sym_RPAREN] = ACTIONS(7372), + [anon_sym_LPAREN2] = ACTIONS(7372), + [anon_sym_TILDE] = ACTIONS(7372), + [anon_sym_STAR] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7372), + [anon_sym_AMP] = ACTIONS(7370), + [anon_sym_SEMI] = ACTIONS(7372), + [anon_sym___extension__] = ACTIONS(7370), + [anon_sym_virtual] = ACTIONS(7370), + [anon_sym_extern] = ACTIONS(7370), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7372), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7372), + [anon_sym___declspec] = ACTIONS(7370), + [anon_sym___based] = ACTIONS(7370), + [anon_sym___cdecl] = ACTIONS(7370), + [anon_sym___clrcall] = ACTIONS(7370), + [anon_sym___stdcall] = ACTIONS(7370), + [anon_sym___fastcall] = ACTIONS(7370), + [anon_sym___thiscall] = ACTIONS(7370), + [anon_sym___vectorcall] = ACTIONS(7370), + [anon_sym_LBRACE] = ACTIONS(9630), + [anon_sym_LBRACK] = ACTIONS(7370), + [anon_sym_static] = ACTIONS(7370), + [anon_sym_EQ] = ACTIONS(7372), + [anon_sym_register] = ACTIONS(7370), + [anon_sym_inline] = ACTIONS(7370), + [anon_sym___inline] = ACTIONS(7370), + [anon_sym___inline__] = ACTIONS(7370), + [anon_sym___forceinline] = ACTIONS(7370), + [anon_sym_thread_local] = ACTIONS(7370), + [anon_sym___thread] = ACTIONS(7370), + [anon_sym_const] = ACTIONS(7370), + [anon_sym_constexpr] = ACTIONS(7370), + [anon_sym_volatile] = ACTIONS(7370), + [anon_sym_restrict] = ACTIONS(7370), + [anon_sym___restrict__] = ACTIONS(7370), + [anon_sym__Atomic] = ACTIONS(7370), + [anon_sym__Noreturn] = ACTIONS(7370), + [anon_sym_noreturn] = ACTIONS(7370), + [anon_sym__Nonnull] = ACTIONS(7370), + [anon_sym_mutable] = ACTIONS(7370), + [anon_sym_constinit] = ACTIONS(7370), + [anon_sym_consteval] = ACTIONS(7370), + [anon_sym_alignas] = ACTIONS(7370), + [anon_sym__Alignas] = ACTIONS(7370), + [anon_sym_asm] = ACTIONS(7370), + [anon_sym___asm__] = ACTIONS(7370), + [anon_sym___asm] = ACTIONS(7370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7370), + [anon_sym_final] = ACTIONS(7380), + [anon_sym_override] = ACTIONS(7380), + [anon_sym_template] = ACTIONS(7370), + [anon_sym_GT2] = ACTIONS(7372), + [anon_sym_operator] = ACTIONS(7370), + [anon_sym_try] = ACTIONS(7370), + [anon_sym_requires] = ACTIONS(7370), + [anon_sym_LBRACK_COLON] = ACTIONS(7372), }, [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), + [sym_string_literal] = STATE(3774), + [sym_raw_string_literal] = STATE(3774), + [aux_sym_concatenated_string_repeat1] = STATE(3774), + [sym_identifier] = ACTIONS(9632), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8800), + [anon_sym_COMMA] = ACTIONS(8800), + [anon_sym_LPAREN2] = ACTIONS(8800), + [anon_sym_DASH] = ACTIONS(8802), + [anon_sym_PLUS] = ACTIONS(8802), + [anon_sym_STAR] = ACTIONS(8802), + [anon_sym_SLASH] = ACTIONS(8802), + [anon_sym_PERCENT] = ACTIONS(8802), + [anon_sym_PIPE_PIPE] = ACTIONS(8800), + [anon_sym_AMP_AMP] = ACTIONS(8800), + [anon_sym_PIPE] = ACTIONS(8802), + [anon_sym_CARET] = ACTIONS(8802), + [anon_sym_AMP] = ACTIONS(8802), + [anon_sym_EQ_EQ] = ACTIONS(8800), + [anon_sym_BANG_EQ] = ACTIONS(8800), + [anon_sym_GT] = ACTIONS(8802), + [anon_sym_GT_EQ] = ACTIONS(8800), + [anon_sym_LT_EQ] = ACTIONS(8802), + [anon_sym_LT] = ACTIONS(8802), + [anon_sym_LT_LT] = ACTIONS(8802), + [anon_sym_GT_GT] = ACTIONS(8802), + [anon_sym_SEMI] = ACTIONS(8800), + [anon_sym___attribute__] = ACTIONS(8802), + [anon_sym___attribute] = ACTIONS(8802), + [anon_sym_LBRACK] = ACTIONS(8800), + [anon_sym_EQ] = ACTIONS(8802), + [anon_sym_QMARK] = ACTIONS(8800), + [anon_sym_STAR_EQ] = ACTIONS(8800), + [anon_sym_SLASH_EQ] = ACTIONS(8800), + [anon_sym_PERCENT_EQ] = ACTIONS(8800), + [anon_sym_PLUS_EQ] = ACTIONS(8800), + [anon_sym_DASH_EQ] = ACTIONS(8800), + [anon_sym_LT_LT_EQ] = ACTIONS(8800), + [anon_sym_GT_GT_EQ] = ACTIONS(8800), + [anon_sym_AMP_EQ] = ACTIONS(8800), + [anon_sym_CARET_EQ] = ACTIONS(8800), + [anon_sym_PIPE_EQ] = ACTIONS(8800), + [anon_sym_and_eq] = ACTIONS(8802), + [anon_sym_or_eq] = ACTIONS(8802), + [anon_sym_xor_eq] = ACTIONS(8802), + [anon_sym_LT_EQ_GT] = ACTIONS(8800), + [anon_sym_or] = ACTIONS(8802), + [anon_sym_and] = ACTIONS(8802), + [anon_sym_bitor] = ACTIONS(8802), + [anon_sym_xor] = ACTIONS(8802), + [anon_sym_bitand] = ACTIONS(8802), + [anon_sym_not_eq] = ACTIONS(8802), + [anon_sym_DASH_DASH] = ACTIONS(8800), + [anon_sym_PLUS_PLUS] = ACTIONS(8800), + [anon_sym_DOT] = ACTIONS(8802), + [anon_sym_DOT_STAR] = ACTIONS(8800), + [anon_sym_DASH_GT] = ACTIONS(8800), + [anon_sym_L_DQUOTE] = ACTIONS(7102), + [anon_sym_u_DQUOTE] = ACTIONS(7102), + [anon_sym_U_DQUOTE] = ACTIONS(7102), + [anon_sym_u8_DQUOTE] = ACTIONS(7102), + [anon_sym_DQUOTE] = ACTIONS(7102), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7104), + [anon_sym_LR_DQUOTE] = ACTIONS(7104), + [anon_sym_uR_DQUOTE] = ACTIONS(7104), + [anon_sym_UR_DQUOTE] = ACTIONS(7104), + [anon_sym_u8R_DQUOTE] = ACTIONS(7104), + [sym_literal_suffix] = ACTIONS(8802), }, [STATE(3793)] = { - [sym_attribute_specifier] = STATE(4077), - [sym_enumerator_list] = STATE(3835), - [sym_identifier] = ACTIONS(7387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [aux_sym_preproc_if_token2] = ACTIONS(7389), - [aux_sym_preproc_else_token1] = ACTIONS(7389), - [aux_sym_preproc_elif_token1] = ACTIONS(7387), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7389), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7389), - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7389), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7389), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7389), - [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(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_LBRACK] = ACTIONS(7389), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7387), - [anon_sym_volatile] = ACTIONS(7387), - [anon_sym_restrict] = ACTIONS(7387), - [anon_sym___restrict__] = ACTIONS(7387), - [anon_sym__Atomic] = ACTIONS(7387), - [anon_sym__Noreturn] = ACTIONS(7387), - [anon_sym_noreturn] = ACTIONS(7387), - [anon_sym__Nonnull] = ACTIONS(7387), - [anon_sym_mutable] = ACTIONS(7387), - [anon_sym_constinit] = ACTIONS(7387), - [anon_sym_consteval] = ACTIONS(7387), - [anon_sym_alignas] = ACTIONS(7387), - [anon_sym__Alignas] = ACTIONS(7387), - [anon_sym_QMARK] = ACTIONS(7389), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7387), - [anon_sym_and] = ACTIONS(7387), - [anon_sym_bitor] = ACTIONS(7387), - [anon_sym_xor] = ACTIONS(7387), - [anon_sym_bitand] = ACTIONS(7387), - [anon_sym_not_eq] = ACTIONS(7387), - [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(7387), - [anon_sym_override] = ACTIONS(7387), - [anon_sym_requires] = ACTIONS(7387), + [sym_identifier] = ACTIONS(5619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5621), + [anon_sym_COMMA] = ACTIONS(5621), + [anon_sym_RPAREN] = ACTIONS(5621), + [aux_sym_preproc_if_token2] = ACTIONS(5621), + [aux_sym_preproc_else_token1] = ACTIONS(5621), + [aux_sym_preproc_elif_token1] = ACTIONS(5619), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5621), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5621), + [anon_sym_LPAREN2] = ACTIONS(5621), + [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(5621), + [anon_sym_AMP_AMP] = ACTIONS(5621), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5621), + [anon_sym_BANG_EQ] = ACTIONS(5621), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5621), + [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(5621), + [anon_sym___attribute__] = ACTIONS(5619), + [anon_sym___attribute] = ACTIONS(5619), + [anon_sym_COLON] = ACTIONS(5619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5621), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5621), + [anon_sym_RBRACE] = ACTIONS(5621), + [anon_sym_LBRACK] = ACTIONS(5619), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5621), + [anon_sym_STAR_EQ] = ACTIONS(5621), + [anon_sym_SLASH_EQ] = ACTIONS(5621), + [anon_sym_PERCENT_EQ] = ACTIONS(5621), + [anon_sym_PLUS_EQ] = ACTIONS(5621), + [anon_sym_DASH_EQ] = ACTIONS(5621), + [anon_sym_LT_LT_EQ] = ACTIONS(5621), + [anon_sym_GT_GT_EQ] = ACTIONS(5621), + [anon_sym_AMP_EQ] = ACTIONS(5621), + [anon_sym_CARET_EQ] = ACTIONS(5621), + [anon_sym_PIPE_EQ] = ACTIONS(5621), + [anon_sym_and_eq] = ACTIONS(5619), + [anon_sym_or_eq] = ACTIONS(5619), + [anon_sym_xor_eq] = ACTIONS(5619), + [anon_sym_LT_EQ_GT] = ACTIONS(5621), + [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(5621), + [anon_sym_PLUS_PLUS] = ACTIONS(5621), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5621), + [anon_sym_DASH_GT] = ACTIONS(5621), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5619), + [anon_sym_override] = ACTIONS(5619), + [anon_sym_requires] = ACTIONS(5619), + [anon_sym_COLON_RBRACK] = ACTIONS(5621), }, [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), + [sym_string_literal] = STATE(3950), + [sym_template_argument_list] = STATE(5531), + [sym_raw_string_literal] = STATE(3950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(9601), + [anon_sym_LPAREN2] = ACTIONS(9601), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9634), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9601), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(9603), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5671), + [anon_sym_L_DQUOTE] = ACTIONS(7111), + [anon_sym_u_DQUOTE] = ACTIONS(7111), + [anon_sym_U_DQUOTE] = ACTIONS(7111), + [anon_sym_u8_DQUOTE] = ACTIONS(7111), + [anon_sym_DQUOTE] = ACTIONS(7111), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7113), + [anon_sym_LR_DQUOTE] = ACTIONS(7113), + [anon_sym_uR_DQUOTE] = ACTIONS(7113), + [anon_sym_UR_DQUOTE] = ACTIONS(7113), + [anon_sym_u8R_DQUOTE] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(5663), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3790), + [sym_identifier] = ACTIONS(7304), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7306), + [anon_sym_COMMA] = ACTIONS(7306), + [anon_sym_LPAREN2] = ACTIONS(7306), + [anon_sym_DASH] = ACTIONS(7304), + [anon_sym_PLUS] = ACTIONS(7304), + [anon_sym_STAR] = ACTIONS(7306), + [anon_sym_SLASH] = ACTIONS(7304), + [anon_sym_PERCENT] = ACTIONS(7306), + [anon_sym_PIPE_PIPE] = ACTIONS(7306), + [anon_sym_AMP_AMP] = ACTIONS(7306), + [anon_sym_PIPE] = ACTIONS(7304), + [anon_sym_CARET] = ACTIONS(7306), + [anon_sym_AMP] = ACTIONS(7304), + [anon_sym_EQ_EQ] = ACTIONS(7306), + [anon_sym_BANG_EQ] = ACTIONS(7306), + [anon_sym_GT] = ACTIONS(7304), + [anon_sym_GT_EQ] = ACTIONS(7304), + [anon_sym_LT_EQ] = ACTIONS(7304), + [anon_sym_LT] = ACTIONS(7304), + [anon_sym_LT_LT] = ACTIONS(7306), + [anon_sym_GT_GT] = ACTIONS(7304), + [anon_sym___extension__] = ACTIONS(7304), + [anon_sym___attribute__] = ACTIONS(7304), + [anon_sym___attribute] = ACTIONS(7304), + [anon_sym_COLON_COLON] = ACTIONS(7306), + [anon_sym_LBRACE] = ACTIONS(7306), + [anon_sym_signed] = ACTIONS(9612), + [anon_sym_unsigned] = ACTIONS(9612), + [anon_sym_long] = ACTIONS(9612), + [anon_sym_short] = ACTIONS(9612), + [anon_sym_LBRACK] = ACTIONS(7304), + [anon_sym_const] = ACTIONS(7304), + [anon_sym_constexpr] = ACTIONS(7304), + [anon_sym_volatile] = ACTIONS(7304), + [anon_sym_restrict] = ACTIONS(7304), + [anon_sym___restrict__] = ACTIONS(7304), + [anon_sym__Atomic] = ACTIONS(7304), + [anon_sym__Noreturn] = ACTIONS(7304), + [anon_sym_noreturn] = ACTIONS(7304), + [anon_sym__Nonnull] = ACTIONS(7304), + [anon_sym_mutable] = ACTIONS(7304), + [anon_sym_constinit] = ACTIONS(7304), + [anon_sym_consteval] = ACTIONS(7304), + [anon_sym_alignas] = ACTIONS(7304), + [anon_sym__Alignas] = ACTIONS(7304), + [anon_sym_QMARK] = ACTIONS(7306), + [anon_sym_LT_EQ_GT] = ACTIONS(7306), + [anon_sym_or] = ACTIONS(7304), + [anon_sym_and] = ACTIONS(7304), + [anon_sym_bitor] = ACTIONS(7304), + [anon_sym_xor] = ACTIONS(7304), + [anon_sym_bitand] = ACTIONS(7304), + [anon_sym_not_eq] = ACTIONS(7304), + [anon_sym_DASH_DASH] = ACTIONS(7306), + [anon_sym_PLUS_PLUS] = ACTIONS(7306), + [anon_sym_DOT] = ACTIONS(7304), + [anon_sym_DOT_STAR] = ACTIONS(7306), + [anon_sym_DASH_GT] = ACTIONS(7306), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7304), + [anon_sym_final] = ACTIONS(7304), + [anon_sym_override] = ACTIONS(7304), + [anon_sym_template] = ACTIONS(7304), + [anon_sym_GT2] = ACTIONS(7306), + [anon_sym_requires] = ACTIONS(7304), + [anon_sym_LBRACK_COLON] = ACTIONS(7306), }, [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7310), + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_DASH] = ACTIONS(7308), + [anon_sym_PLUS] = ACTIONS(7308), + [anon_sym_STAR] = ACTIONS(7310), + [anon_sym_SLASH] = ACTIONS(7308), + [anon_sym_PERCENT] = ACTIONS(7310), + [anon_sym_PIPE_PIPE] = ACTIONS(7310), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_PIPE] = ACTIONS(7308), + [anon_sym_CARET] = ACTIONS(7310), + [anon_sym_AMP] = ACTIONS(7308), + [anon_sym_EQ_EQ] = ACTIONS(7310), + [anon_sym_BANG_EQ] = ACTIONS(7310), + [anon_sym_GT] = ACTIONS(7308), + [anon_sym_GT_EQ] = ACTIONS(7310), + [anon_sym_LT_EQ] = ACTIONS(7308), + [anon_sym_LT] = ACTIONS(7308), + [anon_sym_LT_LT] = ACTIONS(7310), + [anon_sym_GT_GT] = ACTIONS(7310), + [anon_sym___extension__] = ACTIONS(7308), + [anon_sym___attribute__] = ACTIONS(7308), + [anon_sym___attribute] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_LBRACE] = ACTIONS(7310), + [anon_sym_signed] = ACTIONS(9610), + [anon_sym_unsigned] = ACTIONS(9610), + [anon_sym_long] = ACTIONS(9610), + [anon_sym_short] = ACTIONS(9610), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym_RBRACK] = ACTIONS(7310), + [anon_sym_const] = ACTIONS(7308), + [anon_sym_constexpr] = ACTIONS(7308), + [anon_sym_volatile] = ACTIONS(7308), + [anon_sym_restrict] = ACTIONS(7308), + [anon_sym___restrict__] = ACTIONS(7308), + [anon_sym__Atomic] = ACTIONS(7308), + [anon_sym__Noreturn] = ACTIONS(7308), + [anon_sym_noreturn] = ACTIONS(7308), + [anon_sym__Nonnull] = ACTIONS(7308), + [anon_sym_mutable] = ACTIONS(7308), + [anon_sym_constinit] = ACTIONS(7308), + [anon_sym_consteval] = ACTIONS(7308), + [anon_sym_alignas] = ACTIONS(7308), + [anon_sym__Alignas] = ACTIONS(7308), + [anon_sym_QMARK] = ACTIONS(7310), + [anon_sym_LT_EQ_GT] = ACTIONS(7310), + [anon_sym_or] = ACTIONS(7308), + [anon_sym_and] = ACTIONS(7308), + [anon_sym_bitor] = ACTIONS(7308), + [anon_sym_xor] = ACTIONS(7308), + [anon_sym_bitand] = ACTIONS(7308), + [anon_sym_not_eq] = ACTIONS(7308), + [anon_sym_DASH_DASH] = ACTIONS(7310), + [anon_sym_PLUS_PLUS] = ACTIONS(7310), + [anon_sym_DOT] = ACTIONS(7308), + [anon_sym_DOT_STAR] = ACTIONS(7310), + [anon_sym_DASH_GT] = ACTIONS(7310), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7308), + [anon_sym_final] = ACTIONS(7308), + [anon_sym_override] = ACTIONS(7308), + [anon_sym_template] = ACTIONS(7308), + [anon_sym_requires] = ACTIONS(7308), + [anon_sym_LBRACK_COLON] = ACTIONS(7310), }, [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), + [sym_ms_unaligned_ptr_modifier] = STATE(6849), + [sym_ms_pointer_modifier] = STATE(3798), + [sym__abstract_declarator] = STATE(9394), + [sym_abstract_parenthesized_declarator] = STATE(9348), + [sym_abstract_pointer_declarator] = STATE(9348), + [sym_abstract_function_declarator] = STATE(9348), + [sym_abstract_array_declarator] = STATE(9348), + [sym_type_qualifier] = STATE(4742), + [sym_alignas_qualifier] = STATE(4094), + [sym_parameter_list] = STATE(4852), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(9348), + [sym__function_declarator_seq] = STATE(9349), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9561), + [sym_abstract_qualified_identifier] = STATE(9348), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4742), + [aux_sym_pointer_declarator_repeat1] = STATE(3798), + [sym_identifier] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_RPAREN] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(9637), + [anon_sym_STAR] = ACTIONS(9639), + [anon_sym_AMP_AMP] = ACTIONS(9641), + [anon_sym_AMP] = ACTIONS(9643), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym___attribute__] = ACTIONS(5996), + [anon_sym___attribute] = ACTIONS(5996), + [anon_sym_COLON] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(9645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5994), + [sym_ms_restrict_modifier] = ACTIONS(9647), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(9647), + [sym_ms_signed_ptr_modifier] = ACTIONS(9647), + [anon_sym__unaligned] = ACTIONS(9649), + [anon_sym___unaligned] = ACTIONS(9649), + [anon_sym_LBRACE] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(9651), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5994), + [anon_sym_try] = ACTIONS(5996), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3798)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(6849), + [sym_ms_pointer_modifier] = STATE(6442), + [sym__abstract_declarator] = STATE(9398), + [sym_abstract_parenthesized_declarator] = STATE(9348), + [sym_abstract_pointer_declarator] = STATE(9348), + [sym_abstract_function_declarator] = STATE(9348), + [sym_abstract_array_declarator] = STATE(9348), + [sym_type_qualifier] = STATE(4763), + [sym_alignas_qualifier] = STATE(4094), + [sym_parameter_list] = STATE(4852), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(9348), + [sym__function_declarator_seq] = STATE(9349), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9561), + [sym_abstract_qualified_identifier] = STATE(9348), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4763), + [aux_sym_pointer_declarator_repeat1] = STATE(6442), + [sym_identifier] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(9637), + [anon_sym_STAR] = ACTIONS(9639), + [anon_sym_AMP_AMP] = ACTIONS(9641), + [anon_sym_AMP] = ACTIONS(9643), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(9645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5968), + [sym_ms_restrict_modifier] = ACTIONS(9647), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(9647), + [sym_ms_signed_ptr_modifier] = ACTIONS(9647), + [anon_sym__unaligned] = ACTIONS(9649), + [anon_sym___unaligned] = ACTIONS(9649), + [anon_sym_LBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(9651), + [anon_sym_EQ] = ACTIONS(5968), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_try] = ACTIONS(5970), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3799)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3790), + [sym_identifier] = ACTIONS(7308), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7310), + [anon_sym_COMMA] = ACTIONS(7310), + [anon_sym_LPAREN2] = ACTIONS(7310), + [anon_sym_DASH] = ACTIONS(7308), + [anon_sym_PLUS] = ACTIONS(7308), + [anon_sym_STAR] = ACTIONS(7310), + [anon_sym_SLASH] = ACTIONS(7308), + [anon_sym_PERCENT] = ACTIONS(7310), + [anon_sym_PIPE_PIPE] = ACTIONS(7310), + [anon_sym_AMP_AMP] = ACTIONS(7310), + [anon_sym_PIPE] = ACTIONS(7308), + [anon_sym_CARET] = ACTIONS(7310), + [anon_sym_AMP] = ACTIONS(7308), + [anon_sym_EQ_EQ] = ACTIONS(7310), + [anon_sym_BANG_EQ] = ACTIONS(7310), + [anon_sym_GT] = ACTIONS(7308), + [anon_sym_GT_EQ] = ACTIONS(7308), + [anon_sym_LT_EQ] = ACTIONS(7308), + [anon_sym_LT] = ACTIONS(7308), + [anon_sym_LT_LT] = ACTIONS(7310), + [anon_sym_GT_GT] = ACTIONS(7308), + [anon_sym___extension__] = ACTIONS(7308), + [anon_sym___attribute__] = ACTIONS(7308), + [anon_sym___attribute] = ACTIONS(7308), + [anon_sym_COLON_COLON] = ACTIONS(7310), + [anon_sym_LBRACE] = ACTIONS(7310), + [anon_sym_signed] = ACTIONS(9612), + [anon_sym_unsigned] = ACTIONS(9612), + [anon_sym_long] = ACTIONS(9612), + [anon_sym_short] = ACTIONS(9612), + [anon_sym_LBRACK] = ACTIONS(7308), + [anon_sym_const] = ACTIONS(7308), + [anon_sym_constexpr] = ACTIONS(7308), + [anon_sym_volatile] = ACTIONS(7308), + [anon_sym_restrict] = ACTIONS(7308), + [anon_sym___restrict__] = ACTIONS(7308), + [anon_sym__Atomic] = ACTIONS(7308), + [anon_sym__Noreturn] = ACTIONS(7308), + [anon_sym_noreturn] = ACTIONS(7308), + [anon_sym__Nonnull] = ACTIONS(7308), + [anon_sym_mutable] = ACTIONS(7308), + [anon_sym_constinit] = ACTIONS(7308), + [anon_sym_consteval] = ACTIONS(7308), + [anon_sym_alignas] = ACTIONS(7308), + [anon_sym__Alignas] = ACTIONS(7308), + [anon_sym_QMARK] = ACTIONS(7310), + [anon_sym_LT_EQ_GT] = ACTIONS(7310), + [anon_sym_or] = ACTIONS(7308), + [anon_sym_and] = ACTIONS(7308), + [anon_sym_bitor] = ACTIONS(7308), + [anon_sym_xor] = ACTIONS(7308), + [anon_sym_bitand] = ACTIONS(7308), + [anon_sym_not_eq] = ACTIONS(7308), + [anon_sym_DASH_DASH] = ACTIONS(7310), + [anon_sym_PLUS_PLUS] = ACTIONS(7310), + [anon_sym_DOT] = ACTIONS(7308), + [anon_sym_DOT_STAR] = ACTIONS(7310), + [anon_sym_DASH_GT] = ACTIONS(7310), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7308), + [anon_sym_final] = ACTIONS(7308), + [anon_sym_override] = ACTIONS(7308), + [anon_sym_template] = ACTIONS(7308), + [anon_sym_GT2] = ACTIONS(7310), + [anon_sym_requires] = ACTIONS(7308), + [anon_sym_LBRACK_COLON] = ACTIONS(7310), + }, + [STATE(3800)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7255), + [anon_sym_COMMA] = ACTIONS(7255), + [anon_sym_LPAREN2] = ACTIONS(7255), + [anon_sym_DASH] = ACTIONS(7253), + [anon_sym_PLUS] = ACTIONS(7253), + [anon_sym_STAR] = ACTIONS(7255), + [anon_sym_SLASH] = ACTIONS(7253), + [anon_sym_PERCENT] = ACTIONS(7255), + [anon_sym_PIPE_PIPE] = ACTIONS(7255), + [anon_sym_AMP_AMP] = ACTIONS(7255), + [anon_sym_PIPE] = ACTIONS(7253), + [anon_sym_CARET] = ACTIONS(7255), + [anon_sym_AMP] = ACTIONS(7253), + [anon_sym_EQ_EQ] = ACTIONS(7255), + [anon_sym_BANG_EQ] = ACTIONS(7255), + [anon_sym_GT] = ACTIONS(7253), + [anon_sym_GT_EQ] = ACTIONS(7255), + [anon_sym_LT_EQ] = ACTIONS(7253), + [anon_sym_LT] = ACTIONS(7253), + [anon_sym_LT_LT] = ACTIONS(7255), + [anon_sym_GT_GT] = ACTIONS(7255), + [anon_sym___extension__] = ACTIONS(7253), + [anon_sym___attribute__] = ACTIONS(7253), + [anon_sym___attribute] = ACTIONS(7253), + [anon_sym_COLON_COLON] = ACTIONS(7255), + [anon_sym_LBRACE] = ACTIONS(7255), + [anon_sym_signed] = ACTIONS(9610), + [anon_sym_unsigned] = ACTIONS(9610), + [anon_sym_long] = ACTIONS(9610), + [anon_sym_short] = ACTIONS(9610), + [anon_sym_LBRACK] = ACTIONS(7253), + [anon_sym_RBRACK] = ACTIONS(7255), + [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(7253), + [anon_sym__Alignas] = ACTIONS(7253), + [anon_sym_QMARK] = ACTIONS(7255), + [anon_sym_LT_EQ_GT] = ACTIONS(7255), + [anon_sym_or] = ACTIONS(7253), + [anon_sym_and] = ACTIONS(7253), + [anon_sym_bitor] = ACTIONS(7253), + [anon_sym_xor] = ACTIONS(7253), + [anon_sym_bitand] = ACTIONS(7253), + [anon_sym_not_eq] = ACTIONS(7253), + [anon_sym_DASH_DASH] = ACTIONS(7255), + [anon_sym_PLUS_PLUS] = ACTIONS(7255), + [anon_sym_DOT] = ACTIONS(7253), + [anon_sym_DOT_STAR] = ACTIONS(7255), + [anon_sym_DASH_GT] = ACTIONS(7255), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7253), + [anon_sym_final] = ACTIONS(7253), + [anon_sym_override] = ACTIONS(7253), + [anon_sym_template] = ACTIONS(7253), + [anon_sym_requires] = ACTIONS(7253), + [anon_sym_LBRACK_COLON] = ACTIONS(7255), + }, + [STATE(3801)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7277), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7277), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7277), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7277), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7277), + [anon_sym_GT_GT] = ACTIONS(7277), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON_COLON] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_signed] = ACTIONS(9610), + [anon_sym_unsigned] = ACTIONS(9610), + [anon_sym_long] = ACTIONS(9610), + [anon_sym_short] = ACTIONS(9610), + [anon_sym_LBRACK] = ACTIONS(7275), + [anon_sym_RBRACK] = ACTIONS(7277), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7275), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7275), + [anon_sym_not_eq] = ACTIONS(7275), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7275), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_template] = ACTIONS(7275), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_LBRACK_COLON] = ACTIONS(7277), + }, + [STATE(3802)] = { + [sym_string_literal] = STATE(3950), + [sym_template_argument_list] = STATE(5399), + [sym_raw_string_literal] = STATE(3950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(9614), + [anon_sym_LPAREN2] = ACTIONS(9614), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9653), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7109), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(9620), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5671), + [anon_sym_L_DQUOTE] = ACTIONS(7111), + [anon_sym_u_DQUOTE] = ACTIONS(7111), + [anon_sym_U_DQUOTE] = ACTIONS(7111), + [anon_sym_u8_DQUOTE] = ACTIONS(7111), + [anon_sym_DQUOTE] = ACTIONS(7111), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7113), + [anon_sym_LR_DQUOTE] = ACTIONS(7113), + [anon_sym_uR_DQUOTE] = ACTIONS(7113), + [anon_sym_UR_DQUOTE] = ACTIONS(7113), + [anon_sym_u8R_DQUOTE] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(5663), + }, + [STATE(3803)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3786), + [sym_identifier] = ACTIONS(7322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7324), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_DASH] = ACTIONS(7322), + [anon_sym_PLUS] = ACTIONS(7322), + [anon_sym_STAR] = ACTIONS(7324), + [anon_sym_SLASH] = ACTIONS(7322), + [anon_sym_PERCENT] = ACTIONS(7324), + [anon_sym_PIPE_PIPE] = ACTIONS(7324), + [anon_sym_AMP_AMP] = ACTIONS(7324), + [anon_sym_PIPE] = ACTIONS(7322), + [anon_sym_CARET] = ACTIONS(7324), + [anon_sym_AMP] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_GT] = ACTIONS(7322), + [anon_sym_GT_EQ] = ACTIONS(7322), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_LT] = ACTIONS(7322), + [anon_sym_LT_LT] = ACTIONS(7324), + [anon_sym_GT_GT] = ACTIONS(7322), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_COLON_COLON] = ACTIONS(7324), + [anon_sym_LBRACE] = ACTIONS(7324), + [anon_sym_signed] = ACTIONS(9656), + [anon_sym_unsigned] = ACTIONS(9656), + [anon_sym_long] = ACTIONS(9656), + [anon_sym_short] = ACTIONS(9656), + [anon_sym_LBRACK] = ACTIONS(7322), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_mutable] = ACTIONS(7322), + [anon_sym_constinit] = ACTIONS(7322), + [anon_sym_consteval] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [anon_sym_QMARK] = ACTIONS(7324), + [anon_sym_LT_EQ_GT] = ACTIONS(7324), + [anon_sym_or] = ACTIONS(7322), + [anon_sym_and] = ACTIONS(7322), + [anon_sym_bitor] = ACTIONS(7322), + [anon_sym_xor] = ACTIONS(7322), + [anon_sym_bitand] = ACTIONS(7322), + [anon_sym_not_eq] = ACTIONS(7322), + [anon_sym_DASH_DASH] = ACTIONS(7324), + [anon_sym_PLUS_PLUS] = ACTIONS(7324), + [anon_sym_DOT] = ACTIONS(7322), + [anon_sym_DOT_STAR] = ACTIONS(7324), + [anon_sym_DASH_GT] = ACTIONS(7324), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7322), + [anon_sym_final] = ACTIONS(7322), + [anon_sym_override] = ACTIONS(7322), + [anon_sym_template] = ACTIONS(7322), + [anon_sym_GT2] = ACTIONS(7324), + [anon_sym_requires] = ACTIONS(7322), + [anon_sym_LBRACK_COLON] = ACTIONS(7324), + }, + [STATE(3804)] = { + [sym_argument_list] = STATE(4308), + [sym_initializer_list] = STATE(4308), + [sym_new_declarator] = STATE(3913), + [sym_identifier] = ACTIONS(9658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9660), + [anon_sym_COMMA] = ACTIONS(9660), + [anon_sym_RPAREN] = ACTIONS(9660), + [aux_sym_preproc_if_token2] = ACTIONS(9660), + [aux_sym_preproc_else_token1] = ACTIONS(9660), + [aux_sym_preproc_elif_token1] = ACTIONS(9658), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9660), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9660), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(9658), + [anon_sym_PLUS] = ACTIONS(9658), + [anon_sym_STAR] = ACTIONS(9658), + [anon_sym_SLASH] = ACTIONS(9658), + [anon_sym_PERCENT] = ACTIONS(9658), + [anon_sym_PIPE_PIPE] = ACTIONS(9660), + [anon_sym_AMP_AMP] = ACTIONS(9660), + [anon_sym_PIPE] = ACTIONS(9658), + [anon_sym_CARET] = ACTIONS(9658), + [anon_sym_AMP] = ACTIONS(9658), + [anon_sym_EQ_EQ] = ACTIONS(9660), + [anon_sym_BANG_EQ] = ACTIONS(9660), + [anon_sym_GT] = ACTIONS(9658), + [anon_sym_GT_EQ] = ACTIONS(9660), + [anon_sym_LT_EQ] = ACTIONS(9658), + [anon_sym_LT] = ACTIONS(9658), + [anon_sym_LT_LT] = ACTIONS(9658), + [anon_sym_GT_GT] = ACTIONS(9658), + [anon_sym_SEMI] = ACTIONS(9660), + [anon_sym___attribute__] = ACTIONS(9658), + [anon_sym___attribute] = ACTIONS(9658), + [anon_sym_COLON] = ACTIONS(9658), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9660), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9660), + [anon_sym_LBRACK] = ACTIONS(9664), + [anon_sym_EQ] = ACTIONS(9658), + [anon_sym_QMARK] = ACTIONS(9660), + [anon_sym_STAR_EQ] = ACTIONS(9660), + [anon_sym_SLASH_EQ] = ACTIONS(9660), + [anon_sym_PERCENT_EQ] = ACTIONS(9660), + [anon_sym_PLUS_EQ] = ACTIONS(9660), + [anon_sym_DASH_EQ] = ACTIONS(9660), + [anon_sym_LT_LT_EQ] = ACTIONS(9660), + [anon_sym_GT_GT_EQ] = ACTIONS(9660), + [anon_sym_AMP_EQ] = ACTIONS(9660), + [anon_sym_CARET_EQ] = ACTIONS(9660), + [anon_sym_PIPE_EQ] = ACTIONS(9660), + [anon_sym_and_eq] = ACTIONS(9658), + [anon_sym_or_eq] = ACTIONS(9658), + [anon_sym_xor_eq] = ACTIONS(9658), + [anon_sym_LT_EQ_GT] = ACTIONS(9660), + [anon_sym_or] = ACTIONS(9658), + [anon_sym_and] = ACTIONS(9658), + [anon_sym_bitor] = ACTIONS(9658), + [anon_sym_xor] = ACTIONS(9658), + [anon_sym_bitand] = ACTIONS(9658), + [anon_sym_not_eq] = ACTIONS(9658), + [anon_sym_DASH_DASH] = ACTIONS(9660), + [anon_sym_PLUS_PLUS] = ACTIONS(9660), + [anon_sym_DOT] = ACTIONS(9658), + [anon_sym_DOT_STAR] = ACTIONS(9660), + [anon_sym_DASH_GT] = ACTIONS(9660), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9660), + }, + [STATE(3805)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7281), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7281), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7281), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7281), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7281), + [anon_sym_GT_GT] = ACTIONS(7281), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON_COLON] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_signed] = ACTIONS(9610), + [anon_sym_unsigned] = ACTIONS(9610), + [anon_sym_long] = ACTIONS(9610), + [anon_sym_short] = ACTIONS(9610), + [anon_sym_LBRACK] = ACTIONS(7279), + [anon_sym_RBRACK] = ACTIONS(7281), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7279), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7279), + [anon_sym_not_eq] = ACTIONS(7279), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7281), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7279), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_template] = ACTIONS(7279), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_LBRACK_COLON] = ACTIONS(7281), + }, + [STATE(3806)] = { + [sym_argument_list] = STATE(4331), + [sym_initializer_list] = STATE(4331), + [sym_new_declarator] = STATE(3920), + [sym_identifier] = ACTIONS(9666), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9668), + [anon_sym_COMMA] = ACTIONS(9668), + [anon_sym_RPAREN] = ACTIONS(9668), + [aux_sym_preproc_if_token2] = ACTIONS(9668), + [aux_sym_preproc_else_token1] = ACTIONS(9668), + [aux_sym_preproc_elif_token1] = ACTIONS(9666), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9668), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(9666), + [anon_sym_PLUS] = ACTIONS(9666), + [anon_sym_STAR] = ACTIONS(9666), + [anon_sym_SLASH] = ACTIONS(9666), + [anon_sym_PERCENT] = ACTIONS(9666), + [anon_sym_PIPE_PIPE] = ACTIONS(9668), + [anon_sym_AMP_AMP] = ACTIONS(9668), + [anon_sym_PIPE] = ACTIONS(9666), + [anon_sym_CARET] = ACTIONS(9666), + [anon_sym_AMP] = ACTIONS(9666), + [anon_sym_EQ_EQ] = ACTIONS(9668), + [anon_sym_BANG_EQ] = ACTIONS(9668), + [anon_sym_GT] = ACTIONS(9666), + [anon_sym_GT_EQ] = ACTIONS(9668), + [anon_sym_LT_EQ] = ACTIONS(9666), + [anon_sym_LT] = ACTIONS(9666), + [anon_sym_LT_LT] = ACTIONS(9666), + [anon_sym_GT_GT] = ACTIONS(9666), + [anon_sym_SEMI] = ACTIONS(9668), + [anon_sym___attribute__] = ACTIONS(9666), + [anon_sym___attribute] = ACTIONS(9666), + [anon_sym_COLON] = ACTIONS(9666), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9668), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9668), + [anon_sym_LBRACK] = ACTIONS(9664), + [anon_sym_EQ] = ACTIONS(9666), + [anon_sym_QMARK] = ACTIONS(9668), + [anon_sym_STAR_EQ] = ACTIONS(9668), + [anon_sym_SLASH_EQ] = ACTIONS(9668), + [anon_sym_PERCENT_EQ] = ACTIONS(9668), + [anon_sym_PLUS_EQ] = ACTIONS(9668), + [anon_sym_DASH_EQ] = ACTIONS(9668), + [anon_sym_LT_LT_EQ] = ACTIONS(9668), + [anon_sym_GT_GT_EQ] = ACTIONS(9668), + [anon_sym_AMP_EQ] = ACTIONS(9668), + [anon_sym_CARET_EQ] = ACTIONS(9668), + [anon_sym_PIPE_EQ] = ACTIONS(9668), + [anon_sym_and_eq] = ACTIONS(9666), + [anon_sym_or_eq] = ACTIONS(9666), + [anon_sym_xor_eq] = ACTIONS(9666), + [anon_sym_LT_EQ_GT] = ACTIONS(9668), + [anon_sym_or] = ACTIONS(9666), + [anon_sym_and] = ACTIONS(9666), + [anon_sym_bitor] = ACTIONS(9666), + [anon_sym_xor] = ACTIONS(9666), + [anon_sym_bitand] = ACTIONS(9666), + [anon_sym_not_eq] = ACTIONS(9666), + [anon_sym_DASH_DASH] = ACTIONS(9668), + [anon_sym_PLUS_PLUS] = ACTIONS(9668), + [anon_sym_DOT] = ACTIONS(9666), + [anon_sym_DOT_STAR] = ACTIONS(9668), + [anon_sym_DASH_GT] = ACTIONS(9668), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9668), + }, + [STATE(3807)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3781), + [sym_identifier] = ACTIONS(7316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7318), + [anon_sym_COMMA] = ACTIONS(7318), + [anon_sym_LPAREN2] = ACTIONS(7318), + [anon_sym_DASH] = ACTIONS(7316), + [anon_sym_PLUS] = ACTIONS(7316), + [anon_sym_STAR] = ACTIONS(7318), + [anon_sym_SLASH] = ACTIONS(7316), + [anon_sym_PERCENT] = ACTIONS(7318), + [anon_sym_PIPE_PIPE] = ACTIONS(7318), + [anon_sym_AMP_AMP] = ACTIONS(7318), + [anon_sym_PIPE] = ACTIONS(7316), + [anon_sym_CARET] = ACTIONS(7318), + [anon_sym_AMP] = ACTIONS(7316), + [anon_sym_EQ_EQ] = ACTIONS(7318), + [anon_sym_BANG_EQ] = ACTIONS(7318), + [anon_sym_GT] = ACTIONS(7316), + [anon_sym_GT_EQ] = ACTIONS(7318), + [anon_sym_LT_EQ] = ACTIONS(7316), + [anon_sym_LT] = ACTIONS(7316), + [anon_sym_LT_LT] = ACTIONS(7318), + [anon_sym_GT_GT] = ACTIONS(7318), + [anon_sym___extension__] = ACTIONS(7316), + [anon_sym___attribute__] = ACTIONS(7316), + [anon_sym___attribute] = ACTIONS(7316), + [anon_sym_COLON_COLON] = ACTIONS(7318), + [anon_sym_LBRACE] = ACTIONS(7318), + [anon_sym_signed] = ACTIONS(9670), + [anon_sym_unsigned] = ACTIONS(9670), + [anon_sym_long] = ACTIONS(9670), + [anon_sym_short] = ACTIONS(9670), + [anon_sym_LBRACK] = ACTIONS(7316), + [anon_sym_RBRACK] = ACTIONS(7318), + [anon_sym_const] = ACTIONS(7316), + [anon_sym_constexpr] = ACTIONS(7316), + [anon_sym_volatile] = ACTIONS(7316), + [anon_sym_restrict] = ACTIONS(7316), + [anon_sym___restrict__] = ACTIONS(7316), + [anon_sym__Atomic] = ACTIONS(7316), + [anon_sym__Noreturn] = ACTIONS(7316), + [anon_sym_noreturn] = ACTIONS(7316), + [anon_sym__Nonnull] = ACTIONS(7316), + [anon_sym_mutable] = ACTIONS(7316), + [anon_sym_constinit] = ACTIONS(7316), + [anon_sym_consteval] = ACTIONS(7316), + [anon_sym_alignas] = ACTIONS(7316), + [anon_sym__Alignas] = ACTIONS(7316), + [anon_sym_QMARK] = ACTIONS(7318), + [anon_sym_LT_EQ_GT] = ACTIONS(7318), + [anon_sym_or] = ACTIONS(7316), + [anon_sym_and] = ACTIONS(7316), + [anon_sym_bitor] = ACTIONS(7316), + [anon_sym_xor] = ACTIONS(7316), + [anon_sym_bitand] = ACTIONS(7316), + [anon_sym_not_eq] = ACTIONS(7316), + [anon_sym_DASH_DASH] = ACTIONS(7318), + [anon_sym_PLUS_PLUS] = ACTIONS(7318), + [anon_sym_DOT] = ACTIONS(7316), + [anon_sym_DOT_STAR] = ACTIONS(7318), + [anon_sym_DASH_GT] = ACTIONS(7318), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7316), + [anon_sym_final] = ACTIONS(7316), + [anon_sym_override] = ACTIONS(7316), + [anon_sym_template] = ACTIONS(7316), + [anon_sym_requires] = ACTIONS(7316), + [anon_sym_LBRACK_COLON] = ACTIONS(7318), + }, + [STATE(3808)] = { + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(9601), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9601), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(9603), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5699), + [anon_sym_or_eq] = ACTIONS(5699), + [anon_sym_xor_eq] = ACTIONS(5699), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + }, + [STATE(3809)] = { + [sym_argument_list] = STATE(4250), + [sym_initializer_list] = STATE(4250), + [sym_new_declarator] = STATE(3896), + [sym_identifier] = ACTIONS(9672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9674), + [anon_sym_COMMA] = ACTIONS(9674), + [anon_sym_RPAREN] = ACTIONS(9674), + [aux_sym_preproc_if_token2] = ACTIONS(9674), + [aux_sym_preproc_else_token1] = ACTIONS(9674), + [aux_sym_preproc_elif_token1] = ACTIONS(9672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9674), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9674), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(9672), + [anon_sym_PLUS] = ACTIONS(9672), + [anon_sym_STAR] = ACTIONS(9672), + [anon_sym_SLASH] = ACTIONS(9672), + [anon_sym_PERCENT] = ACTIONS(9672), + [anon_sym_PIPE_PIPE] = ACTIONS(9674), + [anon_sym_AMP_AMP] = ACTIONS(9674), + [anon_sym_PIPE] = ACTIONS(9672), + [anon_sym_CARET] = ACTIONS(9672), + [anon_sym_AMP] = ACTIONS(9672), + [anon_sym_EQ_EQ] = ACTIONS(9674), + [anon_sym_BANG_EQ] = ACTIONS(9674), + [anon_sym_GT] = ACTIONS(9672), + [anon_sym_GT_EQ] = ACTIONS(9674), + [anon_sym_LT_EQ] = ACTIONS(9672), + [anon_sym_LT] = ACTIONS(9672), + [anon_sym_LT_LT] = ACTIONS(9672), + [anon_sym_GT_GT] = ACTIONS(9672), + [anon_sym_SEMI] = ACTIONS(9674), + [anon_sym___attribute__] = ACTIONS(9672), + [anon_sym___attribute] = ACTIONS(9672), + [anon_sym_COLON] = ACTIONS(9672), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9674), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9674), + [anon_sym_LBRACK] = ACTIONS(9664), + [anon_sym_EQ] = ACTIONS(9672), + [anon_sym_QMARK] = ACTIONS(9674), + [anon_sym_STAR_EQ] = ACTIONS(9674), + [anon_sym_SLASH_EQ] = ACTIONS(9674), + [anon_sym_PERCENT_EQ] = ACTIONS(9674), + [anon_sym_PLUS_EQ] = ACTIONS(9674), + [anon_sym_DASH_EQ] = ACTIONS(9674), + [anon_sym_LT_LT_EQ] = ACTIONS(9674), + [anon_sym_GT_GT_EQ] = ACTIONS(9674), + [anon_sym_AMP_EQ] = ACTIONS(9674), + [anon_sym_CARET_EQ] = ACTIONS(9674), + [anon_sym_PIPE_EQ] = ACTIONS(9674), + [anon_sym_and_eq] = ACTIONS(9672), + [anon_sym_or_eq] = ACTIONS(9672), + [anon_sym_xor_eq] = ACTIONS(9672), + [anon_sym_LT_EQ_GT] = ACTIONS(9674), + [anon_sym_or] = ACTIONS(9672), + [anon_sym_and] = ACTIONS(9672), + [anon_sym_bitor] = ACTIONS(9672), + [anon_sym_xor] = ACTIONS(9672), + [anon_sym_bitand] = ACTIONS(9672), + [anon_sym_not_eq] = ACTIONS(9672), + [anon_sym_DASH_DASH] = ACTIONS(9674), + [anon_sym_PLUS_PLUS] = ACTIONS(9674), + [anon_sym_DOT] = ACTIONS(9672), + [anon_sym_DOT_STAR] = ACTIONS(9674), + [anon_sym_DASH_GT] = ACTIONS(9674), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9674), + }, + [STATE(3810)] = { + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym_ref_qualifier] = STATE(3898), + [sym__function_exception_specification] = STATE(4473), + [sym__function_attributes_end] = STATE(6662), + [sym__function_postfix] = STATE(5947), + [sym_trailing_return_type] = STATE(6825), + [sym_noexcept] = STATE(4473), + [sym_throw_specifier] = STATE(4473), + [sym_requires_clause] = STATE(5947), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7474), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7474), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(9584), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7474), + [anon_sym_AMP] = ACTIONS(9587), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7474), + [anon_sym_GT_GT] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7590), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(9605), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9676), + [anon_sym_override] = ACTIONS(9676), + [anon_sym_noexcept] = ACTIONS(7602), + [anon_sym_throw] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(9679), + }, + [STATE(3811)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3800), + [sym_identifier] = ACTIONS(7322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7324), + [anon_sym_COMMA] = ACTIONS(7324), + [anon_sym_LPAREN2] = ACTIONS(7324), + [anon_sym_DASH] = ACTIONS(7322), + [anon_sym_PLUS] = ACTIONS(7322), + [anon_sym_STAR] = ACTIONS(7324), + [anon_sym_SLASH] = ACTIONS(7322), + [anon_sym_PERCENT] = ACTIONS(7324), + [anon_sym_PIPE_PIPE] = ACTIONS(7324), + [anon_sym_AMP_AMP] = ACTIONS(7324), + [anon_sym_PIPE] = ACTIONS(7322), + [anon_sym_CARET] = ACTIONS(7324), + [anon_sym_AMP] = ACTIONS(7322), + [anon_sym_EQ_EQ] = ACTIONS(7324), + [anon_sym_BANG_EQ] = ACTIONS(7324), + [anon_sym_GT] = ACTIONS(7322), + [anon_sym_GT_EQ] = ACTIONS(7324), + [anon_sym_LT_EQ] = ACTIONS(7322), + [anon_sym_LT] = ACTIONS(7322), + [anon_sym_LT_LT] = ACTIONS(7324), + [anon_sym_GT_GT] = ACTIONS(7324), + [anon_sym___extension__] = ACTIONS(7322), + [anon_sym___attribute__] = ACTIONS(7322), + [anon_sym___attribute] = ACTIONS(7322), + [anon_sym_COLON_COLON] = ACTIONS(7324), + [anon_sym_LBRACE] = ACTIONS(7324), + [anon_sym_signed] = ACTIONS(9682), + [anon_sym_unsigned] = ACTIONS(9682), + [anon_sym_long] = ACTIONS(9682), + [anon_sym_short] = ACTIONS(9682), + [anon_sym_LBRACK] = ACTIONS(7322), + [anon_sym_RBRACK] = ACTIONS(7324), + [anon_sym_const] = ACTIONS(7322), + [anon_sym_constexpr] = ACTIONS(7322), + [anon_sym_volatile] = ACTIONS(7322), + [anon_sym_restrict] = ACTIONS(7322), + [anon_sym___restrict__] = ACTIONS(7322), + [anon_sym__Atomic] = ACTIONS(7322), + [anon_sym__Noreturn] = ACTIONS(7322), + [anon_sym_noreturn] = ACTIONS(7322), + [anon_sym__Nonnull] = ACTIONS(7322), + [anon_sym_mutable] = ACTIONS(7322), + [anon_sym_constinit] = ACTIONS(7322), + [anon_sym_consteval] = ACTIONS(7322), + [anon_sym_alignas] = ACTIONS(7322), + [anon_sym__Alignas] = ACTIONS(7322), + [anon_sym_QMARK] = ACTIONS(7324), + [anon_sym_LT_EQ_GT] = ACTIONS(7324), + [anon_sym_or] = ACTIONS(7322), + [anon_sym_and] = ACTIONS(7322), + [anon_sym_bitor] = ACTIONS(7322), + [anon_sym_xor] = ACTIONS(7322), + [anon_sym_bitand] = ACTIONS(7322), + [anon_sym_not_eq] = ACTIONS(7322), + [anon_sym_DASH_DASH] = ACTIONS(7324), + [anon_sym_PLUS_PLUS] = ACTIONS(7324), + [anon_sym_DOT] = ACTIONS(7322), + [anon_sym_DOT_STAR] = ACTIONS(7324), + [anon_sym_DASH_GT] = ACTIONS(7324), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7322), + [anon_sym_final] = ACTIONS(7322), + [anon_sym_override] = ACTIONS(7322), + [anon_sym_template] = ACTIONS(7322), + [anon_sym_requires] = ACTIONS(7322), + [anon_sym_LBRACK_COLON] = ACTIONS(7324), + }, + [STATE(3812)] = { + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), [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___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym___based] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(7359), + [anon_sym_unsigned] = ACTIONS(7359), + [anon_sym_long] = ACTIONS(7359), + [anon_sym_short] = ACTIONS(7359), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_const] = ACTIONS(7359), [anon_sym_constexpr] = ACTIONS(7359), [anon_sym_volatile] = ACTIONS(7359), [anon_sym_restrict] = ACTIONS(7359), @@ -450035,763 +463459,867 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_primitive_type] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), [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), + [anon_sym_DASH_DASH] = ACTIONS(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7359), - [anon_sym_override] = ACTIONS(7359), - [anon_sym_GT2] = ACTIONS(7359), - [anon_sym_requires] = ACTIONS(7359), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), }, - [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), + [STATE(3813)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3118), + [anon_sym_PLUS] = ACTIONS(3118), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_SLASH] = ACTIONS(3118), + [anon_sym_PERCENT] = ACTIONS(3108), + [anon_sym_PIPE_PIPE] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_PIPE] = ACTIONS(3118), + [anon_sym_CARET] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_EQ_EQ] = ACTIONS(3108), + [anon_sym_BANG_EQ] = ACTIONS(3108), + [anon_sym_GT] = ACTIONS(3118), + [anon_sym_GT_EQ] = ACTIONS(3108), + [anon_sym_LT_EQ] = ACTIONS(3118), + [anon_sym_LT] = ACTIONS(3118), + [anon_sym_LT_LT] = ACTIONS(3108), + [anon_sym_GT_GT] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_signed] = ACTIONS(3118), + [anon_sym_unsigned] = ACTIONS(3118), + [anon_sym_long] = ACTIONS(3118), + [anon_sym_short] = ACTIONS(3118), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3118), + [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), + [sym_primitive_type] = ACTIONS(3118), + [anon_sym_QMARK] = ACTIONS(3108), + [anon_sym_LT_EQ_GT] = ACTIONS(3108), + [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(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3108), + [anon_sym_DOT] = ACTIONS(3118), + [anon_sym_DOT_STAR] = ACTIONS(3108), + [anon_sym_DASH_GT] = ACTIONS(3108), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), }, - [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(3814)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3795), + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7292), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7292), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7290), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7292), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(9684), + [anon_sym_unsigned] = ACTIONS(9684), + [anon_sym_long] = ACTIONS(9684), + [anon_sym_short] = ACTIONS(9684), + [anon_sym_LBRACK] = ACTIONS(7290), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7290), + [anon_sym_final] = ACTIONS(7290), + [anon_sym_override] = ACTIONS(7290), + [anon_sym_template] = ACTIONS(7290), + [anon_sym_GT2] = ACTIONS(7292), + [anon_sym_requires] = ACTIONS(7290), + [anon_sym_LBRACK_COLON] = ACTIONS(7292), }, - [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(3815)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3805), + [sym_identifier] = ACTIONS(7269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7271), + [anon_sym_COMMA] = ACTIONS(7271), + [anon_sym_LPAREN2] = ACTIONS(7271), + [anon_sym_DASH] = ACTIONS(7269), + [anon_sym_PLUS] = ACTIONS(7269), + [anon_sym_STAR] = ACTIONS(7271), + [anon_sym_SLASH] = ACTIONS(7269), + [anon_sym_PERCENT] = ACTIONS(7271), + [anon_sym_PIPE_PIPE] = ACTIONS(7271), + [anon_sym_AMP_AMP] = ACTIONS(7271), + [anon_sym_PIPE] = ACTIONS(7269), + [anon_sym_CARET] = ACTIONS(7271), + [anon_sym_AMP] = ACTIONS(7269), + [anon_sym_EQ_EQ] = ACTIONS(7271), + [anon_sym_BANG_EQ] = ACTIONS(7271), + [anon_sym_GT] = ACTIONS(7269), + [anon_sym_GT_EQ] = ACTIONS(7271), + [anon_sym_LT_EQ] = ACTIONS(7269), + [anon_sym_LT] = ACTIONS(7269), + [anon_sym_LT_LT] = ACTIONS(7271), + [anon_sym_GT_GT] = ACTIONS(7271), + [anon_sym___extension__] = ACTIONS(7269), + [anon_sym___attribute__] = ACTIONS(7269), + [anon_sym___attribute] = ACTIONS(7269), + [anon_sym_COLON_COLON] = ACTIONS(7271), + [anon_sym_LBRACE] = ACTIONS(7271), + [anon_sym_signed] = ACTIONS(9686), + [anon_sym_unsigned] = ACTIONS(9686), + [anon_sym_long] = ACTIONS(9686), + [anon_sym_short] = ACTIONS(9686), + [anon_sym_LBRACK] = ACTIONS(7269), + [anon_sym_RBRACK] = ACTIONS(7271), + [anon_sym_const] = ACTIONS(7269), + [anon_sym_constexpr] = ACTIONS(7269), + [anon_sym_volatile] = ACTIONS(7269), + [anon_sym_restrict] = ACTIONS(7269), + [anon_sym___restrict__] = ACTIONS(7269), + [anon_sym__Atomic] = ACTIONS(7269), + [anon_sym__Noreturn] = ACTIONS(7269), + [anon_sym_noreturn] = ACTIONS(7269), + [anon_sym__Nonnull] = ACTIONS(7269), + [anon_sym_mutable] = ACTIONS(7269), + [anon_sym_constinit] = ACTIONS(7269), + [anon_sym_consteval] = ACTIONS(7269), + [anon_sym_alignas] = ACTIONS(7269), + [anon_sym__Alignas] = ACTIONS(7269), + [anon_sym_QMARK] = ACTIONS(7271), + [anon_sym_LT_EQ_GT] = ACTIONS(7271), + [anon_sym_or] = ACTIONS(7269), + [anon_sym_and] = ACTIONS(7269), + [anon_sym_bitor] = ACTIONS(7269), + [anon_sym_xor] = ACTIONS(7269), + [anon_sym_bitand] = ACTIONS(7269), + [anon_sym_not_eq] = ACTIONS(7269), + [anon_sym_DASH_DASH] = ACTIONS(7271), + [anon_sym_PLUS_PLUS] = ACTIONS(7271), + [anon_sym_DOT] = ACTIONS(7269), + [anon_sym_DOT_STAR] = ACTIONS(7271), + [anon_sym_DASH_GT] = ACTIONS(7271), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7269), + [anon_sym_final] = ACTIONS(7269), + [anon_sym_override] = ACTIONS(7269), + [anon_sym_template] = ACTIONS(7269), + [anon_sym_requires] = ACTIONS(7269), + [anon_sym_LBRACK_COLON] = ACTIONS(7271), }, - [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(3816)] = { + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym_ref_qualifier] = STATE(3964), + [sym__function_exception_specification] = STATE(4511), + [sym__function_attributes_end] = STATE(6707), + [sym__function_postfix] = STATE(5947), + [sym_trailing_return_type] = STATE(6464), + [sym_noexcept] = STATE(4511), + [sym_throw_specifier] = STATE(4511), + [sym_requires_clause] = STATE(5947), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7474), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7474), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(9584), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7474), + [anon_sym_AMP] = ACTIONS(9587), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7474), + [anon_sym_GT_GT] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7653), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7474), + [anon_sym_and] = ACTIONS(7474), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7474), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(9590), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7660), + [anon_sym_override] = ACTIONS(7660), + [anon_sym_noexcept] = ACTIONS(7662), + [anon_sym_throw] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7666), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), }, - [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(3817)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3790), + [sym_identifier] = ACTIONS(7275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7277), + [anon_sym_COMMA] = ACTIONS(7277), + [anon_sym_LPAREN2] = ACTIONS(7277), + [anon_sym_DASH] = ACTIONS(7275), + [anon_sym_PLUS] = ACTIONS(7275), + [anon_sym_STAR] = ACTIONS(7277), + [anon_sym_SLASH] = ACTIONS(7275), + [anon_sym_PERCENT] = ACTIONS(7277), + [anon_sym_PIPE_PIPE] = ACTIONS(7277), + [anon_sym_AMP_AMP] = ACTIONS(7277), + [anon_sym_PIPE] = ACTIONS(7275), + [anon_sym_CARET] = ACTIONS(7277), + [anon_sym_AMP] = ACTIONS(7275), + [anon_sym_EQ_EQ] = ACTIONS(7277), + [anon_sym_BANG_EQ] = ACTIONS(7277), + [anon_sym_GT] = ACTIONS(7275), + [anon_sym_GT_EQ] = ACTIONS(7275), + [anon_sym_LT_EQ] = ACTIONS(7275), + [anon_sym_LT] = ACTIONS(7275), + [anon_sym_LT_LT] = ACTIONS(7277), + [anon_sym_GT_GT] = ACTIONS(7275), + [anon_sym___extension__] = ACTIONS(7275), + [anon_sym___attribute__] = ACTIONS(7275), + [anon_sym___attribute] = ACTIONS(7275), + [anon_sym_COLON_COLON] = ACTIONS(7277), + [anon_sym_LBRACE] = ACTIONS(7277), + [anon_sym_signed] = ACTIONS(9612), + [anon_sym_unsigned] = ACTIONS(9612), + [anon_sym_long] = ACTIONS(9612), + [anon_sym_short] = ACTIONS(9612), + [anon_sym_LBRACK] = ACTIONS(7275), + [anon_sym_const] = ACTIONS(7275), + [anon_sym_constexpr] = ACTIONS(7275), + [anon_sym_volatile] = ACTIONS(7275), + [anon_sym_restrict] = ACTIONS(7275), + [anon_sym___restrict__] = ACTIONS(7275), + [anon_sym__Atomic] = ACTIONS(7275), + [anon_sym__Noreturn] = ACTIONS(7275), + [anon_sym_noreturn] = ACTIONS(7275), + [anon_sym__Nonnull] = ACTIONS(7275), + [anon_sym_mutable] = ACTIONS(7275), + [anon_sym_constinit] = ACTIONS(7275), + [anon_sym_consteval] = ACTIONS(7275), + [anon_sym_alignas] = ACTIONS(7275), + [anon_sym__Alignas] = ACTIONS(7275), + [anon_sym_QMARK] = ACTIONS(7277), + [anon_sym_LT_EQ_GT] = ACTIONS(7277), + [anon_sym_or] = ACTIONS(7275), + [anon_sym_and] = ACTIONS(7275), + [anon_sym_bitor] = ACTIONS(7275), + [anon_sym_xor] = ACTIONS(7275), + [anon_sym_bitand] = ACTIONS(7275), + [anon_sym_not_eq] = ACTIONS(7275), + [anon_sym_DASH_DASH] = ACTIONS(7277), + [anon_sym_PLUS_PLUS] = ACTIONS(7277), + [anon_sym_DOT] = ACTIONS(7275), + [anon_sym_DOT_STAR] = ACTIONS(7277), + [anon_sym_DASH_GT] = ACTIONS(7277), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7275), + [anon_sym_final] = ACTIONS(7275), + [anon_sym_override] = ACTIONS(7275), + [anon_sym_template] = ACTIONS(7275), + [anon_sym_GT2] = ACTIONS(7277), + [anon_sym_requires] = ACTIONS(7275), + [anon_sym_LBRACK_COLON] = ACTIONS(7277), }, - [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(3818)] = { + [sym_attribute_specifier] = STATE(4739), + [sym_field_declaration_list] = STATE(4403), + [sym_virtual_specifier] = STATE(10803), + [sym_base_class_clause] = STATE(11414), + [sym_identifier] = ACTIONS(7370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7372), + [anon_sym_COMMA] = ACTIONS(7372), + [anon_sym_LPAREN2] = ACTIONS(7372), + [anon_sym_DASH] = ACTIONS(7370), + [anon_sym_PLUS] = ACTIONS(7370), + [anon_sym_STAR] = ACTIONS(7372), + [anon_sym_SLASH] = ACTIONS(7370), + [anon_sym_PERCENT] = ACTIONS(7372), + [anon_sym_PIPE_PIPE] = ACTIONS(7372), + [anon_sym_AMP_AMP] = ACTIONS(7372), + [anon_sym_PIPE] = ACTIONS(7370), + [anon_sym_CARET] = ACTIONS(7372), + [anon_sym_AMP] = ACTIONS(7370), + [anon_sym_EQ_EQ] = ACTIONS(7372), + [anon_sym_BANG_EQ] = ACTIONS(7372), + [anon_sym_GT] = ACTIONS(7370), + [anon_sym_GT_EQ] = ACTIONS(7372), + [anon_sym_LT_EQ] = ACTIONS(7370), + [anon_sym_LT] = ACTIONS(7370), + [anon_sym_LT_LT] = ACTIONS(7372), + [anon_sym_GT_GT] = ACTIONS(7372), + [anon_sym___extension__] = ACTIONS(7370), + [anon_sym___attribute__] = ACTIONS(9688), + [anon_sym___attribute] = ACTIONS(9688), + [anon_sym_COLON] = ACTIONS(7376), + [anon_sym_COLON_COLON] = ACTIONS(7372), + [anon_sym_LBRACE] = ACTIONS(9690), + [anon_sym_LBRACK] = ACTIONS(7370), + [anon_sym_RBRACK] = ACTIONS(7372), + [anon_sym_const] = ACTIONS(7370), + [anon_sym_constexpr] = ACTIONS(7370), + [anon_sym_volatile] = ACTIONS(7370), + [anon_sym_restrict] = ACTIONS(7370), + [anon_sym___restrict__] = ACTIONS(7370), + [anon_sym__Atomic] = ACTIONS(7370), + [anon_sym__Noreturn] = ACTIONS(7370), + [anon_sym_noreturn] = ACTIONS(7370), + [anon_sym__Nonnull] = ACTIONS(7370), + [anon_sym_mutable] = ACTIONS(7370), + [anon_sym_constinit] = ACTIONS(7370), + [anon_sym_consteval] = ACTIONS(7370), + [anon_sym_alignas] = ACTIONS(7370), + [anon_sym__Alignas] = ACTIONS(7370), + [anon_sym_QMARK] = ACTIONS(7372), + [anon_sym_LT_EQ_GT] = ACTIONS(7372), + [anon_sym_or] = ACTIONS(7370), + [anon_sym_and] = ACTIONS(7370), + [anon_sym_bitor] = ACTIONS(7370), + [anon_sym_xor] = ACTIONS(7370), + [anon_sym_bitand] = ACTIONS(7370), + [anon_sym_not_eq] = ACTIONS(7370), + [anon_sym_DASH_DASH] = ACTIONS(7372), + [anon_sym_PLUS_PLUS] = ACTIONS(7372), + [anon_sym_DOT] = ACTIONS(7370), + [anon_sym_DOT_STAR] = ACTIONS(7372), + [anon_sym_DASH_GT] = ACTIONS(7372), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7370), + [anon_sym_final] = ACTIONS(7380), + [anon_sym_override] = ACTIONS(7380), + [anon_sym_template] = ACTIONS(7370), + [anon_sym_requires] = ACTIONS(7370), + [anon_sym_LBRACK_COLON] = ACTIONS(7372), }, - [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(3819)] = { + [sym_string_literal] = STATE(3792), + [sym_template_argument_list] = STATE(4042), + [sym_raw_string_literal] = STATE(3792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(8625), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___attribute__] = ACTIONS(5663), + [anon_sym___attribute] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7102), + [anon_sym_u_DQUOTE] = ACTIONS(7102), + [anon_sym_U_DQUOTE] = ACTIONS(7102), + [anon_sym_u8_DQUOTE] = ACTIONS(7102), + [anon_sym_DQUOTE] = ACTIONS(7102), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7104), + [anon_sym_LR_DQUOTE] = ACTIONS(7104), + [anon_sym_uR_DQUOTE] = ACTIONS(7104), + [anon_sym_UR_DQUOTE] = ACTIONS(7104), + [anon_sym_u8R_DQUOTE] = ACTIONS(7104), }, - [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(3820)] = { + [sym_identifier] = ACTIONS(7149), + [anon_sym_COMMA] = ACTIONS(7151), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_BANG] = ACTIONS(7151), + [anon_sym_TILDE] = ACTIONS(7151), + [anon_sym_DASH] = ACTIONS(7149), + [anon_sym_PLUS] = ACTIONS(7149), + [anon_sym_STAR] = ACTIONS(7151), + [anon_sym_AMP] = ACTIONS(7151), + [anon_sym_SEMI] = ACTIONS(7151), + [anon_sym___extension__] = ACTIONS(7149), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_COLON] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_LBRACE] = ACTIONS(7151), + [anon_sym_RBRACE] = ACTIONS(7151), + [anon_sym_LBRACK] = ACTIONS(7149), + [sym_primitive_type] = ACTIONS(7149), + [anon_sym_not] = ACTIONS(7149), + [anon_sym_compl] = ACTIONS(7149), + [anon_sym_DASH_DASH] = ACTIONS(7151), + [anon_sym_PLUS_PLUS] = ACTIONS(7151), + [anon_sym_sizeof] = ACTIONS(7149), + [anon_sym___alignof__] = ACTIONS(7149), + [anon_sym___alignof] = ACTIONS(7149), + [anon_sym__alignof] = ACTIONS(7149), + [anon_sym_alignof] = ACTIONS(7149), + [anon_sym__Alignof] = ACTIONS(7149), + [anon_sym_offsetof] = ACTIONS(7149), + [anon_sym__Generic] = ACTIONS(7149), + [anon_sym_typename] = ACTIONS(7149), + [anon_sym_asm] = ACTIONS(7149), + [anon_sym___asm__] = ACTIONS(7149), + [anon_sym___asm] = ACTIONS(7149), + [sym_number_literal] = ACTIONS(7151), + [anon_sym_L_SQUOTE] = ACTIONS(7151), + [anon_sym_u_SQUOTE] = ACTIONS(7151), + [anon_sym_U_SQUOTE] = ACTIONS(7151), + [anon_sym_u8_SQUOTE] = ACTIONS(7151), + [anon_sym_SQUOTE] = ACTIONS(7151), + [anon_sym_L_DQUOTE] = ACTIONS(7151), + [anon_sym_u_DQUOTE] = ACTIONS(7151), + [anon_sym_U_DQUOTE] = ACTIONS(7151), + [anon_sym_u8_DQUOTE] = ACTIONS(7151), + [anon_sym_DQUOTE] = ACTIONS(7151), + [sym_true] = ACTIONS(7149), + [sym_false] = ACTIONS(7149), + [anon_sym_NULL] = ACTIONS(7149), + [anon_sym_nullptr] = ACTIONS(7149), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7149), + [anon_sym_final] = ACTIONS(7149), + [anon_sym_override] = ACTIONS(7149), + [anon_sym_template] = ACTIONS(7149), + [anon_sym_GT2] = ACTIONS(7151), + [anon_sym_delete] = ACTIONS(7149), + [anon_sym_R_DQUOTE] = ACTIONS(7151), + [anon_sym_LR_DQUOTE] = ACTIONS(7151), + [anon_sym_uR_DQUOTE] = ACTIONS(7151), + [anon_sym_UR_DQUOTE] = ACTIONS(7151), + [anon_sym_u8R_DQUOTE] = ACTIONS(7151), + [anon_sym_co_await] = ACTIONS(7149), + [anon_sym_new] = ACTIONS(7149), + [anon_sym_requires] = ACTIONS(7149), + [anon_sym_CARET_CARET] = ACTIONS(7151), + [anon_sym_LBRACK_COLON] = ACTIONS(7151), + [sym_this] = ACTIONS(7149), }, - [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(3821)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3790), + [sym_identifier] = ACTIONS(7279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7281), + [anon_sym_COMMA] = ACTIONS(7281), + [anon_sym_LPAREN2] = ACTIONS(7281), + [anon_sym_DASH] = ACTIONS(7279), + [anon_sym_PLUS] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(7281), + [anon_sym_SLASH] = ACTIONS(7279), + [anon_sym_PERCENT] = ACTIONS(7281), + [anon_sym_PIPE_PIPE] = ACTIONS(7281), + [anon_sym_AMP_AMP] = ACTIONS(7281), + [anon_sym_PIPE] = ACTIONS(7279), + [anon_sym_CARET] = ACTIONS(7281), + [anon_sym_AMP] = ACTIONS(7279), + [anon_sym_EQ_EQ] = ACTIONS(7281), + [anon_sym_BANG_EQ] = ACTIONS(7281), + [anon_sym_GT] = ACTIONS(7279), + [anon_sym_GT_EQ] = ACTIONS(7279), + [anon_sym_LT_EQ] = ACTIONS(7279), + [anon_sym_LT] = ACTIONS(7279), + [anon_sym_LT_LT] = ACTIONS(7281), + [anon_sym_GT_GT] = ACTIONS(7279), + [anon_sym___extension__] = ACTIONS(7279), + [anon_sym___attribute__] = ACTIONS(7279), + [anon_sym___attribute] = ACTIONS(7279), + [anon_sym_COLON_COLON] = ACTIONS(7281), + [anon_sym_LBRACE] = ACTIONS(7281), + [anon_sym_signed] = ACTIONS(9612), + [anon_sym_unsigned] = ACTIONS(9612), + [anon_sym_long] = ACTIONS(9612), + [anon_sym_short] = ACTIONS(9612), + [anon_sym_LBRACK] = ACTIONS(7279), + [anon_sym_const] = ACTIONS(7279), + [anon_sym_constexpr] = ACTIONS(7279), + [anon_sym_volatile] = ACTIONS(7279), + [anon_sym_restrict] = ACTIONS(7279), + [anon_sym___restrict__] = ACTIONS(7279), + [anon_sym__Atomic] = ACTIONS(7279), + [anon_sym__Noreturn] = ACTIONS(7279), + [anon_sym_noreturn] = ACTIONS(7279), + [anon_sym__Nonnull] = ACTIONS(7279), + [anon_sym_mutable] = ACTIONS(7279), + [anon_sym_constinit] = ACTIONS(7279), + [anon_sym_consteval] = ACTIONS(7279), + [anon_sym_alignas] = ACTIONS(7279), + [anon_sym__Alignas] = ACTIONS(7279), + [anon_sym_QMARK] = ACTIONS(7281), + [anon_sym_LT_EQ_GT] = ACTIONS(7281), + [anon_sym_or] = ACTIONS(7279), + [anon_sym_and] = ACTIONS(7279), + [anon_sym_bitor] = ACTIONS(7279), + [anon_sym_xor] = ACTIONS(7279), + [anon_sym_bitand] = ACTIONS(7279), + [anon_sym_not_eq] = ACTIONS(7279), + [anon_sym_DASH_DASH] = ACTIONS(7281), + [anon_sym_PLUS_PLUS] = ACTIONS(7281), + [anon_sym_DOT] = ACTIONS(7279), + [anon_sym_DOT_STAR] = ACTIONS(7281), + [anon_sym_DASH_GT] = ACTIONS(7281), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7279), + [anon_sym_final] = ACTIONS(7279), + [anon_sym_override] = ACTIONS(7279), + [anon_sym_template] = ACTIONS(7279), + [anon_sym_GT2] = ACTIONS(7281), + [anon_sym_requires] = ACTIONS(7279), + [anon_sym_LBRACK_COLON] = ACTIONS(7281), }, - [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(3822)] = { + [sym_decltype_auto] = STATE(4549), + [sym_template_argument_list] = STATE(4159), + [aux_sym_sized_type_specifier_repeat1] = STATE(3799), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5669), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5669), + [anon_sym_PIPE_PIPE] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5669), + [anon_sym_BANG_EQ] = ACTIONS(5669), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5661), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(9692), + [anon_sym_LT_LT] = ACTIONS(5669), + [anon_sym_GT_GT] = ACTIONS(5661), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_signed] = ACTIONS(7195), + [anon_sym_unsigned] = ACTIONS(7195), + [anon_sym_long] = ACTIONS(7195), + [anon_sym_short] = ACTIONS(7195), + [anon_sym_LBRACK] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5669), + [anon_sym_LT_EQ_GT] = ACTIONS(5669), + [anon_sym_or] = ACTIONS(5661), + [anon_sym_and] = ACTIONS(5661), + [anon_sym_bitor] = ACTIONS(5661), + [anon_sym_xor] = ACTIONS(5661), + [anon_sym_bitand] = ACTIONS(5661), + [anon_sym_not_eq] = ACTIONS(5661), + [anon_sym_DASH_DASH] = ACTIONS(5669), + [anon_sym_PLUS_PLUS] = ACTIONS(5669), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5669), + [anon_sym_DASH_GT] = ACTIONS(5669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7203), + [anon_sym_decltype] = ACTIONS(7205), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_GT2] = ACTIONS(5669), + [anon_sym_requires] = ACTIONS(5661), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), }, - [STATE(3809)] = { + [STATE(3823)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7302), + [anon_sym_LPAREN2] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7300), + [anon_sym_PERCENT] = ACTIONS(7302), + [anon_sym_PIPE_PIPE] = ACTIONS(7302), + [anon_sym_AMP_AMP] = ACTIONS(7302), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_CARET] = ACTIONS(7302), + [anon_sym_AMP] = ACTIONS(7300), + [anon_sym_EQ_EQ] = ACTIONS(7302), + [anon_sym_BANG_EQ] = ACTIONS(7302), + [anon_sym_GT] = ACTIONS(7300), + [anon_sym_GT_EQ] = ACTIONS(7302), + [anon_sym_LT_EQ] = ACTIONS(7300), + [anon_sym_LT] = ACTIONS(7300), + [anon_sym_LT_LT] = ACTIONS(7302), + [anon_sym_GT_GT] = ACTIONS(7302), + [anon_sym___extension__] = ACTIONS(7300), + [anon_sym___attribute__] = ACTIONS(7300), + [anon_sym___attribute] = ACTIONS(7300), + [anon_sym_COLON_COLON] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(9610), + [anon_sym_unsigned] = ACTIONS(9610), + [anon_sym_long] = ACTIONS(9610), + [anon_sym_short] = ACTIONS(9610), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_RBRACK] = ACTIONS(7302), + [anon_sym_const] = ACTIONS(7300), + [anon_sym_constexpr] = ACTIONS(7300), + [anon_sym_volatile] = ACTIONS(7300), + [anon_sym_restrict] = ACTIONS(7300), + [anon_sym___restrict__] = ACTIONS(7300), + [anon_sym__Atomic] = ACTIONS(7300), + [anon_sym__Noreturn] = ACTIONS(7300), + [anon_sym_noreturn] = ACTIONS(7300), + [anon_sym__Nonnull] = ACTIONS(7300), + [anon_sym_mutable] = ACTIONS(7300), + [anon_sym_constinit] = ACTIONS(7300), + [anon_sym_consteval] = ACTIONS(7300), + [anon_sym_alignas] = ACTIONS(7300), + [anon_sym__Alignas] = ACTIONS(7300), + [anon_sym_QMARK] = ACTIONS(7302), + [anon_sym_LT_EQ_GT] = ACTIONS(7302), + [anon_sym_or] = ACTIONS(7300), + [anon_sym_and] = ACTIONS(7300), + [anon_sym_bitor] = ACTIONS(7300), + [anon_sym_xor] = ACTIONS(7300), + [anon_sym_bitand] = ACTIONS(7300), + [anon_sym_not_eq] = ACTIONS(7300), + [anon_sym_DASH_DASH] = ACTIONS(7302), + [anon_sym_PLUS_PLUS] = ACTIONS(7302), + [anon_sym_DOT] = ACTIONS(7300), + [anon_sym_DOT_STAR] = ACTIONS(7302), + [anon_sym_DASH_GT] = ACTIONS(7302), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7300), + [anon_sym_final] = ACTIONS(7300), + [anon_sym_override] = ACTIONS(7300), + [anon_sym_template] = ACTIONS(7300), + [anon_sym_requires] = ACTIONS(7300), + [anon_sym_LBRACK_COLON] = ACTIONS(7302), + }, + [STATE(3824)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7175), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7175), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7175), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7175), + [anon_sym_GT_GT] = ACTIONS(7175), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_COLON_COLON] = ACTIONS(7175), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(9694), + [anon_sym_unsigned] = ACTIONS(9694), + [anon_sym_long] = ACTIONS(9694), + [anon_sym_short] = ACTIONS(9694), + [anon_sym_LBRACK] = ACTIONS(7173), + [anon_sym_RBRACK] = ACTIONS(7175), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7173), + [anon_sym_final] = ACTIONS(7173), + [anon_sym_override] = ACTIONS(7173), + [anon_sym_template] = ACTIONS(7173), + [anon_sym_requires] = ACTIONS(7173), + [anon_sym_LBRACK_COLON] = ACTIONS(7175), + }, + [STATE(3825)] = { + [sym_argument_list] = STATE(4296), + [sym_initializer_list] = STATE(4296), + [sym_new_declarator] = STATE(3874), [sym_identifier] = ACTIONS(9697), [anon_sym_DOT_DOT_DOT] = ACTIONS(9699), [anon_sym_COMMA] = ACTIONS(9699), @@ -450801,7 +464329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LPAREN2] = ACTIONS(9662), [anon_sym_DASH] = ACTIONS(9697), [anon_sym_PLUS] = ACTIONS(9697), [anon_sym_STAR] = ACTIONS(9697), @@ -450825,8 +464353,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(9697), [anon_sym_COLON] = ACTIONS(9697), [anon_sym_RBRACK_RBRACK] = ACTIONS(9699), + [anon_sym_LBRACE] = ACTIONS(2396), [anon_sym_RBRACE] = ACTIONS(9699), - [anon_sym_LBRACK] = ACTIONS(9697), + [anon_sym_LBRACK] = ACTIONS(9664), [anon_sym_EQ] = ACTIONS(9697), [anon_sym_QMARK] = ACTIONS(9699), [anon_sym_STAR_EQ] = ACTIONS(9699), @@ -450856,277 +464385,700 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [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), + [STATE(3826)] = { + [sym_decltype_auto] = STATE(4145), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9534), + [anon_sym_decltype] = ACTIONS(9536), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(3827)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3790), + [sym_identifier] = ACTIONS(7300), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7302), + [anon_sym_COMMA] = ACTIONS(7302), + [anon_sym_LPAREN2] = ACTIONS(7302), + [anon_sym_DASH] = ACTIONS(7300), + [anon_sym_PLUS] = ACTIONS(7300), + [anon_sym_STAR] = ACTIONS(7302), + [anon_sym_SLASH] = ACTIONS(7300), + [anon_sym_PERCENT] = ACTIONS(7302), + [anon_sym_PIPE_PIPE] = ACTIONS(7302), + [anon_sym_AMP_AMP] = ACTIONS(7302), + [anon_sym_PIPE] = ACTIONS(7300), + [anon_sym_CARET] = ACTIONS(7302), + [anon_sym_AMP] = ACTIONS(7300), + [anon_sym_EQ_EQ] = ACTIONS(7302), + [anon_sym_BANG_EQ] = ACTIONS(7302), + [anon_sym_GT] = ACTIONS(7300), + [anon_sym_GT_EQ] = ACTIONS(7300), + [anon_sym_LT_EQ] = ACTIONS(7300), + [anon_sym_LT] = ACTIONS(7300), + [anon_sym_LT_LT] = ACTIONS(7302), + [anon_sym_GT_GT] = ACTIONS(7300), + [anon_sym___extension__] = ACTIONS(7300), + [anon_sym___attribute__] = ACTIONS(7300), + [anon_sym___attribute] = ACTIONS(7300), + [anon_sym_COLON_COLON] = ACTIONS(7302), + [anon_sym_LBRACE] = ACTIONS(7302), + [anon_sym_signed] = ACTIONS(9612), + [anon_sym_unsigned] = ACTIONS(9612), + [anon_sym_long] = ACTIONS(9612), + [anon_sym_short] = ACTIONS(9612), + [anon_sym_LBRACK] = ACTIONS(7300), + [anon_sym_const] = ACTIONS(7300), + [anon_sym_constexpr] = ACTIONS(7300), + [anon_sym_volatile] = ACTIONS(7300), + [anon_sym_restrict] = ACTIONS(7300), + [anon_sym___restrict__] = ACTIONS(7300), + [anon_sym__Atomic] = ACTIONS(7300), + [anon_sym__Noreturn] = ACTIONS(7300), + [anon_sym_noreturn] = ACTIONS(7300), + [anon_sym__Nonnull] = ACTIONS(7300), + [anon_sym_mutable] = ACTIONS(7300), + [anon_sym_constinit] = ACTIONS(7300), + [anon_sym_consteval] = ACTIONS(7300), + [anon_sym_alignas] = ACTIONS(7300), + [anon_sym__Alignas] = ACTIONS(7300), + [anon_sym_QMARK] = ACTIONS(7302), + [anon_sym_LT_EQ_GT] = ACTIONS(7302), + [anon_sym_or] = ACTIONS(7300), + [anon_sym_and] = ACTIONS(7300), + [anon_sym_bitor] = ACTIONS(7300), + [anon_sym_xor] = ACTIONS(7300), + [anon_sym_bitand] = ACTIONS(7300), + [anon_sym_not_eq] = ACTIONS(7300), + [anon_sym_DASH_DASH] = ACTIONS(7302), + [anon_sym_PLUS_PLUS] = ACTIONS(7302), + [anon_sym_DOT] = ACTIONS(7300), + [anon_sym_DOT_STAR] = ACTIONS(7302), + [anon_sym_DASH_GT] = ACTIONS(7302), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7300), + [anon_sym_final] = ACTIONS(7300), + [anon_sym_override] = ACTIONS(7300), + [anon_sym_template] = ACTIONS(7300), + [anon_sym_GT2] = ACTIONS(7302), + [anon_sym_requires] = ACTIONS(7300), + [anon_sym_LBRACK_COLON] = ACTIONS(7302), + }, + [STATE(3828)] = { + [sym_attribute_specifier] = STATE(4150), + [sym_enumerator_list] = STATE(4021), + [sym_identifier] = ACTIONS(7417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7419), + [anon_sym_COMMA] = ACTIONS(7419), + [anon_sym_RPAREN] = ACTIONS(7419), + [aux_sym_preproc_if_token2] = ACTIONS(7419), + [aux_sym_preproc_else_token1] = ACTIONS(7419), + [aux_sym_preproc_elif_token1] = ACTIONS(7417), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7419), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7419), + [anon_sym_LPAREN2] = ACTIONS(7419), + [anon_sym_DASH] = ACTIONS(7417), + [anon_sym_PLUS] = ACTIONS(7417), + [anon_sym_STAR] = ACTIONS(7417), + [anon_sym_SLASH] = ACTIONS(7417), + [anon_sym_PERCENT] = ACTIONS(7417), + [anon_sym_PIPE_PIPE] = ACTIONS(7419), + [anon_sym_AMP_AMP] = ACTIONS(7419), + [anon_sym_PIPE] = ACTIONS(7417), + [anon_sym_CARET] = ACTIONS(7417), + [anon_sym_AMP] = ACTIONS(7417), + [anon_sym_EQ_EQ] = ACTIONS(7419), + [anon_sym_BANG_EQ] = ACTIONS(7419), + [anon_sym_GT] = ACTIONS(7417), + [anon_sym_GT_EQ] = ACTIONS(7419), + [anon_sym_LT_EQ] = ACTIONS(7417), + [anon_sym_LT] = ACTIONS(7417), + [anon_sym_LT_LT] = ACTIONS(7417), + [anon_sym_GT_GT] = ACTIONS(7417), + [anon_sym_SEMI] = ACTIONS(7419), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7417), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7419), + [anon_sym_LBRACE] = ACTIONS(9701), + [anon_sym_RBRACE] = ACTIONS(7419), + [anon_sym_LBRACK] = ACTIONS(7419), + [anon_sym_EQ] = ACTIONS(7417), + [anon_sym_QMARK] = ACTIONS(7419), + [anon_sym_STAR_EQ] = ACTIONS(7419), + [anon_sym_SLASH_EQ] = ACTIONS(7419), + [anon_sym_PERCENT_EQ] = ACTIONS(7419), + [anon_sym_PLUS_EQ] = ACTIONS(7419), + [anon_sym_DASH_EQ] = ACTIONS(7419), + [anon_sym_LT_LT_EQ] = ACTIONS(7419), + [anon_sym_GT_GT_EQ] = ACTIONS(7419), + [anon_sym_AMP_EQ] = ACTIONS(7419), + [anon_sym_CARET_EQ] = ACTIONS(7419), + [anon_sym_PIPE_EQ] = ACTIONS(7419), + [anon_sym_and_eq] = ACTIONS(7417), + [anon_sym_or_eq] = ACTIONS(7417), + [anon_sym_xor_eq] = ACTIONS(7417), + [anon_sym_LT_EQ_GT] = ACTIONS(7419), + [anon_sym_or] = ACTIONS(7417), + [anon_sym_and] = ACTIONS(7417), + [anon_sym_bitor] = ACTIONS(7417), + [anon_sym_xor] = ACTIONS(7417), + [anon_sym_bitand] = ACTIONS(7417), + [anon_sym_not_eq] = ACTIONS(7417), + [anon_sym_DASH_DASH] = ACTIONS(7419), + [anon_sym_PLUS_PLUS] = ACTIONS(7419), + [anon_sym_DOT] = ACTIONS(7417), + [anon_sym_DOT_STAR] = ACTIONS(7419), + [anon_sym_DASH_GT] = ACTIONS(7419), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7419), + }, + [STATE(3829)] = { + [sym_identifier] = ACTIONS(6803), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_TILDE] = ACTIONS(6805), + [anon_sym_STAR] = ACTIONS(6805), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym_virtual] = ACTIONS(6803), + [anon_sym_extern] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_using] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6805), + [anon_sym___declspec] = ACTIONS(6803), + [anon_sym___based] = ACTIONS(6803), + [anon_sym___cdecl] = ACTIONS(6803), + [anon_sym___clrcall] = ACTIONS(6803), + [anon_sym___stdcall] = ACTIONS(6803), + [anon_sym___fastcall] = ACTIONS(6803), + [anon_sym___thiscall] = ACTIONS(6803), + [anon_sym___vectorcall] = ACTIONS(6803), + [anon_sym_signed] = ACTIONS(6803), + [anon_sym_unsigned] = ACTIONS(6803), + [anon_sym_long] = ACTIONS(6803), + [anon_sym_short] = ACTIONS(6803), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_static] = ACTIONS(6803), + [anon_sym_register] = ACTIONS(6803), + [anon_sym_inline] = ACTIONS(6803), + [anon_sym___inline] = ACTIONS(6803), + [anon_sym___inline__] = ACTIONS(6803), + [anon_sym___forceinline] = ACTIONS(6803), + [anon_sym_thread_local] = ACTIONS(6803), + [anon_sym___thread] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [sym_primitive_type] = ACTIONS(6803), + [anon_sym_enum] = ACTIONS(6803), + [anon_sym_class] = ACTIONS(6803), + [anon_sym_struct] = ACTIONS(6803), + [anon_sym_union] = ACTIONS(6803), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_typename] = ACTIONS(6803), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_explicit] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_operator] = ACTIONS(6803), + [anon_sym_friend] = ACTIONS(6803), + [anon_sym_concept] = ACTIONS(6803), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), + }, + [STATE(3830)] = { + [sym_identifier] = ACTIONS(6799), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_TILDE] = ACTIONS(6801), + [anon_sym_STAR] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym_virtual] = ACTIONS(6799), + [anon_sym_extern] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_using] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6801), + [anon_sym___declspec] = ACTIONS(6799), + [anon_sym___based] = ACTIONS(6799), + [anon_sym___cdecl] = ACTIONS(6799), + [anon_sym___clrcall] = ACTIONS(6799), + [anon_sym___stdcall] = ACTIONS(6799), + [anon_sym___fastcall] = ACTIONS(6799), + [anon_sym___thiscall] = ACTIONS(6799), + [anon_sym___vectorcall] = ACTIONS(6799), + [anon_sym_signed] = ACTIONS(6799), + [anon_sym_unsigned] = ACTIONS(6799), + [anon_sym_long] = ACTIONS(6799), + [anon_sym_short] = ACTIONS(6799), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_static] = ACTIONS(6799), + [anon_sym_register] = ACTIONS(6799), + [anon_sym_inline] = ACTIONS(6799), + [anon_sym___inline] = ACTIONS(6799), + [anon_sym___inline__] = ACTIONS(6799), + [anon_sym___forceinline] = ACTIONS(6799), + [anon_sym_thread_local] = ACTIONS(6799), + [anon_sym___thread] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [sym_primitive_type] = ACTIONS(6799), + [anon_sym_enum] = ACTIONS(6799), + [anon_sym_class] = ACTIONS(6799), + [anon_sym_struct] = ACTIONS(6799), + [anon_sym_union] = ACTIONS(6799), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_typename] = ACTIONS(6799), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_explicit] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_operator] = ACTIONS(6799), + [anon_sym_friend] = ACTIONS(6799), + [anon_sym_concept] = ACTIONS(6799), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), + }, + [STATE(3831)] = { + [sym_identifier] = ACTIONS(6807), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_TILDE] = ACTIONS(6809), + [anon_sym_STAR] = ACTIONS(6809), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym_virtual] = ACTIONS(6807), + [anon_sym_extern] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_using] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6809), + [anon_sym___declspec] = ACTIONS(6807), + [anon_sym___based] = ACTIONS(6807), + [anon_sym___cdecl] = ACTIONS(6807), + [anon_sym___clrcall] = ACTIONS(6807), + [anon_sym___stdcall] = ACTIONS(6807), + [anon_sym___fastcall] = ACTIONS(6807), + [anon_sym___thiscall] = ACTIONS(6807), + [anon_sym___vectorcall] = ACTIONS(6807), + [anon_sym_signed] = ACTIONS(6807), + [anon_sym_unsigned] = ACTIONS(6807), + [anon_sym_long] = ACTIONS(6807), + [anon_sym_short] = ACTIONS(6807), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_static] = ACTIONS(6807), + [anon_sym_register] = ACTIONS(6807), + [anon_sym_inline] = ACTIONS(6807), + [anon_sym___inline] = ACTIONS(6807), + [anon_sym___inline__] = ACTIONS(6807), + [anon_sym___forceinline] = ACTIONS(6807), + [anon_sym_thread_local] = ACTIONS(6807), + [anon_sym___thread] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [sym_primitive_type] = ACTIONS(6807), + [anon_sym_enum] = ACTIONS(6807), + [anon_sym_class] = ACTIONS(6807), + [anon_sym_struct] = ACTIONS(6807), + [anon_sym_union] = ACTIONS(6807), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_typename] = ACTIONS(6807), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_explicit] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_operator] = ACTIONS(6807), + [anon_sym_friend] = ACTIONS(6807), + [anon_sym_concept] = ACTIONS(6807), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), + }, + [STATE(3832)] = { + [sym_identifier] = ACTIONS(6795), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_TILDE] = ACTIONS(6797), + [anon_sym_STAR] = ACTIONS(6797), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym_virtual] = ACTIONS(6795), + [anon_sym_extern] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_using] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6797), + [anon_sym___declspec] = ACTIONS(6795), + [anon_sym___based] = ACTIONS(6795), + [anon_sym___cdecl] = ACTIONS(6795), + [anon_sym___clrcall] = ACTIONS(6795), + [anon_sym___stdcall] = ACTIONS(6795), + [anon_sym___fastcall] = ACTIONS(6795), + [anon_sym___thiscall] = ACTIONS(6795), + [anon_sym___vectorcall] = ACTIONS(6795), + [anon_sym_signed] = ACTIONS(6795), + [anon_sym_unsigned] = ACTIONS(6795), + [anon_sym_long] = ACTIONS(6795), + [anon_sym_short] = ACTIONS(6795), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_static] = ACTIONS(6795), + [anon_sym_register] = ACTIONS(6795), + [anon_sym_inline] = ACTIONS(6795), + [anon_sym___inline] = ACTIONS(6795), + [anon_sym___inline__] = ACTIONS(6795), + [anon_sym___forceinline] = ACTIONS(6795), + [anon_sym_thread_local] = ACTIONS(6795), + [anon_sym___thread] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [sym_primitive_type] = ACTIONS(6795), + [anon_sym_enum] = ACTIONS(6795), + [anon_sym_class] = ACTIONS(6795), + [anon_sym_struct] = ACTIONS(6795), + [anon_sym_union] = ACTIONS(6795), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_typename] = ACTIONS(6795), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_explicit] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_operator] = ACTIONS(6795), + [anon_sym_friend] = ACTIONS(6795), + [anon_sym_concept] = ACTIONS(6795), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), + }, + [STATE(3833)] = { + [sym_identifier] = ACTIONS(6791), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_TILDE] = ACTIONS(6793), + [anon_sym_STAR] = ACTIONS(6793), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym_virtual] = ACTIONS(6791), + [anon_sym_extern] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_using] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6793), + [anon_sym___declspec] = ACTIONS(6791), + [anon_sym___based] = ACTIONS(6791), + [anon_sym___cdecl] = ACTIONS(6791), + [anon_sym___clrcall] = ACTIONS(6791), + [anon_sym___stdcall] = ACTIONS(6791), + [anon_sym___fastcall] = ACTIONS(6791), + [anon_sym___thiscall] = ACTIONS(6791), + [anon_sym___vectorcall] = ACTIONS(6791), + [anon_sym_signed] = ACTIONS(6791), + [anon_sym_unsigned] = ACTIONS(6791), + [anon_sym_long] = ACTIONS(6791), + [anon_sym_short] = ACTIONS(6791), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_static] = ACTIONS(6791), + [anon_sym_register] = ACTIONS(6791), + [anon_sym_inline] = ACTIONS(6791), + [anon_sym___inline] = ACTIONS(6791), + [anon_sym___inline__] = ACTIONS(6791), + [anon_sym___forceinline] = ACTIONS(6791), + [anon_sym_thread_local] = ACTIONS(6791), + [anon_sym___thread] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [sym_primitive_type] = ACTIONS(6791), + [anon_sym_enum] = ACTIONS(6791), + [anon_sym_class] = ACTIONS(6791), + [anon_sym_struct] = ACTIONS(6791), + [anon_sym_union] = ACTIONS(6791), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_typename] = ACTIONS(6791), [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), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_explicit] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_operator] = ACTIONS(6791), + [anon_sym_friend] = ACTIONS(6791), + [anon_sym_concept] = ACTIONS(6791), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), + }, + [STATE(3834)] = { + [sym_identifier] = ACTIONS(6811), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_TILDE] = ACTIONS(6813), + [anon_sym_STAR] = ACTIONS(6813), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym_virtual] = ACTIONS(6811), + [anon_sym_extern] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_using] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6813), + [anon_sym___declspec] = ACTIONS(6811), + [anon_sym___based] = ACTIONS(6811), + [anon_sym___cdecl] = ACTIONS(6811), + [anon_sym___clrcall] = ACTIONS(6811), + [anon_sym___stdcall] = ACTIONS(6811), + [anon_sym___fastcall] = ACTIONS(6811), + [anon_sym___thiscall] = ACTIONS(6811), + [anon_sym___vectorcall] = ACTIONS(6811), + [anon_sym_signed] = ACTIONS(6811), + [anon_sym_unsigned] = ACTIONS(6811), + [anon_sym_long] = ACTIONS(6811), + [anon_sym_short] = ACTIONS(6811), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_static] = ACTIONS(6811), + [anon_sym_register] = ACTIONS(6811), + [anon_sym_inline] = ACTIONS(6811), + [anon_sym___inline] = ACTIONS(6811), + [anon_sym___inline__] = ACTIONS(6811), + [anon_sym___forceinline] = ACTIONS(6811), + [anon_sym_thread_local] = ACTIONS(6811), + [anon_sym___thread] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [sym_primitive_type] = ACTIONS(6811), + [anon_sym_enum] = ACTIONS(6811), + [anon_sym_class] = ACTIONS(6811), + [anon_sym_struct] = ACTIONS(6811), + [anon_sym_union] = ACTIONS(6811), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_typename] = ACTIONS(6811), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_explicit] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_operator] = ACTIONS(6811), + [anon_sym_friend] = ACTIONS(6811), + [anon_sym_concept] = ACTIONS(6811), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), + }, + [STATE(3835)] = { + [sym_attribute_specifier] = STATE(4117), + [sym_enumerator_list] = STATE(3988), + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_RPAREN] = ACTIONS(7423), + [aux_sym_preproc_if_token2] = ACTIONS(7423), + [aux_sym_preproc_else_token1] = ACTIONS(7423), + [aux_sym_preproc_elif_token1] = ACTIONS(7421), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7423), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7421), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7421), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7421), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7421), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym_SEMI] = ACTIONS(7423), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7421), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(9701), + [anon_sym_RBRACE] = ACTIONS(7423), + [anon_sym_LBRACK] = ACTIONS(7423), + [anon_sym_EQ] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_STAR_EQ] = ACTIONS(7423), + [anon_sym_SLASH_EQ] = ACTIONS(7423), + [anon_sym_PERCENT_EQ] = ACTIONS(7423), + [anon_sym_PLUS_EQ] = ACTIONS(7423), + [anon_sym_DASH_EQ] = ACTIONS(7423), + [anon_sym_LT_LT_EQ] = ACTIONS(7423), + [anon_sym_GT_GT_EQ] = ACTIONS(7423), + [anon_sym_AMP_EQ] = ACTIONS(7423), + [anon_sym_CARET_EQ] = ACTIONS(7423), + [anon_sym_PIPE_EQ] = ACTIONS(7423), + [anon_sym_and_eq] = ACTIONS(7421), + [anon_sym_or_eq] = ACTIONS(7421), + [anon_sym_xor_eq] = ACTIONS(7421), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7423), }, - [STATE(3814)] = { + [STATE(3836)] = { [sym_identifier] = ACTIONS(9703), [anon_sym_DOT_DOT_DOT] = ACTIONS(9705), [anon_sym_COMMA] = ACTIONS(9705), @@ -451160,7 +465112,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -451191,11 +465142,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(9705), [anon_sym_DASH_GT] = ACTIONS(9705), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9703), + [anon_sym_override] = ACTIONS(9703), + [anon_sym_requires] = ACTIONS(9703), [anon_sym_COLON_RBRACK] = ACTIONS(9705), }, - [STATE(3815)] = { - [sym_argument_list] = STATE(3874), - [sym_subscript_argument_list] = STATE(3900), + [STATE(3837)] = { [sym_identifier] = ACTIONS(9707), [anon_sym_DOT_DOT_DOT] = ACTIONS(9709), [anon_sym_COMMA] = ACTIONS(9709), @@ -451205,7 +465157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LPAREN2] = ACTIONS(9709), [anon_sym_DASH] = ACTIONS(9707), [anon_sym_PLUS] = ACTIONS(9707), [anon_sym_STAR] = ACTIONS(9707), @@ -451227,9 +465179,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(9709), [anon_sym___attribute__] = ACTIONS(9707), [anon_sym___attribute] = ACTIONS(9707), + [anon_sym_COLON] = ACTIONS(9707), [anon_sym_RBRACK_RBRACK] = ACTIONS(9709), [anon_sym_RBRACE] = ACTIONS(9709), - [anon_sym_LBRACK] = ACTIONS(9642), + [anon_sym_LBRACK] = ACTIONS(9709), [anon_sym_EQ] = ACTIONS(9707), [anon_sym_QMARK] = ACTIONS(9709), [anon_sym_STAR_EQ] = ACTIONS(9709), @@ -451252,82 +465205,363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_DASH_DASH] = ACTIONS(9709), + [anon_sym_PLUS_PLUS] = ACTIONS(9709), + [anon_sym_DOT] = ACTIONS(9707), + [anon_sym_DOT_STAR] = ACTIONS(9709), + [anon_sym_DASH_GT] = ACTIONS(9709), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9707), + [anon_sym_override] = ACTIONS(9707), + [anon_sym_requires] = ACTIONS(9707), [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(3838)] = { + [sym_identifier] = ACTIONS(7743), + [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(7745), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7745), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7745), + [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(7745), + [anon_sym_GT_GT] = ACTIONS(7745), + [anon_sym_SEMI] = ACTIONS(7745), + [anon_sym___extension__] = ACTIONS(7743), + [anon_sym___attribute__] = ACTIONS(7743), + [anon_sym___attribute] = ACTIONS(7743), + [anon_sym_COLON] = ACTIONS(7743), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7745), + [anon_sym___based] = ACTIONS(7743), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_RBRACE] = ACTIONS(7745), + [anon_sym_signed] = ACTIONS(7743), + [anon_sym_unsigned] = ACTIONS(7743), + [anon_sym_long] = ACTIONS(7743), + [anon_sym_short] = ACTIONS(7743), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7743), + [anon_sym_volatile] = ACTIONS(7743), + [anon_sym_restrict] = ACTIONS(7743), + [anon_sym___restrict__] = ACTIONS(7743), + [anon_sym__Atomic] = ACTIONS(7743), + [anon_sym__Noreturn] = ACTIONS(7743), + [anon_sym_noreturn] = ACTIONS(7743), + [anon_sym__Nonnull] = ACTIONS(7743), + [anon_sym_mutable] = ACTIONS(7743), + [anon_sym_constinit] = ACTIONS(7743), + [anon_sym_consteval] = ACTIONS(7743), + [anon_sym_alignas] = ACTIONS(7743), + [anon_sym__Alignas] = ACTIONS(7743), + [sym_primitive_type] = ACTIONS(7743), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7743), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7743), + [anon_sym_not_eq] = ACTIONS(7743), + [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_COLON_RBRACK] = ACTIONS(7745), }, - [STATE(3817)] = { + [STATE(3839)] = { + [sym_identifier] = ACTIONS(7751), + [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(7753), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7753), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7753), + [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(7753), + [anon_sym_GT_GT] = ACTIONS(7753), + [anon_sym_SEMI] = ACTIONS(7753), + [anon_sym___extension__] = ACTIONS(7751), + [anon_sym___attribute__] = ACTIONS(7751), + [anon_sym___attribute] = ACTIONS(7751), + [anon_sym_COLON] = ACTIONS(7751), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7753), + [anon_sym___based] = ACTIONS(7751), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_signed] = ACTIONS(7751), + [anon_sym_unsigned] = ACTIONS(7751), + [anon_sym_long] = ACTIONS(7751), + [anon_sym_short] = ACTIONS(7751), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7751), + [anon_sym_volatile] = ACTIONS(7751), + [anon_sym_restrict] = ACTIONS(7751), + [anon_sym___restrict__] = ACTIONS(7751), + [anon_sym__Atomic] = ACTIONS(7751), + [anon_sym__Noreturn] = ACTIONS(7751), + [anon_sym_noreturn] = ACTIONS(7751), + [anon_sym__Nonnull] = ACTIONS(7751), + [anon_sym_mutable] = ACTIONS(7751), + [anon_sym_constinit] = ACTIONS(7751), + [anon_sym_consteval] = ACTIONS(7751), + [anon_sym_alignas] = ACTIONS(7751), + [anon_sym__Alignas] = ACTIONS(7751), + [sym_primitive_type] = ACTIONS(7751), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7751), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7751), + [anon_sym_not_eq] = ACTIONS(7751), + [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_COLON_RBRACK] = ACTIONS(7753), + }, + [STATE(3840)] = { + [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_COLON_RBRACK] = ACTIONS(7761), + }, + [STATE(3841)] = { + [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), + [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_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), + [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_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), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7769), + }, + [STATE(3842)] = { + [sym_identifier] = ACTIONS(7786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7788), + [anon_sym_COMMA] = ACTIONS(7788), + [anon_sym_RPAREN] = ACTIONS(7788), + [anon_sym_LPAREN2] = ACTIONS(7788), + [anon_sym_DASH] = ACTIONS(7786), + [anon_sym_PLUS] = ACTIONS(7786), + [anon_sym_STAR] = ACTIONS(7788), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_PERCENT] = ACTIONS(7788), + [anon_sym_PIPE_PIPE] = ACTIONS(7788), + [anon_sym_AMP_AMP] = ACTIONS(7788), + [anon_sym_PIPE] = ACTIONS(7786), + [anon_sym_CARET] = ACTIONS(7788), + [anon_sym_AMP] = ACTIONS(7786), + [anon_sym_EQ_EQ] = ACTIONS(7788), + [anon_sym_BANG_EQ] = ACTIONS(7788), + [anon_sym_GT] = ACTIONS(7786), + [anon_sym_GT_EQ] = ACTIONS(7788), + [anon_sym_LT_EQ] = ACTIONS(7786), + [anon_sym_LT] = ACTIONS(7786), + [anon_sym_LT_LT] = ACTIONS(7788), + [anon_sym_GT_GT] = ACTIONS(7788), + [anon_sym_SEMI] = ACTIONS(7788), + [anon_sym___extension__] = ACTIONS(7786), + [anon_sym___attribute__] = ACTIONS(7786), + [anon_sym___attribute] = ACTIONS(7786), + [anon_sym_COLON] = ACTIONS(7786), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7788), + [anon_sym___based] = ACTIONS(7786), + [anon_sym_LBRACE] = ACTIONS(7788), + [anon_sym_RBRACE] = ACTIONS(7788), + [anon_sym_signed] = ACTIONS(7786), + [anon_sym_unsigned] = ACTIONS(7786), + [anon_sym_long] = ACTIONS(7786), + [anon_sym_short] = ACTIONS(7786), + [anon_sym_LBRACK] = ACTIONS(7788), + [anon_sym_const] = ACTIONS(7786), + [anon_sym_constexpr] = ACTIONS(7786), + [anon_sym_volatile] = ACTIONS(7786), + [anon_sym_restrict] = ACTIONS(7786), + [anon_sym___restrict__] = ACTIONS(7786), + [anon_sym__Atomic] = ACTIONS(7786), + [anon_sym__Noreturn] = ACTIONS(7786), + [anon_sym_noreturn] = ACTIONS(7786), + [anon_sym__Nonnull] = ACTIONS(7786), + [anon_sym_mutable] = ACTIONS(7786), + [anon_sym_constinit] = ACTIONS(7786), + [anon_sym_consteval] = ACTIONS(7786), + [anon_sym_alignas] = ACTIONS(7786), + [anon_sym__Alignas] = ACTIONS(7786), + [sym_primitive_type] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7788), + [anon_sym_LT_EQ_GT] = ACTIONS(7788), + [anon_sym_or] = ACTIONS(7786), + [anon_sym_and] = ACTIONS(7786), + [anon_sym_bitor] = ACTIONS(7786), + [anon_sym_xor] = ACTIONS(7786), + [anon_sym_bitand] = ACTIONS(7786), + [anon_sym_not_eq] = ACTIONS(7786), + [anon_sym_DASH_DASH] = ACTIONS(7788), + [anon_sym_PLUS_PLUS] = ACTIONS(7788), + [anon_sym_DOT] = ACTIONS(7786), + [anon_sym_DOT_STAR] = ACTIONS(7788), + [anon_sym_DASH_GT] = ACTIONS(7788), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7788), + }, + [STATE(3843)] = { [sym_identifier] = ACTIONS(9711), [anon_sym_DOT_DOT_DOT] = ACTIONS(9713), [anon_sym_COMMA] = ACTIONS(9713), @@ -451360,7 +465594,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -451392,640 +465625,62945 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(9713), [anon_sym_DASH_GT] = ACTIONS(9713), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9711), + [anon_sym_override] = ACTIONS(9711), + [anon_sym_requires] = ACTIONS(9711), [anon_sym_COLON_RBRACK] = ACTIONS(9713), }, - [STATE(3818)] = { - [sym_attribute_specifier] = STATE(4056), - [sym_enumerator_list] = STATE(3829), - [sym_identifier] = ACTIONS(7381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), - [anon_sym_COMMA] = ACTIONS(7383), - [aux_sym_preproc_if_token2] = ACTIONS(7383), - [aux_sym_preproc_else_token1] = ACTIONS(7383), - [aux_sym_preproc_elif_token1] = ACTIONS(7381), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7383), - [aux_sym_preproc_elifdef_token2] = 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___extension__] = ACTIONS(7381), - [anon_sym___attribute__] = ACTIONS(9244), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_LBRACE] = ACTIONS(9413), - [anon_sym_LBRACK] = ACTIONS(7383), - [anon_sym_const] = ACTIONS(7381), - [anon_sym_constexpr] = ACTIONS(7381), - [anon_sym_volatile] = ACTIONS(7381), - [anon_sym_restrict] = ACTIONS(7381), - [anon_sym___restrict__] = ACTIONS(7381), - [anon_sym__Atomic] = ACTIONS(7381), - [anon_sym__Noreturn] = ACTIONS(7381), - [anon_sym_noreturn] = ACTIONS(7381), - [anon_sym__Nonnull] = ACTIONS(7381), - [anon_sym_mutable] = ACTIONS(7381), - [anon_sym_constinit] = ACTIONS(7381), - [anon_sym_consteval] = ACTIONS(7381), - [anon_sym_alignas] = ACTIONS(7381), - [anon_sym__Alignas] = ACTIONS(7381), - [anon_sym_QMARK] = ACTIONS(7383), - [anon_sym_LT_EQ_GT] = ACTIONS(7383), - [anon_sym_or] = ACTIONS(7381), - [anon_sym_and] = ACTIONS(7381), - [anon_sym_bitor] = ACTIONS(7381), - [anon_sym_xor] = ACTIONS(7381), - [anon_sym_bitand] = ACTIONS(7381), - [anon_sym_not_eq] = ACTIONS(7381), - [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(7381), - [anon_sym_override] = ACTIONS(7381), - [anon_sym_requires] = ACTIONS(7381), + [STATE(3844)] = { + [sym_string_literal] = STATE(3844), + [sym_raw_string_literal] = STATE(3844), + [aux_sym_concatenated_string_repeat1] = STATE(3844), + [sym_identifier] = ACTIONS(9715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8756), + [anon_sym_COMMA] = ACTIONS(8756), + [anon_sym_RPAREN] = ACTIONS(8756), + [anon_sym_LPAREN2] = ACTIONS(8756), + [anon_sym_DASH] = ACTIONS(8758), + [anon_sym_PLUS] = ACTIONS(8758), + [anon_sym_STAR] = ACTIONS(8758), + [anon_sym_SLASH] = ACTIONS(8758), + [anon_sym_PERCENT] = ACTIONS(8758), + [anon_sym_PIPE_PIPE] = ACTIONS(8756), + [anon_sym_AMP_AMP] = ACTIONS(8756), + [anon_sym_PIPE] = ACTIONS(8758), + [anon_sym_CARET] = ACTIONS(8758), + [anon_sym_AMP] = ACTIONS(8758), + [anon_sym_EQ_EQ] = ACTIONS(8756), + [anon_sym_BANG_EQ] = ACTIONS(8756), + [anon_sym_GT] = ACTIONS(8758), + [anon_sym_GT_EQ] = ACTIONS(8756), + [anon_sym_LT_EQ] = ACTIONS(8758), + [anon_sym_LT] = ACTIONS(8758), + [anon_sym_LT_LT] = ACTIONS(8758), + [anon_sym_GT_GT] = ACTIONS(8758), + [anon_sym_LBRACK] = ACTIONS(8756), + [anon_sym_EQ] = ACTIONS(8758), + [anon_sym_QMARK] = ACTIONS(8756), + [anon_sym_STAR_EQ] = ACTIONS(8756), + [anon_sym_SLASH_EQ] = ACTIONS(8756), + [anon_sym_PERCENT_EQ] = ACTIONS(8756), + [anon_sym_PLUS_EQ] = ACTIONS(8756), + [anon_sym_DASH_EQ] = ACTIONS(8756), + [anon_sym_LT_LT_EQ] = ACTIONS(8756), + [anon_sym_GT_GT_EQ] = ACTIONS(8756), + [anon_sym_AMP_EQ] = ACTIONS(8756), + [anon_sym_CARET_EQ] = ACTIONS(8756), + [anon_sym_PIPE_EQ] = ACTIONS(8756), + [anon_sym_and_eq] = ACTIONS(8758), + [anon_sym_or_eq] = ACTIONS(8758), + [anon_sym_xor_eq] = ACTIONS(8758), + [anon_sym_LT_EQ_GT] = ACTIONS(8756), + [anon_sym_or] = ACTIONS(8758), + [anon_sym_and] = ACTIONS(8758), + [anon_sym_bitor] = ACTIONS(8758), + [anon_sym_xor] = ACTIONS(8758), + [anon_sym_bitand] = ACTIONS(8758), + [anon_sym_not_eq] = ACTIONS(8758), + [anon_sym_DASH_DASH] = ACTIONS(8756), + [anon_sym_PLUS_PLUS] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8758), + [anon_sym_DOT_STAR] = ACTIONS(8756), + [anon_sym_DASH_GT] = ACTIONS(8758), + [anon_sym_L_DQUOTE] = ACTIONS(9718), + [anon_sym_u_DQUOTE] = ACTIONS(9718), + [anon_sym_U_DQUOTE] = ACTIONS(9718), + [anon_sym_u8_DQUOTE] = ACTIONS(9718), + [anon_sym_DQUOTE] = ACTIONS(9718), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9721), + [anon_sym_LR_DQUOTE] = ACTIONS(9721), + [anon_sym_uR_DQUOTE] = ACTIONS(9721), + [anon_sym_UR_DQUOTE] = ACTIONS(9721), + [anon_sym_u8R_DQUOTE] = ACTIONS(9721), + [anon_sym_DASH_GT_STAR] = ACTIONS(8756), + [sym_literal_suffix] = ACTIONS(8758), + }, + [STATE(3845)] = { + [sym_identifier] = ACTIONS(9724), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9726), + [anon_sym_COMMA] = ACTIONS(9726), + [anon_sym_RPAREN] = ACTIONS(9726), + [aux_sym_preproc_if_token2] = ACTIONS(9726), + [aux_sym_preproc_else_token1] = ACTIONS(9726), + [aux_sym_preproc_elif_token1] = ACTIONS(9724), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9726), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9726), + [anon_sym_LPAREN2] = ACTIONS(9726), + [anon_sym_DASH] = ACTIONS(9724), + [anon_sym_PLUS] = ACTIONS(9724), + [anon_sym_STAR] = ACTIONS(9724), + [anon_sym_SLASH] = ACTIONS(9724), + [anon_sym_PERCENT] = ACTIONS(9724), + [anon_sym_PIPE_PIPE] = ACTIONS(9726), + [anon_sym_AMP_AMP] = ACTIONS(9726), + [anon_sym_PIPE] = ACTIONS(9724), + [anon_sym_CARET] = ACTIONS(9724), + [anon_sym_AMP] = ACTIONS(9724), + [anon_sym_EQ_EQ] = ACTIONS(9726), + [anon_sym_BANG_EQ] = ACTIONS(9726), + [anon_sym_GT] = ACTIONS(9724), + [anon_sym_GT_EQ] = ACTIONS(9726), + [anon_sym_LT_EQ] = ACTIONS(9724), + [anon_sym_LT] = ACTIONS(9724), + [anon_sym_LT_LT] = ACTIONS(9724), + [anon_sym_GT_GT] = ACTIONS(9724), + [anon_sym_SEMI] = ACTIONS(9726), + [anon_sym___attribute__] = ACTIONS(9724), + [anon_sym___attribute] = ACTIONS(9724), + [anon_sym_COLON] = ACTIONS(9724), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9726), + [anon_sym_RBRACE] = ACTIONS(9726), + [anon_sym_LBRACK] = ACTIONS(9726), + [anon_sym_EQ] = ACTIONS(9724), + [anon_sym_QMARK] = ACTIONS(9726), + [anon_sym_STAR_EQ] = ACTIONS(9726), + [anon_sym_SLASH_EQ] = ACTIONS(9726), + [anon_sym_PERCENT_EQ] = ACTIONS(9726), + [anon_sym_PLUS_EQ] = ACTIONS(9726), + [anon_sym_DASH_EQ] = ACTIONS(9726), + [anon_sym_LT_LT_EQ] = ACTIONS(9726), + [anon_sym_GT_GT_EQ] = ACTIONS(9726), + [anon_sym_AMP_EQ] = ACTIONS(9726), + [anon_sym_CARET_EQ] = ACTIONS(9726), + [anon_sym_PIPE_EQ] = ACTIONS(9726), + [anon_sym_and_eq] = ACTIONS(9724), + [anon_sym_or_eq] = ACTIONS(9724), + [anon_sym_xor_eq] = ACTIONS(9724), + [anon_sym_LT_EQ_GT] = ACTIONS(9726), + [anon_sym_or] = ACTIONS(9724), + [anon_sym_and] = ACTIONS(9724), + [anon_sym_bitor] = ACTIONS(9724), + [anon_sym_xor] = ACTIONS(9724), + [anon_sym_bitand] = ACTIONS(9724), + [anon_sym_not_eq] = ACTIONS(9724), + [anon_sym_DASH_DASH] = ACTIONS(9726), + [anon_sym_PLUS_PLUS] = ACTIONS(9726), + [anon_sym_DOT] = ACTIONS(9724), + [anon_sym_DOT_STAR] = ACTIONS(9726), + [anon_sym_DASH_GT] = ACTIONS(9726), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9724), + [anon_sym_override] = ACTIONS(9724), + [anon_sym_requires] = ACTIONS(9724), + [anon_sym_COLON_RBRACK] = ACTIONS(9726), + }, + [STATE(3846)] = { + [sym_identifier] = ACTIONS(9728), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9730), + [anon_sym_COMMA] = ACTIONS(9730), + [anon_sym_RPAREN] = ACTIONS(9730), + [aux_sym_preproc_if_token2] = ACTIONS(9730), + [aux_sym_preproc_else_token1] = ACTIONS(9730), + [aux_sym_preproc_elif_token1] = ACTIONS(9728), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9730), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9730), + [anon_sym_LPAREN2] = ACTIONS(9730), + [anon_sym_DASH] = ACTIONS(9728), + [anon_sym_PLUS] = ACTIONS(9728), + [anon_sym_STAR] = ACTIONS(9728), + [anon_sym_SLASH] = ACTIONS(9728), + [anon_sym_PERCENT] = ACTIONS(9728), + [anon_sym_PIPE_PIPE] = ACTIONS(9730), + [anon_sym_AMP_AMP] = ACTIONS(9730), + [anon_sym_PIPE] = ACTIONS(9728), + [anon_sym_CARET] = ACTIONS(9728), + [anon_sym_AMP] = ACTIONS(9728), + [anon_sym_EQ_EQ] = ACTIONS(9730), + [anon_sym_BANG_EQ] = ACTIONS(9730), + [anon_sym_GT] = ACTIONS(9728), + [anon_sym_GT_EQ] = ACTIONS(9730), + [anon_sym_LT_EQ] = ACTIONS(9728), + [anon_sym_LT] = ACTIONS(9728), + [anon_sym_LT_LT] = ACTIONS(9728), + [anon_sym_GT_GT] = ACTIONS(9728), + [anon_sym_SEMI] = ACTIONS(9730), + [anon_sym___attribute__] = ACTIONS(9728), + [anon_sym___attribute] = ACTIONS(9728), + [anon_sym_COLON] = ACTIONS(9728), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9730), + [anon_sym_RBRACE] = ACTIONS(9730), + [anon_sym_LBRACK] = ACTIONS(9730), + [anon_sym_EQ] = ACTIONS(9728), + [anon_sym_QMARK] = ACTIONS(9730), + [anon_sym_STAR_EQ] = ACTIONS(9730), + [anon_sym_SLASH_EQ] = ACTIONS(9730), + [anon_sym_PERCENT_EQ] = ACTIONS(9730), + [anon_sym_PLUS_EQ] = ACTIONS(9730), + [anon_sym_DASH_EQ] = ACTIONS(9730), + [anon_sym_LT_LT_EQ] = ACTIONS(9730), + [anon_sym_GT_GT_EQ] = ACTIONS(9730), + [anon_sym_AMP_EQ] = ACTIONS(9730), + [anon_sym_CARET_EQ] = ACTIONS(9730), + [anon_sym_PIPE_EQ] = ACTIONS(9730), + [anon_sym_and_eq] = ACTIONS(9728), + [anon_sym_or_eq] = ACTIONS(9728), + [anon_sym_xor_eq] = ACTIONS(9728), + [anon_sym_LT_EQ_GT] = ACTIONS(9730), + [anon_sym_or] = ACTIONS(9728), + [anon_sym_and] = ACTIONS(9728), + [anon_sym_bitor] = ACTIONS(9728), + [anon_sym_xor] = ACTIONS(9728), + [anon_sym_bitand] = ACTIONS(9728), + [anon_sym_not_eq] = ACTIONS(9728), + [anon_sym_DASH_DASH] = ACTIONS(9730), + [anon_sym_PLUS_PLUS] = ACTIONS(9730), + [anon_sym_DOT] = ACTIONS(9728), + [anon_sym_DOT_STAR] = ACTIONS(9730), + [anon_sym_DASH_GT] = ACTIONS(9730), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9728), + [anon_sym_override] = ACTIONS(9728), + [anon_sym_requires] = ACTIONS(9728), + [anon_sym_COLON_RBRACK] = ACTIONS(9730), + }, + [STATE(3847)] = { + [sym_identifier] = ACTIONS(7806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7808), + [anon_sym_COMMA] = ACTIONS(7808), + [anon_sym_RPAREN] = ACTIONS(7808), + [anon_sym_LPAREN2] = ACTIONS(7808), + [anon_sym_DASH] = ACTIONS(7806), + [anon_sym_PLUS] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7808), + [anon_sym_SLASH] = ACTIONS(7806), + [anon_sym_PERCENT] = ACTIONS(7808), + [anon_sym_PIPE_PIPE] = ACTIONS(7808), + [anon_sym_AMP_AMP] = ACTIONS(7808), + [anon_sym_PIPE] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7808), + [anon_sym_AMP] = ACTIONS(7806), + [anon_sym_EQ_EQ] = ACTIONS(7808), + [anon_sym_BANG_EQ] = ACTIONS(7808), + [anon_sym_GT] = ACTIONS(7806), + [anon_sym_GT_EQ] = ACTIONS(7808), + [anon_sym_LT_EQ] = ACTIONS(7806), + [anon_sym_LT] = ACTIONS(7806), + [anon_sym_LT_LT] = ACTIONS(7808), + [anon_sym_GT_GT] = ACTIONS(7808), + [anon_sym_SEMI] = ACTIONS(7808), + [anon_sym___extension__] = ACTIONS(7806), + [anon_sym___attribute__] = ACTIONS(7806), + [anon_sym___attribute] = ACTIONS(7806), + [anon_sym_COLON] = ACTIONS(7806), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7808), + [anon_sym___based] = ACTIONS(7806), + [anon_sym_LBRACE] = ACTIONS(7808), + [anon_sym_RBRACE] = ACTIONS(7808), + [anon_sym_signed] = ACTIONS(7806), + [anon_sym_unsigned] = ACTIONS(7806), + [anon_sym_long] = ACTIONS(7806), + [anon_sym_short] = ACTIONS(7806), + [anon_sym_LBRACK] = ACTIONS(7808), + [anon_sym_const] = ACTIONS(7806), + [anon_sym_constexpr] = ACTIONS(7806), + [anon_sym_volatile] = ACTIONS(7806), + [anon_sym_restrict] = ACTIONS(7806), + [anon_sym___restrict__] = ACTIONS(7806), + [anon_sym__Atomic] = ACTIONS(7806), + [anon_sym__Noreturn] = ACTIONS(7806), + [anon_sym_noreturn] = ACTIONS(7806), + [anon_sym__Nonnull] = ACTIONS(7806), + [anon_sym_mutable] = ACTIONS(7806), + [anon_sym_constinit] = ACTIONS(7806), + [anon_sym_consteval] = ACTIONS(7806), + [anon_sym_alignas] = ACTIONS(7806), + [anon_sym__Alignas] = ACTIONS(7806), + [sym_primitive_type] = ACTIONS(7806), + [anon_sym_QMARK] = ACTIONS(7808), + [anon_sym_LT_EQ_GT] = ACTIONS(7808), + [anon_sym_or] = ACTIONS(7806), + [anon_sym_and] = ACTIONS(7806), + [anon_sym_bitor] = ACTIONS(7806), + [anon_sym_xor] = ACTIONS(7806), + [anon_sym_bitand] = ACTIONS(7806), + [anon_sym_not_eq] = ACTIONS(7806), + [anon_sym_DASH_DASH] = ACTIONS(7808), + [anon_sym_PLUS_PLUS] = ACTIONS(7808), + [anon_sym_DOT] = ACTIONS(7806), + [anon_sym_DOT_STAR] = ACTIONS(7808), + [anon_sym_DASH_GT] = ACTIONS(7808), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7808), + }, + [STATE(3848)] = { + [sym_identifier] = ACTIONS(7668), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_TILDE] = ACTIONS(7670), + [anon_sym_STAR] = ACTIONS(7670), + [anon_sym_PIPE_PIPE] = ACTIONS(7670), + [anon_sym_AMP_AMP] = ACTIONS(7670), + [anon_sym_AMP] = ACTIONS(7668), + [anon_sym___extension__] = ACTIONS(7668), + [anon_sym_virtual] = ACTIONS(7668), + [anon_sym_extern] = ACTIONS(7668), + [anon_sym___attribute__] = ACTIONS(7668), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_using] = ACTIONS(7668), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7670), + [anon_sym___declspec] = ACTIONS(7668), + [anon_sym___based] = ACTIONS(7668), + [anon_sym___cdecl] = ACTIONS(7668), + [anon_sym___clrcall] = ACTIONS(7668), + [anon_sym___stdcall] = ACTIONS(7668), + [anon_sym___fastcall] = ACTIONS(7668), + [anon_sym___thiscall] = ACTIONS(7668), + [anon_sym___vectorcall] = ACTIONS(7668), + [anon_sym_signed] = ACTIONS(7668), + [anon_sym_unsigned] = ACTIONS(7668), + [anon_sym_long] = ACTIONS(7668), + [anon_sym_short] = ACTIONS(7668), + [anon_sym_LBRACK] = ACTIONS(7668), + [anon_sym_static] = ACTIONS(7668), + [anon_sym_register] = ACTIONS(7668), + [anon_sym_inline] = ACTIONS(7668), + [anon_sym___inline] = ACTIONS(7668), + [anon_sym___inline__] = ACTIONS(7668), + [anon_sym___forceinline] = ACTIONS(7668), + [anon_sym_thread_local] = ACTIONS(7668), + [anon_sym___thread] = 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), + [sym_primitive_type] = ACTIONS(7668), + [anon_sym_enum] = ACTIONS(7668), + [anon_sym_class] = ACTIONS(7668), + [anon_sym_struct] = ACTIONS(7668), + [anon_sym_union] = ACTIONS(7668), + [anon_sym_or] = ACTIONS(7668), + [anon_sym_and] = ACTIONS(7668), + [anon_sym_typename] = ACTIONS(7668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7668), + [anon_sym_decltype] = ACTIONS(7668), + [anon_sym_explicit] = ACTIONS(7668), + [anon_sym_template] = ACTIONS(7668), + [anon_sym_operator] = ACTIONS(7668), + [anon_sym_friend] = ACTIONS(7668), + [anon_sym_concept] = ACTIONS(7668), + [anon_sym_LBRACK_COLON] = ACTIONS(7670), + }, + [STATE(3849)] = { + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7621), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7621), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7621), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7621), + [anon_sym_GT_GT] = ACTIONS(7621), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(7621), + [anon_sym___attribute] = ACTIONS(7621), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7623), + [anon_sym_EQ] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_STAR_EQ] = ACTIONS(7623), + [anon_sym_SLASH_EQ] = ACTIONS(7623), + [anon_sym_PERCENT_EQ] = ACTIONS(7623), + [anon_sym_PLUS_EQ] = ACTIONS(7623), + [anon_sym_DASH_EQ] = ACTIONS(7623), + [anon_sym_LT_LT_EQ] = ACTIONS(7623), + [anon_sym_GT_GT_EQ] = ACTIONS(7623), + [anon_sym_AMP_EQ] = ACTIONS(7623), + [anon_sym_CARET_EQ] = ACTIONS(7623), + [anon_sym_PIPE_EQ] = ACTIONS(7623), + [anon_sym_and_eq] = ACTIONS(7621), + [anon_sym_or_eq] = ACTIONS(7621), + [anon_sym_xor_eq] = ACTIONS(7621), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(7623), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7621), + [anon_sym_override] = ACTIONS(7621), + [anon_sym_requires] = ACTIONS(7621), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), + }, + [STATE(3850)] = { + [sym_identifier] = ACTIONS(9336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9338), + [anon_sym_COMMA] = ACTIONS(9338), + [anon_sym_RPAREN] = ACTIONS(9338), + [aux_sym_preproc_if_token2] = ACTIONS(9338), + [aux_sym_preproc_else_token1] = ACTIONS(9338), + [aux_sym_preproc_elif_token1] = ACTIONS(9336), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9338), + [anon_sym_LPAREN2] = ACTIONS(9338), + [anon_sym_DASH] = ACTIONS(9336), + [anon_sym_PLUS] = ACTIONS(9336), + [anon_sym_STAR] = ACTIONS(9336), + [anon_sym_SLASH] = ACTIONS(9336), + [anon_sym_PERCENT] = ACTIONS(9336), + [anon_sym_PIPE_PIPE] = ACTIONS(9338), + [anon_sym_AMP_AMP] = ACTIONS(9338), + [anon_sym_PIPE] = ACTIONS(9336), + [anon_sym_CARET] = ACTIONS(9336), + [anon_sym_AMP] = ACTIONS(9336), + [anon_sym_EQ_EQ] = ACTIONS(9338), + [anon_sym_BANG_EQ] = ACTIONS(9338), + [anon_sym_GT] = ACTIONS(9336), + [anon_sym_GT_EQ] = ACTIONS(9338), + [anon_sym_LT_EQ] = ACTIONS(9336), + [anon_sym_LT] = ACTIONS(9336), + [anon_sym_LT_LT] = ACTIONS(9336), + [anon_sym_GT_GT] = ACTIONS(9336), + [anon_sym_SEMI] = ACTIONS(9338), + [anon_sym___attribute__] = ACTIONS(9336), + [anon_sym___attribute] = ACTIONS(9336), + [anon_sym_COLON] = ACTIONS(9336), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9338), + [anon_sym_RBRACE] = ACTIONS(9338), + [anon_sym_LBRACK] = ACTIONS(9338), + [anon_sym_EQ] = ACTIONS(9336), + [anon_sym_QMARK] = ACTIONS(9338), + [anon_sym_STAR_EQ] = ACTIONS(9338), + [anon_sym_SLASH_EQ] = ACTIONS(9338), + [anon_sym_PERCENT_EQ] = ACTIONS(9338), + [anon_sym_PLUS_EQ] = ACTIONS(9338), + [anon_sym_DASH_EQ] = ACTIONS(9338), + [anon_sym_LT_LT_EQ] = ACTIONS(9338), + [anon_sym_GT_GT_EQ] = ACTIONS(9338), + [anon_sym_AMP_EQ] = ACTIONS(9338), + [anon_sym_CARET_EQ] = ACTIONS(9338), + [anon_sym_PIPE_EQ] = ACTIONS(9338), + [anon_sym_and_eq] = ACTIONS(9336), + [anon_sym_or_eq] = ACTIONS(9336), + [anon_sym_xor_eq] = ACTIONS(9336), + [anon_sym_LT_EQ_GT] = ACTIONS(9338), + [anon_sym_or] = ACTIONS(9336), + [anon_sym_and] = ACTIONS(9336), + [anon_sym_bitor] = ACTIONS(9336), + [anon_sym_xor] = ACTIONS(9336), + [anon_sym_bitand] = ACTIONS(9336), + [anon_sym_not_eq] = ACTIONS(9336), + [anon_sym_DASH_DASH] = ACTIONS(9338), + [anon_sym_PLUS_PLUS] = ACTIONS(9338), + [anon_sym_DOT] = ACTIONS(9336), + [anon_sym_DOT_STAR] = ACTIONS(9338), + [anon_sym_DASH_GT] = ACTIONS(9338), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9336), + [anon_sym_override] = ACTIONS(9336), + [anon_sym_requires] = ACTIONS(9336), + [anon_sym_COLON_RBRACK] = ACTIONS(9338), + }, + [STATE(3851)] = { + [sym_string_literal] = STATE(6386), + [sym_template_argument_list] = STATE(7644), + [sym_raw_string_literal] = STATE(6386), + [aux_sym_structured_binding_declarator_repeat1] = STATE(11193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(9732), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9333), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_RBRACK] = ACTIONS(9734), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(7221), + [anon_sym_SLASH_EQ] = ACTIONS(7221), + [anon_sym_PERCENT_EQ] = ACTIONS(7221), + [anon_sym_PLUS_EQ] = ACTIONS(7221), + [anon_sym_DASH_EQ] = ACTIONS(7221), + [anon_sym_LT_LT_EQ] = ACTIONS(7221), + [anon_sym_GT_GT_EQ] = ACTIONS(7221), + [anon_sym_AMP_EQ] = ACTIONS(7221), + [anon_sym_CARET_EQ] = ACTIONS(7221), + [anon_sym_PIPE_EQ] = ACTIONS(7221), + [anon_sym_and_eq] = ACTIONS(7221), + [anon_sym_or_eq] = ACTIONS(7221), + [anon_sym_xor_eq] = ACTIONS(7221), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7223), + [anon_sym_u_DQUOTE] = ACTIONS(7223), + [anon_sym_U_DQUOTE] = ACTIONS(7223), + [anon_sym_u8_DQUOTE] = ACTIONS(7223), + [anon_sym_DQUOTE] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7229), + [anon_sym_LR_DQUOTE] = ACTIONS(7229), + [anon_sym_uR_DQUOTE] = ACTIONS(7229), + [anon_sym_UR_DQUOTE] = ACTIONS(7229), + [anon_sym_u8R_DQUOTE] = ACTIONS(7229), + }, + [STATE(3852)] = { + [sym_identifier] = ACTIONS(9378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9380), + [anon_sym_COMMA] = ACTIONS(9380), + [anon_sym_RPAREN] = ACTIONS(9380), + [aux_sym_preproc_if_token2] = ACTIONS(9380), + [aux_sym_preproc_else_token1] = ACTIONS(9380), + [aux_sym_preproc_elif_token1] = ACTIONS(9378), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9380), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9380), + [anon_sym_LPAREN2] = ACTIONS(9380), + [anon_sym_DASH] = ACTIONS(9378), + [anon_sym_PLUS] = ACTIONS(9378), + [anon_sym_STAR] = ACTIONS(9378), + [anon_sym_SLASH] = ACTIONS(9378), + [anon_sym_PERCENT] = ACTIONS(9378), + [anon_sym_PIPE_PIPE] = ACTIONS(9380), + [anon_sym_AMP_AMP] = ACTIONS(9380), + [anon_sym_PIPE] = ACTIONS(9378), + [anon_sym_CARET] = ACTIONS(9378), + [anon_sym_AMP] = ACTIONS(9378), + [anon_sym_EQ_EQ] = ACTIONS(9380), + [anon_sym_BANG_EQ] = ACTIONS(9380), + [anon_sym_GT] = ACTIONS(9378), + [anon_sym_GT_EQ] = ACTIONS(9380), + [anon_sym_LT_EQ] = ACTIONS(9378), + [anon_sym_LT] = ACTIONS(9378), + [anon_sym_LT_LT] = ACTIONS(9378), + [anon_sym_GT_GT] = ACTIONS(9378), + [anon_sym_SEMI] = ACTIONS(9380), + [anon_sym___attribute__] = ACTIONS(9378), + [anon_sym___attribute] = ACTIONS(9378), + [anon_sym_COLON] = ACTIONS(9378), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9380), + [anon_sym_RBRACE] = ACTIONS(9380), + [anon_sym_LBRACK] = ACTIONS(9380), + [anon_sym_EQ] = ACTIONS(9378), + [anon_sym_QMARK] = ACTIONS(9380), + [anon_sym_STAR_EQ] = ACTIONS(9380), + [anon_sym_SLASH_EQ] = ACTIONS(9380), + [anon_sym_PERCENT_EQ] = ACTIONS(9380), + [anon_sym_PLUS_EQ] = ACTIONS(9380), + [anon_sym_DASH_EQ] = ACTIONS(9380), + [anon_sym_LT_LT_EQ] = ACTIONS(9380), + [anon_sym_GT_GT_EQ] = ACTIONS(9380), + [anon_sym_AMP_EQ] = ACTIONS(9380), + [anon_sym_CARET_EQ] = ACTIONS(9380), + [anon_sym_PIPE_EQ] = ACTIONS(9380), + [anon_sym_and_eq] = ACTIONS(9378), + [anon_sym_or_eq] = ACTIONS(9378), + [anon_sym_xor_eq] = ACTIONS(9378), + [anon_sym_LT_EQ_GT] = ACTIONS(9380), + [anon_sym_or] = ACTIONS(9378), + [anon_sym_and] = ACTIONS(9378), + [anon_sym_bitor] = ACTIONS(9378), + [anon_sym_xor] = ACTIONS(9378), + [anon_sym_bitand] = ACTIONS(9378), + [anon_sym_not_eq] = ACTIONS(9378), + [anon_sym_DASH_DASH] = ACTIONS(9380), + [anon_sym_PLUS_PLUS] = ACTIONS(9380), + [anon_sym_DOT] = ACTIONS(9378), + [anon_sym_DOT_STAR] = ACTIONS(9380), + [anon_sym_DASH_GT] = ACTIONS(9380), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9378), + [anon_sym_override] = ACTIONS(9378), + [anon_sym_requires] = ACTIONS(9378), + [anon_sym_COLON_RBRACK] = ACTIONS(9380), + }, + [STATE(3853)] = { + [sym_identifier] = ACTIONS(9737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9739), + [anon_sym_COMMA] = ACTIONS(9739), + [anon_sym_RPAREN] = ACTIONS(9739), + [aux_sym_preproc_if_token2] = ACTIONS(9739), + [aux_sym_preproc_else_token1] = ACTIONS(9739), + [aux_sym_preproc_elif_token1] = ACTIONS(9737), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9739), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9739), + [anon_sym_LPAREN2] = ACTIONS(9739), + [anon_sym_DASH] = ACTIONS(9737), + [anon_sym_PLUS] = ACTIONS(9737), + [anon_sym_STAR] = ACTIONS(9737), + [anon_sym_SLASH] = ACTIONS(9737), + [anon_sym_PERCENT] = ACTIONS(9737), + [anon_sym_PIPE_PIPE] = ACTIONS(9741), + [anon_sym_AMP_AMP] = ACTIONS(9743), + [anon_sym_PIPE] = ACTIONS(9737), + [anon_sym_CARET] = ACTIONS(9737), + [anon_sym_AMP] = ACTIONS(9737), + [anon_sym_EQ_EQ] = ACTIONS(9739), + [anon_sym_BANG_EQ] = ACTIONS(9739), + [anon_sym_GT] = ACTIONS(9737), + [anon_sym_GT_EQ] = ACTIONS(9739), + [anon_sym_LT_EQ] = ACTIONS(9737), + [anon_sym_LT] = ACTIONS(9737), + [anon_sym_LT_LT] = ACTIONS(9737), + [anon_sym_GT_GT] = ACTIONS(9737), + [anon_sym_SEMI] = ACTIONS(9739), + [anon_sym___attribute__] = ACTIONS(9737), + [anon_sym___attribute] = ACTIONS(9737), + [anon_sym_COLON] = ACTIONS(9737), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9739), + [anon_sym_RBRACE] = ACTIONS(9739), + [anon_sym_LBRACK] = ACTIONS(9739), + [anon_sym_EQ] = ACTIONS(9737), + [anon_sym_QMARK] = ACTIONS(9739), + [anon_sym_STAR_EQ] = ACTIONS(9739), + [anon_sym_SLASH_EQ] = ACTIONS(9739), + [anon_sym_PERCENT_EQ] = ACTIONS(9739), + [anon_sym_PLUS_EQ] = ACTIONS(9739), + [anon_sym_DASH_EQ] = ACTIONS(9739), + [anon_sym_LT_LT_EQ] = ACTIONS(9739), + [anon_sym_GT_GT_EQ] = ACTIONS(9739), + [anon_sym_AMP_EQ] = ACTIONS(9739), + [anon_sym_CARET_EQ] = ACTIONS(9739), + [anon_sym_PIPE_EQ] = ACTIONS(9739), + [anon_sym_and_eq] = ACTIONS(9737), + [anon_sym_or_eq] = ACTIONS(9737), + [anon_sym_xor_eq] = ACTIONS(9737), + [anon_sym_LT_EQ_GT] = ACTIONS(9739), + [anon_sym_or] = ACTIONS(9745), + [anon_sym_and] = ACTIONS(9747), + [anon_sym_bitor] = ACTIONS(9737), + [anon_sym_xor] = ACTIONS(9737), + [anon_sym_bitand] = ACTIONS(9737), + [anon_sym_not_eq] = ACTIONS(9737), + [anon_sym_DASH_DASH] = ACTIONS(9739), + [anon_sym_PLUS_PLUS] = ACTIONS(9739), + [anon_sym_DOT] = ACTIONS(9737), + [anon_sym_DOT_STAR] = ACTIONS(9739), + [anon_sym_DASH_GT] = ACTIONS(9739), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9737), + [anon_sym_override] = ACTIONS(9737), + [anon_sym_requires] = ACTIONS(9737), + [anon_sym_COLON_RBRACK] = ACTIONS(9739), + }, + [STATE(3854)] = { + [sym_identifier] = ACTIONS(7850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7852), + [anon_sym_COMMA] = ACTIONS(7852), + [anon_sym_RPAREN] = ACTIONS(7852), + [anon_sym_LPAREN2] = ACTIONS(7852), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_PLUS] = ACTIONS(7850), + [anon_sym_STAR] = ACTIONS(7852), + [anon_sym_SLASH] = ACTIONS(7850), + [anon_sym_PERCENT] = ACTIONS(7852), + [anon_sym_PIPE_PIPE] = ACTIONS(7852), + [anon_sym_AMP_AMP] = ACTIONS(7852), + [anon_sym_PIPE] = ACTIONS(7850), + [anon_sym_CARET] = ACTIONS(7852), + [anon_sym_AMP] = ACTIONS(7850), + [anon_sym_EQ_EQ] = ACTIONS(7852), + [anon_sym_BANG_EQ] = ACTIONS(7852), + [anon_sym_GT] = ACTIONS(7850), + [anon_sym_GT_EQ] = ACTIONS(7852), + [anon_sym_LT_EQ] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(7850), + [anon_sym_LT_LT] = ACTIONS(7852), + [anon_sym_GT_GT] = ACTIONS(7852), + [anon_sym_SEMI] = ACTIONS(7852), + [anon_sym___extension__] = ACTIONS(7850), + [anon_sym___attribute__] = ACTIONS(7850), + [anon_sym___attribute] = ACTIONS(7850), + [anon_sym_COLON] = ACTIONS(7850), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7852), + [anon_sym___based] = ACTIONS(7850), + [anon_sym_LBRACE] = ACTIONS(7852), + [anon_sym_RBRACE] = ACTIONS(7852), + [anon_sym_signed] = ACTIONS(7850), + [anon_sym_unsigned] = ACTIONS(7850), + [anon_sym_long] = ACTIONS(7850), + [anon_sym_short] = ACTIONS(7850), + [anon_sym_LBRACK] = ACTIONS(7852), + [anon_sym_const] = ACTIONS(7850), + [anon_sym_constexpr] = ACTIONS(7850), + [anon_sym_volatile] = ACTIONS(7850), + [anon_sym_restrict] = ACTIONS(7850), + [anon_sym___restrict__] = ACTIONS(7850), + [anon_sym__Atomic] = ACTIONS(7850), + [anon_sym__Noreturn] = ACTIONS(7850), + [anon_sym_noreturn] = ACTIONS(7850), + [anon_sym__Nonnull] = ACTIONS(7850), + [anon_sym_mutable] = ACTIONS(7850), + [anon_sym_constinit] = ACTIONS(7850), + [anon_sym_consteval] = ACTIONS(7850), + [anon_sym_alignas] = ACTIONS(7850), + [anon_sym__Alignas] = ACTIONS(7850), + [sym_primitive_type] = ACTIONS(7850), + [anon_sym_QMARK] = ACTIONS(7852), + [anon_sym_LT_EQ_GT] = ACTIONS(7852), + [anon_sym_or] = ACTIONS(7850), + [anon_sym_and] = ACTIONS(7850), + [anon_sym_bitor] = ACTIONS(7850), + [anon_sym_xor] = ACTIONS(7850), + [anon_sym_bitand] = ACTIONS(7850), + [anon_sym_not_eq] = ACTIONS(7850), + [anon_sym_DASH_DASH] = ACTIONS(7852), + [anon_sym_PLUS_PLUS] = ACTIONS(7852), + [anon_sym_DOT] = ACTIONS(7850), + [anon_sym_DOT_STAR] = ACTIONS(7852), + [anon_sym_DASH_GT] = ACTIONS(7852), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7852), + }, + [STATE(3855)] = { + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON] = ACTIONS(5728), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5699), + [anon_sym_or_eq] = ACTIONS(5699), + [anon_sym_xor_eq] = ACTIONS(5699), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + }, + [STATE(3856)] = { + [sym_identifier] = ACTIONS(9279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9281), + [anon_sym_COMMA] = ACTIONS(9281), + [anon_sym_RPAREN] = 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(9281), + [anon_sym_DASH] = ACTIONS(9279), + [anon_sym_PLUS] = ACTIONS(9279), + [anon_sym_STAR] = ACTIONS(9279), + [anon_sym_SLASH] = ACTIONS(9279), + [anon_sym_PERCENT] = ACTIONS(9279), + [anon_sym_PIPE_PIPE] = ACTIONS(9281), + [anon_sym_AMP_AMP] = ACTIONS(9281), + [anon_sym_PIPE] = ACTIONS(9279), + [anon_sym_CARET] = ACTIONS(9279), + [anon_sym_AMP] = ACTIONS(9279), + [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___attribute__] = ACTIONS(9279), + [anon_sym___attribute] = ACTIONS(9279), + [anon_sym_COLON] = ACTIONS(9279), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9281), + [anon_sym_RBRACE] = ACTIONS(9281), + [anon_sym_LBRACK] = ACTIONS(9281), + [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), + [anon_sym_COLON_RBRACK] = ACTIONS(9281), + }, + [STATE(3857)] = { + [sym_template_argument_list] = STATE(4042), + [sym_identifier] = ACTIONS(6783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6776), + [anon_sym_COMMA] = ACTIONS(6776), + [anon_sym_RPAREN] = ACTIONS(6776), + [aux_sym_preproc_if_token2] = ACTIONS(6776), + [aux_sym_preproc_else_token1] = ACTIONS(6776), + [aux_sym_preproc_elif_token1] = ACTIONS(6783), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6776), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6776), + [anon_sym_LPAREN2] = ACTIONS(6776), + [anon_sym_DASH] = ACTIONS(6783), + [anon_sym_PLUS] = ACTIONS(6783), + [anon_sym_STAR] = ACTIONS(6783), + [anon_sym_SLASH] = ACTIONS(6783), + [anon_sym_PERCENT] = ACTIONS(6783), + [anon_sym_PIPE_PIPE] = ACTIONS(6776), + [anon_sym_AMP_AMP] = ACTIONS(6776), + [anon_sym_PIPE] = ACTIONS(6783), + [anon_sym_CARET] = ACTIONS(6783), + [anon_sym_AMP] = ACTIONS(6783), + [anon_sym_EQ_EQ] = ACTIONS(6776), + [anon_sym_BANG_EQ] = ACTIONS(6776), + [anon_sym_GT] = ACTIONS(6783), + [anon_sym_GT_EQ] = ACTIONS(6776), + [anon_sym_LT_EQ] = ACTIONS(6783), + [anon_sym_LT] = ACTIONS(9749), + [anon_sym_LT_LT] = ACTIONS(6783), + [anon_sym_GT_GT] = ACTIONS(6783), + [anon_sym_SEMI] = ACTIONS(6776), + [anon_sym___attribute__] = ACTIONS(6783), + [anon_sym___attribute] = ACTIONS(6783), + [anon_sym_COLON] = ACTIONS(6783), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6776), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_RBRACE] = ACTIONS(6776), + [anon_sym_LBRACK] = ACTIONS(6776), + [anon_sym_EQ] = ACTIONS(6783), + [anon_sym_QMARK] = ACTIONS(6776), + [anon_sym_STAR_EQ] = ACTIONS(6776), + [anon_sym_SLASH_EQ] = ACTIONS(6776), + [anon_sym_PERCENT_EQ] = ACTIONS(6776), + [anon_sym_PLUS_EQ] = ACTIONS(6776), + [anon_sym_DASH_EQ] = ACTIONS(6776), + [anon_sym_LT_LT_EQ] = ACTIONS(6776), + [anon_sym_GT_GT_EQ] = ACTIONS(6776), + [anon_sym_AMP_EQ] = ACTIONS(6776), + [anon_sym_CARET_EQ] = ACTIONS(6776), + [anon_sym_PIPE_EQ] = ACTIONS(6776), + [anon_sym_and_eq] = ACTIONS(6783), + [anon_sym_or_eq] = ACTIONS(6783), + [anon_sym_xor_eq] = ACTIONS(6783), + [anon_sym_LT_EQ_GT] = ACTIONS(6776), + [anon_sym_or] = ACTIONS(6783), + [anon_sym_and] = ACTIONS(6783), + [anon_sym_bitor] = ACTIONS(6783), + [anon_sym_xor] = ACTIONS(6783), + [anon_sym_bitand] = ACTIONS(6783), + [anon_sym_not_eq] = ACTIONS(6783), + [anon_sym_DASH_DASH] = ACTIONS(6776), + [anon_sym_PLUS_PLUS] = ACTIONS(6776), + [anon_sym_DOT] = ACTIONS(6783), + [anon_sym_DOT_STAR] = ACTIONS(6776), + [anon_sym_DASH_GT] = ACTIONS(6776), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6776), + }, + [STATE(3858)] = { + [sym_attribute_declaration] = STATE(4024), + [sym_parameter_list] = STATE(3487), + [aux_sym_attributed_declarator_repeat1] = STATE(4024), + [sym_identifier] = ACTIONS(9752), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9754), + [anon_sym_COMMA] = ACTIONS(9754), + [anon_sym_RPAREN] = ACTIONS(9754), + [aux_sym_preproc_if_token2] = ACTIONS(9754), + [aux_sym_preproc_else_token1] = ACTIONS(9754), + [aux_sym_preproc_elif_token1] = ACTIONS(9752), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9754), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9754), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9752), + [anon_sym_PLUS] = ACTIONS(9752), + [anon_sym_STAR] = ACTIONS(9752), + [anon_sym_SLASH] = ACTIONS(9752), + [anon_sym_PERCENT] = ACTIONS(9752), + [anon_sym_PIPE_PIPE] = ACTIONS(9754), + [anon_sym_AMP_AMP] = ACTIONS(9754), + [anon_sym_PIPE] = ACTIONS(9752), + [anon_sym_CARET] = ACTIONS(9752), + [anon_sym_AMP] = ACTIONS(9752), + [anon_sym_EQ_EQ] = ACTIONS(9754), + [anon_sym_BANG_EQ] = ACTIONS(9754), + [anon_sym_GT] = ACTIONS(9752), + [anon_sym_GT_EQ] = ACTIONS(9754), + [anon_sym_LT_EQ] = ACTIONS(9752), + [anon_sym_LT] = ACTIONS(9752), + [anon_sym_LT_LT] = ACTIONS(9752), + [anon_sym_GT_GT] = ACTIONS(9752), + [anon_sym_SEMI] = ACTIONS(9754), + [anon_sym___attribute__] = ACTIONS(9752), + [anon_sym___attribute] = ACTIONS(9752), + [anon_sym_COLON] = ACTIONS(9752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACE] = ACTIONS(9754), + [anon_sym_LBRACK] = ACTIONS(9758), + [anon_sym_EQ] = ACTIONS(9752), + [anon_sym_QMARK] = ACTIONS(9754), + [anon_sym_STAR_EQ] = ACTIONS(9754), + [anon_sym_SLASH_EQ] = ACTIONS(9754), + [anon_sym_PERCENT_EQ] = ACTIONS(9754), + [anon_sym_PLUS_EQ] = ACTIONS(9754), + [anon_sym_DASH_EQ] = ACTIONS(9754), + [anon_sym_LT_LT_EQ] = ACTIONS(9754), + [anon_sym_GT_GT_EQ] = ACTIONS(9754), + [anon_sym_AMP_EQ] = ACTIONS(9754), + [anon_sym_CARET_EQ] = ACTIONS(9754), + [anon_sym_PIPE_EQ] = ACTIONS(9754), + [anon_sym_and_eq] = ACTIONS(9752), + [anon_sym_or_eq] = ACTIONS(9752), + [anon_sym_xor_eq] = ACTIONS(9752), + [anon_sym_LT_EQ_GT] = ACTIONS(9754), + [anon_sym_or] = ACTIONS(9752), + [anon_sym_and] = ACTIONS(9752), + [anon_sym_bitor] = ACTIONS(9752), + [anon_sym_xor] = ACTIONS(9752), + [anon_sym_bitand] = ACTIONS(9752), + [anon_sym_not_eq] = ACTIONS(9752), + [anon_sym_DASH_DASH] = ACTIONS(9754), + [anon_sym_PLUS_PLUS] = ACTIONS(9754), + [anon_sym_DOT] = ACTIONS(9752), + [anon_sym_DOT_STAR] = ACTIONS(9754), + [anon_sym_DASH_GT] = ACTIONS(9754), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9754), + }, + [STATE(3859)] = { + [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(9331), + [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(9329), + [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(3860)] = { + [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(9331), + [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(9329), + [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(3861)] = { + [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(9331), + [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(9329), + [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(3862)] = { + [sym_attribute_declaration] = STATE(4024), + [sym_parameter_list] = STATE(3487), + [aux_sym_attributed_declarator_repeat1] = STATE(4024), + [sym_identifier] = ACTIONS(9760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9762), + [anon_sym_COMMA] = ACTIONS(9762), + [anon_sym_RPAREN] = ACTIONS(9762), + [aux_sym_preproc_if_token2] = ACTIONS(9762), + [aux_sym_preproc_else_token1] = ACTIONS(9762), + [aux_sym_preproc_elif_token1] = ACTIONS(9760), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9762), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9760), + [anon_sym_PLUS] = ACTIONS(9760), + [anon_sym_STAR] = ACTIONS(9760), + [anon_sym_SLASH] = ACTIONS(9760), + [anon_sym_PERCENT] = ACTIONS(9760), + [anon_sym_PIPE_PIPE] = ACTIONS(9762), + [anon_sym_AMP_AMP] = ACTIONS(9762), + [anon_sym_PIPE] = ACTIONS(9760), + [anon_sym_CARET] = ACTIONS(9760), + [anon_sym_AMP] = ACTIONS(9760), + [anon_sym_EQ_EQ] = ACTIONS(9762), + [anon_sym_BANG_EQ] = ACTIONS(9762), + [anon_sym_GT] = ACTIONS(9760), + [anon_sym_GT_EQ] = ACTIONS(9762), + [anon_sym_LT_EQ] = ACTIONS(9760), + [anon_sym_LT] = ACTIONS(9760), + [anon_sym_LT_LT] = ACTIONS(9760), + [anon_sym_GT_GT] = ACTIONS(9760), + [anon_sym_SEMI] = ACTIONS(9762), + [anon_sym___attribute__] = ACTIONS(9760), + [anon_sym___attribute] = ACTIONS(9760), + [anon_sym_COLON] = ACTIONS(9760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACE] = ACTIONS(9762), + [anon_sym_LBRACK] = ACTIONS(9758), + [anon_sym_EQ] = ACTIONS(9760), + [anon_sym_QMARK] = ACTIONS(9762), + [anon_sym_STAR_EQ] = ACTIONS(9762), + [anon_sym_SLASH_EQ] = ACTIONS(9762), + [anon_sym_PERCENT_EQ] = ACTIONS(9762), + [anon_sym_PLUS_EQ] = ACTIONS(9762), + [anon_sym_DASH_EQ] = ACTIONS(9762), + [anon_sym_LT_LT_EQ] = ACTIONS(9762), + [anon_sym_GT_GT_EQ] = ACTIONS(9762), + [anon_sym_AMP_EQ] = ACTIONS(9762), + [anon_sym_CARET_EQ] = ACTIONS(9762), + [anon_sym_PIPE_EQ] = ACTIONS(9762), + [anon_sym_and_eq] = ACTIONS(9760), + [anon_sym_or_eq] = ACTIONS(9760), + [anon_sym_xor_eq] = ACTIONS(9760), + [anon_sym_LT_EQ_GT] = ACTIONS(9762), + [anon_sym_or] = ACTIONS(9760), + [anon_sym_and] = ACTIONS(9760), + [anon_sym_bitor] = ACTIONS(9760), + [anon_sym_xor] = ACTIONS(9760), + [anon_sym_bitand] = ACTIONS(9760), + [anon_sym_not_eq] = ACTIONS(9760), + [anon_sym_DASH_DASH] = ACTIONS(9762), + [anon_sym_PLUS_PLUS] = ACTIONS(9762), + [anon_sym_DOT] = ACTIONS(9760), + [anon_sym_DOT_STAR] = ACTIONS(9762), + [anon_sym_DASH_GT] = ACTIONS(9762), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9762), + }, + [STATE(3863)] = { + [sym_identifier] = ACTIONS(7911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7913), + [anon_sym_COMMA] = ACTIONS(7913), + [anon_sym_RPAREN] = ACTIONS(7913), + [anon_sym_LPAREN2] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(7911), + [anon_sym_PLUS] = ACTIONS(7911), + [anon_sym_STAR] = ACTIONS(7913), + [anon_sym_SLASH] = ACTIONS(7911), + [anon_sym_PERCENT] = ACTIONS(7913), + [anon_sym_PIPE_PIPE] = ACTIONS(7913), + [anon_sym_AMP_AMP] = ACTIONS(7913), + [anon_sym_PIPE] = ACTIONS(7911), + [anon_sym_CARET] = ACTIONS(7913), + [anon_sym_AMP] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(7913), + [anon_sym_BANG_EQ] = ACTIONS(7913), + [anon_sym_GT] = ACTIONS(7911), + [anon_sym_GT_EQ] = ACTIONS(7913), + [anon_sym_LT_EQ] = ACTIONS(7911), + [anon_sym_LT] = ACTIONS(7911), + [anon_sym_LT_LT] = ACTIONS(7913), + [anon_sym_GT_GT] = ACTIONS(7913), + [anon_sym_SEMI] = ACTIONS(7913), + [anon_sym___extension__] = ACTIONS(7911), + [anon_sym___attribute__] = ACTIONS(7911), + [anon_sym___attribute] = ACTIONS(7911), + [anon_sym_COLON] = ACTIONS(7911), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7913), + [anon_sym___based] = ACTIONS(7911), + [anon_sym_LBRACE] = ACTIONS(7913), + [anon_sym_RBRACE] = ACTIONS(7913), + [anon_sym_signed] = ACTIONS(7911), + [anon_sym_unsigned] = ACTIONS(7911), + [anon_sym_long] = ACTIONS(7911), + [anon_sym_short] = ACTIONS(7911), + [anon_sym_LBRACK] = ACTIONS(7913), + [anon_sym_const] = ACTIONS(7911), + [anon_sym_constexpr] = ACTIONS(7911), + [anon_sym_volatile] = ACTIONS(7911), + [anon_sym_restrict] = ACTIONS(7911), + [anon_sym___restrict__] = ACTIONS(7911), + [anon_sym__Atomic] = ACTIONS(7911), + [anon_sym__Noreturn] = ACTIONS(7911), + [anon_sym_noreturn] = ACTIONS(7911), + [anon_sym__Nonnull] = ACTIONS(7911), + [anon_sym_mutable] = ACTIONS(7911), + [anon_sym_constinit] = ACTIONS(7911), + [anon_sym_consteval] = ACTIONS(7911), + [anon_sym_alignas] = ACTIONS(7911), + [anon_sym__Alignas] = ACTIONS(7911), + [sym_primitive_type] = ACTIONS(7911), + [anon_sym_QMARK] = ACTIONS(7913), + [anon_sym_LT_EQ_GT] = ACTIONS(7913), + [anon_sym_or] = ACTIONS(7911), + [anon_sym_and] = ACTIONS(7911), + [anon_sym_bitor] = ACTIONS(7911), + [anon_sym_xor] = ACTIONS(7911), + [anon_sym_bitand] = ACTIONS(7911), + [anon_sym_not_eq] = ACTIONS(7911), + [anon_sym_DASH_DASH] = ACTIONS(7913), + [anon_sym_PLUS_PLUS] = ACTIONS(7913), + [anon_sym_DOT] = ACTIONS(7911), + [anon_sym_DOT_STAR] = ACTIONS(7913), + [anon_sym_DASH_GT] = ACTIONS(7913), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7913), + }, + [STATE(3864)] = { + [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), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7773), }, - [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), + [STATE(3865)] = { + [sym_identifier] = ACTIONS(7710), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7712), + [anon_sym_COMMA] = ACTIONS(7712), + [anon_sym_RPAREN] = ACTIONS(7712), + [anon_sym_LPAREN2] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7710), + [anon_sym_STAR] = ACTIONS(7712), + [anon_sym_SLASH] = ACTIONS(7710), + [anon_sym_PERCENT] = ACTIONS(7712), + [anon_sym_PIPE_PIPE] = ACTIONS(7712), + [anon_sym_AMP_AMP] = ACTIONS(7712), + [anon_sym_PIPE] = ACTIONS(7710), + [anon_sym_CARET] = ACTIONS(7712), + [anon_sym_AMP] = ACTIONS(7710), + [anon_sym_EQ_EQ] = ACTIONS(7712), + [anon_sym_BANG_EQ] = ACTIONS(7712), + [anon_sym_GT] = ACTIONS(7710), + [anon_sym_GT_EQ] = ACTIONS(7712), + [anon_sym_LT_EQ] = ACTIONS(7710), + [anon_sym_LT] = ACTIONS(7710), + [anon_sym_LT_LT] = ACTIONS(7712), + [anon_sym_GT_GT] = ACTIONS(7712), + [anon_sym_SEMI] = ACTIONS(7712), + [anon_sym___extension__] = ACTIONS(7710), + [anon_sym___attribute__] = ACTIONS(7710), + [anon_sym___attribute] = ACTIONS(7710), + [anon_sym_COLON] = ACTIONS(7710), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7712), + [anon_sym___based] = ACTIONS(7710), + [anon_sym_LBRACE] = ACTIONS(7712), + [anon_sym_RBRACE] = ACTIONS(7712), + [anon_sym_signed] = ACTIONS(7710), + [anon_sym_unsigned] = ACTIONS(7710), + [anon_sym_long] = ACTIONS(7710), + [anon_sym_short] = ACTIONS(7710), + [anon_sym_LBRACK] = ACTIONS(7712), + [anon_sym_const] = ACTIONS(7710), + [anon_sym_constexpr] = ACTIONS(7710), + [anon_sym_volatile] = ACTIONS(7710), + [anon_sym_restrict] = ACTIONS(7710), + [anon_sym___restrict__] = ACTIONS(7710), + [anon_sym__Atomic] = ACTIONS(7710), + [anon_sym__Noreturn] = ACTIONS(7710), + [anon_sym_noreturn] = ACTIONS(7710), + [anon_sym__Nonnull] = ACTIONS(7710), + [anon_sym_mutable] = ACTIONS(7710), + [anon_sym_constinit] = ACTIONS(7710), + [anon_sym_consteval] = ACTIONS(7710), + [anon_sym_alignas] = ACTIONS(7710), + [anon_sym__Alignas] = ACTIONS(7710), + [sym_primitive_type] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [anon_sym_LT_EQ_GT] = ACTIONS(7712), + [anon_sym_or] = ACTIONS(7710), + [anon_sym_and] = ACTIONS(7710), + [anon_sym_bitor] = ACTIONS(7710), + [anon_sym_xor] = ACTIONS(7710), + [anon_sym_bitand] = ACTIONS(7710), + [anon_sym_not_eq] = ACTIONS(7710), + [anon_sym_DASH_DASH] = ACTIONS(7712), + [anon_sym_PLUS_PLUS] = ACTIONS(7712), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_DOT_STAR] = ACTIONS(7712), + [anon_sym_DASH_GT] = ACTIONS(7712), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7712), + }, + [STATE(3866)] = { + [sym_identifier] = ACTIONS(7714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7716), + [anon_sym_COMMA] = ACTIONS(7716), + [anon_sym_RPAREN] = ACTIONS(7716), + [anon_sym_LPAREN2] = ACTIONS(7716), + [anon_sym_DASH] = ACTIONS(7714), + [anon_sym_PLUS] = ACTIONS(7714), + [anon_sym_STAR] = ACTIONS(7716), + [anon_sym_SLASH] = ACTIONS(7714), + [anon_sym_PERCENT] = ACTIONS(7716), + [anon_sym_PIPE_PIPE] = ACTIONS(7716), + [anon_sym_AMP_AMP] = ACTIONS(7716), + [anon_sym_PIPE] = ACTIONS(7714), + [anon_sym_CARET] = ACTIONS(7716), + [anon_sym_AMP] = ACTIONS(7714), + [anon_sym_EQ_EQ] = ACTIONS(7716), + [anon_sym_BANG_EQ] = ACTIONS(7716), + [anon_sym_GT] = ACTIONS(7714), + [anon_sym_GT_EQ] = ACTIONS(7716), + [anon_sym_LT_EQ] = ACTIONS(7714), + [anon_sym_LT] = ACTIONS(7714), + [anon_sym_LT_LT] = ACTIONS(7716), + [anon_sym_GT_GT] = ACTIONS(7716), + [anon_sym_SEMI] = ACTIONS(7716), + [anon_sym___extension__] = ACTIONS(7714), + [anon_sym___attribute__] = ACTIONS(7714), + [anon_sym___attribute] = ACTIONS(7714), + [anon_sym_COLON] = ACTIONS(7714), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7716), + [anon_sym___based] = ACTIONS(7714), + [anon_sym_LBRACE] = ACTIONS(7716), + [anon_sym_RBRACE] = ACTIONS(7716), + [anon_sym_signed] = ACTIONS(7714), + [anon_sym_unsigned] = ACTIONS(7714), + [anon_sym_long] = ACTIONS(7714), + [anon_sym_short] = ACTIONS(7714), + [anon_sym_LBRACK] = ACTIONS(7716), + [anon_sym_const] = ACTIONS(7714), + [anon_sym_constexpr] = ACTIONS(7714), + [anon_sym_volatile] = ACTIONS(7714), + [anon_sym_restrict] = ACTIONS(7714), + [anon_sym___restrict__] = ACTIONS(7714), + [anon_sym__Atomic] = ACTIONS(7714), + [anon_sym__Noreturn] = ACTIONS(7714), + [anon_sym_noreturn] = ACTIONS(7714), + [anon_sym__Nonnull] = ACTIONS(7714), + [anon_sym_mutable] = ACTIONS(7714), + [anon_sym_constinit] = ACTIONS(7714), + [anon_sym_consteval] = ACTIONS(7714), + [anon_sym_alignas] = ACTIONS(7714), + [anon_sym__Alignas] = ACTIONS(7714), + [sym_primitive_type] = ACTIONS(7714), + [anon_sym_QMARK] = ACTIONS(7716), + [anon_sym_LT_EQ_GT] = ACTIONS(7716), + [anon_sym_or] = ACTIONS(7714), + [anon_sym_and] = ACTIONS(7714), + [anon_sym_bitor] = ACTIONS(7714), + [anon_sym_xor] = ACTIONS(7714), + [anon_sym_bitand] = ACTIONS(7714), + [anon_sym_not_eq] = ACTIONS(7714), + [anon_sym_DASH_DASH] = ACTIONS(7716), + [anon_sym_PLUS_PLUS] = ACTIONS(7716), + [anon_sym_DOT] = ACTIONS(7714), + [anon_sym_DOT_STAR] = ACTIONS(7716), + [anon_sym_DASH_GT] = ACTIONS(7716), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7716), + }, + [STATE(3867)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7720), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7720), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7720), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7720), + [anon_sym_GT_GT] = ACTIONS(7720), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym___based] = ACTIONS(7718), + [anon_sym_LBRACE] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_signed] = ACTIONS(7718), + [anon_sym_unsigned] = ACTIONS(7718), + [anon_sym_long] = ACTIONS(7718), + [anon_sym_short] = ACTIONS(7718), + [anon_sym_LBRACK] = ACTIONS(7720), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [sym_primitive_type] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), + }, + [STATE(3868)] = { + [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_COLON_RBRACK] = ACTIONS(7737), }, - [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), + [STATE(3869)] = { + [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), + [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), + [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_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), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7765), }, - [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), + [STATE(3870)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7720), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7720), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7720), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7720), + [anon_sym_GT_GT] = ACTIONS(7720), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym___based] = ACTIONS(7718), + [anon_sym_LBRACE] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_signed] = ACTIONS(7718), + [anon_sym_unsigned] = ACTIONS(7718), + [anon_sym_long] = ACTIONS(7718), + [anon_sym_short] = ACTIONS(7718), + [anon_sym_LBRACK] = ACTIONS(7720), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [sym_primitive_type] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), + }, + [STATE(3871)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7720), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7720), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7720), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7720), + [anon_sym_GT_GT] = ACTIONS(7720), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___extension__] = ACTIONS(7718), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym___based] = ACTIONS(7718), + [anon_sym_LBRACE] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_signed] = ACTIONS(7718), + [anon_sym_unsigned] = ACTIONS(7718), + [anon_sym_long] = ACTIONS(7718), + [anon_sym_short] = ACTIONS(7718), + [anon_sym_LBRACK] = ACTIONS(7720), + [anon_sym_const] = ACTIONS(7718), + [anon_sym_constexpr] = ACTIONS(7718), + [anon_sym_volatile] = ACTIONS(7718), + [anon_sym_restrict] = ACTIONS(7718), + [anon_sym___restrict__] = ACTIONS(7718), + [anon_sym__Atomic] = ACTIONS(7718), + [anon_sym__Noreturn] = ACTIONS(7718), + [anon_sym_noreturn] = ACTIONS(7718), + [anon_sym__Nonnull] = ACTIONS(7718), + [anon_sym_mutable] = ACTIONS(7718), + [anon_sym_constinit] = ACTIONS(7718), + [anon_sym_consteval] = ACTIONS(7718), + [anon_sym_alignas] = ACTIONS(7718), + [anon_sym__Alignas] = ACTIONS(7718), + [sym_primitive_type] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), + }, + [STATE(3872)] = { + [sym_decltype_auto] = STATE(4259), + [sym_template_argument_list] = STATE(3452), + [aux_sym_sized_type_specifier_repeat1] = STATE(3650), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [anon_sym_RPAREN] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_TILDE] = ACTIONS(5669), + [anon_sym_STAR] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(9764), + [anon_sym_SEMI] = ACTIONS(5669), + [anon_sym___extension__] = ACTIONS(5661), + [anon_sym_virtual] = ACTIONS(5661), + [anon_sym_extern] = ACTIONS(5661), + [anon_sym___attribute__] = ACTIONS(5661), + [anon_sym___attribute] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5669), + [anon_sym___declspec] = ACTIONS(5661), + [anon_sym___based] = ACTIONS(5661), + [anon_sym_LBRACE] = ACTIONS(5669), + [anon_sym_signed] = ACTIONS(5691), + [anon_sym_unsigned] = ACTIONS(5691), + [anon_sym_long] = ACTIONS(5691), + [anon_sym_short] = ACTIONS(5691), + [anon_sym_LBRACK] = ACTIONS(5661), + [anon_sym_static] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(5669), + [anon_sym_register] = ACTIONS(5661), + [anon_sym_inline] = ACTIONS(5661), + [anon_sym___inline] = ACTIONS(5661), + [anon_sym___inline__] = ACTIONS(5661), + [anon_sym___forceinline] = ACTIONS(5661), + [anon_sym_thread_local] = ACTIONS(5661), + [anon_sym___thread] = ACTIONS(5661), + [anon_sym_const] = ACTIONS(5661), + [anon_sym_constexpr] = ACTIONS(5661), + [anon_sym_volatile] = ACTIONS(5661), + [anon_sym_restrict] = ACTIONS(5661), + [anon_sym___restrict__] = ACTIONS(5661), + [anon_sym__Atomic] = ACTIONS(5661), + [anon_sym__Noreturn] = ACTIONS(5661), + [anon_sym_noreturn] = ACTIONS(5661), + [anon_sym__Nonnull] = ACTIONS(5661), + [anon_sym_mutable] = ACTIONS(5661), + [anon_sym_constinit] = ACTIONS(5661), + [anon_sym_consteval] = ACTIONS(5661), + [anon_sym_alignas] = ACTIONS(5661), + [anon_sym__Alignas] = ACTIONS(5661), + [anon_sym_asm] = ACTIONS(5661), + [anon_sym___asm__] = ACTIONS(5661), + [anon_sym___asm] = ACTIONS(5661), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5701), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_final] = ACTIONS(5661), + [anon_sym_override] = ACTIONS(5661), + [anon_sym_template] = ACTIONS(5661), + [anon_sym_GT2] = ACTIONS(5669), + [anon_sym_operator] = ACTIONS(5661), + [anon_sym_try] = ACTIONS(5661), + [anon_sym_requires] = ACTIONS(5661), + [anon_sym_LBRACK_COLON] = ACTIONS(5669), + }, + [STATE(3873)] = { + [sym__abstract_declarator] = STATE(6898), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_parameter_list] = STATE(2289), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9544), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [anon_sym_RPAREN] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7862), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(7137), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7862), + [anon_sym_AMP] = ACTIONS(7139), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7862), + [anon_sym_GT_GT] = ACTIONS(7862), + [anon_sym_SEMI] = ACTIONS(7862), + [anon_sym_COLON] = ACTIONS(7864), + [anon_sym_COLON_COLON] = ACTIONS(7141), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7862), + [anon_sym_RBRACE] = ACTIONS(7862), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7862), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(7864), + [anon_sym_override] = ACTIONS(7864), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(7864), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + [anon_sym_COLON_RBRACK] = ACTIONS(7862), + }, + [STATE(3874)] = { + [sym_argument_list] = STATE(4307), + [sym_initializer_list] = STATE(4307), + [sym_identifier] = ACTIONS(9766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9768), + [anon_sym_COMMA] = ACTIONS(9768), + [anon_sym_RPAREN] = ACTIONS(9768), + [aux_sym_preproc_if_token2] = ACTIONS(9768), + [aux_sym_preproc_else_token1] = ACTIONS(9768), + [aux_sym_preproc_elif_token1] = ACTIONS(9766), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9768), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9768), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(9766), + [anon_sym_PLUS] = ACTIONS(9766), + [anon_sym_STAR] = ACTIONS(9766), + [anon_sym_SLASH] = ACTIONS(9766), + [anon_sym_PERCENT] = ACTIONS(9766), + [anon_sym_PIPE_PIPE] = ACTIONS(9768), + [anon_sym_AMP_AMP] = ACTIONS(9768), + [anon_sym_PIPE] = ACTIONS(9766), + [anon_sym_CARET] = ACTIONS(9766), + [anon_sym_AMP] = ACTIONS(9766), + [anon_sym_EQ_EQ] = ACTIONS(9768), + [anon_sym_BANG_EQ] = ACTIONS(9768), + [anon_sym_GT] = ACTIONS(9766), + [anon_sym_GT_EQ] = ACTIONS(9768), + [anon_sym_LT_EQ] = ACTIONS(9766), + [anon_sym_LT] = ACTIONS(9766), + [anon_sym_LT_LT] = ACTIONS(9766), + [anon_sym_GT_GT] = ACTIONS(9766), + [anon_sym_SEMI] = ACTIONS(9768), + [anon_sym___attribute__] = ACTIONS(9766), + [anon_sym___attribute] = ACTIONS(9766), + [anon_sym_COLON] = ACTIONS(9766), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9768), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9768), + [anon_sym_LBRACK] = ACTIONS(9768), + [anon_sym_EQ] = ACTIONS(9766), + [anon_sym_QMARK] = ACTIONS(9768), + [anon_sym_STAR_EQ] = ACTIONS(9768), + [anon_sym_SLASH_EQ] = ACTIONS(9768), + [anon_sym_PERCENT_EQ] = ACTIONS(9768), + [anon_sym_PLUS_EQ] = ACTIONS(9768), + [anon_sym_DASH_EQ] = ACTIONS(9768), + [anon_sym_LT_LT_EQ] = ACTIONS(9768), + [anon_sym_GT_GT_EQ] = ACTIONS(9768), + [anon_sym_AMP_EQ] = ACTIONS(9768), + [anon_sym_CARET_EQ] = ACTIONS(9768), + [anon_sym_PIPE_EQ] = ACTIONS(9768), + [anon_sym_and_eq] = ACTIONS(9766), + [anon_sym_or_eq] = ACTIONS(9766), + [anon_sym_xor_eq] = ACTIONS(9766), + [anon_sym_LT_EQ_GT] = ACTIONS(9768), + [anon_sym_or] = ACTIONS(9766), + [anon_sym_and] = ACTIONS(9766), + [anon_sym_bitor] = ACTIONS(9766), + [anon_sym_xor] = ACTIONS(9766), + [anon_sym_bitand] = ACTIONS(9766), + [anon_sym_not_eq] = ACTIONS(9766), + [anon_sym_DASH_DASH] = ACTIONS(9768), + [anon_sym_PLUS_PLUS] = ACTIONS(9768), + [anon_sym_DOT] = ACTIONS(9766), + [anon_sym_DOT_STAR] = ACTIONS(9768), + [anon_sym_DASH_GT] = ACTIONS(9768), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9768), + }, + [STATE(3875)] = { + [sym_attribute_declaration] = STATE(4024), + [sym_parameter_list] = STATE(3487), + [aux_sym_attributed_declarator_repeat1] = STATE(4024), + [sym_identifier] = ACTIONS(9770), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9772), + [anon_sym_COMMA] = ACTIONS(9772), + [anon_sym_RPAREN] = ACTIONS(9772), + [aux_sym_preproc_if_token2] = ACTIONS(9772), + [aux_sym_preproc_else_token1] = ACTIONS(9772), + [aux_sym_preproc_elif_token1] = ACTIONS(9770), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9772), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9772), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9770), + [anon_sym_PLUS] = ACTIONS(9770), + [anon_sym_STAR] = ACTIONS(9770), + [anon_sym_SLASH] = ACTIONS(9770), + [anon_sym_PERCENT] = ACTIONS(9770), + [anon_sym_PIPE_PIPE] = ACTIONS(9772), + [anon_sym_AMP_AMP] = ACTIONS(9772), + [anon_sym_PIPE] = ACTIONS(9770), + [anon_sym_CARET] = ACTIONS(9770), + [anon_sym_AMP] = ACTIONS(9770), + [anon_sym_EQ_EQ] = ACTIONS(9772), + [anon_sym_BANG_EQ] = ACTIONS(9772), + [anon_sym_GT] = ACTIONS(9770), + [anon_sym_GT_EQ] = ACTIONS(9772), + [anon_sym_LT_EQ] = ACTIONS(9770), + [anon_sym_LT] = ACTIONS(9770), + [anon_sym_LT_LT] = ACTIONS(9770), + [anon_sym_GT_GT] = ACTIONS(9770), + [anon_sym_SEMI] = ACTIONS(9772), + [anon_sym___attribute__] = ACTIONS(9770), + [anon_sym___attribute] = ACTIONS(9770), + [anon_sym_COLON] = ACTIONS(9770), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACE] = ACTIONS(9772), + [anon_sym_LBRACK] = ACTIONS(9758), + [anon_sym_EQ] = ACTIONS(9770), + [anon_sym_QMARK] = ACTIONS(9772), + [anon_sym_STAR_EQ] = ACTIONS(9772), + [anon_sym_SLASH_EQ] = ACTIONS(9772), + [anon_sym_PERCENT_EQ] = ACTIONS(9772), + [anon_sym_PLUS_EQ] = ACTIONS(9772), + [anon_sym_DASH_EQ] = ACTIONS(9772), + [anon_sym_LT_LT_EQ] = ACTIONS(9772), + [anon_sym_GT_GT_EQ] = ACTIONS(9772), + [anon_sym_AMP_EQ] = ACTIONS(9772), + [anon_sym_CARET_EQ] = ACTIONS(9772), + [anon_sym_PIPE_EQ] = ACTIONS(9772), + [anon_sym_and_eq] = ACTIONS(9770), + [anon_sym_or_eq] = ACTIONS(9770), + [anon_sym_xor_eq] = ACTIONS(9770), + [anon_sym_LT_EQ_GT] = ACTIONS(9772), + [anon_sym_or] = ACTIONS(9770), + [anon_sym_and] = ACTIONS(9770), + [anon_sym_bitor] = ACTIONS(9770), + [anon_sym_xor] = ACTIONS(9770), + [anon_sym_bitand] = ACTIONS(9770), + [anon_sym_not_eq] = ACTIONS(9770), + [anon_sym_DASH_DASH] = ACTIONS(9772), + [anon_sym_PLUS_PLUS] = ACTIONS(9772), + [anon_sym_DOT] = ACTIONS(9770), + [anon_sym_DOT_STAR] = ACTIONS(9772), + [anon_sym_DASH_GT] = ACTIONS(9772), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9772), + }, + [STATE(3876)] = { + [sym_identifier] = ACTIONS(9292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9294), + [anon_sym_COMMA] = ACTIONS(9294), + [anon_sym_RPAREN] = ACTIONS(9294), + [aux_sym_preproc_if_token2] = ACTIONS(9294), + [aux_sym_preproc_else_token1] = ACTIONS(9294), + [aux_sym_preproc_elif_token1] = ACTIONS(9292), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9294), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9294), + [anon_sym_LPAREN2] = ACTIONS(9294), + [anon_sym_DASH] = ACTIONS(9292), + [anon_sym_PLUS] = ACTIONS(9292), + [anon_sym_STAR] = ACTIONS(9292), + [anon_sym_SLASH] = ACTIONS(9292), + [anon_sym_PERCENT] = ACTIONS(9292), + [anon_sym_PIPE_PIPE] = ACTIONS(9294), + [anon_sym_AMP_AMP] = ACTIONS(9294), + [anon_sym_PIPE] = ACTIONS(9292), + [anon_sym_CARET] = ACTIONS(9292), + [anon_sym_AMP] = ACTIONS(9292), + [anon_sym_EQ_EQ] = ACTIONS(9294), + [anon_sym_BANG_EQ] = ACTIONS(9294), + [anon_sym_GT] = ACTIONS(9292), + [anon_sym_GT_EQ] = ACTIONS(9294), + [anon_sym_LT_EQ] = ACTIONS(9292), + [anon_sym_LT] = ACTIONS(9292), + [anon_sym_LT_LT] = ACTIONS(9292), + [anon_sym_GT_GT] = ACTIONS(9292), + [anon_sym_SEMI] = ACTIONS(9294), + [anon_sym___attribute__] = ACTIONS(9292), + [anon_sym___attribute] = ACTIONS(9292), + [anon_sym_COLON] = ACTIONS(9292), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9294), + [anon_sym_RBRACE] = ACTIONS(9294), + [anon_sym_LBRACK] = ACTIONS(9294), + [anon_sym_EQ] = ACTIONS(9292), + [anon_sym_QMARK] = ACTIONS(9294), + [anon_sym_STAR_EQ] = ACTIONS(9294), + [anon_sym_SLASH_EQ] = ACTIONS(9294), + [anon_sym_PERCENT_EQ] = ACTIONS(9294), + [anon_sym_PLUS_EQ] = ACTIONS(9294), + [anon_sym_DASH_EQ] = ACTIONS(9294), + [anon_sym_LT_LT_EQ] = ACTIONS(9294), + [anon_sym_GT_GT_EQ] = ACTIONS(9294), + [anon_sym_AMP_EQ] = ACTIONS(9294), + [anon_sym_CARET_EQ] = ACTIONS(9294), + [anon_sym_PIPE_EQ] = ACTIONS(9294), + [anon_sym_and_eq] = ACTIONS(9292), + [anon_sym_or_eq] = ACTIONS(9292), + [anon_sym_xor_eq] = ACTIONS(9292), + [anon_sym_LT_EQ_GT] = ACTIONS(9294), + [anon_sym_or] = ACTIONS(9292), + [anon_sym_and] = ACTIONS(9292), + [anon_sym_bitor] = ACTIONS(9292), + [anon_sym_xor] = ACTIONS(9292), + [anon_sym_bitand] = ACTIONS(9292), + [anon_sym_not_eq] = ACTIONS(9292), + [anon_sym_DASH_DASH] = ACTIONS(9294), + [anon_sym_PLUS_PLUS] = ACTIONS(9294), + [anon_sym_DOT] = ACTIONS(9292), + [anon_sym_DOT_STAR] = ACTIONS(9294), + [anon_sym_DASH_GT] = ACTIONS(9294), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9292), + [anon_sym_override] = ACTIONS(9292), + [anon_sym_requires] = ACTIONS(9292), + [anon_sym_COLON_RBRACK] = ACTIONS(9294), + }, + [STATE(3877)] = { + [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), }, - [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(3878)] = { + [sym_parameter_list] = STATE(1537), + [sym__function_declarator_seq] = STATE(3980), + [sym_identifier] = ACTIONS(9774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9776), + [anon_sym_COMMA] = ACTIONS(9776), + [anon_sym_RPAREN] = ACTIONS(9776), + [aux_sym_preproc_if_token2] = ACTIONS(9776), + [aux_sym_preproc_else_token1] = ACTIONS(9776), + [aux_sym_preproc_elif_token1] = ACTIONS(9774), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9776), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9776), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9774), + [anon_sym_PLUS] = ACTIONS(9774), + [anon_sym_STAR] = ACTIONS(9774), + [anon_sym_SLASH] = ACTIONS(9774), + [anon_sym_PERCENT] = ACTIONS(9774), + [anon_sym_PIPE_PIPE] = ACTIONS(9776), + [anon_sym_AMP_AMP] = ACTIONS(9776), + [anon_sym_PIPE] = ACTIONS(9774), + [anon_sym_CARET] = ACTIONS(9774), + [anon_sym_AMP] = ACTIONS(9774), + [anon_sym_EQ_EQ] = ACTIONS(9776), + [anon_sym_BANG_EQ] = ACTIONS(9776), + [anon_sym_GT] = ACTIONS(9774), + [anon_sym_GT_EQ] = ACTIONS(9776), + [anon_sym_LT_EQ] = ACTIONS(9774), + [anon_sym_LT] = ACTIONS(9774), + [anon_sym_LT_LT] = ACTIONS(9774), + [anon_sym_GT_GT] = ACTIONS(9774), + [anon_sym_SEMI] = ACTIONS(9776), + [anon_sym_COLON] = ACTIONS(9774), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9776), + [anon_sym_RBRACE] = ACTIONS(9776), + [anon_sym_LBRACK] = ACTIONS(9778), + [anon_sym_EQ] = ACTIONS(9774), + [anon_sym_QMARK] = ACTIONS(9776), + [anon_sym_STAR_EQ] = ACTIONS(9776), + [anon_sym_SLASH_EQ] = ACTIONS(9776), + [anon_sym_PERCENT_EQ] = ACTIONS(9776), + [anon_sym_PLUS_EQ] = ACTIONS(9776), + [anon_sym_DASH_EQ] = ACTIONS(9776), + [anon_sym_LT_LT_EQ] = ACTIONS(9776), + [anon_sym_GT_GT_EQ] = ACTIONS(9776), + [anon_sym_AMP_EQ] = ACTIONS(9776), + [anon_sym_CARET_EQ] = ACTIONS(9776), + [anon_sym_PIPE_EQ] = ACTIONS(9776), + [anon_sym_and_eq] = ACTIONS(9774), + [anon_sym_or_eq] = ACTIONS(9774), + [anon_sym_xor_eq] = ACTIONS(9774), + [anon_sym_LT_EQ_GT] = ACTIONS(9776), + [anon_sym_or] = ACTIONS(9774), + [anon_sym_and] = ACTIONS(9774), + [anon_sym_bitor] = ACTIONS(9774), + [anon_sym_xor] = ACTIONS(9774), + [anon_sym_bitand] = ACTIONS(9774), + [anon_sym_not_eq] = ACTIONS(9774), + [anon_sym_DASH_DASH] = ACTIONS(9776), + [anon_sym_PLUS_PLUS] = ACTIONS(9776), + [anon_sym_DOT] = ACTIONS(9774), + [anon_sym_DOT_STAR] = ACTIONS(9776), + [anon_sym_DASH_GT] = ACTIONS(9776), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9774), + [anon_sym_override] = ACTIONS(9774), + [anon_sym_requires] = ACTIONS(9774), + [anon_sym_COLON_RBRACK] = ACTIONS(9776), + }, + [STATE(3879)] = { + [sym_parameter_list] = STATE(1537), + [sym__function_declarator_seq] = STATE(3980), + [sym_identifier] = ACTIONS(9780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9782), + [anon_sym_COMMA] = ACTIONS(9782), + [anon_sym_RPAREN] = ACTIONS(9782), + [aux_sym_preproc_if_token2] = ACTIONS(9782), + [aux_sym_preproc_else_token1] = ACTIONS(9782), + [aux_sym_preproc_elif_token1] = ACTIONS(9780), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9782), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9782), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9780), + [anon_sym_PLUS] = ACTIONS(9780), + [anon_sym_STAR] = ACTIONS(9780), + [anon_sym_SLASH] = ACTIONS(9780), + [anon_sym_PERCENT] = ACTIONS(9780), + [anon_sym_PIPE_PIPE] = ACTIONS(9782), + [anon_sym_AMP_AMP] = ACTIONS(9782), + [anon_sym_PIPE] = ACTIONS(9780), + [anon_sym_CARET] = ACTIONS(9780), + [anon_sym_AMP] = ACTIONS(9780), + [anon_sym_EQ_EQ] = ACTIONS(9782), + [anon_sym_BANG_EQ] = ACTIONS(9782), + [anon_sym_GT] = ACTIONS(9780), + [anon_sym_GT_EQ] = ACTIONS(9782), + [anon_sym_LT_EQ] = ACTIONS(9780), + [anon_sym_LT] = ACTIONS(9780), + [anon_sym_LT_LT] = ACTIONS(9780), + [anon_sym_GT_GT] = ACTIONS(9780), + [anon_sym_SEMI] = ACTIONS(9782), + [anon_sym_COLON] = ACTIONS(9780), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9782), + [anon_sym_RBRACE] = ACTIONS(9782), + [anon_sym_LBRACK] = ACTIONS(9778), + [anon_sym_EQ] = ACTIONS(9780), + [anon_sym_QMARK] = ACTIONS(9782), + [anon_sym_STAR_EQ] = ACTIONS(9782), + [anon_sym_SLASH_EQ] = ACTIONS(9782), + [anon_sym_PERCENT_EQ] = ACTIONS(9782), + [anon_sym_PLUS_EQ] = ACTIONS(9782), + [anon_sym_DASH_EQ] = ACTIONS(9782), + [anon_sym_LT_LT_EQ] = ACTIONS(9782), + [anon_sym_GT_GT_EQ] = ACTIONS(9782), + [anon_sym_AMP_EQ] = ACTIONS(9782), + [anon_sym_CARET_EQ] = ACTIONS(9782), + [anon_sym_PIPE_EQ] = ACTIONS(9782), + [anon_sym_and_eq] = ACTIONS(9780), + [anon_sym_or_eq] = ACTIONS(9780), + [anon_sym_xor_eq] = ACTIONS(9780), + [anon_sym_LT_EQ_GT] = ACTIONS(9782), + [anon_sym_or] = ACTIONS(9780), + [anon_sym_and] = ACTIONS(9780), + [anon_sym_bitor] = ACTIONS(9780), + [anon_sym_xor] = ACTIONS(9780), + [anon_sym_bitand] = ACTIONS(9780), + [anon_sym_not_eq] = ACTIONS(9780), + [anon_sym_DASH_DASH] = ACTIONS(9782), + [anon_sym_PLUS_PLUS] = ACTIONS(9782), + [anon_sym_DOT] = ACTIONS(9780), + [anon_sym_DOT_STAR] = ACTIONS(9782), + [anon_sym_DASH_GT] = ACTIONS(9782), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9780), + [anon_sym_override] = ACTIONS(9780), + [anon_sym_requires] = ACTIONS(9780), + [anon_sym_COLON_RBRACK] = ACTIONS(9782), + }, + [STATE(3880)] = { + [sym_parameter_list] = STATE(1537), + [sym__function_declarator_seq] = STATE(3980), + [sym_identifier] = ACTIONS(9784), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9786), + [anon_sym_COMMA] = ACTIONS(9786), + [anon_sym_RPAREN] = ACTIONS(9786), + [aux_sym_preproc_if_token2] = ACTIONS(9786), + [aux_sym_preproc_else_token1] = ACTIONS(9786), + [aux_sym_preproc_elif_token1] = ACTIONS(9784), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9786), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9786), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9784), + [anon_sym_PLUS] = ACTIONS(9784), + [anon_sym_STAR] = ACTIONS(9784), + [anon_sym_SLASH] = ACTIONS(9784), + [anon_sym_PERCENT] = ACTIONS(9784), + [anon_sym_PIPE_PIPE] = ACTIONS(9786), + [anon_sym_AMP_AMP] = ACTIONS(9786), + [anon_sym_PIPE] = ACTIONS(9784), + [anon_sym_CARET] = ACTIONS(9784), + [anon_sym_AMP] = ACTIONS(9784), + [anon_sym_EQ_EQ] = ACTIONS(9786), + [anon_sym_BANG_EQ] = ACTIONS(9786), + [anon_sym_GT] = ACTIONS(9784), + [anon_sym_GT_EQ] = ACTIONS(9786), + [anon_sym_LT_EQ] = ACTIONS(9784), + [anon_sym_LT] = ACTIONS(9784), + [anon_sym_LT_LT] = ACTIONS(9784), + [anon_sym_GT_GT] = ACTIONS(9784), + [anon_sym_SEMI] = ACTIONS(9786), + [anon_sym_COLON] = ACTIONS(9784), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9786), + [anon_sym_RBRACE] = ACTIONS(9786), + [anon_sym_LBRACK] = ACTIONS(9778), + [anon_sym_EQ] = ACTIONS(9784), + [anon_sym_QMARK] = ACTIONS(9786), + [anon_sym_STAR_EQ] = ACTIONS(9786), + [anon_sym_SLASH_EQ] = ACTIONS(9786), + [anon_sym_PERCENT_EQ] = ACTIONS(9786), + [anon_sym_PLUS_EQ] = ACTIONS(9786), + [anon_sym_DASH_EQ] = ACTIONS(9786), + [anon_sym_LT_LT_EQ] = ACTIONS(9786), + [anon_sym_GT_GT_EQ] = ACTIONS(9786), + [anon_sym_AMP_EQ] = ACTIONS(9786), + [anon_sym_CARET_EQ] = ACTIONS(9786), + [anon_sym_PIPE_EQ] = ACTIONS(9786), + [anon_sym_and_eq] = ACTIONS(9784), + [anon_sym_or_eq] = ACTIONS(9784), + [anon_sym_xor_eq] = ACTIONS(9784), + [anon_sym_LT_EQ_GT] = ACTIONS(9786), + [anon_sym_or] = ACTIONS(9784), + [anon_sym_and] = ACTIONS(9784), + [anon_sym_bitor] = ACTIONS(9784), + [anon_sym_xor] = ACTIONS(9784), + [anon_sym_bitand] = ACTIONS(9784), + [anon_sym_not_eq] = ACTIONS(9784), + [anon_sym_DASH_DASH] = ACTIONS(9786), + [anon_sym_PLUS_PLUS] = ACTIONS(9786), + [anon_sym_DOT] = ACTIONS(9784), + [anon_sym_DOT_STAR] = ACTIONS(9786), + [anon_sym_DASH_GT] = ACTIONS(9786), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9784), + [anon_sym_override] = ACTIONS(9784), + [anon_sym_requires] = ACTIONS(9784), + [anon_sym_COLON_RBRACK] = ACTIONS(9786), + }, + [STATE(3881)] = { + [sym_parameter_list] = STATE(1537), + [sym__function_declarator_seq] = STATE(3980), + [sym_identifier] = ACTIONS(9788), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9790), + [anon_sym_COMMA] = ACTIONS(9790), + [anon_sym_RPAREN] = ACTIONS(9790), + [aux_sym_preproc_if_token2] = ACTIONS(9790), + [aux_sym_preproc_else_token1] = ACTIONS(9790), + [aux_sym_preproc_elif_token1] = ACTIONS(9788), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9790), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9790), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9788), + [anon_sym_PLUS] = ACTIONS(9788), + [anon_sym_STAR] = ACTIONS(9788), + [anon_sym_SLASH] = ACTIONS(9788), + [anon_sym_PERCENT] = ACTIONS(9788), + [anon_sym_PIPE_PIPE] = ACTIONS(9790), + [anon_sym_AMP_AMP] = ACTIONS(9790), + [anon_sym_PIPE] = ACTIONS(9788), + [anon_sym_CARET] = ACTIONS(9788), + [anon_sym_AMP] = ACTIONS(9788), + [anon_sym_EQ_EQ] = ACTIONS(9790), + [anon_sym_BANG_EQ] = ACTIONS(9790), + [anon_sym_GT] = ACTIONS(9788), + [anon_sym_GT_EQ] = ACTIONS(9790), + [anon_sym_LT_EQ] = ACTIONS(9788), + [anon_sym_LT] = ACTIONS(9788), + [anon_sym_LT_LT] = ACTIONS(9788), + [anon_sym_GT_GT] = ACTIONS(9788), + [anon_sym_SEMI] = ACTIONS(9790), + [anon_sym_COLON] = ACTIONS(9788), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9790), + [anon_sym_RBRACE] = ACTIONS(9790), + [anon_sym_LBRACK] = ACTIONS(9778), + [anon_sym_EQ] = ACTIONS(9788), + [anon_sym_QMARK] = ACTIONS(9790), + [anon_sym_STAR_EQ] = ACTIONS(9790), + [anon_sym_SLASH_EQ] = ACTIONS(9790), + [anon_sym_PERCENT_EQ] = ACTIONS(9790), + [anon_sym_PLUS_EQ] = ACTIONS(9790), + [anon_sym_DASH_EQ] = ACTIONS(9790), + [anon_sym_LT_LT_EQ] = ACTIONS(9790), + [anon_sym_GT_GT_EQ] = ACTIONS(9790), + [anon_sym_AMP_EQ] = ACTIONS(9790), + [anon_sym_CARET_EQ] = ACTIONS(9790), + [anon_sym_PIPE_EQ] = ACTIONS(9790), + [anon_sym_and_eq] = ACTIONS(9788), + [anon_sym_or_eq] = ACTIONS(9788), + [anon_sym_xor_eq] = ACTIONS(9788), + [anon_sym_LT_EQ_GT] = ACTIONS(9790), + [anon_sym_or] = ACTIONS(9788), + [anon_sym_and] = ACTIONS(9788), + [anon_sym_bitor] = ACTIONS(9788), + [anon_sym_xor] = ACTIONS(9788), + [anon_sym_bitand] = ACTIONS(9788), + [anon_sym_not_eq] = ACTIONS(9788), + [anon_sym_DASH_DASH] = ACTIONS(9790), + [anon_sym_PLUS_PLUS] = ACTIONS(9790), + [anon_sym_DOT] = ACTIONS(9788), + [anon_sym_DOT_STAR] = ACTIONS(9790), + [anon_sym_DASH_GT] = ACTIONS(9790), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9788), + [anon_sym_override] = ACTIONS(9788), + [anon_sym_requires] = ACTIONS(9788), + [anon_sym_COLON_RBRACK] = ACTIONS(9790), + }, + [STATE(3882)] = { + [sym_parameter_list] = STATE(1537), + [sym__function_declarator_seq] = STATE(3980), + [sym_identifier] = ACTIONS(9792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9794), + [anon_sym_COMMA] = ACTIONS(9794), + [anon_sym_RPAREN] = ACTIONS(9794), + [aux_sym_preproc_if_token2] = ACTIONS(9794), + [aux_sym_preproc_else_token1] = ACTIONS(9794), + [aux_sym_preproc_elif_token1] = ACTIONS(9792), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9794), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9794), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9792), + [anon_sym_PLUS] = ACTIONS(9792), + [anon_sym_STAR] = ACTIONS(9792), + [anon_sym_SLASH] = ACTIONS(9792), + [anon_sym_PERCENT] = ACTIONS(9792), + [anon_sym_PIPE_PIPE] = ACTIONS(9794), + [anon_sym_AMP_AMP] = ACTIONS(9794), + [anon_sym_PIPE] = ACTIONS(9792), + [anon_sym_CARET] = ACTIONS(9792), + [anon_sym_AMP] = ACTIONS(9792), + [anon_sym_EQ_EQ] = ACTIONS(9794), + [anon_sym_BANG_EQ] = ACTIONS(9794), + [anon_sym_GT] = ACTIONS(9792), + [anon_sym_GT_EQ] = ACTIONS(9794), + [anon_sym_LT_EQ] = ACTIONS(9792), + [anon_sym_LT] = ACTIONS(9792), + [anon_sym_LT_LT] = ACTIONS(9792), + [anon_sym_GT_GT] = ACTIONS(9792), + [anon_sym_SEMI] = ACTIONS(9794), + [anon_sym_COLON] = ACTIONS(9792), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9794), + [anon_sym_RBRACE] = ACTIONS(9794), + [anon_sym_LBRACK] = ACTIONS(9778), + [anon_sym_EQ] = ACTIONS(9792), + [anon_sym_QMARK] = ACTIONS(9794), + [anon_sym_STAR_EQ] = ACTIONS(9794), + [anon_sym_SLASH_EQ] = ACTIONS(9794), + [anon_sym_PERCENT_EQ] = ACTIONS(9794), + [anon_sym_PLUS_EQ] = ACTIONS(9794), + [anon_sym_DASH_EQ] = ACTIONS(9794), + [anon_sym_LT_LT_EQ] = ACTIONS(9794), + [anon_sym_GT_GT_EQ] = ACTIONS(9794), + [anon_sym_AMP_EQ] = ACTIONS(9794), + [anon_sym_CARET_EQ] = ACTIONS(9794), + [anon_sym_PIPE_EQ] = ACTIONS(9794), + [anon_sym_and_eq] = ACTIONS(9792), + [anon_sym_or_eq] = ACTIONS(9792), + [anon_sym_xor_eq] = ACTIONS(9792), + [anon_sym_LT_EQ_GT] = ACTIONS(9794), + [anon_sym_or] = ACTIONS(9792), + [anon_sym_and] = ACTIONS(9792), + [anon_sym_bitor] = ACTIONS(9792), + [anon_sym_xor] = ACTIONS(9792), + [anon_sym_bitand] = ACTIONS(9792), + [anon_sym_not_eq] = ACTIONS(9792), + [anon_sym_DASH_DASH] = ACTIONS(9794), + [anon_sym_PLUS_PLUS] = ACTIONS(9794), + [anon_sym_DOT] = ACTIONS(9792), + [anon_sym_DOT_STAR] = ACTIONS(9794), + [anon_sym_DASH_GT] = ACTIONS(9794), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9792), + [anon_sym_override] = ACTIONS(9792), + [anon_sym_requires] = ACTIONS(9792), + [anon_sym_COLON_RBRACK] = ACTIONS(9794), + }, + [STATE(3883)] = { + [sym_identifier] = ACTIONS(9313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9315), + [anon_sym_COMMA] = ACTIONS(9315), + [anon_sym_RPAREN] = ACTIONS(9315), + [aux_sym_preproc_if_token2] = ACTIONS(9315), + [aux_sym_preproc_else_token1] = ACTIONS(9315), + [aux_sym_preproc_elif_token1] = ACTIONS(9313), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9315), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9315), + [anon_sym_LPAREN2] = ACTIONS(9315), + [anon_sym_DASH] = ACTIONS(9313), + [anon_sym_PLUS] = ACTIONS(9313), + [anon_sym_STAR] = ACTIONS(9313), + [anon_sym_SLASH] = ACTIONS(9313), + [anon_sym_PERCENT] = ACTIONS(9313), + [anon_sym_PIPE_PIPE] = ACTIONS(9315), + [anon_sym_AMP_AMP] = ACTIONS(9315), + [anon_sym_PIPE] = ACTIONS(9313), + [anon_sym_CARET] = ACTIONS(9313), + [anon_sym_AMP] = ACTIONS(9313), + [anon_sym_EQ_EQ] = ACTIONS(9315), + [anon_sym_BANG_EQ] = ACTIONS(9315), + [anon_sym_GT] = ACTIONS(9313), + [anon_sym_GT_EQ] = ACTIONS(9315), + [anon_sym_LT_EQ] = ACTIONS(9313), + [anon_sym_LT] = ACTIONS(9313), + [anon_sym_LT_LT] = ACTIONS(9313), + [anon_sym_GT_GT] = ACTIONS(9313), + [anon_sym_SEMI] = ACTIONS(9315), + [anon_sym___attribute__] = ACTIONS(9313), + [anon_sym___attribute] = ACTIONS(9313), + [anon_sym_COLON] = ACTIONS(9313), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9315), + [anon_sym_RBRACE] = ACTIONS(9315), + [anon_sym_LBRACK] = ACTIONS(9315), + [anon_sym_EQ] = ACTIONS(9313), + [anon_sym_QMARK] = ACTIONS(9315), + [anon_sym_STAR_EQ] = ACTIONS(9315), + [anon_sym_SLASH_EQ] = ACTIONS(9315), + [anon_sym_PERCENT_EQ] = ACTIONS(9315), + [anon_sym_PLUS_EQ] = ACTIONS(9315), + [anon_sym_DASH_EQ] = ACTIONS(9315), + [anon_sym_LT_LT_EQ] = ACTIONS(9315), + [anon_sym_GT_GT_EQ] = ACTIONS(9315), + [anon_sym_AMP_EQ] = ACTIONS(9315), + [anon_sym_CARET_EQ] = ACTIONS(9315), + [anon_sym_PIPE_EQ] = ACTIONS(9315), + [anon_sym_and_eq] = ACTIONS(9313), + [anon_sym_or_eq] = ACTIONS(9313), + [anon_sym_xor_eq] = ACTIONS(9313), + [anon_sym_LT_EQ_GT] = ACTIONS(9315), + [anon_sym_or] = ACTIONS(9313), + [anon_sym_and] = ACTIONS(9313), + [anon_sym_bitor] = ACTIONS(9313), + [anon_sym_xor] = ACTIONS(9313), + [anon_sym_bitand] = ACTIONS(9313), + [anon_sym_not_eq] = ACTIONS(9313), + [anon_sym_DASH_DASH] = ACTIONS(9315), + [anon_sym_PLUS_PLUS] = ACTIONS(9315), + [anon_sym_DOT] = ACTIONS(9313), + [anon_sym_DOT_STAR] = ACTIONS(9315), + [anon_sym_DASH_GT] = ACTIONS(9315), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9313), + [anon_sym_override] = ACTIONS(9313), + [anon_sym_requires] = ACTIONS(9313), + [anon_sym_COLON_RBRACK] = ACTIONS(9315), + }, + [STATE(3884)] = { + [sym_parameter_list] = STATE(1537), + [sym__function_declarator_seq] = STATE(3980), + [sym_identifier] = ACTIONS(9796), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9798), + [anon_sym_COMMA] = ACTIONS(9798), + [anon_sym_RPAREN] = ACTIONS(9798), + [aux_sym_preproc_if_token2] = ACTIONS(9798), + [aux_sym_preproc_else_token1] = ACTIONS(9798), + [aux_sym_preproc_elif_token1] = ACTIONS(9796), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9798), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9798), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9796), + [anon_sym_PLUS] = ACTIONS(9796), + [anon_sym_STAR] = ACTIONS(9796), + [anon_sym_SLASH] = ACTIONS(9796), + [anon_sym_PERCENT] = ACTIONS(9796), + [anon_sym_PIPE_PIPE] = ACTIONS(9798), + [anon_sym_AMP_AMP] = ACTIONS(9798), + [anon_sym_PIPE] = ACTIONS(9796), + [anon_sym_CARET] = ACTIONS(9796), + [anon_sym_AMP] = ACTIONS(9796), + [anon_sym_EQ_EQ] = ACTIONS(9798), + [anon_sym_BANG_EQ] = ACTIONS(9798), + [anon_sym_GT] = ACTIONS(9796), + [anon_sym_GT_EQ] = ACTIONS(9798), + [anon_sym_LT_EQ] = ACTIONS(9796), + [anon_sym_LT] = ACTIONS(9796), + [anon_sym_LT_LT] = ACTIONS(9796), + [anon_sym_GT_GT] = ACTIONS(9796), + [anon_sym_SEMI] = ACTIONS(9798), + [anon_sym_COLON] = ACTIONS(9796), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9798), + [anon_sym_RBRACE] = ACTIONS(9798), + [anon_sym_LBRACK] = ACTIONS(9778), + [anon_sym_EQ] = ACTIONS(9796), + [anon_sym_QMARK] = ACTIONS(9798), + [anon_sym_STAR_EQ] = ACTIONS(9798), + [anon_sym_SLASH_EQ] = ACTIONS(9798), + [anon_sym_PERCENT_EQ] = ACTIONS(9798), + [anon_sym_PLUS_EQ] = ACTIONS(9798), + [anon_sym_DASH_EQ] = ACTIONS(9798), + [anon_sym_LT_LT_EQ] = ACTIONS(9798), + [anon_sym_GT_GT_EQ] = ACTIONS(9798), + [anon_sym_AMP_EQ] = ACTIONS(9798), + [anon_sym_CARET_EQ] = ACTIONS(9798), + [anon_sym_PIPE_EQ] = ACTIONS(9798), + [anon_sym_and_eq] = ACTIONS(9796), + [anon_sym_or_eq] = ACTIONS(9796), + [anon_sym_xor_eq] = ACTIONS(9796), + [anon_sym_LT_EQ_GT] = ACTIONS(9798), + [anon_sym_or] = ACTIONS(9796), + [anon_sym_and] = ACTIONS(9796), + [anon_sym_bitor] = ACTIONS(9796), + [anon_sym_xor] = ACTIONS(9796), + [anon_sym_bitand] = ACTIONS(9796), + [anon_sym_not_eq] = ACTIONS(9796), + [anon_sym_DASH_DASH] = ACTIONS(9798), + [anon_sym_PLUS_PLUS] = ACTIONS(9798), + [anon_sym_DOT] = ACTIONS(9796), + [anon_sym_DOT_STAR] = ACTIONS(9798), + [anon_sym_DASH_GT] = ACTIONS(9798), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9796), + [anon_sym_override] = ACTIONS(9796), + [anon_sym_requires] = ACTIONS(9796), + [anon_sym_COLON_RBRACK] = ACTIONS(9798), + }, + [STATE(3885)] = { + [sym_parameter_list] = STATE(1537), + [sym__function_declarator_seq] = STATE(3980), + [sym_identifier] = ACTIONS(9800), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9802), + [anon_sym_COMMA] = ACTIONS(9802), + [anon_sym_RPAREN] = ACTIONS(9802), + [aux_sym_preproc_if_token2] = ACTIONS(9802), + [aux_sym_preproc_else_token1] = ACTIONS(9802), + [aux_sym_preproc_elif_token1] = ACTIONS(9800), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9802), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9802), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9800), + [anon_sym_PLUS] = ACTIONS(9800), + [anon_sym_STAR] = ACTIONS(9800), + [anon_sym_SLASH] = ACTIONS(9800), + [anon_sym_PERCENT] = ACTIONS(9800), + [anon_sym_PIPE_PIPE] = ACTIONS(9802), + [anon_sym_AMP_AMP] = ACTIONS(9802), + [anon_sym_PIPE] = ACTIONS(9800), + [anon_sym_CARET] = ACTIONS(9800), + [anon_sym_AMP] = ACTIONS(9800), + [anon_sym_EQ_EQ] = ACTIONS(9802), + [anon_sym_BANG_EQ] = ACTIONS(9802), + [anon_sym_GT] = ACTIONS(9800), + [anon_sym_GT_EQ] = ACTIONS(9802), + [anon_sym_LT_EQ] = ACTIONS(9800), + [anon_sym_LT] = ACTIONS(9800), + [anon_sym_LT_LT] = ACTIONS(9800), + [anon_sym_GT_GT] = ACTIONS(9800), + [anon_sym_SEMI] = ACTIONS(9802), + [anon_sym_COLON] = ACTIONS(9800), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9802), + [anon_sym_RBRACE] = ACTIONS(9802), + [anon_sym_LBRACK] = ACTIONS(9778), + [anon_sym_EQ] = ACTIONS(9800), + [anon_sym_QMARK] = ACTIONS(9802), + [anon_sym_STAR_EQ] = ACTIONS(9802), + [anon_sym_SLASH_EQ] = ACTIONS(9802), + [anon_sym_PERCENT_EQ] = ACTIONS(9802), + [anon_sym_PLUS_EQ] = ACTIONS(9802), + [anon_sym_DASH_EQ] = ACTIONS(9802), + [anon_sym_LT_LT_EQ] = ACTIONS(9802), + [anon_sym_GT_GT_EQ] = ACTIONS(9802), + [anon_sym_AMP_EQ] = ACTIONS(9802), + [anon_sym_CARET_EQ] = ACTIONS(9802), + [anon_sym_PIPE_EQ] = ACTIONS(9802), + [anon_sym_and_eq] = ACTIONS(9800), + [anon_sym_or_eq] = ACTIONS(9800), + [anon_sym_xor_eq] = ACTIONS(9800), + [anon_sym_LT_EQ_GT] = ACTIONS(9802), + [anon_sym_or] = ACTIONS(9800), + [anon_sym_and] = ACTIONS(9800), + [anon_sym_bitor] = ACTIONS(9800), + [anon_sym_xor] = ACTIONS(9800), + [anon_sym_bitand] = ACTIONS(9800), + [anon_sym_not_eq] = ACTIONS(9800), + [anon_sym_DASH_DASH] = ACTIONS(9802), + [anon_sym_PLUS_PLUS] = ACTIONS(9802), + [anon_sym_DOT] = ACTIONS(9800), + [anon_sym_DOT_STAR] = ACTIONS(9802), + [anon_sym_DASH_GT] = ACTIONS(9802), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9800), + [anon_sym_override] = ACTIONS(9800), + [anon_sym_requires] = ACTIONS(9800), + [anon_sym_COLON_RBRACK] = ACTIONS(9802), + }, + [STATE(3886)] = { + [sym_parameter_list] = STATE(1537), + [sym__function_declarator_seq] = STATE(3980), + [sym_identifier] = ACTIONS(9804), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9806), + [anon_sym_COMMA] = ACTIONS(9806), + [anon_sym_RPAREN] = ACTIONS(9806), + [aux_sym_preproc_if_token2] = ACTIONS(9806), + [aux_sym_preproc_else_token1] = ACTIONS(9806), + [aux_sym_preproc_elif_token1] = ACTIONS(9804), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9806), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9806), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9804), + [anon_sym_PLUS] = ACTIONS(9804), + [anon_sym_STAR] = ACTIONS(9804), + [anon_sym_SLASH] = ACTIONS(9804), + [anon_sym_PERCENT] = ACTIONS(9804), + [anon_sym_PIPE_PIPE] = ACTIONS(9806), + [anon_sym_AMP_AMP] = ACTIONS(9806), + [anon_sym_PIPE] = ACTIONS(9804), + [anon_sym_CARET] = ACTIONS(9804), + [anon_sym_AMP] = ACTIONS(9804), + [anon_sym_EQ_EQ] = ACTIONS(9806), + [anon_sym_BANG_EQ] = ACTIONS(9806), + [anon_sym_GT] = ACTIONS(9804), + [anon_sym_GT_EQ] = ACTIONS(9806), + [anon_sym_LT_EQ] = ACTIONS(9804), + [anon_sym_LT] = ACTIONS(9804), + [anon_sym_LT_LT] = ACTIONS(9804), + [anon_sym_GT_GT] = ACTIONS(9804), + [anon_sym_SEMI] = ACTIONS(9806), + [anon_sym_COLON] = ACTIONS(9804), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9806), + [anon_sym_RBRACE] = ACTIONS(9806), + [anon_sym_LBRACK] = ACTIONS(9778), + [anon_sym_EQ] = ACTIONS(9804), + [anon_sym_QMARK] = ACTIONS(9806), + [anon_sym_STAR_EQ] = ACTIONS(9806), + [anon_sym_SLASH_EQ] = ACTIONS(9806), + [anon_sym_PERCENT_EQ] = ACTIONS(9806), + [anon_sym_PLUS_EQ] = ACTIONS(9806), + [anon_sym_DASH_EQ] = ACTIONS(9806), + [anon_sym_LT_LT_EQ] = ACTIONS(9806), + [anon_sym_GT_GT_EQ] = ACTIONS(9806), + [anon_sym_AMP_EQ] = ACTIONS(9806), + [anon_sym_CARET_EQ] = ACTIONS(9806), + [anon_sym_PIPE_EQ] = ACTIONS(9806), + [anon_sym_and_eq] = ACTIONS(9804), + [anon_sym_or_eq] = ACTIONS(9804), + [anon_sym_xor_eq] = ACTIONS(9804), + [anon_sym_LT_EQ_GT] = ACTIONS(9806), + [anon_sym_or] = ACTIONS(9804), + [anon_sym_and] = ACTIONS(9804), + [anon_sym_bitor] = ACTIONS(9804), + [anon_sym_xor] = ACTIONS(9804), + [anon_sym_bitand] = ACTIONS(9804), + [anon_sym_not_eq] = ACTIONS(9804), + [anon_sym_DASH_DASH] = ACTIONS(9806), + [anon_sym_PLUS_PLUS] = ACTIONS(9806), + [anon_sym_DOT] = ACTIONS(9804), + [anon_sym_DOT_STAR] = ACTIONS(9806), + [anon_sym_DASH_GT] = ACTIONS(9806), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9804), + [anon_sym_override] = ACTIONS(9804), + [anon_sym_requires] = ACTIONS(9804), + [anon_sym_COLON_RBRACK] = ACTIONS(9806), + }, + [STATE(3887)] = { + [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(3888)] = { + [sym_decltype_auto] = STATE(4142), + [sym_template_argument_list] = STATE(3471), + [aux_sym_sized_type_specifier_repeat1] = STATE(4198), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5669), + [anon_sym_COMMA] = ACTIONS(5669), + [aux_sym_preproc_if_token2] = ACTIONS(5669), + [aux_sym_preproc_else_token1] = ACTIONS(5669), + [aux_sym_preproc_elif_token1] = ACTIONS(5661), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5669), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5669), + [anon_sym_LPAREN2] = ACTIONS(5669), + [anon_sym_DASH] = ACTIONS(5661), + [anon_sym_PLUS] = ACTIONS(5661), + [anon_sym_STAR] = ACTIONS(5661), + [anon_sym_SLASH] = ACTIONS(5661), + [anon_sym_PERCENT] = ACTIONS(5661), + [anon_sym_PIPE_PIPE] = ACTIONS(5669), + [anon_sym_AMP_AMP] = ACTIONS(5669), + [anon_sym_PIPE] = ACTIONS(5661), + [anon_sym_CARET] = ACTIONS(5661), + [anon_sym_AMP] = ACTIONS(5661), + [anon_sym_EQ_EQ] = ACTIONS(5669), + [anon_sym_BANG_EQ] = ACTIONS(5669), + [anon_sym_GT] = ACTIONS(5661), + [anon_sym_GT_EQ] = ACTIONS(5669), + [anon_sym_LT_EQ] = ACTIONS(5661), + [anon_sym_LT] = ACTIONS(9405), + [anon_sym_LT_LT] = ACTIONS(5661), + [anon_sym_GT_GT] = ACTIONS(5661), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5669), + [anon_sym_signed] = ACTIONS(9808), + [anon_sym_unsigned] = ACTIONS(9808), + [anon_sym_long] = ACTIONS(9808), + [anon_sym_short] = ACTIONS(9808), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_EQ] = ACTIONS(5661), + [anon_sym_QMARK] = ACTIONS(5669), + [anon_sym_STAR_EQ] = ACTIONS(5669), + [anon_sym_SLASH_EQ] = ACTIONS(5669), + [anon_sym_PERCENT_EQ] = ACTIONS(5669), + [anon_sym_PLUS_EQ] = ACTIONS(5669), + [anon_sym_DASH_EQ] = ACTIONS(5669), + [anon_sym_LT_LT_EQ] = ACTIONS(5669), + [anon_sym_GT_GT_EQ] = ACTIONS(5669), + [anon_sym_AMP_EQ] = ACTIONS(5669), + [anon_sym_CARET_EQ] = ACTIONS(5669), + [anon_sym_PIPE_EQ] = ACTIONS(5669), + [anon_sym_and_eq] = ACTIONS(5661), + [anon_sym_or_eq] = ACTIONS(5661), + [anon_sym_xor_eq] = ACTIONS(5661), + [anon_sym_LT_EQ_GT] = ACTIONS(5669), + [anon_sym_or] = ACTIONS(5661), + [anon_sym_and] = ACTIONS(5661), + [anon_sym_bitor] = ACTIONS(5661), + [anon_sym_xor] = ACTIONS(5661), + [anon_sym_bitand] = ACTIONS(5661), + [anon_sym_not_eq] = ACTIONS(5661), + [anon_sym_DASH_DASH] = ACTIONS(5669), + [anon_sym_PLUS_PLUS] = ACTIONS(5669), + [anon_sym_DOT] = ACTIONS(5661), + [anon_sym_DOT_STAR] = ACTIONS(5669), + [anon_sym_DASH_GT] = ACTIONS(5669), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9810), + [anon_sym_decltype] = ACTIONS(9536), + }, + [STATE(3889)] = { + [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_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_final] = ACTIONS(9703), + [anon_sym_override] = ACTIONS(9703), + [anon_sym_requires] = ACTIONS(9703), + [anon_sym_COLON_RBRACK] = ACTIONS(9705), }, - [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(3890)] = { + [sym_attribute_declaration] = STATE(4024), + [sym_parameter_list] = STATE(3487), + [aux_sym_attributed_declarator_repeat1] = STATE(4024), + [sym_identifier] = ACTIONS(9812), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9814), + [anon_sym_COMMA] = ACTIONS(9814), + [anon_sym_RPAREN] = ACTIONS(9814), + [aux_sym_preproc_if_token2] = ACTIONS(9814), + [aux_sym_preproc_else_token1] = ACTIONS(9814), + [aux_sym_preproc_elif_token1] = ACTIONS(9812), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9814), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9814), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9812), + [anon_sym_PLUS] = ACTIONS(9812), + [anon_sym_STAR] = ACTIONS(9812), + [anon_sym_SLASH] = ACTIONS(9812), + [anon_sym_PERCENT] = ACTIONS(9812), + [anon_sym_PIPE_PIPE] = ACTIONS(9814), + [anon_sym_AMP_AMP] = ACTIONS(9814), + [anon_sym_PIPE] = ACTIONS(9812), + [anon_sym_CARET] = ACTIONS(9812), + [anon_sym_AMP] = ACTIONS(9812), + [anon_sym_EQ_EQ] = ACTIONS(9814), + [anon_sym_BANG_EQ] = ACTIONS(9814), + [anon_sym_GT] = ACTIONS(9812), + [anon_sym_GT_EQ] = ACTIONS(9814), + [anon_sym_LT_EQ] = ACTIONS(9812), + [anon_sym_LT] = ACTIONS(9812), + [anon_sym_LT_LT] = ACTIONS(9812), + [anon_sym_GT_GT] = ACTIONS(9812), + [anon_sym_SEMI] = ACTIONS(9814), + [anon_sym___attribute__] = ACTIONS(9812), + [anon_sym___attribute] = ACTIONS(9812), + [anon_sym_COLON] = ACTIONS(9812), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACE] = ACTIONS(9814), + [anon_sym_LBRACK] = ACTIONS(9758), + [anon_sym_EQ] = ACTIONS(9812), + [anon_sym_QMARK] = ACTIONS(9814), + [anon_sym_STAR_EQ] = ACTIONS(9814), + [anon_sym_SLASH_EQ] = ACTIONS(9814), + [anon_sym_PERCENT_EQ] = ACTIONS(9814), + [anon_sym_PLUS_EQ] = ACTIONS(9814), + [anon_sym_DASH_EQ] = ACTIONS(9814), + [anon_sym_LT_LT_EQ] = ACTIONS(9814), + [anon_sym_GT_GT_EQ] = ACTIONS(9814), + [anon_sym_AMP_EQ] = ACTIONS(9814), + [anon_sym_CARET_EQ] = ACTIONS(9814), + [anon_sym_PIPE_EQ] = ACTIONS(9814), + [anon_sym_and_eq] = ACTIONS(9812), + [anon_sym_or_eq] = ACTIONS(9812), + [anon_sym_xor_eq] = ACTIONS(9812), + [anon_sym_LT_EQ_GT] = ACTIONS(9814), + [anon_sym_or] = ACTIONS(9812), + [anon_sym_and] = ACTIONS(9812), + [anon_sym_bitor] = ACTIONS(9812), + [anon_sym_xor] = ACTIONS(9812), + [anon_sym_bitand] = ACTIONS(9812), + [anon_sym_not_eq] = ACTIONS(9812), + [anon_sym_DASH_DASH] = ACTIONS(9814), + [anon_sym_PLUS_PLUS] = ACTIONS(9814), + [anon_sym_DOT] = ACTIONS(9812), + [anon_sym_DOT_STAR] = ACTIONS(9814), + [anon_sym_DASH_GT] = ACTIONS(9814), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9814), + }, + [STATE(3891)] = { + [sym_identifier] = ACTIONS(9816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9818), + [anon_sym_COMMA] = ACTIONS(9818), + [anon_sym_RPAREN] = ACTIONS(9818), + [aux_sym_preproc_if_token2] = ACTIONS(9818), + [aux_sym_preproc_else_token1] = ACTIONS(9818), + [aux_sym_preproc_elif_token1] = ACTIONS(9816), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9818), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9818), + [anon_sym_LPAREN2] = ACTIONS(9818), + [anon_sym_DASH] = ACTIONS(9816), + [anon_sym_PLUS] = ACTIONS(9816), + [anon_sym_STAR] = ACTIONS(9816), + [anon_sym_SLASH] = ACTIONS(9816), + [anon_sym_PERCENT] = ACTIONS(9816), + [anon_sym_PIPE_PIPE] = ACTIONS(9818), + [anon_sym_AMP_AMP] = ACTIONS(9818), + [anon_sym_PIPE] = ACTIONS(9816), + [anon_sym_CARET] = ACTIONS(9816), + [anon_sym_AMP] = ACTIONS(9816), + [anon_sym_EQ_EQ] = ACTIONS(9818), + [anon_sym_BANG_EQ] = ACTIONS(9818), + [anon_sym_GT] = ACTIONS(9816), + [anon_sym_GT_EQ] = ACTIONS(9818), + [anon_sym_LT_EQ] = ACTIONS(9816), + [anon_sym_LT] = ACTIONS(9816), + [anon_sym_LT_LT] = ACTIONS(9816), + [anon_sym_GT_GT] = ACTIONS(9816), + [anon_sym_SEMI] = ACTIONS(9818), + [anon_sym___attribute__] = ACTIONS(9816), + [anon_sym___attribute] = ACTIONS(9816), + [anon_sym_COLON] = ACTIONS(9816), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9818), + [anon_sym_RBRACE] = ACTIONS(9818), + [anon_sym_LBRACK] = ACTIONS(9818), + [anon_sym_EQ] = ACTIONS(9816), + [anon_sym_QMARK] = ACTIONS(9818), + [anon_sym_STAR_EQ] = ACTIONS(9818), + [anon_sym_SLASH_EQ] = ACTIONS(9818), + [anon_sym_PERCENT_EQ] = ACTIONS(9818), + [anon_sym_PLUS_EQ] = ACTIONS(9818), + [anon_sym_DASH_EQ] = ACTIONS(9818), + [anon_sym_LT_LT_EQ] = ACTIONS(9818), + [anon_sym_GT_GT_EQ] = ACTIONS(9818), + [anon_sym_AMP_EQ] = ACTIONS(9818), + [anon_sym_CARET_EQ] = ACTIONS(9818), + [anon_sym_PIPE_EQ] = ACTIONS(9818), + [anon_sym_and_eq] = ACTIONS(9816), + [anon_sym_or_eq] = ACTIONS(9816), + [anon_sym_xor_eq] = ACTIONS(9816), + [anon_sym_LT_EQ_GT] = ACTIONS(9818), + [anon_sym_or] = ACTIONS(9816), + [anon_sym_and] = ACTIONS(9816), + [anon_sym_bitor] = ACTIONS(9816), + [anon_sym_xor] = ACTIONS(9816), + [anon_sym_bitand] = ACTIONS(9816), + [anon_sym_not_eq] = ACTIONS(9816), + [anon_sym_DASH_DASH] = ACTIONS(9818), + [anon_sym_PLUS_PLUS] = ACTIONS(9818), + [anon_sym_DOT] = ACTIONS(9816), + [anon_sym_DOT_STAR] = ACTIONS(9818), + [anon_sym_DASH_GT] = ACTIONS(9818), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9816), + [anon_sym_override] = ACTIONS(9816), + [anon_sym_requires] = ACTIONS(9816), + [anon_sym_COLON_RBRACK] = ACTIONS(9818), + }, + [STATE(3892)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(6849), + [sym_ms_pointer_modifier] = STATE(3893), + [sym__abstract_declarator] = STATE(9501), + [sym_abstract_parenthesized_declarator] = STATE(9348), + [sym_abstract_pointer_declarator] = STATE(9348), + [sym_abstract_function_declarator] = STATE(9348), + [sym_abstract_array_declarator] = STATE(9348), + [sym_type_qualifier] = STATE(4865), + [sym_alignas_qualifier] = STATE(4094), + [sym_parameter_list] = STATE(5105), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(9348), + [sym__function_declarator_seq] = STATE(9349), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9669), + [sym_abstract_qualified_identifier] = STATE(9348), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4865), + [aux_sym_pointer_declarator_repeat1] = STATE(3893), + [sym_identifier] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(9637), + [anon_sym_STAR] = ACTIONS(9820), + [anon_sym_AMP_AMP] = ACTIONS(9822), + [anon_sym_AMP] = ACTIONS(9824), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_COLON] = ACTIONS(5996), + [anon_sym_COLON_COLON] = ACTIONS(9826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5994), + [sym_ms_restrict_modifier] = ACTIONS(9647), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(9647), + [sym_ms_signed_ptr_modifier] = ACTIONS(9647), + [anon_sym__unaligned] = ACTIONS(9649), + [anon_sym___unaligned] = ACTIONS(9649), + [anon_sym_LBRACE] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(9651), + [anon_sym_EQ] = ACTIONS(5994), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [anon_sym_asm] = ACTIONS(5996), + [anon_sym___asm__] = ACTIONS(5996), + [anon_sym___asm] = ACTIONS(5996), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_try] = ACTIONS(5996), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3893)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(6849), + [sym_ms_pointer_modifier] = STATE(6442), + [sym__abstract_declarator] = STATE(9488), + [sym_abstract_parenthesized_declarator] = STATE(9348), + [sym_abstract_pointer_declarator] = STATE(9348), + [sym_abstract_function_declarator] = STATE(9348), + [sym_abstract_array_declarator] = STATE(9348), + [sym_type_qualifier] = STATE(4868), + [sym_alignas_qualifier] = STATE(4094), + [sym_parameter_list] = STATE(5105), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(9348), + [sym__function_declarator_seq] = STATE(9349), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9669), + [sym_abstract_qualified_identifier] = STATE(9348), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(4868), + [aux_sym_pointer_declarator_repeat1] = STATE(6442), + [sym_identifier] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(9637), + [anon_sym_STAR] = ACTIONS(9820), + [anon_sym_AMP_AMP] = ACTIONS(9822), + [anon_sym_AMP] = ACTIONS(9824), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_COLON] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(9826), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5968), + [sym_ms_restrict_modifier] = ACTIONS(9647), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(9647), + [sym_ms_signed_ptr_modifier] = ACTIONS(9647), + [anon_sym__unaligned] = ACTIONS(9649), + [anon_sym___unaligned] = ACTIONS(9649), + [anon_sym_LBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(9651), + [anon_sym_EQ] = ACTIONS(5968), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [anon_sym_asm] = ACTIONS(5970), + [anon_sym___asm__] = ACTIONS(5970), + [anon_sym___asm] = ACTIONS(5970), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_try] = ACTIONS(5970), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3894)] = { + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7472), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7472), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7472), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7472), + [anon_sym_GT_GT] = ACTIONS(7472), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7472), + [anon_sym___attribute] = ACTIONS(7472), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_STAR_EQ] = ACTIONS(7474), + [anon_sym_SLASH_EQ] = ACTIONS(7474), + [anon_sym_PERCENT_EQ] = ACTIONS(7474), + [anon_sym_PLUS_EQ] = ACTIONS(7474), + [anon_sym_DASH_EQ] = ACTIONS(7474), + [anon_sym_LT_LT_EQ] = ACTIONS(7474), + [anon_sym_GT_GT_EQ] = ACTIONS(7474), + [anon_sym_AMP_EQ] = ACTIONS(7474), + [anon_sym_CARET_EQ] = ACTIONS(7474), + [anon_sym_PIPE_EQ] = ACTIONS(7474), + [anon_sym_and_eq] = ACTIONS(7472), + [anon_sym_or_eq] = ACTIONS(7472), + [anon_sym_xor_eq] = ACTIONS(7472), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(7474), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7472), + [anon_sym_override] = ACTIONS(7472), + [anon_sym_requires] = ACTIONS(7472), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), + }, + [STATE(3895)] = { + [sym_attribute_declaration] = STATE(4024), + [sym_parameter_list] = STATE(3487), + [aux_sym_attributed_declarator_repeat1] = STATE(4024), + [sym_identifier] = ACTIONS(9828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9830), + [anon_sym_COMMA] = ACTIONS(9830), + [anon_sym_RPAREN] = ACTIONS(9830), + [aux_sym_preproc_if_token2] = ACTIONS(9830), + [aux_sym_preproc_else_token1] = ACTIONS(9830), + [aux_sym_preproc_elif_token1] = ACTIONS(9828), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9830), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9830), + [anon_sym_LPAREN2] = ACTIONS(9756), + [anon_sym_DASH] = ACTIONS(9828), + [anon_sym_PLUS] = ACTIONS(9828), + [anon_sym_STAR] = ACTIONS(9828), + [anon_sym_SLASH] = ACTIONS(9828), + [anon_sym_PERCENT] = ACTIONS(9828), + [anon_sym_PIPE_PIPE] = ACTIONS(9830), + [anon_sym_AMP_AMP] = ACTIONS(9830), + [anon_sym_PIPE] = ACTIONS(9828), + [anon_sym_CARET] = ACTIONS(9828), + [anon_sym_AMP] = ACTIONS(9828), + [anon_sym_EQ_EQ] = ACTIONS(9830), + [anon_sym_BANG_EQ] = ACTIONS(9830), + [anon_sym_GT] = ACTIONS(9828), + [anon_sym_GT_EQ] = ACTIONS(9830), + [anon_sym_LT_EQ] = ACTIONS(9828), + [anon_sym_LT] = ACTIONS(9828), + [anon_sym_LT_LT] = ACTIONS(9828), + [anon_sym_GT_GT] = ACTIONS(9828), + [anon_sym_SEMI] = ACTIONS(9830), + [anon_sym___attribute__] = ACTIONS(9828), + [anon_sym___attribute] = ACTIONS(9828), + [anon_sym_COLON] = ACTIONS(9828), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACE] = ACTIONS(9830), + [anon_sym_LBRACK] = ACTIONS(9758), + [anon_sym_EQ] = ACTIONS(9828), + [anon_sym_QMARK] = ACTIONS(9830), + [anon_sym_STAR_EQ] = ACTIONS(9830), + [anon_sym_SLASH_EQ] = ACTIONS(9830), + [anon_sym_PERCENT_EQ] = ACTIONS(9830), + [anon_sym_PLUS_EQ] = ACTIONS(9830), + [anon_sym_DASH_EQ] = ACTIONS(9830), + [anon_sym_LT_LT_EQ] = ACTIONS(9830), + [anon_sym_GT_GT_EQ] = ACTIONS(9830), + [anon_sym_AMP_EQ] = ACTIONS(9830), + [anon_sym_CARET_EQ] = ACTIONS(9830), + [anon_sym_PIPE_EQ] = ACTIONS(9830), + [anon_sym_and_eq] = ACTIONS(9828), + [anon_sym_or_eq] = ACTIONS(9828), + [anon_sym_xor_eq] = ACTIONS(9828), + [anon_sym_LT_EQ_GT] = ACTIONS(9830), + [anon_sym_or] = ACTIONS(9828), + [anon_sym_and] = ACTIONS(9828), + [anon_sym_bitor] = ACTIONS(9828), + [anon_sym_xor] = ACTIONS(9828), + [anon_sym_bitand] = ACTIONS(9828), + [anon_sym_not_eq] = ACTIONS(9828), + [anon_sym_DASH_DASH] = ACTIONS(9830), + [anon_sym_PLUS_PLUS] = ACTIONS(9830), + [anon_sym_DOT] = ACTIONS(9828), + [anon_sym_DOT_STAR] = ACTIONS(9830), + [anon_sym_DASH_GT] = ACTIONS(9830), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9830), + }, + [STATE(3896)] = { + [sym_argument_list] = STATE(4329), + [sym_initializer_list] = STATE(4329), + [sym_identifier] = ACTIONS(9832), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9834), + [anon_sym_COMMA] = ACTIONS(9834), + [anon_sym_RPAREN] = ACTIONS(9834), + [aux_sym_preproc_if_token2] = ACTIONS(9834), + [aux_sym_preproc_else_token1] = ACTIONS(9834), + [aux_sym_preproc_elif_token1] = ACTIONS(9832), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9834), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9834), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(9832), + [anon_sym_PLUS] = ACTIONS(9832), + [anon_sym_STAR] = ACTIONS(9832), + [anon_sym_SLASH] = ACTIONS(9832), + [anon_sym_PERCENT] = ACTIONS(9832), + [anon_sym_PIPE_PIPE] = ACTIONS(9834), + [anon_sym_AMP_AMP] = ACTIONS(9834), + [anon_sym_PIPE] = ACTIONS(9832), + [anon_sym_CARET] = ACTIONS(9832), + [anon_sym_AMP] = ACTIONS(9832), + [anon_sym_EQ_EQ] = ACTIONS(9834), + [anon_sym_BANG_EQ] = ACTIONS(9834), + [anon_sym_GT] = ACTIONS(9832), + [anon_sym_GT_EQ] = ACTIONS(9834), + [anon_sym_LT_EQ] = ACTIONS(9832), + [anon_sym_LT] = ACTIONS(9832), + [anon_sym_LT_LT] = ACTIONS(9832), + [anon_sym_GT_GT] = ACTIONS(9832), + [anon_sym_SEMI] = ACTIONS(9834), + [anon_sym___attribute__] = ACTIONS(9832), + [anon_sym___attribute] = ACTIONS(9832), + [anon_sym_COLON] = ACTIONS(9832), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9834), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9834), + [anon_sym_LBRACK] = ACTIONS(9834), + [anon_sym_EQ] = ACTIONS(9832), + [anon_sym_QMARK] = ACTIONS(9834), + [anon_sym_STAR_EQ] = ACTIONS(9834), + [anon_sym_SLASH_EQ] = ACTIONS(9834), + [anon_sym_PERCENT_EQ] = ACTIONS(9834), + [anon_sym_PLUS_EQ] = ACTIONS(9834), + [anon_sym_DASH_EQ] = ACTIONS(9834), + [anon_sym_LT_LT_EQ] = ACTIONS(9834), + [anon_sym_GT_GT_EQ] = ACTIONS(9834), + [anon_sym_AMP_EQ] = ACTIONS(9834), + [anon_sym_CARET_EQ] = ACTIONS(9834), + [anon_sym_PIPE_EQ] = ACTIONS(9834), + [anon_sym_and_eq] = ACTIONS(9832), + [anon_sym_or_eq] = ACTIONS(9832), + [anon_sym_xor_eq] = ACTIONS(9832), + [anon_sym_LT_EQ_GT] = ACTIONS(9834), + [anon_sym_or] = ACTIONS(9832), + [anon_sym_and] = ACTIONS(9832), + [anon_sym_bitor] = ACTIONS(9832), + [anon_sym_xor] = ACTIONS(9832), + [anon_sym_bitand] = ACTIONS(9832), + [anon_sym_not_eq] = ACTIONS(9832), + [anon_sym_DASH_DASH] = ACTIONS(9834), + [anon_sym_PLUS_PLUS] = ACTIONS(9834), + [anon_sym_DOT] = ACTIONS(9832), + [anon_sym_DOT_STAR] = ACTIONS(9834), + [anon_sym_DASH_GT] = ACTIONS(9834), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9834), + }, + [STATE(3897)] = { + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym__function_exception_specification] = STATE(4473), + [sym__function_attributes_end] = STATE(6662), + [sym__function_postfix] = STATE(5947), + [sym_trailing_return_type] = STATE(6825), + [sym_noexcept] = STATE(4473), + [sym_throw_specifier] = STATE(4473), + [sym_requires_clause] = STATE(5947), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7474), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7474), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7474), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7474), + [anon_sym_GT_GT] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7590), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(9605), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9676), + [anon_sym_override] = ACTIONS(9676), + [anon_sym_noexcept] = ACTIONS(7602), + [anon_sym_throw] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(9679), + }, + [STATE(3898)] = { + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym__function_exception_specification] = STATE(4474), + [sym__function_attributes_end] = STATE(6668), + [sym__function_postfix] = STATE(6055), + [sym_trailing_return_type] = STATE(6767), + [sym_noexcept] = STATE(4474), + [sym_throw_specifier] = STATE(4474), + [sym_requires_clause] = STATE(6055), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7623), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7623), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7623), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7623), + [anon_sym_GT_GT] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(7590), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(9836), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9839), + [anon_sym_override] = ACTIONS(9839), + [anon_sym_noexcept] = ACTIONS(7602), + [anon_sym_throw] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(9842), + }, + [STATE(3899)] = { + [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), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7741), }, - [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(3900)] = { + [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_COLON_RBRACK] = ACTIONS(7749), }, - [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), + [STATE(3901)] = { + [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), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7757), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [STATE(3902)] = { + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7292), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7292), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7292), + [anon_sym_GT_GT] = ACTIONS(7292), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym___extension__] = ACTIONS(7290), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON] = ACTIONS(7290), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7292), + [anon_sym___based] = ACTIONS(7290), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_RBRACE] = ACTIONS(7292), + [anon_sym_signed] = ACTIONS(7290), + [anon_sym_unsigned] = ACTIONS(7290), + [anon_sym_long] = ACTIONS(7290), + [anon_sym_short] = ACTIONS(7290), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym_const] = ACTIONS(7290), + [anon_sym_constexpr] = ACTIONS(7290), + [anon_sym_volatile] = ACTIONS(7290), + [anon_sym_restrict] = ACTIONS(7290), + [anon_sym___restrict__] = ACTIONS(7290), + [anon_sym__Atomic] = ACTIONS(7290), + [anon_sym__Noreturn] = ACTIONS(7290), + [anon_sym_noreturn] = ACTIONS(7290), + [anon_sym__Nonnull] = ACTIONS(7290), + [anon_sym_mutable] = ACTIONS(7290), + [anon_sym_constinit] = ACTIONS(7290), + [anon_sym_consteval] = ACTIONS(7290), + [anon_sym_alignas] = ACTIONS(7290), + [anon_sym__Alignas] = ACTIONS(7290), + [sym_primitive_type] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7292), + }, + [STATE(3903)] = { + [sym_identifier] = ACTIONS(7775), + [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(7777), + [anon_sym_SLASH] = ACTIONS(7775), + [anon_sym_PERCENT] = ACTIONS(7777), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_CARET] = ACTIONS(7777), + [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(7777), + [anon_sym_GT_GT] = ACTIONS(7777), + [anon_sym_SEMI] = ACTIONS(7777), + [anon_sym___extension__] = ACTIONS(7775), + [anon_sym___attribute__] = ACTIONS(7775), + [anon_sym___attribute] = ACTIONS(7775), + [anon_sym_COLON] = ACTIONS(7775), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7777), + [anon_sym___based] = ACTIONS(7775), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_RBRACE] = ACTIONS(7777), + [anon_sym_signed] = ACTIONS(7775), + [anon_sym_unsigned] = ACTIONS(7775), + [anon_sym_long] = ACTIONS(7775), + [anon_sym_short] = ACTIONS(7775), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7775), + [anon_sym_volatile] = ACTIONS(7775), + [anon_sym_restrict] = ACTIONS(7775), + [anon_sym___restrict__] = ACTIONS(7775), + [anon_sym__Atomic] = ACTIONS(7775), + [anon_sym__Noreturn] = ACTIONS(7775), + [anon_sym_noreturn] = ACTIONS(7775), + [anon_sym__Nonnull] = ACTIONS(7775), + [anon_sym_mutable] = ACTIONS(7775), + [anon_sym_constinit] = ACTIONS(7775), + [anon_sym_consteval] = ACTIONS(7775), + [anon_sym_alignas] = ACTIONS(7775), + [anon_sym__Alignas] = ACTIONS(7775), + [sym_primitive_type] = ACTIONS(7775), + [anon_sym_QMARK] = ACTIONS(7777), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7775), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7775), + [anon_sym_not_eq] = ACTIONS(7775), + [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_COLON_RBRACK] = ACTIONS(7777), + }, + [STATE(3904)] = { + [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_COLON_RBRACK] = ACTIONS(7781), + }, + [STATE(3905)] = { + [sym_identifier] = ACTIONS(9267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9269), + [anon_sym_COMMA] = ACTIONS(9269), + [anon_sym_RPAREN] = ACTIONS(9269), + [aux_sym_preproc_if_token2] = ACTIONS(9269), + [aux_sym_preproc_else_token1] = ACTIONS(9269), + [aux_sym_preproc_elif_token1] = ACTIONS(9267), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9269), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9269), + [anon_sym_LPAREN2] = ACTIONS(9269), + [anon_sym_DASH] = ACTIONS(9267), + [anon_sym_PLUS] = ACTIONS(9267), + [anon_sym_STAR] = ACTIONS(9267), + [anon_sym_SLASH] = ACTIONS(9267), + [anon_sym_PERCENT] = ACTIONS(9267), + [anon_sym_PIPE_PIPE] = ACTIONS(9269), + [anon_sym_AMP_AMP] = ACTIONS(9269), + [anon_sym_PIPE] = ACTIONS(9267), + [anon_sym_CARET] = ACTIONS(9267), + [anon_sym_AMP] = ACTIONS(9267), + [anon_sym_EQ_EQ] = ACTIONS(9269), + [anon_sym_BANG_EQ] = ACTIONS(9269), + [anon_sym_GT] = ACTIONS(9267), + [anon_sym_GT_EQ] = ACTIONS(9269), + [anon_sym_LT_EQ] = ACTIONS(9267), + [anon_sym_LT] = ACTIONS(9267), + [anon_sym_LT_LT] = ACTIONS(9267), + [anon_sym_GT_GT] = ACTIONS(9267), + [anon_sym_SEMI] = ACTIONS(9269), + [anon_sym___attribute__] = ACTIONS(9267), + [anon_sym___attribute] = ACTIONS(9267), + [anon_sym_COLON] = ACTIONS(9267), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9269), + [anon_sym_RBRACE] = ACTIONS(9269), + [anon_sym_LBRACK] = ACTIONS(9269), + [anon_sym_EQ] = ACTIONS(9267), + [anon_sym_QMARK] = ACTIONS(9269), + [anon_sym_STAR_EQ] = ACTIONS(9269), + [anon_sym_SLASH_EQ] = ACTIONS(9269), + [anon_sym_PERCENT_EQ] = ACTIONS(9269), + [anon_sym_PLUS_EQ] = ACTIONS(9269), + [anon_sym_DASH_EQ] = ACTIONS(9269), + [anon_sym_LT_LT_EQ] = ACTIONS(9269), + [anon_sym_GT_GT_EQ] = ACTIONS(9269), + [anon_sym_AMP_EQ] = ACTIONS(9269), + [anon_sym_CARET_EQ] = ACTIONS(9269), + [anon_sym_PIPE_EQ] = ACTIONS(9269), + [anon_sym_and_eq] = ACTIONS(9267), + [anon_sym_or_eq] = ACTIONS(9267), + [anon_sym_xor_eq] = ACTIONS(9267), + [anon_sym_LT_EQ_GT] = ACTIONS(9269), + [anon_sym_or] = ACTIONS(9267), + [anon_sym_and] = ACTIONS(9267), + [anon_sym_bitor] = ACTIONS(9267), + [anon_sym_xor] = ACTIONS(9267), + [anon_sym_bitand] = ACTIONS(9267), + [anon_sym_not_eq] = ACTIONS(9267), + [anon_sym_DASH_DASH] = ACTIONS(9269), + [anon_sym_PLUS_PLUS] = ACTIONS(9269), + [anon_sym_DOT] = ACTIONS(9267), + [anon_sym_DOT_STAR] = ACTIONS(9269), + [anon_sym_DASH_GT] = ACTIONS(9269), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9267), + [anon_sym_override] = ACTIONS(9267), + [anon_sym_requires] = ACTIONS(9267), + [anon_sym_COLON_RBRACK] = ACTIONS(9269), + }, + [STATE(3906)] = { + [sym_identifier] = ACTIONS(7790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7792), + [anon_sym_COMMA] = ACTIONS(7792), + [anon_sym_RPAREN] = ACTIONS(7792), + [anon_sym_LPAREN2] = ACTIONS(7792), + [anon_sym_DASH] = ACTIONS(7790), + [anon_sym_PLUS] = ACTIONS(7790), + [anon_sym_STAR] = ACTIONS(7792), + [anon_sym_SLASH] = ACTIONS(7790), + [anon_sym_PERCENT] = ACTIONS(7792), + [anon_sym_PIPE_PIPE] = ACTIONS(7792), + [anon_sym_AMP_AMP] = ACTIONS(7792), + [anon_sym_PIPE] = ACTIONS(7790), + [anon_sym_CARET] = ACTIONS(7792), + [anon_sym_AMP] = ACTIONS(7790), + [anon_sym_EQ_EQ] = ACTIONS(7792), + [anon_sym_BANG_EQ] = ACTIONS(7792), + [anon_sym_GT] = ACTIONS(7790), + [anon_sym_GT_EQ] = ACTIONS(7792), + [anon_sym_LT_EQ] = ACTIONS(7790), + [anon_sym_LT] = ACTIONS(7790), + [anon_sym_LT_LT] = ACTIONS(7792), + [anon_sym_GT_GT] = ACTIONS(7792), + [anon_sym_SEMI] = ACTIONS(7792), + [anon_sym___extension__] = ACTIONS(7790), + [anon_sym___attribute__] = ACTIONS(7790), + [anon_sym___attribute] = ACTIONS(7790), + [anon_sym_COLON] = ACTIONS(7790), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7792), + [anon_sym___based] = ACTIONS(7790), + [anon_sym_LBRACE] = ACTIONS(7792), + [anon_sym_RBRACE] = ACTIONS(7792), + [anon_sym_signed] = ACTIONS(7790), + [anon_sym_unsigned] = ACTIONS(7790), + [anon_sym_long] = ACTIONS(7790), + [anon_sym_short] = ACTIONS(7790), + [anon_sym_LBRACK] = ACTIONS(7792), + [anon_sym_const] = ACTIONS(7790), + [anon_sym_constexpr] = ACTIONS(7790), + [anon_sym_volatile] = ACTIONS(7790), + [anon_sym_restrict] = ACTIONS(7790), + [anon_sym___restrict__] = ACTIONS(7790), + [anon_sym__Atomic] = ACTIONS(7790), + [anon_sym__Noreturn] = ACTIONS(7790), + [anon_sym_noreturn] = ACTIONS(7790), + [anon_sym__Nonnull] = ACTIONS(7790), + [anon_sym_mutable] = ACTIONS(7790), + [anon_sym_constinit] = ACTIONS(7790), + [anon_sym_consteval] = ACTIONS(7790), + [anon_sym_alignas] = ACTIONS(7790), + [anon_sym__Alignas] = ACTIONS(7790), + [sym_primitive_type] = ACTIONS(7790), + [anon_sym_QMARK] = ACTIONS(7792), + [anon_sym_LT_EQ_GT] = ACTIONS(7792), + [anon_sym_or] = ACTIONS(7790), + [anon_sym_and] = ACTIONS(7790), + [anon_sym_bitor] = ACTIONS(7790), + [anon_sym_xor] = ACTIONS(7790), + [anon_sym_bitand] = ACTIONS(7790), + [anon_sym_not_eq] = ACTIONS(7790), + [anon_sym_DASH_DASH] = ACTIONS(7792), + [anon_sym_PLUS_PLUS] = ACTIONS(7792), + [anon_sym_DOT] = ACTIONS(7790), + [anon_sym_DOT_STAR] = ACTIONS(7792), + [anon_sym_DASH_GT] = ACTIONS(7792), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7792), + }, + [STATE(3907)] = { + [sym_identifier] = ACTIONS(9845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9847), + [anon_sym_COMMA] = ACTIONS(9847), + [anon_sym_RPAREN] = ACTIONS(9847), + [aux_sym_preproc_if_token2] = ACTIONS(9847), + [aux_sym_preproc_else_token1] = ACTIONS(9847), + [aux_sym_preproc_elif_token1] = ACTIONS(9845), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9847), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9847), + [anon_sym_LPAREN2] = ACTIONS(9847), + [anon_sym_DASH] = ACTIONS(9845), + [anon_sym_PLUS] = ACTIONS(9845), + [anon_sym_STAR] = ACTIONS(9845), + [anon_sym_SLASH] = ACTIONS(9845), + [anon_sym_PERCENT] = ACTIONS(9845), + [anon_sym_PIPE_PIPE] = ACTIONS(9847), + [anon_sym_AMP_AMP] = ACTIONS(9847), + [anon_sym_PIPE] = ACTIONS(9845), + [anon_sym_CARET] = ACTIONS(9845), + [anon_sym_AMP] = ACTIONS(9845), + [anon_sym_EQ_EQ] = ACTIONS(9847), + [anon_sym_BANG_EQ] = ACTIONS(9847), + [anon_sym_GT] = ACTIONS(9845), + [anon_sym_GT_EQ] = ACTIONS(9847), + [anon_sym_LT_EQ] = ACTIONS(9845), + [anon_sym_LT] = ACTIONS(9845), + [anon_sym_LT_LT] = ACTIONS(9845), + [anon_sym_GT_GT] = ACTIONS(9845), + [anon_sym_SEMI] = ACTIONS(9847), + [anon_sym___attribute__] = ACTIONS(9845), + [anon_sym___attribute] = ACTIONS(9845), + [anon_sym_COLON] = ACTIONS(9845), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9847), + [anon_sym_RBRACE] = ACTIONS(9847), + [anon_sym_LBRACK] = ACTIONS(9847), + [anon_sym_EQ] = ACTIONS(9845), + [anon_sym_QMARK] = ACTIONS(9847), + [anon_sym_STAR_EQ] = ACTIONS(9847), + [anon_sym_SLASH_EQ] = ACTIONS(9847), + [anon_sym_PERCENT_EQ] = ACTIONS(9847), + [anon_sym_PLUS_EQ] = ACTIONS(9847), + [anon_sym_DASH_EQ] = ACTIONS(9847), + [anon_sym_LT_LT_EQ] = ACTIONS(9847), + [anon_sym_GT_GT_EQ] = ACTIONS(9847), + [anon_sym_AMP_EQ] = ACTIONS(9847), + [anon_sym_CARET_EQ] = ACTIONS(9847), + [anon_sym_PIPE_EQ] = ACTIONS(9847), + [anon_sym_and_eq] = ACTIONS(9845), + [anon_sym_or_eq] = ACTIONS(9845), + [anon_sym_xor_eq] = ACTIONS(9845), + [anon_sym_LT_EQ_GT] = ACTIONS(9847), + [anon_sym_or] = ACTIONS(9845), + [anon_sym_and] = ACTIONS(9845), + [anon_sym_bitor] = ACTIONS(9845), + [anon_sym_xor] = ACTIONS(9845), + [anon_sym_bitand] = ACTIONS(9845), + [anon_sym_not_eq] = ACTIONS(9845), + [anon_sym_DASH_DASH] = ACTIONS(9847), + [anon_sym_PLUS_PLUS] = ACTIONS(9847), + [anon_sym_DOT] = ACTIONS(9845), + [anon_sym_DOT_STAR] = ACTIONS(9847), + [anon_sym_DASH_GT] = ACTIONS(9847), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9845), + [anon_sym_override] = ACTIONS(9845), + [anon_sym_requires] = ACTIONS(9845), + [anon_sym_COLON_RBRACK] = ACTIONS(9847), + }, + [STATE(3908)] = { + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7796), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7796), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7796), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7796), + [anon_sym_GT_GT] = ACTIONS(7796), + [anon_sym_SEMI] = ACTIONS(7796), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym___attribute__] = ACTIONS(7794), + [anon_sym___attribute] = ACTIONS(7794), + [anon_sym_COLON] = ACTIONS(7794), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7796), + [anon_sym___based] = ACTIONS(7794), + [anon_sym_LBRACE] = ACTIONS(7796), + [anon_sym_RBRACE] = ACTIONS(7796), + [anon_sym_signed] = ACTIONS(7794), + [anon_sym_unsigned] = ACTIONS(7794), + [anon_sym_long] = ACTIONS(7794), + [anon_sym_short] = ACTIONS(7794), + [anon_sym_LBRACK] = ACTIONS(7796), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [sym_primitive_type] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7796), + }, + [STATE(3909)] = { + [sym_identifier] = ACTIONS(7802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7804), + [anon_sym_COMMA] = ACTIONS(7804), + [anon_sym_RPAREN] = ACTIONS(7804), + [anon_sym_LPAREN2] = ACTIONS(7804), + [anon_sym_DASH] = ACTIONS(7802), + [anon_sym_PLUS] = ACTIONS(7802), + [anon_sym_STAR] = ACTIONS(7804), + [anon_sym_SLASH] = ACTIONS(7802), + [anon_sym_PERCENT] = ACTIONS(7804), + [anon_sym_PIPE_PIPE] = ACTIONS(7804), + [anon_sym_AMP_AMP] = ACTIONS(7804), + [anon_sym_PIPE] = ACTIONS(7802), + [anon_sym_CARET] = ACTIONS(7804), + [anon_sym_AMP] = ACTIONS(7802), + [anon_sym_EQ_EQ] = ACTIONS(7804), + [anon_sym_BANG_EQ] = ACTIONS(7804), + [anon_sym_GT] = ACTIONS(7802), + [anon_sym_GT_EQ] = ACTIONS(7804), + [anon_sym_LT_EQ] = ACTIONS(7802), + [anon_sym_LT] = ACTIONS(7802), + [anon_sym_LT_LT] = ACTIONS(7804), + [anon_sym_GT_GT] = ACTIONS(7804), + [anon_sym_SEMI] = ACTIONS(7804), + [anon_sym___extension__] = ACTIONS(7802), + [anon_sym___attribute__] = ACTIONS(7802), + [anon_sym___attribute] = ACTIONS(7802), + [anon_sym_COLON] = ACTIONS(7802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7804), + [anon_sym___based] = ACTIONS(7802), + [anon_sym_LBRACE] = ACTIONS(7804), + [anon_sym_RBRACE] = ACTIONS(7804), + [anon_sym_signed] = ACTIONS(7802), + [anon_sym_unsigned] = ACTIONS(7802), + [anon_sym_long] = ACTIONS(7802), + [anon_sym_short] = ACTIONS(7802), + [anon_sym_LBRACK] = ACTIONS(7804), + [anon_sym_const] = ACTIONS(7802), + [anon_sym_constexpr] = ACTIONS(7802), + [anon_sym_volatile] = ACTIONS(7802), + [anon_sym_restrict] = ACTIONS(7802), + [anon_sym___restrict__] = ACTIONS(7802), + [anon_sym__Atomic] = ACTIONS(7802), + [anon_sym__Noreturn] = ACTIONS(7802), + [anon_sym_noreturn] = ACTIONS(7802), + [anon_sym__Nonnull] = ACTIONS(7802), + [anon_sym_mutable] = ACTIONS(7802), + [anon_sym_constinit] = ACTIONS(7802), + [anon_sym_consteval] = ACTIONS(7802), + [anon_sym_alignas] = ACTIONS(7802), + [anon_sym__Alignas] = ACTIONS(7802), + [sym_primitive_type] = ACTIONS(7802), + [anon_sym_QMARK] = ACTIONS(7804), + [anon_sym_LT_EQ_GT] = ACTIONS(7804), + [anon_sym_or] = ACTIONS(7802), + [anon_sym_and] = ACTIONS(7802), + [anon_sym_bitor] = ACTIONS(7802), + [anon_sym_xor] = ACTIONS(7802), + [anon_sym_bitand] = ACTIONS(7802), + [anon_sym_not_eq] = ACTIONS(7802), + [anon_sym_DASH_DASH] = ACTIONS(7804), + [anon_sym_PLUS_PLUS] = ACTIONS(7804), + [anon_sym_DOT] = ACTIONS(7802), + [anon_sym_DOT_STAR] = ACTIONS(7804), + [anon_sym_DASH_GT] = ACTIONS(7804), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7804), + }, + [STATE(3910)] = { + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7796), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7796), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7796), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7796), + [anon_sym_GT_GT] = ACTIONS(7796), + [anon_sym_SEMI] = ACTIONS(7796), + [anon_sym___extension__] = ACTIONS(7794), + [anon_sym___attribute__] = ACTIONS(7794), + [anon_sym___attribute] = ACTIONS(7794), + [anon_sym_COLON] = ACTIONS(7794), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7796), + [anon_sym___based] = ACTIONS(7794), + [anon_sym_LBRACE] = ACTIONS(7796), + [anon_sym_RBRACE] = ACTIONS(7796), + [anon_sym_signed] = ACTIONS(7794), + [anon_sym_unsigned] = ACTIONS(7794), + [anon_sym_long] = ACTIONS(7794), + [anon_sym_short] = ACTIONS(7794), + [anon_sym_LBRACK] = ACTIONS(7796), + [anon_sym_const] = ACTIONS(7794), + [anon_sym_constexpr] = ACTIONS(7794), + [anon_sym_volatile] = ACTIONS(7794), + [anon_sym_restrict] = ACTIONS(7794), + [anon_sym___restrict__] = ACTIONS(7794), + [anon_sym__Atomic] = ACTIONS(7794), + [anon_sym__Noreturn] = ACTIONS(7794), + [anon_sym_noreturn] = ACTIONS(7794), + [anon_sym__Nonnull] = ACTIONS(7794), + [anon_sym_mutable] = ACTIONS(7794), + [anon_sym_constinit] = ACTIONS(7794), + [anon_sym_consteval] = ACTIONS(7794), + [anon_sym_alignas] = ACTIONS(7794), + [anon_sym__Alignas] = ACTIONS(7794), + [sym_primitive_type] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7796), + }, + [STATE(3911)] = { + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON] = ACTIONS(5760), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5699), + [anon_sym_or_eq] = ACTIONS(5699), + [anon_sym_xor_eq] = ACTIONS(5699), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + }, + [STATE(3912)] = { + [sym_identifier] = ACTIONS(7810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7812), + [anon_sym_COMMA] = ACTIONS(7812), + [anon_sym_RPAREN] = ACTIONS(7812), + [anon_sym_LPAREN2] = ACTIONS(7812), + [anon_sym_DASH] = ACTIONS(7810), + [anon_sym_PLUS] = ACTIONS(7810), + [anon_sym_STAR] = ACTIONS(7812), + [anon_sym_SLASH] = ACTIONS(7810), + [anon_sym_PERCENT] = ACTIONS(7812), + [anon_sym_PIPE_PIPE] = ACTIONS(7812), + [anon_sym_AMP_AMP] = ACTIONS(7812), + [anon_sym_PIPE] = ACTIONS(7810), + [anon_sym_CARET] = ACTIONS(7812), + [anon_sym_AMP] = ACTIONS(7810), + [anon_sym_EQ_EQ] = ACTIONS(7812), + [anon_sym_BANG_EQ] = ACTIONS(7812), + [anon_sym_GT] = ACTIONS(7810), + [anon_sym_GT_EQ] = ACTIONS(7812), + [anon_sym_LT_EQ] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(7810), + [anon_sym_LT_LT] = ACTIONS(7812), + [anon_sym_GT_GT] = ACTIONS(7812), + [anon_sym_SEMI] = ACTIONS(7812), + [anon_sym___extension__] = ACTIONS(7810), + [anon_sym___attribute__] = ACTIONS(7810), + [anon_sym___attribute] = ACTIONS(7810), + [anon_sym_COLON] = ACTIONS(7810), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7812), + [anon_sym___based] = ACTIONS(7810), + [anon_sym_LBRACE] = ACTIONS(7812), + [anon_sym_RBRACE] = ACTIONS(7812), + [anon_sym_signed] = ACTIONS(7810), + [anon_sym_unsigned] = ACTIONS(7810), + [anon_sym_long] = ACTIONS(7810), + [anon_sym_short] = ACTIONS(7810), + [anon_sym_LBRACK] = ACTIONS(7812), + [anon_sym_const] = ACTIONS(7810), + [anon_sym_constexpr] = ACTIONS(7810), + [anon_sym_volatile] = ACTIONS(7810), + [anon_sym_restrict] = ACTIONS(7810), + [anon_sym___restrict__] = ACTIONS(7810), + [anon_sym__Atomic] = ACTIONS(7810), + [anon_sym__Noreturn] = ACTIONS(7810), + [anon_sym_noreturn] = ACTIONS(7810), + [anon_sym__Nonnull] = ACTIONS(7810), + [anon_sym_mutable] = ACTIONS(7810), + [anon_sym_constinit] = ACTIONS(7810), + [anon_sym_consteval] = ACTIONS(7810), + [anon_sym_alignas] = ACTIONS(7810), + [anon_sym__Alignas] = ACTIONS(7810), + [sym_primitive_type] = ACTIONS(7810), + [anon_sym_QMARK] = ACTIONS(7812), + [anon_sym_LT_EQ_GT] = ACTIONS(7812), + [anon_sym_or] = ACTIONS(7810), + [anon_sym_and] = ACTIONS(7810), + [anon_sym_bitor] = ACTIONS(7810), + [anon_sym_xor] = ACTIONS(7810), + [anon_sym_bitand] = ACTIONS(7810), + [anon_sym_not_eq] = ACTIONS(7810), + [anon_sym_DASH_DASH] = ACTIONS(7812), + [anon_sym_PLUS_PLUS] = ACTIONS(7812), + [anon_sym_DOT] = ACTIONS(7810), + [anon_sym_DOT_STAR] = ACTIONS(7812), + [anon_sym_DASH_GT] = ACTIONS(7812), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7812), + }, + [STATE(3913)] = { + [sym_argument_list] = STATE(4186), + [sym_initializer_list] = STATE(4186), + [sym_identifier] = ACTIONS(9849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9851), + [anon_sym_COMMA] = ACTIONS(9851), + [anon_sym_RPAREN] = ACTIONS(9851), + [aux_sym_preproc_if_token2] = ACTIONS(9851), + [aux_sym_preproc_else_token1] = ACTIONS(9851), + [aux_sym_preproc_elif_token1] = ACTIONS(9849), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9851), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9851), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(9849), + [anon_sym_PLUS] = ACTIONS(9849), + [anon_sym_STAR] = ACTIONS(9849), + [anon_sym_SLASH] = ACTIONS(9849), + [anon_sym_PERCENT] = ACTIONS(9849), + [anon_sym_PIPE_PIPE] = ACTIONS(9851), + [anon_sym_AMP_AMP] = ACTIONS(9851), + [anon_sym_PIPE] = ACTIONS(9849), + [anon_sym_CARET] = ACTIONS(9849), + [anon_sym_AMP] = ACTIONS(9849), + [anon_sym_EQ_EQ] = ACTIONS(9851), + [anon_sym_BANG_EQ] = ACTIONS(9851), + [anon_sym_GT] = ACTIONS(9849), + [anon_sym_GT_EQ] = ACTIONS(9851), + [anon_sym_LT_EQ] = ACTIONS(9849), + [anon_sym_LT] = ACTIONS(9849), + [anon_sym_LT_LT] = ACTIONS(9849), + [anon_sym_GT_GT] = ACTIONS(9849), + [anon_sym_SEMI] = ACTIONS(9851), + [anon_sym___attribute__] = ACTIONS(9849), + [anon_sym___attribute] = ACTIONS(9849), + [anon_sym_COLON] = ACTIONS(9849), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9851), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9851), + [anon_sym_LBRACK] = ACTIONS(9851), + [anon_sym_EQ] = ACTIONS(9849), + [anon_sym_QMARK] = ACTIONS(9851), + [anon_sym_STAR_EQ] = ACTIONS(9851), + [anon_sym_SLASH_EQ] = ACTIONS(9851), + [anon_sym_PERCENT_EQ] = ACTIONS(9851), + [anon_sym_PLUS_EQ] = ACTIONS(9851), + [anon_sym_DASH_EQ] = ACTIONS(9851), + [anon_sym_LT_LT_EQ] = ACTIONS(9851), + [anon_sym_GT_GT_EQ] = ACTIONS(9851), + [anon_sym_AMP_EQ] = ACTIONS(9851), + [anon_sym_CARET_EQ] = ACTIONS(9851), + [anon_sym_PIPE_EQ] = ACTIONS(9851), + [anon_sym_and_eq] = ACTIONS(9849), + [anon_sym_or_eq] = ACTIONS(9849), + [anon_sym_xor_eq] = ACTIONS(9849), + [anon_sym_LT_EQ_GT] = ACTIONS(9851), + [anon_sym_or] = ACTIONS(9849), + [anon_sym_and] = ACTIONS(9849), + [anon_sym_bitor] = ACTIONS(9849), + [anon_sym_xor] = ACTIONS(9849), + [anon_sym_bitand] = ACTIONS(9849), + [anon_sym_not_eq] = ACTIONS(9849), + [anon_sym_DASH_DASH] = ACTIONS(9851), + [anon_sym_PLUS_PLUS] = ACTIONS(9851), + [anon_sym_DOT] = ACTIONS(9849), + [anon_sym_DOT_STAR] = ACTIONS(9851), + [anon_sym_DASH_GT] = ACTIONS(9851), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9851), + }, + [STATE(3914)] = { + [sym_identifier] = ACTIONS(9271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9273), + [anon_sym_COMMA] = ACTIONS(9273), + [anon_sym_RPAREN] = ACTIONS(9273), + [aux_sym_preproc_if_token2] = ACTIONS(9273), + [aux_sym_preproc_else_token1] = ACTIONS(9273), + [aux_sym_preproc_elif_token1] = ACTIONS(9271), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9273), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9273), + [anon_sym_LPAREN2] = ACTIONS(9273), + [anon_sym_DASH] = ACTIONS(9271), + [anon_sym_PLUS] = ACTIONS(9271), + [anon_sym_STAR] = ACTIONS(9271), + [anon_sym_SLASH] = ACTIONS(9271), + [anon_sym_PERCENT] = ACTIONS(9271), + [anon_sym_PIPE_PIPE] = ACTIONS(9273), + [anon_sym_AMP_AMP] = ACTIONS(9273), + [anon_sym_PIPE] = ACTIONS(9271), + [anon_sym_CARET] = ACTIONS(9271), + [anon_sym_AMP] = ACTIONS(9271), + [anon_sym_EQ_EQ] = ACTIONS(9273), + [anon_sym_BANG_EQ] = ACTIONS(9273), + [anon_sym_GT] = ACTIONS(9271), + [anon_sym_GT_EQ] = ACTIONS(9273), + [anon_sym_LT_EQ] = ACTIONS(9271), + [anon_sym_LT] = ACTIONS(9271), + [anon_sym_LT_LT] = ACTIONS(9271), + [anon_sym_GT_GT] = ACTIONS(9271), + [anon_sym_SEMI] = ACTIONS(9273), + [anon_sym___attribute__] = ACTIONS(9271), + [anon_sym___attribute] = ACTIONS(9271), + [anon_sym_COLON] = ACTIONS(9271), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9273), + [anon_sym_RBRACE] = ACTIONS(9273), + [anon_sym_LBRACK] = ACTIONS(9273), + [anon_sym_EQ] = ACTIONS(9271), + [anon_sym_QMARK] = ACTIONS(9273), + [anon_sym_STAR_EQ] = ACTIONS(9273), + [anon_sym_SLASH_EQ] = ACTIONS(9273), + [anon_sym_PERCENT_EQ] = ACTIONS(9273), + [anon_sym_PLUS_EQ] = ACTIONS(9273), + [anon_sym_DASH_EQ] = ACTIONS(9273), + [anon_sym_LT_LT_EQ] = ACTIONS(9273), + [anon_sym_GT_GT_EQ] = ACTIONS(9273), + [anon_sym_AMP_EQ] = ACTIONS(9273), + [anon_sym_CARET_EQ] = ACTIONS(9273), + [anon_sym_PIPE_EQ] = ACTIONS(9273), + [anon_sym_and_eq] = ACTIONS(9271), + [anon_sym_or_eq] = ACTIONS(9271), + [anon_sym_xor_eq] = ACTIONS(9271), + [anon_sym_LT_EQ_GT] = ACTIONS(9273), + [anon_sym_or] = ACTIONS(9271), + [anon_sym_and] = ACTIONS(9271), + [anon_sym_bitor] = ACTIONS(9271), + [anon_sym_xor] = ACTIONS(9271), + [anon_sym_bitand] = ACTIONS(9271), + [anon_sym_not_eq] = ACTIONS(9271), + [anon_sym_DASH_DASH] = ACTIONS(9273), + [anon_sym_PLUS_PLUS] = ACTIONS(9273), + [anon_sym_DOT] = ACTIONS(9271), + [anon_sym_DOT_STAR] = ACTIONS(9273), + [anon_sym_DASH_GT] = ACTIONS(9273), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9271), + [anon_sym_override] = ACTIONS(9271), + [anon_sym_requires] = ACTIONS(9271), + [anon_sym_COLON_RBRACK] = ACTIONS(9273), + }, + [STATE(3915)] = { + [sym_identifier] = ACTIONS(9263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9265), + [anon_sym_COMMA] = ACTIONS(9265), + [anon_sym_RPAREN] = ACTIONS(9265), + [aux_sym_preproc_if_token2] = ACTIONS(9265), + [aux_sym_preproc_else_token1] = ACTIONS(9265), + [aux_sym_preproc_elif_token1] = ACTIONS(9263), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9265), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9265), + [anon_sym_LPAREN2] = ACTIONS(9265), + [anon_sym_DASH] = ACTIONS(9263), + [anon_sym_PLUS] = ACTIONS(9263), + [anon_sym_STAR] = ACTIONS(9263), + [anon_sym_SLASH] = ACTIONS(9263), + [anon_sym_PERCENT] = ACTIONS(9263), + [anon_sym_PIPE_PIPE] = ACTIONS(9265), + [anon_sym_AMP_AMP] = ACTIONS(9265), + [anon_sym_PIPE] = ACTIONS(9263), + [anon_sym_CARET] = ACTIONS(9263), + [anon_sym_AMP] = ACTIONS(9263), + [anon_sym_EQ_EQ] = ACTIONS(9265), + [anon_sym_BANG_EQ] = ACTIONS(9265), + [anon_sym_GT] = ACTIONS(9263), + [anon_sym_GT_EQ] = ACTIONS(9265), + [anon_sym_LT_EQ] = ACTIONS(9263), + [anon_sym_LT] = ACTIONS(9263), + [anon_sym_LT_LT] = ACTIONS(9263), + [anon_sym_GT_GT] = ACTIONS(9263), + [anon_sym_SEMI] = ACTIONS(9265), + [anon_sym___attribute__] = ACTIONS(9263), + [anon_sym___attribute] = ACTIONS(9263), + [anon_sym_COLON] = ACTIONS(9263), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9265), + [anon_sym_RBRACE] = ACTIONS(9265), + [anon_sym_LBRACK] = ACTIONS(9265), + [anon_sym_EQ] = ACTIONS(9263), + [anon_sym_QMARK] = ACTIONS(9265), + [anon_sym_STAR_EQ] = ACTIONS(9265), + [anon_sym_SLASH_EQ] = ACTIONS(9265), + [anon_sym_PERCENT_EQ] = ACTIONS(9265), + [anon_sym_PLUS_EQ] = ACTIONS(9265), + [anon_sym_DASH_EQ] = ACTIONS(9265), + [anon_sym_LT_LT_EQ] = ACTIONS(9265), + [anon_sym_GT_GT_EQ] = ACTIONS(9265), + [anon_sym_AMP_EQ] = ACTIONS(9265), + [anon_sym_CARET_EQ] = ACTIONS(9265), + [anon_sym_PIPE_EQ] = ACTIONS(9265), + [anon_sym_and_eq] = ACTIONS(9263), + [anon_sym_or_eq] = ACTIONS(9263), + [anon_sym_xor_eq] = ACTIONS(9263), + [anon_sym_LT_EQ_GT] = ACTIONS(9265), + [anon_sym_or] = ACTIONS(9263), + [anon_sym_and] = ACTIONS(9263), + [anon_sym_bitor] = ACTIONS(9263), + [anon_sym_xor] = ACTIONS(9263), + [anon_sym_bitand] = ACTIONS(9263), + [anon_sym_not_eq] = ACTIONS(9263), + [anon_sym_DASH_DASH] = ACTIONS(9265), + [anon_sym_PLUS_PLUS] = ACTIONS(9265), + [anon_sym_DOT] = ACTIONS(9263), + [anon_sym_DOT_STAR] = ACTIONS(9265), + [anon_sym_DASH_GT] = ACTIONS(9265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9263), + [anon_sym_override] = ACTIONS(9263), + [anon_sym_requires] = ACTIONS(9263), + [anon_sym_COLON_RBRACK] = ACTIONS(9265), + }, + [STATE(3916)] = { + [sym_identifier] = ACTIONS(9853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9855), + [anon_sym_COMMA] = ACTIONS(9855), + [anon_sym_RPAREN] = ACTIONS(9855), + [aux_sym_preproc_if_token2] = ACTIONS(9855), + [aux_sym_preproc_else_token1] = ACTIONS(9855), + [aux_sym_preproc_elif_token1] = ACTIONS(9853), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9855), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9855), + [anon_sym_LPAREN2] = ACTIONS(9855), + [anon_sym_DASH] = ACTIONS(9853), + [anon_sym_PLUS] = ACTIONS(9853), + [anon_sym_STAR] = ACTIONS(9853), + [anon_sym_SLASH] = ACTIONS(9853), + [anon_sym_PERCENT] = ACTIONS(9853), + [anon_sym_PIPE_PIPE] = ACTIONS(9855), + [anon_sym_AMP_AMP] = ACTIONS(9743), + [anon_sym_PIPE] = ACTIONS(9853), + [anon_sym_CARET] = ACTIONS(9853), + [anon_sym_AMP] = ACTIONS(9853), + [anon_sym_EQ_EQ] = ACTIONS(9855), + [anon_sym_BANG_EQ] = ACTIONS(9855), + [anon_sym_GT] = ACTIONS(9853), + [anon_sym_GT_EQ] = ACTIONS(9855), + [anon_sym_LT_EQ] = ACTIONS(9853), + [anon_sym_LT] = ACTIONS(9853), + [anon_sym_LT_LT] = ACTIONS(9853), + [anon_sym_GT_GT] = ACTIONS(9853), + [anon_sym_SEMI] = ACTIONS(9855), + [anon_sym___attribute__] = ACTIONS(9853), + [anon_sym___attribute] = ACTIONS(9853), + [anon_sym_COLON] = ACTIONS(9853), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9855), + [anon_sym_RBRACE] = ACTIONS(9855), + [anon_sym_LBRACK] = ACTIONS(9855), + [anon_sym_EQ] = ACTIONS(9853), + [anon_sym_QMARK] = ACTIONS(9855), + [anon_sym_STAR_EQ] = ACTIONS(9855), + [anon_sym_SLASH_EQ] = ACTIONS(9855), + [anon_sym_PERCENT_EQ] = ACTIONS(9855), + [anon_sym_PLUS_EQ] = ACTIONS(9855), + [anon_sym_DASH_EQ] = ACTIONS(9855), + [anon_sym_LT_LT_EQ] = ACTIONS(9855), + [anon_sym_GT_GT_EQ] = ACTIONS(9855), + [anon_sym_AMP_EQ] = ACTIONS(9855), + [anon_sym_CARET_EQ] = ACTIONS(9855), + [anon_sym_PIPE_EQ] = ACTIONS(9855), + [anon_sym_and_eq] = ACTIONS(9853), + [anon_sym_or_eq] = ACTIONS(9853), + [anon_sym_xor_eq] = ACTIONS(9853), + [anon_sym_LT_EQ_GT] = ACTIONS(9855), + [anon_sym_or] = ACTIONS(9853), + [anon_sym_and] = ACTIONS(9747), + [anon_sym_bitor] = ACTIONS(9853), + [anon_sym_xor] = ACTIONS(9853), + [anon_sym_bitand] = ACTIONS(9853), + [anon_sym_not_eq] = ACTIONS(9853), + [anon_sym_DASH_DASH] = ACTIONS(9855), + [anon_sym_PLUS_PLUS] = ACTIONS(9855), + [anon_sym_DOT] = ACTIONS(9853), + [anon_sym_DOT_STAR] = ACTIONS(9855), + [anon_sym_DASH_GT] = ACTIONS(9855), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9853), + [anon_sym_override] = ACTIONS(9853), + [anon_sym_requires] = ACTIONS(9853), + [anon_sym_COLON_RBRACK] = ACTIONS(9855), + }, + [STATE(3917)] = { + [sym_identifier] = ACTIONS(9275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9277), + [anon_sym_COMMA] = ACTIONS(9277), + [anon_sym_RPAREN] = ACTIONS(9277), + [aux_sym_preproc_if_token2] = ACTIONS(9277), + [aux_sym_preproc_else_token1] = ACTIONS(9277), + [aux_sym_preproc_elif_token1] = ACTIONS(9275), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9277), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9277), + [anon_sym_LPAREN2] = ACTIONS(9277), + [anon_sym_DASH] = ACTIONS(9275), + [anon_sym_PLUS] = ACTIONS(9275), + [anon_sym_STAR] = ACTIONS(9275), + [anon_sym_SLASH] = ACTIONS(9275), + [anon_sym_PERCENT] = ACTIONS(9275), + [anon_sym_PIPE_PIPE] = ACTIONS(9277), + [anon_sym_AMP_AMP] = ACTIONS(9277), + [anon_sym_PIPE] = ACTIONS(9275), + [anon_sym_CARET] = ACTIONS(9275), + [anon_sym_AMP] = ACTIONS(9275), + [anon_sym_EQ_EQ] = ACTIONS(9277), + [anon_sym_BANG_EQ] = ACTIONS(9277), + [anon_sym_GT] = ACTIONS(9275), + [anon_sym_GT_EQ] = ACTIONS(9277), + [anon_sym_LT_EQ] = ACTIONS(9275), + [anon_sym_LT] = ACTIONS(9275), + [anon_sym_LT_LT] = ACTIONS(9275), + [anon_sym_GT_GT] = ACTIONS(9275), + [anon_sym_SEMI] = ACTIONS(9277), + [anon_sym___attribute__] = ACTIONS(9275), + [anon_sym___attribute] = ACTIONS(9275), + [anon_sym_COLON] = ACTIONS(9275), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9277), + [anon_sym_RBRACE] = ACTIONS(9277), + [anon_sym_LBRACK] = ACTIONS(9277), + [anon_sym_EQ] = ACTIONS(9275), + [anon_sym_QMARK] = ACTIONS(9277), + [anon_sym_STAR_EQ] = ACTIONS(9277), + [anon_sym_SLASH_EQ] = ACTIONS(9277), + [anon_sym_PERCENT_EQ] = ACTIONS(9277), + [anon_sym_PLUS_EQ] = ACTIONS(9277), + [anon_sym_DASH_EQ] = ACTIONS(9277), + [anon_sym_LT_LT_EQ] = ACTIONS(9277), + [anon_sym_GT_GT_EQ] = ACTIONS(9277), + [anon_sym_AMP_EQ] = ACTIONS(9277), + [anon_sym_CARET_EQ] = ACTIONS(9277), + [anon_sym_PIPE_EQ] = ACTIONS(9277), + [anon_sym_and_eq] = ACTIONS(9275), + [anon_sym_or_eq] = ACTIONS(9275), + [anon_sym_xor_eq] = ACTIONS(9275), + [anon_sym_LT_EQ_GT] = ACTIONS(9277), + [anon_sym_or] = ACTIONS(9275), + [anon_sym_and] = ACTIONS(9275), + [anon_sym_bitor] = ACTIONS(9275), + [anon_sym_xor] = ACTIONS(9275), + [anon_sym_bitand] = ACTIONS(9275), + [anon_sym_not_eq] = ACTIONS(9275), + [anon_sym_DASH_DASH] = ACTIONS(9277), + [anon_sym_PLUS_PLUS] = ACTIONS(9277), + [anon_sym_DOT] = ACTIONS(9275), + [anon_sym_DOT_STAR] = ACTIONS(9277), + [anon_sym_DASH_GT] = ACTIONS(9277), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9275), + [anon_sym_override] = ACTIONS(9275), + [anon_sym_requires] = ACTIONS(9275), + [anon_sym_COLON_RBRACK] = ACTIONS(9277), + }, + [STATE(3918)] = { + [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(3919)] = { + [sym_identifier] = ACTIONS(9253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9255), + [anon_sym_COMMA] = ACTIONS(9255), + [anon_sym_RPAREN] = ACTIONS(9255), + [aux_sym_preproc_if_token2] = ACTIONS(9255), + [aux_sym_preproc_else_token1] = ACTIONS(9255), + [aux_sym_preproc_elif_token1] = ACTIONS(9253), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9255), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9255), + [anon_sym_LPAREN2] = ACTIONS(9255), + [anon_sym_DASH] = ACTIONS(9253), + [anon_sym_PLUS] = ACTIONS(9253), + [anon_sym_STAR] = ACTIONS(9253), + [anon_sym_SLASH] = ACTIONS(9253), + [anon_sym_PERCENT] = ACTIONS(9253), + [anon_sym_PIPE_PIPE] = ACTIONS(9255), + [anon_sym_AMP_AMP] = ACTIONS(9255), + [anon_sym_PIPE] = ACTIONS(9253), + [anon_sym_CARET] = ACTIONS(9253), + [anon_sym_AMP] = ACTIONS(9253), + [anon_sym_EQ_EQ] = ACTIONS(9255), + [anon_sym_BANG_EQ] = ACTIONS(9255), + [anon_sym_GT] = ACTIONS(9253), + [anon_sym_GT_EQ] = ACTIONS(9255), + [anon_sym_LT_EQ] = ACTIONS(9253), + [anon_sym_LT] = ACTIONS(9253), + [anon_sym_LT_LT] = ACTIONS(9253), + [anon_sym_GT_GT] = ACTIONS(9253), + [anon_sym_SEMI] = ACTIONS(9255), + [anon_sym___attribute__] = ACTIONS(9253), + [anon_sym___attribute] = ACTIONS(9253), + [anon_sym_COLON] = ACTIONS(9253), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9255), + [anon_sym_RBRACE] = ACTIONS(9255), + [anon_sym_LBRACK] = ACTIONS(9255), + [anon_sym_EQ] = ACTIONS(9253), + [anon_sym_QMARK] = ACTIONS(9255), + [anon_sym_STAR_EQ] = ACTIONS(9255), + [anon_sym_SLASH_EQ] = ACTIONS(9255), + [anon_sym_PERCENT_EQ] = ACTIONS(9255), + [anon_sym_PLUS_EQ] = ACTIONS(9255), + [anon_sym_DASH_EQ] = ACTIONS(9255), + [anon_sym_LT_LT_EQ] = ACTIONS(9255), + [anon_sym_GT_GT_EQ] = ACTIONS(9255), + [anon_sym_AMP_EQ] = ACTIONS(9255), + [anon_sym_CARET_EQ] = ACTIONS(9255), + [anon_sym_PIPE_EQ] = ACTIONS(9255), + [anon_sym_and_eq] = ACTIONS(9253), + [anon_sym_or_eq] = ACTIONS(9253), + [anon_sym_xor_eq] = ACTIONS(9253), + [anon_sym_LT_EQ_GT] = ACTIONS(9255), + [anon_sym_or] = ACTIONS(9253), + [anon_sym_and] = ACTIONS(9253), + [anon_sym_bitor] = ACTIONS(9253), + [anon_sym_xor] = ACTIONS(9253), + [anon_sym_bitand] = ACTIONS(9253), + [anon_sym_not_eq] = ACTIONS(9253), + [anon_sym_DASH_DASH] = ACTIONS(9255), + [anon_sym_PLUS_PLUS] = ACTIONS(9255), + [anon_sym_DOT] = ACTIONS(9253), + [anon_sym_DOT_STAR] = ACTIONS(9255), + [anon_sym_DASH_GT] = ACTIONS(9255), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9253), + [anon_sym_override] = ACTIONS(9253), + [anon_sym_requires] = ACTIONS(9253), + [anon_sym_COLON_RBRACK] = ACTIONS(9255), + }, + [STATE(3920)] = { + [sym_argument_list] = STATE(4189), + [sym_initializer_list] = STATE(4189), + [sym_identifier] = ACTIONS(9857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9859), + [anon_sym_COMMA] = ACTIONS(9859), + [anon_sym_RPAREN] = ACTIONS(9859), + [aux_sym_preproc_if_token2] = ACTIONS(9859), + [aux_sym_preproc_else_token1] = ACTIONS(9859), + [aux_sym_preproc_elif_token1] = ACTIONS(9857), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9859), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9859), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(9857), + [anon_sym_PLUS] = ACTIONS(9857), + [anon_sym_STAR] = ACTIONS(9857), + [anon_sym_SLASH] = ACTIONS(9857), + [anon_sym_PERCENT] = ACTIONS(9857), + [anon_sym_PIPE_PIPE] = ACTIONS(9859), + [anon_sym_AMP_AMP] = ACTIONS(9859), + [anon_sym_PIPE] = ACTIONS(9857), + [anon_sym_CARET] = ACTIONS(9857), + [anon_sym_AMP] = ACTIONS(9857), + [anon_sym_EQ_EQ] = ACTIONS(9859), + [anon_sym_BANG_EQ] = ACTIONS(9859), + [anon_sym_GT] = ACTIONS(9857), + [anon_sym_GT_EQ] = ACTIONS(9859), + [anon_sym_LT_EQ] = ACTIONS(9857), + [anon_sym_LT] = ACTIONS(9857), + [anon_sym_LT_LT] = ACTIONS(9857), + [anon_sym_GT_GT] = ACTIONS(9857), + [anon_sym_SEMI] = ACTIONS(9859), + [anon_sym___attribute__] = ACTIONS(9857), + [anon_sym___attribute] = ACTIONS(9857), + [anon_sym_COLON] = ACTIONS(9857), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9859), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(9859), + [anon_sym_LBRACK] = ACTIONS(9859), + [anon_sym_EQ] = ACTIONS(9857), + [anon_sym_QMARK] = ACTIONS(9859), + [anon_sym_STAR_EQ] = ACTIONS(9859), + [anon_sym_SLASH_EQ] = ACTIONS(9859), + [anon_sym_PERCENT_EQ] = ACTIONS(9859), + [anon_sym_PLUS_EQ] = ACTIONS(9859), + [anon_sym_DASH_EQ] = ACTIONS(9859), + [anon_sym_LT_LT_EQ] = ACTIONS(9859), + [anon_sym_GT_GT_EQ] = ACTIONS(9859), + [anon_sym_AMP_EQ] = ACTIONS(9859), + [anon_sym_CARET_EQ] = ACTIONS(9859), + [anon_sym_PIPE_EQ] = ACTIONS(9859), + [anon_sym_and_eq] = ACTIONS(9857), + [anon_sym_or_eq] = ACTIONS(9857), + [anon_sym_xor_eq] = ACTIONS(9857), + [anon_sym_LT_EQ_GT] = ACTIONS(9859), + [anon_sym_or] = ACTIONS(9857), + [anon_sym_and] = ACTIONS(9857), + [anon_sym_bitor] = ACTIONS(9857), + [anon_sym_xor] = ACTIONS(9857), + [anon_sym_bitand] = ACTIONS(9857), + [anon_sym_not_eq] = ACTIONS(9857), + [anon_sym_DASH_DASH] = ACTIONS(9859), + [anon_sym_PLUS_PLUS] = ACTIONS(9859), + [anon_sym_DOT] = ACTIONS(9857), + [anon_sym_DOT_STAR] = ACTIONS(9859), + [anon_sym_DASH_GT] = ACTIONS(9859), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9859), + }, + [STATE(3921)] = { + [sym_identifier] = ACTIONS(7818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7820), + [anon_sym_COMMA] = ACTIONS(7820), + [anon_sym_RPAREN] = ACTIONS(7820), + [anon_sym_LPAREN2] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7818), + [anon_sym_STAR] = ACTIONS(7820), + [anon_sym_SLASH] = ACTIONS(7818), + [anon_sym_PERCENT] = ACTIONS(7820), + [anon_sym_PIPE_PIPE] = ACTIONS(7820), + [anon_sym_AMP_AMP] = ACTIONS(7820), + [anon_sym_PIPE] = ACTIONS(7818), + [anon_sym_CARET] = ACTIONS(7820), + [anon_sym_AMP] = ACTIONS(7818), + [anon_sym_EQ_EQ] = ACTIONS(7820), + [anon_sym_BANG_EQ] = ACTIONS(7820), + [anon_sym_GT] = ACTIONS(7818), + [anon_sym_GT_EQ] = ACTIONS(7820), + [anon_sym_LT_EQ] = ACTIONS(7818), + [anon_sym_LT] = ACTIONS(7818), + [anon_sym_LT_LT] = ACTIONS(7820), + [anon_sym_GT_GT] = ACTIONS(7820), + [anon_sym_SEMI] = ACTIONS(7820), + [anon_sym___extension__] = ACTIONS(7818), + [anon_sym___attribute__] = ACTIONS(7818), + [anon_sym___attribute] = ACTIONS(7818), + [anon_sym_COLON] = ACTIONS(7818), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7820), + [anon_sym___based] = ACTIONS(7818), + [anon_sym_LBRACE] = ACTIONS(7820), + [anon_sym_RBRACE] = ACTIONS(7820), + [anon_sym_signed] = ACTIONS(7818), + [anon_sym_unsigned] = ACTIONS(7818), + [anon_sym_long] = ACTIONS(7818), + [anon_sym_short] = ACTIONS(7818), + [anon_sym_LBRACK] = ACTIONS(7820), + [anon_sym_const] = ACTIONS(7818), + [anon_sym_constexpr] = ACTIONS(7818), + [anon_sym_volatile] = ACTIONS(7818), + [anon_sym_restrict] = ACTIONS(7818), + [anon_sym___restrict__] = ACTIONS(7818), + [anon_sym__Atomic] = ACTIONS(7818), + [anon_sym__Noreturn] = ACTIONS(7818), + [anon_sym_noreturn] = ACTIONS(7818), + [anon_sym__Nonnull] = ACTIONS(7818), + [anon_sym_mutable] = ACTIONS(7818), + [anon_sym_constinit] = ACTIONS(7818), + [anon_sym_consteval] = ACTIONS(7818), + [anon_sym_alignas] = ACTIONS(7818), + [anon_sym__Alignas] = ACTIONS(7818), + [sym_primitive_type] = ACTIONS(7818), + [anon_sym_QMARK] = ACTIONS(7820), + [anon_sym_LT_EQ_GT] = ACTIONS(7820), + [anon_sym_or] = ACTIONS(7818), + [anon_sym_and] = ACTIONS(7818), + [anon_sym_bitor] = ACTIONS(7818), + [anon_sym_xor] = ACTIONS(7818), + [anon_sym_bitand] = ACTIONS(7818), + [anon_sym_not_eq] = ACTIONS(7818), + [anon_sym_DASH_DASH] = ACTIONS(7820), + [anon_sym_PLUS_PLUS] = ACTIONS(7820), + [anon_sym_DOT] = ACTIONS(7818), + [anon_sym_DOT_STAR] = ACTIONS(7820), + [anon_sym_DASH_GT] = ACTIONS(7820), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7820), + }, + [STATE(3922)] = { + [sym_identifier] = ACTIONS(7822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7824), + [anon_sym_COMMA] = ACTIONS(7824), + [anon_sym_RPAREN] = ACTIONS(7824), + [anon_sym_LPAREN2] = ACTIONS(7824), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_PLUS] = ACTIONS(7822), + [anon_sym_STAR] = ACTIONS(7824), + [anon_sym_SLASH] = ACTIONS(7822), + [anon_sym_PERCENT] = ACTIONS(7824), + [anon_sym_PIPE_PIPE] = ACTIONS(7824), + [anon_sym_AMP_AMP] = ACTIONS(7824), + [anon_sym_PIPE] = ACTIONS(7822), + [anon_sym_CARET] = ACTIONS(7824), + [anon_sym_AMP] = ACTIONS(7822), + [anon_sym_EQ_EQ] = ACTIONS(7824), + [anon_sym_BANG_EQ] = ACTIONS(7824), + [anon_sym_GT] = ACTIONS(7822), + [anon_sym_GT_EQ] = ACTIONS(7824), + [anon_sym_LT_EQ] = ACTIONS(7822), + [anon_sym_LT] = ACTIONS(7822), + [anon_sym_LT_LT] = ACTIONS(7824), + [anon_sym_GT_GT] = ACTIONS(7824), + [anon_sym_SEMI] = ACTIONS(7824), + [anon_sym___extension__] = ACTIONS(7822), + [anon_sym___attribute__] = ACTIONS(7822), + [anon_sym___attribute] = ACTIONS(7822), + [anon_sym_COLON] = ACTIONS(7822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7824), + [anon_sym___based] = ACTIONS(7822), + [anon_sym_LBRACE] = ACTIONS(7824), + [anon_sym_RBRACE] = ACTIONS(7824), + [anon_sym_signed] = ACTIONS(7822), + [anon_sym_unsigned] = ACTIONS(7822), + [anon_sym_long] = ACTIONS(7822), + [anon_sym_short] = ACTIONS(7822), + [anon_sym_LBRACK] = ACTIONS(7824), + [anon_sym_const] = ACTIONS(7822), + [anon_sym_constexpr] = ACTIONS(7822), + [anon_sym_volatile] = ACTIONS(7822), + [anon_sym_restrict] = ACTIONS(7822), + [anon_sym___restrict__] = ACTIONS(7822), + [anon_sym__Atomic] = ACTIONS(7822), + [anon_sym__Noreturn] = ACTIONS(7822), + [anon_sym_noreturn] = ACTIONS(7822), + [anon_sym__Nonnull] = ACTIONS(7822), + [anon_sym_mutable] = ACTIONS(7822), + [anon_sym_constinit] = ACTIONS(7822), + [anon_sym_consteval] = ACTIONS(7822), + [anon_sym_alignas] = ACTIONS(7822), + [anon_sym__Alignas] = ACTIONS(7822), + [sym_primitive_type] = ACTIONS(7822), + [anon_sym_QMARK] = ACTIONS(7824), + [anon_sym_LT_EQ_GT] = ACTIONS(7824), + [anon_sym_or] = ACTIONS(7822), + [anon_sym_and] = ACTIONS(7822), + [anon_sym_bitor] = ACTIONS(7822), + [anon_sym_xor] = ACTIONS(7822), + [anon_sym_bitand] = ACTIONS(7822), + [anon_sym_not_eq] = ACTIONS(7822), + [anon_sym_DASH_DASH] = ACTIONS(7824), + [anon_sym_PLUS_PLUS] = ACTIONS(7824), + [anon_sym_DOT] = ACTIONS(7822), + [anon_sym_DOT_STAR] = ACTIONS(7824), + [anon_sym_DASH_GT] = ACTIONS(7824), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7824), + }, + [STATE(3923)] = { + [sym_identifier] = ACTIONS(7826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7828), + [anon_sym_COMMA] = ACTIONS(7828), + [anon_sym_RPAREN] = ACTIONS(7828), + [anon_sym_LPAREN2] = ACTIONS(7828), + [anon_sym_DASH] = ACTIONS(7826), + [anon_sym_PLUS] = ACTIONS(7826), + [anon_sym_STAR] = ACTIONS(7828), + [anon_sym_SLASH] = ACTIONS(7826), + [anon_sym_PERCENT] = ACTIONS(7828), + [anon_sym_PIPE_PIPE] = ACTIONS(7828), + [anon_sym_AMP_AMP] = ACTIONS(7828), + [anon_sym_PIPE] = ACTIONS(7826), + [anon_sym_CARET] = ACTIONS(7828), + [anon_sym_AMP] = ACTIONS(7826), + [anon_sym_EQ_EQ] = ACTIONS(7828), + [anon_sym_BANG_EQ] = ACTIONS(7828), + [anon_sym_GT] = ACTIONS(7826), + [anon_sym_GT_EQ] = ACTIONS(7828), + [anon_sym_LT_EQ] = ACTIONS(7826), + [anon_sym_LT] = ACTIONS(7826), + [anon_sym_LT_LT] = ACTIONS(7828), + [anon_sym_GT_GT] = ACTIONS(7828), + [anon_sym_SEMI] = ACTIONS(7828), + [anon_sym___extension__] = ACTIONS(7826), + [anon_sym___attribute__] = ACTIONS(7826), + [anon_sym___attribute] = ACTIONS(7826), + [anon_sym_COLON] = ACTIONS(7826), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7828), + [anon_sym___based] = ACTIONS(7826), + [anon_sym_LBRACE] = ACTIONS(7828), + [anon_sym_RBRACE] = ACTIONS(7828), + [anon_sym_signed] = ACTIONS(7826), + [anon_sym_unsigned] = ACTIONS(7826), + [anon_sym_long] = ACTIONS(7826), + [anon_sym_short] = ACTIONS(7826), + [anon_sym_LBRACK] = ACTIONS(7828), + [anon_sym_const] = ACTIONS(7826), + [anon_sym_constexpr] = ACTIONS(7826), + [anon_sym_volatile] = ACTIONS(7826), + [anon_sym_restrict] = ACTIONS(7826), + [anon_sym___restrict__] = ACTIONS(7826), + [anon_sym__Atomic] = ACTIONS(7826), + [anon_sym__Noreturn] = ACTIONS(7826), + [anon_sym_noreturn] = ACTIONS(7826), + [anon_sym__Nonnull] = ACTIONS(7826), + [anon_sym_mutable] = ACTIONS(7826), + [anon_sym_constinit] = ACTIONS(7826), + [anon_sym_consteval] = ACTIONS(7826), + [anon_sym_alignas] = ACTIONS(7826), + [anon_sym__Alignas] = ACTIONS(7826), + [sym_primitive_type] = ACTIONS(7826), + [anon_sym_QMARK] = ACTIONS(7828), + [anon_sym_LT_EQ_GT] = ACTIONS(7828), + [anon_sym_or] = ACTIONS(7826), + [anon_sym_and] = ACTIONS(7826), + [anon_sym_bitor] = ACTIONS(7826), + [anon_sym_xor] = ACTIONS(7826), + [anon_sym_bitand] = ACTIONS(7826), + [anon_sym_not_eq] = ACTIONS(7826), + [anon_sym_DASH_DASH] = ACTIONS(7828), + [anon_sym_PLUS_PLUS] = ACTIONS(7828), + [anon_sym_DOT] = ACTIONS(7826), + [anon_sym_DOT_STAR] = ACTIONS(7828), + [anon_sym_DASH_GT] = ACTIONS(7828), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7828), + }, + [STATE(3924)] = { + [sym_identifier] = ACTIONS(7830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7832), + [anon_sym_COMMA] = ACTIONS(7832), + [anon_sym_RPAREN] = ACTIONS(7832), + [anon_sym_LPAREN2] = ACTIONS(7832), + [anon_sym_DASH] = ACTIONS(7830), + [anon_sym_PLUS] = ACTIONS(7830), + [anon_sym_STAR] = ACTIONS(7832), + [anon_sym_SLASH] = ACTIONS(7830), + [anon_sym_PERCENT] = ACTIONS(7832), + [anon_sym_PIPE_PIPE] = ACTIONS(7832), + [anon_sym_AMP_AMP] = ACTIONS(7832), + [anon_sym_PIPE] = ACTIONS(7830), + [anon_sym_CARET] = ACTIONS(7832), + [anon_sym_AMP] = ACTIONS(7830), + [anon_sym_EQ_EQ] = ACTIONS(7832), + [anon_sym_BANG_EQ] = ACTIONS(7832), + [anon_sym_GT] = ACTIONS(7830), + [anon_sym_GT_EQ] = ACTIONS(7832), + [anon_sym_LT_EQ] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(7830), + [anon_sym_LT_LT] = ACTIONS(7832), + [anon_sym_GT_GT] = ACTIONS(7832), + [anon_sym_SEMI] = ACTIONS(7832), + [anon_sym___extension__] = ACTIONS(7830), + [anon_sym___attribute__] = ACTIONS(7830), + [anon_sym___attribute] = ACTIONS(7830), + [anon_sym_COLON] = ACTIONS(7830), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7832), + [anon_sym___based] = ACTIONS(7830), + [anon_sym_LBRACE] = ACTIONS(7832), + [anon_sym_RBRACE] = ACTIONS(7832), + [anon_sym_signed] = ACTIONS(7830), + [anon_sym_unsigned] = ACTIONS(7830), + [anon_sym_long] = ACTIONS(7830), + [anon_sym_short] = ACTIONS(7830), + [anon_sym_LBRACK] = ACTIONS(7832), + [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(7830), + [anon_sym__Alignas] = ACTIONS(7830), + [sym_primitive_type] = ACTIONS(7830), + [anon_sym_QMARK] = ACTIONS(7832), + [anon_sym_LT_EQ_GT] = ACTIONS(7832), + [anon_sym_or] = ACTIONS(7830), + [anon_sym_and] = ACTIONS(7830), + [anon_sym_bitor] = ACTIONS(7830), + [anon_sym_xor] = ACTIONS(7830), + [anon_sym_bitand] = ACTIONS(7830), + [anon_sym_not_eq] = ACTIONS(7830), + [anon_sym_DASH_DASH] = ACTIONS(7832), + [anon_sym_PLUS_PLUS] = ACTIONS(7832), + [anon_sym_DOT] = ACTIONS(7830), + [anon_sym_DOT_STAR] = ACTIONS(7832), + [anon_sym_DASH_GT] = ACTIONS(7832), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7832), + }, + [STATE(3925)] = { + [sym_identifier] = ACTIONS(7834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_RPAREN] = ACTIONS(7836), + [anon_sym_LPAREN2] = ACTIONS(7836), + [anon_sym_DASH] = ACTIONS(7834), + [anon_sym_PLUS] = ACTIONS(7834), + [anon_sym_STAR] = ACTIONS(7836), + [anon_sym_SLASH] = ACTIONS(7834), + [anon_sym_PERCENT] = ACTIONS(7836), + [anon_sym_PIPE_PIPE] = ACTIONS(7836), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_PIPE] = ACTIONS(7834), + [anon_sym_CARET] = ACTIONS(7836), + [anon_sym_AMP] = ACTIONS(7834), + [anon_sym_EQ_EQ] = ACTIONS(7836), + [anon_sym_BANG_EQ] = ACTIONS(7836), + [anon_sym_GT] = ACTIONS(7834), + [anon_sym_GT_EQ] = ACTIONS(7836), + [anon_sym_LT_EQ] = ACTIONS(7834), + [anon_sym_LT] = ACTIONS(7834), + [anon_sym_LT_LT] = ACTIONS(7836), + [anon_sym_GT_GT] = ACTIONS(7836), + [anon_sym_SEMI] = ACTIONS(7836), + [anon_sym___extension__] = ACTIONS(7834), + [anon_sym___attribute__] = ACTIONS(7834), + [anon_sym___attribute] = ACTIONS(7834), + [anon_sym_COLON] = ACTIONS(7834), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7836), + [anon_sym___based] = ACTIONS(7834), + [anon_sym_LBRACE] = ACTIONS(7836), + [anon_sym_RBRACE] = ACTIONS(7836), + [anon_sym_signed] = ACTIONS(7834), + [anon_sym_unsigned] = ACTIONS(7834), + [anon_sym_long] = ACTIONS(7834), + [anon_sym_short] = ACTIONS(7834), + [anon_sym_LBRACK] = ACTIONS(7836), + [anon_sym_const] = ACTIONS(7834), + [anon_sym_constexpr] = ACTIONS(7834), + [anon_sym_volatile] = ACTIONS(7834), + [anon_sym_restrict] = ACTIONS(7834), + [anon_sym___restrict__] = ACTIONS(7834), + [anon_sym__Atomic] = ACTIONS(7834), + [anon_sym__Noreturn] = ACTIONS(7834), + [anon_sym_noreturn] = ACTIONS(7834), + [anon_sym__Nonnull] = ACTIONS(7834), + [anon_sym_mutable] = ACTIONS(7834), + [anon_sym_constinit] = ACTIONS(7834), + [anon_sym_consteval] = ACTIONS(7834), + [anon_sym_alignas] = ACTIONS(7834), + [anon_sym__Alignas] = ACTIONS(7834), + [sym_primitive_type] = ACTIONS(7834), + [anon_sym_QMARK] = ACTIONS(7836), + [anon_sym_LT_EQ_GT] = ACTIONS(7836), + [anon_sym_or] = ACTIONS(7834), + [anon_sym_and] = ACTIONS(7834), + [anon_sym_bitor] = ACTIONS(7834), + [anon_sym_xor] = ACTIONS(7834), + [anon_sym_bitand] = ACTIONS(7834), + [anon_sym_not_eq] = ACTIONS(7834), + [anon_sym_DASH_DASH] = ACTIONS(7836), + [anon_sym_PLUS_PLUS] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7834), + [anon_sym_DOT_STAR] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(7836), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7836), + }, + [STATE(3926)] = { + [sym_identifier] = ACTIONS(7842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7844), + [anon_sym_COMMA] = ACTIONS(7844), + [anon_sym_RPAREN] = ACTIONS(7844), + [anon_sym_LPAREN2] = ACTIONS(7844), + [anon_sym_DASH] = ACTIONS(7842), + [anon_sym_PLUS] = ACTIONS(7842), + [anon_sym_STAR] = ACTIONS(7844), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_PERCENT] = ACTIONS(7844), + [anon_sym_PIPE_PIPE] = ACTIONS(7844), + [anon_sym_AMP_AMP] = ACTIONS(7844), + [anon_sym_PIPE] = ACTIONS(7842), + [anon_sym_CARET] = ACTIONS(7844), + [anon_sym_AMP] = ACTIONS(7842), + [anon_sym_EQ_EQ] = ACTIONS(7844), + [anon_sym_BANG_EQ] = ACTIONS(7844), + [anon_sym_GT] = ACTIONS(7842), + [anon_sym_GT_EQ] = ACTIONS(7844), + [anon_sym_LT_EQ] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(7842), + [anon_sym_LT_LT] = ACTIONS(7844), + [anon_sym_GT_GT] = ACTIONS(7844), + [anon_sym_SEMI] = ACTIONS(7844), + [anon_sym___extension__] = ACTIONS(7842), + [anon_sym___attribute__] = ACTIONS(7842), + [anon_sym___attribute] = ACTIONS(7842), + [anon_sym_COLON] = ACTIONS(7842), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7844), + [anon_sym___based] = ACTIONS(7842), + [anon_sym_LBRACE] = ACTIONS(7844), + [anon_sym_RBRACE] = ACTIONS(7844), + [anon_sym_signed] = ACTIONS(7842), + [anon_sym_unsigned] = ACTIONS(7842), + [anon_sym_long] = ACTIONS(7842), + [anon_sym_short] = ACTIONS(7842), + [anon_sym_LBRACK] = ACTIONS(7844), + [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(7842), + [anon_sym__Alignas] = ACTIONS(7842), + [sym_primitive_type] = ACTIONS(7842), + [anon_sym_QMARK] = ACTIONS(7844), + [anon_sym_LT_EQ_GT] = ACTIONS(7844), + [anon_sym_or] = ACTIONS(7842), + [anon_sym_and] = ACTIONS(7842), + [anon_sym_bitor] = ACTIONS(7842), + [anon_sym_xor] = ACTIONS(7842), + [anon_sym_bitand] = ACTIONS(7842), + [anon_sym_not_eq] = ACTIONS(7842), + [anon_sym_DASH_DASH] = ACTIONS(7844), + [anon_sym_PLUS_PLUS] = ACTIONS(7844), + [anon_sym_DOT] = ACTIONS(7842), + [anon_sym_DOT_STAR] = ACTIONS(7844), + [anon_sym_DASH_GT] = ACTIONS(7844), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7844), + }, + [STATE(3927)] = { + [sym_identifier] = ACTIONS(7846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7848), + [anon_sym_COMMA] = ACTIONS(7848), + [anon_sym_RPAREN] = ACTIONS(7848), + [anon_sym_LPAREN2] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7846), + [anon_sym_STAR] = ACTIONS(7848), + [anon_sym_SLASH] = ACTIONS(7846), + [anon_sym_PERCENT] = ACTIONS(7848), + [anon_sym_PIPE_PIPE] = ACTIONS(7848), + [anon_sym_AMP_AMP] = ACTIONS(7848), + [anon_sym_PIPE] = ACTIONS(7846), + [anon_sym_CARET] = ACTIONS(7848), + [anon_sym_AMP] = ACTIONS(7846), + [anon_sym_EQ_EQ] = ACTIONS(7848), + [anon_sym_BANG_EQ] = ACTIONS(7848), + [anon_sym_GT] = ACTIONS(7846), + [anon_sym_GT_EQ] = ACTIONS(7848), + [anon_sym_LT_EQ] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(7846), + [anon_sym_LT_LT] = ACTIONS(7848), + [anon_sym_GT_GT] = ACTIONS(7848), + [anon_sym_SEMI] = ACTIONS(7848), + [anon_sym___extension__] = ACTIONS(7846), + [anon_sym___attribute__] = ACTIONS(7846), + [anon_sym___attribute] = ACTIONS(7846), + [anon_sym_COLON] = ACTIONS(7846), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7848), + [anon_sym___based] = ACTIONS(7846), + [anon_sym_LBRACE] = ACTIONS(7848), + [anon_sym_RBRACE] = ACTIONS(7848), + [anon_sym_signed] = ACTIONS(7846), + [anon_sym_unsigned] = ACTIONS(7846), + [anon_sym_long] = ACTIONS(7846), + [anon_sym_short] = ACTIONS(7846), + [anon_sym_LBRACK] = ACTIONS(7848), + [anon_sym_const] = ACTIONS(7846), + [anon_sym_constexpr] = ACTIONS(7846), + [anon_sym_volatile] = ACTIONS(7846), + [anon_sym_restrict] = ACTIONS(7846), + [anon_sym___restrict__] = ACTIONS(7846), + [anon_sym__Atomic] = ACTIONS(7846), + [anon_sym__Noreturn] = ACTIONS(7846), + [anon_sym_noreturn] = ACTIONS(7846), + [anon_sym__Nonnull] = ACTIONS(7846), + [anon_sym_mutable] = ACTIONS(7846), + [anon_sym_constinit] = ACTIONS(7846), + [anon_sym_consteval] = ACTIONS(7846), + [anon_sym_alignas] = ACTIONS(7846), + [anon_sym__Alignas] = ACTIONS(7846), + [sym_primitive_type] = ACTIONS(7846), + [anon_sym_QMARK] = ACTIONS(7848), + [anon_sym_LT_EQ_GT] = ACTIONS(7848), + [anon_sym_or] = ACTIONS(7846), + [anon_sym_and] = ACTIONS(7846), + [anon_sym_bitor] = ACTIONS(7846), + [anon_sym_xor] = ACTIONS(7846), + [anon_sym_bitand] = ACTIONS(7846), + [anon_sym_not_eq] = ACTIONS(7846), + [anon_sym_DASH_DASH] = ACTIONS(7848), + [anon_sym_PLUS_PLUS] = ACTIONS(7848), + [anon_sym_DOT] = ACTIONS(7846), + [anon_sym_DOT_STAR] = ACTIONS(7848), + [anon_sym_DASH_GT] = ACTIONS(7848), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7848), + }, + [STATE(3928)] = { + [sym_identifier] = ACTIONS(7838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7840), + [anon_sym_COMMA] = ACTIONS(7840), + [anon_sym_RPAREN] = ACTIONS(7840), + [anon_sym_LPAREN2] = ACTIONS(7840), + [anon_sym_DASH] = ACTIONS(7838), + [anon_sym_PLUS] = ACTIONS(7838), + [anon_sym_STAR] = ACTIONS(7840), + [anon_sym_SLASH] = ACTIONS(7838), + [anon_sym_PERCENT] = ACTIONS(7840), + [anon_sym_PIPE_PIPE] = ACTIONS(7840), + [anon_sym_AMP_AMP] = ACTIONS(7840), + [anon_sym_PIPE] = ACTIONS(7838), + [anon_sym_CARET] = ACTIONS(7840), + [anon_sym_AMP] = ACTIONS(7838), + [anon_sym_EQ_EQ] = ACTIONS(7840), + [anon_sym_BANG_EQ] = ACTIONS(7840), + [anon_sym_GT] = ACTIONS(7838), + [anon_sym_GT_EQ] = ACTIONS(7840), + [anon_sym_LT_EQ] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(7838), + [anon_sym_LT_LT] = ACTIONS(7840), + [anon_sym_GT_GT] = ACTIONS(7840), + [anon_sym_SEMI] = ACTIONS(7840), + [anon_sym___extension__] = ACTIONS(7838), + [anon_sym___attribute__] = ACTIONS(7838), + [anon_sym___attribute] = ACTIONS(7838), + [anon_sym_COLON] = ACTIONS(7838), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7840), + [anon_sym___based] = ACTIONS(7838), + [anon_sym_LBRACE] = ACTIONS(7840), + [anon_sym_RBRACE] = ACTIONS(7840), + [anon_sym_signed] = ACTIONS(7838), + [anon_sym_unsigned] = ACTIONS(7838), + [anon_sym_long] = ACTIONS(7838), + [anon_sym_short] = ACTIONS(7838), + [anon_sym_LBRACK] = ACTIONS(7840), + [anon_sym_const] = ACTIONS(7838), + [anon_sym_constexpr] = ACTIONS(7838), + [anon_sym_volatile] = ACTIONS(7838), + [anon_sym_restrict] = ACTIONS(7838), + [anon_sym___restrict__] = ACTIONS(7838), + [anon_sym__Atomic] = ACTIONS(7838), + [anon_sym__Noreturn] = ACTIONS(7838), + [anon_sym_noreturn] = ACTIONS(7838), + [anon_sym__Nonnull] = ACTIONS(7838), + [anon_sym_mutable] = ACTIONS(7838), + [anon_sym_constinit] = ACTIONS(7838), + [anon_sym_consteval] = ACTIONS(7838), + [anon_sym_alignas] = ACTIONS(7838), + [anon_sym__Alignas] = ACTIONS(7838), + [sym_primitive_type] = ACTIONS(7838), + [anon_sym_QMARK] = ACTIONS(7840), + [anon_sym_LT_EQ_GT] = ACTIONS(7840), + [anon_sym_or] = ACTIONS(7838), + [anon_sym_and] = ACTIONS(7838), + [anon_sym_bitor] = ACTIONS(7838), + [anon_sym_xor] = ACTIONS(7838), + [anon_sym_bitand] = ACTIONS(7838), + [anon_sym_not_eq] = ACTIONS(7838), + [anon_sym_DASH_DASH] = ACTIONS(7840), + [anon_sym_PLUS_PLUS] = ACTIONS(7840), + [anon_sym_DOT] = ACTIONS(7838), + [anon_sym_DOT_STAR] = ACTIONS(7840), + [anon_sym_DASH_GT] = ACTIONS(7840), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7840), + }, + [STATE(3929)] = { + [sym_identifier] = ACTIONS(9861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9863), + [anon_sym_COMMA] = ACTIONS(9863), + [anon_sym_RPAREN] = ACTIONS(9863), + [aux_sym_preproc_if_token2] = ACTIONS(9863), + [aux_sym_preproc_else_token1] = ACTIONS(9863), + [aux_sym_preproc_elif_token1] = ACTIONS(9861), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9863), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9863), + [anon_sym_LPAREN2] = ACTIONS(9863), + [anon_sym_DASH] = ACTIONS(9861), + [anon_sym_PLUS] = ACTIONS(9861), + [anon_sym_STAR] = ACTIONS(9861), + [anon_sym_SLASH] = ACTIONS(9861), + [anon_sym_PERCENT] = ACTIONS(9861), + [anon_sym_PIPE_PIPE] = ACTIONS(9863), + [anon_sym_AMP_AMP] = ACTIONS(9863), + [anon_sym_PIPE] = ACTIONS(9861), + [anon_sym_CARET] = ACTIONS(9861), + [anon_sym_AMP] = ACTIONS(9861), + [anon_sym_EQ_EQ] = ACTIONS(9863), + [anon_sym_BANG_EQ] = ACTIONS(9863), + [anon_sym_GT] = ACTIONS(9861), + [anon_sym_GT_EQ] = ACTIONS(9863), + [anon_sym_LT_EQ] = ACTIONS(9861), + [anon_sym_LT] = ACTIONS(9861), + [anon_sym_LT_LT] = ACTIONS(9861), + [anon_sym_GT_GT] = ACTIONS(9861), + [anon_sym_SEMI] = ACTIONS(9863), + [anon_sym___attribute__] = ACTIONS(9861), + [anon_sym___attribute] = ACTIONS(9861), + [anon_sym_COLON] = ACTIONS(9861), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9863), + [anon_sym_RBRACE] = ACTIONS(9863), + [anon_sym_LBRACK] = ACTIONS(9863), + [anon_sym_EQ] = ACTIONS(9861), + [anon_sym_QMARK] = ACTIONS(9863), + [anon_sym_STAR_EQ] = ACTIONS(9863), + [anon_sym_SLASH_EQ] = ACTIONS(9863), + [anon_sym_PERCENT_EQ] = ACTIONS(9863), + [anon_sym_PLUS_EQ] = ACTIONS(9863), + [anon_sym_DASH_EQ] = ACTIONS(9863), + [anon_sym_LT_LT_EQ] = ACTIONS(9863), + [anon_sym_GT_GT_EQ] = ACTIONS(9863), + [anon_sym_AMP_EQ] = ACTIONS(9863), + [anon_sym_CARET_EQ] = ACTIONS(9863), + [anon_sym_PIPE_EQ] = ACTIONS(9863), + [anon_sym_and_eq] = ACTIONS(9861), + [anon_sym_or_eq] = ACTIONS(9861), + [anon_sym_xor_eq] = ACTIONS(9861), + [anon_sym_LT_EQ_GT] = ACTIONS(9863), + [anon_sym_or] = ACTIONS(9861), + [anon_sym_and] = ACTIONS(9861), + [anon_sym_bitor] = ACTIONS(9861), + [anon_sym_xor] = ACTIONS(9861), + [anon_sym_bitand] = ACTIONS(9861), + [anon_sym_not_eq] = ACTIONS(9861), + [anon_sym_DASH_DASH] = ACTIONS(9863), + [anon_sym_PLUS_PLUS] = ACTIONS(9863), + [anon_sym_DOT] = ACTIONS(9861), + [anon_sym_DOT_STAR] = ACTIONS(9863), + [anon_sym_DASH_GT] = ACTIONS(9863), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9861), + [anon_sym_override] = ACTIONS(9861), + [anon_sym_requires] = ACTIONS(9861), + [anon_sym_COLON_RBRACK] = ACTIONS(9863), + }, + [STATE(3930)] = { + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON] = ACTIONS(5742), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5699), + [anon_sym_or_eq] = ACTIONS(5699), + [anon_sym_xor_eq] = ACTIONS(5699), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + }, + [STATE(3931)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(9031), + [anon_sym_COMMA] = ACTIONS(9031), + [anon_sym_RPAREN] = ACTIONS(9031), + [anon_sym_LPAREN2] = ACTIONS(9031), + [anon_sym_DASH] = ACTIONS(9029), + [anon_sym_PLUS] = ACTIONS(9029), + [anon_sym_STAR] = ACTIONS(9029), + [anon_sym_SLASH] = ACTIONS(9029), + [anon_sym_PERCENT] = ACTIONS(9029), + [anon_sym_PIPE_PIPE] = ACTIONS(9031), + [anon_sym_AMP_AMP] = ACTIONS(9031), + [anon_sym_PIPE] = ACTIONS(9029), + [anon_sym_CARET] = ACTIONS(9029), + [anon_sym_AMP] = ACTIONS(9029), + [anon_sym_EQ_EQ] = ACTIONS(9031), + [anon_sym_BANG_EQ] = ACTIONS(9031), + [anon_sym_GT] = ACTIONS(9029), + [anon_sym_GT_EQ] = ACTIONS(9031), + [anon_sym_LT_EQ] = ACTIONS(9029), + [anon_sym_LT] = ACTIONS(9029), + [anon_sym_LT_LT] = ACTIONS(9029), + [anon_sym_GT_GT] = ACTIONS(9029), + [anon_sym_SEMI] = ACTIONS(9031), + [anon_sym_COLON] = ACTIONS(9029), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9031), + [anon_sym_RBRACE] = ACTIONS(9031), + [anon_sym_LBRACK] = ACTIONS(9031), + [anon_sym_EQ] = ACTIONS(9029), + [anon_sym_QMARK] = ACTIONS(9031), + [anon_sym_STAR_EQ] = ACTIONS(9031), + [anon_sym_SLASH_EQ] = ACTIONS(9031), + [anon_sym_PERCENT_EQ] = ACTIONS(9031), + [anon_sym_PLUS_EQ] = ACTIONS(9031), + [anon_sym_DASH_EQ] = ACTIONS(9031), + [anon_sym_LT_LT_EQ] = ACTIONS(9031), + [anon_sym_GT_GT_EQ] = ACTIONS(9031), + [anon_sym_AMP_EQ] = ACTIONS(9031), + [anon_sym_CARET_EQ] = ACTIONS(9031), + [anon_sym_PIPE_EQ] = ACTIONS(9031), + [anon_sym_and_eq] = ACTIONS(9029), + [anon_sym_or_eq] = ACTIONS(9029), + [anon_sym_xor_eq] = ACTIONS(9029), + [anon_sym_LT_EQ_GT] = ACTIONS(9031), + [anon_sym_or] = ACTIONS(9029), + [anon_sym_and] = ACTIONS(9029), + [anon_sym_bitor] = ACTIONS(9029), + [anon_sym_xor] = ACTIONS(9029), + [anon_sym_bitand] = ACTIONS(9029), + [anon_sym_not_eq] = ACTIONS(9029), + [anon_sym_DASH_DASH] = ACTIONS(9031), + [anon_sym_PLUS_PLUS] = ACTIONS(9031), + [anon_sym_DOT] = ACTIONS(9029), + [anon_sym_DOT_STAR] = ACTIONS(9031), + [anon_sym_DASH_GT] = ACTIONS(9031), + [anon_sym_L_DQUOTE] = ACTIONS(9031), + [anon_sym_u_DQUOTE] = ACTIONS(9031), + [anon_sym_U_DQUOTE] = ACTIONS(9031), + [anon_sym_u8_DQUOTE] = ACTIONS(9031), + [anon_sym_DQUOTE] = ACTIONS(9031), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9031), + [anon_sym_LR_DQUOTE] = ACTIONS(9031), + [anon_sym_uR_DQUOTE] = ACTIONS(9031), + [anon_sym_UR_DQUOTE] = ACTIONS(9031), + [anon_sym_u8R_DQUOTE] = ACTIONS(9031), + [anon_sym_COLON_RBRACK] = ACTIONS(9031), + [sym_literal_suffix] = ACTIONS(9029), + }, + [STATE(3932)] = { + [sym_identifier] = ACTIONS(9360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9362), + [anon_sym_COMMA] = ACTIONS(9362), + [anon_sym_RPAREN] = ACTIONS(9362), + [aux_sym_preproc_if_token2] = ACTIONS(9362), + [aux_sym_preproc_else_token1] = ACTIONS(9362), + [aux_sym_preproc_elif_token1] = ACTIONS(9360), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9362), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9362), + [anon_sym_LPAREN2] = ACTIONS(9362), + [anon_sym_DASH] = ACTIONS(9360), + [anon_sym_PLUS] = ACTIONS(9360), + [anon_sym_STAR] = ACTIONS(9360), + [anon_sym_SLASH] = ACTIONS(9360), + [anon_sym_PERCENT] = ACTIONS(9360), + [anon_sym_PIPE_PIPE] = ACTIONS(9362), + [anon_sym_AMP_AMP] = ACTIONS(9362), + [anon_sym_PIPE] = ACTIONS(9360), + [anon_sym_CARET] = ACTIONS(9360), + [anon_sym_AMP] = ACTIONS(9360), + [anon_sym_EQ_EQ] = ACTIONS(9362), + [anon_sym_BANG_EQ] = ACTIONS(9362), + [anon_sym_GT] = ACTIONS(9360), + [anon_sym_GT_EQ] = ACTIONS(9362), + [anon_sym_LT_EQ] = ACTIONS(9360), + [anon_sym_LT] = ACTIONS(9360), + [anon_sym_LT_LT] = ACTIONS(9360), + [anon_sym_GT_GT] = ACTIONS(9360), + [anon_sym_SEMI] = ACTIONS(9362), + [anon_sym___attribute__] = ACTIONS(9360), + [anon_sym___attribute] = ACTIONS(9360), + [anon_sym_COLON] = ACTIONS(9360), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9362), + [anon_sym_RBRACE] = ACTIONS(9362), + [anon_sym_LBRACK] = ACTIONS(9362), + [anon_sym_EQ] = ACTIONS(9360), + [anon_sym_QMARK] = ACTIONS(9362), + [anon_sym_STAR_EQ] = ACTIONS(9362), + [anon_sym_SLASH_EQ] = ACTIONS(9362), + [anon_sym_PERCENT_EQ] = ACTIONS(9362), + [anon_sym_PLUS_EQ] = ACTIONS(9362), + [anon_sym_DASH_EQ] = ACTIONS(9362), + [anon_sym_LT_LT_EQ] = ACTIONS(9362), + [anon_sym_GT_GT_EQ] = ACTIONS(9362), + [anon_sym_AMP_EQ] = ACTIONS(9362), + [anon_sym_CARET_EQ] = ACTIONS(9362), + [anon_sym_PIPE_EQ] = ACTIONS(9362), + [anon_sym_and_eq] = ACTIONS(9360), + [anon_sym_or_eq] = ACTIONS(9360), + [anon_sym_xor_eq] = ACTIONS(9360), + [anon_sym_LT_EQ_GT] = ACTIONS(9362), + [anon_sym_or] = ACTIONS(9360), + [anon_sym_and] = ACTIONS(9360), + [anon_sym_bitor] = ACTIONS(9360), + [anon_sym_xor] = ACTIONS(9360), + [anon_sym_bitand] = ACTIONS(9360), + [anon_sym_not_eq] = ACTIONS(9360), + [anon_sym_DASH_DASH] = ACTIONS(9362), + [anon_sym_PLUS_PLUS] = ACTIONS(9362), + [anon_sym_DOT] = ACTIONS(9360), + [anon_sym_DOT_STAR] = ACTIONS(9362), + [anon_sym_DASH_GT] = ACTIONS(9362), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9360), + [anon_sym_override] = ACTIONS(9360), + [anon_sym_requires] = ACTIONS(9360), + [anon_sym_COLON_RBRACK] = ACTIONS(9362), + }, + [STATE(3933)] = { + [sym_string_literal] = STATE(3950), + [sym_template_argument_list] = STATE(5531), + [sym_raw_string_literal] = STATE(3950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9634), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5671), + [anon_sym_L_DQUOTE] = ACTIONS(7111), + [anon_sym_u_DQUOTE] = ACTIONS(7111), + [anon_sym_U_DQUOTE] = ACTIONS(7111), + [anon_sym_u8_DQUOTE] = ACTIONS(7111), + [anon_sym_DQUOTE] = ACTIONS(7111), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7113), + [anon_sym_LR_DQUOTE] = ACTIONS(7113), + [anon_sym_uR_DQUOTE] = ACTIONS(7113), + [anon_sym_UR_DQUOTE] = ACTIONS(7113), + [anon_sym_u8R_DQUOTE] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(5663), + }, + [STATE(3934)] = { + [sym_identifier] = ACTIONS(7854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7856), + [anon_sym_COMMA] = ACTIONS(7856), + [anon_sym_RPAREN] = ACTIONS(7856), + [anon_sym_LPAREN2] = ACTIONS(7856), + [anon_sym_DASH] = ACTIONS(7854), + [anon_sym_PLUS] = ACTIONS(7854), + [anon_sym_STAR] = ACTIONS(7856), + [anon_sym_SLASH] = ACTIONS(7854), + [anon_sym_PERCENT] = ACTIONS(7856), + [anon_sym_PIPE_PIPE] = ACTIONS(7856), + [anon_sym_AMP_AMP] = ACTIONS(7856), + [anon_sym_PIPE] = ACTIONS(7854), + [anon_sym_CARET] = ACTIONS(7856), + [anon_sym_AMP] = ACTIONS(7854), + [anon_sym_EQ_EQ] = ACTIONS(7856), + [anon_sym_BANG_EQ] = ACTIONS(7856), + [anon_sym_GT] = ACTIONS(7854), + [anon_sym_GT_EQ] = ACTIONS(7856), + [anon_sym_LT_EQ] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(7856), + [anon_sym_GT_GT] = ACTIONS(7856), + [anon_sym_SEMI] = ACTIONS(7856), + [anon_sym___extension__] = ACTIONS(7854), + [anon_sym___attribute__] = ACTIONS(7854), + [anon_sym___attribute] = ACTIONS(7854), + [anon_sym_COLON] = ACTIONS(7854), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7856), + [anon_sym___based] = ACTIONS(7854), + [anon_sym_LBRACE] = ACTIONS(7856), + [anon_sym_RBRACE] = ACTIONS(7856), + [anon_sym_signed] = ACTIONS(7854), + [anon_sym_unsigned] = ACTIONS(7854), + [anon_sym_long] = ACTIONS(7854), + [anon_sym_short] = ACTIONS(7854), + [anon_sym_LBRACK] = ACTIONS(7856), + [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(7854), + [anon_sym__Alignas] = ACTIONS(7854), + [sym_primitive_type] = ACTIONS(7854), + [anon_sym_QMARK] = ACTIONS(7856), + [anon_sym_LT_EQ_GT] = ACTIONS(7856), + [anon_sym_or] = ACTIONS(7854), + [anon_sym_and] = ACTIONS(7854), + [anon_sym_bitor] = ACTIONS(7854), + [anon_sym_xor] = ACTIONS(7854), + [anon_sym_bitand] = ACTIONS(7854), + [anon_sym_not_eq] = ACTIONS(7854), + [anon_sym_DASH_DASH] = ACTIONS(7856), + [anon_sym_PLUS_PLUS] = ACTIONS(7856), + [anon_sym_DOT] = ACTIONS(7854), + [anon_sym_DOT_STAR] = ACTIONS(7856), + [anon_sym_DASH_GT] = ACTIONS(7856), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7856), + }, + [STATE(3935)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_TILDE] = ACTIONS(6822), + [anon_sym_STAR] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym_virtual] = ACTIONS(6815), + [anon_sym_extern] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_using] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6822), + [anon_sym___declspec] = ACTIONS(6815), + [anon_sym___based] = ACTIONS(6815), + [anon_sym___cdecl] = ACTIONS(6815), + [anon_sym___clrcall] = ACTIONS(6815), + [anon_sym___stdcall] = ACTIONS(6815), + [anon_sym___fastcall] = ACTIONS(6815), + [anon_sym___thiscall] = ACTIONS(6815), + [anon_sym___vectorcall] = ACTIONS(6815), + [anon_sym_signed] = ACTIONS(6815), + [anon_sym_unsigned] = ACTIONS(6815), + [anon_sym_long] = ACTIONS(6815), + [anon_sym_short] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(6815), + [anon_sym_static] = ACTIONS(6815), + [anon_sym_register] = ACTIONS(6815), + [anon_sym_inline] = ACTIONS(6815), + [anon_sym___inline] = ACTIONS(6815), + [anon_sym___inline__] = ACTIONS(6815), + [anon_sym___forceinline] = ACTIONS(6815), + [anon_sym_thread_local] = ACTIONS(6815), + [anon_sym___thread] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [sym_primitive_type] = ACTIONS(6815), + [anon_sym_enum] = ACTIONS(6815), + [anon_sym_class] = ACTIONS(6815), + [anon_sym_struct] = ACTIONS(6815), + [anon_sym_union] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_typename] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_explicit] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(6815), + [anon_sym_friend] = ACTIONS(6815), + [anon_sym_concept] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(3936)] = { + [sym_identifier] = ACTIONS(7858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7860), + [anon_sym_COMMA] = ACTIONS(7860), + [anon_sym_RPAREN] = ACTIONS(7860), + [anon_sym_LPAREN2] = ACTIONS(7860), + [anon_sym_DASH] = ACTIONS(7858), + [anon_sym_PLUS] = ACTIONS(7858), + [anon_sym_STAR] = ACTIONS(7860), + [anon_sym_SLASH] = ACTIONS(7858), + [anon_sym_PERCENT] = ACTIONS(7860), + [anon_sym_PIPE_PIPE] = ACTIONS(7860), + [anon_sym_AMP_AMP] = ACTIONS(7860), + [anon_sym_PIPE] = ACTIONS(7858), + [anon_sym_CARET] = ACTIONS(7860), + [anon_sym_AMP] = ACTIONS(7858), + [anon_sym_EQ_EQ] = ACTIONS(7860), + [anon_sym_BANG_EQ] = ACTIONS(7860), + [anon_sym_GT] = ACTIONS(7858), + [anon_sym_GT_EQ] = ACTIONS(7860), + [anon_sym_LT_EQ] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(7858), + [anon_sym_LT_LT] = ACTIONS(7860), + [anon_sym_GT_GT] = ACTIONS(7860), + [anon_sym_SEMI] = ACTIONS(7860), + [anon_sym___extension__] = ACTIONS(7858), + [anon_sym___attribute__] = ACTIONS(7858), + [anon_sym___attribute] = ACTIONS(7858), + [anon_sym_COLON] = ACTIONS(7858), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7860), + [anon_sym___based] = ACTIONS(7858), + [anon_sym_LBRACE] = ACTIONS(7860), + [anon_sym_RBRACE] = ACTIONS(7860), + [anon_sym_signed] = ACTIONS(7858), + [anon_sym_unsigned] = ACTIONS(7858), + [anon_sym_long] = ACTIONS(7858), + [anon_sym_short] = ACTIONS(7858), + [anon_sym_LBRACK] = ACTIONS(7860), + [anon_sym_const] = ACTIONS(7858), + [anon_sym_constexpr] = ACTIONS(7858), + [anon_sym_volatile] = ACTIONS(7858), + [anon_sym_restrict] = ACTIONS(7858), + [anon_sym___restrict__] = ACTIONS(7858), + [anon_sym__Atomic] = ACTIONS(7858), + [anon_sym__Noreturn] = ACTIONS(7858), + [anon_sym_noreturn] = ACTIONS(7858), + [anon_sym__Nonnull] = ACTIONS(7858), + [anon_sym_mutable] = ACTIONS(7858), + [anon_sym_constinit] = ACTIONS(7858), + [anon_sym_consteval] = ACTIONS(7858), + [anon_sym_alignas] = ACTIONS(7858), + [anon_sym__Alignas] = ACTIONS(7858), + [sym_primitive_type] = ACTIONS(7858), + [anon_sym_QMARK] = ACTIONS(7860), + [anon_sym_LT_EQ_GT] = ACTIONS(7860), + [anon_sym_or] = ACTIONS(7858), + [anon_sym_and] = ACTIONS(7858), + [anon_sym_bitor] = ACTIONS(7858), + [anon_sym_xor] = ACTIONS(7858), + [anon_sym_bitand] = ACTIONS(7858), + [anon_sym_not_eq] = ACTIONS(7858), + [anon_sym_DASH_DASH] = ACTIONS(7860), + [anon_sym_PLUS_PLUS] = ACTIONS(7860), + [anon_sym_DOT] = ACTIONS(7858), + [anon_sym_DOT_STAR] = ACTIONS(7860), + [anon_sym_DASH_GT] = ACTIONS(7860), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7860), + }, + [STATE(3937)] = { + [sym_identifier] = ACTIONS(9865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9867), + [anon_sym_COMMA] = ACTIONS(9867), + [anon_sym_RPAREN] = ACTIONS(9867), + [aux_sym_preproc_if_token2] = ACTIONS(9867), + [aux_sym_preproc_else_token1] = ACTIONS(9867), + [aux_sym_preproc_elif_token1] = ACTIONS(9865), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9867), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9867), + [anon_sym_LPAREN2] = ACTIONS(9867), + [anon_sym_DASH] = ACTIONS(9865), + [anon_sym_PLUS] = ACTIONS(9865), + [anon_sym_STAR] = ACTIONS(9865), + [anon_sym_SLASH] = ACTIONS(9865), + [anon_sym_PERCENT] = ACTIONS(9865), + [anon_sym_PIPE_PIPE] = ACTIONS(9867), + [anon_sym_AMP_AMP] = ACTIONS(9867), + [anon_sym_PIPE] = ACTIONS(9865), + [anon_sym_CARET] = ACTIONS(9865), + [anon_sym_AMP] = ACTIONS(9865), + [anon_sym_EQ_EQ] = ACTIONS(9867), + [anon_sym_BANG_EQ] = ACTIONS(9867), + [anon_sym_GT] = ACTIONS(9865), + [anon_sym_GT_EQ] = ACTIONS(9867), + [anon_sym_LT_EQ] = ACTIONS(9865), + [anon_sym_LT] = ACTIONS(9865), + [anon_sym_LT_LT] = ACTIONS(9865), + [anon_sym_GT_GT] = ACTIONS(9865), + [anon_sym_SEMI] = ACTIONS(9867), + [anon_sym___attribute__] = ACTIONS(9865), + [anon_sym___attribute] = ACTIONS(9865), + [anon_sym_COLON] = ACTIONS(9865), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9867), + [anon_sym_RBRACE] = ACTIONS(9867), + [anon_sym_LBRACK] = ACTIONS(9867), + [anon_sym_EQ] = ACTIONS(9865), + [anon_sym_QMARK] = ACTIONS(9867), + [anon_sym_STAR_EQ] = ACTIONS(9867), + [anon_sym_SLASH_EQ] = ACTIONS(9867), + [anon_sym_PERCENT_EQ] = ACTIONS(9867), + [anon_sym_PLUS_EQ] = ACTIONS(9867), + [anon_sym_DASH_EQ] = ACTIONS(9867), + [anon_sym_LT_LT_EQ] = ACTIONS(9867), + [anon_sym_GT_GT_EQ] = ACTIONS(9867), + [anon_sym_AMP_EQ] = ACTIONS(9867), + [anon_sym_CARET_EQ] = ACTIONS(9867), + [anon_sym_PIPE_EQ] = ACTIONS(9867), + [anon_sym_and_eq] = ACTIONS(9865), + [anon_sym_or_eq] = ACTIONS(9865), + [anon_sym_xor_eq] = ACTIONS(9865), + [anon_sym_LT_EQ_GT] = ACTIONS(9867), + [anon_sym_or] = ACTIONS(9865), + [anon_sym_and] = ACTIONS(9865), + [anon_sym_bitor] = ACTIONS(9865), + [anon_sym_xor] = ACTIONS(9865), + [anon_sym_bitand] = ACTIONS(9865), + [anon_sym_not_eq] = ACTIONS(9865), + [anon_sym_DASH_DASH] = ACTIONS(9867), + [anon_sym_PLUS_PLUS] = ACTIONS(9867), + [anon_sym_DOT] = ACTIONS(9865), + [anon_sym_DOT_STAR] = ACTIONS(9867), + [anon_sym_DASH_GT] = ACTIONS(9867), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9865), + [anon_sym_override] = ACTIONS(9865), + [anon_sym_requires] = ACTIONS(9865), + [anon_sym_COLON_RBRACK] = ACTIONS(9867), + }, + [STATE(3938)] = { + [sym_identifier] = ACTIONS(9869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9871), + [anon_sym_COMMA] = ACTIONS(9871), + [anon_sym_RPAREN] = ACTIONS(9871), + [aux_sym_preproc_if_token2] = ACTIONS(9871), + [aux_sym_preproc_else_token1] = ACTIONS(9871), + [aux_sym_preproc_elif_token1] = ACTIONS(9869), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9871), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9871), + [anon_sym_LPAREN2] = ACTIONS(9871), + [anon_sym_DASH] = ACTIONS(9869), + [anon_sym_PLUS] = ACTIONS(9869), + [anon_sym_STAR] = ACTIONS(9869), + [anon_sym_SLASH] = ACTIONS(9869), + [anon_sym_PERCENT] = ACTIONS(9869), + [anon_sym_PIPE_PIPE] = ACTIONS(9871), + [anon_sym_AMP_AMP] = ACTIONS(9871), + [anon_sym_PIPE] = ACTIONS(9869), + [anon_sym_CARET] = ACTIONS(9869), + [anon_sym_AMP] = ACTIONS(9869), + [anon_sym_EQ_EQ] = ACTIONS(9871), + [anon_sym_BANG_EQ] = ACTIONS(9871), + [anon_sym_GT] = ACTIONS(9869), + [anon_sym_GT_EQ] = ACTIONS(9871), + [anon_sym_LT_EQ] = ACTIONS(9869), + [anon_sym_LT] = ACTIONS(9869), + [anon_sym_LT_LT] = ACTIONS(9869), + [anon_sym_GT_GT] = ACTIONS(9869), + [anon_sym_SEMI] = ACTIONS(9871), + [anon_sym___attribute__] = ACTIONS(9869), + [anon_sym___attribute] = ACTIONS(9869), + [anon_sym_COLON] = ACTIONS(9869), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9871), + [anon_sym_RBRACE] = ACTIONS(9871), + [anon_sym_LBRACK] = ACTIONS(9871), + [anon_sym_EQ] = ACTIONS(9869), + [anon_sym_QMARK] = ACTIONS(9871), + [anon_sym_STAR_EQ] = ACTIONS(9871), + [anon_sym_SLASH_EQ] = ACTIONS(9871), + [anon_sym_PERCENT_EQ] = ACTIONS(9871), + [anon_sym_PLUS_EQ] = ACTIONS(9871), + [anon_sym_DASH_EQ] = ACTIONS(9871), + [anon_sym_LT_LT_EQ] = ACTIONS(9871), + [anon_sym_GT_GT_EQ] = ACTIONS(9871), + [anon_sym_AMP_EQ] = ACTIONS(9871), + [anon_sym_CARET_EQ] = ACTIONS(9871), + [anon_sym_PIPE_EQ] = ACTIONS(9871), + [anon_sym_and_eq] = ACTIONS(9869), + [anon_sym_or_eq] = ACTIONS(9869), + [anon_sym_xor_eq] = ACTIONS(9869), + [anon_sym_LT_EQ_GT] = ACTIONS(9871), + [anon_sym_or] = ACTIONS(9869), + [anon_sym_and] = ACTIONS(9869), + [anon_sym_bitor] = ACTIONS(9869), + [anon_sym_xor] = ACTIONS(9869), + [anon_sym_bitand] = ACTIONS(9869), + [anon_sym_not_eq] = ACTIONS(9869), + [anon_sym_DASH_DASH] = ACTIONS(9871), + [anon_sym_PLUS_PLUS] = ACTIONS(9871), + [anon_sym_DOT] = ACTIONS(9869), + [anon_sym_DOT_STAR] = ACTIONS(9871), + [anon_sym_DASH_GT] = ACTIONS(9871), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9869), + [anon_sym_override] = ACTIONS(9869), + [anon_sym_requires] = ACTIONS(9869), + [anon_sym_COLON_RBRACK] = ACTIONS(9871), + }, + [STATE(3939)] = { + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym___based] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(7359), + [anon_sym_unsigned] = ACTIONS(7359), + [anon_sym_long] = ACTIONS(7359), + [anon_sym_short] = ACTIONS(7359), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_const] = ACTIONS(7359), + [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), + [sym_primitive_type] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(3940)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3795), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(9684), + [anon_sym_unsigned] = ACTIONS(9684), + [anon_sym_long] = ACTIONS(9684), + [anon_sym_short] = ACTIONS(9684), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(3941)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(9099), + [anon_sym_COMMA] = ACTIONS(9099), + [anon_sym_RPAREN] = ACTIONS(9099), + [anon_sym_LPAREN2] = ACTIONS(9099), + [anon_sym_DASH] = ACTIONS(9097), + [anon_sym_PLUS] = ACTIONS(9097), + [anon_sym_STAR] = ACTIONS(9097), + [anon_sym_SLASH] = ACTIONS(9097), + [anon_sym_PERCENT] = ACTIONS(9097), + [anon_sym_PIPE_PIPE] = ACTIONS(9099), + [anon_sym_AMP_AMP] = ACTIONS(9099), + [anon_sym_PIPE] = ACTIONS(9097), + [anon_sym_CARET] = ACTIONS(9097), + [anon_sym_AMP] = ACTIONS(9097), + [anon_sym_EQ_EQ] = ACTIONS(9099), + [anon_sym_BANG_EQ] = ACTIONS(9099), + [anon_sym_GT] = ACTIONS(9097), + [anon_sym_GT_EQ] = ACTIONS(9099), + [anon_sym_LT_EQ] = ACTIONS(9097), + [anon_sym_LT] = ACTIONS(9097), + [anon_sym_LT_LT] = ACTIONS(9097), + [anon_sym_GT_GT] = ACTIONS(9097), + [anon_sym_SEMI] = ACTIONS(9099), + [anon_sym_COLON] = ACTIONS(9097), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9099), + [anon_sym_RBRACE] = ACTIONS(9099), + [anon_sym_LBRACK] = ACTIONS(9099), + [anon_sym_EQ] = ACTIONS(9097), + [anon_sym_QMARK] = ACTIONS(9099), + [anon_sym_STAR_EQ] = ACTIONS(9099), + [anon_sym_SLASH_EQ] = ACTIONS(9099), + [anon_sym_PERCENT_EQ] = ACTIONS(9099), + [anon_sym_PLUS_EQ] = ACTIONS(9099), + [anon_sym_DASH_EQ] = ACTIONS(9099), + [anon_sym_LT_LT_EQ] = ACTIONS(9099), + [anon_sym_GT_GT_EQ] = ACTIONS(9099), + [anon_sym_AMP_EQ] = ACTIONS(9099), + [anon_sym_CARET_EQ] = ACTIONS(9099), + [anon_sym_PIPE_EQ] = ACTIONS(9099), + [anon_sym_and_eq] = ACTIONS(9097), + [anon_sym_or_eq] = ACTIONS(9097), + [anon_sym_xor_eq] = ACTIONS(9097), + [anon_sym_LT_EQ_GT] = ACTIONS(9099), + [anon_sym_or] = ACTIONS(9097), + [anon_sym_and] = ACTIONS(9097), + [anon_sym_bitor] = ACTIONS(9097), + [anon_sym_xor] = ACTIONS(9097), + [anon_sym_bitand] = ACTIONS(9097), + [anon_sym_not_eq] = ACTIONS(9097), + [anon_sym_DASH_DASH] = ACTIONS(9099), + [anon_sym_PLUS_PLUS] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9097), + [anon_sym_DOT_STAR] = ACTIONS(9099), + [anon_sym_DASH_GT] = ACTIONS(9099), + [anon_sym_L_DQUOTE] = ACTIONS(9099), + [anon_sym_u_DQUOTE] = ACTIONS(9099), + [anon_sym_U_DQUOTE] = ACTIONS(9099), + [anon_sym_u8_DQUOTE] = ACTIONS(9099), + [anon_sym_DQUOTE] = ACTIONS(9099), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9099), + [anon_sym_LR_DQUOTE] = ACTIONS(9099), + [anon_sym_uR_DQUOTE] = ACTIONS(9099), + [anon_sym_UR_DQUOTE] = ACTIONS(9099), + [anon_sym_u8R_DQUOTE] = ACTIONS(9099), + [anon_sym_COLON_RBRACK] = ACTIONS(9099), + [sym_literal_suffix] = ACTIONS(9097), + }, + [STATE(3942)] = { + [sym_attribute_specifier] = STATE(4499), + [sym_enumerator_list] = STATE(4401), + [sym__enum_base_clause] = STATE(4049), + [sym_identifier] = ACTIONS(7390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(7392), + [anon_sym_LPAREN2] = ACTIONS(7392), + [anon_sym_DASH] = ACTIONS(7390), + [anon_sym_PLUS] = ACTIONS(7390), + [anon_sym_STAR] = ACTIONS(7392), + [anon_sym_SLASH] = ACTIONS(7390), + [anon_sym_PERCENT] = ACTIONS(7392), + [anon_sym_PIPE_PIPE] = ACTIONS(7392), + [anon_sym_AMP_AMP] = ACTIONS(7392), + [anon_sym_PIPE] = ACTIONS(7390), + [anon_sym_CARET] = ACTIONS(7392), + [anon_sym_AMP] = ACTIONS(7390), + [anon_sym_EQ_EQ] = ACTIONS(7392), + [anon_sym_BANG_EQ] = ACTIONS(7392), + [anon_sym_GT] = ACTIONS(7390), + [anon_sym_GT_EQ] = ACTIONS(7390), + [anon_sym_LT_EQ] = ACTIONS(7390), + [anon_sym_LT] = ACTIONS(7390), + [anon_sym_LT_LT] = ACTIONS(7392), + [anon_sym_GT_GT] = ACTIONS(7390), + [anon_sym___extension__] = ACTIONS(7390), + [anon_sym___attribute__] = ACTIONS(9570), + [anon_sym___attribute] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9873), + [anon_sym_COLON_COLON] = ACTIONS(7392), + [anon_sym_LBRACE] = ACTIONS(9875), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym_const] = ACTIONS(7390), + [anon_sym_constexpr] = ACTIONS(7390), + [anon_sym_volatile] = ACTIONS(7390), + [anon_sym_restrict] = ACTIONS(7390), + [anon_sym___restrict__] = ACTIONS(7390), + [anon_sym__Atomic] = ACTIONS(7390), + [anon_sym__Noreturn] = ACTIONS(7390), + [anon_sym_noreturn] = ACTIONS(7390), + [anon_sym__Nonnull] = ACTIONS(7390), + [anon_sym_mutable] = ACTIONS(7390), + [anon_sym_constinit] = ACTIONS(7390), + [anon_sym_consteval] = ACTIONS(7390), + [anon_sym_alignas] = ACTIONS(7390), + [anon_sym__Alignas] = ACTIONS(7390), + [anon_sym_QMARK] = ACTIONS(7392), + [anon_sym_LT_EQ_GT] = ACTIONS(7392), + [anon_sym_or] = ACTIONS(7390), + [anon_sym_and] = ACTIONS(7390), + [anon_sym_bitor] = ACTIONS(7390), + [anon_sym_xor] = ACTIONS(7390), + [anon_sym_bitand] = ACTIONS(7390), + [anon_sym_not_eq] = ACTIONS(7390), + [anon_sym_DASH_DASH] = ACTIONS(7392), + [anon_sym_PLUS_PLUS] = ACTIONS(7392), + [anon_sym_DOT] = ACTIONS(7390), + [anon_sym_DOT_STAR] = ACTIONS(7392), + [anon_sym_DASH_GT] = ACTIONS(7392), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7390), + [anon_sym_final] = ACTIONS(7390), + [anon_sym_override] = ACTIONS(7390), + [anon_sym_template] = ACTIONS(7390), + [anon_sym_GT2] = ACTIONS(7392), + [anon_sym_requires] = ACTIONS(7390), + [anon_sym_LBRACK_COLON] = ACTIONS(7392), + }, + [STATE(3943)] = { + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON] = ACTIONS(5762), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5699), + [anon_sym_or_eq] = ACTIONS(5699), + [anon_sym_xor_eq] = ACTIONS(5699), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + }, + [STATE(3944)] = { + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON] = ACTIONS(5748), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5699), + [anon_sym_or_eq] = ACTIONS(5699), + [anon_sym_xor_eq] = ACTIONS(5699), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + }, + [STATE(3945)] = { + [sym_attribute_specifier] = STATE(4556), + [sym_enumerator_list] = STATE(4357), + [sym__enum_base_clause] = STATE(4053), + [sym_identifier] = ACTIONS(7413), + [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(7415), + [anon_sym_SLASH] = ACTIONS(7413), + [anon_sym_PERCENT] = ACTIONS(7415), + [anon_sym_PIPE_PIPE] = ACTIONS(7415), + [anon_sym_AMP_AMP] = ACTIONS(7415), + [anon_sym_PIPE] = ACTIONS(7413), + [anon_sym_CARET] = ACTIONS(7415), + [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(7415), + [anon_sym_GT_GT] = ACTIONS(7413), + [anon_sym___extension__] = ACTIONS(7413), + [anon_sym___attribute__] = ACTIONS(9570), + [anon_sym___attribute] = ACTIONS(9570), + [anon_sym_COLON] = ACTIONS(9873), + [anon_sym_COLON_COLON] = ACTIONS(7415), + [anon_sym_LBRACE] = ACTIONS(9875), + [anon_sym_LBRACK] = 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_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_decltype] = ACTIONS(7413), + [anon_sym_final] = ACTIONS(7413), + [anon_sym_override] = ACTIONS(7413), + [anon_sym_template] = ACTIONS(7413), + [anon_sym_GT2] = ACTIONS(7415), + [anon_sym_requires] = ACTIONS(7413), + [anon_sym_LBRACK_COLON] = ACTIONS(7415), + }, + [STATE(3946)] = { + [sym_template_argument_list] = STATE(2125), + [sym_identifier] = ACTIONS(7449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7454), + [anon_sym_COMMA] = ACTIONS(7454), + [anon_sym_RPAREN] = ACTIONS(7454), + [aux_sym_preproc_if_token2] = ACTIONS(7454), + [aux_sym_preproc_else_token1] = ACTIONS(7454), + [aux_sym_preproc_elif_token1] = ACTIONS(7449), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7454), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_DASH] = ACTIONS(7449), + [anon_sym_PLUS] = ACTIONS(7449), + [anon_sym_STAR] = ACTIONS(7449), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7449), + [anon_sym_PIPE_PIPE] = ACTIONS(7454), + [anon_sym_AMP_AMP] = ACTIONS(7454), + [anon_sym_PIPE] = ACTIONS(7449), + [anon_sym_CARET] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7449), + [anon_sym_EQ_EQ] = ACTIONS(7454), + [anon_sym_BANG_EQ] = ACTIONS(7454), + [anon_sym_GT] = ACTIONS(7449), + [anon_sym_GT_EQ] = ACTIONS(7454), + [anon_sym_LT_EQ] = ACTIONS(7449), + [anon_sym_LT] = ACTIONS(7987), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_GT_GT] = ACTIONS(7449), + [anon_sym_SEMI] = ACTIONS(7454), + [anon_sym___attribute__] = ACTIONS(7449), + [anon_sym___attribute] = ACTIONS(7449), + [anon_sym_COLON] = ACTIONS(7449), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7454), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7454), + [anon_sym_LBRACK] = ACTIONS(7454), + [anon_sym_EQ] = ACTIONS(7449), + [anon_sym_QMARK] = ACTIONS(7454), + [anon_sym_STAR_EQ] = ACTIONS(7454), + [anon_sym_SLASH_EQ] = ACTIONS(7454), + [anon_sym_PERCENT_EQ] = ACTIONS(7454), + [anon_sym_PLUS_EQ] = ACTIONS(7454), + [anon_sym_DASH_EQ] = ACTIONS(7454), + [anon_sym_LT_LT_EQ] = ACTIONS(7454), + [anon_sym_GT_GT_EQ] = ACTIONS(7454), + [anon_sym_AMP_EQ] = ACTIONS(7454), + [anon_sym_CARET_EQ] = ACTIONS(7454), + [anon_sym_PIPE_EQ] = ACTIONS(7454), + [anon_sym_and_eq] = ACTIONS(7449), + [anon_sym_or_eq] = ACTIONS(7449), + [anon_sym_xor_eq] = ACTIONS(7449), + [anon_sym_LT_EQ_GT] = ACTIONS(7454), + [anon_sym_or] = ACTIONS(7449), + [anon_sym_and] = ACTIONS(7449), + [anon_sym_bitor] = ACTIONS(7449), + [anon_sym_xor] = ACTIONS(7449), + [anon_sym_bitand] = ACTIONS(7449), + [anon_sym_not_eq] = ACTIONS(7449), + [anon_sym_DASH_DASH] = ACTIONS(7454), + [anon_sym_PLUS_PLUS] = ACTIONS(7454), + [anon_sym_DOT] = ACTIONS(7449), + [anon_sym_DOT_STAR] = ACTIONS(7454), + [anon_sym_DASH_GT] = ACTIONS(7454), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7454), + }, + [STATE(3947)] = { + [sym_string_literal] = STATE(4289), + [sym_template_argument_list] = STATE(6585), + [sym_raw_string_literal] = STATE(4289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9877), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(9880), + [anon_sym_or_eq] = ACTIONS(9880), + [anon_sym_xor_eq] = ACTIONS(9880), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5671), + [anon_sym_L_DQUOTE] = ACTIONS(6075), + [anon_sym_u_DQUOTE] = ACTIONS(6075), + [anon_sym_U_DQUOTE] = ACTIONS(6075), + [anon_sym_u8_DQUOTE] = ACTIONS(6075), + [anon_sym_DQUOTE] = ACTIONS(6075), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6077), + [anon_sym_LR_DQUOTE] = ACTIONS(6077), + [anon_sym_uR_DQUOTE] = ACTIONS(6077), + [anon_sym_UR_DQUOTE] = ACTIONS(6077), + [anon_sym_u8R_DQUOTE] = ACTIONS(6077), + [anon_sym_DASH_GT_STAR] = ACTIONS(5663), + }, + [STATE(3948)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(9000), + [anon_sym_COMMA] = ACTIONS(9000), + [anon_sym_RPAREN] = ACTIONS(9000), + [anon_sym_LPAREN2] = ACTIONS(9000), + [anon_sym_DASH] = ACTIONS(8998), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_STAR] = ACTIONS(8998), + [anon_sym_SLASH] = ACTIONS(8998), + [anon_sym_PERCENT] = ACTIONS(8998), + [anon_sym_PIPE_PIPE] = ACTIONS(9000), + [anon_sym_AMP_AMP] = ACTIONS(9000), + [anon_sym_PIPE] = ACTIONS(8998), + [anon_sym_CARET] = ACTIONS(8998), + [anon_sym_AMP] = ACTIONS(8998), + [anon_sym_EQ_EQ] = ACTIONS(9000), + [anon_sym_BANG_EQ] = ACTIONS(9000), + [anon_sym_GT] = ACTIONS(8998), + [anon_sym_GT_EQ] = ACTIONS(9000), + [anon_sym_LT_EQ] = ACTIONS(8998), + [anon_sym_LT] = ACTIONS(8998), + [anon_sym_LT_LT] = ACTIONS(8998), + [anon_sym_GT_GT] = ACTIONS(8998), + [anon_sym_SEMI] = ACTIONS(9000), + [anon_sym_COLON] = ACTIONS(8998), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9000), + [anon_sym_RBRACE] = ACTIONS(9000), + [anon_sym_LBRACK] = ACTIONS(9000), + [anon_sym_EQ] = ACTIONS(8998), + [anon_sym_QMARK] = ACTIONS(9000), + [anon_sym_STAR_EQ] = ACTIONS(9000), + [anon_sym_SLASH_EQ] = ACTIONS(9000), + [anon_sym_PERCENT_EQ] = ACTIONS(9000), + [anon_sym_PLUS_EQ] = ACTIONS(9000), + [anon_sym_DASH_EQ] = ACTIONS(9000), + [anon_sym_LT_LT_EQ] = ACTIONS(9000), + [anon_sym_GT_GT_EQ] = ACTIONS(9000), + [anon_sym_AMP_EQ] = ACTIONS(9000), + [anon_sym_CARET_EQ] = ACTIONS(9000), + [anon_sym_PIPE_EQ] = ACTIONS(9000), + [anon_sym_and_eq] = ACTIONS(8998), + [anon_sym_or_eq] = ACTIONS(8998), + [anon_sym_xor_eq] = ACTIONS(8998), + [anon_sym_LT_EQ_GT] = ACTIONS(9000), + [anon_sym_or] = ACTIONS(8998), + [anon_sym_and] = ACTIONS(8998), + [anon_sym_bitor] = ACTIONS(8998), + [anon_sym_xor] = ACTIONS(8998), + [anon_sym_bitand] = ACTIONS(8998), + [anon_sym_not_eq] = ACTIONS(8998), + [anon_sym_DASH_DASH] = ACTIONS(9000), + [anon_sym_PLUS_PLUS] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(8998), + [anon_sym_DOT_STAR] = ACTIONS(9000), + [anon_sym_DASH_GT] = ACTIONS(9000), + [anon_sym_L_DQUOTE] = ACTIONS(9000), + [anon_sym_u_DQUOTE] = ACTIONS(9000), + [anon_sym_U_DQUOTE] = ACTIONS(9000), + [anon_sym_u8_DQUOTE] = ACTIONS(9000), + [anon_sym_DQUOTE] = ACTIONS(9000), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9000), + [anon_sym_LR_DQUOTE] = ACTIONS(9000), + [anon_sym_uR_DQUOTE] = ACTIONS(9000), + [anon_sym_UR_DQUOTE] = ACTIONS(9000), + [anon_sym_u8R_DQUOTE] = ACTIONS(9000), + [anon_sym_COLON_RBRACK] = ACTIONS(9000), + [sym_literal_suffix] = ACTIONS(8998), + }, + [STATE(3949)] = { + [sym_identifier] = ACTIONS(7442), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_TILDE] = ACTIONS(7447), + [anon_sym_STAR] = ACTIONS(7447), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym_virtual] = ACTIONS(7442), + [anon_sym_extern] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_using] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7447), + [anon_sym___declspec] = ACTIONS(7442), + [anon_sym___based] = ACTIONS(7442), + [anon_sym___cdecl] = ACTIONS(7442), + [anon_sym___clrcall] = ACTIONS(7442), + [anon_sym___stdcall] = ACTIONS(7442), + [anon_sym___fastcall] = ACTIONS(7442), + [anon_sym___thiscall] = ACTIONS(7442), + [anon_sym___vectorcall] = ACTIONS(7442), + [anon_sym_signed] = ACTIONS(7442), + [anon_sym_unsigned] = ACTIONS(7442), + [anon_sym_long] = ACTIONS(7442), + [anon_sym_short] = ACTIONS(7442), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_static] = ACTIONS(7442), + [anon_sym_register] = ACTIONS(7442), + [anon_sym_inline] = ACTIONS(7442), + [anon_sym___inline] = ACTIONS(7442), + [anon_sym___inline__] = ACTIONS(7442), + [anon_sym___forceinline] = ACTIONS(7442), + [anon_sym_thread_local] = ACTIONS(7442), + [anon_sym___thread] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [sym_primitive_type] = ACTIONS(7442), + [anon_sym_enum] = ACTIONS(7442), + [anon_sym_class] = ACTIONS(7442), + [anon_sym_struct] = ACTIONS(7442), + [anon_sym_union] = ACTIONS(7442), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_typename] = ACTIONS(7442), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7442), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_explicit] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_operator] = ACTIONS(7442), + [anon_sym_friend] = ACTIONS(7442), + [anon_sym_concept] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + }, + [STATE(3950)] = { + [sym_string_literal] = STATE(3962), + [sym_raw_string_literal] = STATE(3962), + [aux_sym_concatenated_string_repeat1] = STATE(3962), + [sym_identifier] = ACTIONS(9882), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8800), + [anon_sym_COMMA] = ACTIONS(8800), + [anon_sym_RPAREN] = ACTIONS(8800), + [anon_sym_LPAREN2] = ACTIONS(8800), + [anon_sym_DASH] = ACTIONS(8802), + [anon_sym_PLUS] = ACTIONS(8802), + [anon_sym_STAR] = ACTIONS(8802), + [anon_sym_SLASH] = ACTIONS(8802), + [anon_sym_PERCENT] = ACTIONS(8802), + [anon_sym_PIPE_PIPE] = ACTIONS(8800), + [anon_sym_AMP_AMP] = ACTIONS(8800), + [anon_sym_PIPE] = ACTIONS(8802), + [anon_sym_CARET] = ACTIONS(8802), + [anon_sym_AMP] = ACTIONS(8802), + [anon_sym_EQ_EQ] = ACTIONS(8800), + [anon_sym_BANG_EQ] = ACTIONS(8800), + [anon_sym_GT] = ACTIONS(8802), + [anon_sym_GT_EQ] = ACTIONS(8800), + [anon_sym_LT_EQ] = ACTIONS(8802), + [anon_sym_LT] = ACTIONS(8802), + [anon_sym_LT_LT] = ACTIONS(8802), + [anon_sym_GT_GT] = ACTIONS(8802), + [anon_sym_LBRACK] = ACTIONS(8800), + [anon_sym_EQ] = ACTIONS(8802), + [anon_sym_QMARK] = ACTIONS(8800), + [anon_sym_STAR_EQ] = ACTIONS(8800), + [anon_sym_SLASH_EQ] = ACTIONS(8800), + [anon_sym_PERCENT_EQ] = ACTIONS(8800), + [anon_sym_PLUS_EQ] = ACTIONS(8800), + [anon_sym_DASH_EQ] = ACTIONS(8800), + [anon_sym_LT_LT_EQ] = ACTIONS(8800), + [anon_sym_GT_GT_EQ] = ACTIONS(8800), + [anon_sym_AMP_EQ] = ACTIONS(8800), + [anon_sym_CARET_EQ] = ACTIONS(8800), + [anon_sym_PIPE_EQ] = ACTIONS(8800), + [anon_sym_and_eq] = ACTIONS(8802), + [anon_sym_or_eq] = ACTIONS(8802), + [anon_sym_xor_eq] = ACTIONS(8802), + [anon_sym_LT_EQ_GT] = ACTIONS(8800), + [anon_sym_or] = ACTIONS(8802), + [anon_sym_and] = ACTIONS(8802), + [anon_sym_bitor] = ACTIONS(8802), + [anon_sym_xor] = ACTIONS(8802), + [anon_sym_bitand] = ACTIONS(8802), + [anon_sym_not_eq] = ACTIONS(8802), + [anon_sym_DASH_DASH] = ACTIONS(8800), + [anon_sym_PLUS_PLUS] = ACTIONS(8800), + [anon_sym_DOT] = ACTIONS(8802), + [anon_sym_DOT_STAR] = ACTIONS(8800), + [anon_sym_DASH_GT] = ACTIONS(8802), + [anon_sym_L_DQUOTE] = ACTIONS(7111), + [anon_sym_u_DQUOTE] = ACTIONS(7111), + [anon_sym_U_DQUOTE] = ACTIONS(7111), + [anon_sym_u8_DQUOTE] = ACTIONS(7111), + [anon_sym_DQUOTE] = ACTIONS(7111), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7113), + [anon_sym_LR_DQUOTE] = ACTIONS(7113), + [anon_sym_uR_DQUOTE] = ACTIONS(7113), + [anon_sym_UR_DQUOTE] = ACTIONS(7113), + [anon_sym_u8R_DQUOTE] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(8800), + [sym_literal_suffix] = ACTIONS(8802), + }, + [STATE(3951)] = { + [sym_attribute_specifier] = STATE(4760), + [sym_enumerator_list] = STATE(4402), + [sym__enum_base_clause] = STATE(4084), + [sym_identifier] = ACTIONS(7390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7392), + [anon_sym_COMMA] = ACTIONS(7392), + [anon_sym_LPAREN2] = ACTIONS(7392), + [anon_sym_DASH] = ACTIONS(7390), + [anon_sym_PLUS] = ACTIONS(7390), + [anon_sym_STAR] = ACTIONS(7392), + [anon_sym_SLASH] = ACTIONS(7390), + [anon_sym_PERCENT] = ACTIONS(7392), + [anon_sym_PIPE_PIPE] = ACTIONS(7392), + [anon_sym_AMP_AMP] = ACTIONS(7392), + [anon_sym_PIPE] = ACTIONS(7390), + [anon_sym_CARET] = ACTIONS(7392), + [anon_sym_AMP] = ACTIONS(7390), + [anon_sym_EQ_EQ] = ACTIONS(7392), + [anon_sym_BANG_EQ] = ACTIONS(7392), + [anon_sym_GT] = ACTIONS(7390), + [anon_sym_GT_EQ] = ACTIONS(7392), + [anon_sym_LT_EQ] = ACTIONS(7390), + [anon_sym_LT] = ACTIONS(7390), + [anon_sym_LT_LT] = ACTIONS(7392), + [anon_sym_GT_GT] = ACTIONS(7392), + [anon_sym___extension__] = ACTIONS(7390), + [anon_sym___attribute__] = ACTIONS(9688), + [anon_sym___attribute] = ACTIONS(9688), + [anon_sym_COLON] = ACTIONS(9884), + [anon_sym_COLON_COLON] = ACTIONS(7392), + [anon_sym_LBRACE] = ACTIONS(9886), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym_RBRACK] = ACTIONS(7392), + [anon_sym_const] = ACTIONS(7390), + [anon_sym_constexpr] = ACTIONS(7390), + [anon_sym_volatile] = ACTIONS(7390), + [anon_sym_restrict] = ACTIONS(7390), + [anon_sym___restrict__] = ACTIONS(7390), + [anon_sym__Atomic] = ACTIONS(7390), + [anon_sym__Noreturn] = ACTIONS(7390), + [anon_sym_noreturn] = ACTIONS(7390), + [anon_sym__Nonnull] = ACTIONS(7390), + [anon_sym_mutable] = ACTIONS(7390), + [anon_sym_constinit] = ACTIONS(7390), + [anon_sym_consteval] = ACTIONS(7390), + [anon_sym_alignas] = ACTIONS(7390), + [anon_sym__Alignas] = ACTIONS(7390), + [anon_sym_QMARK] = ACTIONS(7392), + [anon_sym_LT_EQ_GT] = ACTIONS(7392), + [anon_sym_or] = ACTIONS(7390), + [anon_sym_and] = ACTIONS(7390), + [anon_sym_bitor] = ACTIONS(7390), + [anon_sym_xor] = ACTIONS(7390), + [anon_sym_bitand] = ACTIONS(7390), + [anon_sym_not_eq] = ACTIONS(7390), + [anon_sym_DASH_DASH] = ACTIONS(7392), + [anon_sym_PLUS_PLUS] = ACTIONS(7392), + [anon_sym_DOT] = ACTIONS(7390), + [anon_sym_DOT_STAR] = ACTIONS(7392), + [anon_sym_DASH_GT] = ACTIONS(7392), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7390), + [anon_sym_final] = ACTIONS(7390), + [anon_sym_override] = ACTIONS(7390), + [anon_sym_template] = ACTIONS(7390), + [anon_sym_requires] = ACTIONS(7390), + [anon_sym_LBRACK_COLON] = ACTIONS(7392), + }, + [STATE(3952)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3388), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [anon_sym_RPAREN] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7186), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7186), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7186), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7186), + [anon_sym_GT_GT] = ACTIONS(7186), + [anon_sym_SEMI] = ACTIONS(7186), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_COLON] = ACTIONS(7183), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7186), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_RBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(9228), + [anon_sym_unsigned] = ACTIONS(9228), + [anon_sym_long] = ACTIONS(9228), + [anon_sym_short] = ACTIONS(9228), + [anon_sym_LBRACK] = ACTIONS(7186), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7186), + }, + [STATE(3953)] = { + [sym_identifier] = ACTIONS(9888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9890), + [anon_sym_COMMA] = ACTIONS(9890), + [anon_sym_RPAREN] = ACTIONS(9890), + [aux_sym_preproc_if_token2] = ACTIONS(9890), + [aux_sym_preproc_else_token1] = ACTIONS(9890), + [aux_sym_preproc_elif_token1] = ACTIONS(9888), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9890), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9890), + [anon_sym_LPAREN2] = ACTIONS(9890), + [anon_sym_DASH] = ACTIONS(9888), + [anon_sym_PLUS] = ACTIONS(9888), + [anon_sym_STAR] = ACTIONS(9888), + [anon_sym_SLASH] = ACTIONS(9888), + [anon_sym_PERCENT] = ACTIONS(9888), + [anon_sym_PIPE_PIPE] = ACTIONS(9890), + [anon_sym_AMP_AMP] = ACTIONS(9890), + [anon_sym_PIPE] = ACTIONS(9888), + [anon_sym_CARET] = ACTIONS(9888), + [anon_sym_AMP] = ACTIONS(9888), + [anon_sym_EQ_EQ] = ACTIONS(9890), + [anon_sym_BANG_EQ] = ACTIONS(9890), + [anon_sym_GT] = ACTIONS(9888), + [anon_sym_GT_EQ] = ACTIONS(9890), + [anon_sym_LT_EQ] = ACTIONS(9888), + [anon_sym_LT] = ACTIONS(9888), + [anon_sym_LT_LT] = ACTIONS(9888), + [anon_sym_GT_GT] = ACTIONS(9888), + [anon_sym_SEMI] = ACTIONS(9890), + [anon_sym___attribute__] = ACTIONS(9888), + [anon_sym___attribute] = ACTIONS(9888), + [anon_sym_COLON] = ACTIONS(9888), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9890), + [anon_sym_RBRACE] = ACTIONS(9890), + [anon_sym_LBRACK] = ACTIONS(9890), + [anon_sym_EQ] = ACTIONS(9888), + [anon_sym_QMARK] = ACTIONS(9890), + [anon_sym_STAR_EQ] = ACTIONS(9890), + [anon_sym_SLASH_EQ] = ACTIONS(9890), + [anon_sym_PERCENT_EQ] = ACTIONS(9890), + [anon_sym_PLUS_EQ] = ACTIONS(9890), + [anon_sym_DASH_EQ] = ACTIONS(9890), + [anon_sym_LT_LT_EQ] = ACTIONS(9890), + [anon_sym_GT_GT_EQ] = ACTIONS(9890), + [anon_sym_AMP_EQ] = ACTIONS(9890), + [anon_sym_CARET_EQ] = ACTIONS(9890), + [anon_sym_PIPE_EQ] = ACTIONS(9890), + [anon_sym_and_eq] = ACTIONS(9888), + [anon_sym_or_eq] = ACTIONS(9888), + [anon_sym_xor_eq] = ACTIONS(9888), + [anon_sym_LT_EQ_GT] = ACTIONS(9890), + [anon_sym_or] = ACTIONS(9888), + [anon_sym_and] = ACTIONS(9888), + [anon_sym_bitor] = ACTIONS(9888), + [anon_sym_xor] = ACTIONS(9888), + [anon_sym_bitand] = ACTIONS(9888), + [anon_sym_not_eq] = ACTIONS(9888), + [anon_sym_DASH_DASH] = ACTIONS(9890), + [anon_sym_PLUS_PLUS] = ACTIONS(9890), + [anon_sym_DOT] = ACTIONS(9888), + [anon_sym_DOT_STAR] = ACTIONS(9890), + [anon_sym_DASH_GT] = ACTIONS(9890), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9888), + [anon_sym_override] = ACTIONS(9888), + [anon_sym_requires] = ACTIONS(9888), + [anon_sym_COLON_RBRACK] = ACTIONS(9890), + }, + [STATE(3954)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(9008), + [anon_sym_COMMA] = ACTIONS(9008), + [anon_sym_RPAREN] = ACTIONS(9008), + [anon_sym_LPAREN2] = ACTIONS(9008), + [anon_sym_DASH] = ACTIONS(9006), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_STAR] = ACTIONS(9006), + [anon_sym_SLASH] = ACTIONS(9006), + [anon_sym_PERCENT] = ACTIONS(9006), + [anon_sym_PIPE_PIPE] = ACTIONS(9008), + [anon_sym_AMP_AMP] = ACTIONS(9008), + [anon_sym_PIPE] = ACTIONS(9006), + [anon_sym_CARET] = ACTIONS(9006), + [anon_sym_AMP] = ACTIONS(9006), + [anon_sym_EQ_EQ] = ACTIONS(9008), + [anon_sym_BANG_EQ] = ACTIONS(9008), + [anon_sym_GT] = ACTIONS(9006), + [anon_sym_GT_EQ] = ACTIONS(9008), + [anon_sym_LT_EQ] = ACTIONS(9006), + [anon_sym_LT] = ACTIONS(9006), + [anon_sym_LT_LT] = ACTIONS(9006), + [anon_sym_GT_GT] = ACTIONS(9006), + [anon_sym_SEMI] = ACTIONS(9008), + [anon_sym_COLON] = ACTIONS(9006), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9008), + [anon_sym_RBRACE] = ACTIONS(9008), + [anon_sym_LBRACK] = ACTIONS(9008), + [anon_sym_EQ] = ACTIONS(9006), + [anon_sym_QMARK] = ACTIONS(9008), + [anon_sym_STAR_EQ] = ACTIONS(9008), + [anon_sym_SLASH_EQ] = ACTIONS(9008), + [anon_sym_PERCENT_EQ] = ACTIONS(9008), + [anon_sym_PLUS_EQ] = ACTIONS(9008), + [anon_sym_DASH_EQ] = ACTIONS(9008), + [anon_sym_LT_LT_EQ] = ACTIONS(9008), + [anon_sym_GT_GT_EQ] = ACTIONS(9008), + [anon_sym_AMP_EQ] = ACTIONS(9008), + [anon_sym_CARET_EQ] = ACTIONS(9008), + [anon_sym_PIPE_EQ] = ACTIONS(9008), + [anon_sym_and_eq] = ACTIONS(9006), + [anon_sym_or_eq] = ACTIONS(9006), + [anon_sym_xor_eq] = ACTIONS(9006), + [anon_sym_LT_EQ_GT] = ACTIONS(9008), + [anon_sym_or] = ACTIONS(9006), + [anon_sym_and] = ACTIONS(9006), + [anon_sym_bitor] = ACTIONS(9006), + [anon_sym_xor] = ACTIONS(9006), + [anon_sym_bitand] = ACTIONS(9006), + [anon_sym_not_eq] = ACTIONS(9006), + [anon_sym_DASH_DASH] = ACTIONS(9008), + [anon_sym_PLUS_PLUS] = ACTIONS(9008), + [anon_sym_DOT] = ACTIONS(9006), + [anon_sym_DOT_STAR] = ACTIONS(9008), + [anon_sym_DASH_GT] = ACTIONS(9008), + [anon_sym_L_DQUOTE] = ACTIONS(9008), + [anon_sym_u_DQUOTE] = ACTIONS(9008), + [anon_sym_U_DQUOTE] = ACTIONS(9008), + [anon_sym_u8_DQUOTE] = ACTIONS(9008), + [anon_sym_DQUOTE] = ACTIONS(9008), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9008), + [anon_sym_LR_DQUOTE] = ACTIONS(9008), + [anon_sym_uR_DQUOTE] = ACTIONS(9008), + [anon_sym_UR_DQUOTE] = ACTIONS(9008), + [anon_sym_u8R_DQUOTE] = ACTIONS(9008), + [anon_sym_COLON_RBRACK] = ACTIONS(9008), + [sym_literal_suffix] = ACTIONS(9006), + }, + [STATE(3955)] = { + [sym_identifier] = ACTIONS(7495), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_TILDE] = ACTIONS(7497), + [anon_sym_STAR] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym_virtual] = ACTIONS(7495), + [anon_sym_extern] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_using] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7497), + [anon_sym___declspec] = ACTIONS(7495), + [anon_sym___based] = ACTIONS(7495), + [anon_sym___cdecl] = ACTIONS(7495), + [anon_sym___clrcall] = ACTIONS(7495), + [anon_sym___stdcall] = ACTIONS(7495), + [anon_sym___fastcall] = ACTIONS(7495), + [anon_sym___thiscall] = ACTIONS(7495), + [anon_sym___vectorcall] = ACTIONS(7495), + [anon_sym_signed] = ACTIONS(7495), + [anon_sym_unsigned] = ACTIONS(7495), + [anon_sym_long] = ACTIONS(7495), + [anon_sym_short] = ACTIONS(7495), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_static] = ACTIONS(7495), + [anon_sym_register] = ACTIONS(7495), + [anon_sym_inline] = ACTIONS(7495), + [anon_sym___inline] = ACTIONS(7495), + [anon_sym___inline__] = ACTIONS(7495), + [anon_sym___forceinline] = ACTIONS(7495), + [anon_sym_thread_local] = ACTIONS(7495), + [anon_sym___thread] = 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), + [sym_primitive_type] = ACTIONS(7495), + [anon_sym_enum] = ACTIONS(7495), + [anon_sym_class] = ACTIONS(7495), + [anon_sym_struct] = ACTIONS(7495), + [anon_sym_union] = ACTIONS(7495), + [anon_sym_or] = ACTIONS(7495), + [anon_sym_and] = ACTIONS(7495), + [anon_sym_typename] = ACTIONS(7495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_explicit] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_operator] = ACTIONS(7495), + [anon_sym_friend] = ACTIONS(7495), + [anon_sym_concept] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(3956)] = { + [sym_identifier] = ACTIONS(7495), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_TILDE] = ACTIONS(7497), + [anon_sym_STAR] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym_virtual] = ACTIONS(7495), + [anon_sym_extern] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_using] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7497), + [anon_sym___declspec] = ACTIONS(7495), + [anon_sym___based] = ACTIONS(7495), + [anon_sym___cdecl] = ACTIONS(7495), + [anon_sym___clrcall] = ACTIONS(7495), + [anon_sym___stdcall] = ACTIONS(7495), + [anon_sym___fastcall] = ACTIONS(7495), + [anon_sym___thiscall] = ACTIONS(7495), + [anon_sym___vectorcall] = ACTIONS(7495), + [anon_sym_signed] = ACTIONS(7495), + [anon_sym_unsigned] = ACTIONS(7495), + [anon_sym_long] = ACTIONS(7495), + [anon_sym_short] = ACTIONS(7495), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_static] = ACTIONS(7495), + [anon_sym_register] = ACTIONS(7495), + [anon_sym_inline] = ACTIONS(7495), + [anon_sym___inline] = ACTIONS(7495), + [anon_sym___inline__] = ACTIONS(7495), + [anon_sym___forceinline] = ACTIONS(7495), + [anon_sym_thread_local] = ACTIONS(7495), + [anon_sym___thread] = 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), + [sym_primitive_type] = ACTIONS(7495), + [anon_sym_enum] = ACTIONS(7495), + [anon_sym_class] = ACTIONS(7495), + [anon_sym_struct] = ACTIONS(7495), + [anon_sym_union] = ACTIONS(7495), + [anon_sym_or] = ACTIONS(7495), + [anon_sym_and] = ACTIONS(7495), + [anon_sym_typename] = ACTIONS(7495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_explicit] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_operator] = ACTIONS(7495), + [anon_sym_friend] = ACTIONS(7495), + [anon_sym_concept] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(3957)] = { + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym__function_exception_specification] = STATE(4511), + [sym__function_attributes_end] = STATE(6707), + [sym__function_postfix] = STATE(5947), + [sym_trailing_return_type] = STATE(6464), + [sym_noexcept] = STATE(4511), + [sym_throw_specifier] = STATE(4511), + [sym_requires_clause] = STATE(5947), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7474), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7474), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7474), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7474), + [anon_sym_GT_GT] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7653), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7474), + [anon_sym_and] = ACTIONS(7474), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7474), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(9590), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7660), + [anon_sym_override] = ACTIONS(7660), + [anon_sym_noexcept] = ACTIONS(7662), + [anon_sym_throw] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7666), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), + }, + [STATE(3958)] = { + [sym_identifier] = ACTIONS(9892), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9894), + [anon_sym_COMMA] = ACTIONS(9894), + [anon_sym_RPAREN] = ACTIONS(9894), + [aux_sym_preproc_if_token2] = ACTIONS(9894), + [aux_sym_preproc_else_token1] = ACTIONS(9894), + [aux_sym_preproc_elif_token1] = ACTIONS(9892), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9894), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9894), + [anon_sym_LPAREN2] = ACTIONS(9894), + [anon_sym_DASH] = ACTIONS(9892), + [anon_sym_PLUS] = ACTIONS(9892), + [anon_sym_STAR] = ACTIONS(9892), + [anon_sym_SLASH] = ACTIONS(9892), + [anon_sym_PERCENT] = ACTIONS(9892), + [anon_sym_PIPE_PIPE] = ACTIONS(9894), + [anon_sym_AMP_AMP] = ACTIONS(9894), + [anon_sym_PIPE] = ACTIONS(9892), + [anon_sym_CARET] = ACTIONS(9892), + [anon_sym_AMP] = ACTIONS(9892), + [anon_sym_EQ_EQ] = ACTIONS(9894), + [anon_sym_BANG_EQ] = ACTIONS(9894), + [anon_sym_GT] = ACTIONS(9892), + [anon_sym_GT_EQ] = ACTIONS(9894), + [anon_sym_LT_EQ] = ACTIONS(9892), + [anon_sym_LT] = ACTIONS(9892), + [anon_sym_LT_LT] = ACTIONS(9892), + [anon_sym_GT_GT] = ACTIONS(9892), + [anon_sym_SEMI] = ACTIONS(9894), + [anon_sym___attribute__] = ACTIONS(9892), + [anon_sym___attribute] = ACTIONS(9892), + [anon_sym_COLON] = ACTIONS(9892), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9894), + [anon_sym_RBRACE] = ACTIONS(9894), + [anon_sym_LBRACK] = ACTIONS(9894), + [anon_sym_EQ] = ACTIONS(9892), + [anon_sym_QMARK] = ACTIONS(9894), + [anon_sym_STAR_EQ] = ACTIONS(9894), + [anon_sym_SLASH_EQ] = ACTIONS(9894), + [anon_sym_PERCENT_EQ] = ACTIONS(9894), + [anon_sym_PLUS_EQ] = ACTIONS(9894), + [anon_sym_DASH_EQ] = ACTIONS(9894), + [anon_sym_LT_LT_EQ] = ACTIONS(9894), + [anon_sym_GT_GT_EQ] = ACTIONS(9894), + [anon_sym_AMP_EQ] = ACTIONS(9894), + [anon_sym_CARET_EQ] = ACTIONS(9894), + [anon_sym_PIPE_EQ] = ACTIONS(9894), + [anon_sym_and_eq] = ACTIONS(9892), + [anon_sym_or_eq] = ACTIONS(9892), + [anon_sym_xor_eq] = ACTIONS(9892), + [anon_sym_LT_EQ_GT] = ACTIONS(9894), + [anon_sym_or] = ACTIONS(9892), + [anon_sym_and] = ACTIONS(9892), + [anon_sym_bitor] = ACTIONS(9892), + [anon_sym_xor] = ACTIONS(9892), + [anon_sym_bitand] = ACTIONS(9892), + [anon_sym_not_eq] = ACTIONS(9892), + [anon_sym_DASH_DASH] = ACTIONS(9894), + [anon_sym_PLUS_PLUS] = ACTIONS(9894), + [anon_sym_DOT] = ACTIONS(9892), + [anon_sym_DOT_STAR] = ACTIONS(9894), + [anon_sym_DASH_GT] = ACTIONS(9894), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9892), + [anon_sym_override] = ACTIONS(9892), + [anon_sym_requires] = ACTIONS(9892), + [anon_sym_COLON_RBRACK] = ACTIONS(9894), + }, + [STATE(3959)] = { + [sym_identifier] = ACTIONS(7519), + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_TILDE] = ACTIONS(7521), + [anon_sym_STAR] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_AMP] = ACTIONS(7519), + [anon_sym___extension__] = ACTIONS(7519), + [anon_sym_virtual] = ACTIONS(7519), + [anon_sym_extern] = ACTIONS(7519), + [anon_sym___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_using] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7521), + [anon_sym___declspec] = ACTIONS(7519), + [anon_sym___based] = ACTIONS(7519), + [anon_sym___cdecl] = ACTIONS(7519), + [anon_sym___clrcall] = ACTIONS(7519), + [anon_sym___stdcall] = ACTIONS(7519), + [anon_sym___fastcall] = ACTIONS(7519), + [anon_sym___thiscall] = ACTIONS(7519), + [anon_sym___vectorcall] = ACTIONS(7519), + [anon_sym_signed] = ACTIONS(7519), + [anon_sym_unsigned] = ACTIONS(7519), + [anon_sym_long] = ACTIONS(7519), + [anon_sym_short] = ACTIONS(7519), + [anon_sym_LBRACK] = ACTIONS(7519), + [anon_sym_static] = ACTIONS(7519), + [anon_sym_register] = ACTIONS(7519), + [anon_sym_inline] = ACTIONS(7519), + [anon_sym___inline] = ACTIONS(7519), + [anon_sym___inline__] = ACTIONS(7519), + [anon_sym___forceinline] = ACTIONS(7519), + [anon_sym_thread_local] = ACTIONS(7519), + [anon_sym___thread] = 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), + [sym_primitive_type] = ACTIONS(7519), + [anon_sym_enum] = ACTIONS(7519), + [anon_sym_class] = ACTIONS(7519), + [anon_sym_struct] = ACTIONS(7519), + [anon_sym_union] = ACTIONS(7519), + [anon_sym_or] = ACTIONS(7519), + [anon_sym_and] = ACTIONS(7519), + [anon_sym_typename] = ACTIONS(7519), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_explicit] = ACTIONS(7519), + [anon_sym_template] = ACTIONS(7519), + [anon_sym_operator] = ACTIONS(7519), + [anon_sym_friend] = ACTIONS(7519), + [anon_sym_concept] = ACTIONS(7519), + [anon_sym_LBRACK_COLON] = ACTIONS(7521), + }, + [STATE(3960)] = { + [sym_identifier] = ACTIONS(3178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3176), + [anon_sym_COMMA] = ACTIONS(3176), + [anon_sym_RPAREN] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_else_token1] = ACTIONS(3176), + [aux_sym_preproc_elif_token1] = ACTIONS(3178), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_PERCENT] = ACTIONS(3178), + [anon_sym_PIPE_PIPE] = ACTIONS(3176), + [anon_sym_AMP_AMP] = ACTIONS(3176), + [anon_sym_PIPE] = ACTIONS(3178), + [anon_sym_CARET] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3178), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [anon_sym_LT_EQ] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_LT] = ACTIONS(3178), + [anon_sym_GT_GT] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3178), + [anon_sym___attribute] = ACTIONS(3178), + [anon_sym_COLON] = ACTIONS(3178), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_EQ] = ACTIONS(3178), + [anon_sym_QMARK] = ACTIONS(3176), + [anon_sym_STAR_EQ] = ACTIONS(3176), + [anon_sym_SLASH_EQ] = ACTIONS(3176), + [anon_sym_PERCENT_EQ] = ACTIONS(3176), + [anon_sym_PLUS_EQ] = ACTIONS(3176), + [anon_sym_DASH_EQ] = ACTIONS(3176), + [anon_sym_LT_LT_EQ] = ACTIONS(3176), + [anon_sym_GT_GT_EQ] = ACTIONS(3176), + [anon_sym_AMP_EQ] = ACTIONS(3176), + [anon_sym_CARET_EQ] = ACTIONS(3176), + [anon_sym_PIPE_EQ] = ACTIONS(3176), + [anon_sym_and_eq] = ACTIONS(3178), + [anon_sym_or_eq] = ACTIONS(3178), + [anon_sym_xor_eq] = ACTIONS(3178), + [anon_sym_LT_EQ_GT] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3178), + [anon_sym_and] = ACTIONS(3178), + [anon_sym_bitor] = ACTIONS(3178), + [anon_sym_xor] = ACTIONS(3178), + [anon_sym_bitand] = ACTIONS(3178), + [anon_sym_not_eq] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DOT] = ACTIONS(3178), + [anon_sym_DOT_STAR] = ACTIONS(3176), + [anon_sym_DASH_GT] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3178), + [anon_sym_override] = ACTIONS(3178), + [anon_sym_requires] = ACTIONS(3178), + [anon_sym_COLON_RBRACK] = ACTIONS(3176), + }, + [STATE(3961)] = { + [sym_attribute_specifier] = STATE(4785), + [sym_enumerator_list] = STATE(4425), + [sym__enum_base_clause] = STATE(4091), + [sym_identifier] = ACTIONS(7413), + [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(7415), + [anon_sym_SLASH] = ACTIONS(7413), + [anon_sym_PERCENT] = ACTIONS(7415), + [anon_sym_PIPE_PIPE] = ACTIONS(7415), + [anon_sym_AMP_AMP] = ACTIONS(7415), + [anon_sym_PIPE] = ACTIONS(7413), + [anon_sym_CARET] = ACTIONS(7415), + [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(7415), + [anon_sym_GT_GT] = ACTIONS(7415), + [anon_sym___extension__] = ACTIONS(7413), + [anon_sym___attribute__] = ACTIONS(9688), + [anon_sym___attribute] = ACTIONS(9688), + [anon_sym_COLON] = ACTIONS(9884), + [anon_sym_COLON_COLON] = ACTIONS(7415), + [anon_sym_LBRACE] = ACTIONS(9886), + [anon_sym_LBRACK] = ACTIONS(7413), + [anon_sym_RBRACK] = ACTIONS(7415), + [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_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_decltype] = ACTIONS(7413), + [anon_sym_final] = ACTIONS(7413), + [anon_sym_override] = ACTIONS(7413), + [anon_sym_template] = ACTIONS(7413), + [anon_sym_requires] = ACTIONS(7413), + [anon_sym_LBRACK_COLON] = ACTIONS(7415), + }, + [STATE(3962)] = { + [sym_string_literal] = STATE(3844), + [sym_raw_string_literal] = STATE(3844), + [aux_sym_concatenated_string_repeat1] = STATE(3844), + [sym_identifier] = ACTIONS(9896), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8744), + [anon_sym_COMMA] = ACTIONS(8744), + [anon_sym_RPAREN] = ACTIONS(8744), + [anon_sym_LPAREN2] = ACTIONS(8744), + [anon_sym_DASH] = ACTIONS(8746), + [anon_sym_PLUS] = ACTIONS(8746), + [anon_sym_STAR] = ACTIONS(8746), + [anon_sym_SLASH] = ACTIONS(8746), + [anon_sym_PERCENT] = ACTIONS(8746), + [anon_sym_PIPE_PIPE] = ACTIONS(8744), + [anon_sym_AMP_AMP] = ACTIONS(8744), + [anon_sym_PIPE] = ACTIONS(8746), + [anon_sym_CARET] = ACTIONS(8746), + [anon_sym_AMP] = ACTIONS(8746), + [anon_sym_EQ_EQ] = ACTIONS(8744), + [anon_sym_BANG_EQ] = ACTIONS(8744), + [anon_sym_GT] = ACTIONS(8746), + [anon_sym_GT_EQ] = ACTIONS(8744), + [anon_sym_LT_EQ] = ACTIONS(8746), + [anon_sym_LT] = ACTIONS(8746), + [anon_sym_LT_LT] = ACTIONS(8746), + [anon_sym_GT_GT] = ACTIONS(8746), + [anon_sym_LBRACK] = ACTIONS(8744), + [anon_sym_EQ] = ACTIONS(8746), + [anon_sym_QMARK] = ACTIONS(8744), + [anon_sym_STAR_EQ] = ACTIONS(8744), + [anon_sym_SLASH_EQ] = ACTIONS(8744), + [anon_sym_PERCENT_EQ] = ACTIONS(8744), + [anon_sym_PLUS_EQ] = ACTIONS(8744), + [anon_sym_DASH_EQ] = ACTIONS(8744), + [anon_sym_LT_LT_EQ] = ACTIONS(8744), + [anon_sym_GT_GT_EQ] = ACTIONS(8744), + [anon_sym_AMP_EQ] = ACTIONS(8744), + [anon_sym_CARET_EQ] = ACTIONS(8744), + [anon_sym_PIPE_EQ] = ACTIONS(8744), + [anon_sym_and_eq] = ACTIONS(8746), + [anon_sym_or_eq] = ACTIONS(8746), + [anon_sym_xor_eq] = ACTIONS(8746), + [anon_sym_LT_EQ_GT] = ACTIONS(8744), + [anon_sym_or] = ACTIONS(8746), + [anon_sym_and] = ACTIONS(8746), + [anon_sym_bitor] = ACTIONS(8746), + [anon_sym_xor] = ACTIONS(8746), + [anon_sym_bitand] = ACTIONS(8746), + [anon_sym_not_eq] = ACTIONS(8746), + [anon_sym_DASH_DASH] = ACTIONS(8744), + [anon_sym_PLUS_PLUS] = ACTIONS(8744), + [anon_sym_DOT] = ACTIONS(8746), + [anon_sym_DOT_STAR] = ACTIONS(8744), + [anon_sym_DASH_GT] = ACTIONS(8746), + [anon_sym_L_DQUOTE] = ACTIONS(7111), + [anon_sym_u_DQUOTE] = ACTIONS(7111), + [anon_sym_U_DQUOTE] = ACTIONS(7111), + [anon_sym_u8_DQUOTE] = ACTIONS(7111), + [anon_sym_DQUOTE] = ACTIONS(7111), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7113), + [anon_sym_LR_DQUOTE] = ACTIONS(7113), + [anon_sym_uR_DQUOTE] = ACTIONS(7113), + [anon_sym_UR_DQUOTE] = ACTIONS(7113), + [anon_sym_u8R_DQUOTE] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(8744), + [sym_literal_suffix] = ACTIONS(8746), + }, + [STATE(3963)] = { + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_COLON] = ACTIONS(5705), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(5699), + [anon_sym_SLASH_EQ] = ACTIONS(5699), + [anon_sym_PERCENT_EQ] = ACTIONS(5699), + [anon_sym_PLUS_EQ] = ACTIONS(5699), + [anon_sym_DASH_EQ] = ACTIONS(5699), + [anon_sym_LT_LT_EQ] = ACTIONS(5699), + [anon_sym_GT_GT_EQ] = ACTIONS(5699), + [anon_sym_AMP_EQ] = ACTIONS(5699), + [anon_sym_CARET_EQ] = ACTIONS(5699), + [anon_sym_PIPE_EQ] = ACTIONS(5699), + [anon_sym_and_eq] = ACTIONS(5699), + [anon_sym_or_eq] = ACTIONS(5699), + [anon_sym_xor_eq] = ACTIONS(5699), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + }, + [STATE(3964)] = { + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym__function_exception_specification] = STATE(4536), + [sym__function_attributes_end] = STATE(6663), + [sym__function_postfix] = STATE(6055), + [sym_trailing_return_type] = STATE(6619), + [sym_noexcept] = STATE(4536), + [sym_throw_specifier] = STATE(4536), + [sym_requires_clause] = STATE(6055), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7623), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7623), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7623), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7623), + [anon_sym_GT_GT] = ACTIONS(7623), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(7653), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [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(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(9898), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7660), + [anon_sym_override] = ACTIONS(7660), + [anon_sym_noexcept] = ACTIONS(7662), + [anon_sym_throw] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7666), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), + }, + [STATE(3965)] = { + [sym_string_literal] = STATE(6386), + [sym_template_argument_list] = STATE(7644), + [sym_raw_string_literal] = STATE(6386), + [aux_sym_structured_binding_declarator_repeat1] = STATE(11193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9901), + [anon_sym_COMMA] = ACTIONS(9904), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9333), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_RBRACK] = ACTIONS(9907), + [anon_sym_EQ] = ACTIONS(9911), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(7221), + [anon_sym_SLASH_EQ] = ACTIONS(7221), + [anon_sym_PERCENT_EQ] = ACTIONS(7221), + [anon_sym_PLUS_EQ] = ACTIONS(7221), + [anon_sym_DASH_EQ] = ACTIONS(7221), + [anon_sym_LT_LT_EQ] = ACTIONS(7221), + [anon_sym_GT_GT_EQ] = ACTIONS(7221), + [anon_sym_AMP_EQ] = ACTIONS(7221), + [anon_sym_CARET_EQ] = ACTIONS(7221), + [anon_sym_PIPE_EQ] = ACTIONS(7221), + [anon_sym_and_eq] = ACTIONS(7221), + [anon_sym_or_eq] = ACTIONS(7221), + [anon_sym_xor_eq] = ACTIONS(7221), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7223), + [anon_sym_u_DQUOTE] = ACTIONS(7223), + [anon_sym_U_DQUOTE] = ACTIONS(7223), + [anon_sym_u8_DQUOTE] = ACTIONS(7223), + [anon_sym_DQUOTE] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7229), + [anon_sym_LR_DQUOTE] = ACTIONS(7229), + [anon_sym_uR_DQUOTE] = ACTIONS(7229), + [anon_sym_UR_DQUOTE] = ACTIONS(7229), + [anon_sym_u8R_DQUOTE] = ACTIONS(7229), + }, + [STATE(3966)] = { + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym__function_exception_specification] = STATE(4519), + [sym__function_attributes_end] = STATE(6654), + [sym__function_postfix] = STATE(5947), + [sym_trailing_return_type] = STATE(6819), + [sym_noexcept] = STATE(4519), + [sym_throw_specifier] = STATE(4519), + [sym_requires_clause] = STATE(5947), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [sym_identifier] = ACTIONS(7472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [aux_sym_preproc_if_token2] = ACTIONS(7474), + [aux_sym_preproc_else_token1] = ACTIONS(7474), + [aux_sym_preproc_elif_token1] = ACTIONS(7472), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7474), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7474), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7474), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7474), + [anon_sym_GT_GT] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7590), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7472), + [anon_sym_and] = ACTIONS(7472), + [anon_sym_bitor] = ACTIONS(7472), + [anon_sym_xor] = ACTIONS(7472), + [anon_sym_bitand] = ACTIONS(7472), + [anon_sym_not_eq] = ACTIONS(7472), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(9605), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7684), + [anon_sym_override] = ACTIONS(7684), + [anon_sym_noexcept] = ACTIONS(7602), + [anon_sym_throw] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(7686), + }, + [STATE(3967)] = { + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym__function_exception_specification] = STATE(4521), + [sym__function_attributes_end] = STATE(6655), + [sym__function_postfix] = STATE(6055), + [sym_trailing_return_type] = STATE(6821), + [sym_noexcept] = STATE(4521), + [sym_throw_specifier] = STATE(4521), + [sym_requires_clause] = STATE(6055), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [sym_identifier] = ACTIONS(7621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [aux_sym_preproc_if_token2] = ACTIONS(7623), + [aux_sym_preproc_else_token1] = ACTIONS(7623), + [aux_sym_preproc_elif_token1] = ACTIONS(7621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7623), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7623), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7623), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7623), + [anon_sym_GT_GT] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(7590), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [anon_sym_or] = ACTIONS(7621), + [anon_sym_and] = ACTIONS(7621), + [anon_sym_bitor] = ACTIONS(7621), + [anon_sym_xor] = ACTIONS(7621), + [anon_sym_bitand] = ACTIONS(7621), + [anon_sym_not_eq] = ACTIONS(7621), + [anon_sym_DASH_DASH] = ACTIONS(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6415), + [anon_sym___asm__] = ACTIONS(6415), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(9836), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7684), + [anon_sym_override] = ACTIONS(7684), + [anon_sym_noexcept] = ACTIONS(7602), + [anon_sym_throw] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(7686), + }, + [STATE(3968)] = { + [sym_identifier] = ACTIONS(5623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5625), + [anon_sym_COMMA] = ACTIONS(5625), + [anon_sym_RPAREN] = ACTIONS(5625), + [anon_sym_LPAREN2] = ACTIONS(5625), + [anon_sym_TILDE] = ACTIONS(5625), + [anon_sym_STAR] = ACTIONS(5625), + [anon_sym_AMP_AMP] = ACTIONS(5625), + [anon_sym_AMP] = ACTIONS(5623), + [anon_sym_SEMI] = ACTIONS(5625), + [anon_sym___extension__] = ACTIONS(5623), + [anon_sym_virtual] = ACTIONS(5623), + [anon_sym_extern] = ACTIONS(5623), + [anon_sym___attribute__] = ACTIONS(5623), + [anon_sym___attribute] = ACTIONS(5623), + [anon_sym_COLON] = ACTIONS(5623), + [anon_sym_COLON_COLON] = ACTIONS(5625), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5625), + [anon_sym___declspec] = ACTIONS(5623), + [anon_sym___based] = ACTIONS(5623), + [anon_sym___cdecl] = ACTIONS(5623), + [anon_sym___clrcall] = ACTIONS(5623), + [anon_sym___stdcall] = ACTIONS(5623), + [anon_sym___fastcall] = ACTIONS(5623), + [anon_sym___thiscall] = ACTIONS(5623), + [anon_sym___vectorcall] = ACTIONS(5623), + [anon_sym_LBRACE] = ACTIONS(5625), + [anon_sym_LBRACK] = ACTIONS(5623), + [anon_sym_static] = ACTIONS(5623), + [anon_sym_EQ] = ACTIONS(5625), + [anon_sym_register] = ACTIONS(5623), + [anon_sym_inline] = ACTIONS(5623), + [anon_sym___inline] = ACTIONS(5623), + [anon_sym___inline__] = ACTIONS(5623), + [anon_sym___forceinline] = ACTIONS(5623), + [anon_sym_thread_local] = ACTIONS(5623), + [anon_sym___thread] = ACTIONS(5623), + [anon_sym_const] = ACTIONS(5623), + [anon_sym_constexpr] = ACTIONS(5623), + [anon_sym_volatile] = ACTIONS(5623), + [anon_sym_restrict] = ACTIONS(5623), + [anon_sym___restrict__] = ACTIONS(5623), + [anon_sym__Atomic] = ACTIONS(5623), + [anon_sym__Noreturn] = ACTIONS(5623), + [anon_sym_noreturn] = ACTIONS(5623), + [anon_sym__Nonnull] = ACTIONS(5623), + [anon_sym_mutable] = ACTIONS(5623), + [anon_sym_constinit] = ACTIONS(5623), + [anon_sym_consteval] = ACTIONS(5623), + [anon_sym_alignas] = ACTIONS(5623), + [anon_sym__Alignas] = ACTIONS(5623), + [anon_sym_DASH_GT] = ACTIONS(5625), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5623), + [anon_sym_final] = ACTIONS(5623), + [anon_sym_override] = ACTIONS(5623), + [anon_sym_explicit] = ACTIONS(5623), + [anon_sym_private] = ACTIONS(5623), + [anon_sym_template] = ACTIONS(5623), + [anon_sym_GT2] = ACTIONS(5625), + [anon_sym_operator] = ACTIONS(5623), + [anon_sym_public] = ACTIONS(5623), + [anon_sym_protected] = ACTIONS(5623), + [anon_sym_noexcept] = ACTIONS(5623), + [anon_sym_throw] = ACTIONS(5623), + [anon_sym_requires] = ACTIONS(5623), + [anon_sym_LBRACK_COLON] = ACTIONS(5625), + }, + [STATE(3969)] = { + [sym_identifier] = ACTIONS(7495), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_TILDE] = ACTIONS(7497), + [anon_sym_STAR] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym_virtual] = ACTIONS(7495), + [anon_sym_extern] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_using] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7497), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7497), + [anon_sym___declspec] = ACTIONS(7495), + [anon_sym___based] = ACTIONS(7495), + [anon_sym___cdecl] = ACTIONS(7495), + [anon_sym___clrcall] = ACTIONS(7495), + [anon_sym___stdcall] = ACTIONS(7495), + [anon_sym___fastcall] = ACTIONS(7495), + [anon_sym___thiscall] = ACTIONS(7495), + [anon_sym___vectorcall] = ACTIONS(7495), + [anon_sym_signed] = ACTIONS(7495), + [anon_sym_unsigned] = ACTIONS(7495), + [anon_sym_long] = ACTIONS(7495), + [anon_sym_short] = ACTIONS(7495), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_static] = ACTIONS(7495), + [anon_sym_register] = ACTIONS(7495), + [anon_sym_inline] = ACTIONS(7495), + [anon_sym___inline] = ACTIONS(7495), + [anon_sym___inline__] = ACTIONS(7495), + [anon_sym___forceinline] = ACTIONS(7495), + [anon_sym_thread_local] = ACTIONS(7495), + [anon_sym___thread] = 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), + [sym_primitive_type] = ACTIONS(7495), + [anon_sym_enum] = ACTIONS(7495), + [anon_sym_class] = ACTIONS(7495), + [anon_sym_struct] = ACTIONS(7495), + [anon_sym_union] = ACTIONS(7495), + [anon_sym_or] = ACTIONS(7495), + [anon_sym_and] = ACTIONS(7495), + [anon_sym_typename] = ACTIONS(7495), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_explicit] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_operator] = ACTIONS(7495), + [anon_sym_friend] = ACTIONS(7495), + [anon_sym_concept] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(3970)] = { + [sym_identifier] = ACTIONS(7149), + [anon_sym_LPAREN2] = ACTIONS(7151), + [anon_sym_TILDE] = ACTIONS(7151), + [anon_sym_STAR] = ACTIONS(7151), + [anon_sym_PIPE_PIPE] = ACTIONS(7151), + [anon_sym_AMP_AMP] = ACTIONS(7151), + [anon_sym_AMP] = ACTIONS(7149), + [anon_sym___extension__] = ACTIONS(7149), + [anon_sym_virtual] = ACTIONS(7149), + [anon_sym_extern] = ACTIONS(7149), + [anon_sym___attribute__] = ACTIONS(7149), + [anon_sym___attribute] = ACTIONS(7149), + [anon_sym_using] = ACTIONS(7149), + [anon_sym_COLON_COLON] = ACTIONS(7151), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7151), + [anon_sym___declspec] = ACTIONS(7149), + [anon_sym___based] = ACTIONS(7149), + [anon_sym___cdecl] = ACTIONS(7149), + [anon_sym___clrcall] = ACTIONS(7149), + [anon_sym___stdcall] = ACTIONS(7149), + [anon_sym___fastcall] = ACTIONS(7149), + [anon_sym___thiscall] = ACTIONS(7149), + [anon_sym___vectorcall] = ACTIONS(7149), + [anon_sym_signed] = ACTIONS(7149), + [anon_sym_unsigned] = ACTIONS(7149), + [anon_sym_long] = ACTIONS(7149), + [anon_sym_short] = ACTIONS(7149), + [anon_sym_LBRACK] = ACTIONS(7149), + [anon_sym_static] = ACTIONS(7149), + [anon_sym_register] = ACTIONS(7149), + [anon_sym_inline] = ACTIONS(7149), + [anon_sym___inline] = ACTIONS(7149), + [anon_sym___inline__] = ACTIONS(7149), + [anon_sym___forceinline] = ACTIONS(7149), + [anon_sym_thread_local] = ACTIONS(7149), + [anon_sym___thread] = ACTIONS(7149), + [anon_sym_const] = ACTIONS(7149), + [anon_sym_constexpr] = ACTIONS(7149), + [anon_sym_volatile] = ACTIONS(7149), + [anon_sym_restrict] = ACTIONS(7149), + [anon_sym___restrict__] = ACTIONS(7149), + [anon_sym__Atomic] = ACTIONS(7149), + [anon_sym__Noreturn] = ACTIONS(7149), + [anon_sym_noreturn] = ACTIONS(7149), + [anon_sym__Nonnull] = ACTIONS(7149), + [anon_sym_mutable] = ACTIONS(7149), + [anon_sym_constinit] = ACTIONS(7149), + [anon_sym_consteval] = ACTIONS(7149), + [anon_sym_alignas] = ACTIONS(7149), + [anon_sym__Alignas] = ACTIONS(7149), + [sym_primitive_type] = ACTIONS(7149), + [anon_sym_enum] = ACTIONS(7149), + [anon_sym_class] = ACTIONS(7149), + [anon_sym_struct] = ACTIONS(7149), + [anon_sym_union] = ACTIONS(7149), + [anon_sym_or] = ACTIONS(7149), + [anon_sym_and] = ACTIONS(7149), + [anon_sym_typename] = ACTIONS(7149), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7149), + [anon_sym_decltype] = ACTIONS(7149), + [anon_sym_explicit] = ACTIONS(7149), + [anon_sym_template] = ACTIONS(7149), + [anon_sym_operator] = ACTIONS(7149), + [anon_sym_friend] = ACTIONS(7149), + [anon_sym_concept] = ACTIONS(7149), + [anon_sym_LBRACK_COLON] = ACTIONS(7151), + }, + [STATE(3971)] = { + [sym_identifier] = ACTIONS(9853), + [anon_sym_LPAREN2] = ACTIONS(9855), + [anon_sym_TILDE] = ACTIONS(9855), + [anon_sym_STAR] = ACTIONS(9855), + [anon_sym_PIPE_PIPE] = ACTIONS(9855), + [anon_sym_AMP_AMP] = ACTIONS(9913), + [anon_sym_AMP] = ACTIONS(9853), + [anon_sym___extension__] = ACTIONS(9853), + [anon_sym_virtual] = ACTIONS(9853), + [anon_sym_extern] = ACTIONS(9853), + [anon_sym___attribute__] = ACTIONS(9853), + [anon_sym___attribute] = ACTIONS(9853), + [anon_sym_using] = ACTIONS(9853), + [anon_sym_COLON_COLON] = ACTIONS(9855), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9855), + [anon_sym___declspec] = ACTIONS(9853), + [anon_sym___based] = ACTIONS(9853), + [anon_sym___cdecl] = ACTIONS(9853), + [anon_sym___clrcall] = ACTIONS(9853), + [anon_sym___stdcall] = ACTIONS(9853), + [anon_sym___fastcall] = ACTIONS(9853), + [anon_sym___thiscall] = ACTIONS(9853), + [anon_sym___vectorcall] = ACTIONS(9853), + [anon_sym_signed] = ACTIONS(9853), + [anon_sym_unsigned] = ACTIONS(9853), + [anon_sym_long] = ACTIONS(9853), + [anon_sym_short] = ACTIONS(9853), + [anon_sym_LBRACK] = ACTIONS(9853), + [anon_sym_static] = ACTIONS(9853), + [anon_sym_register] = ACTIONS(9853), + [anon_sym_inline] = ACTIONS(9853), + [anon_sym___inline] = ACTIONS(9853), + [anon_sym___inline__] = ACTIONS(9853), + [anon_sym___forceinline] = ACTIONS(9853), + [anon_sym_thread_local] = ACTIONS(9853), + [anon_sym___thread] = ACTIONS(9853), + [anon_sym_const] = ACTIONS(9853), + [anon_sym_constexpr] = ACTIONS(9853), + [anon_sym_volatile] = ACTIONS(9853), + [anon_sym_restrict] = ACTIONS(9853), + [anon_sym___restrict__] = ACTIONS(9853), + [anon_sym__Atomic] = ACTIONS(9853), + [anon_sym__Noreturn] = ACTIONS(9853), + [anon_sym_noreturn] = ACTIONS(9853), + [anon_sym__Nonnull] = ACTIONS(9853), + [anon_sym_mutable] = ACTIONS(9853), + [anon_sym_constinit] = ACTIONS(9853), + [anon_sym_consteval] = ACTIONS(9853), + [anon_sym_alignas] = ACTIONS(9853), + [anon_sym__Alignas] = ACTIONS(9853), + [sym_primitive_type] = ACTIONS(9853), + [anon_sym_enum] = ACTIONS(9853), + [anon_sym_class] = ACTIONS(9853), + [anon_sym_struct] = ACTIONS(9853), + [anon_sym_union] = ACTIONS(9853), + [anon_sym_or] = ACTIONS(9853), + [anon_sym_and] = ACTIONS(9915), + [anon_sym_typename] = ACTIONS(9853), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9853), + [anon_sym_decltype] = ACTIONS(9853), + [anon_sym_explicit] = ACTIONS(9853), + [anon_sym_template] = ACTIONS(9853), + [anon_sym_operator] = ACTIONS(9853), + [anon_sym_friend] = ACTIONS(9853), + [anon_sym_concept] = ACTIONS(9853), + [anon_sym_LBRACK_COLON] = ACTIONS(9855), + }, + [STATE(3972)] = { + [sym_identifier] = ACTIONS(9917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9919), + [anon_sym_COMMA] = ACTIONS(9919), + [anon_sym_RPAREN] = ACTIONS(9919), + [aux_sym_preproc_if_token2] = ACTIONS(9919), + [aux_sym_preproc_else_token1] = ACTIONS(9919), + [aux_sym_preproc_elif_token1] = ACTIONS(9917), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9919), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9919), + [anon_sym_LPAREN2] = ACTIONS(9919), + [anon_sym_DASH] = ACTIONS(9917), + [anon_sym_PLUS] = ACTIONS(9917), + [anon_sym_STAR] = ACTIONS(9917), + [anon_sym_SLASH] = ACTIONS(9917), + [anon_sym_PERCENT] = ACTIONS(9917), + [anon_sym_PIPE_PIPE] = ACTIONS(9919), + [anon_sym_AMP_AMP] = ACTIONS(9919), + [anon_sym_PIPE] = ACTIONS(9917), + [anon_sym_CARET] = ACTIONS(9917), + [anon_sym_AMP] = ACTIONS(9917), + [anon_sym_EQ_EQ] = ACTIONS(9919), + [anon_sym_BANG_EQ] = ACTIONS(9919), + [anon_sym_GT] = ACTIONS(9917), + [anon_sym_GT_EQ] = ACTIONS(9919), + [anon_sym_LT_EQ] = ACTIONS(9917), + [anon_sym_LT] = ACTIONS(9917), + [anon_sym_LT_LT] = ACTIONS(9917), + [anon_sym_GT_GT] = ACTIONS(9917), + [anon_sym_SEMI] = ACTIONS(9919), + [anon_sym___attribute__] = ACTIONS(9917), + [anon_sym___attribute] = ACTIONS(9917), + [anon_sym_COLON] = ACTIONS(9917), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9919), + [anon_sym_RBRACE] = ACTIONS(9919), + [anon_sym_LBRACK] = ACTIONS(9919), + [anon_sym_EQ] = ACTIONS(9917), + [anon_sym_QMARK] = ACTIONS(9919), + [anon_sym_STAR_EQ] = ACTIONS(9919), + [anon_sym_SLASH_EQ] = ACTIONS(9919), + [anon_sym_PERCENT_EQ] = ACTIONS(9919), + [anon_sym_PLUS_EQ] = ACTIONS(9919), + [anon_sym_DASH_EQ] = ACTIONS(9919), + [anon_sym_LT_LT_EQ] = ACTIONS(9919), + [anon_sym_GT_GT_EQ] = ACTIONS(9919), + [anon_sym_AMP_EQ] = ACTIONS(9919), + [anon_sym_CARET_EQ] = ACTIONS(9919), + [anon_sym_PIPE_EQ] = ACTIONS(9919), + [anon_sym_and_eq] = ACTIONS(9917), + [anon_sym_or_eq] = ACTIONS(9917), + [anon_sym_xor_eq] = ACTIONS(9917), + [anon_sym_LT_EQ_GT] = ACTIONS(9919), + [anon_sym_or] = ACTIONS(9917), + [anon_sym_and] = ACTIONS(9917), + [anon_sym_bitor] = ACTIONS(9917), + [anon_sym_xor] = ACTIONS(9917), + [anon_sym_bitand] = ACTIONS(9917), + [anon_sym_not_eq] = ACTIONS(9917), + [anon_sym_DASH_DASH] = ACTIONS(9919), + [anon_sym_PLUS_PLUS] = ACTIONS(9919), + [anon_sym_DOT] = ACTIONS(9917), + [anon_sym_DOT_STAR] = ACTIONS(9919), + [anon_sym_DASH_GT] = ACTIONS(9919), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9917), + [anon_sym_override] = ACTIONS(9917), + [anon_sym_requires] = ACTIONS(9917), + [anon_sym_COLON_RBRACK] = ACTIONS(9919), + }, + [STATE(3973)] = { + [sym_identifier] = ACTIONS(5619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5621), + [anon_sym_COMMA] = ACTIONS(5621), + [anon_sym_RPAREN] = ACTIONS(5621), + [anon_sym_LPAREN2] = ACTIONS(5621), + [anon_sym_TILDE] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_AMP_AMP] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5619), + [anon_sym_virtual] = ACTIONS(5619), + [anon_sym_extern] = ACTIONS(5619), + [anon_sym___attribute__] = ACTIONS(5619), + [anon_sym___attribute] = ACTIONS(5619), + [anon_sym_COLON] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5621), + [anon_sym___declspec] = ACTIONS(5619), + [anon_sym___based] = ACTIONS(5619), + [anon_sym___cdecl] = ACTIONS(5619), + [anon_sym___clrcall] = ACTIONS(5619), + [anon_sym___stdcall] = ACTIONS(5619), + [anon_sym___fastcall] = ACTIONS(5619), + [anon_sym___thiscall] = ACTIONS(5619), + [anon_sym___vectorcall] = ACTIONS(5619), + [anon_sym_LBRACE] = ACTIONS(5621), + [anon_sym_LBRACK] = ACTIONS(5619), + [anon_sym_static] = ACTIONS(5619), + [anon_sym_EQ] = ACTIONS(5621), + [anon_sym_register] = ACTIONS(5619), + [anon_sym_inline] = ACTIONS(5619), + [anon_sym___inline] = ACTIONS(5619), + [anon_sym___inline__] = ACTIONS(5619), + [anon_sym___forceinline] = ACTIONS(5619), + [anon_sym_thread_local] = ACTIONS(5619), + [anon_sym___thread] = ACTIONS(5619), + [anon_sym_const] = ACTIONS(5619), + [anon_sym_constexpr] = ACTIONS(5619), + [anon_sym_volatile] = ACTIONS(5619), + [anon_sym_restrict] = ACTIONS(5619), + [anon_sym___restrict__] = ACTIONS(5619), + [anon_sym__Atomic] = ACTIONS(5619), + [anon_sym__Noreturn] = ACTIONS(5619), + [anon_sym_noreturn] = ACTIONS(5619), + [anon_sym__Nonnull] = ACTIONS(5619), + [anon_sym_mutable] = ACTIONS(5619), + [anon_sym_constinit] = ACTIONS(5619), + [anon_sym_consteval] = ACTIONS(5619), + [anon_sym_alignas] = ACTIONS(5619), + [anon_sym__Alignas] = ACTIONS(5619), + [anon_sym_DASH_GT] = ACTIONS(5621), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5619), + [anon_sym_final] = ACTIONS(5619), + [anon_sym_override] = ACTIONS(5619), + [anon_sym_explicit] = ACTIONS(5619), + [anon_sym_private] = ACTIONS(5619), + [anon_sym_template] = ACTIONS(5619), + [anon_sym_GT2] = ACTIONS(5621), + [anon_sym_operator] = ACTIONS(5619), + [anon_sym_public] = ACTIONS(5619), + [anon_sym_protected] = ACTIONS(5619), + [anon_sym_noexcept] = ACTIONS(5619), + [anon_sym_throw] = ACTIONS(5619), + [anon_sym_requires] = ACTIONS(5619), + [anon_sym_LBRACK_COLON] = ACTIONS(5621), + }, + [STATE(3974)] = { + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym__function_exception_specification] = STATE(4558), + [sym__function_attributes_end] = STATE(6630), + [sym__function_postfix] = STATE(5947), + [sym_trailing_return_type] = STATE(6496), + [sym_noexcept] = STATE(4558), + [sym_throw_specifier] = STATE(4558), + [sym_requires_clause] = STATE(5947), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7474), + [anon_sym_COMMA] = ACTIONS(7474), + [anon_sym_RPAREN] = ACTIONS(7474), + [anon_sym_LPAREN2] = ACTIONS(7474), + [anon_sym_DASH] = ACTIONS(7472), + [anon_sym_PLUS] = ACTIONS(7472), + [anon_sym_STAR] = ACTIONS(7474), + [anon_sym_SLASH] = ACTIONS(7472), + [anon_sym_PERCENT] = ACTIONS(7474), + [anon_sym_PIPE_PIPE] = ACTIONS(7474), + [anon_sym_AMP_AMP] = ACTIONS(7474), + [anon_sym_PIPE] = ACTIONS(7472), + [anon_sym_CARET] = ACTIONS(7474), + [anon_sym_AMP] = ACTIONS(7472), + [anon_sym_EQ_EQ] = ACTIONS(7474), + [anon_sym_BANG_EQ] = ACTIONS(7474), + [anon_sym_GT] = ACTIONS(7472), + [anon_sym_GT_EQ] = ACTIONS(7474), + [anon_sym_LT_EQ] = ACTIONS(7472), + [anon_sym_LT] = ACTIONS(7472), + [anon_sym_LT_LT] = ACTIONS(7474), + [anon_sym_GT_GT] = ACTIONS(7474), + [anon_sym_SEMI] = ACTIONS(7474), + [anon_sym___attribute__] = ACTIONS(7653), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_COLON] = ACTIONS(7472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7474), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_LBRACK] = ACTIONS(7472), + [anon_sym_QMARK] = ACTIONS(7474), + [anon_sym_LT_EQ_GT] = ACTIONS(7474), + [anon_sym_or] = ACTIONS(7474), + [anon_sym_and] = ACTIONS(7474), + [anon_sym_bitor] = ACTIONS(7474), + [anon_sym_xor] = ACTIONS(7474), + [anon_sym_bitand] = ACTIONS(7474), + [anon_sym_not_eq] = ACTIONS(7474), + [anon_sym_DASH_DASH] = ACTIONS(7474), + [anon_sym_PLUS_PLUS] = ACTIONS(7474), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7472), + [anon_sym_DOT_STAR] = ACTIONS(7474), + [anon_sym_DASH_GT] = ACTIONS(9590), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9593), + [anon_sym_override] = ACTIONS(9593), + [anon_sym_noexcept] = ACTIONS(7662), + [anon_sym_throw] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(9596), + [anon_sym_COLON_RBRACK] = ACTIONS(7474), + }, + [STATE(3975)] = { + [sym_identifier] = ACTIONS(8285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8287), + [anon_sym_COMMA] = ACTIONS(8287), + [anon_sym_RPAREN] = ACTIONS(8287), + [aux_sym_preproc_if_token2] = ACTIONS(8287), + [aux_sym_preproc_else_token1] = ACTIONS(8287), + [aux_sym_preproc_elif_token1] = ACTIONS(8285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8287), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8287), + [anon_sym_LPAREN2] = ACTIONS(8287), + [anon_sym_DASH] = ACTIONS(8285), + [anon_sym_PLUS] = ACTIONS(8285), + [anon_sym_STAR] = ACTIONS(8285), + [anon_sym_SLASH] = ACTIONS(8285), + [anon_sym_PERCENT] = ACTIONS(8285), + [anon_sym_PIPE_PIPE] = ACTIONS(8287), + [anon_sym_AMP_AMP] = ACTIONS(8287), + [anon_sym_PIPE] = ACTIONS(8285), + [anon_sym_CARET] = ACTIONS(8285), + [anon_sym_AMP] = ACTIONS(8285), + [anon_sym_EQ_EQ] = ACTIONS(8287), + [anon_sym_BANG_EQ] = ACTIONS(8287), + [anon_sym_GT] = ACTIONS(8285), + [anon_sym_GT_EQ] = ACTIONS(8287), + [anon_sym_LT_EQ] = ACTIONS(8285), + [anon_sym_LT] = ACTIONS(8285), + [anon_sym_LT_LT] = ACTIONS(8285), + [anon_sym_GT_GT] = ACTIONS(8285), + [anon_sym_SEMI] = ACTIONS(8287), + [anon_sym___attribute__] = ACTIONS(8285), + [anon_sym___attribute] = ACTIONS(8285), + [anon_sym_COLON] = ACTIONS(8285), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8287), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_LBRACK] = ACTIONS(8287), + [anon_sym_EQ] = ACTIONS(8285), + [anon_sym_QMARK] = ACTIONS(8287), + [anon_sym_STAR_EQ] = ACTIONS(8287), + [anon_sym_SLASH_EQ] = ACTIONS(8287), + [anon_sym_PERCENT_EQ] = ACTIONS(8287), + [anon_sym_PLUS_EQ] = ACTIONS(8287), + [anon_sym_DASH_EQ] = ACTIONS(8287), + [anon_sym_LT_LT_EQ] = ACTIONS(8287), + [anon_sym_GT_GT_EQ] = ACTIONS(8287), + [anon_sym_AMP_EQ] = ACTIONS(8287), + [anon_sym_CARET_EQ] = ACTIONS(8287), + [anon_sym_PIPE_EQ] = ACTIONS(8287), + [anon_sym_and_eq] = ACTIONS(8285), + [anon_sym_or_eq] = ACTIONS(8285), + [anon_sym_xor_eq] = ACTIONS(8285), + [anon_sym_LT_EQ_GT] = ACTIONS(8287), + [anon_sym_or] = ACTIONS(8285), + [anon_sym_and] = ACTIONS(8285), + [anon_sym_bitor] = ACTIONS(8285), + [anon_sym_xor] = ACTIONS(8285), + [anon_sym_bitand] = ACTIONS(8285), + [anon_sym_not_eq] = ACTIONS(8285), + [anon_sym_DASH_DASH] = ACTIONS(8287), + [anon_sym_PLUS_PLUS] = ACTIONS(8287), + [anon_sym_DOT] = ACTIONS(8285), + [anon_sym_DOT_STAR] = ACTIONS(8287), + [anon_sym_DASH_GT] = ACTIONS(8287), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8285), + [anon_sym_override] = ACTIONS(8285), + [anon_sym_requires] = ACTIONS(8285), + [anon_sym_COLON_RBRACK] = ACTIONS(8287), + }, + [STATE(3976)] = { + [sym_identifier] = ACTIONS(9737), + [anon_sym_LPAREN2] = ACTIONS(9739), + [anon_sym_TILDE] = ACTIONS(9739), + [anon_sym_STAR] = ACTIONS(9739), + [anon_sym_PIPE_PIPE] = ACTIONS(9921), + [anon_sym_AMP_AMP] = ACTIONS(9913), + [anon_sym_AMP] = ACTIONS(9737), + [anon_sym___extension__] = ACTIONS(9737), + [anon_sym_virtual] = ACTIONS(9737), + [anon_sym_extern] = ACTIONS(9737), + [anon_sym___attribute__] = ACTIONS(9737), + [anon_sym___attribute] = ACTIONS(9737), + [anon_sym_using] = ACTIONS(9737), + [anon_sym_COLON_COLON] = ACTIONS(9739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9739), + [anon_sym___declspec] = ACTIONS(9737), + [anon_sym___based] = ACTIONS(9737), + [anon_sym___cdecl] = ACTIONS(9737), + [anon_sym___clrcall] = ACTIONS(9737), + [anon_sym___stdcall] = ACTIONS(9737), + [anon_sym___fastcall] = ACTIONS(9737), + [anon_sym___thiscall] = ACTIONS(9737), + [anon_sym___vectorcall] = ACTIONS(9737), + [anon_sym_signed] = ACTIONS(9737), + [anon_sym_unsigned] = ACTIONS(9737), + [anon_sym_long] = ACTIONS(9737), + [anon_sym_short] = ACTIONS(9737), + [anon_sym_LBRACK] = ACTIONS(9737), + [anon_sym_static] = ACTIONS(9737), + [anon_sym_register] = ACTIONS(9737), + [anon_sym_inline] = ACTIONS(9737), + [anon_sym___inline] = ACTIONS(9737), + [anon_sym___inline__] = ACTIONS(9737), + [anon_sym___forceinline] = ACTIONS(9737), + [anon_sym_thread_local] = ACTIONS(9737), + [anon_sym___thread] = ACTIONS(9737), + [anon_sym_const] = ACTIONS(9737), + [anon_sym_constexpr] = ACTIONS(9737), + [anon_sym_volatile] = ACTIONS(9737), + [anon_sym_restrict] = ACTIONS(9737), + [anon_sym___restrict__] = ACTIONS(9737), + [anon_sym__Atomic] = ACTIONS(9737), + [anon_sym__Noreturn] = ACTIONS(9737), + [anon_sym_noreturn] = ACTIONS(9737), + [anon_sym__Nonnull] = ACTIONS(9737), + [anon_sym_mutable] = ACTIONS(9737), + [anon_sym_constinit] = ACTIONS(9737), + [anon_sym_consteval] = ACTIONS(9737), + [anon_sym_alignas] = ACTIONS(9737), + [anon_sym__Alignas] = ACTIONS(9737), + [sym_primitive_type] = ACTIONS(9737), + [anon_sym_enum] = ACTIONS(9737), + [anon_sym_class] = ACTIONS(9737), + [anon_sym_struct] = ACTIONS(9737), + [anon_sym_union] = ACTIONS(9737), + [anon_sym_or] = ACTIONS(9923), + [anon_sym_and] = ACTIONS(9915), + [anon_sym_typename] = ACTIONS(9737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9737), + [anon_sym_decltype] = ACTIONS(9737), + [anon_sym_explicit] = ACTIONS(9737), + [anon_sym_template] = ACTIONS(9737), + [anon_sym_operator] = ACTIONS(9737), + [anon_sym_friend] = ACTIONS(9737), + [anon_sym_concept] = ACTIONS(9737), + [anon_sym_LBRACK_COLON] = ACTIONS(9739), + }, + [STATE(3977)] = { + [sym_identifier] = ACTIONS(9925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9927), + [anon_sym_COMMA] = ACTIONS(9927), + [anon_sym_RPAREN] = ACTIONS(9927), + [aux_sym_preproc_if_token2] = ACTIONS(9927), + [aux_sym_preproc_else_token1] = ACTIONS(9927), + [aux_sym_preproc_elif_token1] = ACTIONS(9925), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9927), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9927), + [anon_sym_LPAREN2] = ACTIONS(9927), + [anon_sym_DASH] = ACTIONS(9925), + [anon_sym_PLUS] = ACTIONS(9925), + [anon_sym_STAR] = ACTIONS(9925), + [anon_sym_SLASH] = ACTIONS(9925), + [anon_sym_PERCENT] = ACTIONS(9925), + [anon_sym_PIPE_PIPE] = ACTIONS(9927), + [anon_sym_AMP_AMP] = ACTIONS(9927), + [anon_sym_PIPE] = ACTIONS(9925), + [anon_sym_CARET] = ACTIONS(9925), + [anon_sym_AMP] = ACTIONS(9925), + [anon_sym_EQ_EQ] = ACTIONS(9927), + [anon_sym_BANG_EQ] = ACTIONS(9927), + [anon_sym_GT] = ACTIONS(9925), + [anon_sym_GT_EQ] = ACTIONS(9927), + [anon_sym_LT_EQ] = ACTIONS(9925), + [anon_sym_LT] = ACTIONS(9925), + [anon_sym_LT_LT] = ACTIONS(9925), + [anon_sym_GT_GT] = ACTIONS(9925), + [anon_sym_SEMI] = ACTIONS(9927), + [anon_sym___attribute__] = ACTIONS(9925), + [anon_sym___attribute] = ACTIONS(9925), + [anon_sym_COLON] = ACTIONS(9925), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9927), + [anon_sym_RBRACE] = ACTIONS(9927), + [anon_sym_LBRACK] = ACTIONS(9927), + [anon_sym_EQ] = ACTIONS(9925), + [anon_sym_QMARK] = ACTIONS(9927), + [anon_sym_STAR_EQ] = ACTIONS(9927), + [anon_sym_SLASH_EQ] = ACTIONS(9927), + [anon_sym_PERCENT_EQ] = ACTIONS(9927), + [anon_sym_PLUS_EQ] = ACTIONS(9927), + [anon_sym_DASH_EQ] = ACTIONS(9927), + [anon_sym_LT_LT_EQ] = ACTIONS(9927), + [anon_sym_GT_GT_EQ] = ACTIONS(9927), + [anon_sym_AMP_EQ] = ACTIONS(9927), + [anon_sym_CARET_EQ] = ACTIONS(9927), + [anon_sym_PIPE_EQ] = ACTIONS(9927), + [anon_sym_and_eq] = ACTIONS(9925), + [anon_sym_or_eq] = ACTIONS(9925), + [anon_sym_xor_eq] = ACTIONS(9925), + [anon_sym_LT_EQ_GT] = ACTIONS(9927), + [anon_sym_or] = ACTIONS(9925), + [anon_sym_and] = ACTIONS(9925), + [anon_sym_bitor] = ACTIONS(9925), + [anon_sym_xor] = ACTIONS(9925), + [anon_sym_bitand] = ACTIONS(9925), + [anon_sym_not_eq] = ACTIONS(9925), + [anon_sym_DASH_DASH] = ACTIONS(9927), + [anon_sym_PLUS_PLUS] = ACTIONS(9927), + [anon_sym_DOT] = ACTIONS(9925), + [anon_sym_DOT_STAR] = ACTIONS(9927), + [anon_sym_DASH_GT] = ACTIONS(9927), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9925), + [anon_sym_override] = ACTIONS(9925), + [anon_sym_requires] = ACTIONS(9925), + [anon_sym_COLON_RBRACK] = ACTIONS(9927), + }, + [STATE(3978)] = { + [sym_identifier] = ACTIONS(3149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), + [anon_sym_COMMA] = ACTIONS(3147), + [anon_sym_RPAREN] = ACTIONS(3147), + [aux_sym_preproc_if_token2] = ACTIONS(3147), + [aux_sym_preproc_else_token1] = ACTIONS(3147), + [aux_sym_preproc_elif_token1] = ACTIONS(3149), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3147), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3147), + [anon_sym_LPAREN2] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_PERCENT] = ACTIONS(3149), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_EQ_EQ] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3147), + [anon_sym_GT] = ACTIONS(3149), + [anon_sym_GT_EQ] = ACTIONS(3147), + [anon_sym_LT_EQ] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_LT_LT] = ACTIONS(3149), + [anon_sym_GT_GT] = ACTIONS(3149), + [anon_sym_SEMI] = ACTIONS(3147), + [anon_sym___attribute__] = ACTIONS(3149), + [anon_sym___attribute] = ACTIONS(3149), + [anon_sym_COLON] = ACTIONS(3149), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3147), + [anon_sym_RBRACE] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_QMARK] = ACTIONS(3147), + [anon_sym_STAR_EQ] = ACTIONS(3147), + [anon_sym_SLASH_EQ] = ACTIONS(3147), + [anon_sym_PERCENT_EQ] = ACTIONS(3147), + [anon_sym_PLUS_EQ] = ACTIONS(3147), + [anon_sym_DASH_EQ] = ACTIONS(3147), + [anon_sym_LT_LT_EQ] = ACTIONS(3147), + [anon_sym_GT_GT_EQ] = ACTIONS(3147), + [anon_sym_AMP_EQ] = ACTIONS(3147), + [anon_sym_CARET_EQ] = ACTIONS(3147), + [anon_sym_PIPE_EQ] = ACTIONS(3147), + [anon_sym_and_eq] = ACTIONS(3149), + [anon_sym_or_eq] = ACTIONS(3149), + [anon_sym_xor_eq] = ACTIONS(3149), + [anon_sym_LT_EQ_GT] = ACTIONS(3147), + [anon_sym_or] = ACTIONS(3149), + [anon_sym_and] = ACTIONS(3149), + [anon_sym_bitor] = ACTIONS(3149), + [anon_sym_xor] = ACTIONS(3149), + [anon_sym_bitand] = ACTIONS(3149), + [anon_sym_not_eq] = ACTIONS(3149), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DOT] = ACTIONS(3149), + [anon_sym_DOT_STAR] = ACTIONS(3147), + [anon_sym_DASH_GT] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_requires] = ACTIONS(3149), + [anon_sym_COLON_RBRACK] = ACTIONS(3147), + }, + [STATE(3979)] = { + [sym_attribute_specifier] = STATE(4994), + [sym_attribute_declaration] = STATE(5144), + [sym_gnu_asm_expression] = STATE(10251), + [sym_virtual_specifier] = STATE(5432), + [sym__function_exception_specification] = STATE(4560), + [sym__function_attributes_end] = STATE(6632), + [sym__function_postfix] = STATE(6055), + [sym_trailing_return_type] = STATE(6497), + [sym_noexcept] = STATE(4560), + [sym_throw_specifier] = STATE(4560), + [sym_requires_clause] = STATE(6055), + [aux_sym_type_definition_repeat1] = STATE(4994), + [aux_sym_attributed_declarator_repeat1] = STATE(5144), + [aux_sym__function_postfix_repeat1] = STATE(5432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7623), + [anon_sym_COMMA] = ACTIONS(7623), + [anon_sym_RPAREN] = ACTIONS(7623), + [anon_sym_LPAREN2] = ACTIONS(7623), + [anon_sym_DASH] = ACTIONS(7621), + [anon_sym_PLUS] = ACTIONS(7621), + [anon_sym_STAR] = ACTIONS(7623), + [anon_sym_SLASH] = ACTIONS(7621), + [anon_sym_PERCENT] = ACTIONS(7623), + [anon_sym_PIPE_PIPE] = ACTIONS(7623), + [anon_sym_AMP_AMP] = ACTIONS(7623), + [anon_sym_PIPE] = ACTIONS(7621), + [anon_sym_CARET] = ACTIONS(7623), + [anon_sym_AMP] = ACTIONS(7621), + [anon_sym_EQ_EQ] = ACTIONS(7623), + [anon_sym_BANG_EQ] = ACTIONS(7623), + [anon_sym_GT] = ACTIONS(7621), + [anon_sym_GT_EQ] = ACTIONS(7623), + [anon_sym_LT_EQ] = ACTIONS(7621), + [anon_sym_LT] = ACTIONS(7621), + [anon_sym_LT_LT] = ACTIONS(7623), + [anon_sym_GT_GT] = ACTIONS(7623), + [anon_sym_SEMI] = ACTIONS(7623), + [anon_sym___attribute__] = ACTIONS(7653), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_COLON] = ACTIONS(7621), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7623), + [anon_sym_RBRACE] = ACTIONS(7623), + [anon_sym_LBRACK] = ACTIONS(7621), + [anon_sym_QMARK] = ACTIONS(7623), + [anon_sym_LT_EQ_GT] = ACTIONS(7623), + [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(7623), + [anon_sym_PLUS_PLUS] = ACTIONS(7623), + [anon_sym_asm] = ACTIONS(6873), + [anon_sym___asm__] = ACTIONS(6873), + [anon_sym___asm] = ACTIONS(6415), + [anon_sym_DOT] = ACTIONS(7621), + [anon_sym_DOT_STAR] = ACTIONS(7623), + [anon_sym_DASH_GT] = ACTIONS(9898), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9929), + [anon_sym_override] = ACTIONS(9929), + [anon_sym_noexcept] = ACTIONS(7662), + [anon_sym_throw] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(9932), + [anon_sym_COLON_RBRACK] = ACTIONS(7623), + }, + [STATE(3980)] = { + [sym_identifier] = ACTIONS(9935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9937), + [anon_sym_COMMA] = ACTIONS(9937), + [anon_sym_RPAREN] = ACTIONS(9937), + [aux_sym_preproc_if_token2] = ACTIONS(9937), + [aux_sym_preproc_else_token1] = ACTIONS(9937), + [aux_sym_preproc_elif_token1] = ACTIONS(9935), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9937), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9937), + [anon_sym_LPAREN2] = ACTIONS(9937), + [anon_sym_DASH] = ACTIONS(9935), + [anon_sym_PLUS] = ACTIONS(9935), + [anon_sym_STAR] = ACTIONS(9935), + [anon_sym_SLASH] = ACTIONS(9935), + [anon_sym_PERCENT] = ACTIONS(9935), + [anon_sym_PIPE_PIPE] = ACTIONS(9937), + [anon_sym_AMP_AMP] = ACTIONS(9937), + [anon_sym_PIPE] = ACTIONS(9935), + [anon_sym_CARET] = ACTIONS(9935), + [anon_sym_AMP] = ACTIONS(9935), + [anon_sym_EQ_EQ] = ACTIONS(9937), + [anon_sym_BANG_EQ] = ACTIONS(9937), + [anon_sym_GT] = ACTIONS(9935), + [anon_sym_GT_EQ] = ACTIONS(9937), + [anon_sym_LT_EQ] = ACTIONS(9935), + [anon_sym_LT] = ACTIONS(9935), + [anon_sym_LT_LT] = ACTIONS(9935), + [anon_sym_GT_GT] = ACTIONS(9935), + [anon_sym_SEMI] = ACTIONS(9937), + [anon_sym___attribute__] = ACTIONS(9935), + [anon_sym___attribute] = ACTIONS(9935), + [anon_sym_COLON] = ACTIONS(9935), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9937), + [anon_sym_RBRACE] = ACTIONS(9937), + [anon_sym_LBRACK] = ACTIONS(9937), + [anon_sym_EQ] = ACTIONS(9935), + [anon_sym_QMARK] = ACTIONS(9937), + [anon_sym_STAR_EQ] = ACTIONS(9937), + [anon_sym_SLASH_EQ] = ACTIONS(9937), + [anon_sym_PERCENT_EQ] = ACTIONS(9937), + [anon_sym_PLUS_EQ] = ACTIONS(9937), + [anon_sym_DASH_EQ] = ACTIONS(9937), + [anon_sym_LT_LT_EQ] = ACTIONS(9937), + [anon_sym_GT_GT_EQ] = ACTIONS(9937), + [anon_sym_AMP_EQ] = ACTIONS(9937), + [anon_sym_CARET_EQ] = ACTIONS(9937), + [anon_sym_PIPE_EQ] = ACTIONS(9937), + [anon_sym_and_eq] = ACTIONS(9935), + [anon_sym_or_eq] = ACTIONS(9935), + [anon_sym_xor_eq] = ACTIONS(9935), + [anon_sym_LT_EQ_GT] = ACTIONS(9937), + [anon_sym_or] = ACTIONS(9935), + [anon_sym_and] = ACTIONS(9935), + [anon_sym_bitor] = ACTIONS(9935), + [anon_sym_xor] = ACTIONS(9935), + [anon_sym_bitand] = ACTIONS(9935), + [anon_sym_not_eq] = ACTIONS(9935), + [anon_sym_DASH_DASH] = ACTIONS(9937), + [anon_sym_PLUS_PLUS] = ACTIONS(9937), + [anon_sym_DOT] = ACTIONS(9935), + [anon_sym_DOT_STAR] = ACTIONS(9937), + [anon_sym_DASH_GT] = ACTIONS(9937), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9935), + [anon_sym_override] = ACTIONS(9935), + [anon_sym_requires] = ACTIONS(9935), + [anon_sym_COLON_RBRACK] = ACTIONS(9937), + }, + [STATE(3981)] = { + [sym_identifier] = ACTIONS(9939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9941), + [anon_sym_COMMA] = ACTIONS(9941), + [anon_sym_RPAREN] = ACTIONS(9941), + [aux_sym_preproc_if_token2] = ACTIONS(9941), + [aux_sym_preproc_else_token1] = ACTIONS(9941), + [aux_sym_preproc_elif_token1] = ACTIONS(9939), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9941), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9941), + [anon_sym_LPAREN2] = ACTIONS(9941), + [anon_sym_DASH] = ACTIONS(9939), + [anon_sym_PLUS] = ACTIONS(9939), + [anon_sym_STAR] = ACTIONS(9939), + [anon_sym_SLASH] = ACTIONS(9939), + [anon_sym_PERCENT] = ACTIONS(9939), + [anon_sym_PIPE_PIPE] = ACTIONS(9941), + [anon_sym_AMP_AMP] = ACTIONS(9941), + [anon_sym_PIPE] = ACTIONS(9939), + [anon_sym_CARET] = ACTIONS(9939), + [anon_sym_AMP] = ACTIONS(9939), + [anon_sym_EQ_EQ] = ACTIONS(9941), + [anon_sym_BANG_EQ] = ACTIONS(9941), + [anon_sym_GT] = ACTIONS(9939), + [anon_sym_GT_EQ] = ACTIONS(9941), + [anon_sym_LT_EQ] = ACTIONS(9939), + [anon_sym_LT] = ACTIONS(9939), + [anon_sym_LT_LT] = ACTIONS(9939), + [anon_sym_GT_GT] = ACTIONS(9939), + [anon_sym_SEMI] = ACTIONS(9941), + [anon_sym___attribute__] = ACTIONS(9939), + [anon_sym___attribute] = ACTIONS(9939), + [anon_sym_COLON] = ACTIONS(9939), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9941), + [anon_sym_RBRACE] = ACTIONS(9941), + [anon_sym_LBRACK] = ACTIONS(9941), + [anon_sym_EQ] = ACTIONS(9939), + [anon_sym_QMARK] = ACTIONS(9941), + [anon_sym_STAR_EQ] = ACTIONS(9941), + [anon_sym_SLASH_EQ] = ACTIONS(9941), + [anon_sym_PERCENT_EQ] = ACTIONS(9941), + [anon_sym_PLUS_EQ] = ACTIONS(9941), + [anon_sym_DASH_EQ] = ACTIONS(9941), + [anon_sym_LT_LT_EQ] = ACTIONS(9941), + [anon_sym_GT_GT_EQ] = ACTIONS(9941), + [anon_sym_AMP_EQ] = ACTIONS(9941), + [anon_sym_CARET_EQ] = ACTIONS(9941), + [anon_sym_PIPE_EQ] = ACTIONS(9941), + [anon_sym_and_eq] = ACTIONS(9939), + [anon_sym_or_eq] = ACTIONS(9939), + [anon_sym_xor_eq] = ACTIONS(9939), + [anon_sym_LT_EQ_GT] = ACTIONS(9941), + [anon_sym_or] = ACTIONS(9939), + [anon_sym_and] = ACTIONS(9939), + [anon_sym_bitor] = ACTIONS(9939), + [anon_sym_xor] = ACTIONS(9939), + [anon_sym_bitand] = ACTIONS(9939), + [anon_sym_not_eq] = ACTIONS(9939), + [anon_sym_DASH_DASH] = ACTIONS(9941), + [anon_sym_PLUS_PLUS] = ACTIONS(9941), + [anon_sym_DOT] = ACTIONS(9939), + [anon_sym_DOT_STAR] = ACTIONS(9941), + [anon_sym_DASH_GT] = ACTIONS(9941), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9939), + [anon_sym_override] = ACTIONS(9939), + [anon_sym_requires] = ACTIONS(9939), + [anon_sym_COLON_RBRACK] = ACTIONS(9941), + }, + [STATE(3982)] = { + [sym_identifier] = ACTIONS(9943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9945), + [anon_sym_COMMA] = ACTIONS(9945), + [anon_sym_RPAREN] = ACTIONS(9945), + [aux_sym_preproc_if_token2] = ACTIONS(9945), + [aux_sym_preproc_else_token1] = ACTIONS(9945), + [aux_sym_preproc_elif_token1] = ACTIONS(9943), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9945), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9945), + [anon_sym_LPAREN2] = ACTIONS(9945), + [anon_sym_DASH] = ACTIONS(9943), + [anon_sym_PLUS] = ACTIONS(9943), + [anon_sym_STAR] = ACTIONS(9943), + [anon_sym_SLASH] = ACTIONS(9943), + [anon_sym_PERCENT] = ACTIONS(9943), + [anon_sym_PIPE_PIPE] = ACTIONS(9945), + [anon_sym_AMP_AMP] = ACTIONS(9945), + [anon_sym_PIPE] = ACTIONS(9943), + [anon_sym_CARET] = ACTIONS(9943), + [anon_sym_AMP] = ACTIONS(9943), + [anon_sym_EQ_EQ] = ACTIONS(9945), + [anon_sym_BANG_EQ] = ACTIONS(9945), + [anon_sym_GT] = ACTIONS(9943), + [anon_sym_GT_EQ] = ACTIONS(9945), + [anon_sym_LT_EQ] = ACTIONS(9943), + [anon_sym_LT] = ACTIONS(9943), + [anon_sym_LT_LT] = ACTIONS(9943), + [anon_sym_GT_GT] = ACTIONS(9943), + [anon_sym_SEMI] = ACTIONS(9945), + [anon_sym___attribute__] = ACTIONS(9943), + [anon_sym___attribute] = ACTIONS(9943), + [anon_sym_COLON] = ACTIONS(9943), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9945), + [anon_sym_RBRACE] = ACTIONS(9945), + [anon_sym_LBRACK] = ACTIONS(9945), + [anon_sym_EQ] = ACTIONS(9943), + [anon_sym_QMARK] = ACTIONS(9945), + [anon_sym_STAR_EQ] = ACTIONS(9945), + [anon_sym_SLASH_EQ] = ACTIONS(9945), + [anon_sym_PERCENT_EQ] = ACTIONS(9945), + [anon_sym_PLUS_EQ] = ACTIONS(9945), + [anon_sym_DASH_EQ] = ACTIONS(9945), + [anon_sym_LT_LT_EQ] = ACTIONS(9945), + [anon_sym_GT_GT_EQ] = ACTIONS(9945), + [anon_sym_AMP_EQ] = ACTIONS(9945), + [anon_sym_CARET_EQ] = ACTIONS(9945), + [anon_sym_PIPE_EQ] = ACTIONS(9945), + [anon_sym_and_eq] = ACTIONS(9943), + [anon_sym_or_eq] = ACTIONS(9943), + [anon_sym_xor_eq] = ACTIONS(9943), + [anon_sym_LT_EQ_GT] = ACTIONS(9945), + [anon_sym_or] = ACTIONS(9943), + [anon_sym_and] = ACTIONS(9943), + [anon_sym_bitor] = ACTIONS(9943), + [anon_sym_xor] = ACTIONS(9943), + [anon_sym_bitand] = ACTIONS(9943), + [anon_sym_not_eq] = ACTIONS(9943), + [anon_sym_DASH_DASH] = ACTIONS(9945), + [anon_sym_PLUS_PLUS] = ACTIONS(9945), + [anon_sym_DOT] = ACTIONS(9943), + [anon_sym_DOT_STAR] = ACTIONS(9945), + [anon_sym_DASH_GT] = ACTIONS(9945), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9943), + [anon_sym_override] = ACTIONS(9943), + [anon_sym_requires] = ACTIONS(9943), + [anon_sym_COLON_RBRACK] = ACTIONS(9945), + }, + [STATE(3983)] = { + [sym_identifier] = ACTIONS(6829), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_TILDE] = ACTIONS(6831), + [anon_sym_STAR] = ACTIONS(6831), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym_virtual] = ACTIONS(6829), + [anon_sym_extern] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_using] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6831), + [anon_sym___declspec] = ACTIONS(6829), + [anon_sym___based] = ACTIONS(6829), + [anon_sym___cdecl] = ACTIONS(6829), + [anon_sym___clrcall] = ACTIONS(6829), + [anon_sym___stdcall] = ACTIONS(6829), + [anon_sym___fastcall] = ACTIONS(6829), + [anon_sym___thiscall] = ACTIONS(6829), + [anon_sym___vectorcall] = ACTIONS(6829), + [anon_sym_signed] = ACTIONS(6829), + [anon_sym_unsigned] = ACTIONS(6829), + [anon_sym_long] = ACTIONS(6829), + [anon_sym_short] = ACTIONS(6829), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_static] = ACTIONS(6829), + [anon_sym_register] = ACTIONS(6829), + [anon_sym_inline] = ACTIONS(6829), + [anon_sym___inline] = ACTIONS(6829), + [anon_sym___inline__] = ACTIONS(6829), + [anon_sym___forceinline] = ACTIONS(6829), + [anon_sym_thread_local] = ACTIONS(6829), + [anon_sym___thread] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [sym_primitive_type] = ACTIONS(6829), + [anon_sym_enum] = ACTIONS(6829), + [anon_sym_class] = ACTIONS(6829), + [anon_sym_struct] = ACTIONS(6829), + [anon_sym_union] = ACTIONS(6829), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_typename] = ACTIONS(6829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_explicit] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_operator] = ACTIONS(6829), + [anon_sym_friend] = ACTIONS(6829), + [anon_sym_concept] = ACTIONS(6829), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), + }, + [STATE(3984)] = { + [sym_identifier] = ACTIONS(7798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7800), + [anon_sym_COMMA] = ACTIONS(7800), + [anon_sym_RPAREN] = ACTIONS(7800), + [anon_sym_LPAREN2] = ACTIONS(7800), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_PLUS] = ACTIONS(7798), + [anon_sym_STAR] = ACTIONS(7800), + [anon_sym_SLASH] = ACTIONS(7798), + [anon_sym_PERCENT] = ACTIONS(7800), + [anon_sym_PIPE_PIPE] = ACTIONS(7800), + [anon_sym_AMP_AMP] = ACTIONS(7800), + [anon_sym_PIPE] = ACTIONS(7798), + [anon_sym_CARET] = ACTIONS(7800), + [anon_sym_AMP] = ACTIONS(7798), + [anon_sym_EQ_EQ] = ACTIONS(7800), + [anon_sym_BANG_EQ] = ACTIONS(7800), + [anon_sym_GT] = ACTIONS(7798), + [anon_sym_GT_EQ] = ACTIONS(7800), + [anon_sym_LT_EQ] = ACTIONS(7798), + [anon_sym_LT] = ACTIONS(7798), + [anon_sym_LT_LT] = ACTIONS(7800), + [anon_sym_GT_GT] = ACTIONS(7800), + [anon_sym_SEMI] = ACTIONS(7800), + [anon_sym___extension__] = ACTIONS(7798), + [anon_sym___attribute__] = ACTIONS(7798), + [anon_sym___attribute] = ACTIONS(7798), + [anon_sym_COLON] = ACTIONS(7798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7800), + [anon_sym___based] = ACTIONS(7798), + [anon_sym_LBRACE] = ACTIONS(7800), + [anon_sym_RBRACE] = ACTIONS(7800), + [anon_sym_signed] = ACTIONS(7798), + [anon_sym_unsigned] = ACTIONS(7798), + [anon_sym_long] = ACTIONS(7798), + [anon_sym_short] = ACTIONS(7798), + [anon_sym_LBRACK] = ACTIONS(7800), + [anon_sym_const] = ACTIONS(7798), + [anon_sym_constexpr] = ACTIONS(7798), + [anon_sym_volatile] = ACTIONS(7798), + [anon_sym_restrict] = ACTIONS(7798), + [anon_sym___restrict__] = ACTIONS(7798), + [anon_sym__Atomic] = ACTIONS(7798), + [anon_sym__Noreturn] = ACTIONS(7798), + [anon_sym_noreturn] = ACTIONS(7798), + [anon_sym__Nonnull] = ACTIONS(7798), + [anon_sym_mutable] = ACTIONS(7798), + [anon_sym_constinit] = ACTIONS(7798), + [anon_sym_consteval] = ACTIONS(7798), + [anon_sym_alignas] = ACTIONS(7798), + [anon_sym__Alignas] = ACTIONS(7798), + [sym_primitive_type] = ACTIONS(7798), + [anon_sym_QMARK] = ACTIONS(7800), + [anon_sym_LT_EQ_GT] = ACTIONS(7800), + [anon_sym_or] = ACTIONS(7798), + [anon_sym_and] = ACTIONS(7798), + [anon_sym_bitor] = ACTIONS(7798), + [anon_sym_xor] = ACTIONS(7798), + [anon_sym_bitand] = ACTIONS(7798), + [anon_sym_not_eq] = ACTIONS(7798), + [anon_sym_DASH_DASH] = ACTIONS(7800), + [anon_sym_PLUS_PLUS] = ACTIONS(7800), + [anon_sym_DOT] = ACTIONS(7798), + [anon_sym_DOT_STAR] = ACTIONS(7800), + [anon_sym_DASH_GT] = ACTIONS(7800), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7800), + }, + [STATE(3985)] = { + [sym_attribute_specifier] = STATE(4247), + [sym_enumerator_list] = STATE(4057), + [sym_identifier] = ACTIONS(7417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7419), + [anon_sym_COMMA] = ACTIONS(7419), + [anon_sym_RPAREN] = ACTIONS(7419), + [anon_sym_LPAREN2] = ACTIONS(7419), + [anon_sym_TILDE] = ACTIONS(7419), + [anon_sym_STAR] = ACTIONS(7419), + [anon_sym_AMP_AMP] = ACTIONS(7419), + [anon_sym_AMP] = ACTIONS(7417), + [anon_sym_SEMI] = ACTIONS(7419), + [anon_sym___extension__] = ACTIONS(7417), + [anon_sym_virtual] = ACTIONS(7417), + [anon_sym_extern] = ACTIONS(7417), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7417), + [anon_sym_COLON_COLON] = ACTIONS(7419), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7419), + [anon_sym___declspec] = ACTIONS(7417), + [anon_sym___based] = ACTIONS(7417), + [anon_sym___cdecl] = ACTIONS(7417), + [anon_sym___clrcall] = ACTIONS(7417), + [anon_sym___stdcall] = ACTIONS(7417), + [anon_sym___fastcall] = ACTIONS(7417), + [anon_sym___thiscall] = ACTIONS(7417), + [anon_sym___vectorcall] = ACTIONS(7417), + [anon_sym_LBRACE] = ACTIONS(9947), + [anon_sym_LBRACK] = ACTIONS(7417), + [anon_sym_static] = ACTIONS(7417), + [anon_sym_EQ] = ACTIONS(7419), + [anon_sym_register] = ACTIONS(7417), + [anon_sym_inline] = ACTIONS(7417), + [anon_sym___inline] = ACTIONS(7417), + [anon_sym___inline__] = ACTIONS(7417), + [anon_sym___forceinline] = ACTIONS(7417), + [anon_sym_thread_local] = ACTIONS(7417), + [anon_sym___thread] = ACTIONS(7417), + [anon_sym_const] = ACTIONS(7417), + [anon_sym_constexpr] = ACTIONS(7417), + [anon_sym_volatile] = ACTIONS(7417), + [anon_sym_restrict] = ACTIONS(7417), + [anon_sym___restrict__] = ACTIONS(7417), + [anon_sym__Atomic] = ACTIONS(7417), + [anon_sym__Noreturn] = ACTIONS(7417), + [anon_sym_noreturn] = ACTIONS(7417), + [anon_sym__Nonnull] = ACTIONS(7417), + [anon_sym_mutable] = ACTIONS(7417), + [anon_sym_constinit] = ACTIONS(7417), + [anon_sym_consteval] = ACTIONS(7417), + [anon_sym_alignas] = ACTIONS(7417), + [anon_sym__Alignas] = ACTIONS(7417), + [anon_sym_asm] = ACTIONS(7417), + [anon_sym___asm__] = ACTIONS(7417), + [anon_sym___asm] = ACTIONS(7417), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7417), + [anon_sym_final] = ACTIONS(7417), + [anon_sym_override] = ACTIONS(7417), + [anon_sym_template] = ACTIONS(7417), + [anon_sym_GT2] = ACTIONS(7419), + [anon_sym_operator] = ACTIONS(7417), + [anon_sym_try] = ACTIONS(7417), + [anon_sym_requires] = ACTIONS(7417), + [anon_sym_LBRACK_COLON] = ACTIONS(7419), + }, + [STATE(3986)] = { + [sym_ms_based_modifier] = STATE(12068), + [sym__declarator] = STATE(9918), + [sym__abstract_declarator] = STATE(10183), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8830), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8900), + [anon_sym_AMP_AMP] = ACTIONS(8902), + [anon_sym_AMP] = ACTIONS(8904), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(8906), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3987)] = { + [sym_string_literal] = STATE(6282), + [sym_template_argument_list] = STATE(7783), + [sym_raw_string_literal] = STATE(6282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5671), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9949), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(7197), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(7199), + [anon_sym_SLASH_EQ] = ACTIONS(7199), + [anon_sym_PERCENT_EQ] = ACTIONS(7199), + [anon_sym_PLUS_EQ] = ACTIONS(7199), + [anon_sym_DASH_EQ] = ACTIONS(7199), + [anon_sym_LT_LT_EQ] = ACTIONS(7199), + [anon_sym_GT_GT_EQ] = ACTIONS(7197), + [anon_sym_AMP_EQ] = ACTIONS(7199), + [anon_sym_CARET_EQ] = ACTIONS(7199), + [anon_sym_PIPE_EQ] = ACTIONS(7199), + [anon_sym_and_eq] = ACTIONS(7199), + [anon_sym_or_eq] = ACTIONS(7199), + [anon_sym_xor_eq] = ACTIONS(7199), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7201), + [anon_sym_u_DQUOTE] = ACTIONS(7201), + [anon_sym_U_DQUOTE] = ACTIONS(7201), + [anon_sym_u8_DQUOTE] = ACTIONS(7201), + [anon_sym_DQUOTE] = ACTIONS(7201), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5663), + [anon_sym_R_DQUOTE] = ACTIONS(7207), + [anon_sym_LR_DQUOTE] = ACTIONS(7207), + [anon_sym_uR_DQUOTE] = ACTIONS(7207), + [anon_sym_UR_DQUOTE] = ACTIONS(7207), + [anon_sym_u8R_DQUOTE] = ACTIONS(7207), + }, + [STATE(3988)] = { + [sym_attribute_specifier] = STATE(4151), + [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___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [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_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_COLON_RBRACK] = ACTIONS(7674), + }, + [STATE(3989)] = { + [sym__abstract_declarator] = STATE(6882), + [sym_abstract_parenthesized_declarator] = STATE(6060), + [sym_abstract_pointer_declarator] = STATE(6060), + [sym_abstract_function_declarator] = STATE(6060), + [sym_abstract_array_declarator] = STATE(6060), + [sym_parameter_list] = STATE(2269), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(6060), + [sym__function_declarator_seq] = STATE(6061), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9638), + [sym_abstract_qualified_identifier] = STATE(6060), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7862), + [anon_sym_COMMA] = ACTIONS(7862), + [aux_sym_preproc_if_token2] = ACTIONS(7862), + [aux_sym_preproc_else_token1] = ACTIONS(7862), + [aux_sym_preproc_elif_token1] = ACTIONS(7864), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7862), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7862), + [anon_sym_LPAREN2] = ACTIONS(7133), + [anon_sym_DASH] = ACTIONS(7864), + [anon_sym_PLUS] = ACTIONS(7864), + [anon_sym_STAR] = ACTIONS(7231), + [anon_sym_SLASH] = ACTIONS(7864), + [anon_sym_PERCENT] = ACTIONS(7862), + [anon_sym_PIPE_PIPE] = ACTIONS(7862), + [anon_sym_AMP_AMP] = ACTIONS(7233), + [anon_sym_PIPE] = ACTIONS(7864), + [anon_sym_CARET] = ACTIONS(7862), + [anon_sym_AMP] = ACTIONS(7235), + [anon_sym_EQ_EQ] = ACTIONS(7862), + [anon_sym_BANG_EQ] = ACTIONS(7862), + [anon_sym_GT] = ACTIONS(7864), + [anon_sym_GT_EQ] = ACTIONS(7862), + [anon_sym_LT_EQ] = ACTIONS(7864), + [anon_sym_LT] = ACTIONS(7864), + [anon_sym_LT_LT] = ACTIONS(7862), + [anon_sym_GT_GT] = ACTIONS(7862), + [anon_sym_COLON_COLON] = ACTIONS(7237), + [anon_sym_LBRACK] = ACTIONS(7147), + [anon_sym_QMARK] = ACTIONS(7862), + [anon_sym_LT_EQ_GT] = ACTIONS(7862), + [anon_sym_or] = ACTIONS(7864), + [anon_sym_and] = ACTIONS(7864), + [anon_sym_bitor] = ACTIONS(7864), + [anon_sym_xor] = ACTIONS(7864), + [anon_sym_bitand] = ACTIONS(7864), + [anon_sym_not_eq] = ACTIONS(7864), + [anon_sym_DASH_DASH] = ACTIONS(7862), + [anon_sym_PLUS_PLUS] = ACTIONS(7862), + [anon_sym_DOT] = ACTIONS(7864), + [anon_sym_DOT_STAR] = ACTIONS(7862), + [anon_sym_DASH_GT] = ACTIONS(7862), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(7864), + [anon_sym_override] = ACTIONS(7864), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_requires] = ACTIONS(7864), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3990)] = { + [sym_string_literal] = STATE(3990), + [sym_raw_string_literal] = STATE(3990), + [aux_sym_concatenated_string_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(9952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8756), + [anon_sym_COMMA] = ACTIONS(8756), + [anon_sym_LPAREN2] = ACTIONS(8756), + [anon_sym_DASH] = ACTIONS(8758), + [anon_sym_PLUS] = ACTIONS(8758), + [anon_sym_STAR] = ACTIONS(8758), + [anon_sym_SLASH] = ACTIONS(8758), + [anon_sym_PERCENT] = ACTIONS(8758), + [anon_sym_PIPE_PIPE] = ACTIONS(8756), + [anon_sym_AMP_AMP] = ACTIONS(8756), + [anon_sym_PIPE] = ACTIONS(8758), + [anon_sym_CARET] = ACTIONS(8758), + [anon_sym_AMP] = ACTIONS(8758), + [anon_sym_EQ_EQ] = ACTIONS(8756), + [anon_sym_BANG_EQ] = ACTIONS(8756), + [anon_sym_GT] = ACTIONS(8758), + [anon_sym_GT_EQ] = ACTIONS(8756), + [anon_sym_LT_EQ] = ACTIONS(8758), + [anon_sym_LT] = ACTIONS(8758), + [anon_sym_LT_LT] = ACTIONS(8758), + [anon_sym_GT_GT] = ACTIONS(8758), + [anon_sym_LBRACK] = ACTIONS(8756), + [anon_sym_RBRACK] = ACTIONS(8756), + [anon_sym_EQ] = ACTIONS(8758), + [anon_sym_QMARK] = ACTIONS(8756), + [anon_sym_STAR_EQ] = ACTIONS(8756), + [anon_sym_SLASH_EQ] = ACTIONS(8756), + [anon_sym_PERCENT_EQ] = ACTIONS(8756), + [anon_sym_PLUS_EQ] = ACTIONS(8756), + [anon_sym_DASH_EQ] = ACTIONS(8756), + [anon_sym_LT_LT_EQ] = ACTIONS(8756), + [anon_sym_GT_GT_EQ] = ACTIONS(8756), + [anon_sym_AMP_EQ] = ACTIONS(8756), + [anon_sym_CARET_EQ] = ACTIONS(8756), + [anon_sym_PIPE_EQ] = ACTIONS(8756), + [anon_sym_and_eq] = ACTIONS(8758), + [anon_sym_or_eq] = ACTIONS(8758), + [anon_sym_xor_eq] = ACTIONS(8758), + [anon_sym_LT_EQ_GT] = ACTIONS(8756), + [anon_sym_or] = ACTIONS(8758), + [anon_sym_and] = ACTIONS(8758), + [anon_sym_bitor] = ACTIONS(8758), + [anon_sym_xor] = ACTIONS(8758), + [anon_sym_bitand] = ACTIONS(8758), + [anon_sym_not_eq] = ACTIONS(8758), + [anon_sym_DASH_DASH] = ACTIONS(8756), + [anon_sym_PLUS_PLUS] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8758), + [anon_sym_DOT_STAR] = ACTIONS(8756), + [anon_sym_DASH_GT] = ACTIONS(8756), + [anon_sym_L_DQUOTE] = ACTIONS(9955), + [anon_sym_u_DQUOTE] = ACTIONS(9955), + [anon_sym_U_DQUOTE] = ACTIONS(9955), + [anon_sym_u8_DQUOTE] = ACTIONS(9955), + [anon_sym_DQUOTE] = ACTIONS(9955), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9958), + [anon_sym_LR_DQUOTE] = ACTIONS(9958), + [anon_sym_uR_DQUOTE] = ACTIONS(9958), + [anon_sym_UR_DQUOTE] = ACTIONS(9958), + [anon_sym_u8R_DQUOTE] = ACTIONS(9958), + [sym_literal_suffix] = ACTIONS(8758), + }, + [STATE(3991)] = { + [sym_ms_based_modifier] = STATE(12068), + [sym__declarator] = STATE(9890), + [sym__abstract_declarator] = STATE(10154), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8830), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8900), + [anon_sym_AMP_AMP] = ACTIONS(8902), + [anon_sym_AMP] = ACTIONS(8904), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(8906), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3992)] = { + [sym_ms_based_modifier] = STATE(12869), + [sym__type_declarator] = STATE(9288), + [sym__abstract_declarator] = STATE(10072), + [sym_parenthesized_type_declarator] = STATE(9579), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(9579), + [sym_pointer_type_declarator] = STATE(9634), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(9579), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(9579), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(6893), + [sym_alignas_qualifier] = STATE(7080), + [sym_parameter_list] = STATE(5388), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(9579), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9640), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(6893), + [sym_identifier] = ACTIONS(8908), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(8910), + [anon_sym_STAR] = ACTIONS(8912), + [anon_sym_AMP_AMP] = ACTIONS(8914), + [anon_sym_AMP] = ACTIONS(8916), + [anon_sym___extension__] = ACTIONS(8918), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(8920), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(8926), + [anon_sym_unsigned] = ACTIONS(8926), + [anon_sym_long] = ACTIONS(8926), + [anon_sym_short] = ACTIONS(8926), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_EQ] = ACTIONS(5968), + [anon_sym_const] = ACTIONS(8918), + [anon_sym_constexpr] = ACTIONS(8918), + [anon_sym_volatile] = ACTIONS(8918), + [anon_sym_restrict] = ACTIONS(8918), + [anon_sym___restrict__] = ACTIONS(8918), + [anon_sym__Atomic] = ACTIONS(8918), + [anon_sym__Noreturn] = ACTIONS(8918), + [anon_sym_noreturn] = ACTIONS(8918), + [anon_sym__Nonnull] = ACTIONS(8918), + [anon_sym_mutable] = ACTIONS(8918), + [anon_sym_constinit] = ACTIONS(8918), + [anon_sym_consteval] = ACTIONS(8918), + [anon_sym_alignas] = ACTIONS(8928), + [anon_sym__Alignas] = ACTIONS(8928), + [sym_primitive_type] = ACTIONS(8930), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3993)] = { + [sym_attribute_specifier] = STATE(4152), + [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___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [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_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_COLON_RBRACK] = ACTIONS(7682), + }, + [STATE(3994)] = { + [sym_ms_based_modifier] = STATE(12869), + [sym__type_declarator] = STATE(9236), + [sym__abstract_declarator] = STATE(10073), + [sym_parenthesized_type_declarator] = STATE(9579), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_type_declarator] = STATE(9579), + [sym_pointer_type_declarator] = STATE(9634), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_type_declarator] = STATE(9579), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_type_declarator] = STATE(9579), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(6893), + [sym_alignas_qualifier] = STATE(7080), + [sym_parameter_list] = STATE(5388), + [sym_decltype] = STATE(13053), + [sym_reference_type_declarator] = STATE(9579), + [sym_abstract_reference_declarator] = STATE(9556), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9640), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(6893), + [sym_identifier] = ACTIONS(8908), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(8910), + [anon_sym_STAR] = ACTIONS(8912), + [anon_sym_AMP_AMP] = ACTIONS(8914), + [anon_sym_AMP] = ACTIONS(8916), + [anon_sym___extension__] = ACTIONS(8918), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(8920), + [anon_sym___based] = ACTIONS(53), + [anon_sym_signed] = ACTIONS(8926), + [anon_sym_unsigned] = ACTIONS(8926), + [anon_sym_long] = ACTIONS(8926), + [anon_sym_short] = ACTIONS(8926), + [anon_sym_LBRACK] = ACTIONS(6014), + [anon_sym_EQ] = ACTIONS(6600), + [anon_sym_const] = ACTIONS(8918), + [anon_sym_constexpr] = ACTIONS(8918), + [anon_sym_volatile] = ACTIONS(8918), + [anon_sym_restrict] = ACTIONS(8918), + [anon_sym___restrict__] = ACTIONS(8918), + [anon_sym__Atomic] = ACTIONS(8918), + [anon_sym__Noreturn] = ACTIONS(8918), + [anon_sym_noreturn] = ACTIONS(8918), + [anon_sym__Nonnull] = ACTIONS(8918), + [anon_sym_mutable] = ACTIONS(8918), + [anon_sym_constinit] = ACTIONS(8918), + [anon_sym_consteval] = ACTIONS(8918), + [anon_sym_alignas] = ACTIONS(8928), + [anon_sym__Alignas] = ACTIONS(8928), + [sym_primitive_type] = ACTIONS(8930), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6600), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(3995)] = { + [sym_template_argument_list] = STATE(3266), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7444), + [anon_sym_COMMA] = ACTIONS(7444), + [anon_sym_RPAREN] = ACTIONS(7444), + [anon_sym_LPAREN2] = ACTIONS(7444), + [anon_sym_DASH] = ACTIONS(7451), + [anon_sym_PLUS] = ACTIONS(7451), + [anon_sym_STAR] = ACTIONS(7444), + [anon_sym_SLASH] = ACTIONS(7451), + [anon_sym_PERCENT] = ACTIONS(7444), + [anon_sym_PIPE_PIPE] = ACTIONS(7444), + [anon_sym_AMP_AMP] = ACTIONS(7444), + [anon_sym_PIPE] = ACTIONS(7451), + [anon_sym_CARET] = ACTIONS(7444), + [anon_sym_AMP] = ACTIONS(7451), + [anon_sym_EQ_EQ] = ACTIONS(7444), + [anon_sym_BANG_EQ] = ACTIONS(7444), + [anon_sym_GT] = ACTIONS(7451), + [anon_sym_GT_EQ] = ACTIONS(7444), + [anon_sym_LT_EQ] = ACTIONS(7451), + [anon_sym_LT] = ACTIONS(8364), + [anon_sym_LT_LT] = ACTIONS(7444), + [anon_sym_GT_GT] = ACTIONS(7444), + [anon_sym_SEMI] = ACTIONS(7444), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7451), + [anon_sym___attribute] = ACTIONS(7451), + [anon_sym_COLON] = ACTIONS(7451), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_RBRACE] = ACTIONS(7444), + [anon_sym_LBRACK] = ACTIONS(7451), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7444), + [anon_sym_LT_EQ_GT] = ACTIONS(7444), + [anon_sym_or] = ACTIONS(7451), + [anon_sym_and] = ACTIONS(7451), + [anon_sym_bitor] = ACTIONS(7451), + [anon_sym_xor] = ACTIONS(7451), + [anon_sym_bitand] = ACTIONS(7451), + [anon_sym_not_eq] = ACTIONS(7451), + [anon_sym_DASH_DASH] = ACTIONS(7444), + [anon_sym_PLUS_PLUS] = ACTIONS(7444), + [anon_sym_DOT] = ACTIONS(7451), + [anon_sym_DOT_STAR] = ACTIONS(7444), + [anon_sym_DASH_GT] = ACTIONS(7444), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + [anon_sym_COLON_RBRACK] = ACTIONS(7444), + }, + [STATE(3996)] = { + [sym_attribute_specifier] = STATE(4154), + [sym_identifier] = ACTIONS(7688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7690), + [anon_sym_COMMA] = ACTIONS(7690), + [anon_sym_RPAREN] = ACTIONS(7690), + [aux_sym_preproc_if_token2] = ACTIONS(7690), + [aux_sym_preproc_else_token1] = ACTIONS(7690), + [aux_sym_preproc_elif_token1] = ACTIONS(7688), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7690), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7690), + [anon_sym_LPAREN2] = ACTIONS(7690), + [anon_sym_DASH] = ACTIONS(7688), + [anon_sym_PLUS] = ACTIONS(7688), + [anon_sym_STAR] = ACTIONS(7688), + [anon_sym_SLASH] = ACTIONS(7688), + [anon_sym_PERCENT] = ACTIONS(7688), + [anon_sym_PIPE_PIPE] = ACTIONS(7690), + [anon_sym_AMP_AMP] = ACTIONS(7690), + [anon_sym_PIPE] = ACTIONS(7688), + [anon_sym_CARET] = ACTIONS(7688), + [anon_sym_AMP] = ACTIONS(7688), + [anon_sym_EQ_EQ] = ACTIONS(7690), + [anon_sym_BANG_EQ] = ACTIONS(7690), + [anon_sym_GT] = ACTIONS(7688), + [anon_sym_GT_EQ] = ACTIONS(7690), + [anon_sym_LT_EQ] = ACTIONS(7688), + [anon_sym_LT] = ACTIONS(7688), + [anon_sym_LT_LT] = ACTIONS(7688), + [anon_sym_GT_GT] = ACTIONS(7688), + [anon_sym_SEMI] = ACTIONS(7690), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7688), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7690), + [anon_sym_LBRACE] = ACTIONS(7690), + [anon_sym_RBRACE] = ACTIONS(7690), + [anon_sym_LBRACK] = ACTIONS(7690), + [anon_sym_EQ] = ACTIONS(7688), + [anon_sym_QMARK] = ACTIONS(7690), + [anon_sym_STAR_EQ] = ACTIONS(7690), + [anon_sym_SLASH_EQ] = ACTIONS(7690), + [anon_sym_PERCENT_EQ] = ACTIONS(7690), + [anon_sym_PLUS_EQ] = ACTIONS(7690), + [anon_sym_DASH_EQ] = ACTIONS(7690), + [anon_sym_LT_LT_EQ] = ACTIONS(7690), + [anon_sym_GT_GT_EQ] = ACTIONS(7690), + [anon_sym_AMP_EQ] = ACTIONS(7690), + [anon_sym_CARET_EQ] = ACTIONS(7690), + [anon_sym_PIPE_EQ] = ACTIONS(7690), + [anon_sym_and_eq] = ACTIONS(7688), + [anon_sym_or_eq] = ACTIONS(7688), + [anon_sym_xor_eq] = ACTIONS(7688), + [anon_sym_LT_EQ_GT] = ACTIONS(7690), + [anon_sym_or] = ACTIONS(7688), + [anon_sym_and] = ACTIONS(7688), + [anon_sym_bitor] = ACTIONS(7688), + [anon_sym_xor] = ACTIONS(7688), + [anon_sym_bitand] = ACTIONS(7688), + [anon_sym_not_eq] = ACTIONS(7688), + [anon_sym_DASH_DASH] = ACTIONS(7690), + [anon_sym_PLUS_PLUS] = ACTIONS(7690), + [anon_sym_DOT] = ACTIONS(7688), + [anon_sym_DOT_STAR] = ACTIONS(7690), + [anon_sym_DASH_GT] = ACTIONS(7690), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7690), + }, + [STATE(3997)] = { + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(3998)] = { + [sym_template_argument_list] = STATE(4031), + [sym_identifier] = ACTIONS(9961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9963), + [anon_sym_COMMA] = ACTIONS(9963), + [anon_sym_RPAREN] = ACTIONS(9963), + [aux_sym_preproc_if_token2] = ACTIONS(9963), + [aux_sym_preproc_else_token1] = ACTIONS(9963), + [aux_sym_preproc_elif_token1] = ACTIONS(9961), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9963), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9963), + [anon_sym_LPAREN2] = ACTIONS(9963), + [anon_sym_DASH] = ACTIONS(9961), + [anon_sym_PLUS] = ACTIONS(9961), + [anon_sym_STAR] = ACTIONS(9961), + [anon_sym_SLASH] = ACTIONS(9961), + [anon_sym_PERCENT] = ACTIONS(9961), + [anon_sym_PIPE_PIPE] = ACTIONS(9963), + [anon_sym_AMP_AMP] = ACTIONS(9963), + [anon_sym_PIPE] = ACTIONS(9961), + [anon_sym_CARET] = ACTIONS(9961), + [anon_sym_AMP] = ACTIONS(9961), + [anon_sym_EQ_EQ] = ACTIONS(9963), + [anon_sym_BANG_EQ] = ACTIONS(9963), + [anon_sym_GT] = ACTIONS(9961), + [anon_sym_GT_EQ] = ACTIONS(9963), + [anon_sym_LT_EQ] = ACTIONS(9961), + [anon_sym_LT] = ACTIONS(9965), + [anon_sym_LT_LT] = ACTIONS(9961), + [anon_sym_GT_GT] = ACTIONS(9961), + [anon_sym_SEMI] = ACTIONS(9963), + [anon_sym___attribute__] = ACTIONS(9961), + [anon_sym___attribute] = ACTIONS(9961), + [anon_sym_COLON] = ACTIONS(9961), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9963), + [anon_sym_RBRACE] = ACTIONS(9963), + [anon_sym_LBRACK] = ACTIONS(9963), + [anon_sym_EQ] = ACTIONS(9961), + [anon_sym_QMARK] = ACTIONS(9963), + [anon_sym_STAR_EQ] = ACTIONS(9963), + [anon_sym_SLASH_EQ] = ACTIONS(9963), + [anon_sym_PERCENT_EQ] = ACTIONS(9963), + [anon_sym_PLUS_EQ] = ACTIONS(9963), + [anon_sym_DASH_EQ] = ACTIONS(9963), + [anon_sym_LT_LT_EQ] = ACTIONS(9963), + [anon_sym_GT_GT_EQ] = ACTIONS(9963), + [anon_sym_AMP_EQ] = ACTIONS(9963), + [anon_sym_CARET_EQ] = ACTIONS(9963), + [anon_sym_PIPE_EQ] = ACTIONS(9963), + [anon_sym_and_eq] = ACTIONS(9961), + [anon_sym_or_eq] = ACTIONS(9961), + [anon_sym_xor_eq] = ACTIONS(9961), + [anon_sym_LT_EQ_GT] = ACTIONS(9963), + [anon_sym_or] = ACTIONS(9961), + [anon_sym_and] = ACTIONS(9961), + [anon_sym_bitor] = ACTIONS(9961), + [anon_sym_xor] = ACTIONS(9961), + [anon_sym_bitand] = ACTIONS(9961), + [anon_sym_not_eq] = ACTIONS(9961), + [anon_sym_DASH_DASH] = ACTIONS(9963), + [anon_sym_PLUS_PLUS] = ACTIONS(9963), + [anon_sym_DOT] = ACTIONS(9961), + [anon_sym_DOT_STAR] = ACTIONS(9963), + [anon_sym_DASH_GT] = ACTIONS(9963), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9963), + }, + [STATE(3999)] = { + [sym_type_qualifier] = STATE(4040), + [sym_alignas_qualifier] = STATE(4428), + [aux_sym__type_definition_type_repeat1] = STATE(4040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7059), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7059), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7059), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7059), + [anon_sym_GT_GT] = ACTIONS(7059), + [anon_sym___extension__] = ACTIONS(8162), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_RBRACK] = ACTIONS(7059), + [anon_sym_const] = ACTIONS(8170), + [anon_sym_constexpr] = ACTIONS(8162), + [anon_sym_volatile] = ACTIONS(8162), + [anon_sym_restrict] = ACTIONS(8162), + [anon_sym___restrict__] = ACTIONS(8162), + [anon_sym__Atomic] = ACTIONS(8162), + [anon_sym__Noreturn] = ACTIONS(8162), + [anon_sym_noreturn] = ACTIONS(8162), + [anon_sym__Nonnull] = ACTIONS(8162), + [anon_sym_mutable] = ACTIONS(8162), + [anon_sym_constinit] = ACTIONS(8162), + [anon_sym_consteval] = ACTIONS(8162), + [anon_sym_alignas] = ACTIONS(8172), + [anon_sym__Alignas] = ACTIONS(8172), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7059), + [anon_sym_and] = ACTIONS(7059), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7059), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + }, + [STATE(4000)] = { + [sym_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(4198), + [sym_identifier] = ACTIONS(7129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [aux_sym_preproc_if_token2] = ACTIONS(7131), + [aux_sym_preproc_else_token1] = ACTIONS(7131), + [aux_sym_preproc_elif_token1] = ACTIONS(7129), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7129), + [anon_sym_SLASH] = ACTIONS(7129), + [anon_sym_PERCENT] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7129), + [anon_sym_CARET] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_EQ_EQ] = ACTIONS(7131), + [anon_sym_BANG_EQ] = ACTIONS(7131), + [anon_sym_GT] = ACTIONS(7129), + [anon_sym_GT_EQ] = ACTIONS(7131), + [anon_sym_LT_EQ] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(7129), + [anon_sym_LT_LT] = ACTIONS(7129), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7129), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(9808), + [anon_sym_unsigned] = ACTIONS(9808), + [anon_sym_long] = ACTIONS(9808), + [anon_sym_short] = ACTIONS(9808), + [anon_sym_LBRACK] = ACTIONS(7131), + [anon_sym_EQ] = ACTIONS(7129), + [anon_sym_QMARK] = ACTIONS(7131), + [anon_sym_STAR_EQ] = ACTIONS(7131), + [anon_sym_SLASH_EQ] = ACTIONS(7131), + [anon_sym_PERCENT_EQ] = ACTIONS(7131), + [anon_sym_PLUS_EQ] = ACTIONS(7131), + [anon_sym_DASH_EQ] = ACTIONS(7131), + [anon_sym_LT_LT_EQ] = ACTIONS(7131), + [anon_sym_GT_GT_EQ] = ACTIONS(7131), + [anon_sym_AMP_EQ] = ACTIONS(7131), + [anon_sym_CARET_EQ] = ACTIONS(7131), + [anon_sym_PIPE_EQ] = ACTIONS(7131), + [anon_sym_and_eq] = ACTIONS(7129), + [anon_sym_or_eq] = ACTIONS(7129), + [anon_sym_xor_eq] = ACTIONS(7129), + [anon_sym_LT_EQ_GT] = ACTIONS(7131), + [anon_sym_or] = ACTIONS(7129), + [anon_sym_and] = ACTIONS(7129), + [anon_sym_bitor] = ACTIONS(7129), + [anon_sym_xor] = ACTIONS(7129), + [anon_sym_bitand] = ACTIONS(7129), + [anon_sym_not_eq] = ACTIONS(7129), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DOT] = ACTIONS(7129), + [anon_sym_DOT_STAR] = ACTIONS(7131), + [anon_sym_DASH_GT] = ACTIONS(7131), + [sym_comment] = ACTIONS(3), + }, + [STATE(4001)] = { + [sym_string_literal] = STATE(6386), + [sym_template_argument_list] = STATE(7644), + [sym_raw_string_literal] = STATE(6386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9901), + [anon_sym_COMMA] = ACTIONS(9968), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9333), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_RBRACK] = ACTIONS(9970), + [anon_sym_EQ] = ACTIONS(9911), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(7221), + [anon_sym_SLASH_EQ] = ACTIONS(7221), + [anon_sym_PERCENT_EQ] = ACTIONS(7221), + [anon_sym_PLUS_EQ] = ACTIONS(7221), + [anon_sym_DASH_EQ] = ACTIONS(7221), + [anon_sym_LT_LT_EQ] = ACTIONS(7221), + [anon_sym_GT_GT_EQ] = ACTIONS(7221), + [anon_sym_AMP_EQ] = ACTIONS(7221), + [anon_sym_CARET_EQ] = ACTIONS(7221), + [anon_sym_PIPE_EQ] = ACTIONS(7221), + [anon_sym_and_eq] = ACTIONS(7221), + [anon_sym_or_eq] = ACTIONS(7221), + [anon_sym_xor_eq] = ACTIONS(7221), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7223), + [anon_sym_u_DQUOTE] = ACTIONS(7223), + [anon_sym_U_DQUOTE] = ACTIONS(7223), + [anon_sym_u8_DQUOTE] = ACTIONS(7223), + [anon_sym_DQUOTE] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7229), + [anon_sym_LR_DQUOTE] = ACTIONS(7229), + [anon_sym_uR_DQUOTE] = ACTIONS(7229), + [anon_sym_UR_DQUOTE] = ACTIONS(7229), + [anon_sym_u8R_DQUOTE] = ACTIONS(7229), + }, + [STATE(4002)] = { + [sym_identifier] = ACTIONS(7814), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7816), + [anon_sym_COMMA] = ACTIONS(7816), + [anon_sym_RPAREN] = ACTIONS(7816), + [aux_sym_preproc_if_token2] = ACTIONS(7816), + [aux_sym_preproc_else_token1] = ACTIONS(7816), + [aux_sym_preproc_elif_token1] = ACTIONS(7814), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7816), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7816), + [anon_sym_LPAREN2] = ACTIONS(7816), + [anon_sym_DASH] = ACTIONS(7814), + [anon_sym_PLUS] = ACTIONS(7814), + [anon_sym_STAR] = ACTIONS(7814), + [anon_sym_SLASH] = ACTIONS(7814), + [anon_sym_PERCENT] = ACTIONS(7814), + [anon_sym_PIPE_PIPE] = ACTIONS(7816), + [anon_sym_AMP_AMP] = ACTIONS(7816), + [anon_sym_PIPE] = ACTIONS(7814), + [anon_sym_CARET] = ACTIONS(7814), + [anon_sym_AMP] = ACTIONS(7814), + [anon_sym_EQ_EQ] = ACTIONS(7816), + [anon_sym_BANG_EQ] = ACTIONS(7816), + [anon_sym_GT] = ACTIONS(7814), + [anon_sym_GT_EQ] = ACTIONS(7816), + [anon_sym_LT_EQ] = ACTIONS(7814), + [anon_sym_LT] = ACTIONS(7814), + [anon_sym_LT_LT] = ACTIONS(7814), + [anon_sym_GT_GT] = ACTIONS(7814), + [anon_sym_SEMI] = ACTIONS(7816), + [anon_sym___attribute__] = ACTIONS(7814), + [anon_sym___attribute] = ACTIONS(7814), + [anon_sym_COLON] = ACTIONS(7814), + [anon_sym_COLON_COLON] = ACTIONS(7816), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7816), + [anon_sym_LBRACE] = ACTIONS(7816), + [anon_sym_RBRACE] = ACTIONS(7816), + [anon_sym_LBRACK] = ACTIONS(7816), + [anon_sym_EQ] = ACTIONS(7814), + [anon_sym_QMARK] = ACTIONS(7816), + [anon_sym_STAR_EQ] = ACTIONS(7816), + [anon_sym_SLASH_EQ] = ACTIONS(7816), + [anon_sym_PERCENT_EQ] = ACTIONS(7816), + [anon_sym_PLUS_EQ] = ACTIONS(7816), + [anon_sym_DASH_EQ] = ACTIONS(7816), + [anon_sym_LT_LT_EQ] = ACTIONS(7816), + [anon_sym_GT_GT_EQ] = ACTIONS(7816), + [anon_sym_AMP_EQ] = ACTIONS(7816), + [anon_sym_CARET_EQ] = ACTIONS(7816), + [anon_sym_PIPE_EQ] = ACTIONS(7816), + [anon_sym_and_eq] = ACTIONS(7814), + [anon_sym_or_eq] = ACTIONS(7814), + [anon_sym_xor_eq] = ACTIONS(7814), + [anon_sym_LT_EQ_GT] = ACTIONS(7816), + [anon_sym_or] = ACTIONS(7814), + [anon_sym_and] = ACTIONS(7814), + [anon_sym_bitor] = ACTIONS(7814), + [anon_sym_xor] = ACTIONS(7814), + [anon_sym_bitand] = ACTIONS(7814), + [anon_sym_not_eq] = ACTIONS(7814), + [anon_sym_DASH_DASH] = ACTIONS(7816), + [anon_sym_PLUS_PLUS] = ACTIONS(7816), + [anon_sym_DOT] = ACTIONS(7814), + [anon_sym_DOT_STAR] = ACTIONS(7816), + [anon_sym_DASH_GT] = ACTIONS(7816), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7816), + }, + [STATE(4003)] = { + [sym_type_qualifier] = STATE(4003), + [sym_alignas_qualifier] = STATE(4359), + [aux_sym__type_definition_type_repeat1] = STATE(4003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7049), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7049), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7049), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7047), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7049), + [anon_sym_GT_GT] = ACTIONS(7047), + [anon_sym___extension__] = ACTIONS(9973), + [anon_sym___attribute__] = ACTIONS(7049), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_const] = ACTIONS(9976), + [anon_sym_constexpr] = ACTIONS(9973), + [anon_sym_volatile] = ACTIONS(9973), + [anon_sym_restrict] = ACTIONS(9973), + [anon_sym___restrict__] = ACTIONS(9973), + [anon_sym__Atomic] = ACTIONS(9973), + [anon_sym__Noreturn] = ACTIONS(9973), + [anon_sym_noreturn] = ACTIONS(9973), + [anon_sym__Nonnull] = ACTIONS(9973), + [anon_sym_mutable] = ACTIONS(9973), + [anon_sym_constinit] = ACTIONS(9973), + [anon_sym_consteval] = ACTIONS(9973), + [anon_sym_alignas] = ACTIONS(9979), + [anon_sym__Alignas] = ACTIONS(9979), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7049), + [anon_sym_and] = ACTIONS(7049), + [anon_sym_bitor] = ACTIONS(7049), + [anon_sym_xor] = ACTIONS(7049), + [anon_sym_bitand] = ACTIONS(7049), + [anon_sym_not_eq] = ACTIONS(7049), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_asm] = ACTIONS(7049), + [anon_sym___asm__] = ACTIONS(7049), + [anon_sym___asm] = ACTIONS(7047), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7049), + [anon_sym_override] = ACTIONS(7049), + [anon_sym_GT2] = ACTIONS(7049), + [anon_sym_noexcept] = ACTIONS(7049), + [anon_sym_throw] = ACTIONS(7049), + [anon_sym_requires] = ACTIONS(7049), + }, + [STATE(4004)] = { + [sym_string_literal] = STATE(4032), + [sym_template_argument_list] = STATE(5997), + [sym_raw_string_literal] = STATE(4032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9901), + [anon_sym_COMMA] = ACTIONS(9982), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9984), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_RBRACK] = ACTIONS(9987), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7245), + [anon_sym_u_DQUOTE] = ACTIONS(7245), + [anon_sym_U_DQUOTE] = ACTIONS(7245), + [anon_sym_u8_DQUOTE] = ACTIONS(7245), + [anon_sym_DQUOTE] = ACTIONS(7245), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7251), + [anon_sym_LR_DQUOTE] = ACTIONS(7251), + [anon_sym_uR_DQUOTE] = ACTIONS(7251), + [anon_sym_UR_DQUOTE] = ACTIONS(7251), + [anon_sym_u8R_DQUOTE] = ACTIONS(7251), + }, + [STATE(4005)] = { + [sym_string_literal] = STATE(6386), + [sym_template_argument_list] = STATE(7644), + [sym_raw_string_literal] = STATE(6386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9333), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_RBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(7219), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(7221), + [anon_sym_SLASH_EQ] = ACTIONS(7221), + [anon_sym_PERCENT_EQ] = ACTIONS(7221), + [anon_sym_PLUS_EQ] = ACTIONS(7221), + [anon_sym_DASH_EQ] = ACTIONS(7221), + [anon_sym_LT_LT_EQ] = ACTIONS(7221), + [anon_sym_GT_GT_EQ] = ACTIONS(7221), + [anon_sym_AMP_EQ] = ACTIONS(7221), + [anon_sym_CARET_EQ] = ACTIONS(7221), + [anon_sym_PIPE_EQ] = ACTIONS(7221), + [anon_sym_and_eq] = ACTIONS(7221), + [anon_sym_or_eq] = ACTIONS(7221), + [anon_sym_xor_eq] = ACTIONS(7221), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7223), + [anon_sym_u_DQUOTE] = ACTIONS(7223), + [anon_sym_U_DQUOTE] = ACTIONS(7223), + [anon_sym_u8_DQUOTE] = ACTIONS(7223), + [anon_sym_DQUOTE] = ACTIONS(7223), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7229), + [anon_sym_LR_DQUOTE] = ACTIONS(7229), + [anon_sym_uR_DQUOTE] = ACTIONS(7229), + [anon_sym_UR_DQUOTE] = ACTIONS(7229), + [anon_sym_u8R_DQUOTE] = ACTIONS(7229), + }, + [STATE(4006)] = { + [sym_template_argument_list] = STATE(3290), + [aux_sym_sized_type_specifier_repeat1] = STATE(4236), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7131), + [anon_sym_COMMA] = ACTIONS(7131), + [anon_sym_RPAREN] = ACTIONS(7131), + [anon_sym_LPAREN2] = ACTIONS(7131), + [anon_sym_DASH] = ACTIONS(7129), + [anon_sym_PLUS] = ACTIONS(7129), + [anon_sym_STAR] = ACTIONS(7129), + [anon_sym_SLASH] = ACTIONS(7129), + [anon_sym_PERCENT] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7131), + [anon_sym_AMP_AMP] = ACTIONS(7131), + [anon_sym_PIPE] = ACTIONS(7129), + [anon_sym_CARET] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7129), + [anon_sym_EQ_EQ] = ACTIONS(7131), + [anon_sym_BANG_EQ] = ACTIONS(7131), + [anon_sym_GT] = ACTIONS(7129), + [anon_sym_GT_EQ] = ACTIONS(7131), + [anon_sym_LT_EQ] = ACTIONS(7129), + [anon_sym_LT] = ACTIONS(7129), + [anon_sym_LT_LT] = ACTIONS(7129), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym_SEMI] = ACTIONS(7131), + [anon_sym___attribute__] = ACTIONS(7131), + [anon_sym___attribute] = ACTIONS(7129), + [anon_sym_COLON] = ACTIONS(7129), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7131), + [anon_sym_LBRACE] = ACTIONS(7131), + [anon_sym_RBRACE] = ACTIONS(7131), + [anon_sym_signed] = ACTIONS(9545), + [anon_sym_unsigned] = ACTIONS(9545), + [anon_sym_long] = ACTIONS(9545), + [anon_sym_short] = ACTIONS(9545), + [anon_sym_LBRACK] = ACTIONS(7131), + [anon_sym_EQ] = ACTIONS(7129), + [anon_sym_QMARK] = ACTIONS(7131), + [anon_sym_STAR_EQ] = ACTIONS(7131), + [anon_sym_SLASH_EQ] = ACTIONS(7131), + [anon_sym_PERCENT_EQ] = ACTIONS(7131), + [anon_sym_PLUS_EQ] = ACTIONS(7131), + [anon_sym_DASH_EQ] = ACTIONS(7131), + [anon_sym_LT_LT_EQ] = ACTIONS(7131), + [anon_sym_GT_GT_EQ] = ACTIONS(7131), + [anon_sym_AMP_EQ] = ACTIONS(7131), + [anon_sym_CARET_EQ] = ACTIONS(7131), + [anon_sym_PIPE_EQ] = ACTIONS(7131), + [anon_sym_and_eq] = ACTIONS(7131), + [anon_sym_or_eq] = ACTIONS(7131), + [anon_sym_xor_eq] = ACTIONS(7131), + [anon_sym_LT_EQ_GT] = ACTIONS(7131), + [anon_sym_or] = ACTIONS(7129), + [anon_sym_and] = ACTIONS(7129), + [anon_sym_bitor] = ACTIONS(7131), + [anon_sym_xor] = ACTIONS(7129), + [anon_sym_bitand] = ACTIONS(7131), + [anon_sym_not_eq] = ACTIONS(7131), + [anon_sym_DASH_DASH] = ACTIONS(7131), + [anon_sym_PLUS_PLUS] = ACTIONS(7131), + [anon_sym_DOT] = ACTIONS(7129), + [anon_sym_DOT_STAR] = ACTIONS(7131), + [anon_sym_DASH_GT] = ACTIONS(7131), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7131), + }, + [STATE(4007)] = { + [sym_string_literal] = STATE(4007), + [sym_raw_string_literal] = STATE(4007), + [aux_sym_concatenated_string_repeat1] = STATE(4007), + [sym_identifier] = ACTIONS(9990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8756), + [anon_sym_COMMA] = ACTIONS(8756), + [anon_sym_LPAREN2] = ACTIONS(8756), + [anon_sym_DASH] = ACTIONS(8758), + [anon_sym_PLUS] = ACTIONS(8758), + [anon_sym_STAR] = ACTIONS(8758), + [anon_sym_SLASH] = ACTIONS(8758), + [anon_sym_PERCENT] = ACTIONS(8758), + [anon_sym_PIPE_PIPE] = ACTIONS(8756), + [anon_sym_AMP_AMP] = ACTIONS(8756), + [anon_sym_PIPE] = ACTIONS(8758), + [anon_sym_CARET] = ACTIONS(8758), + [anon_sym_AMP] = ACTIONS(8758), + [anon_sym_EQ_EQ] = ACTIONS(8756), + [anon_sym_BANG_EQ] = ACTIONS(8756), + [anon_sym_GT] = ACTIONS(8758), + [anon_sym_GT_EQ] = ACTIONS(8758), + [anon_sym_LT_EQ] = ACTIONS(8758), + [anon_sym_LT] = ACTIONS(8758), + [anon_sym_LT_LT] = ACTIONS(8758), + [anon_sym_GT_GT] = ACTIONS(8758), + [anon_sym_LBRACK] = ACTIONS(8756), + [anon_sym_EQ] = ACTIONS(8758), + [anon_sym_QMARK] = ACTIONS(8756), + [anon_sym_STAR_EQ] = ACTIONS(8756), + [anon_sym_SLASH_EQ] = ACTIONS(8756), + [anon_sym_PERCENT_EQ] = ACTIONS(8756), + [anon_sym_PLUS_EQ] = ACTIONS(8756), + [anon_sym_DASH_EQ] = ACTIONS(8756), + [anon_sym_LT_LT_EQ] = ACTIONS(8756), + [anon_sym_GT_GT_EQ] = ACTIONS(8758), + [anon_sym_AMP_EQ] = ACTIONS(8756), + [anon_sym_CARET_EQ] = ACTIONS(8756), + [anon_sym_PIPE_EQ] = ACTIONS(8756), + [anon_sym_and_eq] = ACTIONS(8758), + [anon_sym_or_eq] = ACTIONS(8758), + [anon_sym_xor_eq] = ACTIONS(8758), + [anon_sym_LT_EQ_GT] = ACTIONS(8756), + [anon_sym_or] = ACTIONS(8758), + [anon_sym_and] = ACTIONS(8758), + [anon_sym_bitor] = ACTIONS(8758), + [anon_sym_xor] = ACTIONS(8758), + [anon_sym_bitand] = ACTIONS(8758), + [anon_sym_not_eq] = ACTIONS(8758), + [anon_sym_DASH_DASH] = ACTIONS(8756), + [anon_sym_PLUS_PLUS] = ACTIONS(8756), + [anon_sym_DOT] = ACTIONS(8758), + [anon_sym_DOT_STAR] = ACTIONS(8756), + [anon_sym_DASH_GT] = ACTIONS(8756), + [anon_sym_L_DQUOTE] = ACTIONS(9993), + [anon_sym_u_DQUOTE] = ACTIONS(9993), + [anon_sym_U_DQUOTE] = ACTIONS(9993), + [anon_sym_u8_DQUOTE] = ACTIONS(9993), + [anon_sym_DQUOTE] = ACTIONS(9993), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8756), + [anon_sym_R_DQUOTE] = ACTIONS(9996), + [anon_sym_LR_DQUOTE] = ACTIONS(9996), + [anon_sym_uR_DQUOTE] = ACTIONS(9996), + [anon_sym_UR_DQUOTE] = ACTIONS(9996), + [anon_sym_u8R_DQUOTE] = ACTIONS(9996), + [sym_literal_suffix] = ACTIONS(8758), + }, + [STATE(4008)] = { + [sym_template_argument_list] = STATE(4168), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6781), + [anon_sym_LPAREN2] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6774), + [anon_sym_PLUS] = ACTIONS(6774), + [anon_sym_STAR] = ACTIONS(6781), + [anon_sym_SLASH] = ACTIONS(6774), + [anon_sym_PERCENT] = ACTIONS(6781), + [anon_sym_PIPE_PIPE] = ACTIONS(6781), + [anon_sym_AMP_AMP] = ACTIONS(6781), + [anon_sym_PIPE] = ACTIONS(6774), + [anon_sym_CARET] = ACTIONS(6781), + [anon_sym_AMP] = ACTIONS(6774), + [anon_sym_EQ_EQ] = ACTIONS(6781), + [anon_sym_BANG_EQ] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(6774), + [anon_sym_GT_EQ] = ACTIONS(6781), + [anon_sym_LT_EQ] = ACTIONS(6774), + [anon_sym_LT] = ACTIONS(9999), + [anon_sym_LT_LT] = ACTIONS(6781), + [anon_sym_GT_GT] = ACTIONS(6781), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6774), + [anon_sym_RBRACK] = ACTIONS(6781), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_LT_EQ_GT] = ACTIONS(6781), + [anon_sym_or] = ACTIONS(6774), + [anon_sym_and] = ACTIONS(6774), + [anon_sym_bitor] = ACTIONS(6774), + [anon_sym_xor] = ACTIONS(6774), + [anon_sym_bitand] = ACTIONS(6774), + [anon_sym_not_eq] = ACTIONS(6774), + [anon_sym_DASH_DASH] = ACTIONS(6781), + [anon_sym_PLUS_PLUS] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(6774), + [anon_sym_DOT_STAR] = ACTIONS(6781), + [anon_sym_DASH_GT] = ACTIONS(6781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_final] = ACTIONS(6774), + [anon_sym_override] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_requires] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(4009)] = { + [sym_string_literal] = STATE(4007), + [sym_raw_string_literal] = STATE(4007), + [aux_sym_concatenated_string_repeat1] = STATE(4007), + [sym_identifier] = ACTIONS(10002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8744), + [anon_sym_COMMA] = ACTIONS(8744), + [anon_sym_LPAREN2] = ACTIONS(8744), + [anon_sym_DASH] = ACTIONS(8746), + [anon_sym_PLUS] = ACTIONS(8746), + [anon_sym_STAR] = ACTIONS(8746), + [anon_sym_SLASH] = ACTIONS(8746), + [anon_sym_PERCENT] = ACTIONS(8746), + [anon_sym_PIPE_PIPE] = ACTIONS(8744), + [anon_sym_AMP_AMP] = ACTIONS(8744), + [anon_sym_PIPE] = ACTIONS(8746), + [anon_sym_CARET] = ACTIONS(8746), + [anon_sym_AMP] = ACTIONS(8746), + [anon_sym_EQ_EQ] = ACTIONS(8744), + [anon_sym_BANG_EQ] = ACTIONS(8744), + [anon_sym_GT] = ACTIONS(8746), + [anon_sym_GT_EQ] = ACTIONS(8746), + [anon_sym_LT_EQ] = ACTIONS(8746), + [anon_sym_LT] = ACTIONS(8746), + [anon_sym_LT_LT] = ACTIONS(8746), + [anon_sym_GT_GT] = ACTIONS(8746), + [anon_sym_LBRACK] = ACTIONS(8744), + [anon_sym_EQ] = ACTIONS(8746), + [anon_sym_QMARK] = ACTIONS(8744), + [anon_sym_STAR_EQ] = ACTIONS(8744), + [anon_sym_SLASH_EQ] = ACTIONS(8744), + [anon_sym_PERCENT_EQ] = ACTIONS(8744), + [anon_sym_PLUS_EQ] = ACTIONS(8744), + [anon_sym_DASH_EQ] = ACTIONS(8744), + [anon_sym_LT_LT_EQ] = ACTIONS(8744), + [anon_sym_GT_GT_EQ] = ACTIONS(8746), + [anon_sym_AMP_EQ] = ACTIONS(8744), + [anon_sym_CARET_EQ] = ACTIONS(8744), + [anon_sym_PIPE_EQ] = ACTIONS(8744), + [anon_sym_and_eq] = ACTIONS(8746), + [anon_sym_or_eq] = ACTIONS(8746), + [anon_sym_xor_eq] = ACTIONS(8746), + [anon_sym_LT_EQ_GT] = ACTIONS(8744), + [anon_sym_or] = ACTIONS(8746), + [anon_sym_and] = ACTIONS(8746), + [anon_sym_bitor] = ACTIONS(8746), + [anon_sym_xor] = ACTIONS(8746), + [anon_sym_bitand] = ACTIONS(8746), + [anon_sym_not_eq] = ACTIONS(8746), + [anon_sym_DASH_DASH] = ACTIONS(8744), + [anon_sym_PLUS_PLUS] = ACTIONS(8744), + [anon_sym_DOT] = ACTIONS(8746), + [anon_sym_DOT_STAR] = ACTIONS(8744), + [anon_sym_DASH_GT] = ACTIONS(8744), + [anon_sym_L_DQUOTE] = ACTIONS(7334), + [anon_sym_u_DQUOTE] = ACTIONS(7334), + [anon_sym_U_DQUOTE] = ACTIONS(7334), + [anon_sym_u8_DQUOTE] = ACTIONS(7334), + [anon_sym_DQUOTE] = ACTIONS(7334), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8744), + [anon_sym_R_DQUOTE] = ACTIONS(7340), + [anon_sym_LR_DQUOTE] = ACTIONS(7340), + [anon_sym_uR_DQUOTE] = ACTIONS(7340), + [anon_sym_UR_DQUOTE] = ACTIONS(7340), + [anon_sym_u8R_DQUOTE] = ACTIONS(7340), + [sym_literal_suffix] = ACTIONS(8746), + }, + [STATE(4010)] = { + [sym_attribute_specifier] = STATE(4176), + [sym_identifier] = ACTIONS(7574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7576), + [anon_sym_COMMA] = ACTIONS(7576), + [anon_sym_RPAREN] = ACTIONS(7576), + [aux_sym_preproc_if_token2] = ACTIONS(7576), + [aux_sym_preproc_else_token1] = ACTIONS(7576), + [aux_sym_preproc_elif_token1] = ACTIONS(7574), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7576), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7576), + [anon_sym_LPAREN2] = ACTIONS(7576), + [anon_sym_DASH] = ACTIONS(7574), + [anon_sym_PLUS] = ACTIONS(7574), + [anon_sym_STAR] = ACTIONS(7574), + [anon_sym_SLASH] = ACTIONS(7574), + [anon_sym_PERCENT] = ACTIONS(7574), + [anon_sym_PIPE_PIPE] = ACTIONS(7576), + [anon_sym_AMP_AMP] = ACTIONS(7576), + [anon_sym_PIPE] = ACTIONS(7574), + [anon_sym_CARET] = ACTIONS(7574), + [anon_sym_AMP] = ACTIONS(7574), + [anon_sym_EQ_EQ] = ACTIONS(7576), + [anon_sym_BANG_EQ] = ACTIONS(7576), + [anon_sym_GT] = ACTIONS(7574), + [anon_sym_GT_EQ] = ACTIONS(7576), + [anon_sym_LT_EQ] = ACTIONS(7574), + [anon_sym_LT] = ACTIONS(7574), + [anon_sym_LT_LT] = ACTIONS(7574), + [anon_sym_GT_GT] = ACTIONS(7574), + [anon_sym_SEMI] = ACTIONS(7576), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7574), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7576), + [anon_sym_LBRACE] = ACTIONS(7576), + [anon_sym_RBRACE] = ACTIONS(7576), + [anon_sym_LBRACK] = ACTIONS(7576), + [anon_sym_EQ] = ACTIONS(7574), + [anon_sym_QMARK] = ACTIONS(7576), + [anon_sym_STAR_EQ] = ACTIONS(7576), + [anon_sym_SLASH_EQ] = ACTIONS(7576), + [anon_sym_PERCENT_EQ] = ACTIONS(7576), + [anon_sym_PLUS_EQ] = ACTIONS(7576), + [anon_sym_DASH_EQ] = ACTIONS(7576), + [anon_sym_LT_LT_EQ] = ACTIONS(7576), + [anon_sym_GT_GT_EQ] = ACTIONS(7576), + [anon_sym_AMP_EQ] = ACTIONS(7576), + [anon_sym_CARET_EQ] = ACTIONS(7576), + [anon_sym_PIPE_EQ] = ACTIONS(7576), + [anon_sym_and_eq] = ACTIONS(7574), + [anon_sym_or_eq] = ACTIONS(7574), + [anon_sym_xor_eq] = ACTIONS(7574), + [anon_sym_LT_EQ_GT] = ACTIONS(7576), + [anon_sym_or] = ACTIONS(7574), + [anon_sym_and] = ACTIONS(7574), + [anon_sym_bitor] = ACTIONS(7574), + [anon_sym_xor] = ACTIONS(7574), + [anon_sym_bitand] = ACTIONS(7574), + [anon_sym_not_eq] = ACTIONS(7574), + [anon_sym_DASH_DASH] = ACTIONS(7576), + [anon_sym_PLUS_PLUS] = ACTIONS(7576), + [anon_sym_DOT] = ACTIONS(7574), + [anon_sym_DOT_STAR] = ACTIONS(7576), + [anon_sym_DASH_GT] = ACTIONS(7576), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7576), + }, + [STATE(4011)] = { + [sym_attribute_specifier] = STATE(4051), + [sym_identifier] = ACTIONS(7578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7580), + [anon_sym_COMMA] = ACTIONS(7580), + [anon_sym_RPAREN] = ACTIONS(7580), + [aux_sym_preproc_if_token2] = ACTIONS(7580), + [aux_sym_preproc_else_token1] = ACTIONS(7580), + [aux_sym_preproc_elif_token1] = ACTIONS(7578), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7580), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7580), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym_DASH] = ACTIONS(7578), + [anon_sym_PLUS] = ACTIONS(7578), + [anon_sym_STAR] = ACTIONS(7578), + [anon_sym_SLASH] = ACTIONS(7578), + [anon_sym_PERCENT] = ACTIONS(7578), + [anon_sym_PIPE_PIPE] = ACTIONS(7580), + [anon_sym_AMP_AMP] = ACTIONS(7580), + [anon_sym_PIPE] = ACTIONS(7578), + [anon_sym_CARET] = ACTIONS(7578), + [anon_sym_AMP] = ACTIONS(7578), + [anon_sym_EQ_EQ] = ACTIONS(7580), + [anon_sym_BANG_EQ] = ACTIONS(7580), + [anon_sym_GT] = ACTIONS(7578), + [anon_sym_GT_EQ] = ACTIONS(7580), + [anon_sym_LT_EQ] = ACTIONS(7578), + [anon_sym_LT] = ACTIONS(7578), + [anon_sym_LT_LT] = ACTIONS(7578), + [anon_sym_GT_GT] = ACTIONS(7578), + [anon_sym_SEMI] = ACTIONS(7580), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7578), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7580), + [anon_sym_LBRACE] = ACTIONS(7580), + [anon_sym_RBRACE] = ACTIONS(7580), + [anon_sym_LBRACK] = ACTIONS(7580), + [anon_sym_EQ] = ACTIONS(7578), + [anon_sym_QMARK] = ACTIONS(7580), + [anon_sym_STAR_EQ] = ACTIONS(7580), + [anon_sym_SLASH_EQ] = ACTIONS(7580), + [anon_sym_PERCENT_EQ] = ACTIONS(7580), + [anon_sym_PLUS_EQ] = ACTIONS(7580), + [anon_sym_DASH_EQ] = ACTIONS(7580), + [anon_sym_LT_LT_EQ] = ACTIONS(7580), + [anon_sym_GT_GT_EQ] = ACTIONS(7580), + [anon_sym_AMP_EQ] = ACTIONS(7580), + [anon_sym_CARET_EQ] = ACTIONS(7580), + [anon_sym_PIPE_EQ] = ACTIONS(7580), + [anon_sym_and_eq] = ACTIONS(7578), + [anon_sym_or_eq] = ACTIONS(7578), + [anon_sym_xor_eq] = ACTIONS(7578), + [anon_sym_LT_EQ_GT] = ACTIONS(7580), + [anon_sym_or] = ACTIONS(7578), + [anon_sym_and] = ACTIONS(7578), + [anon_sym_bitor] = ACTIONS(7578), + [anon_sym_xor] = ACTIONS(7578), + [anon_sym_bitand] = ACTIONS(7578), + [anon_sym_not_eq] = ACTIONS(7578), + [anon_sym_DASH_DASH] = ACTIONS(7580), + [anon_sym_PLUS_PLUS] = ACTIONS(7580), + [anon_sym_DOT] = ACTIONS(7578), + [anon_sym_DOT_STAR] = ACTIONS(7580), + [anon_sym_DASH_GT] = ACTIONS(7580), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7580), + }, + [STATE(4012)] = { + [sym_attribute_specifier] = STATE(4125), + [sym_identifier] = ACTIONS(7702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7704), + [anon_sym_COMMA] = ACTIONS(7704), + [anon_sym_RPAREN] = ACTIONS(7704), + [aux_sym_preproc_if_token2] = ACTIONS(7704), + [aux_sym_preproc_else_token1] = ACTIONS(7704), + [aux_sym_preproc_elif_token1] = ACTIONS(7702), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7704), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7704), + [anon_sym_LPAREN2] = ACTIONS(7704), + [anon_sym_DASH] = ACTIONS(7702), + [anon_sym_PLUS] = ACTIONS(7702), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_SLASH] = ACTIONS(7702), + [anon_sym_PERCENT] = ACTIONS(7702), + [anon_sym_PIPE_PIPE] = ACTIONS(7704), + [anon_sym_AMP_AMP] = ACTIONS(7704), + [anon_sym_PIPE] = ACTIONS(7702), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_AMP] = ACTIONS(7702), + [anon_sym_EQ_EQ] = ACTIONS(7704), + [anon_sym_BANG_EQ] = ACTIONS(7704), + [anon_sym_GT] = ACTIONS(7702), + [anon_sym_GT_EQ] = ACTIONS(7704), + [anon_sym_LT_EQ] = ACTIONS(7702), + [anon_sym_LT] = ACTIONS(7702), + [anon_sym_LT_LT] = ACTIONS(7702), + [anon_sym_GT_GT] = ACTIONS(7702), + [anon_sym_SEMI] = ACTIONS(7704), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7702), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7704), + [anon_sym_LBRACE] = ACTIONS(7704), + [anon_sym_RBRACE] = ACTIONS(7704), + [anon_sym_LBRACK] = ACTIONS(7704), + [anon_sym_EQ] = ACTIONS(7702), + [anon_sym_QMARK] = ACTIONS(7704), + [anon_sym_STAR_EQ] = ACTIONS(7704), + [anon_sym_SLASH_EQ] = ACTIONS(7704), + [anon_sym_PERCENT_EQ] = ACTIONS(7704), + [anon_sym_PLUS_EQ] = ACTIONS(7704), + [anon_sym_DASH_EQ] = ACTIONS(7704), + [anon_sym_LT_LT_EQ] = ACTIONS(7704), + [anon_sym_GT_GT_EQ] = ACTIONS(7704), + [anon_sym_AMP_EQ] = ACTIONS(7704), + [anon_sym_CARET_EQ] = ACTIONS(7704), + [anon_sym_PIPE_EQ] = ACTIONS(7704), + [anon_sym_and_eq] = ACTIONS(7702), + [anon_sym_or_eq] = ACTIONS(7702), + [anon_sym_xor_eq] = ACTIONS(7702), + [anon_sym_LT_EQ_GT] = ACTIONS(7704), + [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(7704), + [anon_sym_PLUS_PLUS] = ACTIONS(7704), + [anon_sym_DOT] = ACTIONS(7702), + [anon_sym_DOT_STAR] = ACTIONS(7704), + [anon_sym_DASH_GT] = ACTIONS(7704), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7704), + }, + [STATE(4013)] = { + [sym_type_qualifier] = STATE(4040), + [sym_alignas_qualifier] = STATE(4428), + [aux_sym__type_definition_type_repeat1] = STATE(4040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7344), + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7344), + [anon_sym_DASH] = ACTIONS(7342), + [anon_sym_PLUS] = ACTIONS(7342), + [anon_sym_STAR] = ACTIONS(7344), + [anon_sym_SLASH] = ACTIONS(7342), + [anon_sym_PERCENT] = ACTIONS(7344), + [anon_sym_PIPE_PIPE] = ACTIONS(7344), + [anon_sym_AMP_AMP] = ACTIONS(7344), + [anon_sym_PIPE] = ACTIONS(7342), + [anon_sym_CARET] = ACTIONS(7344), + [anon_sym_AMP] = ACTIONS(7342), + [anon_sym_EQ_EQ] = ACTIONS(7344), + [anon_sym_BANG_EQ] = ACTIONS(7344), + [anon_sym_GT] = ACTIONS(7342), + [anon_sym_GT_EQ] = ACTIONS(7344), + [anon_sym_LT_EQ] = ACTIONS(7342), + [anon_sym_LT] = ACTIONS(7342), + [anon_sym_LT_LT] = ACTIONS(7344), + [anon_sym_GT_GT] = ACTIONS(7344), + [anon_sym___extension__] = ACTIONS(8162), + [anon_sym___attribute__] = ACTIONS(7344), + [anon_sym___attribute] = ACTIONS(7342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7344), + [anon_sym_LBRACK] = ACTIONS(7342), + [anon_sym_RBRACK] = ACTIONS(7344), + [anon_sym_const] = ACTIONS(8170), + [anon_sym_constexpr] = ACTIONS(8162), + [anon_sym_volatile] = ACTIONS(8162), + [anon_sym_restrict] = ACTIONS(8162), + [anon_sym___restrict__] = ACTIONS(8162), + [anon_sym__Atomic] = ACTIONS(8162), + [anon_sym__Noreturn] = ACTIONS(8162), + [anon_sym_noreturn] = ACTIONS(8162), + [anon_sym__Nonnull] = ACTIONS(8162), + [anon_sym_mutable] = ACTIONS(8162), + [anon_sym_constinit] = ACTIONS(8162), + [anon_sym_consteval] = ACTIONS(8162), + [anon_sym_alignas] = ACTIONS(8172), + [anon_sym__Alignas] = ACTIONS(8172), + [anon_sym_QMARK] = ACTIONS(7344), + [anon_sym_LT_EQ_GT] = ACTIONS(7344), + [anon_sym_or] = ACTIONS(7344), + [anon_sym_and] = ACTIONS(7344), + [anon_sym_bitor] = ACTIONS(7344), + [anon_sym_xor] = ACTIONS(7344), + [anon_sym_bitand] = ACTIONS(7344), + [anon_sym_not_eq] = ACTIONS(7344), + [anon_sym_DASH_DASH] = ACTIONS(7344), + [anon_sym_PLUS_PLUS] = ACTIONS(7344), + [anon_sym_asm] = ACTIONS(7344), + [anon_sym___asm__] = ACTIONS(7344), + [anon_sym___asm] = ACTIONS(7342), + [anon_sym_DOT] = ACTIONS(7342), + [anon_sym_DOT_STAR] = ACTIONS(7344), + [anon_sym_DASH_GT] = ACTIONS(7344), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7344), + [anon_sym_override] = ACTIONS(7344), + [anon_sym_noexcept] = ACTIONS(7344), + [anon_sym_throw] = ACTIONS(7344), + [anon_sym_requires] = ACTIONS(7344), + }, + [STATE(4014)] = { + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5663), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(7209), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(7211), + [anon_sym_SLASH_EQ] = ACTIONS(7211), + [anon_sym_PERCENT_EQ] = ACTIONS(7211), + [anon_sym_PLUS_EQ] = ACTIONS(7211), + [anon_sym_DASH_EQ] = ACTIONS(7211), + [anon_sym_LT_LT_EQ] = ACTIONS(7211), + [anon_sym_GT_GT_EQ] = ACTIONS(7211), + [anon_sym_AMP_EQ] = ACTIONS(7211), + [anon_sym_CARET_EQ] = ACTIONS(7211), + [anon_sym_PIPE_EQ] = ACTIONS(7211), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + }, + [STATE(4015)] = { + [sym_attribute_specifier] = STATE(4284), + [sym_enumerator_list] = STATE(4141), + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_RPAREN] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_TILDE] = ACTIONS(7423), + [anon_sym_STAR] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_SEMI] = ACTIONS(7423), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym_virtual] = ACTIONS(7421), + [anon_sym_extern] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7421), + [anon_sym_COLON_COLON] = ACTIONS(7423), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7423), + [anon_sym___declspec] = ACTIONS(7421), + [anon_sym___based] = ACTIONS(7421), + [anon_sym___cdecl] = ACTIONS(7421), + [anon_sym___clrcall] = ACTIONS(7421), + [anon_sym___stdcall] = ACTIONS(7421), + [anon_sym___fastcall] = ACTIONS(7421), + [anon_sym___thiscall] = ACTIONS(7421), + [anon_sym___vectorcall] = ACTIONS(7421), + [anon_sym_LBRACE] = ACTIONS(9947), + [anon_sym_LBRACK] = ACTIONS(7421), + [anon_sym_static] = ACTIONS(7421), + [anon_sym_EQ] = ACTIONS(7423), + [anon_sym_register] = ACTIONS(7421), + [anon_sym_inline] = ACTIONS(7421), + [anon_sym___inline] = ACTIONS(7421), + [anon_sym___inline__] = ACTIONS(7421), + [anon_sym___forceinline] = ACTIONS(7421), + [anon_sym_thread_local] = ACTIONS(7421), + [anon_sym___thread] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [anon_sym_asm] = ACTIONS(7421), + [anon_sym___asm__] = ACTIONS(7421), + [anon_sym___asm] = ACTIONS(7421), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7421), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_template] = ACTIONS(7421), + [anon_sym_GT2] = ACTIONS(7423), + [anon_sym_operator] = ACTIONS(7421), + [anon_sym_try] = ACTIONS(7421), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_LBRACK_COLON] = ACTIONS(7423), + }, + [STATE(4016)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6819), + [anon_sym_COMMA] = ACTIONS(6819), + [anon_sym_RPAREN] = ACTIONS(6819), + [anon_sym_LPAREN2] = ACTIONS(6819), + [anon_sym_DASH] = ACTIONS(6826), + [anon_sym_PLUS] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(6819), + [anon_sym_SLASH] = ACTIONS(6826), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6819), + [anon_sym_AMP_AMP] = ACTIONS(6819), + [anon_sym_PIPE] = ACTIONS(6826), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(6826), + [anon_sym_EQ_EQ] = ACTIONS(6819), + [anon_sym_BANG_EQ] = ACTIONS(6819), + [anon_sym_GT] = ACTIONS(6826), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6826), + [anon_sym_LT] = ACTIONS(6826), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym_SEMI] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6826), + [anon_sym___attribute] = ACTIONS(6826), + [anon_sym_COLON] = ACTIONS(6826), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6819), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6819), + [anon_sym_LBRACK] = ACTIONS(6826), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6819), + [anon_sym_LT_EQ_GT] = ACTIONS(6819), + [anon_sym_or] = ACTIONS(6826), + [anon_sym_and] = ACTIONS(6826), + [anon_sym_bitor] = ACTIONS(6826), + [anon_sym_xor] = ACTIONS(6826), + [anon_sym_bitand] = ACTIONS(6826), + [anon_sym_not_eq] = ACTIONS(6826), + [anon_sym_DASH_DASH] = ACTIONS(6819), + [anon_sym_PLUS_PLUS] = ACTIONS(6819), + [anon_sym_DOT] = ACTIONS(6826), + [anon_sym_DOT_STAR] = ACTIONS(6819), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + [anon_sym_COLON_RBRACK] = ACTIONS(6819), + }, + [STATE(4017)] = { + [sym_new_declarator] = STATE(4108), + [sym_identifier] = ACTIONS(10004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10006), + [anon_sym_COMMA] = ACTIONS(10006), + [anon_sym_RPAREN] = ACTIONS(10006), + [aux_sym_preproc_if_token2] = ACTIONS(10006), + [aux_sym_preproc_else_token1] = ACTIONS(10006), + [aux_sym_preproc_elif_token1] = ACTIONS(10004), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10006), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10006), + [anon_sym_LPAREN2] = ACTIONS(10006), + [anon_sym_DASH] = ACTIONS(10004), + [anon_sym_PLUS] = ACTIONS(10004), + [anon_sym_STAR] = ACTIONS(10004), + [anon_sym_SLASH] = ACTIONS(10004), + [anon_sym_PERCENT] = ACTIONS(10004), + [anon_sym_PIPE_PIPE] = ACTIONS(10006), + [anon_sym_AMP_AMP] = ACTIONS(10006), + [anon_sym_PIPE] = ACTIONS(10004), + [anon_sym_CARET] = ACTIONS(10004), + [anon_sym_AMP] = ACTIONS(10004), + [anon_sym_EQ_EQ] = ACTIONS(10006), + [anon_sym_BANG_EQ] = ACTIONS(10006), + [anon_sym_GT] = ACTIONS(10004), + [anon_sym_GT_EQ] = ACTIONS(10006), + [anon_sym_LT_EQ] = ACTIONS(10004), + [anon_sym_LT] = ACTIONS(10004), + [anon_sym_LT_LT] = ACTIONS(10004), + [anon_sym_GT_GT] = ACTIONS(10004), + [anon_sym_SEMI] = ACTIONS(10006), + [anon_sym___attribute__] = ACTIONS(10004), + [anon_sym___attribute] = ACTIONS(10004), + [anon_sym_COLON] = ACTIONS(10004), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10006), + [anon_sym_LBRACE] = ACTIONS(10006), + [anon_sym_RBRACE] = ACTIONS(10006), + [anon_sym_LBRACK] = ACTIONS(9664), + [anon_sym_EQ] = ACTIONS(10004), + [anon_sym_QMARK] = ACTIONS(10006), + [anon_sym_STAR_EQ] = ACTIONS(10006), + [anon_sym_SLASH_EQ] = ACTIONS(10006), + [anon_sym_PERCENT_EQ] = ACTIONS(10006), + [anon_sym_PLUS_EQ] = ACTIONS(10006), + [anon_sym_DASH_EQ] = ACTIONS(10006), + [anon_sym_LT_LT_EQ] = ACTIONS(10006), + [anon_sym_GT_GT_EQ] = ACTIONS(10006), + [anon_sym_AMP_EQ] = ACTIONS(10006), + [anon_sym_CARET_EQ] = ACTIONS(10006), + [anon_sym_PIPE_EQ] = ACTIONS(10006), + [anon_sym_and_eq] = ACTIONS(10004), + [anon_sym_or_eq] = ACTIONS(10004), + [anon_sym_xor_eq] = ACTIONS(10004), + [anon_sym_LT_EQ_GT] = ACTIONS(10006), + [anon_sym_or] = ACTIONS(10004), + [anon_sym_and] = ACTIONS(10004), + [anon_sym_bitor] = ACTIONS(10004), + [anon_sym_xor] = ACTIONS(10004), + [anon_sym_bitand] = ACTIONS(10004), + [anon_sym_not_eq] = ACTIONS(10004), + [anon_sym_DASH_DASH] = ACTIONS(10006), + [anon_sym_PLUS_PLUS] = ACTIONS(10006), + [anon_sym_DOT] = ACTIONS(10004), + [anon_sym_DOT_STAR] = ACTIONS(10006), + [anon_sym_DASH_GT] = ACTIONS(10006), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10006), + }, + [STATE(4018)] = { + [sym_template_argument_list] = STATE(4159), + [sym_identifier] = ACTIONS(6774), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6781), + [anon_sym_COMMA] = ACTIONS(6781), + [anon_sym_LPAREN2] = ACTIONS(6781), + [anon_sym_DASH] = ACTIONS(6774), + [anon_sym_PLUS] = ACTIONS(6774), + [anon_sym_STAR] = ACTIONS(6781), + [anon_sym_SLASH] = ACTIONS(6774), + [anon_sym_PERCENT] = ACTIONS(6781), + [anon_sym_PIPE_PIPE] = ACTIONS(6781), + [anon_sym_AMP_AMP] = ACTIONS(6781), + [anon_sym_PIPE] = ACTIONS(6774), + [anon_sym_CARET] = ACTIONS(6781), + [anon_sym_AMP] = ACTIONS(6774), + [anon_sym_EQ_EQ] = ACTIONS(6781), + [anon_sym_BANG_EQ] = ACTIONS(6781), + [anon_sym_GT] = ACTIONS(6774), + [anon_sym_GT_EQ] = ACTIONS(6774), + [anon_sym_LT_EQ] = ACTIONS(6774), + [anon_sym_LT] = ACTIONS(10008), + [anon_sym_LT_LT] = ACTIONS(6781), + [anon_sym_GT_GT] = ACTIONS(6774), + [anon_sym___extension__] = ACTIONS(6774), + [anon_sym___attribute__] = ACTIONS(6774), + [anon_sym___attribute] = ACTIONS(6774), + [anon_sym_COLON] = ACTIONS(6774), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(6781), + [anon_sym_LBRACK] = ACTIONS(6774), + [anon_sym_const] = ACTIONS(6774), + [anon_sym_constexpr] = ACTIONS(6774), + [anon_sym_volatile] = ACTIONS(6774), + [anon_sym_restrict] = ACTIONS(6774), + [anon_sym___restrict__] = ACTIONS(6774), + [anon_sym__Atomic] = ACTIONS(6774), + [anon_sym__Noreturn] = ACTIONS(6774), + [anon_sym_noreturn] = ACTIONS(6774), + [anon_sym__Nonnull] = ACTIONS(6774), + [anon_sym_mutable] = ACTIONS(6774), + [anon_sym_constinit] = ACTIONS(6774), + [anon_sym_consteval] = ACTIONS(6774), + [anon_sym_alignas] = ACTIONS(6774), + [anon_sym__Alignas] = ACTIONS(6774), + [anon_sym_QMARK] = ACTIONS(6781), + [anon_sym_LT_EQ_GT] = ACTIONS(6781), + [anon_sym_or] = ACTIONS(6774), + [anon_sym_and] = ACTIONS(6774), + [anon_sym_bitor] = ACTIONS(6774), + [anon_sym_xor] = ACTIONS(6774), + [anon_sym_bitand] = ACTIONS(6774), + [anon_sym_not_eq] = ACTIONS(6774), + [anon_sym_DASH_DASH] = ACTIONS(6781), + [anon_sym_PLUS_PLUS] = ACTIONS(6781), + [anon_sym_DOT] = ACTIONS(6774), + [anon_sym_DOT_STAR] = ACTIONS(6781), + [anon_sym_DASH_GT] = ACTIONS(6781), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6774), + [anon_sym_decltype] = ACTIONS(6774), + [anon_sym_final] = ACTIONS(6774), + [anon_sym_override] = ACTIONS(6774), + [anon_sym_template] = ACTIONS(6774), + [anon_sym_GT2] = ACTIONS(6781), + [anon_sym_requires] = ACTIONS(6774), + [anon_sym_LBRACK_COLON] = ACTIONS(6781), + }, + [STATE(4019)] = { + [sym_string_literal] = STATE(3792), + [sym_raw_string_literal] = STATE(3792), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9517), + [anon_sym_COMMA] = ACTIONS(9517), + [anon_sym_LPAREN2] = ACTIONS(9517), + [anon_sym_DASH] = ACTIONS(9519), + [anon_sym_PLUS] = ACTIONS(9519), + [anon_sym_STAR] = ACTIONS(9519), + [anon_sym_SLASH] = ACTIONS(9519), + [anon_sym_PERCENT] = ACTIONS(9519), + [anon_sym_PIPE_PIPE] = ACTIONS(9517), + [anon_sym_AMP_AMP] = ACTIONS(9517), + [anon_sym_PIPE] = ACTIONS(9519), + [anon_sym_CARET] = ACTIONS(9519), + [anon_sym_AMP] = ACTIONS(9519), + [anon_sym_EQ_EQ] = ACTIONS(9517), + [anon_sym_BANG_EQ] = ACTIONS(9517), + [anon_sym_GT] = ACTIONS(9519), + [anon_sym_GT_EQ] = ACTIONS(9517), + [anon_sym_LT_EQ] = ACTIONS(9519), + [anon_sym_LT] = ACTIONS(9519), + [anon_sym_LT_LT] = ACTIONS(9519), + [anon_sym_GT_GT] = ACTIONS(9519), + [anon_sym_SEMI] = ACTIONS(9517), + [anon_sym___attribute__] = ACTIONS(9519), + [anon_sym___attribute] = ACTIONS(9519), + [anon_sym_LBRACK] = ACTIONS(9517), + [anon_sym_EQ] = ACTIONS(9519), + [anon_sym_QMARK] = ACTIONS(9517), + [anon_sym_STAR_EQ] = ACTIONS(9517), + [anon_sym_SLASH_EQ] = ACTIONS(9517), + [anon_sym_PERCENT_EQ] = ACTIONS(9517), + [anon_sym_PLUS_EQ] = ACTIONS(9517), + [anon_sym_DASH_EQ] = ACTIONS(9517), + [anon_sym_LT_LT_EQ] = ACTIONS(9517), + [anon_sym_GT_GT_EQ] = ACTIONS(9517), + [anon_sym_AMP_EQ] = ACTIONS(9517), + [anon_sym_CARET_EQ] = ACTIONS(9517), + [anon_sym_PIPE_EQ] = ACTIONS(9517), + [anon_sym_and_eq] = ACTIONS(9519), + [anon_sym_or_eq] = ACTIONS(9519), + [anon_sym_xor_eq] = ACTIONS(9519), + [anon_sym_LT_EQ_GT] = ACTIONS(9517), + [anon_sym_or] = ACTIONS(9519), + [anon_sym_and] = ACTIONS(9519), + [anon_sym_bitor] = ACTIONS(9519), + [anon_sym_xor] = ACTIONS(9519), + [anon_sym_bitand] = ACTIONS(9519), + [anon_sym_not_eq] = ACTIONS(9519), + [anon_sym_DASH_DASH] = ACTIONS(9517), + [anon_sym_PLUS_PLUS] = ACTIONS(9517), + [anon_sym_DOT] = ACTIONS(9519), + [anon_sym_DOT_STAR] = ACTIONS(9517), + [anon_sym_DASH_GT] = ACTIONS(9517), + [anon_sym_L_DQUOTE] = ACTIONS(7102), + [anon_sym_u_DQUOTE] = ACTIONS(7102), + [anon_sym_U_DQUOTE] = ACTIONS(7102), + [anon_sym_u8_DQUOTE] = ACTIONS(7102), + [anon_sym_DQUOTE] = ACTIONS(7102), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7104), + [anon_sym_LR_DQUOTE] = ACTIONS(7104), + [anon_sym_uR_DQUOTE] = ACTIONS(7104), + [anon_sym_UR_DQUOTE] = ACTIONS(7104), + [anon_sym_u8R_DQUOTE] = ACTIONS(7104), + [sym_literal_suffix] = ACTIONS(9519), + }, + [STATE(4020)] = { + [sym_ms_based_modifier] = STATE(12242), + [sym__declarator] = STATE(10057), + [sym__abstract_declarator] = STATE(10183), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8753), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(8585), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_RPAREN] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8932), + [anon_sym_AMP_AMP] = ACTIONS(8934), + [anon_sym_AMP] = ACTIONS(8936), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(8938), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(4021)] = { + [sym_attribute_specifier] = STATE(4173), + [sym_identifier] = ACTIONS(7706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7708), + [anon_sym_COMMA] = ACTIONS(7708), + [anon_sym_RPAREN] = ACTIONS(7708), + [aux_sym_preproc_if_token2] = ACTIONS(7708), + [aux_sym_preproc_else_token1] = ACTIONS(7708), + [aux_sym_preproc_elif_token1] = ACTIONS(7706), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7708), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7708), + [anon_sym_LPAREN2] = ACTIONS(7708), + [anon_sym_DASH] = ACTIONS(7706), + [anon_sym_PLUS] = ACTIONS(7706), + [anon_sym_STAR] = ACTIONS(7706), + [anon_sym_SLASH] = ACTIONS(7706), + [anon_sym_PERCENT] = ACTIONS(7706), + [anon_sym_PIPE_PIPE] = ACTIONS(7708), + [anon_sym_AMP_AMP] = ACTIONS(7708), + [anon_sym_PIPE] = ACTIONS(7706), + [anon_sym_CARET] = ACTIONS(7706), + [anon_sym_AMP] = ACTIONS(7706), + [anon_sym_EQ_EQ] = ACTIONS(7708), + [anon_sym_BANG_EQ] = ACTIONS(7708), + [anon_sym_GT] = ACTIONS(7706), + [anon_sym_GT_EQ] = ACTIONS(7708), + [anon_sym_LT_EQ] = ACTIONS(7706), + [anon_sym_LT] = ACTIONS(7706), + [anon_sym_LT_LT] = ACTIONS(7706), + [anon_sym_GT_GT] = ACTIONS(7706), + [anon_sym_SEMI] = ACTIONS(7708), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7706), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7708), + [anon_sym_LBRACE] = ACTIONS(7708), + [anon_sym_RBRACE] = ACTIONS(7708), + [anon_sym_LBRACK] = ACTIONS(7708), + [anon_sym_EQ] = ACTIONS(7706), + [anon_sym_QMARK] = ACTIONS(7708), + [anon_sym_STAR_EQ] = ACTIONS(7708), + [anon_sym_SLASH_EQ] = ACTIONS(7708), + [anon_sym_PERCENT_EQ] = ACTIONS(7708), + [anon_sym_PLUS_EQ] = ACTIONS(7708), + [anon_sym_DASH_EQ] = ACTIONS(7708), + [anon_sym_LT_LT_EQ] = ACTIONS(7708), + [anon_sym_GT_GT_EQ] = ACTIONS(7708), + [anon_sym_AMP_EQ] = ACTIONS(7708), + [anon_sym_CARET_EQ] = ACTIONS(7708), + [anon_sym_PIPE_EQ] = ACTIONS(7708), + [anon_sym_and_eq] = ACTIONS(7706), + [anon_sym_or_eq] = ACTIONS(7706), + [anon_sym_xor_eq] = ACTIONS(7706), + [anon_sym_LT_EQ_GT] = ACTIONS(7708), + [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(7708), + [anon_sym_PLUS_PLUS] = ACTIONS(7708), + [anon_sym_DOT] = ACTIONS(7706), + [anon_sym_DOT_STAR] = ACTIONS(7708), + [anon_sym_DASH_GT] = ACTIONS(7708), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7708), + }, + [STATE(4022)] = { + [sym_attribute_specifier] = STATE(4174), + [sym_identifier] = ACTIONS(7570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7572), + [anon_sym_COMMA] = ACTIONS(7572), + [anon_sym_RPAREN] = ACTIONS(7572), + [aux_sym_preproc_if_token2] = ACTIONS(7572), + [aux_sym_preproc_else_token1] = ACTIONS(7572), + [aux_sym_preproc_elif_token1] = ACTIONS(7570), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7572), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7572), + [anon_sym_LPAREN2] = ACTIONS(7572), + [anon_sym_DASH] = ACTIONS(7570), + [anon_sym_PLUS] = ACTIONS(7570), + [anon_sym_STAR] = ACTIONS(7570), + [anon_sym_SLASH] = ACTIONS(7570), + [anon_sym_PERCENT] = ACTIONS(7570), + [anon_sym_PIPE_PIPE] = ACTIONS(7572), + [anon_sym_AMP_AMP] = ACTIONS(7572), + [anon_sym_PIPE] = ACTIONS(7570), + [anon_sym_CARET] = ACTIONS(7570), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7572), + [anon_sym_BANG_EQ] = ACTIONS(7572), + [anon_sym_GT] = ACTIONS(7570), + [anon_sym_GT_EQ] = ACTIONS(7572), + [anon_sym_LT_EQ] = ACTIONS(7570), + [anon_sym_LT] = ACTIONS(7570), + [anon_sym_LT_LT] = ACTIONS(7570), + [anon_sym_GT_GT] = ACTIONS(7570), + [anon_sym_SEMI] = ACTIONS(7572), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7570), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7572), + [anon_sym_LBRACE] = ACTIONS(7572), + [anon_sym_RBRACE] = ACTIONS(7572), + [anon_sym_LBRACK] = ACTIONS(7572), + [anon_sym_EQ] = ACTIONS(7570), + [anon_sym_QMARK] = ACTIONS(7572), + [anon_sym_STAR_EQ] = ACTIONS(7572), + [anon_sym_SLASH_EQ] = ACTIONS(7572), + [anon_sym_PERCENT_EQ] = ACTIONS(7572), + [anon_sym_PLUS_EQ] = ACTIONS(7572), + [anon_sym_DASH_EQ] = ACTIONS(7572), + [anon_sym_LT_LT_EQ] = ACTIONS(7572), + [anon_sym_GT_GT_EQ] = ACTIONS(7572), + [anon_sym_AMP_EQ] = ACTIONS(7572), + [anon_sym_CARET_EQ] = ACTIONS(7572), + [anon_sym_PIPE_EQ] = ACTIONS(7572), + [anon_sym_and_eq] = ACTIONS(7570), + [anon_sym_or_eq] = ACTIONS(7570), + [anon_sym_xor_eq] = ACTIONS(7570), + [anon_sym_LT_EQ_GT] = ACTIONS(7572), + [anon_sym_or] = ACTIONS(7570), + [anon_sym_and] = ACTIONS(7570), + [anon_sym_bitor] = ACTIONS(7570), + [anon_sym_xor] = ACTIONS(7570), + [anon_sym_bitand] = ACTIONS(7570), + [anon_sym_not_eq] = ACTIONS(7570), + [anon_sym_DASH_DASH] = ACTIONS(7572), + [anon_sym_PLUS_PLUS] = ACTIONS(7572), + [anon_sym_DOT] = ACTIONS(7570), + [anon_sym_DOT_STAR] = ACTIONS(7572), + [anon_sym_DASH_GT] = ACTIONS(7572), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7572), + }, + [STATE(4023)] = { + [sym_template_argument_list] = STATE(2125), + [sym_identifier] = ACTIONS(7449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7454), + [anon_sym_COMMA] = ACTIONS(7454), + [anon_sym_RPAREN] = ACTIONS(7454), + [aux_sym_preproc_if_token2] = ACTIONS(7454), + [aux_sym_preproc_else_token1] = ACTIONS(7454), + [aux_sym_preproc_elif_token1] = ACTIONS(7449), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7454), + [anon_sym_LPAREN2] = ACTIONS(7454), + [anon_sym_DASH] = ACTIONS(7449), + [anon_sym_PLUS] = ACTIONS(7449), + [anon_sym_STAR] = ACTIONS(7449), + [anon_sym_SLASH] = ACTIONS(7449), + [anon_sym_PERCENT] = ACTIONS(7449), + [anon_sym_PIPE_PIPE] = ACTIONS(7454), + [anon_sym_AMP_AMP] = ACTIONS(7454), + [anon_sym_PIPE] = ACTIONS(7449), + [anon_sym_CARET] = ACTIONS(7449), + [anon_sym_AMP] = ACTIONS(7449), + [anon_sym_EQ_EQ] = ACTIONS(7454), + [anon_sym_BANG_EQ] = ACTIONS(7454), + [anon_sym_GT] = ACTIONS(7449), + [anon_sym_GT_EQ] = ACTIONS(7454), + [anon_sym_LT_EQ] = ACTIONS(7449), + [anon_sym_LT] = ACTIONS(7987), + [anon_sym_LT_LT] = ACTIONS(7449), + [anon_sym_GT_GT] = ACTIONS(7449), + [anon_sym_SEMI] = ACTIONS(7454), + [anon_sym___attribute__] = ACTIONS(7449), + [anon_sym___attribute] = ACTIONS(7449), + [anon_sym_COLON] = ACTIONS(7449), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7454), + [anon_sym_RBRACE] = ACTIONS(7454), + [anon_sym_LBRACK] = ACTIONS(7454), + [anon_sym_EQ] = ACTIONS(7449), + [anon_sym_QMARK] = ACTIONS(7454), + [anon_sym_STAR_EQ] = ACTIONS(7454), + [anon_sym_SLASH_EQ] = ACTIONS(7454), + [anon_sym_PERCENT_EQ] = ACTIONS(7454), + [anon_sym_PLUS_EQ] = ACTIONS(7454), + [anon_sym_DASH_EQ] = ACTIONS(7454), + [anon_sym_LT_LT_EQ] = ACTIONS(7454), + [anon_sym_GT_GT_EQ] = ACTIONS(7454), + [anon_sym_AMP_EQ] = ACTIONS(7454), + [anon_sym_CARET_EQ] = ACTIONS(7454), + [anon_sym_PIPE_EQ] = ACTIONS(7454), + [anon_sym_and_eq] = ACTIONS(7449), + [anon_sym_or_eq] = ACTIONS(7449), + [anon_sym_xor_eq] = ACTIONS(7449), + [anon_sym_LT_EQ_GT] = ACTIONS(7454), + [anon_sym_or] = ACTIONS(7449), + [anon_sym_and] = ACTIONS(7449), + [anon_sym_bitor] = ACTIONS(7449), + [anon_sym_xor] = ACTIONS(7449), + [anon_sym_bitand] = ACTIONS(7449), + [anon_sym_not_eq] = ACTIONS(7449), + [anon_sym_DASH_DASH] = ACTIONS(7454), + [anon_sym_PLUS_PLUS] = ACTIONS(7454), + [anon_sym_DOT] = ACTIONS(7449), + [anon_sym_DOT_STAR] = ACTIONS(7454), + [anon_sym_DASH_GT] = ACTIONS(7454), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7454), + }, + [STATE(4024)] = { + [sym_attribute_declaration] = STATE(3509), + [aux_sym_attributed_declarator_repeat1] = STATE(3509), + [sym_identifier] = ACTIONS(10011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10013), + [anon_sym_COMMA] = ACTIONS(10013), + [anon_sym_RPAREN] = ACTIONS(10013), + [aux_sym_preproc_if_token2] = ACTIONS(10013), + [aux_sym_preproc_else_token1] = ACTIONS(10013), + [aux_sym_preproc_elif_token1] = ACTIONS(10011), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10013), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10013), + [anon_sym_LPAREN2] = ACTIONS(10013), + [anon_sym_DASH] = ACTIONS(10011), + [anon_sym_PLUS] = ACTIONS(10011), + [anon_sym_STAR] = ACTIONS(10011), + [anon_sym_SLASH] = ACTIONS(10011), + [anon_sym_PERCENT] = ACTIONS(10011), + [anon_sym_PIPE_PIPE] = ACTIONS(10013), + [anon_sym_AMP_AMP] = ACTIONS(10013), + [anon_sym_PIPE] = ACTIONS(10011), + [anon_sym_CARET] = ACTIONS(10011), + [anon_sym_AMP] = ACTIONS(10011), + [anon_sym_EQ_EQ] = ACTIONS(10013), + [anon_sym_BANG_EQ] = ACTIONS(10013), + [anon_sym_GT] = ACTIONS(10011), + [anon_sym_GT_EQ] = ACTIONS(10013), + [anon_sym_LT_EQ] = ACTIONS(10011), + [anon_sym_LT] = ACTIONS(10011), + [anon_sym_LT_LT] = ACTIONS(10011), + [anon_sym_GT_GT] = ACTIONS(10011), + [anon_sym_SEMI] = ACTIONS(10013), + [anon_sym___attribute__] = ACTIONS(10011), + [anon_sym___attribute] = ACTIONS(10011), + [anon_sym_COLON] = ACTIONS(10011), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6411), + [anon_sym_RBRACE] = ACTIONS(10013), + [anon_sym_LBRACK] = ACTIONS(10011), + [anon_sym_EQ] = ACTIONS(10011), + [anon_sym_QMARK] = ACTIONS(10013), + [anon_sym_STAR_EQ] = ACTIONS(10013), + [anon_sym_SLASH_EQ] = ACTIONS(10013), + [anon_sym_PERCENT_EQ] = ACTIONS(10013), + [anon_sym_PLUS_EQ] = ACTIONS(10013), + [anon_sym_DASH_EQ] = ACTIONS(10013), + [anon_sym_LT_LT_EQ] = ACTIONS(10013), + [anon_sym_GT_GT_EQ] = ACTIONS(10013), + [anon_sym_AMP_EQ] = ACTIONS(10013), + [anon_sym_CARET_EQ] = ACTIONS(10013), + [anon_sym_PIPE_EQ] = ACTIONS(10013), + [anon_sym_and_eq] = ACTIONS(10011), + [anon_sym_or_eq] = ACTIONS(10011), + [anon_sym_xor_eq] = ACTIONS(10011), + [anon_sym_LT_EQ_GT] = ACTIONS(10013), + [anon_sym_or] = ACTIONS(10011), + [anon_sym_and] = ACTIONS(10011), + [anon_sym_bitor] = ACTIONS(10011), + [anon_sym_xor] = ACTIONS(10011), + [anon_sym_bitand] = ACTIONS(10011), + [anon_sym_not_eq] = ACTIONS(10011), + [anon_sym_DASH_DASH] = ACTIONS(10013), + [anon_sym_PLUS_PLUS] = ACTIONS(10013), + [anon_sym_DOT] = ACTIONS(10011), + [anon_sym_DOT_STAR] = ACTIONS(10013), + [anon_sym_DASH_GT] = ACTIONS(10013), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10013), + }, + [STATE(4025)] = { + [sym_ms_based_modifier] = STATE(12242), + [sym__declarator] = STATE(10000), + [sym__abstract_declarator] = STATE(10154), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(2654), + [sym_alignas_qualifier] = STATE(2859), + [sym_parameter_list] = STATE(5954), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8753), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(2654), + [sym_identifier] = ACTIONS(8585), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_RPAREN] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8932), + [anon_sym_AMP_AMP] = ACTIONS(8934), + [anon_sym_AMP] = ACTIONS(8936), + [anon_sym___extension__] = ACTIONS(3226), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(8938), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_constexpr] = ACTIONS(3226), + [anon_sym_volatile] = ACTIONS(3226), + [anon_sym_restrict] = ACTIONS(3226), + [anon_sym___restrict__] = ACTIONS(3226), + [anon_sym__Atomic] = ACTIONS(3226), + [anon_sym__Noreturn] = ACTIONS(3226), + [anon_sym_noreturn] = ACTIONS(3226), + [anon_sym__Nonnull] = ACTIONS(3226), + [anon_sym_mutable] = ACTIONS(3226), + [anon_sym_constinit] = ACTIONS(3226), + [anon_sym_consteval] = ACTIONS(3226), + [anon_sym_alignas] = ACTIONS(3228), + [anon_sym__Alignas] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(4026)] = { + [sym_type_qualifier] = STATE(4003), + [sym_alignas_qualifier] = STATE(4359), + [aux_sym__type_definition_type_repeat1] = STATE(4003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7059), + [anon_sym_COMMA] = ACTIONS(7059), + [anon_sym_LPAREN2] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7059), + [anon_sym_SLASH] = ACTIONS(7057), + [anon_sym_PERCENT] = ACTIONS(7059), + [anon_sym_PIPE_PIPE] = ACTIONS(7059), + [anon_sym_AMP_AMP] = ACTIONS(7059), + [anon_sym_PIPE] = ACTIONS(7057), + [anon_sym_CARET] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_EQ_EQ] = ACTIONS(7059), + [anon_sym_BANG_EQ] = ACTIONS(7059), + [anon_sym_GT] = ACTIONS(7057), + [anon_sym_GT_EQ] = ACTIONS(7057), + [anon_sym_LT_EQ] = ACTIONS(7057), + [anon_sym_LT] = ACTIONS(7057), + [anon_sym_LT_LT] = ACTIONS(7059), + [anon_sym_GT_GT] = ACTIONS(7057), + [anon_sym___extension__] = ACTIONS(8197), + [anon_sym___attribute__] = ACTIONS(7059), + [anon_sym___attribute] = ACTIONS(7057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7059), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_const] = ACTIONS(8205), + [anon_sym_constexpr] = ACTIONS(8197), + [anon_sym_volatile] = ACTIONS(8197), + [anon_sym_restrict] = ACTIONS(8197), + [anon_sym___restrict__] = ACTIONS(8197), + [anon_sym__Atomic] = ACTIONS(8197), + [anon_sym__Noreturn] = ACTIONS(8197), + [anon_sym_noreturn] = ACTIONS(8197), + [anon_sym__Nonnull] = ACTIONS(8197), + [anon_sym_mutable] = ACTIONS(8197), + [anon_sym_constinit] = ACTIONS(8197), + [anon_sym_consteval] = ACTIONS(8197), + [anon_sym_alignas] = ACTIONS(8207), + [anon_sym__Alignas] = ACTIONS(8207), + [anon_sym_QMARK] = ACTIONS(7059), + [anon_sym_LT_EQ_GT] = ACTIONS(7059), + [anon_sym_or] = ACTIONS(7059), + [anon_sym_and] = ACTIONS(7059), + [anon_sym_bitor] = ACTIONS(7059), + [anon_sym_xor] = ACTIONS(7059), + [anon_sym_bitand] = ACTIONS(7059), + [anon_sym_not_eq] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7059), + [anon_sym_PLUS_PLUS] = ACTIONS(7059), + [anon_sym_asm] = ACTIONS(7059), + [anon_sym___asm__] = ACTIONS(7059), + [anon_sym___asm] = ACTIONS(7057), + [anon_sym_DOT] = ACTIONS(7057), + [anon_sym_DOT_STAR] = ACTIONS(7059), + [anon_sym_DASH_GT] = ACTIONS(7059), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7059), + [anon_sym_override] = ACTIONS(7059), + [anon_sym_GT2] = ACTIONS(7059), + [anon_sym_noexcept] = ACTIONS(7059), + [anon_sym_throw] = ACTIONS(7059), + [anon_sym_requires] = ACTIONS(7059), + }, + [STATE(4027)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3388), + [sym_identifier] = ACTIONS(7183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7186), + [anon_sym_COMMA] = ACTIONS(7186), + [aux_sym_preproc_if_token2] = ACTIONS(7186), + [aux_sym_preproc_else_token1] = ACTIONS(7186), + [aux_sym_preproc_elif_token1] = ACTIONS(7183), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7186), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7186), + [anon_sym_LPAREN2] = ACTIONS(7186), + [anon_sym_DASH] = ACTIONS(7183), + [anon_sym_PLUS] = ACTIONS(7183), + [anon_sym_STAR] = ACTIONS(7186), + [anon_sym_SLASH] = ACTIONS(7183), + [anon_sym_PERCENT] = ACTIONS(7186), + [anon_sym_PIPE_PIPE] = ACTIONS(7186), + [anon_sym_AMP_AMP] = ACTIONS(7186), + [anon_sym_PIPE] = ACTIONS(7183), + [anon_sym_CARET] = ACTIONS(7186), + [anon_sym_AMP] = ACTIONS(7183), + [anon_sym_EQ_EQ] = ACTIONS(7186), + [anon_sym_BANG_EQ] = ACTIONS(7186), + [anon_sym_GT] = ACTIONS(7183), + [anon_sym_GT_EQ] = ACTIONS(7186), + [anon_sym_LT_EQ] = ACTIONS(7183), + [anon_sym_LT] = ACTIONS(7183), + [anon_sym_LT_LT] = ACTIONS(7186), + [anon_sym_GT_GT] = ACTIONS(7186), + [anon_sym___extension__] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7183), + [anon_sym___attribute] = ACTIONS(7183), + [anon_sym_LBRACE] = ACTIONS(7186), + [anon_sym_signed] = ACTIONS(9228), + [anon_sym_unsigned] = ACTIONS(9228), + [anon_sym_long] = ACTIONS(9228), + [anon_sym_short] = ACTIONS(9228), + [anon_sym_LBRACK] = ACTIONS(7186), + [anon_sym_const] = ACTIONS(7173), + [anon_sym_constexpr] = ACTIONS(7173), + [anon_sym_volatile] = ACTIONS(7173), + [anon_sym_restrict] = ACTIONS(7173), + [anon_sym___restrict__] = ACTIONS(7173), + [anon_sym__Atomic] = ACTIONS(7173), + [anon_sym__Noreturn] = ACTIONS(7173), + [anon_sym_noreturn] = ACTIONS(7173), + [anon_sym__Nonnull] = ACTIONS(7173), + [anon_sym_mutable] = ACTIONS(7173), + [anon_sym_constinit] = ACTIONS(7173), + [anon_sym_consteval] = ACTIONS(7173), + [anon_sym_alignas] = ACTIONS(7173), + [anon_sym__Alignas] = ACTIONS(7173), + [sym_primitive_type] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7186), + [anon_sym_LT_EQ_GT] = ACTIONS(7186), + [anon_sym_or] = ACTIONS(7183), + [anon_sym_and] = ACTIONS(7183), + [anon_sym_bitor] = ACTIONS(7183), + [anon_sym_xor] = ACTIONS(7183), + [anon_sym_bitand] = ACTIONS(7183), + [anon_sym_not_eq] = ACTIONS(7183), + [anon_sym_DASH_DASH] = ACTIONS(7186), + [anon_sym_PLUS_PLUS] = ACTIONS(7186), + [anon_sym_DOT] = ACTIONS(7183), + [anon_sym_DOT_STAR] = ACTIONS(7186), + [anon_sym_DASH_GT] = ACTIONS(7186), + [sym_comment] = ACTIONS(3), + }, + [STATE(4028)] = { + [sym_string_literal] = STATE(4029), + [sym_template_argument_list] = STATE(5802), + [sym_raw_string_literal] = STATE(4029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5671), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(10015), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5671), + [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(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7334), + [anon_sym_u_DQUOTE] = ACTIONS(7334), + [anon_sym_U_DQUOTE] = ACTIONS(7334), + [anon_sym_u8_DQUOTE] = ACTIONS(7334), + [anon_sym_DQUOTE] = ACTIONS(7334), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5663), + [anon_sym_R_DQUOTE] = ACTIONS(7340), + [anon_sym_LR_DQUOTE] = ACTIONS(7340), + [anon_sym_uR_DQUOTE] = ACTIONS(7340), + [anon_sym_UR_DQUOTE] = ACTIONS(7340), + [anon_sym_u8R_DQUOTE] = ACTIONS(7340), + }, + [STATE(4029)] = { + [sym_string_literal] = STATE(4009), + [sym_raw_string_literal] = STATE(4009), + [aux_sym_concatenated_string_repeat1] = STATE(4009), + [sym_identifier] = ACTIONS(10018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8800), + [anon_sym_COMMA] = ACTIONS(8800), + [anon_sym_LPAREN2] = ACTIONS(8800), + [anon_sym_DASH] = ACTIONS(8802), + [anon_sym_PLUS] = ACTIONS(8802), + [anon_sym_STAR] = ACTIONS(8802), + [anon_sym_SLASH] = ACTIONS(8802), + [anon_sym_PERCENT] = ACTIONS(8802), + [anon_sym_PIPE_PIPE] = ACTIONS(8800), + [anon_sym_AMP_AMP] = ACTIONS(8800), + [anon_sym_PIPE] = ACTIONS(8802), + [anon_sym_CARET] = ACTIONS(8802), + [anon_sym_AMP] = ACTIONS(8802), + [anon_sym_EQ_EQ] = ACTIONS(8800), + [anon_sym_BANG_EQ] = ACTIONS(8800), + [anon_sym_GT] = ACTIONS(8802), + [anon_sym_GT_EQ] = ACTIONS(8802), + [anon_sym_LT_EQ] = ACTIONS(8802), + [anon_sym_LT] = ACTIONS(8802), + [anon_sym_LT_LT] = ACTIONS(8802), + [anon_sym_GT_GT] = ACTIONS(8802), + [anon_sym_LBRACK] = ACTIONS(8800), + [anon_sym_EQ] = ACTIONS(8802), + [anon_sym_QMARK] = ACTIONS(8800), + [anon_sym_STAR_EQ] = ACTIONS(8800), + [anon_sym_SLASH_EQ] = ACTIONS(8800), + [anon_sym_PERCENT_EQ] = ACTIONS(8800), + [anon_sym_PLUS_EQ] = ACTIONS(8800), + [anon_sym_DASH_EQ] = ACTIONS(8800), + [anon_sym_LT_LT_EQ] = ACTIONS(8800), + [anon_sym_GT_GT_EQ] = ACTIONS(8802), + [anon_sym_AMP_EQ] = ACTIONS(8800), + [anon_sym_CARET_EQ] = ACTIONS(8800), + [anon_sym_PIPE_EQ] = ACTIONS(8800), + [anon_sym_and_eq] = ACTIONS(8802), + [anon_sym_or_eq] = ACTIONS(8802), + [anon_sym_xor_eq] = ACTIONS(8802), + [anon_sym_LT_EQ_GT] = ACTIONS(8800), + [anon_sym_or] = ACTIONS(8802), + [anon_sym_and] = ACTIONS(8802), + [anon_sym_bitor] = ACTIONS(8802), + [anon_sym_xor] = ACTIONS(8802), + [anon_sym_bitand] = ACTIONS(8802), + [anon_sym_not_eq] = ACTIONS(8802), + [anon_sym_DASH_DASH] = ACTIONS(8800), + [anon_sym_PLUS_PLUS] = ACTIONS(8800), + [anon_sym_DOT] = ACTIONS(8802), + [anon_sym_DOT_STAR] = ACTIONS(8800), + [anon_sym_DASH_GT] = ACTIONS(8800), + [anon_sym_L_DQUOTE] = ACTIONS(7334), + [anon_sym_u_DQUOTE] = ACTIONS(7334), + [anon_sym_U_DQUOTE] = ACTIONS(7334), + [anon_sym_u8_DQUOTE] = ACTIONS(7334), + [anon_sym_DQUOTE] = ACTIONS(7334), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8800), + [anon_sym_R_DQUOTE] = ACTIONS(7340), + [anon_sym_LR_DQUOTE] = ACTIONS(7340), + [anon_sym_uR_DQUOTE] = ACTIONS(7340), + [anon_sym_UR_DQUOTE] = ACTIONS(7340), + [anon_sym_u8R_DQUOTE] = ACTIONS(7340), + [sym_literal_suffix] = ACTIONS(8802), + }, + [STATE(4030)] = { + [sym_attribute_specifier] = STATE(4116), + [sym_identifier] = ACTIONS(7617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7619), + [anon_sym_COMMA] = ACTIONS(7619), + [anon_sym_RPAREN] = ACTIONS(7619), + [aux_sym_preproc_if_token2] = ACTIONS(7619), + [aux_sym_preproc_else_token1] = ACTIONS(7619), + [aux_sym_preproc_elif_token1] = ACTIONS(7617), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7619), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7619), + [anon_sym_LPAREN2] = ACTIONS(7619), + [anon_sym_DASH] = ACTIONS(7617), + [anon_sym_PLUS] = ACTIONS(7617), + [anon_sym_STAR] = ACTIONS(7617), + [anon_sym_SLASH] = ACTIONS(7617), + [anon_sym_PERCENT] = ACTIONS(7617), + [anon_sym_PIPE_PIPE] = ACTIONS(7619), + [anon_sym_AMP_AMP] = ACTIONS(7619), + [anon_sym_PIPE] = ACTIONS(7617), + [anon_sym_CARET] = ACTIONS(7617), + [anon_sym_AMP] = ACTIONS(7617), + [anon_sym_EQ_EQ] = ACTIONS(7619), + [anon_sym_BANG_EQ] = ACTIONS(7619), + [anon_sym_GT] = ACTIONS(7617), + [anon_sym_GT_EQ] = ACTIONS(7619), + [anon_sym_LT_EQ] = ACTIONS(7617), + [anon_sym_LT] = ACTIONS(7617), + [anon_sym_LT_LT] = ACTIONS(7617), + [anon_sym_GT_GT] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7619), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7617), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7619), + [anon_sym_LBRACE] = ACTIONS(7619), + [anon_sym_RBRACE] = ACTIONS(7619), + [anon_sym_LBRACK] = ACTIONS(7619), + [anon_sym_EQ] = ACTIONS(7617), + [anon_sym_QMARK] = ACTIONS(7619), + [anon_sym_STAR_EQ] = ACTIONS(7619), + [anon_sym_SLASH_EQ] = ACTIONS(7619), + [anon_sym_PERCENT_EQ] = ACTIONS(7619), + [anon_sym_PLUS_EQ] = ACTIONS(7619), + [anon_sym_DASH_EQ] = ACTIONS(7619), + [anon_sym_LT_LT_EQ] = ACTIONS(7619), + [anon_sym_GT_GT_EQ] = ACTIONS(7619), + [anon_sym_AMP_EQ] = ACTIONS(7619), + [anon_sym_CARET_EQ] = ACTIONS(7619), + [anon_sym_PIPE_EQ] = ACTIONS(7619), + [anon_sym_and_eq] = ACTIONS(7617), + [anon_sym_or_eq] = ACTIONS(7617), + [anon_sym_xor_eq] = ACTIONS(7617), + [anon_sym_LT_EQ_GT] = ACTIONS(7619), + [anon_sym_or] = ACTIONS(7617), + [anon_sym_and] = ACTIONS(7617), + [anon_sym_bitor] = ACTIONS(7617), + [anon_sym_xor] = ACTIONS(7617), + [anon_sym_bitand] = ACTIONS(7617), + [anon_sym_not_eq] = ACTIONS(7617), + [anon_sym_DASH_DASH] = ACTIONS(7619), + [anon_sym_PLUS_PLUS] = ACTIONS(7619), + [anon_sym_DOT] = ACTIONS(7617), + [anon_sym_DOT_STAR] = ACTIONS(7619), + [anon_sym_DASH_GT] = ACTIONS(7619), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7619), + }, + [STATE(4031)] = { + [sym_identifier] = ACTIONS(10020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10022), + [anon_sym_COMMA] = ACTIONS(10022), + [anon_sym_RPAREN] = ACTIONS(10022), + [aux_sym_preproc_if_token2] = ACTIONS(10022), + [aux_sym_preproc_else_token1] = ACTIONS(10022), + [aux_sym_preproc_elif_token1] = ACTIONS(10020), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10022), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10022), + [anon_sym_LPAREN2] = ACTIONS(10022), + [anon_sym_DASH] = ACTIONS(10020), + [anon_sym_PLUS] = ACTIONS(10020), + [anon_sym_STAR] = ACTIONS(10020), + [anon_sym_SLASH] = ACTIONS(10020), + [anon_sym_PERCENT] = ACTIONS(10020), + [anon_sym_PIPE_PIPE] = ACTIONS(10022), + [anon_sym_AMP_AMP] = ACTIONS(10022), + [anon_sym_PIPE] = ACTIONS(10020), + [anon_sym_CARET] = ACTIONS(10020), + [anon_sym_AMP] = ACTIONS(10020), + [anon_sym_EQ_EQ] = ACTIONS(10022), + [anon_sym_BANG_EQ] = ACTIONS(10022), + [anon_sym_GT] = ACTIONS(10020), + [anon_sym_GT_EQ] = ACTIONS(10022), + [anon_sym_LT_EQ] = ACTIONS(10020), + [anon_sym_LT] = ACTIONS(10020), + [anon_sym_LT_LT] = ACTIONS(10020), + [anon_sym_GT_GT] = ACTIONS(10020), + [anon_sym_SEMI] = ACTIONS(10022), + [anon_sym___attribute__] = ACTIONS(10020), + [anon_sym___attribute] = ACTIONS(10020), + [anon_sym_COLON] = ACTIONS(10020), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10022), + [anon_sym_LBRACE] = ACTIONS(10022), + [anon_sym_RBRACE] = ACTIONS(10022), + [anon_sym_LBRACK] = ACTIONS(10022), + [anon_sym_EQ] = ACTIONS(10020), + [anon_sym_QMARK] = ACTIONS(10022), + [anon_sym_STAR_EQ] = ACTIONS(10022), + [anon_sym_SLASH_EQ] = ACTIONS(10022), + [anon_sym_PERCENT_EQ] = ACTIONS(10022), + [anon_sym_PLUS_EQ] = ACTIONS(10022), + [anon_sym_DASH_EQ] = ACTIONS(10022), + [anon_sym_LT_LT_EQ] = ACTIONS(10022), + [anon_sym_GT_GT_EQ] = ACTIONS(10022), + [anon_sym_AMP_EQ] = ACTIONS(10022), + [anon_sym_CARET_EQ] = ACTIONS(10022), + [anon_sym_PIPE_EQ] = ACTIONS(10022), + [anon_sym_and_eq] = ACTIONS(10020), + [anon_sym_or_eq] = ACTIONS(10020), + [anon_sym_xor_eq] = ACTIONS(10020), + [anon_sym_LT_EQ_GT] = ACTIONS(10022), + [anon_sym_or] = ACTIONS(10020), + [anon_sym_and] = ACTIONS(10020), + [anon_sym_bitor] = ACTIONS(10020), + [anon_sym_xor] = ACTIONS(10020), + [anon_sym_bitand] = ACTIONS(10020), + [anon_sym_not_eq] = ACTIONS(10020), + [anon_sym_DASH_DASH] = ACTIONS(10022), + [anon_sym_PLUS_PLUS] = ACTIONS(10022), + [anon_sym_DOT] = ACTIONS(10020), + [anon_sym_DOT_STAR] = ACTIONS(10022), + [anon_sym_DASH_GT] = ACTIONS(10022), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10022), + }, + [STATE(4032)] = { + [sym_string_literal] = STATE(4046), + [sym_raw_string_literal] = STATE(4046), + [aux_sym_concatenated_string_repeat1] = STATE(4046), + [sym_identifier] = ACTIONS(10024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8800), + [anon_sym_COMMA] = ACTIONS(8800), + [anon_sym_LPAREN2] = ACTIONS(8800), + [anon_sym_DASH] = ACTIONS(8802), + [anon_sym_PLUS] = ACTIONS(8802), + [anon_sym_STAR] = ACTIONS(8802), + [anon_sym_SLASH] = ACTIONS(8802), + [anon_sym_PERCENT] = ACTIONS(8802), + [anon_sym_PIPE_PIPE] = ACTIONS(8800), + [anon_sym_AMP_AMP] = ACTIONS(8800), + [anon_sym_PIPE] = ACTIONS(8802), + [anon_sym_CARET] = ACTIONS(8802), + [anon_sym_AMP] = ACTIONS(8802), + [anon_sym_EQ_EQ] = ACTIONS(8800), + [anon_sym_BANG_EQ] = ACTIONS(8800), + [anon_sym_GT] = ACTIONS(8802), + [anon_sym_GT_EQ] = ACTIONS(8800), + [anon_sym_LT_EQ] = ACTIONS(8802), + [anon_sym_LT] = ACTIONS(8802), + [anon_sym_LT_LT] = ACTIONS(8802), + [anon_sym_GT_GT] = ACTIONS(8802), + [anon_sym_LBRACK] = ACTIONS(8800), + [anon_sym_RBRACK] = ACTIONS(8800), + [anon_sym_EQ] = ACTIONS(8802), + [anon_sym_QMARK] = ACTIONS(8800), + [anon_sym_STAR_EQ] = ACTIONS(8800), + [anon_sym_SLASH_EQ] = ACTIONS(8800), + [anon_sym_PERCENT_EQ] = ACTIONS(8800), + [anon_sym_PLUS_EQ] = ACTIONS(8800), + [anon_sym_DASH_EQ] = ACTIONS(8800), + [anon_sym_LT_LT_EQ] = ACTIONS(8800), + [anon_sym_GT_GT_EQ] = ACTIONS(8800), + [anon_sym_AMP_EQ] = ACTIONS(8800), + [anon_sym_CARET_EQ] = ACTIONS(8800), + [anon_sym_PIPE_EQ] = ACTIONS(8800), + [anon_sym_and_eq] = ACTIONS(8802), + [anon_sym_or_eq] = ACTIONS(8802), + [anon_sym_xor_eq] = ACTIONS(8802), + [anon_sym_LT_EQ_GT] = ACTIONS(8800), + [anon_sym_or] = ACTIONS(8802), + [anon_sym_and] = ACTIONS(8802), + [anon_sym_bitor] = ACTIONS(8802), + [anon_sym_xor] = ACTIONS(8802), + [anon_sym_bitand] = ACTIONS(8802), + [anon_sym_not_eq] = ACTIONS(8802), + [anon_sym_DASH_DASH] = ACTIONS(8800), + [anon_sym_PLUS_PLUS] = ACTIONS(8800), + [anon_sym_DOT] = ACTIONS(8802), + [anon_sym_DOT_STAR] = ACTIONS(8800), + [anon_sym_DASH_GT] = ACTIONS(8800), + [anon_sym_L_DQUOTE] = ACTIONS(7245), + [anon_sym_u_DQUOTE] = ACTIONS(7245), + [anon_sym_U_DQUOTE] = ACTIONS(7245), + [anon_sym_u8_DQUOTE] = ACTIONS(7245), + [anon_sym_DQUOTE] = ACTIONS(7245), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7251), + [anon_sym_LR_DQUOTE] = ACTIONS(7251), + [anon_sym_uR_DQUOTE] = ACTIONS(7251), + [anon_sym_UR_DQUOTE] = ACTIONS(7251), + [anon_sym_u8R_DQUOTE] = ACTIONS(7251), + [sym_literal_suffix] = ACTIONS(8802), + }, + [STATE(4033)] = { + [sym_decltype_auto] = STATE(4240), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_TILDE] = ACTIONS(7361), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_virtual] = ACTIONS(7359), + [anon_sym_extern] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7361), + [anon_sym___declspec] = ACTIONS(7359), + [anon_sym___based] = ACTIONS(7359), + [anon_sym___cdecl] = ACTIONS(7359), + [anon_sym___clrcall] = ACTIONS(7359), + [anon_sym___stdcall] = ACTIONS(7359), + [anon_sym___fastcall] = ACTIONS(7359), + [anon_sym___thiscall] = ACTIONS(7359), + [anon_sym___vectorcall] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_static] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7361), + [anon_sym_register] = ACTIONS(7359), + [anon_sym_inline] = ACTIONS(7359), + [anon_sym___inline] = ACTIONS(7359), + [anon_sym___inline__] = ACTIONS(7359), + [anon_sym___forceinline] = ACTIONS(7359), + [anon_sym_thread_local] = ACTIONS(7359), + [anon_sym___thread] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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_asm] = ACTIONS(7359), + [anon_sym___asm__] = ACTIONS(7359), + [anon_sym___asm] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(10026), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_operator] = ACTIONS(7359), + [anon_sym_try] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(4034)] = { + [sym_ms_based_modifier] = STATE(12068), + [sym__declarator] = STATE(9918), + [sym__abstract_declarator] = STATE(10162), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(7054), + [sym_alignas_qualifier] = STATE(7255), + [sym_parameter_list] = STATE(5887), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8812), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(7054), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8876), + [anon_sym_AMP_AMP] = ACTIONS(8878), + [anon_sym_AMP] = ACTIONS(8880), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON_COLON] = ACTIONS(8882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5655), + [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(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(5968), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(4035)] = { + [sym_string_literal] = STATE(4032), + [sym_template_argument_list] = STATE(5997), + [sym_raw_string_literal] = STATE(4032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9984), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_RBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(7245), + [anon_sym_u_DQUOTE] = ACTIONS(7245), + [anon_sym_U_DQUOTE] = ACTIONS(7245), + [anon_sym_u8_DQUOTE] = ACTIONS(7245), + [anon_sym_DQUOTE] = ACTIONS(7245), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7251), + [anon_sym_LR_DQUOTE] = ACTIONS(7251), + [anon_sym_uR_DQUOTE] = ACTIONS(7251), + [anon_sym_UR_DQUOTE] = ACTIONS(7251), + [anon_sym_u8R_DQUOTE] = ACTIONS(7251), + }, + [STATE(4036)] = { + [sym_decltype_auto] = STATE(4240), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_TILDE] = ACTIONS(7361), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_virtual] = ACTIONS(7359), + [anon_sym_extern] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7361), + [anon_sym___declspec] = ACTIONS(7359), + [anon_sym___based] = ACTIONS(7359), + [anon_sym___cdecl] = ACTIONS(7359), + [anon_sym___clrcall] = ACTIONS(7359), + [anon_sym___stdcall] = ACTIONS(7359), + [anon_sym___fastcall] = ACTIONS(7359), + [anon_sym___thiscall] = ACTIONS(7359), + [anon_sym___vectorcall] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_static] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7361), + [anon_sym_register] = ACTIONS(7359), + [anon_sym_inline] = ACTIONS(7359), + [anon_sym___inline] = ACTIONS(7359), + [anon_sym___inline__] = ACTIONS(7359), + [anon_sym___forceinline] = ACTIONS(7359), + [anon_sym_thread_local] = ACTIONS(7359), + [anon_sym___thread] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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_asm] = ACTIONS(7359), + [anon_sym___asm__] = ACTIONS(7359), + [anon_sym___asm] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(10026), + [anon_sym_decltype] = ACTIONS(5703), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_operator] = ACTIONS(7359), + [anon_sym_try] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(4037)] = { + [sym_attribute_specifier] = STATE(4120), + [sym_identifier] = ACTIONS(7692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7694), + [anon_sym_COMMA] = ACTIONS(7694), + [anon_sym_RPAREN] = ACTIONS(7694), + [aux_sym_preproc_if_token2] = ACTIONS(7694), + [aux_sym_preproc_else_token1] = ACTIONS(7694), + [aux_sym_preproc_elif_token1] = ACTIONS(7692), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7694), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7694), + [anon_sym_LPAREN2] = ACTIONS(7694), + [anon_sym_DASH] = ACTIONS(7692), + [anon_sym_PLUS] = ACTIONS(7692), + [anon_sym_STAR] = ACTIONS(7692), + [anon_sym_SLASH] = ACTIONS(7692), + [anon_sym_PERCENT] = ACTIONS(7692), + [anon_sym_PIPE_PIPE] = ACTIONS(7694), + [anon_sym_AMP_AMP] = ACTIONS(7694), + [anon_sym_PIPE] = ACTIONS(7692), + [anon_sym_CARET] = ACTIONS(7692), + [anon_sym_AMP] = ACTIONS(7692), + [anon_sym_EQ_EQ] = ACTIONS(7694), + [anon_sym_BANG_EQ] = ACTIONS(7694), + [anon_sym_GT] = ACTIONS(7692), + [anon_sym_GT_EQ] = ACTIONS(7694), + [anon_sym_LT_EQ] = ACTIONS(7692), + [anon_sym_LT] = ACTIONS(7692), + [anon_sym_LT_LT] = ACTIONS(7692), + [anon_sym_GT_GT] = ACTIONS(7692), + [anon_sym_SEMI] = ACTIONS(7694), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7692), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7694), + [anon_sym_LBRACE] = ACTIONS(7694), + [anon_sym_RBRACE] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(7694), + [anon_sym_EQ] = ACTIONS(7692), + [anon_sym_QMARK] = ACTIONS(7694), + [anon_sym_STAR_EQ] = ACTIONS(7694), + [anon_sym_SLASH_EQ] = ACTIONS(7694), + [anon_sym_PERCENT_EQ] = ACTIONS(7694), + [anon_sym_PLUS_EQ] = ACTIONS(7694), + [anon_sym_DASH_EQ] = ACTIONS(7694), + [anon_sym_LT_LT_EQ] = ACTIONS(7694), + [anon_sym_GT_GT_EQ] = ACTIONS(7694), + [anon_sym_AMP_EQ] = ACTIONS(7694), + [anon_sym_CARET_EQ] = ACTIONS(7694), + [anon_sym_PIPE_EQ] = ACTIONS(7694), + [anon_sym_and_eq] = ACTIONS(7692), + [anon_sym_or_eq] = ACTIONS(7692), + [anon_sym_xor_eq] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7694), + [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(7694), + [anon_sym_PLUS_PLUS] = ACTIONS(7694), + [anon_sym_DOT] = ACTIONS(7692), + [anon_sym_DOT_STAR] = ACTIONS(7694), + [anon_sym_DASH_GT] = ACTIONS(7694), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7694), + }, + [STATE(4038)] = { + [sym_type_qualifier] = STATE(4003), + [sym_alignas_qualifier] = STATE(4359), + [aux_sym__type_definition_type_repeat1] = STATE(4003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7344), + [anon_sym_COMMA] = ACTIONS(7344), + [anon_sym_LPAREN2] = ACTIONS(7344), + [anon_sym_DASH] = ACTIONS(7342), + [anon_sym_PLUS] = ACTIONS(7342), + [anon_sym_STAR] = ACTIONS(7344), + [anon_sym_SLASH] = ACTIONS(7342), + [anon_sym_PERCENT] = ACTIONS(7344), + [anon_sym_PIPE_PIPE] = ACTIONS(7344), + [anon_sym_AMP_AMP] = ACTIONS(7344), + [anon_sym_PIPE] = ACTIONS(7342), + [anon_sym_CARET] = ACTIONS(7344), + [anon_sym_AMP] = ACTIONS(7342), + [anon_sym_EQ_EQ] = ACTIONS(7344), + [anon_sym_BANG_EQ] = ACTIONS(7344), + [anon_sym_GT] = ACTIONS(7342), + [anon_sym_GT_EQ] = ACTIONS(7342), + [anon_sym_LT_EQ] = ACTIONS(7342), + [anon_sym_LT] = ACTIONS(7342), + [anon_sym_LT_LT] = ACTIONS(7344), + [anon_sym_GT_GT] = ACTIONS(7342), + [anon_sym___extension__] = ACTIONS(8197), + [anon_sym___attribute__] = ACTIONS(7344), + [anon_sym___attribute] = ACTIONS(7342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7344), + [anon_sym_LBRACK] = ACTIONS(7342), + [anon_sym_const] = ACTIONS(8205), + [anon_sym_constexpr] = ACTIONS(8197), + [anon_sym_volatile] = ACTIONS(8197), + [anon_sym_restrict] = ACTIONS(8197), + [anon_sym___restrict__] = ACTIONS(8197), + [anon_sym__Atomic] = ACTIONS(8197), + [anon_sym__Noreturn] = ACTIONS(8197), + [anon_sym_noreturn] = ACTIONS(8197), + [anon_sym__Nonnull] = ACTIONS(8197), + [anon_sym_mutable] = ACTIONS(8197), + [anon_sym_constinit] = ACTIONS(8197), + [anon_sym_consteval] = ACTIONS(8197), + [anon_sym_alignas] = ACTIONS(8207), + [anon_sym__Alignas] = ACTIONS(8207), + [anon_sym_QMARK] = ACTIONS(7344), + [anon_sym_LT_EQ_GT] = ACTIONS(7344), + [anon_sym_or] = ACTIONS(7344), + [anon_sym_and] = ACTIONS(7344), + [anon_sym_bitor] = ACTIONS(7344), + [anon_sym_xor] = ACTIONS(7344), + [anon_sym_bitand] = ACTIONS(7344), + [anon_sym_not_eq] = ACTIONS(7344), + [anon_sym_DASH_DASH] = ACTIONS(7344), + [anon_sym_PLUS_PLUS] = ACTIONS(7344), + [anon_sym_asm] = ACTIONS(7344), + [anon_sym___asm__] = ACTIONS(7344), + [anon_sym___asm] = ACTIONS(7342), + [anon_sym_DOT] = ACTIONS(7342), + [anon_sym_DOT_STAR] = ACTIONS(7344), + [anon_sym_DASH_GT] = ACTIONS(7344), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7344), + [anon_sym_override] = ACTIONS(7344), + [anon_sym_GT2] = ACTIONS(7344), + [anon_sym_noexcept] = ACTIONS(7344), + [anon_sym_throw] = ACTIONS(7344), + [anon_sym_requires] = ACTIONS(7344), + }, + [STATE(4039)] = { + [sym_attribute_specifier] = STATE(4149), + [sym_identifier] = ACTIONS(7634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7636), + [anon_sym_COMMA] = ACTIONS(7636), + [anon_sym_RPAREN] = ACTIONS(7636), + [aux_sym_preproc_if_token2] = ACTIONS(7636), + [aux_sym_preproc_else_token1] = ACTIONS(7636), + [aux_sym_preproc_elif_token1] = ACTIONS(7634), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7636), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7636), + [anon_sym_LPAREN2] = ACTIONS(7636), + [anon_sym_DASH] = ACTIONS(7634), + [anon_sym_PLUS] = ACTIONS(7634), + [anon_sym_STAR] = ACTIONS(7634), + [anon_sym_SLASH] = ACTIONS(7634), + [anon_sym_PERCENT] = ACTIONS(7634), + [anon_sym_PIPE_PIPE] = ACTIONS(7636), + [anon_sym_AMP_AMP] = ACTIONS(7636), + [anon_sym_PIPE] = ACTIONS(7634), + [anon_sym_CARET] = ACTIONS(7634), + [anon_sym_AMP] = ACTIONS(7634), + [anon_sym_EQ_EQ] = ACTIONS(7636), + [anon_sym_BANG_EQ] = ACTIONS(7636), + [anon_sym_GT] = ACTIONS(7634), + [anon_sym_GT_EQ] = ACTIONS(7636), + [anon_sym_LT_EQ] = ACTIONS(7634), + [anon_sym_LT] = ACTIONS(7634), + [anon_sym_LT_LT] = ACTIONS(7634), + [anon_sym_GT_GT] = ACTIONS(7634), + [anon_sym_SEMI] = ACTIONS(7636), + [anon_sym___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [anon_sym_COLON] = ACTIONS(7634), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7636), + [anon_sym_LBRACE] = ACTIONS(7636), + [anon_sym_RBRACE] = ACTIONS(7636), + [anon_sym_LBRACK] = ACTIONS(7636), + [anon_sym_EQ] = ACTIONS(7634), + [anon_sym_QMARK] = ACTIONS(7636), + [anon_sym_STAR_EQ] = ACTIONS(7636), + [anon_sym_SLASH_EQ] = ACTIONS(7636), + [anon_sym_PERCENT_EQ] = ACTIONS(7636), + [anon_sym_PLUS_EQ] = ACTIONS(7636), + [anon_sym_DASH_EQ] = ACTIONS(7636), + [anon_sym_LT_LT_EQ] = ACTIONS(7636), + [anon_sym_GT_GT_EQ] = ACTIONS(7636), + [anon_sym_AMP_EQ] = ACTIONS(7636), + [anon_sym_CARET_EQ] = ACTIONS(7636), + [anon_sym_PIPE_EQ] = ACTIONS(7636), + [anon_sym_and_eq] = ACTIONS(7634), + [anon_sym_or_eq] = ACTIONS(7634), + [anon_sym_xor_eq] = ACTIONS(7634), + [anon_sym_LT_EQ_GT] = ACTIONS(7636), + [anon_sym_or] = ACTIONS(7634), + [anon_sym_and] = ACTIONS(7634), + [anon_sym_bitor] = ACTIONS(7634), + [anon_sym_xor] = ACTIONS(7634), + [anon_sym_bitand] = ACTIONS(7634), + [anon_sym_not_eq] = ACTIONS(7634), + [anon_sym_DASH_DASH] = ACTIONS(7636), + [anon_sym_PLUS_PLUS] = ACTIONS(7636), + [anon_sym_DOT] = ACTIONS(7634), + [anon_sym_DOT_STAR] = ACTIONS(7636), + [anon_sym_DASH_GT] = ACTIONS(7636), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7636), + }, + [STATE(4040)] = { + [sym_type_qualifier] = STATE(4040), + [sym_alignas_qualifier] = STATE(4428), + [aux_sym__type_definition_type_repeat1] = STATE(4040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7049), + [anon_sym_COMMA] = ACTIONS(7049), + [anon_sym_LPAREN2] = ACTIONS(7049), + [anon_sym_DASH] = ACTIONS(7047), + [anon_sym_PLUS] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(7049), + [anon_sym_SLASH] = ACTIONS(7047), + [anon_sym_PERCENT] = ACTIONS(7049), + [anon_sym_PIPE_PIPE] = ACTIONS(7049), + [anon_sym_AMP_AMP] = ACTIONS(7049), + [anon_sym_PIPE] = ACTIONS(7047), + [anon_sym_CARET] = ACTIONS(7049), + [anon_sym_AMP] = ACTIONS(7047), + [anon_sym_EQ_EQ] = ACTIONS(7049), + [anon_sym_BANG_EQ] = ACTIONS(7049), + [anon_sym_GT] = ACTIONS(7047), + [anon_sym_GT_EQ] = ACTIONS(7049), + [anon_sym_LT_EQ] = ACTIONS(7047), + [anon_sym_LT] = ACTIONS(7047), + [anon_sym_LT_LT] = ACTIONS(7049), + [anon_sym_GT_GT] = ACTIONS(7049), + [anon_sym___extension__] = ACTIONS(10028), + [anon_sym___attribute__] = ACTIONS(7049), + [anon_sym___attribute] = ACTIONS(7047), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7049), + [anon_sym_LBRACK] = ACTIONS(7047), + [anon_sym_RBRACK] = ACTIONS(7049), + [anon_sym_const] = ACTIONS(10031), + [anon_sym_constexpr] = ACTIONS(10028), + [anon_sym_volatile] = ACTIONS(10028), + [anon_sym_restrict] = ACTIONS(10028), + [anon_sym___restrict__] = ACTIONS(10028), + [anon_sym__Atomic] = ACTIONS(10028), + [anon_sym__Noreturn] = ACTIONS(10028), + [anon_sym_noreturn] = ACTIONS(10028), + [anon_sym__Nonnull] = ACTIONS(10028), + [anon_sym_mutable] = ACTIONS(10028), + [anon_sym_constinit] = ACTIONS(10028), + [anon_sym_consteval] = ACTIONS(10028), + [anon_sym_alignas] = ACTIONS(10034), + [anon_sym__Alignas] = ACTIONS(10034), + [anon_sym_QMARK] = ACTIONS(7049), + [anon_sym_LT_EQ_GT] = ACTIONS(7049), + [anon_sym_or] = ACTIONS(7049), + [anon_sym_and] = ACTIONS(7049), + [anon_sym_bitor] = ACTIONS(7049), + [anon_sym_xor] = ACTIONS(7049), + [anon_sym_bitand] = ACTIONS(7049), + [anon_sym_not_eq] = ACTIONS(7049), + [anon_sym_DASH_DASH] = ACTIONS(7049), + [anon_sym_PLUS_PLUS] = ACTIONS(7049), + [anon_sym_asm] = ACTIONS(7049), + [anon_sym___asm__] = ACTIONS(7049), + [anon_sym___asm] = ACTIONS(7047), + [anon_sym_DOT] = ACTIONS(7047), + [anon_sym_DOT_STAR] = ACTIONS(7049), + [anon_sym_DASH_GT] = ACTIONS(7049), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7049), + [anon_sym_override] = ACTIONS(7049), + [anon_sym_noexcept] = ACTIONS(7049), + [anon_sym_throw] = ACTIONS(7049), + [anon_sym_requires] = ACTIONS(7049), + }, + [STATE(4041)] = { + [sym_ms_based_modifier] = STATE(12068), + [sym__declarator] = STATE(9890), + [sym__abstract_declarator] = STATE(10195), + [sym_parenthesized_declarator] = STATE(9532), + [sym_abstract_parenthesized_declarator] = STATE(9556), + [sym_attributed_declarator] = STATE(9532), + [sym_pointer_declarator] = STATE(9532), + [sym_abstract_pointer_declarator] = STATE(9556), + [sym_function_declarator] = STATE(9532), + [sym_abstract_function_declarator] = STATE(9556), + [sym_array_declarator] = STATE(9532), + [sym_abstract_array_declarator] = STATE(9556), + [sym_type_qualifier] = STATE(7054), + [sym_alignas_qualifier] = STATE(7255), + [sym_parameter_list] = STATE(5887), + [sym_decltype] = STATE(13053), + [sym_reference_declarator] = STATE(9532), + [sym_abstract_reference_declarator] = STATE(9556), + [sym_structured_binding_declarator] = STATE(9532), + [sym__function_declarator_seq] = STATE(9576), + [sym_template_type] = STATE(13053), + [sym_template_function] = STATE(9532), + [sym_destructor_name] = STATE(9532), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(8812), + [sym_qualified_identifier] = STATE(9532), + [sym_abstract_qualified_identifier] = STATE(9556), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [sym_operator_name] = STATE(9532), + [aux_sym__type_definition_type_repeat1] = STATE(7054), + [sym_identifier] = ACTIONS(8774), + [anon_sym_COMMA] = ACTIONS(6600), + [anon_sym_LPAREN2] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(8876), + [anon_sym_AMP_AMP] = ACTIONS(8878), + [anon_sym_AMP] = ACTIONS(8880), + [anon_sym___extension__] = ACTIONS(8782), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(8882), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5655), + [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(8786), + [anon_sym__Alignas] = ACTIONS(8786), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_GT2] = ACTIONS(6600), + [anon_sym_operator] = ACTIONS(2286), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(4042)] = { + [sym_identifier] = ACTIONS(6824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6817), + [anon_sym_COMMA] = ACTIONS(6817), + [anon_sym_RPAREN] = ACTIONS(6817), + [aux_sym_preproc_if_token2] = ACTIONS(6817), + [aux_sym_preproc_else_token1] = ACTIONS(6817), + [aux_sym_preproc_elif_token1] = ACTIONS(6824), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6817), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6817), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6824), + [anon_sym_PLUS] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(6824), + [anon_sym_SLASH] = ACTIONS(6824), + [anon_sym_PERCENT] = ACTIONS(6824), + [anon_sym_PIPE_PIPE] = ACTIONS(6817), + [anon_sym_AMP_AMP] = ACTIONS(6817), + [anon_sym_PIPE] = ACTIONS(6824), + [anon_sym_CARET] = ACTIONS(6824), + [anon_sym_AMP] = ACTIONS(6824), + [anon_sym_EQ_EQ] = ACTIONS(6817), + [anon_sym_BANG_EQ] = ACTIONS(6817), + [anon_sym_GT] = ACTIONS(6824), + [anon_sym_GT_EQ] = ACTIONS(6817), + [anon_sym_LT_EQ] = ACTIONS(6824), + [anon_sym_LT] = ACTIONS(6824), + [anon_sym_LT_LT] = ACTIONS(6824), + [anon_sym_GT_GT] = ACTIONS(6824), + [anon_sym_SEMI] = ACTIONS(6817), + [anon_sym___attribute__] = ACTIONS(6824), + [anon_sym___attribute] = ACTIONS(6824), + [anon_sym_COLON] = ACTIONS(6824), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6817), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_RBRACE] = ACTIONS(6817), + [anon_sym_LBRACK] = ACTIONS(6817), + [anon_sym_EQ] = ACTIONS(6824), + [anon_sym_QMARK] = ACTIONS(6817), + [anon_sym_STAR_EQ] = ACTIONS(6817), + [anon_sym_SLASH_EQ] = ACTIONS(6817), + [anon_sym_PERCENT_EQ] = ACTIONS(6817), + [anon_sym_PLUS_EQ] = ACTIONS(6817), + [anon_sym_DASH_EQ] = ACTIONS(6817), + [anon_sym_LT_LT_EQ] = ACTIONS(6817), + [anon_sym_GT_GT_EQ] = ACTIONS(6817), + [anon_sym_AMP_EQ] = ACTIONS(6817), + [anon_sym_CARET_EQ] = ACTIONS(6817), + [anon_sym_PIPE_EQ] = ACTIONS(6817), + [anon_sym_and_eq] = ACTIONS(6824), + [anon_sym_or_eq] = ACTIONS(6824), + [anon_sym_xor_eq] = ACTIONS(6824), + [anon_sym_LT_EQ_GT] = ACTIONS(6817), + [anon_sym_or] = ACTIONS(6824), + [anon_sym_and] = ACTIONS(6824), + [anon_sym_bitor] = ACTIONS(6824), + [anon_sym_xor] = ACTIONS(6824), + [anon_sym_bitand] = ACTIONS(6824), + [anon_sym_not_eq] = ACTIONS(6824), + [anon_sym_DASH_DASH] = ACTIONS(6817), + [anon_sym_PLUS_PLUS] = ACTIONS(6817), + [anon_sym_DOT] = ACTIONS(6824), + [anon_sym_DOT_STAR] = ACTIONS(6817), + [anon_sym_DASH_GT] = ACTIONS(6817), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6817), + }, + [STATE(4043)] = { + [sym_attribute_specifier] = STATE(4111), + [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___attribute__] = ACTIONS(9240), + [anon_sym___attribute] = ACTIONS(9240), + [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_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_COLON_RBRACK] = ACTIONS(7678), + }, + [STATE(4044)] = { + [sym_string_literal] = STATE(4489), + [sym_template_argument_list] = STATE(6121), + [sym_raw_string_literal] = STATE(4489), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(9531), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_COLON] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(7283), + [anon_sym_QMARK] = ACTIONS(5663), + [anon_sym_STAR_EQ] = ACTIONS(7285), + [anon_sym_SLASH_EQ] = ACTIONS(7285), + [anon_sym_PERCENT_EQ] = ACTIONS(7285), + [anon_sym_PLUS_EQ] = ACTIONS(7285), + [anon_sym_DASH_EQ] = ACTIONS(7285), + [anon_sym_LT_LT_EQ] = ACTIONS(7285), + [anon_sym_GT_GT_EQ] = ACTIONS(7285), + [anon_sym_AMP_EQ] = ACTIONS(7285), + [anon_sym_CARET_EQ] = ACTIONS(7285), + [anon_sym_PIPE_EQ] = ACTIONS(7285), + [anon_sym_and_eq] = ACTIONS(7285), + [anon_sym_or_eq] = ACTIONS(7285), + [anon_sym_xor_eq] = ACTIONS(7285), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5663), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5663), + [anon_sym_not_eq] = ACTIONS(5663), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [anon_sym_L_DQUOTE] = ACTIONS(3912), + [anon_sym_u_DQUOTE] = ACTIONS(3912), + [anon_sym_U_DQUOTE] = ACTIONS(3912), + [anon_sym_u8_DQUOTE] = ACTIONS(3912), + [anon_sym_DQUOTE] = ACTIONS(3912), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3918), + [anon_sym_LR_DQUOTE] = ACTIONS(3918), + [anon_sym_uR_DQUOTE] = ACTIONS(3918), + [anon_sym_UR_DQUOTE] = ACTIONS(3918), + [anon_sym_u8R_DQUOTE] = ACTIONS(3918), + }, + [STATE(4045)] = { + [sym_template_argument_list] = STATE(4031), + [sym_identifier] = ACTIONS(10037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10039), + [anon_sym_COMMA] = ACTIONS(10039), + [anon_sym_RPAREN] = ACTIONS(10039), + [aux_sym_preproc_if_token2] = ACTIONS(10039), + [aux_sym_preproc_else_token1] = ACTIONS(10039), + [aux_sym_preproc_elif_token1] = ACTIONS(10037), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10039), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10039), + [anon_sym_LPAREN2] = ACTIONS(10039), + [anon_sym_DASH] = ACTIONS(10037), + [anon_sym_PLUS] = ACTIONS(10037), + [anon_sym_STAR] = ACTIONS(10037), + [anon_sym_SLASH] = ACTIONS(10037), + [anon_sym_PERCENT] = ACTIONS(10037), + [anon_sym_PIPE_PIPE] = ACTIONS(10039), + [anon_sym_AMP_AMP] = ACTIONS(10039), + [anon_sym_PIPE] = ACTIONS(10037), + [anon_sym_CARET] = ACTIONS(10037), + [anon_sym_AMP] = ACTIONS(10037), + [anon_sym_EQ_EQ] = ACTIONS(10039), + [anon_sym_BANG_EQ] = ACTIONS(10039), + [anon_sym_GT] = ACTIONS(10037), + [anon_sym_GT_EQ] = ACTIONS(10039), + [anon_sym_LT_EQ] = ACTIONS(10037), + [anon_sym_LT] = ACTIONS(10041), + [anon_sym_LT_LT] = ACTIONS(10037), + [anon_sym_GT_GT] = ACTIONS(10037), + [anon_sym_SEMI] = ACTIONS(10039), + [anon_sym___attribute__] = ACTIONS(10037), + [anon_sym___attribute] = ACTIONS(10037), + [anon_sym_COLON] = ACTIONS(10037), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10039), + [anon_sym_RBRACE] = ACTIONS(10039), + [anon_sym_LBRACK] = ACTIONS(10039), + [anon_sym_EQ] = ACTIONS(10037), + [anon_sym_QMARK] = ACTIONS(10039), + [anon_sym_STAR_EQ] = ACTIONS(10039), + [anon_sym_SLASH_EQ] = ACTIONS(10039), + [anon_sym_PERCENT_EQ] = ACTIONS(10039), + [anon_sym_PLUS_EQ] = ACTIONS(10039), + [anon_sym_DASH_EQ] = ACTIONS(10039), + [anon_sym_LT_LT_EQ] = ACTIONS(10039), + [anon_sym_GT_GT_EQ] = ACTIONS(10039), + [anon_sym_AMP_EQ] = ACTIONS(10039), + [anon_sym_CARET_EQ] = ACTIONS(10039), + [anon_sym_PIPE_EQ] = ACTIONS(10039), + [anon_sym_and_eq] = ACTIONS(10037), + [anon_sym_or_eq] = ACTIONS(10037), + [anon_sym_xor_eq] = ACTIONS(10037), + [anon_sym_LT_EQ_GT] = ACTIONS(10039), + [anon_sym_or] = ACTIONS(10037), + [anon_sym_and] = ACTIONS(10037), + [anon_sym_bitor] = ACTIONS(10037), + [anon_sym_xor] = ACTIONS(10037), + [anon_sym_bitand] = ACTIONS(10037), + [anon_sym_not_eq] = ACTIONS(10037), + [anon_sym_DASH_DASH] = ACTIONS(10039), + [anon_sym_PLUS_PLUS] = ACTIONS(10039), + [anon_sym_DOT] = ACTIONS(10037), + [anon_sym_DOT_STAR] = ACTIONS(10039), + [anon_sym_DASH_GT] = ACTIONS(10039), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10039), + }, + [STATE(4046)] = { + [sym_string_literal] = STATE(3990), + [sym_raw_string_literal] = STATE(3990), + [aux_sym_concatenated_string_repeat1] = STATE(3990), + [sym_identifier] = ACTIONS(10044), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8744), + [anon_sym_COMMA] = ACTIONS(8744), + [anon_sym_LPAREN2] = ACTIONS(8744), + [anon_sym_DASH] = ACTIONS(8746), + [anon_sym_PLUS] = ACTIONS(8746), + [anon_sym_STAR] = ACTIONS(8746), + [anon_sym_SLASH] = ACTIONS(8746), + [anon_sym_PERCENT] = ACTIONS(8746), + [anon_sym_PIPE_PIPE] = ACTIONS(8744), + [anon_sym_AMP_AMP] = ACTIONS(8744), + [anon_sym_PIPE] = ACTIONS(8746), + [anon_sym_CARET] = ACTIONS(8746), + [anon_sym_AMP] = ACTIONS(8746), + [anon_sym_EQ_EQ] = ACTIONS(8744), + [anon_sym_BANG_EQ] = ACTIONS(8744), + [anon_sym_GT] = ACTIONS(8746), + [anon_sym_GT_EQ] = ACTIONS(8744), + [anon_sym_LT_EQ] = ACTIONS(8746), + [anon_sym_LT] = ACTIONS(8746), + [anon_sym_LT_LT] = ACTIONS(8746), + [anon_sym_GT_GT] = ACTIONS(8746), + [anon_sym_LBRACK] = ACTIONS(8744), + [anon_sym_RBRACK] = ACTIONS(8744), + [anon_sym_EQ] = ACTIONS(8746), + [anon_sym_QMARK] = ACTIONS(8744), + [anon_sym_STAR_EQ] = ACTIONS(8744), + [anon_sym_SLASH_EQ] = ACTIONS(8744), + [anon_sym_PERCENT_EQ] = ACTIONS(8744), + [anon_sym_PLUS_EQ] = ACTIONS(8744), + [anon_sym_DASH_EQ] = ACTIONS(8744), + [anon_sym_LT_LT_EQ] = ACTIONS(8744), + [anon_sym_GT_GT_EQ] = ACTIONS(8744), + [anon_sym_AMP_EQ] = ACTIONS(8744), + [anon_sym_CARET_EQ] = ACTIONS(8744), + [anon_sym_PIPE_EQ] = ACTIONS(8744), + [anon_sym_and_eq] = ACTIONS(8746), + [anon_sym_or_eq] = ACTIONS(8746), + [anon_sym_xor_eq] = ACTIONS(8746), + [anon_sym_LT_EQ_GT] = ACTIONS(8744), + [anon_sym_or] = ACTIONS(8746), + [anon_sym_and] = ACTIONS(8746), + [anon_sym_bitor] = ACTIONS(8746), + [anon_sym_xor] = ACTIONS(8746), + [anon_sym_bitand] = ACTIONS(8746), + [anon_sym_not_eq] = ACTIONS(8746), + [anon_sym_DASH_DASH] = ACTIONS(8744), + [anon_sym_PLUS_PLUS] = ACTIONS(8744), + [anon_sym_DOT] = ACTIONS(8746), + [anon_sym_DOT_STAR] = ACTIONS(8744), + [anon_sym_DASH_GT] = ACTIONS(8744), + [anon_sym_L_DQUOTE] = ACTIONS(7245), + [anon_sym_u_DQUOTE] = ACTIONS(7245), + [anon_sym_U_DQUOTE] = ACTIONS(7245), + [anon_sym_u8_DQUOTE] = ACTIONS(7245), + [anon_sym_DQUOTE] = ACTIONS(7245), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7251), + [anon_sym_LR_DQUOTE] = ACTIONS(7251), + [anon_sym_uR_DQUOTE] = ACTIONS(7251), + [anon_sym_UR_DQUOTE] = ACTIONS(7251), + [anon_sym_u8R_DQUOTE] = ACTIONS(7251), + [sym_literal_suffix] = ACTIONS(8746), + }, + [STATE(4047)] = { + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6831), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6831), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6831), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6831), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6831), + [anon_sym_GT_GT] = ACTIONS(6831), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_RBRACK] = ACTIONS(6831), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), + }, + [STATE(4048)] = { + [sym_argument_list] = STATE(4188), + [sym_subscript_argument_list] = STATE(4199), + [sym_identifier] = ACTIONS(10046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10048), + [anon_sym_COMMA] = ACTIONS(10048), + [anon_sym_RPAREN] = ACTIONS(10048), + [aux_sym_preproc_if_token2] = ACTIONS(10048), + [aux_sym_preproc_else_token1] = ACTIONS(10048), + [aux_sym_preproc_elif_token1] = ACTIONS(10046), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10048), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(10046), + [anon_sym_PLUS] = ACTIONS(10046), + [anon_sym_STAR] = ACTIONS(10046), + [anon_sym_SLASH] = ACTIONS(10046), + [anon_sym_PERCENT] = ACTIONS(10046), + [anon_sym_PIPE_PIPE] = ACTIONS(10048), + [anon_sym_AMP_AMP] = ACTIONS(10048), + [anon_sym_PIPE] = ACTIONS(10046), + [anon_sym_CARET] = ACTIONS(10046), + [anon_sym_AMP] = ACTIONS(10046), + [anon_sym_EQ_EQ] = ACTIONS(10048), + [anon_sym_BANG_EQ] = ACTIONS(10048), + [anon_sym_GT] = ACTIONS(10046), + [anon_sym_GT_EQ] = ACTIONS(10048), + [anon_sym_LT_EQ] = ACTIONS(10046), + [anon_sym_LT] = ACTIONS(10046), + [anon_sym_LT_LT] = ACTIONS(10046), + [anon_sym_GT_GT] = ACTIONS(10046), + [anon_sym_SEMI] = ACTIONS(10048), + [anon_sym___attribute__] = ACTIONS(10046), + [anon_sym___attribute] = ACTIONS(10046), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10048), + [anon_sym_RBRACE] = ACTIONS(10048), + [anon_sym_LBRACK] = ACTIONS(10050), + [anon_sym_EQ] = ACTIONS(10046), + [anon_sym_QMARK] = ACTIONS(10048), + [anon_sym_STAR_EQ] = ACTIONS(10048), + [anon_sym_SLASH_EQ] = ACTIONS(10048), + [anon_sym_PERCENT_EQ] = ACTIONS(10048), + [anon_sym_PLUS_EQ] = ACTIONS(10048), + [anon_sym_DASH_EQ] = ACTIONS(10048), + [anon_sym_LT_LT_EQ] = ACTIONS(10048), + [anon_sym_GT_GT_EQ] = ACTIONS(10048), + [anon_sym_AMP_EQ] = ACTIONS(10048), + [anon_sym_CARET_EQ] = ACTIONS(10048), + [anon_sym_PIPE_EQ] = ACTIONS(10048), + [anon_sym_and_eq] = ACTIONS(10046), + [anon_sym_or_eq] = ACTIONS(10046), + [anon_sym_xor_eq] = ACTIONS(10046), + [anon_sym_LT_EQ_GT] = ACTIONS(10048), + [anon_sym_or] = ACTIONS(10046), + [anon_sym_and] = ACTIONS(10046), + [anon_sym_bitor] = ACTIONS(10046), + [anon_sym_xor] = ACTIONS(10046), + [anon_sym_bitand] = ACTIONS(10046), + [anon_sym_not_eq] = ACTIONS(10046), + [anon_sym_DASH_DASH] = ACTIONS(10048), + [anon_sym_PLUS_PLUS] = ACTIONS(10048), + [anon_sym_DOT] = ACTIONS(10052), + [anon_sym_DOT_STAR] = ACTIONS(10054), + [anon_sym_DASH_GT] = ACTIONS(10054), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10048), + }, + [STATE(4049)] = { + [sym_attribute_specifier] = STATE(4526), + [sym_enumerator_list] = STATE(4371), + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7423), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7423), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7421), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7423), + [anon_sym_GT_GT] = ACTIONS(7421), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(9570), + [anon_sym___attribute] = ACTIONS(9570), + [anon_sym_COLON_COLON] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(9875), + [anon_sym_LBRACK] = ACTIONS(7421), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7421), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_template] = ACTIONS(7421), + [anon_sym_GT2] = ACTIONS(7423), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_LBRACK_COLON] = ACTIONS(7423), + }, + [STATE(4050)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_else_token1] = ACTIONS(7720), + [aux_sym_preproc_elif_token1] = ACTIONS(7718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym_LBRACE] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7720), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), + }, + [STATE(4051)] = { + [sym_identifier] = ACTIONS(7735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_RPAREN] = ACTIONS(7737), + [aux_sym_preproc_if_token2] = ACTIONS(7737), + [aux_sym_preproc_else_token1] = ACTIONS(7737), + [aux_sym_preproc_elif_token1] = ACTIONS(7735), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7737), + [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(7737), + [anon_sym___attribute__] = ACTIONS(7735), + [anon_sym___attribute] = ACTIONS(7735), + [anon_sym_COLON] = ACTIONS(7735), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7737), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_RBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(7735), + [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(7735), + [anon_sym_or_eq] = ACTIONS(7735), + [anon_sym_xor_eq] = ACTIONS(7735), + [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_COLON_RBRACK] = ACTIONS(7737), + }, + [STATE(4052)] = { + [sym_identifier] = ACTIONS(8854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8849), + [anon_sym_COMMA] = ACTIONS(8849), + [anon_sym_RPAREN] = ACTIONS(8849), + [aux_sym_preproc_if_token2] = ACTIONS(8849), + [aux_sym_preproc_else_token1] = ACTIONS(8849), + [aux_sym_preproc_elif_token1] = ACTIONS(8854), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8849), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8849), + [anon_sym_LPAREN2] = ACTIONS(8849), + [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(8849), + [anon_sym_AMP_AMP] = ACTIONS(8849), + [anon_sym_PIPE] = ACTIONS(8854), + [anon_sym_CARET] = ACTIONS(8854), + [anon_sym_AMP] = ACTIONS(8854), + [anon_sym_EQ_EQ] = ACTIONS(8849), + [anon_sym_BANG_EQ] = ACTIONS(8849), + [anon_sym_GT] = ACTIONS(8854), + [anon_sym_GT_EQ] = ACTIONS(8849), + [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(8849), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym___attribute] = ACTIONS(8854), + [anon_sym_COLON] = ACTIONS(8854), + [anon_sym_COLON_COLON] = ACTIONS(8849), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8849), + [anon_sym_RBRACE] = ACTIONS(8849), + [anon_sym_LBRACK] = ACTIONS(8849), + [anon_sym_EQ] = ACTIONS(8854), + [anon_sym_QMARK] = ACTIONS(8849), + [anon_sym_STAR_EQ] = ACTIONS(8849), + [anon_sym_SLASH_EQ] = ACTIONS(8849), + [anon_sym_PERCENT_EQ] = ACTIONS(8849), + [anon_sym_PLUS_EQ] = ACTIONS(8849), + [anon_sym_DASH_EQ] = ACTIONS(8849), + [anon_sym_LT_LT_EQ] = ACTIONS(8849), + [anon_sym_GT_GT_EQ] = ACTIONS(8849), + [anon_sym_AMP_EQ] = ACTIONS(8849), + [anon_sym_CARET_EQ] = ACTIONS(8849), + [anon_sym_PIPE_EQ] = ACTIONS(8849), + [anon_sym_and_eq] = ACTIONS(8854), + [anon_sym_or_eq] = ACTIONS(8854), + [anon_sym_xor_eq] = ACTIONS(8854), + [anon_sym_LT_EQ_GT] = ACTIONS(8849), + [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(8849), + [anon_sym_PLUS_PLUS] = ACTIONS(8849), + [anon_sym_DOT] = ACTIONS(8854), + [anon_sym_DOT_STAR] = ACTIONS(8849), + [anon_sym_DASH_GT] = ACTIONS(8849), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8849), + }, + [STATE(4053)] = { + [sym_attribute_specifier] = STATE(4490), + [sym_enumerator_list] = STATE(4398), + [sym_identifier] = ACTIONS(7417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7419), + [anon_sym_COMMA] = ACTIONS(7419), + [anon_sym_LPAREN2] = ACTIONS(7419), + [anon_sym_DASH] = ACTIONS(7417), + [anon_sym_PLUS] = ACTIONS(7417), + [anon_sym_STAR] = ACTIONS(7419), + [anon_sym_SLASH] = ACTIONS(7417), + [anon_sym_PERCENT] = ACTIONS(7419), + [anon_sym_PIPE_PIPE] = ACTIONS(7419), + [anon_sym_AMP_AMP] = ACTIONS(7419), + [anon_sym_PIPE] = ACTIONS(7417), + [anon_sym_CARET] = ACTIONS(7419), + [anon_sym_AMP] = ACTIONS(7417), + [anon_sym_EQ_EQ] = ACTIONS(7419), + [anon_sym_BANG_EQ] = ACTIONS(7419), + [anon_sym_GT] = ACTIONS(7417), + [anon_sym_GT_EQ] = ACTIONS(7417), + [anon_sym_LT_EQ] = ACTIONS(7417), + [anon_sym_LT] = ACTIONS(7417), + [anon_sym_LT_LT] = ACTIONS(7419), + [anon_sym_GT_GT] = ACTIONS(7417), + [anon_sym___extension__] = ACTIONS(7417), + [anon_sym___attribute__] = ACTIONS(9570), + [anon_sym___attribute] = ACTIONS(9570), + [anon_sym_COLON_COLON] = ACTIONS(7419), + [anon_sym_LBRACE] = ACTIONS(9875), + [anon_sym_LBRACK] = ACTIONS(7417), + [anon_sym_const] = ACTIONS(7417), + [anon_sym_constexpr] = ACTIONS(7417), + [anon_sym_volatile] = ACTIONS(7417), + [anon_sym_restrict] = ACTIONS(7417), + [anon_sym___restrict__] = ACTIONS(7417), + [anon_sym__Atomic] = ACTIONS(7417), + [anon_sym__Noreturn] = ACTIONS(7417), + [anon_sym_noreturn] = ACTIONS(7417), + [anon_sym__Nonnull] = ACTIONS(7417), + [anon_sym_mutable] = ACTIONS(7417), + [anon_sym_constinit] = ACTIONS(7417), + [anon_sym_consteval] = ACTIONS(7417), + [anon_sym_alignas] = ACTIONS(7417), + [anon_sym__Alignas] = ACTIONS(7417), + [anon_sym_QMARK] = ACTIONS(7419), + [anon_sym_LT_EQ_GT] = ACTIONS(7419), + [anon_sym_or] = ACTIONS(7417), + [anon_sym_and] = ACTIONS(7417), + [anon_sym_bitor] = ACTIONS(7417), + [anon_sym_xor] = ACTIONS(7417), + [anon_sym_bitand] = ACTIONS(7417), + [anon_sym_not_eq] = ACTIONS(7417), + [anon_sym_DASH_DASH] = ACTIONS(7419), + [anon_sym_PLUS_PLUS] = ACTIONS(7419), + [anon_sym_DOT] = ACTIONS(7417), + [anon_sym_DOT_STAR] = ACTIONS(7419), + [anon_sym_DASH_GT] = ACTIONS(7419), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7417), + [anon_sym_final] = ACTIONS(7417), + [anon_sym_override] = ACTIONS(7417), + [anon_sym_template] = ACTIONS(7417), + [anon_sym_GT2] = ACTIONS(7419), + [anon_sym_requires] = ACTIONS(7417), + [anon_sym_LBRACK_COLON] = ACTIONS(7419), + }, + [STATE(4054)] = { + [sym_attribute_specifier] = STATE(4216), + [sym_identifier] = ACTIONS(7574), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7576), + [anon_sym_COMMA] = ACTIONS(7576), + [anon_sym_RPAREN] = ACTIONS(7576), + [anon_sym_LPAREN2] = ACTIONS(7576), + [anon_sym_TILDE] = ACTIONS(7576), + [anon_sym_STAR] = ACTIONS(7576), + [anon_sym_AMP_AMP] = ACTIONS(7576), + [anon_sym_AMP] = ACTIONS(7574), + [anon_sym_SEMI] = ACTIONS(7576), + [anon_sym___extension__] = ACTIONS(7574), + [anon_sym_virtual] = ACTIONS(7574), + [anon_sym_extern] = ACTIONS(7574), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7574), + [anon_sym_COLON_COLON] = ACTIONS(7576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7576), + [anon_sym___declspec] = ACTIONS(7574), + [anon_sym___based] = ACTIONS(7574), + [anon_sym___cdecl] = ACTIONS(7574), + [anon_sym___clrcall] = ACTIONS(7574), + [anon_sym___stdcall] = ACTIONS(7574), + [anon_sym___fastcall] = ACTIONS(7574), + [anon_sym___thiscall] = ACTIONS(7574), + [anon_sym___vectorcall] = ACTIONS(7574), + [anon_sym_LBRACE] = ACTIONS(7576), + [anon_sym_LBRACK] = ACTIONS(7574), + [anon_sym_static] = ACTIONS(7574), + [anon_sym_EQ] = ACTIONS(7576), + [anon_sym_register] = ACTIONS(7574), + [anon_sym_inline] = ACTIONS(7574), + [anon_sym___inline] = ACTIONS(7574), + [anon_sym___inline__] = ACTIONS(7574), + [anon_sym___forceinline] = ACTIONS(7574), + [anon_sym_thread_local] = ACTIONS(7574), + [anon_sym___thread] = ACTIONS(7574), + [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(7574), + [anon_sym__Alignas] = ACTIONS(7574), + [anon_sym_asm] = ACTIONS(7574), + [anon_sym___asm__] = ACTIONS(7574), + [anon_sym___asm] = ACTIONS(7574), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7574), + [anon_sym_final] = ACTIONS(7574), + [anon_sym_override] = ACTIONS(7574), + [anon_sym_template] = ACTIONS(7574), + [anon_sym_GT2] = ACTIONS(7576), + [anon_sym_operator] = ACTIONS(7574), + [anon_sym_try] = ACTIONS(7574), + [anon_sym_requires] = ACTIONS(7574), + [anon_sym_LBRACK_COLON] = ACTIONS(7576), + }, + [STATE(4055)] = { + [sym_attribute_specifier] = STATE(4055), + [aux_sym_type_definition_repeat1] = STATE(4055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7400), + [anon_sym_COMMA] = ACTIONS(7400), + [anon_sym_LPAREN2] = ACTIONS(7400), + [anon_sym_DASH] = ACTIONS(7398), + [anon_sym_PLUS] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7400), + [anon_sym_SLASH] = ACTIONS(7398), + [anon_sym_PERCENT] = ACTIONS(7400), + [anon_sym_PIPE_PIPE] = ACTIONS(7400), + [anon_sym_AMP_AMP] = ACTIONS(7400), + [anon_sym_PIPE] = ACTIONS(7398), + [anon_sym_CARET] = ACTIONS(7400), + [anon_sym_AMP] = ACTIONS(7398), + [anon_sym_EQ_EQ] = ACTIONS(7400), + [anon_sym_BANG_EQ] = ACTIONS(7400), + [anon_sym_GT] = ACTIONS(7398), + [anon_sym_GT_EQ] = ACTIONS(7400), + [anon_sym_LT_EQ] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(7398), + [anon_sym_LT_LT] = ACTIONS(7400), + [anon_sym_GT_GT] = ACTIONS(7400), + [anon_sym___extension__] = ACTIONS(7400), + [anon_sym___attribute__] = ACTIONS(10056), + [anon_sym___attribute] = ACTIONS(10059), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7400), + [anon_sym_LBRACK] = ACTIONS(7398), + [anon_sym_RBRACK] = ACTIONS(7400), + [anon_sym_const] = ACTIONS(7398), + [anon_sym_constexpr] = ACTIONS(7400), + [anon_sym_volatile] = ACTIONS(7400), + [anon_sym_restrict] = ACTIONS(7400), + [anon_sym___restrict__] = ACTIONS(7400), + [anon_sym__Atomic] = ACTIONS(7400), + [anon_sym__Noreturn] = ACTIONS(7400), + [anon_sym_noreturn] = ACTIONS(7400), + [anon_sym__Nonnull] = ACTIONS(7400), + [anon_sym_mutable] = ACTIONS(7400), + [anon_sym_constinit] = ACTIONS(7400), + [anon_sym_consteval] = ACTIONS(7400), + [anon_sym_alignas] = ACTIONS(7400), + [anon_sym__Alignas] = ACTIONS(7400), + [anon_sym_QMARK] = ACTIONS(7400), + [anon_sym_LT_EQ_GT] = ACTIONS(7400), + [anon_sym_or] = ACTIONS(7400), + [anon_sym_and] = ACTIONS(7400), + [anon_sym_bitor] = ACTIONS(7400), + [anon_sym_xor] = ACTIONS(7400), + [anon_sym_bitand] = ACTIONS(7400), + [anon_sym_not_eq] = ACTIONS(7400), + [anon_sym_DASH_DASH] = ACTIONS(7400), + [anon_sym_PLUS_PLUS] = ACTIONS(7400), + [anon_sym_asm] = ACTIONS(7400), + [anon_sym___asm__] = ACTIONS(7400), + [anon_sym___asm] = ACTIONS(7398), + [anon_sym_DOT] = ACTIONS(7398), + [anon_sym_DOT_STAR] = ACTIONS(7400), + [anon_sym_DASH_GT] = ACTIONS(7400), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7400), + [anon_sym_override] = ACTIONS(7400), + [anon_sym_noexcept] = ACTIONS(7400), + [anon_sym_throw] = ACTIONS(7400), + [anon_sym_requires] = ACTIONS(7400), + }, + [STATE(4056)] = { + [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___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_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), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7765), + }, + [STATE(4057)] = { + [sym_attribute_specifier] = STATE(4278), + [sym_identifier] = ACTIONS(7706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7708), + [anon_sym_COMMA] = ACTIONS(7708), + [anon_sym_RPAREN] = ACTIONS(7708), + [anon_sym_LPAREN2] = ACTIONS(7708), + [anon_sym_TILDE] = ACTIONS(7708), + [anon_sym_STAR] = ACTIONS(7708), + [anon_sym_AMP_AMP] = ACTIONS(7708), + [anon_sym_AMP] = ACTIONS(7706), + [anon_sym_SEMI] = ACTIONS(7708), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym_virtual] = ACTIONS(7706), + [anon_sym_extern] = ACTIONS(7706), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7706), + [anon_sym_COLON_COLON] = ACTIONS(7708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7708), + [anon_sym___declspec] = ACTIONS(7706), + [anon_sym___based] = ACTIONS(7706), + [anon_sym___cdecl] = ACTIONS(7706), + [anon_sym___clrcall] = ACTIONS(7706), + [anon_sym___stdcall] = ACTIONS(7706), + [anon_sym___fastcall] = ACTIONS(7706), + [anon_sym___thiscall] = ACTIONS(7706), + [anon_sym___vectorcall] = ACTIONS(7706), + [anon_sym_LBRACE] = ACTIONS(7708), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_static] = ACTIONS(7706), + [anon_sym_EQ] = ACTIONS(7708), + [anon_sym_register] = ACTIONS(7706), + [anon_sym_inline] = ACTIONS(7706), + [anon_sym___inline] = ACTIONS(7706), + [anon_sym___inline__] = ACTIONS(7706), + [anon_sym___forceinline] = ACTIONS(7706), + [anon_sym_thread_local] = ACTIONS(7706), + [anon_sym___thread] = ACTIONS(7706), + [anon_sym_const] = ACTIONS(7706), + [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_asm] = ACTIONS(7706), + [anon_sym___asm__] = ACTIONS(7706), + [anon_sym___asm] = ACTIONS(7706), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7706), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_template] = ACTIONS(7706), + [anon_sym_GT2] = ACTIONS(7708), + [anon_sym_operator] = ACTIONS(7706), + [anon_sym_try] = ACTIONS(7706), + [anon_sym_requires] = ACTIONS(7706), + [anon_sym_LBRACK_COLON] = ACTIONS(7708), + }, + [STATE(4058)] = { + [sym_identifier] = ACTIONS(10062), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10064), + [anon_sym_COMMA] = ACTIONS(10064), + [anon_sym_RPAREN] = ACTIONS(10064), + [aux_sym_preproc_if_token2] = ACTIONS(10064), + [aux_sym_preproc_else_token1] = ACTIONS(10064), + [aux_sym_preproc_elif_token1] = ACTIONS(10062), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10064), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10064), + [anon_sym_LPAREN2] = ACTIONS(10064), + [anon_sym_DASH] = ACTIONS(10062), + [anon_sym_PLUS] = ACTIONS(10062), + [anon_sym_STAR] = ACTIONS(10062), + [anon_sym_SLASH] = ACTIONS(10062), + [anon_sym_PERCENT] = ACTIONS(10062), + [anon_sym_PIPE_PIPE] = ACTIONS(10064), + [anon_sym_AMP_AMP] = ACTIONS(10064), + [anon_sym_PIPE] = ACTIONS(10062), + [anon_sym_CARET] = ACTIONS(10062), + [anon_sym_AMP] = ACTIONS(10062), + [anon_sym_EQ_EQ] = ACTIONS(10064), + [anon_sym_BANG_EQ] = ACTIONS(10064), + [anon_sym_GT] = ACTIONS(10062), + [anon_sym_GT_EQ] = ACTIONS(10064), + [anon_sym_LT_EQ] = ACTIONS(10062), + [anon_sym_LT] = ACTIONS(10062), + [anon_sym_LT_LT] = ACTIONS(10062), + [anon_sym_GT_GT] = ACTIONS(10062), + [anon_sym_SEMI] = ACTIONS(10064), + [anon_sym___attribute__] = ACTIONS(10062), + [anon_sym___attribute] = ACTIONS(10062), + [anon_sym_COLON] = ACTIONS(10062), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10064), + [anon_sym_RBRACE] = ACTIONS(10064), + [anon_sym_LBRACK] = ACTIONS(10064), + [anon_sym_EQ] = ACTIONS(10062), + [anon_sym_QMARK] = ACTIONS(10064), + [anon_sym_STAR_EQ] = ACTIONS(10064), + [anon_sym_SLASH_EQ] = ACTIONS(10064), + [anon_sym_PERCENT_EQ] = ACTIONS(10064), + [anon_sym_PLUS_EQ] = ACTIONS(10064), + [anon_sym_DASH_EQ] = ACTIONS(10064), + [anon_sym_LT_LT_EQ] = ACTIONS(10064), + [anon_sym_GT_GT_EQ] = ACTIONS(10064), + [anon_sym_AMP_EQ] = ACTIONS(10064), + [anon_sym_CARET_EQ] = ACTIONS(10064), + [anon_sym_PIPE_EQ] = ACTIONS(10064), + [anon_sym_and_eq] = ACTIONS(10062), + [anon_sym_or_eq] = ACTIONS(10062), + [anon_sym_xor_eq] = ACTIONS(10062), + [anon_sym_LT_EQ_GT] = ACTIONS(10064), + [anon_sym_or] = ACTIONS(10062), + [anon_sym_and] = ACTIONS(10062), + [anon_sym_bitor] = ACTIONS(10062), + [anon_sym_xor] = ACTIONS(10062), + [anon_sym_bitand] = ACTIONS(10062), + [anon_sym_not_eq] = ACTIONS(10062), + [anon_sym_DASH_DASH] = ACTIONS(10064), + [anon_sym_PLUS_PLUS] = ACTIONS(10064), + [anon_sym_DOT] = ACTIONS(10062), + [anon_sym_DOT_STAR] = ACTIONS(10064), + [anon_sym_DASH_GT] = ACTIONS(10064), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10064), + }, + [STATE(4059)] = { + [sym_argument_list] = STATE(4188), + [sym_subscript_argument_list] = STATE(4199), + [sym_identifier] = ACTIONS(10066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10068), + [anon_sym_COMMA] = ACTIONS(10068), + [anon_sym_RPAREN] = ACTIONS(10068), + [aux_sym_preproc_if_token2] = ACTIONS(10068), + [aux_sym_preproc_else_token1] = ACTIONS(10068), + [aux_sym_preproc_elif_token1] = ACTIONS(10066), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10068), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10068), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(10066), + [anon_sym_PLUS] = ACTIONS(10066), + [anon_sym_STAR] = ACTIONS(10066), + [anon_sym_SLASH] = ACTIONS(10066), + [anon_sym_PERCENT] = ACTIONS(10066), + [anon_sym_PIPE_PIPE] = ACTIONS(10068), + [anon_sym_AMP_AMP] = ACTIONS(10068), + [anon_sym_PIPE] = ACTIONS(10066), + [anon_sym_CARET] = ACTIONS(10066), + [anon_sym_AMP] = ACTIONS(10066), + [anon_sym_EQ_EQ] = ACTIONS(10068), + [anon_sym_BANG_EQ] = ACTIONS(10068), + [anon_sym_GT] = ACTIONS(10066), + [anon_sym_GT_EQ] = ACTIONS(10068), + [anon_sym_LT_EQ] = ACTIONS(10066), + [anon_sym_LT] = ACTIONS(10066), + [anon_sym_LT_LT] = ACTIONS(10066), + [anon_sym_GT_GT] = ACTIONS(10066), + [anon_sym_SEMI] = ACTIONS(10068), + [anon_sym___attribute__] = ACTIONS(10066), + [anon_sym___attribute] = ACTIONS(10066), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10068), + [anon_sym_RBRACE] = ACTIONS(10068), + [anon_sym_LBRACK] = ACTIONS(10050), + [anon_sym_EQ] = ACTIONS(10066), + [anon_sym_QMARK] = ACTIONS(10068), + [anon_sym_STAR_EQ] = ACTIONS(10068), + [anon_sym_SLASH_EQ] = ACTIONS(10068), + [anon_sym_PERCENT_EQ] = ACTIONS(10068), + [anon_sym_PLUS_EQ] = ACTIONS(10068), + [anon_sym_DASH_EQ] = ACTIONS(10068), + [anon_sym_LT_LT_EQ] = ACTIONS(10068), + [anon_sym_GT_GT_EQ] = ACTIONS(10068), + [anon_sym_AMP_EQ] = ACTIONS(10068), + [anon_sym_CARET_EQ] = ACTIONS(10068), + [anon_sym_PIPE_EQ] = ACTIONS(10068), + [anon_sym_and_eq] = ACTIONS(10066), + [anon_sym_or_eq] = ACTIONS(10066), + [anon_sym_xor_eq] = ACTIONS(10066), + [anon_sym_LT_EQ_GT] = ACTIONS(10068), + [anon_sym_or] = ACTIONS(10066), + [anon_sym_and] = ACTIONS(10066), + [anon_sym_bitor] = ACTIONS(10066), + [anon_sym_xor] = ACTIONS(10066), + [anon_sym_bitand] = ACTIONS(10066), + [anon_sym_not_eq] = ACTIONS(10066), + [anon_sym_DASH_DASH] = ACTIONS(10070), + [anon_sym_PLUS_PLUS] = ACTIONS(10070), + [anon_sym_DOT] = ACTIONS(10052), + [anon_sym_DOT_STAR] = ACTIONS(10054), + [anon_sym_DASH_GT] = ACTIONS(10054), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10068), + }, + [STATE(4060)] = { + [sym_template_argument_list] = STATE(4159), + [sym_identifier] = ACTIONS(7543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5689), + [anon_sym_COMMA] = ACTIONS(5689), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(7543), + [anon_sym_PLUS] = ACTIONS(7543), + [anon_sym_STAR] = ACTIONS(5689), + [anon_sym_SLASH] = ACTIONS(7543), + [anon_sym_PERCENT] = ACTIONS(5689), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_PIPE] = ACTIONS(7543), + [anon_sym_CARET] = ACTIONS(5689), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_GT] = ACTIONS(7543), + [anon_sym_GT_EQ] = ACTIONS(7543), + [anon_sym_LT_EQ] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(9692), + [anon_sym_LT_LT] = ACTIONS(5689), + [anon_sym_GT_GT] = ACTIONS(7543), + [anon_sym___extension__] = ACTIONS(7543), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_const] = ACTIONS(7543), + [anon_sym_constexpr] = ACTIONS(7543), + [anon_sym_volatile] = ACTIONS(7543), + [anon_sym_restrict] = ACTIONS(7543), + [anon_sym___restrict__] = ACTIONS(7543), + [anon_sym__Atomic] = ACTIONS(7543), + [anon_sym__Noreturn] = ACTIONS(7543), + [anon_sym_noreturn] = ACTIONS(7543), + [anon_sym__Nonnull] = ACTIONS(7543), + [anon_sym_mutable] = ACTIONS(7543), + [anon_sym_constinit] = ACTIONS(7543), + [anon_sym_consteval] = ACTIONS(7543), + [anon_sym_alignas] = ACTIONS(7543), + [anon_sym__Alignas] = ACTIONS(7543), + [anon_sym_QMARK] = ACTIONS(5689), + [anon_sym_LT_EQ_GT] = ACTIONS(5689), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_bitor] = ACTIONS(7543), + [anon_sym_xor] = ACTIONS(7543), + [anon_sym_bitand] = ACTIONS(7543), + [anon_sym_not_eq] = ACTIONS(7543), + [anon_sym_DASH_DASH] = ACTIONS(5689), + [anon_sym_PLUS_PLUS] = ACTIONS(5689), + [anon_sym_DOT] = ACTIONS(7543), + [anon_sym_DOT_STAR] = ACTIONS(5689), + [anon_sym_DASH_GT] = ACTIONS(5689), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7543), + [anon_sym_final] = ACTIONS(7543), + [anon_sym_override] = ACTIONS(7543), + [anon_sym_template] = ACTIONS(7543), + [anon_sym_GT2] = ACTIONS(5689), + [anon_sym_requires] = ACTIONS(7543), + [anon_sym_LBRACK_COLON] = ACTIONS(5689), + }, + [STATE(4061)] = { + [sym_type_qualifier] = STATE(4224), + [sym_alignas_qualifier] = STATE(4634), + [aux_sym__type_definition_type_repeat1] = STATE(4224), + [aux_sym_sized_type_specifier_repeat1] = STATE(7030), + [sym_identifier] = ACTIONS(10072), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7023), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7023), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7023), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7025), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7023), + [anon_sym_GT_GT] = ACTIONS(7025), + [anon_sym___extension__] = ACTIONS(10074), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(10076), + [anon_sym_unsigned] = ACTIONS(10076), + [anon_sym_long] = ACTIONS(10076), + [anon_sym_short] = ACTIONS(10076), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym_const] = ACTIONS(10074), + [anon_sym_constexpr] = ACTIONS(10074), + [anon_sym_volatile] = ACTIONS(10074), + [anon_sym_restrict] = ACTIONS(10074), + [anon_sym___restrict__] = ACTIONS(10074), + [anon_sym__Atomic] = ACTIONS(10074), + [anon_sym__Noreturn] = ACTIONS(10074), + [anon_sym_noreturn] = ACTIONS(10074), + [anon_sym__Nonnull] = ACTIONS(10074), + [anon_sym_mutable] = ACTIONS(10074), + [anon_sym_constinit] = ACTIONS(10074), + [anon_sym_consteval] = ACTIONS(10074), + [anon_sym_alignas] = ACTIONS(10078), + [anon_sym__Alignas] = ACTIONS(10078), + [sym_primitive_type] = ACTIONS(10080), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7023), + }, + [STATE(4062)] = { + [sym_argument_list] = STATE(4188), + [sym_subscript_argument_list] = STATE(4199), + [sym_identifier] = ACTIONS(10082), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10084), + [anon_sym_COMMA] = ACTIONS(10084), + [anon_sym_RPAREN] = ACTIONS(10084), + [aux_sym_preproc_if_token2] = ACTIONS(10084), + [aux_sym_preproc_else_token1] = ACTIONS(10084), + [aux_sym_preproc_elif_token1] = ACTIONS(10082), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10084), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10084), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(10082), + [anon_sym_PLUS] = ACTIONS(10082), + [anon_sym_STAR] = ACTIONS(10082), + [anon_sym_SLASH] = ACTIONS(10082), + [anon_sym_PERCENT] = ACTIONS(10082), + [anon_sym_PIPE_PIPE] = ACTIONS(10084), + [anon_sym_AMP_AMP] = ACTIONS(10084), + [anon_sym_PIPE] = ACTIONS(10082), + [anon_sym_CARET] = ACTIONS(10082), + [anon_sym_AMP] = ACTIONS(10082), + [anon_sym_EQ_EQ] = ACTIONS(10084), + [anon_sym_BANG_EQ] = ACTIONS(10084), + [anon_sym_GT] = ACTIONS(10082), + [anon_sym_GT_EQ] = ACTIONS(10084), + [anon_sym_LT_EQ] = ACTIONS(10082), + [anon_sym_LT] = ACTIONS(10082), + [anon_sym_LT_LT] = ACTIONS(10082), + [anon_sym_GT_GT] = ACTIONS(10082), + [anon_sym_SEMI] = ACTIONS(10084), + [anon_sym___attribute__] = ACTIONS(10082), + [anon_sym___attribute] = ACTIONS(10082), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10084), + [anon_sym_RBRACE] = ACTIONS(10084), + [anon_sym_LBRACK] = ACTIONS(10050), + [anon_sym_EQ] = ACTIONS(10082), + [anon_sym_QMARK] = ACTIONS(10084), + [anon_sym_STAR_EQ] = ACTIONS(10084), + [anon_sym_SLASH_EQ] = ACTIONS(10084), + [anon_sym_PERCENT_EQ] = ACTIONS(10084), + [anon_sym_PLUS_EQ] = ACTIONS(10084), + [anon_sym_DASH_EQ] = ACTIONS(10084), + [anon_sym_LT_LT_EQ] = ACTIONS(10084), + [anon_sym_GT_GT_EQ] = ACTIONS(10084), + [anon_sym_AMP_EQ] = ACTIONS(10084), + [anon_sym_CARET_EQ] = ACTIONS(10084), + [anon_sym_PIPE_EQ] = ACTIONS(10084), + [anon_sym_and_eq] = ACTIONS(10082), + [anon_sym_or_eq] = ACTIONS(10082), + [anon_sym_xor_eq] = ACTIONS(10082), + [anon_sym_LT_EQ_GT] = ACTIONS(10084), + [anon_sym_or] = ACTIONS(10082), + [anon_sym_and] = ACTIONS(10082), + [anon_sym_bitor] = ACTIONS(10082), + [anon_sym_xor] = ACTIONS(10082), + [anon_sym_bitand] = ACTIONS(10082), + [anon_sym_not_eq] = ACTIONS(10082), + [anon_sym_DASH_DASH] = ACTIONS(10070), + [anon_sym_PLUS_PLUS] = ACTIONS(10070), + [anon_sym_DOT] = ACTIONS(10052), + [anon_sym_DOT_STAR] = ACTIONS(10054), + [anon_sym_DASH_GT] = ACTIONS(10054), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10084), + }, + [STATE(4063)] = { + [sym_argument_list] = STATE(4188), + [sym_subscript_argument_list] = STATE(4199), + [sym_identifier] = ACTIONS(10086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10088), + [anon_sym_COMMA] = ACTIONS(10088), + [anon_sym_RPAREN] = ACTIONS(10088), + [aux_sym_preproc_if_token2] = ACTIONS(10088), + [aux_sym_preproc_else_token1] = ACTIONS(10088), + [aux_sym_preproc_elif_token1] = ACTIONS(10086), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10088), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10088), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(10086), + [anon_sym_PLUS] = ACTIONS(10086), + [anon_sym_STAR] = ACTIONS(10086), + [anon_sym_SLASH] = ACTIONS(10086), + [anon_sym_PERCENT] = ACTIONS(10086), + [anon_sym_PIPE_PIPE] = ACTIONS(10088), + [anon_sym_AMP_AMP] = ACTIONS(10088), + [anon_sym_PIPE] = ACTIONS(10086), + [anon_sym_CARET] = ACTIONS(10086), + [anon_sym_AMP] = ACTIONS(10086), + [anon_sym_EQ_EQ] = ACTIONS(10088), + [anon_sym_BANG_EQ] = ACTIONS(10088), + [anon_sym_GT] = ACTIONS(10086), + [anon_sym_GT_EQ] = ACTIONS(10088), + [anon_sym_LT_EQ] = ACTIONS(10086), + [anon_sym_LT] = ACTIONS(10086), + [anon_sym_LT_LT] = ACTIONS(10086), + [anon_sym_GT_GT] = ACTIONS(10086), + [anon_sym_SEMI] = ACTIONS(10088), + [anon_sym___attribute__] = ACTIONS(10086), + [anon_sym___attribute] = ACTIONS(10086), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10088), + [anon_sym_RBRACE] = ACTIONS(10088), + [anon_sym_LBRACK] = ACTIONS(10050), + [anon_sym_EQ] = ACTIONS(10086), + [anon_sym_QMARK] = ACTIONS(10088), + [anon_sym_STAR_EQ] = ACTIONS(10088), + [anon_sym_SLASH_EQ] = ACTIONS(10088), + [anon_sym_PERCENT_EQ] = ACTIONS(10088), + [anon_sym_PLUS_EQ] = ACTIONS(10088), + [anon_sym_DASH_EQ] = ACTIONS(10088), + [anon_sym_LT_LT_EQ] = ACTIONS(10088), + [anon_sym_GT_GT_EQ] = ACTIONS(10088), + [anon_sym_AMP_EQ] = ACTIONS(10088), + [anon_sym_CARET_EQ] = ACTIONS(10088), + [anon_sym_PIPE_EQ] = ACTIONS(10088), + [anon_sym_and_eq] = ACTIONS(10086), + [anon_sym_or_eq] = ACTIONS(10086), + [anon_sym_xor_eq] = ACTIONS(10086), + [anon_sym_LT_EQ_GT] = ACTIONS(10088), + [anon_sym_or] = ACTIONS(10086), + [anon_sym_and] = ACTIONS(10086), + [anon_sym_bitor] = ACTIONS(10086), + [anon_sym_xor] = ACTIONS(10086), + [anon_sym_bitand] = ACTIONS(10086), + [anon_sym_not_eq] = ACTIONS(10086), + [anon_sym_DASH_DASH] = ACTIONS(10070), + [anon_sym_PLUS_PLUS] = ACTIONS(10070), + [anon_sym_DOT] = ACTIONS(10052), + [anon_sym_DOT_STAR] = ACTIONS(10054), + [anon_sym_DASH_GT] = ACTIONS(10054), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10088), + }, + [STATE(4064)] = { + [sym_identifier] = ACTIONS(10090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10092), + [anon_sym_COMMA] = ACTIONS(10092), + [anon_sym_RPAREN] = ACTIONS(10092), + [aux_sym_preproc_if_token2] = ACTIONS(10092), + [aux_sym_preproc_else_token1] = ACTIONS(10092), + [aux_sym_preproc_elif_token1] = ACTIONS(10090), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10092), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10092), + [anon_sym_LPAREN2] = ACTIONS(10092), + [anon_sym_DASH] = ACTIONS(10090), + [anon_sym_PLUS] = ACTIONS(10090), + [anon_sym_STAR] = ACTIONS(10090), + [anon_sym_SLASH] = ACTIONS(10090), + [anon_sym_PERCENT] = ACTIONS(10090), + [anon_sym_PIPE_PIPE] = ACTIONS(10092), + [anon_sym_AMP_AMP] = ACTIONS(10092), + [anon_sym_PIPE] = ACTIONS(10090), + [anon_sym_CARET] = ACTIONS(10090), + [anon_sym_AMP] = ACTIONS(10090), + [anon_sym_EQ_EQ] = ACTIONS(10092), + [anon_sym_BANG_EQ] = ACTIONS(10092), + [anon_sym_GT] = ACTIONS(10090), + [anon_sym_GT_EQ] = ACTIONS(10092), + [anon_sym_LT_EQ] = ACTIONS(10090), + [anon_sym_LT] = ACTIONS(10090), + [anon_sym_LT_LT] = ACTIONS(10090), + [anon_sym_GT_GT] = ACTIONS(10090), + [anon_sym_SEMI] = ACTIONS(10092), + [anon_sym___attribute__] = ACTIONS(10090), + [anon_sym___attribute] = ACTIONS(10090), + [anon_sym_COLON] = ACTIONS(10090), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10092), + [anon_sym_LBRACE] = ACTIONS(10092), + [anon_sym_RBRACE] = ACTIONS(10092), + [anon_sym_LBRACK] = ACTIONS(10092), + [anon_sym_EQ] = ACTIONS(10090), + [anon_sym_QMARK] = ACTIONS(10092), + [anon_sym_STAR_EQ] = ACTIONS(10092), + [anon_sym_SLASH_EQ] = ACTIONS(10092), + [anon_sym_PERCENT_EQ] = ACTIONS(10092), + [anon_sym_PLUS_EQ] = ACTIONS(10092), + [anon_sym_DASH_EQ] = ACTIONS(10092), + [anon_sym_LT_LT_EQ] = ACTIONS(10092), + [anon_sym_GT_GT_EQ] = ACTIONS(10092), + [anon_sym_AMP_EQ] = ACTIONS(10092), + [anon_sym_CARET_EQ] = ACTIONS(10092), + [anon_sym_PIPE_EQ] = ACTIONS(10092), + [anon_sym_and_eq] = ACTIONS(10090), + [anon_sym_or_eq] = ACTIONS(10090), + [anon_sym_xor_eq] = ACTIONS(10090), + [anon_sym_LT_EQ_GT] = ACTIONS(10092), + [anon_sym_or] = ACTIONS(10090), + [anon_sym_and] = ACTIONS(10090), + [anon_sym_bitor] = ACTIONS(10090), + [anon_sym_xor] = ACTIONS(10090), + [anon_sym_bitand] = ACTIONS(10090), + [anon_sym_not_eq] = ACTIONS(10090), + [anon_sym_DASH_DASH] = ACTIONS(10092), + [anon_sym_PLUS_PLUS] = ACTIONS(10092), + [anon_sym_DOT] = ACTIONS(10090), + [anon_sym_DOT_STAR] = ACTIONS(10092), + [anon_sym_DASH_GT] = ACTIONS(10092), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10092), + }, + [STATE(4065)] = { + [sym_template_argument_list] = STATE(4042), + [sym_identifier] = ACTIONS(10094), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10096), + [anon_sym_COMMA] = ACTIONS(10096), + [anon_sym_RPAREN] = ACTIONS(10096), + [aux_sym_preproc_if_token2] = ACTIONS(10096), + [aux_sym_preproc_else_token1] = ACTIONS(10096), + [aux_sym_preproc_elif_token1] = ACTIONS(10094), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10096), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10096), + [anon_sym_LPAREN2] = ACTIONS(10096), + [anon_sym_DASH] = ACTIONS(10094), + [anon_sym_PLUS] = ACTIONS(10094), + [anon_sym_STAR] = ACTIONS(10094), + [anon_sym_SLASH] = ACTIONS(10094), + [anon_sym_PERCENT] = ACTIONS(10094), + [anon_sym_PIPE_PIPE] = ACTIONS(10096), + [anon_sym_AMP_AMP] = ACTIONS(10096), + [anon_sym_PIPE] = ACTIONS(10094), + [anon_sym_CARET] = ACTIONS(10094), + [anon_sym_AMP] = ACTIONS(10094), + [anon_sym_EQ_EQ] = ACTIONS(10096), + [anon_sym_BANG_EQ] = ACTIONS(10096), + [anon_sym_GT] = ACTIONS(10094), + [anon_sym_GT_EQ] = ACTIONS(10096), + [anon_sym_LT_EQ] = ACTIONS(10094), + [anon_sym_LT] = ACTIONS(10098), + [anon_sym_LT_LT] = ACTIONS(10094), + [anon_sym_GT_GT] = ACTIONS(10094), + [anon_sym_SEMI] = ACTIONS(10096), + [anon_sym___attribute__] = ACTIONS(10094), + [anon_sym___attribute] = ACTIONS(10094), + [anon_sym_COLON] = ACTIONS(10094), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10096), + [anon_sym_RBRACE] = ACTIONS(10096), + [anon_sym_LBRACK] = ACTIONS(10096), + [anon_sym_EQ] = ACTIONS(10094), + [anon_sym_QMARK] = ACTIONS(10096), + [anon_sym_STAR_EQ] = ACTIONS(10096), + [anon_sym_SLASH_EQ] = ACTIONS(10096), + [anon_sym_PERCENT_EQ] = ACTIONS(10096), + [anon_sym_PLUS_EQ] = ACTIONS(10096), + [anon_sym_DASH_EQ] = ACTIONS(10096), + [anon_sym_LT_LT_EQ] = ACTIONS(10096), + [anon_sym_GT_GT_EQ] = ACTIONS(10096), + [anon_sym_AMP_EQ] = ACTIONS(10096), + [anon_sym_CARET_EQ] = ACTIONS(10096), + [anon_sym_PIPE_EQ] = ACTIONS(10096), + [anon_sym_and_eq] = ACTIONS(10094), + [anon_sym_or_eq] = ACTIONS(10094), + [anon_sym_xor_eq] = ACTIONS(10094), + [anon_sym_LT_EQ_GT] = ACTIONS(10096), + [anon_sym_or] = ACTIONS(10094), + [anon_sym_and] = ACTIONS(10094), + [anon_sym_bitor] = ACTIONS(10094), + [anon_sym_xor] = ACTIONS(10094), + [anon_sym_bitand] = ACTIONS(10094), + [anon_sym_not_eq] = ACTIONS(10094), + [anon_sym_DASH_DASH] = ACTIONS(10096), + [anon_sym_PLUS_PLUS] = ACTIONS(10096), + [anon_sym_DOT] = ACTIONS(10094), + [anon_sym_DOT_STAR] = ACTIONS(10096), + [anon_sym_DASH_GT] = ACTIONS(10096), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10096), + }, + [STATE(4066)] = { + [sym_identifier] = ACTIONS(10090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10092), + [anon_sym_COMMA] = ACTIONS(10092), + [anon_sym_RPAREN] = ACTIONS(10092), + [aux_sym_preproc_if_token2] = ACTIONS(10092), + [aux_sym_preproc_else_token1] = ACTIONS(10092), + [aux_sym_preproc_elif_token1] = ACTIONS(10090), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10092), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10092), + [anon_sym_LPAREN2] = ACTIONS(10092), + [anon_sym_DASH] = ACTIONS(10090), + [anon_sym_PLUS] = ACTIONS(10090), + [anon_sym_STAR] = ACTIONS(10090), + [anon_sym_SLASH] = ACTIONS(10090), + [anon_sym_PERCENT] = ACTIONS(10090), + [anon_sym_PIPE_PIPE] = ACTIONS(10092), + [anon_sym_AMP_AMP] = ACTIONS(10092), + [anon_sym_PIPE] = ACTIONS(10090), + [anon_sym_CARET] = ACTIONS(10090), + [anon_sym_AMP] = ACTIONS(10090), + [anon_sym_EQ_EQ] = ACTIONS(10092), + [anon_sym_BANG_EQ] = ACTIONS(10092), + [anon_sym_GT] = ACTIONS(10090), + [anon_sym_GT_EQ] = ACTIONS(10092), + [anon_sym_LT_EQ] = ACTIONS(10090), + [anon_sym_LT] = ACTIONS(10090), + [anon_sym_LT_LT] = ACTIONS(10090), + [anon_sym_GT_GT] = ACTIONS(10090), + [anon_sym_SEMI] = ACTIONS(10092), + [anon_sym___attribute__] = ACTIONS(10090), + [anon_sym___attribute] = ACTIONS(10090), + [anon_sym_COLON] = ACTIONS(10090), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10092), + [anon_sym_LBRACE] = ACTIONS(10092), + [anon_sym_RBRACE] = ACTIONS(10092), + [anon_sym_LBRACK] = ACTIONS(10092), + [anon_sym_EQ] = ACTIONS(10090), + [anon_sym_QMARK] = ACTIONS(10092), + [anon_sym_STAR_EQ] = ACTIONS(10092), + [anon_sym_SLASH_EQ] = ACTIONS(10092), + [anon_sym_PERCENT_EQ] = ACTIONS(10092), + [anon_sym_PLUS_EQ] = ACTIONS(10092), + [anon_sym_DASH_EQ] = ACTIONS(10092), + [anon_sym_LT_LT_EQ] = ACTIONS(10092), + [anon_sym_GT_GT_EQ] = ACTIONS(10092), + [anon_sym_AMP_EQ] = ACTIONS(10092), + [anon_sym_CARET_EQ] = ACTIONS(10092), + [anon_sym_PIPE_EQ] = ACTIONS(10092), + [anon_sym_and_eq] = ACTIONS(10090), + [anon_sym_or_eq] = ACTIONS(10090), + [anon_sym_xor_eq] = ACTIONS(10090), + [anon_sym_LT_EQ_GT] = ACTIONS(10092), + [anon_sym_or] = ACTIONS(10090), + [anon_sym_and] = ACTIONS(10090), + [anon_sym_bitor] = ACTIONS(10090), + [anon_sym_xor] = ACTIONS(10090), + [anon_sym_bitand] = ACTIONS(10090), + [anon_sym_not_eq] = ACTIONS(10090), + [anon_sym_DASH_DASH] = ACTIONS(10092), + [anon_sym_PLUS_PLUS] = ACTIONS(10092), + [anon_sym_DOT] = ACTIONS(10090), + [anon_sym_DOT_STAR] = ACTIONS(10092), + [anon_sym_DASH_GT] = ACTIONS(10092), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10092), + }, + [STATE(4067)] = { + [sym_template_argument_list] = STATE(4168), + [sym_identifier] = ACTIONS(7543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5689), + [anon_sym_COMMA] = ACTIONS(5689), + [anon_sym_LPAREN2] = ACTIONS(5689), + [anon_sym_DASH] = ACTIONS(7543), + [anon_sym_PLUS] = ACTIONS(7543), + [anon_sym_STAR] = ACTIONS(5689), + [anon_sym_SLASH] = ACTIONS(7543), + [anon_sym_PERCENT] = ACTIONS(5689), + [anon_sym_PIPE_PIPE] = ACTIONS(5689), + [anon_sym_AMP_AMP] = ACTIONS(5689), + [anon_sym_PIPE] = ACTIONS(7543), + [anon_sym_CARET] = ACTIONS(5689), + [anon_sym_AMP] = ACTIONS(7543), + [anon_sym_EQ_EQ] = ACTIONS(5689), + [anon_sym_BANG_EQ] = ACTIONS(5689), + [anon_sym_GT] = ACTIONS(7543), + [anon_sym_GT_EQ] = ACTIONS(5689), + [anon_sym_LT_EQ] = ACTIONS(7543), + [anon_sym_LT] = ACTIONS(9574), + [anon_sym_LT_LT] = ACTIONS(5689), + [anon_sym_GT_GT] = ACTIONS(5689), + [anon_sym___extension__] = ACTIONS(7543), + [anon_sym___attribute__] = ACTIONS(7543), + [anon_sym___attribute] = ACTIONS(7543), + [anon_sym_COLON] = ACTIONS(7543), + [anon_sym_COLON_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5689), + [anon_sym_LBRACK] = ACTIONS(7543), + [anon_sym_RBRACK] = ACTIONS(5689), + [anon_sym_const] = ACTIONS(7543), + [anon_sym_constexpr] = ACTIONS(7543), + [anon_sym_volatile] = ACTIONS(7543), + [anon_sym_restrict] = ACTIONS(7543), + [anon_sym___restrict__] = ACTIONS(7543), + [anon_sym__Atomic] = ACTIONS(7543), + [anon_sym__Noreturn] = ACTIONS(7543), + [anon_sym_noreturn] = ACTIONS(7543), + [anon_sym__Nonnull] = ACTIONS(7543), + [anon_sym_mutable] = ACTIONS(7543), + [anon_sym_constinit] = ACTIONS(7543), + [anon_sym_consteval] = ACTIONS(7543), + [anon_sym_alignas] = ACTIONS(7543), + [anon_sym__Alignas] = ACTIONS(7543), + [anon_sym_QMARK] = ACTIONS(5689), + [anon_sym_LT_EQ_GT] = ACTIONS(5689), + [anon_sym_or] = ACTIONS(7543), + [anon_sym_and] = ACTIONS(7543), + [anon_sym_bitor] = ACTIONS(7543), + [anon_sym_xor] = ACTIONS(7543), + [anon_sym_bitand] = ACTIONS(7543), + [anon_sym_not_eq] = ACTIONS(7543), + [anon_sym_DASH_DASH] = ACTIONS(5689), + [anon_sym_PLUS_PLUS] = ACTIONS(5689), + [anon_sym_DOT] = ACTIONS(7543), + [anon_sym_DOT_STAR] = ACTIONS(5689), + [anon_sym_DASH_GT] = ACTIONS(5689), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7543), + [anon_sym_final] = ACTIONS(7543), + [anon_sym_override] = ACTIONS(7543), + [anon_sym_template] = ACTIONS(7543), + [anon_sym_requires] = ACTIONS(7543), + [anon_sym_LBRACK_COLON] = ACTIONS(5689), + }, + [STATE(4068)] = { + [sym_identifier] = ACTIONS(6829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6831), + [anon_sym_COMMA] = ACTIONS(6831), + [anon_sym_LPAREN2] = ACTIONS(6831), + [anon_sym_DASH] = ACTIONS(6829), + [anon_sym_PLUS] = ACTIONS(6829), + [anon_sym_STAR] = ACTIONS(6831), + [anon_sym_SLASH] = ACTIONS(6829), + [anon_sym_PERCENT] = ACTIONS(6831), + [anon_sym_PIPE_PIPE] = ACTIONS(6831), + [anon_sym_AMP_AMP] = ACTIONS(6831), + [anon_sym_PIPE] = ACTIONS(6829), + [anon_sym_CARET] = ACTIONS(6831), + [anon_sym_AMP] = ACTIONS(6829), + [anon_sym_EQ_EQ] = ACTIONS(6831), + [anon_sym_BANG_EQ] = ACTIONS(6831), + [anon_sym_GT] = ACTIONS(6829), + [anon_sym_GT_EQ] = ACTIONS(6829), + [anon_sym_LT_EQ] = ACTIONS(6829), + [anon_sym_LT] = ACTIONS(6829), + [anon_sym_LT_LT] = ACTIONS(6831), + [anon_sym_GT_GT] = ACTIONS(6829), + [anon_sym___extension__] = ACTIONS(6829), + [anon_sym___attribute__] = ACTIONS(6829), + [anon_sym___attribute] = ACTIONS(6829), + [anon_sym_COLON] = ACTIONS(6829), + [anon_sym_COLON_COLON] = ACTIONS(6831), + [anon_sym_LBRACE] = ACTIONS(6831), + [anon_sym_LBRACK] = ACTIONS(6829), + [anon_sym_const] = ACTIONS(6829), + [anon_sym_constexpr] = ACTIONS(6829), + [anon_sym_volatile] = ACTIONS(6829), + [anon_sym_restrict] = ACTIONS(6829), + [anon_sym___restrict__] = ACTIONS(6829), + [anon_sym__Atomic] = ACTIONS(6829), + [anon_sym__Noreturn] = ACTIONS(6829), + [anon_sym_noreturn] = ACTIONS(6829), + [anon_sym__Nonnull] = ACTIONS(6829), + [anon_sym_mutable] = ACTIONS(6829), + [anon_sym_constinit] = ACTIONS(6829), + [anon_sym_consteval] = ACTIONS(6829), + [anon_sym_alignas] = ACTIONS(6829), + [anon_sym__Alignas] = ACTIONS(6829), + [anon_sym_QMARK] = ACTIONS(6831), + [anon_sym_LT_EQ_GT] = ACTIONS(6831), + [anon_sym_or] = ACTIONS(6829), + [anon_sym_and] = ACTIONS(6829), + [anon_sym_bitor] = ACTIONS(6829), + [anon_sym_xor] = ACTIONS(6829), + [anon_sym_bitand] = ACTIONS(6829), + [anon_sym_not_eq] = ACTIONS(6829), + [anon_sym_DASH_DASH] = ACTIONS(6831), + [anon_sym_PLUS_PLUS] = ACTIONS(6831), + [anon_sym_DOT] = ACTIONS(6829), + [anon_sym_DOT_STAR] = ACTIONS(6831), + [anon_sym_DASH_GT] = ACTIONS(6831), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6829), + [anon_sym_decltype] = ACTIONS(6829), + [anon_sym_final] = ACTIONS(6829), + [anon_sym_override] = ACTIONS(6829), + [anon_sym_template] = ACTIONS(6829), + [anon_sym_GT2] = ACTIONS(6831), + [anon_sym_requires] = ACTIONS(6829), + [anon_sym_LBRACK_COLON] = ACTIONS(6831), + }, + [STATE(4069)] = { + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6805), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6805), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6805), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6803), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6805), + [anon_sym_GT_GT] = ACTIONS(6803), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_GT2] = ACTIONS(6805), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), + }, + [STATE(4070)] = { + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6801), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6801), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6799), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6799), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_GT2] = ACTIONS(6801), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), + }, + [STATE(4071)] = { + [sym_identifier] = ACTIONS(10101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10103), + [anon_sym_COMMA] = ACTIONS(10103), + [aux_sym_preproc_if_token2] = ACTIONS(10103), + [aux_sym_preproc_else_token1] = ACTIONS(10103), + [aux_sym_preproc_elif_token1] = ACTIONS(10105), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10103), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10103), + [anon_sym_LPAREN2] = ACTIONS(10103), + [anon_sym_TILDE] = ACTIONS(10107), + [anon_sym_DASH] = ACTIONS(10105), + [anon_sym_PLUS] = ACTIONS(10105), + [anon_sym_STAR] = ACTIONS(10101), + [anon_sym_SLASH] = ACTIONS(10105), + [anon_sym_PERCENT] = ACTIONS(10105), + [anon_sym_PIPE_PIPE] = ACTIONS(10103), + [anon_sym_AMP_AMP] = ACTIONS(10103), + [anon_sym_PIPE] = ACTIONS(10105), + [anon_sym_CARET] = ACTIONS(10105), + [anon_sym_AMP] = ACTIONS(10105), + [anon_sym_EQ_EQ] = ACTIONS(10103), + [anon_sym_BANG_EQ] = ACTIONS(10103), + [anon_sym_GT] = ACTIONS(10105), + [anon_sym_GT_EQ] = ACTIONS(10103), + [anon_sym_LT_EQ] = ACTIONS(10105), + [anon_sym_LT] = ACTIONS(10105), + [anon_sym_LT_LT] = ACTIONS(10105), + [anon_sym_GT_GT] = ACTIONS(10105), + [anon_sym_COLON_COLON] = ACTIONS(10107), + [anon_sym___based] = ACTIONS(10101), + [anon_sym_LBRACK] = ACTIONS(10105), + [anon_sym_EQ] = ACTIONS(10105), + [anon_sym_QMARK] = ACTIONS(10103), + [anon_sym_STAR_EQ] = ACTIONS(10103), + [anon_sym_SLASH_EQ] = ACTIONS(10103), + [anon_sym_PERCENT_EQ] = ACTIONS(10103), + [anon_sym_PLUS_EQ] = ACTIONS(10103), + [anon_sym_DASH_EQ] = ACTIONS(10103), + [anon_sym_LT_LT_EQ] = ACTIONS(10103), + [anon_sym_GT_GT_EQ] = ACTIONS(10103), + [anon_sym_AMP_EQ] = ACTIONS(10103), + [anon_sym_CARET_EQ] = ACTIONS(10103), + [anon_sym_PIPE_EQ] = ACTIONS(10103), + [anon_sym_and_eq] = ACTIONS(10105), + [anon_sym_or_eq] = ACTIONS(10105), + [anon_sym_xor_eq] = ACTIONS(10105), + [anon_sym_LT_EQ_GT] = ACTIONS(10103), + [anon_sym_or] = ACTIONS(10105), + [anon_sym_and] = ACTIONS(10105), + [anon_sym_bitor] = ACTIONS(10105), + [anon_sym_xor] = ACTIONS(10105), + [anon_sym_bitand] = ACTIONS(10105), + [anon_sym_not_eq] = ACTIONS(10105), + [anon_sym_DASH_DASH] = ACTIONS(10103), + [anon_sym_PLUS_PLUS] = ACTIONS(10103), + [anon_sym_DOT] = ACTIONS(10105), + [anon_sym_DOT_STAR] = ACTIONS(10103), + [anon_sym_DASH_GT] = ACTIONS(10103), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(10101), + [anon_sym_template] = ACTIONS(10101), + [anon_sym_operator] = ACTIONS(10101), + [anon_sym_delete] = ACTIONS(10109), + [anon_sym_new] = ACTIONS(10111), + [anon_sym_LBRACK_COLON] = ACTIONS(10107), + }, + [STATE(4072)] = { + [sym_argument_list] = STATE(4188), + [sym_subscript_argument_list] = STATE(4199), + [sym_identifier] = ACTIONS(10113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10115), + [anon_sym_COMMA] = ACTIONS(10115), + [anon_sym_RPAREN] = ACTIONS(10115), + [aux_sym_preproc_if_token2] = ACTIONS(10115), + [aux_sym_preproc_else_token1] = ACTIONS(10115), + [aux_sym_preproc_elif_token1] = ACTIONS(10113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10115), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(10113), + [anon_sym_PLUS] = ACTIONS(10113), + [anon_sym_STAR] = ACTIONS(10113), + [anon_sym_SLASH] = ACTIONS(10113), + [anon_sym_PERCENT] = ACTIONS(10113), + [anon_sym_PIPE_PIPE] = ACTIONS(10115), + [anon_sym_AMP_AMP] = ACTIONS(10115), + [anon_sym_PIPE] = ACTIONS(10113), + [anon_sym_CARET] = ACTIONS(10113), + [anon_sym_AMP] = ACTIONS(10113), + [anon_sym_EQ_EQ] = ACTIONS(10115), + [anon_sym_BANG_EQ] = ACTIONS(10115), + [anon_sym_GT] = ACTIONS(10113), + [anon_sym_GT_EQ] = ACTIONS(10115), + [anon_sym_LT_EQ] = ACTIONS(10113), + [anon_sym_LT] = ACTIONS(10113), + [anon_sym_LT_LT] = ACTIONS(10113), + [anon_sym_GT_GT] = ACTIONS(10113), + [anon_sym_SEMI] = ACTIONS(10115), + [anon_sym___attribute__] = ACTIONS(10113), + [anon_sym___attribute] = ACTIONS(10113), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10115), + [anon_sym_RBRACE] = ACTIONS(10115), + [anon_sym_LBRACK] = ACTIONS(10050), + [anon_sym_EQ] = ACTIONS(10113), + [anon_sym_QMARK] = ACTIONS(10115), + [anon_sym_STAR_EQ] = ACTIONS(10115), + [anon_sym_SLASH_EQ] = ACTIONS(10115), + [anon_sym_PERCENT_EQ] = ACTIONS(10115), + [anon_sym_PLUS_EQ] = ACTIONS(10115), + [anon_sym_DASH_EQ] = ACTIONS(10115), + [anon_sym_LT_LT_EQ] = ACTIONS(10115), + [anon_sym_GT_GT_EQ] = ACTIONS(10115), + [anon_sym_AMP_EQ] = ACTIONS(10115), + [anon_sym_CARET_EQ] = ACTIONS(10115), + [anon_sym_PIPE_EQ] = ACTIONS(10115), + [anon_sym_and_eq] = ACTIONS(10113), + [anon_sym_or_eq] = ACTIONS(10113), + [anon_sym_xor_eq] = ACTIONS(10113), + [anon_sym_LT_EQ_GT] = ACTIONS(10115), + [anon_sym_or] = ACTIONS(10113), + [anon_sym_and] = ACTIONS(10113), + [anon_sym_bitor] = ACTIONS(10113), + [anon_sym_xor] = ACTIONS(10113), + [anon_sym_bitand] = ACTIONS(10113), + [anon_sym_not_eq] = ACTIONS(10113), + [anon_sym_DASH_DASH] = ACTIONS(10070), + [anon_sym_PLUS_PLUS] = ACTIONS(10070), + [anon_sym_DOT] = ACTIONS(10052), + [anon_sym_DOT_STAR] = ACTIONS(10054), + [anon_sym_DASH_GT] = ACTIONS(10054), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10115), + }, + [STATE(4073)] = { + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6809), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6809), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6809), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6807), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6809), + [anon_sym_GT_GT] = ACTIONS(6807), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [anon_sym_LT_EQ_GT] = ACTIONS(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_GT2] = ACTIONS(6809), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), + }, + [STATE(4074)] = { + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6797), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6797), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6797), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6795), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6797), + [anon_sym_GT_GT] = ACTIONS(6795), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_GT2] = ACTIONS(6797), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), + }, + [STATE(4075)] = { + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6793), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6793), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6793), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6791), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6793), + [anon_sym_GT_GT] = ACTIONS(6791), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_GT2] = ACTIONS(6793), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), + }, + [STATE(4076)] = { + [sym_identifier] = ACTIONS(7495), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7495), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = 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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_GT2] = ACTIONS(7497), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(4077)] = { + [sym_identifier] = ACTIONS(7495), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7495), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = 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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_GT2] = ACTIONS(7497), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(4078)] = { + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6813), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6813), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6813), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6811), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6813), + [anon_sym_GT_GT] = ACTIONS(6811), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_GT2] = ACTIONS(6813), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), + }, + [STATE(4079)] = { + [sym_identifier] = ACTIONS(7259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7261), + [anon_sym_COMMA] = ACTIONS(7261), + [anon_sym_RPAREN] = ACTIONS(7261), + [anon_sym_LPAREN2] = ACTIONS(7261), + [anon_sym_TILDE] = ACTIONS(7261), + [anon_sym_STAR] = ACTIONS(7261), + [anon_sym_AMP_AMP] = ACTIONS(7261), + [anon_sym_AMP] = ACTIONS(7259), + [anon_sym_SEMI] = ACTIONS(7261), + [anon_sym___extension__] = ACTIONS(7259), + [anon_sym_virtual] = ACTIONS(7259), + [anon_sym_extern] = ACTIONS(7259), + [anon_sym___attribute__] = ACTIONS(7259), + [anon_sym___attribute] = ACTIONS(7259), + [anon_sym_COLON] = ACTIONS(7259), + [anon_sym_COLON_COLON] = ACTIONS(7261), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7261), + [anon_sym___declspec] = ACTIONS(7259), + [anon_sym___based] = ACTIONS(7259), + [anon_sym___cdecl] = ACTIONS(7259), + [anon_sym___clrcall] = ACTIONS(7259), + [anon_sym___stdcall] = ACTIONS(7259), + [anon_sym___fastcall] = ACTIONS(7259), + [anon_sym___thiscall] = ACTIONS(7259), + [anon_sym___vectorcall] = ACTIONS(7259), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_LBRACK] = ACTIONS(7259), + [anon_sym_static] = ACTIONS(7259), + [anon_sym_EQ] = ACTIONS(7261), + [anon_sym_register] = ACTIONS(7259), + [anon_sym_inline] = ACTIONS(7259), + [anon_sym___inline] = ACTIONS(7259), + [anon_sym___inline__] = ACTIONS(7259), + [anon_sym___forceinline] = ACTIONS(7259), + [anon_sym_thread_local] = ACTIONS(7259), + [anon_sym___thread] = ACTIONS(7259), + [anon_sym_const] = ACTIONS(7259), + [anon_sym_constexpr] = ACTIONS(7259), + [anon_sym_volatile] = ACTIONS(7259), + [anon_sym_restrict] = ACTIONS(7259), + [anon_sym___restrict__] = ACTIONS(7259), + [anon_sym__Atomic] = ACTIONS(7259), + [anon_sym__Noreturn] = ACTIONS(7259), + [anon_sym_noreturn] = ACTIONS(7259), + [anon_sym__Nonnull] = ACTIONS(7259), + [anon_sym_mutable] = ACTIONS(7259), + [anon_sym_constinit] = ACTIONS(7259), + [anon_sym_consteval] = ACTIONS(7259), + [anon_sym_alignas] = ACTIONS(7259), + [anon_sym__Alignas] = ACTIONS(7259), + [anon_sym_asm] = ACTIONS(7259), + [anon_sym___asm__] = ACTIONS(7259), + [anon_sym___asm] = ACTIONS(7259), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7259), + [anon_sym_final] = ACTIONS(7259), + [anon_sym_override] = ACTIONS(7259), + [anon_sym_explicit] = ACTIONS(7259), + [anon_sym_template] = ACTIONS(7259), + [anon_sym_GT2] = ACTIONS(7261), + [anon_sym_operator] = ACTIONS(7259), + [anon_sym_try] = ACTIONS(7259), + [anon_sym_requires] = ACTIONS(7259), + [anon_sym_LBRACK_COLON] = ACTIONS(7261), + }, + [STATE(4080)] = { + [sym_identifier] = ACTIONS(7519), + [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(7521), + [anon_sym_SLASH] = ACTIONS(7519), + [anon_sym_PERCENT] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7519), + [anon_sym_CARET] = ACTIONS(7521), + [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(7521), + [anon_sym_GT_GT] = ACTIONS(7519), + [anon_sym___extension__] = ACTIONS(7519), + [anon_sym___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = 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_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), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_template] = ACTIONS(7519), + [anon_sym_GT2] = ACTIONS(7521), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_LBRACK_COLON] = ACTIONS(7521), + }, + [STATE(4081)] = { + [sym_identifier] = ACTIONS(10090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10092), + [anon_sym_COMMA] = ACTIONS(10092), + [anon_sym_RPAREN] = ACTIONS(10092), + [aux_sym_preproc_if_token2] = ACTIONS(10092), + [aux_sym_preproc_else_token1] = ACTIONS(10092), + [aux_sym_preproc_elif_token1] = ACTIONS(10090), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10092), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10092), + [anon_sym_LPAREN2] = ACTIONS(10092), + [anon_sym_DASH] = ACTIONS(10090), + [anon_sym_PLUS] = ACTIONS(10090), + [anon_sym_STAR] = ACTIONS(10090), + [anon_sym_SLASH] = ACTIONS(10090), + [anon_sym_PERCENT] = ACTIONS(10090), + [anon_sym_PIPE_PIPE] = ACTIONS(10092), + [anon_sym_AMP_AMP] = ACTIONS(10092), + [anon_sym_PIPE] = ACTIONS(10090), + [anon_sym_CARET] = ACTIONS(10090), + [anon_sym_AMP] = ACTIONS(10090), + [anon_sym_EQ_EQ] = ACTIONS(10092), + [anon_sym_BANG_EQ] = ACTIONS(10092), + [anon_sym_GT] = ACTIONS(10090), + [anon_sym_GT_EQ] = ACTIONS(10092), + [anon_sym_LT_EQ] = ACTIONS(10090), + [anon_sym_LT] = ACTIONS(10090), + [anon_sym_LT_LT] = ACTIONS(10090), + [anon_sym_GT_GT] = ACTIONS(10090), + [anon_sym_SEMI] = ACTIONS(10092), + [anon_sym___attribute__] = ACTIONS(10090), + [anon_sym___attribute] = ACTIONS(10090), + [anon_sym_COLON] = ACTIONS(10090), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10092), + [anon_sym_LBRACE] = ACTIONS(10092), + [anon_sym_RBRACE] = ACTIONS(10092), + [anon_sym_LBRACK] = ACTIONS(10092), + [anon_sym_EQ] = ACTIONS(10090), + [anon_sym_QMARK] = ACTIONS(10092), + [anon_sym_STAR_EQ] = ACTIONS(10092), + [anon_sym_SLASH_EQ] = ACTIONS(10092), + [anon_sym_PERCENT_EQ] = ACTIONS(10092), + [anon_sym_PLUS_EQ] = ACTIONS(10092), + [anon_sym_DASH_EQ] = ACTIONS(10092), + [anon_sym_LT_LT_EQ] = ACTIONS(10092), + [anon_sym_GT_GT_EQ] = ACTIONS(10092), + [anon_sym_AMP_EQ] = ACTIONS(10092), + [anon_sym_CARET_EQ] = ACTIONS(10092), + [anon_sym_PIPE_EQ] = ACTIONS(10092), + [anon_sym_and_eq] = ACTIONS(10090), + [anon_sym_or_eq] = ACTIONS(10090), + [anon_sym_xor_eq] = ACTIONS(10090), + [anon_sym_LT_EQ_GT] = ACTIONS(10092), + [anon_sym_or] = ACTIONS(10090), + [anon_sym_and] = ACTIONS(10090), + [anon_sym_bitor] = ACTIONS(10090), + [anon_sym_xor] = ACTIONS(10090), + [anon_sym_bitand] = ACTIONS(10090), + [anon_sym_not_eq] = ACTIONS(10090), + [anon_sym_DASH_DASH] = ACTIONS(10092), + [anon_sym_PLUS_PLUS] = ACTIONS(10092), + [anon_sym_DOT] = ACTIONS(10090), + [anon_sym_DOT_STAR] = ACTIONS(10092), + [anon_sym_DASH_GT] = ACTIONS(10092), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10092), + }, + [STATE(4082)] = { + [sym_identifier] = ACTIONS(6803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6805), + [anon_sym_COMMA] = ACTIONS(6805), + [anon_sym_LPAREN2] = ACTIONS(6805), + [anon_sym_DASH] = ACTIONS(6803), + [anon_sym_PLUS] = ACTIONS(6803), + [anon_sym_STAR] = ACTIONS(6805), + [anon_sym_SLASH] = ACTIONS(6803), + [anon_sym_PERCENT] = ACTIONS(6805), + [anon_sym_PIPE_PIPE] = ACTIONS(6805), + [anon_sym_AMP_AMP] = ACTIONS(6805), + [anon_sym_PIPE] = ACTIONS(6803), + [anon_sym_CARET] = ACTIONS(6805), + [anon_sym_AMP] = ACTIONS(6803), + [anon_sym_EQ_EQ] = ACTIONS(6805), + [anon_sym_BANG_EQ] = ACTIONS(6805), + [anon_sym_GT] = ACTIONS(6803), + [anon_sym_GT_EQ] = ACTIONS(6805), + [anon_sym_LT_EQ] = ACTIONS(6803), + [anon_sym_LT] = ACTIONS(6803), + [anon_sym_LT_LT] = ACTIONS(6805), + [anon_sym_GT_GT] = ACTIONS(6805), + [anon_sym___extension__] = ACTIONS(6803), + [anon_sym___attribute__] = ACTIONS(6803), + [anon_sym___attribute] = ACTIONS(6803), + [anon_sym_COLON] = ACTIONS(6803), + [anon_sym_COLON_COLON] = ACTIONS(6805), + [anon_sym_LBRACE] = ACTIONS(6805), + [anon_sym_LBRACK] = ACTIONS(6803), + [anon_sym_RBRACK] = ACTIONS(6805), + [anon_sym_const] = ACTIONS(6803), + [anon_sym_constexpr] = ACTIONS(6803), + [anon_sym_volatile] = ACTIONS(6803), + [anon_sym_restrict] = ACTIONS(6803), + [anon_sym___restrict__] = ACTIONS(6803), + [anon_sym__Atomic] = ACTIONS(6803), + [anon_sym__Noreturn] = ACTIONS(6803), + [anon_sym_noreturn] = ACTIONS(6803), + [anon_sym__Nonnull] = ACTIONS(6803), + [anon_sym_mutable] = ACTIONS(6803), + [anon_sym_constinit] = ACTIONS(6803), + [anon_sym_consteval] = ACTIONS(6803), + [anon_sym_alignas] = ACTIONS(6803), + [anon_sym__Alignas] = ACTIONS(6803), + [anon_sym_QMARK] = ACTIONS(6805), + [anon_sym_LT_EQ_GT] = ACTIONS(6805), + [anon_sym_or] = ACTIONS(6803), + [anon_sym_and] = ACTIONS(6803), + [anon_sym_bitor] = ACTIONS(6803), + [anon_sym_xor] = ACTIONS(6803), + [anon_sym_bitand] = ACTIONS(6803), + [anon_sym_not_eq] = ACTIONS(6803), + [anon_sym_DASH_DASH] = ACTIONS(6805), + [anon_sym_PLUS_PLUS] = ACTIONS(6805), + [anon_sym_DOT] = ACTIONS(6803), + [anon_sym_DOT_STAR] = ACTIONS(6805), + [anon_sym_DASH_GT] = ACTIONS(6805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6803), + [anon_sym_decltype] = ACTIONS(6803), + [anon_sym_final] = ACTIONS(6803), + [anon_sym_override] = ACTIONS(6803), + [anon_sym_template] = ACTIONS(6803), + [anon_sym_requires] = ACTIONS(6803), + [anon_sym_LBRACK_COLON] = ACTIONS(6805), + }, + [STATE(4083)] = { + [sym_identifier] = ACTIONS(6799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6801), + [anon_sym_COMMA] = ACTIONS(6801), + [anon_sym_LPAREN2] = ACTIONS(6801), + [anon_sym_DASH] = ACTIONS(6799), + [anon_sym_PLUS] = ACTIONS(6799), + [anon_sym_STAR] = ACTIONS(6801), + [anon_sym_SLASH] = ACTIONS(6799), + [anon_sym_PERCENT] = ACTIONS(6801), + [anon_sym_PIPE_PIPE] = ACTIONS(6801), + [anon_sym_AMP_AMP] = ACTIONS(6801), + [anon_sym_PIPE] = ACTIONS(6799), + [anon_sym_CARET] = ACTIONS(6801), + [anon_sym_AMP] = ACTIONS(6799), + [anon_sym_EQ_EQ] = ACTIONS(6801), + [anon_sym_BANG_EQ] = ACTIONS(6801), + [anon_sym_GT] = ACTIONS(6799), + [anon_sym_GT_EQ] = ACTIONS(6801), + [anon_sym_LT_EQ] = ACTIONS(6799), + [anon_sym_LT] = ACTIONS(6799), + [anon_sym_LT_LT] = ACTIONS(6801), + [anon_sym_GT_GT] = ACTIONS(6801), + [anon_sym___extension__] = ACTIONS(6799), + [anon_sym___attribute__] = ACTIONS(6799), + [anon_sym___attribute] = ACTIONS(6799), + [anon_sym_COLON] = ACTIONS(6799), + [anon_sym_COLON_COLON] = ACTIONS(6801), + [anon_sym_LBRACE] = ACTIONS(6801), + [anon_sym_LBRACK] = ACTIONS(6799), + [anon_sym_RBRACK] = ACTIONS(6801), + [anon_sym_const] = ACTIONS(6799), + [anon_sym_constexpr] = ACTIONS(6799), + [anon_sym_volatile] = ACTIONS(6799), + [anon_sym_restrict] = ACTIONS(6799), + [anon_sym___restrict__] = ACTIONS(6799), + [anon_sym__Atomic] = ACTIONS(6799), + [anon_sym__Noreturn] = ACTIONS(6799), + [anon_sym_noreturn] = ACTIONS(6799), + [anon_sym__Nonnull] = ACTIONS(6799), + [anon_sym_mutable] = ACTIONS(6799), + [anon_sym_constinit] = ACTIONS(6799), + [anon_sym_consteval] = ACTIONS(6799), + [anon_sym_alignas] = ACTIONS(6799), + [anon_sym__Alignas] = ACTIONS(6799), + [anon_sym_QMARK] = ACTIONS(6801), + [anon_sym_LT_EQ_GT] = ACTIONS(6801), + [anon_sym_or] = ACTIONS(6799), + [anon_sym_and] = ACTIONS(6799), + [anon_sym_bitor] = ACTIONS(6799), + [anon_sym_xor] = ACTIONS(6799), + [anon_sym_bitand] = ACTIONS(6799), + [anon_sym_not_eq] = ACTIONS(6799), + [anon_sym_DASH_DASH] = ACTIONS(6801), + [anon_sym_PLUS_PLUS] = ACTIONS(6801), + [anon_sym_DOT] = ACTIONS(6799), + [anon_sym_DOT_STAR] = ACTIONS(6801), + [anon_sym_DASH_GT] = ACTIONS(6801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6799), + [anon_sym_decltype] = ACTIONS(6799), + [anon_sym_final] = ACTIONS(6799), + [anon_sym_override] = ACTIONS(6799), + [anon_sym_template] = ACTIONS(6799), + [anon_sym_requires] = ACTIONS(6799), + [anon_sym_LBRACK_COLON] = ACTIONS(6801), + }, + [STATE(4084)] = { + [sym_attribute_specifier] = STATE(4718), + [sym_enumerator_list] = STATE(4432), + [sym_identifier] = ACTIONS(7421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7423), + [anon_sym_COMMA] = ACTIONS(7423), + [anon_sym_LPAREN2] = ACTIONS(7423), + [anon_sym_DASH] = ACTIONS(7421), + [anon_sym_PLUS] = ACTIONS(7421), + [anon_sym_STAR] = ACTIONS(7423), + [anon_sym_SLASH] = ACTIONS(7421), + [anon_sym_PERCENT] = ACTIONS(7423), + [anon_sym_PIPE_PIPE] = ACTIONS(7423), + [anon_sym_AMP_AMP] = ACTIONS(7423), + [anon_sym_PIPE] = ACTIONS(7421), + [anon_sym_CARET] = ACTIONS(7423), + [anon_sym_AMP] = ACTIONS(7421), + [anon_sym_EQ_EQ] = ACTIONS(7423), + [anon_sym_BANG_EQ] = ACTIONS(7423), + [anon_sym_GT] = ACTIONS(7421), + [anon_sym_GT_EQ] = ACTIONS(7423), + [anon_sym_LT_EQ] = ACTIONS(7421), + [anon_sym_LT] = ACTIONS(7421), + [anon_sym_LT_LT] = ACTIONS(7423), + [anon_sym_GT_GT] = ACTIONS(7423), + [anon_sym___extension__] = ACTIONS(7421), + [anon_sym___attribute__] = ACTIONS(9688), + [anon_sym___attribute] = ACTIONS(9688), + [anon_sym_COLON_COLON] = ACTIONS(7423), + [anon_sym_LBRACE] = ACTIONS(9886), + [anon_sym_LBRACK] = ACTIONS(7421), + [anon_sym_RBRACK] = ACTIONS(7423), + [anon_sym_const] = ACTIONS(7421), + [anon_sym_constexpr] = ACTIONS(7421), + [anon_sym_volatile] = ACTIONS(7421), + [anon_sym_restrict] = ACTIONS(7421), + [anon_sym___restrict__] = ACTIONS(7421), + [anon_sym__Atomic] = ACTIONS(7421), + [anon_sym__Noreturn] = ACTIONS(7421), + [anon_sym_noreturn] = ACTIONS(7421), + [anon_sym__Nonnull] = ACTIONS(7421), + [anon_sym_mutable] = ACTIONS(7421), + [anon_sym_constinit] = ACTIONS(7421), + [anon_sym_consteval] = ACTIONS(7421), + [anon_sym_alignas] = ACTIONS(7421), + [anon_sym__Alignas] = ACTIONS(7421), + [anon_sym_QMARK] = ACTIONS(7423), + [anon_sym_LT_EQ_GT] = ACTIONS(7423), + [anon_sym_or] = ACTIONS(7421), + [anon_sym_and] = ACTIONS(7421), + [anon_sym_bitor] = ACTIONS(7421), + [anon_sym_xor] = ACTIONS(7421), + [anon_sym_bitand] = ACTIONS(7421), + [anon_sym_not_eq] = ACTIONS(7421), + [anon_sym_DASH_DASH] = ACTIONS(7423), + [anon_sym_PLUS_PLUS] = ACTIONS(7423), + [anon_sym_DOT] = ACTIONS(7421), + [anon_sym_DOT_STAR] = ACTIONS(7423), + [anon_sym_DASH_GT] = ACTIONS(7423), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7421), + [anon_sym_final] = ACTIONS(7421), + [anon_sym_override] = ACTIONS(7421), + [anon_sym_template] = ACTIONS(7421), + [anon_sym_requires] = ACTIONS(7421), + [anon_sym_LBRACK_COLON] = ACTIONS(7423), + }, + [STATE(4085)] = { + [sym_identifier] = ACTIONS(6807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6809), + [anon_sym_COMMA] = ACTIONS(6809), + [anon_sym_LPAREN2] = ACTIONS(6809), + [anon_sym_DASH] = ACTIONS(6807), + [anon_sym_PLUS] = ACTIONS(6807), + [anon_sym_STAR] = ACTIONS(6809), + [anon_sym_SLASH] = ACTIONS(6807), + [anon_sym_PERCENT] = ACTIONS(6809), + [anon_sym_PIPE_PIPE] = ACTIONS(6809), + [anon_sym_AMP_AMP] = ACTIONS(6809), + [anon_sym_PIPE] = ACTIONS(6807), + [anon_sym_CARET] = ACTIONS(6809), + [anon_sym_AMP] = ACTIONS(6807), + [anon_sym_EQ_EQ] = ACTIONS(6809), + [anon_sym_BANG_EQ] = ACTIONS(6809), + [anon_sym_GT] = ACTIONS(6807), + [anon_sym_GT_EQ] = ACTIONS(6809), + [anon_sym_LT_EQ] = ACTIONS(6807), + [anon_sym_LT] = ACTIONS(6807), + [anon_sym_LT_LT] = ACTIONS(6809), + [anon_sym_GT_GT] = ACTIONS(6809), + [anon_sym___extension__] = ACTIONS(6807), + [anon_sym___attribute__] = ACTIONS(6807), + [anon_sym___attribute] = ACTIONS(6807), + [anon_sym_COLON] = ACTIONS(6807), + [anon_sym_COLON_COLON] = ACTIONS(6809), + [anon_sym_LBRACE] = ACTIONS(6809), + [anon_sym_LBRACK] = ACTIONS(6807), + [anon_sym_RBRACK] = ACTIONS(6809), + [anon_sym_const] = ACTIONS(6807), + [anon_sym_constexpr] = ACTIONS(6807), + [anon_sym_volatile] = ACTIONS(6807), + [anon_sym_restrict] = ACTIONS(6807), + [anon_sym___restrict__] = ACTIONS(6807), + [anon_sym__Atomic] = ACTIONS(6807), + [anon_sym__Noreturn] = ACTIONS(6807), + [anon_sym_noreturn] = ACTIONS(6807), + [anon_sym__Nonnull] = ACTIONS(6807), + [anon_sym_mutable] = ACTIONS(6807), + [anon_sym_constinit] = ACTIONS(6807), + [anon_sym_consteval] = ACTIONS(6807), + [anon_sym_alignas] = ACTIONS(6807), + [anon_sym__Alignas] = ACTIONS(6807), + [anon_sym_QMARK] = ACTIONS(6809), + [anon_sym_LT_EQ_GT] = ACTIONS(6809), + [anon_sym_or] = ACTIONS(6807), + [anon_sym_and] = ACTIONS(6807), + [anon_sym_bitor] = ACTIONS(6807), + [anon_sym_xor] = ACTIONS(6807), + [anon_sym_bitand] = ACTIONS(6807), + [anon_sym_not_eq] = ACTIONS(6807), + [anon_sym_DASH_DASH] = ACTIONS(6809), + [anon_sym_PLUS_PLUS] = ACTIONS(6809), + [anon_sym_DOT] = ACTIONS(6807), + [anon_sym_DOT_STAR] = ACTIONS(6809), + [anon_sym_DASH_GT] = ACTIONS(6809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6807), + [anon_sym_decltype] = ACTIONS(6807), + [anon_sym_final] = ACTIONS(6807), + [anon_sym_override] = ACTIONS(6807), + [anon_sym_template] = ACTIONS(6807), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_LBRACK_COLON] = ACTIONS(6809), + }, + [STATE(4086)] = { + [sym_identifier] = ACTIONS(6795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6797), + [anon_sym_COMMA] = ACTIONS(6797), + [anon_sym_LPAREN2] = ACTIONS(6797), + [anon_sym_DASH] = ACTIONS(6795), + [anon_sym_PLUS] = ACTIONS(6795), + [anon_sym_STAR] = ACTIONS(6797), + [anon_sym_SLASH] = ACTIONS(6795), + [anon_sym_PERCENT] = ACTIONS(6797), + [anon_sym_PIPE_PIPE] = ACTIONS(6797), + [anon_sym_AMP_AMP] = ACTIONS(6797), + [anon_sym_PIPE] = ACTIONS(6795), + [anon_sym_CARET] = ACTIONS(6797), + [anon_sym_AMP] = ACTIONS(6795), + [anon_sym_EQ_EQ] = ACTIONS(6797), + [anon_sym_BANG_EQ] = ACTIONS(6797), + [anon_sym_GT] = ACTIONS(6795), + [anon_sym_GT_EQ] = ACTIONS(6797), + [anon_sym_LT_EQ] = ACTIONS(6795), + [anon_sym_LT] = ACTIONS(6795), + [anon_sym_LT_LT] = ACTIONS(6797), + [anon_sym_GT_GT] = ACTIONS(6797), + [anon_sym___extension__] = ACTIONS(6795), + [anon_sym___attribute__] = ACTIONS(6795), + [anon_sym___attribute] = ACTIONS(6795), + [anon_sym_COLON] = ACTIONS(6795), + [anon_sym_COLON_COLON] = ACTIONS(6797), + [anon_sym_LBRACE] = ACTIONS(6797), + [anon_sym_LBRACK] = ACTIONS(6795), + [anon_sym_RBRACK] = ACTIONS(6797), + [anon_sym_const] = ACTIONS(6795), + [anon_sym_constexpr] = ACTIONS(6795), + [anon_sym_volatile] = ACTIONS(6795), + [anon_sym_restrict] = ACTIONS(6795), + [anon_sym___restrict__] = ACTIONS(6795), + [anon_sym__Atomic] = ACTIONS(6795), + [anon_sym__Noreturn] = ACTIONS(6795), + [anon_sym_noreturn] = ACTIONS(6795), + [anon_sym__Nonnull] = ACTIONS(6795), + [anon_sym_mutable] = ACTIONS(6795), + [anon_sym_constinit] = ACTIONS(6795), + [anon_sym_consteval] = ACTIONS(6795), + [anon_sym_alignas] = ACTIONS(6795), + [anon_sym__Alignas] = ACTIONS(6795), + [anon_sym_QMARK] = ACTIONS(6797), + [anon_sym_LT_EQ_GT] = ACTIONS(6797), + [anon_sym_or] = ACTIONS(6795), + [anon_sym_and] = ACTIONS(6795), + [anon_sym_bitor] = ACTIONS(6795), + [anon_sym_xor] = ACTIONS(6795), + [anon_sym_bitand] = ACTIONS(6795), + [anon_sym_not_eq] = ACTIONS(6795), + [anon_sym_DASH_DASH] = ACTIONS(6797), + [anon_sym_PLUS_PLUS] = ACTIONS(6797), + [anon_sym_DOT] = ACTIONS(6795), + [anon_sym_DOT_STAR] = ACTIONS(6797), + [anon_sym_DASH_GT] = ACTIONS(6797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6795), + [anon_sym_decltype] = ACTIONS(6795), + [anon_sym_final] = ACTIONS(6795), + [anon_sym_override] = ACTIONS(6795), + [anon_sym_template] = ACTIONS(6795), + [anon_sym_requires] = ACTIONS(6795), + [anon_sym_LBRACK_COLON] = ACTIONS(6797), + }, + [STATE(4087)] = { + [sym_identifier] = ACTIONS(6791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6793), + [anon_sym_COMMA] = ACTIONS(6793), + [anon_sym_LPAREN2] = ACTIONS(6793), + [anon_sym_DASH] = ACTIONS(6791), + [anon_sym_PLUS] = ACTIONS(6791), + [anon_sym_STAR] = ACTIONS(6793), + [anon_sym_SLASH] = ACTIONS(6791), + [anon_sym_PERCENT] = ACTIONS(6793), + [anon_sym_PIPE_PIPE] = ACTIONS(6793), + [anon_sym_AMP_AMP] = ACTIONS(6793), + [anon_sym_PIPE] = ACTIONS(6791), + [anon_sym_CARET] = ACTIONS(6793), + [anon_sym_AMP] = ACTIONS(6791), + [anon_sym_EQ_EQ] = ACTIONS(6793), + [anon_sym_BANG_EQ] = ACTIONS(6793), + [anon_sym_GT] = ACTIONS(6791), + [anon_sym_GT_EQ] = ACTIONS(6793), + [anon_sym_LT_EQ] = ACTIONS(6791), + [anon_sym_LT] = ACTIONS(6791), + [anon_sym_LT_LT] = ACTIONS(6793), + [anon_sym_GT_GT] = ACTIONS(6793), + [anon_sym___extension__] = ACTIONS(6791), + [anon_sym___attribute__] = ACTIONS(6791), + [anon_sym___attribute] = ACTIONS(6791), + [anon_sym_COLON] = ACTIONS(6791), + [anon_sym_COLON_COLON] = ACTIONS(6793), + [anon_sym_LBRACE] = ACTIONS(6793), + [anon_sym_LBRACK] = ACTIONS(6791), + [anon_sym_RBRACK] = ACTIONS(6793), + [anon_sym_const] = ACTIONS(6791), + [anon_sym_constexpr] = ACTIONS(6791), + [anon_sym_volatile] = ACTIONS(6791), + [anon_sym_restrict] = ACTIONS(6791), + [anon_sym___restrict__] = ACTIONS(6791), + [anon_sym__Atomic] = ACTIONS(6791), + [anon_sym__Noreturn] = ACTIONS(6791), + [anon_sym_noreturn] = ACTIONS(6791), + [anon_sym__Nonnull] = ACTIONS(6791), + [anon_sym_mutable] = ACTIONS(6791), + [anon_sym_constinit] = ACTIONS(6791), + [anon_sym_consteval] = ACTIONS(6791), + [anon_sym_alignas] = ACTIONS(6791), + [anon_sym__Alignas] = ACTIONS(6791), + [anon_sym_QMARK] = ACTIONS(6793), + [anon_sym_LT_EQ_GT] = ACTIONS(6793), + [anon_sym_or] = ACTIONS(6791), + [anon_sym_and] = ACTIONS(6791), + [anon_sym_bitor] = ACTIONS(6791), + [anon_sym_xor] = ACTIONS(6791), + [anon_sym_bitand] = ACTIONS(6791), + [anon_sym_not_eq] = ACTIONS(6791), + [anon_sym_DASH_DASH] = ACTIONS(6793), + [anon_sym_PLUS_PLUS] = ACTIONS(6793), + [anon_sym_DOT] = ACTIONS(6791), + [anon_sym_DOT_STAR] = ACTIONS(6793), + [anon_sym_DASH_GT] = ACTIONS(6793), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6791), + [anon_sym_decltype] = ACTIONS(6791), + [anon_sym_final] = ACTIONS(6791), + [anon_sym_override] = ACTIONS(6791), + [anon_sym_template] = ACTIONS(6791), + [anon_sym_requires] = ACTIONS(6791), + [anon_sym_LBRACK_COLON] = ACTIONS(6793), + }, + [STATE(4088)] = { + [sym_identifier] = ACTIONS(6811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6813), + [anon_sym_COMMA] = ACTIONS(6813), + [anon_sym_LPAREN2] = ACTIONS(6813), + [anon_sym_DASH] = ACTIONS(6811), + [anon_sym_PLUS] = ACTIONS(6811), + [anon_sym_STAR] = ACTIONS(6813), + [anon_sym_SLASH] = ACTIONS(6811), + [anon_sym_PERCENT] = ACTIONS(6813), + [anon_sym_PIPE_PIPE] = ACTIONS(6813), + [anon_sym_AMP_AMP] = ACTIONS(6813), + [anon_sym_PIPE] = ACTIONS(6811), + [anon_sym_CARET] = ACTIONS(6813), + [anon_sym_AMP] = ACTIONS(6811), + [anon_sym_EQ_EQ] = ACTIONS(6813), + [anon_sym_BANG_EQ] = ACTIONS(6813), + [anon_sym_GT] = ACTIONS(6811), + [anon_sym_GT_EQ] = ACTIONS(6813), + [anon_sym_LT_EQ] = ACTIONS(6811), + [anon_sym_LT] = ACTIONS(6811), + [anon_sym_LT_LT] = ACTIONS(6813), + [anon_sym_GT_GT] = ACTIONS(6813), + [anon_sym___extension__] = ACTIONS(6811), + [anon_sym___attribute__] = ACTIONS(6811), + [anon_sym___attribute] = ACTIONS(6811), + [anon_sym_COLON] = ACTIONS(6811), + [anon_sym_COLON_COLON] = ACTIONS(6813), + [anon_sym_LBRACE] = ACTIONS(6813), + [anon_sym_LBRACK] = ACTIONS(6811), + [anon_sym_RBRACK] = ACTIONS(6813), + [anon_sym_const] = ACTIONS(6811), + [anon_sym_constexpr] = ACTIONS(6811), + [anon_sym_volatile] = ACTIONS(6811), + [anon_sym_restrict] = ACTIONS(6811), + [anon_sym___restrict__] = ACTIONS(6811), + [anon_sym__Atomic] = ACTIONS(6811), + [anon_sym__Noreturn] = ACTIONS(6811), + [anon_sym_noreturn] = ACTIONS(6811), + [anon_sym__Nonnull] = ACTIONS(6811), + [anon_sym_mutable] = ACTIONS(6811), + [anon_sym_constinit] = ACTIONS(6811), + [anon_sym_consteval] = ACTIONS(6811), + [anon_sym_alignas] = ACTIONS(6811), + [anon_sym__Alignas] = ACTIONS(6811), + [anon_sym_QMARK] = ACTIONS(6813), + [anon_sym_LT_EQ_GT] = ACTIONS(6813), + [anon_sym_or] = ACTIONS(6811), + [anon_sym_and] = ACTIONS(6811), + [anon_sym_bitor] = ACTIONS(6811), + [anon_sym_xor] = ACTIONS(6811), + [anon_sym_bitand] = ACTIONS(6811), + [anon_sym_not_eq] = ACTIONS(6811), + [anon_sym_DASH_DASH] = ACTIONS(6813), + [anon_sym_PLUS_PLUS] = ACTIONS(6813), + [anon_sym_DOT] = ACTIONS(6811), + [anon_sym_DOT_STAR] = ACTIONS(6813), + [anon_sym_DASH_GT] = ACTIONS(6813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6811), + [anon_sym_decltype] = ACTIONS(6811), + [anon_sym_final] = ACTIONS(6811), + [anon_sym_override] = ACTIONS(6811), + [anon_sym_template] = ACTIONS(6811), + [anon_sym_requires] = ACTIONS(6811), + [anon_sym_LBRACK_COLON] = ACTIONS(6813), + }, + [STATE(4089)] = { + [sym_identifier] = ACTIONS(7838), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7840), + [anon_sym_COMMA] = ACTIONS(7840), + [anon_sym_RPAREN] = ACTIONS(7840), + [aux_sym_preproc_if_token2] = ACTIONS(7840), + [aux_sym_preproc_else_token1] = ACTIONS(7840), + [aux_sym_preproc_elif_token1] = ACTIONS(7838), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7840), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7840), + [anon_sym_LPAREN2] = ACTIONS(7840), + [anon_sym_DASH] = ACTIONS(7838), + [anon_sym_PLUS] = ACTIONS(7838), + [anon_sym_STAR] = ACTIONS(7838), + [anon_sym_SLASH] = ACTIONS(7838), + [anon_sym_PERCENT] = ACTIONS(7838), + [anon_sym_PIPE_PIPE] = ACTIONS(7840), + [anon_sym_AMP_AMP] = ACTIONS(7840), + [anon_sym_PIPE] = ACTIONS(7838), + [anon_sym_CARET] = ACTIONS(7838), + [anon_sym_AMP] = ACTIONS(7838), + [anon_sym_EQ_EQ] = ACTIONS(7840), + [anon_sym_BANG_EQ] = ACTIONS(7840), + [anon_sym_GT] = ACTIONS(7838), + [anon_sym_GT_EQ] = ACTIONS(7840), + [anon_sym_LT_EQ] = ACTIONS(7838), + [anon_sym_LT] = ACTIONS(7838), + [anon_sym_LT_LT] = ACTIONS(7838), + [anon_sym_GT_GT] = ACTIONS(7838), + [anon_sym_SEMI] = ACTIONS(7840), + [anon_sym___attribute__] = ACTIONS(7838), + [anon_sym___attribute] = ACTIONS(7838), + [anon_sym_COLON] = ACTIONS(7838), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7840), + [anon_sym_LBRACE] = ACTIONS(7840), + [anon_sym_RBRACE] = ACTIONS(7840), + [anon_sym_LBRACK] = ACTIONS(7840), + [anon_sym_EQ] = ACTIONS(7838), + [anon_sym_QMARK] = ACTIONS(7840), + [anon_sym_STAR_EQ] = ACTIONS(7840), + [anon_sym_SLASH_EQ] = ACTIONS(7840), + [anon_sym_PERCENT_EQ] = ACTIONS(7840), + [anon_sym_PLUS_EQ] = ACTIONS(7840), + [anon_sym_DASH_EQ] = ACTIONS(7840), + [anon_sym_LT_LT_EQ] = ACTIONS(7840), + [anon_sym_GT_GT_EQ] = ACTIONS(7840), + [anon_sym_AMP_EQ] = ACTIONS(7840), + [anon_sym_CARET_EQ] = ACTIONS(7840), + [anon_sym_PIPE_EQ] = ACTIONS(7840), + [anon_sym_and_eq] = ACTIONS(7838), + [anon_sym_or_eq] = ACTIONS(7838), + [anon_sym_xor_eq] = ACTIONS(7838), + [anon_sym_LT_EQ_GT] = ACTIONS(7840), + [anon_sym_or] = ACTIONS(7838), + [anon_sym_and] = ACTIONS(7838), + [anon_sym_bitor] = ACTIONS(7838), + [anon_sym_xor] = ACTIONS(7838), + [anon_sym_bitand] = ACTIONS(7838), + [anon_sym_not_eq] = ACTIONS(7838), + [anon_sym_DASH_DASH] = ACTIONS(7840), + [anon_sym_PLUS_PLUS] = ACTIONS(7840), + [anon_sym_DOT] = ACTIONS(7838), + [anon_sym_DOT_STAR] = ACTIONS(7840), + [anon_sym_DASH_GT] = ACTIONS(7840), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7840), + }, + [STATE(4090)] = { + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_RPAREN] = ACTIONS(7361), + [aux_sym_preproc_if_token2] = ACTIONS(7361), + [aux_sym_preproc_else_token1] = ACTIONS(7361), + [aux_sym_preproc_elif_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7361), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7361), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7359), + [anon_sym_COLON] = ACTIONS(7359), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(7361), + [anon_sym_RBRACE] = ACTIONS(7361), + [anon_sym_LBRACK] = ACTIONS(7361), + [anon_sym_EQ] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7361), + [anon_sym_STAR_EQ] = ACTIONS(7361), + [anon_sym_SLASH_EQ] = ACTIONS(7361), + [anon_sym_PERCENT_EQ] = ACTIONS(7361), + [anon_sym_PLUS_EQ] = ACTIONS(7361), + [anon_sym_DASH_EQ] = ACTIONS(7361), + [anon_sym_LT_LT_EQ] = ACTIONS(7361), + [anon_sym_GT_GT_EQ] = ACTIONS(7361), + [anon_sym_AMP_EQ] = ACTIONS(7361), + [anon_sym_CARET_EQ] = ACTIONS(7361), + [anon_sym_PIPE_EQ] = ACTIONS(7361), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7361), + }, + [STATE(4091)] = { + [sym_attribute_specifier] = STATE(4699), + [sym_enumerator_list] = STATE(4353), + [sym_identifier] = ACTIONS(7417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7419), + [anon_sym_COMMA] = ACTIONS(7419), + [anon_sym_LPAREN2] = ACTIONS(7419), + [anon_sym_DASH] = ACTIONS(7417), + [anon_sym_PLUS] = ACTIONS(7417), + [anon_sym_STAR] = ACTIONS(7419), + [anon_sym_SLASH] = ACTIONS(7417), + [anon_sym_PERCENT] = ACTIONS(7419), + [anon_sym_PIPE_PIPE] = ACTIONS(7419), + [anon_sym_AMP_AMP] = ACTIONS(7419), + [anon_sym_PIPE] = ACTIONS(7417), + [anon_sym_CARET] = ACTIONS(7419), + [anon_sym_AMP] = ACTIONS(7417), + [anon_sym_EQ_EQ] = ACTIONS(7419), + [anon_sym_BANG_EQ] = ACTIONS(7419), + [anon_sym_GT] = ACTIONS(7417), + [anon_sym_GT_EQ] = ACTIONS(7419), + [anon_sym_LT_EQ] = ACTIONS(7417), + [anon_sym_LT] = ACTIONS(7417), + [anon_sym_LT_LT] = ACTIONS(7419), + [anon_sym_GT_GT] = ACTIONS(7419), + [anon_sym___extension__] = ACTIONS(7417), + [anon_sym___attribute__] = ACTIONS(9688), + [anon_sym___attribute] = ACTIONS(9688), + [anon_sym_COLON_COLON] = ACTIONS(7419), + [anon_sym_LBRACE] = ACTIONS(9886), + [anon_sym_LBRACK] = ACTIONS(7417), + [anon_sym_RBRACK] = ACTIONS(7419), + [anon_sym_const] = ACTIONS(7417), + [anon_sym_constexpr] = ACTIONS(7417), + [anon_sym_volatile] = ACTIONS(7417), + [anon_sym_restrict] = ACTIONS(7417), + [anon_sym___restrict__] = ACTIONS(7417), + [anon_sym__Atomic] = ACTIONS(7417), + [anon_sym__Noreturn] = ACTIONS(7417), + [anon_sym_noreturn] = ACTIONS(7417), + [anon_sym__Nonnull] = ACTIONS(7417), + [anon_sym_mutable] = ACTIONS(7417), + [anon_sym_constinit] = ACTIONS(7417), + [anon_sym_consteval] = ACTIONS(7417), + [anon_sym_alignas] = ACTIONS(7417), + [anon_sym__Alignas] = ACTIONS(7417), + [anon_sym_QMARK] = ACTIONS(7419), + [anon_sym_LT_EQ_GT] = ACTIONS(7419), + [anon_sym_or] = ACTIONS(7417), + [anon_sym_and] = ACTIONS(7417), + [anon_sym_bitor] = ACTIONS(7417), + [anon_sym_xor] = ACTIONS(7417), + [anon_sym_bitand] = ACTIONS(7417), + [anon_sym_not_eq] = ACTIONS(7417), + [anon_sym_DASH_DASH] = ACTIONS(7419), + [anon_sym_PLUS_PLUS] = ACTIONS(7419), + [anon_sym_DOT] = ACTIONS(7417), + [anon_sym_DOT_STAR] = ACTIONS(7419), + [anon_sym_DASH_GT] = ACTIONS(7419), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7417), + [anon_sym_final] = ACTIONS(7417), + [anon_sym_override] = ACTIONS(7417), + [anon_sym_template] = ACTIONS(7417), + [anon_sym_requires] = ACTIONS(7417), + [anon_sym_LBRACK_COLON] = ACTIONS(7419), + }, + [STATE(4092)] = { + [sym_attribute_specifier] = STATE(4183), + [sym_identifier] = ACTIONS(7578), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7580), + [anon_sym_COMMA] = ACTIONS(7580), + [anon_sym_RPAREN] = ACTIONS(7580), + [anon_sym_LPAREN2] = ACTIONS(7580), + [anon_sym_TILDE] = ACTIONS(7580), + [anon_sym_STAR] = ACTIONS(7580), + [anon_sym_AMP_AMP] = ACTIONS(7580), + [anon_sym_AMP] = ACTIONS(7578), + [anon_sym_SEMI] = ACTIONS(7580), + [anon_sym___extension__] = ACTIONS(7578), + [anon_sym_virtual] = ACTIONS(7578), + [anon_sym_extern] = ACTIONS(7578), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7578), + [anon_sym_COLON_COLON] = ACTIONS(7580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7580), + [anon_sym___declspec] = ACTIONS(7578), + [anon_sym___based] = ACTIONS(7578), + [anon_sym___cdecl] = ACTIONS(7578), + [anon_sym___clrcall] = ACTIONS(7578), + [anon_sym___stdcall] = ACTIONS(7578), + [anon_sym___fastcall] = ACTIONS(7578), + [anon_sym___thiscall] = ACTIONS(7578), + [anon_sym___vectorcall] = ACTIONS(7578), + [anon_sym_LBRACE] = ACTIONS(7580), + [anon_sym_LBRACK] = ACTIONS(7578), + [anon_sym_static] = ACTIONS(7578), + [anon_sym_EQ] = ACTIONS(7580), + [anon_sym_register] = ACTIONS(7578), + [anon_sym_inline] = ACTIONS(7578), + [anon_sym___inline] = ACTIONS(7578), + [anon_sym___inline__] = ACTIONS(7578), + [anon_sym___forceinline] = ACTIONS(7578), + [anon_sym_thread_local] = ACTIONS(7578), + [anon_sym___thread] = ACTIONS(7578), + [anon_sym_const] = ACTIONS(7578), + [anon_sym_constexpr] = ACTIONS(7578), + [anon_sym_volatile] = ACTIONS(7578), + [anon_sym_restrict] = ACTIONS(7578), + [anon_sym___restrict__] = ACTIONS(7578), + [anon_sym__Atomic] = ACTIONS(7578), + [anon_sym__Noreturn] = ACTIONS(7578), + [anon_sym_noreturn] = ACTIONS(7578), + [anon_sym__Nonnull] = ACTIONS(7578), + [anon_sym_mutable] = ACTIONS(7578), + [anon_sym_constinit] = ACTIONS(7578), + [anon_sym_consteval] = ACTIONS(7578), + [anon_sym_alignas] = ACTIONS(7578), + [anon_sym__Alignas] = ACTIONS(7578), + [anon_sym_asm] = ACTIONS(7578), + [anon_sym___asm__] = ACTIONS(7578), + [anon_sym___asm] = ACTIONS(7578), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7578), + [anon_sym_final] = ACTIONS(7578), + [anon_sym_override] = ACTIONS(7578), + [anon_sym_template] = ACTIONS(7578), + [anon_sym_GT2] = ACTIONS(7580), + [anon_sym_operator] = ACTIONS(7578), + [anon_sym_try] = ACTIONS(7578), + [anon_sym_requires] = ACTIONS(7578), + [anon_sym_LBRACK_COLON] = ACTIONS(7580), + }, + [STATE(4093)] = { + [sym_argument_list] = STATE(4271), + [sym_initializer_list] = STATE(6708), + [aux_sym_sized_type_specifier_repeat1] = STATE(2692), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7363), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(4974), + [anon_sym_signed] = ACTIONS(8554), + [anon_sym_unsigned] = ACTIONS(8554), + [anon_sym_long] = ACTIONS(8554), + [anon_sym_short] = ACTIONS(8554), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(4094)] = { + [sym_identifier] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3108), + [anon_sym_COMMA] = ACTIONS(3108), + [anon_sym_RPAREN] = ACTIONS(3108), + [anon_sym_LPAREN2] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3108), + [anon_sym_STAR] = ACTIONS(3108), + [anon_sym_AMP_AMP] = ACTIONS(3108), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym_SEMI] = ACTIONS(3108), + [anon_sym___extension__] = ACTIONS(3118), + [anon_sym_virtual] = ACTIONS(3118), + [anon_sym_extern] = ACTIONS(3118), + [anon_sym___attribute__] = ACTIONS(3118), + [anon_sym___attribute] = ACTIONS(3118), + [anon_sym_COLON] = ACTIONS(3118), + [anon_sym_COLON_COLON] = ACTIONS(3108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3108), + [anon_sym___declspec] = ACTIONS(3118), + [anon_sym___based] = ACTIONS(3118), + [anon_sym___cdecl] = ACTIONS(3118), + [anon_sym___clrcall] = ACTIONS(3118), + [anon_sym___stdcall] = ACTIONS(3118), + [anon_sym___fastcall] = ACTIONS(3118), + [anon_sym___thiscall] = ACTIONS(3118), + [anon_sym___vectorcall] = ACTIONS(3118), + [anon_sym_LBRACE] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3118), + [anon_sym_static] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(3108), + [anon_sym_register] = ACTIONS(3118), + [anon_sym_inline] = ACTIONS(3118), + [anon_sym___inline] = ACTIONS(3118), + [anon_sym___inline__] = ACTIONS(3118), + [anon_sym___forceinline] = ACTIONS(3118), + [anon_sym_thread_local] = ACTIONS(3118), + [anon_sym___thread] = ACTIONS(3118), + [anon_sym_const] = ACTIONS(3118), + [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_asm] = ACTIONS(3118), + [anon_sym___asm__] = ACTIONS(3118), + [anon_sym___asm] = ACTIONS(3118), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3118), + [anon_sym_final] = ACTIONS(3118), + [anon_sym_override] = ACTIONS(3118), + [anon_sym_explicit] = ACTIONS(3118), + [anon_sym_template] = ACTIONS(3118), + [anon_sym_GT2] = ACTIONS(3108), + [anon_sym_operator] = ACTIONS(3118), + [anon_sym_try] = ACTIONS(3118), + [anon_sym_requires] = ACTIONS(3118), + [anon_sym_LBRACK_COLON] = ACTIONS(3108), + }, + [STATE(4095)] = { + [sym_identifier] = ACTIONS(10117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10119), + [anon_sym_COMMA] = ACTIONS(10119), + [anon_sym_RPAREN] = ACTIONS(10119), + [aux_sym_preproc_if_token2] = ACTIONS(10119), + [aux_sym_preproc_else_token1] = ACTIONS(10119), + [aux_sym_preproc_elif_token1] = ACTIONS(10117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10119), + [anon_sym_LPAREN2] = ACTIONS(10119), + [anon_sym_DASH] = ACTIONS(10117), + [anon_sym_PLUS] = ACTIONS(10117), + [anon_sym_STAR] = ACTIONS(10117), + [anon_sym_SLASH] = ACTIONS(10117), + [anon_sym_PERCENT] = ACTIONS(10117), + [anon_sym_PIPE_PIPE] = ACTIONS(10119), + [anon_sym_AMP_AMP] = ACTIONS(10119), + [anon_sym_PIPE] = ACTIONS(10117), + [anon_sym_CARET] = ACTIONS(10117), + [anon_sym_AMP] = ACTIONS(10117), + [anon_sym_EQ_EQ] = ACTIONS(10119), + [anon_sym_BANG_EQ] = ACTIONS(10119), + [anon_sym_GT] = ACTIONS(10117), + [anon_sym_GT_EQ] = ACTIONS(10119), + [anon_sym_LT_EQ] = ACTIONS(10117), + [anon_sym_LT] = ACTIONS(10117), + [anon_sym_LT_LT] = ACTIONS(10117), + [anon_sym_GT_GT] = ACTIONS(10117), + [anon_sym_SEMI] = ACTIONS(10119), + [anon_sym___attribute__] = ACTIONS(10117), + [anon_sym___attribute] = ACTIONS(10117), + [anon_sym_COLON] = ACTIONS(10117), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10119), + [anon_sym_LBRACE] = ACTIONS(10119), + [anon_sym_RBRACE] = ACTIONS(10119), + [anon_sym_LBRACK] = ACTIONS(10119), + [anon_sym_EQ] = ACTIONS(10117), + [anon_sym_QMARK] = ACTIONS(10119), + [anon_sym_STAR_EQ] = ACTIONS(10119), + [anon_sym_SLASH_EQ] = ACTIONS(10119), + [anon_sym_PERCENT_EQ] = ACTIONS(10119), + [anon_sym_PLUS_EQ] = ACTIONS(10119), + [anon_sym_DASH_EQ] = ACTIONS(10119), + [anon_sym_LT_LT_EQ] = ACTIONS(10119), + [anon_sym_GT_GT_EQ] = ACTIONS(10119), + [anon_sym_AMP_EQ] = ACTIONS(10119), + [anon_sym_CARET_EQ] = ACTIONS(10119), + [anon_sym_PIPE_EQ] = ACTIONS(10119), + [anon_sym_and_eq] = ACTIONS(10117), + [anon_sym_or_eq] = ACTIONS(10117), + [anon_sym_xor_eq] = ACTIONS(10117), + [anon_sym_LT_EQ_GT] = ACTIONS(10119), + [anon_sym_or] = ACTIONS(10117), + [anon_sym_and] = ACTIONS(10117), + [anon_sym_bitor] = ACTIONS(10117), + [anon_sym_xor] = ACTIONS(10117), + [anon_sym_bitand] = ACTIONS(10117), + [anon_sym_not_eq] = ACTIONS(10117), + [anon_sym_DASH_DASH] = ACTIONS(10119), + [anon_sym_PLUS_PLUS] = ACTIONS(10119), + [anon_sym_DOT] = ACTIONS(10117), + [anon_sym_DOT_STAR] = ACTIONS(10119), + [anon_sym_DASH_GT] = ACTIONS(10119), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10119), + }, + [STATE(4096)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(6849), + [sym_ms_pointer_modifier] = STATE(4097), + [sym__abstract_declarator] = STATE(9732), + [sym_abstract_parenthesized_declarator] = STATE(9348), + [sym_abstract_pointer_declarator] = STATE(9348), + [sym_abstract_function_declarator] = STATE(9348), + [sym_abstract_array_declarator] = STATE(9348), + [sym_type_qualifier] = STATE(5030), + [sym_alignas_qualifier] = STATE(4094), + [sym_parameter_list] = STATE(5489), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(9348), + [sym__function_declarator_seq] = STATE(9349), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9619), + [sym_abstract_qualified_identifier] = STATE(9348), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(5030), + [aux_sym_pointer_declarator_repeat1] = STATE(4097), + [sym_identifier] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5994), + [anon_sym_LPAREN2] = ACTIONS(9637), + [anon_sym_STAR] = ACTIONS(10121), + [anon_sym_AMP_AMP] = ACTIONS(10123), + [anon_sym_AMP] = ACTIONS(10125), + [anon_sym_SEMI] = ACTIONS(5994), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_COLON_COLON] = ACTIONS(10127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5994), + [sym_ms_restrict_modifier] = ACTIONS(9647), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(9647), + [sym_ms_signed_ptr_modifier] = ACTIONS(9647), + [anon_sym__unaligned] = ACTIONS(9649), + [anon_sym___unaligned] = ACTIONS(9649), + [anon_sym_LBRACE] = ACTIONS(5994), + [anon_sym_LBRACK] = ACTIONS(9651), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [anon_sym_asm] = ACTIONS(5996), + [anon_sym___asm__] = ACTIONS(5996), + [anon_sym___asm] = ACTIONS(5996), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5996), + [anon_sym_override] = ACTIONS(5996), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_try] = ACTIONS(5996), + [anon_sym_requires] = ACTIONS(5996), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(4097)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(6849), + [sym_ms_pointer_modifier] = STATE(6442), + [sym__abstract_declarator] = STATE(9736), + [sym_abstract_parenthesized_declarator] = STATE(9348), + [sym_abstract_pointer_declarator] = STATE(9348), + [sym_abstract_function_declarator] = STATE(9348), + [sym_abstract_array_declarator] = STATE(9348), + [sym_type_qualifier] = STATE(5037), + [sym_alignas_qualifier] = STATE(4094), + [sym_parameter_list] = STATE(5489), + [sym_decltype] = STATE(13053), + [sym_abstract_reference_declarator] = STATE(9348), + [sym__function_declarator_seq] = STATE(9349), + [sym_template_type] = STATE(13053), + [sym_dependent_type_identifier] = STATE(13053), + [sym__scope_resolution] = STATE(9619), + [sym_abstract_qualified_identifier] = STATE(9348), + [sym_splice_specifier] = STATE(9224), + [sym__splice_specialization_specifier] = STATE(3495), + [sym_splice_type_specifier] = STATE(13053), + [sym_splice_expression] = STATE(13053), + [aux_sym__type_definition_type_repeat1] = STATE(5037), + [aux_sym_pointer_declarator_repeat1] = STATE(6442), + [sym_identifier] = ACTIONS(5966), + [anon_sym_COMMA] = ACTIONS(5968), + [anon_sym_LPAREN2] = ACTIONS(9637), + [anon_sym_STAR] = ACTIONS(10121), + [anon_sym_AMP_AMP] = ACTIONS(10123), + [anon_sym_AMP] = ACTIONS(10125), + [anon_sym_SEMI] = ACTIONS(5968), + [anon_sym___extension__] = ACTIONS(8587), + [anon_sym_COLON_COLON] = ACTIONS(10127), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5968), + [sym_ms_restrict_modifier] = ACTIONS(9647), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(9647), + [sym_ms_signed_ptr_modifier] = ACTIONS(9647), + [anon_sym__unaligned] = ACTIONS(9649), + [anon_sym___unaligned] = ACTIONS(9649), + [anon_sym_LBRACE] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(9651), + [anon_sym_const] = ACTIONS(8587), + [anon_sym_constexpr] = ACTIONS(8587), + [anon_sym_volatile] = ACTIONS(8587), + [anon_sym_restrict] = ACTIONS(8587), + [anon_sym___restrict__] = ACTIONS(8587), + [anon_sym__Atomic] = ACTIONS(8587), + [anon_sym__Noreturn] = ACTIONS(8587), + [anon_sym_noreturn] = ACTIONS(8587), + [anon_sym__Nonnull] = ACTIONS(8587), + [anon_sym_mutable] = ACTIONS(8587), + [anon_sym_constinit] = ACTIONS(8587), + [anon_sym_consteval] = ACTIONS(8587), + [anon_sym_alignas] = ACTIONS(8601), + [anon_sym__Alignas] = ACTIONS(8601), + [anon_sym_asm] = ACTIONS(5970), + [anon_sym___asm__] = ACTIONS(5970), + [anon_sym___asm] = ACTIONS(5970), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_final] = ACTIONS(5970), + [anon_sym_override] = ACTIONS(5970), + [anon_sym_template] = ACTIONS(5194), + [anon_sym_try] = ACTIONS(5970), + [anon_sym_requires] = ACTIONS(5970), + [anon_sym_LBRACK_COLON] = ACTIONS(5992), + }, + [STATE(4098)] = { + [sym_attribute_specifier] = STATE(4305), + [sym_identifier] = ACTIONS(7570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7572), + [anon_sym_COMMA] = ACTIONS(7572), + [anon_sym_RPAREN] = ACTIONS(7572), + [anon_sym_LPAREN2] = ACTIONS(7572), + [anon_sym_TILDE] = ACTIONS(7572), + [anon_sym_STAR] = ACTIONS(7572), + [anon_sym_AMP_AMP] = ACTIONS(7572), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_SEMI] = ACTIONS(7572), + [anon_sym___extension__] = ACTIONS(7570), + [anon_sym_virtual] = ACTIONS(7570), + [anon_sym_extern] = ACTIONS(7570), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7570), + [anon_sym_COLON_COLON] = ACTIONS(7572), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7572), + [anon_sym___declspec] = ACTIONS(7570), + [anon_sym___based] = ACTIONS(7570), + [anon_sym___cdecl] = ACTIONS(7570), + [anon_sym___clrcall] = ACTIONS(7570), + [anon_sym___stdcall] = ACTIONS(7570), + [anon_sym___fastcall] = ACTIONS(7570), + [anon_sym___thiscall] = ACTIONS(7570), + [anon_sym___vectorcall] = ACTIONS(7570), + [anon_sym_LBRACE] = ACTIONS(7572), + [anon_sym_LBRACK] = ACTIONS(7570), + [anon_sym_static] = ACTIONS(7570), + [anon_sym_EQ] = ACTIONS(7572), + [anon_sym_register] = ACTIONS(7570), + [anon_sym_inline] = ACTIONS(7570), + [anon_sym___inline] = ACTIONS(7570), + [anon_sym___inline__] = ACTIONS(7570), + [anon_sym___forceinline] = ACTIONS(7570), + [anon_sym_thread_local] = ACTIONS(7570), + [anon_sym___thread] = ACTIONS(7570), + [anon_sym_const] = ACTIONS(7570), + [anon_sym_constexpr] = ACTIONS(7570), + [anon_sym_volatile] = ACTIONS(7570), + [anon_sym_restrict] = ACTIONS(7570), + [anon_sym___restrict__] = ACTIONS(7570), + [anon_sym__Atomic] = ACTIONS(7570), + [anon_sym__Noreturn] = ACTIONS(7570), + [anon_sym_noreturn] = ACTIONS(7570), + [anon_sym__Nonnull] = ACTIONS(7570), + [anon_sym_mutable] = ACTIONS(7570), + [anon_sym_constinit] = ACTIONS(7570), + [anon_sym_consteval] = ACTIONS(7570), + [anon_sym_alignas] = ACTIONS(7570), + [anon_sym__Alignas] = ACTIONS(7570), + [anon_sym_asm] = ACTIONS(7570), + [anon_sym___asm__] = ACTIONS(7570), + [anon_sym___asm] = ACTIONS(7570), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7570), + [anon_sym_final] = ACTIONS(7570), + [anon_sym_override] = ACTIONS(7570), + [anon_sym_template] = ACTIONS(7570), + [anon_sym_GT2] = ACTIONS(7572), + [anon_sym_operator] = ACTIONS(7570), + [anon_sym_try] = ACTIONS(7570), + [anon_sym_requires] = ACTIONS(7570), + [anon_sym_LBRACK_COLON] = ACTIONS(7572), + }, + [STATE(4099)] = { + [sym_argument_list] = STATE(6413), + [sym_initializer_list] = STATE(8213), + [aux_sym_sized_type_specifier_repeat1] = STATE(3795), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8462), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(4960), + [anon_sym_signed] = ACTIONS(9684), + [anon_sym_unsigned] = ACTIONS(9684), + [anon_sym_long] = ACTIONS(9684), + [anon_sym_short] = ACTIONS(9684), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7361), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(4100)] = { + [sym_identifier] = ACTIONS(10129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10131), + [anon_sym_COMMA] = ACTIONS(10131), + [anon_sym_RPAREN] = ACTIONS(10131), + [aux_sym_preproc_if_token2] = ACTIONS(10131), + [aux_sym_preproc_else_token1] = ACTIONS(10131), + [aux_sym_preproc_elif_token1] = ACTIONS(10129), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10131), + [anon_sym_LPAREN2] = ACTIONS(10131), + [anon_sym_DASH] = ACTIONS(10129), + [anon_sym_PLUS] = ACTIONS(10129), + [anon_sym_STAR] = ACTIONS(10129), + [anon_sym_SLASH] = ACTIONS(10129), + [anon_sym_PERCENT] = ACTIONS(10129), + [anon_sym_PIPE_PIPE] = ACTIONS(10131), + [anon_sym_AMP_AMP] = ACTIONS(10131), + [anon_sym_PIPE] = ACTIONS(10129), + [anon_sym_CARET] = ACTIONS(10129), + [anon_sym_AMP] = ACTIONS(10129), + [anon_sym_EQ_EQ] = ACTIONS(10131), + [anon_sym_BANG_EQ] = ACTIONS(10131), + [anon_sym_GT] = ACTIONS(10129), + [anon_sym_GT_EQ] = ACTIONS(10131), + [anon_sym_LT_EQ] = ACTIONS(10129), + [anon_sym_LT] = ACTIONS(10129), + [anon_sym_LT_LT] = ACTIONS(10129), + [anon_sym_GT_GT] = ACTIONS(10129), + [anon_sym_SEMI] = ACTIONS(10131), + [anon_sym___attribute__] = ACTIONS(10129), + [anon_sym___attribute] = ACTIONS(10129), + [anon_sym_COLON] = ACTIONS(10129), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10131), + [anon_sym_LBRACE] = ACTIONS(10131), + [anon_sym_RBRACE] = ACTIONS(10131), + [anon_sym_LBRACK] = ACTIONS(10131), + [anon_sym_EQ] = ACTIONS(10129), + [anon_sym_QMARK] = ACTIONS(10131), + [anon_sym_STAR_EQ] = ACTIONS(10131), + [anon_sym_SLASH_EQ] = ACTIONS(10131), + [anon_sym_PERCENT_EQ] = ACTIONS(10131), + [anon_sym_PLUS_EQ] = ACTIONS(10131), + [anon_sym_DASH_EQ] = ACTIONS(10131), + [anon_sym_LT_LT_EQ] = ACTIONS(10131), + [anon_sym_GT_GT_EQ] = ACTIONS(10131), + [anon_sym_AMP_EQ] = ACTIONS(10131), + [anon_sym_CARET_EQ] = ACTIONS(10131), + [anon_sym_PIPE_EQ] = ACTIONS(10131), + [anon_sym_and_eq] = ACTIONS(10129), + [anon_sym_or_eq] = ACTIONS(10129), + [anon_sym_xor_eq] = ACTIONS(10129), + [anon_sym_LT_EQ_GT] = ACTIONS(10131), + [anon_sym_or] = ACTIONS(10129), + [anon_sym_and] = ACTIONS(10129), + [anon_sym_bitor] = ACTIONS(10129), + [anon_sym_xor] = ACTIONS(10129), + [anon_sym_bitand] = ACTIONS(10129), + [anon_sym_not_eq] = ACTIONS(10129), + [anon_sym_DASH_DASH] = ACTIONS(10131), + [anon_sym_PLUS_PLUS] = ACTIONS(10131), + [anon_sym_DOT] = ACTIONS(10129), + [anon_sym_DOT_STAR] = ACTIONS(10131), + [anon_sym_DASH_GT] = ACTIONS(10131), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10131), + }, + [STATE(4101)] = { + [sym_string_literal] = STATE(3950), + [sym_raw_string_literal] = STATE(3950), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9517), + [anon_sym_COMMA] = ACTIONS(9517), + [anon_sym_RPAREN] = ACTIONS(9517), + [anon_sym_LPAREN2] = ACTIONS(9517), + [anon_sym_DASH] = ACTIONS(9519), + [anon_sym_PLUS] = ACTIONS(9519), + [anon_sym_STAR] = ACTIONS(9519), + [anon_sym_SLASH] = ACTIONS(9519), + [anon_sym_PERCENT] = ACTIONS(9519), + [anon_sym_PIPE_PIPE] = ACTIONS(9517), + [anon_sym_AMP_AMP] = ACTIONS(9517), + [anon_sym_PIPE] = ACTIONS(9519), + [anon_sym_CARET] = ACTIONS(9519), + [anon_sym_AMP] = ACTIONS(9519), + [anon_sym_EQ_EQ] = ACTIONS(9517), + [anon_sym_BANG_EQ] = ACTIONS(9517), + [anon_sym_GT] = ACTIONS(9519), + [anon_sym_GT_EQ] = ACTIONS(9517), + [anon_sym_LT_EQ] = ACTIONS(9519), + [anon_sym_LT] = ACTIONS(9519), + [anon_sym_LT_LT] = ACTIONS(9519), + [anon_sym_GT_GT] = ACTIONS(9519), + [anon_sym_LBRACK] = ACTIONS(9517), + [anon_sym_EQ] = ACTIONS(9519), + [anon_sym_QMARK] = ACTIONS(9517), + [anon_sym_STAR_EQ] = ACTIONS(9517), + [anon_sym_SLASH_EQ] = ACTIONS(9517), + [anon_sym_PERCENT_EQ] = ACTIONS(9517), + [anon_sym_PLUS_EQ] = ACTIONS(9517), + [anon_sym_DASH_EQ] = ACTIONS(9517), + [anon_sym_LT_LT_EQ] = ACTIONS(9517), + [anon_sym_GT_GT_EQ] = ACTIONS(9517), + [anon_sym_AMP_EQ] = ACTIONS(9517), + [anon_sym_CARET_EQ] = ACTIONS(9517), + [anon_sym_PIPE_EQ] = ACTIONS(9517), + [anon_sym_and_eq] = ACTIONS(9519), + [anon_sym_or_eq] = ACTIONS(9519), + [anon_sym_xor_eq] = ACTIONS(9519), + [anon_sym_LT_EQ_GT] = ACTIONS(9517), + [anon_sym_or] = ACTIONS(9519), + [anon_sym_and] = ACTIONS(9519), + [anon_sym_bitor] = ACTIONS(9519), + [anon_sym_xor] = ACTIONS(9519), + [anon_sym_bitand] = ACTIONS(9519), + [anon_sym_not_eq] = ACTIONS(9519), + [anon_sym_DASH_DASH] = ACTIONS(9517), + [anon_sym_PLUS_PLUS] = ACTIONS(9517), + [anon_sym_DOT] = ACTIONS(9519), + [anon_sym_DOT_STAR] = ACTIONS(9517), + [anon_sym_DASH_GT] = ACTIONS(9519), + [anon_sym_L_DQUOTE] = ACTIONS(7111), + [anon_sym_u_DQUOTE] = ACTIONS(7111), + [anon_sym_U_DQUOTE] = ACTIONS(7111), + [anon_sym_u8_DQUOTE] = ACTIONS(7111), + [anon_sym_DQUOTE] = ACTIONS(7111), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7113), + [anon_sym_LR_DQUOTE] = ACTIONS(7113), + [anon_sym_uR_DQUOTE] = ACTIONS(7113), + [anon_sym_UR_DQUOTE] = ACTIONS(7113), + [anon_sym_u8R_DQUOTE] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(9517), + [sym_literal_suffix] = ACTIONS(9519), + }, + [STATE(4102)] = { + [sym_attribute_specifier] = STATE(4299), + [sym_identifier] = ACTIONS(7692), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7694), + [anon_sym_COMMA] = ACTIONS(7694), + [anon_sym_RPAREN] = ACTIONS(7694), + [anon_sym_LPAREN2] = ACTIONS(7694), + [anon_sym_TILDE] = ACTIONS(7694), + [anon_sym_STAR] = ACTIONS(7694), + [anon_sym_AMP_AMP] = ACTIONS(7694), + [anon_sym_AMP] = ACTIONS(7692), + [anon_sym_SEMI] = ACTIONS(7694), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym_virtual] = ACTIONS(7692), + [anon_sym_extern] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7692), + [anon_sym_COLON_COLON] = ACTIONS(7694), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7694), + [anon_sym___declspec] = ACTIONS(7692), + [anon_sym___based] = ACTIONS(7692), + [anon_sym___cdecl] = ACTIONS(7692), + [anon_sym___clrcall] = ACTIONS(7692), + [anon_sym___stdcall] = ACTIONS(7692), + [anon_sym___fastcall] = ACTIONS(7692), + [anon_sym___thiscall] = ACTIONS(7692), + [anon_sym___vectorcall] = ACTIONS(7692), + [anon_sym_LBRACE] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_static] = ACTIONS(7692), + [anon_sym_EQ] = ACTIONS(7694), + [anon_sym_register] = ACTIONS(7692), + [anon_sym_inline] = ACTIONS(7692), + [anon_sym___inline] = ACTIONS(7692), + [anon_sym___inline__] = ACTIONS(7692), + [anon_sym___forceinline] = ACTIONS(7692), + [anon_sym_thread_local] = ACTIONS(7692), + [anon_sym___thread] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7692), + [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_asm] = ACTIONS(7692), + [anon_sym___asm__] = ACTIONS(7692), + [anon_sym___asm] = ACTIONS(7692), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7692), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_template] = ACTIONS(7692), + [anon_sym_GT2] = ACTIONS(7694), + [anon_sym_operator] = ACTIONS(7692), + [anon_sym_try] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_LBRACK_COLON] = ACTIONS(7694), + }, + [STATE(4103)] = { + [sym_identifier] = ACTIONS(7495), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_RBRACK] = ACTIONS(7497), + [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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(4104)] = { + [sym_identifier] = ACTIONS(7495), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_RBRACK] = ACTIONS(7497), + [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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(4105)] = { + [sym_type_qualifier] = STATE(4206), + [sym_alignas_qualifier] = STATE(4606), + [aux_sym__type_definition_type_repeat1] = STATE(4206), + [aux_sym_sized_type_specifier_repeat1] = STATE(7040), + [sym_identifier] = ACTIONS(10133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7023), + [anon_sym_COMMA] = ACTIONS(7023), + [anon_sym_LPAREN2] = ACTIONS(7023), + [anon_sym_DASH] = ACTIONS(7025), + [anon_sym_PLUS] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(7023), + [anon_sym_SLASH] = ACTIONS(7025), + [anon_sym_PERCENT] = ACTIONS(7023), + [anon_sym_PIPE_PIPE] = ACTIONS(7023), + [anon_sym_AMP_AMP] = ACTIONS(7023), + [anon_sym_PIPE] = ACTIONS(7025), + [anon_sym_CARET] = ACTIONS(7023), + [anon_sym_AMP] = ACTIONS(7025), + [anon_sym_EQ_EQ] = ACTIONS(7023), + [anon_sym_BANG_EQ] = ACTIONS(7023), + [anon_sym_GT] = ACTIONS(7025), + [anon_sym_GT_EQ] = ACTIONS(7023), + [anon_sym_LT_EQ] = ACTIONS(7025), + [anon_sym_LT] = ACTIONS(7025), + [anon_sym_LT_LT] = ACTIONS(7023), + [anon_sym_GT_GT] = ACTIONS(7023), + [anon_sym___extension__] = ACTIONS(10135), + [anon_sym___attribute__] = ACTIONS(7025), + [anon_sym___attribute] = ACTIONS(7025), + [anon_sym_LBRACE] = ACTIONS(7023), + [anon_sym_signed] = ACTIONS(10137), + [anon_sym_unsigned] = ACTIONS(10137), + [anon_sym_long] = ACTIONS(10137), + [anon_sym_short] = ACTIONS(10137), + [anon_sym_LBRACK] = ACTIONS(7023), + [anon_sym_RBRACK] = ACTIONS(7023), + [anon_sym_const] = ACTIONS(10135), + [anon_sym_constexpr] = ACTIONS(10135), + [anon_sym_volatile] = ACTIONS(10135), + [anon_sym_restrict] = ACTIONS(10135), + [anon_sym___restrict__] = ACTIONS(10135), + [anon_sym__Atomic] = ACTIONS(10135), + [anon_sym__Noreturn] = ACTIONS(10135), + [anon_sym_noreturn] = ACTIONS(10135), + [anon_sym__Nonnull] = ACTIONS(10135), + [anon_sym_mutable] = ACTIONS(10135), + [anon_sym_constinit] = ACTIONS(10135), + [anon_sym_consteval] = ACTIONS(10135), + [anon_sym_alignas] = ACTIONS(10139), + [anon_sym__Alignas] = ACTIONS(10139), + [sym_primitive_type] = ACTIONS(10141), + [anon_sym_QMARK] = ACTIONS(7023), + [anon_sym_LT_EQ_GT] = ACTIONS(7023), + [anon_sym_or] = ACTIONS(7025), + [anon_sym_and] = ACTIONS(7025), + [anon_sym_bitor] = ACTIONS(7025), + [anon_sym_xor] = ACTIONS(7025), + [anon_sym_bitand] = ACTIONS(7025), + [anon_sym_not_eq] = ACTIONS(7025), + [anon_sym_DASH_DASH] = ACTIONS(7023), + [anon_sym_PLUS_PLUS] = ACTIONS(7023), + [anon_sym_DOT] = ACTIONS(7025), + [anon_sym_DOT_STAR] = ACTIONS(7023), + [anon_sym_DASH_GT] = ACTIONS(7023), + [sym_comment] = ACTIONS(3), + }, + [STATE(4106)] = { + [sym_identifier] = ACTIONS(7495), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7495), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = 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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_GT2] = ACTIONS(7497), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(4107)] = { + [sym_identifier] = ACTIONS(7519), + [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(7521), + [anon_sym_SLASH] = ACTIONS(7519), + [anon_sym_PERCENT] = ACTIONS(7521), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7519), + [anon_sym_CARET] = ACTIONS(7521), + [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(7521), + [anon_sym_GT_GT] = ACTIONS(7521), + [anon_sym___extension__] = ACTIONS(7519), + [anon_sym___attribute__] = ACTIONS(7519), + [anon_sym___attribute] = ACTIONS(7519), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_COLON_COLON] = ACTIONS(7521), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7519), + [anon_sym_RBRACK] = ACTIONS(7521), + [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_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), + [sym_auto] = ACTIONS(7519), + [anon_sym_decltype] = ACTIONS(7519), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_template] = ACTIONS(7519), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_LBRACK_COLON] = ACTIONS(7521), + }, + [STATE(4108)] = { + [sym_identifier] = ACTIONS(10143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10145), + [anon_sym_COMMA] = ACTIONS(10145), + [anon_sym_RPAREN] = ACTIONS(10145), + [aux_sym_preproc_if_token2] = ACTIONS(10145), + [aux_sym_preproc_else_token1] = ACTIONS(10145), + [aux_sym_preproc_elif_token1] = ACTIONS(10143), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10145), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10145), + [anon_sym_LPAREN2] = ACTIONS(10145), + [anon_sym_DASH] = ACTIONS(10143), + [anon_sym_PLUS] = ACTIONS(10143), + [anon_sym_STAR] = ACTIONS(10143), + [anon_sym_SLASH] = ACTIONS(10143), + [anon_sym_PERCENT] = ACTIONS(10143), + [anon_sym_PIPE_PIPE] = ACTIONS(10145), + [anon_sym_AMP_AMP] = ACTIONS(10145), + [anon_sym_PIPE] = ACTIONS(10143), + [anon_sym_CARET] = ACTIONS(10143), + [anon_sym_AMP] = ACTIONS(10143), + [anon_sym_EQ_EQ] = ACTIONS(10145), + [anon_sym_BANG_EQ] = ACTIONS(10145), + [anon_sym_GT] = ACTIONS(10143), + [anon_sym_GT_EQ] = ACTIONS(10145), + [anon_sym_LT_EQ] = ACTIONS(10143), + [anon_sym_LT] = ACTIONS(10143), + [anon_sym_LT_LT] = ACTIONS(10143), + [anon_sym_GT_GT] = ACTIONS(10143), + [anon_sym_SEMI] = ACTIONS(10145), + [anon_sym___attribute__] = ACTIONS(10143), + [anon_sym___attribute] = ACTIONS(10143), + [anon_sym_COLON] = ACTIONS(10143), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10145), + [anon_sym_LBRACE] = ACTIONS(10145), + [anon_sym_RBRACE] = ACTIONS(10145), + [anon_sym_LBRACK] = ACTIONS(10145), + [anon_sym_EQ] = ACTIONS(10143), + [anon_sym_QMARK] = ACTIONS(10145), + [anon_sym_STAR_EQ] = ACTIONS(10145), + [anon_sym_SLASH_EQ] = ACTIONS(10145), + [anon_sym_PERCENT_EQ] = ACTIONS(10145), + [anon_sym_PLUS_EQ] = ACTIONS(10145), + [anon_sym_DASH_EQ] = ACTIONS(10145), + [anon_sym_LT_LT_EQ] = ACTIONS(10145), + [anon_sym_GT_GT_EQ] = ACTIONS(10145), + [anon_sym_AMP_EQ] = ACTIONS(10145), + [anon_sym_CARET_EQ] = ACTIONS(10145), + [anon_sym_PIPE_EQ] = ACTIONS(10145), + [anon_sym_and_eq] = ACTIONS(10143), + [anon_sym_or_eq] = ACTIONS(10143), + [anon_sym_xor_eq] = ACTIONS(10143), + [anon_sym_LT_EQ_GT] = ACTIONS(10145), + [anon_sym_or] = ACTIONS(10143), + [anon_sym_and] = ACTIONS(10143), + [anon_sym_bitor] = ACTIONS(10143), + [anon_sym_xor] = ACTIONS(10143), + [anon_sym_bitand] = ACTIONS(10143), + [anon_sym_not_eq] = ACTIONS(10143), + [anon_sym_DASH_DASH] = ACTIONS(10145), + [anon_sym_PLUS_PLUS] = ACTIONS(10145), + [anon_sym_DOT] = ACTIONS(10143), + [anon_sym_DOT_STAR] = ACTIONS(10145), + [anon_sym_DASH_GT] = ACTIONS(10145), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10145), + }, + [STATE(4109)] = { + [sym_attribute_specifier] = STATE(4283), + [sym_identifier] = ACTIONS(7617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7619), + [anon_sym_COMMA] = ACTIONS(7619), + [anon_sym_RPAREN] = ACTIONS(7619), + [anon_sym_LPAREN2] = ACTIONS(7619), + [anon_sym_TILDE] = ACTIONS(7619), + [anon_sym_STAR] = ACTIONS(7619), + [anon_sym_AMP_AMP] = ACTIONS(7619), + [anon_sym_AMP] = ACTIONS(7617), + [anon_sym_SEMI] = ACTIONS(7619), + [anon_sym___extension__] = ACTIONS(7617), + [anon_sym_virtual] = ACTIONS(7617), + [anon_sym_extern] = ACTIONS(7617), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7617), + [anon_sym_COLON_COLON] = ACTIONS(7619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7619), + [anon_sym___declspec] = ACTIONS(7617), + [anon_sym___based] = ACTIONS(7617), + [anon_sym___cdecl] = ACTIONS(7617), + [anon_sym___clrcall] = ACTIONS(7617), + [anon_sym___stdcall] = ACTIONS(7617), + [anon_sym___fastcall] = ACTIONS(7617), + [anon_sym___thiscall] = ACTIONS(7617), + [anon_sym___vectorcall] = ACTIONS(7617), + [anon_sym_LBRACE] = ACTIONS(7619), + [anon_sym_LBRACK] = ACTIONS(7617), + [anon_sym_static] = ACTIONS(7617), + [anon_sym_EQ] = ACTIONS(7619), + [anon_sym_register] = ACTIONS(7617), + [anon_sym_inline] = ACTIONS(7617), + [anon_sym___inline] = ACTIONS(7617), + [anon_sym___inline__] = ACTIONS(7617), + [anon_sym___forceinline] = ACTIONS(7617), + [anon_sym_thread_local] = ACTIONS(7617), + [anon_sym___thread] = ACTIONS(7617), + [anon_sym_const] = ACTIONS(7617), + [anon_sym_constexpr] = ACTIONS(7617), + [anon_sym_volatile] = ACTIONS(7617), + [anon_sym_restrict] = ACTIONS(7617), + [anon_sym___restrict__] = ACTIONS(7617), + [anon_sym__Atomic] = ACTIONS(7617), + [anon_sym__Noreturn] = ACTIONS(7617), + [anon_sym_noreturn] = ACTIONS(7617), + [anon_sym__Nonnull] = ACTIONS(7617), + [anon_sym_mutable] = ACTIONS(7617), + [anon_sym_constinit] = ACTIONS(7617), + [anon_sym_consteval] = ACTIONS(7617), + [anon_sym_alignas] = ACTIONS(7617), + [anon_sym__Alignas] = ACTIONS(7617), + [anon_sym_asm] = ACTIONS(7617), + [anon_sym___asm__] = ACTIONS(7617), + [anon_sym___asm] = ACTIONS(7617), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7617), + [anon_sym_final] = ACTIONS(7617), + [anon_sym_override] = ACTIONS(7617), + [anon_sym_template] = ACTIONS(7617), + [anon_sym_GT2] = ACTIONS(7619), + [anon_sym_operator] = ACTIONS(7617), + [anon_sym_try] = ACTIONS(7617), + [anon_sym_requires] = ACTIONS(7617), + [anon_sym_LBRACK_COLON] = ACTIONS(7619), + }, + [STATE(4110)] = { + [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), + [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(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___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_LBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), + [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(7739), + [anon_sym_or_eq] = ACTIONS(7739), + [anon_sym_xor_eq] = ACTIONS(7739), + [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_COLON_RBRACK] = ACTIONS(7741), + }, + [STATE(4111)] = { + [sym_identifier] = ACTIONS(7747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_RPAREN] = ACTIONS(7749), + [aux_sym_preproc_if_token2] = ACTIONS(7749), + [aux_sym_preproc_else_token1] = ACTIONS(7749), + [aux_sym_preproc_elif_token1] = ACTIONS(7747), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7749), + [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(7749), + [anon_sym___attribute__] = ACTIONS(7747), + [anon_sym___attribute] = ACTIONS(7747), + [anon_sym_COLON] = ACTIONS(7747), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7749), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_RBRACE] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(7747), + [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(7747), + [anon_sym_or_eq] = ACTIONS(7747), + [anon_sym_xor_eq] = ACTIONS(7747), + [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_COLON_RBRACK] = ACTIONS(7749), + }, + [STATE(4112)] = { + [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), + [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(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___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_LBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), + [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(7755), + [anon_sym_or_eq] = ACTIONS(7755), + [anon_sym_xor_eq] = ACTIONS(7755), + [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_COLON_RBRACK] = ACTIONS(7757), + }, + [STATE(4113)] = { + [sym_identifier] = ACTIONS(7495), + [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(7497), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7497), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7497), + [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(7497), + [anon_sym_GT_GT] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7495), + [anon_sym___attribute] = ACTIONS(7495), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_COLON_COLON] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7495), + [anon_sym_RBRACK] = ACTIONS(7497), + [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_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), + [sym_auto] = ACTIONS(7495), + [anon_sym_decltype] = ACTIONS(7495), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_template] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_LBRACK_COLON] = ACTIONS(7497), + }, + [STATE(4114)] = { + [sym_identifier] = ACTIONS(7710), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7712), + [anon_sym_COMMA] = ACTIONS(7712), + [anon_sym_RPAREN] = ACTIONS(7712), + [aux_sym_preproc_if_token2] = ACTIONS(7712), + [aux_sym_preproc_else_token1] = ACTIONS(7712), + [aux_sym_preproc_elif_token1] = ACTIONS(7710), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7712), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7712), + [anon_sym_LPAREN2] = ACTIONS(7712), + [anon_sym_DASH] = ACTIONS(7710), + [anon_sym_PLUS] = ACTIONS(7710), + [anon_sym_STAR] = ACTIONS(7710), + [anon_sym_SLASH] = ACTIONS(7710), + [anon_sym_PERCENT] = ACTIONS(7710), + [anon_sym_PIPE_PIPE] = ACTIONS(7712), + [anon_sym_AMP_AMP] = ACTIONS(7712), + [anon_sym_PIPE] = ACTIONS(7710), + [anon_sym_CARET] = ACTIONS(7710), + [anon_sym_AMP] = ACTIONS(7710), + [anon_sym_EQ_EQ] = ACTIONS(7712), + [anon_sym_BANG_EQ] = ACTIONS(7712), + [anon_sym_GT] = ACTIONS(7710), + [anon_sym_GT_EQ] = ACTIONS(7712), + [anon_sym_LT_EQ] = ACTIONS(7710), + [anon_sym_LT] = ACTIONS(7710), + [anon_sym_LT_LT] = ACTIONS(7710), + [anon_sym_GT_GT] = ACTIONS(7710), + [anon_sym_SEMI] = ACTIONS(7712), + [anon_sym___attribute__] = ACTIONS(7710), + [anon_sym___attribute] = ACTIONS(7710), + [anon_sym_COLON] = ACTIONS(7710), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7712), + [anon_sym_LBRACE] = ACTIONS(7712), + [anon_sym_RBRACE] = ACTIONS(7712), + [anon_sym_LBRACK] = ACTIONS(7712), + [anon_sym_EQ] = ACTIONS(7710), + [anon_sym_QMARK] = ACTIONS(7712), + [anon_sym_STAR_EQ] = ACTIONS(7712), + [anon_sym_SLASH_EQ] = ACTIONS(7712), + [anon_sym_PERCENT_EQ] = ACTIONS(7712), + [anon_sym_PLUS_EQ] = ACTIONS(7712), + [anon_sym_DASH_EQ] = ACTIONS(7712), + [anon_sym_LT_LT_EQ] = ACTIONS(7712), + [anon_sym_GT_GT_EQ] = ACTIONS(7712), + [anon_sym_AMP_EQ] = ACTIONS(7712), + [anon_sym_CARET_EQ] = ACTIONS(7712), + [anon_sym_PIPE_EQ] = ACTIONS(7712), + [anon_sym_and_eq] = ACTIONS(7710), + [anon_sym_or_eq] = ACTIONS(7710), + [anon_sym_xor_eq] = ACTIONS(7710), + [anon_sym_LT_EQ_GT] = ACTIONS(7712), + [anon_sym_or] = ACTIONS(7710), + [anon_sym_and] = ACTIONS(7710), + [anon_sym_bitor] = ACTIONS(7710), + [anon_sym_xor] = ACTIONS(7710), + [anon_sym_bitand] = ACTIONS(7710), + [anon_sym_not_eq] = ACTIONS(7710), + [anon_sym_DASH_DASH] = ACTIONS(7712), + [anon_sym_PLUS_PLUS] = ACTIONS(7712), + [anon_sym_DOT] = ACTIONS(7710), + [anon_sym_DOT_STAR] = ACTIONS(7712), + [anon_sym_DASH_GT] = ACTIONS(7712), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7712), + }, + [STATE(4115)] = { + [sym_identifier] = ACTIONS(7290), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7292), + [anon_sym_COMMA] = ACTIONS(7292), + [anon_sym_RPAREN] = ACTIONS(7292), + [aux_sym_preproc_if_token2] = ACTIONS(7292), + [aux_sym_preproc_else_token1] = ACTIONS(7292), + [aux_sym_preproc_elif_token1] = ACTIONS(7290), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7292), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7292), + [anon_sym_LPAREN2] = ACTIONS(7292), + [anon_sym_DASH] = ACTIONS(7290), + [anon_sym_PLUS] = ACTIONS(7290), + [anon_sym_STAR] = ACTIONS(7290), + [anon_sym_SLASH] = ACTIONS(7290), + [anon_sym_PERCENT] = ACTIONS(7290), + [anon_sym_PIPE_PIPE] = ACTIONS(7292), + [anon_sym_AMP_AMP] = ACTIONS(7292), + [anon_sym_PIPE] = ACTIONS(7290), + [anon_sym_CARET] = ACTIONS(7290), + [anon_sym_AMP] = ACTIONS(7290), + [anon_sym_EQ_EQ] = ACTIONS(7292), + [anon_sym_BANG_EQ] = ACTIONS(7292), + [anon_sym_GT] = ACTIONS(7290), + [anon_sym_GT_EQ] = ACTIONS(7292), + [anon_sym_LT_EQ] = ACTIONS(7290), + [anon_sym_LT] = ACTIONS(7290), + [anon_sym_LT_LT] = ACTIONS(7290), + [anon_sym_GT_GT] = ACTIONS(7290), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym___attribute__] = ACTIONS(7290), + [anon_sym___attribute] = ACTIONS(7290), + [anon_sym_COLON] = ACTIONS(7290), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7292), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_RBRACE] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym_EQ] = ACTIONS(7290), + [anon_sym_QMARK] = ACTIONS(7292), + [anon_sym_STAR_EQ] = ACTIONS(7292), + [anon_sym_SLASH_EQ] = ACTIONS(7292), + [anon_sym_PERCENT_EQ] = ACTIONS(7292), + [anon_sym_PLUS_EQ] = ACTIONS(7292), + [anon_sym_DASH_EQ] = ACTIONS(7292), + [anon_sym_LT_LT_EQ] = ACTIONS(7292), + [anon_sym_GT_GT_EQ] = ACTIONS(7292), + [anon_sym_AMP_EQ] = ACTIONS(7292), + [anon_sym_CARET_EQ] = ACTIONS(7292), + [anon_sym_PIPE_EQ] = ACTIONS(7292), + [anon_sym_and_eq] = ACTIONS(7290), + [anon_sym_or_eq] = ACTIONS(7290), + [anon_sym_xor_eq] = ACTIONS(7290), + [anon_sym_LT_EQ_GT] = ACTIONS(7292), + [anon_sym_or] = ACTIONS(7290), + [anon_sym_and] = ACTIONS(7290), + [anon_sym_bitor] = ACTIONS(7290), + [anon_sym_xor] = ACTIONS(7290), + [anon_sym_bitand] = ACTIONS(7290), + [anon_sym_not_eq] = ACTIONS(7290), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_DOT] = ACTIONS(7290), + [anon_sym_DOT_STAR] = ACTIONS(7292), + [anon_sym_DASH_GT] = ACTIONS(7292), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7292), + }, + [STATE(4116)] = { + [sym_identifier] = ACTIONS(7775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), + [anon_sym_COMMA] = ACTIONS(7777), + [anon_sym_RPAREN] = ACTIONS(7777), + [aux_sym_preproc_if_token2] = ACTIONS(7777), + [aux_sym_preproc_else_token1] = ACTIONS(7777), + [aux_sym_preproc_elif_token1] = ACTIONS(7775), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7777), + [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(7777), + [anon_sym___attribute__] = ACTIONS(7775), + [anon_sym___attribute] = ACTIONS(7775), + [anon_sym_COLON] = ACTIONS(7775), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7777), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_RBRACE] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_EQ] = ACTIONS(7775), + [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(7775), + [anon_sym_or_eq] = ACTIONS(7775), + [anon_sym_xor_eq] = ACTIONS(7775), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7775), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7775), + [anon_sym_not_eq] = ACTIONS(7775), + [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_COLON_RBRACK] = ACTIONS(7777), + }, + [STATE(4117)] = { + [sym_identifier] = ACTIONS(7779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), + [anon_sym_COMMA] = ACTIONS(7781), + [anon_sym_RPAREN] = ACTIONS(7781), + [aux_sym_preproc_if_token2] = ACTIONS(7781), + [aux_sym_preproc_else_token1] = ACTIONS(7781), + [aux_sym_preproc_elif_token1] = ACTIONS(7779), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7781), + [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(7781), + [anon_sym___attribute__] = ACTIONS(7779), + [anon_sym___attribute] = ACTIONS(7779), + [anon_sym_COLON] = ACTIONS(7779), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7781), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_RBRACE] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_EQ] = ACTIONS(7779), + [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(7779), + [anon_sym_or_eq] = ACTIONS(7779), + [anon_sym_xor_eq] = ACTIONS(7779), + [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_COLON_RBRACK] = ACTIONS(7781), + }, + [STATE(4118)] = { + [sym_identifier] = ACTIONS(7790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7792), + [anon_sym_COMMA] = ACTIONS(7792), + [anon_sym_RPAREN] = ACTIONS(7792), + [aux_sym_preproc_if_token2] = ACTIONS(7792), + [aux_sym_preproc_else_token1] = ACTIONS(7792), + [aux_sym_preproc_elif_token1] = ACTIONS(7790), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7792), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7792), + [anon_sym_LPAREN2] = ACTIONS(7792), + [anon_sym_DASH] = ACTIONS(7790), + [anon_sym_PLUS] = ACTIONS(7790), + [anon_sym_STAR] = ACTIONS(7790), + [anon_sym_SLASH] = ACTIONS(7790), + [anon_sym_PERCENT] = ACTIONS(7790), + [anon_sym_PIPE_PIPE] = ACTIONS(7792), + [anon_sym_AMP_AMP] = ACTIONS(7792), + [anon_sym_PIPE] = ACTIONS(7790), + [anon_sym_CARET] = ACTIONS(7790), + [anon_sym_AMP] = ACTIONS(7790), + [anon_sym_EQ_EQ] = ACTIONS(7792), + [anon_sym_BANG_EQ] = ACTIONS(7792), + [anon_sym_GT] = ACTIONS(7790), + [anon_sym_GT_EQ] = ACTIONS(7792), + [anon_sym_LT_EQ] = ACTIONS(7790), + [anon_sym_LT] = ACTIONS(7790), + [anon_sym_LT_LT] = ACTIONS(7790), + [anon_sym_GT_GT] = ACTIONS(7790), + [anon_sym_SEMI] = ACTIONS(7792), + [anon_sym___attribute__] = ACTIONS(7790), + [anon_sym___attribute] = ACTIONS(7790), + [anon_sym_COLON] = ACTIONS(7790), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7792), + [anon_sym_LBRACE] = ACTIONS(7792), + [anon_sym_RBRACE] = ACTIONS(7792), + [anon_sym_LBRACK] = ACTIONS(7792), + [anon_sym_EQ] = ACTIONS(7790), + [anon_sym_QMARK] = ACTIONS(7792), + [anon_sym_STAR_EQ] = ACTIONS(7792), + [anon_sym_SLASH_EQ] = ACTIONS(7792), + [anon_sym_PERCENT_EQ] = ACTIONS(7792), + [anon_sym_PLUS_EQ] = ACTIONS(7792), + [anon_sym_DASH_EQ] = ACTIONS(7792), + [anon_sym_LT_LT_EQ] = ACTIONS(7792), + [anon_sym_GT_GT_EQ] = ACTIONS(7792), + [anon_sym_AMP_EQ] = ACTIONS(7792), + [anon_sym_CARET_EQ] = ACTIONS(7792), + [anon_sym_PIPE_EQ] = ACTIONS(7792), + [anon_sym_and_eq] = ACTIONS(7790), + [anon_sym_or_eq] = ACTIONS(7790), + [anon_sym_xor_eq] = ACTIONS(7790), + [anon_sym_LT_EQ_GT] = ACTIONS(7792), + [anon_sym_or] = ACTIONS(7790), + [anon_sym_and] = ACTIONS(7790), + [anon_sym_bitor] = ACTIONS(7790), + [anon_sym_xor] = ACTIONS(7790), + [anon_sym_bitand] = ACTIONS(7790), + [anon_sym_not_eq] = ACTIONS(7790), + [anon_sym_DASH_DASH] = ACTIONS(7792), + [anon_sym_PLUS_PLUS] = ACTIONS(7792), + [anon_sym_DOT] = ACTIONS(7790), + [anon_sym_DOT_STAR] = ACTIONS(7792), + [anon_sym_DASH_GT] = ACTIONS(7792), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7792), + }, + [STATE(4119)] = { + [sym_template_argument_list] = STATE(4220), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7447), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7447), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7447), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(9574), + [anon_sym_LT_LT] = ACTIONS(7447), + [anon_sym_GT_GT] = ACTIONS(7447), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_RBRACK] = ACTIONS(7447), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + }, + [STATE(4120)] = { + [sym_identifier] = ACTIONS(7798), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7800), + [anon_sym_COMMA] = ACTIONS(7800), + [anon_sym_RPAREN] = ACTIONS(7800), + [aux_sym_preproc_if_token2] = ACTIONS(7800), + [aux_sym_preproc_else_token1] = ACTIONS(7800), + [aux_sym_preproc_elif_token1] = ACTIONS(7798), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7800), + [anon_sym_LPAREN2] = ACTIONS(7800), + [anon_sym_DASH] = ACTIONS(7798), + [anon_sym_PLUS] = ACTIONS(7798), + [anon_sym_STAR] = ACTIONS(7798), + [anon_sym_SLASH] = ACTIONS(7798), + [anon_sym_PERCENT] = ACTIONS(7798), + [anon_sym_PIPE_PIPE] = ACTIONS(7800), + [anon_sym_AMP_AMP] = ACTIONS(7800), + [anon_sym_PIPE] = ACTIONS(7798), + [anon_sym_CARET] = ACTIONS(7798), + [anon_sym_AMP] = ACTIONS(7798), + [anon_sym_EQ_EQ] = ACTIONS(7800), + [anon_sym_BANG_EQ] = ACTIONS(7800), + [anon_sym_GT] = ACTIONS(7798), + [anon_sym_GT_EQ] = ACTIONS(7800), + [anon_sym_LT_EQ] = ACTIONS(7798), + [anon_sym_LT] = ACTIONS(7798), + [anon_sym_LT_LT] = ACTIONS(7798), + [anon_sym_GT_GT] = ACTIONS(7798), + [anon_sym_SEMI] = ACTIONS(7800), + [anon_sym___attribute__] = ACTIONS(7798), + [anon_sym___attribute] = ACTIONS(7798), + [anon_sym_COLON] = ACTIONS(7798), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7800), + [anon_sym_LBRACE] = ACTIONS(7800), + [anon_sym_RBRACE] = ACTIONS(7800), + [anon_sym_LBRACK] = ACTIONS(7800), + [anon_sym_EQ] = ACTIONS(7798), + [anon_sym_QMARK] = ACTIONS(7800), + [anon_sym_STAR_EQ] = ACTIONS(7800), + [anon_sym_SLASH_EQ] = ACTIONS(7800), + [anon_sym_PERCENT_EQ] = ACTIONS(7800), + [anon_sym_PLUS_EQ] = ACTIONS(7800), + [anon_sym_DASH_EQ] = ACTIONS(7800), + [anon_sym_LT_LT_EQ] = ACTIONS(7800), + [anon_sym_GT_GT_EQ] = ACTIONS(7800), + [anon_sym_AMP_EQ] = ACTIONS(7800), + [anon_sym_CARET_EQ] = ACTIONS(7800), + [anon_sym_PIPE_EQ] = ACTIONS(7800), + [anon_sym_and_eq] = ACTIONS(7798), + [anon_sym_or_eq] = ACTIONS(7798), + [anon_sym_xor_eq] = ACTIONS(7798), + [anon_sym_LT_EQ_GT] = ACTIONS(7800), + [anon_sym_or] = ACTIONS(7798), + [anon_sym_and] = ACTIONS(7798), + [anon_sym_bitor] = ACTIONS(7798), + [anon_sym_xor] = ACTIONS(7798), + [anon_sym_bitand] = ACTIONS(7798), + [anon_sym_not_eq] = ACTIONS(7798), + [anon_sym_DASH_DASH] = ACTIONS(7800), + [anon_sym_PLUS_PLUS] = ACTIONS(7800), + [anon_sym_DOT] = ACTIONS(7798), + [anon_sym_DOT_STAR] = ACTIONS(7800), + [anon_sym_DASH_GT] = ACTIONS(7800), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7800), + }, + [STATE(4121)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_else_token1] = ACTIONS(7720), + [aux_sym_preproc_elif_token1] = ACTIONS(7718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym_LBRACE] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7720), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), + }, + [STATE(4122)] = { + [sym_attribute_specifier] = STATE(4301), + [sym_identifier] = ACTIONS(7702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7704), + [anon_sym_COMMA] = ACTIONS(7704), + [anon_sym_RPAREN] = ACTIONS(7704), + [anon_sym_LPAREN2] = ACTIONS(7704), + [anon_sym_TILDE] = ACTIONS(7704), + [anon_sym_STAR] = ACTIONS(7704), + [anon_sym_AMP_AMP] = ACTIONS(7704), + [anon_sym_AMP] = ACTIONS(7702), + [anon_sym_SEMI] = ACTIONS(7704), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym_virtual] = ACTIONS(7702), + [anon_sym_extern] = ACTIONS(7702), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7702), + [anon_sym_COLON_COLON] = ACTIONS(7704), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7704), + [anon_sym___declspec] = ACTIONS(7702), + [anon_sym___based] = ACTIONS(7702), + [anon_sym___cdecl] = ACTIONS(7702), + [anon_sym___clrcall] = ACTIONS(7702), + [anon_sym___stdcall] = ACTIONS(7702), + [anon_sym___fastcall] = ACTIONS(7702), + [anon_sym___thiscall] = ACTIONS(7702), + [anon_sym___vectorcall] = ACTIONS(7702), + [anon_sym_LBRACE] = ACTIONS(7704), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_static] = ACTIONS(7702), + [anon_sym_EQ] = ACTIONS(7704), + [anon_sym_register] = ACTIONS(7702), + [anon_sym_inline] = ACTIONS(7702), + [anon_sym___inline] = ACTIONS(7702), + [anon_sym___inline__] = ACTIONS(7702), + [anon_sym___forceinline] = ACTIONS(7702), + [anon_sym_thread_local] = ACTIONS(7702), + [anon_sym___thread] = ACTIONS(7702), + [anon_sym_const] = ACTIONS(7702), + [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_asm] = ACTIONS(7702), + [anon_sym___asm__] = ACTIONS(7702), + [anon_sym___asm] = ACTIONS(7702), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7702), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_template] = ACTIONS(7702), + [anon_sym_GT2] = ACTIONS(7704), + [anon_sym_operator] = ACTIONS(7702), + [anon_sym_try] = ACTIONS(7702), + [anon_sym_requires] = ACTIONS(7702), + [anon_sym_LBRACK_COLON] = ACTIONS(7704), + }, + [STATE(4123)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3789), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(7361), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_signed] = ACTIONS(9551), + [anon_sym_unsigned] = ACTIONS(9551), + [anon_sym_long] = ACTIONS(9551), + [anon_sym_short] = ACTIONS(9551), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(4124)] = { + [sym_identifier] = ACTIONS(7366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7368), + [anon_sym_COMMA] = ACTIONS(7368), + [anon_sym_LPAREN2] = ACTIONS(7368), + [anon_sym_DASH] = ACTIONS(7366), + [anon_sym_PLUS] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(7368), + [anon_sym_SLASH] = ACTIONS(7366), + [anon_sym_PERCENT] = ACTIONS(7368), + [anon_sym_PIPE_PIPE] = ACTIONS(7368), + [anon_sym_AMP_AMP] = ACTIONS(7368), + [anon_sym_PIPE] = ACTIONS(7366), + [anon_sym_CARET] = ACTIONS(7368), + [anon_sym_AMP] = ACTIONS(7366), + [anon_sym_EQ_EQ] = ACTIONS(7368), + [anon_sym_BANG_EQ] = ACTIONS(7368), + [anon_sym_GT] = ACTIONS(7366), + [anon_sym_GT_EQ] = ACTIONS(7366), + [anon_sym_LT_EQ] = ACTIONS(7366), + [anon_sym_LT] = ACTIONS(7366), + [anon_sym_LT_LT] = ACTIONS(7368), + [anon_sym_GT_GT] = ACTIONS(7366), + [anon_sym___extension__] = ACTIONS(7366), + [anon_sym_COLON_COLON] = ACTIONS(7368), + [sym_ms_restrict_modifier] = ACTIONS(7366), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7366), + [sym_ms_signed_ptr_modifier] = ACTIONS(7366), + [anon_sym__unaligned] = ACTIONS(7366), + [anon_sym___unaligned] = ACTIONS(7366), + [anon_sym_LBRACK] = ACTIONS(7366), + [anon_sym_const] = ACTIONS(7366), + [anon_sym_constexpr] = ACTIONS(7366), + [anon_sym_volatile] = ACTIONS(7366), + [anon_sym_restrict] = ACTIONS(7366), + [anon_sym___restrict__] = ACTIONS(7366), + [anon_sym__Atomic] = ACTIONS(7366), + [anon_sym__Noreturn] = ACTIONS(7366), + [anon_sym_noreturn] = ACTIONS(7366), + [anon_sym__Nonnull] = ACTIONS(7366), + [anon_sym_mutable] = ACTIONS(7366), + [anon_sym_constinit] = ACTIONS(7366), + [anon_sym_consteval] = ACTIONS(7366), + [anon_sym_alignas] = ACTIONS(7366), + [anon_sym__Alignas] = ACTIONS(7366), + [anon_sym_QMARK] = ACTIONS(7368), + [anon_sym_LT_EQ_GT] = ACTIONS(7368), + [anon_sym_or] = ACTIONS(7366), + [anon_sym_and] = ACTIONS(7366), + [anon_sym_bitor] = ACTIONS(7366), + [anon_sym_xor] = ACTIONS(7366), + [anon_sym_bitand] = ACTIONS(7366), + [anon_sym_not_eq] = ACTIONS(7366), + [anon_sym_DASH_DASH] = ACTIONS(7368), + [anon_sym_PLUS_PLUS] = ACTIONS(7368), + [anon_sym_DOT] = ACTIONS(7366), + [anon_sym_DOT_STAR] = ACTIONS(7368), + [anon_sym_DASH_GT] = ACTIONS(7368), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7366), + [anon_sym_final] = ACTIONS(7366), + [anon_sym_override] = ACTIONS(7366), + [anon_sym_template] = ACTIONS(7366), + [anon_sym_GT2] = ACTIONS(7368), + [anon_sym_requires] = ACTIONS(7366), + [anon_sym_LBRACK_COLON] = ACTIONS(7368), + }, + [STATE(4125)] = { + [sym_identifier] = ACTIONS(7802), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7804), + [anon_sym_COMMA] = ACTIONS(7804), + [anon_sym_RPAREN] = ACTIONS(7804), + [aux_sym_preproc_if_token2] = ACTIONS(7804), + [aux_sym_preproc_else_token1] = ACTIONS(7804), + [aux_sym_preproc_elif_token1] = ACTIONS(7802), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7804), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7804), + [anon_sym_LPAREN2] = ACTIONS(7804), + [anon_sym_DASH] = ACTIONS(7802), + [anon_sym_PLUS] = ACTIONS(7802), + [anon_sym_STAR] = ACTIONS(7802), + [anon_sym_SLASH] = ACTIONS(7802), + [anon_sym_PERCENT] = ACTIONS(7802), + [anon_sym_PIPE_PIPE] = ACTIONS(7804), + [anon_sym_AMP_AMP] = ACTIONS(7804), + [anon_sym_PIPE] = ACTIONS(7802), + [anon_sym_CARET] = ACTIONS(7802), + [anon_sym_AMP] = ACTIONS(7802), + [anon_sym_EQ_EQ] = ACTIONS(7804), + [anon_sym_BANG_EQ] = ACTIONS(7804), + [anon_sym_GT] = ACTIONS(7802), + [anon_sym_GT_EQ] = ACTIONS(7804), + [anon_sym_LT_EQ] = ACTIONS(7802), + [anon_sym_LT] = ACTIONS(7802), + [anon_sym_LT_LT] = ACTIONS(7802), + [anon_sym_GT_GT] = ACTIONS(7802), + [anon_sym_SEMI] = ACTIONS(7804), + [anon_sym___attribute__] = ACTIONS(7802), + [anon_sym___attribute] = ACTIONS(7802), + [anon_sym_COLON] = ACTIONS(7802), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7804), + [anon_sym_LBRACE] = ACTIONS(7804), + [anon_sym_RBRACE] = ACTIONS(7804), + [anon_sym_LBRACK] = ACTIONS(7804), + [anon_sym_EQ] = ACTIONS(7802), + [anon_sym_QMARK] = ACTIONS(7804), + [anon_sym_STAR_EQ] = ACTIONS(7804), + [anon_sym_SLASH_EQ] = ACTIONS(7804), + [anon_sym_PERCENT_EQ] = ACTIONS(7804), + [anon_sym_PLUS_EQ] = ACTIONS(7804), + [anon_sym_DASH_EQ] = ACTIONS(7804), + [anon_sym_LT_LT_EQ] = ACTIONS(7804), + [anon_sym_GT_GT_EQ] = ACTIONS(7804), + [anon_sym_AMP_EQ] = ACTIONS(7804), + [anon_sym_CARET_EQ] = ACTIONS(7804), + [anon_sym_PIPE_EQ] = ACTIONS(7804), + [anon_sym_and_eq] = ACTIONS(7802), + [anon_sym_or_eq] = ACTIONS(7802), + [anon_sym_xor_eq] = ACTIONS(7802), + [anon_sym_LT_EQ_GT] = ACTIONS(7804), + [anon_sym_or] = ACTIONS(7802), + [anon_sym_and] = ACTIONS(7802), + [anon_sym_bitor] = ACTIONS(7802), + [anon_sym_xor] = ACTIONS(7802), + [anon_sym_bitand] = ACTIONS(7802), + [anon_sym_not_eq] = ACTIONS(7802), + [anon_sym_DASH_DASH] = ACTIONS(7804), + [anon_sym_PLUS_PLUS] = ACTIONS(7804), + [anon_sym_DOT] = ACTIONS(7802), + [anon_sym_DOT_STAR] = ACTIONS(7804), + [anon_sym_DASH_GT] = ACTIONS(7804), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7804), + }, + [STATE(4126)] = { + [sym_identifier] = ACTIONS(10147), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10149), + [anon_sym_COMMA] = ACTIONS(10149), + [anon_sym_RPAREN] = ACTIONS(10149), + [aux_sym_preproc_if_token2] = ACTIONS(10149), + [aux_sym_preproc_else_token1] = ACTIONS(10149), + [aux_sym_preproc_elif_token1] = ACTIONS(10147), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10149), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10149), + [anon_sym_LPAREN2] = ACTIONS(10149), + [anon_sym_DASH] = ACTIONS(10147), + [anon_sym_PLUS] = ACTIONS(10147), + [anon_sym_STAR] = ACTIONS(10147), + [anon_sym_SLASH] = ACTIONS(10147), + [anon_sym_PERCENT] = ACTIONS(10147), + [anon_sym_PIPE_PIPE] = ACTIONS(10149), + [anon_sym_AMP_AMP] = ACTIONS(10149), + [anon_sym_PIPE] = ACTIONS(10147), + [anon_sym_CARET] = ACTIONS(10147), + [anon_sym_AMP] = ACTIONS(10147), + [anon_sym_EQ_EQ] = ACTIONS(10149), + [anon_sym_BANG_EQ] = ACTIONS(10149), + [anon_sym_GT] = ACTIONS(10147), + [anon_sym_GT_EQ] = ACTIONS(10149), + [anon_sym_LT_EQ] = ACTIONS(10147), + [anon_sym_LT] = ACTIONS(10147), + [anon_sym_LT_LT] = ACTIONS(10147), + [anon_sym_GT_GT] = ACTIONS(10147), + [anon_sym_SEMI] = ACTIONS(10149), + [anon_sym___attribute__] = ACTIONS(10147), + [anon_sym___attribute] = ACTIONS(10147), + [anon_sym_COLON] = ACTIONS(10147), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10149), + [anon_sym_RBRACE] = ACTIONS(10149), + [anon_sym_LBRACK] = ACTIONS(10147), + [anon_sym_EQ] = ACTIONS(10147), + [anon_sym_QMARK] = ACTIONS(10149), + [anon_sym_STAR_EQ] = ACTIONS(10149), + [anon_sym_SLASH_EQ] = ACTIONS(10149), + [anon_sym_PERCENT_EQ] = ACTIONS(10149), + [anon_sym_PLUS_EQ] = ACTIONS(10149), + [anon_sym_DASH_EQ] = ACTIONS(10149), + [anon_sym_LT_LT_EQ] = ACTIONS(10149), + [anon_sym_GT_GT_EQ] = ACTIONS(10149), + [anon_sym_AMP_EQ] = ACTIONS(10149), + [anon_sym_CARET_EQ] = ACTIONS(10149), + [anon_sym_PIPE_EQ] = ACTIONS(10149), + [anon_sym_and_eq] = ACTIONS(10147), + [anon_sym_or_eq] = ACTIONS(10147), + [anon_sym_xor_eq] = ACTIONS(10147), + [anon_sym_LT_EQ_GT] = ACTIONS(10149), + [anon_sym_or] = ACTIONS(10147), + [anon_sym_and] = ACTIONS(10147), + [anon_sym_bitor] = ACTIONS(10147), + [anon_sym_xor] = ACTIONS(10147), + [anon_sym_bitand] = ACTIONS(10147), + [anon_sym_not_eq] = ACTIONS(10147), + [anon_sym_DASH_DASH] = ACTIONS(10149), + [anon_sym_PLUS_PLUS] = ACTIONS(10149), + [anon_sym_DOT] = ACTIONS(10147), + [anon_sym_DOT_STAR] = ACTIONS(10149), + [anon_sym_DASH_GT] = ACTIONS(10149), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10149), + [anon_sym_LBRACK_RBRACK] = ACTIONS(10151), + }, + [STATE(4127)] = { + [sym_identifier] = ACTIONS(7346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7348), + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7348), + [anon_sym_DASH] = ACTIONS(7346), + [anon_sym_PLUS] = ACTIONS(7346), + [anon_sym_STAR] = ACTIONS(7348), + [anon_sym_SLASH] = ACTIONS(7346), + [anon_sym_PERCENT] = ACTIONS(7348), + [anon_sym_PIPE_PIPE] = ACTIONS(7348), + [anon_sym_AMP_AMP] = ACTIONS(7348), + [anon_sym_PIPE] = ACTIONS(7346), + [anon_sym_CARET] = ACTIONS(7348), + [anon_sym_AMP] = ACTIONS(7346), + [anon_sym_EQ_EQ] = ACTIONS(7348), + [anon_sym_BANG_EQ] = ACTIONS(7348), + [anon_sym_GT] = ACTIONS(7346), + [anon_sym_GT_EQ] = ACTIONS(7346), + [anon_sym_LT_EQ] = ACTIONS(7346), + [anon_sym_LT] = ACTIONS(7346), + [anon_sym_LT_LT] = ACTIONS(7348), + [anon_sym_GT_GT] = ACTIONS(7346), + [anon_sym___extension__] = ACTIONS(7346), + [anon_sym_COLON_COLON] = ACTIONS(7348), + [sym_ms_restrict_modifier] = ACTIONS(7346), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7346), + [sym_ms_signed_ptr_modifier] = ACTIONS(7346), + [anon_sym__unaligned] = ACTIONS(7346), + [anon_sym___unaligned] = ACTIONS(7346), + [anon_sym_LBRACK] = ACTIONS(7346), + [anon_sym_const] = ACTIONS(7346), + [anon_sym_constexpr] = ACTIONS(7346), + [anon_sym_volatile] = ACTIONS(7346), + [anon_sym_restrict] = ACTIONS(7346), + [anon_sym___restrict__] = ACTIONS(7346), + [anon_sym__Atomic] = ACTIONS(7346), + [anon_sym__Noreturn] = ACTIONS(7346), + [anon_sym_noreturn] = ACTIONS(7346), + [anon_sym__Nonnull] = ACTIONS(7346), + [anon_sym_mutable] = ACTIONS(7346), + [anon_sym_constinit] = ACTIONS(7346), + [anon_sym_consteval] = ACTIONS(7346), + [anon_sym_alignas] = ACTIONS(7346), + [anon_sym__Alignas] = ACTIONS(7346), + [anon_sym_QMARK] = ACTIONS(7348), + [anon_sym_LT_EQ_GT] = ACTIONS(7348), + [anon_sym_or] = ACTIONS(7346), + [anon_sym_and] = ACTIONS(7346), + [anon_sym_bitor] = ACTIONS(7346), + [anon_sym_xor] = ACTIONS(7346), + [anon_sym_bitand] = ACTIONS(7346), + [anon_sym_not_eq] = ACTIONS(7346), + [anon_sym_DASH_DASH] = ACTIONS(7348), + [anon_sym_PLUS_PLUS] = ACTIONS(7348), + [anon_sym_DOT] = ACTIONS(7346), + [anon_sym_DOT_STAR] = ACTIONS(7348), + [anon_sym_DASH_GT] = ACTIONS(7348), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7346), + [anon_sym_final] = ACTIONS(7346), + [anon_sym_override] = ACTIONS(7346), + [anon_sym_template] = ACTIONS(7346), + [anon_sym_GT2] = ACTIONS(7348), + [anon_sym_requires] = ACTIONS(7346), + [anon_sym_LBRACK_COLON] = ACTIONS(7348), + }, + [STATE(4128)] = { + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [aux_sym_preproc_if_token2] = ACTIONS(7796), + [aux_sym_preproc_else_token1] = ACTIONS(7796), + [aux_sym_preproc_elif_token1] = ACTIONS(7794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7796), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym_SEMI] = ACTIONS(7796), + [anon_sym___attribute__] = ACTIONS(7794), + [anon_sym___attribute] = ACTIONS(7794), + [anon_sym_COLON] = ACTIONS(7794), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7796), + [anon_sym_LBRACE] = ACTIONS(7796), + [anon_sym_RBRACE] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7796), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7796), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_and_eq] = ACTIONS(7794), + [anon_sym_or_eq] = ACTIONS(7794), + [anon_sym_xor_eq] = ACTIONS(7794), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7796), + }, + [STATE(4129)] = { + [sym_template_argument_list] = STATE(4196), + [sym_identifier] = ACTIONS(7442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7447), + [anon_sym_COMMA] = ACTIONS(7447), + [anon_sym_LPAREN2] = ACTIONS(7447), + [anon_sym_DASH] = ACTIONS(7442), + [anon_sym_PLUS] = ACTIONS(7442), + [anon_sym_STAR] = ACTIONS(7447), + [anon_sym_SLASH] = ACTIONS(7442), + [anon_sym_PERCENT] = ACTIONS(7447), + [anon_sym_PIPE_PIPE] = ACTIONS(7447), + [anon_sym_AMP_AMP] = ACTIONS(7447), + [anon_sym_PIPE] = ACTIONS(7442), + [anon_sym_CARET] = ACTIONS(7447), + [anon_sym_AMP] = ACTIONS(7442), + [anon_sym_EQ_EQ] = ACTIONS(7447), + [anon_sym_BANG_EQ] = ACTIONS(7447), + [anon_sym_GT] = ACTIONS(7442), + [anon_sym_GT_EQ] = ACTIONS(7442), + [anon_sym_LT_EQ] = ACTIONS(7442), + [anon_sym_LT] = ACTIONS(9692), + [anon_sym_LT_LT] = ACTIONS(7447), + [anon_sym_GT_GT] = ACTIONS(7442), + [anon_sym___extension__] = ACTIONS(7442), + [anon_sym___attribute__] = ACTIONS(7442), + [anon_sym___attribute] = ACTIONS(7442), + [anon_sym_COLON] = ACTIONS(7442), + [anon_sym_COLON_COLON] = ACTIONS(7444), + [anon_sym_LBRACE] = ACTIONS(7447), + [anon_sym_LBRACK] = ACTIONS(7442), + [anon_sym_const] = ACTIONS(7442), + [anon_sym_constexpr] = ACTIONS(7442), + [anon_sym_volatile] = ACTIONS(7442), + [anon_sym_restrict] = ACTIONS(7442), + [anon_sym___restrict__] = ACTIONS(7442), + [anon_sym__Atomic] = ACTIONS(7442), + [anon_sym__Noreturn] = ACTIONS(7442), + [anon_sym_noreturn] = ACTIONS(7442), + [anon_sym__Nonnull] = ACTIONS(7442), + [anon_sym_mutable] = ACTIONS(7442), + [anon_sym_constinit] = ACTIONS(7442), + [anon_sym_consteval] = ACTIONS(7442), + [anon_sym_alignas] = ACTIONS(7442), + [anon_sym__Alignas] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7447), + [anon_sym_LT_EQ_GT] = ACTIONS(7447), + [anon_sym_or] = ACTIONS(7442), + [anon_sym_and] = ACTIONS(7442), + [anon_sym_bitor] = ACTIONS(7442), + [anon_sym_xor] = ACTIONS(7442), + [anon_sym_bitand] = ACTIONS(7442), + [anon_sym_not_eq] = ACTIONS(7442), + [anon_sym_DASH_DASH] = ACTIONS(7447), + [anon_sym_PLUS_PLUS] = ACTIONS(7447), + [anon_sym_DOT] = ACTIONS(7442), + [anon_sym_DOT_STAR] = ACTIONS(7447), + [anon_sym_DASH_GT] = ACTIONS(7447), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7442), + [anon_sym_final] = ACTIONS(7442), + [anon_sym_override] = ACTIONS(7442), + [anon_sym_template] = ACTIONS(7442), + [anon_sym_GT2] = ACTIONS(7447), + [anon_sym_requires] = ACTIONS(7442), + [anon_sym_LBRACK_COLON] = ACTIONS(7447), + }, + [STATE(4130)] = { + [sym_identifier] = ACTIONS(7810), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7812), + [anon_sym_COMMA] = ACTIONS(7812), + [anon_sym_RPAREN] = ACTIONS(7812), + [aux_sym_preproc_if_token2] = ACTIONS(7812), + [aux_sym_preproc_else_token1] = ACTIONS(7812), + [aux_sym_preproc_elif_token1] = ACTIONS(7810), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7812), + [anon_sym_LPAREN2] = ACTIONS(7812), + [anon_sym_DASH] = ACTIONS(7810), + [anon_sym_PLUS] = ACTIONS(7810), + [anon_sym_STAR] = ACTIONS(7810), + [anon_sym_SLASH] = ACTIONS(7810), + [anon_sym_PERCENT] = ACTIONS(7810), + [anon_sym_PIPE_PIPE] = ACTIONS(7812), + [anon_sym_AMP_AMP] = ACTIONS(7812), + [anon_sym_PIPE] = ACTIONS(7810), + [anon_sym_CARET] = ACTIONS(7810), + [anon_sym_AMP] = ACTIONS(7810), + [anon_sym_EQ_EQ] = ACTIONS(7812), + [anon_sym_BANG_EQ] = ACTIONS(7812), + [anon_sym_GT] = ACTIONS(7810), + [anon_sym_GT_EQ] = ACTIONS(7812), + [anon_sym_LT_EQ] = ACTIONS(7810), + [anon_sym_LT] = ACTIONS(7810), + [anon_sym_LT_LT] = ACTIONS(7810), + [anon_sym_GT_GT] = ACTIONS(7810), + [anon_sym_SEMI] = ACTIONS(7812), + [anon_sym___attribute__] = ACTIONS(7810), + [anon_sym___attribute] = ACTIONS(7810), + [anon_sym_COLON] = ACTIONS(7810), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7812), + [anon_sym_LBRACE] = ACTIONS(7812), + [anon_sym_RBRACE] = ACTIONS(7812), + [anon_sym_LBRACK] = ACTIONS(7812), + [anon_sym_EQ] = ACTIONS(7810), + [anon_sym_QMARK] = ACTIONS(7812), + [anon_sym_STAR_EQ] = ACTIONS(7812), + [anon_sym_SLASH_EQ] = ACTIONS(7812), + [anon_sym_PERCENT_EQ] = ACTIONS(7812), + [anon_sym_PLUS_EQ] = ACTIONS(7812), + [anon_sym_DASH_EQ] = ACTIONS(7812), + [anon_sym_LT_LT_EQ] = ACTIONS(7812), + [anon_sym_GT_GT_EQ] = ACTIONS(7812), + [anon_sym_AMP_EQ] = ACTIONS(7812), + [anon_sym_CARET_EQ] = ACTIONS(7812), + [anon_sym_PIPE_EQ] = ACTIONS(7812), + [anon_sym_and_eq] = ACTIONS(7810), + [anon_sym_or_eq] = ACTIONS(7810), + [anon_sym_xor_eq] = ACTIONS(7810), + [anon_sym_LT_EQ_GT] = ACTIONS(7812), + [anon_sym_or] = ACTIONS(7810), + [anon_sym_and] = ACTIONS(7810), + [anon_sym_bitor] = ACTIONS(7810), + [anon_sym_xor] = ACTIONS(7810), + [anon_sym_bitand] = ACTIONS(7810), + [anon_sym_not_eq] = ACTIONS(7810), + [anon_sym_DASH_DASH] = ACTIONS(7812), + [anon_sym_PLUS_PLUS] = ACTIONS(7812), + [anon_sym_DOT] = ACTIONS(7810), + [anon_sym_DOT_STAR] = ACTIONS(7812), + [anon_sym_DASH_GT] = ACTIONS(7812), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7812), + }, + [STATE(4131)] = { + [sym_type_qualifier] = STATE(4105), + [sym_alignas_qualifier] = STATE(4606), + [aux_sym__type_definition_type_repeat1] = STATE(4105), + [aux_sym_sized_type_specifier_repeat1] = STATE(4555), + [sym_identifier] = ACTIONS(10153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6934), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6934), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6934), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6934), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6934), + [anon_sym___extension__] = ACTIONS(10135), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(10155), + [anon_sym_unsigned] = ACTIONS(10155), + [anon_sym_long] = ACTIONS(10155), + [anon_sym_short] = ACTIONS(10155), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_RBRACK] = ACTIONS(6934), + [anon_sym_const] = ACTIONS(10135), + [anon_sym_constexpr] = ACTIONS(10135), + [anon_sym_volatile] = ACTIONS(10135), + [anon_sym_restrict] = ACTIONS(10135), + [anon_sym___restrict__] = ACTIONS(10135), + [anon_sym__Atomic] = ACTIONS(10135), + [anon_sym__Noreturn] = ACTIONS(10135), + [anon_sym_noreturn] = ACTIONS(10135), + [anon_sym__Nonnull] = ACTIONS(10135), + [anon_sym_mutable] = ACTIONS(10135), + [anon_sym_constinit] = ACTIONS(10135), + [anon_sym_consteval] = ACTIONS(10135), + [anon_sym_alignas] = ACTIONS(10139), + [anon_sym__Alignas] = ACTIONS(10139), + [sym_primitive_type] = ACTIONS(10157), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + }, + [STATE(4132)] = { + [sym_identifier] = ACTIONS(7743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_RPAREN] = ACTIONS(7745), + [aux_sym_preproc_if_token2] = ACTIONS(7745), + [aux_sym_preproc_else_token1] = ACTIONS(7745), + [aux_sym_preproc_elif_token1] = ACTIONS(7743), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7745), + [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(7745), + [anon_sym___attribute__] = ACTIONS(7743), + [anon_sym___attribute] = ACTIONS(7743), + [anon_sym_COLON] = ACTIONS(7743), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7745), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_RBRACE] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(7743), + [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(7743), + [anon_sym_or_eq] = ACTIONS(7743), + [anon_sym_xor_eq] = ACTIONS(7743), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7743), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7743), + [anon_sym_not_eq] = ACTIONS(7743), + [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_COLON_RBRACK] = ACTIONS(7745), + }, + [STATE(4133)] = { + [sym_identifier] = ACTIONS(7751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_RPAREN] = ACTIONS(7753), + [aux_sym_preproc_if_token2] = ACTIONS(7753), + [aux_sym_preproc_else_token1] = ACTIONS(7753), + [aux_sym_preproc_elif_token1] = ACTIONS(7751), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7753), + [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(7753), + [anon_sym___attribute__] = ACTIONS(7751), + [anon_sym___attribute] = ACTIONS(7751), + [anon_sym_COLON] = ACTIONS(7751), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_RBRACE] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_EQ] = ACTIONS(7751), + [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(7751), + [anon_sym_or_eq] = ACTIONS(7751), + [anon_sym_xor_eq] = ACTIONS(7751), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7751), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7751), + [anon_sym_not_eq] = ACTIONS(7751), + [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_COLON_RBRACK] = ACTIONS(7753), + }, + [STATE(4134)] = { + [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___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_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_COLON_RBRACK] = ACTIONS(7761), + }, + [STATE(4135)] = { + [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___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_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), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7769), + }, + [STATE(4136)] = { + [sym_attribute_specifier] = STATE(4242), + [sym_identifier] = ACTIONS(7634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7636), + [anon_sym_COMMA] = ACTIONS(7636), + [anon_sym_RPAREN] = ACTIONS(7636), + [anon_sym_LPAREN2] = ACTIONS(7636), + [anon_sym_TILDE] = ACTIONS(7636), + [anon_sym_STAR] = ACTIONS(7636), + [anon_sym_AMP_AMP] = ACTIONS(7636), + [anon_sym_AMP] = ACTIONS(7634), + [anon_sym_SEMI] = ACTIONS(7636), + [anon_sym___extension__] = ACTIONS(7634), + [anon_sym_virtual] = ACTIONS(7634), + [anon_sym_extern] = ACTIONS(7634), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7634), + [anon_sym_COLON_COLON] = ACTIONS(7636), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7636), + [anon_sym___declspec] = ACTIONS(7634), + [anon_sym___based] = ACTIONS(7634), + [anon_sym___cdecl] = ACTIONS(7634), + [anon_sym___clrcall] = ACTIONS(7634), + [anon_sym___stdcall] = ACTIONS(7634), + [anon_sym___fastcall] = ACTIONS(7634), + [anon_sym___thiscall] = ACTIONS(7634), + [anon_sym___vectorcall] = ACTIONS(7634), + [anon_sym_LBRACE] = ACTIONS(7636), + [anon_sym_LBRACK] = ACTIONS(7634), + [anon_sym_static] = ACTIONS(7634), + [anon_sym_EQ] = ACTIONS(7636), + [anon_sym_register] = ACTIONS(7634), + [anon_sym_inline] = ACTIONS(7634), + [anon_sym___inline] = ACTIONS(7634), + [anon_sym___inline__] = ACTIONS(7634), + [anon_sym___forceinline] = ACTIONS(7634), + [anon_sym_thread_local] = ACTIONS(7634), + [anon_sym___thread] = ACTIONS(7634), + [anon_sym_const] = ACTIONS(7634), + [anon_sym_constexpr] = ACTIONS(7634), + [anon_sym_volatile] = ACTIONS(7634), + [anon_sym_restrict] = ACTIONS(7634), + [anon_sym___restrict__] = ACTIONS(7634), + [anon_sym__Atomic] = ACTIONS(7634), + [anon_sym__Noreturn] = ACTIONS(7634), + [anon_sym_noreturn] = ACTIONS(7634), + [anon_sym__Nonnull] = ACTIONS(7634), + [anon_sym_mutable] = ACTIONS(7634), + [anon_sym_constinit] = ACTIONS(7634), + [anon_sym_consteval] = ACTIONS(7634), + [anon_sym_alignas] = ACTIONS(7634), + [anon_sym__Alignas] = ACTIONS(7634), + [anon_sym_asm] = ACTIONS(7634), + [anon_sym___asm__] = ACTIONS(7634), + [anon_sym___asm] = ACTIONS(7634), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7634), + [anon_sym_final] = ACTIONS(7634), + [anon_sym_override] = ACTIONS(7634), + [anon_sym_template] = ACTIONS(7634), + [anon_sym_GT2] = ACTIONS(7636), + [anon_sym_operator] = ACTIONS(7634), + [anon_sym_try] = ACTIONS(7634), + [anon_sym_requires] = ACTIONS(7634), + [anon_sym_LBRACK_COLON] = ACTIONS(7636), + }, + [STATE(4137)] = { + [sym_type_qualifier] = STATE(4061), + [sym_alignas_qualifier] = STATE(4634), + [aux_sym__type_definition_type_repeat1] = STATE(4061), + [aux_sym_sized_type_specifier_repeat1] = STATE(4569), + [sym_identifier] = ACTIONS(10159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6934), + [anon_sym_COMMA] = ACTIONS(6934), + [anon_sym_LPAREN2] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_PLUS] = ACTIONS(6936), + [anon_sym_STAR] = ACTIONS(6934), + [anon_sym_SLASH] = ACTIONS(6936), + [anon_sym_PERCENT] = ACTIONS(6934), + [anon_sym_PIPE_PIPE] = ACTIONS(6934), + [anon_sym_AMP_AMP] = ACTIONS(6934), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_CARET] = ACTIONS(6934), + [anon_sym_AMP] = ACTIONS(6936), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_BANG_EQ] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_EQ] = ACTIONS(6936), + [anon_sym_LT_EQ] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6936), + [anon_sym___extension__] = ACTIONS(10074), + [anon_sym___attribute__] = ACTIONS(6936), + [anon_sym___attribute] = ACTIONS(6936), + [anon_sym_LBRACE] = ACTIONS(6934), + [anon_sym_signed] = ACTIONS(10161), + [anon_sym_unsigned] = ACTIONS(10161), + [anon_sym_long] = ACTIONS(10161), + [anon_sym_short] = ACTIONS(10161), + [anon_sym_LBRACK] = ACTIONS(6934), + [anon_sym_const] = ACTIONS(10074), + [anon_sym_constexpr] = ACTIONS(10074), + [anon_sym_volatile] = ACTIONS(10074), + [anon_sym_restrict] = ACTIONS(10074), + [anon_sym___restrict__] = ACTIONS(10074), + [anon_sym__Atomic] = ACTIONS(10074), + [anon_sym__Noreturn] = ACTIONS(10074), + [anon_sym_noreturn] = ACTIONS(10074), + [anon_sym__Nonnull] = ACTIONS(10074), + [anon_sym_mutable] = ACTIONS(10074), + [anon_sym_constinit] = ACTIONS(10074), + [anon_sym_consteval] = ACTIONS(10074), + [anon_sym_alignas] = ACTIONS(10078), + [anon_sym__Alignas] = ACTIONS(10078), + [sym_primitive_type] = ACTIONS(10163), + [anon_sym_QMARK] = ACTIONS(6934), + [anon_sym_LT_EQ_GT] = ACTIONS(6934), + [anon_sym_or] = ACTIONS(6936), + [anon_sym_and] = ACTIONS(6936), + [anon_sym_bitor] = ACTIONS(6936), + [anon_sym_xor] = ACTIONS(6936), + [anon_sym_bitand] = ACTIONS(6936), + [anon_sym_not_eq] = ACTIONS(6936), + [anon_sym_DASH_DASH] = ACTIONS(6934), + [anon_sym_PLUS_PLUS] = ACTIONS(6934), + [anon_sym_DOT] = ACTIONS(6936), + [anon_sym_DOT_STAR] = ACTIONS(6934), + [anon_sym_DASH_GT] = ACTIONS(6934), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6934), + }, + [STATE(4138)] = { + [sym_identifier] = ACTIONS(7786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7788), + [anon_sym_COMMA] = ACTIONS(7788), + [anon_sym_RPAREN] = ACTIONS(7788), + [aux_sym_preproc_if_token2] = ACTIONS(7788), + [aux_sym_preproc_else_token1] = ACTIONS(7788), + [aux_sym_preproc_elif_token1] = ACTIONS(7786), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7788), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7788), + [anon_sym_LPAREN2] = ACTIONS(7788), + [anon_sym_DASH] = ACTIONS(7786), + [anon_sym_PLUS] = ACTIONS(7786), + [anon_sym_STAR] = ACTIONS(7786), + [anon_sym_SLASH] = ACTIONS(7786), + [anon_sym_PERCENT] = ACTIONS(7786), + [anon_sym_PIPE_PIPE] = ACTIONS(7788), + [anon_sym_AMP_AMP] = ACTIONS(7788), + [anon_sym_PIPE] = ACTIONS(7786), + [anon_sym_CARET] = ACTIONS(7786), + [anon_sym_AMP] = ACTIONS(7786), + [anon_sym_EQ_EQ] = ACTIONS(7788), + [anon_sym_BANG_EQ] = ACTIONS(7788), + [anon_sym_GT] = ACTIONS(7786), + [anon_sym_GT_EQ] = ACTIONS(7788), + [anon_sym_LT_EQ] = ACTIONS(7786), + [anon_sym_LT] = ACTIONS(7786), + [anon_sym_LT_LT] = ACTIONS(7786), + [anon_sym_GT_GT] = ACTIONS(7786), + [anon_sym_SEMI] = ACTIONS(7788), + [anon_sym___attribute__] = ACTIONS(7786), + [anon_sym___attribute] = ACTIONS(7786), + [anon_sym_COLON] = ACTIONS(7786), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7788), + [anon_sym_LBRACE] = ACTIONS(7788), + [anon_sym_RBRACE] = ACTIONS(7788), + [anon_sym_LBRACK] = ACTIONS(7788), + [anon_sym_EQ] = ACTIONS(7786), + [anon_sym_QMARK] = ACTIONS(7788), + [anon_sym_STAR_EQ] = ACTIONS(7788), + [anon_sym_SLASH_EQ] = ACTIONS(7788), + [anon_sym_PERCENT_EQ] = ACTIONS(7788), + [anon_sym_PLUS_EQ] = ACTIONS(7788), + [anon_sym_DASH_EQ] = ACTIONS(7788), + [anon_sym_LT_LT_EQ] = ACTIONS(7788), + [anon_sym_GT_GT_EQ] = ACTIONS(7788), + [anon_sym_AMP_EQ] = ACTIONS(7788), + [anon_sym_CARET_EQ] = ACTIONS(7788), + [anon_sym_PIPE_EQ] = ACTIONS(7788), + [anon_sym_and_eq] = ACTIONS(7786), + [anon_sym_or_eq] = ACTIONS(7786), + [anon_sym_xor_eq] = ACTIONS(7786), + [anon_sym_LT_EQ_GT] = ACTIONS(7788), + [anon_sym_or] = ACTIONS(7786), + [anon_sym_and] = ACTIONS(7786), + [anon_sym_bitor] = ACTIONS(7786), + [anon_sym_xor] = ACTIONS(7786), + [anon_sym_bitand] = ACTIONS(7786), + [anon_sym_not_eq] = ACTIONS(7786), + [anon_sym_DASH_DASH] = ACTIONS(7788), + [anon_sym_PLUS_PLUS] = ACTIONS(7788), + [anon_sym_DOT] = ACTIONS(7786), + [anon_sym_DOT_STAR] = ACTIONS(7788), + [anon_sym_DASH_GT] = ACTIONS(7788), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7788), + }, + [STATE(4139)] = { + [sym_identifier] = ACTIONS(7718), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7720), + [anon_sym_COMMA] = ACTIONS(7720), + [anon_sym_RPAREN] = ACTIONS(7720), + [aux_sym_preproc_if_token2] = ACTIONS(7720), + [aux_sym_preproc_else_token1] = ACTIONS(7720), + [aux_sym_preproc_elif_token1] = ACTIONS(7718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7720), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7720), + [anon_sym_LPAREN2] = ACTIONS(7720), + [anon_sym_DASH] = ACTIONS(7718), + [anon_sym_PLUS] = ACTIONS(7718), + [anon_sym_STAR] = ACTIONS(7718), + [anon_sym_SLASH] = ACTIONS(7718), + [anon_sym_PERCENT] = ACTIONS(7718), + [anon_sym_PIPE_PIPE] = ACTIONS(7720), + [anon_sym_AMP_AMP] = ACTIONS(7720), + [anon_sym_PIPE] = ACTIONS(7718), + [anon_sym_CARET] = ACTIONS(7718), + [anon_sym_AMP] = ACTIONS(7718), + [anon_sym_EQ_EQ] = ACTIONS(7720), + [anon_sym_BANG_EQ] = ACTIONS(7720), + [anon_sym_GT] = ACTIONS(7718), + [anon_sym_GT_EQ] = ACTIONS(7720), + [anon_sym_LT_EQ] = ACTIONS(7718), + [anon_sym_LT] = ACTIONS(7718), + [anon_sym_LT_LT] = ACTIONS(7718), + [anon_sym_GT_GT] = ACTIONS(7718), + [anon_sym_SEMI] = ACTIONS(7720), + [anon_sym___attribute__] = ACTIONS(7718), + [anon_sym___attribute] = ACTIONS(7718), + [anon_sym_COLON] = ACTIONS(7718), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7720), + [anon_sym_LBRACE] = ACTIONS(7720), + [anon_sym_RBRACE] = ACTIONS(7720), + [anon_sym_LBRACK] = ACTIONS(7720), + [anon_sym_EQ] = ACTIONS(7718), + [anon_sym_QMARK] = ACTIONS(7720), + [anon_sym_STAR_EQ] = ACTIONS(7720), + [anon_sym_SLASH_EQ] = ACTIONS(7720), + [anon_sym_PERCENT_EQ] = ACTIONS(7720), + [anon_sym_PLUS_EQ] = ACTIONS(7720), + [anon_sym_DASH_EQ] = ACTIONS(7720), + [anon_sym_LT_LT_EQ] = ACTIONS(7720), + [anon_sym_GT_GT_EQ] = ACTIONS(7720), + [anon_sym_AMP_EQ] = ACTIONS(7720), + [anon_sym_CARET_EQ] = ACTIONS(7720), + [anon_sym_PIPE_EQ] = ACTIONS(7720), + [anon_sym_and_eq] = ACTIONS(7718), + [anon_sym_or_eq] = ACTIONS(7718), + [anon_sym_xor_eq] = ACTIONS(7718), + [anon_sym_LT_EQ_GT] = ACTIONS(7720), + [anon_sym_or] = ACTIONS(7718), + [anon_sym_and] = ACTIONS(7718), + [anon_sym_bitor] = ACTIONS(7718), + [anon_sym_xor] = ACTIONS(7718), + [anon_sym_bitand] = ACTIONS(7718), + [anon_sym_not_eq] = ACTIONS(7718), + [anon_sym_DASH_DASH] = ACTIONS(7720), + [anon_sym_PLUS_PLUS] = ACTIONS(7720), + [anon_sym_DOT] = ACTIONS(7718), + [anon_sym_DOT_STAR] = ACTIONS(7720), + [anon_sym_DASH_GT] = ACTIONS(7720), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7720), + }, + [STATE(4140)] = { + [sym_attribute_specifier] = STATE(4140), + [aux_sym_type_definition_repeat1] = STATE(4140), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7400), + [anon_sym_COMMA] = ACTIONS(7400), + [anon_sym_LPAREN2] = ACTIONS(7400), + [anon_sym_DASH] = ACTIONS(7398), + [anon_sym_PLUS] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(7400), + [anon_sym_SLASH] = ACTIONS(7398), + [anon_sym_PERCENT] = ACTIONS(7400), + [anon_sym_PIPE_PIPE] = ACTIONS(7400), + [anon_sym_AMP_AMP] = ACTIONS(7400), + [anon_sym_PIPE] = ACTIONS(7398), + [anon_sym_CARET] = ACTIONS(7400), + [anon_sym_AMP] = ACTIONS(7398), + [anon_sym_EQ_EQ] = ACTIONS(7400), + [anon_sym_BANG_EQ] = ACTIONS(7400), + [anon_sym_GT] = ACTIONS(7398), + [anon_sym_GT_EQ] = ACTIONS(7398), + [anon_sym_LT_EQ] = ACTIONS(7398), + [anon_sym_LT] = ACTIONS(7398), + [anon_sym_LT_LT] = ACTIONS(7400), + [anon_sym_GT_GT] = ACTIONS(7398), + [anon_sym___extension__] = ACTIONS(7400), + [anon_sym___attribute__] = ACTIONS(10165), + [anon_sym___attribute] = ACTIONS(10168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7400), + [anon_sym_LBRACK] = ACTIONS(7398), + [anon_sym_const] = ACTIONS(7398), + [anon_sym_constexpr] = ACTIONS(7400), + [anon_sym_volatile] = ACTIONS(7400), + [anon_sym_restrict] = ACTIONS(7400), + [anon_sym___restrict__] = ACTIONS(7400), + [anon_sym__Atomic] = ACTIONS(7400), + [anon_sym__Noreturn] = ACTIONS(7400), + [anon_sym_noreturn] = ACTIONS(7400), + [anon_sym__Nonnull] = ACTIONS(7400), + [anon_sym_mutable] = ACTIONS(7400), + [anon_sym_constinit] = ACTIONS(7400), + [anon_sym_consteval] = ACTIONS(7400), + [anon_sym_alignas] = ACTIONS(7400), + [anon_sym__Alignas] = ACTIONS(7400), + [anon_sym_QMARK] = ACTIONS(7400), + [anon_sym_LT_EQ_GT] = ACTIONS(7400), + [anon_sym_or] = ACTIONS(7400), + [anon_sym_and] = ACTIONS(7400), + [anon_sym_bitor] = ACTIONS(7400), + [anon_sym_xor] = ACTIONS(7400), + [anon_sym_bitand] = ACTIONS(7400), + [anon_sym_not_eq] = ACTIONS(7400), + [anon_sym_DASH_DASH] = ACTIONS(7400), + [anon_sym_PLUS_PLUS] = ACTIONS(7400), + [anon_sym_asm] = ACTIONS(7400), + [anon_sym___asm__] = ACTIONS(7400), + [anon_sym___asm] = ACTIONS(7398), + [anon_sym_DOT] = ACTIONS(7398), + [anon_sym_DOT_STAR] = ACTIONS(7400), + [anon_sym_DASH_GT] = ACTIONS(7400), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7400), + [anon_sym_override] = ACTIONS(7400), + [anon_sym_GT2] = ACTIONS(7400), + [anon_sym_noexcept] = ACTIONS(7400), + [anon_sym_throw] = ACTIONS(7400), + [anon_sym_requires] = ACTIONS(7400), + }, + [STATE(4141)] = { + [sym_attribute_specifier] = STATE(4338), + [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_TILDE] = ACTIONS(7674), + [anon_sym_STAR] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_SEMI] = ACTIONS(7674), + [anon_sym___extension__] = ACTIONS(7672), + [anon_sym_virtual] = ACTIONS(7672), + [anon_sym_extern] = ACTIONS(7672), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7672), + [anon_sym_COLON_COLON] = ACTIONS(7674), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7674), + [anon_sym___declspec] = ACTIONS(7672), + [anon_sym___based] = ACTIONS(7672), + [anon_sym___cdecl] = ACTIONS(7672), + [anon_sym___clrcall] = ACTIONS(7672), + [anon_sym___stdcall] = ACTIONS(7672), + [anon_sym___fastcall] = ACTIONS(7672), + [anon_sym___thiscall] = ACTIONS(7672), + [anon_sym___vectorcall] = ACTIONS(7672), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7672), + [anon_sym_static] = ACTIONS(7672), + [anon_sym_EQ] = ACTIONS(7674), + [anon_sym_register] = ACTIONS(7672), + [anon_sym_inline] = ACTIONS(7672), + [anon_sym___inline] = ACTIONS(7672), + [anon_sym___inline__] = ACTIONS(7672), + [anon_sym___forceinline] = ACTIONS(7672), + [anon_sym_thread_local] = ACTIONS(7672), + [anon_sym___thread] = 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_asm] = ACTIONS(7672), + [anon_sym___asm__] = ACTIONS(7672), + [anon_sym___asm] = ACTIONS(7672), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7672), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_template] = ACTIONS(7672), + [anon_sym_GT2] = ACTIONS(7674), + [anon_sym_operator] = ACTIONS(7672), + [anon_sym_try] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_LBRACK_COLON] = ACTIONS(7674), + }, + [STATE(4142)] = { + [sym_identifier] = ACTIONS(7806), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7808), + [anon_sym_COMMA] = ACTIONS(7808), + [anon_sym_RPAREN] = ACTIONS(7808), + [aux_sym_preproc_if_token2] = ACTIONS(7808), + [aux_sym_preproc_else_token1] = ACTIONS(7808), + [aux_sym_preproc_elif_token1] = ACTIONS(7806), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7808), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7808), + [anon_sym_LPAREN2] = ACTIONS(7808), + [anon_sym_DASH] = ACTIONS(7806), + [anon_sym_PLUS] = ACTIONS(7806), + [anon_sym_STAR] = ACTIONS(7806), + [anon_sym_SLASH] = ACTIONS(7806), + [anon_sym_PERCENT] = ACTIONS(7806), + [anon_sym_PIPE_PIPE] = ACTIONS(7808), + [anon_sym_AMP_AMP] = ACTIONS(7808), + [anon_sym_PIPE] = ACTIONS(7806), + [anon_sym_CARET] = ACTIONS(7806), + [anon_sym_AMP] = ACTIONS(7806), + [anon_sym_EQ_EQ] = ACTIONS(7808), + [anon_sym_BANG_EQ] = ACTIONS(7808), + [anon_sym_GT] = ACTIONS(7806), + [anon_sym_GT_EQ] = ACTIONS(7808), + [anon_sym_LT_EQ] = ACTIONS(7806), + [anon_sym_LT] = ACTIONS(7806), + [anon_sym_LT_LT] = ACTIONS(7806), + [anon_sym_GT_GT] = ACTIONS(7806), + [anon_sym_SEMI] = ACTIONS(7808), + [anon_sym___attribute__] = ACTIONS(7806), + [anon_sym___attribute] = ACTIONS(7806), + [anon_sym_COLON] = ACTIONS(7806), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7808), + [anon_sym_LBRACE] = ACTIONS(7808), + [anon_sym_RBRACE] = ACTIONS(7808), + [anon_sym_LBRACK] = ACTIONS(7808), + [anon_sym_EQ] = ACTIONS(7806), + [anon_sym_QMARK] = ACTIONS(7808), + [anon_sym_STAR_EQ] = ACTIONS(7808), + [anon_sym_SLASH_EQ] = ACTIONS(7808), + [anon_sym_PERCENT_EQ] = ACTIONS(7808), + [anon_sym_PLUS_EQ] = ACTIONS(7808), + [anon_sym_DASH_EQ] = ACTIONS(7808), + [anon_sym_LT_LT_EQ] = ACTIONS(7808), + [anon_sym_GT_GT_EQ] = ACTIONS(7808), + [anon_sym_AMP_EQ] = ACTIONS(7808), + [anon_sym_CARET_EQ] = ACTIONS(7808), + [anon_sym_PIPE_EQ] = ACTIONS(7808), + [anon_sym_and_eq] = ACTIONS(7806), + [anon_sym_or_eq] = ACTIONS(7806), + [anon_sym_xor_eq] = ACTIONS(7806), + [anon_sym_LT_EQ_GT] = ACTIONS(7808), + [anon_sym_or] = ACTIONS(7806), + [anon_sym_and] = ACTIONS(7806), + [anon_sym_bitor] = ACTIONS(7806), + [anon_sym_xor] = ACTIONS(7806), + [anon_sym_bitand] = ACTIONS(7806), + [anon_sym_not_eq] = ACTIONS(7806), + [anon_sym_DASH_DASH] = ACTIONS(7808), + [anon_sym_PLUS_PLUS] = ACTIONS(7808), + [anon_sym_DOT] = ACTIONS(7806), + [anon_sym_DOT_STAR] = ACTIONS(7808), + [anon_sym_DASH_GT] = ACTIONS(7808), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7808), + }, + [STATE(4143)] = { + [sym_attribute_specifier] = STATE(4273), + [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_TILDE] = ACTIONS(7678), + [anon_sym_STAR] = ACTIONS(7678), + [anon_sym_AMP_AMP] = ACTIONS(7678), + [anon_sym_AMP] = ACTIONS(7676), + [anon_sym_SEMI] = ACTIONS(7678), + [anon_sym___extension__] = ACTIONS(7676), + [anon_sym_virtual] = ACTIONS(7676), + [anon_sym_extern] = ACTIONS(7676), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7676), + [anon_sym_COLON_COLON] = ACTIONS(7678), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7678), + [anon_sym___declspec] = ACTIONS(7676), + [anon_sym___based] = ACTIONS(7676), + [anon_sym___cdecl] = ACTIONS(7676), + [anon_sym___clrcall] = ACTIONS(7676), + [anon_sym___stdcall] = ACTIONS(7676), + [anon_sym___fastcall] = ACTIONS(7676), + [anon_sym___thiscall] = ACTIONS(7676), + [anon_sym___vectorcall] = ACTIONS(7676), + [anon_sym_LBRACE] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7676), + [anon_sym_static] = ACTIONS(7676), + [anon_sym_EQ] = ACTIONS(7678), + [anon_sym_register] = ACTIONS(7676), + [anon_sym_inline] = ACTIONS(7676), + [anon_sym___inline] = ACTIONS(7676), + [anon_sym___inline__] = ACTIONS(7676), + [anon_sym___forceinline] = ACTIONS(7676), + [anon_sym_thread_local] = ACTIONS(7676), + [anon_sym___thread] = 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_asm] = ACTIONS(7676), + [anon_sym___asm__] = ACTIONS(7676), + [anon_sym___asm] = ACTIONS(7676), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7676), + [anon_sym_final] = ACTIONS(7676), + [anon_sym_override] = ACTIONS(7676), + [anon_sym_template] = ACTIONS(7676), + [anon_sym_GT2] = ACTIONS(7678), + [anon_sym_operator] = ACTIONS(7676), + [anon_sym_try] = ACTIONS(7676), + [anon_sym_requires] = ACTIONS(7676), + [anon_sym_LBRACK_COLON] = ACTIONS(7678), + }, + [STATE(4144)] = { + [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___attribute__] = ACTIONS(7491), + [anon_sym___attribute] = ACTIONS(7491), + [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_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_COLON_RBRACK] = ACTIONS(7493), + }, + [STATE(4145)] = { + [sym_identifier] = ACTIONS(7850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7852), + [anon_sym_COMMA] = ACTIONS(7852), + [anon_sym_RPAREN] = ACTIONS(7852), + [aux_sym_preproc_if_token2] = ACTIONS(7852), + [aux_sym_preproc_else_token1] = ACTIONS(7852), + [aux_sym_preproc_elif_token1] = ACTIONS(7850), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7852), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7852), + [anon_sym_LPAREN2] = ACTIONS(7852), + [anon_sym_DASH] = ACTIONS(7850), + [anon_sym_PLUS] = ACTIONS(7850), + [anon_sym_STAR] = ACTIONS(7850), + [anon_sym_SLASH] = ACTIONS(7850), + [anon_sym_PERCENT] = ACTIONS(7850), + [anon_sym_PIPE_PIPE] = ACTIONS(7852), + [anon_sym_AMP_AMP] = ACTIONS(7852), + [anon_sym_PIPE] = ACTIONS(7850), + [anon_sym_CARET] = ACTIONS(7850), + [anon_sym_AMP] = ACTIONS(7850), + [anon_sym_EQ_EQ] = ACTIONS(7852), + [anon_sym_BANG_EQ] = ACTIONS(7852), + [anon_sym_GT] = ACTIONS(7850), + [anon_sym_GT_EQ] = ACTIONS(7852), + [anon_sym_LT_EQ] = ACTIONS(7850), + [anon_sym_LT] = ACTIONS(7850), + [anon_sym_LT_LT] = ACTIONS(7850), + [anon_sym_GT_GT] = ACTIONS(7850), + [anon_sym_SEMI] = ACTIONS(7852), + [anon_sym___attribute__] = ACTIONS(7850), + [anon_sym___attribute] = ACTIONS(7850), + [anon_sym_COLON] = ACTIONS(7850), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7852), + [anon_sym_LBRACE] = ACTIONS(7852), + [anon_sym_RBRACE] = ACTIONS(7852), + [anon_sym_LBRACK] = ACTIONS(7852), + [anon_sym_EQ] = ACTIONS(7850), + [anon_sym_QMARK] = ACTIONS(7852), + [anon_sym_STAR_EQ] = ACTIONS(7852), + [anon_sym_SLASH_EQ] = ACTIONS(7852), + [anon_sym_PERCENT_EQ] = ACTIONS(7852), + [anon_sym_PLUS_EQ] = ACTIONS(7852), + [anon_sym_DASH_EQ] = ACTIONS(7852), + [anon_sym_LT_LT_EQ] = ACTIONS(7852), + [anon_sym_GT_GT_EQ] = ACTIONS(7852), + [anon_sym_AMP_EQ] = ACTIONS(7852), + [anon_sym_CARET_EQ] = ACTIONS(7852), + [anon_sym_PIPE_EQ] = ACTIONS(7852), + [anon_sym_and_eq] = ACTIONS(7850), + [anon_sym_or_eq] = ACTIONS(7850), + [anon_sym_xor_eq] = ACTIONS(7850), + [anon_sym_LT_EQ_GT] = ACTIONS(7852), + [anon_sym_or] = ACTIONS(7850), + [anon_sym_and] = ACTIONS(7850), + [anon_sym_bitor] = ACTIONS(7850), + [anon_sym_xor] = ACTIONS(7850), + [anon_sym_bitand] = ACTIONS(7850), + [anon_sym_not_eq] = ACTIONS(7850), + [anon_sym_DASH_DASH] = ACTIONS(7852), + [anon_sym_PLUS_PLUS] = ACTIONS(7852), + [anon_sym_DOT] = ACTIONS(7850), + [anon_sym_DOT_STAR] = ACTIONS(7852), + [anon_sym_DASH_GT] = ACTIONS(7852), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7852), + }, + [STATE(4146)] = { + [sym_attribute_specifier] = STATE(4279), + [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_TILDE] = ACTIONS(7682), + [anon_sym_STAR] = ACTIONS(7682), + [anon_sym_AMP_AMP] = ACTIONS(7682), + [anon_sym_AMP] = ACTIONS(7680), + [anon_sym_SEMI] = ACTIONS(7682), + [anon_sym___extension__] = ACTIONS(7680), + [anon_sym_virtual] = ACTIONS(7680), + [anon_sym_extern] = ACTIONS(7680), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7680), + [anon_sym_COLON_COLON] = ACTIONS(7682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7682), + [anon_sym___declspec] = ACTIONS(7680), + [anon_sym___based] = ACTIONS(7680), + [anon_sym___cdecl] = ACTIONS(7680), + [anon_sym___clrcall] = ACTIONS(7680), + [anon_sym___stdcall] = ACTIONS(7680), + [anon_sym___fastcall] = ACTIONS(7680), + [anon_sym___thiscall] = ACTIONS(7680), + [anon_sym___vectorcall] = ACTIONS(7680), + [anon_sym_LBRACE] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7680), + [anon_sym_static] = ACTIONS(7680), + [anon_sym_EQ] = ACTIONS(7682), + [anon_sym_register] = ACTIONS(7680), + [anon_sym_inline] = ACTIONS(7680), + [anon_sym___inline] = ACTIONS(7680), + [anon_sym___inline__] = ACTIONS(7680), + [anon_sym___forceinline] = ACTIONS(7680), + [anon_sym_thread_local] = ACTIONS(7680), + [anon_sym___thread] = 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_asm] = ACTIONS(7680), + [anon_sym___asm__] = ACTIONS(7680), + [anon_sym___asm] = ACTIONS(7680), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7680), + [anon_sym_final] = ACTIONS(7680), + [anon_sym_override] = ACTIONS(7680), + [anon_sym_template] = ACTIONS(7680), + [anon_sym_GT2] = ACTIONS(7682), + [anon_sym_operator] = ACTIONS(7680), + [anon_sym_try] = ACTIONS(7680), + [anon_sym_requires] = ACTIONS(7680), + [anon_sym_LBRACK_COLON] = ACTIONS(7682), + }, + [STATE(4147)] = { + [sym_attribute_specifier] = STATE(4237), + [sym_identifier] = ACTIONS(7688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7690), + [anon_sym_COMMA] = ACTIONS(7690), + [anon_sym_RPAREN] = ACTIONS(7690), + [anon_sym_LPAREN2] = ACTIONS(7690), + [anon_sym_TILDE] = ACTIONS(7690), + [anon_sym_STAR] = ACTIONS(7690), + [anon_sym_AMP_AMP] = ACTIONS(7690), + [anon_sym_AMP] = ACTIONS(7688), + [anon_sym_SEMI] = ACTIONS(7690), + [anon_sym___extension__] = ACTIONS(7688), + [anon_sym_virtual] = ACTIONS(7688), + [anon_sym_extern] = ACTIONS(7688), + [anon_sym___attribute__] = ACTIONS(8593), + [anon_sym___attribute] = ACTIONS(8593), + [anon_sym_COLON] = ACTIONS(7688), + [anon_sym_COLON_COLON] = ACTIONS(7690), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7690), + [anon_sym___declspec] = ACTIONS(7688), + [anon_sym___based] = ACTIONS(7688), + [anon_sym___cdecl] = ACTIONS(7688), + [anon_sym___clrcall] = ACTIONS(7688), + [anon_sym___stdcall] = ACTIONS(7688), + [anon_sym___fastcall] = ACTIONS(7688), + [anon_sym___thiscall] = ACTIONS(7688), + [anon_sym___vectorcall] = ACTIONS(7688), + [anon_sym_LBRACE] = ACTIONS(7690), + [anon_sym_LBRACK] = ACTIONS(7688), + [anon_sym_static] = ACTIONS(7688), + [anon_sym_EQ] = ACTIONS(7690), + [anon_sym_register] = ACTIONS(7688), + [anon_sym_inline] = ACTIONS(7688), + [anon_sym___inline] = ACTIONS(7688), + [anon_sym___inline__] = ACTIONS(7688), + [anon_sym___forceinline] = ACTIONS(7688), + [anon_sym_thread_local] = ACTIONS(7688), + [anon_sym___thread] = ACTIONS(7688), + [anon_sym_const] = ACTIONS(7688), + [anon_sym_constexpr] = ACTIONS(7688), + [anon_sym_volatile] = ACTIONS(7688), + [anon_sym_restrict] = ACTIONS(7688), + [anon_sym___restrict__] = ACTIONS(7688), + [anon_sym__Atomic] = ACTIONS(7688), + [anon_sym__Noreturn] = ACTIONS(7688), + [anon_sym_noreturn] = ACTIONS(7688), + [anon_sym__Nonnull] = ACTIONS(7688), + [anon_sym_mutable] = ACTIONS(7688), + [anon_sym_constinit] = ACTIONS(7688), + [anon_sym_consteval] = ACTIONS(7688), + [anon_sym_alignas] = ACTIONS(7688), + [anon_sym__Alignas] = ACTIONS(7688), + [anon_sym_asm] = ACTIONS(7688), + [anon_sym___asm__] = ACTIONS(7688), + [anon_sym___asm] = ACTIONS(7688), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7688), + [anon_sym_final] = ACTIONS(7688), + [anon_sym_override] = ACTIONS(7688), + [anon_sym_template] = ACTIONS(7688), + [anon_sym_GT2] = ACTIONS(7690), + [anon_sym_operator] = ACTIONS(7688), + [anon_sym_try] = ACTIONS(7688), + [anon_sym_requires] = ACTIONS(7688), + [anon_sym_LBRACK_COLON] = ACTIONS(7690), + }, + [STATE(4148)] = { + [sym_identifier] = ACTIONS(7818), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7820), + [anon_sym_COMMA] = ACTIONS(7820), + [anon_sym_RPAREN] = ACTIONS(7820), + [aux_sym_preproc_if_token2] = ACTIONS(7820), + [aux_sym_preproc_else_token1] = ACTIONS(7820), + [aux_sym_preproc_elif_token1] = ACTIONS(7818), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7820), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7820), + [anon_sym_LPAREN2] = ACTIONS(7820), + [anon_sym_DASH] = ACTIONS(7818), + [anon_sym_PLUS] = ACTIONS(7818), + [anon_sym_STAR] = ACTIONS(7818), + [anon_sym_SLASH] = ACTIONS(7818), + [anon_sym_PERCENT] = ACTIONS(7818), + [anon_sym_PIPE_PIPE] = ACTIONS(7820), + [anon_sym_AMP_AMP] = ACTIONS(7820), + [anon_sym_PIPE] = ACTIONS(7818), + [anon_sym_CARET] = ACTIONS(7818), + [anon_sym_AMP] = ACTIONS(7818), + [anon_sym_EQ_EQ] = ACTIONS(7820), + [anon_sym_BANG_EQ] = ACTIONS(7820), + [anon_sym_GT] = ACTIONS(7818), + [anon_sym_GT_EQ] = ACTIONS(7820), + [anon_sym_LT_EQ] = ACTIONS(7818), + [anon_sym_LT] = ACTIONS(7818), + [anon_sym_LT_LT] = ACTIONS(7818), + [anon_sym_GT_GT] = ACTIONS(7818), + [anon_sym_SEMI] = ACTIONS(7820), + [anon_sym___attribute__] = ACTIONS(7818), + [anon_sym___attribute] = ACTIONS(7818), + [anon_sym_COLON] = ACTIONS(7818), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7820), + [anon_sym_LBRACE] = ACTIONS(7820), + [anon_sym_RBRACE] = ACTIONS(7820), + [anon_sym_LBRACK] = ACTIONS(7820), + [anon_sym_EQ] = ACTIONS(7818), + [anon_sym_QMARK] = ACTIONS(7820), + [anon_sym_STAR_EQ] = ACTIONS(7820), + [anon_sym_SLASH_EQ] = ACTIONS(7820), + [anon_sym_PERCENT_EQ] = ACTIONS(7820), + [anon_sym_PLUS_EQ] = ACTIONS(7820), + [anon_sym_DASH_EQ] = ACTIONS(7820), + [anon_sym_LT_LT_EQ] = ACTIONS(7820), + [anon_sym_GT_GT_EQ] = ACTIONS(7820), + [anon_sym_AMP_EQ] = ACTIONS(7820), + [anon_sym_CARET_EQ] = ACTIONS(7820), + [anon_sym_PIPE_EQ] = ACTIONS(7820), + [anon_sym_and_eq] = ACTIONS(7818), + [anon_sym_or_eq] = ACTIONS(7818), + [anon_sym_xor_eq] = ACTIONS(7818), + [anon_sym_LT_EQ_GT] = ACTIONS(7820), + [anon_sym_or] = ACTIONS(7818), + [anon_sym_and] = ACTIONS(7818), + [anon_sym_bitor] = ACTIONS(7818), + [anon_sym_xor] = ACTIONS(7818), + [anon_sym_bitand] = ACTIONS(7818), + [anon_sym_not_eq] = ACTIONS(7818), + [anon_sym_DASH_DASH] = ACTIONS(7820), + [anon_sym_PLUS_PLUS] = ACTIONS(7820), + [anon_sym_DOT] = ACTIONS(7818), + [anon_sym_DOT_STAR] = ACTIONS(7820), + [anon_sym_DASH_GT] = ACTIONS(7820), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7820), + }, + [STATE(4149)] = { + [sym_identifier] = ACTIONS(7822), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7824), + [anon_sym_COMMA] = ACTIONS(7824), + [anon_sym_RPAREN] = ACTIONS(7824), + [aux_sym_preproc_if_token2] = ACTIONS(7824), + [aux_sym_preproc_else_token1] = ACTIONS(7824), + [aux_sym_preproc_elif_token1] = ACTIONS(7822), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7824), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7824), + [anon_sym_LPAREN2] = ACTIONS(7824), + [anon_sym_DASH] = ACTIONS(7822), + [anon_sym_PLUS] = ACTIONS(7822), + [anon_sym_STAR] = ACTIONS(7822), + [anon_sym_SLASH] = ACTIONS(7822), + [anon_sym_PERCENT] = ACTIONS(7822), + [anon_sym_PIPE_PIPE] = ACTIONS(7824), + [anon_sym_AMP_AMP] = ACTIONS(7824), + [anon_sym_PIPE] = ACTIONS(7822), + [anon_sym_CARET] = ACTIONS(7822), + [anon_sym_AMP] = ACTIONS(7822), + [anon_sym_EQ_EQ] = ACTIONS(7824), + [anon_sym_BANG_EQ] = ACTIONS(7824), + [anon_sym_GT] = ACTIONS(7822), + [anon_sym_GT_EQ] = ACTIONS(7824), + [anon_sym_LT_EQ] = ACTIONS(7822), + [anon_sym_LT] = ACTIONS(7822), + [anon_sym_LT_LT] = ACTIONS(7822), + [anon_sym_GT_GT] = ACTIONS(7822), + [anon_sym_SEMI] = ACTIONS(7824), + [anon_sym___attribute__] = ACTIONS(7822), + [anon_sym___attribute] = ACTIONS(7822), + [anon_sym_COLON] = ACTIONS(7822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7824), + [anon_sym_LBRACE] = ACTIONS(7824), + [anon_sym_RBRACE] = ACTIONS(7824), + [anon_sym_LBRACK] = ACTIONS(7824), + [anon_sym_EQ] = ACTIONS(7822), + [anon_sym_QMARK] = ACTIONS(7824), + [anon_sym_STAR_EQ] = ACTIONS(7824), + [anon_sym_SLASH_EQ] = ACTIONS(7824), + [anon_sym_PERCENT_EQ] = ACTIONS(7824), + [anon_sym_PLUS_EQ] = ACTIONS(7824), + [anon_sym_DASH_EQ] = ACTIONS(7824), + [anon_sym_LT_LT_EQ] = ACTIONS(7824), + [anon_sym_GT_GT_EQ] = ACTIONS(7824), + [anon_sym_AMP_EQ] = ACTIONS(7824), + [anon_sym_CARET_EQ] = ACTIONS(7824), + [anon_sym_PIPE_EQ] = ACTIONS(7824), + [anon_sym_and_eq] = ACTIONS(7822), + [anon_sym_or_eq] = ACTIONS(7822), + [anon_sym_xor_eq] = ACTIONS(7822), + [anon_sym_LT_EQ_GT] = ACTIONS(7824), + [anon_sym_or] = ACTIONS(7822), + [anon_sym_and] = ACTIONS(7822), + [anon_sym_bitor] = ACTIONS(7822), + [anon_sym_xor] = ACTIONS(7822), + [anon_sym_bitand] = ACTIONS(7822), + [anon_sym_not_eq] = ACTIONS(7822), + [anon_sym_DASH_DASH] = ACTIONS(7824), + [anon_sym_PLUS_PLUS] = ACTIONS(7824), + [anon_sym_DOT] = ACTIONS(7822), + [anon_sym_DOT_STAR] = ACTIONS(7824), + [anon_sym_DASH_GT] = ACTIONS(7824), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7824), + }, + [STATE(4150)] = { + [sym_identifier] = ACTIONS(7826), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7828), + [anon_sym_COMMA] = ACTIONS(7828), + [anon_sym_RPAREN] = ACTIONS(7828), + [aux_sym_preproc_if_token2] = ACTIONS(7828), + [aux_sym_preproc_else_token1] = ACTIONS(7828), + [aux_sym_preproc_elif_token1] = ACTIONS(7826), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7828), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7828), + [anon_sym_LPAREN2] = ACTIONS(7828), + [anon_sym_DASH] = ACTIONS(7826), + [anon_sym_PLUS] = ACTIONS(7826), + [anon_sym_STAR] = ACTIONS(7826), + [anon_sym_SLASH] = ACTIONS(7826), + [anon_sym_PERCENT] = ACTIONS(7826), + [anon_sym_PIPE_PIPE] = ACTIONS(7828), + [anon_sym_AMP_AMP] = ACTIONS(7828), + [anon_sym_PIPE] = ACTIONS(7826), + [anon_sym_CARET] = ACTIONS(7826), + [anon_sym_AMP] = ACTIONS(7826), + [anon_sym_EQ_EQ] = ACTIONS(7828), + [anon_sym_BANG_EQ] = ACTIONS(7828), + [anon_sym_GT] = ACTIONS(7826), + [anon_sym_GT_EQ] = ACTIONS(7828), + [anon_sym_LT_EQ] = ACTIONS(7826), + [anon_sym_LT] = ACTIONS(7826), + [anon_sym_LT_LT] = ACTIONS(7826), + [anon_sym_GT_GT] = ACTIONS(7826), + [anon_sym_SEMI] = ACTIONS(7828), + [anon_sym___attribute__] = ACTIONS(7826), + [anon_sym___attribute] = ACTIONS(7826), + [anon_sym_COLON] = ACTIONS(7826), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7828), + [anon_sym_LBRACE] = ACTIONS(7828), + [anon_sym_RBRACE] = ACTIONS(7828), + [anon_sym_LBRACK] = ACTIONS(7828), + [anon_sym_EQ] = ACTIONS(7826), + [anon_sym_QMARK] = ACTIONS(7828), + [anon_sym_STAR_EQ] = ACTIONS(7828), + [anon_sym_SLASH_EQ] = ACTIONS(7828), + [anon_sym_PERCENT_EQ] = ACTIONS(7828), + [anon_sym_PLUS_EQ] = ACTIONS(7828), + [anon_sym_DASH_EQ] = ACTIONS(7828), + [anon_sym_LT_LT_EQ] = ACTIONS(7828), + [anon_sym_GT_GT_EQ] = ACTIONS(7828), + [anon_sym_AMP_EQ] = ACTIONS(7828), + [anon_sym_CARET_EQ] = ACTIONS(7828), + [anon_sym_PIPE_EQ] = ACTIONS(7828), + [anon_sym_and_eq] = ACTIONS(7826), + [anon_sym_or_eq] = ACTIONS(7826), + [anon_sym_xor_eq] = ACTIONS(7826), + [anon_sym_LT_EQ_GT] = ACTIONS(7828), + [anon_sym_or] = ACTIONS(7826), + [anon_sym_and] = ACTIONS(7826), + [anon_sym_bitor] = ACTIONS(7826), + [anon_sym_xor] = ACTIONS(7826), + [anon_sym_bitand] = ACTIONS(7826), + [anon_sym_not_eq] = ACTIONS(7826), + [anon_sym_DASH_DASH] = ACTIONS(7828), + [anon_sym_PLUS_PLUS] = ACTIONS(7828), + [anon_sym_DOT] = ACTIONS(7826), + [anon_sym_DOT_STAR] = ACTIONS(7828), + [anon_sym_DASH_GT] = ACTIONS(7828), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7828), + }, + [STATE(4151)] = { + [sym_identifier] = ACTIONS(7830), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7832), + [anon_sym_COMMA] = ACTIONS(7832), + [anon_sym_RPAREN] = ACTIONS(7832), + [aux_sym_preproc_if_token2] = ACTIONS(7832), + [aux_sym_preproc_else_token1] = ACTIONS(7832), + [aux_sym_preproc_elif_token1] = ACTIONS(7830), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7832), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7832), + [anon_sym_LPAREN2] = ACTIONS(7832), + [anon_sym_DASH] = ACTIONS(7830), + [anon_sym_PLUS] = ACTIONS(7830), + [anon_sym_STAR] = ACTIONS(7830), + [anon_sym_SLASH] = ACTIONS(7830), + [anon_sym_PERCENT] = ACTIONS(7830), + [anon_sym_PIPE_PIPE] = ACTIONS(7832), + [anon_sym_AMP_AMP] = ACTIONS(7832), + [anon_sym_PIPE] = ACTIONS(7830), + [anon_sym_CARET] = ACTIONS(7830), + [anon_sym_AMP] = ACTIONS(7830), + [anon_sym_EQ_EQ] = ACTIONS(7832), + [anon_sym_BANG_EQ] = ACTIONS(7832), + [anon_sym_GT] = ACTIONS(7830), + [anon_sym_GT_EQ] = ACTIONS(7832), + [anon_sym_LT_EQ] = ACTIONS(7830), + [anon_sym_LT] = ACTIONS(7830), + [anon_sym_LT_LT] = ACTIONS(7830), + [anon_sym_GT_GT] = ACTIONS(7830), + [anon_sym_SEMI] = ACTIONS(7832), + [anon_sym___attribute__] = ACTIONS(7830), + [anon_sym___attribute] = ACTIONS(7830), + [anon_sym_COLON] = ACTIONS(7830), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7832), + [anon_sym_LBRACE] = ACTIONS(7832), + [anon_sym_RBRACE] = ACTIONS(7832), + [anon_sym_LBRACK] = ACTIONS(7832), + [anon_sym_EQ] = ACTIONS(7830), + [anon_sym_QMARK] = ACTIONS(7832), + [anon_sym_STAR_EQ] = ACTIONS(7832), + [anon_sym_SLASH_EQ] = ACTIONS(7832), + [anon_sym_PERCENT_EQ] = ACTIONS(7832), + [anon_sym_PLUS_EQ] = ACTIONS(7832), + [anon_sym_DASH_EQ] = ACTIONS(7832), + [anon_sym_LT_LT_EQ] = ACTIONS(7832), + [anon_sym_GT_GT_EQ] = ACTIONS(7832), + [anon_sym_AMP_EQ] = ACTIONS(7832), + [anon_sym_CARET_EQ] = ACTIONS(7832), + [anon_sym_PIPE_EQ] = ACTIONS(7832), + [anon_sym_and_eq] = ACTIONS(7830), + [anon_sym_or_eq] = ACTIONS(7830), + [anon_sym_xor_eq] = ACTIONS(7830), + [anon_sym_LT_EQ_GT] = ACTIONS(7832), + [anon_sym_or] = ACTIONS(7830), + [anon_sym_and] = ACTIONS(7830), + [anon_sym_bitor] = ACTIONS(7830), + [anon_sym_xor] = ACTIONS(7830), + [anon_sym_bitand] = ACTIONS(7830), + [anon_sym_not_eq] = ACTIONS(7830), + [anon_sym_DASH_DASH] = ACTIONS(7832), + [anon_sym_PLUS_PLUS] = ACTIONS(7832), + [anon_sym_DOT] = ACTIONS(7830), + [anon_sym_DOT_STAR] = ACTIONS(7832), + [anon_sym_DASH_GT] = ACTIONS(7832), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7832), + }, + [STATE(4152)] = { + [sym_identifier] = ACTIONS(7834), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7836), + [anon_sym_COMMA] = ACTIONS(7836), + [anon_sym_RPAREN] = ACTIONS(7836), + [aux_sym_preproc_if_token2] = ACTIONS(7836), + [aux_sym_preproc_else_token1] = ACTIONS(7836), + [aux_sym_preproc_elif_token1] = ACTIONS(7834), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7836), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7836), + [anon_sym_LPAREN2] = ACTIONS(7836), + [anon_sym_DASH] = ACTIONS(7834), + [anon_sym_PLUS] = ACTIONS(7834), + [anon_sym_STAR] = ACTIONS(7834), + [anon_sym_SLASH] = ACTIONS(7834), + [anon_sym_PERCENT] = ACTIONS(7834), + [anon_sym_PIPE_PIPE] = ACTIONS(7836), + [anon_sym_AMP_AMP] = ACTIONS(7836), + [anon_sym_PIPE] = ACTIONS(7834), + [anon_sym_CARET] = ACTIONS(7834), + [anon_sym_AMP] = ACTIONS(7834), + [anon_sym_EQ_EQ] = ACTIONS(7836), + [anon_sym_BANG_EQ] = ACTIONS(7836), + [anon_sym_GT] = ACTIONS(7834), + [anon_sym_GT_EQ] = ACTIONS(7836), + [anon_sym_LT_EQ] = ACTIONS(7834), + [anon_sym_LT] = ACTIONS(7834), + [anon_sym_LT_LT] = ACTIONS(7834), + [anon_sym_GT_GT] = ACTIONS(7834), + [anon_sym_SEMI] = ACTIONS(7836), + [anon_sym___attribute__] = ACTIONS(7834), + [anon_sym___attribute] = ACTIONS(7834), + [anon_sym_COLON] = ACTIONS(7834), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7836), + [anon_sym_LBRACE] = ACTIONS(7836), + [anon_sym_RBRACE] = ACTIONS(7836), + [anon_sym_LBRACK] = ACTIONS(7836), + [anon_sym_EQ] = ACTIONS(7834), + [anon_sym_QMARK] = ACTIONS(7836), + [anon_sym_STAR_EQ] = ACTIONS(7836), + [anon_sym_SLASH_EQ] = ACTIONS(7836), + [anon_sym_PERCENT_EQ] = ACTIONS(7836), + [anon_sym_PLUS_EQ] = ACTIONS(7836), + [anon_sym_DASH_EQ] = ACTIONS(7836), + [anon_sym_LT_LT_EQ] = ACTIONS(7836), + [anon_sym_GT_GT_EQ] = ACTIONS(7836), + [anon_sym_AMP_EQ] = ACTIONS(7836), + [anon_sym_CARET_EQ] = ACTIONS(7836), + [anon_sym_PIPE_EQ] = ACTIONS(7836), + [anon_sym_and_eq] = ACTIONS(7834), + [anon_sym_or_eq] = ACTIONS(7834), + [anon_sym_xor_eq] = ACTIONS(7834), + [anon_sym_LT_EQ_GT] = ACTIONS(7836), + [anon_sym_or] = ACTIONS(7834), + [anon_sym_and] = ACTIONS(7834), + [anon_sym_bitor] = ACTIONS(7834), + [anon_sym_xor] = ACTIONS(7834), + [anon_sym_bitand] = ACTIONS(7834), + [anon_sym_not_eq] = ACTIONS(7834), + [anon_sym_DASH_DASH] = ACTIONS(7836), + [anon_sym_PLUS_PLUS] = ACTIONS(7836), + [anon_sym_DOT] = ACTIONS(7834), + [anon_sym_DOT_STAR] = ACTIONS(7836), + [anon_sym_DASH_GT] = ACTIONS(7836), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7836), + }, + [STATE(4153)] = { + [sym_identifier] = ACTIONS(9029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9031), + [anon_sym_COMMA] = ACTIONS(9031), + [anon_sym_LPAREN2] = ACTIONS(9031), + [anon_sym_DASH] = ACTIONS(9029), + [anon_sym_PLUS] = ACTIONS(9029), + [anon_sym_STAR] = ACTIONS(9029), + [anon_sym_SLASH] = ACTIONS(9029), + [anon_sym_PERCENT] = ACTIONS(9029), + [anon_sym_PIPE_PIPE] = ACTIONS(9031), + [anon_sym_AMP_AMP] = ACTIONS(9031), + [anon_sym_PIPE] = ACTIONS(9029), + [anon_sym_CARET] = ACTIONS(9029), + [anon_sym_AMP] = ACTIONS(9029), + [anon_sym_EQ_EQ] = ACTIONS(9031), + [anon_sym_BANG_EQ] = ACTIONS(9031), + [anon_sym_GT] = ACTIONS(9029), + [anon_sym_GT_EQ] = ACTIONS(9031), + [anon_sym_LT_EQ] = ACTIONS(9029), + [anon_sym_LT] = ACTIONS(9029), + [anon_sym_LT_LT] = ACTIONS(9029), + [anon_sym_GT_GT] = ACTIONS(9029), + [anon_sym_SEMI] = ACTIONS(9031), + [anon_sym___attribute__] = ACTIONS(9029), + [anon_sym___attribute] = ACTIONS(9029), + [anon_sym_LBRACK] = ACTIONS(9031), + [anon_sym_EQ] = ACTIONS(9029), + [anon_sym_QMARK] = ACTIONS(9031), + [anon_sym_STAR_EQ] = ACTIONS(9031), + [anon_sym_SLASH_EQ] = ACTIONS(9031), + [anon_sym_PERCENT_EQ] = ACTIONS(9031), + [anon_sym_PLUS_EQ] = ACTIONS(9031), + [anon_sym_DASH_EQ] = ACTIONS(9031), + [anon_sym_LT_LT_EQ] = ACTIONS(9031), + [anon_sym_GT_GT_EQ] = ACTIONS(9031), + [anon_sym_AMP_EQ] = ACTIONS(9031), + [anon_sym_CARET_EQ] = ACTIONS(9031), + [anon_sym_PIPE_EQ] = ACTIONS(9031), + [anon_sym_and_eq] = ACTIONS(9029), + [anon_sym_or_eq] = ACTIONS(9029), + [anon_sym_xor_eq] = ACTIONS(9029), + [anon_sym_LT_EQ_GT] = ACTIONS(9031), + [anon_sym_or] = ACTIONS(9029), + [anon_sym_and] = ACTIONS(9029), + [anon_sym_bitor] = ACTIONS(9029), + [anon_sym_xor] = ACTIONS(9029), + [anon_sym_bitand] = ACTIONS(9029), + [anon_sym_not_eq] = ACTIONS(9029), + [anon_sym_DASH_DASH] = ACTIONS(9031), + [anon_sym_PLUS_PLUS] = ACTIONS(9031), + [anon_sym_DOT] = ACTIONS(9029), + [anon_sym_DOT_STAR] = ACTIONS(9031), + [anon_sym_DASH_GT] = ACTIONS(9031), + [anon_sym_L_DQUOTE] = ACTIONS(9031), + [anon_sym_u_DQUOTE] = ACTIONS(9031), + [anon_sym_U_DQUOTE] = ACTIONS(9031), + [anon_sym_u8_DQUOTE] = ACTIONS(9031), + [anon_sym_DQUOTE] = ACTIONS(9031), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9031), + [anon_sym_LR_DQUOTE] = ACTIONS(9031), + [anon_sym_uR_DQUOTE] = ACTIONS(9031), + [anon_sym_UR_DQUOTE] = ACTIONS(9031), + [anon_sym_u8R_DQUOTE] = ACTIONS(9031), + [sym_literal_suffix] = ACTIONS(9029), + }, + [STATE(4154)] = { + [sym_identifier] = ACTIONS(7842), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7844), + [anon_sym_COMMA] = ACTIONS(7844), + [anon_sym_RPAREN] = ACTIONS(7844), + [aux_sym_preproc_if_token2] = ACTIONS(7844), + [aux_sym_preproc_else_token1] = ACTIONS(7844), + [aux_sym_preproc_elif_token1] = ACTIONS(7842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7844), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7844), + [anon_sym_LPAREN2] = ACTIONS(7844), + [anon_sym_DASH] = ACTIONS(7842), + [anon_sym_PLUS] = ACTIONS(7842), + [anon_sym_STAR] = ACTIONS(7842), + [anon_sym_SLASH] = ACTIONS(7842), + [anon_sym_PERCENT] = ACTIONS(7842), + [anon_sym_PIPE_PIPE] = ACTIONS(7844), + [anon_sym_AMP_AMP] = ACTIONS(7844), + [anon_sym_PIPE] = ACTIONS(7842), + [anon_sym_CARET] = ACTIONS(7842), + [anon_sym_AMP] = ACTIONS(7842), + [anon_sym_EQ_EQ] = ACTIONS(7844), + [anon_sym_BANG_EQ] = ACTIONS(7844), + [anon_sym_GT] = ACTIONS(7842), + [anon_sym_GT_EQ] = ACTIONS(7844), + [anon_sym_LT_EQ] = ACTIONS(7842), + [anon_sym_LT] = ACTIONS(7842), + [anon_sym_LT_LT] = ACTIONS(7842), + [anon_sym_GT_GT] = ACTIONS(7842), + [anon_sym_SEMI] = ACTIONS(7844), + [anon_sym___attribute__] = ACTIONS(7842), + [anon_sym___attribute] = ACTIONS(7842), + [anon_sym_COLON] = ACTIONS(7842), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7844), + [anon_sym_LBRACE] = ACTIONS(7844), + [anon_sym_RBRACE] = ACTIONS(7844), + [anon_sym_LBRACK] = ACTIONS(7844), + [anon_sym_EQ] = ACTIONS(7842), + [anon_sym_QMARK] = ACTIONS(7844), + [anon_sym_STAR_EQ] = ACTIONS(7844), + [anon_sym_SLASH_EQ] = ACTIONS(7844), + [anon_sym_PERCENT_EQ] = ACTIONS(7844), + [anon_sym_PLUS_EQ] = ACTIONS(7844), + [anon_sym_DASH_EQ] = ACTIONS(7844), + [anon_sym_LT_LT_EQ] = ACTIONS(7844), + [anon_sym_GT_GT_EQ] = ACTIONS(7844), + [anon_sym_AMP_EQ] = ACTIONS(7844), + [anon_sym_CARET_EQ] = ACTIONS(7844), + [anon_sym_PIPE_EQ] = ACTIONS(7844), + [anon_sym_and_eq] = ACTIONS(7842), + [anon_sym_or_eq] = ACTIONS(7842), + [anon_sym_xor_eq] = ACTIONS(7842), + [anon_sym_LT_EQ_GT] = ACTIONS(7844), + [anon_sym_or] = ACTIONS(7842), + [anon_sym_and] = ACTIONS(7842), + [anon_sym_bitor] = ACTIONS(7842), + [anon_sym_xor] = ACTIONS(7842), + [anon_sym_bitand] = ACTIONS(7842), + [anon_sym_not_eq] = ACTIONS(7842), + [anon_sym_DASH_DASH] = ACTIONS(7844), + [anon_sym_PLUS_PLUS] = ACTIONS(7844), + [anon_sym_DOT] = ACTIONS(7842), + [anon_sym_DOT_STAR] = ACTIONS(7844), + [anon_sym_DASH_GT] = ACTIONS(7844), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7844), + }, + [STATE(4155)] = { + [sym_identifier] = ACTIONS(7846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7848), + [anon_sym_COMMA] = ACTIONS(7848), + [anon_sym_RPAREN] = ACTIONS(7848), + [aux_sym_preproc_if_token2] = ACTIONS(7848), + [aux_sym_preproc_else_token1] = ACTIONS(7848), + [aux_sym_preproc_elif_token1] = ACTIONS(7846), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7848), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7848), + [anon_sym_LPAREN2] = ACTIONS(7848), + [anon_sym_DASH] = ACTIONS(7846), + [anon_sym_PLUS] = ACTIONS(7846), + [anon_sym_STAR] = ACTIONS(7846), + [anon_sym_SLASH] = ACTIONS(7846), + [anon_sym_PERCENT] = ACTIONS(7846), + [anon_sym_PIPE_PIPE] = ACTIONS(7848), + [anon_sym_AMP_AMP] = ACTIONS(7848), + [anon_sym_PIPE] = ACTIONS(7846), + [anon_sym_CARET] = ACTIONS(7846), + [anon_sym_AMP] = ACTIONS(7846), + [anon_sym_EQ_EQ] = ACTIONS(7848), + [anon_sym_BANG_EQ] = ACTIONS(7848), + [anon_sym_GT] = ACTIONS(7846), + [anon_sym_GT_EQ] = ACTIONS(7848), + [anon_sym_LT_EQ] = ACTIONS(7846), + [anon_sym_LT] = ACTIONS(7846), + [anon_sym_LT_LT] = ACTIONS(7846), + [anon_sym_GT_GT] = ACTIONS(7846), + [anon_sym_SEMI] = ACTIONS(7848), + [anon_sym___attribute__] = ACTIONS(7846), + [anon_sym___attribute] = ACTIONS(7846), + [anon_sym_COLON] = ACTIONS(7846), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7848), + [anon_sym_LBRACE] = ACTIONS(7848), + [anon_sym_RBRACE] = ACTIONS(7848), + [anon_sym_LBRACK] = ACTIONS(7848), + [anon_sym_EQ] = ACTIONS(7846), + [anon_sym_QMARK] = ACTIONS(7848), + [anon_sym_STAR_EQ] = ACTIONS(7848), + [anon_sym_SLASH_EQ] = ACTIONS(7848), + [anon_sym_PERCENT_EQ] = ACTIONS(7848), + [anon_sym_PLUS_EQ] = ACTIONS(7848), + [anon_sym_DASH_EQ] = ACTIONS(7848), + [anon_sym_LT_LT_EQ] = ACTIONS(7848), + [anon_sym_GT_GT_EQ] = ACTIONS(7848), + [anon_sym_AMP_EQ] = ACTIONS(7848), + [anon_sym_CARET_EQ] = ACTIONS(7848), + [anon_sym_PIPE_EQ] = ACTIONS(7848), + [anon_sym_and_eq] = ACTIONS(7846), + [anon_sym_or_eq] = ACTIONS(7846), + [anon_sym_xor_eq] = ACTIONS(7846), + [anon_sym_LT_EQ_GT] = ACTIONS(7848), + [anon_sym_or] = ACTIONS(7846), + [anon_sym_and] = ACTIONS(7846), + [anon_sym_bitor] = ACTIONS(7846), + [anon_sym_xor] = ACTIONS(7846), + [anon_sym_bitand] = ACTIONS(7846), + [anon_sym_not_eq] = ACTIONS(7846), + [anon_sym_DASH_DASH] = ACTIONS(7848), + [anon_sym_PLUS_PLUS] = ACTIONS(7848), + [anon_sym_DOT] = ACTIONS(7846), + [anon_sym_DOT_STAR] = ACTIONS(7848), + [anon_sym_DASH_GT] = ACTIONS(7848), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7848), + }, + [STATE(4156)] = { + [sym_identifier] = ACTIONS(9097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9099), + [anon_sym_COMMA] = ACTIONS(9099), + [anon_sym_LPAREN2] = ACTIONS(9099), + [anon_sym_DASH] = ACTIONS(9097), + [anon_sym_PLUS] = ACTIONS(9097), + [anon_sym_STAR] = ACTIONS(9097), + [anon_sym_SLASH] = ACTIONS(9097), + [anon_sym_PERCENT] = ACTIONS(9097), + [anon_sym_PIPE_PIPE] = ACTIONS(9099), + [anon_sym_AMP_AMP] = ACTIONS(9099), + [anon_sym_PIPE] = ACTIONS(9097), + [anon_sym_CARET] = ACTIONS(9097), + [anon_sym_AMP] = ACTIONS(9097), + [anon_sym_EQ_EQ] = ACTIONS(9099), + [anon_sym_BANG_EQ] = ACTIONS(9099), + [anon_sym_GT] = ACTIONS(9097), + [anon_sym_GT_EQ] = ACTIONS(9099), + [anon_sym_LT_EQ] = ACTIONS(9097), + [anon_sym_LT] = ACTIONS(9097), + [anon_sym_LT_LT] = ACTIONS(9097), + [anon_sym_GT_GT] = ACTIONS(9097), + [anon_sym_SEMI] = ACTIONS(9099), + [anon_sym___attribute__] = ACTIONS(9097), + [anon_sym___attribute] = ACTIONS(9097), + [anon_sym_LBRACK] = ACTIONS(9099), + [anon_sym_EQ] = ACTIONS(9097), + [anon_sym_QMARK] = ACTIONS(9099), + [anon_sym_STAR_EQ] = ACTIONS(9099), + [anon_sym_SLASH_EQ] = ACTIONS(9099), + [anon_sym_PERCENT_EQ] = ACTIONS(9099), + [anon_sym_PLUS_EQ] = ACTIONS(9099), + [anon_sym_DASH_EQ] = ACTIONS(9099), + [anon_sym_LT_LT_EQ] = ACTIONS(9099), + [anon_sym_GT_GT_EQ] = ACTIONS(9099), + [anon_sym_AMP_EQ] = ACTIONS(9099), + [anon_sym_CARET_EQ] = ACTIONS(9099), + [anon_sym_PIPE_EQ] = ACTIONS(9099), + [anon_sym_and_eq] = ACTIONS(9097), + [anon_sym_or_eq] = ACTIONS(9097), + [anon_sym_xor_eq] = ACTIONS(9097), + [anon_sym_LT_EQ_GT] = ACTIONS(9099), + [anon_sym_or] = ACTIONS(9097), + [anon_sym_and] = ACTIONS(9097), + [anon_sym_bitor] = ACTIONS(9097), + [anon_sym_xor] = ACTIONS(9097), + [anon_sym_bitand] = ACTIONS(9097), + [anon_sym_not_eq] = ACTIONS(9097), + [anon_sym_DASH_DASH] = ACTIONS(9099), + [anon_sym_PLUS_PLUS] = ACTIONS(9099), + [anon_sym_DOT] = ACTIONS(9097), + [anon_sym_DOT_STAR] = ACTIONS(9099), + [anon_sym_DASH_GT] = ACTIONS(9099), + [anon_sym_L_DQUOTE] = ACTIONS(9099), + [anon_sym_u_DQUOTE] = ACTIONS(9099), + [anon_sym_U_DQUOTE] = ACTIONS(9099), + [anon_sym_u8_DQUOTE] = ACTIONS(9099), + [anon_sym_DQUOTE] = ACTIONS(9099), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9099), + [anon_sym_LR_DQUOTE] = ACTIONS(9099), + [anon_sym_uR_DQUOTE] = ACTIONS(9099), + [anon_sym_UR_DQUOTE] = ACTIONS(9099), + [anon_sym_u8R_DQUOTE] = ACTIONS(9099), + [sym_literal_suffix] = ACTIONS(9097), + }, + [STATE(4157)] = { + [sym_identifier] = ACTIONS(7366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7368), + [anon_sym_COMMA] = ACTIONS(7368), + [anon_sym_LPAREN2] = ACTIONS(7368), + [anon_sym_DASH] = ACTIONS(7366), + [anon_sym_PLUS] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(7368), + [anon_sym_SLASH] = ACTIONS(7366), + [anon_sym_PERCENT] = ACTIONS(7368), + [anon_sym_PIPE_PIPE] = ACTIONS(7368), + [anon_sym_AMP_AMP] = ACTIONS(7368), + [anon_sym_PIPE] = ACTIONS(7366), + [anon_sym_CARET] = ACTIONS(7368), + [anon_sym_AMP] = ACTIONS(7366), + [anon_sym_EQ_EQ] = ACTIONS(7368), + [anon_sym_BANG_EQ] = ACTIONS(7368), + [anon_sym_GT] = ACTIONS(7366), + [anon_sym_GT_EQ] = ACTIONS(7368), + [anon_sym_LT_EQ] = ACTIONS(7366), + [anon_sym_LT] = ACTIONS(7366), + [anon_sym_LT_LT] = ACTIONS(7368), + [anon_sym_GT_GT] = ACTIONS(7368), + [anon_sym___extension__] = ACTIONS(7366), + [anon_sym_COLON_COLON] = ACTIONS(7368), + [sym_ms_restrict_modifier] = ACTIONS(7366), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7366), + [sym_ms_signed_ptr_modifier] = ACTIONS(7366), + [anon_sym__unaligned] = ACTIONS(7366), + [anon_sym___unaligned] = ACTIONS(7366), + [anon_sym_LBRACK] = ACTIONS(7366), + [anon_sym_RBRACK] = ACTIONS(7368), + [anon_sym_const] = ACTIONS(7366), + [anon_sym_constexpr] = ACTIONS(7366), + [anon_sym_volatile] = ACTIONS(7366), + [anon_sym_restrict] = ACTIONS(7366), + [anon_sym___restrict__] = ACTIONS(7366), + [anon_sym__Atomic] = ACTIONS(7366), + [anon_sym__Noreturn] = ACTIONS(7366), + [anon_sym_noreturn] = ACTIONS(7366), + [anon_sym__Nonnull] = ACTIONS(7366), + [anon_sym_mutable] = ACTIONS(7366), + [anon_sym_constinit] = ACTIONS(7366), + [anon_sym_consteval] = ACTIONS(7366), + [anon_sym_alignas] = ACTIONS(7366), + [anon_sym__Alignas] = ACTIONS(7366), + [anon_sym_QMARK] = ACTIONS(7368), + [anon_sym_LT_EQ_GT] = ACTIONS(7368), + [anon_sym_or] = ACTIONS(7366), + [anon_sym_and] = ACTIONS(7366), + [anon_sym_bitor] = ACTIONS(7366), + [anon_sym_xor] = ACTIONS(7366), + [anon_sym_bitand] = ACTIONS(7366), + [anon_sym_not_eq] = ACTIONS(7366), + [anon_sym_DASH_DASH] = ACTIONS(7368), + [anon_sym_PLUS_PLUS] = ACTIONS(7368), + [anon_sym_DOT] = ACTIONS(7366), + [anon_sym_DOT_STAR] = ACTIONS(7368), + [anon_sym_DASH_GT] = ACTIONS(7368), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7366), + [anon_sym_final] = ACTIONS(7366), + [anon_sym_override] = ACTIONS(7366), + [anon_sym_template] = ACTIONS(7366), + [anon_sym_requires] = ACTIONS(7366), + [anon_sym_LBRACK_COLON] = ACTIONS(7368), + }, + [STATE(4158)] = { + [sym_identifier] = ACTIONS(7346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7348), + [anon_sym_COMMA] = ACTIONS(7348), + [anon_sym_LPAREN2] = ACTIONS(7348), + [anon_sym_DASH] = ACTIONS(7346), + [anon_sym_PLUS] = ACTIONS(7346), + [anon_sym_STAR] = ACTIONS(7348), + [anon_sym_SLASH] = ACTIONS(7346), + [anon_sym_PERCENT] = ACTIONS(7348), + [anon_sym_PIPE_PIPE] = ACTIONS(7348), + [anon_sym_AMP_AMP] = ACTIONS(7348), + [anon_sym_PIPE] = ACTIONS(7346), + [anon_sym_CARET] = ACTIONS(7348), + [anon_sym_AMP] = ACTIONS(7346), + [anon_sym_EQ_EQ] = ACTIONS(7348), + [anon_sym_BANG_EQ] = ACTIONS(7348), + [anon_sym_GT] = ACTIONS(7346), + [anon_sym_GT_EQ] = ACTIONS(7348), + [anon_sym_LT_EQ] = ACTIONS(7346), + [anon_sym_LT] = ACTIONS(7346), + [anon_sym_LT_LT] = ACTIONS(7348), + [anon_sym_GT_GT] = ACTIONS(7348), + [anon_sym___extension__] = ACTIONS(7346), + [anon_sym_COLON_COLON] = ACTIONS(7348), + [sym_ms_restrict_modifier] = ACTIONS(7346), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7346), + [sym_ms_signed_ptr_modifier] = ACTIONS(7346), + [anon_sym__unaligned] = ACTIONS(7346), + [anon_sym___unaligned] = ACTIONS(7346), + [anon_sym_LBRACK] = ACTIONS(7346), + [anon_sym_RBRACK] = ACTIONS(7348), + [anon_sym_const] = ACTIONS(7346), + [anon_sym_constexpr] = ACTIONS(7346), + [anon_sym_volatile] = ACTIONS(7346), + [anon_sym_restrict] = ACTIONS(7346), + [anon_sym___restrict__] = ACTIONS(7346), + [anon_sym__Atomic] = ACTIONS(7346), + [anon_sym__Noreturn] = ACTIONS(7346), + [anon_sym_noreturn] = ACTIONS(7346), + [anon_sym__Nonnull] = ACTIONS(7346), + [anon_sym_mutable] = ACTIONS(7346), + [anon_sym_constinit] = ACTIONS(7346), + [anon_sym_consteval] = ACTIONS(7346), + [anon_sym_alignas] = ACTIONS(7346), + [anon_sym__Alignas] = ACTIONS(7346), + [anon_sym_QMARK] = ACTIONS(7348), + [anon_sym_LT_EQ_GT] = ACTIONS(7348), + [anon_sym_or] = ACTIONS(7346), + [anon_sym_and] = ACTIONS(7346), + [anon_sym_bitor] = ACTIONS(7346), + [anon_sym_xor] = ACTIONS(7346), + [anon_sym_bitand] = ACTIONS(7346), + [anon_sym_not_eq] = ACTIONS(7346), + [anon_sym_DASH_DASH] = ACTIONS(7348), + [anon_sym_PLUS_PLUS] = ACTIONS(7348), + [anon_sym_DOT] = ACTIONS(7346), + [anon_sym_DOT_STAR] = ACTIONS(7348), + [anon_sym_DASH_GT] = ACTIONS(7348), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7346), + [anon_sym_final] = ACTIONS(7346), + [anon_sym_override] = ACTIONS(7346), + [anon_sym_template] = ACTIONS(7346), + [anon_sym_requires] = ACTIONS(7346), + [anon_sym_LBRACK_COLON] = ACTIONS(7348), + }, + [STATE(4159)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_STAR] = ACTIONS(6822), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE] = ACTIONS(6815), + [anon_sym_CARET] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_EQ_EQ] = ACTIONS(6822), + [anon_sym_BANG_EQ] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6815), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(6815), + [anon_sym_LT_LT] = ACTIONS(6822), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_LT_EQ_GT] = ACTIONS(6822), + [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(6822), + [anon_sym_PLUS_PLUS] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6815), + [anon_sym_DOT_STAR] = ACTIONS(6822), + [anon_sym_DASH_GT] = ACTIONS(6822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_GT2] = ACTIONS(6822), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(4160)] = { + [sym_identifier] = ACTIONS(7566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7568), + [anon_sym_COMMA] = ACTIONS(7568), + [anon_sym_RPAREN] = ACTIONS(7568), + [anon_sym_LPAREN2] = ACTIONS(7568), + [anon_sym_TILDE] = ACTIONS(7568), + [anon_sym_STAR] = ACTIONS(7568), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_AMP] = ACTIONS(7566), + [anon_sym_LT] = ACTIONS(7568), + [anon_sym_SEMI] = ACTIONS(7568), + [anon_sym___extension__] = ACTIONS(7566), + [anon_sym_virtual] = ACTIONS(7566), + [anon_sym_extern] = ACTIONS(7566), + [anon_sym___attribute__] = ACTIONS(7566), + [anon_sym___attribute] = ACTIONS(7566), + [anon_sym_COLON] = ACTIONS(7566), + [anon_sym_COLON_COLON] = ACTIONS(7568), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7568), + [anon_sym___declspec] = ACTIONS(7566), + [anon_sym___based] = ACTIONS(7566), + [anon_sym___cdecl] = ACTIONS(7566), + [anon_sym___clrcall] = ACTIONS(7566), + [anon_sym___stdcall] = ACTIONS(7566), + [anon_sym___fastcall] = ACTIONS(7566), + [anon_sym___thiscall] = ACTIONS(7566), + [anon_sym___vectorcall] = ACTIONS(7566), + [anon_sym_LBRACE] = ACTIONS(7568), + [anon_sym_LBRACK] = ACTIONS(7566), + [anon_sym_static] = ACTIONS(7566), + [anon_sym_EQ] = ACTIONS(7568), + [anon_sym_register] = ACTIONS(7566), + [anon_sym_inline] = ACTIONS(7566), + [anon_sym___inline] = ACTIONS(7566), + [anon_sym___inline__] = ACTIONS(7566), + [anon_sym___forceinline] = ACTIONS(7566), + [anon_sym_thread_local] = ACTIONS(7566), + [anon_sym___thread] = ACTIONS(7566), + [anon_sym_const] = ACTIONS(7566), + [anon_sym_constexpr] = ACTIONS(7566), + [anon_sym_volatile] = ACTIONS(7566), + [anon_sym_restrict] = ACTIONS(7566), + [anon_sym___restrict__] = ACTIONS(7566), + [anon_sym__Atomic] = ACTIONS(7566), + [anon_sym__Noreturn] = ACTIONS(7566), + [anon_sym_noreturn] = ACTIONS(7566), + [anon_sym__Nonnull] = ACTIONS(7566), + [anon_sym_mutable] = ACTIONS(7566), + [anon_sym_constinit] = ACTIONS(7566), + [anon_sym_consteval] = ACTIONS(7566), + [anon_sym_alignas] = ACTIONS(7566), + [anon_sym__Alignas] = ACTIONS(7566), + [anon_sym_asm] = ACTIONS(7566), + [anon_sym___asm__] = ACTIONS(7566), + [anon_sym___asm] = ACTIONS(7566), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7566), + [anon_sym_final] = ACTIONS(7566), + [anon_sym_override] = ACTIONS(7566), + [anon_sym_template] = ACTIONS(7566), + [anon_sym_GT2] = ACTIONS(7568), + [anon_sym_operator] = ACTIONS(7566), + [anon_sym_try] = ACTIONS(7566), + [anon_sym_requires] = ACTIONS(7566), + [anon_sym_LBRACK_COLON] = ACTIONS(7568), + }, + [STATE(4161)] = { + [sym_identifier] = ACTIONS(7491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7493), + [anon_sym_COMMA] = ACTIONS(7493), + [anon_sym_RPAREN] = ACTIONS(7493), + [anon_sym_LPAREN2] = ACTIONS(7493), + [anon_sym_TILDE] = ACTIONS(7493), + [anon_sym_STAR] = ACTIONS(7493), + [anon_sym_AMP_AMP] = ACTIONS(7493), + [anon_sym_AMP] = ACTIONS(7491), + [anon_sym_SEMI] = ACTIONS(7493), + [anon_sym___extension__] = ACTIONS(7491), + [anon_sym_virtual] = ACTIONS(7491), + [anon_sym_extern] = ACTIONS(7491), + [anon_sym___attribute__] = ACTIONS(7491), + [anon_sym___attribute] = ACTIONS(7491), + [anon_sym_COLON] = ACTIONS(7491), + [anon_sym_COLON_COLON] = ACTIONS(7493), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7493), + [anon_sym___declspec] = ACTIONS(7491), + [anon_sym___based] = ACTIONS(7491), + [anon_sym___cdecl] = ACTIONS(7491), + [anon_sym___clrcall] = ACTIONS(7491), + [anon_sym___stdcall] = ACTIONS(7491), + [anon_sym___fastcall] = ACTIONS(7491), + [anon_sym___thiscall] = ACTIONS(7491), + [anon_sym___vectorcall] = ACTIONS(7491), + [anon_sym_LBRACE] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7491), + [anon_sym_static] = ACTIONS(7491), + [anon_sym_EQ] = ACTIONS(7493), + [anon_sym_register] = ACTIONS(7491), + [anon_sym_inline] = ACTIONS(7491), + [anon_sym___inline] = ACTIONS(7491), + [anon_sym___inline__] = ACTIONS(7491), + [anon_sym___forceinline] = ACTIONS(7491), + [anon_sym_thread_local] = ACTIONS(7491), + [anon_sym___thread] = 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_asm] = ACTIONS(7491), + [anon_sym___asm__] = ACTIONS(7491), + [anon_sym___asm] = ACTIONS(7491), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7491), + [anon_sym_final] = ACTIONS(7491), + [anon_sym_override] = ACTIONS(7491), + [anon_sym_explicit] = ACTIONS(7491), + [anon_sym_template] = ACTIONS(7491), + [anon_sym_GT2] = ACTIONS(7493), + [anon_sym_operator] = ACTIONS(7491), + [anon_sym_try] = ACTIONS(7491), + [anon_sym_requires] = ACTIONS(7491), + [anon_sym_LBRACK_COLON] = ACTIONS(7493), + }, + [STATE(4162)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(4162), + [sym_identifier] = ACTIONS(7173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7175), + [anon_sym_COMMA] = ACTIONS(7175), + [aux_sym_preproc_if_token2] = ACTIONS(7175), + [aux_sym_preproc_else_token1] = ACTIONS(7175), + [aux_sym_preproc_elif_token1] = ACTIONS(7173), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7175), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7175), + [anon_sym_LPAREN2] = ACTIONS(7175), + [anon_sym_DASH] = ACTIONS(7173), + [anon_sym_PLUS] = ACTIONS(7173), + [anon_sym_STAR] = ACTIONS(7173), + [anon_sym_SLASH] = ACTIONS(7173), + [anon_sym_PERCENT] = ACTIONS(7173), + [anon_sym_PIPE_PIPE] = ACTIONS(7175), + [anon_sym_AMP_AMP] = ACTIONS(7175), + [anon_sym_PIPE] = ACTIONS(7173), + [anon_sym_CARET] = ACTIONS(7173), + [anon_sym_AMP] = ACTIONS(7173), + [anon_sym_EQ_EQ] = ACTIONS(7175), + [anon_sym_BANG_EQ] = ACTIONS(7175), + [anon_sym_GT] = ACTIONS(7173), + [anon_sym_GT_EQ] = ACTIONS(7175), + [anon_sym_LT_EQ] = ACTIONS(7173), + [anon_sym_LT] = ACTIONS(7173), + [anon_sym_LT_LT] = ACTIONS(7173), + [anon_sym_GT_GT] = ACTIONS(7173), + [anon_sym___attribute__] = ACTIONS(7173), + [anon_sym___attribute] = ACTIONS(7173), + [anon_sym_LBRACE] = ACTIONS(7175), + [anon_sym_signed] = ACTIONS(10171), + [anon_sym_unsigned] = ACTIONS(10171), + [anon_sym_long] = ACTIONS(10171), + [anon_sym_short] = ACTIONS(10171), + [anon_sym_LBRACK] = ACTIONS(7175), + [anon_sym_RBRACK] = ACTIONS(7175), + [anon_sym_EQ] = ACTIONS(7173), + [anon_sym_QMARK] = ACTIONS(7175), + [anon_sym_STAR_EQ] = ACTIONS(7175), + [anon_sym_SLASH_EQ] = ACTIONS(7175), + [anon_sym_PERCENT_EQ] = ACTIONS(7175), + [anon_sym_PLUS_EQ] = ACTIONS(7175), + [anon_sym_DASH_EQ] = ACTIONS(7175), + [anon_sym_LT_LT_EQ] = ACTIONS(7175), + [anon_sym_GT_GT_EQ] = ACTIONS(7175), + [anon_sym_AMP_EQ] = ACTIONS(7175), + [anon_sym_CARET_EQ] = ACTIONS(7175), + [anon_sym_PIPE_EQ] = ACTIONS(7175), + [anon_sym_and_eq] = ACTIONS(7173), + [anon_sym_or_eq] = ACTIONS(7173), + [anon_sym_xor_eq] = ACTIONS(7173), + [anon_sym_LT_EQ_GT] = ACTIONS(7175), + [anon_sym_or] = ACTIONS(7173), + [anon_sym_and] = ACTIONS(7173), + [anon_sym_bitor] = ACTIONS(7173), + [anon_sym_xor] = ACTIONS(7173), + [anon_sym_bitand] = ACTIONS(7173), + [anon_sym_not_eq] = ACTIONS(7173), + [anon_sym_DASH_DASH] = ACTIONS(7175), + [anon_sym_PLUS_PLUS] = ACTIONS(7175), + [anon_sym_DOT] = ACTIONS(7173), + [anon_sym_DOT_STAR] = ACTIONS(7175), + [anon_sym_DASH_GT] = ACTIONS(7175), + [sym_comment] = ACTIONS(3), + }, + [STATE(4163)] = { + [sym_identifier] = ACTIONS(10174), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10176), + [anon_sym_COMMA] = ACTIONS(10176), + [anon_sym_RPAREN] = ACTIONS(10176), + [aux_sym_preproc_if_token2] = ACTIONS(10176), + [aux_sym_preproc_else_token1] = ACTIONS(10176), + [aux_sym_preproc_elif_token1] = ACTIONS(10174), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10176), + [anon_sym_LPAREN2] = ACTIONS(10176), + [anon_sym_DASH] = ACTIONS(10174), + [anon_sym_PLUS] = ACTIONS(10174), + [anon_sym_STAR] = ACTIONS(10174), + [anon_sym_SLASH] = ACTIONS(10174), + [anon_sym_PERCENT] = ACTIONS(10174), + [anon_sym_PIPE_PIPE] = ACTIONS(10176), + [anon_sym_AMP_AMP] = ACTIONS(10176), + [anon_sym_PIPE] = ACTIONS(10174), + [anon_sym_CARET] = ACTIONS(10174), + [anon_sym_AMP] = ACTIONS(10174), + [anon_sym_EQ_EQ] = ACTIONS(10176), + [anon_sym_BANG_EQ] = ACTIONS(10176), + [anon_sym_GT] = ACTIONS(10174), + [anon_sym_GT_EQ] = ACTIONS(10176), + [anon_sym_LT_EQ] = ACTIONS(10174), + [anon_sym_LT] = ACTIONS(10174), + [anon_sym_LT_LT] = ACTIONS(10174), + [anon_sym_GT_GT] = ACTIONS(10174), + [anon_sym_SEMI] = ACTIONS(10176), + [anon_sym___attribute__] = ACTIONS(10174), + [anon_sym___attribute] = ACTIONS(10174), + [anon_sym_COLON] = ACTIONS(10174), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10176), + [anon_sym_LBRACE] = ACTIONS(10176), + [anon_sym_RBRACE] = ACTIONS(10176), + [anon_sym_LBRACK] = ACTIONS(10176), + [anon_sym_EQ] = ACTIONS(10174), + [anon_sym_QMARK] = ACTIONS(10176), + [anon_sym_STAR_EQ] = ACTIONS(10176), + [anon_sym_SLASH_EQ] = ACTIONS(10176), + [anon_sym_PERCENT_EQ] = ACTIONS(10176), + [anon_sym_PLUS_EQ] = ACTIONS(10176), + [anon_sym_DASH_EQ] = ACTIONS(10176), + [anon_sym_LT_LT_EQ] = ACTIONS(10176), + [anon_sym_GT_GT_EQ] = ACTIONS(10176), + [anon_sym_AMP_EQ] = ACTIONS(10176), + [anon_sym_CARET_EQ] = ACTIONS(10176), + [anon_sym_PIPE_EQ] = ACTIONS(10176), + [anon_sym_and_eq] = ACTIONS(10174), + [anon_sym_or_eq] = ACTIONS(10174), + [anon_sym_xor_eq] = ACTIONS(10174), + [anon_sym_LT_EQ_GT] = ACTIONS(10176), + [anon_sym_or] = ACTIONS(10174), + [anon_sym_and] = ACTIONS(10174), + [anon_sym_bitor] = ACTIONS(10174), + [anon_sym_xor] = ACTIONS(10174), + [anon_sym_bitand] = ACTIONS(10174), + [anon_sym_not_eq] = ACTIONS(10174), + [anon_sym_DASH_DASH] = ACTIONS(10176), + [anon_sym_PLUS_PLUS] = ACTIONS(10176), + [anon_sym_DOT] = ACTIONS(10174), + [anon_sym_DOT_STAR] = ACTIONS(10176), + [anon_sym_DASH_GT] = ACTIONS(10176), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10176), + }, + [STATE(4164)] = { + [sym_argument_list] = STATE(6570), + [sym_initializer_list] = STATE(8246), + [aux_sym_sized_type_specifier_repeat1] = STATE(3789), + [sym_identifier] = ACTIONS(7359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7361), + [anon_sym_COMMA] = ACTIONS(7361), + [anon_sym_LPAREN2] = ACTIONS(8493), + [anon_sym_DASH] = ACTIONS(7359), + [anon_sym_PLUS] = ACTIONS(7359), + [anon_sym_STAR] = ACTIONS(7361), + [anon_sym_SLASH] = ACTIONS(7359), + [anon_sym_PERCENT] = ACTIONS(7361), + [anon_sym_PIPE_PIPE] = ACTIONS(7361), + [anon_sym_AMP_AMP] = ACTIONS(7361), + [anon_sym_PIPE] = ACTIONS(7359), + [anon_sym_CARET] = ACTIONS(7361), + [anon_sym_AMP] = ACTIONS(7359), + [anon_sym_EQ_EQ] = ACTIONS(7361), + [anon_sym_BANG_EQ] = ACTIONS(7361), + [anon_sym_GT] = ACTIONS(7359), + [anon_sym_GT_EQ] = ACTIONS(7361), + [anon_sym_LT_EQ] = ACTIONS(7359), + [anon_sym_LT] = ACTIONS(7359), + [anon_sym_LT_LT] = ACTIONS(7361), + [anon_sym_GT_GT] = ACTIONS(7361), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym_COLON_COLON] = ACTIONS(7361), + [anon_sym_LBRACE] = ACTIONS(4682), + [anon_sym_signed] = ACTIONS(9551), + [anon_sym_unsigned] = ACTIONS(9551), + [anon_sym_long] = ACTIONS(9551), + [anon_sym_short] = ACTIONS(9551), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7361), + [anon_sym_const] = ACTIONS(7359), + [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(7361), + [anon_sym_LT_EQ_GT] = ACTIONS(7361), + [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(7361), + [anon_sym_PLUS_PLUS] = ACTIONS(7361), + [anon_sym_DOT] = ACTIONS(7359), + [anon_sym_DOT_STAR] = ACTIONS(7361), + [anon_sym_DASH_GT] = ACTIONS(7361), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(7359), + [anon_sym_LBRACK_COLON] = ACTIONS(7361), + }, + [STATE(4165)] = { + [sym_identifier] = ACTIONS(8998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9000), + [anon_sym_COMMA] = ACTIONS(9000), + [anon_sym_LPAREN2] = ACTIONS(9000), + [anon_sym_DASH] = ACTIONS(8998), + [anon_sym_PLUS] = ACTIONS(8998), + [anon_sym_STAR] = ACTIONS(8998), + [anon_sym_SLASH] = ACTIONS(8998), + [anon_sym_PERCENT] = ACTIONS(8998), + [anon_sym_PIPE_PIPE] = ACTIONS(9000), + [anon_sym_AMP_AMP] = ACTIONS(9000), + [anon_sym_PIPE] = ACTIONS(8998), + [anon_sym_CARET] = ACTIONS(8998), + [anon_sym_AMP] = ACTIONS(8998), + [anon_sym_EQ_EQ] = ACTIONS(9000), + [anon_sym_BANG_EQ] = ACTIONS(9000), + [anon_sym_GT] = ACTIONS(8998), + [anon_sym_GT_EQ] = ACTIONS(9000), + [anon_sym_LT_EQ] = ACTIONS(8998), + [anon_sym_LT] = ACTIONS(8998), + [anon_sym_LT_LT] = ACTIONS(8998), + [anon_sym_GT_GT] = ACTIONS(8998), + [anon_sym_SEMI] = ACTIONS(9000), + [anon_sym___attribute__] = ACTIONS(8998), + [anon_sym___attribute] = ACTIONS(8998), + [anon_sym_LBRACK] = ACTIONS(9000), + [anon_sym_EQ] = ACTIONS(8998), + [anon_sym_QMARK] = ACTIONS(9000), + [anon_sym_STAR_EQ] = ACTIONS(9000), + [anon_sym_SLASH_EQ] = ACTIONS(9000), + [anon_sym_PERCENT_EQ] = ACTIONS(9000), + [anon_sym_PLUS_EQ] = ACTIONS(9000), + [anon_sym_DASH_EQ] = ACTIONS(9000), + [anon_sym_LT_LT_EQ] = ACTIONS(9000), + [anon_sym_GT_GT_EQ] = ACTIONS(9000), + [anon_sym_AMP_EQ] = ACTIONS(9000), + [anon_sym_CARET_EQ] = ACTIONS(9000), + [anon_sym_PIPE_EQ] = ACTIONS(9000), + [anon_sym_and_eq] = ACTIONS(8998), + [anon_sym_or_eq] = ACTIONS(8998), + [anon_sym_xor_eq] = ACTIONS(8998), + [anon_sym_LT_EQ_GT] = ACTIONS(9000), + [anon_sym_or] = ACTIONS(8998), + [anon_sym_and] = ACTIONS(8998), + [anon_sym_bitor] = ACTIONS(8998), + [anon_sym_xor] = ACTIONS(8998), + [anon_sym_bitand] = ACTIONS(8998), + [anon_sym_not_eq] = ACTIONS(8998), + [anon_sym_DASH_DASH] = ACTIONS(9000), + [anon_sym_PLUS_PLUS] = ACTIONS(9000), + [anon_sym_DOT] = ACTIONS(8998), + [anon_sym_DOT_STAR] = ACTIONS(9000), + [anon_sym_DASH_GT] = ACTIONS(9000), + [anon_sym_L_DQUOTE] = ACTIONS(9000), + [anon_sym_u_DQUOTE] = ACTIONS(9000), + [anon_sym_U_DQUOTE] = ACTIONS(9000), + [anon_sym_u8_DQUOTE] = ACTIONS(9000), + [anon_sym_DQUOTE] = ACTIONS(9000), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9000), + [anon_sym_LR_DQUOTE] = ACTIONS(9000), + [anon_sym_uR_DQUOTE] = ACTIONS(9000), + [anon_sym_UR_DQUOTE] = ACTIONS(9000), + [anon_sym_u8R_DQUOTE] = ACTIONS(9000), + [sym_literal_suffix] = ACTIONS(8998), + }, + [STATE(4166)] = { + [sym_identifier] = ACTIONS(5671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5663), + [anon_sym_COMMA] = ACTIONS(5663), + [anon_sym_RPAREN] = ACTIONS(5663), + [aux_sym_preproc_if_token2] = ACTIONS(5663), + [aux_sym_preproc_else_token1] = ACTIONS(5663), + [aux_sym_preproc_elif_token1] = ACTIONS(5671), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5663), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5663), + [anon_sym_LPAREN2] = ACTIONS(5663), + [anon_sym_DASH] = ACTIONS(5671), + [anon_sym_PLUS] = ACTIONS(5671), + [anon_sym_STAR] = ACTIONS(5671), + [anon_sym_SLASH] = ACTIONS(5671), + [anon_sym_PERCENT] = ACTIONS(5671), + [anon_sym_PIPE_PIPE] = ACTIONS(5663), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_PIPE] = ACTIONS(5671), + [anon_sym_CARET] = ACTIONS(5671), + [anon_sym_AMP] = ACTIONS(5671), + [anon_sym_EQ_EQ] = ACTIONS(5663), + [anon_sym_BANG_EQ] = ACTIONS(5663), + [anon_sym_GT] = ACTIONS(5671), + [anon_sym_GT_EQ] = ACTIONS(5663), + [anon_sym_LT_EQ] = ACTIONS(5671), + [anon_sym_LT] = ACTIONS(5671), + [anon_sym_LT_LT] = ACTIONS(5671), + [anon_sym_GT_GT] = ACTIONS(5671), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym___attribute__] = ACTIONS(5671), + [anon_sym___attribute] = ACTIONS(5671), + [anon_sym_COLON] = ACTIONS(5671), + [anon_sym_COLON_COLON] = ACTIONS(7458), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5663), + [anon_sym_RBRACE] = ACTIONS(5663), + [anon_sym_LBRACK] = ACTIONS(5663), + [anon_sym_EQ] = ACTIONS(5671), + [anon_sym_QMARK] = ACTIONS(5663), + [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(5671), + [anon_sym_or_eq] = ACTIONS(5671), + [anon_sym_xor_eq] = ACTIONS(5671), + [anon_sym_LT_EQ_GT] = ACTIONS(5663), + [anon_sym_or] = ACTIONS(5671), + [anon_sym_and] = ACTIONS(5671), + [anon_sym_bitor] = ACTIONS(5671), + [anon_sym_xor] = ACTIONS(5671), + [anon_sym_bitand] = ACTIONS(5671), + [anon_sym_not_eq] = ACTIONS(5671), + [anon_sym_DASH_DASH] = ACTIONS(5663), + [anon_sym_PLUS_PLUS] = ACTIONS(5663), + [anon_sym_DOT] = ACTIONS(5671), + [anon_sym_DOT_STAR] = ACTIONS(5663), + [anon_sym_DASH_GT] = ACTIONS(5663), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(5663), + }, + [STATE(4167)] = { + [sym_argument_list] = STATE(4188), + [sym_subscript_argument_list] = STATE(4199), + [sym_identifier] = ACTIONS(10178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10180), + [anon_sym_COMMA] = ACTIONS(10180), + [anon_sym_RPAREN] = ACTIONS(10180), + [aux_sym_preproc_if_token2] = ACTIONS(10180), + [aux_sym_preproc_else_token1] = ACTIONS(10180), + [aux_sym_preproc_elif_token1] = ACTIONS(10178), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10180), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10180), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(10178), + [anon_sym_PLUS] = ACTIONS(10178), + [anon_sym_STAR] = ACTIONS(10178), + [anon_sym_SLASH] = ACTIONS(10178), + [anon_sym_PERCENT] = ACTIONS(10178), + [anon_sym_PIPE_PIPE] = ACTIONS(10180), + [anon_sym_AMP_AMP] = ACTIONS(10180), + [anon_sym_PIPE] = ACTIONS(10178), + [anon_sym_CARET] = ACTIONS(10178), + [anon_sym_AMP] = ACTIONS(10178), + [anon_sym_EQ_EQ] = ACTIONS(10180), + [anon_sym_BANG_EQ] = ACTIONS(10180), + [anon_sym_GT] = ACTIONS(10178), + [anon_sym_GT_EQ] = ACTIONS(10180), + [anon_sym_LT_EQ] = ACTIONS(10178), + [anon_sym_LT] = ACTIONS(10178), + [anon_sym_LT_LT] = ACTIONS(10178), + [anon_sym_GT_GT] = ACTIONS(10178), + [anon_sym_SEMI] = ACTIONS(10180), + [anon_sym___attribute__] = ACTIONS(10178), + [anon_sym___attribute] = ACTIONS(10178), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10180), + [anon_sym_RBRACE] = ACTIONS(10180), + [anon_sym_LBRACK] = ACTIONS(10050), + [anon_sym_EQ] = ACTIONS(10178), + [anon_sym_QMARK] = ACTIONS(10180), + [anon_sym_STAR_EQ] = ACTIONS(10180), + [anon_sym_SLASH_EQ] = ACTIONS(10180), + [anon_sym_PERCENT_EQ] = ACTIONS(10180), + [anon_sym_PLUS_EQ] = ACTIONS(10180), + [anon_sym_DASH_EQ] = ACTIONS(10180), + [anon_sym_LT_LT_EQ] = ACTIONS(10180), + [anon_sym_GT_GT_EQ] = ACTIONS(10180), + [anon_sym_AMP_EQ] = ACTIONS(10180), + [anon_sym_CARET_EQ] = ACTIONS(10180), + [anon_sym_PIPE_EQ] = ACTIONS(10180), + [anon_sym_and_eq] = ACTIONS(10178), + [anon_sym_or_eq] = ACTIONS(10178), + [anon_sym_xor_eq] = ACTIONS(10178), + [anon_sym_LT_EQ_GT] = ACTIONS(10180), + [anon_sym_or] = ACTIONS(10178), + [anon_sym_and] = ACTIONS(10178), + [anon_sym_bitor] = ACTIONS(10178), + [anon_sym_xor] = ACTIONS(10178), + [anon_sym_bitand] = ACTIONS(10178), + [anon_sym_not_eq] = ACTIONS(10178), + [anon_sym_DASH_DASH] = ACTIONS(10180), + [anon_sym_PLUS_PLUS] = ACTIONS(10180), + [anon_sym_DOT] = ACTIONS(10052), + [anon_sym_DOT_STAR] = ACTIONS(10054), + [anon_sym_DASH_GT] = ACTIONS(10054), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10180), + }, + [STATE(4168)] = { + [sym_identifier] = ACTIONS(6815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6822), + [anon_sym_COMMA] = ACTIONS(6822), + [anon_sym_LPAREN2] = ACTIONS(6822), + [anon_sym_DASH] = ACTIONS(6815), + [anon_sym_PLUS] = ACTIONS(6815), + [anon_sym_STAR] = ACTIONS(6822), + [anon_sym_SLASH] = ACTIONS(6815), + [anon_sym_PERCENT] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE] = ACTIONS(6815), + [anon_sym_CARET] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6815), + [anon_sym_EQ_EQ] = ACTIONS(6822), + [anon_sym_BANG_EQ] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6815), + [anon_sym_GT_EQ] = ACTIONS(6822), + [anon_sym_LT_EQ] = ACTIONS(6815), + [anon_sym_LT] = ACTIONS(6815), + [anon_sym_LT_LT] = ACTIONS(6822), + [anon_sym_GT_GT] = ACTIONS(6822), + [anon_sym___extension__] = ACTIONS(6815), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6815), + [anon_sym_COLON] = ACTIONS(6815), + [anon_sym_COLON_COLON] = ACTIONS(6822), + [anon_sym_LBRACE] = ACTIONS(6822), + [anon_sym_LBRACK] = ACTIONS(6815), + [anon_sym_RBRACK] = ACTIONS(6822), + [anon_sym_const] = ACTIONS(6815), + [anon_sym_constexpr] = ACTIONS(6815), + [anon_sym_volatile] = ACTIONS(6815), + [anon_sym_restrict] = ACTIONS(6815), + [anon_sym___restrict__] = ACTIONS(6815), + [anon_sym__Atomic] = ACTIONS(6815), + [anon_sym__Noreturn] = ACTIONS(6815), + [anon_sym_noreturn] = ACTIONS(6815), + [anon_sym__Nonnull] = ACTIONS(6815), + [anon_sym_mutable] = ACTIONS(6815), + [anon_sym_constinit] = ACTIONS(6815), + [anon_sym_consteval] = ACTIONS(6815), + [anon_sym_alignas] = ACTIONS(6815), + [anon_sym__Alignas] = ACTIONS(6815), + [anon_sym_QMARK] = ACTIONS(6822), + [anon_sym_LT_EQ_GT] = ACTIONS(6822), + [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(6822), + [anon_sym_PLUS_PLUS] = ACTIONS(6822), + [anon_sym_DOT] = ACTIONS(6815), + [anon_sym_DOT_STAR] = ACTIONS(6822), + [anon_sym_DASH_GT] = ACTIONS(6822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6815), + [anon_sym_decltype] = ACTIONS(6815), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_template] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_LBRACK_COLON] = ACTIONS(6822), + }, + [STATE(4169)] = { + [sym_identifier] = ACTIONS(9006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9008), + [anon_sym_COMMA] = ACTIONS(9008), + [anon_sym_LPAREN2] = ACTIONS(9008), + [anon_sym_DASH] = ACTIONS(9006), + [anon_sym_PLUS] = ACTIONS(9006), + [anon_sym_STAR] = ACTIONS(9006), + [anon_sym_SLASH] = ACTIONS(9006), + [anon_sym_PERCENT] = ACTIONS(9006), + [anon_sym_PIPE_PIPE] = ACTIONS(9008), + [anon_sym_AMP_AMP] = ACTIONS(9008), + [anon_sym_PIPE] = ACTIONS(9006), + [anon_sym_CARET] = ACTIONS(9006), + [anon_sym_AMP] = ACTIONS(9006), + [anon_sym_EQ_EQ] = ACTIONS(9008), + [anon_sym_BANG_EQ] = ACTIONS(9008), + [anon_sym_GT] = ACTIONS(9006), + [anon_sym_GT_EQ] = ACTIONS(9008), + [anon_sym_LT_EQ] = ACTIONS(9006), + [anon_sym_LT] = ACTIONS(9006), + [anon_sym_LT_LT] = ACTIONS(9006), + [anon_sym_GT_GT] = ACTIONS(9006), + [anon_sym_SEMI] = ACTIONS(9008), + [anon_sym___attribute__] = ACTIONS(9006), + [anon_sym___attribute] = ACTIONS(9006), + [anon_sym_LBRACK] = ACTIONS(9008), + [anon_sym_EQ] = ACTIONS(9006), + [anon_sym_QMARK] = ACTIONS(9008), + [anon_sym_STAR_EQ] = ACTIONS(9008), + [anon_sym_SLASH_EQ] = ACTIONS(9008), + [anon_sym_PERCENT_EQ] = ACTIONS(9008), + [anon_sym_PLUS_EQ] = ACTIONS(9008), + [anon_sym_DASH_EQ] = ACTIONS(9008), + [anon_sym_LT_LT_EQ] = ACTIONS(9008), + [anon_sym_GT_GT_EQ] = ACTIONS(9008), + [anon_sym_AMP_EQ] = ACTIONS(9008), + [anon_sym_CARET_EQ] = ACTIONS(9008), + [anon_sym_PIPE_EQ] = ACTIONS(9008), + [anon_sym_and_eq] = ACTIONS(9006), + [anon_sym_or_eq] = ACTIONS(9006), + [anon_sym_xor_eq] = ACTIONS(9006), + [anon_sym_LT_EQ_GT] = ACTIONS(9008), + [anon_sym_or] = ACTIONS(9006), + [anon_sym_and] = ACTIONS(9006), + [anon_sym_bitor] = ACTIONS(9006), + [anon_sym_xor] = ACTIONS(9006), + [anon_sym_bitand] = ACTIONS(9006), + [anon_sym_not_eq] = ACTIONS(9006), + [anon_sym_DASH_DASH] = ACTIONS(9008), + [anon_sym_PLUS_PLUS] = ACTIONS(9008), + [anon_sym_DOT] = ACTIONS(9006), + [anon_sym_DOT_STAR] = ACTIONS(9008), + [anon_sym_DASH_GT] = ACTIONS(9008), + [anon_sym_L_DQUOTE] = ACTIONS(9008), + [anon_sym_u_DQUOTE] = ACTIONS(9008), + [anon_sym_U_DQUOTE] = ACTIONS(9008), + [anon_sym_u8_DQUOTE] = ACTIONS(9008), + [anon_sym_DQUOTE] = ACTIONS(9008), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9008), + [anon_sym_LR_DQUOTE] = ACTIONS(9008), + [anon_sym_uR_DQUOTE] = ACTIONS(9008), + [anon_sym_UR_DQUOTE] = ACTIONS(9008), + [anon_sym_u8R_DQUOTE] = ACTIONS(9008), + [sym_literal_suffix] = ACTIONS(9006), + }, + [STATE(4170)] = { + [sym_argument_list] = STATE(4188), + [sym_subscript_argument_list] = STATE(4199), + [sym_identifier] = ACTIONS(10182), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10184), + [anon_sym_COMMA] = ACTIONS(10184), + [anon_sym_RPAREN] = ACTIONS(10184), + [aux_sym_preproc_if_token2] = ACTIONS(10184), + [aux_sym_preproc_else_token1] = ACTIONS(10184), + [aux_sym_preproc_elif_token1] = ACTIONS(10182), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10184), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10184), + [anon_sym_LPAREN2] = ACTIONS(9662), + [anon_sym_DASH] = ACTIONS(10182), + [anon_sym_PLUS] = ACTIONS(10182), + [anon_sym_STAR] = ACTIONS(10182), + [anon_sym_SLASH] = ACTIONS(10182), + [anon_sym_PERCENT] = ACTIONS(10182), + [anon_sym_PIPE_PIPE] = ACTIONS(10184), + [anon_sym_AMP_AMP] = ACTIONS(10184), + [anon_sym_PIPE] = ACTIONS(10182), + [anon_sym_CARET] = ACTIONS(10182), + [anon_sym_AMP] = ACTIONS(10182), + [anon_sym_EQ_EQ] = ACTIONS(10184), + [anon_sym_BANG_EQ] = ACTIONS(10184), + [anon_sym_GT] = ACTIONS(10182), + [anon_sym_GT_EQ] = ACTIONS(10184), + [anon_sym_LT_EQ] = ACTIONS(10182), + [anon_sym_LT] = ACTIONS(10182), + [anon_sym_LT_LT] = ACTIONS(10182), + [anon_sym_GT_GT] = ACTIONS(10182), + [anon_sym_SEMI] = ACTIONS(10184), + [anon_sym___attribute__] = ACTIONS(10182), + [anon_sym___attribute] = ACTIONS(10182), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10184), + [anon_sym_RBRACE] = ACTIONS(10184), + [anon_sym_LBRACK] = ACTIONS(10050), + [anon_sym_EQ] = ACTIONS(10182), + [anon_sym_QMARK] = ACTIONS(10184), + [anon_sym_STAR_EQ] = ACTIONS(10184), + [anon_sym_SLASH_EQ] = ACTIONS(10184), + [anon_sym_PERCENT_EQ] = ACTIONS(10184), + [anon_sym_PLUS_EQ] = ACTIONS(10184), + [anon_sym_DASH_EQ] = ACTIONS(10184), + [anon_sym_LT_LT_EQ] = ACTIONS(10184), + [anon_sym_GT_GT_EQ] = ACTIONS(10184), + [anon_sym_AMP_EQ] = ACTIONS(10184), + [anon_sym_CARET_EQ] = ACTIONS(10184), + [anon_sym_PIPE_EQ] = ACTIONS(10184), + [anon_sym_and_eq] = ACTIONS(10182), + [anon_sym_or_eq] = ACTIONS(10182), + [anon_sym_xor_eq] = ACTIONS(10182), + [anon_sym_LT_EQ_GT] = ACTIONS(10184), + [anon_sym_or] = ACTIONS(10182), + [anon_sym_and] = ACTIONS(10182), + [anon_sym_bitor] = ACTIONS(10182), + [anon_sym_xor] = ACTIONS(10182), + [anon_sym_bitand] = ACTIONS(10182), + [anon_sym_not_eq] = ACTIONS(10182), + [anon_sym_DASH_DASH] = ACTIONS(10070), + [anon_sym_PLUS_PLUS] = ACTIONS(10070), + [anon_sym_DOT] = ACTIONS(10052), + [anon_sym_DOT_STAR] = ACTIONS(10054), + [anon_sym_DASH_GT] = ACTIONS(10054), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10184), + }, + [STATE(4171)] = { + [sym_identifier] = ACTIONS(10186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(10188), + [anon_sym_COMMA] = ACTIONS(10188), + [anon_sym_RPAREN] = ACTIONS(10188), + [aux_sym_preproc_if_token2] = ACTIONS(10188), + [aux_sym_preproc_else_token1] = ACTIONS(10188), + [aux_sym_preproc_elif_token1] = ACTIONS(10186), + [aux_sym_preproc_elifdef_token1] = ACTIONS(10188), + [aux_sym_preproc_elifdef_token2] = ACTIONS(10188), + [anon_sym_LPAREN2] = ACTIONS(10188), + [anon_sym_DASH] = ACTIONS(10186), + [anon_sym_PLUS] = ACTIONS(10186), + [anon_sym_STAR] = ACTIONS(10186), + [anon_sym_SLASH] = ACTIONS(10186), + [anon_sym_PERCENT] = ACTIONS(10186), + [anon_sym_PIPE_PIPE] = ACTIONS(10188), + [anon_sym_AMP_AMP] = ACTIONS(10188), + [anon_sym_PIPE] = ACTIONS(10186), + [anon_sym_CARET] = ACTIONS(10186), + [anon_sym_AMP] = ACTIONS(10186), + [anon_sym_EQ_EQ] = ACTIONS(10188), + [anon_sym_BANG_EQ] = ACTIONS(10188), + [anon_sym_GT] = ACTIONS(10186), + [anon_sym_GT_EQ] = ACTIONS(10188), + [anon_sym_LT_EQ] = ACTIONS(10186), + [anon_sym_LT] = ACTIONS(10186), + [anon_sym_LT_LT] = ACTIONS(10186), + [anon_sym_GT_GT] = ACTIONS(10186), + [anon_sym_SEMI] = ACTIONS(10188), + [anon_sym___attribute__] = ACTIONS(10186), + [anon_sym___attribute] = ACTIONS(10186), + [anon_sym_COLON] = ACTIONS(10186), + [anon_sym_RBRACK_RBRACK] = ACTIONS(10188), + [anon_sym_LBRACE] = ACTIONS(10188), + [anon_sym_RBRACE] = ACTIONS(10188), + [anon_sym_LBRACK] = ACTIONS(10188), + [anon_sym_EQ] = ACTIONS(10186), + [anon_sym_QMARK] = ACTIONS(10188), + [anon_sym_STAR_EQ] = ACTIONS(10188), + [anon_sym_SLASH_EQ] = ACTIONS(10188), + [anon_sym_PERCENT_EQ] = ACTIONS(10188), + [anon_sym_PLUS_EQ] = ACTIONS(10188), + [anon_sym_DASH_EQ] = ACTIONS(10188), + [anon_sym_LT_LT_EQ] = ACTIONS(10188), + [anon_sym_GT_GT_EQ] = ACTIONS(10188), + [anon_sym_AMP_EQ] = ACTIONS(10188), + [anon_sym_CARET_EQ] = ACTIONS(10188), + [anon_sym_PIPE_EQ] = ACTIONS(10188), + [anon_sym_and_eq] = ACTIONS(10186), + [anon_sym_or_eq] = ACTIONS(10186), + [anon_sym_xor_eq] = ACTIONS(10186), + [anon_sym_LT_EQ_GT] = ACTIONS(10188), + [anon_sym_or] = ACTIONS(10186), + [anon_sym_and] = ACTIONS(10186), + [anon_sym_bitor] = ACTIONS(10186), + [anon_sym_xor] = ACTIONS(10186), + [anon_sym_bitand] = ACTIONS(10186), + [anon_sym_not_eq] = ACTIONS(10186), + [anon_sym_DASH_DASH] = ACTIONS(10188), + [anon_sym_PLUS_PLUS] = ACTIONS(10188), + [anon_sym_DOT] = ACTIONS(10186), + [anon_sym_DOT_STAR] = ACTIONS(10188), + [anon_sym_DASH_GT] = ACTIONS(10188), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(10188), + }, + [STATE(4172)] = { + [sym_identifier] = ACTIONS(7714), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7716), + [anon_sym_COMMA] = ACTIONS(7716), + [anon_sym_RPAREN] = ACTIONS(7716), + [aux_sym_preproc_if_token2] = ACTIONS(7716), + [aux_sym_preproc_else_token1] = ACTIONS(7716), + [aux_sym_preproc_elif_token1] = ACTIONS(7714), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7716), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7716), + [anon_sym_LPAREN2] = ACTIONS(7716), + [anon_sym_DASH] = ACTIONS(7714), + [anon_sym_PLUS] = ACTIONS(7714), + [anon_sym_STAR] = ACTIONS(7714), + [anon_sym_SLASH] = ACTIONS(7714), + [anon_sym_PERCENT] = ACTIONS(7714), + [anon_sym_PIPE_PIPE] = ACTIONS(7716), + [anon_sym_AMP_AMP] = ACTIONS(7716), + [anon_sym_PIPE] = ACTIONS(7714), + [anon_sym_CARET] = ACTIONS(7714), + [anon_sym_AMP] = ACTIONS(7714), + [anon_sym_EQ_EQ] = ACTIONS(7716), + [anon_sym_BANG_EQ] = ACTIONS(7716), + [anon_sym_GT] = ACTIONS(7714), + [anon_sym_GT_EQ] = ACTIONS(7716), + [anon_sym_LT_EQ] = ACTIONS(7714), + [anon_sym_LT] = ACTIONS(7714), + [anon_sym_LT_LT] = ACTIONS(7714), + [anon_sym_GT_GT] = ACTIONS(7714), + [anon_sym_SEMI] = ACTIONS(7716), + [anon_sym___attribute__] = ACTIONS(7714), + [anon_sym___attribute] = ACTIONS(7714), + [anon_sym_COLON] = ACTIONS(7714), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7716), + [anon_sym_LBRACE] = ACTIONS(7716), + [anon_sym_RBRACE] = ACTIONS(7716), + [anon_sym_LBRACK] = ACTIONS(7716), + [anon_sym_EQ] = ACTIONS(7714), + [anon_sym_QMARK] = ACTIONS(7716), + [anon_sym_STAR_EQ] = ACTIONS(7716), + [anon_sym_SLASH_EQ] = ACTIONS(7716), + [anon_sym_PERCENT_EQ] = ACTIONS(7716), + [anon_sym_PLUS_EQ] = ACTIONS(7716), + [anon_sym_DASH_EQ] = ACTIONS(7716), + [anon_sym_LT_LT_EQ] = ACTIONS(7716), + [anon_sym_GT_GT_EQ] = ACTIONS(7716), + [anon_sym_AMP_EQ] = ACTIONS(7716), + [anon_sym_CARET_EQ] = ACTIONS(7716), + [anon_sym_PIPE_EQ] = ACTIONS(7716), + [anon_sym_and_eq] = ACTIONS(7714), + [anon_sym_or_eq] = ACTIONS(7714), + [anon_sym_xor_eq] = ACTIONS(7714), + [anon_sym_LT_EQ_GT] = ACTIONS(7716), + [anon_sym_or] = ACTIONS(7714), + [anon_sym_and] = ACTIONS(7714), + [anon_sym_bitor] = ACTIONS(7714), + [anon_sym_xor] = ACTIONS(7714), + [anon_sym_bitand] = ACTIONS(7714), + [anon_sym_not_eq] = ACTIONS(7714), + [anon_sym_DASH_DASH] = ACTIONS(7716), + [anon_sym_PLUS_PLUS] = ACTIONS(7716), + [anon_sym_DOT] = ACTIONS(7714), + [anon_sym_DOT_STAR] = ACTIONS(7716), + [anon_sym_DASH_GT] = ACTIONS(7716), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7716), + }, + [STATE(4173)] = { + [sym_identifier] = ACTIONS(7854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7856), + [anon_sym_COMMA] = ACTIONS(7856), + [anon_sym_RPAREN] = ACTIONS(7856), + [aux_sym_preproc_if_token2] = ACTIONS(7856), + [aux_sym_preproc_else_token1] = ACTIONS(7856), + [aux_sym_preproc_elif_token1] = ACTIONS(7854), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7856), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7856), + [anon_sym_LPAREN2] = ACTIONS(7856), + [anon_sym_DASH] = ACTIONS(7854), + [anon_sym_PLUS] = ACTIONS(7854), + [anon_sym_STAR] = ACTIONS(7854), + [anon_sym_SLASH] = ACTIONS(7854), + [anon_sym_PERCENT] = ACTIONS(7854), + [anon_sym_PIPE_PIPE] = ACTIONS(7856), + [anon_sym_AMP_AMP] = ACTIONS(7856), + [anon_sym_PIPE] = ACTIONS(7854), + [anon_sym_CARET] = ACTIONS(7854), + [anon_sym_AMP] = ACTIONS(7854), + [anon_sym_EQ_EQ] = ACTIONS(7856), + [anon_sym_BANG_EQ] = ACTIONS(7856), + [anon_sym_GT] = ACTIONS(7854), + [anon_sym_GT_EQ] = ACTIONS(7856), + [anon_sym_LT_EQ] = ACTIONS(7854), + [anon_sym_LT] = ACTIONS(7854), + [anon_sym_LT_LT] = ACTIONS(7854), + [anon_sym_GT_GT] = ACTIONS(7854), + [anon_sym_SEMI] = ACTIONS(7856), + [anon_sym___attribute__] = ACTIONS(7854), + [anon_sym___attribute] = ACTIONS(7854), + [anon_sym_COLON] = ACTIONS(7854), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7856), + [anon_sym_LBRACE] = ACTIONS(7856), + [anon_sym_RBRACE] = ACTIONS(7856), + [anon_sym_LBRACK] = ACTIONS(7856), + [anon_sym_EQ] = ACTIONS(7854), + [anon_sym_QMARK] = ACTIONS(7856), + [anon_sym_STAR_EQ] = ACTIONS(7856), + [anon_sym_SLASH_EQ] = ACTIONS(7856), + [anon_sym_PERCENT_EQ] = ACTIONS(7856), + [anon_sym_PLUS_EQ] = ACTIONS(7856), + [anon_sym_DASH_EQ] = ACTIONS(7856), + [anon_sym_LT_LT_EQ] = ACTIONS(7856), + [anon_sym_GT_GT_EQ] = ACTIONS(7856), + [anon_sym_AMP_EQ] = ACTIONS(7856), + [anon_sym_CARET_EQ] = ACTIONS(7856), + [anon_sym_PIPE_EQ] = ACTIONS(7856), + [anon_sym_and_eq] = ACTIONS(7854), + [anon_sym_or_eq] = ACTIONS(7854), + [anon_sym_xor_eq] = ACTIONS(7854), + [anon_sym_LT_EQ_GT] = ACTIONS(7856), + [anon_sym_or] = ACTIONS(7854), + [anon_sym_and] = ACTIONS(7854), + [anon_sym_bitor] = ACTIONS(7854), + [anon_sym_xor] = ACTIONS(7854), + [anon_sym_bitand] = ACTIONS(7854), + [anon_sym_not_eq] = ACTIONS(7854), + [anon_sym_DASH_DASH] = ACTIONS(7856), + [anon_sym_PLUS_PLUS] = ACTIONS(7856), + [anon_sym_DOT] = ACTIONS(7854), + [anon_sym_DOT_STAR] = ACTIONS(7856), + [anon_sym_DASH_GT] = ACTIONS(7856), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7856), + }, + [STATE(4174)] = { + [sym_identifier] = ACTIONS(7858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7860), + [anon_sym_COMMA] = ACTIONS(7860), + [anon_sym_RPAREN] = ACTIONS(7860), + [aux_sym_preproc_if_token2] = ACTIONS(7860), + [aux_sym_preproc_else_token1] = ACTIONS(7860), + [aux_sym_preproc_elif_token1] = ACTIONS(7858), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7860), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7860), + [anon_sym_LPAREN2] = ACTIONS(7860), + [anon_sym_DASH] = ACTIONS(7858), + [anon_sym_PLUS] = ACTIONS(7858), + [anon_sym_STAR] = ACTIONS(7858), + [anon_sym_SLASH] = ACTIONS(7858), + [anon_sym_PERCENT] = ACTIONS(7858), + [anon_sym_PIPE_PIPE] = ACTIONS(7860), + [anon_sym_AMP_AMP] = ACTIONS(7860), + [anon_sym_PIPE] = ACTIONS(7858), + [anon_sym_CARET] = ACTIONS(7858), + [anon_sym_AMP] = ACTIONS(7858), + [anon_sym_EQ_EQ] = ACTIONS(7860), + [anon_sym_BANG_EQ] = ACTIONS(7860), + [anon_sym_GT] = ACTIONS(7858), + [anon_sym_GT_EQ] = ACTIONS(7860), + [anon_sym_LT_EQ] = ACTIONS(7858), + [anon_sym_LT] = ACTIONS(7858), + [anon_sym_LT_LT] = ACTIONS(7858), + [anon_sym_GT_GT] = ACTIONS(7858), + [anon_sym_SEMI] = ACTIONS(7860), + [anon_sym___attribute__] = ACTIONS(7858), + [anon_sym___attribute] = ACTIONS(7858), + [anon_sym_COLON] = ACTIONS(7858), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7860), + [anon_sym_LBRACE] = ACTIONS(7860), + [anon_sym_RBRACE] = ACTIONS(7860), + [anon_sym_LBRACK] = ACTIONS(7860), + [anon_sym_EQ] = ACTIONS(7858), + [anon_sym_QMARK] = ACTIONS(7860), + [anon_sym_STAR_EQ] = ACTIONS(7860), + [anon_sym_SLASH_EQ] = ACTIONS(7860), + [anon_sym_PERCENT_EQ] = ACTIONS(7860), + [anon_sym_PLUS_EQ] = ACTIONS(7860), + [anon_sym_DASH_EQ] = ACTIONS(7860), + [anon_sym_LT_LT_EQ] = ACTIONS(7860), + [anon_sym_GT_GT_EQ] = ACTIONS(7860), + [anon_sym_AMP_EQ] = ACTIONS(7860), + [anon_sym_CARET_EQ] = ACTIONS(7860), + [anon_sym_PIPE_EQ] = ACTIONS(7860), + [anon_sym_and_eq] = ACTIONS(7858), + [anon_sym_or_eq] = ACTIONS(7858), + [anon_sym_xor_eq] = ACTIONS(7858), + [anon_sym_LT_EQ_GT] = ACTIONS(7860), + [anon_sym_or] = ACTIONS(7858), + [anon_sym_and] = ACTIONS(7858), + [anon_sym_bitor] = ACTIONS(7858), + [anon_sym_xor] = ACTIONS(7858), + [anon_sym_bitand] = ACTIONS(7858), + [anon_sym_not_eq] = ACTIONS(7858), + [anon_sym_DASH_DASH] = ACTIONS(7860), + [anon_sym_PLUS_PLUS] = ACTIONS(7860), + [anon_sym_DOT] = ACTIONS(7858), + [anon_sym_DOT_STAR] = ACTIONS(7860), + [anon_sym_DASH_GT] = ACTIONS(7860), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7860), + }, + [STATE(4175)] = { + [sym_identifier] = ACTIONS(7911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7913), + [anon_sym_COMMA] = ACTIONS(7913), + [anon_sym_RPAREN] = ACTIONS(7913), + [aux_sym_preproc_if_token2] = ACTIONS(7913), + [aux_sym_preproc_else_token1] = ACTIONS(7913), + [aux_sym_preproc_elif_token1] = ACTIONS(7911), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7913), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7913), + [anon_sym_LPAREN2] = ACTIONS(7913), + [anon_sym_DASH] = ACTIONS(7911), + [anon_sym_PLUS] = ACTIONS(7911), + [anon_sym_STAR] = ACTIONS(7911), + [anon_sym_SLASH] = ACTIONS(7911), + [anon_sym_PERCENT] = ACTIONS(7911), + [anon_sym_PIPE_PIPE] = ACTIONS(7913), + [anon_sym_AMP_AMP] = ACTIONS(7913), + [anon_sym_PIPE] = ACTIONS(7911), + [anon_sym_CARET] = ACTIONS(7911), + [anon_sym_AMP] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(7913), + [anon_sym_BANG_EQ] = ACTIONS(7913), + [anon_sym_GT] = ACTIONS(7911), + [anon_sym_GT_EQ] = ACTIONS(7913), + [anon_sym_LT_EQ] = ACTIONS(7911), + [anon_sym_LT] = ACTIONS(7911), + [anon_sym_LT_LT] = ACTIONS(7911), + [anon_sym_GT_GT] = ACTIONS(7911), + [anon_sym_SEMI] = ACTIONS(7913), + [anon_sym___attribute__] = ACTIONS(7911), + [anon_sym___attribute] = ACTIONS(7911), + [anon_sym_COLON] = ACTIONS(7911), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7913), + [anon_sym_LBRACE] = ACTIONS(7913), + [anon_sym_RBRACE] = ACTIONS(7913), + [anon_sym_LBRACK] = ACTIONS(7913), + [anon_sym_EQ] = ACTIONS(7911), + [anon_sym_QMARK] = ACTIONS(7913), + [anon_sym_STAR_EQ] = ACTIONS(7913), + [anon_sym_SLASH_EQ] = ACTIONS(7913), + [anon_sym_PERCENT_EQ] = ACTIONS(7913), + [anon_sym_PLUS_EQ] = ACTIONS(7913), + [anon_sym_DASH_EQ] = ACTIONS(7913), + [anon_sym_LT_LT_EQ] = ACTIONS(7913), + [anon_sym_GT_GT_EQ] = ACTIONS(7913), + [anon_sym_AMP_EQ] = ACTIONS(7913), + [anon_sym_CARET_EQ] = ACTIONS(7913), + [anon_sym_PIPE_EQ] = ACTIONS(7913), + [anon_sym_and_eq] = ACTIONS(7911), + [anon_sym_or_eq] = ACTIONS(7911), + [anon_sym_xor_eq] = ACTIONS(7911), + [anon_sym_LT_EQ_GT] = ACTIONS(7913), + [anon_sym_or] = ACTIONS(7911), + [anon_sym_and] = ACTIONS(7911), + [anon_sym_bitor] = ACTIONS(7911), + [anon_sym_xor] = ACTIONS(7911), + [anon_sym_bitand] = ACTIONS(7911), + [anon_sym_not_eq] = ACTIONS(7911), + [anon_sym_DASH_DASH] = ACTIONS(7913), + [anon_sym_PLUS_PLUS] = ACTIONS(7913), + [anon_sym_DOT] = ACTIONS(7911), + [anon_sym_DOT_STAR] = ACTIONS(7913), + [anon_sym_DASH_GT] = ACTIONS(7913), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7913), + }, + [STATE(4176)] = { + [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___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_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), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7773), + }, + [STATE(4177)] = { + [sym_identifier] = ACTIONS(7794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7796), + [anon_sym_COMMA] = ACTIONS(7796), + [anon_sym_RPAREN] = ACTIONS(7796), + [aux_sym_preproc_if_token2] = ACTIONS(7796), + [aux_sym_preproc_else_token1] = ACTIONS(7796), + [aux_sym_preproc_elif_token1] = ACTIONS(7794), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7796), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7796), + [anon_sym_LPAREN2] = ACTIONS(7796), + [anon_sym_DASH] = ACTIONS(7794), + [anon_sym_PLUS] = ACTIONS(7794), + [anon_sym_STAR] = ACTIONS(7794), + [anon_sym_SLASH] = ACTIONS(7794), + [anon_sym_PERCENT] = ACTIONS(7794), + [anon_sym_PIPE_PIPE] = ACTIONS(7796), + [anon_sym_AMP_AMP] = ACTIONS(7796), + [anon_sym_PIPE] = ACTIONS(7794), + [anon_sym_CARET] = ACTIONS(7794), + [anon_sym_AMP] = ACTIONS(7794), + [anon_sym_EQ_EQ] = ACTIONS(7796), + [anon_sym_BANG_EQ] = ACTIONS(7796), + [anon_sym_GT] = ACTIONS(7794), + [anon_sym_GT_EQ] = ACTIONS(7796), + [anon_sym_LT_EQ] = ACTIONS(7794), + [anon_sym_LT] = ACTIONS(7794), + [anon_sym_LT_LT] = ACTIONS(7794), + [anon_sym_GT_GT] = ACTIONS(7794), + [anon_sym_SEMI] = ACTIONS(7796), + [anon_sym___attribute__] = ACTIONS(7794), + [anon_sym___attribute] = ACTIONS(7794), + [anon_sym_COLON] = ACTIONS(7794), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7796), + [anon_sym_LBRACE] = ACTIONS(7796), + [anon_sym_RBRACE] = ACTIONS(7796), + [anon_sym_LBRACK] = ACTIONS(7796), + [anon_sym_EQ] = ACTIONS(7794), + [anon_sym_QMARK] = ACTIONS(7796), + [anon_sym_STAR_EQ] = ACTIONS(7796), + [anon_sym_SLASH_EQ] = ACTIONS(7796), + [anon_sym_PERCENT_EQ] = ACTIONS(7796), + [anon_sym_PLUS_EQ] = ACTIONS(7796), + [anon_sym_DASH_EQ] = ACTIONS(7796), + [anon_sym_LT_LT_EQ] = ACTIONS(7796), + [anon_sym_GT_GT_EQ] = ACTIONS(7796), + [anon_sym_AMP_EQ] = ACTIONS(7796), + [anon_sym_CARET_EQ] = ACTIONS(7796), + [anon_sym_PIPE_EQ] = ACTIONS(7796), + [anon_sym_and_eq] = ACTIONS(7794), + [anon_sym_or_eq] = ACTIONS(7794), + [anon_sym_xor_eq] = ACTIONS(7794), + [anon_sym_LT_EQ_GT] = ACTIONS(7796), + [anon_sym_or] = ACTIONS(7794), + [anon_sym_and] = ACTIONS(7794), + [anon_sym_bitor] = ACTIONS(7794), + [anon_sym_xor] = ACTIONS(7794), + [anon_sym_bitand] = ACTIONS(7794), + [anon_sym_not_eq] = ACTIONS(7794), + [anon_sym_DASH_DASH] = ACTIONS(7796), + [anon_sym_PLUS_PLUS] = ACTIONS(7796), + [anon_sym_DOT] = ACTIONS(7794), + [anon_sym_DOT_STAR] = ACTIONS(7796), + [anon_sym_DASH_GT] = ACTIONS(7796), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7796), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10190), 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(10192), 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, + [71] = 3, + ACTIONS(3), 1, + sym_comment, + 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___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(10196), 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, + [142] = 3, + ACTIONS(3), 1, + sym_comment, + 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___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(10200), 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, + [213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 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(7718), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 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_COLON_COLON, + anon_sym_LBRACE, + 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_LBRACK_COLON, + ACTIONS(7442), 40, + anon_sym_DASH, + 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_COLON, + 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, + 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_requires, + [355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7737), 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(7735), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7765), 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(7763), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7568), 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_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + 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_LBRACK_COLON, + ACTIONS(7566), 42, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_COLON, + 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, + 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_requires, + [568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10202), 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(10204), 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, + [639] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10105), 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(10103), 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, + [710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 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(10208), 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, + [781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10210), 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(10212), 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, + [852] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9800), 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_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(9802), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10214), 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(10216), 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, + [1002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 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(4980), 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, + [1073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10218), 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(10220), 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, + [1144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10222), 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(10224), 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, + [1215] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7304), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7306), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [1290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7151), 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_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + 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_LBRACK_COLON, + ACTIONS(7149), 42, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_COLON, + 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, + 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_requires, + [1361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7712), 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(7710), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [1432] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7310), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [1507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10228), 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(10230), 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, + [1578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10232), 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(10234), 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, + [1649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10236), 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(10238), 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, + [1720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10240), 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(10242), 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, + [1791] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7133), 1, + anon_sym_LPAREN2, + ACTIONS(7147), 1, + anon_sym_LBRACK, + ACTIONS(7382), 1, + anon_sym_STAR, + ACTIONS(7384), 1, + anon_sym_AMP_AMP, + ACTIONS(7386), 1, + anon_sym_AMP, + ACTIONS(7388), 1, + anon_sym_COLON_COLON, + STATE(2457), 1, + sym_parameter_list, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6061), 1, + sym__function_declarator_seq, + STATE(7151), 1, + sym__abstract_declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(9550), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(6060), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(7862), 17, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7864), 19, + 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___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [1898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 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(9008), 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, + [1969] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4212), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7318), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2044] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4606), 1, + sym_alignas_qualifier, + ACTIONS(10249), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4206), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(10246), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7049), 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(7047), 23, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + [2123] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4213), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10252), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7324), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2198] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9804), 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_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(9806), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 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(9031), 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, + [2348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 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(9099), 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, + [2419] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7361), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [2492] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7298), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2567] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7255), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [2642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 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(10256), 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, + [2713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10258), 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(10260), 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, + [2784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7773), 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(7771), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [2855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7816), 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(7814), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [2926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5671), 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(5663), 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, + [2997] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4238), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10262), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7263), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7265), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7151), 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_COLON_COLON, + anon_sym_LBRACE, + 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_LBRACK_COLON, + ACTIONS(7149), 40, + anon_sym_DASH, + 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_COLON, + 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, + 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_requires, + [3143] = 3, + ACTIONS(3), 1, + sym_comment, + 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___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(10266), 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, + [3214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10268), 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(10270), 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, + [3285] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4239), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10272), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7271), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3360] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4634), 1, + sym_alignas_qualifier, + ACTIONS(10277), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4224), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(10274), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7049), 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(7047), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + 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, + [3439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10280), 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(10282), 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, + [3510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10284), 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(10286), 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, + [3581] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7302), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [3656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10288), 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(10290), 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, + [3727] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2312), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10292), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7298), 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_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, + anon_sym_COLON_RBRACK, + [3802] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2312), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10292), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7255), 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_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, + anon_sym_COLON_RBRACK, + [3877] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4290), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10294), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7263), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7265), 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_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, + anon_sym_COLON_RBRACK, + [3952] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4291), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10296), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7271), 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_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, + anon_sym_COLON_RBRACK, + [4027] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2312), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10292), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7302), 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_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, + anon_sym_COLON_RBRACK, + [4102] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4195), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10298), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7290), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7292), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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(9000), 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, + [4248] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2312), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10292), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7310), 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_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, + anon_sym_COLON_RBRACK, + [4323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7844), 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(7842), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [4394] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7277), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4469] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10226), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7279), 28, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7281), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [4544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7852), 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(7850), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [4615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8898), 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(3472), 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, + [4686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7824), 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(7822), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [4757] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(8910), 1, + anon_sym_LPAREN2, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(9160), 1, + anon_sym_STAR, + ACTIONS(9162), 1, + anon_sym_AMP_AMP, + ACTIONS(9164), 1, + anon_sym_AMP, + ACTIONS(9168), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(3630), 1, + sym_alignas_qualifier, + STATE(5887), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9288), 1, + sym__type_declarator, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9603), 1, + sym__scope_resolution, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(10162), 1, + sym__abstract_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5970), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9170), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3324), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(9166), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [4886] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10300), 1, + sym_identifier, + STATE(4260), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6075), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6077), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8746), 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(8744), 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, + [4965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10302), 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(10304), 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, + [5036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10147), 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(10149), 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, + [5107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7828), 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(7826), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [5178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7568), 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_COLON_COLON, + anon_sym_LBRACE, + 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_LBRACK_COLON, + ACTIONS(7566), 40, + anon_sym_DASH, + 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_COLON, + 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, + 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_requires, + [5249] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 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(7718), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [5320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10306), 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(10308), 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, + [5391] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9774), 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_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(9776), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [5470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10310), 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(10312), 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, + [5541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 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(7718), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [5612] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4277), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7290), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7292), 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_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, + anon_sym_COLON_RBRACK, + [5687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7788), 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(7786), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [5758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10316), 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(10318), 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, + [5829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7716), 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(7714), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [5900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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(9000), 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, + [5971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7808), 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(7806), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [6042] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10320), 1, + sym_identifier, + STATE(4260), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10323), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10326), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8758), 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(8756), 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, + [6121] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(8910), 1, + anon_sym_LPAREN2, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(9175), 1, + anon_sym_STAR, + ACTIONS(9177), 1, + anon_sym_AMP_AMP, + ACTIONS(9179), 1, + anon_sym_AMP, + STATE(2649), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9288), 1, + sym__type_declarator, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(10183), 1, + sym__abstract_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5970), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9121), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(9115), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [6250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10329), 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(10331), 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, + [6321] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4277), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10314), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7361), 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_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, + anon_sym_COLON_RBRACK, + [6396] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(8910), 1, + anon_sym_LPAREN2, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(9175), 1, + anon_sym_STAR, + ACTIONS(9177), 1, + anon_sym_AMP_AMP, + ACTIONS(9179), 1, + anon_sym_AMP, + STATE(2649), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9236), 1, + sym__type_declarator, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(10154), 1, + sym__abstract_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(6600), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6602), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9121), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(9115), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [6525] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9780), 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_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(9782), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6604] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9784), 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_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(9786), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [6683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10333), 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(10335), 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, + [6754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10337), 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(10339), 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, + [6825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 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(9099), 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, + [6896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10341), 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(10343), 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, + [6967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 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(10208), 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, + [7038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7741), 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(7739), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [7109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7749), 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(7747), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [7180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7757), 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(7755), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [7251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10345), 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(10347), 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, + [7322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 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(9008), 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, + [7393] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2312), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10292), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7304), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7306), 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_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, + anon_sym_COLON_RBRACK, + [7468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7856), 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(7854), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [7539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7836), 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(7834), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [7610] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7133), 1, + anon_sym_LPAREN2, + ACTIONS(7147), 1, + anon_sym_LBRACK, + ACTIONS(7405), 1, + anon_sym_STAR, + ACTIONS(7407), 1, + anon_sym_AMP_AMP, + ACTIONS(7409), 1, + anon_sym_AMP, + ACTIONS(7411), 1, + anon_sym_COLON_COLON, + STATE(2278), 1, + sym_parameter_list, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6061), 1, + sym__function_declarator_seq, + STATE(7119), 1, + sym__abstract_declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(9646), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(6060), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(7864), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + 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(7862), 21, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [7717] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4032), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7245), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7251), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9519), 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(9517), 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_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, + [7794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7292), 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(7290), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [7865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7777), 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(7775), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [7936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7781), 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(7779), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [8007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10349), 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(10351), 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, + [8078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10062), 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(10064), 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, + [8149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7840), 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(7838), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [8220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10353), 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(10355), 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, + [8291] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10357), 1, + sym_identifier, + STATE(4244), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6075), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6077), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8802), 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(8800), 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, + [8370] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2312), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10292), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7277), 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_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, + anon_sym_COLON_RBRACK, + [8445] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2312), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10292), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7279), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7281), 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_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, + anon_sym_COLON_RBRACK, + [8520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10359), 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(10361), 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, + [8591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10363), 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(10365), 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, + [8662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7792), 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(7790), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [8733] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9788), 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_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(9790), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [8812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10367), 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(10369), 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, + [8883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10371), 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(10373), 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, + [8954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7796), 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(7794), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [9025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7800), 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(7798), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [9096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10375), 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(10377), 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, + [9167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7804), 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(7802), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [9238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [9309] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(10383), 1, + anon_sym_COLON, + STATE(3985), 1, + sym__enum_base_clause, + STATE(4136), 1, + sym_enumerator_list, + STATE(4274), 1, + sym_attribute_specifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7415), 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(7413), 46, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [9392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7796), 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(7794), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [9463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7860), 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(7858), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [9534] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(8910), 1, + anon_sym_LPAREN2, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(9160), 1, + anon_sym_STAR, + ACTIONS(9162), 1, + anon_sym_AMP_AMP, + ACTIONS(9164), 1, + anon_sym_AMP, + ACTIONS(9168), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(3630), 1, + sym_alignas_qualifier, + STATE(5887), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9236), 1, + sym__type_declarator, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9603), 1, + sym__scope_resolution, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(10195), 1, + sym__abstract_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(6600), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6602), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9170), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3324), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(9166), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [9663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10385), 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(10387), 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, + [9734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10389), 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(10391), 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, + [9805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 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_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + 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_LBRACK_COLON, + ACTIONS(7442), 42, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_COLON, + 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, + 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_requires, + [9876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9603), 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(9601), 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, + [9947] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6000), 1, + anon_sym_LPAREN2, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(9109), 1, + anon_sym_STAR, + ACTIONS(9111), 1, + anon_sym_AMP_AMP, + ACTIONS(9113), 1, + anon_sym_AMP, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(9123), 1, + sym_primitive_type, + STATE(2649), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9434), 1, + sym__type_declarator, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10183), 1, + sym__abstract_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5970), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9121), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(9115), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [10076] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(3452), 1, + sym_template_argument_list, + ACTIONS(6781), 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(6774), 50, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [10153] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4229), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10393), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7318), 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_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, + anon_sym_COLON_RBRACK, + [10228] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6000), 1, + anon_sym_LPAREN2, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(9109), 1, + anon_sym_STAR, + ACTIONS(9111), 1, + anon_sym_AMP_AMP, + ACTIONS(9113), 1, + anon_sym_AMP, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(9123), 1, + sym_primitive_type, + STATE(2649), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9408), 1, + sym__type_declarator, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10154), 1, + sym__abstract_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(6600), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6602), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9121), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(9115), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [10357] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [10428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 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_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_LBRACK_COLON, + ACTIONS(7668), 42, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_COLON, + 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, + 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_requires, + [10501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10395), 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(10397), 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, + [10572] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4029), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7334), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7340), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9517), 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(9519), 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, + [10649] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4230), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10399), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7324), 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_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, + anon_sym_COLON_RBRACK, + [10724] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10401), 1, + anon_sym_LT, + STATE(4095), 1, + sym_template_argument_list, + ACTIONS(10062), 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_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(10064), 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, + [10799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7848), 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(7846), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [10870] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9792), 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_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(9794), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [10949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7745), 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(7743), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [11020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7753), 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(7751), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [11091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 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(9031), 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, + [11162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7820), 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(7818), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [11233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7761), 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(7759), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [11304] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 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_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_LBRACK_COLON, + ACTIONS(7668), 40, + anon_sym_DASH, + 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_COLON, + 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, + 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_requires, + [11377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10404), 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(10406), 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, + [11448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5671), 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(5663), 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, + [11519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10408), 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(10410), 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, + [11590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [11661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7769), 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(7767), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [11732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10412), 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(10414), 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, + [11803] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(10383), 1, + anon_sym_COLON, + STATE(4015), 1, + sym__enum_base_clause, + STATE(4109), 1, + sym_enumerator_list, + STATE(4197), 1, + sym_attribute_specifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7392), 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(7390), 46, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [11886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [11957] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9796), 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_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(9798), 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_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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [12036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7832), 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(7830), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [12107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10416), 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(10418), 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, + [12178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [12249] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7205), 1, + anon_sym_decltype, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(10420), 1, + sym_auto, + STATE(4553), 1, + sym_decltype_auto, + ACTIONS(7361), 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_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_LBRACK_COLON, + ACTIONS(7359), 40, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_template, + anon_sym_requires, + [12328] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7205), 1, + anon_sym_decltype, + ACTIONS(10420), 1, + sym_auto, + STATE(4553), 1, + sym_decltype_auto, + ACTIONS(7361), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 40, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_template, + anon_sym_requires, + [12405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [12476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10422), 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(10424), 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, + [12547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7812), 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(7810), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [12618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7361), 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(7359), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [12689] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10426), 1, + anon_sym_delete, + ACTIONS(10428), 1, + anon_sym_new, + ACTIONS(10107), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10105), 24, + 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, + ACTIONS(10103), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [12768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7913), 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(7911), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [12839] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7447), 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(7442), 49, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [12915] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8180), 1, + anon_sym_noexcept, + ACTIONS(8182), 1, + anon_sym_throw, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(10430), 1, + anon_sym_AMP_AMP, + ACTIONS(10433), 1, + anon_sym_AMP, + ACTIONS(10436), 1, + anon_sym_DASH_GT, + STATE(4465), 1, + sym_ref_qualifier, + STATE(7027), 1, + sym__function_attributes_end, + STATE(7106), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7233), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7543), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5043), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7474), 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, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [13027] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10439), 1, + anon_sym_LT, + STATE(4631), 1, + sym_template_argument_list, + ACTIONS(5689), 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(7543), 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, + [13103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7545), 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, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(7547), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_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, + [13173] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4801), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7708), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7706), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [13247] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4773), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7572), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7570), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [13321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9061), 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(9063), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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_noexcept, + anon_sym_throw, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [13391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 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(9031), 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, + [13461] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4482), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7636), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7634), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [13535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [13605] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 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(3108), 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, + anon_sym_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, + [13675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [13745] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4749), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7576), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7574), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [13819] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(10439), 1, + anon_sym_LT, + STATE(3820), 1, + sym_template_argument_list, + ACTIONS(7447), 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(7442), 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, + [13895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 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(9099), 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, + [13965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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(9000), 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, + [14035] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10445), 1, + anon_sym_virtual, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4394), 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(8591), 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(10443), 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(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(10441), 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, + [14123] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4713), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7580), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7578), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [14197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7491), 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, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(7493), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_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, + [14267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7259), 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(7261), 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, + anon_sym_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, + [14337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7292), 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_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + 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_LBRACK_COLON, + ACTIONS(7290), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [14407] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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(9000), 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, + [14477] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4497), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7674), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7672), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [14551] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10447), 1, + anon_sym_STAR, + ACTIONS(10449), 1, + anon_sym_AMP_AMP, + ACTIONS(10451), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5193), 1, + sym_parameter_list, + STATE(6849), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9641), 1, + sym__scope_resolution, + STATE(9863), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9649), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4377), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5386), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9647), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5994), 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(5996), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [14673] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4540), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7694), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7692), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [14747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 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(9008), 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, + [14817] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8180), 1, + anon_sym_noexcept, + ACTIONS(8182), 1, + anon_sym_throw, + ACTIONS(10430), 1, + anon_sym_AMP_AMP, + ACTIONS(10433), 1, + anon_sym_AMP, + ACTIONS(10436), 1, + anon_sym_DASH_GT, + ACTIONS(10458), 1, + anon_sym_requires, + STATE(4451), 1, + sym_ref_qualifier, + STATE(7044), 1, + sym__function_attributes_end, + STATE(7096), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10455), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7233), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7543), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5044), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7474), 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, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [14929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7462), 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, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(7464), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_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, + [14999] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10447), 1, + anon_sym_STAR, + ACTIONS(10449), 1, + anon_sym_AMP_AMP, + ACTIONS(10451), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5193), 1, + sym_parameter_list, + STATE(6849), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9641), 1, + sym__scope_resolution, + STATE(9852), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9649), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5299), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6442), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9647), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5968), 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(5970), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [15121] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4502), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7682), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7680), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [15195] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10439), 1, + anon_sym_LT, + STATE(4631), 1, + sym_template_argument_list, + ACTIONS(6781), 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(6774), 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, + [15271] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7704), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7702), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [15345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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(9000), 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, + [15415] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + STATE(4288), 1, + sym_argument_list, + STATE(6698), 1, + sym_initializer_list, + ACTIONS(7670), 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(7668), 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, + [15495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [15565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [15635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 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(9099), 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, + [15705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 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(9008), 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, + [15775] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4507), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7690), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7688), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [15849] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8215), 1, + anon_sym_noexcept, + ACTIONS(8217), 1, + anon_sym_throw, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(10461), 1, + anon_sym_AMP_AMP, + ACTIONS(10464), 1, + anon_sym_AMP, + ACTIONS(10467), 1, + anon_sym_DASH_GT, + STATE(4510), 1, + sym_ref_qualifier, + STATE(7023), 1, + sym__function_attributes_end, + STATE(7193), 1, + sym_trailing_return_type, + STATE(10250), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(6914), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7221), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7425), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5059), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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(7474), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + 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, + [15961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10214), 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(10216), 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, + [16031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7462), 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(7464), 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, + anon_sym_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, + [16101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7549), 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, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(7551), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_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, + [16171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 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(9031), 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, + [16241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 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(9008), 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, + [16311] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10474), 1, + anon_sym_virtual, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4399), 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(8591), 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(10472), 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(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(10470), 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, + [16399] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7662), 1, + anon_sym_noexcept, + ACTIONS(7664), 1, + anon_sym_throw, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(9584), 1, + anon_sym_AMP_AMP, + ACTIONS(9587), 1, + anon_sym_AMP, + ACTIONS(10476), 1, + anon_sym___attribute__, + ACTIONS(10479), 1, + anon_sym___attribute, + ACTIONS(10482), 1, + anon_sym_DASH_GT, + STATE(4491), 1, + sym_ref_qualifier, + STATE(6464), 1, + sym_trailing_return_type, + STATE(6899), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5027), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7474), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [16511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6829), 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(6831), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [16581] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10474), 1, + anon_sym_virtual, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4399), 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(8591), 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(10487), 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(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(10485), 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, + [16669] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4515), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7708), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7706), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [16743] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10496), 1, + anon_sym_virtual, + ACTIONS(10505), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10508), 1, + anon_sym___declspec, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(10502), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(10511), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4399), 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(10499), 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(10491), 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(10489), 13, + anon_sym_AMP, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10493), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [16831] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4757), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7678), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7676), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [16905] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4523), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7619), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7617), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [16979] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4716), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7619), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7617), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [17053] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4762), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7694), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7692), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [17127] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4786), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7704), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7702), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [17201] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4557), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7576), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7574), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [17275] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4537), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7580), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7578), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [17349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6803), 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(6805), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [17419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6799), 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(6801), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [17489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6807), 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(6809), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [17559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 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(9031), 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, + [17629] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4522), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7678), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7676), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [17703] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9701), 1, + anon_sym_LBRACE, + ACTIONS(10514), 1, + anon_sym_COLON, + STATE(3835), 1, + sym__enum_base_clause, + STATE(4030), 1, + sym_enumerator_list, + STATE(4114), 1, + sym_attribute_specifier, + ACTIONS(9240), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7390), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_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(7392), 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, + [17785] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9701), 1, + anon_sym_LBRACE, + ACTIONS(10514), 1, + anon_sym_COLON, + STATE(3828), 1, + sym__enum_base_clause, + STATE(4039), 1, + sym_enumerator_list, + STATE(4112), 1, + sym_attribute_specifier, + ACTIONS(9240), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7413), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_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(7415), 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, + [17867] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10516), 1, + anon_sym_STAR, + ACTIONS(10518), 1, + anon_sym_AMP_AMP, + ACTIONS(10520), 1, + anon_sym_AMP, + ACTIONS(10522), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5245), 1, + sym_parameter_list, + STATE(6849), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9600), 1, + sym__scope_resolution, + STATE(9901), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9649), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5391), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9647), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5994), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5996), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [17989] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10516), 1, + anon_sym_STAR, + ACTIONS(10518), 1, + anon_sym_AMP_AMP, + ACTIONS(10520), 1, + anon_sym_AMP, + ACTIONS(10522), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5245), 1, + sym_parameter_list, + STATE(6849), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9600), 1, + sym__scope_resolution, + STATE(9851), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9649), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5393), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6442), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(9647), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5968), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5970), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [18111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 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(9099), 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, + [18181] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10524), 1, + anon_sym_STAR, + ACTIONS(10526), 1, + anon_sym_AMP_AMP, + ACTIONS(10528), 1, + anon_sym_AMP, + ACTIONS(10530), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5394), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9586), 1, + sym__scope_resolution, + STATE(9907), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4418), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5404), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5994), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5996), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [18303] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10524), 1, + anon_sym_STAR, + ACTIONS(10526), 1, + anon_sym_AMP_AMP, + ACTIONS(10528), 1, + anon_sym_AMP, + ACTIONS(10530), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5394), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9586), 1, + sym__scope_resolution, + STATE(9862), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5254), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5968), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5970), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [18425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7491), 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(7493), 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, + anon_sym_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, + [18495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [18565] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4784), 1, + sym_alignas_qualifier, + ACTIONS(10535), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4421), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(10532), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7049), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7047), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [18643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6795), 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(6797), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [18713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 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(6793), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [18783] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10542), 1, + anon_sym_virtual, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4397), 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(8591), 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(10540), 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(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(10538), 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, + [18871] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4758), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7636), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7634), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [18945] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7662), 1, + anon_sym_noexcept, + ACTIONS(7664), 1, + anon_sym_throw, + ACTIONS(9584), 1, + anon_sym_AMP_AMP, + ACTIONS(9587), 1, + anon_sym_AMP, + ACTIONS(9596), 1, + anon_sym_requires, + ACTIONS(10476), 1, + anon_sym___attribute__, + ACTIONS(10479), 1, + anon_sym___attribute, + ACTIONS(10482), 1, + anon_sym_DASH_GT, + STATE(4539), 1, + sym_ref_qualifier, + STATE(6496), 1, + sym_trailing_return_type, + STATE(6874), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9593), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5076), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7474), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [19057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7292), 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_COLON_COLON, + anon_sym_LBRACE, + 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_LBRACK_COLON, + ACTIONS(7290), 39, + anon_sym_DASH, + 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_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, + 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_requires, + [19127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3118), 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, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(3108), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_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, + [19197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6811), 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(6813), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_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, + [19267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7549), 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(7551), 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, + anon_sym_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, + [19337] = 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(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 1, + anon_sym_LPAREN2, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5649), 1, + anon_sym_AMP_AMP, + ACTIONS(5651), 1, + anon_sym_AMP, + ACTIONS(5655), 1, + anon_sym_LBRACK, + ACTIONS(5968), 1, + anon_sym_RPAREN, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(9257), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(8774), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9936), 1, + sym__declarator, + STATE(10106), 1, + sym__abstract_declarator, + STATE(11956), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [19461] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4791), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7674), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7672), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [19535] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10544), 1, + anon_sym_LT, + ACTIONS(10548), 1, + sym_auto, + ACTIONS(10550), 1, + anon_sym_decltype, + STATE(4481), 1, + sym_template_argument_list, + STATE(4809), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5847), 1, + sym_decltype_auto, + ACTIONS(10546), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5661), 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(5669), 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, + [19621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7545), 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(7547), 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, + anon_sym_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, + [19691] = 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(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 1, + anon_sym_LPAREN2, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5649), 1, + anon_sym_AMP_AMP, + ACTIONS(5651), 1, + anon_sym_AMP, + ACTIONS(5655), 1, + anon_sym_LBRACK, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6600), 1, + anon_sym_RPAREN, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(9257), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(8774), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9931), 1, + sym__declarator, + STATE(10120), 1, + sym__abstract_declarator, + STATE(11956), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [19815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7259), 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, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(7261), 49, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_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, + [19885] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8215), 1, + anon_sym_noexcept, + ACTIONS(8217), 1, + anon_sym_throw, + ACTIONS(10461), 1, + anon_sym_AMP_AMP, + ACTIONS(10464), 1, + anon_sym_AMP, + ACTIONS(10467), 1, + anon_sym_DASH_GT, + ACTIONS(10555), 1, + anon_sym_requires, + STATE(4501), 1, + sym_ref_qualifier, + STATE(7069), 1, + sym__function_attributes_end, + STATE(7175), 1, + sym_trailing_return_type, + STATE(10250), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10552), 2, + anon_sym_final, + anon_sym_override, + STATE(6914), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7221), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7425), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5035), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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(7474), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + 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, + [19997] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(10381), 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, + [20067] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7133), 1, + anon_sym_LPAREN2, + ACTIONS(7147), 1, + anon_sym_LBRACK, + ACTIONS(7428), 1, + anon_sym_STAR, + ACTIONS(7430), 1, + anon_sym_AMP_AMP, + ACTIONS(7432), 1, + anon_sym_AMP, + ACTIONS(7434), 1, + anon_sym_COLON_COLON, + STATE(2285), 1, + sym_parameter_list, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6061), 1, + sym__function_declarator_seq, + STATE(7092), 1, + sym__abstract_declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(9632), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(6060), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(7864), 15, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + 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(7862), 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_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, + [20173] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10428), 1, + anon_sym_new, + ACTIONS(10558), 1, + anon_sym_delete, + ACTIONS(10107), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10103), 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(10105), 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, + [20251] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8364), 1, + anon_sym_LT, + STATE(3266), 1, + sym_template_argument_list, + ACTIONS(7447), 2, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7442), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_decltype, + anon_sym_template, + ACTIONS(7451), 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_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(7444), 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [20329] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6822), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(6815), 18, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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_template, + ACTIONS(6826), 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(6819), 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [20403] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4754), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7682), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7680), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [20477] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4704), 1, + sym_attribute_specifier, + ACTIONS(9688), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7690), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7688), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [20551] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10560), 1, + anon_sym_LT, + STATE(4481), 1, + sym_template_argument_list, + ACTIONS(6774), 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_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6781), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [20627] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4789), 1, + sym_alignas_qualifier, + ACTIONS(10566), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4446), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(10563), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7047), 22, + anon_sym_DASH, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + ACTIONS(7049), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + [20705] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4516), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7572), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7570), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [20779] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10569), 1, + anon_sym_STAR, + ACTIONS(10571), 1, + anon_sym_AMP_AMP, + ACTIONS(10573), 1, + anon_sym_AMP, + ACTIONS(10575), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5233), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9565), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9964), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5628), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5968), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(5970), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [20900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 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(9008), 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, + [20969] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8215), 1, + anon_sym_noexcept, + ACTIONS(8217), 1, + anon_sym_throw, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(10467), 1, + anon_sym_DASH_GT, + STATE(7023), 1, + sym__function_attributes_end, + STATE(7193), 1, + sym_trailing_return_type, + STATE(10250), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(6914), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7221), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7425), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5059), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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(7474), 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, + [21074] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8180), 1, + anon_sym_noexcept, + ACTIONS(8182), 1, + anon_sym_throw, + ACTIONS(10577), 1, + anon_sym_DASH_GT, + ACTIONS(10583), 1, + anon_sym_requires, + STATE(7022), 1, + sym__function_attributes_end, + STATE(7194), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10580), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7233), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7556), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5047), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7621), 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(7623), 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, + [21179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9061), 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(9063), 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___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_noexcept, + anon_sym_throw, + anon_sym_requires, + [21248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 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(9008), 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, + [21317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6795), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6797), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [21386] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + STATE(3290), 1, + sym_template_argument_list, + STATE(4809), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10546), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7129), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7131), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [21463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7741), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7739), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [21532] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10586), 1, + sym_identifier, + STATE(4564), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3912), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3918), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8746), 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(8744), 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, + [21609] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7718), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [21678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7796), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7794), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [21747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7812), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7810), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [21816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7816), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7814), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [21885] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10588), 1, + anon_sym_STAR, + ACTIONS(10590), 1, + anon_sym_AMP_AMP, + ACTIONS(10592), 1, + anon_sym_AMP, + ACTIONS(10594), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5883), 1, + sym_parameter_list, + STATE(6849), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9651), 1, + sym__scope_resolution, + STATE(9943), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9649), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4463), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5648), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5994), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(9647), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5996), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [22006] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10588), 1, + anon_sym_STAR, + ACTIONS(10590), 1, + anon_sym_AMP_AMP, + ACTIONS(10592), 1, + anon_sym_AMP, + ACTIONS(10594), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5883), 1, + sym_parameter_list, + STATE(6849), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9651), 1, + sym__scope_resolution, + STATE(9958), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9649), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5650), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6442), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(5968), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(9647), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5970), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [22127] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(10602), 1, + anon_sym_LBRACE, + STATE(5190), 1, + sym_field_declaration_list, + STATE(5886), 1, + sym_attribute_specifier, + STATE(10690), 1, + sym_virtual_specifier, + STATE(11753), 1, + sym_base_class_clause, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7370), 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(7372), 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, + [22214] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8180), 1, + anon_sym_noexcept, + ACTIONS(8182), 1, + anon_sym_throw, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(10577), 1, + anon_sym_DASH_GT, + STATE(7050), 1, + sym__function_attributes_end, + STATE(7089), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7233), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7556), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5060), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7621), 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(7623), 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, + [22319] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7523), 1, + anon_sym_LPAREN2, + ACTIONS(7525), 1, + anon_sym_STAR, + ACTIONS(7527), 1, + anon_sym_AMP_AMP, + ACTIONS(7529), 1, + anon_sym_AMP, + ACTIONS(7533), 1, + anon_sym_COLON_COLON, + ACTIONS(7539), 1, + anon_sym_LBRACK, + STATE(2444), 1, + sym_parameter_list, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(7270), 1, + sym__abstract_declarator, + STATE(7567), 1, + sym__function_declarator_seq, + STATE(9224), 1, + sym_splice_specifier, + STATE(9598), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(7555), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(7862), 15, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(7864), 19, + 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [22424] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6822), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6824), 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(6817), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___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_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, + [22495] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4468), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10606), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7175), 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(7173), 34, + anon_sym_DASH, + 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, + 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, + [22568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7820), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7818), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [22637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6799), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6801), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [22706] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9605), 1, + anon_sym_DASH_GT, + ACTIONS(9679), 1, + anon_sym_requires, + STATE(6662), 1, + sym__function_attributes_end, + STATE(6825), 1, + sym_trailing_return_type, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(7590), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9676), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6415), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7472), 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(7474), 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, + [22801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6793), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [22870] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9836), 1, + anon_sym_DASH_GT, + ACTIONS(9842), 1, + anon_sym_requires, + STATE(6668), 1, + sym__function_attributes_end, + STATE(6767), 1, + sym_trailing_return_type, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(7590), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9839), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6415), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7621), 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(7623), 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, + [22965] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10609), 1, + anon_sym_DASH_GT, + ACTIONS(10615), 1, + anon_sym_requires, + STATE(6671), 1, + sym__function_attributes_end, + STATE(6769), 1, + sym_trailing_return_type, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(7590), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(10612), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6415), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(8285), 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(8287), 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, + [23060] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7497), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [23131] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7497), 39, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [23202] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10569), 1, + anon_sym_STAR, + ACTIONS(10571), 1, + anon_sym_AMP_AMP, + ACTIONS(10573), 1, + anon_sym_AMP, + ACTIONS(10575), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5233), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9565), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9963), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4448), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5624), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5994), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(5996), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [23323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7519), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7521), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [23392] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10618), 1, + anon_sym_delete, + ACTIONS(10620), 1, + anon_sym_new, + ACTIONS(10107), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10103), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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(10105), 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, + [23469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7716), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7714), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [23538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6815), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6822), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [23607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7824), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7822), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [23676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7493), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7491), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [23745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6811), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6813), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [23814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6807), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6809), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [23883] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7662), 1, + anon_sym_noexcept, + ACTIONS(7664), 1, + anon_sym_throw, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(10476), 1, + anon_sym___attribute__, + ACTIONS(10479), 1, + anon_sym___attribute, + ACTIONS(10482), 1, + anon_sym_DASH_GT, + STATE(6464), 1, + sym_trailing_return_type, + STATE(6899), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5027), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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(7474), 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, + [23988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7820), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7818), 39, + anon_sym_DASH, + 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_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, + 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_requires, + [24057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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(9000), 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, + [24126] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10622), 1, + sym_identifier, + STATE(4457), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(3912), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3918), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8802), 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(8800), 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, + [24203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7828), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7826), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [24272] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7662), 1, + anon_sym_noexcept, + ACTIONS(7664), 1, + anon_sym_throw, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(10624), 1, + anon_sym___attribute__, + ACTIONS(10627), 1, + anon_sym___attribute, + ACTIONS(10630), 1, + anon_sym_DASH_GT, + STATE(6619), 1, + sym_trailing_return_type, + STATE(6903), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5029), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7621), 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(7623), 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, + [24377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7840), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7838), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [24446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7361), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [24515] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7590), 1, + anon_sym___attribute, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7653), 1, + anon_sym___attribute__, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(9590), 1, + anon_sym_DASH_GT, + STATE(6464), 1, + sym_trailing_return_type, + STATE(6707), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7474), 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_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_COLON_RBRACK, + [24614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7361), 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_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_LBRACK_COLON, + ACTIONS(7359), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [24685] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10633), 1, + anon_sym_LT, + ACTIONS(10637), 1, + sym_auto, + ACTIONS(10639), 1, + anon_sym_decltype, + STATE(4602), 1, + sym_template_argument_list, + STATE(4877), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6374), 1, + sym_decltype_auto, + ACTIONS(10635), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5661), 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(5669), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, + [24770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7832), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7830), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [24839] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9240), 1, + anon_sym___attribute, + ACTIONS(9701), 1, + anon_sym_LBRACE, + ACTIONS(10641), 1, + anon_sym___attribute__, + ACTIONS(10643), 1, + anon_sym_COLON, + STATE(3835), 1, + sym__enum_base_clause, + STATE(4030), 1, + sym_enumerator_list, + STATE(4114), 1, + sym_attribute_specifier, + ACTIONS(7390), 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(7392), 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [24922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7712), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7710), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [24991] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7913), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7911), 39, + anon_sym_DASH, + 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_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, + 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_requires, + [25060] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8215), 1, + anon_sym_noexcept, + ACTIONS(8217), 1, + anon_sym_throw, + ACTIONS(10645), 1, + anon_sym_DASH_GT, + ACTIONS(10651), 1, + anon_sym_requires, + STATE(7021), 1, + sym__function_attributes_end, + STATE(7117), 1, + sym_trailing_return_type, + STATE(10250), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10648), 2, + anon_sym_final, + anon_sym_override, + STATE(6914), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7221), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7439), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5036), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7621), 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(7623), 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, + [25165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7836), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7834), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [25234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6803), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6805), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [25303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7718), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [25372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7765), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7763), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [25441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6829), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6831), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [25510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7844), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7842), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [25579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7716), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7714), 39, + anon_sym_DASH, + 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_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, + 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_requires, + [25648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7848), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7846), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [25717] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8215), 1, + anon_sym_noexcept, + ACTIONS(8217), 1, + anon_sym_throw, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(10645), 1, + anon_sym_DASH_GT, + STATE(7070), 1, + sym__function_attributes_end, + STATE(7076), 1, + sym_trailing_return_type, + STATE(10250), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(6914), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7221), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7439), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5064), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7621), 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(7623), 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, + [25822] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7590), 1, + anon_sym___attribute, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7653), 1, + anon_sym___attribute__, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(9898), 1, + anon_sym_DASH_GT, + STATE(6619), 1, + sym_trailing_return_type, + STATE(6663), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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(7623), 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_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_COLON_RBRACK, + [25921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7568), 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(7566), 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, + [25990] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7745), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7743), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [26059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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(9000), 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, + [26128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7856), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7854), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [26197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7860), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7858), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [26266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7753), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7751), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [26335] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(9605), 1, + anon_sym_DASH_GT, + STATE(6654), 1, + sym__function_attributes_end, + STATE(6819), 1, + sym_trailing_return_type, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(7590), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6415), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7472), 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(7474), 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, + [26430] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(9836), 1, + anon_sym_DASH_GT, + STATE(6655), 1, + sym__function_attributes_end, + STATE(6821), 1, + sym_trailing_return_type, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(7590), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6415), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7621), 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(7623), 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, + [26525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7761), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7759), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [26594] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(10609), 1, + anon_sym_DASH_GT, + STATE(6656), 1, + sym__function_attributes_end, + STATE(6822), 1, + sym_trailing_return_type, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(7590), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6415), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(8285), 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(8287), 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, + [26689] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7749), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7747), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [26758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7777), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7775), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [26827] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4195), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10298), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 26, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_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(7361), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [26900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9061), 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(9063), 40, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [26969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7781), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7779), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [27038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7741), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7739), 39, + anon_sym_DASH, + 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_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, + 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_requires, + [27107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7792), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7790), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [27176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7796), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7794), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [27245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 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(9031), 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, + [27314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7718), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [27383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 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(9099), 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, + [27452] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7662), 1, + anon_sym_noexcept, + ACTIONS(7664), 1, + anon_sym_throw, + ACTIONS(9596), 1, + anon_sym_requires, + ACTIONS(10476), 1, + anon_sym___attribute__, + ACTIONS(10479), 1, + anon_sym___attribute, + ACTIONS(10482), 1, + anon_sym_DASH_GT, + STATE(6496), 1, + sym_trailing_return_type, + STATE(6874), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9593), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5076), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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(7474), 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, + [27557] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6863), 1, + anon_sym___attribute__, + ACTIONS(6865), 1, + anon_sym___attribute, + ACTIONS(6867), 1, + anon_sym_LBRACK_LBRACK, + STATE(2573), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4963), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 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(9222), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + 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, + [27636] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6863), 1, + anon_sym___attribute__, + ACTIONS(6865), 1, + anon_sym___attribute, + ACTIONS(6867), 1, + anon_sym_LBRACK_LBRACK, + STATE(2573), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4950), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 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(9226), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + 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, + [27715] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7590), 1, + anon_sym___attribute, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7653), 1, + anon_sym___attribute__, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(10654), 1, + anon_sym_DASH_GT, + STATE(6544), 1, + sym_trailing_return_type, + STATE(6689), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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(8287), 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_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_COLON_RBRACK, + [27814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7737), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7735), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [27883] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9240), 1, + anon_sym___attribute, + ACTIONS(9701), 1, + anon_sym_LBRACE, + ACTIONS(10641), 1, + anon_sym___attribute__, + ACTIONS(10643), 1, + anon_sym_COLON, + STATE(3828), 1, + sym__enum_base_clause, + STATE(4039), 1, + sym_enumerator_list, + STATE(4112), 1, + sym_attribute_specifier, + ACTIONS(7413), 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(7415), 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [27966] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7662), 1, + anon_sym_noexcept, + ACTIONS(7664), 1, + anon_sym_throw, + ACTIONS(9932), 1, + anon_sym_requires, + ACTIONS(10624), 1, + anon_sym___attribute__, + ACTIONS(10627), 1, + anon_sym___attribute, + ACTIONS(10630), 1, + anon_sym_DASH_GT, + STATE(6497), 1, + sym_trailing_return_type, + STATE(6918), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9929), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5123), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7621), 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(7623), 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, + [28071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7800), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7798), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [28140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7769), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7767), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [28209] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_decltype, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(10657), 1, + sym_auto, + STATE(4712), 1, + sym_decltype_auto, + ACTIONS(7361), 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_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_LBRACK_COLON, + ACTIONS(7359), 36, + anon_sym_DASH, + 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_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, + 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_template, + anon_sym_requires, + [28286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7788), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7786), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [28355] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_decltype, + ACTIONS(10657), 1, + sym_auto, + STATE(4712), 1, + sym_decltype_auto, + ACTIONS(7361), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 36, + anon_sym_DASH, + 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_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, + 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_template, + anon_sym_requires, + [28430] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7499), 1, + anon_sym_LPAREN2, + ACTIONS(7501), 1, + anon_sym_STAR, + ACTIONS(7503), 1, + anon_sym_AMP_AMP, + ACTIONS(7505), 1, + anon_sym_AMP, + ACTIONS(7509), 1, + anon_sym_COLON_COLON, + ACTIONS(7515), 1, + anon_sym_LBRACK, + STATE(2441), 1, + sym_parameter_list, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(7280), 1, + sym__abstract_declarator, + STATE(7575), 1, + sym__function_declarator_seq, + STATE(9224), 1, + sym_splice_specifier, + STATE(9647), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(7547), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(7862), 17, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7864), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [28535] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4289), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6075), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6077), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9519), 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(9517), 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, + [28610] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8180), 1, + anon_sym_noexcept, + ACTIONS(8182), 1, + anon_sym_throw, + ACTIONS(10436), 1, + anon_sym_DASH_GT, + ACTIONS(10458), 1, + anon_sym_requires, + STATE(7044), 1, + sym__function_attributes_end, + STATE(7096), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10455), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7233), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7543), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5044), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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(7474), 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, + [28715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7792), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7790), 39, + anon_sym_DASH, + 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_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, + 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_requires, + [28784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7808), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7806), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [28853] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(7363), 1, + anon_sym_LPAREN2, + STATE(3656), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4271), 1, + sym_argument_list, + STATE(6708), 1, + sym_initializer_list, + ACTIONS(9487), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7361), 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(7359), 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, + [28934] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8215), 1, + anon_sym_noexcept, + ACTIONS(8217), 1, + anon_sym_throw, + ACTIONS(10467), 1, + anon_sym_DASH_GT, + ACTIONS(10555), 1, + anon_sym_requires, + STATE(7069), 1, + sym__function_attributes_end, + STATE(7175), 1, + sym_trailing_return_type, + STATE(10250), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10552), 2, + anon_sym_final, + anon_sym_override, + STATE(6914), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7221), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7425), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5035), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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(7474), 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, + [29039] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8180), 1, + anon_sym_noexcept, + ACTIONS(8182), 1, + anon_sym_throw, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(10436), 1, + anon_sym_DASH_GT, + STATE(7027), 1, + sym__function_attributes_end, + STATE(7106), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7233), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7543), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5043), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7472), 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(7474), 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, + [29144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7852), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7850), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [29213] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7590), 1, + anon_sym___attribute, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7653), 1, + anon_sym___attribute__, + ACTIONS(9590), 1, + anon_sym_DASH_GT, + ACTIONS(9596), 1, + anon_sym_requires, + STATE(6496), 1, + sym_trailing_return_type, + STATE(6630), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9593), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7474), 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_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_COLON_RBRACK, + [29312] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4468), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10606), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7173), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + ACTIONS(7183), 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(7186), 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, + [29387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7757), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7755), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [29456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7773), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7771), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [29525] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7590), 1, + anon_sym___attribute, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7653), 1, + anon_sym___attribute__, + ACTIONS(9898), 1, + anon_sym_DASH_GT, + ACTIONS(9932), 1, + anon_sym_requires, + STATE(6497), 1, + sym_trailing_return_type, + STATE(6632), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9929), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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(7623), 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_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_COLON_RBRACK, + [29624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 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(9031), 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, + [29693] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7590), 1, + anon_sym___attribute, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7653), 1, + anon_sym___attribute__, + ACTIONS(10654), 1, + anon_sym_DASH_GT, + ACTIONS(10662), 1, + anon_sym_requires, + STATE(6502), 1, + sym_trailing_return_type, + STATE(6636), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10659), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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(8287), 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_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_COLON_RBRACK, + [29792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 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(9099), 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, + [29861] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10665), 1, + anon_sym_LT, + STATE(4602), 1, + sym_template_argument_list, + ACTIONS(6774), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6781), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [29936] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10668), 1, + anon_sym_LT, + ACTIONS(10672), 1, + sym_auto, + ACTIONS(10674), 1, + anon_sym_decltype, + STATE(4696), 1, + sym_template_argument_list, + STATE(4819), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6196), 1, + sym_decltype_auto, + ACTIONS(10670), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5661), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5669), 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_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, + [30021] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10676), 1, + sym_identifier, + STATE(4564), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10679), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10682), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8758), 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(8756), 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, + [30098] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10685), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7175), 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(7173), 36, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + [30171] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10688), 1, + anon_sym_LT, + STATE(4696), 1, + sym_template_argument_list, + ACTIONS(6774), 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___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6781), 39, + 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [30246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7804), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7802), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [30315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7913), 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7911), 41, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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_requires, + [30384] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10685), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7173), 17, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + ACTIONS(7183), 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, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(7186), 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, + [30459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10693), 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(10691), 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, + [30527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6813), 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(6811), 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, + [30595] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9842), 1, + sym__declarator, + STATE(12896), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4628), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6014), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30715] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_STAR, + ACTIONS(10707), 1, + anon_sym_AMP_AMP, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9764), 1, + sym__declarator, + STATE(12133), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4583), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5844), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [30835] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10713), 1, + anon_sym_delete, + ACTIONS(10715), 1, + anon_sym_new, + ACTIONS(10107), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10105), 24, + 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, + ACTIONS(10103), 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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [30911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6795), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6797), 40, + 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_COLON_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [30979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9364), 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(9366), 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, + [31047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9319), 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(9321), 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, + [31115] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6910), 1, + anon_sym___attribute__, + ACTIONS(6912), 1, + anon_sym___attribute, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + STATE(2657), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5046), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 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(9222), 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, + [31193] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6910), 1, + anon_sym___attribute__, + ACTIONS(6912), 1, + anon_sym___attribute, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + STATE(2657), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5058), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 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(9226), 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, + [31271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 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(7442), 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, + [31339] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10717), 1, + anon_sym_STAR, + ACTIONS(10719), 1, + anon_sym_AMP_AMP, + ACTIONS(10721), 1, + anon_sym_AMP, + ACTIONS(10723), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5796), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9559), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10049), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(5994), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4584), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5849), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5996), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [31459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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_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(9000), 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, + [31527] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_STAR, + ACTIONS(10707), 1, + anon_sym_AMP_AMP, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9776), 1, + sym__declarator, + STATE(12133), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5852), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [31647] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10717), 1, + anon_sym_STAR, + ACTIONS(10719), 1, + anon_sym_AMP_AMP, + ACTIONS(10721), 1, + anon_sym_AMP, + ACTIONS(10723), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5796), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9559), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10034), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5853), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5970), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [31767] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10731), 1, + anon_sym_template, + STATE(2361), 1, + sym_string_literal, + ACTIONS(10729), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10727), 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(10725), 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, + [31841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6799), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6801), 40, + 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_COLON_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [31909] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10733), 1, + anon_sym_template, + STATE(2359), 1, + sym_string_literal, + ACTIONS(10729), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10727), 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(10725), 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, + [31983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7261), 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(7259), 38, + anon_sym_DASH, + 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, + [32051] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10735), 1, + anon_sym_STAR, + ACTIONS(10737), 1, + anon_sym_AMP_AMP, + ACTIONS(10739), 1, + anon_sym_AMP, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9890), 1, + sym__declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5821), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32171] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10743), 1, + anon_sym_STAR, + ACTIONS(10745), 1, + anon_sym_AMP_AMP, + ACTIONS(10747), 1, + anon_sym_AMP, + ACTIONS(10749), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5504), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9614), 1, + sym__scope_resolution, + STATE(10040), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5822), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5968), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(5970), 4, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32291] = 29, + 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9936), 1, + sym__declarator, + STATE(11956), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6104), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7497), 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(7495), 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, + [32481] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9764), 1, + sym__declarator, + STATE(12896), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4637), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5943), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32601] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9575), 1, + sym__declarator, + STATE(13027), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6093), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32721] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + ACTIONS(10757), 1, + anon_sym_STAR, + ACTIONS(10759), 1, + anon_sym_AMP_AMP, + ACTIONS(10761), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9959), 1, + sym__declarator, + STATE(11972), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4638), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6025), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [32841] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7497), 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(7495), 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, + [32911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7261), 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(7259), 40, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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, + [32979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6793), 40, + 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_COLON_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33047] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6997), 1, + anon_sym___attribute__, + ACTIONS(6999), 1, + anon_sym___attribute, + ACTIONS(7001), 1, + anon_sym_LBRACK_LBRACK, + STATE(2595), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5032), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 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(9222), 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_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, + [33125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7521), 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(7519), 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, + [33193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6811), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6813), 40, + 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_COLON_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6815), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6822), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [33329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 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_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(9008), 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, + [33397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6807), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6809), 40, + 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_COLON_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33465] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6997), 1, + anon_sym___attribute__, + ACTIONS(6999), 1, + anon_sym___attribute, + ACTIONS(7001), 1, + anon_sym_LBRACK_LBRACK, + STATE(2595), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5070), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 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(9226), 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_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, + [33543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 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(3118), 38, + anon_sym_DASH, + 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, + [33611] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10428), 1, + anon_sym_new, + ACTIONS(10763), 1, + anon_sym_delete, + ACTIONS(10107), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10105), 24, + 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, + ACTIONS(10103), 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, + [33687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6805), 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(6803), 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, + [33755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6829), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6831), 40, + 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_COLON_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [33823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6801), 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(6799), 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, + [33891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10767), 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(10765), 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, + [33959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7495), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7497), 40, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [34027] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10769), 1, + anon_sym_STAR, + ACTIONS(10771), 1, + anon_sym_AMP_AMP, + ACTIONS(10773), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10117), 1, + sym__declarator, + STATE(12191), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4630), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5869), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34147] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6981), 1, + anon_sym_requires, + ACTIONS(8664), 1, + anon_sym_DASH_GT, + STATE(3432), 1, + sym_trailing_return_type, + ACTIONS(6975), 2, + anon_sym_final, + anon_sym_override, + STATE(3628), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3849), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7474), 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, + [34227] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6981), 1, + anon_sym_requires, + ACTIONS(8728), 1, + anon_sym_DASH_GT, + STATE(3462), 1, + sym_trailing_return_type, + ACTIONS(6975), 2, + anon_sym_final, + anon_sym_override, + STATE(3628), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3975), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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(7623), 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, + [34307] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6981), 1, + anon_sym_requires, + ACTIONS(9250), 1, + anon_sym_DASH_GT, + STATE(3459), 1, + sym_trailing_return_type, + ACTIONS(6975), 2, + anon_sym_final, + anon_sym_override, + STATE(3628), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3850), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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(8287), 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, + [34387] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6981), 1, + anon_sym_requires, + ACTIONS(10775), 1, + anon_sym_DASH_GT, + STATE(3411), 1, + sym_trailing_return_type, + ACTIONS(6975), 2, + anon_sym_final, + anon_sym_override, + STATE(3628), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3905), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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(9338), 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, + [34467] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10778), 1, + anon_sym_delete, + ACTIONS(10780), 1, + anon_sym_new, + ACTIONS(10107), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10103), 23, + 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(10105), 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, + [34543] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8664), 1, + anon_sym_DASH_GT, + ACTIONS(8688), 1, + anon_sym_requires, + STATE(3439), 1, + sym_trailing_return_type, + ACTIONS(8685), 2, + anon_sym_final, + anon_sym_override, + STATE(3628), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3849), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7474), 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, + [34623] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8728), 1, + anon_sym_DASH_GT, + ACTIONS(8734), 1, + anon_sym_requires, + STATE(3444), 1, + sym_trailing_return_type, + ACTIONS(8731), 2, + anon_sym_final, + anon_sym_override, + STATE(3628), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3975), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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(7623), 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, + [34703] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9250), 1, + anon_sym_DASH_GT, + ACTIONS(9326), 1, + anon_sym_requires, + STATE(3449), 1, + sym_trailing_return_type, + ACTIONS(9323), 2, + anon_sym_final, + anon_sym_override, + STATE(3628), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3850), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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(8287), 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, + [34783] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10775), 1, + anon_sym_DASH_GT, + ACTIONS(10785), 1, + anon_sym_requires, + STATE(3450), 1, + sym_trailing_return_type, + ACTIONS(10782), 2, + anon_sym_final, + anon_sym_override, + STATE(3628), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3905), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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(9338), 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, + [34863] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_STAR, + ACTIONS(10707), 1, + anon_sym_AMP_AMP, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9842), 1, + sym__declarator, + STATE(12133), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4641), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6031), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [34983] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10788), 1, + anon_sym_template, + STATE(2358), 1, + sym_string_literal, + ACTIONS(10729), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10727), 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(10725), 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, + [35057] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9575), 1, + sym__declarator, + STATE(13027), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4626), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6093), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35177] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9612), 1, + sym__declarator, + STATE(13027), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6006), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6831), 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(6829), 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, + [35365] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9764), 1, + sym__declarator, + STATE(12896), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5943), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35485] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10769), 1, + anon_sym_STAR, + ACTIONS(10771), 1, + anon_sym_AMP_AMP, + ACTIONS(10773), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10122), 1, + sym__declarator, + STATE(12191), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4644), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6034), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35605] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10769), 1, + anon_sym_STAR, + ACTIONS(10771), 1, + anon_sym_AMP_AMP, + ACTIONS(10773), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10112), 1, + sym__declarator, + STATE(12191), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5874), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [35725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6822), 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(6815), 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, + [35793] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(10544), 1, + anon_sym_LT, + STATE(4702), 1, + sym_template_argument_list, + ACTIONS(7442), 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_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7447), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [35867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10792), 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(10790), 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, + [35935] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 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(3118), 40, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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, + [36003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 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(3196), 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, + [36071] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10794), 1, + anon_sym_template, + STATE(2349), 1, + sym_string_literal, + ACTIONS(10729), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10727), 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(10725), 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, + [36145] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9776), 1, + sym__declarator, + STATE(12896), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5956), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36265] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + ACTIONS(10757), 1, + anon_sym_STAR, + ACTIONS(10759), 1, + anon_sym_AMP_AMP, + ACTIONS(10761), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9936), 1, + sym__declarator, + STATE(11972), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6050), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36385] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6000), 1, + anon_sym_LPAREN2, + ACTIONS(6002), 1, + anon_sym_STAR, + ACTIONS(6004), 1, + anon_sym_AMP_AMP, + ACTIONS(6006), 1, + anon_sym_AMP, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6600), 1, + anon_sym_RPAREN, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(2649), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9408), 1, + sym__type_declarator, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10120), 1, + sym__abstract_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9121), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(9115), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36509] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10796), 1, + anon_sym_STAR, + ACTIONS(10798), 1, + anon_sym_AMP_AMP, + ACTIONS(10800), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10057), 1, + sym__declarator, + STATE(12242), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4649), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5891), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36629] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_STAR, + ACTIONS(10707), 1, + anon_sym_AMP_AMP, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9764), 1, + sym__declarator, + STATE(12133), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5844), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36749] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9764), 1, + anon_sym_LT, + STATE(3452), 1, + sym_template_argument_list, + ACTIONS(6781), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6774), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [36823] = 29, + 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9931), 1, + sym__declarator, + STATE(11956), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6045), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [36943] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10769), 1, + anon_sym_STAR, + ACTIONS(10771), 1, + anon_sym_AMP_AMP, + ACTIONS(10773), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10117), 1, + sym__declarator, + STATE(12191), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5869), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [37063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 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(7668), 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, + [37133] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10802), 1, + anon_sym_STAR, + ACTIONS(10804), 1, + anon_sym_AMP_AMP, + ACTIONS(10806), 1, + anon_sym_AMP, + ACTIONS(10808), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5804), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9580), 1, + sym__scope_resolution, + STATE(9974), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5994), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(4652), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5895), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5996), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [37253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9259), 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(9261), 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, + [37321] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10735), 1, + anon_sym_STAR, + ACTIONS(10737), 1, + anon_sym_AMP_AMP, + ACTIONS(10739), 1, + anon_sym_AMP, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9918), 1, + sym__declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5813), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [37441] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10796), 1, + anon_sym_STAR, + ACTIONS(10798), 1, + anon_sym_AMP_AMP, + ACTIONS(10800), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10000), 1, + sym__declarator, + STATE(12242), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5897), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [37561] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10796), 1, + anon_sym_STAR, + ACTIONS(10798), 1, + anon_sym_AMP_AMP, + ACTIONS(10800), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10057), 1, + sym__declarator, + STATE(12242), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5891), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [37681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10812), 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(10810), 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, + [37749] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10802), 1, + anon_sym_STAR, + ACTIONS(10804), 1, + anon_sym_AMP_AMP, + ACTIONS(10806), 1, + anon_sym_AMP, + ACTIONS(10808), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5804), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9580), 1, + sym__scope_resolution, + STATE(10014), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5898), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5970), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [37869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3317), 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(3312), 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, + [37937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10816), 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(10814), 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, + [38005] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10735), 1, + anon_sym_STAR, + ACTIONS(10737), 1, + anon_sym_AMP_AMP, + ACTIONS(10739), 1, + anon_sym_AMP, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9853), 1, + sym__declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4648), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6038), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [38125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9300), 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(9302), 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, + [38193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6829), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6831), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6803), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6805), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6799), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6801), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6807), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6809), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38465] = 29, + 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9936), 1, + sym__declarator, + STATE(11956), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4643), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6104), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [38585] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + STATE(3290), 1, + sym_template_argument_list, + STATE(4877), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10635), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7129), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7131), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [38661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6795), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6797), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6793), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6811), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6813), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 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_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(9031), 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, + [38933] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + ACTIONS(10822), 1, + anon_sym_LBRACE, + STATE(5296), 1, + sym_field_declaration_list, + STATE(6305), 1, + sym_attribute_specifier, + STATE(10677), 1, + sym_virtual_specifier, + STATE(11759), 1, + sym_base_class_clause, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7370), 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(7372), 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, + [39019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6809), 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(6807), 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, + [39087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9368), 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(9370), 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, + [39155] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10735), 1, + anon_sym_STAR, + ACTIONS(10737), 1, + anon_sym_AMP_AMP, + ACTIONS(10739), 1, + anon_sym_AMP, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9918), 1, + sym__declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4589), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5813), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [39275] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9596), 1, + sym__declarator, + STATE(13027), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4594), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5953), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [39395] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(10824), 1, + anon_sym_COLON, + STATE(4015), 1, + sym__enum_base_clause, + STATE(4109), 1, + sym_enumerator_list, + STATE(4197), 1, + sym_attribute_specifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7392), 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(7390), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [39475] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7497), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [39545] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(10824), 1, + anon_sym_COLON, + STATE(3985), 1, + sym__enum_base_clause, + STATE(4136), 1, + sym_enumerator_list, + STATE(4274), 1, + sym_attribute_specifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7415), 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(7413), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [39625] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + ACTIONS(10757), 1, + anon_sym_STAR, + ACTIONS(10759), 1, + anon_sym_AMP_AMP, + ACTIONS(10761), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9936), 1, + sym__declarator, + STATE(11972), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4684), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6050), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [39745] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7497), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [39815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6797), 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(6795), 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, + [39883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7497), 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(7495), 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, + [39951] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10826), 1, + anon_sym_LPAREN2, + ACTIONS(9372), 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(9374), 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_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, + [40021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 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_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(9099), 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, + [40089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7519), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7521), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [40157] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + STATE(3290), 1, + sym_template_argument_list, + STATE(4819), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10670), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7129), 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(7131), 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_GT_EQ, + anon_sym___attribute__, + 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, + [40233] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5968), 1, + anon_sym_RPAREN, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6000), 1, + anon_sym_LPAREN2, + ACTIONS(6002), 1, + anon_sym_STAR, + ACTIONS(6004), 1, + anon_sym_AMP_AMP, + ACTIONS(6006), 1, + anon_sym_AMP, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(2649), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9434), 1, + sym__type_declarator, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10106), 1, + sym__abstract_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9121), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2446), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(9115), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40357] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + ACTIONS(10757), 1, + anon_sym_STAR, + ACTIONS(10759), 1, + anon_sym_AMP_AMP, + ACTIONS(10761), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9931), 1, + sym__declarator, + STATE(11972), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6101), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40477] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7133), 1, + anon_sym_LPAREN2, + ACTIONS(7147), 1, + anon_sym_LBRACK, + ACTIONS(7609), 1, + anon_sym_STAR, + ACTIONS(7611), 1, + anon_sym_AMP_AMP, + ACTIONS(7613), 1, + anon_sym_AMP, + ACTIONS(7615), 1, + anon_sym_COLON_COLON, + STATE(2430), 1, + sym_parameter_list, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6061), 1, + sym__function_declarator_seq, + STATE(7341), 1, + sym__abstract_declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(9531), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(6060), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(7864), 16, + 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___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(7862), 17, + 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [40581] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10544), 1, + anon_sym_LT, + STATE(4481), 1, + sym_template_argument_list, + ACTIONS(7543), 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_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5689), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [40655] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10796), 1, + anon_sym_STAR, + ACTIONS(10798), 1, + anon_sym_AMP_AMP, + ACTIONS(10800), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10063), 1, + sym__declarator, + STATE(12242), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4650), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6041), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40775] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10743), 1, + anon_sym_STAR, + ACTIONS(10745), 1, + anon_sym_AMP_AMP, + ACTIONS(10747), 1, + anon_sym_AMP, + ACTIONS(10749), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5504), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9614), 1, + sym__scope_resolution, + STATE(10054), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4590), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5817), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5994), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(5996), 4, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [40895] = 29, + 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9959), 1, + sym__declarator, + STATE(11956), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4591), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5803), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [41015] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10428), 1, + anon_sym_new, + ACTIONS(10828), 1, + anon_sym_delete, + ACTIONS(10107), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10103), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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(10105), 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, + [41091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6803), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6805), 40, + 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_COLON_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [41159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6793), 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(6791), 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, + [41227] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7497), 39, + 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [41297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7497), 39, + 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [41367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7519), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7521), 40, + 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_COLON_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [41435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6815), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6822), 40, + 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_COLON_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [41503] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + ACTIONS(10834), 1, + anon_sym_LBRACE, + STATE(5467), 1, + sym_field_declaration_list, + STATE(6252), 1, + sym_attribute_specifier, + STATE(10711), 1, + sym_virtual_specifier, + STATE(11397), 1, + sym_base_class_clause, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7370), 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(7372), 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, + [41589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7812), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7810), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [41656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7828), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7826), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [41723] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(8462), 1, + anon_sym_LPAREN2, + STATE(6556), 1, + sym_argument_list, + STATE(8309), 1, + sym_initializer_list, + ACTIONS(7361), 18, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 36, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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, + [41800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7718), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [41867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7149), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7151), 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_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [41934] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4724), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10836), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7271), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [42005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7844), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7842), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [42072] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10668), 1, + anon_sym_LT, + STATE(4696), 1, + sym_template_argument_list, + ACTIONS(7543), 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___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5689), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + 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_final, + anon_sym_override, + anon_sym_requires, + [42145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7848), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7846), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [42212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9259), 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(9261), 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, + [42279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7808), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7806), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [42346] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_decltype, + ACTIONS(7670), 1, + anon_sym_LBRACE, + ACTIONS(10657), 1, + sym_auto, + STATE(4712), 1, + sym_decltype_auto, + ACTIONS(7361), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 33, + anon_sym_DASH, + 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_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, + 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_template, + [42421] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(8462), 1, + anon_sym_LPAREN2, + STATE(6413), 1, + sym_argument_list, + STATE(8213), 1, + sym_initializer_list, + ACTIONS(7361), 18, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 36, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_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_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, + 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, + [42498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9259), 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(9261), 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [42565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7852), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7850), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [42632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7737), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7735), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [42699] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(10633), 1, + anon_sym_LT, + STATE(4859), 1, + sym_template_argument_list, + ACTIONS(7442), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7447), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9300), 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(9302), 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, + [42839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7777), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7775), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [42906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 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(9031), 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, + [42973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7781), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7779), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [43040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7761), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7759), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [43107] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10838), 1, + anon_sym_LPAREN2, + ACTIONS(9372), 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(9374), 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, + [43176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7769), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7767), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [43243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9364), 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(9366), 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [43310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7718), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [43377] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2734), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7279), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7281), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [43448] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9639), 1, + anon_sym_STAR, + ACTIONS(9641), 1, + anon_sym_AMP_AMP, + ACTIONS(9643), 1, + anon_sym_AMP, + ACTIONS(9645), 1, + anon_sym_COLON_COLON, + ACTIONS(9651), 1, + anon_sym_LBRACK, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(4852), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9393), 1, + sym__abstract_declarator, + STATE(9561), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4737), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6604), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6606), 7, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [43559] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9300), 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(9302), 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [43626] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10842), 1, + anon_sym_STAR, + ACTIONS(10844), 1, + anon_sym_AMP_AMP, + ACTIONS(10846), 1, + anon_sym_AMP, + ACTIONS(10848), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5724), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9526), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10091), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4728), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6154), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5994), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5996), 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [43745] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10842), 1, + anon_sym_STAR, + ACTIONS(10844), 1, + anon_sym_AMP_AMP, + ACTIONS(10846), 1, + anon_sym_AMP, + ACTIONS(10848), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5724), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9526), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10094), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6155), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5968), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5970), 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [43864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7718), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [43931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7495), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7497), 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___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [43998] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(8920), 1, + anon_sym_COLON_COLON, + ACTIONS(10850), 1, + anon_sym_STAR, + ACTIONS(10852), 1, + anon_sym_AMP_AMP, + ACTIONS(10854), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5388), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9640), 1, + sym__scope_resolution, + STATE(10071), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(5996), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4735), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6159), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5994), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [44117] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2734), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7304), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7306), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [44188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9364), 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(9366), 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, + [44255] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6884), 1, + anon_sym_requires, + ACTIONS(8528), 1, + anon_sym_DASH_GT, + STATE(4919), 1, + sym_trailing_return_type, + ACTIONS(6878), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7474), 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, + [44334] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(8920), 1, + anon_sym_COLON_COLON, + ACTIONS(10850), 1, + anon_sym_STAR, + ACTIONS(10852), 1, + anon_sym_AMP_AMP, + ACTIONS(10854), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5388), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9640), 1, + sym__scope_resolution, + STATE(10072), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(5970), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6161), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5968), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [44453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 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(9099), 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, + [44520] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9639), 1, + anon_sym_STAR, + ACTIONS(9641), 1, + anon_sym_AMP_AMP, + ACTIONS(9643), 1, + anon_sym_AMP, + ACTIONS(9645), 1, + anon_sym_COLON_COLON, + ACTIONS(9651), 1, + anon_sym_LBRACK, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(4852), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9396), 1, + sym__abstract_declarator, + STATE(9561), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6616), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6618), 7, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [44631] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9732), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9639), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9641), 1, + anon_sym_AMP_AMP, + ACTIONS(9643), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9645), 1, + anon_sym_COLON_COLON, + ACTIONS(9651), 1, + anon_sym_LBRACK, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(4852), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9397), 1, + sym__abstract_declarator, + STATE(9561), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4755), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6608), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6610), 7, 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(9734), 34, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [44742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7765), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [71] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9736), 29, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7763), 37, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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_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, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -452034,66 +528572,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9738), 34, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [44809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7753), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9740), 29, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7751), 37, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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_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, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -452102,56 +528636,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9742), 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, - [213] = 5, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [44876] = 3, ACTIONS(3), 1, sym_comment, - STATE(4115), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7523), 25, + ACTIONS(7796), 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, @@ -452163,16 +528658,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_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7521), 35, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7794), 37, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452182,6 +528677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -452204,34 +528700,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - [288] = 6, + [44943] = 25, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9639), 1, + anon_sym_STAR, + ACTIONS(9641), 1, + anon_sym_AMP_AMP, + ACTIONS(9643), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(9645), 1, + anon_sym_COLON_COLON, + ACTIONS(9651), 1, + anon_sym_LBRACK, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(4852), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9398), 1, + sym__abstract_declarator, + STATE(9561), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(5968), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5970), 7, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, anon_sym_const, - anon_sym_DOT, - ACTIONS(7523), 49, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [45054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7745), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -452243,12 +528808,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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7743), 37, + anon_sym_DASH, + 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_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452262,58 +528842,78 @@ 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_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - anon_sym_COLON_RBRACK, - [365] = 7, + [45121] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9744), 1, - anon_sym_delete, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(9601), 3, - anon_sym_TILDE, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(7363), 1, + anon_sym_LPAREN2, + ACTIONS(7458), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, + STATE(4271), 1, + sym_argument_list, + STATE(6708), 1, + sym_initializer_list, + ACTIONS(7361), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 24, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 34, 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___extension__, anon_sym_LBRACK, - 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, @@ -452321,60 +528921,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 28, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [45198] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7205), 1, + anon_sym_decltype, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + sym_auto, + STATE(4553), 1, + sym_decltype_auto, + ACTIONS(7361), 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_SEMI, - anon_sym_RBRACE, + 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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [444] = 6, - 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, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 35, anon_sym_DASH, anon_sym_PLUS, anon_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___extension__, + 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, + 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, + anon_sym_template, + [45275] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7205), 1, + anon_sym_decltype, + ACTIONS(7670), 1, + anon_sym_LBRACE, + ACTIONS(10420), 1, + sym_auto, + STATE(4553), 1, + sym_decltype_auto, + ACTIONS(7361), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -452383,15 +529015,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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 35, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452405,27 +529052,19 @@ 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_requires, - anon_sym_COLON_RBRACK, - [521] = 3, + anon_sym_DOT, + sym_identifier, + anon_sym_template, + [45350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9006), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452439,13 +529078,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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -452453,24 +529086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9597), 34, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(9008), 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, @@ -452487,100 +529114,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, - anon_sym_COLON_RBRACK, - [592] = 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, + anon_sym_DASH_GT_STAR, + [45417] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(8493), 1, anon_sym_LPAREN2, - ACTIONS(6839), 1, - anon_sym_LBRACK, - ACTIONS(6923), 1, + STATE(6570), 1, + sym_argument_list, + STATE(8246), 1, + sym_initializer_list, + ACTIONS(7361), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, - ACTIONS(6925), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, 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, + anon_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_LBRACK_COLON, + ACTIONS(7359), 34, 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_EQ, + anon_sym___extension__, + 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, 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_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_xor, anon_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_DOT, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [45494] = 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(7773), 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, @@ -452592,16 +529211,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_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7431), 35, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7771), 37, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452611,6 +529230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -452633,25 +529253,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - [756] = 5, + [45561] = 8, ACTIONS(3), 1, sym_comment, - STATE(4122), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7533), 25, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(7363), 1, + anon_sym_LPAREN2, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + STATE(4288), 1, + sym_argument_list, + STATE(6698), 1, + sym_initializer_list, + ACTIONS(7361), 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, anon_sym_PIPE_PIPE, @@ -452662,16 +529284,15 @@ 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_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(7531), 35, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 34, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452681,6 +529302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -452703,14 +529325,19 @@ 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, - [831] = 3, + anon_sym_decltype, + anon_sym_template, + [45638] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 29, - aux_sym_preproc_elif_token1, + STATE(4732), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10856), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7290), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452724,38 +529351,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(4928), 34, + anon_sym_DASH_GT, + ACTIONS(7292), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -452768,33 +529382,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [902] = 3, + anon_sym_DASH_GT_STAR, + [45709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 27, + ACTIONS(7493), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7491), 37, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_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_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, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -452802,56 +529451,48 @@ 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [45776] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7227), 1, + anon_sym_decltype, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 1, + anon_sym_LBRACE, + ACTIONS(10657), 1, + sym_auto, + STATE(4712), 1, + sym_decltype_auto, + ACTIONS(7361), 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_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_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3246), 1, - sym_attribute_specifier, - ACTIONS(7431), 11, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 33, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452860,13 +529501,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym___extension__, + 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, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7433), 49, + sym_identifier, + anon_sym_template, + [45853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7836), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -452878,12 +529543,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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7834), 37, + anon_sym_DASH, + 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_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -452897,95 +529577,116 @@ 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_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - anon_sym_COLON_RBRACK, - [1050] = 3, + [45920] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9639), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9641), 1, + anon_sym_AMP_AMP, + ACTIONS(9643), 1, 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(9750), 34, - anon_sym_DOT_DOT_DOT, + ACTIONS(9645), 1, + anon_sym_COLON_COLON, + ACTIONS(9651), 1, + anon_sym_LBRACK, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(4852), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9399), 1, + sym__abstract_declarator, + STATE(9561), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6612), 7, anon_sym_COMMA, anon_sym_RPAREN, - aux_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, - [1121] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6614), 7, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [46031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 29, - aux_sym_preproc_elif_token1, + STATE(2734), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452999,38 +529700,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(5638), 34, + anon_sym_DASH_GT, + ACTIONS(7277), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453043,27 +529731,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [1192] = 5, + anon_sym_DASH_GT_STAR, + [46102] = 3, ACTIONS(3), 1, sym_comment, - STATE(4147), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7429), 25, + ACTIONS(7749), 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, @@ -453075,16 +529759,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_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7427), 35, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7747), 37, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453094,6 +529778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -453116,72 +529801,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - [1267] = 6, + [46169] = 3, 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, + ACTIONS(7824), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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_LBRACK_COLON, + ACTIONS(7822), 37, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_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_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, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -453189,12 +529864,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - [1344] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [46236] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6884), 1, + anon_sym_requires, + ACTIONS(9140), 1, + anon_sym_DASH_GT, + STATE(4872), 1, + sym_trailing_return_type, + ACTIONS(6878), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5450), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453208,38 +529902,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(5638), 34, + ACTIONS(8287), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453252,90 +529929,23 @@ 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_COLON_RBRACK, - [1415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9752), 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(9754), 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, - [1486] = 3, + anon_sym_DASH_GT_STAR, + [46315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 26, + ACTIONS(7712), 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, @@ -453347,8 +529957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -453356,8 +529965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7747), 37, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7710), 37, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453367,8 +529976,7 @@ 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_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -453391,14 +529999,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - [1557] = 3, + [46382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10858), 1, + anon_sym_LPAREN2, + ACTIONS(9372), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453408,43 +530019,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, + 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___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(9758), 34, + ACTIONS(9374), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453452,177 +530049,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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [1628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(9762), 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [1699] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [46451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 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(9766), 34, + ACTIONS(7800), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [1770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 29, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7798), 37, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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_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, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -453631,46 +530128,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9762), 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_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [46518] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(9639), 1, + anon_sym_STAR, + ACTIONS(9641), 1, 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, + ACTIONS(9643), 1, + anon_sym_AMP, + ACTIONS(9645), 1, + anon_sym_COLON_COLON, + ACTIONS(9651), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [1841] = 3, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(4852), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9400), 1, + sym__abstract_declarator, + STATE(9561), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6600), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6602), 7, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [46629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 29, - aux_sym_preproc_elif_token1, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7668), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453684,38 +530238,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, anon_sym_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, + anon_sym_DASH_GT, + ACTIONS(7670), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453728,85 +530270,31 @@ 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_COLON_RBRACK, - [1912] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(9762), 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, - [1983] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [46698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 29, - aux_sym_preproc_elif_token1, + STATE(2734), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -453820,38 +530308,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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, + anon_sym_DASH_GT, + ACTIONS(7302), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453864,90 +530339,44 @@ 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_COLON_RBRACK, - [2054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9768), 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(9770), 34, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [46769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7840), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [2125] = 6, - 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, + anon_sym_LBRACK_COLON, + ACTIONS(7838), 37, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453956,30 +530385,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7437), 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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453993,27 +530401,23 @@ 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_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - anon_sym_COLON_RBRACK, - [2202] = 3, + [46836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9061), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454027,39 +530431,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___attribute, - 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___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(9762), 34, + anon_sym_DASH_GT, + ACTIONS(9063), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -454072,16 +530461,42 @@ 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_DASH_GT, - anon_sym_COLON_RBRACK, - [2273] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [46903] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8528), 1, + anon_sym_DASH_GT, + ACTIONS(8576), 1, + anon_sym_requires, + STATE(4813), 1, + sym_trailing_return_type, + ACTIONS(8573), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454095,38 +530510,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(9774), 34, + ACTIONS(7474), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454139,34 +530537,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, - anon_sym_COLON_RBRACK, - [2344] = 7, + anon_sym_DASH_GT_STAR, + [46982] = 6, 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(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10860), 1, + anon_sym_LT, + STATE(4906), 1, + sym_template_argument_list, + ACTIONS(6774), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454177,20 +530568,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_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(8466), 26, + ACTIONS(6781), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454200,6 +530585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454213,91 +530600,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [2423] = 3, + [47055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(9764), 1, + anon_sym_LT, + STATE(5007), 1, + sym_template_argument_list, + ACTIONS(7447), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7442), 43, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, - ACTIONS(9780), 34, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [47128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7361), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [2494] = 7, - 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_LBRACK_COLON, + ACTIONS(7359), 37, + anon_sym_DASH, + 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_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -454310,63 +530731,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6889), 20, - aux_sym_preproc_elif_token1, + 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_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [47195] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4756), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10863), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7263), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(6891), 25, + anon_sym_DASH_GT, + ACTIONS(7265), 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_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [2573] = 3, + anon_sym_DASH_GT_STAR, + [47266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 26, + ACTIONS(7860), 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, @@ -454378,8 +530829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -454387,8 +530837,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7585), 37, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7858), 37, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -454398,8 +530848,7 @@ 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_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -454422,34 +530871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - [2644] = 6, + [47333] = 4, 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, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7361), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -454461,51 +530895,15 @@ 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [2721] = 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, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 37, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -454514,30 +530912,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, 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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -454551,100 +530928,46 @@ 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_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - anon_sym_COLON_RBRACK, - [2798] = 3, + [47402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 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(9790), 34, + ACTIONS(7261), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [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_LBRACK_COLON, + ACTIONS(7259), 37, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -454653,30 +530976,9 @@ static const uint16_t ts_small_parse_table[] = { 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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -454690,27 +530992,38 @@ 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_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - anon_sym_COLON_RBRACK, - [2946] = 3, + [47469] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8643), 1, + anon_sym_DASH_GT, + ACTIONS(8649), 1, + anon_sym_requires, + STATE(4814), 1, + sym_trailing_return_type, + ACTIONS(8646), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5426), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454724,38 +531037,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(9794), 34, + ACTIONS(7623), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454768,16 +531064,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, - [3017] = 3, + anon_sym_DASH_GT_STAR, + [47548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 27, + ACTIONS(7566), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454791,30 +531092,27 @@ 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_literal_suffix, - ACTIONS(8752), 36, + anon_sym_DASH_GT, + ACTIONS(7568), 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454827,25 +531125,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_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, - [3088] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [47615] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 27, + STATE(4782), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10865), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454859,30 +531163,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(8667), 36, + anon_sym_DASH_GT, + ACTIONS(7318), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454895,26 +531194,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_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_DASH_GT_STAR, + [47686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 29, - aux_sym_preproc_elif_token1, + STATE(4793), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10867), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454928,38 +531229,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(9798), 34, + anon_sym_DASH_GT, + ACTIONS(7324), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454972,89 +531260,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [3230] = 8, + anon_sym_DASH_GT_STAR, + [47757] = 9, 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(9140), 1, + anon_sym_DASH_GT, + ACTIONS(9146), 1, + anon_sym_requires, + STATE(4815), 1, + sym_trailing_return_type, + ACTIONS(9143), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5450), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7225), 46, + ACTIONS(8287), 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___extension__, - anon_sym___attribute__, - 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [3311] = 3, + anon_sym_DASH_GT_STAR, + [47836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 27, + ACTIONS(8998), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455068,12 +531358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -455081,17 +531366,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(8659), 36, + ACTIONS(9000), 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, @@ -455108,7 +531394,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, @@ -455119,10 +531404,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [3382] = 3, + anon_sym_DASH_GT_STAR, + [47903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 27, + STATE(2734), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455136,30 +531429,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(8699), 36, + anon_sym_DASH_GT, + ACTIONS(7298), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -455172,46 +531460,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [3453] = 6, + anon_sym_DASH_GT_STAR, + [47974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3187), 1, - sym_attribute_specifier, - ACTIONS(7413), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9764), 1, anon_sym_LT, + STATE(3452), 1, + sym_template_argument_list, + ACTIONS(5689), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7543), 43, + 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_DOT, - ACTIONS(7415), 49, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [48047] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -455220,15 +531552,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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(3118), 39, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455242,47 +531589,70 @@ 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_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - anon_sym_COLON_RBRACK, - [3530] = 3, + [48114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 29, - aux_sym_preproc_elif_token1, + ACTIONS(7757), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7755), 37, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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_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, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -455291,46 +531661,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9802), 34, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [48181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7804), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [3601] = 3, + anon_sym_LBRACK_COLON, + ACTIONS(7802), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [48248] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 29, - aux_sym_preproc_elif_token1, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(10668), 1, + anon_sym_LT, + STATE(4833), 1, + sym_template_argument_list, + ACTIONS(7442), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455341,42 +531750,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9806), 34, + ACTIONS(7447), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, 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_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455388,17 +531783,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_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, - [3672] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [48321] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6884), 1, + anon_sym_requires, + ACTIONS(10869), 1, + anon_sym_DASH_GT, + STATE(4888), 1, + sym_trailing_return_type, + ACTIONS(6878), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5459), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455412,38 +531829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(9810), 34, + ACTIONS(9338), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -455456,16 +531856,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, - [3743] = 3, + anon_sym_DASH_GT_STAR, + [48400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 22, + ACTIONS(3108), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -455479,8 +531884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -455488,7 +531892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(3128), 41, + anon_sym_LBRACK_COLON, + ACTIONS(3118), 37, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -455498,12 +531903,7 @@ 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -455518,7 +531918,6 @@ 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, @@ -455527,14 +531926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - [3814] = 3, + [48467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9368), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455544,43 +531944,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___attribute, - anon_sym_COLON, + 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___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(9814), 34, + ACTIONS(9370), 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455588,52 +531975,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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [3885] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [48534] = 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(7832), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7830), 37, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_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_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, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -455641,54 +532053,87 @@ 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [48601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7796), 22, 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_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [3964] = 9, - 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_LBRACK_COLON, + ACTIONS(7794), 37, + anon_sym_DASH, + 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_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, + 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, - 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_template, + anon_sym_requires, + [48668] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2734), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455702,13 +532147,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 35, + anon_sym_DASH_GT, + ACTIONS(7255), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -455718,9 +532164,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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -455740,15 +532185,97 @@ 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_COLON_RBRACK, - [4047] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [48739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7788), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7786), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [48806] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 29, - aux_sym_preproc_elif_token1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10872), 1, + anon_sym_LT, + ACTIONS(10876), 1, + sym_auto, + ACTIONS(10878), 1, + anon_sym_decltype, + STATE(4906), 1, + sym_template_argument_list, + STATE(5051), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6693), 1, + sym_decltype_auto, + ACTIONS(10874), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5661), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455759,41 +532286,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___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(9820), 34, + anon_sym_DASH_GT, + ACTIONS(5669), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -455807,16 +532315,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [4118] = 3, + anon_sym_DASH_GT_STAR, + [48889] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10869), 1, + anon_sym_DASH_GT, + ACTIONS(10883), 1, + anon_sym_requires, + STATE(4816), 1, + sym_trailing_return_type, + ACTIONS(10880), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5459), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455830,38 +532357,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(3488), 34, + ACTIONS(9338), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -455874,31 +532384,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, - [4189] = 9, + anon_sym_DASH_GT_STAR, + [48968] = 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(7495), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455912,26 +532412,26 @@ static const uint16_t ts_small_parse_table[] = { 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(7791), 35, + ACTIONS(7497), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455953,23 +532453,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [4272] = 5, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [49035] = 8, ACTIONS(3), 1, sym_comment, - STATE(4066), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7415), 25, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(8493), 1, + anon_sym_LPAREN2, + STATE(6427), 1, + sym_argument_list, + STATE(8180), 1, + sym_initializer_list, + ACTIONS(7361), 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, anon_sym_PIPE_PIPE, @@ -455980,16 +532485,15 @@ 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(7413), 35, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 34, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -455999,6 +532503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -456021,19 +532526,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, + anon_sym_decltype, + anon_sym_template, + [49112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10888), 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(10886), 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, + [49179] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10633), 1, + anon_sym_LT, + STATE(4602), 1, + sym_template_argument_list, + ACTIONS(7543), 21, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5689), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [4347] = 3, + [49252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7649), 26, + ACTIONS(7856), 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, @@ -456045,8 +532676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -456054,8 +532684,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7647), 37, - aux_sym_preproc_elif_token1, + anon_sym_LBRACK_COLON, + ACTIONS(7854), 37, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -456065,8 +532695,7 @@ 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_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -456089,13 +532718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - [4418] = 3, + [49319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 22, + ACTIONS(7261), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -456106,34 +532737,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON_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, - ACTIONS(7077), 41, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7259), 39, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_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_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -456148,7 +532774,6 @@ 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, @@ -456157,14 +532782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - [4489] = 3, + [49386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9319), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456174,43 +532800,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___attribute, - anon_sym_COLON, + 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___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(9824), 34, + ACTIONS(9321), 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456218,21 +532831,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_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_COLON_RBRACK, - [4560] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [49453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9368), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456246,39 +532868,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_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___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(9699), 34, + ACTIONS(9370), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_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___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456290,17 +532899,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [4631] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [49520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 29, - aux_sym_preproc_elif_token1, + ACTIONS(7816), 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_COLON_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(7814), 37, + anon_sym_DASH, + 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_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, + 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_requires, + [49587] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6884), 1, + anon_sym_requires, + ACTIONS(8643), 1, + anon_sym_DASH_GT, + STATE(4862), 1, + sym_trailing_return_type, + ACTIONS(6878), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5426), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456314,38 +533011,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(9828), 34, + ACTIONS(7623), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456358,17 +533038,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, - [4702] = 3, + anon_sym_DASH_GT_STAR, + [49666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9319), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456382,39 +533066,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_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___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(9832), 34, + ACTIONS(9321), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_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___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456426,31 +533097,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [4773] = 9, - 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, + anon_sym_requires, + [49733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7442), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456464,13 +533130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 35, + anon_sym_DASH_GT, + ACTIONS(7447), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456480,9 +533148,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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456505,12 +533173,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [4856] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [49800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 29, - aux_sym_preproc_elif_token1, + STATE(2734), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456524,38 +533201,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(9836), 34, + anon_sym_DASH_GT, + ACTIONS(7310), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456568,48 +533232,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_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, - [4927] = 6, + anon_sym_DASH_GT_STAR, + [49871] = 3, 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, + ACTIONS(8998), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -456617,39 +533264,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + sym_identifier, sym_literal_suffix, - ACTIONS(9118), 26, + ACTIONS(9000), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_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, + [49937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 29, - aux_sym_preproc_elif_token1, + ACTIONS(7566), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456663,39 +533323,27 @@ 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(9802), 34, + ACTIONS(7568), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -456707,31 +533355,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [5075] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [50003] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8426), 1, - anon_sym_DASH_GT, - ACTIONS(8461), 1, + ACTIONS(8576), 1, anon_sym_requires, - STATE(3077), 1, - sym_trailing_return_type, - ACTIONS(8458), 2, + ACTIONS(8573), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(5085), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3675), 2, + STATE(5368), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 19, + ACTIONS(7472), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456745,13 +533397,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 35, + anon_sym_DASH_GT, + ACTIONS(7474), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456761,9 +533413,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, @@ -456786,26 +533435,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [5158] = 9, + anon_sym_DASH_GT_STAR, + [50077] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9838), 1, - anon_sym_DASH_GT, - ACTIONS(9844), 1, + ACTIONS(8649), 1, anon_sym_requires, - STATE(3078), 1, - sym_trailing_return_type, - ACTIONS(9841), 2, + ACTIONS(8646), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(5085), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3687), 2, + STATE(5426), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 19, + ACTIONS(7621), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456819,13 +533464,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8907), 35, + anon_sym_DASH_GT, + ACTIONS(7623), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456835,9 +533480,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, @@ -456860,29 +533502,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [5241] = 7, + anon_sym_DASH_GT_STAR, + [50151] = 7, 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(9146), 1, + anon_sym_requires, + ACTIONS(9143), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5450), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456899,14 +533534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8406), 26, + ACTIONS(8287), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456928,16 +533559,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_STAR, - [5320] = 3, + [50225] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10883), 1, + anon_sym_requires, + ACTIONS(10880), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5459), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456951,38 +533598,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___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(9858), 34, + anon_sym_DASH_GT, + ACTIONS(9338), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456995,17 +533626,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, - [5391] = 3, + anon_sym_DASH_GT_STAR, + [50299] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10893), 1, + anon_sym_requires, + ACTIONS(10890), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457019,38 +533665,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___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(9862), 34, + anon_sym_DASH_GT, + ACTIONS(9269), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -457063,17 +533693,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_DASH_GT, - anon_sym_COLON_RBRACK, - [5462] = 3, + anon_sym_DASH_GT_STAR, + [50373] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 29, - aux_sym_preproc_elif_token1, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10896), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7304), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457087,39 +533728,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(9866), 34, + ACTIONS(7306), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457131,56 +533758,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [5533] = 5, + [50443] = 7, ACTIONS(3), 1, sym_comment, - STATE(4089), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7549), 25, + ACTIONS(6826), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(6822), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(6819), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_GT2, + ACTIONS(6817), 12, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_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(7547), 35, - aux_sym_preproc_elif_token1, + ACTIONS(6824), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(6815), 19, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -457196,90 +533832,216 @@ 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, + [50517] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10896), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 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_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(7310), 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_GT_EQ, + anon_sym___attribute__, + 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_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [5608] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [50587] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 26, + STATE(4822), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10898), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 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(7318), 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___attribute__, 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, - ACTIONS(7735), 37, - aux_sym_preproc_elif_token1, + [50657] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4823), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 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___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_xor, + anon_sym_DOT, + ACTIONS(7324), 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_GT_EQ, + anon_sym___attribute__, + 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_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [5679] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [50727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 29, - aux_sym_preproc_elif_token1, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10896), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457293,39 +534055,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(7298), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457337,31 +534085,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_DASH_GT, - anon_sym_COLON_RBRACK, - [5750] = 9, + [50797] = 5, 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, - 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, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10896), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457375,26 +534120,25 @@ static const uint16_t ts_small_parse_table[] = { 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(7966), 35, + ACTIONS(7255), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457416,82 +534160,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [5833] = 5, + anon_sym_DASH_GT, + [50867] = 5, ACTIONS(3), 1, sym_comment, - STATE(4128), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, + STATE(4828), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10902), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7263), 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, - ACTIONS(7553), 25, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7265), 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___attribute__, 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, - ACTIONS(7551), 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, - [5908] = 3, + [50937] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 29, - aux_sym_preproc_elif_token1, + STATE(4829), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10904), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457505,39 +534250,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(7271), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457549,17 +534280,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_DASH_GT, - anon_sym_COLON_RBRACK, - [5979] = 3, + [51007] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 29, - aux_sym_preproc_elif_token1, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10896), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457573,39 +534315,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(9878), 34, + ACTIONS(7302), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457617,17 +534345,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_DASH_GT, - anon_sym_COLON_RBRACK, - [6050] = 3, + [51077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 29, - aux_sym_preproc_elif_token1, + STATE(4817), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10906), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7290), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457641,39 +534380,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(9882), 34, + ACTIONS(7292), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457685,66 +534410,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [6121] = 12, + [51147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, - 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, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10896), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 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___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9427), 33, + ACTIONS(7277), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457767,12 +534486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [6210] = 3, + [51217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 29, - aux_sym_preproc_elif_token1, + STATE(4162), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10896), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7279), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457786,39 +534510,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___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(9886), 34, + ACTIONS(7281), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457830,17 +534540,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [6281] = 3, + [51287] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + ACTIONS(10912), 1, + anon_sym_LBRACE, + STATE(5949), 1, + sym_field_declaration_list, + STATE(6684), 1, + sym_attribute_specifier, + STATE(10570), 1, + sym_virtual_specifier, + STATE(11495), 1, + sym_base_class_clause, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7370), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457854,38 +534587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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(9890), 34, + anon_sym_DASH_GT, + ACTIONS(7372), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -457899,16 +534613,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [6352] = 3, + anon_sym_DASH_GT_STAR, + [51371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 29, - aux_sym_preproc_elif_token1, + ACTIONS(7442), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457922,39 +534640,27 @@ 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(9894), 34, + ACTIONS(7447), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -457966,17 +534672,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, - anon_sym_COLON_RBRACK, - [6423] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [51437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 29, - aux_sym_preproc_elif_token1, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7668), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457990,39 +534705,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, anon_sym_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(9898), 34, + ACTIONS(7670), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, 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_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458034,31 +534736,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_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, + anon_sym_requires, + [51505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7149), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458072,26 +534767,27 @@ 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(8422), 35, + ACTIONS(7151), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -458113,12 +534809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [6577] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [51571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9900), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6829), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458132,38 +534830,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___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(9902), 34, + anon_sym_DASH_GT, + ACTIONS(6831), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458177,171 +534861,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [6648] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [51637] = 3, ACTIONS(3), 1, sym_comment, - STATE(4132), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, + ACTIONS(6803), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(7399), 25, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6805), 40, anon_sym_DOT_DOT_DOT, anon_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___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7397), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_requires, - [6723] = 5, + anon_sym_DASH_GT_STAR, + [51703] = 3, ACTIONS(3), 1, sym_comment, - STATE(4141), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, + ACTIONS(6799), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(7507), 25, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6801), 40, anon_sym_DOT_DOT_DOT, anon_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___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_requires, - [6798] = 9, + anon_sym_DASH_GT_STAR, + [51769] = 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, - aux_sym_preproc_elif_token1, + ACTIONS(6807), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458355,31 +535019,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_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(7791), 28, + anon_sym_DASH_GT, + ACTIONS(6809), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458393,29 +535050,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [6881] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6508), 1, - anon_sym_requires, - ACTIONS(7991), 1, - anon_sym_DASH_GT, - STATE(3029), 1, - sym_trailing_return_type, - ACTIONS(6502), 2, + sym_auto, + anon_sym_decltype, 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), 26, - aux_sym_preproc_elif_token1, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [51835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6795), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458429,31 +535082,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_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(7966), 28, + anon_sym_DASH_GT, + ACTIONS(6797), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458467,29 +535113,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [6964] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6508), 1, - anon_sym_requires, - ACTIONS(8478), 1, - anon_sym_DASH_GT, - STATE(2973), 1, - sym_trailing_return_type, - ACTIONS(6502), 2, + sym_auto, + anon_sym_decltype, 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), 26, - aux_sym_preproc_elif_token1, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [51901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458503,31 +535145,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_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(8422), 28, + anon_sym_DASH_GT, + ACTIONS(6793), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458541,29 +535176,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7047] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6508), 1, - anon_sym_requires, - ACTIONS(9904), 1, - anon_sym_DASH_GT, - STATE(2977), 1, - sym_trailing_return_type, - ACTIONS(6502), 2, + sym_auto, + anon_sym_decltype, 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), 26, - aux_sym_preproc_elif_token1, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [51967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6811), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458577,31 +535208,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_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(8907), 28, + anon_sym_DASH_GT, + ACTIONS(6813), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458615,29 +535239,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7130] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [52033] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7799), 1, + ACTIONS(8619), 1, anon_sym_DASH_GT, - ACTIONS(7805), 1, + ACTIONS(8676), 1, anon_sym_requires, - STATE(3075), 1, + STATE(4930), 1, sym_trailing_return_type, - ACTIONS(7802), 2, + ACTIONS(8673), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(5151), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3628), 2, + STATE(5657), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 26, - aux_sym_preproc_elif_token1, + ACTIONS(7472), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458647,35 +535282,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7791), 28, + ACTIONS(7474), 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, @@ -458684,34 +535309,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7213] = 9, + anon_sym_GT2, + [52111] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7991), 1, + ACTIONS(8792), 1, anon_sym_DASH_GT, - ACTIONS(7997), 1, + ACTIONS(8813), 1, anon_sym_requires, - STATE(3076), 1, + STATE(4932), 1, sym_trailing_return_type, - ACTIONS(7994), 2, + ACTIONS(8810), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(5151), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3655), 2, + STATE(5572), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 26, - aux_sym_preproc_elif_token1, + ACTIONS(7621), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458721,35 +535351,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7966), 28, + ACTIONS(7623), 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, @@ -458758,34 +535378,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7296] = 9, + anon_sym_GT2, + [52189] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8478), 1, + ACTIONS(9283), 1, anon_sym_DASH_GT, - ACTIONS(8484), 1, + ACTIONS(9289), 1, anon_sym_requires, - STATE(3077), 1, + STATE(4933), 1, sym_trailing_return_type, - ACTIONS(8481), 2, + ACTIONS(9286), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(5151), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3675), 2, + STATE(5594), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 26, - aux_sym_preproc_elif_token1, + ACTIONS(8285), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458795,35 +535420,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(8422), 28, + ACTIONS(8287), 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, @@ -458832,34 +535447,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7379] = 9, + anon_sym_GT2, + [52267] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9018), 1, - anon_sym_requires, - ACTIONS(9904), 1, + ACTIONS(10914), 1, anon_sym_DASH_GT, - STATE(3078), 1, + ACTIONS(10920), 1, + anon_sym_requires, + STATE(4934), 1, sym_trailing_return_type, - ACTIONS(9015), 2, + ACTIONS(10917), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(5151), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3687), 2, + STATE(5608), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 26, - aux_sym_preproc_elif_token1, + ACTIONS(9336), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458869,35 +535489,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(8907), 28, + ACTIONS(9338), 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, @@ -458906,19 +535516,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7462] = 3, + anon_sym_GT2, + [52345] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9907), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8640), 1, + anon_sym_DASH_GT, + ACTIONS(8682), 1, + anon_sym_requires, + STATE(4955), 1, + sym_trailing_return_type, + ACTIONS(8679), 2, + anon_sym_final, + anon_sym_override, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5746), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -458932,39 +535562,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___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(9909), 34, + ACTIONS(7474), 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_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, @@ -458976,87 +535589,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [7533] = 5, + [52423] = 9, 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, + ACTIONS(8737), 1, 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, + ACTIONS(8819), 1, + anon_sym_requires, + STATE(4960), 1, + sym_trailing_return_type, + ACTIONS(8816), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [7608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9711), 29, - aux_sym_preproc_elif_token1, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5771), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459070,39 +535631,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___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(9713), 34, + ACTIONS(7623), 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_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, @@ -459114,31 +535658,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [7679] = 9, + [52501] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_requires, - ACTIONS(9838), 1, + ACTIONS(9304), 1, anon_sym_DASH_GT, - STATE(2977), 1, + ACTIONS(9310), 1, + anon_sym_requires, + STATE(4961), 1, sym_trailing_return_type, - ACTIONS(6561), 2, + ACTIONS(9307), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(5136), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3687), 2, + STATE(5778), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 19, + ACTIONS(8285), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459152,26 +535700,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(8907), 35, + ACTIONS(8287), 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_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, @@ -459193,12 +535737,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [7762] = 3, + [52579] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9911), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10923), 1, + anon_sym_DASH_GT, + ACTIONS(10929), 1, + anon_sym_requires, + STATE(4968), 1, + sym_trailing_return_type, + ACTIONS(10926), 2, + anon_sym_final, + anon_sym_override, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5780), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459212,39 +535769,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___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(9913), 34, + ACTIONS(9338), 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_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, @@ -459256,37 +535796,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, - [7833] = 3, + [52657] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9692), 1, + anon_sym_LT, + STATE(4196), 1, + sym_template_argument_list, + ACTIONS(7447), 2, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7451), 17, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___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, @@ -459294,84 +535834,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + ACTIONS(7442), 18, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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(9917), 34, + anon_sym_decltype, + anon_sym_template, + ACTIONS(7444), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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_COLON_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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [7904] = 12, + anon_sym_GT2, + [52731] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7499), 1, anon_sym_LPAREN2, - ACTIONS(6839), 1, + ACTIONS(7515), 1, anon_sym_LBRACK, - ACTIONS(6917), 1, + ACTIONS(7925), 1, anon_sym_STAR, - ACTIONS(6919), 1, + ACTIONS(7927), 1, anon_sym_AMP_AMP, - ACTIONS(6921), 1, + ACTIONS(7929), 1, anon_sym_AMP, - STATE(1946), 1, + ACTIONS(7931), 1, + anon_sym_COLON_COLON, + STATE(2460), 1, sym_parameter_list, - STATE(3626), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(7575), 1, sym__function_declarator_seq, - STATE(4523), 1, + STATE(7622), 1, sym__abstract_declarator, - STATE(3625), 5, + STATE(9224), 1, + sym_splice_specifier, + STATE(9608), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(7547), 6, 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, + sym_abstract_qualified_identifier, + ACTIONS(7864), 14, 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -459379,59 +535936,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9427), 26, + ACTIONS(7862), 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_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, + [52833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6822), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(6819), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_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(6826), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(6815), 19, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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, + [52903] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10938), 1, + anon_sym___attribute__, + ACTIONS(10941), 1, + anon_sym___attribute, + ACTIONS(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10960), 1, + anon_sym_requires, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(7447), 1, + sym__function_attributes_start, + STATE(8222), 1, + sym_ref_qualifier, + STATE(9019), 1, + sym_trailing_return_type, + STATE(9066), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10953), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8562), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 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(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [53023] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10938), 1, anon_sym___attribute__, + ACTIONS(10941), 1, anon_sym___attribute, + ACTIONS(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(7421), 1, + sym__function_attributes_start, + STATE(8211), 1, + sym_ref_qualifier, + STATE(9008), 1, + sym_trailing_return_type, + STATE(9056), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8564), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT2, + anon_sym_try, + ACTIONS(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [53143] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(5701), 1, + sym_auto, + ACTIONS(5703), 1, + anon_sym_decltype, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(10965), 1, + anon_sym_LBRACK, + STATE(3650), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4259), 1, + sym_decltype_auto, + STATE(6449), 1, + sym_template_argument_list, + ACTIONS(5686), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5691), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5669), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_COLON, + ACTIONS(5661), 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, + [53229] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 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, @@ -459440,7 +536294,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9921), 34, + sym_literal_suffix, + ACTIONS(9008), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459449,42 +536304,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_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, - [8064] = 6, + [53295] = 5, 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, + ACTIONS(6822), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(6826), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -459493,13 +536351,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, - anon_sym_const, + 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(7399), 49, + ACTIONS(6815), 19, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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, + ACTIONS(6819), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -459511,12 +536393,42 @@ 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_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, + [53365] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9574), 1, + anon_sym_LT, + STATE(4220), 1, + sym_template_argument_list, + ACTIONS(7447), 2, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7451), 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_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(7442), 18, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -459530,12 +536442,84 @@ 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, + ACTIONS(7444), 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_COLON_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [53439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7442), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(7447), 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_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -459544,69 +536528,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_COLON_RBRACK, - [8141] = 6, + [53505] = 3, 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(7149), 22, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7507), 49, + ACTIONS(7151), 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___attribute__, + anon_sym_COLON_COLON, 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -459615,52 +536591,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, - anon_sym_COLON_RBRACK, - [8218] = 5, + [53571] = 5, ACTIONS(3), 1, sym_comment, - STATE(4078), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, + ACTIONS(10968), 1, + anon_sym_LT, + STATE(2553), 1, + sym_template_argument_list, + ACTIONS(10094), 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___attribute, - ACTIONS(7437), 25, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10096), 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_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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___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, - ACTIONS(7435), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_COLON_RBRACK, + [53641] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(9820), 1, + anon_sym_STAR, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(9826), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5105), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9498), 1, + sym__abstract_declarator, + STATE(9669), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4863), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6604), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6606), 8, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -459674,24 +536743,21 @@ 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, - [8293] = 3, + [53751] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6884), 1, + anon_sym_requires, + ACTIONS(6878), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5450), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459705,38 +536771,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___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(9925), 34, + anon_sym_DASH_GT, + ACTIONS(8287), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459749,21 +536799,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [8364] = 5, + anon_sym_DASH_GT_STAR, + [53825] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(9820), 1, + anon_sym_STAR, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, + anon_sym_AMP, + ACTIONS(9826), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5105), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9477), 1, + sym__abstract_declarator, + STATE(9669), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6616), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6618), 8, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [53935] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(9820), 1, + anon_sym_STAR, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, + anon_sym_AMP, + ACTIONS(9826), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5105), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9479), 1, + sym__abstract_declarator, + STATE(9669), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4867), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6608), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6610), 8, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [54045] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(9820), 1, + anon_sym_STAR, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, + anon_sym_AMP, + ACTIONS(9826), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5105), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9488), 1, + sym__abstract_declarator, + STATE(9669), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(5970), 8, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [54155] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9927), 1, - anon_sym_LT, - STATE(3805), 1, - sym_template_argument_list, - ACTIONS(9711), 27, - aux_sym_preproc_elif_token1, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + ACTIONS(10971), 1, + anon_sym_COLON, + ACTIONS(10973), 1, + anon_sym_LBRACE, + STATE(5087), 1, + sym__enum_base_clause, + STATE(5208), 1, + sym_enumerator_list, + STATE(5928), 1, + sym_attribute_specifier, + ACTIONS(7413), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459774,39 +537093,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___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9713), 34, + anon_sym_DASH_GT, + ACTIONS(7415), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459819,84 +537124,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [8439] = 3, + anon_sym_DASH_GT_STAR, + [54235] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(9820), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, 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, + ACTIONS(9826), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5105), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9489), 1, + sym__abstract_declarator, + STATE(9669), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6614), 8, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [54345] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(9932), 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, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(9820), 1, + anon_sym_STAR, + ACTIONS(9822), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(9824), 1, + anon_sym_AMP, + ACTIONS(9826), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5105), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9510), 1, + sym__abstract_declarator, + STATE(9669), 1, + sym__scope_resolution, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 5, + anon_sym_COMMA, 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, - [8510] = 3, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6602), 8, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [54455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 27, + ACTIONS(7566), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459906,34 +537318,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8659), 36, + ACTIONS(7568), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459942,30 +537350,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + 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, - [8581] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [54521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 29, - aux_sym_preproc_elif_token1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + STATE(3290), 1, + sym_template_argument_list, + STATE(5051), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10874), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7129), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459979,38 +537396,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___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(9222), 34, + anon_sym_DASH_GT, + ACTIONS(7131), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460024,86 +537425,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [54595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10968), 1, + anon_sym_LT, + STATE(2537), 1, + sym_template_argument_list, + ACTIONS(10094), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460114,32 +537453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9936), 34, + ACTIONS(10096), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -460147,6 +537473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, anon_sym_LBRACK, @@ -460161,17 +537488,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [8798] = 3, + [54665] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6884), 1, + anon_sym_requires, + ACTIONS(6878), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5459), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460185,38 +537528,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___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(9940), 34, + anon_sym_DASH_GT, + ACTIONS(9338), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460229,54 +537556,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_DASH_GT, - anon_sym_COLON_RBRACK, - [8869] = 3, + anon_sym_DASH_GT_STAR, + [54739] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5996), 1, + anon_sym_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(6648), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6650), 1, 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, + ACTIONS(6652), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10124), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4875), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6477), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5994), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, 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, @@ -460289,81 +537656,60 @@ 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_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, + [54857] = 4, 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(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7668), 22, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7429), 49, + ACTIONS(7670), 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___attribute__, 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -460372,119 +537718,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_COLON_RBRACK, - [9017] = 3, + [54925] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5970), 1, + anon_sym_COLON, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(6648), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6650), 1, 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_PIPE, + ACTIONS(6652), 1, 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, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10106), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, 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, - [9088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7633), 26, - anon_sym_DOT_DOT_DOT, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6604), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5968), 4, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_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, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -460497,23 +537809,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_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, + [55043] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 27, + STATE(2851), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10975), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7304), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460523,34 +537829,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8752), 36, + ACTIONS(7306), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460559,30 +537859,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + 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, - [9230] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [55113] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 29, - aux_sym_preproc_elif_token1, + STATE(2851), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10975), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460592,42 +537894,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9944), 34, + ACTIONS(7310), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460636,21 +537924,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [9301] = 3, + anon_sym_GT2, + [55183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 29, - aux_sym_preproc_elif_token1, + STATE(4882), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10977), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460660,42 +537959,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9948), 34, + ACTIONS(7318), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460704,20 +537989,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [9372] = 3, + anon_sym_GT2, + [55253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 27, + STATE(4883), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10979), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460727,34 +538024,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8699), 36, + ACTIONS(7324), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460763,68 +538054,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + 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_DASH_GT, + anon_sym_GT2, + [55323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7719), 26, + ACTIONS(6831), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_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_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, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6829), 44, 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_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, @@ -460839,229 +538120,210 @@ 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, + 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, - [9514] = 6, + [55389] = 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(6929), 1, + anon_sym_requires, + ACTIONS(8619), 1, + anon_sym_DASH_GT, + STATE(4991), 1, + sym_trailing_return_type, + ACTIONS(6923), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5657), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7533), 49, + ACTIONS(7474), 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_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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, + anon_sym_GT2, + [55467] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 13, + STATE(2851), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10975), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 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_const, - anon_sym___asm, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7079), 49, + ACTIONS(7298), 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_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, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_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, - [9661] = 17, + anon_sym_GT2, + [55537] = 5, 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(6902), 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(6821), 10, + STATE(2851), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10975), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 21, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(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(6823), 21, + ACTIONS(7255), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -461069,10 +538331,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [9759] = 3, + [55607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 21, + STATE(4893), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10981), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7263), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461082,35 +538351,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_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(9762), 41, + ACTIONS(7265), 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___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, @@ -461118,7 +538381,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, @@ -461131,15 +538393,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_try, - [9829] = 3, + anon_sym_GT2, + [55677] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 28, + STATE(4894), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10983), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461154,21 +538421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_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, + ACTIONS(7271), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -461176,6 +538436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -461187,319 +538449,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [9899] = 17, + [55747] = 5, 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, + STATE(2851), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10975), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 21, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(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(7345), 23, + ACTIONS(7302), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + 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_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, 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_requires, - sym_this, - [10073] = 8, + anon_sym_GT2, + [55817] = 5, 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(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_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(7459), 31, + STATE(4876), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10985), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7290), 21, 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, - [10153] = 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(6812), 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(7353), 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_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(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(7355), 21, + ACTIONS(7292), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -461507,80 +538591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [10251] = 6, + [55887] = 7, 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, + ACTIONS(6884), 1, anon_sym_requires, - sym_this, - [10327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8697), 28, + ACTIONS(6878), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5460), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461590,33 +538615,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_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(8699), 34, + anon_sym_DASH_GT, + ACTIONS(9269), 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, @@ -461625,69 +538643,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_LT_EQ_GT, + anon_sym_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, - [10397] = 8, + anon_sym_DASH_GT_STAR, + [55961] = 3, 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, - anon_sym_DASH, - 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(6944), 44, + ACTIONS(6805), 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(6803), 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_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, @@ -461701,70 +538709,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [10477] = 12, + [56027] = 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(7237), 40, + ACTIONS(6801), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6799), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -461778,63 +538772,55 @@ 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_GT2, + 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, - [10565] = 4, + [56093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7225), 26, + ACTIONS(6809), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_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_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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6807), 44, 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_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, @@ -461849,315 +538835,233 @@ 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, + 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, - [10637] = 7, + [56159] = 9, 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, - 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, + ACTIONS(6929), 1, + anon_sym_requires, + ACTIONS(8792), 1, anon_sym_DASH_GT, - ACTIONS(9599), 26, + STATE(4998), 1, + sym_trailing_return_type, + ACTIONS(6923), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5572), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - 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, - [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, + ACTIONS(7623), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + 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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, + anon_sym_GT2, + [56237] = 5, 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, + STATE(2851), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10975), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 21, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6944), 42, + ACTIONS(7277), 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_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, - [10893] = 6, + [56307] = 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(2851), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10975), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7279), 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_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(6572), 46, + ACTIONS(7281), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [10969] = 3, + [56377] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 21, + ACTIONS(7077), 1, + anon_sym___attribute__, + ACTIONS(7079), 1, + anon_sym___attribute, + ACTIONS(7081), 1, + anon_sym_LBRACK_LBRACK, + STATE(2781), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462171,15 +539075,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(9762), 41, + anon_sym_DASH_GT, + ACTIONS(9222), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462189,13 +539089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -462207,68 +539100,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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_try, - [11039] = 17, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [56453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, + ACTIONS(7493), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8616), 1, - anon_sym_LBRACK, - ACTIONS(8618), 1, - anon_sym_const, - ACTIONS(8958), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8960), 1, anon_sym_AMP_AMP, - ACTIONS(8962), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7491), 47, anon_sym_AMP, - STATE(2249), 1, - sym_parameter_list, - STATE(3945), 1, - sym_alignas_qualifier, - STATE(6709), 1, - sym__function_declarator_seq, - STATE(6737), 1, - sym__abstract_declarator, - ACTIONS(8620), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3981), 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(7393), 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(8608), 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, @@ -462280,73 +539163,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7391), 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_explicit, + anon_sym_template, + anon_sym_operator, + [56519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6797), 14, 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_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, - [11137] = 7, + anon_sym_LBRACK_COLON, + ACTIONS(6795), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [56585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6871), 1, - anon_sym_decltype, - ACTIONS(7457), 1, + ACTIONS(6793), 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, - ACTIONS(9443), 1, - sym_auto, - STATE(3215), 1, - sym_decltype_auto, - ACTIONS(7223), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6791), 44, 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_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_DOT, - ACTIONS(7225), 46, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [56651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6813), 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(6811), 44, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, @@ -462360,23 +539354,37 @@ 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_COLON_RBRACK, - [11215] = 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [56717] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 21, + ACTIONS(6929), 1, + anon_sym_requires, + ACTIONS(9283), 1, + anon_sym_DASH_GT, + STATE(4999), 1, + sym_trailing_return_type, + ACTIONS(6923), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5594), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462386,35 +539394,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(9762), 41, + ACTIONS(8287), 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_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, @@ -462422,7 +539421,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, @@ -462435,148 +539433,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [11285] = 24, + anon_sym_GT2, + [56795] = 9, 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, + ACTIONS(6929), 1, anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_AMP_AMP, - ACTIONS(9984), 1, - anon_sym_AMP, - ACTIONS(9987), 1, + ACTIONS(10914), 1, anon_sym_DASH_GT, - STATE(4085), 1, - sym_ref_qualifier, - STATE(6274), 1, - sym__function_attributes_end, - STATE(6299), 1, + STATE(5002), 1, sym_trailing_return_type, - STATE(9096), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7829), 2, + ACTIONS(6923), 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, + STATE(5151), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6697), 2, + STATE(5608), 2, sym__function_postfix, sym_requires_clause, - STATE(4608), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 11, + ACTIONS(9336), 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_xor, anon_sym_DOT, - ACTIONS(7791), 22, + ACTIONS(9338), 29, 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_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_or, - anon_sym_and, anon_sym_bitor, - 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, - [11397] = 3, + [56873] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7108), 13, + ACTIONS(7077), 1, + anon_sym___attribute__, + ACTIONS(7079), 1, + anon_sym___attribute, + ACTIONS(7081), 1, + anon_sym_LBRACK_LBRACK, + STATE(2781), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5406), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7110), 49, + anon_sym_DASH_GT, + ACTIONS(9226), 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___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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, @@ -462586,63 +539567,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_noexcept, - anon_sym_throw, anon_sym_requires, - [11467] = 3, + anon_sym_DASH_GT_STAR, + [56949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7108), 15, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 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_LBRACK, - anon_sym_const, - anon_sym___asm, + anon_sym_COLON, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7110), 47, + anon_sym_DASH_GT, + ACTIONS(7497), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_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_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, @@ -462652,170 +539629,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [11537] = 12, + anon_sym_DASH_GT_STAR, + [57017] = 4, 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, + ACTIONS(7458), 1, 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, - 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(7495), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7791), 24, + anon_sym_DASH_GT, + ACTIONS(7497), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -462826,75 +539694,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [11737] = 17, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [57085] = 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(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, + ACTIONS(7519), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, 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, + anon_sym_DASH_GT, + ACTIONS(7521), 40, 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -462905,12 +539757,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, - anon_sym_GT2, - [11835] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [57151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 26, + ACTIONS(6815), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462924,20 +539780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_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(8699), 36, + ACTIONS(6822), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462947,6 +539795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -462960,121 +539811,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [11905] = 6, + [57217] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(9950), 1, - anon_sym_LT, - STATE(4214), 1, - sym_template_argument_list, - ACTIONS(5657), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, + ACTIONS(5689), 1, 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(7371), 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, + ACTIONS(5701), 1, + sym_auto, + ACTIONS(5703), 1, anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [11981] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - STATE(3735), 1, + STATE(3452), 1, sym_template_argument_list, - STATE(4270), 1, + STATE(3650), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5659), 4, + STATE(4259), 1, + sym_decltype_auto, + ACTIONS(5691), 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, + ACTIONS(5669), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7357), 41, + ACTIONS(5661), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -463113,71 +539896,30 @@ 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, - [12061] = 17, + [57301] = 9, 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(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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(9692), 1, anon_sym_LT, - anon_sym_GT_GT, - 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, + STATE(4196), 1, + sym_template_argument_list, + ACTIONS(7447), 2, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7451), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(7444), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_GT2, + ACTIONS(7454), 12, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -463186,53 +539928,11 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12159] = 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(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(7449), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -463240,11 +539940,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_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(8608), 12, + ACTIONS(7442), 18, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463256,38 +539962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - 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, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [12257] = 6, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [57379] = 3, 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, + ACTIONS(9029), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -463295,13 +539979,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym___attribute, + anon_sym_LT, anon_sym_COLON, - 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(6572), 48, + sym_identifier, + sym_literal_suffix, + ACTIONS(9031), 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, @@ -463313,45 +540009,32 @@ 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_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [12333] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_COLON_RBRACK, + [57445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7132), 13, + ACTIONS(9097), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -463359,15 +540042,25 @@ 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_LBRACK, - anon_sym_const, - anon_sym___asm, + 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(7134), 49, + sym_identifier, + sym_literal_suffix, + ACTIONS(9099), 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, @@ -463379,113 +540072,111 @@ 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_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_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_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, - [12403] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_COLON_RBRACK, + [57511] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7158), 13, + ACTIONS(7045), 1, + anon_sym_requires, + ACTIONS(8640), 1, + anon_sym_DASH_GT, + STATE(5019), 1, + sym_trailing_return_type, + ACTIONS(7043), 2, + anon_sym_final, + anon_sym_override, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5746), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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_LBRACK, - anon_sym_const, - anon_sym___asm, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7160), 49, + ACTIONS(7474), 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + 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_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, - [12473] = 3, + [57589] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 26, + ACTIONS(6884), 1, + anon_sym_requires, + ACTIONS(6878), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5368), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463500,19 +540191,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8659), 36, + ACTIONS(7474), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -463534,92 +540218,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + 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, - [12543] = 3, + [57663] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 15, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + ACTIONS(10971), 1, + anon_sym_COLON, + ACTIONS(10973), 1, + anon_sym_LBRACE, + STATE(5073), 1, + sym__enum_base_clause, + STATE(5188), 1, + sym_enumerator_list, + STATE(5882), 1, + sym_attribute_specifier, + ACTIONS(7390), 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_LBRACK, - anon_sym_const, - anon_sym___asm, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(3118), 47, + anon_sym_DASH_GT, + ACTIONS(7392), 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___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_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_or, - anon_sym_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_STAR, + [57743] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7045), 1, + anon_sym_requires, + ACTIONS(8737), 1, anon_sym_DASH_GT, + STATE(5020), 1, + sym_trailing_return_type, + ACTIONS(7043), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [12613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8704), 22, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5771), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463633,27 +540331,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, - anon_sym_DASH_GT, - ACTIONS(8706), 40, + ACTIONS(7623), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -463674,22 +540367,28 @@ 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, - [12683] = 3, + [57821] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 26, + ACTIONS(10987), 1, + anon_sym_delete, + ACTIONS(10989), 1, + anon_sym_new, + ACTIONS(10107), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10105), 22, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -463700,10 +540399,8 @@ 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, @@ -463712,8 +540409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8752), 36, + ACTIONS(10103), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -463723,7 +540419,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, @@ -463739,155 +540434,241 @@ 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, - [12753] = 3, + [57895] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 15, + ACTIONS(7045), 1, + anon_sym_requires, + ACTIONS(9304), 1, + anon_sym_DASH_GT, + STATE(5021), 1, + sym_trailing_return_type, + ACTIONS(7043), 2, + anon_sym_final, + anon_sym_override, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5778), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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_LBRACK, - anon_sym_const, - anon_sym___asm, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7079), 47, + ACTIONS(8287), 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___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_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_or, - anon_sym_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, + [57973] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7045), 1, + anon_sym_requires, + ACTIONS(10923), 1, anon_sym_DASH_GT, + STATE(5024), 1, + sym_trailing_return_type, + ACTIONS(7043), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [12823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7081), 15, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5780), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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_LBRACK, - anon_sym_const, - anon_sym___asm, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7083), 47, + ACTIONS(9338), 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, + [58051] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7523), 1, + anon_sym_LPAREN2, + ACTIONS(7539), 1, + anon_sym_LBRACK, + ACTIONS(7915), 1, anon_sym_STAR, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_AMP, + ACTIONS(7921), 1, + anon_sym_COLON_COLON, + STATE(2449), 1, + sym_parameter_list, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(7567), 1, + sym__function_declarator_seq, + STATE(7625), 1, + sym__abstract_declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(9637), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(7555), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(7862), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PERCENT, anon_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(7864), 16, + 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_or, anon_sym_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, - [12893] = 3, + anon_sym_DOT, + [58153] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 21, + ACTIONS(6884), 1, + anon_sym_requires, + ACTIONS(6878), 2, + anon_sym_final, + anon_sym_override, + STATE(5085), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5426), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463901,15 +540682,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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(9762), 41, + anon_sym_DASH_GT, + ACTIONS(7623), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -463919,13 +540698,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, @@ -463946,68 +540719,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [12963] = 9, + anon_sym_DASH_GT_STAR, + [58227] = 3, 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, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8000), 26, + ACTIONS(9061), 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___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, - ACTIONS(8002), 29, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + ACTIONS(9063), 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, + [58293] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10995), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10997), 1, + anon_sym_AMP_AMP, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11015), 1, + anon_sym_or, + ACTIONS(11017), 1, + anon_sym_and, + ACTIONS(11019), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10999), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10105), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(10103), 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, @@ -464019,29 +540868,197 @@ 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, - [13045] = 9, + [58402] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5996), 1, + anon_sym_try, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11021), 1, + anon_sym_STAR, + ACTIONS(11023), 1, + anon_sym_AMP_AMP, + ACTIONS(11025), 1, + anon_sym_AMP, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5281), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9654), 1, + sym__scope_resolution, + STATE(10152), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4923), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6740), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5994), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [58519] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7385), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5970), 1, + anon_sym_try, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11021), 1, + anon_sym_STAR, + ACTIONS(11023), 1, + anon_sym_AMP_AMP, + ACTIONS(11025), 1, + anon_sym_AMP, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5281), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9654), 1, + sym__scope_resolution, + STATE(10161), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6748), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5968), 3, + anon_sym_SEMI, 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, + anon_sym_EQ, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [58636] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8676), 1, + anon_sym_requires, + ACTIONS(8673), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5657), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464051,35 +541068,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(8008), 29, + ACTIONS(7474), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -464088,55 +541095,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [13127] = 5, + anon_sym_GT2, + [58709] = 12, 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11029), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7729), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7372), 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(7370), 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, @@ -464150,64 +541177,63 @@ 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, - [13201] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [58792] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7475), 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, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11031), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 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_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_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7370), 39, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -464222,21 +541248,20 @@ 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, - [13271] = 3, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [58875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 26, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(10872), 1, + anon_sym_LT, + STATE(4906), 1, + sym_template_argument_list, + ACTIONS(7543), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464247,23 +541272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - anon_sym_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(8667), 36, + ACTIONS(5689), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -464273,6 +541289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -464286,68 +541304,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [13341] = 12, + [58946] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11033), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 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(7370), 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, + [59029] = 5, 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, + ACTIONS(6867), 1, + anon_sym_LBRACK_LBRACK, + STATE(4958), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 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(9427), 32, + ACTIONS(9226), 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, @@ -464376,10 +541452,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [13429] = 3, + [59098] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 28, + ACTIONS(8813), 1, + anon_sym_requires, + ACTIONS(8810), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5572), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464396,19 +541483,11 @@ 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, - sym_identifier, - sym_literal_suffix, - ACTIONS(8752), 34, + ACTIONS(7623), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464427,26 +541506,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, + [59171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11037), 26, + 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_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [13499] = 3, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(11035), 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, + [59236] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 28, + ACTIONS(9289), 1, + anon_sym_requires, + ACTIONS(9286), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5594), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464463,19 +541611,11 @@ 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, - sym_identifier, - sym_literal_suffix, - ACTIONS(8667), 34, + ACTIONS(8287), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464494,190 +541634,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [13569] = 24, + [59309] = 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(7899), 1, - anon_sym_noexcept, - ACTIONS(7901), 1, - anon_sym_throw, - ACTIONS(10011), 1, - anon_sym_AMP_AMP, - ACTIONS(10014), 1, - anon_sym_AMP, - ACTIONS(10017), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, + ACTIONS(10920), 1, anon_sym_requires, - STATE(4094), 1, - sym_ref_qualifier, - 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, + ACTIONS(10917), 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(5151), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6622), 2, + STATE(5608), 2, sym__function_postfix, sym_requires_clause, - STATE(4584), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 9, + ACTIONS(9336), 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_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_xor, anon_sym_DOT, - ACTIONS(7791), 24, + ACTIONS(9338), 30, 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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [13681] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10030), 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(4031), 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(10028), 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_DASH_GT, 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(10026), 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, + [59382] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 26, + ACTIONS(11042), 1, + anon_sym_requires, + ACTIONS(11039), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464687,24 +541736,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_identifier, - sym_literal_suffix, - ACTIONS(8752), 36, + ACTIONS(9269), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464712,9 +541755,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, @@ -464722,272 +541763,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [13839] = 5, + anon_sym_GT2, + [59455] = 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(8682), 1, + anon_sym_requires, + ACTIONS(8679), 2, + anon_sym_final, + anon_sym_override, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5746), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7225), 44, + ACTIONS(7474), 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, - [13913] = 3, + [59528] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7132), 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, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(7134), 47, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10995), 1, anon_sym_PIPE_PIPE, + ACTIONS(10997), 1, 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, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, + ACTIONS(11015), 1, anon_sym_or, + ACTIONS(11017), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, 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, - 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(7675), 13, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10999), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, 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(7677), 44, + ACTIONS(11045), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(11047), 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, + [59637] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10995), 1, anon_sym_PIPE_PIPE, + ACTIONS(10997), 1, 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, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, + ACTIONS(11015), 1, anon_sym_or, + ACTIONS(11017), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11051), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [14057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8665), 26, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10999), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10337), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8667), 36, - anon_sym_DOT_DOT_DOT, + ACTIONS(10339), 15, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -464998,335 +542014,314 @@ 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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, + [59750] = 23, 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(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, + ACTIONS(9662), 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, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(10050), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10997), 1, + anon_sym_AMP_AMP, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, - anon_sym_or, + ACTIONS(11017), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [14201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7158), 15, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10999), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, 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(7160), 47, + ACTIONS(10066), 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(10068), 18, 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_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [59855] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7081), 13, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10999), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, 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(7083), 49, + ACTIONS(10066), 8, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + sym_identifier, + ACTIONS(10068), 19, 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___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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [59956] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [14341] = 5, - 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(7681), 13, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(11001), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, 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(7683), 44, + ACTIONS(10066), 10, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + sym_identifier, + ACTIONS(10068), 19, 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_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, + [60055] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [14415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 21, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11003), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11007), 3, 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(10066), 12, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(9762), 41, + sym_identifier, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_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, @@ -465338,138 +542333,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [14485] = 12, + [60152] = 18, 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, + ACTIONS(9662), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - 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(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, + ACTIONS(10050), 1, anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [14573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 21, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11019), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11007), 3, 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(10066), 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___asm, - anon_sym_DOT, - ACTIONS(9762), 41, + anon_sym_bitand, + sym_identifier, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_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, @@ -465481,106 +542410,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, + [60247] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [14643] = 5, - 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(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(11007), 3, 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(7557), 44, + ACTIONS(10066), 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(10068), 21, 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_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, + [60338] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11013), 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, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [14717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8657), 26, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 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, @@ -465591,20 +542534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8659), 36, + ACTIONS(10068), 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_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, @@ -465616,370 +542558,166 @@ 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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [14787] = 5, + [60425] = 25, 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(7785), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9662), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10995), 1, anon_sym_PIPE_PIPE, + ACTIONS(10997), 1, 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, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, + ACTIONS(11015), 1, anon_sym_or, + ACTIONS(11017), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [14861] = 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(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(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10999), 2, 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(7351), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(11011), 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, - 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, + ACTIONS(10993), 3, 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_PERCENT, + ACTIONS(11007), 3, 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(7343), 23, + ACTIONS(11053), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(11055), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [60534] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10995), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10997), 1, + anon_sym_AMP_AMP, + ACTIONS(11009), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, + ACTIONS(11015), 1, anon_sym_or, + ACTIONS(11017), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11051), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15057] = 12, - 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, - 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(10044), 13, - anon_sym_AMP, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(10048), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [15145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8697), 26, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10999), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(11057), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8699), 36, - anon_sym_DOT_DOT_DOT, + ACTIONS(11059), 15, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -465990,130 +542728,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_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, - [15215] = 3, + [60647] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 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, - anon_sym___attribute, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(3118), 49, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10995), 1, anon_sym_PIPE_PIPE, + ACTIONS(10997), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(11009), 1, 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, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, + ACTIONS(11015), 1, anon_sym_or, + ACTIONS(11017), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [15285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9915), 21, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10999), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, 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(11061), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(9917), 41, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(11063), 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_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + 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, @@ -466125,263 +542812,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, + [60756] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 1, - anon_sym_const, - ACTIONS(8572), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(8588), 1, + ACTIONS(10050), 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(6749), 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(7353), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10052), 1, 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(7355), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PERCENT, + ACTIONS(10995), 1, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10997), 1, + anon_sym_AMP_AMP, + ACTIONS(11009), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, + ACTIONS(11015), 1, anon_sym_or, + ACTIONS(11017), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11051), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, 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, - 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(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10999), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, 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(7725), 44, - anon_sym_DOT_DOT_DOT, + ACTIONS(11065), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(11067), 15, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_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, - [15613] = 12, + 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, + [60869] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9994), 1, + ACTIONS(10542), 1, anon_sym_virtual, - STATE(4722), 1, + ACTIONS(11069), 1, + anon_sym_SEMI, + STATE(4094), 1, sym_alignas_qualifier, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4024), 7, + ACTIONS(10540), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(4397), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -466389,7 +542932,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(8591), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -466398,416 +542941,145 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(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, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - anon_sym_requires, - [15789] = 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(6815), 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, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7393), 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(7391), 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, - [15887] = 24, + anon_sym___thread, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(10538), 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, + [60954] = 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, + ACTIONS(6867), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7831), 1, - anon_sym_noexcept, - ACTIONS(7833), 1, - anon_sym_throw, - ACTIONS(9981), 1, - anon_sym_AMP_AMP, - ACTIONS(9984), 1, - anon_sym_AMP, - ACTIONS(9987), 1, - anon_sym_DASH_GT, - ACTIONS(10082), 1, - anon_sym_requires, - STATE(4138), 1, - sym_ref_qualifier, - 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, + STATE(4958), 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), 11, + ACTIONS(9220), 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_DOT, - ACTIONS(7791), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_GT2, - [15999] = 5, - 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(7693), 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(7695), 44, + anon_sym_DASH_GT, + ACTIONS(9222), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [16073] = 5, + anon_sym_DASH_GT_STAR, + [61023] = 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(9259), 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_LBRACK, + anon_sym_EQ, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7699), 44, + anon_sym_DASH_GT, + ACTIONS(9261), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_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, @@ -466817,66 +543089,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_requires, - [16147] = 5, + anon_sym_DASH_GT_STAR, + [61088] = 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(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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7703), 44, + anon_sym_DASH_GT, + ACTIONS(9302), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_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, @@ -466886,52 +543151,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [16221] = 5, + anon_sym_DASH_GT_STAR, + [61153] = 12, 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11071), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7709), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7372), 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(7370), 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, @@ -466945,62 +543225,64 @@ 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, - [16295] = 5, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [61236] = 12, 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - 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(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11073), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7715), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7372), 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(7370), 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, @@ -467014,443 +543296,253 @@ 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, - [16369] = 24, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [61319] = 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, + ACTIONS(8819), 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, + ACTIONS(8816), 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(5136), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5460), 2, + STATE(5771), 2, sym__function_postfix, sym_requires_clause, - STATE(4550), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 9, + ACTIONS(7621), 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_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_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, - [16481] = 24, - 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7791), 24, + ACTIONS(7623), 32, 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_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, - [16593] = 21, + anon_sym_DASH_GT, + [61392] = 25, 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, - 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_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, anon_sym_LBRACK, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(7791), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10995), 1, anon_sym_PIPE_PIPE, + ACTIONS(10997), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(11009), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_QMARK, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, + ACTIONS(11015), 1, anon_sym_or, + ACTIONS(11017), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [16698] = 7, - 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, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10999), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, 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, + ACTIONS(11075), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(11077), 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, + [61501] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10995), 1, anon_sym_PIPE_PIPE, + ACTIONS(10997), 1, 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, + ACTIONS(11009), 1, + anon_sym_GT_EQ, + ACTIONS(11013), 1, anon_sym_LT_EQ_GT, + ACTIONS(11015), 1, anon_sym_or, + ACTIONS(11017), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(11019), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [16775] = 21, - 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, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10999), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(11001), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11003), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(11005), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11007), 3, 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), 23, + ACTIONS(11079), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(11081), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - 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, - [16880] = 4, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [61610] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 22, + ACTIONS(11083), 1, + anon_sym_LBRACK_LBRACK, + STATE(4958), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -467464,16 +543556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(6596), 37, + anon_sym_DASH_GT, + ACTIONS(9440), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -467483,10 +543573,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -467507,345 +543593,241 @@ 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, - [16951] = 16, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [61679] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, + ACTIONS(8597), 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, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10542), 1, + anon_sym_virtual, + ACTIONS(11086), 1, + anon_sym_SEMI, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10540), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(4397), 7, + sym__declaration_modifiers, 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, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8591), 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(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(10538), 13, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, 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, - anon_sym_DOT_DOT_DOT, - anon_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, - [17046] = 16, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [61764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7285), 1, + ACTIONS(9310), 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, + ACTIONS(9307), 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(5136), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5532), 2, + STATE(5778), 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, + ACTIONS(8285), 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_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, - ACTIONS(7966), 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, - [17141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7597), 26, + ACTIONS(8287), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_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, - ACTIONS(7595), 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, - [17210] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(10091), 1, - anon_sym_DASH_GT, - STATE(5952), 1, - sym__function_attributes_end, - STATE(6126), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [61837] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10929), 1, + anon_sym_requires, + ACTIONS(10926), 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(5136), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5396), 2, + STATE(5780), 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, + ACTIONS(9336), 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_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, - ACTIONS(8422), 22, + ACTIONS(9338), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_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, - [17305] = 7, + anon_sym_DASH_GT, + [61910] = 9, 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(8364), 1, + anon_sym_LT, + STATE(3266), 1, + sym_template_argument_list, + ACTIONS(7447), 2, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7451), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(7444), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(7449), 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, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -467853,82 +543835,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8406), 29, + ACTIONS(7454), 15, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_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, - [17382] = 10, + ACTIONS(7442), 18, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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, + [61987] = 5, 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(4059), 1, - sym_attribute_specifier, - STATE(4319), 1, - sym__enum_base_clause, - STATE(4382), 1, - sym_enumerator_list, - ACTIONS(8000), 10, + ACTIONS(6867), 1, + anon_sym_LBRACK_LBRACK, + STATE(4958), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9393), 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_const, + 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(8002), 44, + anon_sym_DASH_GT, + ACTIONS(9395), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + 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, + [62056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6805), 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(6803), 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_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, @@ -467942,66 +543983,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [17465] = 10, + [62121] = 3, 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, - anon_sym_DASH, - 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(8008), 44, - anon_sym_DOT_DOT_DOT, + ACTIONS(6801), 12, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6799), 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_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, @@ -468015,39 +544045,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [17548] = 10, + [62186] = 3, 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, - anon_sym_COLON, - STATE(2119), 1, - sym__enum_base_clause, - STATE(2137), 1, - sym_enumerator_list, - STATE(2196), 1, - sym_attribute_specifier, - ACTIONS(8000), 18, + ACTIONS(9368), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468061,12 +544075,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_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8002), 36, + anon_sym_DASH_GT, + ACTIONS(9370), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -468076,10 +544091,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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468091,67 +544104,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_or, + anon_sym_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, - [17631] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [62251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 14, + ACTIONS(9319), 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_COLON, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym___asm, anon_sym_DOT, - ACTIONS(6601), 47, + anon_sym_DASH_GT, + ACTIONS(9321), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_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, @@ -468161,121 +544175,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [17700] = 3, + anon_sym_DASH_GT_STAR, + [62316] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7637), 26, + ACTIONS(11091), 1, + anon_sym_requires, + ACTIONS(11088), 2, + anon_sym_final, + anon_sym_override, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5781), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 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(9269), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_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(7635), 35, - aux_sym_preproc_elif_token1, + [62389] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + ACTIONS(11094), 1, + anon_sym_COLON, + ACTIONS(11096), 1, + anon_sym_LBRACE, + STATE(5131), 1, + sym__enum_base_clause, + STATE(5474), 1, + sym_enumerator_list, + STATE(6221), 1, + sym_attribute_specifier, + ACTIONS(7390), 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_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, - [17769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7641), 26, + ACTIONS(7392), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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(7639), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_GT2, + [62468] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11098), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 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(7370), 39, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -468290,58 +544384,45 @@ 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, - [17838] = 3, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [62551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7741), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(6809), 12, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, 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(7739), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6807), 45, 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_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, @@ -468358,52 +544439,125 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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, - [17907] = 9, + [62616] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7687), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10542), 1, + anon_sym_virtual, + ACTIONS(11100), 1, + anon_sym_SEMI, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10540), 6, anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(4225), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5969), 1, - sym_initializer_list, - ACTIONS(10107), 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_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(4397), 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(8591), 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(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(10538), 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, + [62701] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11102), 1, anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, anon_sym_LBRACK_COLON, - ACTIONS(7223), 41, + ACTIONS(7370), 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, @@ -468439,47 +544593,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [17988] = 3, + [62784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 26, + ACTIONS(9364), 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(9366), 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_STAR, - anon_sym_PERCENT, anon_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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [62849] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2081), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9774), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9776), 34, + 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, - ACTIONS(7643), 35, - aux_sym_preproc_elif_token1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [62922] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2081), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9780), 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(9782), 34, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [62995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6797), 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(6795), 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, @@ -468496,97 +544838,161 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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, - [18057] = 3, + [63060] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 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(9756), 1, anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2081), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9788), 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(9790), 34, + 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_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(7743), 35, - aux_sym_preproc_elif_token1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [63133] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2081), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9792), 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_EQ, anon_sym_or, anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9794), 34, + 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_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, - [18126] = 8, + [63206] = 7, 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(2353), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4512), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 20, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2081), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9796), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468600,23 +545006,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(8835), 34, + ACTIONS(9798), 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, @@ -468638,14 +545043,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, - anon_sym_DASH_GT_STAR, - [18205] = 3, + [63279] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 25, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2081), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9800), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468659,29 +545072,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_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, + ACTIONS(9802), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468693,25 +545099,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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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_requires, + [63352] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 21, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2081), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9804), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468726,25 +545139,21 @@ 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(8706), 40, + ACTIONS(9806), 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_GT_EQ, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468765,122 +545174,116 @@ 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, + [63425] = 10, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + ACTIONS(11094), 1, + anon_sym_COLON, + ACTIONS(11096), 1, 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, + STATE(5146), 1, + sym__enum_base_clause, + STATE(5283), 1, + sym_enumerator_list, + STATE(6174), 1, + sym_attribute_specifier, + ACTIONS(7413), 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(7415), 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_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [18412] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [63504] = 13, ACTIONS(3), 1, sym_comment, - 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(7001), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10542), 1, + anon_sym_virtual, + ACTIONS(11104), 1, + anon_sym_SEMI, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10540), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(6999), 42, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, + STATE(4397), 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(8591), 9, 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, @@ -468889,6 +545292,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(8587), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -468901,153 +545306,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, + ACTIONS(10538), 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, - [18485] = 3, + [63589] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7653), 26, + ACTIONS(6929), 1, + anon_sym_requires, + ACTIONS(6923), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5657), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7474), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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(7651), 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, - [18554] = 21, + anon_sym_GT2, + [63662] = 6, 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(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(10872), 1, + anon_sym_LT, + STATE(5080), 1, + sym_template_argument_list, + ACTIONS(7442), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7791), 25, + anon_sym_DASH_GT, + ACTIONS(7447), 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_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -469058,47 +545447,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [18659] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [63733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(6813), 12, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, 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, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6811), 45, 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_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, @@ -469115,134 +545502,195 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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, - [18728] = 21, + [63798] = 12, 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, - anon_sym___attribute__, - ACTIONS(9999), 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(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11106), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(10719), 1, 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, - anon_sym_DASH, - 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, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 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_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, - [18833] = 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7370), 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, + [63881] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 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(7376), 1, anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11108), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 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(7370), 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_DOT, - ACTIONS(6634), 47, - anon_sym_DOT_DOT_DOT, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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, + [63964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6793), 12, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6791), 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, @@ -469256,28 +545704,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [18902] = 3, + [64029] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 27, + ACTIONS(6929), 1, + anon_sym_requires, + ACTIONS(6923), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5572), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469294,18 +545748,11 @@ 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, - sym_literal_suffix, - ACTIONS(8752), 34, + ACTIONS(7623), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469324,119 +545771,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [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, + [64102] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7567), 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(7565), 35, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7590), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2858), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5196), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -469446,21 +545807,8 @@ 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_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -469472,67 +545820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [19109] = 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(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, - anon_sym_DASH, - 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, + ACTIONS(9222), 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, @@ -469544,62 +545839,63 @@ 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, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [19214] = 10, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [64175] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10542), 1, + anon_sym_virtual, + ACTIONS(11110), 1, + anon_sym_SEMI, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(8593), 2, 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(8002), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10540), 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(4397), 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(8591), 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(8587), 13, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -469611,103 +545907,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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [19297] = 10, + ACTIONS(10538), 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, + [64260] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7590), 2, 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, + STATE(2858), 2, sym_attribute_specifier, - ACTIONS(8006), 12, + aux_sym_type_definition_repeat1, + STATE(5221), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 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_const, - anon_sym_DOT, - ACTIONS(8008), 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_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_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [19380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7571), 26, + ACTIONS(9226), 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, @@ -469723,92 +545977,138 @@ 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(7569), 35, - aux_sym_preproc_elif_token1, + anon_sym_COLON_RBRACK, + [64333] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + ACTIONS(11112), 1, + anon_sym_COLON, + ACTIONS(11114), 1, + anon_sym_LBRACE, + STATE(5239), 1, + sym__enum_base_clause, + STATE(5464), 1, + sym_enumerator_list, + STATE(6245), 1, + sym_attribute_specifier, + ACTIONS(7390), 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [19449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7665), 26, + ACTIONS(7392), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_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(7663), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + [64412] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11116), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 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(7370), 39, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -469823,21 +546123,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_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, + [64495] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11118), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [19518] = 3, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 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(7370), 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, + [64578] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 27, + ACTIONS(6929), 1, + anon_sym_requires, + ACTIONS(6923), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5594), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469854,18 +546229,11 @@ 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, - sym_literal_suffix, - ACTIONS(8667), 34, + ACTIONS(8287), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469884,92 +546252,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - 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, + [64651] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 14, + ACTIONS(6929), 1, + anon_sym_requires, + ACTIONS(6923), 2, + anon_sym_final, + anon_sym_override, + STATE(5151), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5608), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7303), 47, + ACTIONS(9338), 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_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, 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, + [64724] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 25, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + ACTIONS(11112), 1, + anon_sym_COLON, + ACTIONS(11114), 1, + anon_sym_LBRACE, + STATE(5243), 1, + sym__enum_base_clause, + STATE(5475), 1, + sym_enumerator_list, + STATE(6269), 1, + sym_attribute_specifier, + ACTIONS(7413), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469984,18 +546362,11 @@ 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, - sym_literal_suffix, - ACTIONS(8699), 36, + ACTIONS(7415), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470017,61 +546388,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [19725] = 3, + [64803] = 13, 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, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10542), 1, + anon_sym_virtual, + ACTIONS(11120), 1, + anon_sym_SEMI, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10540), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_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_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(4397), 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(8591), 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(8587), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -470085,144 +546457,315 @@ 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(10538), 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_final, - anon_sym_override, - anon_sym_requires, - [19794] = 21, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [64888] = 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(7899), 1, - anon_sym_noexcept, - ACTIONS(7901), 1, - anon_sym_throw, - ACTIONS(7903), 1, + ACTIONS(6929), 1, anon_sym_requires, - ACTIONS(10116), 1, - anon_sym_DASH_GT, - STATE(6269), 1, - sym__function_attributes_end, - STATE(6324), 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(6923), 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(5151), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(5611), 2, sym__function_postfix, sym_requires_clause, - STATE(4558), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7968), 10, + ACTIONS(9267), 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_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_xor, anon_sym_DOT, - ACTIONS(7966), 25, + ACTIONS(9269), 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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [19899] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [64961] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7669), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(9168), 1, + anon_sym_COLON_COLON, + ACTIONS(11122), 1, + anon_sym_STAR, + ACTIONS(11124), 1, + anon_sym_AMP_AMP, + ACTIONS(11126), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5887), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9603), 1, + sym__scope_resolution, + STATE(10143), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(5994), 2, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_GT2, + ACTIONS(5996), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5004), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6669), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [65078] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(9168), 1, + anon_sym_COLON_COLON, + ACTIONS(11122), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11124), 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(11126), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5887), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9603), 1, + sym__scope_resolution, + STATE(10162), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5970), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6744), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [65195] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, 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(7667), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(11128), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 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(7370), 39, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_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,256 +546780,365 @@ 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, + [65278] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7816), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11130), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, anon_sym___attribute__, - ACTIONS(7818), 1, anon_sym___attribute, - ACTIONS(7820), 1, + ACTIONS(7372), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_LBRACK_COLON, + ACTIONS(7370), 39, 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_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_DOT, - ACTIONS(7966), 23, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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, + [65361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7151), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [20073] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7176), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7149), 43, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(7178), 1, anon_sym___attribute, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(9211), 1, - anon_sym_DASH_GT, - STATE(5881), 1, - sym_trailing_return_type, - STATE(5960), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, + 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_asm, anon_sym___asm__, - ACTIONS(7219), 2, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, 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(7789), 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_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [65426] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(7791), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(11132), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11134), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - 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, - [20172] = 21, + ACTIONS(11136), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10144), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5994), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5996), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(5009), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6716), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [65543] = 29, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(11132), 1, + anon_sym_STAR, + ACTIONS(11134), 1, + anon_sym_AMP_AMP, + ACTIONS(11136), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10183), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5970), 2, 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, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6719), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [65660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7495), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7966), 25, + anon_sym_DASH_GT, + ACTIONS(7497), 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, + 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, @@ -470497,29 +547149,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [20277] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [65725] = 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6831), 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(6829), 45, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, - anon_sym_DOT, - ACTIONS(7090), 15, - anon_sym___extension__, - anon_sym_LBRACE, + 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, @@ -470533,80 +547204,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7087), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + 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, + [65790] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6826), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(6822), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(6819), 4, 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, + ACTIONS(6824), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [20354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7629), 26, + anon_sym_DOT, + ACTIONS(6817), 15, anon_sym_DOT_DOT_DOT, - anon_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(7627), 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, + ACTIONS(6815), 19, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -470622,67 +547279,68 @@ 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, - [20423] = 12, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [65863] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7136), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(7138), 1, - anon_sym_STAR, - ACTIONS(7140), 1, - anon_sym_AMP_AMP, - ACTIONS(7142), 1, - anon_sym_AMP, - ACTIONS(7152), 1, + ACTIONS(10050), 1, 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_DASH, - anon_sym_PLUS, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10993), 3, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9427), 30, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(10068), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -470690,421 +547348,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, + [65944] = 12, 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, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, 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(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10993), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10066), 20, + 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_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(8422), 29, + 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(10068), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - 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_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_DOT_STAR, - anon_sym_COLON_RBRACK, - [20609] = 3, + [66027] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 14, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10991), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11011), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10993), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10066), 18, + aux_sym_preproc_elif_token1, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6614), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [20678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7673), 26, + sym_identifier, + ACTIONS(10068), 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_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(7671), 35, - aux_sym_preproc_elif_token1, + [66112] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4732), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10856), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7361), 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_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [20747] = 21, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66181] = 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(7899), 1, - anon_sym_noexcept, - ACTIONS(7901), 1, - anon_sym_throw, - ACTIONS(10116), 1, - anon_sym_DASH_GT, - ACTIONS(10137), 1, + ACTIONS(7045), 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, + ACTIONS(7043), 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(5136), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(5746), 2, sym__function_postfix, sym_requires_clause, - STATE(4585), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7968), 10, + ACTIONS(7472), 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_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_or, anon_sym_and, - anon_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7661), 26, + anon_sym_DOT, + ACTIONS(7474), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_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(7659), 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, - [20921] = 6, + [66254] = 12, 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, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(11138), 1, + anon_sym_SEMI, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 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(7528), 41, + ACTIONS(7370), 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, @@ -471140,257 +547697,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [20996] = 6, + [66337] = 7, ACTIONS(3), 1, sym_comment, - STATE(3766), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9623), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6999), 17, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - ACTIONS(7528), 17, + ACTIONS(7045), 1, + anon_sym_requires, + ACTIONS(7043), 2, + anon_sym_final, + anon_sym_override, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5771), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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, anon_sym_DOT, - ACTIONS(7525), 22, + ACTIONS(7623), 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_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [21071] = 3, + [66410] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 26, + ACTIONS(7045), 1, + anon_sym_requires, + ACTIONS(7043), 2, + anon_sym_final, + anon_sym_override, + STATE(5136), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5778), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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(8287), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_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(7603), 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, - [21140] = 18, + [66483] = 7, 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, + ACTIONS(7045), 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, + ACTIONS(7043), 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(5136), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5532), 2, + STATE(5780), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 11, + ACTIONS(9336), 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_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(7966), 29, + ACTIONS(9338), 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_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_COLON_RBRACK, - [21239] = 3, + anon_sym_DASH_GT, + [66556] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 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, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10542), 1, + anon_sym_virtual, + ACTIONS(11140), 1, + anon_sym_SEMI, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(8593), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6626), 47, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10540), 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___extension__, - anon_sym___attribute__, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_COLON, + STATE(4397), 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(8591), 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(8587), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -471402,75 +547953,67 @@ 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, - sym_auto, + ACTIONS(10538), 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [21308] = 3, + anon_sym_template, + anon_sym_operator, + [66641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 14, + ACTIONS(11142), 1, + anon_sym_LPAREN2, + ACTIONS(9372), 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_COLON, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym___asm, anon_sym_DOT, - ACTIONS(6630), 47, + anon_sym_DASH_GT, + ACTIONS(9374), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_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, @@ -471480,176 +548023,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [21377] = 16, + anon_sym_DASH_GT_STAR, + [66708] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9202), 1, - anon_sym_DASH_GT, - ACTIONS(9208), 1, + ACTIONS(7045), 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, + ACTIONS(7043), 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(5136), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5460), 2, + STATE(5781), 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, + ACTIONS(9267), 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_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, - ACTIONS(7791), 22, + ACTIONS(9269), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_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, - [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, - aux_sym_preproc_elif_token1, + anon_sym_DASH_GT, + [66781] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2081), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9784), 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___attribute, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7966), 22, + ACTIONS(9786), 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_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, - [21567] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [66854] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 27, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(10550), 1, + anon_sym_decltype, + ACTIONS(11144), 1, + sym_auto, + STATE(5864), 1, + sym_decltype_auto, + ACTIONS(7359), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -471659,32 +548183,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_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), 34, + anon_sym_DASH_GT, + ACTIONS(7361), 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, @@ -471693,48 +548212,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_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, - [21636] = 7, + anon_sym_DASH_GT_STAR, + [66926] = 18, 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(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(10624), 1, + anon_sym___attribute__, + ACTIONS(10627), 1, + anon_sym___attribute, + ACTIONS(10630), 1, + anon_sym_DASH_GT, + STATE(6619), 1, + sym_trailing_return_type, + STATE(6903), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471743,23 +548275,11 @@ 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_LBRACK, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8466), 29, + ACTIONS(7623), 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, @@ -471772,56 +548292,87 @@ 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, + [67020] = 25, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10121), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10123), 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(7751), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10125), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10127), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5489), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9619), 1, + sym__scope_resolution, + STATE(9733), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5031), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6608), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6610), 7, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -471835,51 +548386,46 @@ 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, - [21782] = 3, + [67128] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 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, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(11146), 1, + anon_sym___attribute__, + ACTIONS(11149), 1, + anon_sym___attribute, + ACTIONS(11152), 1, anon_sym_DASH_GT, - ACTIONS(7755), 35, - aux_sym_preproc_elif_token1, + STATE(6544), 1, + sym_trailing_return_type, + STATE(6908), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -471888,42 +548434,11 @@ 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [21851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7761), 26, + ACTIONS(8287), 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, @@ -471935,77 +548450,88 @@ 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_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7759), 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, - [21920] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [67222] = 25, ACTIONS(3), 1, sym_comment, - STATE(4333), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10121), 1, + anon_sym_STAR, + ACTIONS(10123), 1, + anon_sym_AMP_AMP, + ACTIONS(10125), 1, + anon_sym_AMP, + ACTIONS(10127), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, sym_alignas_qualifier, - ACTIONS(10145), 2, + STATE(5489), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9619), 1, + sym__scope_resolution, + STATE(9736), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4109), 2, + STATE(6951), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6891), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(5968), 4, 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, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(5970), 7, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -472019,83 +548545,123 @@ static const uint16_t ts_small_parse_table[] = { 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, + [67330] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7112), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, - ACTIONS(7114), 1, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10121), 1, anon_sym_STAR, - ACTIONS(7116), 1, + ACTIONS(10123), 1, anon_sym_AMP_AMP, - ACTIONS(7118), 1, + ACTIONS(10125), 1, anon_sym_AMP, - ACTIONS(7128), 1, - anon_sym_LBRACK, - STATE(1977), 1, + ACTIONS(10127), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5489), 1, sym_parameter_list, - STATE(4659), 1, - sym__abstract_declarator, - STATE(5065), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, sym__function_declarator_seq, - STATE(5063), 5, + STATE(9619), 1, + sym__scope_resolution, + STATE(9734), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9429), 16, + sym_abstract_qualified_identifier, + ACTIONS(6614), 7, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [67438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7001), 1, + anon_sym_LBRACK_LBRACK, + STATE(5084), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9393), 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(9427), 32, + ACTIONS(9395), 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_GT_EQ, @@ -472125,135 +548691,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [22084] = 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, - [22153] = 16, + [67506] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10091), 1, + ACTIONS(10467), 1, anon_sym_DASH_GT, - ACTIONS(10151), 1, + ACTIONS(10555), 1, anon_sym_requires, - STATE(5983), 1, + STATE(7069), 1, sym__function_attributes_end, - STATE(6119), 1, + STATE(7175), 1, sym_trailing_return_type, - STATE(9134), 1, + STATE(10250), 1, sym_gnu_asm_expression, - ACTIONS(7178), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(10148), 2, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10552), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, + STATE(6914), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(7221), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(7332), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5396), 2, + STATE(7425), 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, + ACTIONS(7472), 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(7474), 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,63 +548754,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_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, + [67600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 14, + ACTIONS(7442), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(6610), 47, + anon_sym_DASH_GT, + ACTIONS(7447), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -472329,17 +548824,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, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [22317] = 3, + anon_sym_DASH_GT_STAR, + [67664] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 14, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10645), 1, + anon_sym_DASH_GT, + ACTIONS(10651), 1, + anon_sym_requires, + STATE(7021), 1, + sym__function_attributes_end, + STATE(7117), 1, + sym_trailing_return_type, + STATE(10250), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10648), 2, + anon_sym_final, + anon_sym_override, + STATE(6914), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7221), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7439), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472350,11 +548878,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_COLON, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6618), 47, + ACTIONS(7623), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472366,24 +548892,6 @@ 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_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, @@ -472395,149 +548903,47 @@ 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, - [22386] = 3, + [67758] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7769), 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, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11155), 1, anon_sym_DASH_GT, - ACTIONS(7767), 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, + ACTIONS(11161), 1, anon_sym_requires, - [22455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7765), 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(7763), 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, + STATE(7020), 1, + sym__function_attributes_end, + STATE(7144), 1, + sym_trailing_return_type, + STATE(10250), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11158), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [22524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6620), 14, + STATE(6914), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7221), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472548,11 +548954,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_COLON, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6622), 47, + ACTIONS(8287), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472564,24 +548968,6 @@ 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_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, @@ -472593,24 +548979,77 @@ 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_GT2, + [67852] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10121), 1, + anon_sym_STAR, + ACTIONS(10123), 1, + anon_sym_AMP_AMP, + ACTIONS(10125), 1, + anon_sym_AMP, + ACTIONS(10127), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5489), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9619), 1, + sym__scope_resolution, + STATE(9735), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6602), 7, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [22593] = 6, - 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(8587), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -472624,92 +549063,43 @@ 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, - 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, - anon_sym_xor, - 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, + [67960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 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(11164), 1, + anon_sym_LBRACE, + STATE(3612), 1, + sym_compound_statement, + ACTIONS(3108), 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_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(7731), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3118), 47, 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_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, @@ -472724,36 +549114,43 @@ 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_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [22737] = 7, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [68028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10154), 1, - anon_sym_delete, - ACTIONS(10156), 1, - anon_sym_new, - ACTIONS(9601), 3, - anon_sym_TILDE, + ACTIONS(7458), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, + ACTIONS(7668), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9597), 25, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7670), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -472763,6 +549160,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -472775,13 +549175,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - ACTIONS(9599), 25, + [68094] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3025), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11166), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7304), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -472792,51 +549212,85 @@ 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_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, - [22814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 26, + ACTIONS(7306), 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_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [68162] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10436), 1, anon_sym_DASH_GT, - ACTIONS(7779), 35, - aux_sym_preproc_elif_token1, + ACTIONS(10458), 1, + anon_sym_requires, + STATE(7044), 1, + sym__function_attributes_end, + STATE(7096), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10455), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7233), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7543), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472845,42 +549299,11 @@ 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [22883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7773), 26, + ACTIONS(7474), 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, @@ -472892,57 +549315,58 @@ 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, - anon_sym_DASH, - 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, - [22952] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [68256] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7291), 14, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(10467), 1, + anon_sym_DASH_GT, + STATE(7023), 1, + sym__function_attributes_end, + STATE(7193), 1, + sym_trailing_return_type, + STATE(10250), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(6914), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7221), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7425), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472953,11 +549377,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_COLON, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7293), 46, + ACTIONS(7474), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472969,23 +549391,6 @@ 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, @@ -472997,94 +549402,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [23023] = 8, + [68350] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, anon_sym___attribute__, - ACTIONS(6648), 1, + ACTIONS(8166), 1, anon_sym___attribute, - ACTIONS(6650), 1, + ACTIONS(8168), 1, anon_sym_LBRACK_LBRACK, - STATE(2353), 2, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(10577), 1, + anon_sym_DASH_GT, + STATE(7050), 1, + sym__function_attributes_end, + STATE(7089), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4488), 2, + STATE(7233), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 20, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7556), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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, - anon_sym_DASH_GT, - ACTIONS(8839), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - 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, - [23102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7597), 26, + ACTIONS(7623), 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, @@ -473096,165 +549467,69 @@ 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(7595), 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, - [23171] = 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(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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [23294] = 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [68444] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7291), 14, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10577), 1, + anon_sym_DASH_GT, + ACTIONS(10583), 1, + anon_sym_requires, + STATE(7022), 1, + sym__function_attributes_end, + STATE(7194), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10580), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7233), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7556), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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(7293), 46, + ACTIONS(7623), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473265,24 +549540,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_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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -473294,176 +549555,172 @@ 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, - [23365] = 3, + [68538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7601), 26, + STATE(4817), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10906), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 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(7361), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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(7599), 35, - aux_sym_preproc_elif_token1, + [68606] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + STATE(5054), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9393), 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(9395), 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_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_GT2, 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, + [68674] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 12, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11168), 1, + anon_sym_DASH_GT, + ACTIONS(11174), 1, + anon_sym_requires, + STATE(7074), 1, + sym__function_attributes_end, + STATE(7143), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11171), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7233), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7573), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473472,11 +549729,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(8287), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473490,25 +549745,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,53 +549757,43 @@ 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, + [68768] = 5, 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, + ACTIONS(11177), 1, + anon_sym_LBRACE, + STATE(3144), 1, + sym_compound_statement, + ACTIONS(3108), 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_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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3118), 47, 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_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, @@ -473581,102 +549808,104 @@ 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_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [23695] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [68836] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 26, + ACTIONS(7117), 1, + anon_sym_requires, + ACTIONS(8870), 1, + anon_sym_DASH_GT, + STATE(5130), 1, + sym_trailing_return_type, + ACTIONS(7115), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6229), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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(7623), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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(7607), 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, - [23764] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [68912] = 9, 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(8834), 1, + anon_sym_DASH_GT, + ACTIONS(8840), 1, + anon_sym_requires, + STATE(5132), 1, + sym_trailing_return_type, + ACTIONS(8837), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6392), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473691,16 +549920,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_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(9118), 26, + ACTIONS(7474), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -473723,14 +549944,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [23839] = 3, + [68988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 23, + STATE(3025), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11166), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473740,30 +549974,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_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(8706), 38, + anon_sym_DASH_GT, + ACTIONS(7310), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473771,127 +550002,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [23908] = 18, + anon_sym_DASH_GT_STAR, + [69056] = 7, 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(9211), 1, - anon_sym_DASH_GT, - ACTIONS(9219), 1, - anon_sym_requires, - STATE(5898), 1, - sym_trailing_return_type, - STATE(6006), 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, - ACTIONS(7789), 11, + ACTIONS(11179), 1, + anon_sym_LPAREN2, + ACTIONS(11181), 1, + anon_sym_LBRACK, + STATE(2063), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9780), 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_COLON, - 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(7791), 29, + anon_sym_DASH_GT, + ACTIONS(9782), 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_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_or, - anon_sym_and, anon_sym_bitor, - 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, - [24007] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [69128] = 5, 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, - 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, + ACTIONS(7001), 1, + anon_sym_LBRACK_LBRACK, + STATE(5084), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473905,25 +550104,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(8008), 36, + ACTIONS(9226), 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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473946,11 +550142,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [24090] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [69196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 27, + ACTIONS(11183), 1, + anon_sym_LBRACK_LBRACK, + STATE(5054), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473965,20 +550168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, - anon_sym_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(8699), 34, + ACTIONS(9440), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473986,7 +550183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -473997,95 +550193,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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_final, + anon_sym_override, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [24159] = 21, + anon_sym_requires, + [69264] = 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(10119), 1, - anon_sym_DASH_GT, - ACTIONS(10161), 1, - anon_sym_requires, - STATE(6273), 1, - sym__function_attributes_end, - STATE(6295), 1, - sym_trailing_return_type, - STATE(9096), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10158), 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(4577), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7968), 12, + STATE(5093), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11186), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 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_LBRACK, + anon_sym___attribute, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7966), 23, + anon_sym_DASH_GT, + ACTIONS(7318), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -474096,77 +550270,63 @@ 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, + anon_sym_DASH_GT_STAR, + [69332] = 9, 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, + ACTIONS(8870), 1, anon_sym_DASH_GT, - ACTIONS(9293), 1, + ACTIONS(8895), 1, anon_sym_requires, - STATE(5907), 1, + STATE(5138), 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, + ACTIONS(8892), 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(5770), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5532), 2, + STATE(6229), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 11, + ACTIONS(7621), 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_COLON, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7966), 29, + ACTIONS(7623), 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_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, @@ -474177,147 +550337,79 @@ 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_STAR, + [69408] = 5, 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, + STATE(5100), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11188), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 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_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), 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___attribute, + anon_sym_EQ, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [24440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7625), 26, + ACTIONS(7324), 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_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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(7623), 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, - [24509] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [69476] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 25, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + STATE(5054), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474327,23 +550419,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_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(8752), 36, + ACTIONS(9222), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -474351,9 +550439,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -474361,80 +550446,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [24578] = 18, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [69544] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7176), 1, + ACTIONS(8199), 1, anon_sym___attribute__, - ACTIONS(7178), 1, + ACTIONS(8201), 1, anon_sym___attribute, - ACTIONS(7180), 1, + ACTIONS(8203), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10131), 1, - anon_sym_DASH_GT, - ACTIONS(10169), 1, + ACTIONS(8242), 1, anon_sym_requires, - STATE(5908), 1, - sym_trailing_return_type, - STATE(6013), 1, + ACTIONS(10645), 1, + anon_sym_DASH_GT, + STATE(7070), 1, sym__function_attributes_end, - STATE(9134), 1, + STATE(7076), 1, + sym_trailing_return_type, + STATE(10250), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10166), 2, + ACTIONS(8240), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, + STATE(6914), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(7221), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(7332), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5396), 2, + STATE(7439), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(7621), 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_LBRACK, anon_sym_DOT, - ACTIONS(8422), 29, + ACTIONS(7623), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474443,12 +550527,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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -474460,68 +550539,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [24677] = 21, + anon_sym_GT2, + [69638] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7816), 1, + ACTIONS(8164), 1, anon_sym___attribute__, - ACTIONS(7818), 1, + ACTIONS(8166), 1, anon_sym___attribute, - ACTIONS(7820), 1, + ACTIONS(8168), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7831), 1, - anon_sym_noexcept, - ACTIONS(7833), 1, - anon_sym_throw, - ACTIONS(9987), 1, - anon_sym_DASH_GT, - ACTIONS(10082), 1, + ACTIONS(8257), 1, anon_sym_requires, - STATE(6278), 1, + ACTIONS(11168), 1, + anon_sym_DASH_GT, + STATE(7033), 1, sym__function_attributes_end, - STATE(6292), 1, + STATE(7133), 1, sym_trailing_return_type, - STATE(9096), 1, + STATE(10227), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10079), 2, + ACTIONS(8255), 2, anon_sym_final, anon_sym_override, - STATE(6157), 2, + STATE(6883), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6403), 2, + STATE(7233), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, + STATE(7330), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6697), 2, + STATE(7573), 2, sym__function_postfix, sym_requires_clause, - STATE(4575), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 12, + ACTIONS(8285), 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(7791), 23, + ACTIONS(8287), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -474532,7 +550601,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, @@ -474544,11 +550616,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [24782] = 3, + [69732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + anon_sym_LBRACE, + STATE(421), 1, + sym_compound_statement, + ACTIONS(3108), 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(3118), 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, + [69800] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 25, + ACTIONS(11179), 1, + anon_sym_LPAREN2, + ACTIONS(11181), 1, + anon_sym_LBRACK, + STATE(2063), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9784), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474563,28 +550705,20 @@ 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, - sym_literal_suffix, - ACTIONS(8667), 36, + anon_sym_DASH_GT, + ACTIONS(9786), 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, @@ -474596,80 +550730,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [24851] = 21, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [69872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, + ACTIONS(11190), 1, + anon_sym_LBRACE, + STATE(3688), 1, + sym_compound_statement, + ACTIONS(3108), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, 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, + anon_sym_LBRACK_COLON, + ACTIONS(3118), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(10125), 1, anon_sym___attribute, - ACTIONS(10128), 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_template, + anon_sym_operator, + [69940] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(11155), 1, anon_sym_DASH_GT, - STATE(5857), 1, - sym_trailing_return_type, - STATE(6192), 1, + STATE(7045), 1, sym__function_attributes_end, - STATE(9134), 1, + STATE(7135), 1, + sym_trailing_return_type, + STATE(10250), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7219), 2, + ACTIONS(8240), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, + STATE(6914), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(7221), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(7332), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5532), 2, + STATE(7455), 2, sym__function_postfix, sym_requires_clause, - STATE(4570), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7968), 10, + ACTIONS(8285), 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(8287), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -474680,10 +550870,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, @@ -474695,47 +550882,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [24956] = 3, + anon_sym_GT2, + [70034] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7777), 26, + ACTIONS(5703), 1, + anon_sym_decltype, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 1, + anon_sym_LBRACE, + ACTIONS(10026), 1, + sym_auto, + STATE(4240), 1, + sym_decltype_auto, + ACTIONS(7361), 11, anon_sym_DOT_DOT_DOT, anon_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_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(7775), 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_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 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, @@ -474750,38 +550946,50 @@ 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, + [70108] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11192), 1, + anon_sym_LPAREN2, + ACTIONS(9372), 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, - [25025] = 8, - 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(9374), 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, @@ -474792,15 +551000,57 @@ 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_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, - ACTIONS(7223), 32, - aux_sym_preproc_elif_token1, + anon_sym_COLON_RBRACK, + [70174] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9596), 1, + anon_sym_requires, + ACTIONS(10476), 1, + anon_sym___attribute__, + ACTIONS(10479), 1, + anon_sym___attribute, + ACTIONS(10482), 1, + anon_sym_DASH_GT, + STATE(6496), 1, + sym_trailing_return_type, + STATE(6874), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9593), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474809,41 +551059,41 @@ 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_DOT, + ACTIONS(7474), 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_DOT, - sym_identifier, - [25104] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [70268] = 4, 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(11194), 1, + sym_literal_suffix, + ACTIONS(5671), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474857,24 +551107,32 @@ 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, - ACTIONS(10172), 37, + sym_identifier, + ACTIONS(5663), 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, anon_sym_SLASH_EQ, @@ -474886,347 +551144,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [25180] = 3, + [70334] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 29, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(4682), 1, 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_requires, - sym_this, - [25248] = 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, + ACTIONS(7363), 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, + ACTIONS(7458), 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(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, - 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, + STATE(4271), 1, + sym_argument_list, + STATE(6708), 1, + sym_initializer_list, + ACTIONS(7361), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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(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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [25488] = 29, - 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, 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, + ACTIONS(7359), 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, @@ -475239,86 +551209,174 @@ 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, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [70408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(8883), 1, - anon_sym_LT, - STATE(4130), 1, - sym_template_argument_list, - ACTIONS(7371), 11, + ACTIONS(7001), 1, + anon_sym_LBRACK_LBRACK, + STATE(5084), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 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___attribute, - anon_sym_COLON, - anon_sym_const, + 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(5657), 46, + ACTIONS(9222), 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_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, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [70476] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11179), 1, + anon_sym_LPAREN2, + ACTIONS(11181), 1, + anon_sym_LBRACK, + STATE(2063), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9788), 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(9790), 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_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [25682] = 7, + anon_sym_DASH_GT_STAR, + [70548] = 5, 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(10968), 1, + anon_sym_LT, + STATE(2785), 1, + sym_template_argument_list, + ACTIONS(10094), 25, + 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_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(10096), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -475326,34 +551384,142 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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, - ACTIONS(7223), 32, - aux_sym_preproc_elif_token1, + [70616] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + ACTIONS(10973), 1, + anon_sym_LBRACE, + STATE(5210), 1, + sym_enumerator_list, + STATE(5930), 1, + sym_attribute_specifier, + ACTIONS(7421), 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(7423), 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, + [70690] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(7363), 1, + anon_sym_LPAREN2, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + STATE(4288), 1, + sym_argument_list, + STATE(6698), 1, + sym_initializer_list, + ACTIONS(7361), 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(7359), 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, @@ -475368,6 +551534,32 @@ 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, + [70764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11198), 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_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, @@ -475375,84 +551567,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - [25758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 29, + sym_literal_suffix, + ACTIONS(11196), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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(3310), 31, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [70828] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9932), 1, + anon_sym_requires, + ACTIONS(10624), 1, + anon_sym___attribute__, + ACTIONS(10627), 1, + anon_sym___attribute, + ACTIONS(10630), 1, + anon_sym_DASH_GT, + STATE(6497), 1, + sym_trailing_return_type, + STATE(6918), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9929), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, 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, - [25826] = 7, + anon_sym_DOT, + ACTIONS(7623), 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, + [70922] = 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(10186), 19, + ACTIONS(10968), 1, + anon_sym_LT, + STATE(2784), 1, + sym_template_argument_list, + ACTIONS(10094), 25, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475463,27 +551694,34 @@ 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_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(10184), 37, + sym_identifier, + ACTIONS(10096), 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, anon_sym_SLASH_EQ, @@ -475495,25 +551733,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [25902] = 3, + [70990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 22, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + STATE(5054), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475523,31 +551756,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, - anon_sym_DASH_GT, - ACTIONS(8940), 38, + ACTIONS(9226), 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, @@ -475555,7 +551783,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, @@ -475568,25 +551795,24 @@ 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, - [25970] = 7, + [71058] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(11179), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(11181), 1, anon_sym_LBRACK, - STATE(1953), 1, + STATE(2063), 1, sym_parameter_list, - STATE(3611), 1, + STATE(5340), 1, sym__function_declarator_seq, - ACTIONS(10190), 19, + ACTIONS(9792), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475600,13 +551826,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10188), 37, + anon_sym_DASH_GT, + ACTIONS(9794), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475615,9 +551841,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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -475639,23 +551862,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, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_COLON_RBRACK, - [26046] = 7, + anon_sym_DASH_GT_STAR, + [71130] = 3, 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(10194), 19, + ACTIONS(7149), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475669,24 +551883,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_COLON, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(10192), 37, + anon_sym_DASH_GT, + ACTIONS(7151), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -475698,37 +551913,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, + anon_sym_DASH_GT_STAR, + [71194] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, + ACTIONS(5703), 1, + anon_sym_decltype, + ACTIONS(7670), 1, + anon_sym_LBRACE, + ACTIONS(10026), 1, + sym_auto, + STATE(4240), 1, + sym_decltype_auto, + ACTIONS(7361), 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(7359), 40, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(6683), 1, anon_sym___attribute, - ACTIONS(6685), 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_identifier, + anon_sym_template, + anon_sym_operator, + [71266] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(1027), 1, + sym_compound_statement, + ACTIONS(3108), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, 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_LBRACK_COLON, + ACTIONS(3118), 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, + [71334] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7117), 1, + anon_sym_requires, + ACTIONS(9489), 1, + anon_sym_DASH_GT, + STATE(5181), 1, + sym_trailing_return_type, + ACTIONS(7115), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6224), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475738,26 +552083,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(8839), 32, + ACTIONS(8287), 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, @@ -475765,36 +552107,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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [26200] = 7, + anon_sym_DASH_GT_STAR, + [71410] = 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(10198), 19, + ACTIONS(11200), 1, + anon_sym_LBRACK_LBRACK, + STATE(5084), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475808,24 +552144,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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10196), 37, + ACTIONS(9440), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -475851,19 +552185,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_COLON_RBRACK, - [26276] = 7, + [71478] = 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(10202), 19, + ACTIONS(6878), 2, + anon_sym_final, + anon_sym_override, + STATE(5090), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9499), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475877,24 +552208,23 @@ 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(10200), 37, + anon_sym_DASH_GT, + ACTIONS(9501), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -475916,15 +552246,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, - anon_sym_final, - anon_sym_override, anon_sym_requires, - anon_sym_COLON_RBRACK, - [26352] = 3, + anon_sym_DASH_GT_STAR, + [71546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 24, + ACTIONS(11194), 1, + sym_literal_suffix, + ACTIONS(5671), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475938,7 +552267,11 @@ 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, @@ -475946,10 +552279,7 @@ 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(5663), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475959,6 +552289,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, @@ -475975,29 +552308,22 @@ 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, - [26420] = 7, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [71612] = 8, 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, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + ACTIONS(10973), 1, + anon_sym_LBRACE, + STATE(5223), 1, + sym_enumerator_list, + STATE(6005), 1, + sym_attribute_specifier, + ACTIONS(7417), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476011,24 +552337,23 @@ 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(10204), 37, + anon_sym_DASH_GT, + ACTIONS(7419), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476050,23 +552375,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_COLON_RBRACK, - [26496] = 7, + anon_sym_DASH_GT_STAR, + [71686] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(11179), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(11181), 1, anon_sym_LBRACK, - STATE(1953), 1, + STATE(2063), 1, sym_parameter_list, - STATE(3611), 1, + STATE(5340), 1, sym__function_declarator_seq, - ACTIONS(10210), 19, + ACTIONS(9796), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476080,13 +552401,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10208), 37, + anon_sym_DASH_GT, + ACTIONS(9798), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476095,9 +552416,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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476119,15 +552437,29 @@ 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, - [26572] = 3, + anon_sym_DASH_GT_STAR, + [71758] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 22, + ACTIONS(7117), 1, + anon_sym_requires, + ACTIONS(8834), 1, + anon_sym_DASH_GT, + STATE(5135), 1, + sym_trailing_return_type, + ACTIONS(7115), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6392), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476141,16 +552473,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_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, + ACTIONS(7474), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476160,8 +552485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476173,26 +552497,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [26640] = 3, + [71834] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 24, + ACTIONS(11203), 2, + anon_sym_final, + anon_sym_override, + STATE(5090), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9471), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476209,15 +552534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8667), 36, + ACTIONS(9473), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476239,181 +552559,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + 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_requires, anon_sym_DASH_GT_STAR, - [26708] = 3, + [71902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10214), 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(10212), 31, + ACTIONS(9259), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, + 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, - 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_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, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + 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, - [26776] = 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, + ACTIONS(9261), 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(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_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10222), 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_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, + [71966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9300), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, 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, + 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(9302), 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, + [72030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 22, + STATE(3025), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11166), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476428,26 +552718,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7298), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [72098] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11179), 1, + anon_sym_LPAREN2, + ACTIONS(11181), 1, anon_sym_LBRACK, + STATE(2063), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9800), 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___asm, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9009), 38, + ACTIONS(9802), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476468,91 +552816,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_final, anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [26964] = 29, + [72170] = 28, 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11206), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(11208), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(11210), 1, anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(11212), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(5717), 1, + sym_parameter_list, + STATE(6832), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7255), 1, sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8523), 1, - sym__declarator, - STATE(11612), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9645), 1, + sym__scope_resolution, + STATE(10237), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(8786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4176), 2, + STATE(5096), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5295), 2, + STATE(6763), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + ACTIONS(3222), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + ACTIONS(5994), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(13053), 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -476566,75 +552907,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [27084] = 3, + [72284] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10228), 29, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(11206), 1, anon_sym_STAR, + ACTIONS(11208), 1, + anon_sym_AMP_AMP, + ACTIONS(11210), 1, anon_sym_AMP, - anon_sym_SEMI, + ACTIONS(11212), 1, 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(10226), 31, - anon_sym_DASH, - anon_sym_PLUS, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5717), 1, + sym_parameter_list, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9645), 1, + sym__scope_resolution, + STATE(10267), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6766), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(5968), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, 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, - [27152] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [72398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 24, + ACTIONS(11198), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476649,6 +553012,9 @@ 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, @@ -476656,13 +553022,15 @@ 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(11196), 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, @@ -476685,21 +553053,26 @@ 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, - [27220] = 3, + anon_sym_DASH_GT, + [72462] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 24, + ACTIONS(9489), 1, + anon_sym_DASH_GT, + ACTIONS(9524), 1, + anon_sym_requires, + STATE(5139), 1, + sym_trailing_return_type, + ACTIONS(9521), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6224), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476714,17 +553087,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_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(8287), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -476747,192 +553111,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, + [72538] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10232), 29, + ACTIONS(11179), 1, 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(10230), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(11181), 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, - [27476] = 8, - 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, + STATE(2063), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9804), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476946,22 +553146,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(9806), 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, @@ -476983,26 +553182,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_final, anon_sym_override, anon_sym_requires, - [27554] = 8, + anon_sym_DASH_GT_STAR, + [72610] = 5, 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(4563), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 19, + STATE(3025), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11166), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477016,22 +553210,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___attribute, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(8839), 34, + anon_sym_DASH_GT, + ACTIONS(7255), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -477043,282 +553238,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [27632] = 12, + anon_sym_DASH_GT_STAR, + [72678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, - anon_sym_LPAREN2, - ACTIONS(6839), 1, - anon_sym_LBRACK, - ACTIONS(7162), 1, - 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, + ACTIONS(9368), 27, + 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___attribute__, anon_sym___attribute, - anon_sym_EQ, + 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(9427), 30, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9370), 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_LBRACK_LBRACK, + 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, - [27718] = 29, + anon_sym_COLON_RBRACK, + [72742] = 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, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(9319), 27, + 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(4188), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5498), 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, - [27838] = 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + 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, - 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(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(8528), 1, - sym__declarator, - STATE(10900), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4256), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5437), 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, - [27958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3118), 25, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9321), 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, @@ -477334,15 +553360,21 @@ 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_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, - ACTIONS(3128), 35, + anon_sym_COLON_RBRACK, + [72806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9364), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -477352,264 +553384,194 @@ 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___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, - [28026] = 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(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(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(8785), 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(4185), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5269), 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, - [28146] = 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, + ACTIONS(9366), 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(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_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10244), 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(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_CARET, + anon_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, + [72870] = 5, ACTIONS(3), 1, sym_comment, - STATE(4225), 1, + STATE(5120), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10107), 4, + ACTIONS(11214), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7719), 14, + ACTIONS(7263), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7265), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72938] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10944), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10960), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11223), 1, + anon_sym___asm, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8090), 1, + sym__function_attributes_start, + STATE(8502), 1, + sym_ref_qualifier, + STATE(9019), 1, + sym_trailing_return_type, + STATE(9077), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10953), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(11220), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8635), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7717), 41, - anon_sym_AMP, + anon_sym_try, + ACTIONS(10936), 12, 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, @@ -477621,598 +553583,431 @@ 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, - [28338] = 3, + [73056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 25, + STATE(5121), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11228), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7271), 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_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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(7077), 35, - aux_sym_preproc_elif_token1, + anon_sym_DASH_GT_STAR, + [73124] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4876), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10985), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_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, - [28406] = 29, - 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(7361), 31, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, 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(8804), 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(5304), 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, - [28526] = 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [73192] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 29, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + STATE(3025), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11166), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7302), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - 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_requires, - sym_this, - [28594] = 29, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73260] = 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(11179), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(11181), 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(10246), 1, - anon_sym_STAR, - ACTIONS(10248), 1, - anon_sym_AMP_AMP, - ACTIONS(10250), 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(8823), 1, - sym__declarator, - STATE(10837), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4259), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5445), 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, - [28714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6614), 29, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + STATE(2063), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9774), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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(9776), 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, - 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_final, + anon_sym_override, anon_sym_requires, - sym_this, - [28782] = 3, + anon_sym_DASH_GT_STAR, + [73332] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6626), 29, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(7117), 1, + anon_sym_requires, + ACTIONS(11230), 1, + anon_sym_DASH_GT, + STATE(5140), 1, + sym_trailing_return_type, + ACTIONS(7115), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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(9338), 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, - 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, - 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73408] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 29, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(11230), 1, + anon_sym_DASH_GT, + ACTIONS(11236), 1, + anon_sym_requires, + STATE(5141), 1, + sym_trailing_return_type, + ACTIONS(11233), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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(9338), 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, - 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_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, - [28918] = 29, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73484] = 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, + ACTIONS(960), 1, + anon_sym_LBRACE, + STATE(854), 1, + sym_compound_statement, + ACTIONS(3108), 7, 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(10246), 1, anon_sym_STAR, - ACTIONS(10248), 1, anon_sym_AMP_AMP, - ACTIONS(10250), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3118), 47, 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(8808), 1, - sym__declarator, - STATE(10837), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4195), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5292), 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_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, @@ -478225,86 +554020,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [29038] = 29, + 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, + [73552] = 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(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(6397), 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(10246), 1, - anon_sym_STAR, - ACTIONS(10248), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(10250), 1, + ACTIONS(10934), 1, anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + ACTIONS(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11223), 1, + anon_sym___asm, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + STATE(7372), 1, sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8816), 1, - sym__declarator, - STATE(10837), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, + STATE(7961), 1, + sym__function_attributes_start, + STATE(8517), 1, + sym_ref_qualifier, + STATE(9008), 1, + sym_trailing_return_type, + STATE(9096), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10949), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5297), 2, + ACTIONS(11220), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 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, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8638), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10936), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -478316,279 +554122,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [29158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6610), 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(6608), 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, - [29226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 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(6616), 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, - [29294] = 3, + [73670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 29, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + STATE(5040), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11239), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7290), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7292), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6620), 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, - [29362] = 29, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [73738] = 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10252), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10121), 1, anon_sym_STAR, - ACTIONS(10254), 1, + ACTIONS(10123), 1, anon_sym_AMP_AMP, - ACTIONS(10256), 1, + ACTIONS(10125), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10127), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(4094), 1, sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(5489), 1, + sym_parameter_list, + STATE(9224), 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, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9619), 1, + sym__scope_resolution, + STATE(9709), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4261), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5450), 2, + STATE(5117), 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, + ACTIONS(6604), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + STATE(13053), 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, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6606), 7, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -478602,39 +554268,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [29482] = 11, + [73846] = 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, - 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), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1113), 1, + anon_sym_LBRACE, + STATE(712), 1, + sym_compound_statement, + ACTIONS(3108), 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_LBRACK_COLON, - ACTIONS(5636), 40, + ACTIONS(3118), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -478643,12 +554292,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, @@ -478672,178 +554319,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, - [29566] = 29, + [73914] = 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(5966), 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(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(8523), 1, - sym__declarator, - STATE(10900), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4202), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5316), 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, - [29686] = 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, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(9651), 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, + ACTIONS(10121), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10123), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10125), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10127), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(4094), 1, sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(5489), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8541), 1, - sym__declarator, - STATE(10900), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9619), 1, + sym__scope_resolution, + STATE(9714), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5319), 2, + STATE(6951), 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, + ACTIONS(6616), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + STATE(13053), 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, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(6618), 7, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8587), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -478857,125 +554414,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [29806] = 4, + [74022] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 28, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(10476), 1, + anon_sym___attribute__, + ACTIONS(10479), 1, + anon_sym___attribute, + ACTIONS(10482), 1, + anon_sym_DASH_GT, + STATE(6464), 1, + sym_trailing_return_type, + STATE(6899), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7474), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(7459), 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, - [29876] = 6, + anon_sym_DOT_STAR, + [74116] = 3, 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(7566), 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_COLON, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7225), 44, + anon_sym_DASH_GT, + ACTIONS(7568), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -478986,32 +554547,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [29950] = 7, + anon_sym_DASH_GT_STAR, + [74180] = 5, 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, + STATE(3025), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11166), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -479022,28 +554575,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___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(9597), 25, + anon_sym_DASH_GT, + ACTIONS(7277), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -479056,302 +554604,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [30026] = 5, + anon_sym_DASH_GT_STAR, + [74248] = 5, ACTIONS(3), 1, sym_comment, - STATE(4228), 1, + STATE(3025), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10262), 4, + ACTIONS(11166), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7725), 14, + ACTIONS(7279), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7281), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [74316] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(10436), 1, + anon_sym_DASH_GT, + STATE(7027), 1, + sym__function_attributes_end, + STATE(7106), 1, + sym_trailing_return_type, + STATE(10227), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(6883), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7233), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7543), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7474), 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_SEMI, - anon_sym_COLON_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [74410] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7592), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7723), 41, + ACTIONS(10662), 1, + anon_sym_requires, + ACTIONS(11146), 1, + anon_sym___attribute__, + ACTIONS(11149), 1, + anon_sym___attribute, + ACTIONS(11152), 1, + anon_sym_DASH_GT, + STATE(6502), 1, + sym_trailing_return_type, + STATE(6905), 1, + sym__function_attributes_end, + STATE(10251), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10659), 2, + anon_sym_final, + anon_sym_override, + STATE(4994), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5144), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 10, + 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_LBRACK, + anon_sym_DOT, + ACTIONS(8287), 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, + [74504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10596), 1, anon_sym___attribute__, + ACTIONS(10598), 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, + STATE(5881), 1, + sym_attribute_specifier, + ACTIONS(7574), 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(7576), 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [74573] = 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(9662), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11053), 1, + anon_sym_EQ, + ACTIONS(11245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11247), 1, anon_sym_AMP_AMP, - ACTIONS(10268), 1, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 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(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11265), 1, + anon_sym_or, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11055), 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, + [74682] = 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10264), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5994), 1, + anon_sym_LBRACE, + ACTIONS(5996), 1, + anon_sym_requires, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11273), 1, anon_sym_STAR, - ACTIONS(10266), 1, + ACTIONS(11275), 1, anon_sym_AMP_AMP, - ACTIONS(10268), 1, + ACTIONS(11277), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(11279), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6124), 1, + sym_parameter_list, + STATE(6832), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8804), 1, - sym__declarator, - STATE(10957), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9591), 1, + sym__scope_resolution, + STATE(10349), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5337), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(5128), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + STATE(6848), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(13053), 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -479364,97 +555061,81 @@ 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, + [74797] = 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, - anon_sym_typename, - sym_identifier, + ACTIONS(2280), 1, sym_auto, + ACTIONS(2282), 1, 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(11281), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(11283), 1, + anon_sym_RPAREN, + ACTIONS(11285), 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, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 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, + STATE(9836), 1, + sym__scope_resolution, + STATE(11256), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4212), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5345), 2, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 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, + STATE(13053), 2, 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, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -479468,149 +555149,79 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_u8_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(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, + [74916] = 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10252), 1, + ACTIONS(5968), 1, + anon_sym_LBRACE, + ACTIONS(5970), 1, + anon_sym_requires, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11273), 1, anon_sym_STAR, - ACTIONS(10254), 1, + ACTIONS(11275), 1, anon_sym_AMP_AMP, - ACTIONS(10256), 1, + ACTIONS(11277), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(11279), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6124), 1, + sym_parameter_list, + STATE(6832), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8816), 1, - sym__declarator, - STATE(11008), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9591), 1, + sym__scope_resolution, + STATE(10354), 1, + sym__abstract_declarator, + ACTIONS(3224), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5350), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(6459), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + STATE(6840), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(13053), 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -479624,556 +555235,912 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [30720] = 5, + [75031] = 28, 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(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11057), 1, + anon_sym_EQ, + ACTIONS(11245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11247), 1, + anon_sym_AMP_AMP, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11265), 1, + anon_sym_or, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + ACTIONS(11293), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11059), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + 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, + [75144] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7117), 1, + anon_sym_requires, + ACTIONS(7115), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6224), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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(8287), 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_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, + [75215] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + ACTIONS(11096), 1, anon_sym_LBRACE, + STATE(5303), 1, + sym_enumerator_list, + STATE(6204), 1, + sym_attribute_specifier, + ACTIONS(7421), 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(7423), 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, - anon_sym_LBRACK_COLON, - ACTIONS(7727), 41, + [75288] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8895), 1, + anon_sym_requires, + ACTIONS(8892), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6229), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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___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_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(7623), 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [75359] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 29, + ACTIONS(9662), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11079), 1, + anon_sym_EQ, + ACTIONS(11245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11247), 1, + anon_sym_AMP_AMP, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11265), 1, + anon_sym_or, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, 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(6594), 31, + ACTIONS(11241), 2, 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, - [30860] = 4, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11081), 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, + [75468] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7293), 28, + ACTIONS(9662), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11061), 1, + anon_sym_EQ, + ACTIONS(11245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11247), 1, + anon_sym_AMP_AMP, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11265), 1, + anon_sym_or, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, 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, + ACTIONS(11241), 2, 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, - [30930] = 5, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11063), 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, + [75577] = 7, 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, + ACTIONS(7117), 1, + anon_sym_requires, + ACTIONS(7115), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6229), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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(7623), 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_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7555), 41, + 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, + [75648] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7043), 2, + anon_sym_final, + anon_sym_override, + STATE(5153), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9499), 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___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_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(9501), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [31002] = 4, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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_requires, + [75715] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7293), 28, + ACTIONS(6867), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11179), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(11295), 1, + anon_sym_LBRACK, + STATE(6048), 1, + sym_parameter_list, + STATE(5458), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9760), 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_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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(9762), 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, - 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75788] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9524), 1, + anon_sym_requires, + ACTIONS(9521), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6224), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 16, 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_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8287), 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, - 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, - [31072] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [75859] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 29, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(11236), 1, + anon_sym_requires, + ACTIONS(11233), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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(9338), 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, - 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_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, - [31140] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [75930] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7106), 29, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(7117), 1, + anon_sym_requires, + ACTIONS(7115), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6128), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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(9269), 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, - 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(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, - 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [76001] = 7, 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, + ACTIONS(11300), 1, + anon_sym_requires, + ACTIONS(11297), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6128), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 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(9269), 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_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7783), 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, - [31280] = 6, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [76072] = 5, 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(5630), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5635), 1, + anon_sym_using, + ACTIONS(5637), 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(10270), 46, + ACTIONS(5639), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -480219,150 +556186,402 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_explicit, + anon_sym_template, anon_sym_operator, - [31354] = 3, + [76139] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 29, + ACTIONS(11303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11305), 1, + anon_sym_COMMA, + ACTIONS(11307), 1, + anon_sym_RPAREN, + ACTIONS(11309), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(11311), 1, + anon_sym_DASH, + ACTIONS(11313), 1, + anon_sym_PLUS, + ACTIONS(11315), 1, anon_sym_STAR, + ACTIONS(11317), 1, + anon_sym_SLASH, + ACTIONS(11319), 1, + anon_sym_PERCENT, + ACTIONS(11321), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11323), 1, + anon_sym_AMP_AMP, + ACTIONS(11325), 1, + anon_sym_PIPE, + ACTIONS(11327), 1, + anon_sym_CARET, + ACTIONS(11329), 1, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(11331), 1, + anon_sym_EQ_EQ, + ACTIONS(11333), 1, + anon_sym_BANG_EQ, + ACTIONS(11335), 1, + anon_sym_GT, + ACTIONS(11337), 1, + anon_sym_GT_EQ, + ACTIONS(11339), 1, + anon_sym_LT_EQ, + ACTIONS(11341), 1, + anon_sym_LT, + ACTIONS(11343), 1, + anon_sym_LT_LT, + ACTIONS(11345), 1, + anon_sym_GT_GT, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_EQ, + ACTIONS(11351), 1, + anon_sym_QMARK, + ACTIONS(11353), 1, + anon_sym_STAR_EQ, + ACTIONS(11355), 1, + anon_sym_SLASH_EQ, + ACTIONS(11357), 1, + anon_sym_PERCENT_EQ, + ACTIONS(11359), 1, + anon_sym_PLUS_EQ, + ACTIONS(11361), 1, + anon_sym_DASH_EQ, + ACTIONS(11363), 1, + anon_sym_LT_LT_EQ, + ACTIONS(11365), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11367), 1, + anon_sym_AMP_EQ, + ACTIONS(11369), 1, + anon_sym_CARET_EQ, + ACTIONS(11371), 1, + anon_sym_PIPE_EQ, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11377), 1, + anon_sym_or, + ACTIONS(11379), 1, + anon_sym_and, + ACTIONS(11381), 1, + anon_sym_bitor, + ACTIONS(11383), 1, + anon_sym_xor, + ACTIONS(11385), 1, + anon_sym_bitand, + ACTIONS(11387), 1, + anon_sym_not_eq, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11389), 2, 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(7301), 31, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11373), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [76300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + STATE(5157), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, + 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, - 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_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, - [31422] = 29, + ACTIONS(9226), 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, + [76367] = 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(9662), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10105), 1, + anon_sym_EQ, + ACTIONS(11245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11247), 1, + anon_sym_AMP_AMP, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11265), 1, + anon_sym_or, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10103), 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, + [76476] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + ACTIONS(11096), 1, + anon_sym_LBRACE, + STATE(5328), 1, + sym_enumerator_list, + STATE(6290), 1, + sym_attribute_specifier, + ACTIONS(7417), 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(7419), 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(5160), 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [76549] = 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(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(11281), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(11285), 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(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11397), 1, + anon_sym_RPAREN, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, sym_splice_specifier, - STATE(8523), 1, - sym__declarator, - STATE(11622), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, + STATE(9836), 1, + sym__scope_resolution, + STATE(10860), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5384), 2, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 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, + STATE(13053), 2, 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, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -480376,123 +556595,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [31542] = 29, + [76668] = 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, + ACTIONS(11399), 2, + anon_sym_final, + anon_sym_override, + STATE(5148), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9471), 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(9473), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, + [76735] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11065), 1, + anon_sym_EQ, + ACTIONS(11245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11247), 1, + anon_sym_AMP_AMP, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11265), 1, + anon_sym_or, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + ACTIONS(11293), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11067), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + 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, + [76848] = 52, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11305), 1, + anon_sym_COMMA, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11311), 1, + anon_sym_DASH, + ACTIONS(11313), 1, + anon_sym_PLUS, + ACTIONS(11315), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(11317), 1, + anon_sym_SLASH, + ACTIONS(11319), 1, + anon_sym_PERCENT, + ACTIONS(11321), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11323), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(11325), 1, + anon_sym_PIPE, + ACTIONS(11327), 1, + anon_sym_CARET, + ACTIONS(11329), 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(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8826), 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(4255), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5434), 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, - [31662] = 5, + ACTIONS(11331), 1, + anon_sym_EQ_EQ, + ACTIONS(11333), 1, + anon_sym_BANG_EQ, + ACTIONS(11335), 1, + anon_sym_GT, + ACTIONS(11337), 1, + anon_sym_GT_EQ, + ACTIONS(11339), 1, + anon_sym_LT_EQ, + ACTIONS(11341), 1, + anon_sym_LT, + ACTIONS(11343), 1, + anon_sym_LT_LT, + ACTIONS(11345), 1, + anon_sym_GT_GT, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_EQ, + ACTIONS(11351), 1, + anon_sym_QMARK, + ACTIONS(11353), 1, + anon_sym_STAR_EQ, + ACTIONS(11355), 1, + anon_sym_SLASH_EQ, + ACTIONS(11357), 1, + anon_sym_PERCENT_EQ, + ACTIONS(11359), 1, + anon_sym_PLUS_EQ, + ACTIONS(11361), 1, + anon_sym_DASH_EQ, + ACTIONS(11363), 1, + anon_sym_LT_LT_EQ, + ACTIONS(11365), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11367), 1, + anon_sym_AMP_EQ, + ACTIONS(11369), 1, + anon_sym_CARET_EQ, + ACTIONS(11371), 1, + anon_sym_PIPE_EQ, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11377), 1, + anon_sym_or, + ACTIONS(11379), 1, + anon_sym_and, + ACTIONS(11381), 1, + anon_sym_bitor, + ACTIONS(11383), 1, + anon_sym_xor, + ACTIONS(11385), 1, + anon_sym_bitand, + ACTIONS(11387), 1, + anon_sym_not_eq, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11402), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11373), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [77009] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6923), 2, + anon_sym_final, + anon_sym_override, + STATE(5148), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9499), 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(9501), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [77076] = 13, ACTIONS(3), 1, sym_comment, - STATE(4228), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(5701), 1, + sym_auto, + ACTIONS(5703), 1, + anon_sym_decltype, + ACTIONS(9764), 1, + anon_sym_LT, + ACTIONS(10965), 1, + anon_sym_LBRACK, + STATE(3650), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10262), 4, + STATE(4259), 1, + sym_decltype_auto, + STATE(6782), 1, + sym_template_argument_list, + ACTIONS(5686), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5691), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7677), 14, + ACTIONS(5669), 7, 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, + ACTIONS(5661), 33, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -480501,13 +556958,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -480531,95 +556981,21 @@ 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, - [31734] = 3, + [77159] = 5, 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, + ACTIONS(11404), 2, + anon_sym_final, + anon_sym_override, + STATE(5153), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9471), 18, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(10288), 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(9599), 24, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -480630,19 +557006,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_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), 25, + ACTIONS(9473), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -480651,7 +557020,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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -480663,60 +557033,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [31878] = 5, + anon_sym_requires, + [77226] = 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, + ACTIONS(6954), 4, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(6956), 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(5663), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5671), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + [77293] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11045), 1, + anon_sym_EQ, + ACTIONS(11245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11247), 1, anon_sym_AMP_AMP, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11265), 1, + anon_sym_or, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11047), 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, + [77402] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, anon_sym_LBRACK_COLON, - ACTIONS(6999), 41, - anon_sym_AMP, + ACTIONS(11407), 1, + anon_sym_RPAREN, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(10976), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -480729,96 +557278,171 @@ 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, - [31950] = 3, + [77521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10295), 29, + ACTIONS(11409), 1, + anon_sym_LBRACK_LBRACK, + STATE(5157), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 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_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9440), 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_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + 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(10293), 31, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [77588] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10337), 1, + anon_sym_EQ, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11247), 1, + anon_sym_AMP_AMP, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11265), 1, + anon_sym_or, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + ACTIONS(11293), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, 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, - [32018] = 9, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10339), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + 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, + [77701] = 10, 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, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + ACTIONS(11412), 1, + anon_sym_COLON, + ACTIONS(11414), 1, + anon_sym_LBRACE, + STATE(5699), 1, + sym__enum_base_clause, + STATE(5944), 1, + sym_enumerator_list, + STATE(6676), 1, + sym_attribute_specifier, + ACTIONS(7390), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -480832,23 +557456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 32, + anon_sym_DASH_GT, + ACTIONS(7392), 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___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -480861,35 +557481,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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [32098] = 9, + anon_sym_DASH_GT_STAR, + [77778] = 31, 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, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11416), 1, + anon_sym_RPAREN, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(11095), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [77897] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11418), 1, + anon_sym_LBRACK, + STATE(5483), 1, + sym_new_declarator, + STATE(6125), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9658), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -480903,24 +557608,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 32, + anon_sym_DASH_GT, + ACTIONS(9660), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -480942,30 +557644,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [32178] = 9, + anon_sym_DASH_GT_STAR, + [77970] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_requires, - ACTIONS(8976), 1, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, 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, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11243), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -480974,24 +557679,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8422), 32, + ACTIONS(10068), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -481010,28 +557712,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [32258] = 9, + anon_sym_COLON_RBRACK, + [78049] = 6, 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, + ACTIONS(10550), 1, + anon_sym_decltype, + ACTIONS(11144), 1, + sym_auto, + STATE(5864), 1, + sym_decltype_auto, + ACTIONS(7359), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -481045,23 +557736,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(8907), 32, + anon_sym_DASH_GT, + ACTIONS(7361), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -481084,25 +557775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [32338] = 9, + anon_sym_DASH_GT_STAR, + [78118] = 8, 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, + ACTIONS(6867), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11179), 1, + anon_sym_LPAREN2, + ACTIONS(11295), 1, + anon_sym_LBRACK, + STATE(6048), 1, + sym_parameter_list, + STATE(5458), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9752), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -481116,24 +557804,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 32, + anon_sym_DASH_GT, + ACTIONS(9754), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -481155,56 +557840,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [32418] = 9, + anon_sym_DASH_GT_STAR, + [78191] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_requires, - ACTIONS(8397), 1, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11247), 1, + anon_sym_AMP_AMP, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, 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, + ACTIONS(10066), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(10068), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [78296] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(10066), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7966), 32, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 22, 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___attribute__, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -481219,63 +558000,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [78397] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(11271), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [32498] = 9, + ACTIONS(11241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(10068), 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, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [78494] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8461), 1, - anon_sym_requires, - ACTIONS(8976), 1, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11271), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, 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, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(10066), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8422), 32, + ACTIONS(10068), 23, 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___attribute__, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -481290,32 +558152,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, - [32578] = 9, + anon_sym_COLON_RBRACK, + [78589] = 6, 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, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(5885), 1, + sym_attribute_specifier, + ACTIONS(7578), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -481329,23 +558177,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(8907), 32, + anon_sym_DASH_GT, + ACTIONS(7580), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -481368,29 +558216,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [32658] = 7, + anon_sym_DASH_GT_STAR, + [78658] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11075), 1, + anon_sym_EQ, + ACTIONS(11245), 1, anon_sym_PIPE_PIPE, + ACTIONS(11247), 1, anon_sym_AMP_AMP, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11265), 1, + anon_sym_or, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11077), 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, @@ -481402,64 +558296,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [78767] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10186), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 7, + 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, - 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, + ACTIONS(10068), 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_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, @@ -481471,64 +558368,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, + [78858] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11420), 1, + anon_sym_namespace, + ACTIONS(10727), 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(10725), 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, + [78923] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10190), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11257), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 7, + 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, - 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(10068), 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_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, @@ -481540,64 +558501,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [79012] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11263), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10194), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 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_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, - [32886] = 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(10172), 27, + ACTIONS(10068), 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_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, @@ -481609,18 +558572,128 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [79097] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11422), 1, + anon_sym_RPAREN, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(11216), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [79216] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10174), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11243), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -481630,43 +558703,20 @@ 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, - 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, + ACTIONS(10068), 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_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, @@ -481678,13 +558728,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10198), 29, - aux_sym_preproc_elif_token1, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [79297] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + ACTIONS(11412), 1, + anon_sym_COLON, + ACTIONS(11414), 1, + anon_sym_LBRACE, + STATE(5747), 1, + sym__enum_base_clause, + STATE(6044), 1, + sym_enumerator_list, + STATE(6690), 1, + sym_attribute_specifier, + ACTIONS(7413), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -481699,43 +558768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [33038] = 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(10200), 27, + anon_sym_DASH_GT, + ACTIONS(7415), 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, 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, @@ -481748,63 +558793,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [79374] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10202), 29, - aux_sym_preproc_elif_token1, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 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_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, - [33114] = 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(10204), 27, + ACTIONS(10068), 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_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, @@ -481816,13 +558865,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10206), 29, - aux_sym_preproc_elif_token1, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [79457] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(11424), 1, + anon_sym_LT, + STATE(4467), 1, + sym_template_argument_list, + ACTIONS(6783), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -481833,47 +558895,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_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, - [33190] = 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(10208), 27, + ACTIONS(6776), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -481885,135 +558926,53 @@ 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(10210), 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_final, - anon_sym_override, - anon_sym_requires, - [33266] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [79528] = 13, 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, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5684), 1, 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, + ACTIONS(5701), 1, sym_auto, + ACTIONS(5703), 1, anon_sym_decltype, - anon_sym_explicit, - anon_sym_operator, - [33340] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4228), 1, + ACTIONS(9764), 1, + anon_sym_LT, + ACTIONS(11429), 1, + anon_sym_EQ, + STATE(3452), 1, + sym_template_argument_list, + STATE(3650), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10262), 4, + STATE(4259), 1, + sym_decltype_auto, + ACTIONS(11427), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5691), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7695), 14, + ACTIONS(5669), 7, 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(7693), 41, + ACTIONS(5661), 34, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -482022,12 +558981,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, @@ -482052,154 +559005,147 @@ 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, - [33412] = 5, + [79611] = 7, 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(7699), 14, + ACTIONS(7117), 1, + anon_sym_requires, + ACTIONS(7115), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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(9338), 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_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7697), 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, - [33484] = 29, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [79682] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + 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(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(11281), 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(11285), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11431), 1, + anon_sym_RPAREN, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 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, + STATE(9836), 1, + sym__scope_resolution, + STATE(11321), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5295), 2, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 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, + STATE(13053), 2, 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, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -482213,113 +559159,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [33604] = 29, + [79801] = 8, 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(2952), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(11418), 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, + STATE(5263), 1, + sym_new_declarator, + STATE(6119), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9697), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(10266), 1, - anon_sym_AMP_AMP, - ACTIONS(10268), 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(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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [33724] = 8, + 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(9699), 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, + [79874] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - anon_sym___attribute__, - ACTIONS(6683), 1, - anon_sym___attribute, - ACTIONS(6685), 1, + ACTIONS(6867), 1, anon_sym_LBRACK_LBRACK, - STATE(2375), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4566), 2, + ACTIONS(11179), 1, + anon_sym_LPAREN2, + ACTIONS(11295), 1, + anon_sym_LBRACK, + STATE(6048), 1, + sym_parameter_list, + STATE(5458), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 21, + ACTIONS(9770), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -482329,26 +559248,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8835), 32, + anon_sym_DASH_GT, + ACTIONS(9772), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -482356,6 +559274,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, @@ -482369,25 +559288,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_GT2, - anon_sym_requires, - [33802] = 6, + anon_sym_DASH_GT_STAR, + [79947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_template, - STATE(2109), 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(5625), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -482395,13 +559300,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(10270), 46, + ACTIONS(5623), 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, @@ -482441,57 +559347,84 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_explicit, + anon_sym_template, anon_sym_operator, - [33876] = 5, + [80010] = 30, ACTIONS(3), 1, sym_comment, - STATE(4206), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10304), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7703), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(11439), 1, + anon_sym_requires, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8325), 1, + sym__function_attributes_start, + STATE(8524), 1, + sym_ref_qualifier, + STATE(9527), 1, + sym_trailing_return_type, + STATE(9597), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9650), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8656), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7701), 41, - anon_sym_AMP, + ACTIONS(10936), 12, 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, @@ -482503,16 +559436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [33948] = 3, + [80127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 22, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(5927), 1, + sym_attribute_specifier, + ACTIONS(7676), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -482526,16 +559459,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_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, + ACTIONS(7678), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -482545,8 +559475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -482567,201 +559497,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [34016] = 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(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(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(8785), 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(5269), 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, - [34136] = 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(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(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(8523), 1, - sym__declarator, - STATE(10900), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5316), 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, - [34256] = 4, + [80196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10306), 1, - anon_sym_LPAREN2, - ACTIONS(9027), 22, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(5929), 1, + sym_attribute_specifier, + ACTIONS(7617), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -482775,26 +559522,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_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, + ACTIONS(7619), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -482815,91 +559560,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [34326] = 29, + [80265] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + 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(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(11281), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(11285), 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, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11441), 1, + anon_sym_RPAREN, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 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, + STATE(9836), 1, + sym__scope_resolution, + STATE(11031), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5329), 2, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 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, + STATE(13053), 2, 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, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -482913,101 +559650,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34446] = 29, + [80384] = 6, 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(10246), 1, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(5938), 1, + sym_attribute_specifier, + ACTIONS(7692), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(10248), 1, - anon_sym_AMP_AMP, - ACTIONS(10250), 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(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8808), 1, - sym__declarator, - STATE(10837), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5292), 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, - [34566] = 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(7694), 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, + [80453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 22, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(5939), 1, + sym_attribute_specifier, + ACTIONS(7702), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -483021,16 +559736,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_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, + ACTIONS(7704), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483040,8 +559752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -483062,91 +559774,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [34634] = 29, + [80522] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + 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(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(11281), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(11285), 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, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11443), 1, + anon_sym_RPAREN, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 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, + STATE(9836), 1, + sym__scope_resolution, + STATE(10935), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5345), 2, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 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, + STATE(13053), 2, 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, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -483160,45 +559864,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34754] = 6, + [80641] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(9552), 1, - anon_sym_LT, - STATE(4054), 1, - sym_template_argument_list, - ACTIONS(7371), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, anon_sym_const, - anon_sym_DOT, - ACTIONS(5657), 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(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10960), 1, + anon_sym_requires, + ACTIONS(11216), 1, anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8251), 1, + sym__function_attributes_start, + STATE(8543), 1, + sym_ref_qualifier, + STATE(9019), 1, + sym_trailing_return_type, + STATE(9500), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10953), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8645), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10936), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -483210,83 +559951,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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [34828] = 6, + [80758] = 7, 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(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2076), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9774), 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___attribute, - anon_sym_COLON, - anon_sym_const, + 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), 46, + ACTIONS(9776), 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___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, @@ -483296,32 +560015,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [34902] = 7, + [80829] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10308), 1, - anon_sym_delete, - ACTIONS(10310), 1, - anon_sym_new, - ACTIONS(9601), 3, - anon_sym_TILDE, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(11451), 1, + anon_sym_LT, + STATE(5399), 1, + sym_template_argument_list, + ACTIONS(6783), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9597), 23, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6776), 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, @@ -483329,35 +560064,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, - ACTIONS(9599), 26, + anon_sym_DASH_GT_STAR, + [80900] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + STATE(5157), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9393), 24, + 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_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, @@ -483365,123 +560108,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - [34978] = 5, - 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, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9395), 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_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7707), 41, + 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, + [80967] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, anon_sym___attribute__, + ACTIONS(11218), 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, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(11445), 1, + anon_sym_DASH_GT, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8183), 1, + sym__function_attributes_start, + STATE(8529), 1, + sym_ref_qualifier, + STATE(9008), 1, + sym_trailing_return_type, + STATE(9464), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10949), 2, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [35050] = 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(7715), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8655), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 6, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7713), 41, - anon_sym_AMP, + anon_sym_try, + ACTIONS(10936), 12, 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, @@ -483493,195 +560228,154 @@ 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, - [35122] = 3, + [81084] = 52, 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, + ACTIONS(11303), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11305), 1, anon_sym_COMMA, + ACTIONS(11309), 1, anon_sym_LPAREN2, + ACTIONS(11311), 1, + anon_sym_DASH, + ACTIONS(11313), 1, + anon_sym_PLUS, + ACTIONS(11315), 1, anon_sym_STAR, + ACTIONS(11317), 1, + anon_sym_SLASH, + ACTIONS(11319), 1, anon_sym_PERCENT, + ACTIONS(11321), 1, anon_sym_PIPE_PIPE, + ACTIONS(11323), 1, anon_sym_AMP_AMP, + ACTIONS(11325), 1, + anon_sym_PIPE, + ACTIONS(11327), 1, anon_sym_CARET, + ACTIONS(11329), 1, + anon_sym_AMP, + ACTIONS(11331), 1, anon_sym_EQ_EQ, + ACTIONS(11333), 1, anon_sym_BANG_EQ, + ACTIONS(11335), 1, + anon_sym_GT, + ACTIONS(11337), 1, + anon_sym_GT_EQ, + ACTIONS(11339), 1, + anon_sym_LT_EQ, + ACTIONS(11341), 1, + anon_sym_LT, + ACTIONS(11343), 1, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(11345), 1, + anon_sym_GT_GT, + ACTIONS(11347), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(11349), 1, + anon_sym_EQ, + ACTIONS(11351), 1, anon_sym_QMARK, + ACTIONS(11353), 1, + anon_sym_STAR_EQ, + ACTIONS(11355), 1, + anon_sym_SLASH_EQ, + ACTIONS(11357), 1, + anon_sym_PERCENT_EQ, + ACTIONS(11359), 1, + anon_sym_PLUS_EQ, + ACTIONS(11361), 1, + anon_sym_DASH_EQ, + ACTIONS(11363), 1, + anon_sym_LT_LT_EQ, + ACTIONS(11365), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11367), 1, + anon_sym_AMP_EQ, + ACTIONS(11369), 1, + anon_sym_CARET_EQ, + ACTIONS(11371), 1, + anon_sym_PIPE_EQ, + ACTIONS(11375), 1, anon_sym_LT_EQ_GT, + ACTIONS(11377), 1, anon_sym_or, + ACTIONS(11379), 1, anon_sym_and, + ACTIONS(11381), 1, anon_sym_bitor, + ACTIONS(11383), 1, anon_sym_xor, + ACTIONS(11385), 1, 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, - 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(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(8528), 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(4223), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5377), 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, - [35310] = 7, + ACTIONS(11387), 1, + anon_sym_not_eq, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11454), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11373), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [81245] = 7, 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(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2075), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9792), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9597), 24, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_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), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -483689,257 +560383,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9599), 25, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [81316] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2075), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9796), 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_COLON, - 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, - [35386] = 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(7683), 14, + ACTIONS(9798), 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_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(7681), 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, - [35458] = 29, + anon_sym_requires, + [81387] = 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(11447), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(11449), 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(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(8523), 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(4151), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5384), 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, - [35578] = 6, - 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, + STATE(2076), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9780), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7090), 44, + ACTIONS(9782), 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_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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -483948,52 +560528,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [35652] = 3, + [81458] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 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, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, anon_sym_LBRACK_COLON, - ACTIONS(7231), 44, - anon_sym_AMP, + ACTIONS(11460), 1, + anon_sym_RPAREN, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(10961), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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___cdecl, - anon_sym___clrcall, - 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, @@ -484006,18 +560617,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, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [35719] = 3, + [81577] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 23, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2076), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9784), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484034,24 +560645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8752), 36, + ACTIONS(9786), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484063,69 +560667,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + 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, - [35786] = 12, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [81648] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 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, - anon_sym_LBRACK, - STATE(1991), 1, - sym_parameter_list, - STATE(5254), 1, - sym__abstract_declarator, - STATE(5694), 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(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(10639), 1, + anon_sym_decltype, + ACTIONS(11462), 1, + sym_auto, + STATE(6390), 1, + sym_decltype_auto, + ACTIONS(7359), 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, - anon_sym_DASH_GT, - ACTIONS(9427), 32, + ACTIONS(7361), 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, anon_sym_SLASH_EQ, @@ -484133,28 +560730,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [35871] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [81719] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 23, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2075), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9800), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484169,25 +560771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_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, + ACTIONS(9802), 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___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484207,18 +560803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [35938] = 3, + [81790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 23, + ACTIONS(5623), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484232,17 +560826,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8659), 36, + ACTIONS(5625), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -484252,7 +560843,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, @@ -484264,55 +560855,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [36005] = 3, + [81853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10318), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5621), 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(10316), 45, + ACTIONS(5619), 48, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, + anon_sym_using, anon_sym___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, @@ -484336,113 +560917,36 @@ 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_final, - anon_sym_override, anon_sym_explicit, anon_sym_template, anon_sym_operator, - [36072] = 7, + [81916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 1, - anon_sym_LBRACE, - ACTIONS(8883), 1, - anon_sym_LT, - STATE(3733), 1, - sym_template_argument_list, - ACTIONS(7085), 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(7094), 16, - aux_sym_preproc_elif_token1, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(6004), 1, + sym_attribute_specifier, + ACTIONS(7634), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(7087), 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_COLON_COLON, - 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, - [36147] = 12, - 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, - 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, @@ -484454,14 +560958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9427), 29, + ACTIONS(7636), 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, @@ -484484,10 +560992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [36232] = 3, + [81985] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 21, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2076), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9788), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484501,25 +561017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8891), 38, + ACTIONS(9790), 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___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -484541,17 +561051,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_requires, - [36299] = 3, + [82056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 21, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(6009), 1, + sym_attribute_specifier, + ACTIONS(7672), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484565,26 +561079,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_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(7674), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484605,17 +561117,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [36366] = 3, + anon_sym_DASH_GT_STAR, + [82125] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 23, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(6011), 1, + sym_attribute_specifier, + ACTIONS(7680), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484625,30 +561138,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_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, + anon_sym_DASH_GT, + ACTIONS(7682), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484656,6 +561167,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 +561180,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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36433] = 3, + anon_sym_DASH_GT_STAR, + [82194] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 23, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(6012), 1, + sym_attribute_specifier, + ACTIONS(7688), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484689,30 +561201,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_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(8981), 36, + anon_sym_DASH_GT, + ACTIONS(7690), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484720,6 +561230,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, @@ -484732,18 +561243,81 @@ 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, - [36500] = 3, + anon_sym_DASH_GT_STAR, + [82263] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11464), 1, + anon_sym_namespace, + ACTIONS(10727), 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(10725), 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, + [82328] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 23, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2075), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9804), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484758,25 +561332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_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(9806), 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___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484796,66 +561364,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_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [36567] = 11, + [82399] = 30, 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, + ACTIONS(6397), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(5643), 41, - anon_sym_COMMA, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8186), 1, + sym__function_attributes_start, + STATE(8530), 1, + sym_ref_qualifier, + STATE(9008), 1, + sym_trailing_return_type, + STATE(9447), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8657), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 6, 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_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_try, + ACTIONS(10936), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -484867,21 +561457,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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [36650] = 4, + [82516] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10328), 1, + ACTIONS(11456), 1, anon_sym_LPAREN2, - ACTIONS(9027), 21, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2075), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9774), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484891,29 +561478,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_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(9029), 37, + ACTIONS(9776), 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484921,7 +561503,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, @@ -484934,48 +561515,48 @@ 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, - [36719] = 3, + [82587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7231), 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(7233), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11468), 1, + anon_sym_friend, + ACTIONS(3108), 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(3118), 47, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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, @@ -484989,90 +561570,33 @@ 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, - [36786] = 3, + 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, + [82652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 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(8706), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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, + ACTIONS(7117), 1, + anon_sym_requires, + ACTIONS(7115), 2, 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, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6392), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485082,30 +561606,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_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_DASH_GT, + ACTIONS(7474), 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, @@ -485113,66 +561631,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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, - [36920] = 8, + anon_sym_DASH_GT_STAR, + [82723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(11470), 1, + anon_sym_typedef, + ACTIONS(3108), 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(3118), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(9963), 1, anon_sym___attribute, - ACTIONS(10114), 1, - anon_sym_LBRACE, - STATE(4340), 1, - sym_enumerator_list, - STATE(4405), 1, - sym_attribute_specifier, - ACTIONS(7381), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + anon_sym___declspec, + anon_sym___based, + anon_sym_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_DOT, - ACTIONS(7383), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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, + [82788] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11472), 1, + anon_sym_friend, + ACTIONS(3108), 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(3118), 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, @@ -485186,41 +561756,92 @@ 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, + 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, + [82853] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7592), 1, + anon_sym_LBRACK_LBRACK, + STATE(5157), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 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_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9222), 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36997] = 9, + anon_sym_COLON_RBRACK, + [82920] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, - anon_sym_requires, - ACTIONS(8271), 1, - anon_sym_DASH_GT, - STATE(4347), 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(4890), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 18, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2075), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9780), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485230,26 +561851,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(7966), 32, + ACTIONS(9782), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -485257,7 +561876,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, @@ -485271,11 +561889,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_STAR, - [37076] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [82991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 23, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(6036), 1, + sym_attribute_specifier, + ACTIONS(7706), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485292,14 +561920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8699), 36, + ACTIONS(7708), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485309,6 +561933,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, @@ -485321,57 +561946,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, - [37143] = 3, + [83060] = 4, 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, + ACTIONS(11474), 1, + anon_sym_namespace, + ACTIONS(10727), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10725), 47, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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_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, @@ -485385,40 +562006,28 @@ 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_requires, - [37210] = 9, + 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, + [83125] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8168), 1, - anon_sym_DASH_GT, - ACTIONS(8177), 1, - anon_sym_requires, - STATE(4339), 1, - sym_trailing_return_type, - ACTIONS(8174), 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, + ACTIONS(10596), 1, + anon_sym___attribute__, + ACTIONS(10598), 1, + anon_sym___attribute, + STATE(6039), 1, + sym_attribute_specifier, + ACTIONS(7570), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485437,7 +562046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 32, + anon_sym_DASH_GT, + ACTIONS(7572), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485447,6 +562057,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, @@ -485470,116 +562081,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [37289] = 4, + [83194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7459), 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(7457), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11476), 1, + anon_sym_friend, + ACTIONS(3108), 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(3118), 47, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, 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, - [37358] = 9, - 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___attribute, + anon_sym___declspec, + anon_sym___based, 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, - 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___extension__, - anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_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,37 +562130,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, - [37437] = 9, + 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, + [83259] = 7, 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, - 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, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(10674), 1, + anon_sym_decltype, + ACTIONS(11478), 1, + sym_auto, + STATE(6205), 1, + sym_decltype_auto, + ACTIONS(7359), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485642,17 +562172,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 32, + ACTIONS(7361), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -485674,26 +562205,80 @@ 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, - [37516] = 9, + anon_sym_DASH_GT, + [83330] = 4, 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_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, + ACTIONS(11480), 1, + anon_sym_namespace, + ACTIONS(10727), 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(10725), 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, + [83395] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2075), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9784), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485703,26 +562288,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(8422), 32, + ACTIONS(9786), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -485730,7 +562313,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, @@ -485744,26 +562326,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_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, + [83466] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11482), 1, + anon_sym_friend, + ACTIONS(3108), 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(3118), 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, + [83531] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11418), 1, + anon_sym_LBRACK, + STATE(5505), 1, + sym_new_declarator, + STATE(6240), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9666), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485782,17 +562425,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 32, + anon_sym_DASH_GT, + ACTIONS(9668), 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, @@ -485815,25 +562457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [37674] = 9, + [83604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10330), 1, - anon_sym_DASH_GT, - ACTIONS(10336), 1, - anon_sym_requires, - STATE(4352), 1, - sym_trailing_return_type, - ACTIONS(10333), 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, + ACTIONS(5619), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485847,12 +562474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8907), 32, + anon_sym_DASH_GT, + ACTIONS(5621), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485862,7 +562491,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, @@ -485884,116 +562513,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, - [37753] = 3, + [83667] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 23, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8667), 36, - anon_sym_DOT_DOT_DOT, + ACTIONS(11487), 1, + anon_sym_requires, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8324), 1, + sym__function_attributes_start, + STATE(8535), 1, + sym_ref_qualifier, + STATE(9593), 1, + sym__function_attributes_end, + STATE(9601), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11484), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9650), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8648), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_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, - [37820] = 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [83784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(8626), 1, + ACTIONS(11490), 1, + anon_sym_friend, + ACTIONS(3108), 7, 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_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3118), 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(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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, - anon_sym_DOT, - ACTIONS(7225), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + 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, + [83849] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11492), 1, + anon_sym_friend, + ACTIONS(3108), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3118), 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_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, @@ -486007,22 +562714,33 @@ 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, - [37899] = 3, + 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, + [83914] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 21, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11418), 1, + anon_sym_LBRACK, + STATE(5429), 1, + sym_new_declarator, + STATE(6143), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9672), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486036,26 +562754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8940), 38, + anon_sym_DASH_GT, + ACTIONS(9674), 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -486076,48 +562789,44 @@ 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_requires, - [37966] = 3, + anon_sym_DASH_GT_STAR, + [83987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7085), 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(7090), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11494), 1, + anon_sym_friend, + ACTIONS(3108), 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(3118), 47, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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, @@ -486131,12 +562840,72 @@ 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, + [84052] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2075), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9788), 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(9790), 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -486147,80 +562916,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [38033] = 9, + [84123] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + ACTIONS(11114), 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, + STATE(5479), 1, + sym_enumerator_list, + STATE(6274), 1, + sym_attribute_specifier, + ACTIONS(7421), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7225), 38, + ACTIONS(7423), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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_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_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [38112] = 3, + [84196] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 21, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2076), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9792), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486234,25 +563006,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8981), 38, + ACTIONS(9794), 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___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -486274,134 +563040,66 @@ 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_requires, - [38179] = 5, + [84267] = 7, 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(11447), 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(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, + ACTIONS(11449), 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, - [38250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7287), 11, + STATE(2076), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9796), 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, - sym_ms_restrict_modifier, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7289), 48, + ACTIONS(9798), 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___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, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, @@ -486411,61 +563109,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [38317] = 3, + [84338] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 11, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2076), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9800), 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, - sym_ms_restrict_modifier, - anon_sym_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7201), 48, + ACTIONS(9802), 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___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, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, @@ -486475,25 +563173,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [38384] = 9, + [84409] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, - anon_sym_requires, - ACTIONS(8168), 1, - 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, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + ACTIONS(11114), 1, + anon_sym_LBRACE, + STATE(5491), 1, + sym_enumerator_list, + STATE(6324), 1, + sym_attribute_specifier, + ACTIONS(7417), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486512,10 +563205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 32, + ACTIONS(7419), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -486523,6 +563215,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, @@ -486544,26 +563237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [38463] = 9, + anon_sym_DASH_GT, + [84482] = 7, 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, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2076), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9804), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486582,17 +563268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8907), 32, + ACTIONS(9806), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -486614,42 +563298,86 @@ 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, - [38542] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [84553] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7104), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, anon_sym_const, - anon_sym_DOT, - ACTIONS(7106), 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__, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10960), 1, + anon_sym_requires, + ACTIONS(11216), 1, anon_sym___attribute__, - anon_sym_COLON_COLON, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8233), 1, + sym__function_attributes_start, + STATE(8544), 1, + sym_ref_qualifier, + STATE(9019), 1, + sym_trailing_return_type, + STATE(9492), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10953), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8647), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_try, + ACTIONS(10936), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -486661,30 +563389,21 @@ 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, - [38609] = 4, + [84670] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10341), 1, + ACTIONS(6867), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11179), 1, anon_sym_LPAREN2, - ACTIONS(9027), 23, + ACTIONS(11295), 1, + anon_sym_LBRACK, + STATE(6048), 1, + sym_parameter_list, + STATE(5458), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9812), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486694,29 +563413,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_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(9029), 35, + anon_sym_DASH_GT, + ACTIONS(9814), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -486724,6 +563439,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, @@ -486736,48 +563452,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_requires, - [38678] = 3, + anon_sym_DASH_GT_STAR, + [84743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11496), 1, + anon_sym_typedef, + ACTIONS(3108), 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(7077), 45, + ACTIONS(3118), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - 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, @@ -486801,67 +563503,71 @@ 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_final, - anon_sym_override, anon_sym_explicit, anon_sym_template, anon_sym_operator, - [38745] = 8, + [84808] = 7, 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, + ACTIONS(8840), 1, + anon_sym_requires, + ACTIONS(8837), 2, + anon_sym_final, + anon_sym_override, + STATE(5770), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6392), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7389), 42, + anon_sym_DASH_GT, + ACTIONS(7474), 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_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, @@ -486872,109 +563578,142 @@ 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, - [38822] = 3, + anon_sym_DASH_GT_STAR, + [84879] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 21, + ACTIONS(11303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11305), 1, + anon_sym_COMMA, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11311), 1, anon_sym_DASH, + ACTIONS(11313), 1, anon_sym_PLUS, + ACTIONS(11315), 1, anon_sym_STAR, + ACTIONS(11317), 1, anon_sym_SLASH, + ACTIONS(11319), 1, anon_sym_PERCENT, + ACTIONS(11321), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11323), 1, + anon_sym_AMP_AMP, + ACTIONS(11325), 1, anon_sym_PIPE, + ACTIONS(11327), 1, anon_sym_CARET, + ACTIONS(11329), 1, anon_sym_AMP, + ACTIONS(11331), 1, + anon_sym_EQ_EQ, + ACTIONS(11333), 1, + anon_sym_BANG_EQ, + ACTIONS(11335), 1, anon_sym_GT, + ACTIONS(11337), 1, + anon_sym_GT_EQ, + ACTIONS(11339), 1, anon_sym_LT_EQ, + ACTIONS(11341), 1, anon_sym_LT, + ACTIONS(11343), 1, anon_sym_LT_LT, + ACTIONS(11345), 1, anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(11347), 1, anon_sym_LBRACK, + ACTIONS(11349), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(9009), 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, + ACTIONS(11351), 1, anon_sym_QMARK, + ACTIONS(11353), 1, anon_sym_STAR_EQ, + ACTIONS(11355), 1, anon_sym_SLASH_EQ, + ACTIONS(11357), 1, anon_sym_PERCENT_EQ, + ACTIONS(11359), 1, anon_sym_PLUS_EQ, + ACTIONS(11361), 1, anon_sym_DASH_EQ, + ACTIONS(11363), 1, anon_sym_LT_LT_EQ, + ACTIONS(11365), 1, anon_sym_GT_GT_EQ, + ACTIONS(11367), 1, anon_sym_AMP_EQ, + ACTIONS(11369), 1, anon_sym_CARET_EQ, + ACTIONS(11371), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11375), 1, anon_sym_LT_EQ_GT, + ACTIONS(11377), 1, + anon_sym_or, + ACTIONS(11379), 1, + anon_sym_and, + ACTIONS(11381), 1, anon_sym_bitor, + ACTIONS(11383), 1, + anon_sym_xor, + ACTIONS(11385), 1, anon_sym_bitand, + ACTIONS(11387), 1, anon_sym_not_eq, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11498), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [38889] = 3, + ACTIONS(11373), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [85040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11500), 1, + anon_sym_typedef, + ACTIONS(3108), 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(6594), 45, + ACTIONS(3118), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - 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, @@ -486998,54 +563737,137 @@ 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_final, - anon_sym_override, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [38956] = 8, + [85105] = 8, 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(6867), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11179), 1, + anon_sym_LPAREN2, + ACTIONS(11295), 1, + anon_sym_LBRACK, + STATE(6048), 1, + sym_parameter_list, + STATE(5458), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9828), 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_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7389), 44, + anon_sym_DASH_GT, + ACTIONS(9830), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___extension__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [85178] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(5701), 1, + sym_auto, + ACTIONS(5703), 1, + anon_sym_decltype, + ACTIONS(9764), 1, + anon_sym_LT, + ACTIONS(11505), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(3452), 1, + sym_template_argument_list, + STATE(3650), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4259), 1, + sym_decltype_auto, + ACTIONS(11502), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5691), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5669), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(5661), 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, @@ -487059,62 +563881,51 @@ 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_requires, - [39033] = 8, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [85261] = 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, - anon_sym_DASH, - 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(7383), 44, + ACTIONS(10727), 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(10725), 42, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_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, @@ -487128,56 +563939,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [39110] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [85324] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 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(7289), 46, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(10524), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10526), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(10528), 1, + anon_sym_AMP, + ACTIONS(10530), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5394), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9586), 1, + sym__scope_resolution, + STATE(9867), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6602), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, - 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, @@ -487189,122 +564025,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [85430] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9162), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 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, - anon_sym_GT2, - anon_sym_requires, - [39177] = 3, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [85546] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 13, + ACTIONS(5206), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11530), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(5202), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - sym_ms_restrict_modifier, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7201), 46, - anon_sym_DOT_DOT_DOT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(5200), 31, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_TILDE, anon_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__, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, + 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [39244] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [85612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10727), 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(7158), 45, + ACTIONS(10725), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - 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, @@ -487328,51 +564219,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_final, - anon_sym_override, anon_sym_explicit, anon_sym_template, anon_sym_operator, - [39311] = 6, + [85674] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4066), 1, - sym_attribute_specifier, - ACTIONS(7413), 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(7415), 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_LT_LT, - anon_sym_GT_GT, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3800), 1, + anon_sym_enum, + ACTIONS(3802), 1, + anon_sym_class, + ACTIONS(3804), 1, + anon_sym_struct, + ACTIONS(3806), 1, + anon_sym_union, + ACTIONS(3810), 1, + sym_auto, + ACTIONS(3812), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11532), 1, + sym_identifier, + ACTIONS(11534), 1, + anon_sym_COLON_COLON, + ACTIONS(11536), 1, + sym_primitive_type, + ACTIONS(11538), 1, + anon_sym_typename, + STATE(2090), 1, + sym_type_specifier, + STATE(2277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2545), 1, + sym_splice_specifier, + STATE(2656), 1, + sym__splice_specialization_specifier, + STATE(2811), 1, + sym_template_type, + STATE(2818), 1, + sym_qualified_type_identifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2927), 1, + sym_decltype_auto, + STATE(5334), 1, + sym_type_descriptor, + STATE(9829), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2929), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5685), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3796), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2928), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -487384,105 +564317,96 @@ 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_requires, - [39383] = 3, + [85790] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 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___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(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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - ACTIONS(8706), 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, - [39449] = 9, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(11983), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [85906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, - anon_sym_requires, - ACTIONS(10343), 1, - anon_sym_DASH_GT, - STATE(4536), 1, - sym_trailing_return_type, - 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(6829), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487496,22 +564420,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(8907), 31, + anon_sym_DASH_GT, + ACTIONS(6831), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -487533,24 +564461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [39527] = 10, + anon_sym_DASH_GT_STAR, + [85968] = 8, 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(7001), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + STATE(3487), 1, + sym_parameter_list, + STATE(5602), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9828), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487569,18 +564495,15 @@ 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(9830), 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, @@ -487602,63 +564525,56 @@ 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, - [39607] = 6, + anon_sym_DASH_GT, + [86040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - STATE(4540), 1, - sym_attribute_specifier, - ACTIONS(7423), 12, + ACTIONS(5619), 21, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7425), 43, + ACTIONS(5621), 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_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_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, @@ -487669,21 +564585,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [39679] = 7, + [86102] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, - anon_sym_requires, - ACTIONS(8174), 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), 19, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(6311), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9766), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487703,11 +564615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7791), 32, + ACTIONS(9768), 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, @@ -487736,115 +564647,10 @@ static const uint16_t ts_small_parse_table[] = { 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, + [86170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 1, - anon_sym_requires, - ACTIONS(10379), 1, - anon_sym_DASH_GT, - STATE(4447), 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(5071), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 20, + ACTIONS(9360), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487854,25 +564660,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(8907), 29, + anon_sym_DASH_GT, + ACTIONS(9362), 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, @@ -487881,6 +564688,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, @@ -487894,378 +564702,104 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_DASH_GT_STAR, + [86232] = 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(10354), 1, - anon_sym___attribute__, - ACTIONS(10357), 1, - anon_sym___attribute, - ACTIONS(10360), 1, + ACTIONS(6411), 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, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(11540), 1, + anon_sym_LBRACK, + STATE(6277), 1, + sym_parameter_list, + STATE(5670), 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, + ACTIONS(9828), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7433), 43, + ACTIONS(9830), 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_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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, + [86304] = 9, 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, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(8372), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5659), 4, + STATE(3656), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6170), 1, + sym_argument_list, + STATE(6770), 1, + sym_initializer_list, + ACTIONS(9487), 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, + ACTIONS(7361), 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_GT2, + anon_sym_EQ, anon_sym_LBRACK_COLON, - ACTIONS(7158), 47, + ACTIONS(7359), 35, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -488274,10 +564808,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, @@ -488301,96 +564831,98 @@ 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, - [40427] = 3, + [86378] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 19, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11546), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11548), 1, + anon_sym_AMP_AMP, + ACTIONS(11550), 1, anon_sym_PIPE, + ACTIONS(11554), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_COLON, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11564), 1, + anon_sym_QMARK, + ACTIONS(11566), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11568), 1, anon_sym_or, + ACTIONS(11570), 1, anon_sym_and, + ACTIONS(11572), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11574), 1, 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, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11065), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(11542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(11556), 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(11558), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11067), 16, + anon_sym_COMMA, 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___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, + [86490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8304), 1, - anon_sym_requires, - ACTIONS(8301), 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(9271), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488410,7 +564942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7966), 32, + ACTIONS(9273), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -488442,94 +564974,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, - [40567] = 6, - 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(7523), 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, - [40639] = 7, + anon_sym_DASH_GT_STAR, + [86552] = 8, 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, + ACTIONS(6411), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(11540), 1, + anon_sym_LBRACK, + STATE(6277), 1, + sym_parameter_list, + STATE(5670), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9812), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -488540,26 +565006,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9597), 25, + ACTIONS(9814), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -488571,179 +565031,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_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_STAR, - [40713] = 6, - 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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(7437), 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, - [40785] = 6, + [86624] = 3, 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(9263), 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(7455), 43, + anon_sym_DASH_GT, + ACTIONS(9265), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_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, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [40857] = 6, + anon_sym_DASH_GT_STAR, + [86686] = 3, 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, + ACTIONS(10888), 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(6565), 45, + ACTIONS(10886), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - 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, @@ -488767,28 +565148,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_final, - anon_sym_override, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [40929] = 7, + [86748] = 5, 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(7081), 1, + anon_sym_LBRACK_LBRACK, + STATE(5363), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488802,13 +565182,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(8422), 32, + ACTIONS(9226), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -488818,7 +565196,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 +565207,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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [41003] = 9, + [86814] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8318), 1, - anon_sym_DASH_GT, - ACTIONS(8324), 1, - anon_sym_requires, - STATE(4468), 1, - sym_trailing_return_type, - ACTIONS(8321), 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(11576), 1, + anon_sym_AMP_AMP, + ACTIONS(11578), 1, + anon_sym_and, + ACTIONS(9853), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488869,25 +565238,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(7791), 29, + anon_sym_DASH_GT, + ACTIONS(9855), 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, @@ -488896,6 +565264,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 +565278,14 @@ 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, - 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(4813), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 19, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [86880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9275), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488944,7 +565305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8422), 32, + ACTIONS(9277), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -488976,58 +565337,133 @@ 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, - [41155] = 12, + [86942] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7112), 1, - anon_sym_LPAREN2, - ACTIONS(7128), 1, + ACTIONS(6397), 1, anon_sym_LBRACK, - ACTIONS(7363), 1, - anon_sym_STAR, - ACTIONS(7365), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(7367), 1, + ACTIONS(10934), 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(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11223), 1, + anon_sym___asm, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8411), 1, + sym__function_attributes_start, + STATE(8550), 1, + sym_ref_qualifier, + STATE(9008), 1, + sym_trailing_return_type, + STATE(9280), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11220), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8711), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [87058] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11588), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11586), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11584), 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_DOT, - ACTIONS(9427), 29, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(11582), 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_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -489041,29 +565477,426 @@ 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, + [87124] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9186), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [87240] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11590), 2, + anon_sym_final, + anon_sym_override, + STATE(5278), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9471), 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(9473), 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, - [41239] = 7, + anon_sym_COLON_RBRACK, + [87306] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11593), 1, + sym_identifier, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(11599), 1, + sym_primitive_type, + ACTIONS(11601), 1, + anon_sym_enum, + ACTIONS(11603), 1, + anon_sym_class, + ACTIONS(11605), 1, + anon_sym_struct, + ACTIONS(11607), 1, + anon_sym_union, + ACTIONS(11609), 1, + anon_sym_typename, + ACTIONS(11611), 1, + sym_auto, + ACTIONS(11613), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(6032), 1, + sym_type_specifier, + STATE(6894), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7345), 1, + sym_splice_specifier, + STATE(7520), 1, + sym_template_type, + STATE(7521), 1, + sym_qualified_type_identifier, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8014), 1, + sym_decltype_auto, + STATE(9662), 1, + sym_type_descriptor, + STATE(9795), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5676), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8016), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8015), 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, + [87422] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 1, + anon_sym_enum, + ACTIONS(3838), 1, + anon_sym_class, + ACTIONS(3840), 1, + anon_sym_struct, + ACTIONS(3842), 1, + anon_sym_union, + ACTIONS(3848), 1, + sym_auto, + ACTIONS(3850), 1, + anon_sym_decltype, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11615), 1, + sym_identifier, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(11619), 1, + sym_primitive_type, + ACTIONS(11621), 1, + anon_sym_typename, + STATE(2008), 1, + sym_type_specifier, + STATE(2069), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2228), 1, + sym_template_type, + STATE(2229), 1, + sym_qualified_type_identifier, + STATE(2255), 1, + sym_splice_specifier, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3958), 1, + sym_type_descriptor, + STATE(9811), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2345), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5686), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3832), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2339), 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, + [87538] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10336), 1, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(11625), 1, anon_sym_requires, - ACTIONS(10333), 2, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8379), 1, + sym__function_attributes_start, + STATE(8553), 1, + sym_ref_qualifier, + STATE(9403), 1, + sym_trailing_return_type, + STATE(9678), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4775), 2, + STATE(9650), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 19, + STATE(8697), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [87654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9296), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489083,7 +565916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8907), 32, + ACTIONS(9298), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -489115,154 +565948,146 @@ 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, - [41313] = 6, + [87716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(10818), 1, anon_sym___attribute__, - ACTIONS(9963), 1, + ACTIONS(10820), 1, anon_sym___attribute, - STATE(4530), 1, + STATE(6265), 1, sym_attribute_specifier, - ACTIONS(7551), 12, + ACTIONS(7634), 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(7553), 43, + ACTIONS(7636), 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___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, - [41385] = 6, + [87784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - STATE(4398), 1, - sym_attribute_specifier, - ACTIONS(7531), 12, + 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_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(7533), 43, + anon_sym_DASH_GT, + ACTIONS(9354), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_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, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [41457] = 7, + anon_sym_DASH_GT_STAR, + [87846] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10394), 1, - anon_sym_requires, - ACTIONS(10391), 2, - 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, + ACTIONS(7001), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + STATE(3487), 1, + sym_parameter_list, + STATE(5602), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9760), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489281,18 +566106,15 @@ 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(9762), 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, @@ -489314,26 +566136,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, - [41531] = 9, + anon_sym_DASH_GT, + [87918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8429), 1, - anon_sym_DASH_GT, - ACTIONS(8435), 1, - anon_sym_requires, - STATE(4470), 1, - sym_trailing_return_type, - ACTIONS(8432), 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, + ACTIONS(9939), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489343,25 +566150,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(9941), 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, @@ -489370,6 +566178,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,26 +566192,14 @@ 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, - 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, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [87980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9943), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489412,25 +566209,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(8422), 29, + anon_sym_DASH_GT, + ACTIONS(9945), 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, @@ -489439,6 +566237,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, @@ -489452,26 +566251,14 @@ static const uint16_t ts_small_parse_table[] = { 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_requires, + anon_sym_DASH_GT_STAR, + [88042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9378), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489481,25 +566268,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(9380), 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, @@ -489508,6 +566296,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, @@ -489521,26 +566310,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [41765] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [88104] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10379), 1, + ACTIONS(11576), 1, + anon_sym_AMP_AMP, + ACTIONS(11578), 1, + anon_sym_and, + ACTIONS(11627), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11629), 1, + anon_sym_or, + ACTIONS(9737), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10400), 1, - anon_sym_requires, - STATE(4472), 1, - sym_trailing_return_type, - ACTIONS(10397), 2, + ACTIONS(9739), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_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_requires, + anon_sym_DASH_GT_STAR, + [88174] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + anon_sym_LBRACE, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11633), 1, + anon_sym_LBRACK, + STATE(5708), 1, + sym_new_declarator, + STATE(6460), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9697), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489550,26 +566401,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(8907), 29, + ACTIONS(9699), 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, @@ -489577,6 +566426,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, @@ -489590,26 +566440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [41843] = 9, + anon_sym_DASH_GT, + [88246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, - anon_sym_requires, - ACTIONS(8360), 1, - anon_sym_DASH_GT, - STATE(4532), 1, - sym_trailing_return_type, - 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, + ACTIONS(9253), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489628,9 +566463,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(9255), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -489638,7 +566475,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, @@ -489660,31 +566496,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [41921] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [88308] = 30, 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(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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12061), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [88424] = 30, + ACTIONS(3), 1, + sym_comment, + 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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5184), 1, + sym_identifier, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5192), 1, + anon_sym_typename, + ACTIONS(5194), 1, + anon_sym_template, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4349), 1, + sym_splice_specifier, + STATE(5115), 1, + sym_type_specifier, + STATE(9293), 1, + sym_type_descriptor, + STATE(9818), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5737), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 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, + [88540] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12165), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [88656] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(11635), 1, + anon_sym_LT, + ACTIONS(11639), 1, + sym_auto, + ACTIONS(11641), 1, + anon_sym_decltype, + STATE(3290), 1, + sym_template_argument_list, + STATE(3847), 1, + sym_decltype_auto, + STATE(6735), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11637), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5661), 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___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7549), 43, + ACTIONS(5669), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -489693,23 +566803,15 @@ 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_SEMI, + anon_sym___attribute__, + 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, @@ -489722,114 +566824,143 @@ 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, - [41993] = 6, + anon_sym_COLON_RBRACK, + [88734] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(10818), 1, anon_sym___attribute__, - ACTIONS(9963), 1, + ACTIONS(10820), 1, anon_sym___attribute, - STATE(4427), 1, + STATE(6211), 1, sym_attribute_specifier, - ACTIONS(7413), 12, + ACTIONS(7692), 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(7415), 43, + ACTIONS(7694), 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___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, - [42065] = 3, + [88802] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 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(7077), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12501), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 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(3233), 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, @@ -489842,38 +566973,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_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, + [88918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 1, - anon_sym_requires, - ACTIONS(8983), 1, - anon_sym_DASH_GT, - STATE(4443), 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(5066), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 20, + ACTIONS(7911), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489883,25 +566986,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 29, + anon_sym_DASH_GT, + ACTIONS(7913), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -489910,6 +567017,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, @@ -489923,89 +567031,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [42209] = 3, + anon_sym_DASH_GT_STAR, + [88980] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, sym_identifier, - sym_literal_suffix, - ACTIONS(8659), 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, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10447), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10449), 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(10451), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5193), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9641), 1, + sym__scope_resolution, + STATE(9888), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 4, 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, - [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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(6602), 5, + anon_sym_COLON, 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_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [89086] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11649), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11647), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11645), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490020,22 +567137,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, - ACTIONS(7791), 31, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(11643), 31, anon_sym_COMMA, - 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_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -490049,32 +567163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [42353] = 9, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [89152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, - anon_sym_requires, - ACTIONS(8880), 1, - anon_sym_DASH_GT, - STATE(4535), 1, - sym_trailing_return_type, - ACTIONS(6742), 2, - 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, + ACTIONS(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + STATE(6218), 1, + sym_attribute_specifier, + ACTIONS(7702), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490084,16 +567193,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), 31, + ACTIONS(7704), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -490101,9 +567212,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_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490111,7 +567221,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, @@ -490125,21 +567234,12 @@ 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, + anon_sym_GT2, + [89220] = 3, 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(4775), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 19, + ACTIONS(7714), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490153,13 +567253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8907), 32, + ACTIONS(7716), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -490169,6 +567270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -490192,25 +567295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [42505] = 9, + [89282] = 6, 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(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + STATE(6325), 1, + sym_attribute_specifier, + ACTIONS(7672), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490220,16 +567314,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(7966), 31, + ACTIONS(7674), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -490237,9 +567333,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_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490247,7 +567342,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, @@ -490261,25 +567355,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [42583] = 9, + anon_sym_DASH_GT, + anon_sym_GT2, + [89350] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(8880), 1, - anon_sym_DASH_GT, - ACTIONS(8931), 1, - anon_sym_requires, - STATE(4549), 1, - sym_trailing_return_type, - ACTIONS(8928), 2, - 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, + ACTIONS(3248), 1, + anon_sym_enum, + ACTIONS(3250), 1, + anon_sym_class, + ACTIONS(3252), 1, + anon_sym_struct, + ACTIONS(3254), 1, + anon_sym_union, + ACTIONS(3280), 1, + sym_auto, + ACTIONS(3282), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11651), 1, + sym_identifier, + ACTIONS(11653), 1, + anon_sym_COLON_COLON, + ACTIONS(11655), 1, + sym_primitive_type, + ACTIONS(11657), 1, + anon_sym_typename, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4341), 1, + sym_template_type, + STATE(4342), 1, + sym_qualified_type_identifier, + STATE(4492), 1, + sym_decltype_auto, + STATE(6172), 1, + sym_type_specifier, + STATE(8086), 1, + sym_splice_specifier, + STATE(9662), 1, + sym_type_descriptor, + STATE(9755), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4495), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5688), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4493), 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, + [89466] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + STATE(6326), 1, + sym_attribute_specifier, + ACTIONS(7680), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490289,16 +567462,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), 31, + ACTIONS(7682), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -490306,9 +567481,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_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490316,7 +567490,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, @@ -490330,24 +567503,18 @@ 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, + anon_sym_GT2, + [89534] = 5, 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(2626), 1, - sym__enum_base_clause, - STATE(2729), 1, - sym_enumerator_list, - STATE(2962), 1, - sym_attribute_specifier, - ACTIONS(8000), 19, + ACTIONS(5198), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11659), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(5188), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490362,23 +567529,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(8002), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(5186), 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, @@ -490392,33 +567555,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [42741] = 9, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [89600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10343), 1, - anon_sym_DASH_GT, - ACTIONS(10406), 1, - anon_sym_requires, - STATE(4481), 1, - sym_trailing_return_type, - ACTIONS(10403), 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(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + STATE(6327), 1, + sym_attribute_specifier, + ACTIONS(7688), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490428,16 +567585,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(8907), 31, + ACTIONS(7690), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -490445,9 +567604,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_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490455,7 +567613,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, @@ -490469,88 +567626,82 @@ 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, + anon_sym_GT2, + [89668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - STATE(4452), 1, - sym_attribute_specifier, - ACTIONS(7427), 12, + ACTIONS(6803), 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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7429), 43, + anon_sym_DASH_GT, + ACTIONS(6805), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [42891] = 8, + anon_sym_DASH_GT_STAR, + [89730] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym___attribute__, - ACTIONS(6766), 1, - anon_sym___attribute, - ACTIONS(6768), 1, + ACTIONS(6411), 1, anon_sym_LBRACK_LBRACK, - STATE(2470), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4827), 2, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(11540), 1, + anon_sym_LBRACK, + STATE(6277), 1, + sym_parameter_list, + STATE(5670), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 17, + ACTIONS(9752), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490564,20 +567715,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(8835), 34, + ACTIONS(9754), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490589,35 +567740,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, - [42967] = 7, + anon_sym_DASH_GT, + [89802] = 3, 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(4791), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 19, + ACTIONS(6799), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490631,13 +567768,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(8915), 32, + ACTIONS(6801), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -490647,7 +567785,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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490670,161 +567810,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43041] = 4, + [89864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7223), 13, + ACTIONS(6807), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7225), 44, + anon_sym_DASH_GT, + ACTIONS(6809), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [43109] = 12, + anon_sym_DASH_GT_STAR, + [89926] = 7, 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, - 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, + ACTIONS(9756), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(5636), 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, + ACTIONS(9778), 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_template, - anon_sym_operator, - [43193] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6700), 1, - anon_sym_requires, - ACTIONS(8318), 1, - anon_sym_DASH_GT, - STATE(4432), 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(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 20, + STATE(2074), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9774), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490834,26 +567890,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(7791), 29, + ACTIONS(9776), 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_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490861,6 +567917,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,377 +567931,235 @@ 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, + [89996] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - STATE(4462), 1, - sym_attribute_specifier, - ACTIONS(7397), 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(7399), 43, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9662), 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, - anon_sym___extension__, - anon_sym_LBRACE, + ACTIONS(10050), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [43343] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - STATE(4463), 1, - sym_attribute_specifier, - ACTIONS(7505), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11548), 1, + anon_sym_AMP_AMP, + ACTIONS(11550), 1, anon_sym_PIPE, + ACTIONS(11554), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(11560), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, - anon_sym_DOT, - 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, + ACTIONS(11566), 1, anon_sym_LT_EQ_GT, - anon_sym_or, + ACTIONS(11570), 1, anon_sym_and, + ACTIONS(11572), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11574), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [43415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7473), 13, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11542), 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, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(10066), 3, anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7475), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(11544), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(11556), 3, 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_requires, - [43481] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4089), 1, - sym_attribute_specifier, - ACTIONS(7547), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11558), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7549), 45, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___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_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, - [43553] = 6, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [90100] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4128), 1, - sym_attribute_specifier, - ACTIONS(7551), 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, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(7553), 45, + ACTIONS(11049), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(11546), 1, anon_sym_PIPE_PIPE, + ACTIONS(11548), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(11550), 1, + anon_sym_PIPE, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, 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, + ACTIONS(11564), 1, anon_sym_QMARK, + ACTIONS(11566), 1, anon_sym_LT_EQ_GT, + ACTIONS(11568), 1, anon_sym_or, + ACTIONS(11570), 1, anon_sym_and, + ACTIONS(11572), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11574), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [43625] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6764), 1, - anon_sym___attribute__, - ACTIONS(6766), 1, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11057), 2, 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, + anon_sym_EQ, + ACTIONS(11542), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(11059), 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, + [90212] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(10052), 1, anon_sym_DOT, + ACTIONS(11550), 1, + anon_sym_PIPE, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11566), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11572), 1, + anon_sym_bitor, + ACTIONS(11574), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8839), 34, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 4, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(10068), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -491256,58 +568171,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [90312] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11546), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11548), 1, + anon_sym_AMP_AMP, + ACTIONS(11550), 1, + anon_sym_PIPE, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11566), 1, anon_sym_LT_EQ_GT, + ACTIONS(11568), 1, anon_sym_or, + ACTIONS(11570), 1, anon_sym_and, + ACTIONS(11572), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11574), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, + ACTIONS(11045), 2, anon_sym___attribute, - STATE(4147), 1, - sym_attribute_specifier, - ACTIONS(7427), 10, + anon_sym_EQ, + ACTIONS(11542), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7429), 45, + ACTIONS(11047), 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, + [90420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7497), 12, + 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_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7495), 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_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, @@ -491321,36 +568304,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, anon_sym_final, anon_sym_override, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - [43773] = 7, + [90482] = 5, 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, + STATE(5040), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11239), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -491365,12 +568340,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(7966), 32, + ACTIONS(7361), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -491380,6 +568352,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, @@ -491392,55 +568365,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, + [90548] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4132), 1, - sym_attribute_specifier, - ACTIONS(7397), 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(7399), 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_LT_LT, - anon_sym_GT_GT, + ACTIONS(3248), 1, + anon_sym_enum, + ACTIONS(3250), 1, + anon_sym_class, + ACTIONS(3252), 1, + anon_sym_struct, + ACTIONS(3254), 1, + anon_sym_union, + ACTIONS(3280), 1, + sym_auto, + ACTIONS(3282), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11651), 1, + sym_identifier, + ACTIONS(11653), 1, + anon_sym_COLON_COLON, + ACTIONS(11655), 1, + sym_primitive_type, + ACTIONS(11657), 1, + anon_sym_typename, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4341), 1, + sym_template_type, + STATE(4342), 1, + sym_qualified_type_identifier, + STATE(4492), 1, + sym_decltype_auto, + STATE(5801), 1, + sym_type_specifier, + STATE(8086), 1, + sym_splice_specifier, + STATE(9662), 1, + sym_type_descriptor, + STATE(9755), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4495), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5689), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4493), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -491452,61 +568462,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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [43919] = 6, + [90664] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4141), 1, - sym_attribute_specifier, - ACTIONS(7505), 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(7507), 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_LT_LT, - anon_sym_GT_GT, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(11470), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -491518,61 +568548,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [90780] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10524), 1, + anon_sym_STAR, + ACTIONS(10526), 1, + anon_sym_AMP_AMP, + ACTIONS(10528), 1, + anon_sym_AMP, + ACTIONS(10530), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5394), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9586), 1, + sym__scope_resolution, + STATE(9917), 1, + sym__abstract_declarator, + ACTIONS(8786), 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, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6616), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6618), 5, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_final, anon_sym_override, anon_sym_requires, - [43991] = 6, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [90886] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4055), 1, - sym_attribute_specifier, - ACTIONS(7423), 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(7425), 45, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(10524), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10526), 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(10528), 1, + anon_sym_AMP, + ACTIONS(10530), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5394), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9586), 1, + sym__scope_resolution, + STATE(9882), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5329), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6608), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6610), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -491584,58 +568710,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [90992] = 30, + 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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5657), 1, + anon_sym_typename, + ACTIONS(6640), 1, + sym_identifier, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4770), 1, + sym_splice_specifier, + STATE(5466), 1, + sym_type_specifier, + STATE(9293), 1, + sym_type_descriptor, + STATE(9769), 1, + sym__scope_resolution, + ACTIONS(71), 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, - anon_sym_requires, - [44063] = 11, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5621), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 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, + [91108] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10409), 1, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, sym_identifier, - ACTIONS(10419), 1, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, sym_primitive_type, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4711), 1, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10416), 2, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6851), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9293), 1, + sym_type_descriptor, + STATE(9836), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4395), 2, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5707), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(10414), 4, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7249), 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(10411), 13, + STATE(3233), 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, @@ -491649,152 +568882,115 @@ static const uint16_t ts_small_parse_table[] = { 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_LBRACK, - anon_sym_static, - 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, + [91224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4068), 1, - sym_attribute_specifier, - ACTIONS(7431), 10, + ACTIONS(9279), 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_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7433), 45, + anon_sym_DASH_GT, + ACTIONS(9281), 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___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, anon_sym_final, anon_sym_override, anon_sym_requires, - [44217] = 6, + anon_sym_DASH_GT_STAR, + [91286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4078), 1, - sym_attribute_specifier, - ACTIONS(7435), 10, + ACTIONS(5623), 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_const, + 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(7437), 45, + ACTIONS(5625), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -491804,176 +569000,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44289] = 6, + [91348] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4084), 1, - sym_attribute_specifier, - ACTIONS(7453), 10, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11566), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11574), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11542), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7455), 45, + ACTIONS(10066), 5, + anon_sym_PIPE, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(10068), 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___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_SEMI, + anon_sym___attribute__, 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, - [44361] = 6, + [91444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, + ACTIONS(10818), 1, anon_sym___attribute__, - ACTIONS(10077), 1, + ACTIONS(10820), 1, anon_sym___attribute, - STATE(4115), 1, + STATE(6379), 1, sym_attribute_specifier, - ACTIONS(7521), 10, + ACTIONS(7706), 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_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7523), 45, + ACTIONS(7708), 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___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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [44433] = 6, + anon_sym_GT2, + [91512] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4122), 1, - sym_attribute_specifier, - ACTIONS(7531), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10524), 1, + anon_sym_STAR, + ACTIONS(10526), 1, + anon_sym_AMP_AMP, + ACTIONS(10528), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7533), 45, - anon_sym_DOT_DOT_DOT, + ACTIONS(10530), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5394), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9586), 1, + sym__scope_resolution, + STATE(9884), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 4, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6614), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -491985,105 +569219,75 @@ 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_requires, - [44505] = 3, + [91618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 19, - aux_sym_preproc_elif_token1, + ACTIONS(7472), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8752), 39, + anon_sym_DASH_GT, + ACTIONS(7474), 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_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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6744), 1, - anon_sym_requires, - ACTIONS(8440), 1, - anon_sym_DASH_GT, - STATE(4534), 1, - sym_trailing_return_type, - 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, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [91680] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + STATE(6380), 1, + sym_attribute_specifier, + ACTIONS(7570), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492093,16 +569297,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(7966), 31, + ACTIONS(7572), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -492110,9 +569316,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_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492120,7 +569325,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, @@ -492134,41 +569338,162 @@ 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, + anon_sym_GT2, + [91748] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10421), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(10431), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10447), 1, + anon_sym_STAR, + ACTIONS(10449), 1, + anon_sym_AMP_AMP, + ACTIONS(10451), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5193), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9641), 1, + sym__scope_resolution, + STATE(9855), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6616), 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(6618), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [91854] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3280), 1, + sym_auto, + ACTIONS(3282), 1, + anon_sym_decltype, + ACTIONS(3300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3778), 1, + anon_sym_enum, + ACTIONS(3780), 1, + anon_sym_class, + ACTIONS(3782), 1, + anon_sym_struct, + ACTIONS(3784), 1, + anon_sym_union, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11655), 1, sym_primitive_type, - STATE(4333), 1, + ACTIONS(11661), 1, + sym_identifier, + ACTIONS(11663), 1, + anon_sym_COLON_COLON, + ACTIONS(11665), 1, + anon_sym_typename, + STATE(2570), 1, + sym_type_specifier, + STATE(2870), 1, sym_alignas_qualifier, - STATE(5041), 1, + STATE(3339), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10428), 2, + STATE(4129), 1, + sym_splice_specifier, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4341), 1, + sym_template_type, + STATE(4342), 1, + sym_qualified_type_identifier, + STATE(4492), 1, + sym_decltype_auto, + STATE(7576), 1, + sym_type_descriptor, + STATE(9761), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4109), 2, + STATE(4495), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5692), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(10426), 4, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3244), 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, + STATE(4493), 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, @@ -492182,79 +569507,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7207), 22, - anon_sym_AMP, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [44731] = 12, + [91970] = 3, 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, + ACTIONS(9892), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9427), 27, + anon_sym_DASH_GT, + ACTIONS(9894), 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, @@ -492262,6 +569548,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, @@ -492275,23 +569562,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, - anon_sym_GT2, - [44815] = 7, - 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(4840), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 19, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [92032] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11667), 1, + anon_sym_LBRACK, + STATE(6169), 1, + sym_parameter_list, + STATE(5684), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9812), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492301,27 +569590,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(7791), 32, + ACTIONS(9814), 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, @@ -492329,7 +569615,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, @@ -492343,114 +569628,224 @@ 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [92104] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10447), 1, + anon_sym_STAR, + ACTIONS(10449), 1, + anon_sym_AMP_AMP, + ACTIONS(10451), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5193), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9641), 1, + sym__scope_resolution, + STATE(9930), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5408), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6608), 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(6610), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [92210] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 13, + ACTIONS(10639), 1, + anon_sym_decltype, + ACTIONS(11462), 1, + sym_auto, + STATE(6390), 1, + sym_decltype_auto, + ACTIONS(7359), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7773), 44, + ACTIONS(7361), 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___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, - [44954] = 13, + [92278] = 30, 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, - anon_sym_SEMI, - STATE(4722), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11593), 1, + sym_identifier, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(11599), 1, + sym_primitive_type, + ACTIONS(11601), 1, + anon_sym_enum, + ACTIONS(11603), 1, + anon_sym_class, + ACTIONS(11605), 1, + anon_sym_struct, + ACTIONS(11607), 1, + anon_sym_union, + ACTIONS(11609), 1, + anon_sym_typename, + ACTIONS(11611), 1, + sym_auto, + ACTIONS(11613), 1, + anon_sym_decltype, + STATE(2870), 1, sym_alignas_qualifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, + STATE(5476), 1, + sym_type_specifier, + STATE(6894), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7345), 1, + sym_splice_specifier, + STATE(7520), 1, + sym_template_type, + STATE(7521), 1, + sym_qualified_type_identifier, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8014), 1, + sym_decltype_auto, + STATE(9662), 1, + sym_type_descriptor, + STATE(9795), 1, + sym__scope_resolution, + ACTIONS(71), 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, + STATE(5693), 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(8230), 13, + aux_sym__type_definition_type_repeat1, + STATE(8016), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8015), 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, @@ -492464,93 +569859,40 @@ 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, - [45039] = 25, + [92394] = 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(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, + ACTIONS(9925), 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(10435), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(10437), 17, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9927), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492562,82 +569904,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45148] = 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(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, - 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [92456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9935), 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(9826), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(9828), 15, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9937), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -492648,77 +569963,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45261] = 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(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(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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [92518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9703), 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(9707), 7, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, - sym_identifier, - ACTIONS(9709), 18, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9705), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492730,75 +570022,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45366] = 21, - 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [92580] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9703), 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(9707), 8, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - sym_identifier, - ACTIONS(9709), 19, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9705), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492810,74 +570081,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45467] = 20, - 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [92642] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + anon_sym_LBRACE, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11633), 1, + anon_sym_LBRACK, + STATE(5734), 1, + sym_new_declarator, + STATE(6512), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9672), 18, anon_sym_DASH, anon_sym_PLUS, - 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(9707), 10, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, + 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, - sym_identifier, - ACTIONS(9709), 19, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9674), 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_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, @@ -492889,135 +570148,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7639), 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(7641), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [45631] = 19, + [92714] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9756), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9778), 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, - 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(2074), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9780), 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___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, - sym_identifier, - ACTIONS(9709), 19, + anon_sym_DOT, + ACTIONS(9782), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_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, @@ -493029,72 +570211,145 @@ 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, + [92784] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 1, + anon_sym_enum, + ACTIONS(4116), 1, + anon_sym_class, + ACTIONS(4118), 1, + anon_sym_struct, + ACTIONS(4120), 1, + anon_sym_union, + ACTIONS(4124), 1, + sym_auto, + ACTIONS(4126), 1, + anon_sym_decltype, + ACTIONS(4128), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11669), 1, + sym_identifier, + ACTIONS(11671), 1, + anon_sym_COLON_COLON, + ACTIONS(11673), 1, + sym_primitive_type, + ACTIONS(11675), 1, + anon_sym_typename, + STATE(2138), 1, + sym_type_specifier, + STATE(2389), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2836), 1, + sym_splice_specifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2890), 1, + sym__splice_specialization_specifier, + STATE(2982), 1, + sym_template_type, + STATE(2983), 1, + sym_qualified_type_identifier, + STATE(3336), 1, + sym_decltype_auto, + STATE(6316), 1, + sym_type_descriptor, + STATE(9817), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3338), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5694), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4110), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3337), 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, + [92900] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11667), 1, + anon_sym_LBRACK, + STATE(6169), 1, + sym_parameter_list, + STATE(5684), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9760), 20, 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_PLUS, 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_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, - sym_identifier, - ACTIONS(9709), 19, + anon_sym_DOT, + ACTIONS(9762), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -493102,45 +570357,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45823] = 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, + [92972] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(4254), 1, + anon_sym_enum, + ACTIONS(4256), 1, + anon_sym_class, + ACTIONS(4258), 1, + anon_sym_struct, + ACTIONS(4260), 1, + anon_sym_union, + ACTIONS(4286), 1, + sym_auto, + ACTIONS(4288), 1, + anon_sym_decltype, + ACTIONS(4304), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11677), 1, + sym_identifier, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6608), 45, - anon_sym_AMP, + ACTIONS(11681), 1, + sym_primitive_type, + ACTIONS(11683), 1, + anon_sym_typename, + STATE(2571), 1, + sym_type_specifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3348), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4119), 1, + sym_splice_specifier, + STATE(4182), 1, + sym__splice_specialization_specifier, + STATE(4542), 1, + sym_template_type, + STATE(4544), 1, + sym_qualified_type_identifier, + STATE(4766), 1, + sym_decltype_auto, + STATE(7464), 1, + sym_type_descriptor, + STATE(9844), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4774), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5695), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4250), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4771), 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, @@ -493153,56 +570458,143 @@ 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [45888] = 3, + [93088] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9756), 1, anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2074), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9784), 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(9786), 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, + [93158] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + anon_sym_enum, + ACTIONS(4369), 1, + anon_sym_class, + ACTIONS(4371), 1, + anon_sym_struct, + ACTIONS(4373), 1, + anon_sym_union, + ACTIONS(4379), 1, + sym_auto, + ACTIONS(4381), 1, + anon_sym_decltype, + ACTIONS(4383), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11687), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6616), 45, - anon_sym_AMP, + ACTIONS(11689), 1, + sym_primitive_type, + ACTIONS(11691), 1, + anon_sym_typename, + STATE(2114), 1, + sym_type_specifier, + STATE(2340), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2860), 1, + sym_template_type, + STATE(2861), 1, + sym_qualified_type_identifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2979), 1, + sym_decltype_auto, + STATE(5719), 1, + sym_type_descriptor, + STATE(9746), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2981), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5697), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4363), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2980), 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, @@ -493215,56 +570607,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_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, - [45953] = 3, + [93274] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3868), 1, + anon_sym_enum, + ACTIONS(3870), 1, + anon_sym_class, + ACTIONS(3872), 1, + anon_sym_struct, + ACTIONS(3874), 1, + anon_sym_union, + ACTIONS(3880), 1, + sym_auto, + ACTIONS(3882), 1, + anon_sym_decltype, + ACTIONS(3884), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11693), 1, + sym_identifier, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6620), 45, - anon_sym_AMP, + ACTIONS(11697), 1, + sym_primitive_type, + ACTIONS(11699), 1, + anon_sym_typename, + STATE(2117), 1, + sym_type_specifier, + STATE(2337), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2640), 1, + sym_splice_specifier, + STATE(2685), 1, + sym__splice_specialization_specifier, + STATE(2852), 1, + sym_template_type, + STATE(2853), 1, + sym_qualified_type_identifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3034), 1, + sym_decltype_auto, + STATE(5715), 1, + sym_type_descriptor, + STATE(9759), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3036), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5698), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3864), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3035), 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, @@ -493277,85 +570693,43 @@ 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [46018] = 16, + [93390] = 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(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, + ACTIONS(7739), 20, 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_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_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9709), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7741), 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_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -493367,68 +570741,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46109] = 14, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [93452] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(2970), 1, + anon_sym_LBRACE, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11703), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10461), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(5536), 1, + sym_new_declarator, + STATE(6560), 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(10439), 2, + sym_initializer_list, + ACTIONS(9697), 20, 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(9707), 18, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_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, - sym_identifier, - ACTIONS(9709), 22, + anon_sym_DOT, + ACTIONS(9699), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -493436,83 +570801,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [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_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_GT2, + [93524] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2074), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9788), 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(10473), 6, - aux_sym_preproc_elif_token1, + 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, - sym_identifier, - ACTIONS(10475), 17, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9790), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_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, @@ -493524,145 +570868,91 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - 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_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, + [93594] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10481), 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, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, + anon_sym_class, + ACTIONS(3740), 1, + anon_sym_struct, + ACTIONS(3742), 1, + anon_sym_union, + ACTIONS(3764), 1, anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, - anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11705), 1, + sym_identifier, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(11709), 1, + anon_sym_typename, + STATE(2433), 1, + sym_type_specifier, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(5908), 1, + sym_type_descriptor, + STATE(9763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5700), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - 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, @@ -493675,189 +570965,139 @@ 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, - [46501] = 3, + [93710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7655), 13, + ACTIONS(7290), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, - anon_sym_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_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, - [46566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7647), 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(7649), 44, + anon_sym_DASH_GT, + ACTIONS(7292), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [46631] = 12, + anon_sym_DASH_GT_STAR, + [93772] = 30, 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, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, + anon_sym_class, + ACTIONS(3740), 1, + anon_sym_struct, + ACTIONS(3742), 1, + anon_sym_union, + ACTIONS(3764), 1, anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, - anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11705), 1, + sym_identifier, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(11709), 1, + anon_sym_typename, + STATE(2373), 1, + sym_type_specifier, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(5908), 1, + sym_type_descriptor, + STATE(9763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5701), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - 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, @@ -493870,85 +571110,74 @@ 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, - [46714] = 25, + [93888] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(10443), 1, + ACTIONS(11546), 1, anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, + ACTIONS(11548), 1, anon_sym_AMP_AMP, - ACTIONS(10457), 1, + ACTIONS(11550), 1, + anon_sym_PIPE, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, anon_sym_GT_EQ, - ACTIONS(10461), 1, + ACTIONS(11566), 1, anon_sym_LT_EQ_GT, - ACTIONS(10463), 1, + ACTIONS(11568), 1, anon_sym_or, - ACTIONS(10465), 1, + ACTIONS(11570), 1, anon_sym_and, - ACTIONS(10467), 1, - anon_sym_not_eq, - STATE(3874), 1, + ACTIONS(11572), 1, + anon_sym_bitor, + ACTIONS(11574), 1, + anon_sym_bitand, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11061), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(11542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10447), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10449), 2, + ACTIONS(11552), 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(11562), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(11544), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10485), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(10487), 17, + ACTIONS(11063), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -493960,39 +571189,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46823] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [93996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7663), 13, + ACTIONS(7790), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7665), 44, + anon_sym_DASH_GT, + ACTIONS(7792), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [94058] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 1, + anon_sym_enum, + ACTIONS(3838), 1, + anon_sym_class, + ACTIONS(3840), 1, + anon_sym_struct, + ACTIONS(3842), 1, + anon_sym_union, + ACTIONS(3848), 1, + sym_auto, + ACTIONS(3850), 1, + anon_sym_decltype, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11615), 1, + sym_identifier, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(11619), 1, + sym_primitive_type, + ACTIONS(11621), 1, + anon_sym_typename, + STATE(2069), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2082), 1, + sym_type_specifier, + STATE(2228), 1, + sym_template_type, + STATE(2229), 1, + sym_qualified_type_identifier, + STATE(2255), 1, + sym_splice_specifier, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3958), 1, + sym_type_descriptor, + STATE(9811), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2345), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5702), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3832), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2339), 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, @@ -494004,100 +571337,131 @@ 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, + [94174] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LBRACE, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11703), 1, + anon_sym_LBRACK, + STATE(5591), 1, + sym_new_declarator, + STATE(6549), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9672), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(9674), 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_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [46888] = 27, + [94246] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(10443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, - anon_sym_AMP_AMP, - ACTIONS(10457), 1, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, anon_sym_GT_EQ, - ACTIONS(10461), 1, + ACTIONS(11566), 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, + ACTIONS(11574), 1, + anon_sym_bitand, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11542), 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(11562), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(11544), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10489), 6, - aux_sym_preproc_elif_token1, + ACTIONS(10066), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(10491), 15, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10068), 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_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -494108,21 +571472,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47001] = 7, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + [94340] = 5, 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(11717), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11715), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11713), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -494132,95 +571495,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(7791), 30, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(11711), 31, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [47074] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [94406] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 13, + ACTIONS(11719), 1, + anon_sym_LBRACK_LBRACK, + STATE(5363), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7669), 44, + anon_sym_DASH_GT, + ACTIONS(9440), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___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_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, @@ -494231,85 +571594,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_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [47139] = 3, + anon_sym_DASH_GT_STAR, + [94472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 13, + ACTIONS(6795), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7673), 44, + anon_sym_DASH_GT, + ACTIONS(6797), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, + anon_sym_DASH_GT_STAR, + [94534] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(3038), 1, + anon_sym_LBRACE, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(11633), 1, anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10210), 19, + STATE(5782), 1, + sym_new_declarator, + STATE(6615), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9658), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -494323,24 +571685,20 @@ 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(9660), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -494363,223 +571721,257 @@ 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, + [94606] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12985), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [94722] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 13, + ACTIONS(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + STATE(6173), 1, + sym_attribute_specifier, + ACTIONS(7676), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7733), 44, + ACTIONS(7678), 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___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, - [47342] = 3, + [94790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 13, + ACTIONS(7621), 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(7653), 44, + anon_sym_DASH_GT, + ACTIONS(7623), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_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, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [47407] = 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(10493), 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, - [47492] = 3, + anon_sym_DASH_GT_STAR, + [94852] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7659), 13, + STATE(4489), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3912), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3918), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9519), 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___attribute, - anon_sym_const, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7661), 44, + sym_identifier, + sym_literal_suffix, + ACTIONS(9517), 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, @@ -494588,60 +571980,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_GT, anon_sym_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, + [94920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 13, + STATE(4489), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3912), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3918), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9519), 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_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(7225), 44, + sym_literal_suffix, + ACTIONS(9517), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -494650,11 +572038,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_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, + [94988] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12710), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -494666,67 +572138,63 @@ 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, - [47622] = 7, + [95104] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10186), 19, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11566), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11542), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(10066), 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(10184), 34, + ACTIONS(10068), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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, @@ -494741,30 +572209,20 @@ 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_COLON_RBRACK, - [47695] = 7, + [95194] = 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, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2074), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9792), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -494774,26 +572232,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(7966), 30, + ACTIONS(9794), 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_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -494801,6 +572259,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, @@ -494815,294 +572274,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [47768] = 3, + [95264] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12993), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [95380] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 13, + ACTIONS(2970), 1, + anon_sym_LBRACE, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11703), 1, + anon_sym_LBRACK, + STATE(5636), 1, + sym_new_declarator, + STATE(6524), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9658), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7769), 44, + ACTIONS(9660), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [47833] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10495), 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, - [47916] = 12, - 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__, - 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, - [47999] = 12, + [95452] = 6, 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_final, - anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(10818), 1, 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, - 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(10820), 1, + anon_sym___attribute, + STATE(6208), 1, + sym_attribute_specifier, + ACTIONS(7574), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495112,28 +572443,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_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(7576), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -495141,7 +572471,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,19 +572485,22 @@ 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, + [95520] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11456), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(11667), 1, anon_sym_LBRACK, - STATE(1957), 1, + STATE(6169), 1, sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10194), 19, + STATE(5684), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9770), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495178,28 +572510,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_COLON, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10192), 34, + ACTIONS(9772), 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -495207,7 +572535,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, @@ -495222,94 +572549,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [48228] = 13, + anon_sym_GT2, + [95592] = 6, 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, - anon_sym_SEMI, - STATE(4722), 1, - sym_alignas_qualifier, - ACTIONS(8236), 2, + ACTIONS(10818), 1, anon_sym___attribute__, + ACTIONS(10820), 1, 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, + STATE(6304), 1, 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, - [48313] = 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(5066), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 20, + ACTIONS(7578), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495330,7 +572580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 30, + ACTIONS(7580), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -495338,6 +572588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -495361,12 +572612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [48386] = 4, + [95660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10503), 1, - anon_sym_LPAREN2, - ACTIONS(9027), 19, + ACTIONS(9861), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495380,23 +572629,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_LBRACK, anon_sym_EQ, - anon_sym___asm, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9029), 37, + ACTIONS(9863), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -495408,109 +572657,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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_final, anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [48453] = 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(10505), 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, - [48538] = 7, + [95722] = 3, 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(9865), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495520,25 +572684,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(8907), 30, + anon_sym_DASH_GT, + ACTIONS(9867), 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, @@ -495547,6 +572712,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, @@ -495560,26 +572726,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, - anon_sym_GT2, - [48611] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [95784] = 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(2728), 1, - sym__enum_base_clause, - STATE(2886), 1, - sym_enumerator_list, - STATE(3217), 1, - sym_attribute_specifier, - ACTIONS(8000), 20, + ACTIONS(9869), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495589,25 +572743,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(8002), 30, + anon_sym_DASH_GT, + ACTIONS(9871), 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, @@ -495616,6 +572771,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, @@ -495629,103 +572785,144 @@ 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, - [48690] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [95846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 13, + ACTIONS(9888), 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(7719), 44, + anon_sym_DASH_GT, + ACTIONS(9890), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_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, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [48755] = 3, + anon_sym_DASH_GT_STAR, + [95908] = 30, 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, + 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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5657), 1, + anon_sym_typename, + ACTIONS(6640), 1, + sym_identifier, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4770), 1, + sym_splice_specifier, + STATE(4861), 1, + sym_type_specifier, + STATE(9293), 1, + sym_type_descriptor, + STATE(9769), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5735), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -495737,39 +572934,15 @@ 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, - [48820] = 7, + [96024] = 5, 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(5074), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 20, + ACTIONS(7081), 1, + anon_sym_LBRACK_LBRACK, + STATE(5363), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9393), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495779,26 +572952,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(8915), 30, + anon_sym_DASH_GT, + ACTIONS(9395), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -495806,54 +572977,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [48893] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [96090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 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(7745), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11729), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(11725), 4, 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, + ACTIONS(11727), 5, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(11732), 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(11722), 31, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + 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, @@ -495867,75 +573054,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [96158] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10447), 1, + anon_sym_STAR, + ACTIONS(10449), 1, + anon_sym_AMP_AMP, + ACTIONS(10451), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5193), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9641), 1, + sym__scope_resolution, + STATE(9852), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(5970), 5, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [48958] = 12, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96264] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10509), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10516), 1, + anon_sym_STAR, + ACTIONS(10518), 1, + anon_sym_AMP_AMP, + ACTIONS(10520), 1, + anon_sym_AMP, + ACTIONS(10522), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5245), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9600), 1, + sym__scope_resolution, + STATE(9856), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5389), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6604), 4, + anon_sym_RPAREN, 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_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(6606), 5, + anon_sym_COLON, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96370] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10938), 1, anon_sym___attribute__, + ACTIONS(10941), 1, anon_sym___attribute, - ACTIONS(7237), 7, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11625), 1, + anon_sym_requires, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8413), 1, + sym__function_attributes_start, + STATE(8554), 1, + sym_ref_qualifier, + STATE(9403), 1, + sym_trailing_return_type, + STATE(9518), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9650), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8659), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96486] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10516), 1, anon_sym_STAR, + ACTIONS(10518), 1, anon_sym_AMP_AMP, + ACTIONS(10520), 1, + anon_sym_AMP, + ACTIONS(10522), 1, anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5245), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9600), 1, + sym__scope_resolution, + STATE(9913), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6616), 4, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, - anon_sym_AMP, + anon_sym_LBRACE, + ACTIONS(6618), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -495948,66 +573386,405 @@ 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, + [96592] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_decltype, + ACTIONS(5194), 1, anon_sym_template, - anon_sym_operator, - [49041] = 12, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10516), 1, + anon_sym_STAR, + ACTIONS(10518), 1, + anon_sym_AMP_AMP, + ACTIONS(10520), 1, + anon_sym_AMP, + ACTIONS(10522), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5245), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9600), 1, + sym__scope_resolution, + STATE(9916), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5392), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6608), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(6610), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96698] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10511), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10516), 1, + anon_sym_STAR, + ACTIONS(10518), 1, + anon_sym_AMP_AMP, + ACTIONS(10520), 1, + anon_sym_AMP, + ACTIONS(10522), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5245), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9600), 1, + sym__scope_resolution, + STATE(9851), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 4, + anon_sym_RPAREN, 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_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5970), 5, + anon_sym_COLON, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7237), 7, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96804] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10516), 1, anon_sym_STAR, + ACTIONS(10518), 1, anon_sym_AMP_AMP, + ACTIONS(10520), 1, + anon_sym_AMP, + ACTIONS(10522), 1, anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5245), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9600), 1, + sym__scope_resolution, + STATE(9857), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 4, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(6614), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [96910] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10516), 1, + anon_sym_STAR, + ACTIONS(10518), 1, + anon_sym_AMP_AMP, + ACTIONS(10520), 1, anon_sym_AMP, + ACTIONS(10522), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5245), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9600), 1, + sym__scope_resolution, + STATE(9922), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(6602), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [97016] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 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(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10938), 1, + anon_sym___attribute__, + ACTIONS(10941), 1, + anon_sym___attribute, + ACTIONS(10947), 1, anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(11736), 1, + anon_sym_requires, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8425), 1, + sym__function_attributes_start, + STATE(8549), 1, + sym_ref_qualifier, + STATE(9410), 1, + sym_trailing_return_type, + STATE(9448), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11484), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9650), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8687), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(10936), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -496019,107 +573796,204 @@ 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, - [49124] = 3, + [97132] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 13, + ACTIONS(6411), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(11540), 1, + anon_sym_LBRACK, + STATE(6277), 1, + sym_parameter_list, + STATE(5670), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + 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_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(9762), 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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [49189] = 3, + [97204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 13, + ACTIONS(7818), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7777), 44, + anon_sym_DASH_GT, + ACTIONS(7820), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [97266] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12940), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -496131,33 +574005,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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [49254] = 5, + [97382] = 3, 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(6791), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -496178,7 +574029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9075), 34, + ACTIONS(6793), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -496188,6 +574039,9 @@ 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_LBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -496209,167 +574063,142 @@ 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, - [49323] = 3, + [97444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10518), 26, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, + ACTIONS(6822), 2, 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__, - 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, + anon_sym_LBRACE, + ACTIONS(6824), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7571), 44, + anon_sym_DASH_GT, + ACTIONS(6817), 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___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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [49453] = 3, + anon_sym_DASH_GT_STAR, + [97508] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 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(7757), 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(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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5184), 1, + sym_identifier, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5192), 1, + anon_sym_typename, + ACTIONS(5194), 1, + anon_sym_template, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4349), 1, + sym_splice_specifier, + STATE(5387), 1, + sym_type_specifier, + STATE(9293), 1, + sym_type_descriptor, + STATE(9818), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5714), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -496381,119 +574210,140 @@ 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, - [49518] = 3, + [97624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7759), 13, + ACTIONS(6811), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7761), 44, + anon_sym_DASH_GT, + ACTIONS(6813), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [49583] = 3, + anon_sym_DASH_GT_STAR, + [97686] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 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(7765), 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(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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(5835), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9662), 1, + sym_type_descriptor, + STATE(9836), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5736), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -496505,57 +574355,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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [49648] = 3, + [97802] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 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(7587), 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(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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5184), 1, + sym_identifier, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5192), 1, + anon_sym_typename, + ACTIONS(5194), 1, + anon_sym_template, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4349), 1, + sym_splice_specifier, + STATE(5645), 1, + sym_type_specifier, + STATE(9293), 1, + sym_type_descriptor, + STATE(9818), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5744), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -496567,59 +574441,75 @@ 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, - [49713] = 3, + [97918] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(10524), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(10526), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10528), 1, + anon_sym_AMP, + ACTIONS(10530), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5394), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9586), 1, + sym__scope_resolution, + STATE(9862), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6632), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(5970), 5, 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_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -496632,54 +574522,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_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, - [49778] = 3, + [98024] = 30, 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, - 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, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(5612), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9662), 1, + sym_type_descriptor, + STATE(9836), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5730), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -496691,71 +574608,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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, + [98140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 13, + ACTIONS(7081), 1, + anon_sym_LBRACK_LBRACK, + STATE(5363), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7609), 44, + anon_sym_DASH_GT, + ACTIONS(9222), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___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_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, @@ -496766,63 +574665,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [49908] = 3, + anon_sym_DASH_GT_STAR, + [98206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 13, + 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7625), 44, + ACTIONS(5621), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -496831,41 +574727,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [49973] = 3, + [98268] = 25, 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, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7781), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10447), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10449), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(10451), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5193), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9641), 1, + sym__scope_resolution, + STATE(9896), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, + ACTIONS(6614), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -496877,28 +574809,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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, + [98374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 19, + ACTIONS(9329), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -496912,13 +574826,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_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(9331), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -496928,8 +574842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -496941,55 +574854,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, + [98436] = 30, 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, - 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, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12418), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -497001,39 +574954,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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, + [98552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8324), 1, - anon_sym_requires, - ACTIONS(8321), 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(9329), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497043,25 +574967,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), 30, + anon_sym_DASH_GT, + ACTIONS(9331), 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, @@ -497070,6 +574995,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, @@ -497083,23 +575009,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, - anon_sym_GT2, - [50241] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8435), 1, - anon_sym_requires, - ACTIONS(8432), 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_requires, + anon_sym_DASH_GT_STAR, + [98614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9329), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497109,25 +575026,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), 30, + anon_sym_DASH_GT, + ACTIONS(9331), 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, @@ -497136,6 +575054,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, @@ -497149,41 +575068,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_GT2, - [50314] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [98676] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 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(7567), 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(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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(11988), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -497195,39 +575158,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [98792] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, + anon_sym_class, + ACTIONS(3740), 1, + anon_sym_struct, + ACTIONS(3742), 1, + anon_sym_union, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11705), 1, + sym_identifier, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(11709), 1, + anon_sym_typename, + STATE(2362), 1, + sym_type_specifier, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(5908), 1, + sym_type_descriptor, + STATE(9763), 1, + sym__scope_resolution, + ACTIONS(71), 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, - anon_sym_GT2, - anon_sym_requires, - [50379] = 7, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5678), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [98908] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8989), 1, - anon_sym_requires, - 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(7447), 1, + anon_sym_LBRACE, + ACTIONS(7987), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7444), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7449), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497237,25 +575266,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(8422), 30, + anon_sym_DASH_GT, + ACTIONS(7454), 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, @@ -497264,6 +575292,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, @@ -497277,23 +575306,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [50452] = 7, + anon_sym_DASH_GT_STAR, + [98978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10400), 1, - anon_sym_requires, - 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, + ACTIONS(10674), 1, + anon_sym_decltype, + ACTIONS(11478), 1, + sym_auto, + STATE(6205), 1, + sym_decltype_auto, + ACTIONS(7359), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497303,18 +575326,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(7361), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -497322,7 +575343,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_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497330,6 +575354,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 +575369,102 @@ 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, + [99046] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10523), 1, - anon_sym_requires, - ACTIONS(10520), 2, - anon_sym_final, - anon_sym_override, - STATE(4705), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5074), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 20, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12349), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [99162] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + STATE(6244), 1, + sym_attribute_specifier, + ACTIONS(7574), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497369,18 +575474,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), 30, + ACTIONS(7576), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -497388,7 +575491,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_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497396,6 +575502,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, @@ -497410,131 +575517,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [50598] = 12, + [99230] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10526), 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, + 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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - anon_sym_operator, - [50681] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10528), 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, + ACTIONS(5657), 1, + anon_sym_typename, + ACTIONS(6640), 1, + sym_identifier, + ACTIONS(8222), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, - anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4725), 1, + sym_type_specifier, + STATE(4770), 1, + sym_splice_specifier, + STATE(9293), 1, + sym_type_descriptor, + STATE(9769), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5742), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 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___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - 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, @@ -497547,27 +575603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [50764] = 7, + [99346] = 6, 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(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + STATE(6251), 1, + sym_attribute_specifier, + ACTIONS(7578), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497586,7 +575631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 32, + ACTIONS(7580), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -497595,6 +575640,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, @@ -497619,21 +575665,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [50837] = 7, + [99414] = 16, 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, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11566), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11558), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 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(10068), 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, + [99502] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11546), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11548), 1, + anon_sym_AMP_AMP, + ACTIONS(11550), 1, + anon_sym_PIPE, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11566), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11568), 1, + anon_sym_or, + ACTIONS(11570), 1, + anon_sym_and, + ACTIONS(11572), 1, + anon_sym_bitor, + ACTIONS(11574), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11075), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(11542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11077), 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, + [99610] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12476), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [99726] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12077), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [99842] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2074), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9796), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497647,22 +576016,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 32, + ACTIONS(9798), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497685,21 +576054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [50910] = 7, + [99912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8931), 1, - anon_sym_requires, - ACTIONS(8928), 2, - 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, + ACTIONS(8285), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497718,9 +576076,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 32, + anon_sym_DASH_GT, + ACTIONS(8287), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -497728,7 +576088,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, @@ -497750,19 +576109,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [50983] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [99974] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12613), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [100090] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + anon_sym_LBRACE, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(11633), 1, anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10206), 19, + STATE(5651), 1, + sym_new_declarator, + STATE(6575), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9666), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497776,13 +576227,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(10204), 34, + ACTIONS(9668), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -497790,8 +576240,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, @@ -497814,13 +576263,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, - [51056] = 3, + [100162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 19, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(6216), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9832), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497834,24 +576287,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(8940), 38, + ACTIONS(9834), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497863,102 +576314,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [51121] = 6, + [100230] = 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(5657), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9756), 1, 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(7371), 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, + ACTIONS(9778), 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_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [51192] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10533), 1, - anon_sym_requires, - ACTIONS(10530), 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, + STATE(2074), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9800), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497972,22 +576350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8915), 32, + ACTIONS(9802), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498010,18 +576388,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [51265] = 7, + [100300] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11456), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(11667), 1, anon_sym_LBRACK, - STATE(1957), 1, + STATE(6169), 1, sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10198), 19, + STATE(5684), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9752), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498031,28 +576412,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_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(9754), 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498060,7 +576437,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,22 +576451,17 @@ 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, + [100372] = 5, 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(4649), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 22, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(5278), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9499), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -498100,8 +576471,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_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -498110,10 +576482,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, - ACTIONS(8835), 28, + ACTIONS(9501), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -498135,6 +576505,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_LT_EQ_GT, anon_sym_DASH_DASH, @@ -498142,49 +576513,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [51411] = 7, + [100438] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10202), 19, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11546), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11548), 1, + anon_sym_AMP_AMP, + ACTIONS(11550), 1, + anon_sym_PIPE, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11566), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11568), 1, + anon_sym_or, + ACTIONS(11570), 1, + anon_sym_and, + ACTIONS(11572), 1, + anon_sym_bitor, + ACTIONS(11574), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11079), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(11542), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, 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(10200), 34, + ACTIONS(11081), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498199,85 +576595,96 @@ 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_COLON_RBRACK, - [51484] = 7, + [100546] = 30, 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, - anon_sym_DASH, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, 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, - [51557] = 3, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12595), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [100662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 19, + ACTIONS(9707), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498291,13 +576698,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_LBRACK, anon_sym_EQ, - anon_sym___asm, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8981), 38, + ACTIONS(9709), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -498307,8 +576714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498320,69 +576726,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [51622] = 10, + [100724] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(8293), 1, - anon_sym___attribute__, - ACTIONS(8295), 1, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(11994), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [100840] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11546), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11548), 1, + anon_sym_AMP_AMP, + ACTIONS(11550), 1, + anon_sym_PIPE, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11566), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11568), 1, + anon_sym_or, + ACTIONS(11570), 1, + anon_sym_and, + ACTIONS(11572), 1, + anon_sym_bitor, + ACTIONS(11574), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10105), 2, 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, + anon_sym_EQ, + ACTIONS(11542), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 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(8002), 32, + ACTIONS(10103), 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_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498397,23 +576908,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, - [51701] = 5, + [100948] = 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(8833), 20, + ACTIONS(9711), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498427,14 +576925,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(9713), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -498444,6 +576941,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, @@ -498469,18 +576967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [51770] = 7, + [101010] = 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(9724), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498494,22 +576984,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), 34, + anon_sym_DASH_GT, + ACTIONS(9726), 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, @@ -498531,19 +577022,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [51843] = 5, + anon_sym_DASH_GT_STAR, + [101072] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, - anon_sym_LBRACK_LBRACK, - STATE(4453), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 20, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12230), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [101188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9728), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498557,14 +577129,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(8839), 34, + ACTIONS(9730), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -498574,6 +577145,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, @@ -498599,247 +577171,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [51912] = 25, + [101250] = 30, 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_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(10538), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, sym_identifier, - ACTIONS(10540), 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, - [52021] = 25, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(11946), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [101366] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12021), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [101482] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 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, + ACTIONS(11566), 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(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11542), 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(11562), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(11544), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + ACTIONS(10066), 11, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10542), 6, - aux_sym_preproc_elif_token1, + anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(10544), 17, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10068), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - 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_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(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_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498851,121 +577407,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7158), 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(7160), 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_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_GT2, - anon_sym_requires, - [52304] = 12, + [101566] = 30, 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, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, 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, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12092), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -498978,16 +577499,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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [52387] = 3, + [101682] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 19, + ACTIONS(9756), 1, + anon_sym_LPAREN2, + ACTIONS(9778), 1, + anon_sym_LBRACK, + STATE(2074), 1, + sym_parameter_list, + STATE(3980), 1, + sym__function_declarator_seq, + ACTIONS(9804), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -499002,85 +577525,21 @@ 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___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_or, anon_sym_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, + ACTIONS(9806), 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_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -499092,47 +577551,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, + anon_sym_DASH_GT, + [101752] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12425), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [101868] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12498), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [101984] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10441), 3, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11544), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 22, - aux_sym_preproc_elif_token1, + ACTIONS(10066), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -499143,29 +577768,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, - anon_sym_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, + ACTIONS(10068), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -499177,35 +577794,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, - [52598] = 12, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [102062] = 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(10439), 2, + ACTIONS(9336), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 20, - aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -499215,28 +577819,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9709), 23, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9338), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -499248,67 +577846,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - [52681] = 13, + 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, + [102124] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12583), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [102240] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11542), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(11544), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 18, - aux_sym_preproc_elif_token1, + ACTIONS(10066), 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_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, + ACTIONS(10068), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -499320,304 +578007,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, - [52766] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10548), 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, - [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, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [102320] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10552), 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, + ACTIONS(6914), 1, 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, - [53017] = 6, - 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), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11456), 1, 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(7085), 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, + ACTIONS(11667), 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_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [53088] = 10, - 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, + STATE(6169), 1, + sym_parameter_list, + STATE(5684), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9828), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -499627,26 +578038,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(8008), 32, + ACTIONS(9830), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -499654,7 +578063,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, @@ -499669,165 +578077,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [53167] = 3, + anon_sym_GT2, + [102392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 13, + ACTIONS(9816), 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(7737), 44, + anon_sym_DASH_GT, + ACTIONS(9818), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_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, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [53232] = 3, + anon_sym_DASH_GT_STAR, + [102454] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 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(6612), 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, + 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, - anon_sym_final, - anon_sym_override, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [53297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6626), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6624), 45, - anon_sym_AMP, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12998), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -499840,69 +578223,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_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, + [102570] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10554), 1, - anon_sym_LBRACE, - STATE(4676), 1, - sym_enumerator_list, - STATE(4799), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7389), 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(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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, anon_sym_LBRACK_COLON, - ACTIONS(7387), 39, - anon_sym_AMP, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12910), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - 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, @@ -499915,47 +578309,80 @@ 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, - [53435] = 3, + [102686] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6628), 45, - anon_sym_AMP, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12070), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -499968,39 +578395,15 @@ 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [53500] = 10, + [102802] = 5, 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(6867), 1, + anon_sym_LBRACK_LBRACK, + STATE(4958), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10011), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500010,26 +578413,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(8008), 30, + anon_sym_DASH_GT, + ACTIONS(10013), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -500037,6 +578441,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, @@ -500050,17 +578455,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, - [53579] = 5, + anon_sym_DASH_GT_STAR, + [102868] = 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(9267), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500074,14 +578473,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(9269), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -500091,6 +578489,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, @@ -500116,116 +578515,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [53648] = 3, + [102930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 13, + ACTIONS(9845), 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(7629), 44, + anon_sym_DASH_GT, + ACTIONS(9847), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_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, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [53713] = 7, + anon_sym_DASH_GT_STAR, + [102992] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10554), 1, - anon_sym_LBRACE, - STATE(4674), 1, - sym_enumerator_list, - STATE(5003), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - 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, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, anon_sym_LBRACK_COLON, - ACTIONS(7381), 39, - anon_sym_AMP, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(11981), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - 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, @@ -500238,27 +578660,102 @@ 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, + [103108] = 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(5194), 1, anon_sym_template, - anon_sym_operator, - [53786] = 7, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12431), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [103224] = 6, 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, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + STATE(6268), 1, + sym_attribute_specifier, + ACTIONS(7676), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500277,7 +578774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 32, + ACTIONS(7678), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -500286,6 +578783,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, @@ -500310,18 +578808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [53859] = 7, + [103292] = 6, 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, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + STATE(6272), 1, + sym_attribute_specifier, + ACTIONS(7617), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500335,24 +578831,23 @@ 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), 34, + ACTIONS(7619), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -500375,40 +578870,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [53932] = 3, + [103360] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7643), 13, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11546), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11548), 1, + anon_sym_AMP_AMP, + ACTIONS(11550), 1, + anon_sym_PIPE, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11566), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11568), 1, + anon_sym_or, + ACTIONS(11570), 1, + anon_sym_and, + ACTIONS(11572), 1, + anon_sym_bitor, + ACTIONS(11574), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11053), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(11542), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, 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, + ACTIONS(11055), 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, + [103468] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10447), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10449), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(10451), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5193), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9641), 1, + sym__scope_resolution, + STATE(9881), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5332), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6604), 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, + ACTIONS(6606), 5, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -500420,37 +579033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, + [103574] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1946), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10186), 26, - aux_sym_preproc_elif_token1, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + STATE(6280), 1, + sym_attribute_specifier, + ACTIONS(7692), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500465,29 +579057,22 @@ 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, - sym_identifier, - ACTIONS(10184), 27, + ACTIONS(7694), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -500499,24 +579084,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, - [54070] = 7, + [103642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1946), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10190), 26, - aux_sym_preproc_elif_token1, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + STATE(6281), 1, + sym_attribute_specifier, + ACTIONS(7702), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500531,29 +579119,22 @@ 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, - sym_identifier, - ACTIONS(10188), 27, + ACTIONS(7704), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -500565,24 +579146,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, - [54143] = 7, + [103710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(6411), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9756), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(11540), 1, anon_sym_LBRACK, - STATE(1946), 1, + STATE(6277), 1, sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10194), 26, - aux_sym_preproc_elif_token1, + STATE(5670), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9770), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500597,29 +579186,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(10192), 27, + ACTIONS(9772), 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_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, @@ -500631,24 +579210,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, - [54216] = 7, + [103782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1946), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10174), 26, - aux_sym_preproc_elif_token1, + ACTIONS(9313), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500663,29 +579239,22 @@ 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, - sym_identifier, - ACTIONS(10172), 27, + anon_sym_DASH_GT, + ACTIONS(9315), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -500697,61 +579266,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54289] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [103844] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - STATE(1946), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10198), 26, - aux_sym_preproc_elif_token1, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11542), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 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_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(10196), 27, + ACTIONS(10068), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -500763,24 +579342,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54362] = 7, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [103926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1946), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10202), 26, - aux_sym_preproc_elif_token1, + ACTIONS(3178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500795,29 +579367,22 @@ 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, - sym_identifier, - ACTIONS(10200), 27, + anon_sym_DASH_GT, + ACTIONS(3176), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -500829,24 +579394,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [54435] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [103988] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(7001), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9758), 1, anon_sym_LBRACK, - STATE(1946), 1, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + STATE(3487), 1, sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10206), 26, - aux_sym_preproc_elif_token1, + STATE(5602), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9770), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500861,29 +579437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(10204), 27, + ACTIONS(9772), 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_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, @@ -500895,24 +579461,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, - [54508] = 7, + [104060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1946), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10210), 26, - aux_sym_preproc_elif_token1, + ACTIONS(10818), 1, + anon_sym___attribute__, + ACTIONS(10820), 1, + anon_sym___attribute, + STATE(6192), 1, + sym_attribute_specifier, + ACTIONS(7617), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -500922,34 +579491,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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(10208), 27, + ACTIONS(7619), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_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, @@ -500957,122 +579519,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54581] = 3, + anon_sym_GT2, + [104128] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 13, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + STATE(6322), 1, + sym_attribute_specifier, + ACTIONS(7634), 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(7749), 44, + ACTIONS(7636), 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_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [54646] = 13, + [104196] = 25, 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, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10036), 6, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10524), 1, anon_sym_STAR, + ACTIONS(10526), 1, anon_sym_AMP_AMP, + ACTIONS(10528), 1, + anon_sym_AMP, + ACTIONS(10530), 1, 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5394), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9586), 1, + sym__scope_resolution, + STATE(9898), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5321), 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(8230), 13, + aux_sym__type_definition_type_repeat1, + ACTIONS(6604), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6606), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -501086,186 +579677,81 @@ 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, + [104302] = 30, 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_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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, 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, + ACTIONS(11508), 1, sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [54814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7561), 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(7563), 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, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9201), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 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, - anon_sym_GT2, - anon_sym_requires, - [54879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 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(7601), 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, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -501277,57 +579763,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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [54944] = 3, + [104418] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 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(7605), 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(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9154), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -501339,39 +579849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [55009] = 7, + [104534] = 6, 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(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + STATE(6329), 1, + sym_attribute_specifier, + ACTIONS(7672), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501390,7 +579877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 32, + ACTIONS(7674), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501399,6 +579886,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, @@ -501423,92 +579911,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [55082] = 12, + [104602] = 6, 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, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(10830), 1, anon_sym___attribute__, + ACTIONS(10832), 1, 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, - [55165] = 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(5126), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 18, + STATE(6332), 1, + sym_attribute_specifier, + ACTIONS(7680), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501527,7 +579939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 32, + ACTIONS(7682), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501536,6 +579948,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, @@ -501560,21 +579973,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [55238] = 7, + [104670] = 6, 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(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + STATE(6338), 1, + sym_attribute_specifier, + ACTIONS(7688), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501593,7 +580001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8907), 32, + ACTIONS(7690), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501602,6 +580010,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, @@ -501626,21 +580035,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [55311] = 7, + [104738] = 28, 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(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11546), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11548), 1, + anon_sym_AMP_AMP, + ACTIONS(11550), 1, + anon_sym_PIPE, + ACTIONS(11554), 1, + anon_sym_AMP, + ACTIONS(11560), 1, + anon_sym_GT_EQ, + ACTIONS(11564), 1, + anon_sym_QMARK, + ACTIONS(11566), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11568), 1, + anon_sym_or, + ACTIONS(11570), 1, + anon_sym_and, + ACTIONS(11572), 1, + anon_sym_bitor, + ACTIONS(11574), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10337), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(11542), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11552), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11562), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11544), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11556), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11558), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10339), 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, + [104850] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(6309), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9849), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501659,17 +580148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8915), 32, + anon_sym_DASH_GT, + ACTIONS(9851), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -501691,19 +580180,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [55384] = 7, + anon_sym_DASH_GT_STAR, + [104918] = 30, 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(10186), 19, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9151), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [105034] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9167), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [105150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9356), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501717,22 +580370,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(10184), 34, + anon_sym_DASH_GT, + 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, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -501754,22 +580408,364 @@ 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, - [55457] = 7, + anon_sym_DASH_GT_STAR, + [105212] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9214), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [105328] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9221), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [105444] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 1, anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10206), 19, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10960), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11223), 1, + anon_sym___asm, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8401), 1, + sym__function_attributes_start, + STATE(8551), 1, + sym_ref_qualifier, + STATE(9019), 1, + sym_trailing_return_type, + STATE(9242), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10953), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(11220), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8660), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [105560] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9182), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [105676] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10830), 1, + anon_sym___attribute__, + ACTIONS(10832), 1, + anon_sym___attribute, + STATE(6355), 1, + sym_attribute_specifier, + ACTIONS(7706), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501783,24 +580779,23 @@ 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(10204), 34, + ACTIONS(7708), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -501823,40 +580818,81 @@ 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, + [105744] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 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(7633), 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(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9164), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -501868,57 +580904,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [105860] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9225), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 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, - anon_sym_GT2, - anon_sym_requires, - [55595] = 3, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [105976] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 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(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9149), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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_DOT, - ACTIONS(7637), 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106092] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9172), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -501930,102 +581162,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [106208] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9189), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 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, - anon_sym_GT2, - anon_sym_requires, - [55660] = 7, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [106324] = 6, 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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(10188), 34, - 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, + ACTIONS(10830), 1, 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [55733] = 7, - 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(10832), 1, + anon_sym___attribute, + STATE(6356), 1, + sym_attribute_specifier, + ACTIONS(7570), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502039,22 +581271,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(10192), 34, + ACTIONS(7572), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -502077,42 +581310,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, - [55806] = 3, + [106392] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 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(7563), 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(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9220), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -502124,57 +581396,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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [55871] = 3, + [106508] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 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(7563), 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(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9143), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -502186,69 +581482,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [106624] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9147), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 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, - anon_sym_GT2, - anon_sym_requires, - [55936] = 13, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [106740] = 30, 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, + anon_sym_enum, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, + anon_sym_typename, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(2870), 1, sym_alignas_qualifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8616), 1, + sym_type_specifier, + STATE(9148), 1, + sym__type_definition_type, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10036), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5569), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 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, + [106856] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, anon_sym_LBRACK_COLON, - STATE(3979), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(11917), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 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(8230), 13, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -502262,98 +581740,189 @@ 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, + [106972] = 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(5194), 1, anon_sym_template, - anon_sym_operator, - [56021] = 7, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12450), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [107088] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(6397), 1, anon_sym_LBRACK, - STATE(1976), 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_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(10172), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, 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, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11623), 1, anon_sym_DASH_GT, + ACTIONS(11736), 1, + anon_sym_requires, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8466), 1, + sym__function_attributes_start, + STATE(8558), 1, + sym_ref_qualifier, + STATE(9410), 1, + sym_trailing_return_type, + STATE(9718), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11484), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [56094] = 7, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9650), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8692), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [107204] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(11309), 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, + STATE(6127), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9857), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502367,22 +581936,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10196), 34, + anon_sym_DASH_GT, + ACTIONS(9859), 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_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -502404,22 +581973,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, - [56167] = 7, + anon_sym_DASH_GT_STAR, + [107272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(2970), 1, + anon_sym_LBRACE, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(11703), 1, anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10202), 19, + STATE(5732), 1, + sym_new_declarator, + STATE(6510), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9666), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502429,26 +581998,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(10200), 34, + ACTIONS(9668), 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, @@ -502456,7 +582023,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, @@ -502471,24 +582037,105 @@ 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, - [56240] = 7, + anon_sym_GT2, + [107344] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10406), 1, - anon_sym_requires, - ACTIONS(10403), 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(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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12488), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [107460] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(11739), 1, + anon_sym_LT, + STATE(5531), 1, + sym_template_argument_list, + ACTIONS(6783), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502499,7 +582146,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, @@ -502507,9 +582153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8907), 32, + anon_sym_DASH_GT, + ACTIONS(6776), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -502517,7 +582165,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, @@ -502539,156 +582186,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, - [56313] = 18, + anon_sym_DASH_GT_STAR, + [107530] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, + ACTIONS(7001), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(10122), 1, - anon_sym___attribute__, - ACTIONS(10125), 1, - anon_sym___attribute, - ACTIONS(10128), 1, - anon_sym_DASH_GT, - STATE(5857), 1, - sym_trailing_return_type, - STATE(6192), 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), 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_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, - [56407] = 3, - ACTIONS(3), 1, - sym_comment, - 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_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_literal_suffix, - ACTIONS(10564), 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, + ACTIONS(9758), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [56471] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10568), 1, + ACTIONS(11447), 1, anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1972), 1, + STATE(3487), 1, sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10206), 19, + STATE(5602), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9752), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502707,16 +582220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10204), 33, + ACTIONS(9754), 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, @@ -502738,22 +582250,17 @@ 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, - [56543] = 7, + anon_sym_DASH_GT, + [107602] = 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(11748), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11746), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11744), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502768,21 +582275,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(10208), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(11742), 31, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_TILDE, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -502796,26 +582301,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_compl, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [56615] = 5, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [107668] = 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(8837), 19, + ACTIONS(9917), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502829,22 +582329,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(8839), 34, + anon_sym_DASH_GT, + ACTIONS(9919), 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, @@ -502866,50 +582367,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_requires, - [56683] = 6, + anon_sym_DASH_GT_STAR, + [107730] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 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, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(6572), 46, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12596), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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_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, @@ -502921,28 +582457,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_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, + [107846] = 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(9071), 19, + ACTIONS(11756), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11754), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11752), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502956,23 +582480,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_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9073), 34, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(11750), 31, anon_sym_COMMA, - 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_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -502986,54 +582507,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [56821] = 5, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [107912] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, - anon_sym_LBRACE, - STATE(3463), 1, - sym_compound_statement, - ACTIONS(3118), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, 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, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12603), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 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(3233), 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, @@ -503046,105 +582604,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_template, - anon_sym_operator, - [56889] = 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(7903), 1, - anon_sym_requires, - ACTIONS(10574), 1, - anon_sym_DASH_GT, - STATE(6267), 1, - sym__function_attributes_end, - STATE(6319), 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(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, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [56983] = 5, + [108028] = 3, 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(5623), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503154,17 +582617,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(9075), 34, + ACTIONS(5625), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -503172,8 +582637,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_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -503181,7 +582645,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, @@ -503198,19 +582661,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, - [57051] = 7, + [108090] = 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(10186), 19, + ACTIONS(3149), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503230,15 +582686,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10184), 33, + ACTIONS(3147), 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, @@ -503264,43 +582722,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [57123] = 5, + [108152] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, - anon_sym_LBRACE, - STATE(2808), 1, - sym_compound_statement, - ACTIONS(3118), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, 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, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12624), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 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(3233), 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, @@ -503313,97 +582808,597 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [108268] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12629), 1, + sym_type_descriptor, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [108384] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12646), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [108500] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12650), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [108616] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12666), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [108732] = 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, - anon_sym_explicit, + ACTIONS(5194), 1, anon_sym_template, - anon_sym_operator, - [57191] = 30, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12670), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [108848] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 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, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12686), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, - 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, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108964] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 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, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12690), 1, + sym_type_descriptor, + ACTIONS(71), 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, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 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, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -503415,146 +583410,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [57309] = 5, + [109080] = 30, 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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, - 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [57377] = 30, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12703), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [109196] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 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(10382), 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, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 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_final, - anon_sym_override, - ACTIONS(10365), 2, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(12706), 1, + sym_type_descriptor, + ACTIONS(71), 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, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 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, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -503566,40 +583582,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [57495] = 3, + [109312] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 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, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7291), 44, - anon_sym_AMP, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6426), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9293), 1, + sym_type_descriptor, + STATE(9836), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5691), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -503612,30 +583668,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, - 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, - [57559] = 5, + [109428] = 3, 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(9292), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503645,26 +583681,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(9073), 32, + anon_sym_DASH_GT, + ACTIONS(9294), 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, @@ -503672,6 +583709,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, @@ -503685,106 +583723,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, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [57627] = 18, + anon_sym_DASH_GT_STAR, + [109490] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, + ACTIONS(7001), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(9996), 1, - 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, - 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, + ACTIONS(9758), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(7791), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11447), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [57721] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8514), 1, - anon_sym_DASH_GT, - ACTIONS(8520), 1, - anon_sym_requires, - STATE(4740), 1, - sym_trailing_return_type, - 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), 15, + STATE(3487), 1, + sym_parameter_list, + STATE(5602), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9812), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503799,18 +583756,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(7791), 32, + ACTIONS(9814), 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, @@ -503822,57 +583780,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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [57797] = 18, + anon_sym_DASH_GT, + [109562] = 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(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, - ACTIONS(7789), 10, + ACTIONS(7566), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503881,87 +583804,28 @@ 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(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___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, - [57891] = 18, - 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, + anon_sym_DOT, + sym_identifier, 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_requires, + ACTIONS(7568), 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, @@ -503974,29 +583838,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_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_DASH_GT, + anon_sym_COLON_RBRACK, + [109624] = 4, 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(10190), 19, + ACTIONS(6822), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6824), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -504016,15 +583876,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10188), 33, + ACTIONS(6817), 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, @@ -504046,54 +583908,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, - [58057] = 9, + [109687] = 4, 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_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(8422), 32, + ACTIONS(11194), 1, + sym_literal_suffix, + ACTIONS(5663), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -504107,277 +583937,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [58133] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10603), 1, - anon_sym_LBRACE, - STATE(3342), 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___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, - [58201] = 18, - 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(9987), 1, 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, - ACTIONS(7789), 12, + ACTIONS(5671), 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_GT_GT, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(7791), 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_GT2, - [58295] = 18, + anon_sym_DOT, + [109750] = 28, 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(10119), 1, - anon_sym_DASH_GT, - ACTIONS(10161), 1, - anon_sym_requires, - STATE(6273), 1, - sym__function_attributes_end, - STATE(6295), 1, - sym_trailing_return_type, - STATE(9096), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10158), 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, - 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, + ACTIONS(11065), 1, + anon_sym_EQ, + ACTIONS(11303), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11309), 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(11347), 1, + anon_sym_LBRACK, + ACTIONS(11351), 1, anon_sym_QMARK, + ACTIONS(11375), 1, anon_sym_LT_EQ_GT, + ACTIONS(11762), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11764), 1, + anon_sym_AMP_AMP, + ACTIONS(11766), 1, + anon_sym_PIPE, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11780), 1, anon_sym_or, + ACTIONS(11782), 1, anon_sym_and, + ACTIONS(11784), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11786), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_GT2, - [58389] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8595), 1, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8636), 1, - anon_sym_requires, - STATE(4660), 1, - sym_trailing_return_type, - 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), 15, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11768), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11772), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11774), 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, - ACTIONS(7966), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(11067), 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_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -504388,177 +584047,91 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [58465] = 18, + [109861] = 6, 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(10605), 1, - anon_sym_DASH_GT, - ACTIONS(10611), 1, - anon_sym_requires, - STATE(6271), 1, - sym__function_attributes_end, - STATE(6357), 1, - sym_trailing_return_type, - STATE(9096), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10608), 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(6641), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 12, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(7987), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7449), 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_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 23, + anon_sym_DASH_GT, + ACTIONS(7454), 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_or, - anon_sym_and, anon_sym_bitor, - 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, - [58559] = 7, + anon_sym_DASH_GT_STAR, + [109928] = 10, 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, + ACTIONS(11309), 1, 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(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, + ACTIONS(11347), 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_template, - anon_sym_operator, - [58631] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(8595), 1, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, 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, + ACTIONS(10113), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -504573,18 +584146,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(7966), 32, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10115), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -504596,23 +584169,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [58707] = 4, + [110003] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 25, + ACTIONS(2970), 1, + anon_sym_LBRACE, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + STATE(6517), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9766), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -504622,35 +584197,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_COLON, 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, - ACTIONS(5638), 30, + ACTIONS(9768), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -504659,448 +584223,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [58773] = 3, + anon_sym_GT2, + [110070] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 27, - aux_sym_preproc_elif_token1, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11760), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10066), 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_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_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9009), 29, + ACTIONS(10068), 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_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, - [58837] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 1, - anon_sym_LBRACE, - ACTIONS(10614), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 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_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, - [58911] = 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(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, + 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, + [110149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9292), 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_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_xor, anon_sym_DOT, - ACTIONS(7791), 25, + ACTIONS(9294), 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_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, - [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_GT2, + anon_sym_requires, + [110210] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9296), 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_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_xor, anon_sym_DOT, - ACTIONS(7966), 25, + ACTIONS(9298), 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_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, - [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_GT2, + anon_sym_requires, + [110271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9378), 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_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, + ACTIONS(9380), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_or, - anon_sym_and, anon_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, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [110332] = 13, 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, + ACTIONS(11797), 1, + anon_sym_virtual, + ACTIONS(11806), 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, + ACTIONS(11809), 1, + anon_sym___declspec, + ACTIONS(11815), 1, + anon_sym_explicit, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(11803), 2, 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, + ACTIONS(11812), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6144), 2, + ACTIONS(11792), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(11790), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(11800), 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(5541), 9, + sym__declaration_modifiers, 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, + 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(11794), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -505112,15 +584547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [59311] = 5, + [110413] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - STATE(4614), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 21, + ACTIONS(11818), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11820), 1, + anon_sym_AMP_AMP, + ACTIONS(11822), 1, + anon_sym_or, + ACTIONS(11824), 1, + anon_sym_and, + ACTIONS(9737), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505130,26 +584568,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_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(9739), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -505157,6 +584591,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,94 +584608,73 @@ 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, + [110482] = 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(7903), 1, - anon_sym_requires, - ACTIONS(10116), 1, - anon_sym_DASH_GT, - STATE(6269), 1, - sym__function_attributes_end, - STATE(6324), 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(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 10, + 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_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(7966), 25, + ACTIONS(9281), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [59473] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10626), 2, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(4589), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9143), 19, + anon_sym_requires, + [110543] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11826), 1, + anon_sym_LT, + STATE(2865), 1, + sym_template_argument_list, + ACTIONS(10094), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505271,16 +584685,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9145), 33, + ACTIONS(10096), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -505290,7 +584704,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, @@ -505312,27 +584726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [59541] = 9, + [110608] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(8514), 1, - anon_sym_DASH_GT, - STATE(4642), 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(5696), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 15, + ACTIONS(11829), 1, + anon_sym_LT, + STATE(5399), 1, + sym_template_argument_list, + ACTIONS(10094), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505343,12 +584745,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(7791), 32, + anon_sym_DASH_GT, + ACTIONS(10096), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -505358,7 +584764,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, @@ -505370,36 +584776,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, - [59617] = 9, + [110673] = 3, 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(9329), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505414,11 +584805,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, - ACTIONS(8422), 32, + ACTIONS(9331), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -505426,6 +584819,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, @@ -505437,225 +584831,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [110734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 27, - aux_sym_preproc_elif_token1, + ACTIONS(9329), 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_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8891), 29, + ACTIONS(9331), 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, - [59757] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [110795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 27, - aux_sym_preproc_elif_token1, + ACTIONS(9329), 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_asm, - anon_sym___asm__, - anon_sym___asm, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8899), 29, + ACTIONS(9331), 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, - [59821] = 9, - 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, - 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(8006), 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, - [59897] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10631), 1, - anon_sym_DASH_GT, - ACTIONS(10637), 1, - anon_sym_requires, - STATE(4669), 1, - sym_trailing_return_type, - 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), 15, + anon_sym_requires, + [110856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9279), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505665,22 +584974,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(8907), 32, + ACTIONS(9281), 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, @@ -505689,67 +585001,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [59973] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110917] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 27, - aux_sym_preproc_elif_token1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 1, + anon_sym_LPAREN2, + ACTIONS(5655), 1, + anon_sym_LBRACK, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(8876), 1, + anon_sym_STAR, + ACTIONS(8882), 1, + anon_sym_COLON_COLON, + ACTIONS(11832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11836), 1, + anon_sym_AMP_AMP, + ACTIONS(11838), 1, + anon_sym_AMP, + ACTIONS(11840), 1, + anon_sym_EQ, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5887), 1, + sym_parameter_list, + STATE(8812), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9804), 1, + sym__declarator, + STATE(10067), 1, + sym__abstract_declarator, + STATE(10224), 1, + sym_abstract_reference_declarator, + STATE(10813), 1, + sym_variadic_reference_declarator, + STATE(11363), 1, + sym_variadic_declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11834), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(10261), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9556), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_qualified_identifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [111038] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11766), 1, + anon_sym_PIPE, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11784), 1, + anon_sym_bitor, + ACTIONS(11786), 1, + anon_sym_bitand, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11768), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11772), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11774), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(10068), 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, + [111137] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11057), 1, + anon_sym_EQ, + ACTIONS(11303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11351), 1, + anon_sym_QMARK, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11762), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11764), 1, + anon_sym_AMP_AMP, + ACTIONS(11766), 1, + anon_sym_PIPE, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11780), 1, anon_sym_or, + ACTIONS(11782), 1, anon_sym_and, + ACTIONS(11784), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11786), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(10564), 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_DASH_GT, + ACTIONS(11758), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11768), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11772), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_not_eq, + ACTIONS(11774), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11059), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -505760,175 +585263,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, + [111248] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11375), 1, anon_sym_LT_EQ_GT, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11786), 1, + anon_sym_bitand, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [60037] = 18, + ACTIONS(11758), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11768), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11772), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11774), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(10068), 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, + [111343] = 3, 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, - 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, - 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(7789), 10, + ACTIONS(9313), 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_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_xor, anon_sym_DOT, - ACTIONS(7791), 25, + ACTIONS(9315), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, - [60131] = 18, - 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, - anon_sym_DASH, - 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_GT2, + anon_sym_requires, + [111404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11196), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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(11198), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [60225] = 7, + anon_sym_DOT, + sym_literal_suffix, + [111465] = 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(9356), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505938,25 +585471,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(9358), 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, @@ -505964,7 +585498,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, @@ -505978,162 +585511,73 @@ 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, - [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_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [111526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9292), 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_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, + ACTIONS(9294), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_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, - 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, - 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, - anon_sym_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, - [60461] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [111587] = 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(10174), 19, + ACTIONS(9296), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -506152,16 +585596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10172), 33, + ACTIONS(9298), 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, @@ -506183,204 +585628,76 @@ 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, - [60533] = 4, + [111648] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, + ACTIONS(11842), 1, anon_sym_LPAREN2, - ACTIONS(9027), 27, - aux_sym_preproc_elif_token1, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2107), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9774), 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_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_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9029), 28, + anon_sym_DASH_GT, + ACTIONS(9776), 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_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, - [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_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(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_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, - [60739] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [111717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 27, + ACTIONS(9313), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -506393,22 +585710,18 @@ 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, 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(8940), 29, + ACTIONS(9315), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -506428,9 +585741,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, @@ -506438,38 +585752,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [60803] = 12, + [111778] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 1, + ACTIONS(11842), 1, anon_sym_LPAREN2, - ACTIONS(7321), 1, + ACTIONS(11844), 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, + STATE(2107), 1, sym_parameter_list, - STATE(5694), 1, + STATE(6200), 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(9780), 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, @@ -506478,11 +585780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9427), 29, + ACTIONS(9782), 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, @@ -506507,159 +585810,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, - [60885] = 18, - 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(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, - 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, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_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_requires, + anon_sym_DASH_GT_STAR, + [111847] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7687), 1, + ACTIONS(11842), 1, anon_sym_LPAREN2, - STATE(3892), 1, - sym_argument_list, - STATE(5964), 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, + ACTIONS(11844), 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, - [61053] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6669), 2, - anon_sym_final, - anon_sym_override, - STATE(4589), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9139), 19, + STATE(2107), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9784), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -506674,22 +585840,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(9141), 33, + ACTIONS(9786), 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, @@ -506701,248 +585862,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [61121] = 8, + [111916] = 3, 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(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, + ACTIONS(9356), 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(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_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, - [61195] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(10629), 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), 10, + ACTIONS(9358), 30, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_LBRACK_COLON, - ACTIONS(8000), 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, - [61271] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, 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(10376), 1, - anon_sym_requires, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10624), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7150), 1, - sym__function_attributes_start, - STATE(7564), 1, - sym_ref_qualifier, - STATE(8054), 1, - sym_trailing_return_type, - STATE(8411), 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(7729), 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, - [61389] = 5, + anon_sym_COLON_RBRACK, + [111977] = 7, 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, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2107), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9788), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -506952,26 +585955,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_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_DASH_GT, + ACTIONS(9790), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -506979,36 +585978,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, - [61457] = 7, + anon_sym_DASH_GT_STAR, + [112046] = 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(10198), 19, + ACTIONS(9313), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507027,16 +586018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10196), 33, + ACTIONS(9315), 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, @@ -507058,82 +586050,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, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [61529] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(964), 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___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, - [61597] = 5, + [112107] = 3, 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, + ACTIONS(9356), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507143,19 +586067,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(8839), 32, + ACTIONS(9358), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -507163,6 +586084,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, @@ -507170,6 +586094,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, @@ -507186,15 +586111,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, - [61665] = 4, + [112168] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 26, - aux_sym_preproc_elif_token1, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2107), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9792), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507209,31 +586138,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(5638), 29, + anon_sym_DASH_GT, + ACTIONS(9794), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_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, @@ -507246,29 +586161,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [61731] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(10631), 1, - anon_sym_DASH_GT, - STATE(4702), 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(5581), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 15, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [112237] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2107), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9796), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507284,17 +586201,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(8907), 32, + anon_sym_DASH_GT, + ACTIONS(9798), 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, @@ -507316,107 +586232,82 @@ 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, - [61807] = 5, + [112306] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, - 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, 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, + ACTIONS(11508), 1, + sym_identifier, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, sym_primitive_type, + ACTIONS(11516), 1, anon_sym_enum, + ACTIONS(11518), 1, anon_sym_class, + ACTIONS(11520), 1, anon_sym_struct, + ACTIONS(11522), 1, anon_sym_union, + ACTIONS(11524), 1, anon_sym_typename, - sym_identifier, + ACTIONS(11526), 1, sym_auto, + ACTIONS(11528), 1, anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [61875] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - STATE(406), 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8627), 1, + sym_type_specifier, + STATE(9814), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11512), 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(3939), 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, @@ -507429,75 +586320,54 @@ 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, - [61943] = 8, + [112419] = 7, 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, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2107), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9800), 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_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7225), 41, + anon_sym_DASH_GT, + ACTIONS(9802), 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___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_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, @@ -507508,19 +586378,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, - [62017] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [112488] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, + ACTIONS(11842), 1, anon_sym_LPAREN2, - ACTIONS(10570), 1, + ACTIONS(11844), 1, anon_sym_LBRACK, - STATE(1972), 1, + STATE(2107), 1, sym_parameter_list, - STATE(4999), 1, + STATE(6200), 1, sym__function_declarator_seq, - ACTIONS(10202), 19, + ACTIONS(9804), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507535,12 +586408,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(10200), 33, + ACTIONS(9806), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -507560,11 +586430,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, @@ -507574,86 +586444,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [62089] = 18, + [112557] = 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(7835), 1, - anon_sym_requires, - ACTIONS(10605), 1, - anon_sym_DASH_GT, - STATE(6270), 1, - sym__function_attributes_end, - STATE(6294), 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(6641), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 12, + ACTIONS(8285), 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_xor, anon_sym_DOT, - ACTIONS(8422), 23, + ACTIONS(8287), 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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [62183] = 3, + anon_sym_requires, + [112618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 27, + ACTIONS(3178), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -507666,22 +586518,18 @@ 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, 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(8981), 29, + ACTIONS(3176), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -507701,9 +586549,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, @@ -507711,432 +586560,213 @@ static const uint16_t ts_small_parse_table[] = { 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, + [112679] = 3, 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, + ACTIONS(9707), 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(7225), 39, + ACTIONS(9709), 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_LT_LT, - anon_sym___extension__, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [62395] = 18, + anon_sym_requires, + [112740] = 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(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, - ACTIONS(7789), 12, + ACTIONS(9711), 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_xor, anon_sym_DOT, - ACTIONS(7791), 23, + ACTIONS(9713), 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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [62489] = 11, + anon_sym_requires, + [112801] = 3, 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, + ACTIONS(9724), 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(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_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9726), 33, 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_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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(10679), 1, + anon_sym_bitor, 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [112862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9728), 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(9707), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9709), 23, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9730), 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_SEMI, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508144,75 +586774,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_COLON_RBRACK, - [62785] = 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_GT2, + anon_sym_requires, + [112923] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10667), 1, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11770), 1, anon_sym_AMP, - ACTIONS(10673), 1, + ACTIONS(11776), 1, anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, + ACTIONS(11786), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, sym_argument_list, - STATE(3900), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10675), 2, + ACTIONS(11778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(11772), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(11774), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 6, + ACTIONS(10066), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 23, + ACTIONS(10068), 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, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508228,64 +586865,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - anon_sym_COLON_RBRACK, - [62880] = 17, + anon_sym_DASH_GT_STAR, + [113016] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11179), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11181), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10661), 2, + STATE(2062), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9780), 19, 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_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), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9782), 30, 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508300,47 +586920,56 @@ 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_COLON_RBRACK, - [62971] = 16, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [113085] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, + ACTIONS(11375), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, sym_argument_list, - STATE(3900), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10675), 2, + ACTIONS(11778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10671), 3, + ACTIONS(11772), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11774), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, + ACTIONS(10066), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -508348,16 +586977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 27, + ACTIONS(10068), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508374,23 +586999,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [63060] = 7, + anon_sym_DASH_GT_STAR, + [113174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(6777), 2, + ACTIONS(9279), 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, - 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_requires, + 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, + 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, + [113235] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11179), 1, + anon_sym_LPAREN2, + ACTIONS(11181), 1, + anon_sym_LBRACK, + STATE(2062), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9784), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -508405,19 +587084,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(7791), 32, + ACTIONS(9786), 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, @@ -508429,130 +587109,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [63131] = 4, - 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, - 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, - [63196] = 14, + [113304] = 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(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(11846), 1, + anon_sym_LT, + STATE(2059), 1, + sym_template_argument_list, + ACTIONS(10094), 18, 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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 28, + anon_sym_DOT, + ACTIONS(10096), 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, @@ -508568,37 +587172,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_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, + [113369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9271), 18, 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, @@ -508611,17 +587201,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 29, + anon_sym_DOT, + ACTIONS(9273), 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_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508640,22 +587231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [63362] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(6777), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, 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_requires, + [113430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9263), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -508670,12 +587256,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(8422), 32, + ACTIONS(9265), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -508683,6 +587270,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, @@ -508694,32 +587282,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_STAR, - [63433] = 8, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [113491] = 5, 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(9476), 19, + ACTIONS(11849), 1, + anon_sym_AMP_AMP, + ACTIONS(11851), 1, + anon_sym_and, + ACTIONS(9853), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -508729,25 +587313,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(9478), 30, + ACTIONS(9855), 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, @@ -508755,7 +587338,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, @@ -508769,84 +587351,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, - [63506] = 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, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(5609), 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, - [63573] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(6777), 2, + anon_sym_DASH_GT, 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, + anon_sym_GT2, + anon_sym_requires, + [113556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9275), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -508861,12 +587374,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(7966), 32, + ACTIONS(9277), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -508874,6 +587388,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, @@ -508885,68 +587400,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [63644] = 13, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [113617] = 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(10661), 2, + ACTIONS(9352), 18, 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), 29, + anon_sym_DOT, + 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_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508965,148 +587465,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [63727] = 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_requires, + [113678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 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(9253), 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_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7225), 40, + ACTIONS(9255), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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___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, - [63800] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10685), 1, - anon_sym_friend, - 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___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, - [63865] = 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(9480), 19, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [113739] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11853), 2, + anon_sym_final, + anon_sym_override, + STATE(5590), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9471), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -509121,20 +587554,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9482), 30, + ACTIONS(9473), 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, @@ -509146,32 +587578,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [63938] = 8, + [113804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(2970), 1, anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(10689), 1, - anon_sym_LBRACK, - STATE(4762), 1, - sym_new_declarator, - STATE(5618), 2, + STATE(6509), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9256), 19, + ACTIONS(9832), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -509181,25 +587610,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(9258), 30, + ACTIONS(9834), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -509207,7 +587636,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, @@ -509221,78 +587649,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, - [64011] = 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(8833), 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_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8835), 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, - [64078] = 5, + anon_sym_GT2, + [113871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - STATE(4755), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 24, + ACTIONS(5619), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -509317,7 +587679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9073), 28, + ACTIONS(5621), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -509337,6 +587699,7 @@ 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_RBRACE, anon_sym_QMARK, @@ -509346,109 +587709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [64145] = 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(10691), 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(9814), 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, - [64264] = 8, + [113932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10689), 1, - anon_sym_LBRACK, - STATE(4974), 1, - sym_new_declarator, - STATE(5578), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 19, + ACTIONS(9360), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -509467,16 +587731,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9276), 30, + ACTIONS(9362), 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, @@ -509497,103 +587762,15 @@ 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, - [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, - 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, - 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(10491), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - 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, - [64450] = 5, - 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, + anon_sym_requires, + [113993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9336), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -509603,16 +587780,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(9141), 33, + ACTIONS(9338), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -509620,9 +587799,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, @@ -509630,7 +587807,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, @@ -509645,104 +587821,82 @@ 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, - [64517] = 5, + [114054] = 29, 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, + ACTIONS(2300), 1, 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, + ACTIONS(3800), 1, + anon_sym_enum, + ACTIONS(3802), 1, + anon_sym_class, + ACTIONS(3804), 1, + anon_sym_struct, + ACTIONS(3806), 1, + anon_sym_union, + ACTIONS(3810), 1, + sym_auto, + ACTIONS(3812), 1, anon_sym_decltype, + ACTIONS(5194), 1, anon_sym_template, - anon_sym_operator, - [64584] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10707), 1, - anon_sym_namespace, - ACTIONS(10272), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(11532), 1, + sym_identifier, + ACTIONS(11534), 1, 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, + ACTIONS(11536), 1, + sym_primitive_type, + ACTIONS(11538), 1, + anon_sym_typename, + STATE(2152), 1, + sym_type_specifier, + STATE(2277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2545), 1, + sym_splice_specifier, + STATE(2656), 1, + sym__splice_specialization_specifier, + STATE(2811), 1, + sym_template_type, + STATE(2818), 1, + sym_qualified_type_identifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2927), 1, + sym_decltype_auto, + STATE(9829), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2929), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3796), 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(2928), 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, @@ -509755,38 +587909,68 @@ 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, - [64649] = 10, + [114167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8499), 1, + ACTIONS(9378), 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__, - 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_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(9380), 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, + [114228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3178), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -509796,23 +587980,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(8008), 32, + ACTIONS(3176), 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, @@ -509821,149 +588007,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_STAR, - [64726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5591), 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(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, - 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, - [64789] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [114289] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11061), 1, + anon_sym_EQ, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11347), 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, + ACTIONS(11375), 1, anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, + ACTIONS(11762), 1, anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, + ACTIONS(11764), 1, anon_sym_AMP_AMP, - ACTIONS(10697), 1, + ACTIONS(11766), 1, anon_sym_PIPE, - ACTIONS(10701), 1, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11780), 1, anon_sym_or, - ACTIONS(10703), 1, + ACTIONS(11782), 1, anon_sym_and, - ACTIONS(10705), 1, + ACTIONS(11784), 1, anon_sym_bitor, - STATE(3874), 1, + ACTIONS(11786), 1, + anon_sym_bitand, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, sym_argument_list, - STATE(3900), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, + ACTIONS(11768), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(11778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(11772), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(11774), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 20, + ACTIONS(11063), 18, 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, @@ -509978,19 +588105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [64898] = 7, + anon_sym_DASH_GT_STAR, + [114396] = 3, 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(10202), 18, + ACTIONS(3149), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -510000,24 +588119,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(10200), 33, + ACTIONS(3147), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -510025,7 +588146,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, @@ -510042,209 +588162,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [64969] = 7, + [114457] = 3, 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, + ACTIONS(9275), 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(8422), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9277), 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_DASH_GT_STAR, - [65040] = 4, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [114518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10715), 1, - anon_sym_friend, - ACTIONS(3118), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5684), 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, - [65105] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6594), 1, - anon_sym_const, - ACTIONS(6605), 11, + ACTIONS(11856), 1, + anon_sym_LT, + STATE(5921), 1, + sym_template_argument_list, + ACTIONS(10037), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_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(6598), 25, + anon_sym_DASH_GT, + ACTIONS(10039), 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, + anon_sym_DASH_GT_STAR, + [114585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10689), 1, - anon_sym_LBRACK, - STATE(4953), 1, - sym_new_declarator, - STATE(5589), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 19, + ACTIONS(7001), 1, + anon_sym_LBRACK_LBRACK, + STATE(5084), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10011), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -510258,21 +588305,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(9228), 30, + ACTIONS(10013), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -510294,131 +588342,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_STAR, - [65245] = 52, + anon_sym_DASH_GT, + [114650] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(10717), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10719), 1, - anon_sym_COMMA, - ACTIONS(10721), 1, - anon_sym_RPAREN, - ACTIONS(10723), 1, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11758), 2, anon_sym_DASH, - ACTIONS(10725), 1, anon_sym_PLUS, - ACTIONS(10727), 1, + ACTIONS(11778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11760), 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(10066), 10, 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(10068), 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, - 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, - 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, - [65406] = 7, + [114731] = 6, 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(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(11859), 1, + anon_sym_LT, + STATE(5921), 1, + sym_template_argument_list, + ACTIONS(9961), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -510429,13 +588431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8907), 32, + ACTIONS(9963), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -510457,220 +588461,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_DASH_GT_STAR, - [65477] = 8, + [114798] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7687), 1, + ACTIONS(11179), 1, anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(5969), 1, - sym_initializer_list, - ACTIONS(7223), 10, + ACTIONS(11181), 1, + anon_sym_LBRACK, + STATE(2062), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9788), 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_const, - anon_sym_DOT, - ACTIONS(7225), 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_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_LT_EQ_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_DOT, anon_sym_DASH_GT, - [65550] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10809), 1, - anon_sym_friend, - 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___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, - ACTIONS(3), 1, - sym_comment, - STATE(4795), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7429), 13, + ACTIONS(9790), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7427), 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, - [65682] = 7, + 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, + [114867] = 3, 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, + ACTIONS(9816), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -510680,23 +588547,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(8915), 32, + ACTIONS(9818), 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, @@ -510705,36 +588574,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_STAR, - [65753] = 8, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [114928] = 3, 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, + ACTIONS(9329), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -510744,25 +588605,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(9486), 30, + 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, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -510770,7 +588632,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, @@ -510784,421 +588645,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, - [65826] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4887), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7415), 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(7413), 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, - [65893] = 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(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, + anon_sym_GT2, + anon_sym_requires, + [114989] = 3, 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(9267), 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(7225), 38, + ACTIONS(9269), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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_LT_LT, - anon_sym___extension__, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_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, - [66083] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4993), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7523), 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(7521), 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, - [66150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10827), 1, - anon_sym_friend, - 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___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, - [66215] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5027), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7433), 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(7431), 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, - [66282] = 7, + anon_sym_requires, + [115050] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(9861), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -511208,23 +588721,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(9863), 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, @@ -511233,119 +588748,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [66353] = 31, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [115111] = 7, 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(7447), 1, + anon_sym_LBRACE, + ACTIONS(7987), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7444), 2, + anon_sym_LPAREN2, 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, + ACTIONS(7449), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -511357,7 +588790,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, @@ -511366,10 +588798,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9145), 31, + ACTIONS(7454), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -511397,19 +588828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - [66539] = 7, + [115180] = 3, 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(9845), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -511419,24 +588841,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(9847), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -511444,7 +588868,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, @@ -511461,42 +588884,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [66610] = 4, + [115241] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10834), 1, - anon_sym_friend, - ACTIONS(3118), 7, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10569), 1, anon_sym_STAR, + ACTIONS(10571), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(10573), 1, anon_sym_AMP, + ACTIONS(10575), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5233), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9565), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9954), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5617), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6604), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(6606), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 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, @@ -511509,32 +588966,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_template, - anon_sym_operator, - [66675] = 7, + [115346] = 3, 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(9360), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -511544,24 +588979,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(10208), 33, + ACTIONS(9362), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -511569,7 +589006,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, @@ -511586,51 +589022,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [66746] = 5, + [115407] = 29, ACTIONS(3), 1, sym_comment, - STATE(5000), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7425), 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(3836), 1, + anon_sym_enum, + ACTIONS(3838), 1, + anon_sym_class, + ACTIONS(3840), 1, + anon_sym_struct, + ACTIONS(3842), 1, + anon_sym_union, + ACTIONS(3848), 1, + sym_auto, + ACTIONS(3850), 1, + anon_sym_decltype, + ACTIONS(3852), 1, anon_sym_LBRACK_COLON, - ACTIONS(7423), 39, - anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11615), 1, + sym_identifier, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(11619), 1, + sym_primitive_type, + ACTIONS(11621), 1, + anon_sym_typename, + STATE(2036), 1, + sym_type_specifier, + STATE(2069), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2228), 1, + sym_template_type, + STATE(2229), 1, + sym_qualified_type_identifier, + STATE(2255), 1, + sym_splice_specifier, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(9811), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2345), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3832), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2339), 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___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - 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, @@ -511643,46 +589108,190 @@ 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, - [66813] = 3, + [115520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5595), 7, + ACTIONS(9352), 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(9354), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(5593), 48, + anon_sym_CARET, + anon_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, + [115581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9253), 23, + 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_using, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + 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(9255), 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + 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, + [115642] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10569), 1, + anon_sym_STAR, + ACTIONS(10571), 1, + anon_sym_AMP_AMP, + ACTIONS(10573), 1, + anon_sym_AMP, + ACTIONS(10575), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5233), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9565), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9940), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6616), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(6618), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -511695,55 +589304,74 @@ 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, - [66876] = 4, + [115747] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10836), 1, - anon_sym_namespace, - ACTIONS(10272), 7, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10569), 1, anon_sym_STAR, + ACTIONS(10571), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(10270), 47, + ACTIONS(10573), 1, anon_sym_AMP, + ACTIONS(10575), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5233), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9565), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9945), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5627), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6608), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(6610), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 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, @@ -511756,32 +589384,70 @@ 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, - [66941] = 7, + [115852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5699), 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(5671), 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(5663), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_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_LT_EQ_GT, + anon_sym_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, + [115917] = 3, 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(10186), 18, + ACTIONS(9865), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -511791,24 +589457,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(10184), 33, + ACTIONS(9867), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -511816,7 +589484,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, @@ -511833,125 +589500,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [67012] = 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(10542), 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(10544), 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, - [67121] = 4, + [115978] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(10838), 1, - anon_sym_typedef, - ACTIONS(3118), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + 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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5657), 1, + anon_sym_typename, + ACTIONS(6640), 1, + sym_identifier, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4770), 1, + sym_splice_specifier, + STATE(5336), 1, + sym_type_specifier, + STATE(9769), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 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(4346), 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, @@ -511964,71 +589586,54 @@ 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, - [67186] = 3, + [116091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7158), 10, + ACTIONS(9329), 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_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7160), 45, + ACTIONS(9331), 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___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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -512037,169 +589642,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [67249] = 8, + [116152] = 3, 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(9329), 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_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, - 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_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_GT2, - [67322] = 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, - 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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), 27, + ACTIONS(9331), 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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [116213] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10840), 1, - anon_sym_friend, - ACTIONS(3118), 7, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10569), 1, anon_sym_STAR, + ACTIONS(10571), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(10573), 1, anon_sym_AMP, + ACTIONS(10575), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5233), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9565), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9964), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(5970), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 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, @@ -512212,32 +589782,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_template, - anon_sym_operator, - [67454] = 7, + [116318] = 3, 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(9869), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -512258,13 +589806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10196), 31, + ACTIONS(9871), 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, @@ -512290,142 +589840,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [67525] = 4, + [116379] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10846), 1, - anon_sym_friend, - ACTIONS(3118), 7, + ACTIONS(11309), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11758), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11760), 3, 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, + ACTIONS(11774), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 7, + 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, - [67590] = 31, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10068), 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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_DASH_GT_STAR, + [116466] = 25, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5966), 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, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10848), 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, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10569), 1, + anon_sym_STAR, + ACTIONS(10571), 1, + anon_sym_AMP_AMP, + ACTIONS(10573), 1, + anon_sym_AMP, + ACTIONS(10575), 1, + anon_sym_COLON_COLON, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5233), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9565), 1, sym__scope_resolution, - STATE(10095), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9939), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6612), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(6614), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -512439,81 +589991,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [67709] = 31, + [116571] = 25, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5966), 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, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10850), 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, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10569), 1, + anon_sym_STAR, + ACTIONS(10571), 1, + anon_sym_AMP_AMP, + ACTIONS(10573), 1, + anon_sym_AMP, + ACTIONS(10575), 1, + anon_sym_COLON_COLON, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5233), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9565), 1, sym__scope_resolution, - STATE(10005), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9966), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6600), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(6602), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -512527,18 +590071,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [67828] = 7, + [116676] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6572), 1, - anon_sym_LBRACE, - ACTIONS(10852), 1, - anon_sym_LT, - STATE(4045), 1, - sym_template_argument_list, - ACTIONS(6574), 18, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10178), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -512549,26 +590098,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6567), 33, + ACTIONS(10180), 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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -512589,85 +590134,166 @@ 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, - [67899] = 8, + anon_sym_DASH_GT_STAR, + [116749] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7687), 1, + ACTIONS(11053), 1, + anon_sym_EQ, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(3892), 1, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11762), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11764), 1, + anon_sym_AMP_AMP, + ACTIONS(11766), 1, + anon_sym_PIPE, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11780), 1, + anon_sym_or, + ACTIONS(11782), 1, + anon_sym_and, + ACTIONS(11784), 1, + anon_sym_bitor, + ACTIONS(11786), 1, + anon_sym_bitand, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, sym_argument_list, - STATE(5964), 1, - sym_initializer_list, - ACTIONS(7223), 10, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11758), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11768), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11760), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11772), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11774), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11055), 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, + [116856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9888), 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_const, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7225), 40, + ACTIONS(9890), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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___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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67972] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [116917] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - STATE(1980), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10202), 20, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10182), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -512677,24 +590303,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(10200), 31, + ACTIONS(10184), 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, @@ -512702,6 +590327,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, @@ -512712,188 +590338,131 @@ 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, - [68043] = 13, + anon_sym_DASH_GT_STAR, + [116992] = 3, 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, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(5636), 34, + ACTIONS(9263), 23, + 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - anon_sym_template, - anon_sym_operator, - [68126] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4863), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7549), 13, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9265), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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(7547), 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_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [68193] = 7, + 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, + [117053] = 26, 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(11075), 1, + anon_sym_EQ, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11762), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11764), 1, + anon_sym_AMP_AMP, + ACTIONS(11766), 1, + anon_sym_PIPE, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11780), 1, + anon_sym_or, + ACTIONS(11782), 1, + anon_sym_and, + ACTIONS(11784), 1, + anon_sym_bitor, + ACTIONS(11786), 1, + anon_sym_bitand, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11768), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11772), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11774), 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(8915), 32, + ACTIONS(11077), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -512905,29 +590474,22 @@ 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [68264] = 7, + [117160] = 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(10194), 18, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(11862), 1, + anon_sym_LT, + STATE(5802), 1, + sym_template_argument_list, + ACTIONS(6783), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -512937,24 +590499,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(10192), 33, + ACTIONS(6776), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -512962,7 +590525,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, @@ -512977,24 +590539,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, - [68335] = 8, + anon_sym_GT2, + [117229] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10568), 1, + ACTIONS(2970), 1, + anon_sym_LBRACE, + ACTIONS(11701), 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(9439), 19, + STATE(6518), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9849), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -513004,25 +590560,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(9441), 30, + ACTIONS(9851), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -513030,7 +590586,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, @@ -513044,17 +590599,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68408] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [117296] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 2, - anon_sym_final, - anon_sym_override, - STATE(4679), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9139), 20, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6781), 1, + anon_sym_LBRACE, + ACTIONS(11865), 1, + anon_sym_LT, + STATE(5997), 1, + sym_template_argument_list, + ACTIONS(6783), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -513064,18 +590622,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(9141), 31, + ACTIONS(6776), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -513083,7 +590638,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 +590648,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,162 +590663,69 @@ 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, - 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(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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [68592] = 31, + [117365] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(3248), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(3250), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(3252), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(3254), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(3280), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(3282), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11651), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(11655), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(11657), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10863), 1, - anon_sym_RPAREN, - STATE(2852), 1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, + STATE(4341), 1, sym_template_type, - STATE(3747), 1, + STATE(4342), 1, sym_qualified_type_identifier, - STATE(7223), 1, + STATE(4492), 1, + sym_decltype_auto, + STATE(6795), 1, sym_type_specifier, - STATE(7260), 1, + STATE(8086), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9755), 1, sym__scope_resolution, - STATE(9915), 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, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(4495), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(3244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4493), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513282,122 +590747,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [68711] = 10, + [117478] = 3, 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(5623), 24, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + 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(8002), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5625), 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_LBRACK_LBRACK, + 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_DOT_STAR, - anon_sym_DASH_GT_STAR, - [68788] = 11, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [117539] = 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(10663), 3, + ACTIONS(9263), 20, + 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, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_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), 29, + anon_sym_DOT, + ACTIONS(9265), 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, @@ -513405,7 +590845,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, @@ -513416,46 +590855,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [68867] = 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, + [117600] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(10713), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - STATE(1977), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10198), 18, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(10196), 33, + ACTIONS(10068), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -513470,92 +590928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [68938] = 6, - 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, - 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(7528), 37, - 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, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [69007] = 7, + anon_sym_DASH_GT_STAR, + [117683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(7458), 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, + ACTIONS(7359), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -513566,16 +590948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6567), 32, + ACTIONS(7361), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -513585,7 +590967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -513608,147 +590991,14 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - 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_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, + [117746] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 1, - anon_sym_decltype, - ACTIONS(7457), 1, - anon_sym_LBRACE, - ACTIONS(10089), 1, - sym_auto, - STATE(4464), 1, - sym_decltype_auto, - ACTIONS(7223), 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), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11820), 1, 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, + ACTIONS(11824), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [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, + ACTIONS(9853), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -513763,19 +591013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8907), 32, + ACTIONS(9855), 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, @@ -513787,29 +591037,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_STAR, - [69287] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [117811] = 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(10206), 20, + ACTIONS(11846), 1, + anon_sym_LT, + STATE(2053), 1, + sym_template_argument_list, + ACTIONS(10094), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -513819,24 +591068,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(10204), 31, + ACTIONS(10096), 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_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -513844,6 +591096,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, @@ -513858,137 +591111,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [117876] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10588), 1, + anon_sym_STAR, + ACTIONS(10590), 1, + anon_sym_AMP_AMP, + ACTIONS(10592), 1, + anon_sym_AMP, + ACTIONS(10594), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5883), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9651), 1, + sym__scope_resolution, + STATE(9946), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5646), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6604), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(6606), 5, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [69358] = 26, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [117981] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9651), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - 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, - 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, + ACTIONS(10588), 1, 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(10487), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(10590), 1, + anon_sym_AMP_AMP, + ACTIONS(10592), 1, + anon_sym_AMP, + ACTIONS(10594), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5883), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9651), 1, + sym__scope_resolution, + STATE(9948), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6616), 3, 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, - [69467] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4815), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6618), 5, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7437), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118086] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10588), 1, anon_sym_STAR, + ACTIONS(10590), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10592), 1, + anon_sym_AMP, + ACTIONS(10594), 1, anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5883), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9651), 1, + sym__scope_resolution, + STATE(9969), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5649), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6608), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7435), 39, - anon_sym_AMP, + ACTIONS(6610), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -514001,78 +591351,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [118191] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10588), 1, + anon_sym_STAR, + ACTIONS(10590), 1, + anon_sym_AMP_AMP, + ACTIONS(10592), 1, + anon_sym_AMP, + ACTIONS(10594), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5883), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9651), 1, + sym__scope_resolution, + STATE(9958), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(5970), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118296] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_decltype, + ACTIONS(5194), 1, anon_sym_template, - anon_sym_operator, - [69534] = 24, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10588), 1, + anon_sym_STAR, + ACTIONS(10590), 1, + anon_sym_AMP_AMP, + ACTIONS(10592), 1, + anon_sym_AMP, + ACTIONS(10594), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5883), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9651), 1, + sym__scope_resolution, + STATE(9962), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(6614), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118401] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9651), 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(10695), 1, + ACTIONS(10588), 1, + anon_sym_STAR, + ACTIONS(10590), 1, anon_sym_AMP_AMP, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10703), 1, - anon_sym_and, - ACTIONS(10705), 1, - anon_sym_bitor, - STATE(3874), 1, + ACTIONS(10592), 1, + anon_sym_AMP, + ACTIONS(10594), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4094), 1, + sym_alignas_qualifier, + STATE(5883), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9651), 1, + sym__scope_resolution, + STATE(9965), 1, + sym__abstract_declarator, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(6602), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8587), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [118506] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + anon_sym_LBRACE, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + STATE(6485), 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(9707), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(10661), 2, + sym_initializer_list, + ACTIONS(9857), 18, 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(9709), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9859), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, @@ -514087,74 +591644,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [69639] = 31, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [118573] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(3280), 1, + sym_auto, + ACTIONS(3282), 1, + anon_sym_decltype, + ACTIONS(3300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3778), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(3780), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(3782), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(3784), 1, anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(11655), 1, + sym_primitive_type, + ACTIONS(11661), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(11665), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10868), 1, - anon_sym_RPAREN, - STATE(2852), 1, + STATE(2831), 1, + sym_type_specifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(4129), 1, + sym_splice_specifier, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, + STATE(4341), 1, sym_template_type, - STATE(3747), 1, + STATE(4342), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, + STATE(4492), 1, + sym_decltype_auto, + STATE(9761), 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, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(4495), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(3244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4493), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -514176,10 +591736,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [69758] = 3, + [118686] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 20, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10082), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -514193,24 +591769,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(5591), 35, + ACTIONS(10084), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -514229,194 +591800,76 @@ 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, - [69821] = 3, + [118761] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11309), 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(11347), 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, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10086), 17, 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_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10088), 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, - 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, + [118836] = 3, 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(10190), 20, + ACTIONS(9917), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -514437,13 +591890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10188), 31, + ACTIONS(9919), 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, @@ -514469,134 +591924,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [70116] = 7, + [118897] = 26, 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, - anon_sym_COMMA, + ACTIONS(11079), 1, + anon_sym_EQ, + ACTIONS(11309), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(11347), 1, anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(6603), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11762), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11764), 1, + anon_sym_AMP_AMP, + ACTIONS(11766), 1, anon_sym_PIPE, - anon_sym_GT, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, 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, + ACTIONS(11780), 1, anon_sym_or, + ACTIONS(11782), 1, anon_sym_and, + ACTIONS(11784), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11786), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11788), 1, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - 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, - [70187] = 22, - 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, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10705), 1, - anon_sym_bitor, - STATE(3874), 1, + STATE(6377), 1, sym_argument_list, - STATE(3900), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, + ACTIONS(11768), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(11778), 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(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(11772), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(11774), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 22, + ACTIONS(11081), 18, 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, @@ -514611,368 +592004,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [70288] = 28, + anon_sym_DASH_GT_STAR, + [119004] = 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(9826), 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, - 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(7621), 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(9828), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - 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_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_GT_GT_EQ, - anon_sym_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, - [70401] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10872), 1, - anon_sym_typedef, - 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___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, - [70466] = 52, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10717), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7623), 33, 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, - anon_sym_STAR, - ACTIONS(10729), 1, - anon_sym_SLASH, - ACTIONS(10731), 1, - anon_sym_PERCENT, - ACTIONS(10733), 1, + anon_sym_LPAREN2, 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_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(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_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10785), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [70627] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [119065] = 29, ACTIONS(3), 1, sym_comment, - STATE(4842), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7399), 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(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, + ACTIONS(4114), 1, + anon_sym_enum, + ACTIONS(4116), 1, + anon_sym_class, + ACTIONS(4118), 1, + anon_sym_struct, + ACTIONS(4120), 1, + anon_sym_union, + ACTIONS(4124), 1, + sym_auto, + ACTIONS(4126), 1, anon_sym_decltype, + ACTIONS(4128), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - anon_sym_operator, - [70694] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4852), 1, - sym_attribute_specifier, - ACTIONS(8236), 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, + ACTIONS(11669), 1, + sym_identifier, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7505), 39, - anon_sym_AMP, + ACTIONS(11673), 1, + sym_primitive_type, + ACTIONS(11675), 1, + anon_sym_typename, + STATE(2224), 1, + sym_type_specifier, + STATE(2389), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2836), 1, + sym_splice_specifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2890), 1, + sym__splice_specialization_specifier, + STATE(2982), 1, + sym_template_type, + STATE(2983), 1, + sym_qualified_type_identifier, + STATE(3336), 1, + sym_decltype_auto, + STATE(9817), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3338), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4110), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3337), 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___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - 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, @@ -514985,108 +592147,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [70761] = 7, + [119178] = 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(10174), 18, + ACTIONS(11868), 1, + sym_identifier, + STATE(5712), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7065), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7067), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8802), 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___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(10172), 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_xor, anon_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6807), 4, - 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, + sym_literal_suffix, + ACTIONS(8800), 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_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_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, @@ -515094,41 +592209,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5645), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - [70899] = 7, + [119247] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - STATE(1980), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10186), 20, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10046), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515138,24 +592235,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(10184), 31, + ACTIONS(10048), 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, @@ -515163,6 +592259,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, @@ -515175,146 +592272,19 @@ 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_GT2, - anon_sym_requires, - [70970] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10865), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7001), 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(6999), 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, - [71037] = 5, + anon_sym_DASH_GT_STAR, + [119320] = 7, ACTIONS(3), 1, sym_comment, - STATE(4908), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7455), 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(7458), 1, 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, + ACTIONS(10878), 1, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [71104] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10876), 2, - anon_sym_final, - anon_sym_override, - STATE(4737), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9143), 18, + ACTIONS(11870), 1, + sym_auto, + STATE(6643), 1, + sym_decltype_auto, + ACTIONS(7359), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515329,21 +592299,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(9145), 33, + anon_sym_DASH_GT, + ACTIONS(7361), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -515355,30 +592324,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_requires, - [71171] = 7, + anon_sym_DASH_GT_STAR, + [119389] = 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(11849), 1, + anon_sym_AMP_AMP, + ACTIONS(11851), 1, + anon_sym_and, + ACTIONS(11872), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11874), 1, + anon_sym_or, + ACTIONS(9737), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515395,17 +592363,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10208), 31, + ACTIONS(9739), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LPAREN2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -515431,77 +592397,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [71242] = 28, + [119458] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10105), 1, + anon_sym_EQ, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11347), 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, + ACTIONS(11375), 1, anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, + ACTIONS(11762), 1, anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, + ACTIONS(11764), 1, anon_sym_AMP_AMP, - ACTIONS(10697), 1, + ACTIONS(11766), 1, anon_sym_PIPE, - ACTIONS(10699), 1, - anon_sym_QMARK, - ACTIONS(10701), 1, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11780), 1, anon_sym_or, - ACTIONS(10703), 1, + ACTIONS(11782), 1, anon_sym_and, - ACTIONS(10705), 1, + ACTIONS(11784), 1, anon_sym_bitor, - STATE(3874), 1, + ACTIONS(11786), 1, + anon_sym_bitand, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, sym_argument_list, - STATE(3900), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, + ACTIONS(11768), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(11778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(11772), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(11774), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 18, + ACTIONS(10103), 18, + 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, @@ -515515,22 +592477,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [71355] = 7, + anon_sym_DASH_GT_STAR, + [119565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9008), 5, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(9006), 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, + [119626] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4254), 1, + anon_sym_enum, + ACTIONS(4256), 1, + anon_sym_class, + ACTIONS(4258), 1, + anon_sym_struct, + ACTIONS(4260), 1, + anon_sym_union, + ACTIONS(4286), 1, + sym_auto, + ACTIONS(4288), 1, + anon_sym_decltype, + ACTIONS(4304), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11677), 1, + sym_identifier, + ACTIONS(11679), 1, + anon_sym_COLON_COLON, + ACTIONS(11681), 1, + sym_primitive_type, + ACTIONS(11683), 1, + anon_sym_typename, + STATE(2795), 1, + sym_type_specifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3348), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4119), 1, + sym_splice_specifier, + STATE(4182), 1, + sym__splice_specialization_specifier, + STATE(4542), 1, + sym_template_type, + STATE(4544), 1, + sym_qualified_type_identifier, + STATE(4766), 1, + sym_decltype_auto, + STATE(9844), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4774), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4250), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4771), 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, + [119739] = 5, 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(11418), 1, + anon_sym_LBRACK, + STATE(5836), 1, + sym_new_declarator, + ACTIONS(10004), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515545,9 +592642,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(7966), 32, + ACTIONS(10006), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -515557,7 +592657,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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -515569,146 +592669,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, + [119804] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7719), 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, + ACTIONS(10337), 1, anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7717), 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, - [71489] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, + ACTIONS(11303), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10435), 1, - anon_sym_EQ, - ACTIONS(10667), 1, - anon_sym_AMP, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, + ACTIONS(11351), 1, + anon_sym_QMARK, + ACTIONS(11375), 1, anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, + ACTIONS(11762), 1, anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, + ACTIONS(11764), 1, anon_sym_AMP_AMP, - ACTIONS(10697), 1, + ACTIONS(11766), 1, anon_sym_PIPE, - ACTIONS(10701), 1, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11780), 1, anon_sym_or, - ACTIONS(10703), 1, + ACTIONS(11782), 1, anon_sym_and, - ACTIONS(10705), 1, + ACTIONS(11784), 1, anon_sym_bitor, - STATE(3874), 1, + ACTIONS(11786), 1, + anon_sym_bitand, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, sym_argument_list, - STATE(3900), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, + ACTIONS(11768), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(11778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(11772), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(11774), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(10339), 16, 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, @@ -515722,19 +592762,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [71598] = 7, + anon_sym_DASH_GT_STAR, + [119915] = 3, 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(10194), 20, + ACTIONS(9917), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515744,88 +592776,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(10192), 31, + ACTIONS(9919), 35, 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, - [71669] = 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(10174), 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(10172), 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, @@ -515833,6 +592803,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,75 +592820,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, - [71740] = 31, + [119976] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(4367), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(4369), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(4371), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(4373), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(4379), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(4381), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(4383), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(11685), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(11687), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(11689), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(11691), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10879), 1, - anon_sym_RPAREN, - STATE(2852), 1, + STATE(2200), 1, + sym_type_specifier, + STATE(2340), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, + STATE(2860), 1, sym_template_type, - STATE(3747), 1, + STATE(2861), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2979), 1, + sym_decltype_auto, + STATE(9746), 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, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(2981), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(4363), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(2980), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -515939,10 +592905,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [71859] = 3, + [120089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 20, + ACTIONS(6411), 1, + anon_sym_LBRACK_LBRACK, + STATE(3509), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10011), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515962,18 +592933,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5595), 35, + ACTIONS(10013), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -515995,139 +592964,53 @@ 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, - [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, + anon_sym_DASH_GT, + [120154] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11347), 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, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, sym_argument_list, - STATE(3900), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(10066), 17, 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(10475), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10068), 27, 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_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -516142,22 +593025,15 @@ static const uint16_t ts_small_parse_table[] = { 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_GT_STAR, + [120229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10689), 1, - anon_sym_LBRACK, - STATE(4851), 1, - sym_new_declarator, - STATE(5628), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9248), 19, + ACTIONS(3178), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -516176,16 +593052,17 @@ 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(3176), 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, @@ -516207,75 +593084,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, - [72169] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [120290] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(9599), 1, - anon_sym_EQ, - ACTIONS(9642), 1, + ACTIONS(11347), 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, + ACTIONS(11375), 1, anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, + ACTIONS(11764), 1, anon_sym_AMP_AMP, - ACTIONS(10697), 1, + ACTIONS(11766), 1, anon_sym_PIPE, - ACTIONS(10701), 1, - anon_sym_or, - ACTIONS(10703), 1, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11782), 1, anon_sym_and, - ACTIONS(10705), 1, + ACTIONS(11784), 1, anon_sym_bitor, - STATE(3874), 1, + ACTIONS(11786), 1, + anon_sym_bitand, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, sym_argument_list, - STATE(3900), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(10066), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(11389), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, + ACTIONS(11768), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(11778), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(11772), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(11774), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 20, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_PIPE_PIPE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -516290,199 +593166,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [72278] = 4, + anon_sym_DASH_GT_STAR, + [120393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10883), 1, - anon_sym_typedef, - ACTIONS(3118), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(9939), 20, + 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_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9941), 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, + [120454] = 4, 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, + ACTIONS(11876), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(10147), 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_const, + 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(7225), 41, + anon_sym_DASH_GT, + ACTIONS(10149), 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___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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [72414] = 31, + anon_sym_DASH_GT_STAR, + [120517] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11593), 1, + sym_identifier, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(11599), 1, + sym_primitive_type, + ACTIONS(11601), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(11603), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(11605), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(11607), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(11609), 1, + anon_sym_typename, + ACTIONS(11611), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(11613), 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, + STATE(2870), 1, sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, + STATE(5812), 1, sym_type_specifier, - STATE(7260), 1, + STATE(6894), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7345), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7520), 1, + sym_template_type, + STATE(7521), 1, + sym_qualified_type_identifier, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8014), 1, + sym_decltype_auto, + STATE(9795), 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, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(8016), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(11597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(8015), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -516504,179 +593368,136 @@ 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, - sym_auto, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(10384), 1, - anon_sym_LBRACK, - ACTIONS(10647), 1, - 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_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - 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, + [120630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10887), 1, - anon_sym_LBRACK_LBRACK, - STATE(4755), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 24, - aux_sym_preproc_elif_token1, + ACTIONS(9943), 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_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(9075), 28, + ACTIONS(9945), 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [72683] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [120691] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(10272), 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(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, + anon_sym_class, + ACTIONS(3740), 1, + anon_sym_struct, + ACTIONS(3742), 1, + anon_sym_union, + ACTIONS(3764), 1, anon_sym_LBRACK_COLON, - ACTIONS(10270), 42, - anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11705), 1, + sym_identifier, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(11709), 1, + anon_sym_typename, + STATE(2351), 1, + sym_type_specifier, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(9763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, @@ -516689,202 +593510,68 @@ 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_explicit, - anon_sym_template, - anon_sym_operator, - [72746] = 52, + [120804] = 3, 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(9939), 18, 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_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(8626), 1, - anon_sym_LPAREN2, - STATE(5789), 1, - sym_argument_list, - STATE(7373), 1, - sym_initializer_list, - 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(9941), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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___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, - [72980] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [120865] = 3, 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, + ACTIONS(9943), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -516903,16 +593590,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9302), 30, + ACTIONS(9945), 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, @@ -516934,81 +593622,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, - [73053] = 5, - 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, - 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, - 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, - [73120] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [120926] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + ACTIONS(11179), 1, anon_sym_LPAREN2, - ACTIONS(10713), 1, + ACTIONS(11181), 1, anon_sym_LBRACK, - STATE(1977), 1, + STATE(2062), 1, sym_parameter_list, - STATE(5085), 1, + STATE(5340), 1, sym__function_declarator_seq, - ACTIONS(10190), 18, + ACTIONS(9792), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517027,15 +593656,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10188), 33, + anon_sym_DASH_GT, + ACTIONS(9794), 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, @@ -517057,21 +593687,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, - [73191] = 6, + anon_sym_DASH_GT_STAR, + [120995] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(11179), 1, anon_sym_LPAREN2, - STATE(5651), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 19, + ACTIONS(11181), 1, + anon_sym_LBRACK, + STATE(2062), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9796), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517091,7 +593719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9379), 31, + ACTIONS(9798), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -517100,7 +593728,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, @@ -517123,47 +593750,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [73259] = 3, + [121064] = 29, 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, + ACTIONS(3868), 1, + anon_sym_enum, + ACTIONS(3870), 1, + anon_sym_class, + ACTIONS(3872), 1, + anon_sym_struct, + ACTIONS(3874), 1, + anon_sym_union, + ACTIONS(3880), 1, + sym_auto, + ACTIONS(3882), 1, + anon_sym_decltype, + ACTIONS(3884), 1, anon_sym_LBRACK_COLON, - ACTIONS(7735), 41, - anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11693), 1, + sym_identifier, + ACTIONS(11695), 1, + anon_sym_COLON_COLON, + ACTIONS(11697), 1, + sym_primitive_type, + ACTIONS(11699), 1, + anon_sym_typename, + STATE(2186), 1, + sym_type_specifier, + STATE(2337), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2640), 1, + sym_splice_specifier, + STATE(2685), 1, + sym__splice_specialization_specifier, + STATE(2852), 1, + sym_template_type, + STATE(2853), 1, + sym_qualified_type_identifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3034), 1, + sym_decltype_auto, + STATE(9759), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3036), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3864), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3035), 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, @@ -517176,22 +593834,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, - [73321] = 5, + [121177] = 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, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + STATE(5054), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10011), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517201,63 +593852,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, 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_not, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(10892), 31, + anon_sym_DOT, + ACTIONS(10013), 29, + 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_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, - [73387] = 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [121242] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(10902), 1, - anon_sym_LBRACK, - STATE(5163), 1, - sym_new_declarator, - STATE(5923), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 18, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3800), 1, + anon_sym_enum, + ACTIONS(3802), 1, + anon_sym_class, + ACTIONS(3804), 1, + anon_sym_struct, + ACTIONS(3806), 1, + anon_sym_union, + ACTIONS(3810), 1, + sym_auto, + ACTIONS(3812), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11532), 1, + sym_identifier, + ACTIONS(11534), 1, + anon_sym_COLON_COLON, + ACTIONS(11536), 1, + sym_primitive_type, + ACTIONS(11538), 1, + anon_sym_typename, + STATE(2088), 1, + sym_type_specifier, + STATE(2277), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2545), 1, + sym_splice_specifier, + STATE(2656), 1, + sym__splice_specialization_specifier, + STATE(2811), 1, + sym_template_type, + STATE(2818), 1, + sym_qualified_type_identifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2927), 1, + sym_decltype_auto, + STATE(9829), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2929), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3796), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2928), 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, + [121355] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 1, + anon_sym_enum, + ACTIONS(3838), 1, + anon_sym_class, + ACTIONS(3840), 1, + anon_sym_struct, + ACTIONS(3842), 1, + anon_sym_union, + ACTIONS(3848), 1, + sym_auto, + ACTIONS(3850), 1, + anon_sym_decltype, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11615), 1, + sym_identifier, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(11619), 1, + sym_primitive_type, + ACTIONS(11621), 1, + anon_sym_typename, + STATE(2009), 1, + sym_type_specifier, + STATE(2069), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2228), 1, + sym_template_type, + STATE(2229), 1, + sym_qualified_type_identifier, + STATE(2255), 1, + sym_splice_specifier, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(9811), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2345), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3832), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2339), 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, + [121468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7911), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517267,24 +594075,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9228), 30, + ACTIONS(7913), 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_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -517292,7 +594105,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,42 +594119,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [73459] = 4, + anon_sym_GT2, + [121529] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(3248), 1, + anon_sym_enum, + ACTIONS(3250), 1, + anon_sym_class, + ACTIONS(3252), 1, + anon_sym_struct, + ACTIONS(3254), 1, + anon_sym_union, + ACTIONS(3280), 1, + sym_auto, + ACTIONS(3282), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11651), 1, + sym_identifier, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - ACTIONS(7291), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(11655), 1, + sym_primitive_type, + ACTIONS(11657), 1, + anon_sym_typename, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4341), 1, + sym_template_type, + STATE(4342), 1, + sym_qualified_type_identifier, + STATE(4492), 1, + sym_decltype_auto, + STATE(6181), 1, + sym_type_specifier, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4495), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4493), 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(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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [121642] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3248), 1, + anon_sym_enum, + ACTIONS(3250), 1, + anon_sym_class, + ACTIONS(3252), 1, + anon_sym_struct, + ACTIONS(3254), 1, + anon_sym_union, + ACTIONS(3280), 1, + sym_auto, + ACTIONS(3282), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11651), 1, + sym_identifier, + ACTIONS(11653), 1, + anon_sym_COLON_COLON, + ACTIONS(11655), 1, + sym_primitive_type, + ACTIONS(11657), 1, + anon_sym_typename, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4341), 1, + sym_template_type, + STATE(4342), 1, + sym_qualified_type_identifier, + STATE(4492), 1, + sym_decltype_auto, + STATE(5868), 1, + sym_type_specifier, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4495), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4493), 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_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, @@ -517354,85 +594288,776 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [121755] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, + anon_sym_class, + ACTIONS(3740), 1, + anon_sym_struct, + ACTIONS(3742), 1, + anon_sym_union, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11705), 1, + sym_identifier, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(11709), 1, + anon_sym_typename, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2645), 1, + sym_type_specifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(9763), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [121868] = 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [73523] = 6, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6596), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [121981] = 29, 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, - anon_sym_DASH, - 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(9118), 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, - [73591] = 3, + ACTIONS(3280), 1, + sym_auto, + ACTIONS(3282), 1, + anon_sym_decltype, + ACTIONS(3300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3778), 1, + anon_sym_enum, + ACTIONS(3780), 1, + anon_sym_class, + ACTIONS(3782), 1, + anon_sym_struct, + ACTIONS(3784), 1, + anon_sym_union, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11655), 1, + sym_primitive_type, + ACTIONS(11661), 1, + sym_identifier, + ACTIONS(11663), 1, + anon_sym_COLON_COLON, + ACTIONS(11665), 1, + anon_sym_typename, + STATE(2561), 1, + sym_type_specifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4129), 1, + sym_splice_specifier, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4341), 1, + sym_template_type, + STATE(4342), 1, + sym_qualified_type_identifier, + STATE(4492), 1, + sym_decltype_auto, + STATE(9761), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4495), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4493), 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, + [122094] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 19, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11593), 1, + sym_identifier, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(11599), 1, + sym_primitive_type, + ACTIONS(11601), 1, + anon_sym_enum, + ACTIONS(11603), 1, + anon_sym_class, + ACTIONS(11605), 1, + anon_sym_struct, + ACTIONS(11607), 1, + anon_sym_union, + ACTIONS(11609), 1, + anon_sym_typename, + ACTIONS(11611), 1, + sym_auto, + ACTIONS(11613), 1, + anon_sym_decltype, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5322), 1, + sym_type_specifier, + STATE(6894), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7345), 1, + sym_splice_specifier, + STATE(7520), 1, + sym_template_type, + STATE(7521), 1, + sym_qualified_type_identifier, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8014), 1, + sym_decltype_auto, + STATE(9795), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8016), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8015), 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, + [122207] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4114), 1, + anon_sym_enum, + ACTIONS(4116), 1, + anon_sym_class, + ACTIONS(4118), 1, + anon_sym_struct, + ACTIONS(4120), 1, + anon_sym_union, + ACTIONS(4124), 1, + sym_auto, + ACTIONS(4126), 1, + anon_sym_decltype, + ACTIONS(4128), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11669), 1, + sym_identifier, + ACTIONS(11671), 1, + anon_sym_COLON_COLON, + ACTIONS(11673), 1, + sym_primitive_type, + ACTIONS(11675), 1, + anon_sym_typename, + STATE(2148), 1, + sym_type_specifier, + STATE(2389), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2836), 1, + sym_splice_specifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2890), 1, + sym__splice_specialization_specifier, + STATE(2982), 1, + sym_template_type, + STATE(2983), 1, + sym_qualified_type_identifier, + STATE(3336), 1, + sym_decltype_auto, + STATE(9817), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3338), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4110), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3337), 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, + [122320] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4254), 1, + anon_sym_enum, + ACTIONS(4256), 1, + anon_sym_class, + ACTIONS(4258), 1, + anon_sym_struct, + ACTIONS(4260), 1, + anon_sym_union, + ACTIONS(4286), 1, + sym_auto, + ACTIONS(4288), 1, + anon_sym_decltype, + ACTIONS(4304), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11677), 1, + sym_identifier, + ACTIONS(11679), 1, + anon_sym_COLON_COLON, + ACTIONS(11681), 1, + sym_primitive_type, + ACTIONS(11683), 1, + anon_sym_typename, + STATE(2566), 1, + sym_type_specifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3348), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4119), 1, + sym_splice_specifier, + STATE(4182), 1, + sym__splice_specialization_specifier, + STATE(4542), 1, + sym_template_type, + STATE(4544), 1, + sym_qualified_type_identifier, + STATE(4766), 1, + sym_decltype_auto, + STATE(9844), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4774), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4250), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4771), 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, + [122433] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 1, + anon_sym_enum, + ACTIONS(3838), 1, + anon_sym_class, + ACTIONS(3840), 1, + anon_sym_struct, + ACTIONS(3842), 1, + anon_sym_union, + ACTIONS(3848), 1, + sym_auto, + ACTIONS(3850), 1, + anon_sym_decltype, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11615), 1, + sym_identifier, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(11619), 1, + sym_primitive_type, + ACTIONS(11621), 1, + anon_sym_typename, + STATE(2069), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2131), 1, + sym_type_specifier, + STATE(2228), 1, + sym_template_type, + STATE(2229), 1, + sym_qualified_type_identifier, + STATE(2255), 1, + sym_splice_specifier, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(9811), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2345), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3832), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2339), 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, + [122546] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4367), 1, + anon_sym_enum, + ACTIONS(4369), 1, + anon_sym_class, + ACTIONS(4371), 1, + anon_sym_struct, + ACTIONS(4373), 1, + anon_sym_union, + ACTIONS(4379), 1, + sym_auto, + ACTIONS(4381), 1, + anon_sym_decltype, + ACTIONS(4383), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11687), 1, + anon_sym_COLON_COLON, + ACTIONS(11689), 1, + sym_primitive_type, + ACTIONS(11691), 1, + anon_sym_typename, + STATE(2115), 1, + sym_type_specifier, + STATE(2340), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2860), 1, + sym_template_type, + STATE(2861), 1, + sym_qualified_type_identifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2979), 1, + sym_decltype_auto, + STATE(9746), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2981), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4363), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2980), 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, + [122659] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3868), 1, + anon_sym_enum, + ACTIONS(3870), 1, + anon_sym_class, + ACTIONS(3872), 1, + anon_sym_struct, + ACTIONS(3874), 1, + anon_sym_union, + ACTIONS(3880), 1, + sym_auto, + ACTIONS(3882), 1, + anon_sym_decltype, + ACTIONS(3884), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11693), 1, + sym_identifier, + ACTIONS(11695), 1, + anon_sym_COLON_COLON, + ACTIONS(11697), 1, + sym_primitive_type, + ACTIONS(11699), 1, + anon_sym_typename, + STATE(2112), 1, + sym_type_specifier, + STATE(2337), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2640), 1, + sym_splice_specifier, + STATE(2685), 1, + sym__splice_specialization_specifier, + STATE(2852), 1, + sym_template_type, + STATE(2853), 1, + sym_qualified_type_identifier, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3034), 1, + sym_decltype_auto, + STATE(9759), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3036), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3864), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3035), 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, + [122772] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + ACTIONS(11414), 1, + anon_sym_LBRACE, + STATE(6057), 1, + sym_enumerator_list, + STATE(6710), 1, + sym_attribute_specifier, + ACTIONS(7421), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517447,12 +595072,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(9391), 35, + ACTIONS(7423), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -517474,29 +595096,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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, - [73653] = 5, + [122843] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(10904), 1, - anon_sym_LBRACK_LBRACK, - STATE(4769), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 17, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, + anon_sym_class, + ACTIONS(3740), 1, + anon_sym_struct, + ACTIONS(3742), 1, + anon_sym_union, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11705), 1, + sym_identifier, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(11709), 1, + anon_sym_typename, + STATE(2464), 1, + sym_type_specifier, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(9763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [122956] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, + anon_sym_class, + ACTIONS(3740), 1, + anon_sym_struct, + ACTIONS(3742), 1, + anon_sym_union, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11705), 1, + sym_identifier, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(11709), 1, + anon_sym_typename, + STATE(2368), 1, + sym_type_specifier, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(9763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [123069] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 1, + anon_sym_enum, + ACTIONS(3838), 1, + anon_sym_class, + ACTIONS(3840), 1, + anon_sym_struct, + ACTIONS(3842), 1, + anon_sym_union, + ACTIONS(3848), 1, + sym_auto, + ACTIONS(3850), 1, + anon_sym_decltype, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11615), 1, + sym_identifier, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(11619), 1, + sym_primitive_type, + ACTIONS(11621), 1, + anon_sym_typename, + STATE(2069), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2084), 1, + sym_type_specifier, + STATE(2228), 1, + sym_template_type, + STATE(2229), 1, + sym_qualified_type_identifier, + STATE(2255), 1, + sym_splice_specifier, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(9811), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2345), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3832), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2339), 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, + [123182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7814), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517510,11 +595376,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(9075), 34, + ACTIONS(7816), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -517524,6 +595392,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -517535,35 +595406,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, - [73719] = 8, + [123243] = 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(9484), 20, + ACTIONS(7714), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517578,19 +595435,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9486), 28, + ACTIONS(7716), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -517613,10 +595475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [73791] = 3, + [123304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 19, + ACTIONS(9352), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517626,26 +595488,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(9409), 35, + ACTIONS(9354), 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, @@ -517654,7 +595515,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, @@ -517668,142 +595528,15 @@ 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, - [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_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, - [73921] = 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_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [73985] = 5, + [123365] = 3, 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, + ACTIONS(9253), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517813,81 +595546,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_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8913), 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8915), 35, + ACTIONS(9255), 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, @@ -517896,7 +595573,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, @@ -517910,51 +595586,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [74113] = 3, + [123426] = 29, 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, + 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, anon_sym_LBRACK_COLON, - ACTIONS(7759), 41, - anon_sym_AMP, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(6841), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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 +595675,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_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [74175] = 11, + [123539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(3038), 1, + anon_sym_LBRACE, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, + STATE(6614), 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(10917), 3, + sym_initializer_list, + ACTIONS(9766), 18, + 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,12 +595699,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, - ACTIONS(9709), 27, + anon_sym_DOT, + ACTIONS(9768), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -518020,8 +595712,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___attribute__, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518040,16 +595732,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [74253] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [123606] = 3, 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, + ACTIONS(9271), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -518070,8 +595760,10 @@ 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(9141), 29, + ACTIONS(9273), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -518092,6 +595784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -518101,393 +595794,68 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7567), 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(7565), 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, - [74497] = 6, - 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, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - 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, - anon_sym_decltype, - anon_sym_template, - [74565] = 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(6289), 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(5185), 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, - [74681] = 28, + [123667] = 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(7472), 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(10479), 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(7474), 33, + 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_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, 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_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [123728] = 3, 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(3149), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518502,19 +595870,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(5134), 31, + anon_sym_DOT, + ACTIONS(3147), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -518528,32 +595899,83 @@ 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, - [74859] = 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [123789] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9304), 1, + ACTIONS(11878), 1, + sym_identifier, + STATE(5745), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7065), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7067), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8746), 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(8744), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10969), 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(5585), 1, - sym_parameter_list, - STATE(5055), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9484), 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, + [123858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518572,15 +595994,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9486), 30, + ACTIONS(7474), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518603,10 +596027,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [74931] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [123919] = 29, + ACTIONS(3), 1, + sym_comment, + 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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5184), 1, + sym_identifier, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5192), 1, + anon_sym_typename, + ACTIONS(5194), 1, + anon_sym_template, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4349), 1, + sym_splice_specifier, + STATE(5390), 1, + sym_type_specifier, + STATE(9818), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 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, + [124032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 19, + ACTIONS(9892), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518625,11 +596136,9 @@ 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(9894), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -518637,6 +596146,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, @@ -518657,38 +596167,28 @@ 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [74993] = 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(10935), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [124093] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11179), 1, + anon_sym_LPAREN2, + ACTIONS(11181), 1, + anon_sym_LBRACK, + STATE(2062), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9800), 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, @@ -518697,21 +596197,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9802), 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518730,57 +596230,128 @@ 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_STAR, + [124162] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11880), 1, anon_sym_DASH_GT, - ACTIONS(10935), 2, + ACTIONS(11882), 1, + anon_sym_requires, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8487), 1, + sym__function_attributes_start, + STATE(8568), 1, + sym_ref_qualifier, + STATE(9786), 1, + sym__function_attributes_end, + STATE(9813), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9650), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8834), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6399), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [124277] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9378), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 27, + anon_sym_DOT, + ACTIONS(9380), 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___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518788,7 +596359,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, @@ -518799,10 +596369,18 @@ 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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [124338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 19, + ACTIONS(9892), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518812,17 +596390,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5595), 35, + ACTIONS(9894), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -518830,9 +596409,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, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518840,7 +596417,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, @@ -518857,17 +596433,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, - [75217] = 5, + [124399] = 7, 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(7447), 1, + anon_sym_LBRACE, + ACTIONS(7987), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7444), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7449), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518878,23 +596458,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(10971), 31, + anon_sym_DOT, + ACTIONS(7454), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -518908,21 +596489,18 @@ 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, - [75283] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [124468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 19, + ACTIONS(9925), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518932,26 +596510,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(9447), 35, + ACTIONS(9927), 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, @@ -518960,7 +596537,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, @@ -518974,22 +596550,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_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [75345] = 7, + [124529] = 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(10186), 19, + ACTIONS(9935), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518999,26 +596568,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(10184), 31, + ACTIONS(9937), 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___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519026,7 +596595,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,131 +596609,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7757), 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_final, + anon_sym_override, anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7755), 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, - [75477] = 24, + anon_sym_requires, + [124590] = 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(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(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(10935), 2, + ACTIONS(9703), 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(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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9705), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, + 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, @@ -519173,146 +596653,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [75581] = 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_LT_EQ_GT, + anon_sym_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(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, - [75643] = 30, + anon_sym_requires, + [124651] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6397), 1, anon_sym_LBRACK, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(10348), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10934), 1, anon_sym_AMP, - ACTIONS(10354), 1, - anon_sym___attribute__, - ACTIONS(10357), 1, - anon_sym___attribute, - ACTIONS(10363), 1, + ACTIONS(10947), 1, anon_sym_const, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, + ACTIONS(11880), 1, anon_sym_DASH_GT, - ACTIONS(10979), 1, + ACTIONS(11884), 1, anon_sym_requires, - STATE(4333), 1, + STATE(7372), 1, sym_alignas_qualifier, - STATE(7505), 1, + STATE(8497), 1, sym__function_attributes_start, - STATE(7615), 1, + STATE(8567), 1, sym_ref_qualifier, - STATE(8396), 1, - sym_trailing_return_type, - STATE(8470), 1, + STATE(9767), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9771), 1, + sym_trailing_return_type, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10365), 2, + ACTIONS(10949), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10821), 2, + ACTIONS(11484), 2, anon_sym_final, anon_sym_override, - STATE(6144), 2, + STATE(6837), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6360), 2, + STATE(7162), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8522), 2, + STATE(9650), 2, sym__function_postfix, sym_requires_clause, - STATE(7765), 3, + STATE(8839), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(6481), 5, + ACTIONS(6399), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, anon_sym_GT2, - ACTIONS(10352), 12, + ACTIONS(10936), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -519325,18 +596756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [75759] = 7, + [124766] = 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(10190), 19, + ACTIONS(9703), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519346,26 +596769,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(10188), 31, + ACTIONS(9705), 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___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519373,7 +596796,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, @@ -519388,18 +596810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75829] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [124827] = 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(10194), 19, + ACTIONS(9925), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519413,22 +596831,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10192), 31, + ACTIONS(9927), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519451,80 +596869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75899] = 3, - 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, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7569), 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, - [75961] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [124888] = 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(9935), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519534,24 +596885,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(9228), 28, + ACTIONS(9937), 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, @@ -519559,6 +596912,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, @@ -519573,19 +596927,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [76033] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [124949] = 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(9703), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519599,22 +596947,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10172), 31, + ACTIONS(9705), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519637,133 +596985,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76103] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [125010] = 3, 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, + ACTIONS(9703), 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___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7090), 44, + 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), 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_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_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, - [76171] = 30, + [125071] = 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, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(10996), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(10998), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(11000), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(11002), 1, - anon_sym_typename, - ACTIONS(11004), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(11006), 1, + ACTIONS(2282), 1, anon_sym_decltype, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(6426), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6581), 1, - sym_splice_specifier, - STATE(6741), 1, - sym_type_specifier, - STATE(7121), 1, - sym__splice_specialization_specifier, - STATE(7225), 1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, sym_template_type, - STATE(7440), 1, + STATE(2926), 1, sym_qualified_type_identifier, - STATE(7625), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, sym_decltype_auto, - STATE(8509), 1, - sym_type_descriptor, - STATE(8700), 1, + STATE(5618), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5179), 2, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(7592), 2, + STATE(3234), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10990), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(7655), 7, + STATE(3233), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -519785,18 +597130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [76287] = 7, + [125184] = 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(10198), 19, + ACTIONS(7739), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519806,26 +597143,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10196), 31, + ACTIONS(7741), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519833,7 +597173,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, @@ -519848,18 +597187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76357] = 7, + anon_sym_GT2, + [125245] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(2970), 1, + anon_sym_LBRACE, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1979), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10202), 19, + STATE(6537), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9857), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519869,26 +597208,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10200), 31, + ACTIONS(9859), 29, 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519896,7 +597234,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, @@ -519911,77 +597248,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76427] = 3, + anon_sym_GT2, + [125312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 7, + ACTIONS(7290), 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_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7303), 47, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7292), 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_EQ_EQ, + anon_sym_BANG_EQ, 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, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_try, - anon_sym_requires, - [76489] = 7, + [125373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(3038), 1, + anon_sym_LBRACE, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1979), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10206), 19, + STATE(6569), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9832), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519995,13 +597331,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(10204), 31, + ACTIONS(9834), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -520009,8 +597344,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___attribute__, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -520033,18 +597368,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76559] = 7, + [125440] = 29, + 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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5657), 1, + anon_sym_typename, + ACTIONS(6640), 1, + sym_identifier, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4770), 1, + sym_splice_specifier, + STATE(4864), 1, + sym_type_specifier, + STATE(9769), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 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, + [125553] = 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(5194), 1, + anon_sym_template, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(5890), 1, + sym_type_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [125666] = 29, + ACTIONS(3), 1, + sym_comment, + 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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5184), 1, + sym_identifier, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5192), 1, + anon_sym_typename, + ACTIONS(5194), 1, + anon_sym_template, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4349), 1, + sym_splice_specifier, + STATE(5028), 1, + sym_type_specifier, + STATE(9818), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 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, + [125779] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, + anon_sym_class, + ACTIONS(3740), 1, + anon_sym_struct, + ACTIONS(3742), 1, + anon_sym_union, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11705), 1, + sym_identifier, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(11709), 1, + anon_sym_typename, + STATE(2439), 1, + sym_type_specifier, + STATE(2489), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(9763), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3233), 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, + [125892] = 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(7790), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520054,26 +597717,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10208), 31, + ACTIONS(7792), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -520081,7 +597747,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, @@ -520096,150 +597761,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76629] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - 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(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, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(9709), 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, - [76729] = 3, + anon_sym_GT2, + [125953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 19, + ACTIONS(9292), 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(9417), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9294), 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_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [76791] = 4, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [126014] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 20, + ACTIONS(11179), 1, + anon_sym_LPAREN2, + ACTIONS(11181), 1, + anon_sym_LBRACK, + STATE(2062), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9804), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520253,24 +597845,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6596), 32, + ACTIONS(9806), 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, @@ -520293,47 +597882,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76855] = 3, + [126083] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 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(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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(7779), 41, - anon_sym_AMP, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5657), 1, + anon_sym_typename, + ACTIONS(6640), 1, + sym_identifier, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4738), 1, + sym_type_specifier, + STATE(4770), 1, + sym_splice_specifier, + STATE(9769), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 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, @@ -520346,46 +597966,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, - [76917] = 3, + [126196] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 19, + ACTIONS(11045), 1, + anon_sym_EQ, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11375), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11762), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11764), 1, + anon_sym_AMP_AMP, + ACTIONS(11766), 1, + anon_sym_PIPE, + ACTIONS(11770), 1, + anon_sym_AMP, + ACTIONS(11776), 1, + anon_sym_GT_EQ, + ACTIONS(11780), 1, + anon_sym_or, + ACTIONS(11782), 1, + anon_sym_and, + ACTIONS(11784), 1, + anon_sym_bitor, + ACTIONS(11786), 1, + anon_sym_bitand, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11758), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11768), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11778), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11772), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11774), 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(8907), 35, + ACTIONS(11047), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -520400,82 +598046,70 @@ 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, - [76979] = 30, + [126303] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3732), 1, + ACTIONS(75), 1, anon_sym_enum, - ACTIONS(3734), 1, + ACTIONS(77), 1, anon_sym_class, - ACTIONS(3736), 1, + ACTIONS(79), 1, anon_sym_struct, - ACTIONS(3738), 1, + ACTIONS(81), 1, anon_sym_union, - ACTIONS(3742), 1, + ACTIONS(129), 1, sym_auto, - ACTIONS(3744), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5184), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, - sym_primitive_type, - ACTIONS(11014), 1, + ACTIONS(5192), 1, anon_sym_typename, - STATE(2180), 1, + ACTIONS(5194), 1, + anon_sym_template, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3245), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2292), 1, - sym_type_specifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(4033), 1, sym_template_type, - STATE(2698), 1, + STATE(4036), 1, sym_qualified_type_identifier, - STATE(2997), 1, + STATE(4287), 1, sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(5020), 1, - sym_type_descriptor, - STATE(8682), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(5647), 1, + sym_type_specifier, + STATE(9818), 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, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3728), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(4346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -520497,69 +598131,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [77095] = 3, + [126416] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7665), 13, + ACTIONS(11887), 1, + sym_identifier, + STATE(5745), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(11890), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11893), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8758), 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(8756), 21, 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(7663), 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, - [77157] = 3, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [126485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 19, + ACTIONS(7621), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520578,11 +598215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8994), 35, + ACTIONS(7623), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -520590,6 +598225,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, @@ -520611,71 +598247,51 @@ 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, - [77219] = 20, + [126546] = 8, 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(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + ACTIONS(11414), 1, + anon_sym_LBRACE, + STATE(5902), 1, + sym_enumerator_list, + STATE(6658), 1, + sym_attribute_specifier, + ACTIONS(7417), 16, 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_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(9709), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7419), 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___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, @@ -520687,20 +598303,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, - [77315] = 5, + anon_sym_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, + [126617] = 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(9861), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520715,19 +598332,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(5168), 31, + anon_sym_DOT, + ACTIONS(9863), 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_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -520741,77 +598361,53 @@ 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, - 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [126678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7911), 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(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), 7, - anon_sym_PIPE, - anon_sym_CARET, + 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), 21, + anon_sym_DOT, + ACTIONS(7913), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -520826,226 +598422,192 @@ 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, - [77475] = 3, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [126739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 13, + ACTIONS(9329), 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(9331), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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(7585), 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_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - 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, + 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, + [126800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 19, + ACTIONS(9329), 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(9421), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9331), 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_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [126861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9296), 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, - anon_sym_DASH_GT_STAR, - [77715] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, + ACTIONS(9298), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(10902), 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_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(5233), 1, - sym_new_declarator, - STATE(5779), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9248), 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, + [126922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7714), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521059,19 +598621,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9250), 30, + ACTIONS(7716), 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_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -521095,69 +598662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [77787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7475), 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(7473), 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, - [77849] = 3, + [126983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 19, + ACTIONS(9865), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521176,11 +598684,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9335), 35, + ACTIONS(9867), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -521188,6 +598694,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, @@ -521209,105 +598716,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, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [77911] = 30, + [127044] = 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(9360), 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(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(10647), 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, - [78027] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9362), 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, + [127105] = 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, + sym_comment, + ACTIONS(9869), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521321,20 +598795,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(9073), 34, + ACTIONS(9871), 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, @@ -521346,77 +598822,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [78093] = 17, + [127166] = 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(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, + ACTIONS(9888), 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_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_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(9890), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -521431,244 +598883,21 @@ 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, - 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(11126), 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, - [78299] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - 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, - 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - 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(10747), 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, - [78479] = 3, + 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, + [127227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 19, + ACTIONS(7818), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521678,26 +598907,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8923), 35, + ACTIONS(7820), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -521706,7 +598937,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, @@ -521720,14 +598950,12 @@ 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, - [78541] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [127288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 19, + ACTIONS(7739), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521741,23 +598969,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8948), 35, + ACTIONS(7741), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -521779,245 +599009,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, - [78603] = 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(8162), 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, - [78719] = 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(11399), 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, - [78835] = 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, - [78897] = 3, + anon_sym_DASH_GT, + [127349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 21, + ACTIONS(7290), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522027,19 +599023,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___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5591), 33, + ACTIONS(7292), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -522047,7 +599041,11 @@ 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522055,6 +599053,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, @@ -522069,124 +599068,46 @@ 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, - [78959] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7633), 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(7631), 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, - [79021] = 16, + [127410] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11179), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11181), 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, + STATE(2062), 1, + sym_parameter_list, + STATE(5340), 1, + sym__function_declarator_seq, + ACTIONS(9774), 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(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_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, + anon_sym_DASH_GT, + ACTIONS(9776), 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_SEMI, - anon_sym___attribute__, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522201,13 +599122,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, - [79109] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [127479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 19, + ACTIONS(7790), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522221,23 +599147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7966), 35, + ACTIONS(7792), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522259,129 +599187,33 @@ 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, - [79171] = 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(7260), 1, - sym_splice_specifier, - STATE(7593), 1, - sym_type_specifier, - STATE(8362), 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(5211), 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, - [79287] = 3, + anon_sym_DASH_GT, + [127540] = 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, + ACTIONS(9000), 5, 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(7607), 41, - anon_sym_AMP, + ACTIONS(8998), 48, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -522404,25 +599236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_template, - anon_sym_operator, - [79349] = 8, + [127601] = 4, 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(11896), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(10147), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522432,24 +599261,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(9250), 28, + ACTIONS(10149), 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, @@ -522457,6 +599290,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, @@ -522471,208 +599305,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [79421] = 6, - 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, - anon_sym_DASH, - 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(9118), 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, - [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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - 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, + [127664] = 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, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, + anon_sym_class, + ACTIONS(3740), 1, + anon_sym_struct, + ACTIONS(3742), 1, + anon_sym_union, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11705), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(11709), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, + STATE(2523), 1, + sym_type_specifier, + STATE(2870), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(2916), 1, sym_template_type, - STATE(3747), 1, + STATE(2926), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(3037), 1, sym_splice_specifier, - STATE(8362), 1, - sym_type_descriptor, - STATE(8711), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(9763), 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(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(3234), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, ACTIONS(2244), 4, @@ -522680,7 +599367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3233), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -522702,10 +599389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [79713] = 3, + [127777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 19, + ACTIONS(7818), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522719,23 +599406,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3161), 35, + ACTIONS(7820), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522757,111 +599446,230 @@ 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, - [79775] = 30, + anon_sym_DASH_GT, + [127838] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(11901), 1, + anon_sym_virtual, + ACTIONS(11910), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11913), 1, + anon_sym___declspec, + STATE(2870), 1, + sym_alignas_qualifier, + ACTIONS(10491), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(3807), 1, + ACTIONS(11907), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11916), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5767), 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(11904), 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(11898), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(10489), 14, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, anon_sym_enum, - ACTIONS(3809), 1, anon_sym_class, - ACTIONS(3811), 1, anon_sym_struct, - ACTIONS(3813), 1, anon_sym_union, - ACTIONS(3819), 1, + anon_sym_typename, + sym_identifier, sym_auto, - ACTIONS(3821), 1, anon_sym_decltype, - ACTIONS(5160), 1, anon_sym_template, - ACTIONS(11036), 1, + [127917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9329), 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(9331), 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, + [127978] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 1, + anon_sym_LPAREN2, + ACTIONS(5655), 1, + anon_sym_LBRACK, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(8900), 1, + anon_sym_STAR, + ACTIONS(8906), 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, + ACTIONS(11832), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11836), 1, + anon_sym_AMP_AMP, + ACTIONS(11838), 1, + anon_sym_AMP, + ACTIONS(11919), 1, + anon_sym_EQ, + STATE(3495), 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, + STATE(5954), 1, + sym_parameter_list, + STATE(8830), 1, sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2169), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9828), 1, + sym__declarator, + STATE(10066), 1, + sym__abstract_declarator, + STATE(10230), 1, + sym_abstract_reference_declarator, + STATE(10813), 1, + sym_variadic_reference_declarator, + STATE(11363), 1, + sym_variadic_declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11834), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(10261), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9556), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_qualified_identifier, + STATE(13053), 5, sym_decltype, - sym_splice_type_specifier, - STATE(5189), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [128099] = 5, 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(7115), 2, + anon_sym_final, + anon_sym_override, + STATE(5590), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9499), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522876,19 +599684,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(9258), 30, + anon_sym_DASH_GT, + ACTIONS(9501), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522900,32 +599708,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_DOT_STAR, - anon_sym_DASH_GT, - [79963] = 8, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [128164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, - 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(9476), 18, + ACTIONS(8285), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522944,15 +599742,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9478), 30, + ACTIONS(8287), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522975,17 +599775,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [80035] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [128225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - STATE(5577), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 19, + ACTIONS(11921), 1, + anon_sym_LT, + STATE(4467), 1, + sym_template_argument_list, + ACTIONS(10094), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522996,25 +599796,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(9433), 31, + ACTIONS(10096), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -523036,156 +599837,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, - [80103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7625), 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(7623), 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, - [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, + anon_sym_DASH_GT, + [128290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 19, + ACTIONS(9707), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523199,13 +599855,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(5591), 35, + ACTIONS(9709), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -523214,7 +599869,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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -523241,96 +599896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [80343] = 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(11221), 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, - [80459] = 3, + [128351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 19, + ACTIONS(9711), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523349,11 +599918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9425), 35, + ACTIONS(9713), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -523361,6 +599928,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, @@ -523382,197 +599950,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, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [80521] = 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(10758), 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, - [80637] = 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(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, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [80753] = 8, + [128412] = 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(9439), 20, + ACTIONS(9724), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523582,24 +599967,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(9441), 28, + ACTIONS(9726), 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, @@ -523607,6 +599994,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, @@ -523621,594 +600009,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [80825] = 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(11506), 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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7629), 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(7627), 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, - [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, + anon_sym_requires, + [128473] = 3, 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, + ACTIONS(3149), 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_GT_EQ, anon_sym_LT_EQ, - anon_sym_GT_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(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, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(3147), 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, @@ -524217,96 +600055,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_COLON_COLON, + 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7645), 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(7643), 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, - [81661] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [128534] = 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(9300), 20, + ACTIONS(9728), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524316,24 +600083,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(9302), 28, + ACTIONS(9730), 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, @@ -524341,6 +600110,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,167 +600125,13 @@ 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, - 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, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7771), 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, - [81795] = 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(11396), 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, - [81911] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [128595] = 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(9336), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524525,24 +600141,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(9478), 28, + ACTIONS(9338), 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, @@ -524550,6 +600168,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, @@ -524564,70 +600183,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [81983] = 3, - 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, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7647), 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, - [82045] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [128656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 19, + ACTIONS(9816), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524646,11 +600208,9 @@ 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(9818), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -524658,6 +600218,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, @@ -524679,81 +600240,44 @@ 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, - [82107] = 28, + [128717] = 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(10489), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, + ACTIONS(9267), 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(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(10491), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9269), 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, anon_sym_PERCENT_EQ, @@ -524767,96 +600291,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [82219] = 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(11024), 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, - [82335] = 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, + [128778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 19, + ACTIONS(9845), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524875,11 +600324,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8956), 35, + ACTIONS(9847), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -524887,6 +600334,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, @@ -524908,256 +600356,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_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [82397] = 30, - 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(7088), 1, - sym_type_specifier, - STATE(7326), 1, - sym_splice_specifier, - STATE(8509), 1, - sym_type_descriptor, - STATE(8745), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4373), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5190), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - 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, - [82513] = 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(11140), 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, - [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, + [128839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(3038), 1, anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(10984), 1, - anon_sym_LBRACK, - STATE(5218), 1, - sym_new_declarator, - STATE(5896), 2, + STATE(6415), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9256), 20, + ACTIONS(9849), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -525167,24 +600380,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(9258), 28, + ACTIONS(9851), 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, @@ -525192,6 +600406,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, @@ -525206,601 +600421,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [82763] = 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(11242), 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, - [82879] = 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(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, - 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, + [128906] = 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(9271), 20, + 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_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4318), 1, - sym_template_argument_list, - ACTIONS(6572), 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_LT_LT, + anon_sym_GT_GT, 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, - 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(10697), 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, - [83241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7653), 13, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9273), 33, 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(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_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_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [83303] = 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(10763), 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, - [83419] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11054), 2, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, - STATE(4889), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9143), 21, - aux_sym_preproc_elif_token1, + anon_sym_GT2, + anon_sym_requires, + [128967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9275), 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_requires, - ACTIONS(9145), 29, + ACTIONS(9277), 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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [83485] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [129028] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11389), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11760), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -525813,19 +600575,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(8422), 35, + ACTIONS(10068), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -525844,103 +600602,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [83547] = 30, - 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(6835), 1, - sym_type_specifier, - STATE(7326), 1, - sym_splice_specifier, - STATE(8509), 1, - sym_type_descriptor, - STATE(8745), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4373), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5191), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - 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, - [83663] = 3, + [129105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 19, + ACTIONS(9445), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -525954,13 +600620,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(9447), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -525970,7 +600637,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, @@ -525992,100 +600659,203 @@ 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, + [129165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 25, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [83725] = 30, + ACTIONS(7497), 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, + [129227] = 4, 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(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 25, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, sym_auto, - 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7497), 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, + [129289] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 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(10068), 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, + [129379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 19, + ACTIONS(11703), 1, + anon_sym_LBRACK, + STATE(6242), 1, + sym_new_declarator, + ACTIONS(10004), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -526095,27 +600865,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(9363), 35, + ACTIONS(10006), 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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -526123,7 +600892,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, @@ -526137,19 +600905,12 @@ 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, + anon_sym_GT2, + [129443] = 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(8837), 17, + ACTIONS(5623), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -526167,7 +600928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8839), 34, + ACTIONS(5625), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -526177,6 +600938,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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -526202,824 +600964,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [83969] = 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(6746), 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(5239), 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, - [84085] = 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(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, - 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(11033), 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, - [84317] = 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, - 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, - 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(11120), 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, - [84549] = 30, + [129503] = 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(9336), 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(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11170), 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, - [84665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7749), 13, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9338), 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_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(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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [84727] = 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(11410), 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, - [84843] = 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(11512), 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, - [84959] = 5, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [129563] = 3, 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(9816), 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_not, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(11063), 31, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9818), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_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, + anon_sym_COLON_RBRACK, + [129623] = 3, 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(7519), 25, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -527027,26 +601090,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(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, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7521), 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, @@ -527059,148 +601126,145 @@ static const uint16_t ts_small_parse_table[] = { 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, + [129683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6815), 25, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6822), 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, + anon_sym_AMP_AMP, + anon_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, - [85095] = 30, + [129743] = 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, - 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, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10938), 1, + anon_sym___attribute__, + ACTIONS(10941), 1, + anon_sym___attribute, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11884), 1, + anon_sym_requires, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + STATE(7372), 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, + STATE(8540), 1, + sym__function_attributes_start, + STATE(8581), 1, + sym_ref_qualifier, + STATE(9697), 1, + sym__function_attributes_end, + STATE(9771), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5198), 2, + ACTIONS(11484), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 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_DOT_DOT_DOT, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9650), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6399), 3, 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(7667), 41, - anon_sym_AMP, + STATE(8954), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10936), 12, 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, @@ -527212,16 +601276,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, - [85273] = 3, + [129857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 19, + ACTIONS(9422), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527235,13 +601293,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(9367), 35, + ACTIONS(9424), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -527251,7 +601310,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, @@ -527273,19 +601332,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, - [85335] = 5, + [129917] = 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(9517), 20, + ACTIONS(9603), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527306,7 +601357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9519), 31, + ACTIONS(9601), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -527316,6 +601367,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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -527338,10 +601390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85401] = 3, + [129977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 19, + ACTIONS(11826), 1, + anon_sym_LT, + STATE(2181), 1, + sym_template_argument_list, + ACTIONS(10094), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527352,7 +601408,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, @@ -527361,7 +601416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9371), 35, + ACTIONS(10096), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -527393,159 +601448,19 @@ 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, - [85463] = 3, + [130041] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7661), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11456), 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(7659), 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, + ACTIONS(11458), 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, - [85525] = 30, - 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(3), 1, - sym_comment, - ACTIONS(9373), 19, + STATE(2068), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9788), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527555,27 +601470,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(9375), 35, + ACTIONS(9790), 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, @@ -527583,7 +601495,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, @@ -527597,83 +601508,74 @@ 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, - [85703] = 30, + anon_sym_DASH_GT, + anon_sym_GT2, + [130109] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, + ACTIONS(2422), 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10717), 1, + anon_sym_STAR, + ACTIONS(10719), 1, + anon_sym_AMP_AMP, + ACTIONS(10721), 1, + anon_sym_AMP, + ACTIONS(10723), 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, + STATE(3495), 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, + STATE(5796), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, sym_splice_specifier, - STATE(6615), 1, - sym_type_descriptor, - STATE(8675), 1, + STATE(9559), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9989), 1, + sym__abstract_declarator, + ACTIONS(6604), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3967), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5200), 2, + STATE(5867), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6606), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -527687,10 +601589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [85819] = 3, + [130213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 19, + ACTIONS(6822), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6824), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527700,26 +601605,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(6817), 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, @@ -527728,7 +601632,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, @@ -527742,83 +601645,74 @@ 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [130275] = 25, 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, + 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(5160), 1, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11087), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(11089), 1, + ACTIONS(10711), 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(2362), 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, + STATE(2859), 1, sym_alignas_qualifier, - STATE(5221), 1, - sym_type_descriptor, - STATE(8687), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8988), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(9936), 1, + sym__declarator, + STATE(11956), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2984), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5203), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -527832,126 +601726,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [85997] = 30, + [130379] = 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, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10938), 1, + anon_sym___attribute__, + ACTIONS(10941), 1, + anon_sym___attribute, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11487), 1, + anon_sym_requires, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + STATE(7372), 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, + STATE(8546), 1, + sym__function_attributes_start, + STATE(8599), 1, + sym_ref_qualifier, + STATE(9601), 1, + sym_trailing_return_type, + STATE(9693), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5232), 2, + ACTIONS(11484), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 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, - [86113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10272), 7, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9650), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6399), 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_LBRACK_COLON, - ACTIONS(10270), 47, - anon_sym_AMP, + STATE(8963), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10936), 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, @@ -527963,61 +601810,129 @@ 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, - [86175] = 7, + [130493] = 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(9267), 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(6567), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9269), 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, + [130553] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11061), 1, + anon_sym_EQ, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11956), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11958), 1, + anon_sym_AMP_AMP, + ACTIONS(11960), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11978), 1, + anon_sym_or, + ACTIONS(11980), 1, + anon_sym_and, + ACTIONS(11982), 1, + anon_sym_bitor, + ACTIONS(11984), 1, + anon_sym_bitand, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11063), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -528032,173 +601947,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [130659] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, + anon_sym_LPAREN2, + ACTIONS(11994), 1, + anon_sym_LBRACK, + STATE(6194), 1, + sym_new_declarator, + STATE(6664), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9697), 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(9699), 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [130729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9925), 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(9927), 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, + [130789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9845), 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(9847), 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, + [130849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9935), 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(9937), 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_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, - [86245] = 30, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [130909] = 25, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11095), 1, + ACTIONS(5966), 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, - sym_alignas_qualifier, - STATE(5079), 1, - sym_type_descriptor, - 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(5204), 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, - [86361] = 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, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, - sym_identifier, - ACTIONS(11020), 1, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10743), 1, + anon_sym_STAR, + ACTIONS(10745), 1, + anon_sym_AMP_AMP, + ACTIONS(10747), 1, + anon_sym_AMP, + ACTIONS(10749), 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, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, + STATE(5504), 1, + sym_parameter_list, + STATE(7255), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(9224), 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, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9614), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(10022), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5232), 2, + STATE(7054), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6616), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(6618), 4, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -528212,79 +602259,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [86477] = 30, + [131013] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10743), 1, + anon_sym_STAR, + ACTIONS(10745), 1, + anon_sym_AMP_AMP, + ACTIONS(10747), 1, + anon_sym_AMP, + ACTIONS(10749), 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, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, + STATE(5504), 1, + sym_parameter_list, + STATE(7255), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(9224), 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, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9614), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(10027), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5232), 2, + STATE(5819), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6608), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(6610), 4, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -528298,79 +602338,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [86593] = 30, + [131117] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 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, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(10735), 1, + anon_sym_STAR, + ACTIONS(10737), 1, + anon_sym_AMP_AMP, + ACTIONS(10739), 1, + anon_sym_AMP, + ACTIONS(10741), 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, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8989), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(9890), 1, + sym__declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5206), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -528384,161 +602417,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [86709] = 30, + [131221] = 11, 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, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(11996), 1, + anon_sym_LT, + ACTIONS(12000), 1, sym_auto, - ACTIONS(3893), 1, + ACTIONS(12002), 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, + STATE(5795), 1, + sym_template_argument_list, + STATE(6641), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3062), 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, + STATE(7126), 1, sym_decltype_auto, - STATE(5430), 1, - sym_type_descriptor, - STATE(8707), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3967), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5207), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3867), 4, + ACTIONS(11998), 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, - [86825] = 9, + ACTIONS(5661), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(5669), 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, + [131297] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(8569), 1, + ACTIONS(11309), 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, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, anon_sym_COMMA, + ACTIONS(12008), 1, anon_sym_RPAREN, - anon_sym_TILDE, + ACTIONS(12010), 1, + anon_sym_DASH, + ACTIONS(12012), 1, + anon_sym_PLUS, + ACTIONS(12014), 1, anon_sym_STAR, + ACTIONS(12016), 1, + anon_sym_SLASH, + ACTIONS(12018), 1, + anon_sym_PERCENT, + ACTIONS(12020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12022), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 35, + ACTIONS(12024), 1, + anon_sym_PIPE, + ACTIONS(12026), 1, + anon_sym_CARET, + ACTIONS(12028), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, + ACTIONS(12030), 1, + anon_sym_EQ_EQ, + ACTIONS(12032), 1, + anon_sym_BANG_EQ, + ACTIONS(12034), 1, + anon_sym_GT, + ACTIONS(12036), 1, + anon_sym_GT_EQ, + ACTIONS(12038), 1, + anon_sym_LT_EQ, + ACTIONS(12040), 1, + anon_sym_LT, + ACTIONS(12042), 1, + anon_sym_LT_LT, + ACTIONS(12044), 1, + anon_sym_GT_GT, + ACTIONS(12046), 1, + anon_sym_EQ, + ACTIONS(12048), 1, + anon_sym_QMARK, + ACTIONS(12050), 1, + anon_sym_STAR_EQ, + ACTIONS(12052), 1, + anon_sym_SLASH_EQ, + ACTIONS(12054), 1, + anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, + anon_sym_PLUS_EQ, + ACTIONS(12058), 1, + anon_sym_DASH_EQ, + ACTIONS(12060), 1, + anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, + anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, + anon_sym_AMP_EQ, + ACTIONS(12066), 1, + anon_sym_CARET_EQ, + ACTIONS(12068), 1, + anon_sym_PIPE_EQ, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12072), 1, + anon_sym_or, + ACTIONS(12074), 1, + anon_sym_and, + ACTIONS(12076), 1, + anon_sym_bitor, + ACTIONS(12078), 1, + anon_sym_xor, + ACTIONS(12080), 1, + anon_sym_bitand, + ACTIONS(12082), 1, + anon_sym_not_eq, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [131453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 19, + ACTIONS(7838), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528558,7 +602610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8895), 35, + ACTIONS(7840), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -528568,6 +602620,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, @@ -528590,83 +602643,73 @@ 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, + [131513] = 25, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10743), 1, + anon_sym_STAR, + ACTIONS(10745), 1, + anon_sym_AMP_AMP, + ACTIONS(10747), 1, + anon_sym_AMP, + ACTIONS(10749), 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, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(2259), 1, - sym_type_specifier, - STATE(3497), 1, + STATE(5504), 1, + sym_parameter_list, + STATE(7255), 1, sym_alignas_qualifier, - STATE(3603), 1, - sym_type_descriptor, - STATE(8763), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9614), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(10040), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5208), 2, + STATE(7054), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(5968), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(5970), 4, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -528680,10 +602723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [87077] = 3, + [131617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 19, + ACTIONS(7359), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528703,7 +602746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8903), 35, + ACTIONS(7361), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -528713,6 +602756,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, @@ -528735,83 +602779,73 @@ 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, - [87139] = 30, + [131677] = 25, 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(2422), 1, anon_sym_decltype, - ACTIONS(3978), 1, - anon_sym_enum, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11115), 1, + ACTIONS(5966), 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(2122), 1, - sym_type_specifier, - STATE(2170), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10743), 1, + anon_sym_STAR, + ACTIONS(10745), 1, + anon_sym_AMP_AMP, + ACTIONS(10747), 1, + anon_sym_AMP, + ACTIONS(10749), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(3497), 1, + STATE(5504), 1, + sym_parameter_list, + STATE(7255), 1, sym_alignas_qualifier, - STATE(3603), 1, - sym_type_descriptor, - STATE(8763), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9614), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(10028), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5209), 2, + STATE(7054), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6612), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(6614), 4, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -528825,21 +602859,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [87255] = 8, + [131781] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(11456), 1, anon_sym_LPAREN2, - ACTIONS(10984), 1, + ACTIONS(11458), 1, anon_sym_LBRACK, - STATE(5226), 1, - sym_new_declarator, - STATE(5747), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 20, + STATE(2068), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9804), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528860,7 +602891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9276), 28, + ACTIONS(9806), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -528889,47 +602920,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [87327] = 3, + [131849] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, + ACTIONS(3514), 1, anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10735), 1, anon_sym_STAR, + ACTIONS(10737), 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(7671), 41, + ACTIONS(10739), 1, anon_sym_AMP, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9903), 1, + sym__declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 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, @@ -528942,27 +602999,102 @@ 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, - [87389] = 8, + [131953] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9306), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(10711), 1, + ACTIONS(6646), 1, anon_sym_LPAREN2, - STATE(3140), 1, + ACTIONS(10743), 1, + anon_sym_STAR, + ACTIONS(10745), 1, + anon_sym_AMP_AMP, + ACTIONS(10747), 1, + anon_sym_AMP, + ACTIONS(10749), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5504), 1, sym_parameter_list, - STATE(5043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9480), 18, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9614), 1, + sym__scope_resolution, + STATE(10062), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(6602), 4, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [132057] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10178), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528980,8 +603112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9482), 30, + ACTIONS(10180), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -529010,12 +603141,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + [132129] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [87461] = 3, + ACTIONS(10082), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10084), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_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, + [132203] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 19, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10086), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529025,27 +603234,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_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(10088), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_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, + [132277] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9339), 35, + ACTIONS(10182), 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(10184), 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, @@ -529064,80 +603333,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [132351] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11075), 1, + anon_sym_EQ, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11956), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11958), 1, + anon_sym_AMP_AMP, + ACTIONS(11960), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11978), 1, + anon_sym_or, + ACTIONS(11980), 1, + anon_sym_and, + ACTIONS(11982), 1, + anon_sym_bitor, + ACTIONS(11984), 1, + anon_sym_bitand, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, 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_DASH_GT, + ACTIONS(11954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11077), 17, 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(7223), 41, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [132457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9703), 23, + 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_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, - [87585] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9705), 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, + [132517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11119), 1, - anon_sym_AMP_AMP, - ACTIONS(11121), 1, - anon_sym_and, - ACTIONS(9322), 18, + ACTIONS(12086), 1, + anon_sym_LT, + STATE(3091), 1, + sym_template_argument_list, + ACTIONS(10094), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529148,20 +603488,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(9324), 34, + ACTIONS(10096), 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, @@ -529187,14 +603528,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, - [87651] = 3, + [132581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 19, + ACTIONS(7491), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529214,7 +603552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8944), 35, + ACTIONS(7493), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -529224,6 +603562,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, @@ -529246,433 +603585,251 @@ 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, + [132641] = 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(9484), 18, + ACTIONS(9703), 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(9486), 30, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9705), 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_RBRACK, + 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, - [87785] = 30, - 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(2993), 1, - sym_type_specifier, - 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(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(5182), 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, - [87901] = 3, + anon_sym_COLON_RBRACK, + [132701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10318), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(10316), 47, + ACTIONS(12089), 1, + anon_sym_LT, + STATE(5795), 1, + sym_template_argument_list, + ACTIONS(6774), 24, + 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___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, - [87963] = 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, + 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(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(8157), 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, - [88079] = 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(8154), 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, - [88195] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6781), 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, + [132767] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9304), 1, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, anon_sym_LPAREN2, - ACTIONS(10969), 1, + ACTIONS(11994), 1, anon_sym_LBRACK, - STATE(5585), 1, - sym_parameter_list, - STATE(5055), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9300), 18, + STATE(6291), 1, + sym_new_declarator, + STATE(6737), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9672), 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(9302), 30, + sym_identifier, + ACTIONS(9674), 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_RBRACK_RBRACK, + 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, + [132837] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12092), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12094), 1, + anon_sym_AMP_AMP, + ACTIONS(12096), 1, + anon_sym_PIPE, + ACTIONS(12100), 1, + anon_sym_or, + ACTIONS(12102), 1, + anon_sym_and, + ACTIONS(12104), 1, + anon_sym_bitor, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11045), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12098), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11047), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -529680,180 +603837,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [88267] = 30, + anon_sym_GT2, + [132941] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(5966), 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(8208), 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, - [88383] = 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, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, - sym_identifier, - ACTIONS(11020), 1, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10802), 1, + anon_sym_STAR, + ACTIONS(10804), 1, + anon_sym_AMP_AMP, + ACTIONS(10806), 1, + anon_sym_AMP, + ACTIONS(10808), 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, + STATE(2859), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5804), 1, + sym_parameter_list, + STATE(9224), 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(8225), 1, - sym__type_definition_type, - STATE(8691), 1, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9580), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(10055), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5232), 2, + ACTIONS(6604), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5889), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6606), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -529867,10 +603923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88499] = 3, + [133045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 19, + ACTIONS(10143), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529890,7 +603946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9002), 35, + ACTIONS(10145), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -529900,6 +603956,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, @@ -529922,483 +603979,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, - [88561] = 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(8213), 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, - [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, - 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(8166), 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, - [88855] = 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(8214), 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, - [88971] = 3, - 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, - 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, - [89033] = 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(8233), 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, - [89149] = 6, + [133105] = 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(7743), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -530418,15 +604003,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9493), 31, + ACTIONS(7745), 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, @@ -530438,119 +604025,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [89217] = 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(8169), 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, - [89333] = 8, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [133165] = 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(9439), 18, + ACTIONS(7751), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -530569,15 +604059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9441), 30, + anon_sym_DASH_GT, + ACTIONS(7753), 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_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -530599,441 +604093,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, - [89405] = 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(8171), 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, - [89521] = 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(8189), 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, - [89637] = 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(8194), 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, - [89753] = 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(8196), 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, - [89869] = 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(8197), 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, - [89985] = 3, + anon_sym_DASH_GT_STAR, + [133225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 19, + ACTIONS(7759), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531053,7 +604117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8994), 35, + ACTIONS(7761), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -531063,6 +604127,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, @@ -531085,20 +604150,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, - [90047] = 5, + [133285] = 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, + ACTIONS(7767), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531113,19 +604169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11123), 31, + ACTIONS(7769), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -531139,32 +604200,18 @@ 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, - [90113] = 8, + [133345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, - 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, + ACTIONS(10359), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531178,20 +604225,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(9482), 30, + ACTIONS(10361), 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -531214,96 +604265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [90185] = 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(11169), 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, - [90301] = 3, + [133405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 19, + ACTIONS(7786), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531323,7 +604288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8887), 35, + ACTIONS(7788), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -531333,6 +604298,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, @@ -531355,100 +604321,17 @@ 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, - [90363] = 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(10564), 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, - [90479] = 3, + [133465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 19, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6675), 1, + sym_attribute_specifier, + ACTIONS(7574), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531462,26 +604345,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(6634), 35, + anon_sym_DASH_GT, + ACTIONS(7576), 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_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, @@ -531493,58 +604371,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [90541] = 3, + anon_sym_DASH_GT_STAR, + [133531] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, + ACTIONS(3514), 1, anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10705), 1, anon_sym_STAR, + ACTIONS(10707), 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(10709), 1, anon_sym_AMP, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9776), 1, + sym__declarator, + STATE(12133), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 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, @@ -531557,44 +604461,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [90603] = 3, + [133635] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7601), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9764), 1, + anon_sym_LT, + ACTIONS(11429), 1, + anon_sym_EQ, + STATE(3452), 1, + sym_template_argument_list, + ACTIONS(11427), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_GT2, + ACTIONS(5689), 8, + anon_sym_DOT_DOT_DOT, 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_LBRACE, anon_sym_LBRACK_COLON, - ACTIONS(7599), 41, + ACTIONS(7543), 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___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -531620,12 +604519,71 @@ 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, - [90665] = 3, + [133705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6829), 25, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6831), 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, + anon_sym_AMP_AMP, + anon_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, + [133765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 19, + ACTIONS(7806), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531639,26 +604597,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(6614), 35, + anon_sym_DASH_GT, + ACTIONS(7808), 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_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, @@ -531680,80 +604636,486 @@ 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, + [133825] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, + anon_sym_COMMA, + ACTIONS(12010), 1, + anon_sym_DASH, + ACTIONS(12012), 1, + anon_sym_PLUS, + ACTIONS(12014), 1, + anon_sym_STAR, + ACTIONS(12016), 1, + anon_sym_SLASH, + ACTIONS(12018), 1, + anon_sym_PERCENT, + ACTIONS(12020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12022), 1, + anon_sym_AMP_AMP, + ACTIONS(12024), 1, + anon_sym_PIPE, + ACTIONS(12026), 1, + anon_sym_CARET, + ACTIONS(12028), 1, + anon_sym_AMP, + ACTIONS(12030), 1, + anon_sym_EQ_EQ, + ACTIONS(12032), 1, + anon_sym_BANG_EQ, + ACTIONS(12034), 1, + anon_sym_GT, + ACTIONS(12036), 1, + anon_sym_GT_EQ, + ACTIONS(12038), 1, + anon_sym_LT_EQ, + ACTIONS(12040), 1, + anon_sym_LT, + ACTIONS(12042), 1, + anon_sym_LT_LT, + ACTIONS(12044), 1, + anon_sym_GT_GT, + ACTIONS(12046), 1, + anon_sym_EQ, + ACTIONS(12048), 1, + anon_sym_QMARK, + ACTIONS(12050), 1, + anon_sym_STAR_EQ, + ACTIONS(12052), 1, + anon_sym_SLASH_EQ, + ACTIONS(12054), 1, + anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, + anon_sym_PLUS_EQ, + ACTIONS(12058), 1, + anon_sym_DASH_EQ, + ACTIONS(12060), 1, + anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, + anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, + anon_sym_AMP_EQ, + ACTIONS(12066), 1, + anon_sym_CARET_EQ, + ACTIONS(12068), 1, + anon_sym_PIPE_EQ, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12072), 1, + anon_sym_or, + ACTIONS(12074), 1, + anon_sym_and, + ACTIONS(12076), 1, + anon_sym_bitor, + ACTIONS(12078), 1, + anon_sym_xor, + ACTIONS(12080), 1, + anon_sym_bitand, + ACTIONS(12082), 1, + anon_sym_not_eq, + ACTIONS(12106), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [90727] = 30, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [133981] = 25, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5966), 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, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10717), 1, + anon_sym_STAR, + ACTIONS(10719), 1, + anon_sym_AMP_AMP, + ACTIONS(10721), 1, + anon_sym_AMP, + ACTIONS(10723), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, + STATE(5796), 1, + sym_parameter_list, + STATE(7255), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9559), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10034), 1, + sym__abstract_declarator, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5970), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [134085] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10066), 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(10068), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_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, + [134163] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10938), 1, + anon_sym___attribute__, + ACTIONS(10941), 1, + anon_sym___attribute, + ACTIONS(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + STATE(7372), 1, + sym_alignas_qualifier, + STATE(8547), 1, + sym__function_attributes_start, + STATE(8588), 1, + sym_ref_qualifier, + STATE(9008), 1, + sym_trailing_return_type, + STATE(9567), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6399), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(8936), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [134277] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_STAR, + ACTIONS(10707), 1, + anon_sym_AMP_AMP, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9779), 1, + sym__declarator, + STATE(12133), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [134381] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10717), 1, + anon_sym_STAR, + ACTIONS(10719), 1, + anon_sym_AMP_AMP, + ACTIONS(10721), 1, + anon_sym_AMP, + ACTIONS(10723), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5796), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9559), 1, sym__scope_resolution, - STATE(11145), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10015), 1, + sym__abstract_declarator, + ACTIONS(6600), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + STATE(7054), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6602), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -531767,224 +605129,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90843] = 3, + [134485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 19, + ACTIONS(6803), 25, + 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(6626), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6805), 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, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, 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, - [90905] = 26, + [134545] = 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, + ACTIONS(6799), 25, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, - ACTIONS(10961), 1, 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_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6801), 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, + anon_sym_AMP_AMP, + anon_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, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10473), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, + [134605] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6807), 25, + aux_sym_preproc_elif_token1, 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_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 18, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6809), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [91013] = 6, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [134665] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(4682), 1, anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(11992), 1, anon_sym_LPAREN2, - STATE(5708), 2, + ACTIONS(11994), 1, + anon_sym_LBRACK, + STATE(6255), 1, + sym_new_declarator, + STATE(6695), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9381), 19, + ACTIONS(9666), 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(9383), 31, + sym_identifier, + ACTIONS(9668), 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_LBRACK, + 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_STAR, - [91081] = 8, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [134735] = 6, 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(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6681), 1, + sym_attribute_specifier, + ACTIONS(7578), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531999,19 +605386,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(9478), 30, + anon_sym_DASH_GT, + ACTIONS(7580), 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_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532023,225 +605411,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [91153] = 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(11205), 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, - [91269] = 3, + anon_sym_DASH_GT_STAR, + [134801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 19, + ACTIONS(6795), 25, + 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(6610), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6797), 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, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, 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, - [91331] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7605), 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(7603), 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, - [91393] = 3, + [134861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 19, + ACTIONS(12110), 1, + sym_literal_suffix, + ACTIONS(5671), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532256,12 +605499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9437), 35, + ACTIONS(5663), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -532283,150 +605532,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - 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, - [91455] = 3, + [134923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 19, + ACTIONS(6791), 25, + 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(8952), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6793), 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_COLON_COLON, + 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [91517] = 3, + anon_sym_DASH_GT, + [134983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 19, + ACTIONS(6811), 25, + 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(6618), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6813), 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, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, 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, - [91579] = 7, + [135043] = 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(9459), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532440,19 +605668,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(9395), 33, + ACTIONS(9461), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532474,14 +605707,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, - [91649] = 3, + [135103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 19, + ACTIONS(7850), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532495,26 +605725,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(6622), 35, + anon_sym_DASH_GT, + ACTIONS(7852), 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_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, @@ -532536,70 +605764,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, - [91711] = 3, + anon_sym_DASH_GT_STAR, + [135163] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11631), 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(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, + ACTIONS(11974), 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, - [91773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8909), 19, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10082), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532617,19 +605802,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(8911), 35, + ACTIONS(10084), 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, @@ -532648,17 +605829,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [135237] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11986), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [91835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6628), 19, + anon_sym_DASH_GT, + ACTIONS(10086), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532672,26 +605862,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(6630), 35, + ACTIONS(10088), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532710,51 +605893,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, - [91897] = 3, + [135311] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10717), 1, anon_sym_STAR, + ACTIONS(10719), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10721), 1, + anon_sym_AMP, + ACTIONS(10723), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5796), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9559), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9992), 1, + sym__abstract_declarator, + ACTIONS(6616), 2, + anon_sym_COMMA, anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7561), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6618), 5, 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_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -532767,45 +605972,74 @@ 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, - [91959] = 9, + [135415] = 25, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(10717), 1, anon_sym_STAR, + ACTIONS(10719), 1, anon_sym_AMP_AMP, + ACTIONS(10721), 1, + anon_sym_AMP, + ACTIONS(10723), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5796), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9559), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9993), 1, + sym__abstract_declarator, + ACTIONS(6608), 2, + anon_sym_COMMA, 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, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5873), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6610), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, - anon_sym_LBRACE, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -532817,40 +606051,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [135519] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10769), 1, + anon_sym_STAR, + ACTIONS(10771), 1, + anon_sym_AMP_AMP, + ACTIONS(10773), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10112), 1, + sym__declarator, + STATE(12191), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7097), 18, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [135623] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, + anon_sym_COMMA, + ACTIONS(12010), 1, + anon_sym_DASH, + ACTIONS(12012), 1, + anon_sym_PLUS, + ACTIONS(12014), 1, + anon_sym_STAR, + ACTIONS(12016), 1, + anon_sym_SLASH, + ACTIONS(12018), 1, anon_sym_PERCENT, + ACTIONS(12020), 1, anon_sym_PIPE_PIPE, + ACTIONS(12022), 1, + anon_sym_AMP_AMP, + ACTIONS(12024), 1, + anon_sym_PIPE, + ACTIONS(12026), 1, anon_sym_CARET, + ACTIONS(12028), 1, + anon_sym_AMP, + ACTIONS(12030), 1, anon_sym_EQ_EQ, + ACTIONS(12032), 1, anon_sym_BANG_EQ, + ACTIONS(12034), 1, + anon_sym_GT, + ACTIONS(12036), 1, + anon_sym_GT_EQ, + ACTIONS(12038), 1, + anon_sym_LT_EQ, + ACTIONS(12040), 1, + anon_sym_LT, + ACTIONS(12042), 1, anon_sym_LT_LT, + ACTIONS(12044), 1, + anon_sym_GT_GT, + ACTIONS(12046), 1, + anon_sym_EQ, + ACTIONS(12048), 1, anon_sym_QMARK, + ACTIONS(12050), 1, + anon_sym_STAR_EQ, + ACTIONS(12052), 1, + anon_sym_SLASH_EQ, + ACTIONS(12054), 1, + anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, + anon_sym_PLUS_EQ, + ACTIONS(12058), 1, + anon_sym_DASH_EQ, + ACTIONS(12060), 1, + anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, + anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, + anon_sym_AMP_EQ, + ACTIONS(12066), 1, + anon_sym_CARET_EQ, + ACTIONS(12068), 1, + anon_sym_PIPE_EQ, + ACTIONS(12070), 1, anon_sym_LT_EQ_GT, + ACTIONS(12072), 1, anon_sym_or, + ACTIONS(12074), 1, anon_sym_and, + ACTIONS(12076), 1, anon_sym_bitor, + ACTIONS(12078), 1, anon_sym_xor, + ACTIONS(12080), 1, anon_sym_bitand, + ACTIONS(12082), 1, anon_sym_not_eq, + ACTIONS(12112), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [92033] = 7, + [135779] = 4, 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, + ACTIONS(7458), 1, anon_sym_COLON_COLON, - ACTIONS(7092), 18, + ACTIONS(7359), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532860,25 +606250,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7097), 31, + ACTIONS(7361), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [135841] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11079), 1, + anon_sym_EQ, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11956), 1, anon_sym_PIPE_PIPE, + ACTIONS(11958), 1, anon_sym_AMP_AMP, + ACTIONS(11960), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11978), 1, + anon_sym_or, + ACTIONS(11980), 1, + anon_sym_and, + ACTIONS(11982), 1, + anon_sym_bitor, + ACTIONS(11984), 1, + anon_sym_bitand, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11966), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11081), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532893,232 +606373,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [92103] = 30, + [135947] = 25, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5966), 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, + ACTIONS(5992), 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__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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_COMMA, - anon_sym_RPAREN, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10717), 1, anon_sym_STAR, + ACTIONS(10719), 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(7763), 41, + ACTIONS(10721), 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, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [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, + ACTIONS(10723), 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, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, + STATE(5796), 1, + sym_parameter_list, + STATE(7255), 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, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9559), 1, sym__scope_resolution, - STATE(10777), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9995), 1, + sym__abstract_declarator, + ACTIONS(6612), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + STATE(7054), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6614), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -533132,138 +606452,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [92397] = 3, + [136051] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7769), 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(7767), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + ACTIONS(53), 1, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, + ACTIONS(2286), 1, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10741), 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, + ACTIONS(10769), 1, + anon_sym_STAR, + ACTIONS(10771), 1, + anon_sym_AMP_AMP, + ACTIONS(10773), 1, + anon_sym_AMP, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8989), 1, sym__scope_resolution, - STATE(11667), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(10102), 1, + sym__declarator, + STATE(12191), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -533277,21 +606531,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [92575] = 8, + [136155] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10711), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - STATE(3140), 1, - sym_parameter_list, - STATE(5043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9300), 18, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10046), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533309,8 +606565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9302), 30, + ACTIONS(10048), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -533339,76 +606594,44 @@ 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, - [92647] = 26, + [136227] = 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(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, + ACTIONS(10878), 1, + anon_sym_decltype, + ACTIONS(11870), 1, + sym_auto, + STATE(6643), 1, + sym_decltype_auto, + ACTIONS(7359), 16, 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(10540), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7361), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533420,24 +606643,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, - [92755] = 8, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [136293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, - 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(9439), 18, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12114), 1, + anon_sym_LT, + STATE(6297), 1, + sym_template_argument_list, + ACTIONS(9961), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533447,24 +606673,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(9441), 30, + ACTIONS(9963), 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533472,7 +606699,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, @@ -533487,10 +606713,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [92827] = 3, + anon_sym_GT2, + [136359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 19, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(10062), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533510,7 +606739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9310), 35, + ACTIONS(10064), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -533542,14 +606771,15 @@ 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, - [92889] = 3, + [136421] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 19, + ACTIONS(12117), 1, + anon_sym_LT, + STATE(6133), 1, + sym_template_argument_list, + ACTIONS(10062), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533560,7 +606790,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, @@ -533569,7 +606798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9318), 35, + ACTIONS(10064), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -533601,137 +606830,73 @@ 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, - [92951] = 3, + [136485] = 26, 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, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10105), 1, anon_sym_EQ, - anon_sym_GT2, - 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, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [93013] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10937), 1, + ACTIONS(11956), 1, anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, + ACTIONS(11958), 1, anon_sym_AMP_AMP, - ACTIONS(10941), 1, + ACTIONS(11960), 1, anon_sym_PIPE, - ACTIONS(10945), 1, + ACTIONS(11964), 1, anon_sym_AMP, - ACTIONS(10951), 1, + ACTIONS(11970), 1, anon_sym_GT_EQ, - ACTIONS(10957), 1, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, + ACTIONS(11978), 1, anon_sym_or, - ACTIONS(10961), 1, + ACTIONS(11980), 1, anon_sym_and, - ACTIONS(10963), 1, + ACTIONS(11982), 1, anon_sym_bitor, - ACTIONS(10965), 1, + ACTIONS(11984), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 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(11952), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10943), 2, + ACTIONS(11962), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10953), 2, + ACTIONS(11972), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10917), 3, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10947), 3, + ACTIONS(11966), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10949), 3, + ACTIONS(11968), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 18, + ACTIONS(10103), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533746,74 +606911,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [93121] = 26, + [136591] = 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(9599), 2, - anon_sym___attribute, - anon_sym_EQ, - 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(7771), 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(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(7773), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533828,74 +606960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [93229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7641), 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(7639), 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, - [93291] = 5, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [136651] = 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(7710), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533909,11 +606985,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(7712), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -533923,6 +607001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533934,95 +607014,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [93357] = 30, + [136711] = 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, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10938), 1, + anon_sym___attribute__, + ACTIONS(10941), 1, + anon_sym___attribute, + ACTIONS(10944), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10960), 1, + anon_sym_requires, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + STATE(7372), 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(11308), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(8527), 1, + sym__function_attributes_start, + STATE(8607), 1, + sym_ref_qualifier, + STATE(9019), 1, + sym_trailing_return_type, + STATE(9664), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + ACTIONS(10953), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 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, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9260), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6399), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(8914), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10936), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -534034,10 +607109,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93473] = 3, + [136825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 19, + ACTIONS(7718), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -534057,7 +607132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8994), 35, + ACTIONS(7720), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -534067,6 +607142,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, @@ -534089,343 +607165,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, - [93535] = 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(11313), 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, - [93651] = 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(11332), 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, - [93767] = 30, + [136885] = 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, - 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(11337), 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, - [93883] = 30, + ACTIONS(7735), 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(7737), 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, + [136945] = 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, - 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, + ACTIONS(7763), 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(7765), 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, + [137005] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10938), 1, + anon_sym___attribute__, + ACTIONS(10941), 1, + anon_sym___attribute, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11882), 1, + anon_sym_requires, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + STATE(7372), 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(11354), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(8537), 1, + sym__function_attributes_start, + STATE(8610), 1, + sym_ref_qualifier, + STATE(9743), 1, + sym__function_attributes_end, + STATE(9813), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 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, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9650), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6399), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(8953), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10936), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -534437,79 +607364,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93999] = 30, + [137119] = 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, + ACTIONS(7718), 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(7720), 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, + [137179] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5966), 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, + ACTIONS(5992), 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, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10802), 1, + anon_sym_STAR, + ACTIONS(10804), 1, + anon_sym_AMP_AMP, + ACTIONS(10806), 1, + anon_sym_AMP, + ACTIONS(10808), 1, + anon_sym_COLON_COLON, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5804), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9580), 1, sym__scope_resolution, - STATE(11358), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(10047), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + ACTIONS(6616), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6618), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534523,79 +607500,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94115] = 30, + [137283] = 25, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5966), 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, + ACTIONS(5992), 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, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10802), 1, + anon_sym_STAR, + ACTIONS(10804), 1, + anon_sym_AMP_AMP, + ACTIONS(10806), 1, + anon_sym_AMP, + ACTIONS(10808), 1, + anon_sym_COLON_COLON, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5804), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9580), 1, sym__scope_resolution, - STATE(11374), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(10060), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + ACTIONS(6608), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5896), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6610), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534609,79 +607579,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94231] = 30, + [137387] = 25, 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10711), 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, + ACTIONS(10796), 1, + anon_sym_STAR, + ACTIONS(10798), 1, + anon_sym_AMP_AMP, + ACTIONS(10800), 1, + anon_sym_AMP, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8988), 1, sym__scope_resolution, - STATE(11378), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(10000), 1, + sym__declarator, + STATE(12242), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534695,79 +607658,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94347] = 30, + [137491] = 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, + ACTIONS(10337), 1, + anon_sym_EQ, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11956), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11958), 1, + anon_sym_AMP_AMP, + ACTIONS(11960), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11978), 1, + anon_sym_or, + ACTIONS(11980), 1, + anon_sym_and, + ACTIONS(11982), 1, + anon_sym_bitor, + ACTIONS(11984), 1, + anon_sym_bitand, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(12120), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12124), 1, + anon_sym_QMARK, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12122), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10339), 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, + [137603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7718), 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(7720), 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, + [137663] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, + anon_sym_COMMA, + ACTIONS(12010), 1, + anon_sym_DASH, + ACTIONS(12012), 1, + anon_sym_PLUS, + ACTIONS(12014), 1, + anon_sym_STAR, + ACTIONS(12016), 1, + anon_sym_SLASH, + ACTIONS(12018), 1, + anon_sym_PERCENT, + ACTIONS(12020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12022), 1, + anon_sym_AMP_AMP, + ACTIONS(12024), 1, + anon_sym_PIPE, + ACTIONS(12026), 1, + anon_sym_CARET, + ACTIONS(12028), 1, + anon_sym_AMP, + ACTIONS(12030), 1, + anon_sym_EQ_EQ, + ACTIONS(12032), 1, + anon_sym_BANG_EQ, + ACTIONS(12034), 1, + anon_sym_GT, + ACTIONS(12036), 1, + anon_sym_GT_EQ, + ACTIONS(12038), 1, + anon_sym_LT_EQ, + ACTIONS(12040), 1, + anon_sym_LT, + ACTIONS(12042), 1, + anon_sym_LT_LT, + ACTIONS(12044), 1, + anon_sym_GT_GT, + ACTIONS(12046), 1, + anon_sym_EQ, + ACTIONS(12048), 1, + anon_sym_QMARK, + ACTIONS(12050), 1, + anon_sym_STAR_EQ, + ACTIONS(12052), 1, + anon_sym_SLASH_EQ, + ACTIONS(12054), 1, + anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, + anon_sym_PLUS_EQ, + ACTIONS(12058), 1, + anon_sym_DASH_EQ, + ACTIONS(12060), 1, + anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, + anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, + anon_sym_AMP_EQ, + ACTIONS(12066), 1, + anon_sym_CARET_EQ, + ACTIONS(12068), 1, + anon_sym_PIPE_EQ, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12072), 1, + anon_sym_or, + ACTIONS(12074), 1, + anon_sym_and, + ACTIONS(12076), 1, + anon_sym_bitor, + ACTIONS(12078), 1, + anon_sym_xor, + ACTIONS(12080), 1, + anon_sym_bitand, + ACTIONS(12082), 1, + anon_sym_not_eq, + ACTIONS(12126), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [137819] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5966), 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, + ACTIONS(5992), 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, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10802), 1, + anon_sym_STAR, + ACTIONS(10804), 1, + anon_sym_AMP_AMP, + ACTIONS(10806), 1, + anon_sym_AMP, + ACTIONS(10808), 1, + anon_sym_COLON_COLON, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5804), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9580), 1, sym__scope_resolution, - STATE(11394), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(10014), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(5970), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534781,79 +607982,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94463] = 30, + [137923] = 25, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5966), 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, + ACTIONS(5992), 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, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10802), 1, + anon_sym_STAR, + ACTIONS(10804), 1, + anon_sym_AMP_AMP, + ACTIONS(10806), 1, + anon_sym_AMP, + ACTIONS(10808), 1, + anon_sym_COLON_COLON, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5804), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9580), 1, sym__scope_resolution, - STATE(11398), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(10058), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + ACTIONS(6612), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6614), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534867,79 +608061,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94579] = 30, + [138027] = 25, 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10711), 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, + ACTIONS(10796), 1, + anon_sym_STAR, + ACTIONS(10798), 1, + anon_sym_AMP_AMP, + ACTIONS(10800), 1, + anon_sym_AMP, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8988), 1, sym__scope_resolution, - STATE(11411), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(10009), 1, + sym__declarator, + STATE(12242), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -534953,79 +608140,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94695] = 30, + [138131] = 25, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5966), 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, + ACTIONS(5992), 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, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10802), 1, + anon_sym_STAR, + ACTIONS(10804), 1, + anon_sym_AMP_AMP, + ACTIONS(10806), 1, + anon_sym_AMP, + ACTIONS(10808), 1, + anon_sym_COLON_COLON, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5804), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9580), 1, sym__scope_resolution, - STATE(11414), 1, - sym_type_descriptor, - ACTIONS(71), 2, + STATE(10038), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + ACTIONS(6600), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + ACTIONS(6602), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -535039,74 +608219,584 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94811] = 26, + [138235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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(9000), 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, + [138295] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9620), 1, + anon_sym_LBRACK, + ACTIONS(9614), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(5671), 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(5663), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [138361] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12092), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12094), 1, + anon_sym_AMP_AMP, + ACTIONS(12096), 1, + anon_sym_PIPE, + ACTIONS(12100), 1, + anon_sym_or, + ACTIONS(12102), 1, + anon_sym_and, + ACTIONS(12104), 1, + anon_sym_bitor, + ACTIONS(12128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12130), 1, + anon_sym_QMARK, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11057), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12098), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11059), 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, + [138469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6637), 1, + sym_attribute_specifier, + ACTIONS(7706), 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(7708), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10937), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [138535] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, + anon_sym_COMMA, + ACTIONS(12010), 1, + anon_sym_DASH, + ACTIONS(12012), 1, + anon_sym_PLUS, + ACTIONS(12014), 1, + anon_sym_STAR, + ACTIONS(12016), 1, + anon_sym_SLASH, + ACTIONS(12018), 1, + anon_sym_PERCENT, + ACTIONS(12020), 1, anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, + ACTIONS(12022), 1, anon_sym_AMP_AMP, - ACTIONS(10941), 1, + ACTIONS(12024), 1, anon_sym_PIPE, - ACTIONS(10945), 1, + ACTIONS(12026), 1, + anon_sym_CARET, + ACTIONS(12028), 1, anon_sym_AMP, - ACTIONS(10951), 1, + ACTIONS(12030), 1, + anon_sym_EQ_EQ, + ACTIONS(12032), 1, + anon_sym_BANG_EQ, + ACTIONS(12034), 1, + anon_sym_GT, + ACTIONS(12036), 1, anon_sym_GT_EQ, - ACTIONS(10957), 1, + ACTIONS(12038), 1, + anon_sym_LT_EQ, + ACTIONS(12040), 1, + anon_sym_LT, + ACTIONS(12042), 1, + anon_sym_LT_LT, + ACTIONS(12044), 1, + anon_sym_GT_GT, + ACTIONS(12046), 1, + anon_sym_EQ, + ACTIONS(12048), 1, + anon_sym_QMARK, + ACTIONS(12050), 1, + anon_sym_STAR_EQ, + ACTIONS(12052), 1, + anon_sym_SLASH_EQ, + ACTIONS(12054), 1, + anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, + anon_sym_PLUS_EQ, + ACTIONS(12058), 1, + anon_sym_DASH_EQ, + ACTIONS(12060), 1, + anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, + anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, + anon_sym_AMP_EQ, + ACTIONS(12066), 1, + anon_sym_CARET_EQ, + ACTIONS(12068), 1, + anon_sym_PIPE_EQ, + ACTIONS(12070), 1, anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, + ACTIONS(12072), 1, anon_sym_or, - ACTIONS(10961), 1, + ACTIONS(12074), 1, anon_sym_and, - ACTIONS(10963), 1, + ACTIONS(12076), 1, anon_sym_bitor, - ACTIONS(10965), 1, + ACTIONS(12078), 1, + anon_sym_xor, + ACTIONS(12080), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12082), 1, + anon_sym_not_eq, + ACTIONS(12132), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, sym_argument_list, - STATE(3900), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, 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, + [138691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10147), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10943), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_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(10953), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10149), 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, + [138751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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, - ACTIONS(10917), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10381), 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, + [138811] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(12134), 1, + anon_sym_LPAREN2, + ACTIONS(12136), 1, + anon_sym_LBRACK, + STATE(6279), 1, + sym_new_declarator, + STATE(6780), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9666), 16, + anon_sym_DASH, + anon_sym_PLUS, 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_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9668), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(10949), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [138881] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2085), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9774), 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(9776), 30, 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_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -535121,96 +608811,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [94919] = 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, + [138949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(9892), 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(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_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9894), 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, + [139009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 19, + ACTIONS(10379), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535224,13 +608893,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(9298), 35, + ACTIONS(10381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -535240,7 +608910,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, @@ -535262,88 +608932,805 @@ 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, - [95097] = 7, + [139069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 1, - anon_sym_const, - ACTIONS(6605), 1, + ACTIONS(10379), 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, - ACTIONS(6598), 5, + 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(10381), 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_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, + [139129] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(6603), 8, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12092), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12094), 1, + anon_sym_AMP_AMP, + ACTIONS(12096), 1, + anon_sym_PIPE, + ACTIONS(12100), 1, + anon_sym_or, + ACTIONS(12102), 1, + anon_sym_and, + ACTIONS(12104), 1, + anon_sym_bitor, + ACTIONS(12128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12130), 1, + anon_sym_QMARK, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(10337), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12098), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10339), 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, + [139237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 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(6601), 18, - anon_sym___extension__, + anon_sym_DASH_GT, + ACTIONS(10381), 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, + [139297] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, 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(12138), 1, + anon_sym_LT, + STATE(6310), 1, + sym_template_argument_list, + ACTIONS(9961), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9963), 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, + [139363] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, + anon_sym_COMMA, + ACTIONS(12010), 1, + anon_sym_DASH, + ACTIONS(12012), 1, + anon_sym_PLUS, + ACTIONS(12014), 1, + anon_sym_STAR, + ACTIONS(12016), 1, + anon_sym_SLASH, + ACTIONS(12018), 1, anon_sym_PERCENT, + ACTIONS(12020), 1, anon_sym_PIPE_PIPE, + ACTIONS(12022), 1, + anon_sym_AMP_AMP, + ACTIONS(12024), 1, + anon_sym_PIPE, + ACTIONS(12026), 1, anon_sym_CARET, + ACTIONS(12028), 1, + anon_sym_AMP, + ACTIONS(12030), 1, anon_sym_EQ_EQ, + ACTIONS(12032), 1, anon_sym_BANG_EQ, + ACTIONS(12034), 1, + anon_sym_GT, + ACTIONS(12036), 1, anon_sym_GT_EQ, + ACTIONS(12038), 1, + anon_sym_LT_EQ, + ACTIONS(12040), 1, + anon_sym_LT, + ACTIONS(12042), 1, anon_sym_LT_LT, + ACTIONS(12044), 1, anon_sym_GT_GT, + ACTIONS(12046), 1, + anon_sym_EQ, + ACTIONS(12048), 1, anon_sym_QMARK, + ACTIONS(12050), 1, + anon_sym_STAR_EQ, + ACTIONS(12052), 1, + anon_sym_SLASH_EQ, + ACTIONS(12054), 1, + anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, + anon_sym_PLUS_EQ, + ACTIONS(12058), 1, + anon_sym_DASH_EQ, + ACTIONS(12060), 1, + anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, + anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, + anon_sym_AMP_EQ, + ACTIONS(12066), 1, + anon_sym_CARET_EQ, + ACTIONS(12068), 1, + anon_sym_PIPE_EQ, + ACTIONS(12070), 1, anon_sym_LT_EQ_GT, + ACTIONS(12072), 1, anon_sym_or, + ACTIONS(12074), 1, anon_sym_and, + ACTIONS(12076), 1, anon_sym_bitor, + ACTIONS(12078), 1, + anon_sym_xor, + ACTIONS(12080), 1, + anon_sym_bitand, + ACTIONS(12082), 1, + anon_sym_not_eq, + ACTIONS(12141), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [139519] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2068), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9780), 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(9782), 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, - [95167] = 8, + anon_sym_GT2, + [139587] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11045), 1, + anon_sym_EQ, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11956), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11958), 1, + anon_sym_AMP_AMP, + ACTIONS(11960), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11978), 1, + anon_sym_or, + ACTIONS(11980), 1, + anon_sym_and, + ACTIONS(11982), 1, + anon_sym_bitor, + ACTIONS(11984), 1, + anon_sym_bitand, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11047), 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, + [139693] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, + anon_sym_COMMA, + ACTIONS(12010), 1, + anon_sym_DASH, + ACTIONS(12012), 1, + anon_sym_PLUS, + ACTIONS(12014), 1, + anon_sym_STAR, + ACTIONS(12016), 1, + anon_sym_SLASH, + ACTIONS(12018), 1, + anon_sym_PERCENT, + ACTIONS(12020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12022), 1, + anon_sym_AMP_AMP, + ACTIONS(12024), 1, + anon_sym_PIPE, + ACTIONS(12026), 1, + anon_sym_CARET, + ACTIONS(12028), 1, + anon_sym_AMP, + ACTIONS(12030), 1, + anon_sym_EQ_EQ, + ACTIONS(12032), 1, + anon_sym_BANG_EQ, + ACTIONS(12034), 1, + anon_sym_GT, + ACTIONS(12036), 1, + anon_sym_GT_EQ, + ACTIONS(12038), 1, + anon_sym_LT_EQ, + ACTIONS(12040), 1, + anon_sym_LT, + ACTIONS(12042), 1, + anon_sym_LT_LT, + ACTIONS(12044), 1, + anon_sym_GT_GT, + ACTIONS(12046), 1, + anon_sym_EQ, + ACTIONS(12048), 1, + anon_sym_QMARK, + ACTIONS(12050), 1, + anon_sym_STAR_EQ, + ACTIONS(12052), 1, + anon_sym_SLASH_EQ, + ACTIONS(12054), 1, + anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, + anon_sym_PLUS_EQ, + ACTIONS(12058), 1, + anon_sym_DASH_EQ, + ACTIONS(12060), 1, + anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, + anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, + anon_sym_AMP_EQ, + ACTIONS(12066), 1, + anon_sym_CARET_EQ, + ACTIONS(12068), 1, + anon_sym_PIPE_EQ, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12072), 1, + anon_sym_or, + ACTIONS(12074), 1, + anon_sym_and, + ACTIONS(12076), 1, + anon_sym_bitor, + ACTIONS(12078), 1, + anon_sym_xor, + ACTIONS(12080), 1, + anon_sym_bitand, + ACTIONS(12082), 1, + anon_sym_not_eq, + ACTIONS(12143), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [139849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, + ACTIONS(10379), 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(10381), 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(10842), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [139909] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(10907), 1, + ACTIONS(11936), 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(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11932), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 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(10068), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, + [139993] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(7987), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7449), 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(7454), 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, + [140059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6822), 1, + anon_sym_COLON_COLON, + ACTIONS(10020), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535353,24 +609740,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(9482), 28, + anon_sym_DASH_GT, + ACTIONS(10022), 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, @@ -535378,6 +609768,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, @@ -535391,109 +609782,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, - [95239] = 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(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, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [95355] = 8, + anon_sym_DASH_GT_STAR, + [140121] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(10902), 1, - anon_sym_LBRACK, - STATE(5031), 1, - sym_new_declarator, - STATE(5775), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 18, + ACTIONS(12086), 1, + anon_sym_LT, + STATE(2990), 1, + sym_template_argument_list, + ACTIONS(10094), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535504,7 +609801,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, @@ -535512,15 +609808,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9276), 30, + anon_sym_DASH_GT, + ACTIONS(10096), 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, @@ -535542,78 +609841,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [95427] = 28, + anon_sym_DASH_GT_STAR, + [140185] = 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(9826), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, + ACTIONS(10379), 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_LT_EQ, anon_sym_LT, - ACTIONS(9828), 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(10381), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -535627,10 +609891,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [95539] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [140245] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 21, + ACTIONS(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9620), 1, + anon_sym_LBRACK, + ACTIONS(9614), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(5671), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535640,27 +609919,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(5595), 33, + anon_sym_DASH_GT, + ACTIONS(5663), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -535668,6 +609944,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, @@ -535681,123 +609958,43 @@ 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, - [95601] = 3, + anon_sym_DASH_GT_STAR, + [140311] = 4, 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, + ACTIONS(7458), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - 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, + ACTIONS(5671), 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___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5663), 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___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -535812,136 +610009,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [95747] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [140373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6686), 1, + sym_attribute_specifier, + ACTIONS(7676), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9013), 30, + anon_sym_DASH_GT, + ACTIONS(7678), 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_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, - [95808] = 3, + anon_sym_DASH_GT_STAR, + [140439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 23, - aux_sym_preproc_elif_token1, + ACTIONS(7747), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8994), 30, + anon_sym_DASH_GT, + ACTIONS(7749), 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [95869] = 6, + anon_sym_DASH_GT_STAR, + [140499] = 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(7755), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535960,16 +610156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9383), 31, + anon_sym_DASH_GT, + ACTIONS(7757), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -535991,639 +610190,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [95936] = 29, - 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(2433), 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, - 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, - [96049] = 7, + anon_sym_DASH_GT_STAR, + [140559] = 3, 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, + ACTIONS(7775), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8466), 21, + anon_sym_DASH_GT, + ACTIONS(7777), 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_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, - [96118] = 3, + anon_sym_DASH_GT_STAR, + [140619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 23, - aux_sym_preproc_elif_token1, + ACTIONS(7779), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8994), 30, + anon_sym_DASH_GT, + ACTIONS(7781), 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [96179] = 3, + anon_sym_DASH_GT_STAR, + [140679] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 23, - aux_sym_preproc_elif_token1, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9614), 1, + anon_sym_LPAREN2, + ACTIONS(9620), 1, + anon_sym_LBRACK, + ACTIONS(5699), 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(5671), 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(8994), 30, + ACTIONS(5663), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_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, - [96240] = 5, + [140749] = 25, 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, + ACTIONS(11701), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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, + ACTIONS(11928), 1, anon_sym_AMP, - anon_sym___attribute, + ACTIONS(11936), 1, 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, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12092), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12094), 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, + ACTIONS(12096), 1, + anon_sym_PIPE, + ACTIONS(12100), 1, + anon_sym_or, + ACTIONS(12102), 1, + anon_sym_and, + ACTIONS(12104), 1, + anon_sym_bitor, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11079), 2, 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_GT_GT_EQ, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12098), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11926), 3, 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_SLASH, + anon_sym_PERCENT, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11081), 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, - anon_sym_try, - anon_sym_requires, - [96435] = 5, + [140853] = 7, 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, + ACTIONS(11456), 1, anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2068), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9784), 20, + 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___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_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(7715), 42, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9786), 28, + 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_final, - anon_sym_override, + 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, - anon_sym_try, - anon_sym_requires, - [96626] = 7, + [140921] = 3, 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, + ACTIONS(9426), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536633,22 +610520,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(9395), 31, + anon_sym_DASH_GT, + ACTIONS(9428), 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, @@ -536656,6 +610549,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, @@ -536669,20 +610563,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_GT2, - anon_sym_requires, - [96695] = 5, + anon_sym_DASH_GT_STAR, + [140981] = 4, 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(12145), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(10147), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536702,16 +610589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9519), 31, + anon_sym_DASH_GT, + ACTIONS(10149), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -536733,17 +610621,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, - [96760] = 6, + anon_sym_DASH_GT_STAR, + [141043] = 3, 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), 18, + ACTIONS(7794), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536754,6 +610636,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, @@ -536762,7 +610645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7097), 32, + ACTIONS(7796), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -536772,6 +610655,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, @@ -536795,18 +610679,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [96827] = 7, + [141103] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6572), 1, - anon_sym_LBRACE, - ACTIONS(9004), 1, - anon_sym_LT, - STATE(5312), 1, - sym_template_argument_list, - ACTIONS(6574), 19, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10046), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536818,6 +610707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -536825,16 +610715,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6567), 30, + ACTIONS(10048), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -536854,13 +610741,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_GT2, - [96896] = 3, + [141175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 18, + ACTIONS(7798), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536879,17 +610764,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9391), 35, + anon_sym_DASH_GT, + ACTIONS(7800), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -536911,14 +610798,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, - [96957] = 3, + anon_sym_DASH_GT_STAR, + [141235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 20, + ACTIONS(7802), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536928,25 +610812,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(8422), 33, + anon_sym_DASH_GT, + ACTIONS(7804), 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, @@ -536955,6 +610841,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, @@ -536968,111 +610855,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, - 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, + anon_sym_DASH_GT_STAR, + [141295] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 20, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12092), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12094), 1, + anon_sym_AMP_AMP, + ACTIONS(12096), 1, + anon_sym_PIPE, + ACTIONS(12100), 1, + anon_sym_or, + ACTIONS(12102), 1, + anon_sym_and, + ACTIONS(12104), 1, + anon_sym_bitor, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11061), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11924), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12098), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9409), 33, + ACTIONS(11063), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -537086,30 +610934,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, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [97158] = 7, + [141399] = 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(10198), 19, + ACTIONS(7794), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537129,15 +610958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10196), 30, + ACTIONS(7796), 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, @@ -537160,18 +610992,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [97227] = 7, + [141459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 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(9099), 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, + [141519] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(10570), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, anon_sym_LBRACK, - STATE(1974), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10202), 19, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9776), 1, + sym__declarator, + STATE(12896), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [141623] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6709), 1, + sym_attribute_specifier, + ACTIONS(7617), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537186,20 +611152,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(10200), 30, + ACTIONS(7619), 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, @@ -537211,79 +611177,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [97296] = 3, + [141689] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 18, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, + anon_sym_COMMA, + ACTIONS(12010), 1, anon_sym_DASH, + ACTIONS(12012), 1, anon_sym_PLUS, + ACTIONS(12014), 1, anon_sym_STAR, + ACTIONS(12016), 1, anon_sym_SLASH, + ACTIONS(12018), 1, anon_sym_PERCENT, + ACTIONS(12020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12022), 1, + anon_sym_AMP_AMP, + ACTIONS(12024), 1, anon_sym_PIPE, + ACTIONS(12026), 1, anon_sym_CARET, + ACTIONS(12028), 1, anon_sym_AMP, + ACTIONS(12030), 1, + anon_sym_EQ_EQ, + ACTIONS(12032), 1, + anon_sym_BANG_EQ, + ACTIONS(12034), 1, anon_sym_GT, + ACTIONS(12036), 1, + anon_sym_GT_EQ, + ACTIONS(12038), 1, anon_sym_LT_EQ, + ACTIONS(12040), 1, anon_sym_LT, + ACTIONS(12042), 1, anon_sym_LT_LT, + ACTIONS(12044), 1, anon_sym_GT_GT, + ACTIONS(12046), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(3161), 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, + ACTIONS(12048), 1, anon_sym_QMARK, + ACTIONS(12050), 1, anon_sym_STAR_EQ, + ACTIONS(12052), 1, anon_sym_SLASH_EQ, + ACTIONS(12054), 1, anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, anon_sym_PLUS_EQ, + ACTIONS(12058), 1, anon_sym_DASH_EQ, + ACTIONS(12060), 1, anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, anon_sym_AMP_EQ, + ACTIONS(12066), 1, anon_sym_CARET_EQ, + ACTIONS(12068), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(12070), 1, anon_sym_LT_EQ_GT, + ACTIONS(12072), 1, + anon_sym_or, + ACTIONS(12074), 1, + anon_sym_and, + ACTIONS(12076), 1, anon_sym_bitor, + ACTIONS(12078), 1, + anon_sym_xor, + ACTIONS(12080), 1, anon_sym_bitand, + ACTIONS(12082), 1, anon_sym_not_eq, + ACTIONS(12147), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 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, - [97357] = 3, + [141845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 20, + ACTIONS(7810), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537293,25 +611306,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(9417), 33, + anon_sym_DASH_GT, + ACTIONS(7812), 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, @@ -537320,6 +611335,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, @@ -537333,43 +611349,77 @@ 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, - [97418] = 3, + anon_sym_DASH_GT_STAR, + [141905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 20, + ACTIONS(7621), 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(9421), 33, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7623), 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, + [141965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11196), 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, @@ -537378,33 +611428,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + ACTIONS(11198), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [97479] = 5, + sym_literal_suffix, + [142025] = 6, 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(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6712), 1, + sym_attribute_specifier, + ACTIONS(7692), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537418,22 +611487,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(7694), 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_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -537445,21 +611513,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [97544] = 3, + anon_sym_DASH_GT_STAR, + [142091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 20, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6723), 1, + sym_attribute_specifier, + ACTIONS(7702), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537469,25 +611543,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(9425), 33, + anon_sym_DASH_GT, + ACTIONS(7704), 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, @@ -537496,57 +611569,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [97605] = 3, + anon_sym_DASH_GT_STAR, + [142157] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 18, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11924), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 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(3153), 35, + ACTIONS(10068), 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, @@ -537554,7 +611640,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, @@ -537565,123 +611650,157 @@ 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, - [97666] = 3, + anon_sym_GT2, + [142237] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10337), 1, + anon_sym_EQ, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11956), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11958), 1, + anon_sym_AMP_AMP, + ACTIONS(11960), 1, anon_sym_PIPE, + ACTIONS(11964), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11978), 1, anon_sym_or, + ACTIONS(11980), 1, anon_sym_and, + ACTIONS(11982), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11984), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11988), 1, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8895), 30, + ACTIONS(12120), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12124), 1, + anon_sym_QMARK, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(11972), 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, + ACTIONS(11986), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [97727] = 22, + ACTIONS(11954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10339), 15, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [142347] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(11174), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - ACTIONS(11176), 1, + ACTIONS(10753), 1, anon_sym_AMP_AMP, - ACTIONS(11178), 1, + ACTIONS(10755), 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, + STATE(2859), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9575), 1, + sym__declarator, + STATE(13027), 1, + sym_ms_based_modifier, + ACTIONS(3228), 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, + STATE(2654), 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, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -537693,71 +611812,78 @@ static const uint16_t ts_small_parse_table[] = { 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, + [142451] = 30, 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, + ACTIONS(6397), 1, + anon_sym_LBRACK, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(11178), 1, + ACTIONS(10934), 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, + ACTIONS(10938), 1, + anon_sym___attribute__, + ACTIONS(10941), 1, + anon_sym___attribute, + ACTIONS(10947), 1, + anon_sym_const, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11439), 1, + anon_sym_requires, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + STATE(7372), 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, + STATE(8526), 1, + sym__function_attributes_start, + STATE(8604), 1, + sym_ref_qualifier, + STATE(9527), 1, + sym_trailing_return_type, + STATE(9680), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10949), 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, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(6837), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7162), 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, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9650), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6399), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(8968), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10936), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -537770,149 +611896,132 @@ static const uint16_t ts_small_parse_table[] = { 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, + [142565] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 23, - aux_sym_preproc_elif_token1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12149), 1, + anon_sym_LT, + STATE(6297), 1, + sym_template_argument_list, + ACTIONS(10037), 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___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(8956), 30, + ACTIONS(10039), 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_COLON_RBRACK, - [97986] = 29, + anon_sym_GT2, + [142631] = 25, 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 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(2266), 1, - sym_type_specifier, - STATE(3497), 1, + STATE(2859), 1, sym_alignas_qualifier, - STATE(8763), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8975), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(9779), 1, + sym__declarator, + STATE(12896), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -537926,15 +612035,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98099] = 3, + [142735] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -537947,17 +612073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9335), 35, + ACTIONS(10068), 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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -537977,26 +612100,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [142811] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11986), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [98160] = 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), 19, + ACTIONS(10066), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538006,24 +612129,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(7097), 29, + ACTIONS(10068), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538031,6 +612153,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, @@ -538041,102 +612164,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_GT2, - [98229] = 3, + [142885] = 24, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(11631), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(11958), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(11960), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, anon_sym_GT_EQ, + ACTIONS(11974), 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(11976), 1, anon_sym_LT_EQ_GT, + ACTIONS(11980), 1, + anon_sym_and, + ACTIONS(11982), 1, anon_sym_bitor, + ACTIONS(11984), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(10066), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [98290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8905), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 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(8907), 33, + ACTIONS(10068), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538144,62 +612235,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [142987] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11960), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, anon_sym_LT_EQ_GT, + ACTIONS(11982), 1, anon_sym_bitor, + ACTIONS(11984), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [98351] = 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, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10066), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(11954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 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_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9519), 29, + ACTIONS(10068), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538207,85 +612311,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [98416] = 5, + [143085] = 3, 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, + ACTIONS(9861), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7225), 42, + 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(9863), 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___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_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, + [143145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 24, + ACTIONS(9865), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -538298,7 +612391,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, @@ -538310,7 +612402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5591), 29, + ACTIONS(9867), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -538330,9 +612422,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_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -538340,39 +612432,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [98542] = 3, + [143205] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 20, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11984), 1, + anon_sym_bitand, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 4, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9437), 33, + ACTIONS(10068), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538380,57 +612498,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + [143299] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11984), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [98603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8913), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8915), 33, + ACTIONS(10068), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538438,102 +612571,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_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, - [98664] = 13, + [143391] = 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, + ACTIONS(10908), 1, anon_sym___attribute__, + ACTIONS(10910), 1, anon_sym___attribute, - ACTIONS(11212), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11192), 6, - 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, + STATE(6651), 1, 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, + ACTIONS(7570), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538550,7 +612605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9145), 33, + ACTIONS(7572), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -538560,6 +612615,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, @@ -538582,41 +612638,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [98810] = 3, + [143457] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 20, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10068), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + [143545] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11970), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11972), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9447), 33, + ACTIONS(10068), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538624,148 +612770,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_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, - [98871] = 3, + [143631] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 23, - aux_sym_preproc_elif_token1, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10066), 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(3161), 30, + ACTIONS(10068), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [98932] = 26, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [143713] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11075), 1, + anon_sym_EQ, + ACTIONS(12156), 1, anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, + ACTIONS(12158), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, + ACTIONS(12160), 1, anon_sym_PIPE, - ACTIONS(11233), 1, + ACTIONS(12164), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(12170), 1, anon_sym_GT_EQ, - ACTIONS(11243), 1, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12176), 1, anon_sym_or, - ACTIONS(11245), 1, + ACTIONS(12178), 1, anon_sym_and, - ACTIONS(11247), 1, + ACTIONS(12180), 1, anon_sym_bitor, - ACTIONS(11249), 1, + ACTIONS(12182), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(12162), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, + ACTIONS(12172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(12166), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(12168), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 18, + ACTIONS(11077), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538780,102 +612928,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [99039] = 7, + [143819] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(11253), 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11079), 1, + anon_sym_EQ, + ACTIONS(12156), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12158), 1, + anon_sym_AMP_AMP, + ACTIONS(12160), 1, anon_sym_PIPE, + ACTIONS(12164), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(12170), 1, + anon_sym_GT_EQ, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12176), 1, anon_sym_or, + ACTIONS(12178), 1, anon_sym_and, + ACTIONS(12180), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12182), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8454), 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, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [99108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 18, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12162), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12166), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12168), 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(7791), 35, + ACTIONS(11081), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538890,50 +613008,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [143925] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10105), 1, + anon_sym_EQ, + ACTIONS(12156), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12158), 1, + anon_sym_AMP_AMP, + ACTIONS(12160), 1, + anon_sym_PIPE, + ACTIONS(12164), 1, + anon_sym_AMP, + ACTIONS(12170), 1, + anon_sym_GT_EQ, + ACTIONS(12174), 1, anon_sym_LT_EQ_GT, + ACTIONS(12176), 1, + anon_sym_or, + ACTIONS(12178), 1, + anon_sym_and, + ACTIONS(12180), 1, anon_sym_bitor, + ACTIONS(12182), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [99169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9296), 18, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12162), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12166), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12168), 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(9298), 35, + ACTIONS(10103), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538948,29 +613088,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [99230] = 7, + [144031] = 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(9410), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538984,21 +613105,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(10172), 30, + ACTIONS(9412), 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, @@ -539021,193 +613145,92 @@ static const uint16_t ts_small_parse_table[] = { 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [99364] = 5, + [144091] = 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(7717), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7719), 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, + ACTIONS(7061), 1, 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, - [99429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8901), 23, - aux_sym_preproc_elif_token1, + ACTIONS(7063), 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(5671), 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_LT_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_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8903), 30, + ACTIONS(5663), 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_LBRACE, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [99490] = 3, + [144155] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 18, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -539220,17 +613243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9310), 35, + ACTIONS(10068), 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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -539250,22 +613270,194 @@ 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, + [144233] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11045), 1, + anon_sym_EQ, + ACTIONS(12156), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12158), 1, + anon_sym_AMP_AMP, + ACTIONS(12160), 1, + anon_sym_PIPE, + ACTIONS(12164), 1, + anon_sym_AMP, + ACTIONS(12170), 1, + anon_sym_GT_EQ, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12176), 1, + anon_sym_or, + ACTIONS(12178), 1, + anon_sym_and, + ACTIONS(12180), 1, + anon_sym_bitor, + ACTIONS(12182), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [99551] = 3, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12162), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12154), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12166), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12168), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11047), 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, + [144339] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 18, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10337), 1, + anon_sym_EQ, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12156), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12158), 1, + anon_sym_AMP_AMP, + ACTIONS(12160), 1, + anon_sym_PIPE, + ACTIONS(12164), 1, + anon_sym_AMP, + ACTIONS(12170), 1, + anon_sym_GT_EQ, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12176), 1, + anon_sym_or, + ACTIONS(12178), 1, + anon_sym_and, + ACTIONS(12180), 1, + anon_sym_bitor, + ACTIONS(12182), 1, + anon_sym_bitand, + ACTIONS(12184), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12162), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12154), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12166), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12168), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10339), 15, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [144449] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -539278,18 +613470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9318), 35, + ACTIONS(10068), 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_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539308,19 +613497,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [99612] = 5, + [144525] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12158), 1, + anon_sym_AMP_AMP, + ACTIONS(12160), 1, + anon_sym_PIPE, + ACTIONS(12164), 1, + anon_sym_AMP, + ACTIONS(12170), 1, + anon_sym_GT_EQ, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12178), 1, + anon_sym_and, + ACTIONS(12180), 1, + anon_sym_bitor, + ACTIONS(12182), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10066), 2, anon_sym_EQ, - ACTIONS(5663), 13, + anon_sym_or, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12162), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12154), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12166), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12168), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -539334,255 +613575,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(5645), 17, + [144627] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12160), 1, + anon_sym_PIPE, + ACTIONS(12164), 1, + anon_sym_AMP, + ACTIONS(12170), 1, + anon_sym_GT_EQ, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12180), 1, + anon_sym_bitor, + ACTIONS(12182), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12162), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12166), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12168), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5638), 22, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_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, + [144725] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12164), 1, + anon_sym_AMP, + ACTIONS(12170), 1, + anon_sym_GT_EQ, + ACTIONS(12174), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(12182), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [99677] = 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(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_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, - [99790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5593), 24, - aux_sym_preproc_elif_token1, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12162), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12154), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(12166), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12168), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, + ACTIONS(10066), 4, + anon_sym_PIPE, + 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(5595), 29, + ACTIONS(10068), 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_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, - [99851] = 26, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [144819] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10473), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12164), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(12170), 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, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12182), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11241), 2, + ACTIONS(12172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(12166), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(12168), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 18, + ACTIONS(10066), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10068), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539597,40 +613797,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [99958] = 3, + anon_sym_bitor, + [144911] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 20, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12170), 1, + anon_sym_GT_EQ, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12166), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12168), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9335), 33, + ACTIONS(10068), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539638,57 +613860,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, - 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, - [100019] = 3, + [144999] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 20, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12170), 1, + anon_sym_GT_EQ, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12168), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9339), 33, + ACTIONS(10068), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539696,104 +613929,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_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, + [145085] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12154), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10066), 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(8923), 30, + ACTIONS(10068), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [100141] = 9, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [145167] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9657), 17, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -539806,15 +614046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9659), 29, + ACTIONS(10068), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539833,56 +614073,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [100214] = 11, + [145245] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11223), 3, + ACTIONS(12152), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12172), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 14, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10066), 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), 27, + ACTIONS(10068), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539901,53 +614140,55 @@ 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, + [145325] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, sym_argument_list, - STATE(5664), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 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), 27, + ACTIONS(10068), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539966,71 +614207,72 @@ 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, + [145405] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11227), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11053), 1, + anon_sym_EQ, + ACTIONS(12156), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12158), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, + ACTIONS(12160), 1, anon_sym_PIPE, - ACTIONS(11233), 1, + ACTIONS(12164), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(12170), 1, anon_sym_GT_EQ, - ACTIONS(11245), 1, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12176), 1, + anon_sym_or, + ACTIONS(12178), 1, anon_sym_and, - ACTIONS(11247), 1, + ACTIONS(12180), 1, anon_sym_bitor, - ACTIONS(11249), 1, + ACTIONS(12182), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(10801), 2, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(12162), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, + ACTIONS(12172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(12166), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(12168), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(11055), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540045,70 +614287,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [100469] = 22, + [145511] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11229), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11057), 1, + anon_sym_EQ, + ACTIONS(12156), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12158), 1, + anon_sym_AMP_AMP, + ACTIONS(12160), 1, anon_sym_PIPE, - ACTIONS(11233), 1, + ACTIONS(12164), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(12170), 1, anon_sym_GT_EQ, - ACTIONS(11247), 1, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12176), 1, + anon_sym_or, + ACTIONS(12178), 1, + anon_sym_and, + ACTIONS(12180), 1, anon_sym_bitor, - ACTIONS(11249), 1, + ACTIONS(12182), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(12184), 1, + anon_sym_QMARK, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(12162), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, + ACTIONS(12172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(11223), 3, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(12166), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(12168), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(11059), 15, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, + anon_sym_RBRACK_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -540122,66 +614369,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [100568] = 20, + [145621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(9869), 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(9871), 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(10759), 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(10787), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11233), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [145681] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11061), 1, + anon_sym_EQ, + ACTIONS(12156), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12158), 1, + anon_sym_AMP_AMP, + ACTIONS(12160), 1, + anon_sym_PIPE, + ACTIONS(12164), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(12170), 1, anon_sym_GT_EQ, - ACTIONS(11249), 1, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12176), 1, + anon_sym_or, + ACTIONS(12178), 1, + anon_sym_and, + ACTIONS(12180), 1, + anon_sym_bitor, + ACTIONS(12182), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(12162), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, + ACTIONS(12172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(12166), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(12168), 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, + ACTIONS(11063), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540196,66 +614506,184 @@ 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, - [100663] = 19, + [145787] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11233), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11065), 1, + anon_sym_EQ, + ACTIONS(12156), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12158), 1, + anon_sym_AMP_AMP, + ACTIONS(12160), 1, + anon_sym_PIPE, + ACTIONS(12164), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(12170), 1, anon_sym_GT_EQ, - ACTIONS(11249), 1, + ACTIONS(12174), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12176), 1, + anon_sym_or, + ACTIONS(12178), 1, + anon_sym_and, + ACTIONS(12180), 1, + anon_sym_bitor, + ACTIONS(12182), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(12184), 1, + anon_sym_QMARK, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(12152), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11241), 2, + ACTIONS(12162), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12172), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(12154), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(12166), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(12168), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11067), 15, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [145897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 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, - ACTIONS(9707), 6, + 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(9008), 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, + [145957] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2068), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9792), 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(9709), 21, + anon_sym_DOT, + ACTIONS(9794), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540263,70 +614691,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_DASH_GT_STAR, - [100756] = 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, + [146025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(9888), 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(9890), 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(10759), 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(10787), 1, + anon_sym_QMARK, 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_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11221), 2, + anon_sym_COLON_RBRACK, + [146085] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2068), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9796), 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(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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_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), 22, + anon_sym_DOT, + ACTIONS(9798), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540334,69 +614809,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_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_GT2, + [146153] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6822), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6824), 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(6817), 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, @@ -540411,61 +614874,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [100932] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [146215] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(11447), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(11449), 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_DASH_GT, - ACTIONS(11221), 2, + STATE(2085), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9792), 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(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), 26, + anon_sym_DOT, + ACTIONS(9794), 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, @@ -540480,97 +614935,31 @@ 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [146283] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(11447), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(11449), 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, + STATE(2085), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9780), 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 +614972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 27, + anon_sym_DOT, + ACTIONS(9782), 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, @@ -540610,19 +615000,22 @@ 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, + [146351] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6572), 1, - anon_sym_LBRACE, - ACTIONS(11255), 1, - anon_sym_LT, - STATE(5351), 1, - sym_template_argument_list, - ACTIONS(6574), 17, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2085), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9796), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -540633,6 +615026,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, @@ -540640,16 +615034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6567), 32, + ACTIONS(9798), 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, @@ -540673,113 +615065,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [101228] = 3, + [146419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 23, - aux_sym_preproc_elif_token1, + ACTIONS(12086), 1, + anon_sym_LT, + STATE(3019), 1, + sym_template_argument_list, + ACTIONS(10094), 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(8948), 30, + anon_sym_DASH_GT, + ACTIONS(10096), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [101289] = 13, + anon_sym_DASH_GT_STAR, + [146483] = 6, 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(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(7987), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7449), 17, 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_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 27, + anon_sym_DOT, + ACTIONS(7454), 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, @@ -540798,79 +615180,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [101370] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [146549] = 3, 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, + ACTIONS(10214), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8406), 21, + anon_sym_DASH_GT, + ACTIONS(10216), 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_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, - [101439] = 6, + anon_sym_DASH_GT_STAR, + [146609] = 3, 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, + ACTIONS(7822), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -540881,6 +615255,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, @@ -540889,7 +615264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9580), 32, + ACTIONS(7824), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -540899,6 +615274,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, @@ -540922,10 +615298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [101506] = 3, + [146669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 18, + ACTIONS(7826), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -540944,17 +615320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 35, + anon_sym_DASH_GT, + ACTIONS(7828), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540976,14 +615354,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101567] = 3, + anon_sym_DASH_GT_STAR, + [146729] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9581), 1, + sym__declarator, + STATE(13027), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [146833] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 18, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10113), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541001,17 +615471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9363), 35, + ACTIONS(10115), 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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -541031,21 +615498,94 @@ 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, + [146907] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11245), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11247), 1, + anon_sym_AMP_AMP, + ACTIONS(11249), 1, + anon_sym_PIPE, + ACTIONS(11253), 1, + anon_sym_AMP, + ACTIONS(11259), 1, + anon_sym_GT_EQ, + ACTIONS(11263), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11265), 1, + anon_sym_or, + ACTIONS(11267), 1, + anon_sym_and, + ACTIONS(11269), 1, + anon_sym_bitor, + ACTIONS(11271), 1, + anon_sym_bitand, + ACTIONS(11293), 1, + anon_sym_QMARK, + ACTIONS(11454), 1, + anon_sym_RPAREN, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12188), 1, + anon_sym_EQ, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101628] = 5, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11241), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11251), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11261), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11243), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11255), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11257), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11373), 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, + [147021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11270), 1, - anon_sym_LT, - STATE(1963), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(7830), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541056,6 +615596,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, @@ -541063,7 +615604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9652), 34, + anon_sym_DASH_GT, + ACTIONS(7832), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -541073,8 +615615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -541097,11 +615638,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, - [101693] = 3, + anon_sym_DASH_GT_STAR, + [147081] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 18, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7359), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541120,7 +615663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9367), 35, + ACTIONS(7361), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -541129,6 +615672,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, @@ -541153,13 +615697,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, - [101754] = 3, + [147143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 18, + ACTIONS(7834), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541178,17 +615719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9371), 35, + anon_sym_DASH_GT, + ACTIONS(7836), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541210,14 +615753,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, - [101815] = 3, + anon_sym_DASH_GT_STAR, + [147203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 18, + ACTIONS(7842), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541236,17 +615776,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9375), 35, + anon_sym_DASH_GT, + ACTIONS(7844), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541268,18 +615810,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, - [101876] = 5, + anon_sym_DASH_GT_STAR, + [147263] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11270), 1, - anon_sym_LT, - STATE(1973), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2085), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9784), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541290,26 +615833,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, + ACTIONS(9786), 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_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541332,26 +615872,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [101941] = 10, + [147331] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 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(9638), 17, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9764), 1, + sym__declarator, + STATE(12896), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [147435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7846), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541369,15 +615972,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9640), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7848), 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, @@ -541396,79 +616004,61 @@ 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, - [102016] = 29, + [147495] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(5701), 1, sym_auto, - ACTIONS(3238), 1, + ACTIONS(5703), 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, + ACTIONS(7109), 1, + anon_sym_SEMI, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(10965), 1, + anon_sym_LBRACK, + STATE(3650), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3985), 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, + STATE(4259), 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, + STATE(6782), 1, + sym_template_argument_list, + ACTIONS(5686), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5669), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_COLON, + ACTIONS(5691), 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, + ACTIONS(5661), 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, @@ -541481,72 +616071,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102129] = 26, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [147577] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10538), 1, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10182), 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, - ACTIONS(10687), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10184), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_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, + [147651] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, + ACTIONS(11938), 1, anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12092), 1, anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, + ACTIONS(12094), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, + ACTIONS(12096), 1, anon_sym_PIPE, - ACTIONS(11233), 1, - anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11243), 1, + ACTIONS(12100), 1, anon_sym_or, - ACTIONS(11245), 1, + ACTIONS(12102), 1, anon_sym_and, - ACTIONS(11247), 1, + ACTIONS(12104), 1, anon_sym_bitor, - ACTIONS(11249), 1, - anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(6528), 1, sym_argument_list, - STATE(5664), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10105), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11221), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(12098), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(11926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(11930), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(11932), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 18, + ACTIONS(10103), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541554,22 +616212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_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, - [102236] = 5, + anon_sym_GT2, + [147755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11273), 1, - anon_sym_LT, - STATE(2846), 1, - sym_template_argument_list, - ACTIONS(9650), 19, + ACTIONS(9418), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541580,6 +616233,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, @@ -541589,7 +616243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9652), 32, + ACTIONS(9420), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -541622,10 +616276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [102301] = 3, + [147815] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 18, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2068), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9800), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541635,26 +616297,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(8422), 35, + ACTIONS(9802), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541662,7 +616322,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 +616336,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, + [147883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 18, + ACTIONS(9455), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541697,22 +616354,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(9409), 35, + anon_sym_DASH_GT, + ACTIONS(9457), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541734,14 +616393,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, - [102423] = 3, + anon_sym_DASH_GT_STAR, + [147943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 18, + ACTIONS(9414), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541755,22 +616411,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(9417), 35, + anon_sym_DASH_GT, + ACTIONS(9416), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541792,14 +616450,68 @@ 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, + [148003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9917), 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, - [102484] = 3, + ACTIONS(9919), 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, + [148063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 18, + ACTIONS(9401), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541813,22 +616525,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(9421), 35, + anon_sym_DASH_GT, + ACTIONS(9403), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541850,14 +616564,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [102545] = 3, + anon_sym_DASH_GT_STAR, + [148123] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + ACTIONS(10757), 1, + anon_sym_STAR, + ACTIONS(10759), 1, + anon_sym_AMP_AMP, + ACTIONS(10761), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9936), 1, + sym__declarator, + STATE(11972), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [148227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 18, + ACTIONS(9389), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541871,22 +616661,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(9425), 35, + anon_sym_DASH_GT, + ACTIONS(9391), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541908,72 +616700,178 @@ 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, - [102606] = 3, + anon_sym_DASH_GT_STAR, + [148287] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 18, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, + anon_sym_LPAREN2, + ACTIONS(11994), 1, + anon_sym_LBRACK, + STATE(6135), 1, + sym_new_declarator, + STATE(6760), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9658), 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(8907), 35, + sym_identifier, + ACTIONS(9660), 26, 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_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, + [148357] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, + anon_sym_COMMA, + ACTIONS(12010), 1, + anon_sym_DASH, + ACTIONS(12012), 1, + anon_sym_PLUS, + ACTIONS(12014), 1, + anon_sym_STAR, + ACTIONS(12016), 1, + anon_sym_SLASH, + ACTIONS(12018), 1, + anon_sym_PERCENT, + ACTIONS(12020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12022), 1, + anon_sym_AMP_AMP, + ACTIONS(12024), 1, + anon_sym_PIPE, + ACTIONS(12026), 1, + anon_sym_CARET, + ACTIONS(12028), 1, + anon_sym_AMP, + ACTIONS(12030), 1, + anon_sym_EQ_EQ, + ACTIONS(12032), 1, + anon_sym_BANG_EQ, + ACTIONS(12034), 1, + anon_sym_GT, + ACTIONS(12036), 1, + anon_sym_GT_EQ, + ACTIONS(12038), 1, + anon_sym_LT_EQ, + ACTIONS(12040), 1, + anon_sym_LT, + ACTIONS(12042), 1, + anon_sym_LT_LT, + ACTIONS(12044), 1, + anon_sym_GT_GT, + ACTIONS(12046), 1, + anon_sym_EQ, + ACTIONS(12048), 1, anon_sym_QMARK, + ACTIONS(12050), 1, anon_sym_STAR_EQ, + ACTIONS(12052), 1, anon_sym_SLASH_EQ, + ACTIONS(12054), 1, anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, anon_sym_PLUS_EQ, + ACTIONS(12058), 1, anon_sym_DASH_EQ, + ACTIONS(12060), 1, anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, anon_sym_AMP_EQ, + ACTIONS(12066), 1, anon_sym_CARET_EQ, + ACTIONS(12068), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(12070), 1, anon_sym_LT_EQ_GT, + ACTIONS(12072), 1, + anon_sym_or, + ACTIONS(12074), 1, + anon_sym_and, + ACTIONS(12076), 1, anon_sym_bitor, + ACTIONS(12078), 1, + anon_sym_xor, + ACTIONS(12080), 1, anon_sym_bitand, + ACTIONS(12082), 1, anon_sym_not_eq, + ACTIONS(12190), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 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, - [102667] = 3, + [148513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 18, + ACTIONS(8854), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541992,17 +616890,19 @@ 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(8849), 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, @@ -542024,14 +616924,375 @@ 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, + [148573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 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(9031), 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, + [148633] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10705), 1, + anon_sym_STAR, + ACTIONS(10707), 1, + anon_sym_AMP_AMP, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9764), 1, + sym__declarator, + STATE(12133), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [148737] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10743), 1, + anon_sym_STAR, + ACTIONS(10745), 1, + anon_sym_AMP_AMP, + ACTIONS(10747), 1, + anon_sym_AMP, + ACTIONS(10749), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5504), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9614), 1, + sym__scope_resolution, + STATE(10043), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5811), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6604), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(6606), 4, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [102728] = 3, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [148841] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6785), 1, + anon_sym_LBRACK, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(6449), 1, + sym_template_argument_list, + ACTIONS(6778), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6781), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_COLON, + ACTIONS(6774), 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, + [148911] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10769), 1, + anon_sym_STAR, + ACTIONS(10771), 1, + anon_sym_AMP_AMP, + ACTIONS(10773), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10117), 1, + sym__declarator, + STATE(12191), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [149015] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 18, + ACTIONS(11456), 1, + anon_sym_LPAREN2, + ACTIONS(11458), 1, + anon_sym_LBRACK, + STATE(2068), 1, + sym_parameter_list, + STATE(5722), 1, + sym__function_declarator_seq, + ACTIONS(9774), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542041,26 +617302,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(8915), 35, + ACTIONS(9776), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542068,7 +617327,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, @@ -542083,13 +617341,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, - [102789] = 3, + anon_sym_GT2, + [149083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 18, + ACTIONS(7854), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542108,17 +617364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9447), 35, + anon_sym_DASH_GT, + ACTIONS(7856), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542140,79 +617398,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, - [102850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5638), 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(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_DASH_GT_STAR, + [149143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(11276), 1, + ACTIONS(12192), 1, anon_sym_LT, - STATE(5314), 1, + STATE(5531), 1, sym_template_argument_list, - ACTIONS(9495), 18, + ACTIONS(10094), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542231,7 +617425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9497), 32, + ACTIONS(10096), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -542264,135 +617458,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [102980] = 3, + [149207] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 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(8998), 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(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 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(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 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, - [103041] = 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11071), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(11073), 1, + ACTIONS(10735), 1, + anon_sym_STAR, + ACTIONS(10737), 1, + anon_sym_AMP_AMP, + ACTIONS(10739), 1, + anon_sym_AMP, + ACTIONS(10741), 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(2630), 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, + STATE(2859), 1, sym_alignas_qualifier, - STATE(3527), 1, - sym_decltype_auto, - STATE(8686), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8989), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(9918), 1, + sym__declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(3447), 2, + STATE(13053), 5, sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -542406,19 +617537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103154] = 7, + [149311] = 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), 17, + ACTIONS(7858), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542429,6 +617551,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, @@ -542436,16 +617559,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7097), 31, + anon_sym_DASH_GT, + ACTIONS(7860), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542467,14 +617593,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, - [103223] = 4, + anon_sym_DASH_GT_STAR, + [149371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 19, + ACTIONS(10359), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542488,13 +617611,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(6596), 32, + ACTIONS(10361), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -542504,7 +617628,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, @@ -542527,93 +617651,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [103286] = 28, + [149431] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10477), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(10717), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10759), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + ACTIONS(10796), 1, + anon_sym_STAR, + ACTIONS(10798), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, - anon_sym_PIPE, - ACTIONS(11233), 1, + ACTIONS(10800), 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, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10057), 1, + sym__declarator, + STATE(12242), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [149535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 18, + ACTIONS(7814), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542623,16 +617743,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(8952), 35, + ACTIONS(7816), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -542640,9 +617762,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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542650,7 +617772,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, @@ -542665,75 +617786,98 @@ 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, - [103458] = 7, + anon_sym_GT2, + [149595] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(11279), 1, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12092), 1, anon_sym_PIPE_PIPE, - ACTIONS(11281), 1, + ACTIONS(12094), 1, anon_sym_AMP_AMP, - ACTIONS(11283), 1, + ACTIONS(12096), 1, + anon_sym_PIPE, + ACTIONS(12100), 1, anon_sym_or, - ACTIONS(11285), 1, + ACTIONS(12102), 1, anon_sym_and, - ACTIONS(9393), 16, + ACTIONS(12104), 1, + anon_sym_bitor, + ACTIONS(12128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12130), 1, + anon_sym_QMARK, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11065), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11924), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12098), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 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_xor, - anon_sym_DOT, - ACTIONS(9395), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(11067), 14, 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, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [103527] = 3, + anon_sym_GT2, + [149703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 18, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6640), 1, + sym_attribute_specifier, + ACTIONS(7634), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542748,21 +617892,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(8956), 35, + anon_sym_DASH_GT, + ACTIONS(7636), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542774,83 +617917,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [103588] = 4, + anon_sym_DASH_GT_STAR, + [149769] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(11287), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 20, + 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9934), 1, + sym__declarator, + STATE(11956), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [149873] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 1, + anon_sym_LBRACE, + ACTIONS(7987), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7444), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7449), 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_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(9699), 32, + sym_identifier, + ACTIONS(7454), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [103651] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [149941] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 20, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2085), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9800), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542860,26 +618089,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(8952), 33, + ACTIONS(9802), 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, @@ -542887,6 +618114,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, @@ -542901,14 +618129,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, - [103712] = 3, + [150009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 18, + ACTIONS(9397), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542922,22 +618146,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(8994), 35, + anon_sym_DASH_GT, + ACTIONS(9399), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542959,14 +618185,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, - [103773] = 3, + anon_sym_DASH_GT_STAR, + [150069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 18, + ACTIONS(5619), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542980,22 +618203,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(8994), 35, + anon_sym_DASH_GT, + ACTIONS(5621), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543007,91 +618229,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [103834] = 29, + anon_sym_DASH_GT_STAR, + [150129] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 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, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(10703), 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, + ACTIONS(10757), 1, + anon_sym_STAR, + ACTIONS(10759), 1, + anon_sym_AMP_AMP, + ACTIONS(10761), 1, + anon_sym_AMP, + STATE(2859), 1, sym_alignas_qualifier, - STATE(3711), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3819), 1, - sym_qualified_type_identifier, - STATE(4023), 1, - sym_type_specifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(8675), 1, + STATE(8975), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(9931), 1, + sym__declarator, + STATE(11972), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(3967), 2, + STATE(13053), 5, sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -543105,68 +618322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103947] = 3, + [150233] = 6, 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, - 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(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9614), 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(9620), 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, - anon_sym_LT_EQ_GT, - anon_sym_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, - [104008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8954), 20, + ACTIONS(5671), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543176,301 +618341,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8956), 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, - [104069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8885), 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(8887), 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, - [104130] = 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(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, - 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, - [104195] = 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(7727), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - 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___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, - [104260] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5036), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11289), 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, - 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, - [104325] = 7, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5663), 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [150299] = 6, 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, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12195), 1, + anon_sym_LT, + STATE(6310), 1, + sym_template_argument_list, + ACTIONS(10037), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543481,7 +618402,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, @@ -543489,16 +618409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10204), 30, + ACTIONS(10039), 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, @@ -543520,19 +618441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [104394] = 7, + anon_sym_DASH_GT, + [150365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, + ACTIONS(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9614), 1, anon_sym_LPAREN2, - ACTIONS(10570), 1, + ACTIONS(9620), 1, anon_sym_LBRACK, - STATE(1974), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10186), 19, + ACTIONS(5671), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543551,16 +618470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10184), 30, + ACTIONS(5663), 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_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543582,98 +618501,252 @@ 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, - [104463] = 5, + anon_sym_DASH_GT, + [150431] = 19, ACTIONS(3), 1, sym_comment, - STATE(5037), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11291), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7783), 6, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11928), 1, anon_sym_AMP, - anon_sym___attribute, + ACTIONS(11936), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7785), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12098), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11926), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(10068), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, + [150523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 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_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, - [104528] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10564), 26, + ACTIONS(8287), 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, + [150583] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, anon_sym_LBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, + anon_sym_COMMA, + ACTIONS(12010), 1, + anon_sym_DASH, + ACTIONS(12012), 1, + anon_sym_PLUS, + ACTIONS(12014), 1, + anon_sym_STAR, + ACTIONS(12016), 1, + anon_sym_SLASH, + ACTIONS(12018), 1, + anon_sym_PERCENT, + ACTIONS(12020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12022), 1, + anon_sym_AMP_AMP, + ACTIONS(12024), 1, + anon_sym_PIPE, + ACTIONS(12026), 1, + anon_sym_CARET, + ACTIONS(12028), 1, + anon_sym_AMP, + ACTIONS(12030), 1, + anon_sym_EQ_EQ, + ACTIONS(12032), 1, + anon_sym_BANG_EQ, + ACTIONS(12034), 1, + anon_sym_GT, + ACTIONS(12036), 1, + anon_sym_GT_EQ, + ACTIONS(12038), 1, + anon_sym_LT_EQ, + ACTIONS(12040), 1, + anon_sym_LT, + ACTIONS(12042), 1, + anon_sym_LT_LT, + ACTIONS(12044), 1, + anon_sym_GT_GT, + ACTIONS(12046), 1, + anon_sym_EQ, + ACTIONS(12048), 1, anon_sym_QMARK, + ACTIONS(12050), 1, anon_sym_STAR_EQ, + ACTIONS(12052), 1, anon_sym_SLASH_EQ, + ACTIONS(12054), 1, anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, anon_sym_PLUS_EQ, + ACTIONS(12058), 1, anon_sym_DASH_EQ, + ACTIONS(12060), 1, anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, anon_sym_AMP_EQ, + ACTIONS(12066), 1, anon_sym_CARET_EQ, + ACTIONS(12068), 1, anon_sym_PIPE_EQ, + ACTIONS(12070), 1, anon_sym_LT_EQ_GT, + ACTIONS(12072), 1, + anon_sym_or, + ACTIONS(12074), 1, + anon_sym_and, + ACTIONS(12076), 1, + anon_sym_bitor, + ACTIONS(12078), 1, + anon_sym_xor, + ACTIONS(12080), 1, + anon_sym_bitand, + ACTIONS(12082), 1, + anon_sym_not_eq, + ACTIONS(12198), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10566), 27, + [150739] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6743), 1, + sym_attribute_specifier, + ACTIONS(7672), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543687,24 +618760,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7674), 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, - sym_literal_suffix, - [104589] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [150805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 18, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6727), 1, + sym_attribute_specifier, + ACTIONS(7680), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543719,21 +618821,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(8887), 35, + anon_sym_DASH_GT, + ACTIONS(7682), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543745,53 +618846,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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, + anon_sym_DASH_GT_STAR, + [150871] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 18, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11924), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 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(8911), 35, + ACTIONS(10068), 23, 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, @@ -543799,118 +618915,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_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, + anon_sym_GT2, + [150953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(10647), 1, + ACTIONS(9939), 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, - STATE(5613), 1, - sym_template_argument_list, - ACTIONS(7090), 12, + 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(9941), 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_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + 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(7085), 38, + anon_sym_CARET, + anon_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, + [151013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9943), 23, + 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_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_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, - [104778] = 3, + anon_sym_requires, + ACTIONS(9945), 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, + [151073] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 20, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11924), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 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, - anon_sym_DOT, - ACTIONS(8994), 33, + ACTIONS(10068), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543924,22 +619106,13 @@ 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_GT2, - anon_sym_requires, - [104839] = 3, + [151159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 20, + ACTIONS(10147), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543949,18 +619122,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(8994), 33, + ACTIONS(10149), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -543968,7 +619140,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, @@ -543976,6 +619151,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, @@ -543990,98 +619166,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, - [104900] = 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(6452), 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, - [105013] = 3, + [151219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 18, + ACTIONS(7814), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544100,7 +619188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8923), 35, + ACTIONS(7816), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -544109,6 +619197,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_LBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -544133,13 +619223,23 @@ 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, - [105074] = 3, + [151279] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 18, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10178), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544157,18 +619257,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8948), 35, + ACTIONS(10180), 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_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544189,22 +619286,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + [151351] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(11075), 1, + anon_sym_EQ, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12210), 1, + anon_sym_AMP_AMP, + ACTIONS(12212), 1, + anon_sym_PIPE, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12228), 1, + anon_sym_or, + ACTIONS(12230), 1, + anon_sym_and, + ACTIONS(12232), 1, + anon_sym_bitor, + ACTIONS(12234), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [105135] = 6, + ACTIONS(12204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11077), 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, + [151457] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - STATE(5848), 2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 18, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10082), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544222,8 +619403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9493), 31, + ACTIONS(10084), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -544231,8 +619411,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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544251,14 +619430,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [151531] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [105202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8996), 18, + ACTIONS(10086), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544276,18 +619467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8998), 35, + ACTIONS(10088), 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_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544306,17 +619494,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [151605] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(11079), 1, + anon_sym_EQ, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12210), 1, + anon_sym_AMP_AMP, + ACTIONS(12212), 1, + anon_sym_PIPE, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12228), 1, + anon_sym_or, + ACTIONS(12230), 1, + anon_sym_and, + ACTIONS(12232), 1, + anon_sym_bitor, + ACTIONS(12234), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [105263] = 3, + ACTIONS(12204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11081), 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, + [151711] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 18, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10046), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544334,18 +619608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9013), 35, + ACTIONS(10048), 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_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544366,46 +619637,152 @@ 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, - [105324] = 5, + [151783] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(11145), 1, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10105), 1, + anon_sym_EQ, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12210), 1, anon_sym_AMP_AMP, - ACTIONS(11149), 1, + ACTIONS(12212), 1, + anon_sym_PIPE, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12228), 1, + anon_sym_or, + ACTIONS(12230), 1, anon_sym_and, - ACTIONS(9322), 19, + ACTIONS(12232), 1, + anon_sym_bitor, + ACTIONS(12234), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 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_xor, - anon_sym_DOT, - ACTIONS(9324), 32, + ACTIONS(10103), 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, + [151889] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(11045), 1, + anon_sym_EQ, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12208), 1, anon_sym_PIPE_PIPE, + ACTIONS(12210), 1, + anon_sym_AMP_AMP, + ACTIONS(12212), 1, + anon_sym_PIPE, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12228), 1, + anon_sym_or, + ACTIONS(12230), 1, + anon_sym_and, + ACTIONS(12232), 1, + anon_sym_bitor, + ACTIONS(12234), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12218), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(12220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11047), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544413,201 +619790,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [151995] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10337), 1, + anon_sym_EQ, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12210), 1, + anon_sym_AMP_AMP, + ACTIONS(12212), 1, + anon_sym_PIPE, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, anon_sym_LT_EQ_GT, + ACTIONS(12228), 1, + anon_sym_or, + ACTIONS(12230), 1, + anon_sym_and, + ACTIONS(12232), 1, anon_sym_bitor, + ACTIONS(12234), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12236), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, 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, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - 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_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(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, - 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, - [105615] = 3, + ACTIONS(12204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10339), 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, + [152105] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -544620,18 +619917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9002), 35, + ACTIONS(10068), 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_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544650,17 +619944,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [152181] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [105676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8893), 18, + ACTIONS(10066), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544678,18 +619981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8895), 35, + ACTIONS(10068), 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_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544708,59 +620008,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_requires, - [105737] = 10, + [152255] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12210), 1, + anon_sym_AMP_AMP, + ACTIONS(12212), 1, + anon_sym_PIPE, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12230), 1, + anon_sym_and, + ACTIONS(12232), 1, + anon_sym_bitor, + ACTIONS(12234), 1, + anon_sym_bitand, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10066), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9673), 17, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 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), 27, + ACTIONS(10068), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544775,57 +620086,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [105812] = 10, + [152357] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12212), 1, + anon_sym_PIPE, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12232), 1, + anon_sym_bitor, + ACTIONS(12234), 1, + anon_sym_bitand, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9677), 17, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(12214), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(12224), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(10066), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - ACTIONS(9679), 27, + ACTIONS(12206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 19, 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544840,50 +620162,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [105887] = 6, + [152455] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - STATE(5895), 2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12234), 1, + anon_sym_bitand, + STATE(4188), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 20, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 4, + anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9493), 29, + ACTIONS(10068), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544891,54 +620228,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + [152549] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12234), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [105954] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8901), 18, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8903), 35, + ACTIONS(10068), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544953,50 +620308,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + [152641] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [106015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8885), 20, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8887), 33, + ACTIONS(10068), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545004,57 +620371,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, + [152729] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [106076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8909), 20, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12220), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8911), 33, + ACTIONS(10068), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545062,259 +620440,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [152815] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [106137] = 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(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, - 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, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10066), 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(3153), 30, + ACTIONS(10068), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [152897] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [106424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8942), 18, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -545327,18 +620557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8944), 35, + ACTIONS(10068), 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_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545357,188 +620584,55 @@ 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, - [106485] = 3, + [152975] = 13, 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, - 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, + ACTIONS(9662), 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(10050), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, 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, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 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(8923), 33, + ACTIONS(10068), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545546,6 +620640,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, @@ -545556,18 +620651,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [153055] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [106720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8946), 20, + ACTIONS(10113), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -545577,26 +620680,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(8948), 33, + ACTIONS(10115), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545604,6 +620704,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, @@ -545614,164 +620715,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - 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, + [153129] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10485), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, + ACTIONS(11053), 1, + anon_sym_EQ, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12208), 1, anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, + ACTIONS(12210), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, + ACTIONS(12212), 1, anon_sym_PIPE, - ACTIONS(11233), 1, + ACTIONS(12216), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(12222), 1, anon_sym_GT_EQ, - ACTIONS(11243), 1, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12228), 1, anon_sym_or, - ACTIONS(11245), 1, + ACTIONS(12230), 1, anon_sym_and, - ACTIONS(11247), 1, + ACTIONS(12232), 1, anon_sym_bitor, - ACTIONS(11249), 1, + ACTIONS(12234), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(4188), 1, sym_argument_list, - STATE(5664), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10070), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(12204), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(12214), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, + ACTIONS(12224), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(12206), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(12218), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(12220), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 18, + ACTIONS(11055), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545786,515 +620795,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [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, - 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, - [107114] = 29, - 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(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, - 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, - [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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - 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, + [153235] = 28, 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(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, - 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, - [107566] = 29, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11057), 1, + anon_sym_EQ, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12210), 1, + anon_sym_AMP_AMP, + ACTIONS(12212), 1, + anon_sym_PIPE, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12228), 1, + anon_sym_or, + ACTIONS(12230), 1, + anon_sym_and, + ACTIONS(12232), 1, + anon_sym_bitor, + ACTIONS(12234), 1, + anon_sym_bitand, + ACTIONS(12236), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11059), 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, + [153345] = 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, - 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(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(3775), 1, - sym_type_specifier, - 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, - [107679] = 3, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(11061), 1, + anon_sym_EQ, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12210), 1, + anon_sym_AMP_AMP, + ACTIONS(12212), 1, + anon_sym_PIPE, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12228), 1, + anon_sym_or, + ACTIONS(12230), 1, + anon_sym_and, + ACTIONS(12232), 1, + anon_sym_bitor, + ACTIONS(12234), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11063), 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, + [153451] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(11049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11065), 1, + anon_sym_EQ, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12208), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12210), 1, + anon_sym_AMP_AMP, + ACTIONS(12212), 1, + anon_sym_PIPE, + ACTIONS(12216), 1, + anon_sym_AMP, + ACTIONS(12222), 1, + anon_sym_GT_EQ, + ACTIONS(12226), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12228), 1, + anon_sym_or, + ACTIONS(12230), 1, + anon_sym_and, + ACTIONS(12232), 1, + anon_sym_bitor, + ACTIONS(12234), 1, + anon_sym_bitand, + ACTIONS(12236), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12204), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12214), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12224), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12206), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12218), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12220), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11067), 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, + [153561] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 20, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10113), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -546314,16 +621078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(7791), 33, + ACTIONS(10115), 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, @@ -546341,18 +621102,22 @@ 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, - [107740] = 3, + [153635] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 20, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(12134), 1, + anon_sym_LPAREN2, + ACTIONS(12136), 1, + anon_sym_LBRACK, + STATE(6385), 1, + sym_new_declarator, + STATE(6786), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9697), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -546362,25 +621127,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - 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(9699), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [153705] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10908), 1, + anon_sym___attribute__, + ACTIONS(10910), 1, + anon_sym___attribute, + STATE(6639), 1, + sym_attribute_specifier, + ACTIONS(7688), 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(3161), 33, + anon_sym_DASH_GT, + ACTIONS(7690), 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, @@ -546389,95 +621210,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [107801] = 29, + anon_sym_DASH_GT_STAR, + [153771] = 25, 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - STATE(3497), 1, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(2859), 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, + STATE(3495), 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, + STATE(8989), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(9612), 1, + sym__declarator, + STATE(13027), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5973), 2, + STATE(13053), 5, sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -546491,129 +621304,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107914] = 29, + [153875] = 3, 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, + ACTIONS(9707), 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(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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9709), 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, + [153935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(9711), 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(9713), 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, - STATE(5746), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 20, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [153995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9724), 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(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, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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, + [154055] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11393), 1, + anon_sym_DOT_STAR, + ACTIONS(11395), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12006), 1, + anon_sym_COMMA, + ACTIONS(12010), 1, anon_sym_DASH, + ACTIONS(12012), 1, anon_sym_PLUS, + ACTIONS(12014), 1, anon_sym_STAR, + ACTIONS(12016), 1, anon_sym_SLASH, + ACTIONS(12018), 1, anon_sym_PERCENT, + ACTIONS(12020), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12022), 1, + anon_sym_AMP_AMP, + ACTIONS(12024), 1, anon_sym_PIPE, + ACTIONS(12026), 1, anon_sym_CARET, + ACTIONS(12028), 1, anon_sym_AMP, + ACTIONS(12030), 1, + anon_sym_EQ_EQ, + ACTIONS(12032), 1, + anon_sym_BANG_EQ, + ACTIONS(12034), 1, anon_sym_GT, + ACTIONS(12036), 1, anon_sym_GT_EQ, + ACTIONS(12038), 1, anon_sym_LT_EQ, + ACTIONS(12040), 1, anon_sym_LT, + ACTIONS(12042), 1, anon_sym_LT_LT, + ACTIONS(12044), 1, anon_sym_GT_GT, + ACTIONS(12046), 1, anon_sym_EQ, + ACTIONS(12048), 1, + anon_sym_QMARK, + ACTIONS(12050), 1, + anon_sym_STAR_EQ, + ACTIONS(12052), 1, + anon_sym_SLASH_EQ, + ACTIONS(12054), 1, + anon_sym_PERCENT_EQ, + ACTIONS(12056), 1, + anon_sym_PLUS_EQ, + ACTIONS(12058), 1, + anon_sym_DASH_EQ, + ACTIONS(12060), 1, + anon_sym_LT_LT_EQ, + ACTIONS(12062), 1, anon_sym_GT_GT_EQ, + ACTIONS(12064), 1, + anon_sym_AMP_EQ, + ACTIONS(12066), 1, + anon_sym_CARET_EQ, + ACTIONS(12068), 1, + anon_sym_PIPE_EQ, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12072), 1, anon_sym_or, + ACTIONS(12074), 1, anon_sym_and, + ACTIONS(12076), 1, + anon_sym_bitor, + ACTIONS(12078), 1, anon_sym_xor, + ACTIONS(12080), 1, + anon_sym_bitand, + ACTIONS(12082), 1, + anon_sym_not_eq, + ACTIONS(12238), 1, + anon_sym_RPAREN, + STATE(1791), 1, + sym__binary_fold_operator, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + STATE(11874), 1, + sym__fold_operator, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [154211] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(9433), 29, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10070), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10182), 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(10184), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546621,6 +621633,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, @@ -546631,586 +621644,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [154285] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11942), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, + ACTIONS(11926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10066), 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(10068), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_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, - [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, + [154361] = 10, 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(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10066), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10068), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_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, + [154435] = 25, 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11095), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(11097), 1, + ACTIONS(10703), 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, + ACTIONS(10757), 1, + anon_sym_STAR, + ACTIONS(10759), 1, + anon_sym_AMP_AMP, + ACTIONS(10761), 1, + anon_sym_AMP, + STATE(2859), 1, sym_alignas_qualifier, - STATE(8702), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8975), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(9934), 1, + sym__declarator, + STATE(11972), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3053), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(13053), 5, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -547224,329 +621852,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [108885] = 29, + [154539] = 28, 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, + ACTIONS(11057), 1, + anon_sym_EQ, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11956), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11958), 1, + anon_sym_AMP_AMP, + ACTIONS(11960), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11978), 1, + anon_sym_or, + ACTIONS(11980), 1, + anon_sym_and, + ACTIONS(11982), 1, + anon_sym_bitor, + ACTIONS(11984), 1, + anon_sym_bitand, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(12120), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12124), 1, + anon_sym_QMARK, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11059), 15, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [154649] = 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, + ACTIONS(9728), 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(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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9730), 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, + [154709] = 25, 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, + 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(5160), 1, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11109), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(11111), 1, + ACTIONS(10711), 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, + STATE(2859), 1, sym_alignas_qualifier, - STATE(3711), 1, + STATE(3495), 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, + STATE(8988), 1, sym__scope_resolution, - ACTIONS(71), 2, + STATE(9224), 1, + sym_splice_specifier, + STATE(9931), 1, + sym__declarator, + STATE(11956), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(3967), 2, + STATE(13053), 5, 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, - [109224] = 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(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_type_specifier, 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, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -547560,110 +622070,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109337] = 29, + [154813] = 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(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(2101), 1, - sym_type_specifier, - STATE(2104), 1, - sym_splice_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(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, - [109450] = 10, + ACTIONS(9603), 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(9601), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [154873] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, sym_argument_list, - STATE(5664), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + 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_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(10180), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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_GT2, + [154945] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(12134), 1, + anon_sym_LPAREN2, + ACTIONS(12136), 1, + anon_sym_LBRACK, + STATE(6288), 1, + sym_new_declarator, + STATE(6813), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9672), 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(9715), 17, + ACTIONS(9674), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [155015] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11447), 1, + anon_sym_LPAREN2, + ACTIONS(11449), 1, + anon_sym_LBRACK, + STATE(2085), 1, + sym_parameter_list, + STATE(5727), 1, + sym__function_declarator_seq, + ACTIONS(9804), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -547681,15 +622281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9717), 27, + anon_sym_DOT, + ACTIONS(9806), 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, @@ -547708,157 +622309,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [109525] = 29, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [155083] = 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(7472), 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(7474), 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, + [155143] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, + ACTIONS(11938), 1, anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12092), 1, anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, + ACTIONS(12094), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, + ACTIONS(12096), 1, anon_sym_PIPE, - ACTIONS(11233), 1, - anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11243), 1, + ACTIONS(12100), 1, anon_sym_or, - ACTIONS(11245), 1, + ACTIONS(12102), 1, anon_sym_and, - ACTIONS(11247), 1, + ACTIONS(12104), 1, anon_sym_bitor, - ACTIONS(11249), 1, - anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(6528), 1, sym_argument_list, - STATE(5664), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(11053), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11221), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(12098), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(11926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(11930), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(11932), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 18, + ACTIONS(11055), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -547866,87 +622442,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_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, - [109745] = 6, + anon_sym_GT2, + [155247] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10647), 1, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12094), 1, + anon_sym_AMP_AMP, + ACTIONS(12096), 1, + anon_sym_PIPE, + ACTIONS(12102), 1, + anon_sym_and, + ACTIONS(12104), 1, + anon_sym_bitor, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12098), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10066), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(11926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4318), 1, - sym_template_argument_list, - ACTIONS(5657), 12, + ACTIONS(10068), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_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, + [155347] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11053), 1, + anon_sym_EQ, + ACTIONS(11631), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(11956), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11958), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7371), 38, + ACTIONS(11960), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 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_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [109812] = 7, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11978), 1, + anon_sym_or, + ACTIONS(11980), 1, + anon_sym_and, + ACTIONS(11982), 1, + anon_sym_bitor, + ACTIONS(11984), 1, + anon_sym_bitand, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11055), 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, + [155453] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, + ACTIONS(11447), 1, anon_sym_LPAREN2, - ACTIONS(10570), 1, + ACTIONS(11449), 1, anon_sym_LBRACK, - STATE(1974), 1, + STATE(2085), 1, sym_parameter_list, - STATE(4999), 1, + STATE(5727), 1, sym__function_declarator_seq, - ACTIONS(10210), 19, + ACTIONS(9788), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -547965,16 +622636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10208), 30, + ACTIONS(9790), 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, @@ -547996,24 +622666,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, - [109881] = 9, + anon_sym_DASH_GT, + [155521] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(12134), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(12136), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(6298), 1, + sym_new_declarator, + STATE(6810), 2, sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9681), 17, + sym_initializer_list, + ACTIONS(9658), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548028,10 +622696,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9683), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9660), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -548051,20 +622718,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109954] = 3, + [155591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 20, + ACTIONS(11633), 1, + anon_sym_LBRACK, + STATE(6126), 1, + sym_new_declarator, + ACTIONS(10004), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548074,18 +622746,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(3153), 33, + ACTIONS(10006), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548093,7 +622763,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_LBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -548101,6 +622773,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, @@ -548115,76 +622788,146 @@ 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, - [110015] = 26, + [155655] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, + ACTIONS(11938), 1, anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12092), 1, anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, + ACTIONS(12094), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, + ACTIONS(12096), 1, anon_sym_PIPE, - ACTIONS(11233), 1, - anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11243), 1, + ACTIONS(12100), 1, anon_sym_or, - ACTIONS(11245), 1, + ACTIONS(12102), 1, anon_sym_and, - ACTIONS(11247), 1, + ACTIONS(12104), 1, anon_sym_bitor, - ACTIONS(11249), 1, - anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(6528), 1, sym_argument_list, - STATE(5664), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(11075), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11942), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11221), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(12098), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, + ACTIONS(11926), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11930), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11932), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11077), 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, + [155759] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11928), 1, + anon_sym_AMP, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11938), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11940), 1, + anon_sym_bitand, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12096), 1, + anon_sym_PIPE, + ACTIONS(12104), 1, + anon_sym_bitor, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11924), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11934), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(11942), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12098), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11926), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(11930), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(10066), 4, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(11932), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 18, + ACTIONS(10068), 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, @@ -548192,25 +622935,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_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, - [110122] = 6, + anon_sym_GT2, + [155855] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(11065), 1, + anon_sym_EQ, + ACTIONS(11631), 1, anon_sym_LPAREN2, - STATE(5777), 2, + ACTIONS(11956), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11958), 1, + anon_sym_AMP_AMP, + ACTIONS(11960), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, + anon_sym_AMP, + ACTIONS(11970), 1, + anon_sym_GT_EQ, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11976), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11978), 1, + anon_sym_or, + ACTIONS(11980), 1, + anon_sym_and, + ACTIONS(11982), 1, + anon_sym_bitor, + ACTIONS(11984), 1, + anon_sym_bitand, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(12120), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12124), 1, + anon_sym_QMARK, + STATE(6609), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 20, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11952), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11962), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11972), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11986), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11966), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11968), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11067), 15, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [155965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10367), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548220,24 +623037,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(9379), 29, + anon_sym_DASH_GT, + ACTIONS(10369), 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, @@ -548246,6 +623065,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, @@ -548259,12 +623079,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, - [110189] = 3, + anon_sym_DASH_GT_STAR, + [156024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 20, + ACTIONS(12240), 1, + anon_sym_LT, + STATE(6469), 1, + sym_template_argument_list, + ACTIONS(10062), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548276,7 +623099,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, @@ -548285,7 +623107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9013), 33, + ACTIONS(10064), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548315,18 +623137,68 @@ 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, - [110250] = 5, + [156087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11293), 1, + ACTIONS(6822), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6824), 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, - STATE(4045), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + 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(6817), 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, + [156148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8854), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548337,15 +623209,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(9652), 33, + ACTIONS(8849), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548354,9 +623226,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -548379,10 +623251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [110315] = 3, + [156207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 20, + ACTIONS(9943), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548392,25 +623264,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(9298), 33, + anon_sym_DASH_GT, + ACTIONS(9945), 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, @@ -548419,97 +623289,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [110376] = 30, + anon_sym_DASH_GT_STAR, + [156266] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6397), 1, anon_sym_LBRACK, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(10348), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10934), 1, anon_sym_AMP, - ACTIONS(10363), 1, + ACTIONS(10947), 1, anon_sym_const, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, + ACTIONS(11435), 1, anon_sym_DASH_GT, - ACTIONS(11298), 1, + ACTIONS(11487), 1, anon_sym_requires, - STATE(4333), 1, + STATE(7372), 1, sym_alignas_qualifier, - STATE(7533), 1, + STATE(8552), 1, sym__function_attributes_start, - STATE(7662), 1, + STATE(8617), 1, sym_ref_qualifier, - STATE(8683), 1, + STATE(9970), 1, sym__function_attributes_end, - STATE(8688), 1, + STATE(10101), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6399), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10365), 2, + ACTIONS(10949), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(6144), 2, + STATE(6837), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6360), 2, + STATE(7162), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8522), 2, + STATE(9650), 2, sym__function_postfix, sym_requires_clause, - STATE(7833), 3, + STATE(8974), 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, + ACTIONS(10936), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -548522,68 +623390,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [110491] = 3, + [156379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10389), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8911), 30, + anon_sym_DASH_GT, + ACTIONS(10391), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, + anon_sym_DASH_GT_STAR, + [156438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 20, + ACTIONS(10143), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548593,18 +623459,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(8895), 33, + ACTIONS(10145), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548612,7 +623476,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_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -548620,6 +623487,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, @@ -548634,14 +623502,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, - [110613] = 3, + [156497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 20, + ACTIONS(10210), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548651,25 +623515,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(8903), 33, + anon_sym_DASH_GT, + ACTIONS(10212), 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, @@ -548678,6 +623543,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, @@ -548691,22 +623557,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_GT2, - anon_sym_requires, - [110674] = 6, + anon_sym_DASH_GT_STAR, + [156556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - STATE(5796), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 20, + ACTIONS(9845), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548716,24 +623571,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(9383), 29, + anon_sym_DASH_GT, + ACTIONS(9847), 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, @@ -548742,110 +623596,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, + [156615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 20, + ACTIONS(10329), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548855,25 +623627,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(9310), 33, + anon_sym_DASH_GT, + ACTIONS(10331), 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, @@ -548882,6 +623655,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, @@ -548895,15 +623669,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_GT2, - anon_sym_requires, - [110917] = 3, + anon_sym_DASH_GT_STAR, + [156674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 20, + ACTIONS(7491), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548924,7 +623694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9318), 33, + ACTIONS(7493), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548932,6 +623702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -548954,253 +623725,69 @@ 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, - [110978] = 9, + [156733] = 3, 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, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - ACTIONS(7092), 7, + ACTIONS(10349), 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(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(10351), 32, anon_sym_DOT_DOT_DOT, - anon_sym_PERCENT, + anon_sym_COMMA, + 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, 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_DASH_GT_STAR, + [156792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - STATE(5758), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 18, + ACTIONS(12243), 1, + sym_literal_suffix, + ACTIONS(5671), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549215,13 +623802,20 @@ 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(9433), 31, + ACTIONS(5663), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -549240,21 +623834,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, - [111344] = 3, + [156853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 20, + ACTIONS(10117), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549264,25 +623852,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(8944), 33, + anon_sym_DASH_GT, + ACTIONS(10119), 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, @@ -549291,6 +623880,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, @@ -549304,19 +623894,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_STAR, + [156912] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12245), 1, + sym_identifier, + STATE(6273), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7223), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7229), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8746), 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(8744), 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [111405] = 5, + [156979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11273), 1, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, + anon_sym_LPAREN2, + STATE(6670), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9849), 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, - STATE(4811), 1, - sym_template_argument_list, - ACTIONS(9650), 19, + 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(9851), 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, + [157044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3178), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549327,16 +624028,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9652), 32, + ACTIONS(3176), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -549346,7 +624044,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, @@ -549358,25 +624056,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, - [111470] = 5, + [157103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10689), 1, - anon_sym_LBRACK, - STATE(5470), 1, - sym_new_declarator, - ACTIONS(9535), 19, + ACTIONS(8854), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549386,27 +624083,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9537), 32, + ACTIONS(8849), 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_COLON_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -549414,7 +624111,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, @@ -549428,76 +624124,44 @@ 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, - [111535] = 28, + anon_sym_DASH_GT, + anon_sym_GT2, + [157162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 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, + ACTIONS(12247), 2, 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, + ACTIONS(12249), 2, + anon_sym_AMP_AMP, 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, + ACTIONS(9737), 16, 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(9828), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9739), 31, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -549508,160 +624172,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_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, + 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, + [157225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11281), 1, - anon_sym_AMP_AMP, - ACTIONS(11285), 1, - anon_sym_and, - ACTIONS(9322), 17, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(10062), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549677,13 +624205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, + anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9324), 34, + ACTIONS(10064), 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, @@ -549711,15 +624241,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, - [111885] = 4, + [157286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 19, + ACTIONS(9816), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549733,24 +624258,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(9699), 33, + anon_sym_DASH_GT, + ACTIONS(9818), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -549762,86 +624283,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, - [111948] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [157345] = 3, 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_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(10363), 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(10491), 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(10365), 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, @@ -549855,19 +624345,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, - [112059] = 7, + [157404] = 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(10190), 19, + ACTIONS(10416), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549887,15 +624376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10188), 30, + ACTIONS(10418), 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, @@ -549918,18 +624409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112128] = 7, + [157463] = 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(10306), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549949,15 +624432,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10192), 30, + ACTIONS(10308), 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, @@ -549980,76 +624465,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112197] = 3, + [157522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 23, - aux_sym_preproc_elif_token1, + ACTIONS(12251), 1, + anon_sym_LT, + STATE(6613), 1, + sym_template_argument_list, + ACTIONS(10062), 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(9002), 30, + ACTIONS(10064), 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_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [112258] = 7, + [157585] = 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(9418), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550063,18 +624540,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(10184), 33, + ACTIONS(9420), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550086,32 +624568,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, - [112327] = 7, + anon_sym_DASH_GT, + [157644] = 5, 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(12254), 1, + anon_sym_LT, + STATE(5802), 1, + sym_template_argument_list, + ACTIONS(10094), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550121,22 +624596,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(10188), 33, + ACTIONS(10096), 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, @@ -550144,36 +624622,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, - [112396] = 7, + anon_sym_DASH_GT, + anon_sym_GT2, + [157707] = 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(10194), 16, + ACTIONS(10341), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550188,17 +624655,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(10192), 33, + ACTIONS(10343), 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, @@ -550210,31 +624682,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, - [112465] = 6, + [157766] = 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(9422), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550248,21 +624710,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(9379), 31, + ACTIONS(9424), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550285,18 +624749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112532] = 7, + [157825] = 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(10174), 16, + ACTIONS(9861), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550313,15 +624769,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10172), 33, + ACTIONS(9863), 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, @@ -550347,10 +624805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [112601] = 3, + [157884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 20, + ACTIONS(7838), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550371,7 +624829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8998), 33, + ACTIONS(7840), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550379,6 +624837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -550401,14 +624860,71 @@ 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, - [112662] = 3, + [157943] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + STATE(3290), 1, + sym_template_argument_list, + STATE(6641), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11998), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7129), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7131), 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, + [158010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 20, + ACTIONS(7359), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550429,7 +624945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9002), 33, + ACTIONS(7361), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550437,6 +624953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -550459,22 +624976,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_GT2, - anon_sym_requires, - [112723] = 7, + [158069] = 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(10090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550489,17 +624995,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(10196), 33, + ACTIONS(10092), 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, @@ -550511,32 +625022,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, + [158128] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10842), 1, + anon_sym_STAR, + ACTIONS(10844), 1, + anon_sym_AMP_AMP, + ACTIONS(10846), 1, + anon_sym_AMP, + ACTIONS(10848), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5724), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9526), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10094), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5970), 3, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [112792] = 7, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [158231] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, anon_sym_LBRACK, - STATE(1991), 1, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10842), 1, + anon_sym_STAR, + ACTIONS(10844), 1, + anon_sym_AMP_AMP, + ACTIONS(10846), 1, + anon_sym_AMP, + ACTIONS(10848), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5724), 1, sym_parameter_list, - STATE(5586), 1, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9526), 1, + sym__scope_resolution, + STATE(9576), 1, sym__function_declarator_seq, - ACTIONS(10202), 16, + STATE(10096), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6602), 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [158334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9352), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550553,15 +625209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10200), 33, + 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_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550587,18 +625245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [112861] = 7, + [158393] = 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(10090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550613,17 +625263,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(10204), 33, + ACTIONS(10092), 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, @@ -550635,32 +625290,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, - [112930] = 7, + [158452] = 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(10210), 16, + ACTIONS(10258), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550675,17 +625319,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(10208), 33, + ACTIONS(10260), 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, @@ -550697,24 +625346,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - 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, + [158511] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 20, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(8920), 1, + anon_sym_COLON_COLON, + ACTIONS(10850), 1, + anon_sym_STAR, + ACTIONS(10852), 1, + anon_sym_AMP_AMP, + ACTIONS(10854), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5388), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9640), 1, + sym__scope_resolution, + STATE(10072), 1, + sym__abstract_declarator, + ACTIONS(5970), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [158614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7838), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550724,18 +625448,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(9391), 33, + ACTIONS(7840), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550743,7 +625465,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_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550751,6 +625476,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, @@ -550765,14 +625491,88 @@ 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, + [158673] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(8920), 1, + anon_sym_COLON_COLON, + ACTIONS(10850), 1, + anon_sym_STAR, + ACTIONS(10852), 1, + anon_sym_AMP_AMP, + ACTIONS(10854), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5388), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9640), 1, + sym__scope_resolution, + STATE(10073), 1, + sym__abstract_declarator, + ACTIONS(6602), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - [113060] = 3, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [158776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 20, + ACTIONS(10359), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550782,25 +625582,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), 33, + anon_sym_DASH_GT, + ACTIONS(10361), 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, @@ -550809,6 +625610,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, @@ -550822,73 +625624,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [113121] = 3, + anon_sym_DASH_GT_STAR, + [158835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 23, - aux_sym_preproc_elif_token1, + ACTIONS(7359), 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(8952), 30, + ACTIONS(7361), 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_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, + [158894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 20, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(5671), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550898,18 +625696,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(9363), 33, + ACTIONS(5663), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550917,7 +625713,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, @@ -550925,6 +625723,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, @@ -550939,20 +625738,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, - [113243] = 5, + [158955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6777), 2, - anon_sym_final, - anon_sym_override, - STATE(5073), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9139), 16, + ACTIONS(9865), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550969,7 +625758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9141), 33, + ACTIONS(9867), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -551001,12 +625790,18 @@ 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, - [113308] = 3, + [159014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 20, + ACTIONS(12257), 1, + anon_sym_LT, + STATE(3186), 1, + sym_template_argument_list, + ACTIONS(10094), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551018,7 +625813,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, @@ -551027,7 +625821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9367), 33, + ACTIONS(10096), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -551057,14 +625851,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_GT2, - anon_sym_requires, - [113369] = 3, + [159077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 20, + ACTIONS(10218), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551074,25 +625865,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(9371), 33, + anon_sym_DASH_GT, + ACTIONS(10220), 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, @@ -551101,6 +625893,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, @@ -551114,15 +625907,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_GT2, - anon_sym_requires, - [113430] = 3, + anon_sym_DASH_GT_STAR, + [159136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 20, + ACTIONS(11198), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551132,18 +625921,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_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(9375), 33, + sym_literal_suffix, + ACTIONS(11196), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -551151,7 +625945,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,28 +625955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [113491] = 3, + [159195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 20, + ACTIONS(9397), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551195,13 +625982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8994), 33, + ACTIONS(9399), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -551209,7 +625997,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, @@ -551231,59 +626019,41 @@ 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, - [113552] = 13, + [159254] = 3, 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(11309), 2, + ACTIONS(10206), 19, 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), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10208), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -551302,83 +626072,260 @@ 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_STAR, + [159313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9869), 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(9871), 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_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9375), 29, + anon_sym_DASH_GT_STAR, + [159372] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10842), 1, + anon_sym_STAR, + ACTIONS(10844), 1, + anon_sym_AMP_AMP, + ACTIONS(10846), 1, + anon_sym_AMP, + ACTIONS(10848), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5724), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9526), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10065), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6176), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6604), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(6606), 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [159475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7747), 20, + 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_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_AMP, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7749), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, - [113692] = 10, + anon_sym_GT2, + [159534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(7755), 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(7757), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11319), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9638), 19, + anon_sym_GT2, + [159593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10186), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551388,23 +626335,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9640), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10188), 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 +626363,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,73 +626374,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [113766] = 25, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [159652] = 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10842), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10844), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10846), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10848), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(5724), 1, + sym_parameter_list, + STATE(7255), 1, sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8804), 1, - sym__declarator, - STATE(10743), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, + STATE(9526), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10075), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7054), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + ACTIONS(6616), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6618), 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -551502,26 +626456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [113870] = 10, + [159755] = 3, 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, + ACTIONS(10194), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551539,15 +626477,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9640), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10196), 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, @@ -551566,296 +626508,156 @@ 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, + [159814] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12260), 1, + anon_sym_LT, + STATE(3199), 1, + sym_template_argument_list, + ACTIONS(10094), 17, 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, + ACTIONS(10096), 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, - 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, + [159877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 17, + ACTIONS(9888), 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_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_literal_suffix, - ACTIONS(8667), 35, + anon_sym_DASH_GT, + ACTIONS(9890), 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_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, - anon_sym_COLON_RBRACK, - [114160] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [159936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9925), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9417), 29, + anon_sym_DASH_GT, + ACTIONS(9927), 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_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, - [114220] = 30, - 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(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, - 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, @@ -551866,75 +626668,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, - [114334] = 25, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + 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, + [159995] = 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10842), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10844), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10846), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10848), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(5724), 1, + sym_parameter_list, + STATE(7255), 1, sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8794), 1, - sym__declarator, - STATE(10743), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, + STATE(9526), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10077), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(6256), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + ACTIONS(6608), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6610), 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -551948,16 +626760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [114438] = 6, + [160098] = 3, 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(7743), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551968,6 +626774,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, @@ -551975,7 +626782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9497), 32, + ACTIONS(7745), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -551984,6 +626791,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, @@ -552008,16 +626816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114504] = 6, + [160157] = 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(7751), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552028,6 +626830,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, @@ -552035,7 +626838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9580), 32, + ACTIONS(7753), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -552044,6 +626847,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, @@ -552068,135 +626872,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114570] = 3, + [160216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 23, - aux_sym_preproc_elif_token1, + ACTIONS(7911), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_EQ, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9391), 29, + anon_sym_DASH_GT, + ACTIONS(7913), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - 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, + anon_sym_DASH_GT_STAR, + [160275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 19, + ACTIONS(10174), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552216,7 +626951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5638), 32, + ACTIONS(10176), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -552249,132 +626984,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114770] = 3, + [160334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 23, - aux_sym_preproc_elif_token1, + 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___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(9421), 29, + anon_sym_DASH_GT, + ACTIONS(10266), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [114830] = 3, + anon_sym_DASH_GT_STAR, + [160393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10222), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9425), 29, + anon_sym_DASH_GT, + ACTIONS(10224), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [114890] = 7, + anon_sym_DASH_GT_STAR, + [160452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - ACTIONS(10713), 1, + ACTIONS(12270), 1, anon_sym_LBRACK, - STATE(1978), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10198), 18, + ACTIONS(12267), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(12265), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(12263), 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + [160515] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7759), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552393,14 +627176,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10196), 30, + ACTIONS(7761), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -552424,14 +627210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114958] = 5, + [160574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11429), 1, - anon_sym_LT, - STATE(2003), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(10268), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552442,6 +627224,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, @@ -552450,7 +627233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9652), 32, + ACTIONS(10270), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -552483,18 +627266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [115022] = 7, + [160633] = 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(10202), 18, + ACTIONS(7767), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552513,14 +627288,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10200), 30, + ACTIONS(7769), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -552544,16 +627322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115090] = 6, + [160692] = 3, 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, + ACTIONS(7775), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552563,25 +627335,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(5638), 31, + ACTIONS(7777), 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_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552589,7 +627363,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, @@ -552604,12 +627377,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115156] = 4, + anon_sym_GT2, + [160751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11432), 1, - sym_literal_suffix, - ACTIONS(5645), 25, + ACTIONS(7786), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552624,28 +627396,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5638), 26, + ACTIONS(7788), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552657,83 +627423,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115218] = 6, + anon_sym_DASH_GT, + [160810] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, anon_sym_LPAREN2, - ACTIONS(9239), 1, - anon_sym_LBRACK, - ACTIONS(5645), 18, + STATE(6645), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9766), 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(5638), 31, + sym_identifier, + ACTIONS(9768), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, + anon_sym_COLON_RBRACK, + [160875] = 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(10190), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552752,15 +627515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10184), 30, + anon_sym_DASH_GT, + ACTIONS(10192), 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, @@ -552782,11 +627548,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, - [115352] = 3, + anon_sym_DASH_GT_STAR, + [160934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 19, + ACTIONS(7806), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552800,13 +627566,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(9890), 33, + ACTIONS(7808), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -552815,9 +627580,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552840,21 +627605,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115412] = 8, + [160993] = 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(9455), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552864,22 +627618,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(9250), 30, + ACTIONS(9457), 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, @@ -552887,106 +627646,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115482] = 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(10246), 1, - anon_sym_STAR, - ACTIONS(10248), 1, - anon_sym_AMP_AMP, - ACTIONS(10250), 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(8816), 1, - sym__declarator, - STATE(10837), 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, - [115586] = 4, + anon_sym_DASH_GT, + anon_sym_GT2, + [161052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11438), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 20, + ACTIONS(9414), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552996,27 +627674,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(9699), 31, + ACTIONS(9416), 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, @@ -553024,7 +627702,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, @@ -553038,366 +627715,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [115648] = 51, + anon_sym_DASH_GT, + anon_sym_GT2, + [161111] = 4, 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(12273), 1, + sym_literal_suffix, + ACTIONS(5663), 24, 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_LPAREN2, 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_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(11440), 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, - [115804] = 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(8541), 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, - [115908] = 27, - 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_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_GT2, + ACTIONS(5671), 26, 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(10491), 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_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_GT2, - [116016] = 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(10246), 1, - anon_sym_STAR, - ACTIONS(10248), 1, - anon_sym_AMP_AMP, - ACTIONS(10250), 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(8789), 1, - sym__declarator, - STATE(10837), 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, - [116120] = 8, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [161172] = 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(5611), 1, - sym_new_declarator, - STATE(6042), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 16, + ACTIONS(9935), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553414,15 +627794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9258), 30, + ACTIONS(9937), 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, @@ -553444,73 +627826,104 @@ 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, - [116190] = 26, + [161231] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_EQ, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(12278), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, + STATE(3656), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12275), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(9487), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7361), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(11484), 1, - anon_sym_PIPE, - ACTIONS(11488), 1, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 34, 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___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_decltype, + anon_sym_template, + anon_sym_operator, + [161298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9401), 21, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 17, + 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(9403), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + 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, @@ -553518,17 +627931,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, - [116296] = 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_GT2, + [161357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 23, + ACTIONS(11994), 1, + anon_sym_LBRACK, + STATE(6488), 1, + sym_new_declarator, + ACTIONS(10004), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -553549,10 +627974,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(8915), 29, + ACTIONS(10006), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -553573,8 +627995,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -553582,23 +628004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [116356] = 9, + [161420] = 3, 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(7779), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553608,23 +628017,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9683), 28, + anon_sym_DOT, + ACTIONS(7781), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553632,7 +628045,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, @@ -553645,26 +628057,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [116428] = 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(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9715), 19, + anon_sym_GT2, + [161479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7850), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553674,23 +628073,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9717), 24, + anon_sym_DOT, + ACTIONS(7852), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553698,6 +628101,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 +628112,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [116502] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10435), 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, - 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, + [161538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9703), 16, 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_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_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9705), 35, 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553786,100 +628158,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, - [116608] = 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(8794), 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, - [116712] = 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [161597] = 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(10206), 18, + ACTIONS(10147), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553898,15 +628194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10204), 30, + anon_sym_DASH_GT, + ACTIONS(10149), 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, @@ -553928,118 +628227,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, - [116780] = 51, + anon_sym_DASH_GT_STAR, + [161656] = 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(7771), 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_EQ, - ACTIONS(11379), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7773), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_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(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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [161715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9711), 19, + ACTIONS(9703), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554054,12 +628302,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(9713), 32, + ACTIONS(9705), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554081,25 +628326,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, - [116998] = 5, + [161774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11510), 1, - anon_sym_LT, - STATE(5535), 1, - sym_template_argument_list, - ACTIONS(9711), 18, + ACTIONS(7794), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554109,25 +628353,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(9713), 32, + ACTIONS(7796), 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, @@ -554136,7 +628381,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 +628394,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, + [161833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11513), 1, - anon_sym_LT, - STATE(2998), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(7798), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554168,25 +628409,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(9652), 32, + ACTIONS(7800), 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, @@ -554195,7 +628437,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, @@ -554209,95 +628450,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, - [117126] = 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(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, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [117240] = 3, + [161892] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 20, + ACTIONS(12281), 1, + anon_sym_LT, + STATE(5997), 1, + sym_template_argument_list, + ACTIONS(10094), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554308,27 +628470,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9917), 32, + ACTIONS(10096), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -554350,14 +628509,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, - [117300] = 4, + anon_sym_DASH_GT, + [161955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 20, + ACTIONS(9410), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554372,13 +628528,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6596), 30, + ACTIONS(9412), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -554386,7 +628543,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, @@ -554409,96 +628566,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [117362] = 30, + [162014] = 7, 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, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + STATE(3290), 1, + sym_template_argument_list, + STATE(6735), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11637), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7129), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10354), 1, - anon_sym___attribute__, - ACTIONS(10357), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, 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, - 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_COLON, + anon_sym_DOT, + ACTIONS(7131), 33, + anon_sym_DOT_DOT_DOT, 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, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_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, + [162081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 1, - anon_sym_COLON_COLON, - ACTIONS(9513), 19, + ACTIONS(9418), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554508,27 +628639,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(9515), 32, + ACTIONS(9420), 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, @@ -554536,7 +628667,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, @@ -554550,284 +628680,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [117538] = 27, + anon_sym_DASH_GT, + anon_sym_GT2, + [162140] = 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, - 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(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, + ACTIONS(10404), 19, 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(10479), 14, + 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(10406), 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_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, - 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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - ACTIONS(10807), 1, anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, - anon_sym_COMMA, - ACTIONS(11341), 1, + [162199] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9422), 21, 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_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9424), 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, - 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(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_GT2, + [162258] = 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(10210), 18, + ACTIONS(7802), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554837,24 +628807,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(10208), 30, + ACTIONS(7804), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -554862,176 +628835,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [117974] = 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(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, - 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [162317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5671), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9427), 20, + anon_sym_DASH_GT, + ACTIONS(5663), 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_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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [118156] = 6, + anon_sym_DASH_GT_STAR, + [162376] = 3, 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(7794), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555043,6 +628921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -555051,7 +628930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7097), 30, + ACTIONS(7796), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -555059,6 +628938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -555082,72 +628962,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [118222] = 26, + [162435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 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, - 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, + ACTIONS(7710), 20, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7712), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555155,30 +629003,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, - [118328] = 9, - 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_LT_EQ_GT, + anon_sym_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(9657), 19, + anon_sym_GT2, + [162494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9389), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555193,18 +629036,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9659), 26, + anon_sym_DOT, + ACTIONS(9391), 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, @@ -555224,129 +629071,211 @@ 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, - [118400] = 3, + [162553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 17, + ACTIONS(9356), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + 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_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, + [162612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9336), 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_literal_suffix, - ACTIONS(8752), 35, + anon_sym_DASH_GT, + ACTIONS(9338), 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_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, - anon_sym_COLON_RBRACK, - [118460] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [162671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(7472), 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(11448), 1, + anon_sym_DASH_GT, + ACTIONS(7474), 35, + 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_PIPE, - ACTIONS(11456), 1, - anon_sym_AMP, - ACTIONS(11466), 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_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_xor, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(10538), 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [162730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 17, 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(10540), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7741), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555354,17 +629283,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_GT2, - [118564] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [162789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 20, + ACTIONS(10090), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555378,14 +629315,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(9065), 32, + ACTIONS(10092), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -555395,7 +629331,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, @@ -555418,98 +629354,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [118624] = 30, + [162848] = 7, 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, + ACTIONS(7447), 1, + anon_sym_LBRACE, + ACTIONS(7987), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7444), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7449), 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, - 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(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, anon_sym_DASH_GT, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7588), 1, - sym__function_attributes_start, - STATE(7681), 1, - sym_ref_qualifier, - STATE(8666), 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, - ACTIONS(6481), 3, + ACTIONS(7454), 31, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7916), 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, - [118738] = 5, + 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, + [162915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10902), 1, - anon_sym_LBRACK, - STATE(5674), 1, - sym_new_declarator, - ACTIONS(9535), 18, + ACTIONS(8285), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555524,21 +629432,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(9537), 32, + anon_sym_DASH_GT, + ACTIONS(8287), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555550,106 +629456,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, - [118802] = 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(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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [162974] = 3, 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(7810), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555661,6 +629485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -555669,7 +629494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9497), 30, + ACTIONS(7812), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -555677,6 +629502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -555700,26 +629526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [118972] = 10, + [163033] = 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(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9673), 19, + ACTIONS(10105), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555729,23 +629539,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9675), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10103), 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, @@ -555753,6 +629567,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,27 +629578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [119046] = 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(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9677), 19, + anon_sym_DASH_GT_STAR, + [163092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9426), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555798,18 +629600,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9679), 24, + anon_sym_DOT, + ACTIONS(9428), 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, @@ -555827,419 +629633,183 @@ 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, - [119120] = 51, + [163151] = 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(10333), 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_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10335), 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(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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [119276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7104), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7106), 45, - 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, - 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, - [119336] = 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [163210] = 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(5718), 1, - sym_new_declarator, - STATE(6024), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 20, - aux_sym_preproc_elif_token1, + 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___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(9258), 26, + anon_sym_DASH_GT, + ACTIONS(10200), 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, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, + [163269] = 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(7818), 17, 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___attribute, anon_sym_EQ, - ACTIONS(11379), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7820), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - 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(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, + [163328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 20, + ACTIONS(9271), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556253,14 +629823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9699), 32, + ACTIONS(9273), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -556270,7 +629836,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, @@ -556282,82 +629848,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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, - [119726] = 25, + [163387] = 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(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(10302), 19, 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(10544), 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(10304), 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, @@ -556365,114 +629903,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_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, + anon_sym_LT_EQ_GT, + anon_sym_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, + [163446] = 5, 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(12257), 1, + anon_sym_LT, + STATE(3182), 1, + sym_template_argument_list, + ACTIONS(10094), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556484,7 +629937,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, @@ -556492,13 +629944,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9683), 26, + anon_sym_DOT, + ACTIONS(10096), 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, @@ -556518,72 +629973,45 @@ 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, - [120016] = 25, + [163509] = 5, 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(12260), 1, + anon_sym_LT, + STATE(3200), 1, + sym_template_argument_list, + ACTIONS(10094), 17, 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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10096), 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, @@ -556591,78 +630019,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_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, + [163572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10408), 19, 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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10410), 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, @@ -556670,459 +630075,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - 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, + [163631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9426), 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_LBRACK, anon_sym_EQ, - ACTIONS(11379), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9428), 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, - 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(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_DOT_STAR, + anon_sym_DASH_GT, + [163690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10143), 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(9335), 29, + ACTIONS(10145), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [120648] = 3, + anon_sym_GT2, + [163749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 23, - aux_sym_preproc_elif_token1, + ACTIONS(8898), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9339), 29, + anon_sym_DASH_GT, + ACTIONS(3472), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [120708] = 28, + anon_sym_DASH_GT_STAR, + [163808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 1, + ACTIONS(7771), 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, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(11480), 1, + ACTIONS(7773), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, 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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(11498), 1, + 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, - 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + [163867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7710), 18, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9828), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7712), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -557136,73 +630362,118 @@ static const uint16_t ts_small_parse_table[] = { 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [163926] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(5703), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 1, + anon_sym_SEMI, + ACTIONS(10026), 1, + sym_auto, + STATE(4240), 1, + sym_decltype_auto, + ACTIONS(7361), 6, 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_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 40, 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(8789), 1, - sym__declarator, - STATE(11008), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, + 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, - 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, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [163995] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5703), 1, + anon_sym_decltype, + ACTIONS(7670), 1, + anon_sym_SEMI, + ACTIONS(10026), 1, + sym_auto, + STATE(4240), 1, + sym_decltype_auto, + ACTIONS(7361), 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(7359), 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, @@ -557215,13 +630486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120922] = 4, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [164062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 18, + ACTIONS(9253), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557236,13 +630509,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(6596), 32, + anon_sym_DASH_GT, + ACTIONS(9255), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -557250,7 +630522,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, @@ -557262,84 +630533,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [164121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10214), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9447), 29, + anon_sym_DASH_GT, + ACTIONS(10216), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, + anon_sym_DASH_GT_STAR, + [164180] = 3, 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(7718), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557350,6 +630617,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, @@ -557357,7 +630625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7097), 32, + ACTIONS(7720), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -557366,6 +630634,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, @@ -557390,14 +630659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [121110] = 5, + [164239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11513), 1, - anon_sym_LT, - STATE(5135), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(7735), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557408,6 +630673,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, @@ -557415,18 +630681,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9652), 32, + ACTIONS(7737), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -557448,11 +630714,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, - [121174] = 3, + anon_sym_DASH_GT, + [164298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 20, + ACTIONS(7763), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557466,24 +630732,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(9222), 32, + ACTIONS(7765), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -557505,19 +630770,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, - [121234] = 7, + anon_sym_DASH_GT, + [164357] = 4, 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(12284), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(10147), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557532,15 +630791,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10184), 28, + ACTIONS(10149), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -557567,183 +630828,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [121302] = 51, + [164418] = 4, 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(9880), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5671), 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_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(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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8657), 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(8659), 35, + ACTIONS(5663), 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_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_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, - anon_sym_COLON_RBRACK, - [121518] = 8, + anon_sym_DASH_GT_STAR, + [164479] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(4682), 1, anon_sym_LBRACE, - ACTIONS(11527), 1, + ACTIONS(11992), 1, anon_sym_LPAREN2, - ACTIONS(11529), 1, - anon_sym_LBRACK, - STATE(5650), 1, - sym_new_declarator, - STATE(5946), 2, + STATE(6754), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9248), 20, + ACTIONS(9857), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -557764,7 +630916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9250), 26, + ACTIONS(9859), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557784,6 +630936,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -557791,10 +630944,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [121588] = 3, + [164544] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 20, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10842), 1, + anon_sym_STAR, + ACTIONS(10844), 1, + anon_sym_AMP_AMP, + ACTIONS(10846), 1, + anon_sym_AMP, + ACTIONS(10848), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5724), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9526), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10085), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6614), 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [164647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7718), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557808,155 +631039,49 @@ 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(9890), 32, + ACTIONS(7720), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, + anon_sym_LBRACE, 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_RBRACK, 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(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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [121804] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [164706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 20, + ACTIONS(7718), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557970,24 +631095,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(9039), 32, + ACTIONS(7720), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558009,11 +631133,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, - [121864] = 3, + anon_sym_DASH_GT, + [164765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 20, + ACTIONS(9292), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558027,14 +631151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9035), 32, + ACTIONS(9294), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -558044,7 +631164,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, @@ -558056,37 +631176,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, - [121924] = 5, + [164824] = 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(6829), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558100,12 +631207,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(5638), 20, + ACTIONS(6831), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -558114,10 +631221,23 @@ 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, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -558126,241 +631246,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [121988] = 7, - 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, - anon_sym_AMP, - 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [122056] = 51, + [164883] = 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(9263), 16, 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_DOT, + anon_sym_DASH_GT, + ACTIONS(9265), 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, - 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [164942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10489), 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, + ACTIONS(12286), 1, + sym_identifier, + STATE(6262), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(12289), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(12292), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8758), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(11488), 1, anon_sym_AMP, - ACTIONS(11494), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(11498), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym_or, - ACTIONS(11502), 1, anon_sym_and, - ACTIONS(11504), 1, anon_sym_bitor, - ACTIONS(11506), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11535), 1, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8756), 19, anon_sym_DOT_DOT_DOT, - ACTIONS(11537), 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_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + anon_sym_GT2, + [165009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7290), 17, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10491), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7292), 34, + 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -558371,10 +631407,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, - [122322] = 33, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [165068] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -558383,73 +631427,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, + ACTIONS(5645), 1, anon_sym_LPAREN2, - ACTIONS(5627), 1, + ACTIONS(5655), 1, anon_sym_LBRACK, - ACTIONS(8546), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(8651), 1, + ACTIONS(8776), 1, anon_sym_STAR, - ACTIONS(11547), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11551), 1, + ACTIONS(8778), 1, anon_sym_AMP_AMP, - ACTIONS(11553), 1, + ACTIONS(8780), 1, anon_sym_AMP, - ACTIONS(11555), 1, - anon_sym_EQ, - STATE(3808), 1, + ACTIONS(8784), 1, + anon_sym_COLON_COLON, + ACTIONS(11832), 1, + anon_sym_DOT_DOT_DOT, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5327), 1, + STATE(5388), 1, sym_parameter_list, - STATE(7990), 1, + STATE(8855), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8598), 1, + STATE(9576), 1, sym__function_declarator_seq, - STATE(8703), 1, + STATE(9878), 1, sym__declarator, - STATE(8975), 1, + STATE(10092), 1, sym__abstract_declarator, - STATE(9084), 1, - sym_abstract_reference_declarator, - STATE(10001), 1, + STATE(11009), 1, sym_variadic_declarator, - STATE(10010), 1, - sym_variadic_reference_declarator, - STATE(10837), 1, + STATE(12068), 1, sym_ms_based_modifier, - ACTIONS(43), 2, + ACTIONS(7864), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(11549), 2, + ACTIONS(7862), 4, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, 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, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -558461,10 +631500,10 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [122442] = 3, + [165179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 17, + ACTIONS(7822), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558474,25 +631513,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(5591), 35, + ACTIONS(7824), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558500,28 +631541,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, - [122502] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [165238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 19, + ACTIONS(7790), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558535,24 +631573,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___attribute, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(9222), 33, + anon_sym_DASH_GT, + ACTIONS(7792), 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_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558564,28 +631601,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, - [122562] = 6, + anon_sym_DASH_GT_STAR, + [165297] = 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(10345), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558605,14 +631635,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5638), 29, + ACTIONS(10347), 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, @@ -558635,18 +631668,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [122628] = 7, + [165356] = 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(7747), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558656,24 +631681,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(10208), 28, + ACTIONS(7749), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558681,6 +631709,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, @@ -558695,33 +631724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [122696] = 11, + [165415] = 3, 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(11478), 3, + ACTIONS(7755), 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, @@ -558734,14 +631745,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + anon_sym_DOT, + ACTIONS(7757), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -558761,10 +631776,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [122772] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [165474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10564), 26, + ACTIONS(9917), 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(9919), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -558787,11 +631823,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - ACTIONS(10566), 26, + [165533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7491), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558806,38 +631854,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - [122832] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, + ACTIONS(7493), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11327), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 17, + [165592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7775), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558855,14 +631913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + anon_sym_DOT, + ACTIONS(7777), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -558882,69 +631944,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [122906] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [165651] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11482), 1, - anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(12295), 1, + sym_identifier, + STATE(6273), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(12298), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(12301), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8758), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, 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(11502), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, anon_sym_and, - ACTIONS(11504), 1, anon_sym_bitor, - ACTIONS(11506), 1, + anon_sym_xor, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(11329), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8756), 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, - ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + [165718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7779), 18, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, 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(7781), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -558960,147 +632056,48 @@ 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - 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(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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + [165777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9445), 19, 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(9707), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - 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_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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9447), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + 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, @@ -559115,65 +632112,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [123210] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11488), 1, - anon_sym_AMP, - ACTIONS(11494), 1, - anon_sym_GT_EQ, - ACTIONS(11498), 1, anon_sym_LT_EQ_GT, - ACTIONS(11506), 1, + anon_sym_bitor, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + [165836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9296), 16, 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_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), 20, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9298), 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_RBRACK, + 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, @@ -559185,68 +632162,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_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, - [123304] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11488), 1, - anon_sym_AMP, - ACTIONS(11494), 1, - anon_sym_GT_EQ, - ACTIONS(11498), 1, anon_sym_LT_EQ_GT, - ACTIONS(11506), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11476), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [165895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9397), 19, 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(11490), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11492), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, 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_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 20, + anon_sym_DOT, + ACTIONS(9399), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + 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, @@ -559261,61 +632224,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [123396] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11494), 1, - anon_sym_GT_EQ, - ACTIONS(11498), 1, anon_sym_LT_EQ_GT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + [165954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 18, 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(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(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), 21, + anon_sym_DOT, + ACTIONS(7796), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -559331,60 +632280,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - [123484] = 16, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [166013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(12134), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, + STATE(6785), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9857), 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(11494), 1, + anon_sym_DASH_GT, + ACTIONS(9859), 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, - ACTIONS(11498), 1, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11476), 2, + anon_sym_DASH_GT_STAR, + [166078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7798), 18, 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(11492), 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), 24, + anon_sym_DOT, + ACTIONS(7800), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -559400,59 +632395,47 @@ 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, - [123570] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11498), 1, - anon_sym_LT_EQ_GT, - 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, + [166137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7802), 18, 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_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(7804), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -559468,103 +632451,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, - [123652] = 25, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [166196] = 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, - 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, + ACTIONS(12304), 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, + STATE(6371), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7201), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7207), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8802), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(11434), 1, + 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(8800), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11436), 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_LBRACK, - STATE(5598), 1, - sym_new_declarator, - STATE(6098), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 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, + anon_sym_GT2, + [166263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -559579,17 +632537,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(9276), 30, + ACTIONS(7796), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -559601,44 +632564,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_STAR, - [123826] = 12, + anon_sym_DASH_GT, + [166322] = 3, 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, + ACTIONS(6803), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11478), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -559651,14 +632596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + anon_sym_DOT, + ACTIONS(6805), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -559678,450 +632627,155 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(8708), 1, - anon_sym_STAR, - ACTIONS(11547), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11551), 1, - anon_sym_AMP_AMP, - ACTIONS(11553), 1, - anon_sym_AMP, - ACTIONS(11557), 1, - anon_sym_EQ, - 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(8690), 1, - sym__declarator, - STATE(8982), 1, - sym__abstract_declarator, - STATE(9120), 1, - sym_abstract_reference_declarator, - STATE(10001), 1, - sym_variadic_declarator, - STATE(10010), 1, - sym_variadic_reference_declarator, - STATE(10837), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - 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), 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [166381] = 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(6799), 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, + ACTIONS(6801), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, 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(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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [166440] = 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, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3446), 1, + ACTIONS(6807), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3448), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, 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, - 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, - [124366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6634), 13, + 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(6809), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [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_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_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(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + [166499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7810), 18, 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_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + anon_sym_DOT, + ACTIONS(7812), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -560141,72 +632795,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [124506] = 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(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, - 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, + [166558] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(12134), 1, + anon_sym_LPAREN2, + STATE(6788), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9832), 16, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9834), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + 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, @@ -560218,75 +632847,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [124612] = 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(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, 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_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(11561), 2, + anon_sym_DASH_GT_STAR, + [166623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10129), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10131), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560301,72 +632906,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [124718] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9599), 1, - anon_sym_EQ, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 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, - 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(11561), 2, + anon_sym_DASH_GT_STAR, + [166682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7826), 20, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7828), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560374,17 +632955,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [124824] = 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_GT2, + [166741] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 23, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, + anon_sym_LPAREN2, + STATE(6682), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9832), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -560405,10 +633001,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(8907), 29, + ACTIONS(9834), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -560416,7 +633009,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, @@ -560428,7 +633020,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, @@ -560438,72 +633029,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [124884] = 26, + [166806] = 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(10435), 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, - 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, + ACTIONS(10316), 19, 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_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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10318), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560518,75 +633077,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [124990] = 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(9826), 1, - anon_sym_EQ, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_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, - ACTIONS(11593), 1, - anon_sym_QMARK, - 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(11561), 2, + anon_sym_DASH_GT_STAR, + [166865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10371), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9828), 15, + 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(10373), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_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, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -560600,14 +633133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [125100] = 5, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [166924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11513), 1, - anon_sym_LT, - STATE(2999), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(7718), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -560617,25 +633154,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(9652), 32, + ACTIONS(7720), 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, @@ -560644,7 +633182,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, @@ -560658,54 +633195,95 @@ 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, - [125164] = 11, + anon_sym_DASH_GT, + anon_sym_GT2, + [166983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11196), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11563), 3, + anon_sym_GT2, + ACTIONS(11198), 27, + 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, anon_sym_GT, + anon_sym_GT_EQ, anon_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, - ACTIONS(9709), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + [167042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 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(3147), 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, @@ -560717,77 +633295,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [125240] = 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(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(11587), 1, + anon_sym_or, anon_sym_and, - ACTIONS(11589), 1, anon_sym_bitor, - ACTIONS(11591), 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(9707), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(11561), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [167101] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6822), 1, + anon_sym_COLON_COLON, + ACTIONS(10020), 20, 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_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_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10022), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, + 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, @@ -560795,75 +633351,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [125342] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - 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(11589), 1, anon_sym_bitor, - ACTIONS(11591), 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(11561), 2, + anon_sym_GT2, + [167162] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(12134), 1, + anon_sym_LPAREN2, + STATE(6775), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9849), 16, 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(9707), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - 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_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_DOT, + anon_sym_DASH_GT, + ACTIONS(9851), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, + 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, @@ -560875,68 +633414,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [125440] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(11573), 1, - anon_sym_AMP, - ACTIONS(11579), 1, - anon_sym_GT_EQ, - ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11591), 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(11561), 2, + anon_sym_DASH_GT_STAR, + [167227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10280), 19, 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_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), 20, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10282), 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_RBRACK_RBRACK, + 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, @@ -560951,65 +633473,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [125534] = 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(11573), 1, - anon_sym_AMP, - ACTIONS(11579), 1, - anon_sym_GT_EQ, - ACTIONS(11583), 1, anon_sym_LT_EQ_GT, - ACTIONS(11591), 1, + anon_sym_bitor, 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(11561), 2, + anon_sym_DASH_GT_STAR, + [167286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10236), 19, anon_sym_DASH, anon_sym_PLUS, - 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, 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_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 20, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10238), 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_RBRACK_RBRACK, + 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, @@ -561024,62 +633529,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [125626] = 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(11579), 1, - anon_sym_GT_EQ, - ACTIONS(11583), 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(11561), 2, + anon_sym_DASH_GT_STAR, + [167345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10284), 19, anon_sym_DASH, anon_sym_PLUS, - 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(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), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10286), 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_RBRACK_RBRACK, + 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, @@ -561094,61 +633585,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, - [125714] = 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(11579), 1, - anon_sym_GT_EQ, - ACTIONS(11583), 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, - anon_sym_DASH_GT, - ACTIONS(11561), 2, + anon_sym_DASH_GT_STAR, + [167404] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(10062), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11581), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11563), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11577), 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_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_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(10064), 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561156,67 +633635,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [125800] = 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(11583), 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(11561), 2, + anon_sym_GT2, + [167465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10240), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11581), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11563), 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, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10242), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561231,57 +633698,48 @@ 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, - [125882] = 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(11561), 2, + anon_sym_DASH_GT_STAR, + [167524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7735), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11563), 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), 26, + anon_sym_DOT, + ACTIONS(7737), 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_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561289,7 +633747,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, @@ -561300,10 +633757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [125960] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [167583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 20, + ACTIONS(7763), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561313,28 +633775,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(9061), 32, + ACTIONS(7765), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561342,7 +633803,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, @@ -561356,56 +633816,101 @@ 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, - [126020] = 13, + anon_sym_DASH_GT, + anon_sym_GT2, + [167642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + STATE(5659), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7065), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7067), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9519), 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(9517), 21, + 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_SEMI, 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_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + [167707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10412), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11581), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11563), 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), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10414), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561424,72 +633929,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [126100] = 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(10473), 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, - 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_GT_STAR, + [167766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7718), 20, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7720), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561497,82 +633974,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, - [126206] = 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(10477), 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, - ACTIONS(11593), 1, - anon_sym_QMARK, - 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(11561), 2, + anon_sym_GT2, + [167825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10202), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 15, + 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), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_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, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -561586,72 +634037,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [126316] = 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(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, - 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(11561), 2, + anon_sym_DASH_GT_STAR, + [167884] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6822), 1, + anon_sym_COLON_COLON, + ACTIONS(10020), 18, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 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(10022), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561666,10 +634094,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [126422] = 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, + [167945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 20, + ACTIONS(10385), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561683,14 +634119,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(9047), 32, + ACTIONS(10387), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -561700,7 +634135,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, @@ -561723,211 +634158,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [126482] = 3, + [168004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10337), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7791), 29, + anon_sym_DASH_GT, + ACTIONS(10339), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [126542] = 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(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, + anon_sym_DASH_GT_STAR, + [168063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 23, - aux_sym_preproc_elif_token1, + ACTIONS(12306), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(10147), 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_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(9437), 29, + ACTIONS(10149), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_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, - [126706] = 7, + [168124] = 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(10198), 20, + ACTIONS(7718), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561948,13 +634295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10196), 28, + ACTIONS(7720), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561977,18 +634327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [126774] = 7, + [168183] = 5, 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(10202), 20, + ACTIONS(12251), 1, + anon_sym_LT, + STATE(4095), 1, + sym_template_argument_list, + ACTIONS(10062), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561998,24 +634344,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(10200), 28, + ACTIONS(10064), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562023,6 +634370,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, @@ -562037,19 +634385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [126842] = 7, + [168246] = 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(10190), 18, + ACTIONS(9892), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562064,19 +634403,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(10188), 30, + anon_sym_DASH_GT, + ACTIONS(9894), 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, @@ -562088,37 +634427,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, - [126910] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [168305] = 3, 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(9715), 17, + ACTIONS(4982), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562136,15 +634462,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9717), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4980), 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, @@ -562163,18 +634493,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [126984] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [168364] = 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(10194), 18, + ACTIONS(9459), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562188,20 +634514,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(10192), 30, + ACTIONS(9461), 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_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562224,72 +634553,10 @@ 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, + [168423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10984), 1, - anon_sym_LBRACK, - STATE(5656), 1, - sym_new_declarator, - ACTIONS(9535), 20, + ACTIONS(7743), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562310,7 +634577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9537), 30, + ACTIONS(7745), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562319,6 +634586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562341,89 +634609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [127178] = 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(8523), 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, - [127282] = 3, + [168482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 19, + ACTIONS(9378), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562438,12 +634627,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(8559), 33, + ACTIONS(9380), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -562453,7 +634639,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -562466,28 +634651,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, - [127342] = 6, + [168541] = 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(9360), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562502,19 +634683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5638), 29, + ACTIONS(9362), 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, @@ -562526,27 +634707,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, - [127408] = 6, + [168600] = 3, 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(7822), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562556,17 +634734,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(9580), 30, + ACTIONS(7824), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -562574,7 +634751,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_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562582,6 +634762,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,58 +634777,48 @@ 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, + [168659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, - anon_sym_LPAREN2, - ACTIONS(8098), 1, - anon_sym_LBRACK, - ACTIONS(8111), 1, - anon_sym_STAR, - ACTIONS(8113), 1, - anon_sym_AMP_AMP, - ACTIONS(8115), 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(9313), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(9427), 30, + anon_sym_DASH_GT, + ACTIONS(9315), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PERCENT, + 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_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, @@ -562658,142 +634829,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_requires, - anon_sym_COLON_RBRACK, - [127552] = 3, + anon_sym_DASH_GT_STAR, + [168718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 23, - aux_sym_preproc_elif_token1, + ACTIONS(7826), 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(9298), 29, + ACTIONS(7828), 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_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, - [127612] = 8, + [168777] = 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(5689), 1, - sym_new_declarator, - STATE(5978), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 20, - aux_sym_preproc_elif_token1, + ACTIONS(7830), 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(9276), 26, + ACTIONS(7832), 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_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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [127682] = 7, + anon_sym_GT2, + [168836] = 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(10190), 20, + ACTIONS(7834), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562814,13 +634969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10188), 28, + ACTIONS(7836), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562843,18 +635001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [127750] = 7, + [168895] = 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(7842), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562875,13 +635025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10192), 28, + ACTIONS(7844), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562904,89 +635057,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [127818] = 25, + [168954] = 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(3442), 1, + ACTIONS(9707), 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(9709), 35, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, + [169013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7830), 18, + 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(7511), 1, - sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8785), 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, - [127922] = 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(7832), 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_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, + [169072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 17, + ACTIONS(7846), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562996,25 +635182,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(5595), 35, + ACTIONS(7848), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -563022,28 +635210,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, - [127982] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [169131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 20, + ACTIONS(12257), 1, + anon_sym_LT, + STATE(3160), 1, + sym_template_argument_list, + ACTIONS(10094), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563053,28 +635242,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9069), 32, + ACTIONS(10096), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -563082,7 +635268,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, @@ -563096,90 +635281,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, - [128042] = 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(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(8523), 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, - [128146] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [169194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 19, + ACTIONS(7834), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563193,13 +635300,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(9699), 33, + ACTIONS(7836), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -563208,9 +635314,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -563233,100 +635339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128206] = 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(8785), 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, - [128310] = 8, + [169253] = 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(5645), 1, - sym_new_declarator, - STATE(6041), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 16, + ACTIONS(9603), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563341,17 +635357,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(9228), 30, + ACTIONS(9601), 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, @@ -563363,82 +635384,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [128380] = 25, + [169312] = 4, 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, + ACTIONS(12249), 2, 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(10485), 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(9853), 16, 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(10487), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9855), 33, 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, @@ -563446,30 +635435,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_GT2, - [128484] = 9, + 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, + [169373] = 3, 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(9657), 17, + ACTIONS(9267), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563484,18 +635470,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(9659), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9269), 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, @@ -563507,20 +635494,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, - [128556] = 3, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [169432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 23, - aux_sym_preproc_elif_token1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12308), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(6774), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -563528,29 +635525,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___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(9310), 29, + ACTIONS(6781), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -563563,156 +635544,33 @@ 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [128616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9316), 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(9318), 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, - [128676] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + sym_auto, 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(10246), 1, - anon_sym_STAR, - ACTIONS(10248), 1, - anon_sym_AMP_AMP, - ACTIONS(10250), 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(8808), 1, - sym__declarator, - STATE(10837), 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, - [128780] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [169497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9080), 20, + ACTIONS(10375), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563726,14 +635584,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(9082), 32, + ACTIONS(10377), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -563743,7 +635600,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, @@ -563766,71 +635623,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [128840] = 26, + [169556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10538), 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, - 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, + ACTIONS(7842), 18, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 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(7844), 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_LBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -563846,10 +635671,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [128946] = 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, + [169615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9084), 20, + ACTIONS(7751), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563859,28 +635692,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(9086), 32, + ACTIONS(7753), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -563888,7 +635720,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, @@ -563902,227 +635733,68 @@ 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [169674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 17, + ACTIONS(7759), 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_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(8699), 35, + ACTIONS(7761), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, - 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(8808), 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, - [129170] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6861), 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(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_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, - [129268] = 5, + anon_sym_GT2, + [169733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11513), 1, - anon_sym_LT, - STATE(2985), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(7767), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564132,25 +635804,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(9652), 32, + ACTIONS(7769), 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, @@ -564159,7 +635832,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, @@ -564173,11 +635845,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, - [129332] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [169792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(7846), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564191,24 +635864,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(9762), 32, + ACTIONS(7848), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -564230,125 +635902,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, - [129392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6614), 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(6612), 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, - [129452] = 3, - 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, - 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, - [129512] = 3, + [169851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(6795), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564362,24 +635920,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(9762), 32, + ACTIONS(6797), 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_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -564401,11 +635958,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, - [129572] = 3, + anon_sym_DASH_GT, + [169910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(9279), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564419,14 +635976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9762), 32, + ACTIONS(9281), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -564436,7 +635989,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, @@ -564448,192 +636001,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [129632] = 3, - 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, - 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, - [129692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6630), 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(6628), 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, - [129752] = 3, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [169969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10379), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7966), 29, + anon_sym_DASH_GT, + ACTIONS(10381), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [129812] = 3, + anon_sym_DASH_GT_STAR, + [170028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(6791), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564647,24 +636088,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(9762), 32, + ACTIONS(6793), 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_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -564677,82 +636117,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [129872] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10473), 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_or_eq, + anon_sym_xor_eq, 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + [170087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10381), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -564767,10 +636175,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [129978] = 3, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [170146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(10379), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564784,14 +636200,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(9762), 32, + ACTIONS(10381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -564801,7 +636216,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, @@ -564824,72 +636239,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, + [170205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(10379), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564903,14 +636256,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(9762), 32, + ACTIONS(10381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -564920,7 +636272,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, @@ -564943,255 +636295,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [130168] = 8, + [170264] = 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, - aux_sym_preproc_elif_token1, + ACTIONS(6811), 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(9228), 26, + ACTIONS(6813), 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_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_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_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, - [130238] = 3, + [170323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10379), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9409), 29, + anon_sym_DASH_GT, + ACTIONS(10381), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [130298] = 9, - 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, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(8000), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [130370] = 9, - 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, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(8006), 33, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [130442] = 3, + anon_sym_DASH_GT_STAR, + [170382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 19, + ACTIONS(10379), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565211,7 +636430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9705), 33, + ACTIONS(10381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -565221,7 +636440,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, @@ -565245,141 +636463,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [130502] = 7, + [170441] = 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, - aux_sym_preproc_elif_token1, + ACTIONS(10422), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(7097), 28, + anon_sym_DASH_GT, + ACTIONS(10424), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [130570] = 3, - ACTIONS(3), 1, - sym_comment, - 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), 45, - 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, - 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, - [130630] = 9, + anon_sym_DASH_GT_STAR, + [170500] = 3, 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(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9657), 17, + ACTIONS(5671), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565397,15 +636540,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9659), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5663), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -565426,72 +636573,42 @@ 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_STAR, + [170559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(10538), 1, - 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, + ACTIONS(7854), 18, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 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(7856), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_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, @@ -565506,26 +636623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [130808] = 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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9673), 17, + [170618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7858), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565543,15 +636652,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9675), 26, + anon_sym_DOT, + ACTIONS(7860), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -565570,26 +636683,14 @@ 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, + [170677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7786), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565599,23 +636700,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9679), 26, + anon_sym_DOT, + ACTIONS(7788), 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_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -565623,7 +636728,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, @@ -565634,72 +636738,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [130956] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [170736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(10542), 1, + ACTIONS(9939), 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(11315), 1, anon_sym_DOT, - ACTIONS(11606), 1, + anon_sym_DASH_GT, + ACTIONS(9941), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(11622), 1, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, anon_sym_or, - ACTIONS(11626), 1, anon_sym_and, - ACTIONS(11628), 1, anon_sym_bitor, - ACTIONS(11630), 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(11309), 2, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [170795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10395), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10397), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -565714,23 +636847,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [131062] = 9, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [170854] = 3, 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(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9681), 17, + ACTIONS(9445), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565740,23 +636868,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, - ACTIONS(9683), 28, + anon_sym_DOT, + ACTIONS(9447), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -565764,7 +636896,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, @@ -565777,72 +636908,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [131134] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [170913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9599), 1, - anon_sym_EQ, - ACTIONS(9642), 1, - anon_sym_LBRACK, - 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, + ACTIONS(9329), 16, 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_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_DOT, + anon_sym_DASH_GT, + ACTIONS(9331), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -565854,75 +636953,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [131240] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, - 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_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(11309), 2, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [170972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9329), 16, 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_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_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9331), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -565934,78 +637009,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [131346] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9826), 1, - anon_sym_EQ, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - 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_xor, anon_sym_bitand, - ACTIONS(11632), 1, - anon_sym_QMARK, - 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(11309), 2, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [171031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9329), 16, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9828), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9331), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -566016,35 +637065,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, - [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_LT_EQ_GT, + anon_sym_or, + 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(11317), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11311), 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [171090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10353), 19, + 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, @@ -566057,15 +637100,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10355), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566084,26 +637131,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [131532] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [171149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(7495), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7497), 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, - 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_COLON, + anon_sym_LBRACE, 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_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 17, + [171208] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(5671), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -566113,23 +637206,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(9709), 26, + anon_sym_DOT, + ACTIONS(5663), 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, @@ -566137,7 +637233,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, @@ -566148,70 +637243,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [131606] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - 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(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(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, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11612), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11311), 3, + anon_sym_GT2, + [171269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9455), 19, + 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(9709), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9457), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_COLON, + 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, @@ -566226,68 +637296,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [131708] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - 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(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_not_eq, 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(9707), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(11311), 3, + [171328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9414), 19, + 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(9709), 19, + 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(9416), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566296,71 +637346,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [131806] = 20, - 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, - anon_sym_AMP, - ACTIONS(11620), 1, - anon_sym_GT_EQ, - ACTIONS(11622), 1, + anon_sym_AMP_EQ, + anon_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(11630), 1, + anon_sym_bitor, 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(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, + [171387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9401), 19, + 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(9707), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9709), 20, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9403), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566375,65 +637408,48 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_AMP, - ACTIONS(11620), 1, - anon_sym_GT_EQ, - ACTIONS(11622), 1, anon_sym_LT_EQ_GT, - ACTIONS(11630), 1, + anon_sym_bitor, 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(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, + [171446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9389), 19, + 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(9707), 6, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 20, + anon_sym_DOT, + ACTIONS(9391), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566448,62 +637464,108 @@ 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, - [131992] = 17, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [171505] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12311), 1, + sym_identifier, + STATE(6262), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7201), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7207), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8746), 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(8744), 19, + 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_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - ACTIONS(11620), 1, - anon_sym_GT_EQ, - ACTIONS(11622), 1, + anon_sym_QMARK, 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, - 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_GT2, + [171572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10310), 19, + 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_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), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10312), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566518,61 +637580,48 @@ 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, - [132080] = 16, - 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, - 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(11309), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [171631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9459), 21, 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(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_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(9709), 24, + anon_sym_DOT, + ACTIONS(9461), 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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566580,67 +637629,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, 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, - 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_GT2, + [171690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7806), 20, + 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), 25, + anon_sym_DOT, + ACTIONS(7808), 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_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566648,43 +637685,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_bitor, anon_sym_bitand, anon_sym_not_eq, - [132248] = 12, - 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(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11317), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11311), 3, + anon_sym_GT2, + [171749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10288), 19, + 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,15 +637721,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10290), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566724,72 +637752,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [132326] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10485), 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, - 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_GT_STAR, + [171808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9711), 16, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9713), 35, 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566801,29 +637798,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, - [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_LT_EQ_GT, + anon_sym_or, + 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(11317), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9715), 17, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [171867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10206), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -566841,15 +637833,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9717), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10208), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566868,72 +637864,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [132506] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [171926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(10473), 1, + ACTIONS(9724), 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(11315), 1, anon_sym_DOT, - ACTIONS(11606), 1, + anon_sym_DASH_GT, + ACTIONS(9726), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(11622), 1, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, anon_sym_or, - ACTIONS(11626), 1, anon_sym_and, - ACTIONS(11628), 1, anon_sym_bitor, - ACTIONS(11630), 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(11309), 2, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [171985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7854), 20, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7856), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -566941,161 +637965,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [132612] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10477), 1, - 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, - ACTIONS(11632), 1, - anon_sym_QMARK, - 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(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_GT2, + [172044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7858), 20, + 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 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(7860), 31, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [132722] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(10485), 1, - 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_not_eq, 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_GT2, + [172103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9728), 16, + 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(10487), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9730), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -567107,78 +638078,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, - [132828] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10489), 1, - 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_xor, anon_sym_bitand, - ACTIONS(11632), 1, - anon_sym_QMARK, - 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(11309), 2, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [172162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10062), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10491), 15, + 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(10064), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -567192,89 +638140,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_LT_EQ_GT, + anon_sym_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, + [172221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9088), 20, + ACTIONS(10228), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567288,14 +638165,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(9090), 32, + ACTIONS(10230), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -567305,7 +638181,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, @@ -567328,86 +638204,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [133102] = 22, + [172280] = 11, 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, + ACTIONS(10600), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + STATE(6931), 1, + sym_field_declaration_list, + STATE(7154), 1, + sym_attribute_specifier, + STATE(10802), 1, + sym_virtual_specifier, + STATE(11832), 1, + sym_base_class_clause, + ACTIONS(7380), 2, 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, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7370), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -567417,9 +638235,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, @@ -567428,13 +638243,9 @@ 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(9363), 29, + ACTIONS(7372), 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, @@ -567450,9 +638261,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, @@ -567460,72 +638268,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [133260] = 25, + [172355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(12134), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, + STATE(6792), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9766), 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(11448), 1, + anon_sym_DASH_GT, + ACTIONS(9768), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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_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, - ACTIONS(11468), 1, anon_sym_or, - ACTIONS(11470), 1, 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(10435), 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, + [172420] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12317), 1, + sym_identifier, + STATE(6134), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7223), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7229), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8802), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, + 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, - ACTIONS(11462), 2, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(8800), 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, - ACTIONS(11446), 3, + 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, + [172487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9410), 19, + anon_sym_DASH, + anon_sym_PLUS, 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(10437), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9412), 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, @@ -567533,25 +638428,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_GT2, - [133364] = 7, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [172546] = 5, 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(10174), 20, + ACTIONS(11846), 1, + anon_sym_LT, + STATE(2208), 1, + sym_template_argument_list, + ACTIONS(10094), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567561,24 +638460,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(10172), 28, + ACTIONS(10096), 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, @@ -567586,6 +638486,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, @@ -567600,27 +638501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [133432] = 10, + [172609] = 3, 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(9638), 17, + ACTIONS(9275), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567635,18 +638519,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(9640), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9277), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -567658,17 +638543,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, - [133506] = 3, + 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, + [172668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9095), 20, + ACTIONS(7850), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567678,28 +638570,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(9097), 32, + ACTIONS(7852), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -567707,7 +638598,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, @@ -567721,11 +638611,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, - [133566] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [172727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9041), 20, + ACTIONS(10232), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567739,14 +638630,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(9043), 32, + ACTIONS(10234), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -567756,7 +638646,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, @@ -567779,75 +638669,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [133626] = 28, + [172786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10477), 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, + ACTIONS(7621), 16, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 15, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7623), 35, + 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, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -567858,29 +638711,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, - [133736] = 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_LT_EQ_GT, + anon_sym_or, + 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(11333), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9673), 17, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [172845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10254), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567898,15 +638746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9675), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10256), 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, @@ -567925,74 +638777,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [133810] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [172904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(7714), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(11442), 1, + anon_sym_DASH_GT, + ACTIONS(7716), 34, anon_sym_DOT_DOT_DOT, - ACTIONS(11448), 1, + 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_PIPE, - ACTIONS(11456), 1, - anon_sym_AMP, - ACTIONS(11464), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(11466), 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_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_xor, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(9826), 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, + [172963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10375), 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(9828), 14, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10377), 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, @@ -568005,27 +638883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [133918] = 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_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9677), 17, + anon_sym_GT2, + [173021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10284), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568043,14 +638913,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9679), 26, + anon_sym_DOT, + ACTIONS(10286), 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, @@ -568070,80 +638943,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [133992] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [173079] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_EQ, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9239), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10086), 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), 18, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(10088), 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_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_RBRACK, + [173151] = 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(10206), 20, + ACTIONS(4982), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568164,13 +639033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10204), 28, + ACTIONS(4980), 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, @@ -568193,101 +639064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [134130] = 29, + [173209] = 3, 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, - 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, + ACTIONS(10214), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568297,24 +639077,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(10172), 30, + ACTIONS(10216), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -568322,7 +639104,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, @@ -568337,115 +639118,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [134310] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6576), 1, - anon_sym_LBRACK, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(5825), 1, - sym_template_argument_list, - ACTIONS(6569), 2, - 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_LBRACK_COLON, - ACTIONS(6565), 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, - [134380] = 11, + anon_sym_GT2, + [173267] = 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(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11446), 3, + ACTIONS(10129), 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, + ACTIONS(10131), 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, @@ -568453,6 +639159,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 +639170,30 @@ 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, + [173325] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - STATE(5741), 1, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, sym_argument_list, - STATE(5917), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9707), 19, + ACTIONS(10066), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568493,23 +639203,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, - ACTIONS(9709), 24, + ACTIONS(10068), 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, @@ -568517,79 +639224,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_GT2, - [134530] = 23, + anon_sym_DASH_GT_STAR, + [173397] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10066), 1, + anon_sym_EQ, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11450), 1, - anon_sym_AMP_AMP, - ACTIONS(11452), 1, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, anon_sym_PIPE, - ACTIONS(11456), 1, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, anon_sym_AMP, - ACTIONS(11466), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11470), 1, - anon_sym_and, - ACTIONS(11472), 1, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, anon_sym_bitor, - ACTIONS(11474), 1, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(6377), 1, sym_argument_list, - STATE(5917), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, + ACTIONS(12325), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12339), 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, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, + ACTIONS(12333), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11460), 4, + ACTIONS(12335), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 17, + ACTIONS(10068), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -568598,72 +639306,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_GT2, - [134630] = 21, + anon_sym_or, + anon_sym_DASH_GT_STAR, + [173497] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10066), 1, + anon_sym_EQ, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11452), 1, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, anon_sym_PIPE, - ACTIONS(11456), 1, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, anon_sym_AMP, - ACTIONS(11466), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11472), 1, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, anon_sym_bitor, - ACTIONS(11474), 1, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(6377), 1, sym_argument_list, - STATE(5917), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, + ACTIONS(12339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11446), 3, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, + ACTIONS(12333), 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, + ACTIONS(12335), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 18, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_QMARK, @@ -568673,69 +639380,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_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_or, + anon_sym_and, + anon_sym_DASH_GT_STAR, + [173595] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11456), 1, - anon_sym_AMP, - ACTIONS(11466), 1, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, anon_sym_LT_EQ_GT, - ACTIONS(11474), 1, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, + anon_sym_AMP, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(6377), 1, sym_argument_list, - STATE(5917), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, + ACTIONS(10066), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, + ACTIONS(12339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11446), 3, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, + ACTIONS(12333), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11460), 4, + ACTIONS(12335), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(9709), 19, + ACTIONS(10068), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_QMARK, @@ -568745,71 +639452,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - anon_sym_GT2, - [134818] = 18, + anon_sym_DASH_GT_STAR, + [173689] = 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(11456), 1, - anon_sym_AMP, - ACTIONS(11466), 1, - 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, + ACTIONS(10186), 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(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), 7, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 19, + anon_sym_DOT, + ACTIONS(10188), 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, @@ -568817,66 +639500,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_GT2, - [134908] = 16, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [173747] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11466), 1, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, anon_sym_LT_EQ_GT, - STATE(5741), 1, + ACTIONS(12331), 1, + anon_sym_AMP, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12345), 1, + anon_sym_bitand, + STATE(6377), 1, sym_argument_list, - STATE(5917), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11462), 2, + ACTIONS(12339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11446), 3, + ACTIONS(10066), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, + ACTIONS(12333), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11460), 4, + ACTIONS(12335), 3, 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_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 20, + ACTIONS(10068), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_QMARK, @@ -568886,236 +639577,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - anon_sym_bitand, - anon_sym_GT2, - [134994] = 3, + anon_sym_xor, + anon_sym_DASH_GT_STAR, + [173837] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 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, + ACTIONS(5697), 1, anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6608), 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, - [135054] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, + ACTIONS(5828), 1, + anon_sym_SEMI, + ACTIONS(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9614), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9620), 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, - 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_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_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, - anon_sym_QMARK, + ACTIONS(5699), 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(5663), 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_GT2, - [135138] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 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, + ACTIONS(5671), 17, 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_EQ, - anon_sym_GT_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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, - [135220] = 12, + anon_sym_DOT, + [173907] = 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(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(9603), 20, 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, @@ -569130,13 +639670,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 24, + anon_sym_DOT, + ACTIONS(9601), 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, @@ -569154,37 +639697,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [135298] = 13, - 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(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_GT2, + [173965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10395), 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(9707), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -569192,18 +639718,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 24, + anon_sym_DOT, + ACTIONS(10397), 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, @@ -569221,361 +639752,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [135378] = 3, - 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, - 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, - 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, - [135438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6622), 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(6620), 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, - [135498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9365), 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(9367), 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, - [135558] = 3, + anon_sym_GT2, + [174023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10147), 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(9371), 29, + ACTIONS(10149), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [135618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 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(8422), 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, - [135678] = 28, + [174081] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11065), 1, + anon_sym_EQ, + ACTIONS(11309), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11347), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10469), 1, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12004), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10489), 1, - anon_sym_EQ, - ACTIONS(11565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11567), 1, - anon_sym_AMP_AMP, - ACTIONS(11569), 1, + ACTIONS(12048), 1, + anon_sym_QMARK, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, anon_sym_PIPE, - ACTIONS(11573), 1, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 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, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, anon_sym_bitor, - ACTIONS(11591), 1, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, anon_sym_bitand, - ACTIONS(11593), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(6377), 1, sym_argument_list, - STATE(3900), 1, + STATE(6383), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(12325), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12339), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(12347), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(12333), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(12335), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10491), 15, + ACTIONS(11067), 13, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -569586,13 +639890,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, - [135788] = 3, + anon_sym_DASH_GT_STAR, + [174187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9080), 21, + ACTIONS(5671), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569607,14 +639909,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9082), 30, + ACTIONS(5663), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569622,7 +639923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -569645,10 +639946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [135847] = 3, + [174245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9693), 19, + ACTIONS(10206), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569658,26 +639959,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(9695), 32, + ACTIONS(10208), 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, @@ -569686,7 +639986,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, @@ -569700,11 +639999,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, - [135906] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [174303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 16, + ACTIONS(10090), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569714,23 +640014,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(9421), 35, + ACTIONS(10092), 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, @@ -569739,28 +640041,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, - [135965] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [174361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 19, + ACTIONS(10202), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569779,11 +640078,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9802), 32, + ACTIONS(10204), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -569791,6 +640088,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, @@ -569812,11 +640110,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, - [136024] = 3, + anon_sym_DASH_GT, + [174419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 19, + ACTIONS(10090), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569826,26 +640124,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(9862), 32, + ACTIONS(10092), 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, @@ -569854,7 +640151,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, @@ -569868,15 +640164,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, - [136083] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [174477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11270), 1, - anon_sym_LT, - STATE(2031), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(10090), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569886,24 +640179,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), 32, + ACTIONS(10092), 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, @@ -569912,7 +640206,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 +640220,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, + [174535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 20, + ACTIONS(10288), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569953,7 +640245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5638), 30, + ACTIONS(10290), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569984,10 +640276,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [136207] = 3, + [174593] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10066), 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(10068), 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, + [174665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 16, + ACTIONS(10105), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570002,12 +640356,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(9425), 35, + ACTIONS(10103), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -570015,6 +640370,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, @@ -570026,26 +640382,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, - [136266] = 4, + anon_sym_DASH_GT, + [174723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 1, - anon_sym_COLON_COLON, - ACTIONS(9513), 20, + ACTIONS(4982), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570055,18 +640406,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(9515), 30, + ACTIONS(4980), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570074,7 +640423,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, @@ -570082,6 +640433,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, @@ -570096,69 +640448,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [136327] = 5, + [174781] = 3, 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, + ACTIONS(10329), 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(9537), 29, + ACTIONS(10331), 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_COLON_RBRACK, - [136390] = 3, + anon_sym_GT2, + [174839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9911), 19, + ACTIONS(10174), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570168,26 +640516,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(9913), 32, + ACTIONS(10176), 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, @@ -570196,7 +640543,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, @@ -570210,38 +640556,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [136449] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [174897] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 16, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(3161), 35, + ACTIONS(10068), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -570260,17 +640622,11 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [136508] = 3, + [174975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 19, + ACTIONS(10288), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570289,11 +640645,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9691), 32, + ACTIONS(10290), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -570301,6 +640655,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, @@ -570322,13 +640677,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [136567] = 4, + anon_sym_DASH_GT, + [175033] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6606), 1, + anon_sym_COLON, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, anon_sym_COLON_COLON, - ACTIONS(9513), 18, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10111), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6483), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6604), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [175135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10353), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570347,7 +640777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9515), 32, + ACTIONS(10355), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570380,10 +640810,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [136628] = 3, + [175193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10345), 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(10347), 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, + [175251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 16, + ACTIONS(10359), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570393,23 +640878,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(8895), 35, + ACTIONS(10361), 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, @@ -570418,28 +640905,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [175309] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 16, + ACTIONS(7219), 1, + anon_sym_EQ, + ACTIONS(9968), 1, + anon_sym_COMMA, + ACTIONS(9970), 1, + anon_sym_RBRACK, + ACTIONS(7221), 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(5663), 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(5671), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570453,20 +640975,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [175375] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11061), 1, anon_sym_EQ, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, + anon_sym_PIPE, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, + anon_sym_AMP, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, + anon_sym_bitor, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, + anon_sym_bitand, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8903), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12325), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12347), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12323), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12333), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(12335), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11063), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -570478,24 +641055,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [136746] = 3, + [175477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 16, + ACTIONS(10264), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570505,23 +641069,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(8907), 35, + 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -570530,34 +641096,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, - [136805] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [175535] = 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(10280), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570567,21 +641124,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(9395), 31, + ACTIONS(10282), 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, @@ -570590,26 +641151,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_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, + anon_sym_DASH_GT, + anon_sym_GT2, + [175593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10564), 24, + ACTIONS(10194), 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(10196), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570628,13 +641209,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(10566), 27, + [175651] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10198), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570651,21 +641241,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10200), 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_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_literal_suffix, - [136927] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [175709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 16, + ACTIONS(12136), 1, + anon_sym_LBRACK, + STATE(6635), 1, + sym_new_declarator, + ACTIONS(10004), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570682,7 +641300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9437), 35, + ACTIONS(10006), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -570692,7 +641310,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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -570714,52 +641332,54 @@ 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, - [136986] = 3, + [175771] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 16, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(3153), 35, + ACTIONS(7474), 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, @@ -570770,14 +641390,12 @@ 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, - [137045] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [175837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 16, + ACTIONS(10349), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570792,12 +641410,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(8923), 35, + ACTIONS(10351), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -570805,6 +641424,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, @@ -570816,24 +641436,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [175895] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10046), 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(10048), 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_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [137104] = 3, + anon_sym_COLON_RBRACK, + [175965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 20, + ACTIONS(10062), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570843,18 +641521,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(10064), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570862,8 +641538,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -570871,6 +641548,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 +641563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [137163] = 3, + [176023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 16, + ACTIONS(10359), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570904,12 +641581,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(8948), 35, + ACTIONS(10361), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -570917,6 +641595,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, @@ -570928,24 +641607,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [176081] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(6849), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(12352), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6442), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(12349), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7121), 12, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + 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(7119), 30, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, + anon_sym_try, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [137222] = 3, + [176147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 19, + ACTIONS(10310), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570955,26 +641690,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(9917), 32, + ACTIONS(10312), 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, @@ -570983,7 +641717,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, @@ -570997,11 +641730,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, - [137281] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [176205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 21, + ACTIONS(10395), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571011,19 +641745,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(9039), 30, + ACTIONS(10397), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -571031,7 +641762,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, @@ -571039,6 +641772,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, @@ -571053,11 +641787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [137340] = 3, + [176263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 21, + ACTIONS(8898), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571067,19 +641800,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(9035), 30, + ACTIONS(3472), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -571087,7 +641817,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, @@ -571095,6 +641827,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, @@ -571109,11 +641842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [137399] = 3, + [176321] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 19, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2116), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9774), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571128,22 +641868,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(9742), 32, + ACTIONS(9776), 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, @@ -571155,81 +641890,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [137458] = 7, + [176387] = 27, 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(10337), 1, + anon_sym_EQ, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12048), 1, + anon_sym_QMARK, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, + anon_sym_PIPE, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, + anon_sym_AMP, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, + anon_sym_bitor, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, + anon_sym_bitand, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12325), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12347), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12323), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12333), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12335), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10339), 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, + [176493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10222), 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_literal_suffix, - ACTIONS(8406), 19, + ACTIONS(10224), 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_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, - [137525] = 3, + [176551] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 19, + ACTIONS(6826), 1, + anon_sym_LBRACK, + ACTIONS(6819), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6822), 6, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(6815), 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, + [176613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571248,11 +642114,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9222), 32, + ACTIONS(10381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -571260,6 +642124,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, @@ -571281,11 +642146,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, - [137584] = 3, + anon_sym_DASH_GT, + [176671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 19, + ACTIONS(10379), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571304,11 +642169,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5638), 32, + ACTIONS(10381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -571316,6 +642179,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, @@ -571337,67 +642201,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, - [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, + [176729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 19, + ACTIONS(10264), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571416,11 +642224,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9770), 32, + ACTIONS(10266), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -571428,6 +642234,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, @@ -571449,11 +642256,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, - [137761] = 3, + anon_sym_DASH_GT, + [176787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 19, + ACTIONS(10375), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571472,11 +642279,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9794), 32, + ACTIONS(10377), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -571484,6 +642289,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, @@ -571505,74 +642311,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, - [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, + [176845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 19, + ACTIONS(10280), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571591,11 +642334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9836), 32, + ACTIONS(10282), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -571603,6 +642344,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, @@ -571624,67 +642366,66 @@ 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, + [176903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 19, + ACTIONS(8854), 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(9806), 32, + sym_identifier, + ACTIONS(8849), 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_STAR, - [138011] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [176961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 19, + ACTIONS(10310), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571703,11 +642444,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9814), 32, + ACTIONS(10312), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -571715,6 +642454,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, @@ -571736,11 +642476,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, - [138070] = 3, + anon_sym_DASH_GT, + [177019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 19, + ACTIONS(10337), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571759,11 +642499,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9820), 32, + ACTIONS(10339), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -571771,6 +642509,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, @@ -571792,11 +642531,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, - [138129] = 3, + anon_sym_DASH_GT, + [177077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9732), 19, + ACTIONS(10379), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571815,11 +642554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9734), 32, + ACTIONS(10381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -571827,6 +642564,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, @@ -571848,46 +642586,45 @@ 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, - [138188] = 6, + anon_sym_DASH_GT, + [177135] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10326), 1, - anon_sym_decltype, - ACTIONS(11543), 1, - sym_auto, - STATE(6061), 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, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(12358), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(12355), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7121), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7119), 29, + 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_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___based, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -571901,17 +642638,18 @@ 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_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [138253] = 3, + [177201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 19, + ACTIONS(10367), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571925,13 +642663,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(9069), 32, + ACTIONS(10369), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -571940,8 +642677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -571964,14 +642701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [138312] = 5, + [177259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_LT, - STATE(3157), 1, - sym_template_argument_list, - ACTIONS(9650), 19, + ACTIONS(10379), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571981,17 +642714,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(9652), 30, + ACTIONS(10381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -571999,7 +642731,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, @@ -572007,6 +642741,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, @@ -572021,11 +642756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [138375] = 3, + [177317] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 19, + ACTIONS(12361), 1, + anon_sym_COMMA, + ACTIONS(12363), 1, + anon_sym_RBRACK, + ACTIONS(5671), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572044,11 +642782,8 @@ 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(5663), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -572077,42 +642812,211 @@ 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, + [177379] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 19, + ACTIONS(11057), 1, + anon_sym_EQ, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12004), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12048), 1, + anon_sym_QMARK, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, + anon_sym_PIPE, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, + anon_sym_AMP, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, + anon_sym_bitor, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, + anon_sym_bitand, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12325), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12347), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(12333), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12335), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11059), 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, + [177485] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 11, + 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, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9758), 32, + ACTIONS(7623), 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, + [177551] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11053), 1, + anon_sym_EQ, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, + anon_sym_PIPE, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, + anon_sym_AMP, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, + anon_sym_bitor, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, + anon_sym_bitand, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12325), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12347), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12323), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(12333), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12335), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11055), 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, @@ -572123,21 +643027,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_STAR, - [138493] = 3, + [177653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 19, + ACTIONS(10090), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572156,11 +643050,9 @@ 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(10092), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -572168,6 +643060,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, @@ -572189,71 +643082,66 @@ 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, + anon_sym_DASH_GT, + [177711] = 3, 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, + ACTIONS(10090), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8466), 21, + ACTIONS(10092), 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_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, - [138619] = 3, + [177769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 16, + ACTIONS(10090), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572268,12 +643156,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(8915), 35, + ACTIONS(10092), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -572281,6 +643170,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, @@ -572292,28 +643182,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, - [138678] = 5, + anon_sym_DASH_GT, + [177827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_LT, - STATE(3193), 1, - sym_template_argument_list, - ACTIONS(9650), 19, + ACTIONS(10117), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572325,6 +643208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -572333,7 +643217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9652), 30, + ACTIONS(10119), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -572364,10 +643248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [138741] = 3, + [177885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 19, + ACTIONS(10379), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572381,13 +643265,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(9039), 32, + ACTIONS(10381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -572396,8 +643279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572420,10 +643303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [138800] = 3, + [177943] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 19, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2116), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9788), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572438,22 +643329,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(9944), 32, + ACTIONS(9790), 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, @@ -572465,21 +643351,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, - [138859] = 3, + [178009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 19, + ACTIONS(10329), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572493,13 +643379,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(9061), 32, + ACTIONS(10331), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -572508,8 +643393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572532,10 +643417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [138918] = 3, + [178067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 16, + ACTIONS(10333), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572545,23 +643430,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(9318), 35, + ACTIONS(10335), 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, @@ -572570,28 +643457,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, - [138977] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [178125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 19, + ACTIONS(10174), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572610,11 +643494,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9874), 32, + ACTIONS(10176), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -572622,6 +643504,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, @@ -572643,11 +643526,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, - [139036] = 3, + anon_sym_DASH_GT, + [178183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 19, + ACTIONS(10379), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572666,11 +643549,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9936), 32, + ACTIONS(10381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -572678,6 +643559,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, @@ -572699,67 +643581,199 @@ 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, - [139095] = 3, + anon_sym_DASH_GT, + [178241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 19, + ACTIONS(7442), 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(9870), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7447), 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_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, + [178299] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5970), 1, + anon_sym_COLON, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10106), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(5671), 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(5663), 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, - [139154] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [178461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 19, + ACTIONS(10371), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572769,26 +643783,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(5638), 32, + ACTIONS(10373), 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, @@ -572797,7 +643810,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, @@ -572811,11 +643823,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, - [139213] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [178519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 19, + ACTIONS(10349), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572825,17 +643838,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9035), 32, + ACTIONS(10351), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -572843,9 +643857,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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572853,7 +643865,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, @@ -572868,10 +643879,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [139272] = 3, + anon_sym_GT2, + [178577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 21, + ACTIONS(10422), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572886,14 +643898,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9065), 30, + ACTIONS(10424), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -572901,7 +643912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572924,10 +643935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [139331] = 3, + [178635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 21, + ACTIONS(10363), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572942,14 +643953,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9069), 30, + ACTIONS(10365), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -572957,7 +643967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572980,10 +643990,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [139390] = 3, + [178693] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6618), 1, + anon_sym_COLON, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10103), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6616), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [178795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9084), 21, + ACTIONS(10062), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572998,14 +644085,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9086), 30, + ACTIONS(10064), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -573013,7 +644099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -573036,10 +644122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [139449] = 3, + [178853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 19, + ACTIONS(10210), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573058,11 +644144,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9878), 32, + ACTIONS(10212), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -573070,6 +644154,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, @@ -573091,11 +644176,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, - [139508] = 3, + anon_sym_DASH_GT, + [178911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 19, + ACTIONS(10218), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573114,11 +644199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9925), 32, + ACTIONS(10220), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -573126,6 +644209,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, @@ -573147,18 +644231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [139567] = 6, + anon_sym_DASH_GT, + [178969] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(11434), 1, + ACTIONS(11842), 1, anon_sym_LPAREN2, - STATE(6096), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 16, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2116), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9804), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573175,7 +644260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9433), 31, + ACTIONS(9806), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573184,7 +644269,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, @@ -573207,69 +644291,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [139632] = 6, + [179035] = 3, 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, + ACTIONS(10143), 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(9383), 31, + sym_identifier, + ACTIONS(10145), 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_DASH_GT_STAR, - [139697] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [179093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 19, + ACTIONS(9982), 1, + anon_sym_COMMA, + ACTIONS(9987), 1, + anon_sym_RBRACK, + ACTIONS(5671), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573288,11 +644372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9890), 32, + ACTIONS(5663), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -573321,67 +644402,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, - [139756] = 3, + anon_sym_DASH_GT, + [179155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9088), 21, + ACTIONS(10412), 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_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___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(9090), 30, + sym_identifier, + ACTIONS(10414), 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_LBRACK_LBRACK, + 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_GT2, - [139815] = 3, + anon_sym_COLON_RBRACK, + [179213] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9095), 21, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2116), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9780), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573391,27 +644479,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_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(9782), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -573419,64 +644502,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [139874] = 7, + anon_sym_DASH_GT_STAR, + [179279] = 7, 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, + ACTIONS(9596), 1, + anon_sym_requires, + ACTIONS(9593), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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_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_literal_suffix, - ACTIONS(8454), 19, + ACTIONS(7474), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -573485,19 +644555,31 @@ 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_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, - [139941] = 3, + anon_sym_COLON_RBRACK, + [179345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9041), 21, + ACTIONS(10337), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573512,14 +644594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9043), 30, + ACTIONS(10339), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -573527,7 +644608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -573550,93 +644631,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [140000] = 3, + [179403] = 17, 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, + ACTIONS(11309), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - 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__, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [140059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8996), 16, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12333), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12335), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8998), 35, + ACTIONS(10068), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_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, @@ -573648,27 +644694,16 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [140118] = 4, + [179489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11638), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9322), 16, + ACTIONS(10302), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573678,22 +644713,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(9324), 33, + ACTIONS(10304), 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, @@ -573702,123 +644740,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, anon_sym_bitor, - 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, - [140179] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [179547] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11660), 1, - anon_sym_LT, - STATE(3805), 1, - sym_template_argument_list, - ACTIONS(9711), 17, + ACTIONS(9932), 1, + anon_sym_requires, + ACTIONS(9929), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9713), 32, + ACTIONS(7623), 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_COLON, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [140242] = 3, + anon_sym_COLON_RBRACK, + [179613] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 16, + ACTIONS(10662), 1, + anon_sym_requires, + ACTIONS(10659), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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(9002), 35, + ACTIONS(8287), 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, @@ -573829,70 +644871,67 @@ 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, - [140301] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [179679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 19, + ACTIONS(8998), 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___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9597), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(9000), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [140360] = 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, + [179737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 19, + ACTIONS(10236), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573902,26 +644941,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(9894), 32, + ACTIONS(10238), 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, @@ -573930,7 +644968,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, @@ -573944,35 +644981,51 @@ 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, - [140419] = 6, + anon_sym_DASH_GT, + anon_sym_GT2, + [179795] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(11434), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(6104), 2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + STATE(6377), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 16, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12335), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(10066), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9379), 31, + ACTIONS(10068), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573980,8 +645033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -573993,21 +645044,17 @@ 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, - [140484] = 3, + [179879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 18, + ACTIONS(10240), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574017,16 +645064,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(6634), 33, + ACTIONS(10242), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -574034,10 +645083,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_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -574045,7 +645091,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, @@ -574060,181 +645105,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [140543] = 3, + anon_sym_GT2, + [179937] = 7, 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, + ACTIONS(12369), 1, + anon_sym_requires, + ACTIONS(12366), 2, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - [140602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4930), 19, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5805), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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, - anon_sym_DASH_GT, - ACTIONS(4928), 32, + ACTIONS(9338), 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, - [140661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9880), 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(9882), 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_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [140720] = 4, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [180003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 20, + ACTIONS(10218), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -574255,7 +645189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6596), 29, + ACTIONS(10220), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574275,9 +645209,10 @@ 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, @@ -574285,178 +645220,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [140781] = 3, + [180061] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 19, + ACTIONS(12375), 1, + anon_sym_requires, + ACTIONS(12372), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5809), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 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, - anon_sym_DASH_GT, - ACTIONS(9750), 32, + ACTIONS(9269), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [140840] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [180127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 19, + ACTIONS(7149), 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(9766), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7151), 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_COLON_COLON, + 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_STAR, - [140899] = 3, + anon_sym_DASH_GT, + [180185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 19, + ACTIONS(7491), 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(9898), 32, + sym_identifier, + ACTIONS(7493), 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_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [140958] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [180243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 19, + ACTIONS(10302), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574475,11 +645411,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9699), 32, + ACTIONS(10304), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -574487,6 +645421,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, @@ -574508,11 +645443,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, - [141017] = 3, + anon_sym_DASH_GT, + [180301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 16, + ACTIONS(10968), 1, + anon_sym_LT, + STATE(3319), 1, + sym_template_argument_list, + ACTIONS(10094), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574523,15 +645462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9013), 35, + ACTIONS(10096), 31, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -574551,24 +645490,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, - [141076] = 3, + anon_sym_DASH_GT, + [180363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 21, + ACTIONS(10404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574583,14 +645519,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9047), 30, + ACTIONS(10406), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -574598,7 +645533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -574621,10 +645556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [141135] = 3, + [180421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 16, + ACTIONS(10408), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574634,23 +645569,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(9447), 35, + ACTIONS(10410), 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, @@ -574659,91 +645596,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, - [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_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [141267] = 3, + [180479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 18, + ACTIONS(10105), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574753,16 +645624,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(6614), 33, + ACTIONS(10103), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -574770,10 +645643,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_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -574781,7 +645651,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, @@ -574796,10 +645665,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141326] = 3, + anon_sym_GT2, + [180537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 18, + ACTIONS(10306), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574818,7 +645688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6626), 33, + ACTIONS(10308), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -574827,7 +645697,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, @@ -574852,10 +645721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141385] = 3, + [180595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 18, + ACTIONS(10379), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574865,16 +645734,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(6630), 33, + ACTIONS(10381), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -574882,11 +645753,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_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, + [180653] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5778), 1, + anon_sym_SEMI, + ACTIONS(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9614), 1, + anon_sym_LPAREN2, + ACTIONS(9620), 1, + anon_sym_LBRACK, + ACTIONS(5699), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -574900,6 +645803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + ACTIONS(5663), 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, @@ -574908,10 +645819,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141444] = 3, + ACTIONS(5671), 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, + [180723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 19, + ACTIONS(10254), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574921,26 +645850,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(9932), 32, + ACTIONS(10256), 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, @@ -574949,7 +645877,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 +645890,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, + [180781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 19, + ACTIONS(10258), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574977,26 +645905,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(9948), 32, + ACTIONS(10260), 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, @@ -575005,7 +645932,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, @@ -575019,132 +645945,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, - [141562] = 8, - 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, - 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___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, - [141631] = 7, - 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, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - 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, - [141698] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [180839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 18, + ACTIONS(10385), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575154,16 +645960,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(6610), 33, + ACTIONS(10387), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -575171,10 +645979,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_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -575182,7 +645987,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, @@ -575197,10 +646001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141757] = 3, + anon_sym_GT2, + [180897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 18, + ACTIONS(10202), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575210,16 +646015,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(6618), 33, + ACTIONS(10204), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -575227,10 +646034,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_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -575238,7 +646042,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, @@ -575253,10 +646056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [141816] = 3, + anon_sym_GT2, + [180955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 21, + ACTIONS(10341), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575271,14 +646075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9061), 30, + ACTIONS(10343), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -575286,7 +646089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -575309,10 +646112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [141875] = 3, + [181013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 19, + ACTIONS(10422), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575331,11 +646134,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9790), 32, + ACTIONS(10424), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -575343,6 +646144,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, @@ -575364,11 +646166,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, - [141934] = 3, + anon_sym_DASH_GT, + [181071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 19, + ACTIONS(10268), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575378,26 +646180,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(9810), 32, + ACTIONS(10270), 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, @@ -575406,7 +646207,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, @@ -575420,15 +646220,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, - [141993] = 4, + anon_sym_DASH_GT, + anon_sym_GT2, + [181129] = 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(10190), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575438,26 +646235,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(5638), 29, + ACTIONS(10192), 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, @@ -575466,10 +646262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -575477,15 +646275,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, - [142054] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [181187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_LT, - STATE(3151), 1, - sym_template_argument_list, - ACTIONS(9650), 19, + ACTIONS(10284), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575497,6 +646292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -575505,7 +646301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9652), 30, + ACTIONS(10286), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -575536,14 +646332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [142117] = 5, + [181245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11663), 1, - anon_sym_LT, - STATE(3131), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(10389), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575553,15 +646345,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(9652), 32, + ACTIONS(10391), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -575569,9 +646364,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, @@ -575579,7 +646372,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, @@ -575594,10 +646386,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142180] = 3, + anon_sym_GT2, + [181303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 19, + ACTIONS(10416), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575616,11 +646409,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9832), 32, + ACTIONS(10418), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -575628,6 +646419,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, @@ -575649,11 +646441,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, - [142239] = 3, + anon_sym_DASH_GT, + [181361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 16, + ACTIONS(12380), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(12378), 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, + [181419] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2116), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9792), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575670,17 +646525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9310), 35, + ACTIONS(9794), 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, @@ -575702,14 +646555,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, - [142298] = 3, + [181485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 19, + ACTIONS(10206), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575719,26 +646569,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(3488), 32, + ACTIONS(10208), 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, @@ -575747,7 +646596,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, @@ -575761,11 +646609,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, - [142357] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [181543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 16, + ACTIONS(10228), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575775,23 +646624,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(9363), 35, + ACTIONS(10230), 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, @@ -575800,28 +646651,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, - [142416] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [181601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9084), 19, + ACTIONS(10379), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575831,17 +646679,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9086), 32, + ACTIONS(10381), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -575849,9 +646698,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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -575859,7 +646706,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, @@ -575874,17 +646720,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142475] = 6, + anon_sym_GT2, + [181659] = 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(10379), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575894,22 +646734,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(9493), 31, + ACTIONS(10381), 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, @@ -575918,25 +646761,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [142540] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [181717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 19, + ACTIONS(10232), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575955,11 +646798,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9940), 32, + ACTIONS(10234), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -575967,6 +646808,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, @@ -575988,13 +646830,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, - [142599] = 4, + anon_sym_DASH_GT, + [181775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9711), 20, + ACTIONS(5671), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576004,18 +646844,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(5663), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -576023,7 +646861,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, @@ -576031,6 +646871,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, @@ -576045,15 +646886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [142660] = 5, + [181833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11666), 1, - anon_sym_LT, - STATE(5732), 1, - sym_template_argument_list, - ACTIONS(9711), 19, + ACTIONS(5671), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576065,6 +646901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, @@ -576073,7 +646910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9713), 30, + ACTIONS(5663), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -576104,12 +646941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [142723] = 4, + [181891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9711), 18, + ACTIONS(10222), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576128,7 +646963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9713), 32, + ACTIONS(10224), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -576161,17 +646996,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142784] = 6, + [181949] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - STATE(5977), 2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 20, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10178), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -576183,16 +647024,14 @@ 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(9433), 27, + ACTIONS(10180), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576211,19 +647050,17 @@ 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, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [142849] = 3, + [182019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 19, + ACTIONS(10210), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576233,26 +647070,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(9780), 32, + ACTIONS(10212), 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, @@ -576261,7 +647097,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, @@ -576275,11 +647110,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [142908] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [182077] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 16, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2116), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9784), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576296,17 +647140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8887), 35, + ACTIONS(9786), 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, @@ -576328,23 +647170,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, - [142967] = 7, + [182143] = 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(10412), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576354,74 +647184,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_DOT, - anon_sym_DASH_GT, - ACTIONS(7097), 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, - [143034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9365), 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(9367), 35, + ACTIONS(10414), 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, @@ -576430,28 +647211,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, - [143093] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [182201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 16, + ACTIONS(10345), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576466,12 +647244,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(8911), 35, + ACTIONS(10347), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -576479,6 +647258,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, @@ -576490,24 +647270,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, - [143152] = 3, + anon_sym_DASH_GT, + [182259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 20, + ACTIONS(10379), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576528,7 +647305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9705), 31, + ACTIONS(10381), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -576536,7 +647313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -576560,10 +647336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [143211] = 3, + [182317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 16, + ACTIONS(10218), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576573,23 +647349,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(9371), 35, + ACTIONS(10220), 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, @@ -576598,55 +647376,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [182375] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 16, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(9375), 35, + ACTIONS(10068), 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, @@ -576658,63 +647450,43 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [143329] = 7, + [182455] = 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, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5805), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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_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_literal_suffix, - ACTIONS(8466), 19, + ACTIONS(9338), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -576723,19 +647495,33 @@ 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_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, - [143396] = 3, + anon_sym_COLON_RBRACK, + [182521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 19, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7359), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576750,12 +647536,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(7361), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576765,6 +647548,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, @@ -576777,23 +647561,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, - [143455] = 4, + [182581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11671), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 21, + ACTIONS(10341), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576803,19 +647585,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(9699), 29, + ACTIONS(10343), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -576823,6 +647602,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, @@ -576830,6 +647612,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, @@ -576844,67 +647627,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [143516] = 3, + [182639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 19, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5809), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 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, - anon_sym_DASH_GT, - ACTIONS(9754), 32, + ACTIONS(9269), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [143575] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [182705] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 19, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2116), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9796), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576919,22 +647712,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(9802), 32, + ACTIONS(9798), 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, @@ -576946,21 +647734,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, - [143634] = 3, + [182771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 19, + ACTIONS(10306), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576970,26 +647758,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(9866), 32, + ACTIONS(10308), 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, @@ -576998,7 +647785,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, @@ -577012,83 +647798,29 @@ 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, - [143693] = 4, + anon_sym_DASH_GT, + anon_sym_GT2, + [182829] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11673), 1, - sym_literal_suffix, - ACTIONS(5645), 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(5638), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9662), 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(10050), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, 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, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10113), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -577105,12 +647837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(9118), 21, + sym_identifier, + ACTIONS(10115), 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, @@ -577122,17 +647857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_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, - [143819] = 3, + anon_sym_COLON_RBRACK, + [182901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9900), 19, + ACTIONS(10194), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577151,11 +647884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9902), 32, + ACTIONS(10196), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -577163,6 +647894,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, @@ -577184,11 +647916,101 @@ 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, - [143878] = 3, + anon_sym_DASH_GT, + [182959] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9907), 19, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6614), 1, + anon_sym_COLON, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10126), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [183061] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10178), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577203,22 +648025,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, - anon_sym_DASH_GT, - ACTIONS(9909), 32, + ACTIONS(10180), 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, @@ -577230,53 +648045,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_DASH_GT_STAR, - [143937] = 4, + [183131] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 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(5697), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5638), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5836), 1, + anon_sym_SEMI, + ACTIONS(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9614), 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(9620), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(5699), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -577290,45 +648082,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143998] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11675), 1, - sym_literal_suffix, - ACTIONS(5638), 24, + ACTIONS(5663), 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_LBRACK, + 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_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), 26, + ACTIONS(5671), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577338,54 +648108,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_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, - [144059] = 3, + [183201] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 16, + ACTIONS(11075), 1, + anon_sym_EQ, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, + anon_sym_PIPE, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, + anon_sym_AMP, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, + anon_sym_bitor, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, + anon_sym_bitand, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12325), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12347), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12333), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12335), 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(8952), 35, + ACTIONS(11077), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -577397,83 +648192,66 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [144118] = 6, + [183303] = 3, 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(10353), 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(9493), 27, + ACTIONS(10355), 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_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, - [144183] = 3, + anon_sym_GT2, + [183361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 16, + ACTIONS(10198), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577488,12 +648266,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(8944), 35, + ACTIONS(10200), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -577501,6 +648280,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, @@ -577512,24 +648292,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, - [144242] = 3, + anon_sym_DASH_GT, + [183419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 18, + ACTIONS(5671), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577548,7 +648325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9705), 33, + ACTIONS(5663), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -577557,7 +648334,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_RBRACK, anon_sym_QMARK, @@ -577582,10 +648358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144301] = 3, + [183477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9711), 19, + ACTIONS(10129), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577595,26 +648371,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(9713), 32, + ACTIONS(10131), 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, @@ -577623,7 +648398,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, @@ -577637,11 +648411,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, - [144360] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [183535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9080), 19, + ACTIONS(10367), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577651,17 +648426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9082), 32, + ACTIONS(10369), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -577669,9 +648445,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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -577679,7 +648453,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 +648467,11 @@ 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, + [183593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 16, + ACTIONS(10379), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577707,23 +648481,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(9391), 35, + ACTIONS(10381), 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, @@ -577732,28 +648508,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - 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, + anon_sym_DASH_GT, + anon_sym_GT2, + [183651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 25, + ACTIONS(7197), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7199), 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(5663), 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(5671), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577763,33 +648571,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_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(10564), 26, + [183713] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10082), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(10084), 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, @@ -577802,16 +648635,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [144537] = 4, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [183785] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11677), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 19, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10086), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577825,22 +648675,16 @@ 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, + ACTIONS(10088), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -577852,77 +648696,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [144598] = 3, + anon_sym_DASH_GT_STAR, + [183857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 19, + ACTIONS(9006), 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___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9738), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(9008), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [144657] = 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, + [183915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 16, + ACTIONS(10232), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577932,23 +648772,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(8422), 35, + ACTIONS(10234), 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, @@ -577957,32 +648799,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, - [144716] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [183973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_LT, - STATE(5312), 1, - sym_template_argument_list, - ACTIONS(9650), 19, + ACTIONS(9603), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577992,17 +648827,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(9652), 30, + ACTIONS(9601), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -578010,7 +648844,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, @@ -578018,6 +648854,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, @@ -578032,11 +648869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [144779] = 3, + [184031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 19, + ACTIONS(10345), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578046,26 +648882,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(9886), 32, + ACTIONS(10347), 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, @@ -578074,7 +648909,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, @@ -578088,11 +648922,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, - [144838] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [184089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9088), 19, + ACTIONS(10404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578106,13 +648941,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(9090), 32, + ACTIONS(10406), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -578121,8 +648955,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -578145,10 +648979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144897] = 3, + [184147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9095), 19, + ACTIONS(10206), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578162,13 +648996,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(9097), 32, + ACTIONS(10208), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -578177,8 +649010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -578201,48 +649034,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144956] = 3, + [184205] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 16, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(3869), 1, + sym_attribute_specifier, + STATE(6976), 1, + sym_field_declaration_list, + STATE(10755), 1, + sym_virtual_specifier, + STATE(11789), 1, + sym_base_class_clause, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7370), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8956), 35, + ACTIONS(7372), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, @@ -578253,14 +649096,12 @@ 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, - [145015] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [184281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9041), 19, + ACTIONS(8898), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578270,17 +649111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9043), 32, + ACTIONS(3472), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -578288,9 +649130,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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -578298,7 +649138,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,77 +649152,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145074] = 7, + anon_sym_GT2, + [184339] = 6, 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, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(11996), 1, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(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, + STATE(6505), 1, + sym_template_argument_list, + ACTIONS(7442), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -578392,7 +649171,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, @@ -578404,14 +649182,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9383), 27, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7447), 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, @@ -578422,8 +649203,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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -578431,15 +649211,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [145206] = 5, + [184403] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11663), 1, - anon_sym_LT, - STATE(3137), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(11842), 1, + anon_sym_LPAREN2, + ACTIONS(11844), 1, + anon_sym_LBRACK, + STATE(2116), 1, + sym_parameter_list, + STATE(6200), 1, + sym__function_declarator_seq, + ACTIONS(9800), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578450,24 +649233,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, - ACTIONS(9652), 32, + anon_sym_DASH_GT, + ACTIONS(9802), 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, @@ -578479,21 +649259,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, - [145269] = 3, + anon_sym_DASH_GT_STAR, + [184469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(10408), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578512,11 +649292,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(10410), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -578524,6 +649302,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, @@ -578545,11 +649324,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, - [145328] = 3, + anon_sym_DASH_GT, + [184527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 18, + ACTIONS(10214), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578568,7 +649347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8559), 33, + ACTIONS(10216), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -578577,7 +649356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -578602,10 +649380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145387] = 3, + [184585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 16, + ACTIONS(10363), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578620,12 +649398,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(9335), 35, + ACTIONS(10365), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -578633,6 +649412,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, @@ -578644,51 +649424,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [145446] = 3, + anon_sym_DASH_GT, + [184643] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 16, + ACTIONS(11079), 1, + anon_sym_EQ, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, + anon_sym_PIPE, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, + anon_sym_AMP, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, + anon_sym_bitor, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, + anon_sym_bitand, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12325), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12347), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12333), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12335), 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(9339), 35, + ACTIONS(11081), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -578700,24 +649511,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [145505] = 3, + [184745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(10412), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578736,11 +649534,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(10414), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -578748,6 +649544,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, @@ -578769,11 +649566,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [145564] = 3, + anon_sym_DASH_GT, + [184803] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 16, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10046), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578788,19 +649598,15 @@ 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(7966), 35, + ACTIONS(10048), 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, @@ -578821,154 +649627,70 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [145623] = 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(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, + [184873] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 19, + ACTIONS(12386), 1, + anon_sym_delete, + ACTIONS(12388), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10105), 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_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, - ACTIONS(9047), 32, + ACTIONS(10103), 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_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, + 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, - [145795] = 3, + [184939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9630), 19, + ACTIONS(10333), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578987,11 +649709,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9632), 32, + ACTIONS(10335), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -578999,6 +649719,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, @@ -579020,15 +649741,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, - [145854] = 5, + anon_sym_DASH_GT, + [184997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11660), 1, - anon_sym_LT, - STATE(5840), 1, - sym_template_argument_list, - ACTIONS(9711), 17, + ACTIONS(10236), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579039,6 +649756,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, @@ -579046,7 +649764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9713), 32, + ACTIONS(10238), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -579079,40 +649797,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145917] = 3, + [185055] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(10105), 1, + anon_sym_EQ, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, + anon_sym_PIPE, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, + anon_sym_AMP, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, + anon_sym_bitor, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, + anon_sym_bitand, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12325), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12347), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12333), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12335), 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(9762), 32, + ACTIONS(10103), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -579124,21 +649873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [145976] = 3, + [185157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(6822), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6824), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579153,12 +649895,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(6817), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579180,21 +649919,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, - [146035] = 3, + [185217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 16, + ACTIONS(10186), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579204,23 +649943,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(9409), 35, + ACTIONS(10188), 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, @@ -579229,28 +649970,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, - [146094] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [185275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(10416), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579260,26 +649998,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(9762), 32, + ACTIONS(10418), 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, @@ -579288,7 +650025,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 +650038,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, - [146153] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [185333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(10240), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579325,11 +650062,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(10242), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -579337,6 +650072,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, @@ -579358,11 +650094,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, - [146212] = 3, + anon_sym_DASH_GT, + [185391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 19, + ACTIONS(10379), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579372,17 +650108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9065), 32, + ACTIONS(10381), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -579390,9 +650127,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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -579400,7 +650135,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, @@ -579415,28 +650149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [146271] = 7, + anon_sym_GT2, + [185449] = 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(8898), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -579445,6 +650163,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, @@ -579452,10 +650173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8454), 21, + sym_identifier, + ACTIONS(3472), 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, @@ -579467,6 +650193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -579475,10 +650204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [146338] = 3, + anon_sym_COLON_RBRACK, + [185507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 19, + ACTIONS(10316), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579497,11 +650227,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(10318), 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 +650237,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 +650259,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, - [146397] = 3, + anon_sym_DASH_GT, + [185565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 19, + ACTIONS(7209), 1, + anon_sym_EQ, + ACTIONS(7211), 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(5671), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579548,37 +650293,22 @@ 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, - anon_sym_DASH_GT, - ACTIONS(9628), 32, + ACTIONS(5663), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -579586,16 +650316,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [146456] = 3, + anon_sym_DASH_GT, + [185627] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9685), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -579605,22 +650352,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, - anon_sym_DASH_GT, - ACTIONS(9687), 32, + ACTIONS(10068), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -579632,21 +650372,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_STAR, - [146515] = 3, + [185701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 16, + ACTIONS(10147), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579656,23 +650393,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), 35, + ACTIONS(10149), 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, @@ -579681,59 +650420,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - 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, - [146574] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [185759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 19, + ACTIONS(9029), 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___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9798), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(9031), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_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, + [185817] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6610), 1, + anon_sym_COLON, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10108), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6552), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6608), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [185919] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7283), 1, + anon_sym_EQ, + ACTIONS(7285), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -579747,6 +650586,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + ACTIONS(5671), 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(5663), 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, @@ -579754,42 +650623,68 @@ 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, + [185981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 19, + ACTIONS(9097), 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___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9628), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(9099), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_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, + [186039] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7219), 1, + anon_sym_EQ, + ACTIONS(7221), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -579803,6 +650698,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + ACTIONS(5671), 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(5663), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -579810,11 +650735,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [146692] = 3, + anon_sym_DASH_GT, + [186101] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(11996), 1, + anon_sym_LT, + STATE(5795), 1, + sym_template_argument_list, + ACTIONS(7543), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym___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(5689), 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, + [186165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 19, + ACTIONS(10371), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579833,11 +650816,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9628), 32, + ACTIONS(10373), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -579845,6 +650826,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, @@ -579866,11 +650848,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, - [146751] = 3, + anon_sym_DASH_GT, + [186223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 16, + ACTIONS(10254), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579885,12 +650867,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(8994), 35, + ACTIONS(10256), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -579898,6 +650881,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, @@ -579909,24 +650893,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [146810] = 3, + anon_sym_DASH_GT, + [186281] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 16, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10113), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579941,19 +650938,15 @@ 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(8994), 35, + ACTIONS(10115), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -579972,44 +650965,149 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [146869] = 3, + [186353] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 16, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, + anon_sym_COLON, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10120), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [186455] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11045), 1, + anon_sym_EQ, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + ACTIONS(12070), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12327), 1, + anon_sym_PIPE, + ACTIONS(12329), 1, + anon_sym_CARET, + ACTIONS(12331), 1, + anon_sym_AMP, + ACTIONS(12337), 1, + anon_sym_GT_EQ, + ACTIONS(12341), 1, + anon_sym_bitor, + ACTIONS(12343), 1, + anon_sym_xor, + ACTIONS(12345), 1, + anon_sym_bitand, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12325), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12339), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12347), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(12333), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12335), 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(9298), 35, + ACTIONS(11047), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -580021,31 +651119,13 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [146928] = 6, + [186557] = 4, 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, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7668), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -580066,14 +651146,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9379), 27, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7670), 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, @@ -580084,78 +651167,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [146993] = 5, + [186617] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11663), 1, - anon_sym_LT, - STATE(5351), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10082), 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_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_bitor, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9652), 32, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(10084), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [147056] = 3, + anon_sym_COLON_RBRACK, + [186689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 16, + ACTIONS(7814), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580172,7 +651258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8994), 35, + ACTIONS(7816), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -580182,6 +651268,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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -580204,14 +651292,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, - [147115] = 3, + [186747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 16, + ACTIONS(10206), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580226,12 +651311,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(9417), 35, + ACTIONS(10208), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -580239,6 +651325,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, @@ -580250,24 +651337,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, - [147174] = 3, + anon_sym_DASH_GT, + [186805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 19, + ACTIONS(10228), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580286,11 +651370,9 @@ 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(10230), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -580298,6 +651380,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, @@ -580319,11 +651402,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, + [186863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 18, + ACTIONS(10258), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580342,7 +651425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6622), 33, + ACTIONS(10260), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580351,7 +651434,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,10 +651458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147292] = 3, + [186921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9907), 20, + ACTIONS(10268), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580389,18 +651471,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(9909), 30, + ACTIONS(10270), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580408,7 +651488,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, @@ -580416,6 +651498,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, @@ -580430,11 +651513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [147350] = 3, + [186979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9732), 20, + ACTIONS(10117), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580444,18 +651526,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(9734), 30, + ACTIONS(10119), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580463,7 +651543,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, @@ -580471,6 +651553,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, @@ -580485,11 +651568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [147408] = 3, + [187037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 18, + ACTIONS(10385), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580508,7 +651590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9628), 32, + ACTIONS(10387), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580541,10 +651623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147466] = 3, + [187095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 18, + ACTIONS(10389), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580563,7 +651645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4928), 32, + ACTIONS(10391), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580596,10 +651678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147524] = 3, + [187153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 18, + ACTIONS(10316), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580609,16 +651691,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(10318), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580626,9 +651710,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, @@ -580636,7 +651718,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, @@ -580651,10 +651732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147582] = 3, + anon_sym_GT2, + [187211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 20, + ACTIONS(10190), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580664,18 +651746,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(10192), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580683,7 +651763,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 +651773,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,16 +651788,33 @@ 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, + [187269] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 18, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + ACTIONS(11347), 1, + anon_sym_LBRACK, + ACTIONS(11788), 1, + anon_sym_DOT_STAR, + STATE(6377), 1, + sym_argument_list, + STATE(6383), 1, + sym_subscript_argument_list, + ACTIONS(11391), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(12084), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12321), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12323), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10066), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -580724,21 +651824,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(9628), 32, + ACTIONS(10068), 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, @@ -580750,131 +651844,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [147698] = 3, + anon_sym_DASH_GT_STAR, + [187345] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 18, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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(9898), 32, + ACTIONS(8287), 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, - [147756] = 3, + anon_sym_COLON_RBRACK, + [187411] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(8372), 1, + anon_sym_LPAREN2, + STATE(6170), 1, + sym_argument_list, + STATE(6770), 1, + sym_initializer_list, + ACTIONS(7361), 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(7359), 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, + [187478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9693), 20, + ACTIONS(10416), 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_GT_EQ, anon_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(9695), 30, + sym_identifier, + ACTIONS(10418), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [147814] = 3, + anon_sym_COLON_RBRACK, + [187535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 18, + ACTIONS(7491), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580889,21 +652042,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(9742), 32, + anon_sym_DASH_GT, + ACTIONS(7493), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -580915,379 +652067,544 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, + [187592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 18, + STATE(3388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12390), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 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(9770), 32, + ACTIONS(7298), 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_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147930] = 9, + anon_sym_COLON_RBRACK, + [187653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - 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, + STATE(3388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12390), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 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(7255), 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_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, - ACTIONS(5645), 17, + anon_sym_COLON_RBRACK, + [187714] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6642), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 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___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, - [148000] = 3, + sym_identifier, + ACTIONS(7318), 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, + [187775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 18, + STATE(6644), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12394), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9794), 32, + sym_identifier, + ACTIONS(7324), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [148058] = 24, + [187836] = 5, 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, + STATE(6649), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12396), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7263), 19, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, 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_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, + sym_identifier, + ACTIONS(7265), 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, - ACTIONS(11690), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [187897] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6650), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12398), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 19, + aux_sym_preproc_elif_token1, 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(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_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 17, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7271), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_DASH_GT_STAR, - [148158] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [187958] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 20, + STATE(6724), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12400), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7263), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_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_COLON, anon_sym_DOT, - ACTIONS(9824), 30, + ACTIONS(7265), 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_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [148216] = 3, + anon_sym_COLON_RBRACK, + [188019] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 20, + ACTIONS(9898), 1, + anon_sym_DASH_GT, + ACTIONS(9932), 1, + anon_sym_requires, + STATE(6497), 1, + sym_trailing_return_type, + ACTIONS(9929), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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_COLON, + anon_sym_DOT, + ACTIONS(7623), 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_EQ, - anon_sym_GT_GT_EQ, + 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, + [188088] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6726), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12402), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 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(9820), 30, + ACTIONS(7271), 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_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, + anon_sym_COLON_RBRACK, + [188149] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 20, - aux_sym_preproc_elif_token1, + ACTIONS(10654), 1, + anon_sym_DASH_GT, + ACTIONS(10662), 1, + anon_sym_requires, + STATE(6502), 1, + sym_trailing_return_type, + ACTIONS(10659), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -581296,25 +652613,65 @@ 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_DOT, + ACTIONS(8287), 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, + [188218] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12390), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 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(9936), 30, + ACTIONS(7302), 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, @@ -581327,21 +652684,106 @@ 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, - [148332] = 3, + [188279] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 20, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 1, + anon_sym_LPAREN2, + ACTIONS(5655), 1, + anon_sym_LBRACK, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(8776), 1, + anon_sym_STAR, + ACTIONS(8778), 1, + anon_sym_AMP_AMP, + ACTIONS(8780), 1, + anon_sym_AMP, + ACTIONS(8784), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5388), 1, + sym_parameter_list, + STATE(8855), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9878), 1, + sym__declarator, + STATE(10092), 1, + sym__abstract_declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7862), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [188384] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10143), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581351,25 +652793,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(9802), 30, + anon_sym_DASH_GT, + ACTIONS(10145), 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, @@ -581378,36 +652819,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [148390] = 7, + anon_sym_DASH_GT_STAR, + [188441] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, + ACTIONS(12369), 1, anon_sym_requires, - ACTIONS(7219), 2, + ACTIONS(12404), 1, + anon_sym_DASH_GT, + STATE(6504), 1, + sym_trailing_return_type, + ACTIONS(12366), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(5432), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5352), 2, + STATE(5805), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8913), 11, + ACTIONS(9336), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -581416,10 +652861,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_DOT, - ACTIONS(8915), 32, + ACTIONS(9338), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -581435,7 +652879,6 @@ 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, @@ -581450,20 +652893,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_COLON_RBRACK, - [148456] = 7, + [188510] = 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(10202), 16, + ACTIONS(7854), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581480,15 +652914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10200), 30, + ACTIONS(7856), 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, @@ -581511,73 +652948,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [148522] = 3, + [188567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 20, + STATE(6665), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12407), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7304), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9828), 30, + sym_identifier, + ACTIONS(7306), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [148580] = 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(10174), 16, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [188628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7842), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581594,15 +653024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10172), 30, + ACTIONS(7844), 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, @@ -581625,10 +653058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [148646] = 3, + [188685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 20, + ACTIONS(7822), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581638,25 +653071,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(9858), 30, + anon_sym_DASH_GT, + ACTIONS(7824), 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, @@ -581665,155 +653097,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [148704] = 3, + anon_sym_DASH_GT_STAR, + [188742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 20, + STATE(6665), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12407), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9758), 30, + sym_identifier, + ACTIONS(7310), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [148762] = 23, + [188803] = 5, 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, + STATE(6665), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12407), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 19, + aux_sym_preproc_elif_token1, 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_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7298), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT_STAR, - [148860] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [188864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 20, + ACTIONS(7850), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581823,25 +653237,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(9936), 30, + anon_sym_DASH_GT, + ACTIONS(7852), 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, @@ -581850,25 +653263,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [148918] = 3, + anon_sym_DASH_GT_STAR, + [188921] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 19, + STATE(6665), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12407), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -581887,10 +653308,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8699), 31, + ACTIONS(7255), 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, @@ -581902,7 +653326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -581910,310 +653334,293 @@ 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, - [148976] = 3, + [188982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 18, + ACTIONS(10385), 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(9597), 32, + sym_identifier, + ACTIONS(10387), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149034] = 3, + anon_sym_COLON_RBRACK, + [189039] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9911), 18, + STATE(6665), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12407), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9913), 32, + sym_identifier, + ACTIONS(7302), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149092] = 3, + [189100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 18, + ACTIONS(10190), 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(9886), 32, + sym_identifier, + ACTIONS(10192), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149150] = 3, + anon_sym_COLON_RBRACK, + [189157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 20, + STATE(6638), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12409), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7290), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9870), 30, + sym_identifier, + ACTIONS(7292), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [149208] = 3, + [189218] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 18, + STATE(6665), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12407), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9754), 32, + sym_identifier, + ACTIONS(7277), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, + [189279] = 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, - ACTIONS(9599), 17, + STATE(6665), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12407), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7279), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -582223,7 +653630,8 @@ 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, @@ -582231,7 +653639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 22, + sym_identifier, + ACTIONS(7281), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -582239,6 +653648,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_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,70 +653658,46 @@ 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, - [149332] = 21, + [189340] = 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(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - 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(9707), 2, - anon_sym_PIPE, - anon_sym_EQ, - 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(7858), 16, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7860), 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, @@ -582323,14 +653709,21 @@ 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, - [149426] = 3, + [189397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 18, + ACTIONS(7846), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582345,21 +653738,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(9858), 32, + anon_sym_DASH_GT, + ACTIONS(7848), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -582371,140 +653763,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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_DASH_GT_STAR, + [189454] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 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, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(9605), 1, + anon_sym_DASH_GT, + STATE(6819), 1, + sym_trailing_return_type, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, 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_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, + sym_identifier, + ACTIONS(7474), 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, - ACTIONS(11690), 2, + anon_sym_DOT_STAR, + [189523] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(9836), 1, + anon_sym_DASH_GT, + STATE(6821), 1, + sym_trailing_return_type, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 17, + aux_sym_preproc_elif_token1, 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_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_or, - ACTIONS(11692), 3, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7623), 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_SLASH, anon_sym_PERCENT, - ACTIONS(11702), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, + 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, + [189592] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(10609), 1, + anon_sym_DASH_GT, + STATE(6822), 1, + sym_trailing_return_type, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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, - ACTIONS(10437), 15, + 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(8287), 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_DASH_GT_STAR, - [149586] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [189661] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 20, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(12411), 1, + anon_sym_DASH_GT, + STATE(6823), 1, + sym_trailing_return_type, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5805), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9898), 30, + sym_identifier, + ACTIONS(9338), 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, + [189730] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5778), 1, + anon_sym_SEMI, + ACTIONS(5699), 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(5663), 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, @@ -582513,11 +654053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [149644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9689), 18, + ACTIONS(5671), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582531,22 +654067,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9691), 32, + [189793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7826), 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(7828), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -582558,149 +654114,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [149702] = 3, + anon_sym_DASH_GT_STAR, + [189850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 20, + ACTIONS(10105), 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_GT_EQ, anon_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(9790), 30, + sym_identifier, + ACTIONS(10103), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [149760] = 5, + anon_sym_COLON_RBRACK, + [189907] = 5, 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, + STATE(6623), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12414), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 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(7318), 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_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_GT2, - ACTIONS(5645), 18, + anon_sym_COLON_RBRACK, + [189968] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9605), 1, + anon_sym_DASH_GT, + ACTIONS(9679), 1, + anon_sym_requires, + STATE(6825), 1, + sym_trailing_return_type, + ACTIONS(9676), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - [149822] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, + sym_identifier, + ACTIONS(7474), 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, - 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_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_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 18, + anon_sym_DOT_STAR, + [190037] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9836), 1, + anon_sym_DASH_GT, + ACTIONS(9842), 1, + anon_sym_requires, + STATE(6767), 1, + sym_trailing_return_type, + ACTIONS(9839), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -582710,23 +654323,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(9709), 23, + ACTIONS(7623), 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, @@ -582737,301 +654349,280 @@ 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_COLON_RBRACK, - [149894] = 19, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [190106] = 9, 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, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(10654), 1, anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + STATE(6544), 1, + sym_trailing_return_type, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 10, 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_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 21, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(8287), 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_LT_EQ_GT, anon_sym_or, anon_sym_and, 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_COLON_RBRACK, + [190175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9732), 18, + ACTIONS(10367), 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(9734), 32, + sym_identifier, + ACTIONS(10369), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150042] = 3, + anon_sym_COLON_RBRACK, + [190232] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 18, + STATE(6665), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12416), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7173), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9925), 32, + sym_identifier, + ACTIONS(7175), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150100] = 5, + [190293] = 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(8998), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___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), 19, + sym_literal_suffix, + ACTIONS(9000), 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_RBRACK_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150162] = 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, + [190350] = 5, 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, + STATE(6721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12419), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7290), 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, - ACTIONS(9659), 29, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7292), 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_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, @@ -583041,102 +654632,134 @@ 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, - [150232] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [190411] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 18, + ACTIONS(10609), 1, + anon_sym_DASH_GT, + ACTIONS(10615), 1, + anon_sym_requires, + STATE(6769), 1, + sym_trailing_return_type, + ACTIONS(10612), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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, - ACTIONS(9814), 32, + sym_identifier, + ACTIONS(8287), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [150290] = 8, + [190480] = 25, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7389), 40, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(9168), 1, + anon_sym_COLON_COLON, + ACTIONS(11122), 1, anon_sym_STAR, + ACTIONS(11124), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11126), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5887), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9603), 1, + sym__scope_resolution, + STATE(10162), 1, + sym__abstract_declarator, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5970), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, 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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -583148,206 +654771,124 @@ 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, - [150358] = 3, + [190581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 18, + ACTIONS(10202), 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(9802), 32, + sym_identifier, + ACTIONS(10204), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150416] = 25, + anon_sym_COLON_RBRACK, + [190638] = 9, 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, + ACTIONS(12411), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9915), 20, + ACTIONS(12424), 1, + anon_sym_requires, + STATE(6779), 1, + sym_trailing_return_type, + ACTIONS(12421), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5805), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9917), 30, + sym_identifier, + ACTIONS(9338), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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, - [150576] = 3, + [190707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 18, + ACTIONS(7838), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583362,21 +654903,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(9758), 32, + anon_sym_DASH_GT, + ACTIONS(7840), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -583388,21 +654928,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, - [150634] = 3, + anon_sym_DASH_GT_STAR, + [190764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9907), 18, + ACTIONS(7359), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583417,21 +654957,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(9909), 32, + anon_sym_DASH_GT, + ACTIONS(7361), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -583443,76 +654982,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_DASH_GT, - [150692] = 3, + anon_sym_DASH_GT_STAR, + [190821] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 20, + ACTIONS(12427), 1, + anon_sym_delete, + ACTIONS(12429), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10105), 16, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym_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(10103), 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_LBRACK, + 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_LT_EQ_GT, - anon_sym_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_COLON_RBRACK, + [190886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 20, + ACTIONS(7771), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583522,25 +655064,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(9597), 30, + anon_sym_DASH_GT, + ACTIONS(7773), 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, @@ -583549,25 +655090,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, - [150808] = 3, + anon_sym_DASH_GT_STAR, + [190943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 18, + ACTIONS(7710), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583582,21 +655123,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(9932), 32, + anon_sym_DASH_GT, + ACTIONS(7712), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -583608,196 +655148,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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_DASH_GT_STAR, + [191000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 18, + ACTIONS(10280), 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(9824), 32, + sym_identifier, + ACTIONS(10282), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150924] = 5, + anon_sym_COLON_RBRACK, + [191057] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11436), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6785), 1, anon_sym_LBRACK, - STATE(5984), 1, - sym_new_declarator, - ACTIONS(9535), 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(9764), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9537), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(6782), 1, + sym_template_argument_list, + ACTIONS(6778), 3, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_LBRACK_LBRACK, + ACTIONS(6781), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [150986] = 3, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6774), 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, + [191124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 18, + ACTIONS(10363), 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(5638), 32, + sym_identifier, + ACTIONS(10365), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151044] = 7, + anon_sym_COLON_RBRACK, + [191181] = 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(10206), 16, + ACTIONS(7718), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583814,15 +655346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10204), 30, + ACTIONS(7720), 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, @@ -583845,10 +655380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [151110] = 3, + [191238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9711), 20, + ACTIONS(7735), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583858,25 +655393,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(9713), 30, + anon_sym_DASH_GT, + ACTIONS(7737), 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, @@ -583885,192 +655419,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [151168] = 3, + anon_sym_DASH_GT_STAR, + [191295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9685), 18, + ACTIONS(10404), 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(9687), 32, + sym_identifier, + ACTIONS(10406), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151226] = 3, + anon_sym_COLON_RBRACK, + [191352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 20, + ACTIONS(10341), 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_GT_EQ, anon_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(4928), 30, + sym_identifier, + ACTIONS(10343), 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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, - [151284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11724), 1, - anon_sym_COMMA, - ACTIONS(11726), 1, - anon_sym_RBRACK, - ACTIONS(5645), 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(5638), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_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, - [151346] = 3, + anon_sym_COLON_RBRACK, + [191409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 20, + ACTIONS(7763), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584080,25 +655555,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(9628), 30, + anon_sym_DASH_GT, + ACTIONS(7765), 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, @@ -584107,25 +655581,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, - [151404] = 3, + anon_sym_DASH_GT_STAR, + [191466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 18, + ACTIONS(7718), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584140,21 +655614,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(9836), 32, + anon_sym_DASH_GT, + ACTIONS(7720), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584166,21 +655639,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, - [151462] = 3, + anon_sym_DASH_GT_STAR, + [191523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 18, + ACTIONS(7747), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584195,21 +655668,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(9894), 32, + anon_sym_DASH_GT, + ACTIONS(7749), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584221,28 +655693,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [151520] = 3, + anon_sym_DASH_GT_STAR, + [191580] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 6, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(8372), 1, anon_sym_LPAREN2, + STATE(6364), 1, + sym_argument_list, + STATE(6784), 1, + sym_initializer_list, + ACTIONS(7361), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_LBRACK_COLON, - ACTIONS(11729), 44, + ACTIONS(7359), 35, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -584251,10 +655736,7 @@ 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, anon_sym_inline, @@ -584271,104 +655753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_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, - 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(9673), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(9675), 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, - [151650] = 10, + 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, + [191647] = 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(7718), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584383,15 +655781,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(9679), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7720), 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, @@ -584410,66 +655813,74 @@ 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, - [151722] = 3, + [191704] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 20, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(12404), 1, + anon_sym_DASH_GT, + STATE(6547), 1, + sym_trailing_return_type, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5805), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9628), 30, + ACTIONS(9338), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [151780] = 3, + anon_sym_COLON_RBRACK, + [191773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 18, + ACTIONS(7755), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584484,21 +655895,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(9738), 32, + anon_sym_DASH_GT, + ACTIONS(7757), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584510,139 +655920,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [151838] = 3, + anon_sym_DASH_GT_STAR, + [191830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 20, + ACTIONS(10288), 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_GT_EQ, anon_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(9774), 30, + sym_identifier, + ACTIONS(10290), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [151896] = 3, + anon_sym_COLON_RBRACK, + [191887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 20, + STATE(6721), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12419), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_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_COLON, anon_sym_DOT, - ACTIONS(9798), 30, + ACTIONS(7361), 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_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [151954] = 7, + anon_sym_COLON_RBRACK, + [191948] = 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(7806), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584659,15 +656061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10188), 30, + ACTIONS(7808), 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, @@ -584690,234 +656095,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [152020] = 3, + [192005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 20, + ACTIONS(10395), 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_GT_EQ, anon_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(9925), 30, + sym_identifier, + ACTIONS(10397), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [152078] = 3, + anon_sym_COLON_RBRACK, + [192062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 18, + ACTIONS(10408), 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(9940), 32, + sym_identifier, + ACTIONS(10410), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [152136] = 3, + anon_sym_COLON_RBRACK, + [192119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 20, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(11635), 1, + anon_sym_LT, + STATE(3458), 1, + sym_template_argument_list, + ACTIONS(7442), 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_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9874), 30, + ACTIONS(7447), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [152194] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [192182] = 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(10302), 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(10192), 30, + sym_identifier, + ACTIONS(10304), 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, + anon_sym_COLON_RBRACK, + [192239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10310), 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(10312), 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_STAR, - [152260] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [192296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 20, + ACTIONS(12110), 1, + sym_literal_suffix, + ACTIONS(5671), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584927,25 +656383,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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(9699), 30, + anon_sym_DASH_GT, + ACTIONS(5663), 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, @@ -584954,41 +656414,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [152318] = 10, + anon_sym_DASH_GT_STAR, + [192355] = 4, 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(9715), 14, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(5671), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585003,15 +656443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(9717), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5663), 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, @@ -585030,53 +656474,154 @@ 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, - [152390] = 3, + [192414] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 20, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 1, + anon_sym_SEMI, + ACTIONS(7361), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 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, + [192475] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(6282), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7201), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7207), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9519), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9754), 30, + sym_literal_suffix, + ACTIONS(9517), 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, + [192538] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5697), 1, + anon_sym_EQ, + ACTIONS(5836), 1, + anon_sym_SEMI, + ACTIONS(5699), 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(5663), 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, @@ -585085,392 +656630,250 @@ 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, + ACTIONS(5671), 17, 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_DASH_GT_STAR, - [152534] = 3, + anon_sym_DOT, + [192601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 20, + ACTIONS(4982), 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_GT_EQ, anon_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(9836), 30, + sym_identifier, + ACTIONS(4980), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [152592] = 3, + anon_sym_COLON_RBRACK, + [192658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 20, + ACTIONS(9006), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9742), 30, + sym_literal_suffix, + ACTIONS(9008), 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, + [192715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 20, + ACTIONS(10284), 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_GT_EQ, anon_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(9814), 30, + sym_identifier, + ACTIONS(10286), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [152708] = 27, + anon_sym_COLON_RBRACK, + [192772] = 9, 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, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(9898), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9685), 20, + STATE(6619), 1, + sym_trailing_return_type, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9687), 30, + ACTIONS(7623), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [152872] = 9, + anon_sym_COLON_RBRACK, + [192841] = 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(10333), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -585482,14 +656885,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(10335), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -585497,6 +656902,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, @@ -585510,15 +656916,18 @@ 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_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [152942] = 3, + [192898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 20, + ACTIONS(7775), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585528,25 +656937,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(9932), 30, + anon_sym_DASH_GT, + ACTIONS(7777), 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, @@ -585555,29 +656963,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, - [153000] = 5, + anon_sym_DASH_GT_STAR, + [192955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9544), 1, - anon_sym_COMMA, - ACTIONS(9549), 1, - anon_sym_RBRACK, - ACTIONS(5645), 18, + ACTIONS(7779), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585592,18 +656996,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(5638), 30, + anon_sym_DASH_GT, + ACTIONS(7781), 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, @@ -585616,67 +657021,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [153062] = 16, + anon_sym_DASH_GT_STAR, + [193012] = 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(7794), 16, 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_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(9709), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7796), 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, @@ -585688,17 +657075,21 @@ 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, - [153146] = 3, + [193069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 18, + ACTIONS(7798), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585713,21 +657104,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(9921), 32, + anon_sym_DASH_GT, + ACTIONS(7800), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -585739,51 +657129,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [153204] = 3, + anon_sym_DASH_GT_STAR, + [193126] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 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(5697), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9820), 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, + ACTIONS(5828), 1, + anon_sym_SEMI, + ACTIONS(5699), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -585797,95 +657161,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [153262] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10542), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(5663), 17, + anon_sym_DOT_DOT_DOT, 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(11710), 1, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5671), 17, 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_LT_EQ, anon_sym_LT, - ACTIONS(10544), 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, - [153364] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [193189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 20, + ACTIONS(11198), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585895,25 +657210,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_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(9770), 30, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(11196), 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, @@ -585922,141 +657242,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [153422] = 3, + anon_sym_DASH_GT_STAR, + [193246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 18, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(11635), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(7543), 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___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9874), 32, + ACTIONS(5689), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153480] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [193309] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 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(9681), 14, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(11132), 1, + anon_sym_STAR, + ACTIONS(11134), 1, + anon_sym_AMP_AMP, + ACTIONS(11136), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10183), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5968), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5970), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [193410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10222), 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, - ACTIONS(9683), 29, + 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(10224), 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_DASH_GT_STAR, - [153550] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [193467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 19, + ACTIONS(9029), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -586074,9 +657459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, sym_literal_suffix, - ACTIONS(8667), 31, + ACTIONS(9031), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -586108,243 +657492,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [153608] = 3, + [193524] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(11132), 1, + anon_sym_STAR, + ACTIONS(11134), 1, + anon_sym_AMP_AMP, + ACTIONS(11136), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10154), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6600), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6602), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [193625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 18, + ACTIONS(9097), 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___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), 32, + sym_literal_suffix, + ACTIONS(9099), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153666] = 14, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [193682] = 5, 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, + STATE(3388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12390), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7304), 11, 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_EQ, - ACTIONS(9709), 26, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7306), 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_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_GT_STAR, - [153746] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6605), 1, - anon_sym_LBRACK, - ACTIONS(6598), 2, - 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, - anon_sym_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, - [153808] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [193743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 20, + ACTIONS(10337), 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_GT_EQ, anon_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(5638), 30, + sym_identifier, + ACTIONS(10339), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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_COLON_RBRACK, + [193800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 18, + ACTIONS(7802), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -586359,21 +657750,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(9936), 32, + anon_sym_DASH_GT, + ACTIONS(7804), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -586385,73 +657775,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [153924] = 12, + anon_sym_DASH_GT_STAR, + [193857] = 5, 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, + STATE(3388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12390), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 11, 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, 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_COLON, + anon_sym_DOT, + ACTIONS(7277), 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_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, @@ -586459,90 +657837,125 @@ 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [193918] = 3, 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, + ACTIONS(10194), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, 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_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, - 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_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, + sym_identifier, + ACTIONS(10196), 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, - ACTIONS(11690), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [193975] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12390), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7279), 11, 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_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10491), 13, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7281), 33, + anon_sym_DOT_DOT_DOT, 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, - [154106] = 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_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_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, + [194036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 18, + ACTIONS(7834), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -586557,21 +657970,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(9780), 32, + anon_sym_DASH_GT, + ACTIONS(7836), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -586583,21 +657995,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [154164] = 3, + anon_sym_DASH_GT_STAR, + [194093] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 1, + anon_sym_LPAREN2, + ACTIONS(5655), 1, + anon_sym_LBRACK, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(8932), 1, + anon_sym_STAR, + ACTIONS(8934), 1, + anon_sym_AMP_AMP, + ACTIONS(8936), 1, + anon_sym_AMP, + ACTIONS(8938), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(8753), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9892), 1, + sym__declarator, + STATE(10066), 1, + sym__abstract_declarator, + STATE(12242), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11834), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(10261), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [194200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 20, + ACTIONS(10254), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -586618,7 +658109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9940), 30, + ACTIONS(10256), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -586638,10 +658129,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACE, + 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, @@ -586649,320 +658139,342 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [154222] = 25, + [194257] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 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, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(9590), 1, + anon_sym_DASH_GT, + STATE(6464), 1, + sym_trailing_return_type, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, anon_sym_AMP, - ACTIONS(11706), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7474), 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, - ACTIONS(11710), 1, + 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, - 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [194326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10258), 20, + aux_sym_preproc_elif_token1, 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_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 15, + 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(10260), 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_DASH_GT_STAR, - [154324] = 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, + [194383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 18, + ACTIONS(10371), 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(9944), 32, + sym_identifier, + ACTIONS(10373), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - 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_COLON_RBRACK, + [194440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 20, + ACTIONS(10264), 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_GT_EQ, anon_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(9890), 30, + sym_identifier, + ACTIONS(10266), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [154440] = 3, + anon_sym_COLON_RBRACK, + [194497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9630), 18, + ACTIONS(10232), 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(9632), 32, + sym_identifier, + ACTIONS(10234), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154498] = 3, + anon_sym_COLON_RBRACK, + [194554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + STATE(3388), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12390), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_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_COLON, anon_sym_DOT, - ACTIONS(9762), 30, + ACTIONS(7310), 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_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [154556] = 9, + anon_sym_COLON_RBRACK, + [194615] = 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(9657), 18, + ACTIONS(10198), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -586974,14 +658486,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(9659), 25, + ACTIONS(10200), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -586989,6 +658503,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, @@ -587002,184 +658517,256 @@ 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_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [154626] = 3, + [194672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 18, + ACTIONS(10306), 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(9948), 32, + sym_identifier, + ACTIONS(10308), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154684] = 7, + anon_sym_COLON_RBRACK, + [194729] = 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(10236), 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(10196), 30, + sym_identifier, + ACTIONS(10238), 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, - [154750] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [194786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9693), 18, + ACTIONS(10375), 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(10377), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, + [194843] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5970), 1, + anon_sym_try, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11021), 1, + anon_sym_STAR, + ACTIONS(11023), 1, + anon_sym_AMP_AMP, + ACTIONS(11025), 1, + anon_sym_AMP, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5281), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9654), 1, + sym__scope_resolution, + STATE(10161), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [194944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8854), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587189,25 +658776,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(9762), 30, + anon_sym_DASH_GT, + ACTIONS(8849), 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, @@ -587216,25 +658802,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, - [154866] = 3, + anon_sym_DASH_GT_STAR, + [195001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 20, + ACTIONS(7794), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587244,25 +658830,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(9628), 30, + anon_sym_DASH_GT, + ACTIONS(7796), 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, @@ -587271,25 +658856,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, - [154924] = 3, + anon_sym_DASH_GT_STAR, + [195058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 18, + ACTIONS(7830), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587304,21 +658889,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(9862), 32, + anon_sym_DASH_GT, + ACTIONS(7832), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -587330,131 +658914,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, 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, + [195115] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 18, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(9168), 1, + anon_sym_COLON_COLON, + ACTIONS(11122), 1, + anon_sym_STAR, + ACTIONS(11124), 1, + anon_sym_AMP_AMP, + ACTIONS(11126), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5887), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9603), 1, + sym__scope_resolution, + STATE(10195), 1, + sym__abstract_declarator, + ACTIONS(6600), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(6602), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [195216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10240), 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(9699), 32, + sym_identifier, + ACTIONS(10242), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155040] = 3, + anon_sym_COLON_RBRACK, + [195273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + STATE(6624), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12431), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_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_COLON, anon_sym_DOT, - ACTIONS(9762), 30, + ACTIONS(7324), 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_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [155098] = 3, + anon_sym_COLON_RBRACK, + [195334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 20, + ACTIONS(7743), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587464,25 +659124,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(9948), 30, + anon_sym_DASH_GT, + ACTIONS(7745), 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, @@ -587491,80 +659150,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [155156] = 3, + anon_sym_DASH_GT_STAR, + [195391] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6602), 1, + anon_sym_try, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11021), 1, + anon_sym_STAR, + ACTIONS(11023), 1, + anon_sym_AMP_AMP, + ACTIONS(11025), 1, + anon_sym_AMP, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5281), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9654), 1, + sym__scope_resolution, + STATE(10138), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [195492] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(5701), 1, + sym_auto, + ACTIONS(5703), 1, + anon_sym_decltype, + ACTIONS(12433), 1, + anon_sym_LT, + ACTIONS(12435), 1, + anon_sym_LBRACK, + STATE(3650), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4259), 1, + sym_decltype_auto, + STATE(7304), 1, + sym_template_argument_list, + ACTIONS(5686), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5669), 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(5691), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5661), 32, + anon_sym_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_operator, + [195569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 20, + ACTIONS(10268), 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_GT_EQ, anon_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(9940), 30, + sym_identifier, + ACTIONS(10270), 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - [155214] = 3, + anon_sym_COLON_RBRACK, + [195626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 18, + ACTIONS(7751), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587579,21 +659377,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(9750), 32, + anon_sym_DASH_GT, + ACTIONS(7753), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -587605,21 +659402,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, - [155272] = 3, + anon_sym_DASH_GT_STAR, + [195683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(7810), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587629,25 +659426,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(9762), 30, + anon_sym_DASH_GT, + ACTIONS(7812), 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, @@ -587656,25 +659452,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, - [155330] = 3, + anon_sym_DASH_GT_STAR, + [195740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 20, + ACTIONS(5671), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -587695,7 +659491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9705), 30, + ACTIONS(5663), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -587716,7 +659512,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -587726,26 +659521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [155388] = 10, + [195797] = 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, + ACTIONS(10210), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -587757,14 +659536,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(9675), 23, + ACTIONS(10212), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -587772,6 +659553,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, @@ -587785,47 +659567,6 @@ 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, - [155460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8750), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(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, @@ -587833,20 +659574,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, - [155518] = 3, + anon_sym_COLON_RBRACK, + [195854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 18, + ACTIONS(7759), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587861,21 +659593,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(9766), 32, + anon_sym_DASH_GT, + ACTIONS(7761), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -587887,131 +659618,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, - [155576] = 3, + anon_sym_DASH_GT_STAR, + [195911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 18, + STATE(6386), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7223), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7229), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9519), 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, - ACTIONS(9762), 32, + sym_literal_suffix, + ACTIONS(9517), 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_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, - [155634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9224), 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(9222), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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, - [155692] = 3, + [195974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 18, + ACTIONS(7767), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588026,21 +659704,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(9762), 32, + anon_sym_DASH_GT, + ACTIONS(7769), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -588052,32 +659729,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [155750] = 7, + anon_sym_DASH_GT_STAR, + [196031] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, + ACTIONS(9590), 1, + anon_sym_DASH_GT, + ACTIONS(9596), 1, anon_sym_requires, - ACTIONS(7219), 2, + STATE(6496), 1, + sym_trailing_return_type, + ACTIONS(9593), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(5432), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5396), 2, + STATE(5947), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(7472), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -588086,10 +659767,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_DOT, - ACTIONS(8422), 32, + ACTIONS(7474), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -588105,7 +659785,6 @@ 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, @@ -588120,12 +659799,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_COLON_RBRACK, - [155816] = 3, + [196100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 18, + ACTIONS(7786), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588140,21 +659818,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(9762), 32, + anon_sym_DASH_GT, + ACTIONS(7788), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -588166,186 +659843,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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_xor, 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, + anon_sym_DASH_GT_STAR, + [196157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 18, + ACTIONS(10389), 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(9762), 32, + sym_identifier, + ACTIONS(10391), 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_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [155990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 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(9762), 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_SEMI, + 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, - anon_sym_GT2, - [156048] = 3, + anon_sym_COLON_RBRACK, + [196214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 20, + ACTIONS(10194), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588355,25 +659921,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(9802), 30, + anon_sym_DASH_GT, + ACTIONS(10196), 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, @@ -588382,25 +659946,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, - [156106] = 3, + anon_sym_DASH_GT_STAR, + [196270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 18, + ACTIONS(10232), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588415,13 +659979,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(9762), 32, + anon_sym_DASH_GT, + ACTIONS(10234), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -588429,7 +659992,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, @@ -588441,21 +660003,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, + [196326] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11206), 1, + anon_sym_STAR, + ACTIONS(11208), 1, + anon_sym_AMP_AMP, + ACTIONS(11210), 1, + anon_sym_AMP, + ACTIONS(11212), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5717), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9645), 1, + sym__scope_resolution, + STATE(10267), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5968), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [196424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9900), 18, + ACTIONS(10254), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588470,13 +660106,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(9902), 32, + anon_sym_DASH_GT, + ACTIONS(10256), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -588484,7 +660119,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, @@ -588496,230 +660130,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [156222] = 25, + anon_sym_DASH_GT_STAR, + [196480] = 3, 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, + ACTIONS(9029), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, anon_sym_AMP, - ACTIONS(11706), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(11710), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, 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_not_eq, 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, + sym_identifier, + sym_literal_suffix, + ACTIONS(9031), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11702), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10485), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11401), 1, + anon_sym_QMARK, 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_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, + [196536] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11206), 1, 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, + ACTIONS(11208), 1, + anon_sym_AMP_AMP, + ACTIONS(11210), 1, + anon_sym_AMP, + ACTIONS(11212), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5717), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9645), 1, + sym__scope_resolution, + STATE(10235), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6600), 3, 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, + anon_sym_GT2, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [196634] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9911), 20, + ACTIONS(10615), 1, + anon_sym_requires, + ACTIONS(10612), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9913), 30, + sym_identifier, + ACTIONS(8287), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [156484] = 3, + [196698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 18, + ACTIONS(10302), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588734,13 +660343,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(9806), 32, + anon_sym_DASH_GT, + ACTIONS(10304), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -588748,7 +660356,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, @@ -588760,76 +660367,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, - [156542] = 3, + anon_sym_DASH_GT_STAR, + [196754] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 20, + ACTIONS(12424), 1, + anon_sym_requires, + ACTIONS(12421), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5805), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9738), 30, + sym_identifier, + ACTIONS(9338), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [156600] = 3, + [196818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 18, + ACTIONS(10333), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588844,13 +660453,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(3488), 32, + anon_sym_DASH_GT, + ACTIONS(10335), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -588858,7 +660466,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, @@ -588870,118 +660477,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [156658] = 3, + anon_sym_DASH_GT_STAR, + [196874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(9097), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9762), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(9099), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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, - [156716] = 13, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [196930] = 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(10264), 16, 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, + anon_sym_DASH_GT, + ACTIONS(10266), 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, @@ -589000,49 +660590,141 @@ 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, - [156794] = 7, + [196986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7044), 1, - anon_sym_EQ, - ACTIONS(9539), 1, - anon_sym_COMMA, - ACTIONS(9541), 1, - anon_sym_RBRACK, - 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(5638), 17, + ACTIONS(9006), 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_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(9008), 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5645), 17, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [197042] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11206), 1, + anon_sym_STAR, + ACTIONS(11208), 1, + anon_sym_AMP_AMP, + ACTIONS(11210), 1, + anon_sym_AMP, + ACTIONS(11212), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5717), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9645), 1, + sym__scope_resolution, + STATE(10255), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6794), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6604), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [197140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10202), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589056,24 +660738,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - 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, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10204), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -589084,47 +660763,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, - 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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), 17, + anon_sym_DASH_GT_STAR, + [197196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - [156930] = 3, + sym_identifier, + sym_literal_suffix, + ACTIONS(9000), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [197252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 18, + ACTIONS(10268), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589139,13 +660845,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(9802), 32, + anon_sym_DASH_GT, + ACTIONS(10270), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -589153,7 +660858,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, @@ -589165,21 +660869,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, - [156988] = 3, + anon_sym_DASH_GT_STAR, + [197308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 20, + ACTIONS(10190), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589189,25 +660893,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(9862), 30, + anon_sym_DASH_GT, + ACTIONS(10192), 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, @@ -589216,25 +660918,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_DASH_GT_STAR, + [197364] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12440), 1, + anon_sym_requires, + ACTIONS(12437), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5809), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 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(9269), 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, - anon_sym_GT2, - [157046] = 3, + [197428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9711), 18, + ACTIONS(10408), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589249,13 +661008,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(9713), 32, + anon_sym_DASH_GT, + ACTIONS(10410), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -589263,7 +661021,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, @@ -589275,91 +661032,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, - [157104] = 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(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_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, - [157172] = 3, + anon_sym_DASH_GT_STAR, + [197484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 19, + ACTIONS(9097), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -589369,7 +661066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(8659), 31, + ACTIONS(9099), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -589380,10 +661077,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -589396,15 +661090,72 @@ 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, - [157230] = 3, + [197540] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_SEMI, + ACTIONS(6826), 1, + anon_sym_LBRACK, + ACTIONS(6819), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6822), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6815), 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, + [197602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 20, + ACTIONS(10280), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589414,25 +661165,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(9944), 30, + anon_sym_DASH_GT, + ACTIONS(10282), 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, @@ -589441,68 +661190,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [157288] = 7, + anon_sym_DASH_GT_STAR, + [197658] = 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(10310), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7966), 32, + anon_sym_DASH_GT, + ACTIONS(10312), 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, @@ -589513,12 +661257,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_COLON_RBRACK, - [157354] = 3, + anon_sym_DASH_GT_STAR, + [197714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 18, + ACTIONS(10210), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589533,13 +661276,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(9222), 32, + anon_sym_DASH_GT, + ACTIONS(10212), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -589547,7 +661289,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, @@ -589559,21 +661300,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, - [157412] = 3, + anon_sym_DASH_GT_STAR, + [197770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 18, + ACTIONS(10367), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589588,13 +661329,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(9774), 32, + anon_sym_DASH_GT, + ACTIONS(10369), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -589602,7 +661342,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, @@ -589614,88 +661353,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, + [197826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9654), 1, - anon_sym_LT, - STATE(3376), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(9006), 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_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(9652), 31, + sym_identifier, + sym_literal_suffix, + ACTIONS(9008), 29, anon_sym_DOT_DOT_DOT, - anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [157532] = 9, + 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, + [197882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(10404), 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(5800), 1, - anon_sym_SEMI, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10406), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -589706,69 +661459,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, - 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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), 17, + anon_sym_DASH_GT_STAR, + [197938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 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_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - [157602] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, + sym_identifier, + sym_literal_suffix, + ACTIONS(9000), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10759), 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(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_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11692), 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [197994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10284), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 11, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -589778,15 +661541,19 @@ 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(10286), 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, @@ -589805,11 +661572,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, - [157676] = 3, + [198050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 20, + ACTIONS(10345), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589819,25 +661589,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(9810), 30, + anon_sym_DASH_GT, + ACTIONS(10347), 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, @@ -589846,25 +661614,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, - [157734] = 3, + anon_sym_DASH_GT_STAR, + [198106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 20, + ACTIONS(10385), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589874,25 +661642,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(9832), 30, + anon_sym_DASH_GT, + ACTIONS(10387), 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, @@ -589901,80 +661667,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [157792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8598), 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(3488), 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, - [157850] = 3, + anon_sym_DASH_GT_STAR, + [198162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 20, + ACTIONS(10258), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589984,25 +661695,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(9878), 30, + anon_sym_DASH_GT, + ACTIONS(10260), 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, @@ -590011,114 +661720,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [157908] = 29, + anon_sym_DASH_GT_STAR, + [198218] = 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(3444), 1, - anon_sym_TILDE, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, - anon_sym_LPAREN2, - ACTIONS(5627), 1, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8548), 1, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11206), 1, anon_sym_STAR, - ACTIONS(8550), 1, + ACTIONS(11208), 1, anon_sym_AMP_AMP, - ACTIONS(8552), 1, + ACTIONS(11210), 1, anon_sym_AMP, - ACTIONS(8554), 1, + ACTIONS(11212), 1, anon_sym_COLON_COLON, - ACTIONS(11547), 1, - anon_sym_DOT_DOT_DOT, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4779), 1, + STATE(5717), 1, sym_parameter_list, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8598), 1, + STATE(9576), 1, sym__function_declarator_seq, - STATE(8788), 1, - sym__declarator, - STATE(8974), 1, + STATE(9645), 1, + sym__scope_resolution, + STATE(10219), 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, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6616), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, anon_sym_GT2, - STATE(8596), 5, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(10768), 5, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [198316] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11206), 1, + anon_sym_STAR, + ACTIONS(11208), 1, + anon_sym_AMP_AMP, + ACTIONS(11210), 1, + anon_sym_AMP, + ACTIONS(11212), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5717), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9645), 1, + sym__scope_resolution, + STATE(10252), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6814), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6608), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(13053), 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, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [198414] = 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(10186), 16, + ACTIONS(10105), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590135,15 +661903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10184), 30, + ACTIONS(10103), 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, @@ -590166,21 +661936,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [158084] = 7, + [198470] = 9, 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(12443), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + anon_sym_LBRACE, + STATE(6896), 1, + sym__enum_base_clause, + STATE(6999), 1, + sym_enumerator_list, + STATE(7180), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7390), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -590189,13 +661962,21 @@ 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7791), 32, + sym_identifier, + ACTIONS(7392), 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, @@ -590207,28 +661988,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___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, - [158150] = 3, + [198538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 20, + ACTIONS(4982), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590238,25 +662008,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, + anon_sym_DASH_GT, + ACTIONS(4980), 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, @@ -590265,25 +662033,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, - [158208] = 3, + anon_sym_DASH_GT_STAR, + [198594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 20, + ACTIONS(10288), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590293,25 +662061,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(9750), 30, + anon_sym_DASH_GT, + ACTIONS(10290), 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, @@ -590320,25 +662086,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, - [158266] = 3, + anon_sym_DASH_GT_STAR, + [198650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 20, + ACTIONS(10412), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590348,25 +662114,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(10414), 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,106 +662139,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, + [198706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9630), 20, + ACTIONS(9029), 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_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9632), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [158382] = 7, - 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, - anon_sym_DASH, - 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(7966), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(9031), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -590486,44 +662189,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___attribute__, - 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, - [158448] = 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, + [198762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7056), 1, - anon_sym_EQ, - ACTIONS(7058), 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(10363), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590537,34 +662224,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(5638), 19, + anon_sym_DASH_GT, + ACTIONS(10365), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, - [158510] = 3, + anon_sym_DASH_GT_STAR, + [198818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 18, + ACTIONS(10236), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590579,13 +662278,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(9890), 32, + anon_sym_DASH_GT, + ACTIONS(10238), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -590593,7 +662291,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, @@ -590605,21 +662302,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, - [158568] = 3, + anon_sym_DASH_GT_STAR, + [198874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 18, + ACTIONS(10222), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590634,13 +662331,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(9828), 32, + anon_sym_DASH_GT, + ACTIONS(10224), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -590648,7 +662344,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, @@ -590660,21 +662355,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, - [158626] = 3, + anon_sym_DASH_GT_STAR, + [198930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 18, + ACTIONS(10371), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590689,13 +662384,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(9878), 32, + anon_sym_DASH_GT, + ACTIONS(10373), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -590703,7 +662397,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, @@ -590715,21 +662408,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [158684] = 3, + anon_sym_DASH_GT_STAR, + [198986] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 20, + ACTIONS(12443), 1, + anon_sym_COLON, + ACTIONS(12445), 1, + anon_sym_LBRACE, + STATE(6872), 1, + sym__enum_base_clause, + STATE(6932), 1, + sym_enumerator_list, + STATE(7094), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7413), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -590739,9 +662445,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, @@ -590750,10 +662453,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8559), 30, + ACTIONS(7415), 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, @@ -590769,10 +662471,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_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -590780,11 +662478,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, - [158742] = 3, + [199054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 18, + ACTIONS(10198), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590799,13 +662496,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(9798), 32, + anon_sym_DASH_GT, + ACTIONS(10200), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -590813,7 +662509,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, @@ -590825,37 +662520,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, - [158800] = 5, + anon_sym_DASH_GT_STAR, + [199110] = 3, 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(10240), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590869,13 +662548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(5638), 19, + anon_sym_DASH_GT, + ACTIONS(10242), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -590883,20 +662562,32 @@ 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + 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, - [158862] = 3, + anon_sym_DASH_GT_STAR, + [199166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 20, + ACTIONS(10218), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590906,25 +662597,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(9691), 30, + anon_sym_DASH_GT, + ACTIONS(10220), 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, @@ -590933,68 +662622,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_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, - [158920] = 7, + anon_sym_DASH_GT_STAR, + [199222] = 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(10389), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8422), 32, + anon_sym_DASH_GT, + ACTIONS(10391), 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, @@ -591005,55 +662689,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_COLON_RBRACK, - [158986] = 7, + anon_sym_DASH_GT_STAR, + [199278] = 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(10375), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8907), 32, + anon_sym_DASH_GT, + ACTIONS(10377), 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, @@ -591064,12 +662742,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_COLON_RBRACK, - [159052] = 3, + anon_sym_DASH_GT_STAR, + [199334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 18, + ACTIONS(10395), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591084,13 +662761,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(9882), 32, + anon_sym_DASH_GT, + ACTIONS(10397), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -591098,7 +662774,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, @@ -591110,21 +662785,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, - [159110] = 3, + anon_sym_DASH_GT_STAR, + [199390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 20, + ACTIONS(10306), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591134,25 +662809,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(9882), 30, + anon_sym_DASH_GT, + ACTIONS(10308), 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, @@ -591161,68 +662834,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DASH_GT_STAR, + [199446] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11206), 1, + anon_sym_STAR, + ACTIONS(11208), 1, + anon_sym_AMP_AMP, + ACTIONS(11210), 1, + anon_sym_AMP, + ACTIONS(11212), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5717), 1, + sym_parameter_list, + STATE(7255), 1, + sym_alignas_qualifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9645), 1, + sym__scope_resolution, + STATE(10214), 1, + sym__abstract_declarator, + ACTIONS(8786), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6612), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_GT2, - [159168] = 7, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(8782), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [199544] = 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(8898), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8915), 32, + anon_sym_DASH_GT, + ACTIONS(3472), 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, @@ -591233,23 +662975,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [159234] = 7, + anon_sym_DASH_GT_STAR, + [199600] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, + ACTIONS(7686), 1, anon_sym_requires, - ACTIONS(7219), 2, + ACTIONS(7684), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(5432), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5460), 2, + STATE(5947), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 11, + ACTIONS(7472), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -591258,13 +663000,21 @@ 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7791), 32, + sym_identifier, + ACTIONS(7474), 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, @@ -591276,28 +663026,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___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, - [159300] = 3, + [199664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 18, + ACTIONS(10337), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591312,13 +663051,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(9810), 32, + anon_sym_DASH_GT, + ACTIONS(10339), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -591326,7 +663064,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, @@ -591338,320 +663075,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [159358] = 10, + anon_sym_DASH_GT_STAR, + [199720] = 7, 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(9707), 14, + ACTIONS(12429), 1, + anon_sym_new, + ACTIONS(12447), 1, + anon_sym_delete, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10105), 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, - ACTIONS(9709), 27, + 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(10103), 19, 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [159430] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [199784] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 18, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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, - ACTIONS(9832), 32, + sym_identifier, + ACTIONS(7623), 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_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159488] = 4, + [199848] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 16, + ACTIONS(9679), 1, + anon_sym_requires, + ACTIONS(9676), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(6596), 32, + sym_identifier, + ACTIONS(7474), 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, - [159548] = 3, + anon_sym_DASH_GT, + [199912] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 20, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9866), 30, + sym_identifier, + ACTIONS(8287), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [159606] = 3, + [199976] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 20, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5805), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9886), 30, + sym_identifier, + ACTIONS(9338), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [159664] = 10, + [200040] = 7, 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, + ACTIONS(7686), 1, + anon_sym_requires, + ACTIONS(7684), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5809), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -591661,23 +663395,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(9717), 23, + ACTIONS(9269), 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, @@ -591688,16 +663421,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_COLON_RBRACK, - [159736] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [200104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 18, + ACTIONS(10341), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591712,13 +663446,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(9866), 32, + anon_sym_DASH_GT, + ACTIONS(10343), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -591726,7 +663459,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, @@ -591738,23 +663470,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, - [159794] = 4, + anon_sym_DASH_GT_STAR, + [200160] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 20, + ACTIONS(9842), 1, + anon_sym_requires, + ACTIONS(9839), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -591764,9 +663505,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, @@ -591775,10 +663513,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5638), 29, + ACTIONS(7623), 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, @@ -591794,9 +663531,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, @@ -591804,19 +663538,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, - [159854] = 7, + [200224] = 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(10210), 16, + ACTIONS(10416), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591833,15 +663558,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10208), 30, + ACTIONS(10418), 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, @@ -591864,10 +663591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [159920] = 3, + [200280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 18, + ACTIONS(5671), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591882,13 +663609,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(9870), 32, + anon_sym_DASH_GT, + ACTIONS(5663), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -591896,7 +663622,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, @@ -591908,33 +663633,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, - [159978] = 3, + anon_sym_DASH_GT_STAR, + [200336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 20, - aux_sym_preproc_elif_token1, + ACTIONS(8998), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -591942,15 +663665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9798), 30, + sym_literal_suffix, + ACTIONS(9000), 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, @@ -591959,69 +663677,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_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, - [160036] = 3, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [200391] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 20, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12449), 1, + anon_sym_LT, + ACTIONS(12453), 1, + sym_auto, + ACTIONS(12455), 1, + anon_sym_decltype, + STATE(6862), 1, + sym_template_argument_list, + STATE(7024), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7858), 1, + sym_decltype_auto, + ACTIONS(12451), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5661), 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_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(3488), 30, + ACTIONS(5669), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -592029,390 +663756,887 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [160094] = 3, + [200462] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 18, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12457), 1, + anon_sym_LT, + STATE(6862), 1, + sym_template_argument_list, + ACTIONS(6774), 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___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9917), 32, + ACTIONS(6781), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + 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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [160152] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [200523] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 20, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + ACTIONS(12460), 1, + anon_sym_COLON, + ACTIONS(12462), 1, + anon_sym_LBRACE, + STATE(3901), 1, + sym_attribute_specifier, + STATE(6865), 1, + sym__enum_base_clause, + STATE(6981), 1, + sym_enumerator_list, + ACTIONS(7413), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_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(7415), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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, + [200592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7368), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [160210] = 3, + anon_sym_LBRACK_COLON, + ACTIONS(7366), 34, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [200647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 18, + ACTIONS(9061), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_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_LBRACK, + anon_sym___asm, anon_sym_DOT, - ACTIONS(9790), 32, + ACTIONS(9063), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_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___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_or, + anon_sym_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, - [160268] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [200702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 20, + ACTIONS(9097), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5638), 30, + sym_literal_suffix, + ACTIONS(9099), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, - [160326] = 27, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [200757] = 5, 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, + STATE(6638), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12409), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, 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_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, + sym_identifier, + ACTIONS(7361), 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, - ACTIONS(11690), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [200816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9006), 18, 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_SLASH, + 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(11720), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(11692), 3, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(9008), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11702), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10479), 13, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [200871] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10947), 1, + anon_sym_const, + STATE(7372), 1, + sym_alignas_qualifier, + ACTIONS(10949), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7181), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7230), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9006), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(7057), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10936), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7059), 21, + anon_sym_DOT_DOT_DOT, 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, + 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, + [200940] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6616), 1, + anon_sym_LBRACE, + ACTIONS(6618), 1, + anon_sym_requires, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11273), 1, + anon_sym_STAR, + ACTIONS(11275), 1, + anon_sym_AMP_AMP, + ACTIONS(11277), 1, + anon_sym_AMP, + ACTIONS(11279), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6124), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9591), 1, + sym__scope_resolution, + STATE(10364), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [201039] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(8910), 1, + anon_sym_LPAREN2, + ACTIONS(8912), 1, + anon_sym_STAR, + ACTIONS(8914), 1, + anon_sym_AMP_AMP, + ACTIONS(8916), 1, + anon_sym_AMP, + ACTIONS(8920), 1, + anon_sym_COLON_COLON, + ACTIONS(8930), 1, + sym_primitive_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5388), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9341), 1, + sym__type_declarator, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(9640), 1, + sym__scope_resolution, + STATE(10092), 1, + sym__abstract_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7862), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [201144] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6600), 1, + anon_sym_LBRACE, + ACTIONS(6602), 1, + anon_sym_requires, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11273), 1, + anon_sym_STAR, + ACTIONS(11275), 1, + anon_sym_AMP_AMP, + ACTIONS(11277), 1, + anon_sym_AMP, + ACTIONS(11279), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6124), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9591), 1, + sym__scope_resolution, + STATE(10356), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [201243] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6608), 1, + anon_sym_LBRACE, + ACTIONS(6610), 1, + anon_sym_requires, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11273), 1, + anon_sym_STAR, + ACTIONS(11275), 1, + anon_sym_AMP_AMP, + ACTIONS(11277), 1, + anon_sym_AMP, + ACTIONS(11279), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6124), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9591), 1, + sym__scope_resolution, + STATE(10365), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6843), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [201342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9900), 20, + ACTIONS(8998), 16, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9902), 30, + sym_literal_suffix, + ACTIONS(9000), 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_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_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, - [160490] = 7, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [201397] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6612), 1, + anon_sym_LBRACE, + ACTIONS(6614), 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(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11273), 1, + anon_sym_STAR, + ACTIONS(11275), 1, + anon_sym_AMP_AMP, + ACTIONS(11277), 1, + anon_sym_AMP, + ACTIONS(11279), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6124), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9591), 1, + sym__scope_resolution, + STATE(10374), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [201496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9061), 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___asm, anon_sym_DOT, - ACTIONS(8907), 32, + ACTIONS(9063), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -592421,14 +664645,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_SEMI, anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -592439,84 +664658,28 @@ 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_COLON_RBRACK, - [160556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9919), 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(9921), 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_final, + anon_sym_override, anon_sym_GT2, - [160614] = 10, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [201551] = 7, 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(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(12002), 1, + anon_sym_decltype, + ACTIONS(12464), 1, + sym_auto, + STATE(7145), 1, + sym_decltype_auto, + ACTIONS(7359), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -592526,23 +664689,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(9679), 23, + ACTIONS(7361), 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, @@ -592553,55 +664715,140 @@ 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_COLON_RBRACK, - [160686] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [201614] = 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(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 1, + anon_sym_LPAREN2, + ACTIONS(5655), 1, + anon_sym_LBRACK, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(8932), 1, + anon_sym_STAR, + ACTIONS(8934), 1, + anon_sym_AMP_AMP, + ACTIONS(8936), 1, + anon_sym_AMP, + ACTIONS(8938), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(8753), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10021), 1, + sym__declarator, + STATE(10149), 1, + sym__abstract_declarator, + STATE(12242), 1, + sym_ms_based_modifier, + ACTIONS(7862), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [201717] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 16, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(11996), 1, + anon_sym_LT, + ACTIONS(12468), 1, + sym_auto, + ACTIONS(12470), 1, + anon_sym_decltype, + STATE(5795), 1, + sym_template_argument_list, + STATE(7039), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7126), 1, + sym_decltype_auto, + ACTIONS(12466), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5661), 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_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8559), 33, + ACTIONS(5669), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON_COLON, + 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_or, anon_sym_and, @@ -592612,44 +664859,110 @@ 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, - [160743] = 6, + anon_sym_DASH_GT, + [201788] = 25, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5968), 1, + anon_sym_LBRACE, + ACTIONS(5970), 1, + anon_sym_requires, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11273), 1, + anon_sym_STAR, + ACTIONS(11275), 1, + anon_sym_AMP_AMP, + ACTIONS(11277), 1, + anon_sym_AMP, + ACTIONS(11279), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6124), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9591), 1, + sym__scope_resolution, + STATE(10354), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, anon_sym_const, - anon_sym___asm, - ACTIONS(7399), 41, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [201887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7368), 12, 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_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7366), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, @@ -592665,27 +664978,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_asm, anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [160806] = 3, + [201942] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 20, - aux_sym_preproc_elif_token1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 1, + anon_sym_LPAREN2, + ACTIONS(5655), 1, + anon_sym_LBRACK, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(8900), 1, + anon_sym_STAR, + ACTIONS(8902), 1, + anon_sym_AMP_AMP, + ACTIONS(8904), 1, + anon_sym_AMP, + ACTIONS(8906), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(8830), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9878), 1, + sym__declarator, + STATE(10149), 1, + sym__abstract_declarator, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(7862), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [202045] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6604), 1, + anon_sym_LBRACE, + ACTIONS(6606), 1, + anon_sym_requires, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11273), 1, + anon_sym_STAR, + ACTIONS(11275), 1, + anon_sym_AMP_AMP, + ACTIONS(11277), 1, + anon_sym_AMP, + ACTIONS(11279), 1, + anon_sym_COLON_COLON, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6124), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9591), 1, + sym__scope_resolution, + STATE(10350), 1, + sym__abstract_declarator, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6838), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [202144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -592693,15 +665157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9921), 29, + sym_literal_suffix, + ACTIONS(9031), 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, @@ -592710,12 +665169,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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -592723,44 +665177,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [160863] = 6, + 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, + [202199] = 3, 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, + ACTIONS(9006), 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(9008), 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(7507), 41, + 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, + [202254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7346), 34, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, @@ -592774,42 +665284,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [160926] = 6, + [202309] = 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(9029), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -592818,7 +665312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(9118), 19, + ACTIONS(9031), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592829,76 +665323,132 @@ 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [160989] = 21, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [202364] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 1, anon_sym_LPAREN2, - ACTIONS(11180), 1, - sym_ms_restrict_modifier, - ACTIONS(11186), 1, + ACTIONS(5655), 1, anon_sym_LBRACK, - ACTIONS(11745), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(8876), 1, anon_sym_STAR, - ACTIONS(11747), 1, + ACTIONS(8878), 1, anon_sym_AMP_AMP, - ACTIONS(11749), 1, + ACTIONS(8880), 1, anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4613), 1, + ACTIONS(8882), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5887), 1, sym_parameter_list, - STATE(6387), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8314), 1, + STATE(8812), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, sym__function_declarator_seq, - STATE(8704), 1, + STATE(9878), 1, + sym__declarator, + STATE(10146), 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(6464), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(12068), 1, + sym_ms_based_modifier, + ACTIONS(7862), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6823), 10, + sym_abstract_qualified_identifier, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [202467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 12, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + 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_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10352), 12, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7346), 35, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, @@ -592910,105 +665460,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [161082] = 4, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [202522] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11432), 1, - sym_literal_suffix, - ACTIONS(5645), 22, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + ACTIONS(12460), 1, + anon_sym_COLON, + ACTIONS(12462), 1, + anon_sym_LBRACE, + STATE(3865), 1, + sym_attribute_specifier, + STATE(6901), 1, + sym__enum_base_clause, + STATE(6974), 1, + sym_enumerator_list, + ACTIONS(7390), 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_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(7392), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - [161141] = 4, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [202591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(5645), 16, + ACTIONS(12089), 1, + anon_sym_LT, + STATE(5795), 1, + sym_template_argument_list, + ACTIONS(6774), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5638), 32, + ACTIONS(6781), 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___attribute__, + 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_or, anon_sym_and, @@ -593019,99 +665580,192 @@ 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, - [161200] = 8, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [202652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(8569), 1, - anon_sym_LPAREN2, - STATE(5569), 1, - sym_argument_list, - STATE(6057), 1, - sym_initializer_list, - ACTIONS(7225), 9, + ACTIONS(9097), 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(9099), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, + anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 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_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, + [202707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6829), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(6831), 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_LT_LT, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [161267] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [202761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 20, - aux_sym_preproc_elif_token1, + ACTIONS(6815), 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___attribute__, + anon_sym_GT_GT, anon_sym___attribute, anon_sym_COLON, + anon_sym_DOT, + ACTIONS(6822), 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_LT_LT, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [202815] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2289), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9784), 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(9794), 29, + ACTIONS(9786), 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, @@ -593125,76 +665779,88 @@ 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, - [161324] = 6, + [202877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6070), 1, - sym_attribute_specifier, - ACTIONS(7531), 5, + ACTIONS(12476), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9853), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7533), 41, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(9855), 33, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_PERCENT, + anon_sym_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___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___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_GT2, - anon_sym_try, anon_sym_requires, - [161387] = 3, + anon_sym_COLON_RBRACK, + [202933] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 20, - aux_sym_preproc_elif_token1, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + ACTIONS(12462), 1, + anon_sym_LBRACE, + STATE(3923), 1, + sym_attribute_specifier, + STATE(6988), 1, + sym_enumerator_list, + ACTIONS(7417), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593202,26 +665868,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___attribute, + 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, - ACTIONS(9932), 29, + ACTIONS(7419), 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, @@ -593239,43 +665892,48 @@ 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, - [161444] = 3, + [202997] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 20, - aux_sym_preproc_elif_token1, + ACTIONS(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + STATE(4140), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___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_GT_GT, + anon_sym_LBRACK, anon_sym_DOT, - sym_identifier, - ACTIONS(9820), 29, + ACTIONS(9222), 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, @@ -593284,120 +665942,100 @@ 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_COLON_RBRACK, - [161501] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [203061] = 7, 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, + ACTIONS(12478), 1, + anon_sym_delete, + ACTIONS(12480), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10103), 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_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, 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_GT2, + ACTIONS(10105), 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - [161564] = 9, + [203123] = 4, 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, - aux_sym_preproc_elif_token1, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 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_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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(7791), 23, + ACTIONS(7497), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -593406,34 +666044,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___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, - [161633] = 9, - 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, + sym_auto, + anon_sym_decltype, 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, + anon_sym_GT2, + anon_sym_requires, + [203179] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2269), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9788), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593451,14 +666095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7966), 23, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9790), 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, @@ -593469,32 +666115,24 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [161702] = 9, + anon_sym_DASH_GT, + [203241] = 7, 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, - aux_sym_preproc_elif_token1, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2289), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9800), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593503,22 +666141,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(8422), 23, + ACTIONS(9802), 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_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -593529,31 +666157,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_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, - [161771] = 9, - 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, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [203303] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2269), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9780), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593571,14 +666205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8907), 23, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9782), 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, @@ -593589,16 +666225,25 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [161840] = 3, + anon_sym_DASH_GT, + [203365] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 20, + ACTIONS(12445), 1, + anon_sym_LBRACE, + STATE(7000), 1, + sym_enumerator_list, + STATE(7134), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7417), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593608,9 +666253,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, @@ -593619,10 +666261,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9874), 29, + ACTIONS(7419), 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, @@ -593638,9 +666279,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, @@ -593648,69 +666286,80 @@ 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, + [203427] = 7, 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, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + STATE(3290), 1, + sym_template_argument_list, + STATE(7024), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12451), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7129), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7553), 41, + 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(7131), 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, 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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [161960] = 3, + [203489] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9932), 1, + anon_sym_requires, + ACTIONS(10630), 1, + anon_sym_DASH_GT, + STATE(6497), 1, + sym_trailing_return_type, + ACTIONS(9929), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6055), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593719,25 +666368,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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9806), 29, + ACTIONS(7623), 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, @@ -593750,21 +666385,38 @@ 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, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, - [162017] = 3, + [203555] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 20, - aux_sym_preproc_elif_token1, + ACTIONS(12482), 1, + anon_sym_delete, + ACTIONS(12484), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10105), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593773,9 +666425,7 @@ 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, @@ -593783,17 +666433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9878), 29, + ACTIONS(10103), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -593803,21 +666446,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_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, + [203617] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 20, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2269), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9784), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593827,9 +666474,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,15 +666482,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9882), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9786), 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, @@ -593857,21 +666502,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_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, + [203679] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 20, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2269), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9792), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593881,9 +666529,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,15 +666537,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9886), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9794), 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, @@ -593911,49 +666557,34 @@ 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, + [203741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 20, - aux_sym_preproc_elif_token1, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 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___attribute__, + 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_DOT, - sym_identifier, - ACTIONS(9770), 29, + ACTIONS(7497), 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, @@ -593962,53 +666593,48 @@ 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_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, + sym_auto, + anon_sym_decltype, 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_GT2, + anon_sym_requires, + [203797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6803), 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_DOT, - ACTIONS(7966), 30, + ACTIONS(6805), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -594017,12 +666643,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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -594035,12 +666659,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [162314] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [203851] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 20, - aux_sym_preproc_elif_token1, + ACTIONS(12486), 1, + anon_sym_delete, + ACTIONS(12488), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10105), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594049,9 +666693,7 @@ 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, @@ -594059,17 +666701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9738), 29, + ACTIONS(10103), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -594079,100 +666714,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_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, - [162371] = 13, + [203913] = 7, 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, - 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, + ACTIONS(12472), 1, 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___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, - [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_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, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2289), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9804), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594183,11 +666743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(8422), 30, + ACTIONS(9806), 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, @@ -594201,7 +666760,6 @@ 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, @@ -594213,11 +666771,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [162517] = 3, + [203975] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 20, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2269), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9796), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -594227,9 +666797,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, @@ -594238,15 +666805,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9824), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9798), 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, @@ -594257,22 +666825,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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [162574] = 3, + [204037] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 20, - aux_sym_preproc_elif_token1, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + STATE(4055), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7249), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594281,25 +666855,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_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, - ACTIONS(9597), 29, + ACTIONS(9226), 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, @@ -594311,21 +666871,34 @@ 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, - [162631] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [204101] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 20, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2269), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9800), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -594335,9 +666908,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, @@ -594346,15 +666916,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9898), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9802), 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, @@ -594365,36 +666936,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_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, - [162688] = 7, + [204163] = 6, 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, + ACTIONS(12002), 1, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 16, + ACTIONS(12464), 1, + sym_auto, + STATE(7145), 1, + sym_decltype_auto, + ACTIONS(7359), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594403,7 +666961,6 @@ 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, @@ -594411,11 +666968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 22, + sym_identifier, + ACTIONS(7361), 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, @@ -594425,77 +666987,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_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [162753] = 6, + [204223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_EQ, - ACTIONS(5796), 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, + ACTIONS(12476), 2, 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, - [162816] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9860), 20, - aux_sym_preproc_elif_token1, + ACTIONS(12490), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9737), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594504,30 +667014,16 @@ 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(9862), 29, + ACTIONS(9739), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -594535,107 +667031,44 @@ 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_bitor, + anon_sym_xor, + anon_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, - [162873] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(8569), 1, - anon_sym_LPAREN2, - STATE(5537), 1, - sym_argument_list, - STATE(6093), 1, - sym_initializer_list, - ACTIONS(7225), 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(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, - [162940] = 3, + [204281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 20, - aux_sym_preproc_elif_token1, + ACTIONS(7519), 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___attribute__, + 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_DOT, - sym_identifier, - ACTIONS(9754), 29, + ACTIONS(7521), 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, @@ -594644,68 +667077,77 @@ 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [162997] = 12, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [204335] = 12, 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(10600), 1, + anon_sym_COLON, + ACTIONS(12315), 1, + anon_sym_LBRACE, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7154), 1, + sym_attribute_specifier, + STATE(7404), 1, + sym_field_declaration_list, + STATE(10753), 1, + sym_virtual_specifier, + STATE(11784), 1, + sym_base_class_clause, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7370), 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_DOT, - ACTIONS(9427), 27, + ACTIONS(7372), 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -594718,185 +667160,69 @@ 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, - [163072] = 4, + [204407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7223), 7, + ACTIONS(6791), 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_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [163131] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6576), 1, - anon_sym_LBRACK, - ACTIONS(10647), 1, - 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_DOT, + ACTIONS(6793), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_EQ, - 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, - [163198] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6115), 1, - sym_attribute_specifier, - ACTIONS(7521), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7523), 41, - 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_COLON_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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [163261] = 3, + [204461] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 20, - aux_sym_preproc_elif_token1, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2289), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9774), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594905,26 +667231,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(9742), 29, + ACTIONS(9776), 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, @@ -594938,46 +667250,42 @@ 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, - [163318] = 3, + [204523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 20, - aux_sym_preproc_elif_token1, + ACTIONS(6799), 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___attribute__, + 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_DOT, - sym_identifier, - ACTIONS(9858), 29, + ACTIONS(6801), 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, @@ -594986,24 +667294,41 @@ 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [163375] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [204577] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 20, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2269), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9804), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -595013,9 +667338,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, @@ -595024,15 +667346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9758), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9806), 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, @@ -595043,54 +667366,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_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, - [163432] = 6, + [204639] = 7, 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, + STATE(7080), 1, + sym_alignas_qualifier, + ACTIONS(12499), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6893), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7049), 11, 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(12496), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -595102,20 +667409,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + ACTIONS(7047), 17, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [204701] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12502), 1, + sym_identifier, + ACTIONS(12513), 1, + sym_primitive_type, + STATE(7080), 1, + sym_alignas_qualifier, + STATE(7122), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12510), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + STATE(6907), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12508), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6936), 10, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [163495] = 3, + ACTIONS(6934), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(12505), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [204771] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 20, - aux_sym_preproc_elif_token1, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(10482), 1, + anon_sym_DASH_GT, + STATE(6464), 1, + sym_trailing_return_type, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595124,25 +667513,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_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(7474), 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, @@ -595155,20 +667530,32 @@ 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, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, + [204837] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 20, + ACTIONS(12445), 1, + anon_sym_LBRACE, + STATE(6957), 1, + sym_enumerator_list, + STATE(7105), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7421), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -595178,9 +667565,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, @@ -595189,10 +667573,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9894), 29, + ACTIONS(7423), 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, @@ -595208,9 +667591,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, @@ -595218,40 +667598,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [163609] = 3, + [204899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 20, - aux_sym_preproc_elif_token1, + ACTIONS(6795), 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___attribute__, + anon_sym_GT_GT, anon_sym___attribute, anon_sym_COLON, + anon_sym_DOT, + ACTIONS(6797), 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_LT_LT, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [204953] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2289), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9796), 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(9774), 29, + ACTIONS(9798), 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, @@ -595265,34 +667688,41 @@ 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, - [163666] = 9, + [205015] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11751), 1, - anon_sym_DASH_GT, - ACTIONS(11763), 1, + ACTIONS(7666), 1, anon_sym_requires, - STATE(6124), 1, + ACTIONS(10630), 1, + anon_sym_DASH_GT, + STATE(6619), 1, sym_trailing_return_type, - ACTIONS(11760), 2, + ACTIONS(7660), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(5432), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5300), 2, + STATE(6055), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7621), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595301,21 +667731,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___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(8907), 23, + ACTIONS(7623), 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, @@ -595327,55 +667747,60 @@ 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, - [163735] = 3, + [205081] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 16, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2289), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9792), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9705), 33, + ACTIONS(9794), 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_LBRACE, - anon_sym_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, @@ -595386,12 +667811,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_STAR, - [163792] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [205143] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 20, - aux_sym_preproc_elif_token1, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + ACTIONS(12462), 1, + anon_sym_LBRACE, + STATE(3904), 1, + sym_attribute_specifier, + STATE(6983), 1, + sym_enumerator_list, + ACTIONS(7421), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595400,25 +667838,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(9790), 29, + ACTIONS(7423), 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, @@ -595436,15 +667861,29 @@ 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, - [163849] = 3, + [205207] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 20, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2269), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9774), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -595454,9 +667893,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, @@ -595465,15 +667901,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9925), 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9776), 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, @@ -595484,21 +667921,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, - [163906] = 3, + [205269] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 18, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(11152), 1, + anon_sym_DASH_GT, + STATE(6544), 1, + sym_trailing_return_type, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595507,17 +667954,54 @@ 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_DOT, + ACTIONS(8287), 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, + [205335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6811), 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_DOT, - sym_literal_suffix, - ACTIONS(8667), 31, + ACTIONS(6813), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -595528,32 +668012,48 @@ 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [163963] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [205389] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 20, - aux_sym_preproc_elif_token1, + ACTIONS(12369), 1, + anon_sym_requires, + ACTIONS(12515), 1, + anon_sym_DASH_GT, + STATE(6504), 1, + sym_trailing_return_type, + ACTIONS(12366), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5805), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595562,25 +668062,64 @@ 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_DOT, + ACTIONS(9338), 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, + [205455] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + STATE(3290), 1, + sym_template_argument_list, + STATE(7039), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12466), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7129), 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, - sym_identifier, - ACTIONS(9944), 29, + ACTIONS(7131), 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, @@ -595592,54 +668131,70 @@ 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [164020] = 6, + [205517] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(12518), 1, + sym_identifier, + ACTIONS(12529), 1, + sym_primitive_type, + STATE(7080), 1, + sym_alignas_qualifier, + STATE(7212), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12526), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6893), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12524), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7025), 10, + anon_sym_AMP, anon_sym___attribute__, - ACTIONS(10584), 1, anon_sym___attribute, - STATE(6099), 1, - sym_attribute_specifier, - ACTIONS(7423), 5, - anon_sym_AMP, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7425), 41, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + ACTIONS(7023), 11, 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_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(12521), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -595651,20 +668206,25 @@ 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, - [164083] = 3, + [205587] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 20, - aux_sym_preproc_elif_token1, + ACTIONS(7666), 1, + anon_sym_requires, + ACTIONS(12515), 1, + anon_sym_DASH_GT, + STATE(6547), 1, + sym_trailing_return_type, + ACTIONS(7660), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5805), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595673,25 +668233,56 @@ 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_DOT, + ACTIONS(9338), 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, + [205653] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6807), 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_DOT, - sym_identifier, - ACTIONS(4928), 29, + ACTIONS(6809), 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, @@ -595700,25 +668291,48 @@ 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [164140] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [205707] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 20, - aux_sym_preproc_elif_token1, + ACTIONS(12429), 1, + anon_sym_new, + ACTIONS(12531), 1, + anon_sym_delete, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(10105), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595727,9 +668341,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_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -595737,17 +668350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9814), 29, + ACTIONS(10103), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -595757,22 +668363,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, - [164197] = 3, + [205769] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9596), 1, + anon_sym_requires, + ACTIONS(10482), 1, + anon_sym_DASH_GT, + STATE(6496), 1, + sym_trailing_return_type, + ACTIONS(9593), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5947), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595781,26 +668396,62 @@ 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_DOT, + ACTIONS(7474), 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, + [205835] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2289), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9788), 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(9828), 29, + ACTIONS(9790), 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, @@ -595814,51 +668465,62 @@ 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, - [164254] = 6, + [205897] = 11, 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, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7433), 41, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12533), 1, + anon_sym_LT, + ACTIONS(12537), 1, + sym_auto, + ACTIONS(12539), 1, + anon_sym_decltype, + STATE(7252), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7564), 1, + sym_template_argument_list, + STATE(8027), 1, + sym_decltype_auto, + ACTIONS(12535), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5669), 10, 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(5661), 25, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -595872,46 +668534,43 @@ 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_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [164317] = 9, + [205967] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(11766), 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(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + STATE(4140), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7234), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 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_LBRACK, anon_sym_DOT, - ACTIONS(8907), 30, + ACTIONS(9226), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -595920,13 +668579,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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -595938,45 +668591,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [164386] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [206031] = 9, 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, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6776), 1, + anon_sym_SEMI, + ACTIONS(6785), 1, + anon_sym_LBRACK, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(6782), 1, + sym_template_argument_list, + ACTIONS(6778), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6781), 4, + anon_sym_TILDE, 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_LBRACK_COLON, + ACTIONS(6774), 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_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, @@ -595991,31 +668648,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [206097] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2289), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9780), 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(9782), 32, + 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_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [164451] = 6, + anon_sym_COLON_RBRACK, + [206159] = 8, 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(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + STATE(4055), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7201), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -596024,15 +668732,9 @@ 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_literal_suffix, - ACTIONS(9118), 21, + ACTIONS(9222), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -596046,19 +668748,41 @@ 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, - [164514] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [206223] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 20, - aux_sym_preproc_elif_token1, + ACTIONS(10662), 1, + anon_sym_requires, + ACTIONS(11152), 1, + anon_sym_DASH_GT, + STATE(6502), 1, + sym_trailing_return_type, + ACTIONS(10659), 2, + anon_sym_final, + anon_sym_override, + STATE(5432), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5792), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -596067,25 +668791,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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9810), 29, + ACTIONS(8287), 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, @@ -596098,48 +668808,56 @@ 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, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, - [164571] = 3, + [206289] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 20, - aux_sym_preproc_elif_token1, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + ACTIONS(12545), 1, + anon_sym_LBRACE, + STATE(7370), 1, + sym_field_declaration_list, + STATE(7874), 1, + sym_attribute_specifier, + STATE(10707), 1, + sym_virtual_specifier, + STATE(11420), 1, + sym_base_class_clause, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7370), 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___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_GT_GT, anon_sym_DOT, - sym_identifier, - ACTIONS(9948), 29, + ACTIONS(7372), 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, @@ -596148,114 +668866,101 @@ 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_COLON_RBRACK, - [164628] = 6, + anon_sym_GT2, + [206361] = 6, 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, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(11996), 1, + anon_sym_LT, + STATE(5795), 1, + sym_template_argument_list, + ACTIONS(7543), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7437), 41, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(5689), 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_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_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_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_GT2, - anon_sym_try, anon_sym_requires, - [164691] = 6, + [206420] = 3, 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_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7455), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3888), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3886), 42, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -596269,46 +668974,41 @@ 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, - [164754] = 9, + 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, + [206473] = 6, 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(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12449), 1, + anon_sym_LT, + STATE(6862), 1, + sym_template_argument_list, + ACTIONS(7543), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_COLON, anon_sym_DOT, - ACTIONS(7791), 30, + ACTIONS(5689), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -596317,12 +669017,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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -596335,145 +669032,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [164823] = 12, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [206532] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(8098), 1, - anon_sym_LBRACK, - ACTIONS(8416), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(8418), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(8420), 1, + ACTIONS(12555), 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, - aux_sym_preproc_elif_token1, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9430), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6929), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8000), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [206621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9259), 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_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_LBRACK, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(9427), 20, + ACTIONS(9261), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_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, - [164898] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_EQ, - ACTIONS(5800), 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___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, - 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, - [164961] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [206674] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + 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, + [206727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 23, + ACTIONS(7911), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -596481,72 +669227,61 @@ 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(7913), 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_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_STAR, - [165018] = 6, + anon_sym_DASH_GT, + [206780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6055), 1, - sym_attribute_specifier, - ACTIONS(7413), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7415), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3666), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3664), 42, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -596560,32 +669295,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [165081] = 9, + 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, + [206833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9287), 1, - anon_sym_DASH_GT, - ACTIONS(9293), 1, - anon_sym_requires, - 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(7739), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -596594,12 +669318,23 @@ 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___attribute, + 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(7741), 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, @@ -596611,26 +669346,160 @@ 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, - [165150] = 3, + anon_sym_DASH_GT, + [206886] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9434), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8001), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [206975] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9434), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6935), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8001), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [207064] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 20, + STATE(7129), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7692), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -596640,9 +669509,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, @@ -596651,10 +669517,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9870), 29, + ACTIONS(7694), 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, @@ -596670,9 +669535,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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -596680,65 +669543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [165207] = 3, + [207121] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7475), 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, + STATE(7132), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, 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_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [165264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5645), 20, + anon_sym___attribute, + ACTIONS(7634), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -596748,9 +669561,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, @@ -596759,10 +669569,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5638), 29, + ACTIONS(7636), 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, @@ -596778,9 +669587,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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -596788,44 +669595,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [165321] = 6, + [207178] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6062), 1, - sym_attribute_specifier, - ACTIONS(7427), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7429), 41, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, anon_sym_LPAREN2, + ACTIONS(12557), 1, anon_sym_STAR, + ACTIONS(12559), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12561), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3890), 1, + sym__type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12036), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6959), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8083), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [207267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3572), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3570), 42, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -596839,109 +669703,328 @@ 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, - [165384] = 12, + 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, + [207320] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9408), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8004), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [207409] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12563), 1, + sym_identifier, + ACTIONS(12565), 1, + anon_sym_LPAREN2, + ACTIONS(12567), 1, + anon_sym_STAR, + ACTIONS(12569), 1, + anon_sym_AMP_AMP, + ACTIONS(12571), 1, + anon_sym_AMP, + ACTIONS(12575), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5269), 1, + sym__type_declarator, + STATE(6370), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12380), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7012), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8117), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12573), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6368), 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, + [207498] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12563), 1, + sym_identifier, + ACTIONS(12565), 1, anon_sym_LPAREN2, - ACTIONS(8098), 1, + ACTIONS(12567), 1, + anon_sym_STAR, + ACTIONS(12569), 1, + anon_sym_AMP_AMP, + ACTIONS(12571), 1, + anon_sym_AMP, + ACTIONS(12575), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5309), 1, + sym__type_declarator, + STATE(6370), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12380), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7851), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12573), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6368), 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, + [207587] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(8487), 1, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(8910), 1, + anon_sym_LPAREN2, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(9175), 1, anon_sym_STAR, - ACTIONS(8489), 1, + ACTIONS(9177), 1, anon_sym_AMP_AMP, - ACTIONS(8491), 1, + ACTIONS(9179), 1, anon_sym_AMP, - STATE(2072), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, sym_parameter_list, - STATE(5348), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9341), 1, + sym__type_declarator, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, sym__function_declarator_seq, - STATE(6322), 1, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(10149), 1, sym__abstract_declarator, - STATE(5347), 5, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(7862), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9429), 9, + sym_abstract_qualified_identifier, + [207690] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7140), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7702), 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_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(7704), 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, @@ -596953,56 +670036,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_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_COLON_RBRACK, - [165528] = 9, + anon_sym_DASH_GT, + [207747] = 4, 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, + ACTIONS(12577), 1, + anon_sym_LPAREN2, + ACTIONS(9372), 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_COLON, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8907), 30, + ACTIONS(9374), 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, @@ -597010,13 +670074,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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -597027,12 +670087,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_COLON_RBRACK, - [165597] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [207802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 20, + ACTIONS(7290), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -597044,7 +670110,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, @@ -597053,10 +670118,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9832), 29, + ACTIONS(7292), 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, @@ -597072,50 +670136,111 @@ 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [165654] = 9, + [207855] = 28, 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(8910), 1, + anon_sym_LPAREN2, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(9160), 1, + anon_sym_STAR, + ACTIONS(9162), 1, + anon_sym_AMP_AMP, + ACTIONS(9164), 1, + anon_sym_AMP, + ACTIONS(9168), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5887), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9341), 1, + sym__type_declarator, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9603), 1, + sym__scope_resolution, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(10146), 1, + sym__abstract_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(7862), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [207958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9300), 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_COLON, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7791), 30, + ACTIONS(9302), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -597124,13 +670249,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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -597141,12 +670262,24 @@ 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_COLON_RBRACK, - [165723] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [208011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 18, + STATE(7084), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7676), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -597155,8 +670288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -597164,10 +670295,14 @@ 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(7678), 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, @@ -597179,7 +670314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -597187,77 +670322,237 @@ 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, + [208068] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11180), 1, + ACTIONS(12557), 1, + anon_sym_STAR, + ACTIONS(12559), 1, + anon_sym_AMP_AMP, + ACTIONS(12561), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3875), 1, + sym__type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12036), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7018), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8005), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, sym_ms_restrict_modifier, - ACTIONS(11186), 1, - anon_sym_LBRACK, - ACTIONS(11745), 1, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [208157] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12579), 1, + sym_identifier, + ACTIONS(12581), 1, + anon_sym_LPAREN2, + ACTIONS(12583), 1, anon_sym_STAR, - ACTIONS(11747), 1, + ACTIONS(12585), 1, anon_sym_AMP_AMP, - ACTIONS(11749), 1, + ACTIONS(12587), 1, anon_sym_AMP, - STATE(4333), 1, + ACTIONS(12591), 1, + sym_primitive_type, + STATE(2870), 1, sym_alignas_qualifier, - STATE(4613), 1, - sym_parameter_list, - STATE(6387), 1, + STATE(5184), 1, + sym__type_declarator, + STATE(6026), 1, + sym_pointer_type_declarator, + STATE(7214), 1, sym_ms_unaligned_ptr_modifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8764), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, + STATE(12075), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11182), 2, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6992), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7870), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11184), 2, + ACTIONS(12589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6022), 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, + [208246] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12593), 1, + sym_identifier, + ACTIONS(12595), 1, + anon_sym_LPAREN2, + ACTIONS(12597), 1, + anon_sym_STAR, + ACTIONS(12599), 1, + anon_sym_AMP_AMP, + ACTIONS(12601), 1, + anon_sym_AMP, + ACTIONS(12605), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5335), 1, + sym__type_declarator, + STATE(6222), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11943), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5940), 2, + STATE(6954), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6458), 2, + STATE(7996), 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), 10, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12603), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6198), 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, + [208335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3584), 3, + anon_sym_COLON_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, + anon_sym_LBRACK_COLON, + ACTIONS(3582), 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, @@ -597269,10 +670564,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [165873] = 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, + [208388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 18, + ACTIONS(9259), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -597281,17 +670588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8699), 31, + ACTIONS(9261), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -597305,54 +670606,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_LBRACK, + 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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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_final, + anon_sym_override, + anon_sym_requires, + [208441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(3572), 3, anon_sym_COLON_COLON, - ACTIONS(7457), 1, - anon_sym_SEMI, - ACTIONS(7225), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3570), 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, + [208494] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4094), 1, + sym_alignas_qualifier, + ACTIONS(12610), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6951), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7049), 12, + 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(7223), 41, + ACTIONS(12607), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7047), 15, anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [208555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3317), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3312), 42, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -597375,90 +670770,138 @@ 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_operator, - [165991] = 9, + [208608] = 3, 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, + ACTIONS(3201), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3196), 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, - 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, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [208661] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12593), 1, + sym_identifier, + ACTIONS(12595), 1, anon_sym_LPAREN2, + ACTIONS(12597), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(12599), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [166060] = 9, + ACTIONS(12601), 1, + anon_sym_AMP, + ACTIONS(12605), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5377), 1, + sym__type_declarator, + STATE(6222), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11943), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7936), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12603), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6198), 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, + [208750] = 3, 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_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(9364), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -597467,21 +670910,13 @@ 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_LBRACK, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - ACTIONS(7966), 23, + ACTIONS(9366), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -597493,31 +670928,85 @@ 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___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, - [166129] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10091), 1, anon_sym_DASH_GT, - ACTIONS(10151), 1, - 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, + anon_sym_requires, + [208803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3670), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3668), 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, + [208856] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7138), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7672), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -597535,7 +671024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8422), 23, + ACTIONS(7674), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -597553,16 +671042,18 @@ 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, - [166198] = 3, + anon_sym_DASH_GT, + [208913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 20, + ACTIONS(7790), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -597574,7 +671065,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, @@ -597583,10 +671073,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9750), 29, + ACTIONS(7792), 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, @@ -597602,49 +671091,102 @@ 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [166255] = 3, + [208966] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 20, - aux_sym_preproc_elif_token1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12557), 1, + anon_sym_STAR, + ACTIONS(12559), 1, + anon_sym_AMP_AMP, + ACTIONS(12561), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3875), 1, + sym__type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12036), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8005), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [209055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7495), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_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(9766), 29, + ACTIONS(7497), 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, @@ -597653,24 +671195,39 @@ 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___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [166312] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [209108] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 18, + STATE(7149), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7680), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -597679,8 +671236,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -597688,10 +671243,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8752), 31, + sym_identifier, + ACTIONS(7682), 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, @@ -597703,7 +671262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -597711,111 +671270,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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [166369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7759), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7761), 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, - [166425] = 3, + [209165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 16, + ACTIONS(9368), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9828), 32, + ACTIONS(9370), 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_LBRACK, + anon_sym_LT_LT, + 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, @@ -597825,65 +671312,18 @@ 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, - [166481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7671), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7673), 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [166537] = 3, + [209218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 19, + ACTIONS(9319), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -597894,16 +671334,11 @@ 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___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8699), 29, + ACTIONS(9321), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -597915,28 +671350,36 @@ 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___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_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [166593] = 3, + anon_sym_requires, + [209271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 17, + STATE(7163), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7688), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -597953,10 +671396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8667), 31, + ACTIONS(7690), 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, @@ -597968,57 +671414,71 @@ 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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, + [209328] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7733), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12579), 1, + sym_identifier, + ACTIONS(12581), 1, anon_sym_LPAREN2, + ACTIONS(12583), 1, anon_sym_STAR, + ACTIONS(12585), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12587), 1, + anon_sym_AMP, + ACTIONS(12591), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5246), 1, + sym__type_declarator, + STATE(6026), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12075), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7019), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7868), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6022), 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___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, @@ -598030,48 +671490,33 @@ 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, - [166705] = 3, + [209417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7601), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(3658), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3656), 42, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -598085,46 +671530,43 @@ 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, - [166761] = 3, + 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, + [209470] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(4391), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(4389), 42, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -598138,108 +671580,50 @@ 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, - [166817] = 3, + 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, + [209523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 16, + ACTIONS(9368), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4928), 32, + ACTIONS(9370), 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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9752), 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(9754), 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_LT_LT, + anon_sym_GT_GT, + 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -598249,41 +671633,70 @@ 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, - [166929] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [209576] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7563), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(12613), 1, + sym_identifier, + ACTIONS(12615), 1, anon_sym_LPAREN2, + ACTIONS(12617), 1, anon_sym_STAR, + ACTIONS(12619), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12621), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9288), 1, + sym__type_declarator, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7850), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 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___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, @@ -598295,57 +671708,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [166985] = 3, + [209665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 16, + ACTIONS(9319), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9944), 32, + ACTIONS(9321), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -598355,127 +671751,54 @@ 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, - [167041] = 27, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [209718] = 6, 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, - 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(10837), 1, - sym_ms_based_modifier, - ACTIONS(9429), 2, - anon_sym___attribute__, + ACTIONS(12313), 1, 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, - [167145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9934), 16, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3864), 1, + sym_attribute_specifier, + ACTIONS(7574), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9936), 32, + ACTIONS(7576), 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_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, @@ -598486,49 +671809,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, - [167201] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [209777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 16, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3868), 1, + sym_attribute_specifier, + ACTIONS(7578), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9806), 32, + ACTIONS(7580), 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_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, @@ -598539,49 +671862,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, - [167257] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [209836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 16, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3900), 1, + sym_attribute_specifier, + ACTIONS(7676), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9870), 32, + ACTIONS(7678), 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_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, @@ -598592,49 +671915,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, - [167313] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [209895] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 16, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3903), 1, + sym_attribute_specifier, + ACTIONS(7617), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9766), 32, + ACTIONS(7619), 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_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, @@ -598645,49 +671968,99 @@ 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, - [167369] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [209954] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + 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, + [210007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 16, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3984), 1, + sym_attribute_specifier, + ACTIONS(7692), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9774), 32, + ACTIONS(7694), 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_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, @@ -598698,49 +672071,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, - [167425] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [210066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 16, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3909), 1, + sym_attribute_specifier, + ACTIONS(7702), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9798), 32, + ACTIONS(7704), 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_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, @@ -598751,49 +672124,97 @@ 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, - [167481] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [210125] = 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, + [210178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 16, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(11996), 1, + anon_sym_LT, + STATE(6505), 1, + sym_template_argument_list, + ACTIONS(7442), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9874), 32, + ACTIONS(7447), 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___attribute__, + 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_or, anon_sym_and, @@ -598804,49 +672225,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_STAR, - [167537] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [210237] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6000), 1, + anon_sym_LPAREN2, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(9109), 1, + anon_sym_STAR, + ACTIONS(9111), 1, + anon_sym_AMP_AMP, + ACTIONS(9113), 1, + anon_sym_AMP, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(9123), 1, + sym_primitive_type, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9435), 1, + sym__type_declarator, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10149), 1, + sym__abstract_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(7862), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [210340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 16, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3922), 1, + sym_attribute_specifier, + ACTIONS(7634), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9878), 32, + ACTIONS(7636), 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_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, @@ -598857,49 +672355,99 @@ 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, - [167593] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [210399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3454), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3452), 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, + [210452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 16, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3924), 1, + sym_attribute_specifier, + ACTIONS(7672), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9882), 32, + ACTIONS(7674), 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_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, @@ -598910,49 +672458,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, - [167649] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [210511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 16, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3925), 1, + sym_attribute_specifier, + ACTIONS(7680), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9948), 32, + ACTIONS(7682), 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_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, @@ -598963,49 +672511,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, - [167705] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [210570] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 16, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3926), 1, + sym_attribute_specifier, + ACTIONS(7688), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3488), 32, + ACTIONS(7690), 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_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, @@ -599016,40 +672564,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [167761] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [210629] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(3454), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3452), 42, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -599063,108 +672606,109 @@ 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, - [167817] = 3, + 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, + [210682] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 6, - anon_sym_AMP, + STATE(7148), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7649), 42, + ACTIONS(7574), 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(7576), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_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_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, - [167873] = 3, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [210739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 16, + ACTIONS(12313), 1, + anon_sym___attribute, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3934), 1, + sym_attribute_specifier, + ACTIONS(7706), 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_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9832), 32, + ACTIONS(7708), 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_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, @@ -599175,25 +672719,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_STAR, - [167929] = 9, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [210798] = 6, 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__, + ACTIONS(12313), 1, anon_sym___attribute, - ACTIONS(8000), 17, - aux_sym_preproc_elif_token1, + ACTIONS(12382), 1, + anon_sym___attribute__, + STATE(3936), 1, + sym_attribute_specifier, + ACTIONS(7570), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -599202,21 +672739,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(8002), 24, + ACTIONS(7572), 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, @@ -599228,27 +672756,110 @@ 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_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, - [167997] = 3, + anon_sym_COLON_RBRACK, + [210857] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(12613), 1, + sym_identifier, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + ACTIONS(12617), 1, + anon_sym_STAR, + ACTIONS(12619), 1, + anon_sym_AMP_AMP, + ACTIONS(12621), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9288), 1, + sym__type_declarator, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7009), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7850), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 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, + [210946] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 19, + STATE(7188), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7578), 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, @@ -599257,10 +672868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8752), 29, + ACTIONS(7580), 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, @@ -599269,7 +672883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -599277,50 +672894,101 @@ 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, - [168053] = 3, + [211003] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7653), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12579), 1, + sym_identifier, + ACTIONS(12581), 1, anon_sym_LPAREN2, + ACTIONS(12583), 1, anon_sym_STAR, + ACTIONS(12585), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12587), 1, + anon_sym_AMP, + ACTIONS(12591), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5164), 1, + sym__type_declarator, + STATE(6026), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12075), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8032), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6022), 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, + [211092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3347), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3342), 42, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -599334,46 +673002,43 @@ 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, - [168109] = 3, + 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, + [211145] = 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(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_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -599387,108 +673052,101 @@ 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, - [168165] = 3, + 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, + [211198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 16, + ACTIONS(7818), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9824), 32, + sym_identifier, + ACTIONS(7820), 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_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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, + anon_sym_DASH_GT, + [211251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 16, + ACTIONS(12623), 1, + anon_sym_LPAREN2, + ACTIONS(9372), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9738), 32, + ACTIONS(9374), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -599498,94 +673156,70 @@ 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, - [168277] = 3, - 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, - 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [168333] = 3, + [211306] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7719), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12593), 1, + sym_identifier, + ACTIONS(12595), 1, anon_sym_LPAREN2, + ACTIONS(12597), 1, anon_sym_STAR, + ACTIONS(12599), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12601), 1, + anon_sym_AMP, + ACTIONS(12605), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5377), 1, + sym__type_declarator, + STATE(6222), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11943), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7015), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7936), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12603), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6198), 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___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, @@ -599597,207 +673231,187 @@ 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, - [168389] = 3, + [211395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 6, + ACTIONS(9364), 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___inline, - anon_sym_const, anon_sym___asm, - ACTIONS(7781), 42, + anon_sym_DOT, + ACTIONS(9366), 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_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_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_try, anon_sym_requires, - [168445] = 3, + [211448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 6, - anon_sym_AMP, + STATE(7095), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7777), 42, + ACTIONS(7617), 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(7619), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_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_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_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, + [211505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 6, - anon_sym_AMP, + STATE(7189), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7571), 42, + ACTIONS(7706), 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(7708), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_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_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, - [168557] = 3, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [211562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - 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, + 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_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -599811,46 +673425,73 @@ 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, - [168613] = 3, + 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, + [211615] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7745), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(12613), 1, + sym_identifier, + ACTIONS(12615), 1, anon_sym_LPAREN2, + ACTIONS(12617), 1, anon_sym_STAR, + ACTIONS(12619), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12621), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9308), 1, + sym__type_declarator, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6969), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8109), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 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___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, @@ -599862,34 +673503,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + [211704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9300), 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(9302), 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_GT2, - anon_sym_try, anon_sym_requires, - [168669] = 7, + [211757] = 5, 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, + STATE(7192), 1, + sym_attribute_specifier, + ACTIONS(12313), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7570), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -599898,9 +673571,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_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -599908,10 +673578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 19, + sym_identifier, + ACTIONS(7572), 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, @@ -599921,17 +673597,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_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, - [168733] = 3, + [211814] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 19, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(12449), 1, + anon_sym_LT, + STATE(7064), 1, + sym_template_argument_list, + ACTIONS(7442), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -599940,18 +673623,11 @@ 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_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, - sym_literal_suffix, - ACTIONS(8659), 29, + ACTIONS(7447), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -599963,85 +673639,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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_final, + anon_sym_override, anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [168789] = 22, + anon_sym_requires, + [211873] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(6861), 1, - anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12625), 1, anon_sym_STAR, - ACTIONS(11781), 1, + ACTIONS(12627), 1, anon_sym_AMP_AMP, - ACTIONS(11783), 1, + ACTIONS(12629), 1, anon_sym_AMP, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - STATE(4796), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, + STATE(2870), 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, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(5529), 1, + sym__type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12592), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6069), 2, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7007), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6556), 2, + STATE(8058), 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_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, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, @@ -600053,67 +673726,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168883] = 22, + [211962] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(6821), 1, - anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(12625), 1, anon_sym_STAR, - ACTIONS(11781), 1, + ACTIONS(12627), 1, anon_sym_AMP_AMP, - ACTIONS(11783), 1, + ACTIONS(12629), 1, anon_sym_AMP, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - STATE(4796), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, + STATE(2870), 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, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(5473), 1, + sym__type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12592), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5995), 2, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6528), 2, + STATE(8063), 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_GT2, - anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, @@ -600125,39 +673794,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168977] = 3, + [212051] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7773), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, anon_sym_LPAREN2, + ACTIONS(12625), 1, anon_sym_STAR, + ACTIONS(12627), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12629), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(5473), 1, + sym__type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12592), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7010), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8063), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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___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, @@ -600169,154 +673862,179 @@ 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, - [169033] = 3, + [212140] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 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(9894), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(12613), 1, + sym_identifier, + ACTIONS(12615), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(12617), 1, + anon_sym_STAR, + ACTIONS(12619), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [169089] = 3, + ACTIONS(12621), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9236), 1, + sym__type_declarator, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7791), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 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, + [212229] = 21, 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - sym_literal_suffix, - ACTIONS(8699), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12549), 1, anon_sym_LPAREN2, + ACTIONS(12625), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(12627), 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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, + ACTIONS(12629), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(5509), 1, + sym__type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12592), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8066), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, - anon_sym___asm, - ACTIONS(7765), 42, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [212318] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(12634), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(12631), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7121), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, 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(7119), 28, + anon_sym_AMP, 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___attribute, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -600330,46 +674048,105 @@ 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, - [169201] = 3, + sym_primitive_type, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [212379] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7587), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12563), 1, + sym_identifier, + ACTIONS(12565), 1, anon_sym_LPAREN2, + ACTIONS(12567), 1, anon_sym_STAR, + ACTIONS(12569), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(12571), 1, + anon_sym_AMP, + ACTIONS(12575), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5469), 1, + sym__type_declarator, + STATE(6370), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12380), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7941), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12573), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6368), 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, + [212468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3658), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3656), 42, 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -600383,46 +674160,195 @@ 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, - [169257] = 3, + 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, + [212521] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 6, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12563), 1, + sym_identifier, + ACTIONS(12565), 1, + anon_sym_LPAREN2, + ACTIONS(12567), 1, + anon_sym_STAR, + ACTIONS(12569), 1, + anon_sym_AMP_AMP, + ACTIONS(12571), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(12575), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5469), 1, + sym__type_declarator, + STATE(6370), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12380), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6937), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7941), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12573), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6368), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, - anon_sym___asm, - ACTIONS(7737), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [212610] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12593), 1, + sym_identifier, + ACTIONS(12595), 1, + anon_sym_LPAREN2, + ACTIONS(12597), 1, + anon_sym_STAR, + ACTIONS(12599), 1, + anon_sym_AMP_AMP, + ACTIONS(12601), 1, + anon_sym_AMP, + ACTIONS(12605), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5431), 1, + sym__type_declarator, + STATE(6222), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11943), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8111), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12603), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6198), 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, + [212699] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(4102), 1, + sym_field_declaration_list, + STATE(4184), 1, + sym_attribute_specifier, + STATE(10719), 1, + sym_virtual_specifier, + STATE(11764), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 5, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(7370), 30, + anon_sym_AMP, 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___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, @@ -600436,152 +674362,115 @@ 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, - [169313] = 3, + sym_identifier, + anon_sym_operator, + [212768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 16, + ACTIONS(7714), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9898), 32, + sym_identifier, + ACTIONS(7716), 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_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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [169369] = 3, + anon_sym_DASH_GT, + [212821] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7597), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, anon_sym_LPAREN2, + ACTIONS(12557), 1, anon_sym_STAR, + ACTIONS(12559), 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, + ACTIONS(12561), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3858), 1, + sym__type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12036), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, 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, - [169425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7607), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7609), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8075), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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___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, @@ -600593,126 +674482,63 @@ 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, - [169481] = 28, + [212910] = 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(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, + ACTIONS(12579), 1, sym_identifier, - ACTIONS(8669), 1, + ACTIONS(12581), 1, + anon_sym_LPAREN2, + ACTIONS(12583), 1, anon_sym_STAR, - ACTIONS(8671), 1, + ACTIONS(12585), 1, anon_sym_AMP_AMP, - ACTIONS(8673), 1, + ACTIONS(12587), 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, + ACTIONS(12591), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5184), 1, + sym__type_declarator, + STATE(6026), 1, + sym_pointer_type_declarator, + STATE(7214), 1, + sym_ms_unaligned_ptr_modifier, + STATE(12075), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7623), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7625), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8924), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(7011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7870), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8922), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(12589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6022), 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___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, @@ -600724,57 +674550,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [169643] = 3, + [212999] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 16, + ACTIONS(12637), 1, + anon_sym_DASH_GT, + ACTIONS(12643), 1, + anon_sym_requires, + STATE(7121), 1, + sym_trailing_return_type, + ACTIONS(12640), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7457), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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_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(9886), 32, + ACTIONS(9338), 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_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, @@ -600785,102 +674604,107 @@ 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, - [169699] = 3, + anon_sym_GT2, + [213063] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 6, + ACTIONS(11155), 1, + anon_sym_DASH_GT, + ACTIONS(11161), 1, + anon_sym_requires, + STATE(7144), 1, + sym_trailing_return_type, + ACTIONS(11158), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 11, + 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(7597), 42, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8287), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_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_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, - anon_sym_try, - anon_sym_requires, - [169755] = 3, + [213127] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 16, + ACTIONS(11168), 1, + anon_sym_DASH_GT, + ACTIONS(11174), 1, + anon_sym_requires, + STATE(7143), 1, + sym_trailing_return_type, + ACTIONS(11171), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7573), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5638), 32, + ACTIONS(8287), 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_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, @@ -600891,173 +674715,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, - [169811] = 3, + [213191] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 6, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(10645), 1, + anon_sym_DASH_GT, + STATE(7076), 1, + sym_trailing_return_type, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7439), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 11, + 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(7753), 42, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7623), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_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_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, - anon_sym_try, - anon_sym_requires, - [169867] = 3, + [213255] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 6, + STATE(4565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 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___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7563), 42, + anon_sym_DOT, + ACTIONS(7310), 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, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [169923] = 6, + [213311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 1, - anon_sym_SEMI, - ACTIONS(6605), 1, - anon_sym_LBRACK, - ACTIONS(6598), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6601), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(12648), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8750), 17, + ACTIONS(12650), 1, + anon_sym_and, + ACTIONS(9853), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -601067,22 +674839,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8752), 31, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9855), 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, @@ -601090,65 +674866,129 @@ 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, + [213367] = 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(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 1, + anon_sym_LPAREN2, + ACTIONS(5647), 1, + anon_sym_STAR, + ACTIONS(5649), 1, + anon_sym_AMP_AMP, + ACTIONS(5651), 1, + anon_sym_AMP, + ACTIONS(5655), 1, + anon_sym_LBRACK, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7862), 1, + anon_sym_RPAREN, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(9257), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(8774), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9941), 1, + sym__declarator, + STATE(10113), 1, + sym__abstract_declarator, + STATE(11956), 1, + sym_ms_based_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [213465] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 16, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(10577), 1, + anon_sym_DASH_GT, + STATE(7089), 1, + sym_trailing_return_type, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7556), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9925), 32, + ACTIONS(7623), 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_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, @@ -601159,102 +674999,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_STAR, - [170097] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7627), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7629), 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, - [170153] = 3, + [213529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 16, + STATE(7055), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7279), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9940), 32, + ACTIONS(7281), 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_GT_GT, + anon_sym___attribute__, + 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_or, anon_sym_and, @@ -601265,155 +675049,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_STAR, - [170209] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7643), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7645), 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, - [170265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7565), 6, - anon_sym_AMP, - anon_sym___attribute, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [170321] = 3, + anon_sym_DASH_GT, + [213585] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 16, + STATE(7072), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12654), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 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___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9862), 32, + ACTIONS(7271), 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, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_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, @@ -601424,49 +675099,47 @@ 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, - [170377] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [213641] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 16, + STATE(4565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 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___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9932), 32, + ACTIONS(7302), 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, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_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, @@ -601477,49 +675150,47 @@ 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, - [170433] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [213697] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 16, + STATE(7071), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12656), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7263), 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___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9742), 32, + ACTIONS(7265), 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, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_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, @@ -601530,49 +675201,48 @@ 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, - [170489] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [213753] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 16, + STATE(7063), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12658), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7290), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9858), 32, + ACTIONS(7292), 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_GT_GT, + anon_sym___attribute__, + 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_or, anon_sym_and, @@ -601583,49 +675253,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_STAR, - [170545] = 3, + anon_sym_DASH_GT, + [213809] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 16, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(12660), 1, + anon_sym_DASH_GT, + STATE(7182), 1, + sym_trailing_return_type, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7504), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9770), 32, + ACTIONS(9338), 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_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, @@ -601636,49 +675309,45 @@ 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, - [170601] = 3, + [213873] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 16, + STATE(4565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7304), 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___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9758), 32, + ACTIONS(7306), 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, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_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, @@ -601689,40 +675358,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, - [170657] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [213929] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7637), 42, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + STATE(7252), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12535), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7131), 10, 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7129), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -601736,35 +675407,136 @@ 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_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [170713] = 3, + [213991] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + 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, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7670), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [214045] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10436), 1, + anon_sym_DASH_GT, + ACTIONS(10458), 1, + anon_sym_requires, + STATE(7096), 1, + sym_trailing_return_type, + ACTIONS(10455), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7543), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7474), 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, + [214109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 17, + ACTIONS(7442), 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_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_COLON, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8659), 31, + ACTIONS(7447), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -601775,69 +675547,67 @@ 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [214161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 16, + STATE(7055), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9790), 32, + ACTIONS(7310), 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_GT_GT, + anon_sym___attribute__, + 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_or, anon_sym_and, @@ -601848,102 +675618,47 @@ 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, - [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, + anon_sym_DASH_GT, + [214217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 16, + STATE(7055), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9750), 32, + ACTIONS(7302), 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_GT_GT, + anon_sym___attribute__, + 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_or, anon_sym_and, @@ -601954,49 +675669,41 @@ 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, - [170937] = 3, + anon_sym_DASH_GT, + [214273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 16, + ACTIONS(7566), 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___attribute, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9780), 32, + ACTIONS(7568), 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -602007,49 +675714,55 @@ 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, - [170993] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [214325] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 16, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(10467), 1, + anon_sym_DASH_GT, + STATE(7193), 1, + sym_trailing_return_type, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7425), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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_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(9794), 32, + ACTIONS(7474), 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_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, @@ -602060,49 +675773,47 @@ 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, - [171049] = 3, + anon_sym_GT2, + [214389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 16, + STATE(7028), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12663), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 10, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9810), 32, + ACTIONS(7271), 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_GT_GT, + anon_sym___attribute__, + 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_or, anon_sym_and, @@ -602113,49 +675824,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_STAR, - [171105] = 3, + anon_sym_DASH_GT, + [214445] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 16, + ACTIONS(10577), 1, + anon_sym_DASH_GT, + ACTIONS(10583), 1, + anon_sym_requires, + STATE(7194), 1, + sym_trailing_return_type, + ACTIONS(10580), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7556), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9814), 32, + ACTIONS(7623), 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_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, @@ -602166,49 +675880,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_STAR, - [171161] = 3, + [214509] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 16, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(12637), 1, + anon_sym_DASH_GT, + STATE(7086), 1, + sym_trailing_return_type, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7457), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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_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(9820), 32, + ACTIONS(9338), 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_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, @@ -602219,74 +675934,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, - [171217] = 3, + anon_sym_GT2, + [214573] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 6, + STATE(7061), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12665), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 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___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7605), 42, + anon_sym_DOT, + ACTIONS(7318), 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, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [171273] = 3, + [214629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 19, + ACTIONS(7814), 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 +676007,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(7816), 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, @@ -602307,40 +676022,31 @@ 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_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, - 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, + [214681] = 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(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 17, + ACTIONS(12648), 1, + anon_sym_AMP_AMP, + ACTIONS(12650), 1, + anon_sym_and, + ACTIONS(12667), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12669), 1, + anon_sym_or, + ACTIONS(9737), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -602350,15 +676056,16 @@ 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(7791), 24, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9739), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -602368,8 +676075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -602383,48 +676088,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [171393] = 3, + [214741] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 16, + ACTIONS(10467), 1, + anon_sym_DASH_GT, + ACTIONS(10555), 1, + anon_sym_requires, + STATE(7175), 1, + sym_trailing_return_type, + ACTIONS(10552), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7425), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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_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(9921), 32, + ACTIONS(7474), 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_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - 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, @@ -602435,49 +676142,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_STAR, - [171449] = 3, + anon_sym_GT2, + [214805] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 16, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(11168), 1, + anon_sym_DASH_GT, + STATE(7133), 1, + sym_trailing_return_type, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7573), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 9, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9597), 32, + ACTIONS(8287), 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_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, @@ -602488,46 +676198,134 @@ 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, - [171505] = 7, + [214869] = 7, 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, + ACTIONS(5703), 1, + anon_sym_decltype, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(10026), 1, + sym_auto, + STATE(4240), 1, + sym_decltype_auto, + ACTIONS(7361), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 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, + [214929] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7066), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12671), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 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(7324), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [214985] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7055), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 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, - sym_identifier, - ACTIONS(7791), 24, + ACTIONS(7298), 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, @@ -602539,46 +676337,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + 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, - [171569] = 3, + [215041] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 6, + STATE(7255), 1, + sym_alignas_qualifier, + ACTIONS(12676), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7054), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7047), 13, anon_sym_AMP, + anon_sym___attribute__, anon_sym___attribute, + anon_sym___based, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7769), 42, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + ACTIONS(7049), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_COLON_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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(12673), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -602590,31 +676406,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_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [171625] = 7, + [215101] = 5, 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, + STATE(7055), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12679), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7173), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -602623,21 +676425,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___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(7966), 24, + ACTIONS(7175), 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, @@ -602649,46 +676441,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + 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, - [171689] = 3, + [215157] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7669), 42, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6958), 1, + sym_auto, + ACTIONS(6960), 1, + anon_sym_decltype, + ACTIONS(12682), 1, + anon_sym_LT, + STATE(2694), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3095), 1, + sym_template_argument_list, + STATE(3255), 1, + sym_decltype_auto, + ACTIONS(6952), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5669), 8, 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_COLON, + ACTIONS(5661), 25, + 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_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_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -602702,29 +676509,22 @@ 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_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, + anon_sym_template, anon_sym_requires, - [171745] = 7, + [215225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10151), 1, - anon_sym_requires, - 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, + STATE(7055), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -602733,21 +676533,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___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(8422), 24, + ACTIONS(7255), 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, @@ -602759,29 +676549,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + 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, - [171809] = 7, + [215281] = 5, 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, + STATE(7068), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12684), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7263), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -602790,21 +676584,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___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(8907), 24, + ACTIONS(7265), 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, @@ -602816,31 +676600,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + 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, - [171873] = 9, + [215337] = 5, 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, + STATE(7053), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12686), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -602849,21 +676635,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___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(8008), 24, + ACTIONS(7318), 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, @@ -602875,29 +676651,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + 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, - [171941] = 7, + [215393] = 5, 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, + STATE(7057), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12688), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7322), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -602906,21 +676686,64 @@ 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(7324), 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___attribute__, + 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, + [215449] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 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, - sym_identifier, - ACTIONS(7966), 24, + ACTIONS(7298), 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, @@ -602929,85 +676752,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [172005] = 3, + anon_sym_GT2, + [215505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 6, + ACTIONS(7566), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7563), 42, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7568), 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_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_COLON_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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, + anon_sym_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_requires, - [172061] = 7, + [215557] = 5, 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, + STATE(7055), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7304), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603016,21 +676837,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___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(8422), 24, + ACTIONS(7306), 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, @@ -603042,52 +676853,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + 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, - [172125] = 7, + [215613] = 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(7149), 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_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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(8915), 24, + ACTIONS(7151), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -603096,85 +676897,46 @@ 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [172189] = 3, - ACTIONS(3), 1, - sym_comment, - 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, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [172245] = 7, + [215665] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, + ACTIONS(8257), 1, anon_sym_requires, - ACTIONS(7283), 2, + ACTIONS(10436), 1, + anon_sym_DASH_GT, + STATE(7106), 1, + sym_trailing_return_type, + ACTIONS(8255), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(7330), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5300), 2, + STATE(7543), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7472), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603183,21 +676945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(8907), 24, + ACTIONS(7474), 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, @@ -603210,80 +676961,75 @@ 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, - [172309] = 3, + [215729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 6, + STATE(4565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7253), 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___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7641), 42, + anon_sym_DOT, + ACTIONS(7255), 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, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [172365] = 7, + [215785] = 4, 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, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7359), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -603301,7 +677047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8915), 24, + ACTIONS(7361), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -603319,89 +677065,37 @@ 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, - [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, + [215839] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 18, + STATE(7055), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12652), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8667), 29, + ACTIONS(7277), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603412,46 +677106,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_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_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [172540] = 3, + [215895] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 16, + ACTIONS(10645), 1, + anon_sym_DASH_GT, + ACTIONS(10651), 1, + anon_sym_requires, + STATE(7117), 1, + sym_trailing_return_type, + ACTIONS(10648), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7439), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8659), 31, + ACTIONS(7623), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603462,128 +677166,53 @@ 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, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, - [172595] = 21, + anon_sym_GT2, + [215959] = 9, 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, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(11155), 1, + anon_sym_DASH_GT, + STATE(7135), 1, + sym_trailing_return_type, + ACTIONS(8240), 2, 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, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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), 31, + ACTIONS(8287), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -603592,12 +677221,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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -603610,29 +677234,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_COLON_RBRACK, - [172755] = 3, + anon_sym_GT2, + [216023] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 16, + STATE(4565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 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_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_DOT, - sym_literal_suffix, - ACTIONS(8667), 31, + ACTIONS(7277), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603643,73 +677269,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_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, - [172810] = 12, + anon_sym_GT2, + [216079] = 5, 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, + STATE(4565), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12646), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7279), 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(9427), 26, + ACTIONS(7281), 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, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -603722,40 +677336,33 @@ 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, - [172883] = 10, + anon_sym_GT2, + [216135] = 5, 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, + STATE(7034), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7290), 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(8002), 31, + ACTIONS(7292), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -603764,12 +677371,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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -603783,11 +677387,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [172952] = 3, + anon_sym_GT2, + [216191] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 12, + ACTIONS(12660), 1, + anon_sym_DASH_GT, + ACTIONS(12695), 1, + anon_sym_requires, + STATE(7177), 1, + sym_trailing_return_type, + ACTIONS(12692), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7504), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603796,11 +677415,8 @@ 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___asm, anon_sym_DOT, - ACTIONS(8706), 35, + ACTIONS(9338), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603814,8 +677430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -603827,36 +677442,106 @@ 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, + [216255] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12706), 1, + anon_sym_AMP_AMP, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12724), 1, + anon_sym_or, + ACTIONS(12726), 1, + anon_sym_and, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [173007] = 3, + ACTIONS(11061), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11063), 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, + [216354] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 16, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8699), 31, + ACTIONS(8287), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603867,41 +677552,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_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_GT2, + [216413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 18, + ACTIONS(7718), 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, @@ -603909,10 +677587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8699), 29, + sym_identifier, + ACTIONS(7720), 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, @@ -603921,140 +677603,128 @@ 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, - 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, - [173117] = 21, + [216464] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5645), 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, + ACTIONS(5647), 1, anon_sym_STAR, - ACTIONS(11807), 1, + ACTIONS(5649), 1, anon_sym_AMP_AMP, - ACTIONS(11809), 1, + ACTIONS(5651), 1, anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(4672), 1, + ACTIONS(5655), 1, + anon_sym_LBRACK, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(9257), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, + STATE(8774), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, sym__function_declarator_seq, - STATE(8858), 1, + STATE(10203), 1, + sym__declarator, + STATE(10531), 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(6132), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6594), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(11956), 1, + sym_ms_based_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, 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_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, - [173208] = 12, + sym_abstract_qualified_identifier, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [216559] = 7, 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, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7543), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(9427), 24, + ACTIONS(7474), 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, @@ -604067,76 +677737,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [216618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3108), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(3118), 32, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, + anon_sym_try, anon_sym_requires, - [173281] = 3, + [216669] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 18, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12706), 1, + anon_sym_AMP_AMP, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12724), 1, + anon_sym_or, + ACTIONS(12726), 1, + anon_sym_and, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11053), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11055), 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, + [216768] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12732), 1, + sym_identifier, + ACTIONS(12734), 1, + anon_sym_LPAREN2, + ACTIONS(12736), 1, + anon_sym_STAR, + ACTIONS(12738), 1, + anon_sym_AMP_AMP, + ACTIONS(12740), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10153), 1, + sym__field_declarator, + STATE(10346), 1, + sym_operator_name, + STATE(12473), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6459), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8395), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(9957), 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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [216853] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, anon_sym_SLASH, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10066), 15, + aux_sym_preproc_elif_token1, + 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, 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), 29, + sym_identifier, + ACTIONS(10068), 16, 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_LBRACK, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [173336] = 3, + [216922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 18, + ACTIONS(7747), 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, @@ -604144,10 +677999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8659), 29, + sym_identifier, + 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, @@ -604156,140 +678015,97 @@ 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, - 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, + [216973] = 19, 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, + ACTIONS(9662), 1, 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__, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + 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, - [173460] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8750), 16, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(10066), 9, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8752), 31, + sym_identifier, + ACTIONS(10068), 10, 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_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, - [173515] = 3, + [217056] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 14, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7468), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604300,11 +678116,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_LBRACK, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8706), 33, + ACTIONS(9269), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -604316,8 +678129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -604328,35 +678140,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_noexcept, - anon_sym_throw, - anon_sym_requires, - [173570] = 7, + [217115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - anon_sym_delete, - ACTIONS(11815), 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(7810), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604365,7 +678156,6 @@ 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, @@ -604373,10 +678163,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 19, + sym_identifier, + ACTIONS(7812), 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, @@ -604386,6 +678182,8 @@ 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, @@ -604393,19 +678191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173632] = 7, + [217166] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - STATE(2079), 1, + STATE(2278), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5810), 1, sym__function_declarator_seq, - ACTIONS(10198), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9800), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604414,24 +678211,66 @@ 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(9802), 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_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [217225] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(8255), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - ACTIONS(10196), 22, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7573), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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(8287), 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, @@ -604442,24 +678281,32 @@ 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, - [173694] = 7, + [217284] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - STATE(2079), 1, + STATE(2285), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5810), 1, sym__function_declarator_seq, - ACTIONS(10202), 20, + ACTIONS(9774), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -604477,10 +678324,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(10200), 22, + ACTIONS(9776), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -604503,18 +678347,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173756] = 7, + [217343] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - STATE(2079), 1, + STATE(2285), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5810), 1, sym__function_declarator_seq, - ACTIONS(10206), 20, + ACTIONS(9792), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -604532,10 +678376,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(10204), 22, + ACTIONS(9794), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -604558,18 +678399,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173818] = 7, + [217402] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - STATE(2079), 1, + STATE(2285), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5810), 1, sym__function_declarator_seq, - ACTIONS(10210), 20, + ACTIONS(9796), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -604587,10 +678428,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(10208), 22, + ACTIONS(9798), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -604613,32 +678451,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173880] = 7, + [217461] = 10, 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(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + ACTIONS(12742), 1, + anon_sym_COLON, + ACTIONS(12744), 1, + anon_sym_LBRACE, + STATE(7302), 1, + sym__enum_base_clause, + STATE(7369), 1, + sym_enumerator_list, + STATE(7867), 1, + sym_attribute_specifier, + ACTIONS(7390), 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(10172), 32, + ACTIONS(7392), 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, @@ -604646,12 +678491,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, @@ -604664,110 +678505,35 @@ 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, - [173942] = 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(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(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8891), 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(6727), 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, - [174032] = 8, + anon_sym_GT2, + [217526] = 3, 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(7755), 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_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), 27, + sym_identifier, + ACTIONS(7757), 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, @@ -604776,92 +678542,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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [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, + [217577] = 3, 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(10190), 10, + ACTIONS(7775), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604870,12 +678567,22 @@ 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, + ACTIONS(7777), 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, @@ -604886,54 +678593,40 @@ 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_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [174224] = 8, + [217628] = 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(10583), 1, + anon_sym_requires, + ACTIONS(10580), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7556), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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(8839), 27, + ACTIONS(7623), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -604944,7 +678637,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, @@ -604957,22 +678654,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, - [174288] = 7, + [217687] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - STATE(2079), 1, + STATE(2285), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5810), 1, sym__function_declarator_seq, - ACTIONS(10186), 20, + ACTIONS(9800), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -604990,10 +678683,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(10184), 22, + ACTIONS(9802), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -605016,95 +678706,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [174350] = 22, + [217746] = 10, 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, + ACTIONS(12445), 1, + anon_sym_LBRACE, + ACTIONS(12492), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9219), 1, - anon_sym_requires, - ACTIONS(10002), 1, - anon_sym_DASH_GT, - 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(12494), 1, + anon_sym___attribute, + ACTIONS(12746), 1, + anon_sym_COLON, + STATE(7180), 1, + sym_attribute_specifier, + STATE(7331), 1, + sym__enum_base_clause, + STATE(7403), 1, + sym_enumerator_list, + ACTIONS(7390), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605113,9 +678732,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(7791), 27, + ACTIONS(7392), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -605129,9 +678747,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, @@ -605143,80 +678760,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [174508] = 7, + anon_sym_DASH_GT, + [217811] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - STATE(2069), 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_COLON, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(10192), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12704), 1, anon_sym_PIPE_PIPE, + ACTIONS(12706), 1, anon_sym_AMP_AMP, + ACTIONS(12710), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(12718), 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(12722), 1, anon_sym_LT_EQ_GT, + ACTIONS(12724), 1, anon_sym_or, + ACTIONS(12726), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(12728), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12730), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12750), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [174570] = 9, + ACTIONS(11057), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11059), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [217914] = 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(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2285), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9804), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605225,12 +678856,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(7966), 27, + sym_identifier, + ACTIONS(9806), 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, @@ -605241,39 +678881,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___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, - [174636] = 9, + anon_sym_DASH_GT, + [217973] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10169), 1, - anon_sym_requires, - ACTIONS(10600), 1, - anon_sym_DASH_GT, - 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, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2285), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9780), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605282,12 +678908,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(8422), 27, + sym_identifier, + ACTIONS(9782), 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, @@ -605298,39 +678933,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___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, - [174702] = 9, + anon_sym_DASH_GT, + [218032] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11736), 1, - anon_sym_requires, - ACTIONS(11833), 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, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2285), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9784), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605339,12 +678960,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(8907), 27, + sym_identifier, + ACTIONS(9786), 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, @@ -605355,36 +678985,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___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, - [174768] = 8, + anon_sym_DASH_GT, + [218091] = 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(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2278), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9774), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605393,12 +679011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(8835), 29, + ACTIONS(9776), 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, @@ -605409,7 +679027,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, @@ -605422,21 +679042,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_requires, - [174832] = 7, + anon_sym_COLON_RBRACK, + [218150] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - STATE(2079), 1, + STATE(2285), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5810), 1, sym__function_declarator_seq, - ACTIONS(10190), 20, + ACTIONS(9788), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -605454,10 +679072,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(10188), 22, + ACTIONS(9790), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -605480,25 +679095,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [174894] = 9, + [218209] = 3, 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(7779), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605507,11 +679108,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(8907), 27, + sym_identifier, + ACTIONS(7781), 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, @@ -605523,68 +679134,55 @@ 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_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, - [174960] = 12, + anon_sym_DASH_GT, + [218260] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, - anon_sym_LPAREN2, - ACTIONS(8098), 1, - anon_sym_LBRACK, - ACTIONS(8677), 1, - anon_sym_STAR, - ACTIONS(8679), 1, - anon_sym_AMP_AMP, - ACTIONS(8681), 1, - anon_sym_AMP, - STATE(2274), 1, - sym_parameter_list, - STATE(5348), 1, - sym__function_declarator_seq, - STATE(6547), 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(8257), 1, + anon_sym_requires, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7556), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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_DOT, - ACTIONS(9427), 24, + ACTIONS(7623), 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -605597,25 +679195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175032] = 7, + [218319] = 3, 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(7718), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605624,8 +679208,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 +679215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 18, + sym_identifier, + ACTIONS(7720), 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, @@ -605646,24 +679234,27 @@ 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, - [175094] = 7, + [218370] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - STATE(2069), 1, + STATE(2278), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5810), 1, sym__function_declarator_seq, - ACTIONS(10198), 10, + ACTIONS(9804), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605674,7 +679265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(10196), 32, + ACTIONS(9806), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -605703,22 +679294,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, anon_sym_COLON_RBRACK, - [175156] = 7, + [218429] = 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(10194), 20, + ACTIONS(7743), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -605736,16 +679316,14 @@ 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(10192), 22, + ACTIONS(7745), 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, @@ -605756,239 +679334,20 @@ 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, - [175218] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6861), 1, - anon_sym___attribute, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - 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(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8938), 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(6173), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6834), 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_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, - [175310] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6821), 1, - anon_sym___attribute, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - 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(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8942), 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(6843), 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, - [175402] = 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(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(8708), 1, - anon_sym_STAR, - ACTIONS(8710), 1, - anon_sym_AMP_AMP, - ACTIONS(8712), 1, - 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_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, - [175504] = 7, + [218480] = 3, 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(7751), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605997,12 +679356,22 @@ 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), 32, + sym_identifier, + ACTIONS(7753), 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, @@ -606013,111 +679382,119 @@ 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_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [175566] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6821), 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(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_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, + anon_sym_DASH_GT, + [218531] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(10050), 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(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12706), 1, + anon_sym_AMP_AMP, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12726), 1, + anon_sym_and, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 3, + aux_sym_preproc_elif_token1, + anon_sym_or, + sym_identifier, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 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, + [218626] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, anon_sym_SLASH, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -606129,65 +679506,74 @@ static const uint16_t ts_small_parse_table[] = { 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(10172), 22, + ACTIONS(10068), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_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, - [175720] = 3, + [218701] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7289), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12734), 1, anon_sym_LPAREN2, + ACTIONS(12752), 1, + sym_identifier, + ACTIONS(12754), 1, anon_sym_STAR, + ACTIONS(12756), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7287), 34, + ACTIONS(12758), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(6832), 1, + sym_ms_unaligned_ptr_modifier, + STATE(9711), 1, + sym__field_declarator, + STATE(9871), 1, + sym_operator_name, + STATE(12436), 1, + sym_ms_based_modifier, + ACTIONS(3224), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7137), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8368), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3222), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + STATE(9957), 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(3226), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -606200,26 +679586,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, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [175774] = 7, + [218786] = 7, 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(10206), 10, + ACTIONS(10458), 1, + anon_sym_requires, + ACTIONS(10455), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7543), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606228,12 +679609,11 @@ 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(10204), 32, + ACTIONS(7474), 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, @@ -606244,9 +679624,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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -606259,91 +679638,92 @@ 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, - [175836] = 21, + [218845] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11821), 1, - anon_sym_STAR, - ACTIONS(11823), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12706), 1, anon_sym_AMP_AMP, - ACTIONS(11825), 1, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12724), 1, + anon_sym_or, + ACTIONS(12726), 1, + anon_sym_and, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12750), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11065), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, anon_sym_AMP, - STATE(4861), 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(8884), 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(6153), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6925), 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), 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, - [175926] = 7, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11067), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [218948] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - STATE(2069), 1, + STATE(2457), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5810), 1, sym__function_declarator_seq, - ACTIONS(10186), 10, + ACTIONS(9780), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606352,12 +679732,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(10184), 32, + ACTIONS(9782), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -606369,8 +679748,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, @@ -606386,33 +679764,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_COLON_RBRACK, - [175988] = 7, + [219007] = 7, 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(10210), 10, + ACTIONS(11161), 1, + anon_sym_requires, + ACTIONS(11158), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7455), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8285), 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(10208), 32, + ACTIONS(8287), 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, @@ -606420,12 +679801,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, @@ -606438,104 +679815,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, - 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, + anon_sym_GT2, + [219066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11844), 1, - anon_sym_delete, - ACTIONS(11846), 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(7759), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606544,7 +679829,6 @@ 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, @@ -606552,10 +679836,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 19, + sym_identifier, + ACTIONS(7761), 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, @@ -606565,204 +679855,79 @@ 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_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, - [176214] = 27, + [219117] = 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(3444), 1, - anon_sym_TILDE, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(5627), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(8651), 1, - anon_sym_STAR, - ACTIONS(8653), 1, - anon_sym_AMP_AMP, - ACTIONS(8655), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5327), 1, + STATE(2278), 1, sym_parameter_list, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8598), 1, + STATE(5810), 1, sym__function_declarator_seq, - STATE(8788), 1, - sym__declarator, - STATE(9037), 1, - sym__abstract_declarator, - STATE(10837), 1, - sym_ms_based_modifier, - ACTIONS(9427), 2, - anon_sym_COMMA, - anon_sym_GT2, - 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, - [176316] = 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(9796), 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(9798), 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, anon_sym_AMP_AMP, anon_sym_CARET, anon_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_COLON_RBRACK, + [219176] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7201), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(12472), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(12474), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7199), 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, - [176432] = 5, - 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, + STATE(2457), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9784), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606772,15 +679937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute, - anon_sym_COLON, anon_sym_DOT, - ACTIONS(9395), 31, + ACTIONS(9786), 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, @@ -606789,11 +679953,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -606805,37 +679968,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_COLON_RBRACK, - [176490] = 9, + [219235] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, + ACTIONS(12763), 1, anon_sym_requires, - ACTIONS(10002), 1, - anon_sym_DASH_GT, - STATE(5881), 1, - sym_trailing_return_type, - ACTIONS(7219), 2, + ACTIONS(12760), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(7332), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5460), 2, + STATE(7468), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 10, + ACTIONS(9267), 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(7791), 27, + ACTIONS(9269), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -606846,11 +680005,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___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -606863,13 +680018,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [176556] = 4, + anon_sym_DASH_GT, + anon_sym_GT2, + [219294] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11854), 2, + ACTIONS(7173), 1, + sym_primitive_type, + STATE(7179), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12766), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7186), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9322), 11, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7183), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [219351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7767), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606878,62 +680084,46 @@ 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9324), 33, + sym_identifier, + ACTIONS(7769), 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___attribute__, - 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_bitor, - anon_sym_xor, - anon_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, + [219402] = 3, 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, + ACTIONS(7786), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606942,11 +680132,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(7966), 27, + sym_identifier, + ACTIONS(7788), 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, @@ -606958,39 +680158,20 @@ 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_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, - [176678] = 9, + anon_sym_DASH_GT, + [219453] = 3, 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, + ACTIONS(7794), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606999,11 +680180,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(8422), 27, + sym_identifier, + ACTIONS(7796), 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, @@ -607015,36 +680206,20 @@ 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_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, - [176744] = 8, + anon_sym_DASH_GT, + [219504] = 3, 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, + ACTIONS(7806), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -607053,11 +680228,21 @@ 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(8839), 29, + sym_identifier, + ACTIONS(7808), 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, @@ -607069,400 +680254,50 @@ 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [176808] = 21, - 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, - 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(8958), 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, - 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, - 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, + [219555] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 3, + ACTIONS(5684), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11856), 1, - sym_identifier, - ACTIONS(11858), 1, + ACTIONS(6783), 1, + anon_sym_LBRACK, + ACTIONS(12433), 1, + anon_sym_LT, + STATE(7304), 1, + sym_template_argument_list, + ACTIONS(6778), 2, 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(5995), 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_LBRACK_LBRACK, + ACTIONS(6781), 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(6774), 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, @@ -607475,10 +680310,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177306] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [219616] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 14, + ACTIONS(10555), 1, + anon_sym_requires, + ACTIONS(10552), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7425), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -607489,11 +680341,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_LBRACK, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8940), 31, + ACTIONS(7474), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -607505,8 +680354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -607517,35 +680365,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_requires, - [177359] = 3, + [219675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 14, + ACTIONS(7798), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - 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, - ACTIONS(9009), 31, + sym_identifier, + ACTIONS(7800), 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, @@ -607554,113 +680404,105 @@ 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_LBRACK, + 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [177412] = 21, + [219726] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, + anon_sym_PERCENT, + ACTIONS(12712), 2, 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, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + sym_identifier, + ACTIONS(10068), 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, + [219811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 3, + ACTIONS(12771), 1, + anon_sym_LPAREN2, + ACTIONS(12773), 6, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3622), 42, + ACTIONS(12769), 36, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -607683,35 +680525,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, - [177554] = 3, + anon_sym_operator, + [219864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 14, + ACTIONS(7822), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(7824), 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___attribute, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym___asm, + 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, + [219915] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8257), 1, + anon_sym_requires, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7504), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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(8981), 31, + ACTIONS(9338), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -607722,9 +680613,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_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -607735,133 +680628,234 @@ 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, - [177607] = 17, + [219974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(7826), 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(7828), 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(11174), 1, anon_sym_STAR, - ACTIONS(11176), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, 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(8376), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6234), 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(7391), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_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, + [220025] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(8240), 2, anon_sym_final, anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7457), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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(9338), 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, - anon_sym_try, - anon_sym_requires, - [177688] = 21, + [220084] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12706), 1, + anon_sym_AMP_AMP, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12724), 1, + anon_sym_or, + ACTIONS(12726), 1, + anon_sym_and, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12750), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10337), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10339), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [220187] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12734), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, + ACTIONS(12752), 1, + sym_identifier, + ACTIONS(12754), 1, anon_sym_STAR, - ACTIONS(11908), 1, + ACTIONS(12756), 1, anon_sym_AMP_AMP, - ACTIONS(11910), 1, + ACTIONS(12758), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + STATE(2859), 1, sym_alignas_qualifier, - STATE(4955), 1, - sym__type_declarator, - STATE(6178), 1, + STATE(6832), 1, sym_ms_unaligned_ptr_modifier, - STATE(11304), 1, + STATE(9676), 1, + sym__field_declarator, + STATE(9871), 1, + sym_operator_name, + STATE(12436), 1, sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(3224), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6459), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7117), 2, + STATE(8458), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(3222), 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, + STATE(9957), 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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -607875,61 +680869,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177777] = 21, + [220272] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7830), 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(7832), 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, + [220323] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12732), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12734), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11912), 1, + ACTIONS(12736), 1, anon_sym_STAR, - ACTIONS(11914), 1, + ACTIONS(12738), 1, anon_sym_AMP_AMP, - ACTIONS(11916), 1, + ACTIONS(12740), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + STATE(2859), 1, sym_alignas_qualifier, - STATE(3681), 1, - sym__type_declarator, - STATE(6178), 1, + STATE(6832), 1, sym_ms_unaligned_ptr_modifier, - STATE(11037), 1, + STATE(10135), 1, + sym__field_declarator, + STATE(10346), 1, + sym_operator_name, + STATE(12473), 1, sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(3224), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7167), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7084), 2, + STATE(8386), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(3222), 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, + STATE(9957), 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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -607943,552 +680982,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177866] = 3, + [220408] = 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__, - 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, + ACTIONS(7802), 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, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [177919] = 3, + ACTIONS(7804), 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, + [220459] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3626), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(12541), 1, anon_sym___attribute__, + ACTIONS(12543), 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, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - [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, + ACTIONS(12742), 1, + anon_sym_COLON, + ACTIONS(12744), 1, + anon_sym_LBRACE, + STATE(7303), 1, + sym__enum_base_clause, + STATE(7411), 1, + sym_enumerator_list, + STATE(7884), 1, + sym_attribute_specifier, + ACTIONS(7413), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6944), 32, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7415), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [178035] = 21, + [220524] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11912), 1, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2278), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9792), 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(9794), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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(3694), 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(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7134), 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, - [178124] = 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_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, + [220583] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(4192), 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, - [178177] = 21, + ACTIONS(12695), 1, + anon_sym_requires, + ACTIONS(12692), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7504), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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(9338), 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, + [220642] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11878), 1, - sym_identifier, - ACTIONS(11880), 1, + ACTIONS(12643), 1, + anon_sym_requires, + ACTIONS(12640), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7457), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 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(9338), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11882), 1, anon_sym_STAR, - ACTIONS(11884), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, 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(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(7005), 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, - [178266] = 21, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [220701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11856), 1, + ACTIONS(7850), 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(11858), 1, + ACTIONS(7852), 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(11860), 1, anon_sym_STAR, - ACTIONS(11862), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, 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(8251), 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(6199), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7172), 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, - [178355] = 17, + anon_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, + [220752] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7347), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(12472), 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(12474), 1, anon_sym_LBRACK, - STATE(4330), 1, + STATE(2457), 1, sym_parameter_list, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(8314), 1, + STATE(5810), 1, sym__function_declarator_seq, - STATE(8387), 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(7345), 13, + ACTIONS(9792), 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(9794), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - 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_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, - [178436] = 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__, - 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, - [178489] = 4, + [220811] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11927), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(9027), 14, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2278), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9788), 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_COLON, anon_sym_DOT, - ACTIONS(9029), 30, + ACTIONS(9790), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -608496,9 +681374,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___attribute__, - anon_sym_LBRACK_LBRACK, + 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, @@ -608509,136 +681390,189 @@ 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, - [178544] = 3, + anon_sym_COLON_RBRACK, + [220870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3618), 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, + ACTIONS(7771), 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, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [178597] = 21, + ACTIONS(7773), 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, + [220921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, + ACTIONS(7834), 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(11931), 1, + ACTIONS(7836), 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(11933), 1, anon_sym_STAR, - ACTIONS(11935), 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, + [220972] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12706), 1, anon_sym_AMP_AMP, - ACTIONS(11937), 1, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12724), 1, + anon_sym_or, + ACTIONS(12726), 1, + anon_sym_and, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11075), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, 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(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11053), 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(7103), 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(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, - [178686] = 3, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11077), 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, + [221071] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 12, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2457), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9796), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -608648,13 +681582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8891), 33, + ACTIONS(9798), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -608665,9 +681596,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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -608678,17 +681608,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_requires, - [178739] = 3, + [221130] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 12, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2457), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9800), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -608698,13 +681634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8899), 33, + ACTIONS(9802), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -608715,9 +681648,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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -608728,361 +681660,137 @@ 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_requires, - [178792] = 21, + [221189] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11878), 1, - sym_identifier, - ACTIONS(11880), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(11882), 1, - anon_sym_STAR, - ACTIONS(11884), 1, - anon_sym_AMP_AMP, - ACTIONS(11886), 1, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2457), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9804), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, 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(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(6198), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7005), 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, - [178881] = 21, - 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9806), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, - ACTIONS(11898), 1, + anon_sym_PERCENT, + 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(3497), 1, - sym_alignas_qualifier, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8446), 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(6247), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7095), 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, - [178970] = 21, + anon_sym_CARET, + anon_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, + [221248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, + ACTIONS(7763), 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(11931), 1, + ACTIONS(7765), 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(11933), 1, anon_sym_STAR, - ACTIONS(11935), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11937), 1, - anon_sym_AMP, - ACTIONS(11941), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(5022), 1, - sym__type_declarator, - STATE(5594), 1, - sym_pointer_type_declarator, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11053), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6219), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7054), 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(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, - [179059] = 21, + anon_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, + [221299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(7261), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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(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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3315), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3310), 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, - [179201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3602), 3, + 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(3600), 42, + ACTIONS(7259), 32, + anon_sym_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_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -609098,238 +681806,189 @@ static const uint16_t ts_small_parse_table[] = { 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_final, + anon_sym_override, anon_sym_template, - [179254] = 3, + anon_sym_try, + anon_sym_requires, + [221350] = 7, 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__, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2457), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9774), 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___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, - [179307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3602), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3600), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + anon_sym_DOT, + ACTIONS(9776), 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___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, - [179360] = 21, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, + [221409] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, - sym_identifier, - ACTIONS(11931), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11933), 1, - anon_sym_STAR, - ACTIONS(11935), 1, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12706), 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(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11053), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6243), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7103), 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(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, - [179449] = 21, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12724), 1, + anon_sym_or, + ACTIONS(12726), 1, + anon_sym_and, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11079), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11081), 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, + [221508] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12734), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, + ACTIONS(12752), 1, + sym_identifier, + ACTIONS(12754), 1, anon_sym_STAR, - ACTIONS(11908), 1, + ACTIONS(12756), 1, anon_sym_AMP_AMP, - ACTIONS(11910), 1, + ACTIONS(12758), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + STATE(2859), 1, sym_alignas_qualifier, - STATE(4975), 1, - sym__type_declarator, - STATE(6178), 1, + STATE(6832), 1, sym_ms_unaligned_ptr_modifier, - STATE(11304), 1, + STATE(9711), 1, + sym__field_declarator, + STATE(9871), 1, + sym_operator_name, + STATE(12436), 1, sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(3224), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6459), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7118), 2, + STATE(8368), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(3222), 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, + STATE(9957), 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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -609343,162 +682002,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179538] = 21, + [221593] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11943), 1, - sym_identifier, - ACTIONS(11945), 1, + ACTIONS(8242), 1, + anon_sym_requires, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7425), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 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(7474), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11947), 1, anon_sym_STAR, - ACTIONS(11949), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, 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, - 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, - [179627] = 3, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, + [221652] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3678), 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, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12706), 1, + anon_sym_AMP_AMP, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12724), 1, + anon_sym_or, + ACTIONS(12726), 1, + anon_sym_and, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10105), 2, + aux_sym_preproc_elif_token1, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [179680] = 17, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10103), 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, + [221751] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7349), 1, - anon_sym___attribute, - ACTIONS(10363), 1, + ACTIONS(12778), 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, + STATE(7372), 1, sym_alignas_qualifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8382), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(12781), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4109), 2, + STATE(7161), 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(7047), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(12775), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -609511,58 +682157,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7351), 13, + ACTIONS(7049), 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, - [179761] = 17, + [221812] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7341), 1, - anon_sym___attribute, - ACTIONS(10363), 1, + ACTIONS(10947), 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, + STATE(7372), 1, sym_alignas_qualifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8384), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10949), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6260), 2, + STATE(7161), 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(7057), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10936), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -609575,41 +682210,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7343), 13, + ACTIONS(7059), 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, - [179842] = 3, + [221873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 14, + ACTIONS(7842), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - 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, - ACTIONS(8891), 31, + sym_identifier, + ACTIONS(7844), 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, @@ -609618,48 +682268,46 @@ 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_LBRACK, + 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_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, + [221924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 14, + ACTIONS(7846), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, - 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, - ACTIONS(8899), 31, + sym_identifier, + ACTIONS(7848), 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, @@ -609668,268 +682316,196 @@ 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_LBRACK, + 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [179948] = 21, + [221975] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11878), 1, - sym_identifier, - ACTIONS(11880), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11882), 1, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, anon_sym_STAR, - ACTIONS(11884), 1, - anon_sym_AMP_AMP, - ACTIONS(11886), 1, + anon_sym_PERCENT, + ACTIONS(10066), 13, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11890), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4646), 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(6213), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7168), 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, - [180037] = 21, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(10068), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + [222046] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11943), 1, - sym_identifier, - ACTIONS(11945), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11947), 1, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, anon_sym_STAR, - ACTIONS(11949), 1, - anon_sym_AMP_AMP, - ACTIONS(11951), 1, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, 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(5995), 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, - 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, - [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, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 4, + aux_sym_preproc_elif_token1, + anon_sym_or, + anon_sym_and, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [180179] = 21, + ACTIONS(10068), 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, + [222137] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12732), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12734), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11912), 1, + ACTIONS(12736), 1, anon_sym_STAR, - ACTIONS(11914), 1, + ACTIONS(12738), 1, anon_sym_AMP_AMP, - ACTIONS(11916), 1, + ACTIONS(12740), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + STATE(2859), 1, sym_alignas_qualifier, - STATE(3696), 1, - sym__type_declarator, - STATE(6178), 1, + STATE(6832), 1, sym_ms_unaligned_ptr_modifier, - STATE(11037), 1, + STATE(10177), 1, + sym__field_declarator, + STATE(10346), 1, + sym_operator_name, + STATE(12473), 1, sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(3224), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6207), 2, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6459), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6961), 2, + STATE(8394), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(3222), 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, + STATE(9957), 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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -609943,246 +682519,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180268] = 21, + [222222] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, - anon_sym_STAR, - ACTIONS(11908), 1, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12706), 1, anon_sym_AMP_AMP, - ACTIONS(11910), 1, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12724), 1, + anon_sym_or, + ACTIONS(12726), 1, + anon_sym_and, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11045), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4955), 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(6231), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7117), 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, - [180357] = 21, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11047), 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, + [222321] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, - sym_identifier, - ACTIONS(11931), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11933), 1, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, anon_sym_STAR, - ACTIONS(11935), 1, - anon_sym_AMP_AMP, - ACTIONS(11937), 1, + anon_sym_PERCENT, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 10, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, 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(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11053), 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(7119), 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(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, - [180446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3668), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3666), 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, + 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, - [180499] = 3, + ACTIONS(10068), 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, + [222400] = 10, 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, + ACTIONS(12445), 1, + anon_sym_LBRACE, + ACTIONS(12492), 1, anon_sym___attribute__, + ACTIONS(12494), 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, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - [180552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8938), 12, + ACTIONS(12746), 1, + anon_sym_COLON, + STATE(7094), 1, + sym_attribute_specifier, + STATE(7294), 1, + sym__enum_base_clause, + STATE(7406), 1, + sym_enumerator_list, + ACTIONS(7413), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -610191,11 +682679,8 @@ 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___asm, anon_sym_DOT, - ACTIONS(8940), 33, + ACTIONS(7415), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610209,8 +682694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -610222,68 +682706,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_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [180605] = 21, + [222465] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12732), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12734), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12736), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12738), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12740), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + STATE(2859), 1, sym_alignas_qualifier, - STATE(6178), 1, + STATE(6832), 1, sym_ms_unaligned_ptr_modifier, - STATE(8430), 1, - sym__type_declarator, - STATE(11156), 1, + STATE(10177), 1, + sym__field_declarator, + STATE(10346), 1, + sym_operator_name, + STATE(12473), 1, sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(3224), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7082), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7096), 2, + STATE(8394), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(3222), 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, + STATE(9957), 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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -610297,23 +682773,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180694] = 3, + [222550] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2278), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9780), 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(9782), 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, + [222609] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2278), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9784), 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(9786), 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, + [222668] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12704), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12706), 1, + anon_sym_AMP_AMP, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12724), 1, + anon_sym_or, + ACTIONS(12726), 1, + anon_sym_and, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12750), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12708), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12712), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12714), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12784), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(12786), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [222771] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 12, + ACTIONS(10651), 1, + anon_sym_requires, + ACTIONS(10648), 2, + anon_sym_final, + anon_sym_override, + STATE(7332), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7439), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 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_LBRACK, - anon_sym___asm, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9009), 33, + ACTIONS(7623), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610324,12 +682988,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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -610340,19 +683000,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_requires, - [180747] = 4, + anon_sym_GT2, + [222830] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(9027), 12, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2457), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9788), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -610362,10 +683024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, anon_sym_DOT, - ACTIONS(9029), 32, + ACTIONS(9790), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -610378,9 +683038,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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -610391,17 +683050,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, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [180802] = 3, + [222889] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 12, + ACTIONS(12791), 1, + anon_sym_requires, + ACTIONS(12788), 2, + anon_sym_final, + anon_sym_override, + STATE(7330), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(7574), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -610410,11 +683078,8 @@ 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___asm, anon_sym_DOT, - ACTIONS(8981), 33, + ACTIONS(9269), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610428,8 +683093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -610441,494 +683105,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_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [180855] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4284), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(4282), 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, - [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, - 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(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8430), 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(6202), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7096), 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, - [181078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3660), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3658), 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, - [181131] = 21, + [222948] = 20, 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(4963), 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(6239), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7024), 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, - 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, - [181220] = 11, - 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, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(7235), 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, + ACTIONS(2286), 1, anon_sym_operator, - [181289] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12734), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, + ACTIONS(12752), 1, + sym_identifier, + ACTIONS(12754), 1, anon_sym_STAR, - ACTIONS(11908), 1, + ACTIONS(12756), 1, anon_sym_AMP_AMP, - ACTIONS(11910), 1, + ACTIONS(12758), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + STATE(2859), 1, sym_alignas_qualifier, - STATE(4933), 1, - sym__type_declarator, - STATE(6178), 1, + STATE(6832), 1, sym_ms_unaligned_ptr_modifier, - STATE(11304), 1, + STATE(9684), 1, + sym__field_declarator, + STATE(9871), 1, + sym_operator_name, + STATE(12436), 1, sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(3224), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6206), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7116), 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, - [181378] = 21, - 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(8266), 1, - sym__type_declarator, - STATE(8576), 1, - sym_pointer_type_declarator, - STATE(11686), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5995), 2, + STATE(7158), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7078), 2, + STATE(8452), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(3222), 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, + STATE(9957), 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(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -610942,164 +683172,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181467] = 21, + [223033] = 5, 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(4850), 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(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7161), 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, + STATE(7179), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12766), 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, - [181556] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(7175), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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(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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(7355), 13, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [181637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3620), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3618), 42, + ACTIONS(7173), 27, + 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -611115,116 +683215,80 @@ static const uint16_t ts_small_parse_table[] = { 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_final, + anon_sym_override, anon_sym_template, - [181690] = 3, + anon_sym_try, + anon_sym_requires, + [223088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3340), 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, + ACTIONS(7710), 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, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [181743] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym___asm, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(7712), 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(11186), 1, - anon_sym_LBRACK, - ACTIONS(11598), 1, anon_sym_STAR, - ACTIONS(11600), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11602), 1, - anon_sym_AMP, - STATE(4333), 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, + 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, + [223139] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10947), 1, + anon_sym_const, + STATE(7372), 1, sym_alignas_qualifier, - STATE(4562), 1, - sym_parameter_list, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8477), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10949), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4109), 2, + STATE(7161), 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(7355), 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, + ACTIONS(7342), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10936), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -611237,222 +683301,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181823] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7347), 1, - anon_sym___asm, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(7344), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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(8494), 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), 12, - anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, 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, - [181903] = 21, + [223200] = 7, 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(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(4706), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8989), 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(6266), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7257), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6859), 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, - [181991] = 21, - 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(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(4706), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9003), 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(7248), 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, - [182079] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, + ACTIONS(8257), 1, anon_sym_requires, - ACTIONS(11959), 1, - anon_sym_DASH_GT, - STATE(6314), 1, - sym_trailing_return_type, - ACTIONS(7897), 2, + ACTIONS(8255), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, + STATE(7330), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6639), 2, + STATE(7574), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 9, + ACTIONS(9267), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611462,7 +683347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8907), 26, + ACTIONS(9269), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611489,80 +683374,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182143] = 9, + anon_sym_DASH_GT, + [223259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10574), 1, - anon_sym_DASH_GT, - ACTIONS(10621), 1, - anon_sym_requires, - STATE(6318), 1, - sym_trailing_return_type, - 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, - anon_sym_DASH, - 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), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12796), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(12794), 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_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, - [182207] = 9, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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, + [223310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(10574), 1, - anon_sym_DASH_GT, - STATE(6319), 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(6637), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 9, + ACTIONS(7794), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611571,10 +683436,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), 26, + sym_identifier, + ACTIONS(7796), 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, @@ -611586,52 +683462,43 @@ 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182271] = 9, + anon_sym_DASH_GT, + [223361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, - anon_sym_requires, - ACTIONS(11962), 1, - anon_sym_DASH_GT, - STATE(6353), 1, - sym_trailing_return_type, - ACTIONS(7829), 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, + ACTIONS(7718), 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, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8907), 24, + sym_identifier, + ACTIONS(7720), 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, @@ -611640,53 +683507,46 @@ 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_or, - anon_sym_and, - anon_sym_bitor, - 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, - [182335] = 9, + anon_sym_DASH_GT, + [223412] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(7838), 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, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8907), 24, + sym_identifier, + ACTIONS(7840), 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, @@ -611695,39 +683555,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_or, - anon_sym_and, - anon_sym_bitor, - 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, + [223463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(10116), 1, - anon_sym_DASH_GT, - STATE(6324), 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(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 9, + ACTIONS(7359), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611736,10 +683580,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(7966), 26, + sym_identifier, + ACTIONS(7361), 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, @@ -611751,52 +683606,43 @@ 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182463] = 9, + anon_sym_DASH_GT, + [223514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10605), 1, - anon_sym_DASH_GT, - ACTIONS(10611), 1, - anon_sym_requires, - STATE(6357), 1, - sym_trailing_return_type, - ACTIONS(10608), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6641), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(7735), 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, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8422), 24, + sym_identifier, + ACTIONS(7737), 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, @@ -611805,53 +683651,46 @@ 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_or, - anon_sym_and, - anon_sym_bitor, - 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, - [182527] = 9, + anon_sym_DASH_GT, + [223565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, - anon_sym_requires, - ACTIONS(10119), 1, - anon_sym_DASH_GT, - STATE(6332), 1, - sym_trailing_return_type, - ACTIONS(7829), 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(7854), 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, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7966), 24, + sym_identifier, + ACTIONS(7856), 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, @@ -611860,152 +683699,149 @@ 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_or, - anon_sym_and, - anon_sym_bitor, - 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, - [182591] = 12, + anon_sym_DASH_GT, + [223616] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8572), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(8588), 1, + ACTIONS(10050), 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(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + ACTIONS(12710), 1, + anon_sym_CARET, + ACTIONS(12718), 1, + anon_sym_GT_EQ, + ACTIONS(12722), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12728), 1, + anon_sym_xor, + ACTIONS(12730), 1, + anon_sym_not_eq, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, 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(9427), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12700), 2, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(12712), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12714), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(12720), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12716), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10066), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [182661] = 9, + sym_identifier, + ACTIONS(10068), 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, + [223705] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, - anon_sym_requires, - ACTIONS(9987), 1, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12702), 1, + anon_sym_SLASH, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(6299), 1, - sym_trailing_return_type, - 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(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12698), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12700), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12720), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 13, + aux_sym_preproc_elif_token1, anon_sym_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), 24, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(10068), 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_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_GT2, - [182725] = 9, + [223778] = 3, 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(7858), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612014,10 +683850,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(7860), 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, @@ -612029,38 +683876,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_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, - [182789] = 9, + anon_sym_DASH_GT, + [223829] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10119), 1, - anon_sym_DASH_GT, - ACTIONS(10161), 1, + ACTIONS(8242), 1, anon_sym_requires, - STATE(6295), 1, - sym_trailing_return_type, - ACTIONS(10158), 2, + ACTIONS(8240), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(7332), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6571), 2, + STATE(7439), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 11, + ACTIONS(7621), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612072,7 +683911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7966), 24, + ACTIONS(7623), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612096,26 +683935,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - [182853] = 9, + [223888] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10017), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, + ACTIONS(11174), 1, anon_sym_requires, - STATE(6316), 1, - sym_trailing_return_type, - ACTIONS(10020), 2, + ACTIONS(11171), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, + STATE(7330), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6622), 2, + STATE(7573), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 9, + ACTIONS(8285), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612125,7 +683961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7791), 26, + ACTIONS(8287), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612152,51 +683988,282 @@ 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, + [223947] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(8616), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(8958), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - ACTIONS(8960), 1, + ACTIONS(10753), 1, anon_sym_AMP_AMP, - ACTIONS(8962), 1, + ACTIONS(10755), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8474), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9278), 1, + sym__declarator, + STATE(11269), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [224039] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12810), 1, + anon_sym_PIPE, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12824), 1, + anon_sym_SEMI, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(12828), 1, + anon_sym_QMARK, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + STATE(10326), 1, + aux_sym_field_declaration_repeat1, + STATE(12079), 1, + sym_attribute_specifier, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12806), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12808), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12812), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [224145] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7210), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12836), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7292), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7290), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [224199] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7549), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7551), 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, + [224249] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7034), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12690), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 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), 21, + ACTIONS(7361), 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -612210,37 +684277,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182987] = 9, + [224303] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9987), 1, - anon_sym_DASH_GT, - ACTIONS(10082), 1, - anon_sym_requires, - STATE(6292), 1, - sym_trailing_return_type, - 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(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8481), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9137), 1, + sym__declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(10826), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [224395] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + STATE(7231), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9393), 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(7791), 24, + ACTIONS(9395), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612251,8 +684375,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, @@ -612264,16 +684390,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [183051] = 5, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [224449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11977), 1, + STATE(7253), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12838), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7324), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(11979), 1, - anon_sym_and, - ACTIONS(9322), 19, - aux_sym_preproc_elif_token1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7322), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [224503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11198), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612282,33 +684455,33 @@ 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, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9324), 23, + sym_literal_suffix, + ACTIONS(11196), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -612316,58 +684489,470 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [183107] = 17, + anon_sym_COLON_RBRACK, + [224553] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7349), 1, - anon_sym___asm, - ACTIONS(10363), 1, + STATE(7210), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12836), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7361), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(11172), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [224607] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7226), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7298), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11186), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7296), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11598), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [224661] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7205), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12842), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7318), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(11600), 1, anon_sym_AMP_AMP, - ACTIONS(11602), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7316), 26, 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___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - 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, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [224715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7545), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7547), 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, + [224765] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(7203), 1, + sym_auto, + ACTIONS(7205), 1, + anon_sym_decltype, + ACTIONS(12844), 1, + anon_sym_LT, + STATE(3799), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4159), 1, + sym_template_argument_list, + STATE(4549), 1, + sym_decltype_auto, + ACTIONS(7195), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5669), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(5661), 24, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [224831] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8479), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9432), 1, + sym__declarator, + STATE(11069), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [224923] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7226), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7306), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7304), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_try, anon_sym_requires, - ACTIONS(10352), 12, + [224977] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8492), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9076), 1, + sym__declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(11162), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [225069] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7226), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7302), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7300), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -612379,42 +684964,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183187] = 7, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [225123] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 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, + ACTIONS(3512), 1, anon_sym_LPAREN2, + ACTIONS(3514), 1, anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, + ACTIONS(10753), 1, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8489), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9441), 1, + sym__declarator, + STATE(10945), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [225215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7368), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7223), 34, + ACTIONS(7366), 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, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -612429,61 +685084,40 @@ 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, - [183247] = 17, + [225265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7341), 1, - anon_sym___asm, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(7348), 9, + anon_sym_COMMA, + anon_sym_RPAREN, 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_COLON_COLON, 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7346), 33, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -612495,113 +685129,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183327] = 9, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [225315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, - anon_sym_requires, - ACTIONS(10605), 1, - anon_sym_DASH_GT, - STATE(6294), 1, - sym_trailing_return_type, - ACTIONS(7829), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6641), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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), 24, - anon_sym_DOT_DOT_DOT, + STATE(7226), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7281), 11, 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_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, - [183391] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6821), 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(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_COLON_COLON, 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7279), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -612613,18 +685175,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183471] = 7, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [225369] = 4, 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, + ACTIONS(11194), 1, + sym_literal_suffix, + ACTIONS(5671), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -612634,16 +685199,15 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9395), 22, + ACTIONS(5663), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -612653,6 +685217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -612666,58 +685232,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [183531] = 17, + [225421] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - anon_sym___asm, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(11598), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - ACTIONS(11600), 1, + ACTIONS(10753), 1, anon_sym_AMP_AMP, - ACTIONS(11602), 1, + ACTIONS(10755), 1, anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4562), 1, - sym_parameter_list, - STATE(8314), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8516), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9127), 1, + sym__declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(11369), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [225513] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7243), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12846), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7265), 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_COLON_COLON, 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7263), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -612729,35 +685340,105 @@ static const uint16_t ts_small_parse_table[] = { 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_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, 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_template, + anon_sym_try, + anon_sym_requires, + [225567] = 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(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8495), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9130), 1, + sym__declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(11040), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [225659] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + STATE(7223), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 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), 26, + ACTIONS(9226), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612768,11 +685449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -612784,76 +685461,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [183675] = 9, - 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_GT2, + anon_sym_requires, + [225713] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(7791), 26, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12798), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12810), 1, + anon_sym_PIPE, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(12828), 1, + anon_sym_QMARK, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + ACTIONS(12848), 1, + anon_sym_SEMI, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + STATE(10384), 1, + aux_sym_field_declaration_repeat1, + STATE(12618), 1, + sym_attribute_specifier, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12806), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12808), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12812), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12822), 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, + ACTIONS(12816), 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, - [183739] = 7, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [225819] = 5, 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(12850), 1, + anon_sym_LBRACK_LBRACK, + STATE(7223), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612864,8 +685560,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7966), 25, + ACTIONS(9440), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612877,7 +685574,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, @@ -612890,60 +685586,118 @@ 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, - [183798] = 20, + anon_sym_requires, + [225873] = 27, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6000), 1, anon_sym_LPAREN2, - ACTIONS(11989), 1, + ACTIONS(6002), 1, anon_sym_STAR, - ACTIONS(11991), 1, + ACTIONS(6004), 1, anon_sym_AMP_AMP, - ACTIONS(11993), 1, + ACTIONS(6006), 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, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(7862), 1, + anon_sym_RPAREN, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9435), 1, + sym__type_declarator, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10113), 1, + sym__abstract_declarator, + STATE(12437), 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, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [225971] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(12853), 1, + anon_sym_COLON, + STATE(4015), 1, + sym__enum_base_clause, + STATE(4109), 1, + sym_enumerator_list, + STATE(4197), 1, + sym_attribute_specifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7392), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(7390), 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, @@ -612956,163 +685710,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183883] = 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(6658), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 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), 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, - [183942] = 7, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_operator, + [226033] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10611), 1, - anon_sym_requires, - ACTIONS(10608), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6641), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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), 25, - anon_sym_DOT_DOT_DOT, + STATE(7226), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12855), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7175), 11, 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_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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, 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_LBRACK_COLON, + ACTIONS(7173), 26, 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___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -613125,376 +685754,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [184086] = 7, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [226087] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, anon_sym_LBRACK, - STATE(2072), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10190), 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(10188), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10753), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_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, - [184145] = 13, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8483), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9082), 1, + sym__declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(11387), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [226179] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 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(12003), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12005), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9707), 13, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(9709), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [184216] = 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(6571), 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7966), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10753), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [184275] = 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(10194), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10755), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(10192), 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, - [184334] = 29, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8494), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9491), 1, + sym__declarator, + STATE(11537), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [226271] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12007), 1, - anon_sym_SLASH, - ACTIONS(12011), 1, + ACTIONS(12748), 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, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12810), 1, + anon_sym_PIPE, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, anon_sym_GT_EQ, - ACTIONS(12033), 1, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(12828), 1, anon_sym_QMARK, - ACTIONS(12035), 1, + ACTIONS(12830), 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, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + ACTIONS(12858), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(10316), 1, + aux_sym_field_declaration_repeat1, + STATE(12599), 1, + sym_attribute_specifier, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(12800), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(12802), 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, + ACTIONS(12806), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12808), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12812), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 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, + [226377] = 6, 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(10198), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(12860), 1, + anon_sym___attribute__, + ACTIONS(12863), 1, + anon_sym___attribute, + STATE(7230), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(7398), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(10196), 29, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7400), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_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___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_DASH_GT, - anon_sym_COLON_RBRACK, - [184496] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [226433] = 5, 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, + ACTIONS(12866), 1, + anon_sym_LBRACK_LBRACK, + STATE(7231), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8008), 25, + ACTIONS(9440), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -613505,8 +686054,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, @@ -613519,87 +686070,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [184561] = 20, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [226487] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(11987), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(11995), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(11997), 1, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - ACTIONS(11999), 1, + ACTIONS(10753), 1, anon_sym_AMP_AMP, - ACTIONS(12001), 1, + ACTIONS(10755), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8479), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9339), 1, + sym__declarator, + STATE(11069), 1, + sym_init_declarator, + STATE(13027), 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, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [226579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12050), 1, - anon_sym_requires, - ACTIONS(12047), 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(8168), 1, + anon_sym_LBRACK_LBRACK, + STATE(7231), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -613608,8 +686158,9 @@ 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(8915), 27, + ACTIONS(9226), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -613623,7 +686174,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, @@ -613637,31 +686187,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [184705] = 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(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 9, + anon_sym_requires, + [226633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + STATE(7223), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 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), 27, + ACTIONS(9222), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -613672,11 +686222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -613689,239 +686235,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [184764] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [226687] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 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(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12019), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(12023), 2, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 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, - 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8509), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9102), 1, + sym__declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(10945), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [226779] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, anon_sym_LBRACK, - STATE(2080), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10190), 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(10188), 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, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10753), 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [184918] = 12, - 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, - 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(12005), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9707), 15, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, + ACTIONS(10755), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9709), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [184987] = 20, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8476), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9374), 1, + sym__declarator, + STATE(11040), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [226871] = 24, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(11989), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - ACTIONS(11991), 1, + ACTIONS(10753), 1, anon_sym_AMP_AMP, - ACTIONS(11993), 1, + ACTIONS(10755), 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, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8511), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9404), 1, + sym__declarator, + STATE(11037), 1, + sym_init_declarator, + STATE(13027), 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__, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [226963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7462), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, + anon_sym___asm, + ACTIONS(7464), 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, @@ -613933,59 +686478,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [185072] = 7, + 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, + [227013] = 5, 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(10206), 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), 29, - anon_sym_DOT_DOT_DOT, + STATE(7216), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12869), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7271), 11, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7269), 26, + anon_sym_AMP, + anon_sym___extension__, 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___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, + anon_sym_try, anon_sym_requires, - [185131] = 26, + [227067] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -613994,57 +686548,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3512), 1, + anon_sym_LPAREN2, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(5160), 1, + ACTIONS(3530), 1, + anon_sym_LBRACK, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, - anon_sym_LPAREN2, - ACTIONS(5619), 1, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - ACTIONS(5621), 1, + ACTIONS(10753), 1, anon_sym_AMP_AMP, - ACTIONS(5623), 1, + ACTIONS(10755), 1, anon_sym_AMP, - ACTIONS(5627), 1, - anon_sym_LBRACK, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(9427), 1, - anon_sym_RPAREN, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4706), 1, - sym_parameter_list, - STATE(7993), 1, + STATE(8490), 1, + sym_ms_call_modifier, + STATE(8989), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8831), 1, + STATE(9401), 1, sym__declarator, - STATE(8994), 1, - sym__abstract_declarator, - STATE(11554), 1, + STATE(11387), 1, + sym_init_declarator, + STATE(13027), 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(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + ACTIONS(2242), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -614056,269 +686607,212 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [185228] = 27, + [227159] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 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(10473), 2, - aux_sym_preproc_elif_token1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, 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, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12019), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(12023), 2, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 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(12027), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10475), 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, - [185327] = 7, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8499), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9138), 1, + sym__declarator, + STATE(9224), 1, + sym_splice_specifier, + STATE(11037), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [227251] = 9, 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, - anon_sym_DASH, - 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(8915), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(12853), 1, + anon_sym_COLON, + STATE(3985), 1, + sym__enum_base_clause, + STATE(4136), 1, + sym_enumerator_list, + STATE(4274), 1, + sym_attribute_specifier, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7415), 5, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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, - [185386] = 7, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(7413), 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, + [227313] = 5, 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, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_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), 25, - anon_sym_DOT_DOT_DOT, + STATE(7226), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7277), 11, 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_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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, 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_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_LBRACK_COLON, + ACTIONS(7275), 26, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(7966), 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___extension__, + anon_sym___attribute__, + anon_sym___attribute, 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, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_try, + anon_sym_requires, + [227367] = 11, 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(7376), 1, + anon_sym_COLON, + ACTIONS(12873), 1, + anon_sym_LBRACE, + STATE(7710), 1, + sym_field_declaration_list, + STATE(8041), 1, + sym_attribute_specifier, + STATE(10647), 1, + sym_virtual_specifier, + STATE(11705), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7372), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6572), 3, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(6565), 34, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7370), 22, anon_sym_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_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -614334,34 +686828,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_operator, - [185565] = 7, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [227433] = 5, 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(8203), 1, + anon_sym_LBRACK_LBRACK, + STATE(7223), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9393), 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(8907), 27, + ACTIONS(9395), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -614372,11 +686864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -614389,21 +686877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185624] = 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(6639), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 9, + anon_sym_GT2, + anon_sym_requires, + [227487] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11194), 1, + sym_literal_suffix, + ACTIONS(5671), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614412,60 +686895,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(8907), 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_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, - [185683] = 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(10198), 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(10196), 29, + ACTIONS(5663), 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, @@ -614477,37 +686919,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_final, - anon_sym_override, - anon_sym_requires, - [185742] = 7, + anon_sym_COLON_RBRACK, + [227539] = 5, 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(6622), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 9, + STATE(7063), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12658), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614517,7 +686949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7791), 27, + ACTIONS(7361), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -614531,6 +686963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -614545,18 +686978,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185801] = 7, + [227593] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 1, anon_sym_LBRACK, - STATE(2072), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10202), 10, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + sym_identifier, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, + anon_sym_STAR, + ACTIONS(10753), 1, + anon_sym_AMP_AMP, + ACTIONS(10755), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8479), 1, + sym_ms_call_modifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9446), 1, + sym__declarator, + STATE(11069), 1, + sym_init_declarator, + STATE(13027), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [227685] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8168), 1, + anon_sym_LBRACK_LBRACK, + STATE(7231), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9220), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614565,12 +687063,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), 29, + ACTIONS(9222), 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, @@ -614581,9 +687079,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, @@ -614596,86 +687092,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [185860] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12056), 1, - anon_sym_requires, - ACTIONS(12053), 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, + anon_sym_requires, + [227739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11198), 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_DOT, - ACTIONS(8915), 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, - [185919] = 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, - anon_sym_DASH, - 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), 27, + sym_identifier, + sym_literal_suffix, + ACTIONS(11196), 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, @@ -614688,57 +687136,45 @@ 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, - [185978] = 11, + [227789] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(12059), 1, + ACTIONS(9317), 1, anon_sym_LT, - ACTIONS(12063), 1, - sym_auto, - ACTIONS(12065), 1, - anon_sym_decltype, - STATE(6693), 1, - sym_template_argument_list, - STATE(7126), 1, + STATE(2694), 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, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(6952), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5643), 29, + ACTIONS(7131), 8, 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_COLON, + ACTIONS(7129), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -614752,612 +687188,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, + anon_sym_template, anon_sym_requires, - [186045] = 7, + [227849] = 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(10194), 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(10192), 22, - anon_sym_DOT_DOT_DOT, + STATE(7226), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7310), 11, anon_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, - [186104] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, + anon_sym_RPAREN, 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_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, - 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(10540), 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, - [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_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(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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7308), 26, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_LBRACK, - STATE(2080), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10174), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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(10172), 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, - [186361] = 29, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [227903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + STATE(7226), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12840), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7255), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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_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(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_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7253), 26, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_LBRACK, - STATE(2080), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10198), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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(10196), 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, - [186523] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7835), 1, - anon_sym_requires, - ACTIONS(7829), 2, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6641), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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), 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, - [186582] = 23, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [227957] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3530), 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10695), 1, 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, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + ACTIONS(10757), 1, + anon_sym_STAR, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - anon_sym_QMARK, - [186673] = 7, + ACTIONS(10761), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8484), 1, + sym_ms_call_modifier, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10025), 1, + sym__declarator, + STATE(11972), 1, + sym_ms_based_modifier, + STATE(13053), 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(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [228046] = 3, 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, - anon_sym_DASH, - 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(10200), 22, + ACTIONS(3108), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [186732] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12067), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(12069), 1, anon_sym_AMP_AMP, - ACTIONS(12071), 1, - anon_sym_AMP, - STATE(4883), 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(9073), 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(7467), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6823), 4, anon_sym_SEMI, + anon_sym_COLON_COLON, 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(3118), 28, + 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, @@ -615369,284 +687394,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186819] = 7, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [228095] = 3, 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, + ACTIONS(7261), 13, 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, - 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_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(10485), 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_TILDE, 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(10487), 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, - [186977] = 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_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(10489), 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7259), 28, 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(10491), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, anon_sym_LBRACK, - STATE(2072), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10210), 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(10208), 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, - [187139] = 10, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [228144] = 3, 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, + ACTIONS(9271), 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(8002), 27, + ACTIONS(9273), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -615657,11 +687477,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, @@ -615674,21 +687492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, 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, + anon_sym_GT2, + anon_sym_requires, + [228193] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9263), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -615699,8 +687510,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_DOT, - ACTIONS(7791), 25, + ACTIONS(9265), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -615712,6 +687524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -615725,153 +687538,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, - [187263] = 17, + anon_sym_requires, + [228242] = 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(12007), 1, - anon_sym_SLASH, - ACTIONS(12029), 1, - anon_sym_GT_EQ, - 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(9275), 12, 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(12027), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 10, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9709), 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, - [187342] = 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(12007), 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(12003), 2, - 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_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9709), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [187415] = 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(10202), 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_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(10200), 29, + ACTIONS(9277), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -615879,11 +687569,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_SEMI, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -615898,81 +687586,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, - [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, + [228291] = 3, 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(10206), 10, + ACTIONS(9352), 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___attribute, anon_sym_DOT, - ACTIONS(10204), 29, + ACTIONS(9354), 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, @@ -615980,12 +687615,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_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, @@ -615998,146 +687630,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, - [187584] = 15, - 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, - 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_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9709), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_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_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(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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [228340] = 5, 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(12875), 2, + anon_sym_final, + anon_sym_override, + STATE(7261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9471), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -616146,11 +687652,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(9473), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -616161,8 +687667,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,34 +687681,24 @@ 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, + [228393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, - anon_sym_requires, - 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(9253), 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(7791), 27, + ACTIONS(9255), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -616213,11 +687709,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, @@ -616230,152 +687724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [187866] = 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(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(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 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, + anon_sym_GT2, + anon_sym_requires, + [228442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9360), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -616386,8 +687742,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_DOT, - ACTIONS(8915), 25, + ACTIONS(9362), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -616399,6 +687756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -616412,174 +687770,177 @@ 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, - [188097] = 27, + anon_sym_requires, + [228491] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(12882), 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, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12035), 1, + ACTIONS(12902), 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, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10542), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(12880), 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, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 7, + ACTIONS(11055), 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_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, - [188196] = 20, + anon_sym_COLON_RBRACK, + [228582] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11987), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6000), 1, anon_sym_LPAREN2, - ACTIONS(11995), 1, - sym_identifier, - ACTIONS(11997), 1, + ACTIONS(6002), 1, anon_sym_STAR, - ACTIONS(11999), 1, + ACTIONS(6004), 1, anon_sym_AMP_AMP, - ACTIONS(12001), 1, + ACTIONS(6006), 1, anon_sym_AMP, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(9079), 1, - sym__field_declarator, - STATE(9236), 1, - sym_operator_name, - STATE(11191), 1, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(8908), 1, + sym_identifier, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10226), 1, + sym__type_declarator, + STATE(10531), 1, + sym__abstract_declarator, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6296), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7428), 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, - [188281] = 4, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [228677] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + STATE(3799), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7195), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7131), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_LBRACE, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(12079), 36, + ACTIONS(7129), 25, anon_sym_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, @@ -616596,24 +687957,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_explicit, + anon_sym_final, + anon_sym_override, anon_sym_template, - anon_sym_operator, - [188334] = 7, + anon_sym_requires, + [228736] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - anon_sym_requires, - 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, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11047), 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, + [228827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3178), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -616624,8 +688042,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_DOT, - ACTIONS(8907), 25, + ACTIONS(3176), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -616637,6 +688056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -616650,43 +688070,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_GT2, - [188393] = 7, + anon_sym_requires, + [228876] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12908), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12910), 1, anon_sym_LBRACK, - STATE(2080), 1, + STATE(2444), 1, sym_parameter_list, - STATE(5444), 1, + STATE(7416), 1, sym__function_declarator_seq, - ACTIONS(10206), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9792), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - ACTIONS(10204), 22, + ACTIONS(9794), 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_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -616694,163 +688107,97 @@ 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, anon_sym_DASH_GT, - [188452] = 27, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [228933] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12908), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12910), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 1, + STATE(2444), 1, + sym_parameter_list, + STATE(7416), 1, + sym__function_declarator_seq, + ACTIONS(9796), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12015), 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(9798), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_GT_EQ, - ACTIONS(12035), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + 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(9599), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - 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(9597), 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, - [188551] = 8, - 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_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, - [188612] = 7, + [228990] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12908), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12910), 1, anon_sym_LBRACK, - STATE(2275), 1, + STATE(2444), 1, sym_parameter_list, - STATE(5444), 1, + STATE(7416), 1, sym__function_declarator_seq, - ACTIONS(10194), 10, + ACTIONS(9800), 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), 29, + ACTIONS(9802), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -616860,11 +688207,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___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -616879,30 +688222,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [188671] = 7, + [229047] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12908), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12910), 1, anon_sym_LBRACK, - STATE(2275), 1, + STATE(2444), 1, sym_parameter_list, - STATE(5444), 1, + STATE(7416), 1, sym__function_declarator_seq, - ACTIONS(10174), 10, + ACTIONS(9804), 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), 29, + ACTIONS(9806), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -616912,11 +688257,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___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -616931,22 +688272,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, - [188730] = 7, + [229104] = 7, 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(12912), 1, + anon_sym_LPAREN2, + ACTIONS(12914), 1, + anon_sym_LBRACK, + STATE(2441), 1, + sym_parameter_list, + STATE(7519), 1, + sym__function_declarator_seq, + ACTIONS(9774), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -616956,10 +688295,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8422), 27, + ACTIONS(9776), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -616970,7 +688308,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, @@ -616984,147 +688321,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188789] = 20, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [229161] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12912), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12914), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 1, - anon_sym_SLASH, - ACTIONS(12029), 1, - anon_sym_GT_EQ, - ACTIONS(12035), 1, - anon_sym_LT_EQ_GT, - 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, + STATE(2441), 1, + sym_parameter_list, + STATE(7519), 1, + sym__function_declarator_seq, + ACTIONS(9780), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12023), 2, + anon_sym_SLASH, + anon_sym_PIPE, 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), 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, + anon_sym_DOT, + ACTIONS(9782), 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_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_QMARK, - [188874] = 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(12007), 1, - anon_sym_SLASH, - ACTIONS(12029), 1, - anon_sym_GT_EQ, - ACTIONS(12035), 1, - anon_sym_LT_EQ_GT, - 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(12025), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(12031), 2, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 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_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - sym_identifier, - ACTIONS(9709), 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, - [188957] = 7, + 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, + [229218] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12912), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12914), 1, anon_sym_LBRACK, - STATE(2275), 1, + STATE(2441), 1, sym_parameter_list, - STATE(5444), 1, + STATE(7519), 1, sym__function_declarator_seq, - ACTIONS(10186), 10, + ACTIONS(9784), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -617133,9 +688394,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(10184), 29, + ACTIONS(9786), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -617148,8 +688408,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, @@ -617165,83 +688424,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [189016] = 20, + [229275] = 26, 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, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11989), 1, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, - ACTIONS(11991), 1, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, 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, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11059), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [229370] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12912), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12914), 1, anon_sym_LBRACK, - STATE(2072), 1, + STATE(2441), 1, sym_parameter_list, - STATE(5444), 1, + STATE(7519), 1, sym__function_declarator_seq, - ACTIONS(10186), 10, + ACTIONS(9788), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -617250,12 +688513,10 @@ 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(10184), 29, + ACTIONS(9790), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -617266,9 +688527,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, @@ -617281,32 +688540,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [189160] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [229427] = 3, 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(3149), 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(10208), 29, + ACTIONS(3147), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -617314,11 +688570,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_SEMI, anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -617333,114 +688587,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [189219] = 29, + [229476] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12912), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12914), 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_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(10477), 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(10479), 5, - 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, - 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, + STATE(2441), 1, + sym_parameter_list, + STATE(7519), 1, + sym__function_declarator_seq, + ACTIONS(9792), 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(8002), 25, + ACTIONS(9794), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -617448,8 +688620,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, @@ -617462,73 +688636,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [189387] = 8, - 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, - 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(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_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, + [229533] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12912), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12914), 1, anon_sym_LBRACK, - STATE(2080), 1, + STATE(2441), 1, sym_parameter_list, - STATE(5444), 1, + STATE(7519), 1, sym__function_declarator_seq, - ACTIONS(10186), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9796), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -617537,21 +688659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(10184), 22, + ACTIONS(9798), 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_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -617562,30 +688673,34 @@ 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, - [189507] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [229590] = 7, 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, + ACTIONS(12912), 1, + anon_sym_LPAREN2, + ACTIONS(12914), 1, + anon_sym_LBRACK, + STATE(2441), 1, + sym_parameter_list, + STATE(7519), 1, + sym__function_declarator_seq, + ACTIONS(9800), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -617595,10 +688710,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8008), 27, + ACTIONS(9802), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -617609,7 +688723,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, @@ -617623,19 +688736,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [189572] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [229647] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(12912), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(12914), 1, anon_sym_LBRACK, - STATE(2080), 1, + STATE(2441), 1, sym_parameter_list, - STATE(5444), 1, + STATE(7519), 1, sym__function_declarator_seq, - ACTIONS(10210), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9804), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -617644,21 +688759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(10208), 22, + ACTIONS(9806), 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_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -617669,65 +688773,53 @@ 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, - [189631] = 20, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [229704] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11987), 1, + ACTIONS(12918), 1, + anon_sym_COLON, + ACTIONS(12920), 1, + anon_sym_LBRACE, + STATE(7531), 1, + sym__enum_base_clause, + STATE(7709), 1, + sym_enumerator_list, + STATE(8036), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7392), 10, + anon_sym_COMMA, + anon_sym_RPAREN, 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7390), 24, 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_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -617740,33 +688832,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [189716] = 6, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [229765] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(12085), 1, + ACTIONS(12918), 1, + anon_sym_COLON, + ACTIONS(12920), 1, + anon_sym_LBRACE, + STATE(7540), 1, + sym__enum_base_clause, + STATE(7714), 1, + sym_enumerator_list, + STATE(8053), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, 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_DOT_DOT, + ACTIONS(7415), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7413), 24, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -617780,128 +688886,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [189772] = 31, + [229826] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12097), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12117), 1, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11063), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(12121), 1, + anon_sym_RBRACE, anon_sym_QMARK, - ACTIONS(12123), 1, + anon_sym_COLON_RBRACK, + [229917] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9217), 1, - aux_sym_field_declaration_repeat1, - STATE(10714), 1, - sym_attribute_specifier, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189878] = 9, + ACTIONS(11081), 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, + [230008] = 6, 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__, - anon_sym___attribute, - ACTIONS(8002), 5, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12533), 1, + anon_sym_LT, + STATE(7564), 1, + sym_template_argument_list, + ACTIONS(6781), 10, + 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_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6774), 28, 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___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -617917,51 +689069,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - anon_sym_operator, - [189940] = 24, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [230063] = 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, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10711), 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(3495), 1, sym__splice_specialization_specifier, - STATE(7530), 1, + STATE(8521), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8437), 1, + STATE(10175), 1, sym__declarator, - STATE(9921), 1, - sym_init_declarator, - STATE(11622), 1, + STATE(11956), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -617974,7 +689130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -617986,250 +689142,276 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [190032] = 9, + [230152] = 24, 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, + ACTIONS(9662), 1, anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10103), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_RBRACK, + [230243] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12097), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(12121), 1, - anon_sym_QMARK, - ACTIONS(12123), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12131), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10339), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(3874), 1, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [230338] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9205), 1, - aux_sym_field_declaration_repeat1, - STATE(11041), 1, - sym_attribute_specifier, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [190200] = 24, + ACTIONS(11067), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [230433] = 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, - anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9639), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(9641), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(9643), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(9645), 1, + anon_sym_COLON_COLON, + ACTIONS(9651), 1, + anon_sym_LBRACK, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7521), 1, - sym_ms_call_modifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(4852), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8481), 1, - sym__declarator, - STATE(10594), 1, - sym_init_declarator, - STATE(11622), 1, - sym_ms_based_modifier, - STATE(10768), 5, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9395), 1, + sym__abstract_declarator, + STATE(9561), 1, + sym__scope_resolution, + STATE(13053), 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, - [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, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(7862), 7, 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_GT2, + ACTIONS(7864), 7, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [190342] = 24, + [230518] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -618238,41 +689420,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7507), 1, + STATE(8475), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8096), 1, - sym__declarator, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9927), 1, - sym_init_declarator, - STATE(11622), 1, + STATE(10023), 1, + sym__declarator, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -618285,7 +689465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -618297,12 +689477,20 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [190434] = 4, + [230607] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 16, + ACTIONS(12445), 1, + anon_sym_LBRACE, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7134), 1, + sym_attribute_specifier, + STATE(7410), 1, + sym_enumerator_list, + ACTIONS(7417), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -618311,18 +689499,10 @@ 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(5638), 25, + ACTIONS(7419), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -618334,379 +689514,46 @@ 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, - [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, + [230666] = 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(12908), 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(8394), 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, - [190826] = 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(12143), 1, - anon_sym_virtual, - STATE(4333), 1, - sym_alignas_qualifier, - ACTIONS(10026), 2, - anon_sym_AMP, + ACTIONS(12910), 1, anon_sym_LBRACK, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10028), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - 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, + STATE(2444), 1, + sym_parameter_list, + STATE(7416), 1, + sym__function_declarator_seq, + ACTIONS(9774), 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(8839), 29, + ACTIONS(9776), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -618714,10 +689561,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, @@ -618732,105 +689576,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, - [190954] = 31, + [230723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(9230), 1, + ACTIONS(12908), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12910), 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, + STATE(2444), 1, + sym_parameter_list, + STATE(7416), 1, + sym__function_declarator_seq, + ACTIONS(9780), 11, + 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_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(12145), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9199), 1, - aux_sym_field_declaration_repeat1, - STATE(10945), 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_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9782), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_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(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [191060] = 5, + 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, + [230780] = 7, 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, + ACTIONS(12908), 1, + anon_sym_LPAREN2, + ACTIONS(12910), 1, + anon_sym_LBRACK, + STATE(2444), 1, + sym_parameter_list, + STATE(7416), 1, + sym__function_declarator_seq, + ACTIONS(9784), 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(8835), 29, + ACTIONS(9786), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -618838,10 +689661,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, @@ -618856,98 +689676,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [191114] = 24, + [230837] = 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(12908), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(12910), 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(7551), 1, - sym_ms_call_modifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8389), 1, - sym__declarator, - STATE(10181), 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, - [191206] = 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(9071), 10, + STATE(2444), 1, + sym_parameter_list, + STATE(7416), 1, + sym__function_declarator_seq, + 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_LBRACK, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9073), 29, + ACTIONS(9790), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -618955,10 +689711,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, @@ -618973,154 +689726,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [191260] = 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(7555), 1, - sym_ms_call_modifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8432), 1, - sym__declarator, - 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, - [191352] = 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(10071), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10073), 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, - [191426] = 5, + [230894] = 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, + ACTIONS(12922), 2, + anon_sym_final, + anon_sym_override, + STATE(7299), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9471), 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(9075), 29, + ACTIONS(9473), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -619131,10 +689760,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, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -619147,94 +689774,101 @@ 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, - [191480] = 11, + [230947] = 24, 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, + ACTIONS(9662), 1, anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11077), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_RBRACK, + [231038] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(12455), 1, + anon_sym_decltype, + ACTIONS(12925), 1, + sym_auto, + STATE(7860), 1, + sym_decltype_auto, + ACTIONS(7359), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - ACTIONS(5638), 24, + ACTIONS(7361), 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, @@ -619243,25 +689877,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_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [191598] = 5, + anon_sym_GT2, + [231095] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - STATE(6424), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 12, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + ACTIONS(12744), 1, + anon_sym_LBRACE, + STATE(7374), 1, + sym_enumerator_list, + STATE(7889), 1, + sym_attribute_specifier, + ACTIONS(7421), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -619272,9 +689917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8839), 27, + ACTIONS(7423), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -619286,6 +689930,7 @@ 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, @@ -619298,39 +689943,35 @@ 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, - [191652] = 3, + [231154] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 18, - aux_sym_preproc_elif_token1, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + ACTIONS(12744), 1, + anon_sym_LBRACE, + STATE(7377), 1, + sym_enumerator_list, + STATE(7900), 1, + sym_attribute_specifier, + ACTIONS(7417), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(10564), 24, + ACTIONS(7419), 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, @@ -619339,40 +689980,52 @@ 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, - [191702] = 3, + anon_sym_GT2, + [231213] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7108), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(6824), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(7110), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6819), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6822), 4, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(6815), 34, + anon_sym_AMP, anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, 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, @@ -619386,185 +690039,125 @@ 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, - [191752] = 24, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [231266] = 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, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(6000), 1, + anon_sym_LPAREN2, + ACTIONS(6002), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(6004), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(6006), 1, anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7527), 1, - sym_ms_call_modifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8100), 1, - sym__declarator, - STATE(8222), 1, - sym_splice_specifier, - STATE(9921), 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, - [191844] = 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, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8908), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(9481), 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(3478), 1, + sym_pointer_type_declarator, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7545), 1, - sym_ms_call_modifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8334), 1, - sym__declarator, - STATE(9963), 1, - sym_init_declarator, - STATE(11622), 1, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10260), 1, + sym__type_declarator, + STATE(10531), 1, + sym__abstract_declarator, + STATE(12437), 1, sym_ms_based_modifier, - STATE(10768), 5, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + STATE(13053), 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, - [191936] = 5, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [231361] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - STATE(6424), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 12, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10066), 7, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_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(8835), 27, + ACTIONS(10068), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -619573,330 +690166,547 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [191990] = 21, + anon_sym_COLON_RBRACK, + [231428] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12162), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, - ACTIONS(12164), 1, + anon_sym_PERCENT, + ACTIONS(12886), 2, 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_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 9, 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, - [192076] = 21, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_COLON_RBRACK, + [231517] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 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(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_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, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 11, 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, - [192162] = 24, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_COLON_RBRACK, + [231604] = 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, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10066), 1, + anon_sym_PIPE, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12906), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, - ACTIONS(10180), 1, + anon_sym_PERCENT, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10182), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7542), 1, - sym_ms_call_modifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8082), 1, - sym__declarator, - STATE(8222), 1, - sym_splice_specifier, - STATE(10181), 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, - [192254] = 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_COLON_RBRACK, + [231689] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - STATE(6424), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 12, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10066), 1, + anon_sym_PIPE, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12906), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 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, + [231772] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10066), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, 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(9073), 27, + ACTIONS(10068), 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, + [231851] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10066), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 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_LT_LT, + 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_COLON_RBRACK, + [231928] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [192308] = 24, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [232001] = 13, 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(9662), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, - ACTIONS(10180), 1, + anon_sym_PERCENT, + ACTIONS(10066), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_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, + [232070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9378), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, 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_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9380), 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, + [232119] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -619905,41 +690715,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7553), 1, + STATE(8480), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8121), 1, - sym__declarator, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9874), 1, - sym_init_declarator, - STATE(11622), 1, + STATE(10005), 1, + sym__declarator, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -619952,7 +690760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -619964,75 +690772,64 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [192492] = 24, + [232208] = 14, 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(9662), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, - ACTIONS(10180), 1, - anon_sym_AMP_AMP, - ACTIONS(10182), 1, + anon_sym_PERCENT, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 5, + anon_sym_PIPE, anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7556), 1, - sym_ms_call_modifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8108), 1, - sym__declarator, - STATE(8222), 1, - sym_splice_specifier, - STATE(10051), 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, - [192584] = 24, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [232279] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -620041,41 +690838,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7560), 1, + STATE(8514), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8128), 1, - sym__declarator, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10121), 1, - sym_init_declarator, - STATE(11622), 1, + STATE(9977), 1, + sym__declarator, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -620088,7 +690883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -620100,66 +690895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [192676] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12171), 1, - anon_sym_virtual, - ACTIONS(12177), 1, - anon_sym___attribute__, - ACTIONS(12180), 1, - anon_sym___attribute, - ACTIONS(12183), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12186), 1, - anon_sym___declspec, - ACTIONS(12189), 1, - anon_sym___inline, - ACTIONS(12192), 1, - anon_sym_const, - STATE(4333), 1, - sym_alignas_qualifier, - ACTIONS(10044), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(12195), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10046), 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(12174), 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(12168), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192750] = 24, + [232368] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -620168,41 +690904,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7567), 1, + STATE(8501), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8419), 1, + STATE(9987), 1, sym__declarator, - STATE(10028), 1, - sym_init_declarator, - STATE(11622), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -620215,7 +690949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -620227,31 +690961,25 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [192842] = 3, + [232457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 17, + ACTIONS(9279), 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___attribute, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(10564), 25, + ACTIONS(9281), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -620260,72 +690988,26 @@ 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___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_COLON_RBRACK, - [192892] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(6707), 1, - sym_alignas_qualifier, - ACTIONS(12201), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6891), 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(6889), 13, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(12198), 13, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [192950] = 24, + [232506] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -620334,41 +691016,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7566), 1, + STATE(8519), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8392), 1, + STATE(10059), 1, sym__declarator, - STATE(9927), 1, - sym_init_declarator, - STATE(11622), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -620381,76 +691061,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [193042] = 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(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(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(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9044), 1, - sym__declarator, - STATE(9403), 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, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -620462,7 +691073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [193136] = 24, + [232595] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -620471,41 +691082,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7567), 1, + STATE(8486), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8294), 1, + STATE(10016), 1, sym__declarator, - STATE(10028), 1, - sym_init_declarator, - STATE(11622), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -620518,7 +691127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -620530,15 +691139,10 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [193228] = 5, + [232684] = 3, 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, + ACTIONS(9329), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -620549,9 +691153,9 @@ 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_DOT, - ACTIONS(9075), 27, + ACTIONS(9331), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -620563,6 +691167,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, @@ -620579,299 +691185,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [193282] = 3, + [232733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 5, + ACTIONS(9329), 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_const, - anon_sym___asm, - ACTIONS(7083), 37, + anon_sym_DOT, + ACTIONS(9331), 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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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_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_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [193332] = 11, + [232782] = 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(9329), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute__, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7249), 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(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, - [193398] = 7, - 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, + anon_sym_DOT, + ACTIONS(9331), 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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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, - 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_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, - 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, + [232831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9292), 12, 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, - ACTIONS(10544), 7, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9294), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [193547] = 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(12241), 3, 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, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10491), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_RBRACK, - [193642] = 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, + [232880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 12, + ACTIONS(9296), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -620884,7 +691339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8956), 29, + ACTIONS(9298), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -620914,52 +691369,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [193691] = 12, + [232929] = 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(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9707), 7, + ACTIONS(9313), 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, - ACTIONS(9709), 22, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9315), 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_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -620968,416 +691407,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [193758] = 23, + 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, + [232978] = 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, + ACTIONS(9356), 12, + 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, - 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___attribute, + anon_sym_DOT, + ACTIONS(9358), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12233), 2, + anon_sym_PIPE_PIPE, 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(9709), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_COLON_RBRACK, - [193847] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_LT_LT, + anon_sym___attribute__, 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_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, - 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, + [233027] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8255), 2, + anon_sym_final, + anon_sym_override, + STATE(7261), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9499), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - 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, - ACTIONS(9709), 11, + anon_sym_DOT, + ACTIONS(9501), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_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_COLON_RBRACK, - [193934] = 21, - 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_PIPE, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12253), 1, + anon_sym_bitor, + 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(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_requires, + [233080] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12445), 1, + anon_sym_LBRACE, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7105), 1, + sym_attribute_specifier, + STATE(7407), 1, + sym_enumerator_list, + ACTIONS(7421), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - 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, - ACTIONS(9709), 12, + anon_sym_DOT, + ACTIONS(7423), 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, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_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_COLON_RBRACK, - [194019] = 26, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [233139] = 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, + ACTIONS(8240), 2, + anon_sym_final, + anon_sym_override, + STATE(7299), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9499), 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, - 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(9501), 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_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, - ACTIONS(9828), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_RBRACK, - [194114] = 18, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_requires, + [233192] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12229), 1, + STATE(2430), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9774), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - 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(9707), 2, anon_sym_PIPE, anon_sym_AMP, - 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(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(9709), 15, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(9776), 26, 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_RBRACE, + 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_COLON_RBRACK, - [194193] = 17, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [233248] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9651), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - 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(9707), 2, - anon_sym_PIPE, + ACTIONS(9820), 1, + anon_sym_STAR, + ACTIONS(9822), 1, + anon_sym_AMP_AMP, + ACTIONS(9824), 1, anon_sym_AMP, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(9826), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5105), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9473), 1, + sym__abstract_declarator, + STATE(9669), 1, + sym__scope_resolution, + ACTIONS(7862), 5, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(7864), 8, + anon_sym_COLON, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [233332] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, + anon_sym_LPAREN2, + ACTIONS(11994), 1, + anon_sym_LBRACK, + STATE(7524), 1, + sym_new_declarator, + STATE(6664), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9697), 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(12243), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 18, + anon_sym_DOT, + ACTIONS(9699), 25, 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_SEMI, - anon_sym_RBRACE, + 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_COLON_RBRACK, - [194270] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [233390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, - anon_sym_LPAREN2, - ACTIONS(12259), 1, - anon_sym_LBRACK, - STATE(2281), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10198), 9, + ACTIONS(5623), 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(10196), 28, + ACTIONS(5625), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -621385,10 +691797,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, @@ -621403,102 +691813,104 @@ 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, + [233438] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(11045), 1, + anon_sym___attribute, + ACTIONS(12804), 1, anon_sym_SLASH, - ACTIONS(12249), 1, + ACTIONS(12810), 1, + anon_sym_PIPE, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12830), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12800), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12802), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12247), 2, + ACTIONS(12806), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12808), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12812), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(11047), 5, 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___attribute__, anon_sym_QMARK, - 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, + [233530] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11994), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - STATE(3874), 1, + STATE(7473), 1, + sym_new_declarator, + STATE(6737), 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(12225), 2, + sym_initializer_list, + ACTIONS(9672), 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(9674), 25, 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 +691919,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621517,19 +691928,70 @@ 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, + [233588] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12533), 1, + anon_sym_LT, + STATE(7564), 1, + sym_template_argument_list, + ACTIONS(5689), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7543), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [233642] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - STATE(2281), 1, + STATE(2430), 1, sym_parameter_list, - STATE(6617), 1, + STATE(5810), 1, sym__function_declarator_seq, - ACTIONS(10202), 9, + ACTIONS(9792), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -621538,8 +692000,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(10200), 28, + ACTIONS(9794), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -621552,7 +692015,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, @@ -621565,29 +692029,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, - [194526] = 3, + [233698] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 12, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2430), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9796), 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(8994), 29, + ACTIONS(9798), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -621595,9 +692061,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621610,22 +692078,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, - [194575] = 7, + [233754] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12474), 1, anon_sym_LBRACK, - STATE(2281), 1, + STATE(2430), 1, sym_parameter_list, - STATE(6617), 1, + STATE(5810), 1, sym__function_declarator_seq, - ACTIONS(10206), 9, + ACTIONS(9800), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -621634,8 +692098,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(10204), 28, + ACTIONS(9802), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -621648,7 +692113,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, @@ -621661,29 +692127,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, - [194632] = 3, + [233810] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 12, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2430), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9804), 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(8994), 29, + ACTIONS(9806), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -621691,9 +692159,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621706,27 +692176,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [233866] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10337), 1, + anon_sym___attribute, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12810), 1, + anon_sym_PIPE, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12828), 1, + anon_sym_QMARK, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12806), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12808), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12812), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10339), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [233962] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(12533), 1, + anon_sym_LT, + STATE(7782), 1, + sym_template_argument_list, + ACTIONS(7447), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7442), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, + anon_sym_try, anon_sym_requires, - [194681] = 3, + [234016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 12, + ACTIONS(5623), 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_DOT, - ACTIONS(8994), 29, + ACTIONS(5625), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -621737,9 +692318,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_LBRACK, + anon_sym_GT_GT, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621754,20 +692337,22 @@ 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, + [234064] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(11994), 1, anon_sym_LBRACK, - STATE(2281), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10210), 9, + STATE(7527), 1, + sym_new_declarator, + STATE(6760), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9658), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -621777,7 +692362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10208), 28, + ACTIONS(9660), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -621790,7 +692375,7 @@ 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621803,57 +692388,52 @@ 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, - [194787] = 14, + [234122] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(12804), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12802), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 5, + ACTIONS(10066), 8, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 20, + anon_sym___attribute, + ACTIONS(10068), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621862,24 +692442,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [194858] = 3, + [234188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 12, + ACTIONS(5619), 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_DOT, - ACTIONS(8887), 29, + ACTIONS(5621), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -621890,9 +692467,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_LBRACK, + anon_sym_GT_GT, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621907,225 +692486,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [194907] = 3, + [234236] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 12, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10066), 1, + anon_sym___attribute, + ACTIONS(12804), 1, anon_sym_SLASH, + ACTIONS(12810), 1, anon_sym_PIPE, + ACTIONS(12814), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12820), 1, anon_sym_GT_EQ, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12808), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12812), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(8911), 29, + ACTIONS(10068), 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, + [234326] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(10066), 1, + anon_sym___attribute, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12810), 1, + anon_sym_PIPE, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12812), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12816), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 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_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, - [194956] = 21, + [234414] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(12261), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12834), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10066), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, anon_sym_STAR, - ACTIONS(12263), 1, + anon_sym_PERCENT, + ACTIONS(12812), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12265), 1, - anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(5697), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9215), 1, - sym__abstract_declarator, - ACTIONS(6859), 2, - anon_sym_LBRACE, - anon_sym_requires, - 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(6455), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7598), 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, - [195041] = 16, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [234498] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11745), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12834), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10066), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, anon_sym_STAR, - ACTIONS(11747), 1, + anon_sym_PERCENT, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, 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(8723), 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), 10, - anon_sym_RPAREN, + anon_sym_CARET, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [234580] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9630), 1, anon_sym_LBRACE, + ACTIONS(12927), 1, + sym_identifier, + ACTIONS(12929), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12933), 1, anon_sym_EQ, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4323), 1, + sym__class_declaration, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4770), 1, + sym_splice_specifier, + STATE(8818), 1, + sym_ms_declspec_modifier, + STATE(9769), 1, + sym__scope_resolution, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, 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, - [195116] = 16, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(12931), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3791), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8819), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8407), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [234682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, + ACTIONS(7491), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(11172), 1, + anon_sym___asm, + ACTIONS(7493), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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(8709), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6459), 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), 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_EQ, - 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, @@ -622137,36 +692848,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195191] = 3, + 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, + [234730] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 12, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12802), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 3, anon_sym_PIPE, anon_sym_AMP, + anon_sym___attribute, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(10068), 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, + [234808] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12822), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(10066), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym___attribute, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 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, + [234884] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(8923), 29, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(10068), 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, + [234956] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12804), 1, + anon_sym_SLASH, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(10066), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(10068), 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -622175,34 +693091,100 @@ 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, + [235024] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12810), 1, + anon_sym_PIPE, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12828), 1, + anon_sym_QMARK, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + ACTIONS(12937), 1, + anon_sym___attribute, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [195240] = 3, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12806), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12808), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12812), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(12935), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [235120] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 12, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2430), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9780), 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(8948), 29, + ACTIONS(9782), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -622210,9 +693192,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -622225,99 +693209,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_GT2, - anon_sym_requires, - [195289] = 21, + [235176] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(12472), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(12474), 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, + STATE(2430), 1, sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, + STATE(5810), 1, sym__function_declarator_seq, - STATE(9200), 1, - sym__abstract_declarator, - ACTIONS(6823), 2, - anon_sym_LBRACE, - anon_sym_requires, - 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(7585), 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, - [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, + ACTIONS(9784), 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(9145), 26, + ACTIONS(9786), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -622325,8 +693241,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, @@ -622339,18 +693258,18 @@ 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, - [195427] = 5, + [235232] = 7, 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, + ACTIONS(12472), 1, + anon_sym_LPAREN2, + ACTIONS(12474), 1, + anon_sym_LBRACK, + STATE(2430), 1, + sym_parameter_list, + STATE(5810), 1, + sym__function_declarator_seq, + ACTIONS(9788), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622359,11 +693278,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(9141), 28, + ACTIONS(9790), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -622374,8 +693293,8 @@ 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___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -622388,129 +693307,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_requires, - [195480] = 16, + [235288] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11745), 1, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12804), 1, + anon_sym_SLASH, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, anon_sym_STAR, - ACTIONS(11747), 1, - anon_sym_AMP_AMP, - ACTIONS(11749), 1, + anon_sym_PERCENT, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 6, + anon_sym_PIPE, anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4613), 1, - sym_parameter_list, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8704), 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), 10, - anon_sym_RPAREN, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(10068), 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_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, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [195555] = 16, + 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, + [235358] = 6, 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, + ACTIONS(12455), 1, + anon_sym_decltype, + ACTIONS(12925), 1, + sym_auto, + STATE(7860), 1, + sym_decltype_auto, + ACTIONS(7359), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4613), 1, - sym_parameter_list, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8722), 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(7355), 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, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [195630] = 3, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7361), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [235412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 12, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7866), 1, + sym_attribute_specifier, + ACTIONS(7574), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622521,9 +693431,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(8998), 29, + ACTIONS(7576), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622535,7 +693444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -622549,14 +693458,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, - [195679] = 3, + [235466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 12, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7872), 1, + sym_attribute_specifier, + ACTIONS(7578), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622567,9 +693479,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(9013), 29, + ACTIONS(7580), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622581,7 +693492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -622595,14 +693506,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, - [195728] = 3, + [235520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 12, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7883), 1, + sym_attribute_specifier, + ACTIONS(7676), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622613,9 +693527,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(9002), 29, + ACTIONS(7678), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622627,7 +693540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -622641,30 +693554,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, - [195777] = 5, + [235574] = 6, 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(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7888), 1, + sym_attribute_specifier, + ACTIONS(7617), 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), 28, + ACTIONS(7619), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622675,11 +693587,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_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -622692,70 +693602,17 @@ 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_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, + anon_sym_GT2, + [235628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 12, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7891), 1, + sym_attribute_specifier, + ACTIONS(7692), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622766,9 +693623,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(8895), 29, + ACTIONS(7694), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622780,7 +693636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -622794,14 +693650,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, - [195954] = 3, + [235682] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 12, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7892), 1, + sym_attribute_specifier, + ACTIONS(7702), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622812,9 +693671,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(8903), 29, + ACTIONS(7704), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622826,7 +693684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -622840,36 +693698,28 @@ 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, + [235736] = 3, 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, + ACTIONS(3118), 5, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(6572), 34, + anon_sym___asm, + ACTIONS(3108), 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_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, @@ -622884,32 +693734,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + anon_sym_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, - [196058] = 3, + [235784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 12, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7192), 1, + sym_attribute_specifier, + ACTIONS(7570), 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(8944), 29, + ACTIONS(7572), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622920,9 +693774,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___attribute__, + anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -622935,81 +693792,16 @@ 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, - [196107] = 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(8758), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6451), 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), 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, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196182] = 7, + [235838] = 6, 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(10186), 11, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7902), 1, + sym_attribute_specifier, + ACTIONS(7672), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623021,9 +693813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10184), 26, + ACTIONS(7674), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -623032,6 +693825,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -623044,22 +693839,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, - [196239] = 7, + [235892] = 6, 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(10190), 11, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7904), 1, + sym_attribute_specifier, + ACTIONS(7680), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623071,9 +693861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10188), 26, + ACTIONS(7682), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -623082,6 +693873,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -623094,22 +693887,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, - [196296] = 7, + [235946] = 6, 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(10194), 11, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7906), 1, + sym_attribute_specifier, + ACTIONS(7688), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623121,9 +693909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10192), 26, + ACTIONS(7690), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -623132,6 +693921,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -623144,22 +693935,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, - [196353] = 7, + [236000] = 6, 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(10174), 11, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7911), 1, + sym_attribute_specifier, + ACTIONS(7706), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623171,9 +693957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10172), 26, + ACTIONS(7708), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -623182,6 +693969,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -623194,151 +693983,132 @@ 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, - [196410] = 11, + [236054] = 6, 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, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, 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, + STATE(7912), 1, + sym_attribute_specifier, + ACTIONS(7570), 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(7572), 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_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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, - 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_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, - 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, + [236108] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, + anon_sym_LPAREN2, + ACTIONS(11994), 1, + anon_sym_LBRACK, + STATE(7534), 1, + sym_new_declarator, + STATE(6695), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9666), 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(9668), 25, + 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_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10475), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [196566] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [236166] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 12, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(12939), 1, + anon_sym_LPAREN2, + ACTIONS(12941), 1, + anon_sym_LBRACK, + STATE(7513), 1, + sym_new_declarator, + STATE(8184), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9697), 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(3161), 29, + ACTIONS(9699), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -623346,9 +694116,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, @@ -623361,30 +694132,33 @@ 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, - [196615] = 3, + [236224] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 12, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(12939), 1, + anon_sym_LPAREN2, + ACTIONS(12941), 1, + anon_sym_LBRACK, + STATE(7516), 1, + sym_new_declarator, + STATE(8208), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9672), 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(3153), 29, + ACTIONS(9674), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -623392,9 +694166,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, @@ -623407,821 +694182,919 @@ 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, - [196664] = 23, + [236282] = 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, + ACTIONS(9662), 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, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11075), 1, + anon_sym___attribute, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12810), 1, + anon_sym_PIPE, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12806), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12808), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12812), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11077), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [236374] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(11079), 1, + anon_sym___attribute, + ACTIONS(12804), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12810), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12814), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12820), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12830), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12832), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12834), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12800), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12802), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12806), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12808), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12812), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12822), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12816), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12818), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 7, + ACTIONS(11081), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [196844] = 26, + [236466] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(10105), 1, + anon_sym___attribute, + ACTIONS(12804), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12810), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12814), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12820), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12830), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12832), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12834), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12800), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12802), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12806), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12808), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12812), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12822), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12816), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12818), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 5, + ACTIONS(10103), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON_RBRACK, - [196939] = 23, + anon_sym___attribute__, + anon_sym_QMARK, + [236558] = 8, 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(4682), 1, + anon_sym_LBRACE, + ACTIONS(12939), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(12941), 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(7525), 1, + sym_new_declarator, + STATE(8227), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9658), 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(9660), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, - ACTIONS(10242), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10244), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7529), 1, - sym_ms_call_modifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8934), 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, - [197028] = 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, + [236616] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12804), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12810), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12814), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12820), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12828), 1, + anon_sym_QMARK, + ACTIONS(12830), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12832), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12834), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12945), 1, + anon_sym___attribute, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12800), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12802), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12806), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12808), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12812), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12822), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12816), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(12943), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [236712] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(12939), 1, + anon_sym_LPAREN2, + ACTIONS(12941), 1, + anon_sym_LBRACK, + STATE(7545), 1, + sym_new_declarator, + STATE(8272), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9666), 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(10487), 7, + anon_sym_DOT, + ACTIONS(9668), 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, + [236770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7259), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7261), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [197119] = 24, + 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_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [236818] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(11053), 1, + anon_sym___attribute, + ACTIONS(12804), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12810), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12814), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12820), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12830), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12832), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12834), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12800), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12802), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12806), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12808), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12812), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12822), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12816), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12818), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 7, + ACTIONS(11055), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [197210] = 23, + [236910] = 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(3442), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11057), 1, + anon_sym___attribute, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12810), 1, + anon_sym_PIPE, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12828), 1, + anon_sym_QMARK, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, anon_sym_STAR, - ACTIONS(10242), 1, + anon_sym_PERCENT, + ACTIONS(12806), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12808), 2, anon_sym_AMP_AMP, - ACTIONS(10244), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7544), 1, - sym_ms_call_modifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8931), 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, - [197299] = 23, + anon_sym_and, + ACTIONS(12812), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11059), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [237006] = 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(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(5619), 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(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_DOT, + ACTIONS(5621), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10242), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10244), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7550), 1, - sym_ms_call_modifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8879), 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, - [197388] = 23, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [237054] = 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, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(11061), 1, + anon_sym___attribute, + ACTIONS(12804), 1, + anon_sym_SLASH, + ACTIONS(12810), 1, + anon_sym_PIPE, + ACTIONS(12814), 1, + anon_sym_AMP, + ACTIONS(12820), 1, + anon_sym_GT_EQ, + ACTIONS(12830), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12832), 1, + anon_sym_bitor, + ACTIONS(12834), 1, + anon_sym_bitand, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12800), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12802), 2, anon_sym_STAR, - ACTIONS(10242), 1, + anon_sym_PERCENT, + ACTIONS(12806), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12808), 2, anon_sym_AMP_AMP, - ACTIONS(10244), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, + anon_sym_and, + ACTIONS(12812), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12822), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12816), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12818), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11063), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [237146] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + anon_sym_LBRACE, + ACTIONS(12947), 1, + anon_sym_LPAREN2, + ACTIONS(12949), 1, + anon_sym_LBRACK, STATE(7554), 1, - sym_ms_call_modifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8903), 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, - [197477] = 24, + sym_new_declarator, + STATE(8321), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9697), 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(9699), 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, + [237204] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(11065), 1, + anon_sym___attribute, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12804), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12810), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12814), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12820), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12828), 1, + anon_sym_QMARK, + ACTIONS(12830), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12832), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12834), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12800), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12802), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12806), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12808), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12812), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12822), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(11067), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(12816), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12818), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 7, + [237300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7568), 13, 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, - 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_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7566), 27, anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7557), 1, - sym_ms_call_modifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8917), 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, - [197657] = 23, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [237348] = 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, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(12951), 1, + anon_sym_COMMA, + ACTIONS(12953), 1, + anon_sym_SEMI, + ACTIONS(12955), 1, + anon_sym_RBRACE, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + STATE(11183), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, - ACTIONS(10242), 1, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, - ACTIONS(10244), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7561), 1, - sym_ms_call_modifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8880), 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, - [197746] = 7, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [237448] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(4960), 1, + anon_sym_LBRACE, + ACTIONS(12947), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(12949), 1, anon_sym_LBRACK, - STATE(2277), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10198), 11, + STATE(7566), 1, + sym_new_declarator, + STATE(8344), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9672), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624233,7 +695106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10196), 26, + ACTIONS(9674), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -624256,62 +695129,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, - [197803] = 5, + [237506] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6603), 1, - anon_sym_LBRACK, - ACTIONS(6598), 2, + ACTIONS(4960), 1, + anon_sym_LBRACE, + ACTIONS(12947), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6601), 4, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - ACTIONS(6594), 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, - [197856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8950), 12, + ACTIONS(12949), 1, + anon_sym_LBRACK, + STATE(7511), 1, + sym_new_declarator, + STATE(8157), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9658), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624322,12 +695155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(8952), 29, + ACTIONS(9660), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -624336,8 +695167,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, anon_sym_or, @@ -624350,22 +695179,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, - [197905] = 7, + [237564] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(4960), 1, + anon_sym_LBRACE, + ACTIONS(12947), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(12949), 1, anon_sym_LBRACK, - STATE(2277), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10202), 11, + STATE(7490), 1, + sym_new_declarator, + STATE(8190), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9666), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624377,7 +695206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10200), 26, + ACTIONS(9668), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -624400,36 +695229,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, - [197962] = 7, + [237622] = 6, 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(10206), 11, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7148), 1, + sym_attribute_specifier, + ACTIONS(7574), 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(10204), 26, + ACTIONS(7576), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -624437,7 +695260,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_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -624450,36 +695278,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, + [237676] = 6, 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(10210), 11, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7188), 1, + sym_attribute_specifier, + ACTIONS(7578), 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(10208), 26, + ACTIONS(7580), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -624487,7 +695308,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_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -624500,22 +695326,16 @@ 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, + [237730] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, - anon_sym_LPAREN2, - ACTIONS(12259), 1, - anon_sym_LBRACK, - STATE(2281), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10186), 9, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7084), 1, + sym_attribute_specifier, + ACTIONS(7676), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624525,9 +695345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10184), 28, + ACTIONS(7678), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -624538,6 +695359,8 @@ 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, @@ -624551,21 +695374,16 @@ 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, + [237784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, - anon_sym_LPAREN2, - ACTIONS(12259), 1, - anon_sym_LBRACK, - STATE(2281), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10190), 9, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7095), 1, + sym_attribute_specifier, + ACTIONS(7617), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624575,9 +695393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10188), 28, + ACTIONS(7619), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -624588,6 +695407,8 @@ 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, @@ -624601,21 +695422,16 @@ 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, - [198190] = 7, + [237838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, - anon_sym_LPAREN2, - ACTIONS(12259), 1, - anon_sym_LBRACK, - STATE(2281), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10194), 9, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7129), 1, + sym_attribute_specifier, + ACTIONS(7692), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624625,9 +695441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10192), 28, + ACTIONS(7694), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -624638,6 +695455,8 @@ 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, @@ -624651,21 +695470,16 @@ 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, + [237892] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, - anon_sym_LPAREN2, - ACTIONS(12259), 1, - anon_sym_LBRACK, - STATE(2281), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10174), 9, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7140), 1, + sym_attribute_specifier, + ACTIONS(7702), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624675,9 +695489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10172), 28, + ACTIONS(7704), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -624688,6 +695503,8 @@ 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, @@ -624701,97 +695518,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, - [198304] = 23, + [237946] = 6, 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(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7132), 1, + sym_attribute_specifier, + ACTIONS(7634), 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(7636), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_PERCENT, + anon_sym_PIPE_PIPE, 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, + anon_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, + [238000] = 6, 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, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7138), 1, + sym_attribute_specifier, + ACTIONS(7672), 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(9141), 26, + ACTIONS(7674), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -624802,8 +695596,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_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -624816,185 +695614,408 @@ 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, + [238054] = 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(9707), 1, - anon_sym_PIPE, - ACTIONS(12229), 1, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7149), 1, + sym_attribute_specifier, + ACTIONS(7680), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12239), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(7682), 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, - ACTIONS(12249), 1, + 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, - ACTIONS(12253), 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(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, + [238108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7163), 1, + sym_attribute_specifier, + ACTIONS(7688), 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(7690), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12247), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + 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, + [238162] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12492), 1, + anon_sym___attribute__, + ACTIONS(12494), 1, + anon_sym___attribute, + STATE(7189), 1, + sym_attribute_specifier, + ACTIONS(7706), 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(7708), 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_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(12243), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [238216] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12541), 1, + anon_sym___attribute__, + ACTIONS(12543), 1, + anon_sym___attribute, + STATE(7898), 1, + sym_attribute_specifier, + ACTIONS(7634), 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), 14, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7636), 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_SEMI, - anon_sym_RBRACE, + 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_COLON_RBRACK, - [198529] = 25, + anon_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, + [238270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7521), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7519), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [238317] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(10435), 1, - anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12991), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12995), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11086), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [198621] = 13, + [238414] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - STATE(3874), 1, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(12997), 1, + anon_sym_COMMA, + ACTIONS(13000), 1, + anon_sym_SEMI, + ACTIONS(13002), 1, + anon_sym_RBRACE, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 6, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [238511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9925), 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, - ACTIONS(9709), 20, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9927), 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_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -625003,21 +696024,18 @@ 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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [238558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, - anon_sym_LPAREN2, - ACTIONS(12281), 1, - anon_sym_LBRACK, - STATE(6577), 1, - sym_new_declarator, - STATE(7231), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 11, + ACTIONS(9935), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -625029,9 +696047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9258), 23, + ACTIONS(9937), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -625040,6 +696059,7 @@ 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, @@ -625052,211 +696072,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [198747] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7349), 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(8814), 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), 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, - [198823] = 17, + [238605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7341), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym_STAR, - ACTIONS(11781), 1, - anon_sym_AMP_AMP, - ACTIONS(11783), 1, + ACTIONS(9703), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, 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(8820), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6508), 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), 8, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9705), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(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, - [198899] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, anon_sym_LPAREN2, - ACTIONS(7353), 1, - anon_sym___attribute, - ACTIONS(11779), 1, anon_sym_STAR, - ACTIONS(11781), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11783), 1, - anon_sym_AMP, - ACTIONS(11793), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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(8828), 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), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - 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_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, - [198975] = 8, + [238652] = 3, 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, + ACTIONS(9703), 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(9228), 25, + ACTIONS(9705), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -625264,10 +696146,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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -625280,77 +696160,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [199033] = 14, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [238699] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - STATE(3874), 1, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13004), 1, + anon_sym_COMMA, + ACTIONS(13006), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11121), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 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, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, 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(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [238796] = 3, 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, + ACTIONS(9296), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -625360,9 +696246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9276), 25, + ACTIONS(9298), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -625373,7 +696260,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, @@ -625386,137 +696274,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [199161] = 24, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [238843] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + STATE(8303), 1, + sym_ref_qualifier, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9057), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8563), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 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, + [238932] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(9707), 1, - anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13017), 1, + anon_sym_COMMA, + ACTIONS(13019), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11383), 1, + aux_sym_argument_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12101), 2, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12896), 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, + [239029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, - anon_sym_LPAREN2, - ACTIONS(12281), 1, - anon_sym_LBRACK, - STATE(6569), 1, - sym_new_declarator, - STATE(7389), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9248), 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(9250), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(6805), 11, 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [199309] = 8, + anon_sym_LBRACK_COLON, + ACTIONS(6803), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [239076] = 3, 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, + ACTIONS(9313), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -625526,9 +696468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9258), 25, + ACTIONS(9315), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -625539,7 +696482,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, @@ -625552,33 +696496,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [199367] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [239123] = 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(6610), 1, - sym_new_declarator, - STATE(7199), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 9, + ACTIONS(7621), 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(9258), 25, + ACTIONS(7623), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -625586,10 +696525,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, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -625602,416 +696539,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [199425] = 25, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [239170] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(10538), 1, - anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13023), 1, + anon_sym_COMMA, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(13049), 1, + anon_sym_RBRACK, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(10910), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [199517] = 25, + [239267] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(10542), 1, - anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13017), 1, + anon_sym_COMMA, + ACTIONS(13061), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11200), 1, + aux_sym_argument_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12896), 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, + [239364] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9599), 1, - anon_sym___attribute, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13063), 1, + anon_sym_COMMA, + ACTIONS(13065), 1, + anon_sym_RBRACE, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11201), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [239461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9356), 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(9597), 5, + anon_sym_DOT, + ACTIONS(9358), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, - [199701] = 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_final, + anon_sym_override, + anon_sym_requires, + [239508] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12097), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12121), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, anon_sym_QMARK, - ACTIONS(12123), 1, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12289), 1, - anon_sym___attribute, - STATE(3874), 1, + ACTIONS(13067), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11205), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(12287), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [199797] = 25, + [239605] = 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(10473), 1, - anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(7472), 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(7474), 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, - ACTIONS(12123), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + anon_sym_or, + anon_sym_and, 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [239652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9861), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 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(9863), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, 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(10475), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [199889] = 27, - 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(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_or, + anon_sym_and, 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_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [239699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9865), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 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(9867), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, 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_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(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [199985] = 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, + [239746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 12, + ACTIONS(9869), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -626022,9 +697009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5591), 28, + ACTIONS(9871), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -626036,7 +697022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -626053,10 +697039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [200033] = 3, + [239793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 12, + ACTIONS(9888), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -626067,9 +697053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5595), 28, + ACTIONS(9890), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -626081,7 +697066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -626098,174 +697083,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [200081] = 25, + [239840] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(10485), 1, - anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13004), 1, + anon_sym_COMMA, + ACTIONS(13069), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11232), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12896), 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, + [239937] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(10489), 1, - anon_sym___attribute, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12097), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12121), 1, - anon_sym_QMARK, - ACTIONS(12123), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13073), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10491), 3, + ACTIONS(13071), 2, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(12109), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [200269] = 8, + [240032] = 3, 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, + ACTIONS(6801), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6799), 28, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -626279,38 +697256,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [200327] = 8, + [240079] = 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(6596), 1, - sym_new_declarator, - STATE(7217), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9248), 9, + ACTIONS(8285), 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(9250), 25, + ACTIONS(8287), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -626318,10 +697290,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, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -626334,432 +697304,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200385] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7347), 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(8803), 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), 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, - [200461] = 29, + [240126] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12291), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(12293), 1, - anon_sym_SEMI, - ACTIONS(12295), 1, - anon_sym_RBRACE, - STATE(3874), 1, + ACTIONS(13075), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9672), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + STATE(11307), 1, + aux_sym_argument_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [200561] = 23, + [240223] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(9707), 1, - anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13077), 1, + anon_sym_COMMA, + ACTIONS(13079), 1, + anon_sym_RBRACE, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11309), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12105), 2, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12896), 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, + [240320] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12097), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12121), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, anon_sym_QMARK, - ACTIONS(12123), 1, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12299), 1, - anon_sym___attribute, - STATE(3874), 1, + ACTIONS(13081), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11312), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(12297), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [200745] = 30, - 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, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(12301), 1, - sym_identifier, - ACTIONS(12303), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12307), 1, - anon_sym_EQ, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(7818), 1, - sym_ms_declspec_modifier, - STATE(8756), 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, - ACTIONS(12305), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7819), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7409), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [200847] = 21, + [240417] = 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(12107), 1, - anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - 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(9707), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(9707), 11, 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_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 10, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9709), 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_SEMI, - anon_sym___attribute__, + 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, - [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_GT2, + anon_sym_requires, + [240464] = 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(9711), 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(9276), 25, + ACTIONS(9713), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -626767,10 +697585,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, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -626783,21 +697599,14 @@ 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_GT2, + anon_sym_requires, + [240511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, - anon_sym_LPAREN2, - ACTIONS(12281), 1, - anon_sym_LBRACK, - STATE(6598), 1, - sym_new_declarator, - STATE(7325), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 11, + ACTIONS(9724), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -626809,9 +697618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9276), 23, + ACTIONS(9726), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -626820,6 +697630,7 @@ 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, @@ -626832,11 +697643,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, - [201047] = 3, + anon_sym_requires, + [240558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 10, + ACTIONS(11198), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -626845,9 +697659,17 @@ 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(5591), 30, + sym_literal_suffix, + ACTIONS(11196), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -626861,8 +697683,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [240605] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(13014), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(8203), 1, + sym_ref_qualifier, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9063), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8569), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 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, + [240694] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9728), 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(9730), 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, @@ -626877,127 +697798,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [240741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6797), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6795), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, anon_sym_requires, - [201095] = 12, + [240788] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - STATE(3874), 1, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13004), 1, + anon_sym_COMMA, + ACTIONS(13089), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11334), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9707), 8, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - 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_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240885] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13017), 1, + anon_sym_COMMA, + ACTIONS(13091), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + STATE(11344), 1, + aux_sym_argument_list_repeat1, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12890), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [201161] = 20, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240982] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12107), 1, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12127), 1, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(12955), 1, + anon_sym_RBRACE, + ACTIONS(13093), 1, + anon_sym_COMMA, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11183), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12115), 2, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9271), 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(9709), 12, + anon_sym_DOT, + ACTIONS(9273), 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_SEMI, - anon_sym___attribute__, + 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, - [201243] = 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_final, + anon_sym_override, + anon_sym_requires, + [241126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 10, + ACTIONS(9263), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627006,9 +698107,8 @@ 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(9265), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -627022,7 +698122,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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -627039,33 +698139,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [201291] = 8, + [241173] = 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(6573), 1, - sym_new_declarator, - STATE(7387), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 9, + ACTIONS(9336), 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(9228), 25, + ACTIONS(9338), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627073,10 +698165,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, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627089,81 +698179,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201349] = 18, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [241220] = 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, + ACTIONS(9816), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12113), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12123), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9818), 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, - 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_or, + 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(12093), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [241267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9267), 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(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, - ACTIONS(9709), 13, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9269), 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_SEMI, - anon_sym___attribute__, + 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, - [201427] = 8, + 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, + [241314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, - anon_sym_LPAREN2, - ACTIONS(12281), 1, - anon_sym_LBRACK, - STATE(6713), 1, - sym_new_declarator, - STATE(7324), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 11, + ACTIONS(7911), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627174,10 +698285,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(9228), 23, + ACTIONS(7913), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627186,6 +698299,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627199,80 +698315,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [201485] = 17, + [241361] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12113), 1, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13017), 1, + anon_sym_COMMA, + ACTIONS(13095), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(10820), 1, + aux_sym_argument_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12115), 2, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym___attribute, - ACTIONS(12111), 3, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 16, + [241458] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13097), 1, anon_sym_COMMA, + ACTIONS(13099), 1, + anon_sym_RBRACE, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + STATE(10825), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, 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, - [201561] = 8, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - ACTIONS(11529), 1, - anon_sym_LBRACK, - STATE(6568), 1, - sym_new_declarator, - STATE(5946), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9248), 9, + ACTIONS(9275), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627282,9 +698466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9250), 25, + ACTIONS(9277), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627295,7 +698480,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,87 +698494,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201619] = 27, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [241602] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(9826), 1, - anon_sym___attribute, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12097), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12121), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, anon_sym_QMARK, - ACTIONS(12123), 1, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12991), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(13101), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(10850), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9828), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(12109), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [201715] = 7, + [241699] = 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(9352), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627397,11 +698578,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(10196), 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, @@ -627412,8 +698593,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, @@ -627426,18 +698607,13 @@ 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_requires, + [241746] = 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(9892), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627446,11 +698622,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(10200), 26, + ACTIONS(9894), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627461,8 +698637,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, @@ -627475,31 +698651,29 @@ 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_requires, + [241793] = 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(10206), 10, + ACTIONS(7714), 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(10204), 26, + ACTIONS(7716), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627507,11 +698681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627524,77 +698697,11 @@ 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, + [241840] = 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(9253), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627603,11 +698710,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(10208), 26, + ACTIONS(9255), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627618,8 +698725,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, @@ -627632,80 +698739,97 @@ 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_requires, + [241887] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - STATE(2274), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10186), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(10184), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13103), 1, anon_sym_COMMA, + ACTIONS(13105), 1, + anon_sym_RBRACE, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + STATE(11360), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(12894), 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, - [202071] = 7, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [241984] = 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(10190), 10, + ACTIONS(9845), 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(10188), 26, + ACTIONS(9847), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627713,11 +698837,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, @@ -627730,18 +698851,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202127] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [242031] = 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(10194), 10, + ACTIONS(9360), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627750,11 +698867,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(10192), 26, + ACTIONS(9362), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627765,8 +698882,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, @@ -627779,31 +698896,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202183] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [242078] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - STATE(2274), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10174), 10, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13004), 1, + anon_sym_COMMA, + ACTIONS(13107), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + STATE(11147), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [242175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 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(10172), 26, + ACTIONS(7741), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627811,11 +698995,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627828,126 +699011,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202239] = 15, + anon_sym_GT2, + [242222] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12123), 1, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13017), 1, + anon_sym_COMMA, + ACTIONS(13109), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(11195), 1, + aux_sym_argument_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12115), 2, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 6, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [242319] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, + anon_sym_LPAREN2, + STATE(6682), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9832), 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), 17, + anon_sym_DOT, + ACTIONS(9834), 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_SEMI, - anon_sym___attribute__, + 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, - [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_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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [242372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 11, + ACTIONS(7290), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627958,8 +699142,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_DOT, - ACTIONS(9318), 28, + ACTIONS(7292), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -627971,6 +699156,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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -627984,671 +699171,416 @@ 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, - [202434] = 28, + [242419] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12309), 1, + ACTIONS(13111), 1, anon_sym_COMMA, - ACTIONS(12311), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13113), 1, + anon_sym_RBRACE, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9808), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + STATE(11199), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [202531] = 28, + [242516] = 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(7790), 12, + 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(12313), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(7792), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(12315), 1, - anon_sym_RBRACE, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9817), 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_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, - [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_LT_LT, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - 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_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(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, + [242563] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12981), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12983), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12985), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12358), 1, + ACTIONS(13115), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(6528), 1, sym_argument_list, - STATE(5917), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(9827), 1, + STATE(11227), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12979), 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, + [242660] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12364), 1, + ACTIONS(13023), 1, anon_sym_COMMA, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12390), 1, - anon_sym_RBRACK, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(13117), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - STATE(9848), 1, + STATE(11248), 1, aux_sym_subscript_argument_list_repeat1, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [203019] = 28, + [242757] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12364), 1, - anon_sym_COMMA, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12402), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13017), 1, + anon_sym_COMMA, + ACTIONS(13119), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9942), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(11333), 2, + STATE(10936), 1, + aux_sym_argument_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [203116] = 27, + [242854] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(13121), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(10940), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12973), 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(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, 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, + [242951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - STATE(5977), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 9, + ACTIONS(7818), 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(9433), 26, + ACTIONS(7820), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -628656,10 +699588,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_RBRACK_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -628673,403 +699604,570 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [203353] = 6, + anon_sym_GT2, + [242998] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - STATE(7303), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, + ACTIONS(12971), 1, anon_sym_PIPE, + ACTIONS(12975), 1, anon_sym_AMP, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + ACTIONS(13123), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10982), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [243095] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(9433), 24, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13004), 1, anon_sym_COMMA, + ACTIONS(13125), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + STATE(11341), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243192] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12989), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12991), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(13127), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(11132), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, 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, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12967), 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(12969), 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, - [203453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [243289] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(8422), 28, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + ACTIONS(13129), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(11262), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [243386] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12904), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12906), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13131), 1, + anon_sym_RPAREN, + ACTIONS(13133), 1, + anon_sym_SEMI, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [203500] = 28, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [243483] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12991), 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(13135), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(9885), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + STATE(11335), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [203597] = 6, + [243580] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(12283), 1, + ACTIONS(11701), 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, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(9493), 26, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 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, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, anon_sym_LT_LT, + ACTIONS(12983), 1, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(12985), 1, anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12989), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12991), 1, 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, + ACTIONS(13137), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - STATE(5980), 2, + STATE(6528), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 9, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10815), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 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(9379), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [243677] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, anon_sym_LT_LT, + ACTIONS(12983), 1, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACK, + ACTIONS(12985), 1, anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12989), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12991), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(13139), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10829), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [203750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9407), 11, + ACTIONS(12961), 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(9409), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12973), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12993), 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, - [203797] = 6, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [243774] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(4960), 1, anon_sym_LBRACE, - ACTIONS(12279), 1, + ACTIONS(12947), 1, anon_sym_LPAREN2, - STATE(7347), 2, + STATE(8181), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9377), 11, + ACTIONS(9857), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -629081,7 +700179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9379), 24, + ACTIONS(9859), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -629106,744 +700204,917 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [203850] = 28, + [243827] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(12425), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13141), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(9694), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + STATE(10843), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [203947] = 7, + [243924] = 28, 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, + ACTIONS(11701), 1, anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(7092), 8, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(7097), 26, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, anon_sym_COMMA, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + ACTIONS(13143), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10865), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244021] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, anon_sym_LT_LT, + ACTIONS(12983), 1, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(12985), 1, anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12989), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12991), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(13145), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10878), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [204002] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12427), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9322), 11, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + [244118] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(9324), 26, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, 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(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, anon_sym_LT_LT, - anon_sym_LBRACK, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - anon_sym_or, + ACTIONS(12989), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12991), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(13147), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10892), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [204051] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(12059), 1, - anon_sym_LT, - STATE(7148), 1, - sym_template_argument_list, - ACTIONS(7085), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7090), 32, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12967), 2, 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, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_final, - anon_sym_override, - 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, + ACTIONS(12973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [244215] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(9383), 26, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, anon_sym_COMMA, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + ACTIONS(13149), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10907), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244312] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, anon_sym_LT_LT, + ACTIONS(12983), 1, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACK, + ACTIONS(12985), 1, anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + ACTIONS(13151), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10920), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12967), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12973), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [204157] = 16, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244409] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11936), 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(8598), 1, - sym__function_declarator_seq, - STATE(8857), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6586), 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, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, 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, - [204230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9415), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(12965), 1, anon_sym_SLASH, + ACTIONS(12971), 1, anon_sym_PIPE, + ACTIONS(12975), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9417), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + ACTIONS(13153), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10931), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244506] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + ACTIONS(13155), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10942), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12967), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12973), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12993), 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, - [204277] = 28, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244603] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12991), 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, + ACTIONS(13157), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(10108), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + STATE(10955), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [204374] = 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(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(8598), 1, - sym__function_declarator_seq, - STATE(8841), 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), 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, - [204447] = 16, + [244700] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11936), 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(8598), 1, - sym__function_declarator_seq, - STATE(8846), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6595), 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), 8, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, 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, - [204520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9419), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(12965), 1, anon_sym_SLASH, + ACTIONS(12971), 1, anon_sym_PIPE, + ACTIONS(12975), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9421), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + ACTIONS(13159), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10967), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244797] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + ACTIONS(13161), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(10972), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12967), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12973), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12993), 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, - [204567] = 28, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244894] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(12431), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13163), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(10113), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + STATE(10978), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [204664] = 28, + [244991] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12433), 1, - anon_sym_COMMA, - ACTIONS(12435), 1, - anon_sym_RBRACE, - STATE(3874), 1, + ACTIONS(13165), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(10118), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + STATE(10985), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [204761] = 3, + [245088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 11, + ACTIONS(9267), 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(9425), 28, + ACTIONS(9269), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -629854,8 +701125,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, @@ -629870,387 +701144,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [204808] = 28, + [245135] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12981), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12983), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12985), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12437), 1, + ACTIONS(13167), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(6528), 1, sym_argument_list, - STATE(5917), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(10128), 1, + STATE(10998), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12979), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [204905] = 28, + [245232] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12364), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(12370), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12439), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(13169), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(5920), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(10149), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(11333), 2, + STATE(11003), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [205002] = 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(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(8598), 1, - sym__function_declarator_seq, - STATE(8849), 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), 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, - [205075] = 16, + [245329] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - 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(8598), 1, - sym__function_declarator_seq, - STATE(8835), 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), 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, - [205148] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, + ACTIONS(7447), 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, + ACTIONS(7987), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - 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(8598), 1, - sym__function_declarator_seq, - STATE(8838), 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), 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, - [205274] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7444), 2, anon_sym_LPAREN2, - STATE(7365), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 11, + anon_sym_COLON_COLON, + ACTIONS(7449), 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(9383), 24, + ACTIONS(7454), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -630260,8 +701314,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, @@ -630274,82 +701331,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [205327] = 28, + [245384] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12421), 1, + ACTIONS(13004), 1, anon_sym_COMMA, - ACTIONS(12441), 1, + ACTIONS(13171), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(10197), 1, + STATE(11079), 1, aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [205424] = 4, + [245481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 17, + ACTIONS(9378), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -630358,16 +701412,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(9380), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -630381,62 +701427,33 @@ 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, + [245528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7201), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(13173), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13175), 2, 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_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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9389), 9, + anon_sym_and, + ACTIONS(9737), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -630446,14 +701463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9391), 30, + ACTIONS(9739), 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, @@ -630464,8 +701479,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -630477,285 +701490,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [205567] = 27, + [245579] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(4960), 1, + anon_sym_LBRACE, + ACTIONS(12947), 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, + STATE(8354), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9849), 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(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_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9851), 24, + 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(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, - 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(12309), 1, - anon_sym_COMMA, - ACTIONS(12447), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9792), 1, - aux_sym_argument_list_repeat1, - 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, + [245632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9925), 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, - [205759] = 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, + ACTIONS(9927), 30, 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(12449), 1, anon_sym_COMMA, - ACTIONS(12451), 1, - anon_sym_RBRACE, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9793), 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_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, - [205856] = 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_GT_EQ, anon_sym_LT_LT, - ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, - ACTIONS(12354), 1, - anon_sym_bitand, - ACTIONS(12453), 1, - anon_sym_GT2, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - STATE(9800), 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, - 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_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_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, - [205953] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [245679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 9, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(12939), 1, + anon_sym_LPAREN2, + STATE(8226), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9766), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -630765,10 +701601,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9335), 30, + ACTIONS(9768), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -630793,13 +701628,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, - [206000] = 3, + [245732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 9, + ACTIONS(9279), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -630809,7 +701641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9339), 30, + ACTIONS(9281), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -630840,86 +701672,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206047] = 28, + [245779] = 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(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(11194), 1, + sym_literal_suffix, + ACTIONS(5671), 17, + 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + 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(12421), 1, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(5663), 21, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(12455), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9837), 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_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, - [206144] = 6, + 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, + [245828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(4682), 1, anon_sym_LBRACE, - ACTIONS(12283), 1, + ACTIONS(12939), 1, anon_sym_LPAREN2, - STATE(7369), 2, + STATE(8270), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9377), 9, + ACTIONS(9832), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -630929,7 +701737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9379), 26, + ACTIONS(9834), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -630956,29 +701764,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [206197] = 3, + [245881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 18, + ACTIONS(9917), 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___attribute, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9919), 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, + [245928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9917), 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, - sym_literal_suffix, - ACTIONS(10564), 21, + ACTIONS(9919), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -630992,41 +701835,143 @@ 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, + [245975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(12059), 1, + ACTIONS(9935), 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, - STATE(6693), 1, - sym_template_argument_list, - ACTIONS(7371), 4, + anon_sym_DOT, + ACTIONS(9937), 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, + [246022] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(12539), 1, + anon_sym_decltype, + ACTIONS(13177), 1, + sym_auto, + STATE(8028), 1, + sym_decltype_auto, + ACTIONS(7361), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 25, anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5657), 32, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [246077] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12539), 1, + anon_sym_decltype, + ACTIONS(13177), 1, + sym_auto, + STATE(8028), 1, + sym_decltype_auto, + ACTIONS(7361), 11, 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_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 25, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -631040,17 +701985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [206297] = 3, + [246130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 9, + ACTIONS(3178), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631060,7 +702004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7791), 30, + ACTIONS(3176), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -631091,13 +702035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206344] = 4, + [246177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12457), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9322), 9, + ACTIONS(9703), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631107,13 +702048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9324), 28, + ACTIONS(9705), 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, @@ -631125,6 +702067,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, @@ -631136,10 +702079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206393] = 3, + [246224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 9, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, + anon_sym_LPAREN2, + STATE(6645), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9766), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631149,10 +702099,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9298), 30, + ACTIONS(9768), 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, + [246277] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(12939), 1, anon_sym_LPAREN2, + STATE(8291), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9849), 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(9851), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -631177,13 +702173,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [246330] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13175), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9853), 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(9855), 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, + 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_bitor, + anon_sym_xor, + anon_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, - [206440] = 3, + [246379] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, + anon_sym_LPAREN2, + STATE(6670), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9849), 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(9851), 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, + [246432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 9, + ACTIONS(9703), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631193,7 +702278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9310), 30, + ACTIONS(9705), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -631224,10 +702309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206487] = 3, + [246479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 9, + ACTIONS(3149), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631237,7 +702322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9318), 30, + ACTIONS(3147), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -631268,315 +702353,525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206534] = 28, + [246526] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + ACTIONS(13179), 1, + anon_sym_GT2, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + STATE(11055), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [246623] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12920), 1, + anon_sym_LBRACE, + STATE(7718), 1, + sym_enumerator_list, + STATE(8059), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7423), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + 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(7421), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [246678] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12309), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(12459), 1, + ACTIONS(13181), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9902), 1, + STATE(10832), 1, aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [206631] = 28, + [246775] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12461), 1, + ACTIONS(13183), 1, anon_sym_COMMA, - ACTIONS(12463), 1, + ACTIONS(13185), 1, anon_sym_RBRACE, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9903), 1, + STATE(10834), 1, aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [206728] = 28, + [246872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(11992), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + STATE(6754), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9857), 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(9859), 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, - ACTIONS(11323), 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, + [246925] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(13023), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12465), 1, - anon_sym_GT2, - STATE(5741), 1, + ACTIONS(13187), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - STATE(9907), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + STATE(11391), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [206825] = 28, + [247022] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1735), 1, + sym__fold_operator, + ACTIONS(13191), 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(13189), 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, + [247071] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12991), 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, + ACTIONS(13193), 1, + anon_sym_GT2, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(9925), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + STATE(10846), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [206922] = 3, + [247168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 9, + ACTIONS(13195), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13197), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9737), 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), 30, + ACTIONS(9739), 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_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, @@ -631587,11 +702882,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [247219] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6793), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6791), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [247266] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12920), 1, + anon_sym_LBRACE, + STATE(7722), 1, + sym_enumerator_list, + STATE(8072), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7419), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + 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(7417), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [247321] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13004), 1, + anon_sym_COMMA, + ACTIONS(13199), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + STATE(10918), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [247418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6813), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6811), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, anon_sym_requires, - [206969] = 3, + [247465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 9, + ACTIONS(7621), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631601,7 +703102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9363), 30, + ACTIONS(7623), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -631632,39 +703133,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207016] = 3, + [247512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 9, + ACTIONS(13197), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9853), 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(9367), 30, + ACTIONS(9855), 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, @@ -631675,11 +703176,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, - [207063] = 3, + [247561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 9, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(12939), 1, + anon_sym_LPAREN2, + STATE(8300), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9857), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631689,10 +703198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9371), 30, + ACTIONS(9859), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -631717,13 +703225,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, - [207110] = 3, + [247614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 9, + ACTIONS(9861), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631733,7 +703238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9375), 30, + ACTIONS(9863), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -631764,217 +703269,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207157] = 28, + [247661] = 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(9939), 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(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, + ACTIONS(9941), 30, 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(12471), 1, anon_sym_COMMA, - ACTIONS(12473), 1, - anon_sym_RBRACE, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9988), 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_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, - [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_GT_EQ, anon_sym_LT_LT, - ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, 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, - 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_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_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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [247708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 9, + ACTIONS(9865), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631984,7 +703326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8422), 30, + ACTIONS(9867), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632015,10 +703357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207495] = 3, + [247755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 9, + ACTIONS(9869), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632028,7 +703370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9409), 30, + ACTIONS(9871), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632059,10 +703401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207542] = 3, + [247802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 9, + ACTIONS(9888), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632072,7 +703414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9417), 30, + ACTIONS(9890), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632103,10 +703445,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207589] = 3, + [247849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 9, + ACTIONS(9329), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632116,7 +703458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9421), 30, + ACTIONS(9331), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632147,181 +703489,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207636] = 28, + [247896] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13023), 1, + anon_sym_COMMA, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 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, + ACTIONS(13201), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - STATE(10027), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + STATE(10858), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [207733] = 3, + [247993] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9425), 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, + ACTIONS(12898), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12904), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12906), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - 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, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + anon_sym_xor, + ACTIONS(12900), 2, 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, + ACTIONS(13000), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(12894), 3, 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, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 9, + ACTIONS(4960), 1, + anon_sym_LBRACE, + ACTIONS(12947), 1, + anon_sym_LPAREN2, + STATE(8191), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9766), 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), 30, + ACTIONS(9768), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -632329,11 +703658,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, @@ -632346,23 +703672,23 @@ 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, - [207876] = 3, + anon_sym_GT2, + [248141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 9, + ACTIONS(9939), 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(9437), 30, + ACTIONS(9941), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632373,11 +703699,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, @@ -632392,11 +703715,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, - [207923] = 3, + [248188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 9, + ACTIONS(8285), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632406,7 +703730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8915), 30, + ACTIONS(8287), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632437,10 +703761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207970] = 3, + [248235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 9, + ACTIONS(9707), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632450,7 +703774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9447), 30, + ACTIONS(9709), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632481,10 +703805,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [208017] = 3, + [248282] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 11, + ACTIONS(7447), 1, + anon_sym_LBRACE, + ACTIONS(7987), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7444), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7449), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632493,13 +703826,11 @@ 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_DOT, - ACTIONS(8907), 28, + ACTIONS(7454), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -632521,50 +703852,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_GT2, + [248337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7497), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7495), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [248386] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7497), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7495), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, + anon_sym_try, anon_sym_requires, - [208064] = 11, + [248435] = 3, 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, + ACTIONS(7497), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7495), 28, anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, + 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, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, + anon_sym_try, anon_sym_requires, - ACTIONS(7249), 8, - anon_sym_DOT_DOT_DOT, + [248482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6809), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(12209), 13, + anon_sym_LBRACK_COLON, + ACTIONS(6807), 28, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -632577,22 +704021,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [208127] = 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_try, + anon_sym_requires, + [248529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 11, + ACTIONS(9711), 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(9713), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632603,8 +704055,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,99 +704074,30 @@ 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, - 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(12309), 1, - anon_sym_COMMA, - ACTIONS(12483), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(10082), 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, - [208271] = 3, + [248576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6610), 35, + ACTIONS(6822), 11, 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6815), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -632725,118 +704111,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, + sym_identifier, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [208318] = 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(12485), 1, - anon_sym_GT2, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - STATE(10087), 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, - 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, - [208415] = 5, + [248623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12427), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12487), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9393), 11, + ACTIONS(9724), 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(9395), 24, + ACTIONS(9726), 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, @@ -632847,94 +704162,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [208466] = 28, + [248670] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(4960), 1, + anon_sym_LBRACE, + ACTIONS(12947), 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(12489), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(8189), 2, sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(10107), 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, - [208563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8950), 9, + sym_initializer_list, + ACTIONS(9832), 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(9834), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -632942,11 +704195,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, @@ -632959,44 +704209,39 @@ 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, - [208610] = 5, + anon_sym_GT2, + [248723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12457), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12491), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9393), 9, + ACTIONS(9943), 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(9395), 26, + ACTIONS(9945), 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, @@ -633007,11 +704252,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, - [208661] = 3, + [248770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 9, + ACTIONS(9728), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633021,7 +704267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8956), 30, + ACTIONS(9730), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633052,200 +704298,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [208708] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9184), 1, - sym_identifier, - ACTIONS(9194), 1, - sym_primitive_type, - STATE(4039), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6707), 1, - sym_alignas_qualifier, - ACTIONS(12157), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9189), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7207), 6, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7205), 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(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, - [208771] = 28, + [248817] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12309), 1, + ACTIONS(13004), 1, anon_sym_COMMA, - ACTIONS(12493), 1, + ACTIONS(13203), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(10155), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + STATE(10896), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 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, - [208868] = 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, + ACTIONS(12900), 2, 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(12495), 1, - anon_sym_GT2, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - STATE(10159), 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, - 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, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12896), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [208965] = 3, + [248914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 9, + ACTIONS(9329), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633255,7 +704380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8994), 30, + ACTIONS(9331), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633286,10 +704411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209012] = 3, + [248961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 9, + ACTIONS(9329), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633299,7 +704424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8994), 30, + ACTIONS(9331), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633330,20 +704455,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209059] = 3, + [249008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 9, + ACTIONS(7472), 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(8994), 30, + ACTIONS(7474), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633354,11 +704481,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, @@ -633373,23 +704497,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [209106] = 3, + [249055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 11, + ACTIONS(9336), 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(8915), 28, + ACTIONS(9338), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633400,8 +704523,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, @@ -633416,162 +704542,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [209153] = 28, + [249102] = 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(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(9845), 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_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(12497), 1, - anon_sym_GT2, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - STATE(9936), 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9847), 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, - [209250] = 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, - ACTIONS(12354), 1, - anon_sym_bitand, - ACTIONS(12499), 1, - anon_sym_GT2, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - STATE(9664), 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, - 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_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_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, - [209347] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [249149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 11, + ACTIONS(9943), 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(9945), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633582,8 +704611,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,22 +704630,23 @@ 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, + [249196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 9, + ACTIONS(9892), 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(8887), 30, + ACTIONS(9894), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633624,11 +704657,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, @@ -633643,11 +704673,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, - [209441] = 3, + [249243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 9, + ACTIONS(9816), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633657,7 +704688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8911), 30, + ACTIONS(9818), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633688,75 +704719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209488] = 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(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(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_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, + [249290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 9, + ACTIONS(9292), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633766,7 +704732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8923), 30, + ACTIONS(9294), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633797,606 +704763,667 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209624] = 28, + [249337] = 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(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5657), 1, + anon_sym_typename, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(12929), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12933), 1, + anon_sym_EQ, + ACTIONS(13205), 1, + sym_identifier, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4255), 1, + sym_type_specifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4770), 1, + sym_splice_specifier, + STATE(9769), 1, + sym__scope_resolution, + ACTIONS(12931), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [249434] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12892), 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(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12501), 1, - anon_sym_GT2, - STATE(5741), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13017), 1, + anon_sym_COMMA, + ACTIONS(13207), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9689), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + STATE(11076), 1, + aux_sym_argument_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 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, - [209721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8946), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(8948), 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, - [209768] = 28, + [249531] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12892), 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(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12503), 1, - anon_sym_GT2, - STATE(5741), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13209), 1, + anon_sym_COMMA, + ACTIONS(13211), 1, + anon_sym_RBRACE, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9702), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + STATE(11082), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12896), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209865] = 28, + [249628] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12892), 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(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12505), 1, - anon_sym_GT2, - STATE(5741), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(12953), 1, + anon_sym_SEMI, + ACTIONS(13213), 1, + anon_sym_COMMA, + ACTIONS(13216), 1, + anon_sym_RBRACE, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9721), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12896), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209962] = 28, + [249725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(6831), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11319), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6829), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(11323), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [249772] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12981), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12983), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12985), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12507), 1, + ACTIONS(13218), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(6528), 1, sym_argument_list, - STATE(5917), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(9736), 1, + STATE(10992), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12979), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210059] = 28, + [249869] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12981), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12983), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, - anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12509), 1, - anon_sym_GT2, - STATE(5741), 1, + STATE(6528), 1, sym_argument_list, - STATE(5917), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(9746), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(11055), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(12979), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210156] = 28, + [249957] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12892), 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(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12511), 1, - anon_sym_GT2, - STATE(5741), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9757), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13216), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12896), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210253] = 28, + [250049] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12892), 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(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12513), 1, - anon_sym_GT2, - STATE(5741), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9770), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12896), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210350] = 28, + [250141] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12892), 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(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12515), 1, - anon_sym_GT2, - STATE(5741), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9780), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13220), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12896), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210447] = 3, + [250233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 9, + ACTIONS(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9614), 1, + anon_sym_LPAREN2, + ACTIONS(9620), 1, + anon_sym_LBRACK, + ACTIONS(5671), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -634406,10 +705433,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8998), 30, + ACTIONS(5663), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -634420,8 +705446,8 @@ 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_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -634434,1216 +705460,1238 @@ 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, - [210494] = 3, + [250285] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12786), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [250377] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(9013), 30, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11059), 2, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250469] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, + anon_sym_SLASH, + ACTIONS(13234), 1, + anon_sym_PIPE, + ACTIONS(13238), 1, + anon_sym_AMP, + ACTIONS(13244), 1, + anon_sym_GT_EQ, + ACTIONS(13248), 1, + anon_sym_COLON, + ACTIONS(13250), 1, anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(13254), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(13256), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [210541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9000), 9, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13226), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13230), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13232), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13236), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13240), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13242), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250563] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13258), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [250657] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(9002), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(12186), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13260), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12900), 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, + ACTIONS(12894), 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, - [210588] = 28, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250751] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12186), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12892), 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(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12517), 1, - anon_sym_GT2, - STATE(5741), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13262), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9788), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12896), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210685] = 28, + [250845] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12186), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12892), 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(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12519), 1, - anon_sym_GT2, - STATE(5741), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13264), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9795), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12896), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210782] = 28, + [250939] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9651), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10121), 1, + anon_sym_STAR, + ACTIONS(10123), 1, + anon_sym_AMP_AMP, + ACTIONS(10125), 1, + anon_sym_AMP, + ACTIONS(10127), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5489), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9619), 1, + sym__scope_resolution, + STATE(9744), 1, + sym__abstract_declarator, + ACTIONS(7862), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + ACTIONS(7864), 7, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [251021] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12981), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12983), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12985), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12521), 1, - anon_sym_GT2, - STATE(5741), 1, + STATE(6528), 1, sym_argument_list, - STATE(5917), 1, + STATE(6529), 1, sym_subscript_argument_list, - STATE(9804), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13266), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12979), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210879] = 3, + [251113] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(8895), 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, + ACTIONS(12898), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12904), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12906), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13268), 1, + anon_sym_SEMI, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [210926] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8901), 9, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 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(8903), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12900), 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, + ACTIONS(12894), 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, - [210973] = 28, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [251207] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(12523), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13270), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(10074), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [211070] = 6, + [251301] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(12283), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - STATE(7212), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12965), 1, anon_sym_SLASH, + ACTIONS(12971), 1, anon_sym_PIPE, + ACTIONS(12975), 1, 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, + ACTIONS(12981), 1, anon_sym_LT_LT, + ACTIONS(12983), 1, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(12985), 1, anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12989), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12991), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [211123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8942), 9, + ACTIONS(12961), 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(8944), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12973), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12993), 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, - [211170] = 28, + ACTIONS(13272), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [251393] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12293), 1, - anon_sym_SEMI, - ACTIONS(12525), 1, - anon_sym_COMMA, - ACTIONS(12528), 1, - anon_sym_RBRACE, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(11063), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [211267] = 28, + [251481] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 1, 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, + ACTIONS(13274), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [211364] = 28, + [251575] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12295), 1, - anon_sym_RBRACE, - ACTIONS(12535), 1, - anon_sym_COMMA, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - STATE(9672), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [211461] = 28, + ACTIONS(11047), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [251663] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12364), 1, - anon_sym_COMMA, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12537), 1, - anon_sym_RBRACK, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - STATE(9816), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13276), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [211558] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7291), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7293), 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, - [211607] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7291), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7293), 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, - [211656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7301), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7303), 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, - [211703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6594), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6601), 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, - [211750] = 28, + [251755] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(12539), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - STATE(9866), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(10339), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 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, - [211847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9296), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9298), 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, - [211894] = 28, + [251847] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 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, + ACTIONS(13278), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(9872), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [211991] = 3, + [251941] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 11, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13029), 1, + anon_sym_SLASH, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10066), 7, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, anon_sym_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), 28, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -635652,33 +706700,37 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [212038] = 3, + [252005] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 11, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10066), 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(9310), 28, + ACTIONS(10068), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -635686,8 +706738,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, @@ -635696,775 +706750,601 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [212085] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(12317), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7001), 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(6999), 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, - [212136] = 3, + [252065] = 23, 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(11631), 1, 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, + ACTIONS(11974), 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_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [212183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9389), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, + ACTIONS(13035), 1, anon_sym_PIPE, + ACTIONS(13039), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(13045), 1, 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, - anon_sym_LPAREN2, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, + anon_sym_bitand, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(13033), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_not_eq, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + 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_requires, - [212230] = 28, + [252151] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(13039), 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(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12545), 1, - anon_sym_GT2, - STATE(5741), 1, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - STATE(9897), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13027), 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(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [212327] = 28, + ACTIONS(10068), 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, + [252235] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(11417), 1, + ACTIONS(12186), 1, anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12547), 1, - anon_sym_RPAREN, - ACTIONS(12549), 1, + ACTIONS(13133), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [212424] = 6, + [252329] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, + ACTIONS(10066), 1, + anon_sym_PIPE, + ACTIONS(11631), 1, anon_sym_LPAREN2, - STATE(6023), 2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13029), 1, + anon_sym_SLASH, + ACTIONS(13039), 1, + anon_sym_AMP, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13057), 1, + anon_sym_bitand, + STATE(6609), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 9, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 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(9493), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13037), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(13047), 2, 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, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [212477] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6989), 1, - sym_auto, - ACTIONS(6991), 1, - anon_sym_decltype, - ACTIONS(12551), 1, - anon_sym_LT, - STATE(4015), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4054), 1, - sym_template_argument_list, - STATE(4458), 1, - sym_decltype_auto, - ACTIONS(5636), 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(5643), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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, + ACTIONS(13041), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9363), 28, + ACTIONS(10068), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [212587] = 3, + [252411] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10066), 1, + anon_sym_PIPE, + ACTIONS(11631), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(11974), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3128), 28, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13029), 1, + anon_sym_SLASH, + ACTIONS(13039), 1, 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, - [212634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9333), 11, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13057), 1, + anon_sym_bitand, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9335), 28, + ACTIONS(10068), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [212681] = 3, + [252491] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(10066), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9339), 28, + ACTIONS(10068), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [212728] = 3, + [252567] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11631), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(11974), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7077), 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, - [212775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(10066), 2, anon_sym_PIPE, anon_sym_AMP, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(3161), 30, + ACTIONS(10068), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_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, - [212822] = 3, + [252641] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(3153), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13280), 1, + anon_sym_SEMI, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12900), 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, + ACTIONS(12894), 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, - [212869] = 6, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [252735] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - STATE(7230), 2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13029), 1, + anon_sym_SLASH, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + STATE(6609), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 11, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10066), 5, anon_sym_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(9493), 24, + ACTIONS(10068), 16, 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_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [212922] = 7, + [252805] = 13, 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, + ACTIONS(11631), 1, anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(7092), 10, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13029), 1, + anon_sym_SLASH, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10066), 5, 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(7097), 24, + anon_sym_LT, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -636473,39 +707353,52 @@ 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, - [212977] = 3, + [252871] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 11, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13029), 1, + anon_sym_SLASH, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10066), 5, anon_sym_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, + ACTIONS(10068), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_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_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -636514,33 +707407,30 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [213024] = 3, + [252939] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 11, + ACTIONS(12912), 1, + anon_sym_LPAREN2, + ACTIONS(12914), 1, + anon_sym_LBRACK, + STATE(2460), 1, + sym_parameter_list, + STATE(7519), 1, + sym__function_declarator_seq, + ACTIONS(9792), 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(9367), 28, + ACTIONS(9794), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -636548,8 +707438,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, @@ -636562,29 +707454,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, - [213071] = 3, + [252993] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 11, + ACTIONS(12912), 1, + anon_sym_LPAREN2, + ACTIONS(12914), 1, + anon_sym_LBRACK, + STATE(2460), 1, + sym_parameter_list, + STATE(7519), 1, + sym__function_declarator_seq, + ACTIONS(9796), 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(9371), 28, + ACTIONS(9798), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -636592,8 +707485,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, @@ -636606,14 +707501,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, - [213118] = 3, + [253047] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 11, + ACTIONS(12908), 1, + anon_sym_LPAREN2, + ACTIONS(12910), 1, + anon_sym_LBRACK, + STATE(2449), 1, + sym_parameter_list, + STATE(7416), 1, + sym__function_declarator_seq, + ACTIONS(9792), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -636625,10 +707524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9375), 28, + ACTIONS(9794), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -636637,7 +707535,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,605 +707547,141 @@ 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, - 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, - 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, - [213353] = 28, + [253101] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 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, + ACTIONS(13282), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - STATE(10084), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 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, - [213450] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9707), 1, - anon_sym_PIPE, - 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(12380), 1, - anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - 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(12388), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [213530] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7353), 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(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, - 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(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, + [253195] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(12908), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(12910), 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(2449), 1, sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, + STATE(7416), 1, sym__function_declarator_seq, - STATE(8895), 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), 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, - [213748] = 16, - 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(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(9796), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - 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, - ACTIONS(9709), 15, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9798), 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, - [213820] = 13, + [253249] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12328), 1, - anon_sym_SLASH, - STATE(5741), 1, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11990), 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(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 7, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(9709), 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, - [213886] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12257), 1, - anon_sym_LPAREN2, - ACTIONS(12259), 1, - anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10190), 9, + ACTIONS(10113), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -637257,8 +707690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(10188), 25, + ACTIONS(10115), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -637280,513 +707712,459 @@ 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, - [213940] = 27, + [253309] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12557), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13284), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214034] = 24, + [253401] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13286), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(13041), 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(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [253493] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12949), 1, + anon_sym_LBRACK, + STATE(7973), 1, + sym_new_declarator, + ACTIONS(10004), 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, - [214122] = 27, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10006), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, + [253543] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12559), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 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, - [214216] = 15, - 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, - 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(12324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12326), 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, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 16, + ACTIONS(11055), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [214286] = 27, + [253631] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(12186), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12587), 1, - anon_sym_COLON, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13288), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214380] = 26, + [253725] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(10491), 2, + ACTIONS(11059), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214472] = 7, + [253817] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - STATE(2249), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10186), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, + ACTIONS(13234), 1, anon_sym_PIPE, + ACTIONS(13238), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(13244), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(10184), 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, + ACTIONS(13250), 1, anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(13254), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(13256), 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, - [214526] = 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(13290), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12356), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9673), 10, + ACTIONS(13224), 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(9675), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(13230), 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(13232), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(13236), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(13246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13240), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_GT2, - [214586] = 10, + ACTIONS(13242), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [253911] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(12908), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(12910), 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(9677), 10, + STATE(2449), 1, + sym_parameter_list, + STATE(7416), 1, + sym__function_declarator_seq, + ACTIONS(9800), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -637797,7 +708175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(9679), 19, + anon_sym_DOT, + ACTIONS(9802), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -637816,644 +708195,567 @@ 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, - [214646] = 27, + [253965] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12597), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214740] = 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(8936), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6883), 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), 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, - [214812] = 26, + ACTIONS(11063), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [254053] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(13292), 1, + anon_sym_COMMA, + ACTIONS(13294), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12443), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214904] = 7, + [254147] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - STATE(2249), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10190), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12898), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(10188), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13296), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [214958] = 27, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [254241] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(12186), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12599), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13298), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [215052] = 7, + [254335] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(10050), 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, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(10192), 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, + ACTIONS(12898), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12904), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12906), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13300), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [215106] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7393), 1, - anon_sym___attribute, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11838), 1, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, - ACTIONS(11840), 1, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, 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(8907), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6906), 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_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, - [215180] = 27, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [254429] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(11417), 1, + ACTIONS(12186), 1, anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12601), 1, + ACTIONS(13302), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [215274] = 7, + [254523] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - STATE(2249), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10194), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, + ACTIONS(13035), 1, anon_sym_PIPE, + ACTIONS(13039), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(13045), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(10192), 23, - anon_sym_DOT_DOT_DOT, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, + anon_sym_bitand, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11067), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(13031), 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(13033), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(13037), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [215328] = 7, + ACTIONS(13041), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [254615] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10174), 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(12200), 1, anon_sym_DOT, - ACTIONS(10172), 25, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(13222), 1, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(13228), 1, + anon_sym_SLASH, + ACTIONS(13234), 1, + anon_sym_PIPE, + ACTIONS(13238), 1, + anon_sym_AMP, + ACTIONS(13244), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, + ACTIONS(13250), 1, anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(13254), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(13256), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(13304), 1, + anon_sym_COLON, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [215382] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12257), 1, - anon_sym_LPAREN2, - ACTIONS(12259), 1, - anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10198), 9, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 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(10196), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13232), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13236), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(13246), 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(13240), 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, - [215436] = 7, + ACTIONS(13242), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [254709] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(12908), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12910), 1, anon_sym_LBRACK, - STATE(2267), 1, + STATE(2449), 1, sym_parameter_list, - STATE(6617), 1, + STATE(7416), 1, sym__function_declarator_seq, - ACTIONS(10202), 9, + ACTIONS(9804), 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(10200), 25, + ACTIONS(9806), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -638463,10 +708765,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, @@ -638479,26 +708778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [215490] = 10, + anon_sym_GT2, + [254763] = 4, 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(9715), 8, + ACTIONS(6822), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6824), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -638507,9 +708794,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9717), 21, + anon_sym_DOT, + ACTIONS(6817), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -638520,6 +708809,7 @@ 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, @@ -638529,75 +708819,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [215550] = 22, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [254811] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12981), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12983), 1, anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12991), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(6528), 1, sym_argument_list, - STATE(5917), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11067), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12336), 2, + ACTIONS(12967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12979), 4, 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, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_GT2, - [215634] = 4, + [254903] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 9, + ACTIONS(12912), 1, + anon_sym_LPAREN2, + ACTIONS(12914), 1, + anon_sym_LBRACK, + STATE(2460), 1, + sym_parameter_list, + STATE(7519), 1, + sym__function_declarator_seq, + ACTIONS(9800), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -638607,10 +708910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6596), 27, + ACTIONS(9802), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -638621,7 +708923,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 +708936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [215682] = 10, + [254957] = 4, 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(9707), 10, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7359), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -638665,9 +708952,11 @@ 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(7361), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -638676,6 +708965,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -638684,493 +708975,580 @@ 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, - [215742] = 26, + [255005] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12603), 2, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13306), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(12241), 3, + anon_sym_GT2, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [215834] = 27, + [255097] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12957), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12985), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12605), 1, - anon_sym_COLON, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13306), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [215928] = 24, + [255189] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9875), 1, + anon_sym_LBRACE, + ACTIONS(13308), 1, + anon_sym_COLON, + STATE(4049), 1, + sym__enum_base_clause, + STATE(4401), 1, + sym_enumerator_list, + STATE(4499), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7392), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11319), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7390), 23, + anon_sym_AMP, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(11323), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [255247] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(13332), 1, + anon_sym_GT_EQ, + ACTIONS(13336), 1, + anon_sym_QMARK, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(13342), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13310), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(13320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13334), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10475), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(12342), 4, + ACTIONS(13330), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [216016] = 26, + [255339] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9875), 1, + anon_sym_LBRACE, + ACTIONS(13308), 1, + anon_sym_COLON, + STATE(4053), 1, + sym__enum_base_clause, + STATE(4357), 1, + sym_enumerator_list, + STATE(4556), 1, + sym_attribute_specifier, + ACTIONS(9570), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7415), 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7413), 23, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [255397] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12613), 1, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12633), 1, + ACTIONS(13250), 1, anon_sym_QMARK, - ACTIONS(12635), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13256), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(13344), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12607), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - ACTIONS(12609), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216108] = 27, + [255491] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(11417), 1, + ACTIONS(12186), 1, anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12641), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13346), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216202] = 27, + [255585] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12912), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12914), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + STATE(2460), 1, + sym_parameter_list, + STATE(7519), 1, + sym__function_declarator_seq, + ACTIONS(9804), 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(9806), 25, 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_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, + [255639] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12643), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13071), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 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, + [255731] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(12844), 1, anon_sym_LT, - STATE(3552), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3735), 1, + STATE(4159), 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, + ACTIONS(6781), 8, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6774), 27, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -639184,289 +709562,359 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, anon_sym_requires, - [216426] = 17, + [255783] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(12908), 1, anon_sym_LPAREN2, - ACTIONS(7347), 1, - anon_sym___attribute, - ACTIONS(11793), 1, + ACTIONS(12910), 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, + STATE(2449), 1, sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, + STATE(7416), 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, + ACTIONS(9774), 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(9776), 23, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, + anon_sym_STAR, + anon_sym_PERCENT, + anon_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, - 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, + [255837] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12645), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13348), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216594] = 27, + [255931] = 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(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(7814), 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(7816), 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_COLON_COLON, + anon_sym_LBRACE, + 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(12647), 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [255977] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12908), 1, + anon_sym_LPAREN2, + ACTIONS(12910), 1, + anon_sym_LBRACK, + STATE(2449), 1, + sym_parameter_list, + STATE(7416), 1, + sym__function_declarator_seq, + ACTIONS(9780), 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(9782), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [256031] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12908), 1, + anon_sym_LPAREN2, + ACTIONS(12910), 1, + anon_sym_LBRACK, + STATE(2449), 1, + sym_parameter_list, + STATE(7416), 1, + sym__function_declarator_seq, + ACTIONS(9784), 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, - [216688] = 27, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9786), 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, + [256085] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(13222), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(13250), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12649), 1, + ACTIONS(13350), 1, anon_sym_COLON, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216782] = 4, + [256179] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 11, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10178), 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(6596), 25, + ACTIONS(10180), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -639474,8 +709922,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, @@ -639486,157 +709936,137 @@ 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, - [216830] = 27, + [256237] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12651), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216924] = 24, + ACTIONS(11077), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [256325] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(12908), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(12910), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(12328), 1, + STATE(2449), 1, + sym_parameter_list, + STATE(7416), 1, + sym__function_declarator_seq, + ACTIONS(9788), 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(12350), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, - ACTIONS(12354), 1, - anon_sym_bitand, - 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(12324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12326), 2, + anon_sym_DOT, + ACTIONS(9790), 23, + 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_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(10487), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_LT_LT, anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(12342), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [217012] = 9, + [256379] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9657), 8, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10082), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -639645,7 +710075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9659), 23, + ACTIONS(10084), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -639667,20 +710097,26 @@ 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, - [217070] = 7, + [256439] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10206), 9, + ACTIONS(11988), 1, + anon_sym_DOT, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10086), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -639689,8 +710125,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(10088), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -639712,360 +710147,338 @@ 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, - [217124] = 27, + [256499] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12653), 1, - anon_sym_COLON, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217218] = 23, + ACTIONS(11081), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [256587] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_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(12350), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, - ACTIONS(12354), 1, - anon_sym_bitand, - STATE(5741), 1, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(10046), 8, 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, + ACTIONS(10048), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12332), 2, + anon_sym_PIPE_PIPE, 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, - ACTIONS(9709), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_GT2, - [217304] = 24, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [256645] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 4, + ACTIONS(10103), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_QMARK, - [217392] = 26, + [256733] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12892), 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(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5741), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13352), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12655), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(12340), 3, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12896), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [217484] = 26, + [256827] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12655), 2, + ACTIONS(13286), 2, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(12340), 3, + anon_sym_RBRACK, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [217576] = 7, + [256919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(12912), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(12914), 1, anon_sym_LBRACK, - STATE(2249), 1, + STATE(2460), 1, sym_parameter_list, - STATE(6557), 1, + STATE(7519), 1, sym__function_declarator_seq, - ACTIONS(10202), 11, + ACTIONS(9774), 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(9776), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -640075,7 +710488,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, @@ -640088,411 +710504,477 @@ 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, + [256973] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8790), 1, + anon_sym_LBRACE, + ACTIONS(13354), 1, + anon_sym_COLON, + STATE(2945), 1, + sym__enum_base_clause, + STATE(2977), 1, + sym_enumerator_list, + STATE(3231), 1, + sym_attribute_specifier, + ACTIONS(8716), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7415), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(7413), 23, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [257031] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(13356), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12655), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217722] = 26, + [257125] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(13358), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12655), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217814] = 24, + [257219] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13272), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12896), 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_RBRACK, - anon_sym_QMARK, - [217902] = 10, + [257311] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - STATE(5875), 1, + ACTIONS(13316), 1, + anon_sym_SLASH, + ACTIONS(13322), 1, + anon_sym_PIPE, + ACTIONS(13326), 1, + anon_sym_AMP, + ACTIONS(13332), 1, + anon_sym_GT_EQ, + ACTIONS(13338), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13340), 1, + anon_sym_bitor, + ACTIONS(13342), 1, + anon_sym_bitand, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12400), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9673), 8, + ACTIONS(13312), 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(9675), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13320), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13324), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(13334), 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(13328), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [217962] = 26, + ACTIONS(13330), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(11047), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [257399] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12633), 1, + ACTIONS(13336), 1, anon_sym_QMARK, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13342), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9828), 2, + ACTIONS(10339), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(13320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [218054] = 27, + [257491] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12657), 1, + ACTIONS(13360), 1, anon_sym_COMMA, - ACTIONS(12659), 1, + ACTIONS(13362), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [218148] = 12, + [257585] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 7, + ACTIONS(10066), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -640500,7 +710982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640520,123 +711002,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [218212] = 23, + [257649] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13342), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12617), 2, + ACTIONS(13320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 6, + ACTIONS(10068), 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, + [257735] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13342), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12621), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 8, + ACTIONS(10068), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640645,58 +711127,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_or, anon_sym_and, - [218382] = 21, + [257819] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(9707), 1, + ACTIONS(10066), 1, anon_sym_PIPE, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12623), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12639), 1, + ACTIONS(13342), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12621), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 9, + ACTIONS(10068), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640706,55 +711188,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, - [218464] = 20, + [257901] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(9707), 1, + ACTIONS(10066), 1, anon_sym_PIPE, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12623), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12639), 1, + ACTIONS(13342), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 11, + ACTIONS(10068), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640766,52 +711248,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_xor, - [218544] = 18, + [257981] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 2, + ACTIONS(10066), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 12, + ACTIONS(10068), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640824,48 +711306,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [218620] = 17, + [258057] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 2, + ACTIONS(10066), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 15, + ACTIONS(10068), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640881,45 +711363,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [218694] = 15, + [258131] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 5, + ACTIONS(10066), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 16, + ACTIONS(10068), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640936,40 +711418,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [218764] = 13, + [258201] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 5, + ACTIONS(10066), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640989,110 +711471,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [218830] = 27, + [258267] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(13222), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(13250), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12661), 1, + ACTIONS(13364), 1, anon_sym_COLON, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [218924] = 14, + [258361] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 5, + ACTIONS(10066), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 17, + ACTIONS(10068), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -641110,451 +711592,1154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [218992] = 24, + [258429] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13342), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(13320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 4, + ACTIONS(11055), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [219080] = 26, + [258517] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12633), 1, + ACTIONS(13336), 1, anon_sym_QMARK, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13342), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10479), 2, + ACTIONS(11059), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(13320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219172] = 24, + [258609] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13342), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(13320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 4, + ACTIONS(11063), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [219260] = 26, + [258697] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12613), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12633), 1, + ACTIONS(13336), 1, anon_sym_QMARK, - ACTIONS(12635), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13342), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10491), 2, + ACTIONS(11067), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(13320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219352] = 5, + [258789] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(12285), 1, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, anon_sym_LBRACK, - STATE(6940), 1, - sym_new_declarator, - ACTIONS(9535), 9, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, + anon_sym_SLASH, + ACTIONS(13035), 1, + anon_sym_PIPE, + ACTIONS(13039), 1, + anon_sym_AMP, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, + anon_sym_bitand, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12122), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(13025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13031), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [258881] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + 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, + ACTIONS(10180), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [258939] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12912), 1, + anon_sym_LPAREN2, + ACTIONS(12914), 1, + anon_sym_LBRACK, + STATE(2460), 1, + sym_parameter_list, + STATE(7519), 1, + sym__function_declarator_seq, + ACTIONS(9784), 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(9786), 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, + [258993] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11077), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [259081] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13366), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [259173] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8035), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7576), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7574), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [259223] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10082), 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(10084), 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, + [259283] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8040), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7580), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7578), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [259333] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10086), 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(10088), 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, + [259393] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13368), 1, + anon_sym_SEMI, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + [259487] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(9537), 27, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, + anon_sym_SLASH, + ACTIONS(13234), 1, + anon_sym_PIPE, + ACTIONS(13238), 1, + anon_sym_AMP, + ACTIONS(13244), 1, + anon_sym_GT_EQ, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13254), 1, + anon_sym_bitor, + ACTIONS(13256), 1, + anon_sym_bitand, + ACTIONS(13370), 1, + anon_sym_COLON, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13226), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13230), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13232), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13236), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13240), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13242), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [259581] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8052), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7678), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7676), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [259631] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8057), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7619), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7617), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [259681] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8062), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7694), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7692), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [259731] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8065), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7704), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_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, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7702), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [259781] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11944), 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, + ACTIONS(12965), 1, anon_sym_SLASH, + ACTIONS(12971), 1, anon_sym_PIPE, + ACTIONS(12975), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9679), 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, + ACTIONS(12981), 1, anon_sym_LT_LT, + ACTIONS(12983), 1, 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, - 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(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12991), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6528), 1, sym_argument_list, - STATE(5920), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12977), 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(10544), 4, + ACTIONS(11081), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_QMARK, - [219550] = 9, + anon_sym_GT2, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [259869] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11944), 1, anon_sym_DOT, - STATE(5875), 1, + STATE(6528), 1, sym_argument_list, - STATE(5920), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9681), 8, + ACTIONS(10046), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9683), 23, + anon_sym_GT_GT, + ACTIONS(10048), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -641564,10 +712749,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, @@ -641578,540 +712760,631 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [219608] = 27, + anon_sym_GT2, + [259927] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8071), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7636), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7634), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [259977] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12663), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13372), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219702] = 26, + [260071] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13374), 1, + anon_sym_COMMA, + ACTIONS(13376), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 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(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219794] = 27, + [260165] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(13222), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(13250), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12667), 1, + ACTIONS(13378), 1, anon_sym_COLON, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219888] = 27, + [260259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + STATE(8073), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7674), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7672), 24, + anon_sym_AMP, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(11417), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [260309] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8074), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7682), 11, 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(12669), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, 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_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7680), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [260359] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8076), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7690), 11, + 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, - [219982] = 24, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7688), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [260409] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12991), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6528), 1, sym_argument_list, - STATE(5920), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12977), 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, + ACTIONS(10103), 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, - 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(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_GT2, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [220162] = 6, + [260497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, + STATE(8080), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7708), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7706), 24, 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___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [260547] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8081), 1, + sym_attribute_specifier, + ACTIONS(12871), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7572), 11, 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7570), 24, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [260597] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12673), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13380), 1, + anon_sym_COMMA, + ACTIONS(13382), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220308] = 7, + [260691] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(12912), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(12914), 1, anon_sym_LBRACK, - STATE(2249), 1, + STATE(2460), 1, sym_parameter_list, - STATE(6557), 1, + STATE(7519), 1, sym__function_declarator_seq, - ACTIONS(10174), 11, + ACTIONS(9788), 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(10172), 23, + ACTIONS(9790), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -642121,7 +713394,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, @@ -642134,149 +713410,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [220362] = 26, + [260745] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13384), 1, + anon_sym_COMMA, + ACTIONS(13386), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11634), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220454] = 24, + [260839] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13388), 1, + anon_sym_COMMA, + ACTIONS(13390), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 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, + [260933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, - anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12941), 1, anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10186), 9, + STATE(8089), 1, + sym_new_declarator, + ACTIONS(10004), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -642286,9 +713561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10184), 25, + ACTIONS(10006), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -642299,6 +713575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACE, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -642312,693 +713589,731 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [220596] = 27, + [260983] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12675), 1, + ACTIONS(13392), 1, anon_sym_COMMA, - ACTIONS(12677), 1, + ACTIONS(13394), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220690] = 27, + [261077] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(12186), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12679), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(12953), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220784] = 26, + [261171] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8790), 1, + anon_sym_LBRACE, + ACTIONS(13354), 1, + anon_sym_COLON, + STATE(2938), 1, + sym__enum_base_clause, + STATE(3126), 1, + sym_enumerator_list, + STATE(3283), 1, + sym_attribute_specifier, + ACTIONS(8716), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7392), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(7390), 23, + anon_sym_AMP, + anon_sym___extension__, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [261229] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12682), 1, + anon_sym_LT, + STATE(3095), 1, + sym_template_argument_list, + ACTIONS(6781), 8, + 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_COLON, + ACTIONS(6774), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [261281] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12991), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11047), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [261369] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12957), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12971), 1, + anon_sym_PIPE, + ACTIONS(12975), 1, + anon_sym_AMP, + ACTIONS(12981), 1, anon_sym_LT_LT, + ACTIONS(12983), 1, anon_sym_GT_GT, - ACTIONS(12528), 2, + ACTIONS(12985), 1, + anon_sym_QMARK, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12989), 1, + anon_sym_bitor, + ACTIONS(12991), 1, + anon_sym_bitand, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(10339), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12241), 3, + anon_sym_GT2, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12969), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [220876] = 26, + [261461] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13342), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12533), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12241), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220968] = 26, + ACTIONS(11077), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [261549] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13342), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12681), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12241), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13330), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221060] = 27, + ACTIONS(11081), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [261637] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13316), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13322), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13326), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13332), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13338), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13340), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13342), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12683), 1, - anon_sym_COMMA, - ACTIONS(12685), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13312), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13314), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13320), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13324), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13334), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13328), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13330), 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, + ACTIONS(10103), 4, + anon_sym_DOT_DOT_DOT, 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, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [261725] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12013), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221320] = 27, + ACTIONS(11047), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [261813] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12687), 1, - anon_sym_COMMA, - ACTIONS(12689), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10339), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 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, + [261905] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(12200), 1, anon_sym_DOT, - STATE(5741), 1, + ACTIONS(13228), 1, + anon_sym_SLASH, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12356), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9715), 10, + ACTIONS(13226), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10066), 7, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, 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(9717), 19, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -643007,139 +714322,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [221548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7291), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7293), 35, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [221594] = 26, + [261969] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(12200), 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, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(12202), 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(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12691), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - 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, - [221686] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12281), 1, - anon_sym_LBRACK, - STATE(7175), 1, - sym_new_declarator, - ACTIONS(9535), 11, + ACTIONS(10066), 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(9537), 25, + ACTIONS(10068), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -643147,8 +714360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -643157,421 +714372,406 @@ 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, - [221736] = 21, + [262029] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12338), 1, + ACTIONS(13234), 1, + anon_sym_PIPE, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(13244), 1, + anon_sym_GT_EQ, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12354), 1, + ACTIONS(13254), 1, + anon_sym_bitor, + ACTIONS(13256), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12336), 2, + ACTIONS(13232), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(13242), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 9, + ACTIONS(10068), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_COLON, anon_sym_QMARK, anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_GT2, - [221818] = 26, + [262115] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13256), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13226), 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(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13246), 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(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221910] = 27, + ACTIONS(10068), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + [262199] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10066), 1, + anon_sym_PIPE, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12693), 1, - anon_sym_COLON, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13226), 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, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222004] = 27, + ACTIONS(10068), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [262281] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10066), 1, + anon_sym_PIPE, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12695), 1, - anon_sym_COMMA, - ACTIONS(12697), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 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(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222098] = 17, + ACTIONS(10068), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [262361] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(6821), 1, - anon_sym___attribute, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11838), 1, - anon_sym_STAR, - ACTIONS(11840), 1, - anon_sym_AMP_AMP, - ACTIONS(11842), 1, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(13228), 1, + anon_sym_SLASH, + ACTIONS(13244), 1, + anon_sym_GT_EQ, + ACTIONS(13252), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10066), 2, + anon_sym_PIPE, 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, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13226), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13240), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13242), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 12, + 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, - [222172] = 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [262437] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(7393), 1, - anon_sym___attribute, - ACTIONS(11793), 1, + ACTIONS(10050), 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, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(13228), 1, + anon_sym_SLASH, + ACTIONS(13244), 1, + anon_sym_GT_EQ, + ACTIONS(13252), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10066), 2, + anon_sym_PIPE, 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, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13226), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13242), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 15, + anon_sym_DOT_DOT_DOT, 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [262511] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - STATE(5741), 1, + ACTIONS(13252), 1, + anon_sym_LT_EQ_GT, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12326), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12356), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 9, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13226), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 5, 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, + ACTIONS(10068), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -643579,859 +714779,668 @@ 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_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [222310] = 26, + [262581] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13228), 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, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(10066), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 19, + 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(12699), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [222402] = 27, + [262647] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12701), 1, - anon_sym_COMMA, - ACTIONS(12703), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13396), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222496] = 24, + [262741] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(13228), 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(12350), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, - ACTIONS(12354), 1, - anon_sym_bitand, - STATE(5741), 1, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13226), 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, - 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(10544), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(12342), 4, + ACTIONS(13246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10066), 5, + anon_sym_PIPE, + anon_sym_AMP, 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(10068), 17, 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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [222636] = 27, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [262809] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13000), 1, + anon_sym_COLON, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 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(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 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, - 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, + [262903] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(12200), 1, anon_sym_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(12350), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, - ACTIONS(12354), 1, - anon_sym_bitand, - STATE(5741), 1, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10113), 8, 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, + ACTIONS(10115), 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_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(10437), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(12342), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [222966] = 24, + 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, + [262963] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13256), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 4, + ACTIONS(11055), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - [223054] = 24, + [263051] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13256), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11059), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13242), 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_RBRACK, - anon_sym_QMARK, - [223142] = 24, + [263143] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(13256), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 4, + ACTIONS(11063), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - [223230] = 24, + [263231] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13256), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11067), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [223318] = 26, + [263323] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13398), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9828), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [223410] = 12, + [263417] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12565), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 7, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10066), 9, 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, - ACTIONS(9709), 19, + anon_sym_GT_GT, + ACTIONS(10068), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644439,10 +715448,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, @@ -644451,35 +715457,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [223474] = 10, + anon_sym_GT2, + [263481] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11944), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12993), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 8, + ACTIONS(10066), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 21, + anon_sym_GT_GT, + ACTIONS(10068), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -644489,10 +715498,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, @@ -644501,352 +715507,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [223534] = 23, + anon_sym_GT2, + [263541] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12991), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12571), 2, + ACTIONS(12969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 6, + ACTIONS(10068), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_or, - [223620] = 22, + anon_sym_GT2, + [263627] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12971), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12989), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12991), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12575), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 8, + ACTIONS(10068), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_or, anon_sym_and, - [223704] = 21, + anon_sym_GT2, + [263711] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10066), 1, + anon_sym_PIPE, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(11315), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12577), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12595), 1, + ACTIONS(12991), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12575), 2, + ACTIONS(12973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 9, + ACTIONS(10068), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON, anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, - [223786] = 20, + anon_sym_GT2, + [263793] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10066), 1, + anon_sym_PIPE, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(11315), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12577), 1, + ACTIONS(12975), 1, anon_sym_AMP, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - ACTIONS(12595), 1, + ACTIONS(12991), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 11, + ACTIONS(10068), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_COLON, anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - [223866] = 18, + anon_sym_GT2, + [263873] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, + ACTIONS(10066), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11317), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12979), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 12, + ACTIONS(10068), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_COLON, anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [223942] = 17, + anon_sym_GT2, + [263949] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12981), 1, + anon_sym_LT_LT, + ACTIONS(12983), 1, + anon_sym_GT_GT, + ACTIONS(12987), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(6528), 1, sym_argument_list, - STATE(3900), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, + ACTIONS(10066), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11317), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12585), 2, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12979), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10068), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [264023] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12981), 1, anon_sym_LT_LT, + ACTIONS(12983), 1, anon_sym_GT_GT, - ACTIONS(12581), 3, + ACTIONS(12987), 1, + anon_sym_LT_EQ_GT, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10066), 6, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 15, + ACTIONS(10068), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644854,7 +715917,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON, anon_sym_QMARK, anon_sym_or, anon_sym_and, @@ -644862,45 +715924,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [224016] = 15, + anon_sym_GT2, + [264095] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11944), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12965), 1, anon_sym_SLASH, - ACTIONS(12591), 1, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10066), 7, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(10068), 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, + [264161] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12585), 2, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13306), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [264253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7447), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7442), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [264299] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7670), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7668), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [264347] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + ACTIONS(11936), 1, + anon_sym_LBRACK, + ACTIONS(11944), 1, + anon_sym_DOT, + ACTIONS(12965), 1, + anon_sym_SLASH, + ACTIONS(12981), 1, anon_sym_LT_LT, + ACTIONS(12983), 1, anon_sym_GT_GT, - ACTIONS(9707), 5, + STATE(6528), 1, + sym_argument_list, + STATE(6529), 1, + sym_subscript_argument_list, + ACTIONS(11946), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10066), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 16, + ACTIONS(10068), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644908,51 +716177,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [224086] = 13, + anon_sym_GT2, + [264417] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - STATE(3874), 1, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 5, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13306), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [264509] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10178), 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(9709), 19, + ACTIONS(10180), 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, @@ -644970,118 +716299,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [224152] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [264567] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12709), 1, - anon_sym_COLON, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224246] = 14, + ACTIONS(11077), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [264655] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12567), 1, - anon_sym_SLASH, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(10082), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10084), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12585), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 5, + 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, + [264715] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10086), 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(9709), 17, + ACTIONS(10088), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -645091,93 +716465,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [224314] = 27, + [264775] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12404), 1, - anon_sym_COLON, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13256), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224408] = 10, + ACTIONS(11081), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [264863] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(12200), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9715), 8, + ACTIONS(10046), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -645186,7 +716554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9717), 21, + ACTIONS(10048), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -645208,23 +716576,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [224468] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [264921] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11936), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11944), 1, anon_sym_DOT, - STATE(5741), 1, + STATE(6528), 1, sym_argument_list, - STATE(5917), 1, + STATE(6529), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11946), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9681), 10, + ACTIONS(12993), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10113), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -645235,7 +716608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(9683), 21, + ACTIONS(10115), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -645254,482 +716627,571 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, anon_sym_GT2, - [224526] = 24, + [264981] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13256), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 4, + ACTIONS(10103), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [224614] = 26, + [265069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(7151), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7149), 27, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(11315), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [265115] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6822), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6824), 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(6817), 25, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 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_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, + [265163] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13400), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10479), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224706] = 24, + [265257] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13402), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [224794] = 26, + [265351] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12186), 1, + anon_sym_COMMA, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13404), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(10491), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224886] = 27, + [265445] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12711), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13406), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224980] = 27, + [265537] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12713), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13408), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225074] = 27, + [265631] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13222), 1, + anon_sym_COMMA, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12293), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13410), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225168] = 7, + [265725] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(12912), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12914), 1, anon_sym_LBRACK, - STATE(2267), 1, + STATE(2460), 1, sym_parameter_list, - STATE(6617), 1, + STATE(7519), 1, sym__function_declarator_seq, - ACTIONS(10210), 9, + ACTIONS(9780), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -645739,7 +717201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10208), 25, + ACTIONS(9782), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -645765,2068 +717227,1846 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [225222] = 27, + [265779] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(12613), 1, + sym_identifier, + ACTIONS(12615), 1, + anon_sym_LPAREN2, + ACTIONS(12617), 1, + anon_sym_STAR, + ACTIONS(12619), 1, + anon_sym_AMP_AMP, + ACTIONS(12621), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(9247), 1, + sym__type_declarator, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 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, + [265852] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6209), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12715), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225316] = 26, + [265943] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(13412), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(10479), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225408] = 26, + [266034] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(6211), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(10491), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11325), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [225500] = 26, + [266125] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(6213), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12717), 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, - [225592] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9707), 1, - anon_sym_PIPE, - 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(12338), 1, - anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(13047), 2, anon_sym_LT_LT, - ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(12350), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12354), 1, - anon_sym_bitand, - 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(12324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12326), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12356), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13041), 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, - ACTIONS(9709), 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, - [225672] = 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(10210), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(10208), 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, - [225726] = 26, + [266216] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(6215), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9828), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11325), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [225818] = 27, + [266307] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6217), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12549), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225912] = 27, + [266398] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12719), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13414), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226006] = 9, + [266489] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11988), 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), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(13029), 1, anon_sym_SLASH, + ACTIONS(13035), 1, anon_sym_PIPE, + ACTIONS(13039), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9659), 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(13045), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, + ACTIONS(13051), 1, anon_sym_QMARK, + ACTIONS(13053), 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, - [226064] = 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(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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - ACTIONS(12567), 1, - anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, - anon_sym_AMP, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12591), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(13416), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13418), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [226224] = 10, + [266580] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 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(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9673), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, 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, + ACTIONS(12898), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12904), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12906), 1, anon_sym_bitand, - anon_sym_not_eq, - [226284] = 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, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13420), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9677), 8, + ACTIONS(12878), 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(9679), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [226344] = 24, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [266671] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13422), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [226432] = 9, + [266762] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13424), 1, + sym_identifier, + ACTIONS(13426), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - STATE(3874), 1, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(13432), 1, + sym_primitive_type, + ACTIONS(13434), 1, + anon_sym_enum, + ACTIONS(13436), 1, + anon_sym_class, + ACTIONS(13438), 1, + anon_sym_struct, + ACTIONS(13440), 1, + anon_sym_union, + ACTIONS(13442), 1, + anon_sym_typename, + ACTIONS(13444), 1, + sym_auto, + ACTIONS(13446), 1, + anon_sym_decltype, + STATE(4131), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6845), 1, + sym_template_type, + STATE(6885), 1, + sym_qualified_type_identifier, + STATE(6979), 1, + sym_splice_specifier, + STATE(7186), 1, + sym_decltype_auto, + STATE(7380), 1, + sym_type_specifier, + STATE(8420), 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, - anon_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(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, - 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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [226490] = 26, + STATE(9815), 1, + sym__scope_resolution, + STATE(7067), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13430), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7187), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266855] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13424), 1, + sym_identifier, + ACTIONS(13426), 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(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, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(13432), 1, + sym_primitive_type, + ACTIONS(13434), 1, + anon_sym_enum, + ACTIONS(13436), 1, + anon_sym_class, + ACTIONS(13438), 1, + anon_sym_struct, + ACTIONS(13440), 1, + anon_sym_union, + ACTIONS(13442), 1, + anon_sym_typename, + ACTIONS(13444), 1, + sym_auto, + ACTIONS(13446), 1, + anon_sym_decltype, + STATE(4131), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6845), 1, + sym_template_type, + STATE(6885), 1, + sym_qualified_type_identifier, + STATE(6979), 1, + sym_splice_specifier, + STATE(7186), 1, + sym_decltype_auto, + STATE(7381), 1, + sym_type_specifier, + STATE(8439), 1, sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - 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, - 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(12603), 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, - [226582] = 24, + STATE(9815), 1, + sym__scope_resolution, + STATE(7067), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13430), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7187), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266948] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13448), 1, + sym_identifier, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13454), 1, + sym_primitive_type, + ACTIONS(13456), 1, + anon_sym_enum, + ACTIONS(13458), 1, + anon_sym_class, + ACTIONS(13460), 1, + anon_sym_struct, + ACTIONS(13462), 1, + anon_sym_union, + ACTIONS(13464), 1, + anon_sym_typename, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3928), 1, + sym_decltype_auto, + STATE(5807), 1, + sym_type_specifier, + STATE(6696), 1, + sym_splice_specifier, + STATE(8469), 1, + sym_argument_list, + STATE(9846), 1, + sym__scope_resolution, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13452), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [267041] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6389), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13043), 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_QMARK, - [226670] = 27, + [267132] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12721), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13466), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226764] = 27, + [267223] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6391), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12723), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226858] = 24, + [267314] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13468), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 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_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, + [267405] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12725), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13470), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227112] = 27, + [267496] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6393), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12727), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227206] = 26, + [267587] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13250), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13256), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(13472), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9828), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(11333), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227298] = 27, + [267678] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12729), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13474), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227392] = 18, + [267769] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(6286), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(13035), 1, + anon_sym_PIPE, + ACTIONS(13039), 1, + anon_sym_AMP, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - STATE(5741), 1, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, + anon_sym_bitand, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11325), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12356), 2, + ACTIONS(13031), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(13043), 3, 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, + [267860] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12731), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13476), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227562] = 9, + [267951] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 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(9657), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12898), 1, 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, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12904), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12906), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13478), 1, + anon_sym_SEMI, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 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(12878), 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(10204), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 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_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [227674] = 27, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [268042] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6239), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12733), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227768] = 26, + [268133] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(6432), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12735), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227860] = 17, + [268224] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(6434), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(13035), 1, + anon_sym_PIPE, + ACTIONS(13039), 1, + anon_sym_AMP, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - STATE(5741), 1, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, + anon_sym_bitand, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11325), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13027), 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(13031), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 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, - [227934] = 17, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [268315] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(13480), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(6781), 4, 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_LBRACE, + ACTIONS(6774), 30, 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___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, @@ -647838,2033 +719078,2217 @@ static const uint16_t ts_small_parse_table[] = { 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__, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, 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, + [268366] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - STATE(5875), 1, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13482), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12368), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12400), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 7, + ACTIONS(12878), 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, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12900), 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(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [228146] = 26, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [268457] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5741), 1, + ACTIONS(13484), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(5917), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(10479), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11325), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [228238] = 10, + [268548] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - STATE(5875), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13486), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12400), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 8, + ACTIONS(12878), 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(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12900), 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(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [228298] = 23, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [268639] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13488), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12374), 2, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 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, + [268730] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(6241), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12378), 2, + ACTIONS(13031), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 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, + [268821] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(10900), 1, + ACTIONS(6243), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12380), 1, + ACTIONS(13035), 1, + anon_sym_PIPE, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12398), 1, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12378), 2, + ACTIONS(13031), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 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, + [268912] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(6248), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(11974), 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(11988), 1, + anon_sym_DOT, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, + ACTIONS(13035), 1, anon_sym_PIPE, + ACTIONS(13039), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(13045), 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, - anon_sym_STAR, - anon_sym_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(13051), 1, anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(13055), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(13057), 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, - [228604] = 18, - 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(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12388), 2, + ACTIONS(13031), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 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, + [269003] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12386), 1, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - STATE(5875), 1, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13490), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12388), 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(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 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(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [269094] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13492), 1, + sym_identifier, + ACTIONS(13494), 1, + anon_sym_COLON_COLON, + ACTIONS(13498), 1, + sym_primitive_type, + ACTIONS(13500), 1, + anon_sym_enum, + ACTIONS(13502), 1, + anon_sym_class, + ACTIONS(13504), 1, + anon_sym_struct, + ACTIONS(13506), 1, + anon_sym_union, + ACTIONS(13508), 1, + anon_sym_typename, + ACTIONS(13510), 1, + sym_auto, + ACTIONS(13512), 1, + anon_sym_decltype, + STATE(2611), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4714), 1, + sym_splice_specifier, + STATE(4858), 1, + sym__splice_specialization_specifier, + STATE(5204), 1, + sym_template_type, + STATE(5337), 1, + sym_qualified_type_identifier, + STATE(5352), 1, + sym_type_specifier, + STATE(6150), 1, + sym_decltype_auto, + STATE(8369), 1, + sym_argument_list, + STATE(9745), 1, + sym__scope_resolution, + STATE(5871), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6152), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269187] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13492), 1, + sym_identifier, + ACTIONS(13494), 1, + anon_sym_COLON_COLON, + ACTIONS(13498), 1, + sym_primitive_type, + ACTIONS(13500), 1, + anon_sym_enum, + ACTIONS(13502), 1, + anon_sym_class, + ACTIONS(13504), 1, + anon_sym_struct, + ACTIONS(13506), 1, + anon_sym_union, + ACTIONS(13508), 1, + anon_sym_typename, + ACTIONS(13510), 1, + sym_auto, + ACTIONS(13512), 1, + anon_sym_decltype, + STATE(2611), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4714), 1, + sym_splice_specifier, + STATE(4858), 1, + sym__splice_specialization_specifier, + STATE(5204), 1, + sym_template_type, + STATE(5337), 1, + sym_qualified_type_identifier, + STATE(5360), 1, + sym_type_specifier, + STATE(6150), 1, + sym_decltype_auto, + STATE(8380), 1, + sym_argument_list, + STATE(9745), 1, + sym__scope_resolution, + STATE(5871), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6152), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [269280] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12737), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13514), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [228848] = 24, + [269371] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5741), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13516), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5917), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 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(12896), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [228936] = 27, + [269462] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12739), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13518), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229030] = 24, + [269553] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13520), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 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, + [269644] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12741), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13522), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229212] = 15, + [269735] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - 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(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9707), 5, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 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, + ACTIONS(12898), 1, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12906), 1, anon_sym_bitand, - anon_sym_not_eq, - [229282] = 13, - 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, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13524), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 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(12884), 2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12890), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [229348] = 14, - 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, - 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(12388), 2, + ACTIONS(12900), 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(12894), 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(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(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(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [269826] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12743), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(13526), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229582] = 26, + [269917] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6284), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12745), 1, - anon_sym_COMMA, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229673] = 26, + [270008] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13528), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229764] = 26, + [270099] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6224), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13530), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229855] = 26, + [270190] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6228), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(13532), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229946] = 26, + [270281] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13534), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230037] = 26, + [270372] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12747), 1, + ACTIONS(13536), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230128] = 26, + [270463] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6266), 1, + ACTIONS(6288), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [270554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7838), 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, - [230219] = 26, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7840), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [270599] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6290), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12749), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230310] = 26, + [270690] = 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(12370), 1, + ACTIONS(7359), 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(7361), 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_LBRACE, + 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, - ACTIONS(12751), 1, - anon_sym_RBRACK, - 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, + [270735] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12243), 1, + sym_literal_suffix, + ACTIONS(5671), 15, 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(5663), 21, + 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_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, - [230401] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [270782] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6295), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12753), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230492] = 27, + [270873] = 6, 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, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(12682), 1, + anon_sym_LT, + STATE(3266), 1, + sym_template_argument_list, + ACTIONS(7447), 8, + 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_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(7442), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(11083), 1, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_requires, + [270924] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8930), 1, sym_primitive_type, - ACTIONS(12755), 1, + ACTIONS(12613), 1, + sym_identifier, + ACTIONS(12615), 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(6540), 1, - sym_type_specifier, - STATE(7432), 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, + ACTIONS(12617), 1, + anon_sym_STAR, + ACTIONS(12619), 1, + anon_sym_AMP_AMP, + ACTIONS(12621), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(9236), 1, + sym__type_declarator, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8926), 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, - [230585] = 26, + STATE(9579), 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, + [270997] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12563), 1, + sym_identifier, + ACTIONS(12565), 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(12567), 1, + anon_sym_STAR, + ACTIONS(12569), 1, + anon_sym_AMP_AMP, + ACTIONS(12571), 1, + anon_sym_AMP, + ACTIONS(12575), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5265), 1, + sym__type_declarator, + STATE(6370), 1, + sym_pointer_type_declarator, + STATE(12380), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12573), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6368), 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, + [271070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7743), 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(7745), 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_LBRACE, + 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(12763), 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, + [271115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7751), 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(7753), 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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [271160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7759), 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(12241), 3, + anon_sym_DOT, + ACTIONS(7761), 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_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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [271205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7767), 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, - [230676] = 27, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7769), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [271250] = 27, 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, + ACTIONS(3078), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13538), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(13540), 1, anon_sym_COLON_COLON, - ACTIONS(11083), 1, + ACTIONS(13544), 1, sym_primitive_type, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12759), 1, + ACTIONS(13546), 1, anon_sym_enum, - ACTIONS(12761), 1, + ACTIONS(13548), 1, + anon_sym_class, + ACTIONS(13550), 1, + anon_sym_struct, + ACTIONS(13552), 1, + anon_sym_union, + ACTIONS(13554), 1, anon_sym_typename, - STATE(3711), 1, + ACTIONS(13556), 1, + sym_auto, + ACTIONS(13558), 1, + anon_sym_decltype, + STATE(2624), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, sym__splice_specialization_specifier, - STATE(3759), 1, + STATE(5227), 1, sym_template_type, - STATE(3762), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3819), 1, + STATE(5290), 1, + sym_type_specifier, + STATE(5416), 1, sym_qualified_type_identifier, - STATE(4119), 1, + STATE(6160), 1, sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(6527), 1, - sym_type_specifier, - STATE(7488), 1, + STATE(8424), 1, sym_argument_list, - STATE(8675), 1, + STATE(9822), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(6010), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12757), 4, + ACTIONS(13542), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(6163), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -649872,20 +721296,22 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [230769] = 3, + [271343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 9, + ACTIONS(7786), 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(9705), 28, + ACTIONS(7788), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -649896,12 +721322,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_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -649914,310 +721337,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [230814] = 26, + anon_sym_GT2, + [271388] = 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(7806), 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(12765), 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(7808), 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_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [230905] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_LT_LT, + anon_sym_LBRACE, 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(12767), 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [271433] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13538), 1, + sym_identifier, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13544), 1, + sym_primitive_type, + ACTIONS(13546), 1, + anon_sym_enum, + ACTIONS(13548), 1, + anon_sym_class, + ACTIONS(13550), 1, + anon_sym_struct, + ACTIONS(13552), 1, + anon_sym_union, + ACTIONS(13554), 1, + anon_sym_typename, + ACTIONS(13556), 1, + sym_auto, + ACTIONS(13558), 1, + anon_sym_decltype, + STATE(2624), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5227), 1, + sym_template_type, + STATE(5343), 1, + sym_type_specifier, + STATE(5416), 1, + sym_qualified_type_identifier, + STATE(6160), 1, + sym_decltype_auto, + STATE(8435), 1, + sym_argument_list, + STATE(9822), 1, + sym__scope_resolution, + STATE(6010), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13542), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6163), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7850), 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(7852), 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, - [230996] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [271571] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6351), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13560), 1, + anon_sym_RBRACE, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231087] = 26, + [271662] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12769), 1, + ACTIONS(13562), 1, anon_sym_COLON_RBRACK, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231178] = 16, + [271753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12844), 1, + anon_sym_LT, + STATE(4159), 1, + sym_template_argument_list, + ACTIONS(5689), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_LBRACE, anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, + anon_sym_LBRACK_COLON, + ACTIONS(7543), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -650229,365 +721655,372 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, 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, + [271804] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12771), 1, + ACTIONS(13564), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231411] = 26, + [271895] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12773), 1, + ACTIONS(13566), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231502] = 26, + [271986] = 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(7771), 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(12775), 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(7773), 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_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [231593] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6244), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, + anon_sym_LT_LT, + anon_sym_LBRACE, 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_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, + [272031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7710), 11, 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, + anon_sym_DOT, + ACTIONS(7712), 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_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(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [231684] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [272076] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12579), 1, + sym_identifier, + ACTIONS(12581), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11872), 1, + ACTIONS(12583), 1, anon_sym_STAR, - ACTIONS(11874), 1, + ACTIONS(12585), 1, anon_sym_AMP_AMP, - ACTIONS(11876), 1, + ACTIONS(12587), 1, anon_sym_AMP, - STATE(5227), 1, - sym_parameter_list, - STATE(6707), 1, + ACTIONS(12591), 1, + sym_primitive_type, + STATE(2870), 1, sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8962), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, + STATE(5184), 1, + sym__type_declarator, + STATE(6026), 1, + sym_pointer_type_declarator, + STATE(12075), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6420), 2, + STATE(2711), 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, + ACTIONS(12589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6022), 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, + [272149] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13568), 2, anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(7549), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7551), 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_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - ACTIONS(11785), 12, + [272196] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12579), 1, + sym_identifier, + ACTIONS(12581), 1, + anon_sym_LPAREN2, + ACTIONS(12583), 1, + anon_sym_STAR, + ACTIONS(12585), 1, + anon_sym_AMP_AMP, + ACTIONS(12587), 1, + anon_sym_AMP, + ACTIONS(12591), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5164), 1, + sym__type_declarator, + STATE(6026), 1, + sym_pointer_type_declarator, + STATE(12075), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6022), 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, @@ -650599,707 +722032,665 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [231755] = 26, + [272269] = 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(7718), 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(7720), 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_LBRACE, + 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(12777), 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [272314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7735), 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(7737), 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, - [231846] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [272359] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(6323), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12779), 1, - anon_sym_RBRACK, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231937] = 26, + [272450] = 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(7763), 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(7765), 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_LBRACE, + 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(12781), 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, + [272495] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7718), 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(7720), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [272540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7718), 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, - [232028] = 26, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7720), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [272585] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12783), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13571), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232119] = 26, + [272676] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6246), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13573), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232210] = 26, + [272767] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 1, + ACTIONS(6328), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232301] = 26, + [272858] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6250), 1, + ACTIONS(6330), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 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, + [272949] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6332), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12791), 1, - anon_sym_COLON, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232576] = 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(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, + [273040] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(2728), 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13444), 1, sym_auto, - ACTIONS(4441), 1, + ACTIONS(13446), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11087), 1, + ACTIONS(13575), 1, sym_identifier, - ACTIONS(11089), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(11091), 1, + ACTIONS(13581), 1, sym_primitive_type, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12795), 1, + ACTIONS(13583), 1, anon_sym_enum, - ACTIONS(12797), 1, + ACTIONS(13585), 1, + anon_sym_class, + ACTIONS(13587), 1, + anon_sym_struct, + ACTIONS(13589), 1, + anon_sym_union, + ACTIONS(13591), 1, anon_sym_typename, - STATE(2377), 1, + STATE(3645), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + STATE(5807), 1, + sym_type_specifier, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(2701), 1, + STATE(6573), 1, + sym_splice_specifier, + STATE(6845), 1, sym_template_type, - STATE(2781), 1, + STATE(6885), 1, sym_qualified_type_identifier, - STATE(3099), 1, + STATE(7186), 1, sym_decltype_auto, - STATE(4800), 1, - sym_type_specifier, - STATE(7439), 1, + STATE(8398), 1, sym_argument_list, - STATE(8687), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(2984), 2, + STATE(7067), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12793), 4, + ACTIONS(13579), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 7, + STATE(7187), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -651307,261 +722698,149 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [232742] = 26, + [273133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6353), 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(7747), 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(7749), 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, - [232833] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, - anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, - anon_sym_AMP, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12589), 1, anon_sym_QMARK, - ACTIONS(12591), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12595), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12799), 1, - anon_sym_COLON, - 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [273178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7755), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 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(7757), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, 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_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(12581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [232924] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [273223] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(2728), 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13444), 1, sym_auto, - ACTIONS(4441), 1, + ACTIONS(13446), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11087), 1, + ACTIONS(13575), 1, sym_identifier, - ACTIONS(11089), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(11091), 1, + ACTIONS(13581), 1, sym_primitive_type, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12795), 1, + ACTIONS(13583), 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, + ACTIONS(13585), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(13587), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(13589), 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, + ACTIONS(13591), 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(3645), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2170), 1, + STATE(5833), 1, + sym_type_specifier, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(2221), 1, + STATE(6573), 1, + sym_splice_specifier, + STATE(6845), 1, + sym_template_type, + STATE(6885), 1, + sym_qualified_type_identifier, + STATE(7186), 1, sym_decltype_auto, - STATE(3517), 1, - sym_type_specifier, - STATE(7402), 1, + STATE(8382), 1, sym_argument_list, - STATE(8763), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(2169), 2, + STATE(7067), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12801), 4, + ACTIONS(13579), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(7187), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -651569,7052 +722848,7020 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [233110] = 26, + [273316] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12807), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(13593), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233201] = 26, + [273407] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13595), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233292] = 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(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, - 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, + [273498] = 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(7775), 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(7777), 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_LBRACE, + 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(12809), 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, + [273543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7779), 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(7781), 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, - [233476] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [273588] = 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(7794), 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(7796), 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_LBRACE, + 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(12811), 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, + [273633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7798), 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(7800), 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, - [233567] = 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(3548), 1, - sym_type_specifier, - STATE(7501), 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [273678] = 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(7802), 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(7804), 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_LBRACE, + 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(12813), 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [273723] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7794), 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(7796), 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, - [233751] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [273768] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12815), 1, + ACTIONS(13597), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233842] = 26, + [273859] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13599), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233933] = 26, + [273950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(7810), 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(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, - anon_sym_bitand, - ACTIONS(12817), 1, - anon_sym_COLON, - 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(7812), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, 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_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(12581), 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [273995] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6346), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12819), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [274086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7822), 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, - [234188] = 26, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7824), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [274131] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12821), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13601), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [274222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7826), 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, - [234279] = 26, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7828), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [274267] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(6348), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12823), 1, - anon_sym_RBRACK, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234370] = 26, + [274358] = 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(7830), 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(12825), 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(7832), 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, - [234461] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [274403] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6350), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12827), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234552] = 26, + [274494] = 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(7834), 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(7836), 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_LBRACE, + 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(12829), 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [274539] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13603), 1, + sym_identifier, + ACTIONS(13605), 1, + anon_sym_COLON_COLON, + ACTIONS(13609), 1, + sym_primitive_type, + ACTIONS(13611), 1, + anon_sym_enum, + ACTIONS(13613), 1, + anon_sym_class, + ACTIONS(13615), 1, + anon_sym_struct, + ACTIONS(13617), 1, + anon_sym_union, + ACTIONS(13619), 1, + anon_sym_typename, + ACTIONS(13621), 1, + sym_auto, + ACTIONS(13623), 1, + anon_sym_decltype, + STATE(4137), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7005), 1, + sym_splice_specifier, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(7301), 1, + sym_template_type, + STATE(7365), 1, + sym_qualified_type_identifier, + STATE(7393), 1, + sym_type_specifier, + STATE(7844), 1, + sym_decltype_auto, + STATE(8402), 1, + sym_argument_list, + STATE(9780), 1, + sym__scope_resolution, + STATE(7647), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13607), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7846), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [274632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7842), 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(7844), 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, - [234643] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [274677] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6272), 1, + ACTIONS(6352), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234734] = 26, + [274768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 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(7846), 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(7848), 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_LBRACE, + 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, + [274813] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13625), 1, + sym_identifier, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13631), 1, + sym_primitive_type, + ACTIONS(13633), 1, + anon_sym_enum, + ACTIONS(13635), 1, + anon_sym_class, + ACTIONS(13637), 1, + anon_sym_struct, + ACTIONS(13639), 1, + anon_sym_union, + ACTIONS(13641), 1, + anon_sym_typename, + ACTIONS(13643), 1, + sym_auto, + ACTIONS(13645), 1, + anon_sym_decltype, + STATE(2416), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3708), 1, + sym_template_type, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3825), 1, + sym_type_specifier, + STATE(3826), 1, + sym_qualified_type_identifier, + STATE(4089), 1, + sym_decltype_auto, + STATE(8451), 1, + sym_argument_list, + STATE(9840), 1, + sym__scope_resolution, + STATE(3997), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13629), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4090), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [274906] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13625), 1, + sym_identifier, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13631), 1, + sym_primitive_type, + ACTIONS(13633), 1, + anon_sym_enum, + ACTIONS(13635), 1, + anon_sym_class, + ACTIONS(13637), 1, + anon_sym_struct, + ACTIONS(13639), 1, + anon_sym_union, + ACTIONS(13641), 1, + anon_sym_typename, + ACTIONS(13643), 1, + sym_auto, + ACTIONS(13645), 1, + anon_sym_decltype, + STATE(2416), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3708), 1, + sym_template_type, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3809), 1, + sym_type_specifier, + STATE(3826), 1, + sym_qualified_type_identifier, + STATE(4089), 1, + sym_decltype_auto, + STATE(8455), 1, + sym_argument_list, + STATE(9840), 1, + sym__scope_resolution, + STATE(3997), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13629), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4090), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [274999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7854), 11, 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, + anon_sym_DOT, + ACTIONS(7856), 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_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(12384), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [275044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7858), 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, - [234825] = 26, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(7860), 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [275089] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12831), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13647), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234916] = 26, + [275180] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13649), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235007] = 26, + [275271] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6278), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13651), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235098] = 26, + [275362] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6379), 1, + ACTIONS(6359), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235189] = 26, + [275453] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6520), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12833), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235280] = 26, + [275544] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6365), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12835), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235371] = 27, - 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, - 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, + [275635] = 4, 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, + ACTIONS(7458), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(12755), 1, + ACTIONS(5671), 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(5663), 27, + 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_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, + [275682] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6367), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12843), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235648] = 26, + [275773] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12845), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13653), 1, + anon_sym_COMMA, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235739] = 26, + [275864] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12847), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13655), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235830] = 26, + [275955] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12849), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13657), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235921] = 26, + [276046] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12851), 1, + ACTIONS(13659), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236012] = 26, + [276137] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(6233), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12853), 1, - anon_sym_RBRACK, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 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, + [276228] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12861), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13661), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236281] = 26, + [276319] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12863), 1, + ACTIONS(13663), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236372] = 26, + [276410] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12865), 1, + ACTIONS(13665), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236463] = 26, + [276501] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6288), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(4966), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 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, - 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, - [236554] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11878), 1, + ACTIONS(13603), 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, + ACTIONS(13605), 1, + anon_sym_COLON_COLON, + ACTIONS(13609), 1, sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4640), 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, + ACTIONS(13611), 1, + anon_sym_enum, + ACTIONS(13613), 1, + anon_sym_class, + ACTIONS(13615), 1, + anon_sym_struct, + ACTIONS(13617), 1, + anon_sym_union, + ACTIONS(13619), 1, + anon_sym_typename, + ACTIONS(13621), 1, + sym_auto, + ACTIONS(13623), 1, + anon_sym_decltype, + STATE(4137), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7005), 1, + sym_splice_specifier, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(7301), 1, + sym_template_type, + STATE(7365), 1, + sym_qualified_type_identifier, + STATE(7397), 1, + sym_type_specifier, + STATE(7844), 1, + sym_decltype_auto, + STATE(8467), 1, + sym_argument_list, + STATE(9780), 1, + sym__scope_resolution, + STATE(7647), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13607), 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, - [236627] = 26, + STATE(7846), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [276594] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12867), 1, + ACTIONS(13667), 1, anon_sym_COLON_RBRACK, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236718] = 26, + [276685] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12869), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13669), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236809] = 26, + [276776] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12871), 1, + ACTIONS(13671), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236900] = 26, + [276867] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6290), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13673), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236991] = 26, + [276958] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13675), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237082] = 26, + [277049] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13677), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237173] = 3, + [277140] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 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(8559), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12593), 1, + sym_identifier, + ACTIONS(12595), 1, anon_sym_LPAREN2, + ACTIONS(12597), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(12599), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON_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, + ACTIONS(12601), 1, + anon_sym_AMP, + ACTIONS(12605), 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, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5431), 1, + sym__type_declarator, + STATE(6222), 1, + sym_pointer_type_declarator, + STATE(11943), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12603), 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, + STATE(6198), 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, + [277213] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13250), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12879), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(13679), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13242), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237402] = 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(5359), 1, - sym_type_specifier, - STATE(7477), 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, - [237495] = 26, + [277304] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12881), 1, + ACTIONS(13681), 1, anon_sym_COLON_RBRACK, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237586] = 26, + [277395] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12883), 1, - anon_sym_RBRACE, - STATE(3874), 1, + ACTIONS(13683), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237677] = 26, + [277486] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12885), 1, + ACTIONS(13685), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237768] = 4, + [277577] = 17, 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, - 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(5638), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12563), 1, + sym_identifier, + ACTIONS(12565), 1, anon_sym_LPAREN2, + ACTIONS(12567), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(12569), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [237815] = 26, + ACTIONS(12571), 1, + anon_sym_AMP, + ACTIONS(12575), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5309), 1, + sym__type_declarator, + STATE(6370), 1, + sym_pointer_type_declarator, + STATE(12380), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12573), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6368), 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, + [277650] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12887), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13687), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237906] = 26, + [277741] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13448), 1, + sym_identifier, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13454), 1, + sym_primitive_type, + ACTIONS(13456), 1, + anon_sym_enum, + ACTIONS(13458), 1, + anon_sym_class, + ACTIONS(13460), 1, + anon_sym_struct, + ACTIONS(13462), 1, + anon_sym_union, + ACTIONS(13464), 1, + anon_sym_typename, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3928), 1, + sym_decltype_auto, + STATE(5833), 1, + sym_type_specifier, + STATE(6696), 1, + sym_splice_specifier, + STATE(8440), 1, + sym_argument_list, + STATE(9846), 1, + sym__scope_resolution, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13452), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [277834] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12889), 1, + ACTIONS(13689), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 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, - [237997] = 4, - 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, - anon_sym_AMP, + ACTIONS(12896), 3, 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_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_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, - [238044] = 26, + [277925] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6304), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13691), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238135] = 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(4997), 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, - [238208] = 26, + [278016] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12891), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13693), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238299] = 26, + [278107] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12893), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13695), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238390] = 26, + [278198] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6308), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13697), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238481] = 6, - 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, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(6565), 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, - [238532] = 26, + [278289] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13699), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238623] = 26, + [278380] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6312), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13701), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238714] = 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(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, - 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, - 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, - 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___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_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_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [238894] = 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(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, - 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, - 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, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(7132), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(7134), 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, - [239034] = 26, + [278471] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12904), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(13703), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239125] = 26, + [278562] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6164), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13705), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239216] = 26, + [278653] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6172), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13707), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239307] = 26, + [278744] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12906), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13709), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239398] = 26, + [278835] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12908), 1, + ACTIONS(13711), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239489] = 26, + [278926] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13713), 1, + sym_identifier, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13719), 1, + sym_primitive_type, + ACTIONS(13721), 1, + anon_sym_enum, + ACTIONS(13723), 1, + anon_sym_class, + ACTIONS(13725), 1, + anon_sym_struct, + ACTIONS(13727), 1, + anon_sym_union, + ACTIONS(13729), 1, + anon_sym_typename, + ACTIONS(13731), 1, + sym_auto, + ACTIONS(13733), 1, + anon_sym_decltype, + STATE(2582), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4632), 1, + sym_splice_specifier, + STATE(4808), 1, + sym__splice_specialization_specifier, + STATE(5026), 1, + sym_template_type, + STATE(5163), 1, + sym_qualified_type_identifier, + STATE(5183), 1, + sym_type_specifier, + STATE(5816), 1, + sym_decltype_auto, + STATE(8391), 1, + sym_argument_list, + STATE(9790), 1, + sym__scope_resolution, + STATE(5642), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13717), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5818), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [279019] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12910), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13735), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239580] = 26, + [279110] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6320), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13737), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239671] = 26, + [279201] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12912), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13739), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239762] = 26, + [279292] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6322), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13741), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239853] = 26, + [279383] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(8510), 1, + sym_ref_qualifier, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9100), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8618), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [279470] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6324), 1, + ACTIONS(6257), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239944] = 26, + [279561] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12914), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13749), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240035] = 26, + [279652] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6326), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13751), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240126] = 26, + [279743] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, ACTIONS(12916), 1, - anon_sym_RPAREN, - STATE(3874), 1, + anon_sym_QMARK, + ACTIONS(13753), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240217] = 26, + [279834] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12918), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(13755), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240308] = 26, + [279925] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12920), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13757), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240399] = 26, + [280016] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12922), 1, + ACTIONS(13759), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240490] = 26, + [280107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6166), 1, + ACTIONS(8854), 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(8849), 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, - ACTIONS(10900), 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, + [280152] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13761), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240581] = 26, + [280243] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12924), 1, + ACTIONS(13763), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240672] = 26, + [280334] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6168), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13765), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240763] = 17, + [280425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, - sym_identifier, - ACTIONS(11931), 1, + ACTIONS(10143), 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(10145), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(11935), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, 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, - 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, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [280470] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12926), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(13767), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240927] = 26, + [280561] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6342), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13769), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241018] = 26, + [280652] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12928), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13771), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241109] = 26, + [280743] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13773), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241200] = 26, + [280834] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12930), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(13775), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241291] = 26, + [280925] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12932), 1, + ACTIONS(13777), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241382] = 26, + [281016] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12934), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(13779), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241473] = 26, + [281107] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12936), 1, + ACTIONS(13781), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241564] = 26, + [281198] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12938), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(13783), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241655] = 26, + [281289] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12940), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13785), 1, + anon_sym_COMMA, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241746] = 26, + [281380] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13787), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241837] = 26, + [281471] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12942), 1, + ACTIONS(13789), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241928] = 26, + [281562] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6176), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + ACTIONS(13426), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(13448), 1, + sym_identifier, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13454), 1, + sym_primitive_type, + ACTIONS(13456), 1, + anon_sym_enum, + ACTIONS(13458), 1, + anon_sym_class, + ACTIONS(13460), 1, + anon_sym_struct, + ACTIONS(13462), 1, + anon_sym_union, + ACTIONS(13464), 1, + anon_sym_typename, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3928), 1, + sym_decltype_auto, + STATE(6696), 1, + sym_splice_specifier, + STATE(7335), 1, + sym_type_specifier, + STATE(8410), 1, + sym_argument_list, + STATE(9846), 1, + sym__scope_resolution, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13452), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [281655] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13073), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242019] = 26, + [281746] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12944), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13791), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242110] = 26, + [281837] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12946), 1, + ACTIONS(13793), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242201] = 26, + [281928] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13713), 1, + sym_identifier, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13719), 1, + sym_primitive_type, + ACTIONS(13721), 1, + anon_sym_enum, + ACTIONS(13723), 1, + anon_sym_class, + ACTIONS(13725), 1, + anon_sym_struct, + ACTIONS(13727), 1, + anon_sym_union, + ACTIONS(13729), 1, + anon_sym_typename, + ACTIONS(13731), 1, + sym_auto, + ACTIONS(13733), 1, + anon_sym_decltype, + STATE(2582), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4632), 1, + sym_splice_specifier, + STATE(4808), 1, + sym__splice_specialization_specifier, + STATE(5026), 1, + sym_template_type, + STATE(5163), 1, + sym_qualified_type_identifier, + STATE(5236), 1, + sym_type_specifier, + STATE(5816), 1, + sym_decltype_auto, + STATE(8464), 1, + sym_argument_list, + STATE(9790), 1, + sym__scope_resolution, + STATE(5642), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13717), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5818), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [282021] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12948), 1, + ACTIONS(13795), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242292] = 26, + [282112] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13448), 1, + sym_identifier, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13454), 1, + sym_primitive_type, + ACTIONS(13456), 1, + anon_sym_enum, + ACTIONS(13458), 1, + anon_sym_class, + ACTIONS(13460), 1, + anon_sym_struct, + ACTIONS(13462), 1, + anon_sym_union, + ACTIONS(13464), 1, + anon_sym_typename, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3928), 1, + sym_decltype_auto, + STATE(6696), 1, + sym_splice_specifier, + STATE(7338), 1, + sym_type_specifier, + STATE(8441), 1, + sym_argument_list, + STATE(9846), 1, + sym__scope_resolution, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13452), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [282205] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12950), 1, + ACTIONS(13797), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242383] = 26, + [282296] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6259), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12952), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242474] = 26, + [282387] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12954), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13799), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242565] = 26, + [282478] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12593), 1, + sym_identifier, + ACTIONS(12595), 1, + anon_sym_LPAREN2, + ACTIONS(12597), 1, + anon_sym_STAR, + ACTIONS(12599), 1, + anon_sym_AMP_AMP, + ACTIONS(12601), 1, + anon_sym_AMP, + ACTIONS(12605), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5377), 1, + sym__type_declarator, + STATE(6222), 1, + sym_pointer_type_declarator, + STATE(11943), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12603), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6198), 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, + [282551] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12956), 1, + ACTIONS(13801), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242656] = 26, + [282642] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13803), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242747] = 26, + [282733] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12958), 1, + ACTIONS(13805), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242838] = 17, + [282824] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11878), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11880), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11882), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11884), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11886), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11890), 1, - sym_primitive_type, - STATE(3497), 1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(4759), 1, - sym__type_declarator, - STATE(5448), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(11657), 1, + STATE(9434), 1, + sym__type_declarator, + STATE(12437), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11888), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5436), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -658634,43 +729881,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [242911] = 17, + [282897] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11856), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11858), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11860), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11862), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11864), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11870), 1, - sym_primitive_type, - STATE(3497), 1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(8364), 1, - sym__type_declarator, - STATE(8576), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(11686), 1, + STATE(9408), 1, + sym__type_declarator, + STATE(12437), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11868), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8574), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -658690,298 +729937,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [242984] = 26, + [282970] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12960), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13807), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243075] = 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(6509), 1, - sym_type_specifier, - STATE(7411), 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, - [243168] = 26, + [283061] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6395), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12962), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243259] = 27, + [283152] = 17, 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(12755), 1, + ACTIONS(12549), 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(6544), 1, - sym_type_specifier, - STATE(7447), 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, - [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, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(6981), 4, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(9421), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9119), 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, + STATE(3501), 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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -658993,49 +730123,43 @@ 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_requires, - [243407] = 17, + [283225] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11912), 1, + ACTIONS(12557), 1, anon_sym_STAR, - ACTIONS(11914), 1, + ACTIONS(12559), 1, anon_sym_AMP_AMP, - ACTIONS(11916), 1, + ACTIONS(12561), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(3694), 1, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3858), 1, sym__type_declarator, - STATE(11037), 1, + STATE(12036), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -659055,226 +730179,504 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [243480] = 26, + [283298] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13809), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [283389] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12273), 1, + sym_literal_suffix, + ACTIONS(5671), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(5663), 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, + [283436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(5671), 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(5663), 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, + [283483] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13811), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [283574] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13813), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [283665] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13815), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [283756] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13256), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12964), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13817), 1, + anon_sym_COLON, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(12202), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13224), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13226), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13230), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13232), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13236), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13246), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13240), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13242), 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, + [283847] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12972), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13819), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243715] = 16, + [283938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(7840), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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(8957), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6945), 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, + anon_sym_LBRACK_COLON, + ACTIONS(7838), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -659286,41 +730688,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [243786] = 12, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [283983] = 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, + ACTIONS(7361), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, 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, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 26, anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(8160), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(7237), 25, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [284028] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7361), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -659334,356 +730775,443 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_GT2, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, anon_sym_try, anon_sym_requires, - [243849] = 26, + [284075] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12980), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13821), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243940] = 26, + [284166] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12982), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(13823), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244031] = 4, + [284257] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, + ACTIONS(13035), 1, anon_sym_PIPE, + ACTIONS(13039), 1, 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, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, + anon_sym_bitand, + ACTIONS(13825), 1, + anon_sym_RBRACK, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(13047), 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(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [244078] = 26, + ACTIONS(13041), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [284348] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6276), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13827), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244169] = 26, + [284439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7745), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7743), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [284484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7753), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7751), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [284529] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12984), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13829), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244260] = 17, + [284620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(7761), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7759), 26, 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___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -659696,50 +731224,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [244333] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [284665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(7769), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7767), 26, 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___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - 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, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [284710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7788), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7786), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -659752,116 +731308,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [244406] = 27, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [284755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(7808), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, 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, + ACTIONS(7806), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [284800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(7852), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11896), 1, anon_sym_STAR, - ACTIONS(11898), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7850), 26, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8404), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - 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, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [284845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7493), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7491), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -659874,310 +731434,520 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [244572] = 26, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [284890] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13831), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244663] = 26, + [284981] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6455), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12992), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244754] = 26, + [285072] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12579), 1, + sym_identifier, + ACTIONS(12581), 1, + anon_sym_LPAREN2, + ACTIONS(12583), 1, + anon_sym_STAR, + ACTIONS(12585), 1, + anon_sym_AMP_AMP, + ACTIONS(12587), 1, + anon_sym_AMP, + ACTIONS(12591), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(5251), 1, + sym__type_declarator, + STATE(6026), 1, + sym_pointer_type_declarator, + STATE(12075), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12589), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6022), 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, + [285145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7913), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7911), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [285190] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6095), 1, + ACTIONS(6477), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244845] = 26, + [285281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6097), 1, + ACTIONS(7773), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7771), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [285326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7712), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7710), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [285371] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6502), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244936] = 17, + [285462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, - sym_identifier, - ACTIONS(11931), 1, + ACTIONS(7716), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(11935), 1, anon_sym_AMP_AMP, - ACTIONS(11937), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7714), 26, 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___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - 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, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [285507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7718), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -660190,311 +731960,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [245009] = 27, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [285552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(7737), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, 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, + ACTIONS(7735), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(12755), 1, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [285597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7765), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7763), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [285642] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6109), 1, + ACTIONS(6514), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245193] = 26, + [285733] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6516), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12994), 1, - anon_sym_COLON, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13047), 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, - [245284] = 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, - ACTIONS(12996), 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, + ACTIONS(13059), 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(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245375] = 16, + [285824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(7720), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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(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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, + anon_sym_LBRACK_COLON, + ACTIONS(7718), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -660506,50 +732216,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [245446] = 16, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [285869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(7720), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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(8964), 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_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, + anon_sym_LBRACK_COLON, + ACTIONS(7718), 26, + anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -660561,440 +732258,617 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [245517] = 26, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [285914] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12998), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13833), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245608] = 26, + [286005] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13000), 1, + ACTIONS(13835), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245699] = 26, + [286096] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13002), 1, + ACTIONS(13837), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245790] = 26, + [286187] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6225), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13004), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(13025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13031), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13041), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [286278] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6227), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, + anon_sym_SLASH, + ACTIONS(13035), 1, + anon_sym_PIPE, + ACTIONS(13039), 1, + anon_sym_AMP, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, + anon_sym_bitand, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245881] = 26, + [286369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7741), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7739), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [286414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7749), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7747), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [286459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7757), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7755), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [286504] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13006), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(13839), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245972] = 26, + [286595] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6229), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13008), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246063] = 17, + [286686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(7292), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7290), 26, 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___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -661007,50 +732881,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [246136] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [286731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(7777), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7775), 26, 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___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -661063,43 +732923,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [246209] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [286776] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, + ACTIONS(12625), 1, anon_sym_STAR, - ACTIONS(11908), 1, + ACTIONS(12627), 1, anon_sym_AMP_AMP, - ACTIONS(11910), 1, + ACTIONS(12629), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(4995), 1, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(5473), 1, sym__type_declarator, - STATE(11304), 1, + STATE(12592), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -661119,50 +732988,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [246282] = 17, + [286849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, - sym_identifier, - ACTIONS(11931), 1, + ACTIONS(7781), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11933), 1, anon_sym_STAR, - ACTIONS(11935), 1, anon_sym_AMP_AMP, - ACTIONS(11937), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7779), 26, 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___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -661175,93 +733021,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [246355] = 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, - ACTIONS(13010), 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_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [246446] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [286894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7085), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7090), 33, + ACTIONS(7792), 11, 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_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7790), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661275,36 +733065,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [246491] = 4, + [286939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7459), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7457), 32, + ACTIONS(7796), 11, 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_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7794), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661318,39 +733107,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [246538] = 5, + [286984] = 3, 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, + ACTIONS(7800), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7798), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661364,37 +733149,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [246587] = 5, + [287029] = 17, ACTIONS(3), 1, sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7675), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12625), 1, + anon_sym_STAR, + ACTIONS(12627), 1, + anon_sym_AMP_AMP, + ACTIONS(12629), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13014), 4, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(5509), 1, + sym__type_declarator, + STATE(12592), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7677), 29, + STATE(3501), 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, + [287102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11198), 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(11196), 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, + [287147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7804), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7802), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661408,48 +733289,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [246636] = 17, + [287192] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11943), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11945), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11947), 1, + ACTIONS(12625), 1, anon_sym_STAR, - ACTIONS(11949), 1, + ACTIONS(12627), 1, anon_sym_AMP_AMP, - ACTIONS(11951), 1, + ACTIONS(12629), 1, anon_sym_AMP, - ACTIONS(11955), 1, - sym_primitive_type, - STATE(3497), 1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(4850), 1, - sym__type_declarator, - STATE(5644), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(10893), 1, + STATE(5261), 1, + sym__type_declarator, + STATE(12592), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11953), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5575), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -661469,32 +733352,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [246709] = 5, + [287265] = 3, ACTIONS(3), 1, sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7681), 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(7683), 29, + ACTIONS(7796), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7794), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661508,102 +733387,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [246758] = 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, - ACTIONS(13016), 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_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [246849] = 5, + [287310] = 3, ACTIONS(3), 1, sym_comment, - STATE(7135), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7555), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13018), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7557), 29, + ACTIONS(7812), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7810), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661617,37 +733429,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [246898] = 5, + [287355] = 3, ACTIONS(3), 1, sym_comment, - STATE(7136), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7783), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13020), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7785), 29, + ACTIONS(7816), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7814), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661661,290 +733471,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [246947] = 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(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(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(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(13022), 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, - 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, - [247125] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6196), 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_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, - [247216] = 3, + [287400] = 3, ACTIONS(3), 1, - sym_comment, - ACTIONS(10566), 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(10564), 21, - anon_sym_DOT_DOT_DOT, + sym_comment, + ACTIONS(7820), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7818), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + 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, - [247261] = 17, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_try, + anon_sym_requires, + [287445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(7824), 11, + anon_sym_COMMA, + anon_sym_RPAREN, 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7822), 26, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3604), 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___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -661957,32 +733553,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [247334] = 5, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_try, + anon_sym_requires, + [287490] = 3, 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, + ACTIONS(7828), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7826), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661996,37 +733597,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [247383] = 5, + [287535] = 3, 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, + ACTIONS(7832), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7830), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -662040,37 +733639,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [247432] = 5, + [287580] = 3, 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, + ACTIONS(7836), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7834), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -662084,37 +733681,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [247481] = 5, + [287625] = 17, ACTIONS(3), 1, sym_comment, - STATE(7145), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7707), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12557), 1, + anon_sym_STAR, + ACTIONS(12559), 1, + anon_sym_AMP_AMP, + ACTIONS(12561), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13026), 4, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3895), 1, + sym__type_declarator, + STATE(12036), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7709), 29, + STATE(3501), 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, + [287698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7844), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7842), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -662128,37 +733779,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [247530] = 5, + [287743] = 3, ACTIONS(3), 1, sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7713), 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(7715), 29, + ACTIONS(7848), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7846), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -662172,102 +733821,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_template, anon_sym_try, anon_sym_requires, - [247579] = 26, + [287788] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13028), 1, + ACTIONS(13841), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247670] = 5, + [287879] = 6, ACTIONS(3), 1, sym_comment, - STATE(7124), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7717), 3, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12682), 1, + anon_sym_LT, + STATE(3095), 1, + sym_template_argument_list, + ACTIONS(5689), 8, + 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_COLON, + ACTIONS(7543), 26, anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(13012), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7719), 29, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_requires, + [287930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7856), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7854), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -662281,102 +733973,310 @@ static const uint16_t ts_small_parse_table[] = { 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_try, + anon_sym_requires, + [287975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7860), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7858), 26, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, anon_sym_try, anon_sym_requires, - [247719] = 26, + [288020] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(13030), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13843), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247810] = 5, + [288111] = 17, ACTIONS(3), 1, sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7723), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12557), 1, + anon_sym_STAR, + ACTIONS(12559), 1, + anon_sym_AMP_AMP, + ACTIONS(12561), 1, anon_sym_AMP, - anon_sym___attribute, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(3875), 1, + sym__type_declarator, + STATE(12036), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, - ACTIONS(13014), 4, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [288184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8854), 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(8849), 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, + [288229] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3161), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13845), 1, + sym_identifier, + ACTIONS(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(13851), 1, + sym_primitive_type, + ACTIONS(13853), 1, + anon_sym_enum, + ACTIONS(13855), 1, + anon_sym_class, + ACTIONS(13857), 1, + anon_sym_struct, + ACTIONS(13859), 1, + anon_sym_union, + ACTIONS(13861), 1, + anon_sym_typename, + ACTIONS(13863), 1, + sym_auto, + ACTIONS(13865), 1, + anon_sym_decltype, + STATE(2739), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4986), 1, + sym_splice_specifier, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(5661), 1, + sym_template_type, + STATE(5876), 1, + sym_qualified_type_identifier, + STATE(6091), 1, + sym_type_specifier, + STATE(6672), 1, + sym_decltype_auto, + STATE(8437), 1, + sym_argument_list, + STATE(9816), 1, + sym__scope_resolution, + STATE(6545), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13849), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7725), 29, + STATE(6673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [288322] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(12844), 1, + anon_sym_LT, + STATE(4196), 1, + sym_template_argument_list, + ACTIONS(7447), 8, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7442), 26, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -662390,191 +734290,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, + anon_sym_template, anon_sym_requires, - [247859] = 26, + [288373] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6495), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13032), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247950] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7727), 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(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, + [288464] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13034), 1, + ACTIONS(13867), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248090] = 4, + [288555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11673), 1, - sym_literal_suffix, - ACTIONS(5645), 15, + ACTIONS(10143), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -662583,14 +734438,8 @@ 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), 21, + ACTIONS(10145), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -662604,1320 +734453,1390 @@ 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, 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, - 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, - 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, - [248182] = 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, - 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(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, - sym__splice_specialization_specifier, - STATE(2622), 1, - sym_template_type, - STATE(2698), 1, - sym_qualified_type_identifier, - STATE(2997), 1, - sym_decltype_auto, - STATE(4663), 1, - sym_type_specifier, - STATE(7438), 1, - sym_argument_list, - STATE(8682), 1, - sym__scope_resolution, - STATE(2942), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - 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, - [248275] = 24, + [288600] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10934), 1, anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10624), 1, + ACTIONS(11226), 1, anon_sym_DASH_GT, - ACTIONS(12412), 1, + ACTIONS(13014), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, + ACTIONS(13086), 1, anon_sym_requires, - STATE(7565), 1, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(8507), 1, sym_ref_qualifier, - STATE(8013), 1, + STATE(9039), 1, sym_trailing_return_type, - STATE(8410), 1, + STATE(9078), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12415), 2, + ACTIONS(13083), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - STATE(7702), 3, + STATE(8636), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 7, - anon_sym_RPAREN, + ACTIONS(7474), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [248362] = 26, + [288687] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6198), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13869), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248453] = 26, + [288778] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6200), 1, + ACTIONS(6385), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248544] = 26, + [288869] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13871), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248635] = 26, + [288960] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6204), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13873), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248726] = 26, + [289051] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6206), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(3161), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(13845), 1, + sym_identifier, + ACTIONS(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(13851), 1, + sym_primitive_type, + ACTIONS(13853), 1, + anon_sym_enum, + ACTIONS(13855), 1, + anon_sym_class, + ACTIONS(13857), 1, + anon_sym_struct, + ACTIONS(13859), 1, + anon_sym_union, + ACTIONS(13861), 1, + anon_sym_typename, + ACTIONS(13863), 1, + sym_auto, + ACTIONS(13865), 1, + anon_sym_decltype, + STATE(2739), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4986), 1, + sym_splice_specifier, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(5661), 1, + sym_template_type, + STATE(5876), 1, + sym_qualified_type_identifier, + STATE(6107), 1, + sym_type_specifier, + STATE(6672), 1, + sym_decltype_auto, + STATE(8446), 1, + sym_argument_list, + STATE(9816), 1, + sym__scope_resolution, + STATE(6545), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13849), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [289144] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(13875), 1, + anon_sym_RBRACK, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248817] = 26, + [289235] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(6371), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(13042), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13044), 1, - anon_sym_RBRACK, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248908] = 26, + [289326] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13877), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248999] = 26, + [289417] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13046), 1, + ACTIONS(13879), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249090] = 26, + [289508] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6267), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13048), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249181] = 27, + [289599] = 26, 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, + ACTIONS(9662), 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, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(12200), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13228), 1, + anon_sym_SLASH, + ACTIONS(13234), 1, + anon_sym_PIPE, + ACTIONS(13238), 1, + anon_sym_AMP, + ACTIONS(13244), 1, + anon_sym_GT_EQ, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13254), 1, + anon_sym_bitor, + ACTIONS(13256), 1, + anon_sym_bitand, + ACTIONS(13881), 1, + anon_sym_COLON, + STATE(4188), 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, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13226), 2, anon_sym_STAR, - ACTIONS(11949), 1, + anon_sym_PERCENT, + ACTIONS(13230), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13232), 2, 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, + anon_sym_and, + ACTIONS(13236), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13240), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13242), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [289690] = 26, 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, + ACTIONS(6271), 1, + anon_sym_RBRACK, + ACTIONS(11631), 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, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, + anon_sym_SLASH, + ACTIONS(13035), 1, + anon_sym_PIPE, + ACTIONS(13039), 1, + anon_sym_AMP, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, + anon_sym_bitand, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13031), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [289781] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6311), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(13056), 1, - anon_sym_COLON, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249531] = 26, + [289872] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13058), 1, + ACTIONS(13883), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249622] = 26, + [289963] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13060), 1, + ACTIONS(13885), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249713] = 26, + [290054] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13062), 1, + ACTIONS(13887), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249804] = 26, + [290145] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13064), 1, + ACTIONS(13889), 1, anon_sym_COLON_RBRACK, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [290236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11198), 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, - [249895] = 17, + 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(11196), 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, + [290281] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11878), 1, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(12613), 1, sym_identifier, - ACTIONS(11880), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - ACTIONS(11882), 1, + ACTIONS(12617), 1, anon_sym_STAR, - ACTIONS(11884), 1, + ACTIONS(12619), 1, + anon_sym_AMP_AMP, + ACTIONS(12621), 1, + anon_sym_AMP, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(9288), 1, + sym__type_declarator, + STATE(9634), 1, + sym_pointer_type_declarator, + STATE(12869), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8926), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(9579), 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, + [290354] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6500), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + ACTIONS(11974), 1, + anon_sym_LBRACK, + ACTIONS(11988), 1, + anon_sym_DOT, + ACTIONS(13021), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13029), 1, + anon_sym_SLASH, + ACTIONS(13035), 1, + anon_sym_PIPE, + ACTIONS(13039), 1, + anon_sym_AMP, + ACTIONS(13045), 1, + anon_sym_GT_EQ, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, + anon_sym_LT_EQ_GT, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, + anon_sym_bitand, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13031), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [290445] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12593), 1, + sym_identifier, + ACTIONS(12595), 1, + anon_sym_LPAREN2, + ACTIONS(12597), 1, + anon_sym_STAR, + ACTIONS(12599), 1, anon_sym_AMP_AMP, - ACTIONS(11886), 1, + ACTIONS(12601), 1, anon_sym_AMP, - ACTIONS(11890), 1, + ACTIONS(12605), 1, sym_primitive_type, - STATE(3497), 1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(4704), 1, + STATE(5453), 1, sym__type_declarator, - STATE(5448), 1, + STATE(6222), 1, sym_pointer_type_declarator, - STATE(11657), 1, + STATE(11943), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11888), 4, + ACTIONS(12603), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5436), 5, + STATE(6198), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -663937,140 +735856,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [249968] = 26, + [290518] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13066), 1, - anon_sym_COMMA, - STATE(3874), 1, + ACTIONS(13891), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250059] = 26, + [290609] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6346), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13893), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250150] = 3, + [290700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 18, + ACTIONS(7491), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -664081,15 +736000,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(7493), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -664101,51 +736013,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [250195] = 17, + [290745] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13635), 1, + anon_sym_class, + ACTIONS(13637), 1, + anon_sym_struct, + ACTIONS(13639), 1, + anon_sym_union, + ACTIONS(13643), 1, + sym_auto, + ACTIONS(13645), 1, + anon_sym_decltype, + ACTIONS(13895), 1, + sym_identifier, + ACTIONS(13899), 1, + sym_primitive_type, + ACTIONS(13901), 1, + anon_sym_enum, + ACTIONS(13903), 1, + anon_sym_typename, + STATE(2390), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3708), 1, + sym_template_type, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3825), 1, + sym_type_specifier, + STATE(3826), 1, + sym_qualified_type_identifier, + STATE(4089), 1, + sym_decltype_auto, + STATE(8463), 1, + sym_argument_list, + STATE(9840), 1, + sym__scope_resolution, + STATE(3997), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13897), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4090), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [290838] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13905), 1, + anon_sym_SEMI, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [290929] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11856), 1, + ACTIONS(12563), 1, sym_identifier, - ACTIONS(11858), 1, + ACTIONS(12565), 1, anon_sym_LPAREN2, - ACTIONS(11860), 1, + ACTIONS(12567), 1, anon_sym_STAR, - ACTIONS(11862), 1, + ACTIONS(12569), 1, anon_sym_AMP_AMP, - ACTIONS(11864), 1, + ACTIONS(12571), 1, anon_sym_AMP, - ACTIONS(11870), 1, + ACTIONS(12575), 1, sym_primitive_type, - STATE(3497), 1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(8339), 1, + STATE(5469), 1, sym__type_declarator, - STATE(8576), 1, + STATE(6370), 1, sym_pointer_type_declarator, - STATE(11686), 1, + STATE(12380), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(2711), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11868), 4, + ACTIONS(12573), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8574), 5, + STATE(6368), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -664165,389 +736215,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [250268] = 26, + [291002] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6340), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13907), 1, + anon_sym_RPAREN, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250359] = 26, + [291093] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6316), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13068), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 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, - [250450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9703), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(13043), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9705), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [250495] = 26, + [291184] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13070), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13909), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250586] = 26, + [291275] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6506), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13072), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250677] = 26, + [291366] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13074), 1, + ACTIONS(13911), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250768] = 3, + [291457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 11, + ACTIONS(7491), 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(7493), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -664558,9 +736564,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_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_or, @@ -664573,196 +736582,195 @@ 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, + [291502] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6235), 1, + anon_sym_RBRACK, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(13057), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13076), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(6609), 1, sym_argument_list, - STATE(3900), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250904] = 26, + [291593] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12445), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13913), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [250995] = 27, + [291684] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(3734), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13635), 1, anon_sym_class, - ACTIONS(3736), 1, + ACTIONS(13637), 1, anon_sym_struct, - ACTIONS(3738), 1, + ACTIONS(13639), 1, anon_sym_union, - ACTIONS(3742), 1, + ACTIONS(13643), 1, sym_auto, - ACTIONS(3744), 1, + ACTIONS(13645), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(13895), 1, sym_identifier, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(11012), 1, + ACTIONS(13899), 1, sym_primitive_type, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(13038), 1, + ACTIONS(13901), 1, anon_sym_enum, - ACTIONS(13040), 1, + ACTIONS(13903), 1, anon_sym_typename, - STATE(2360), 1, + STATE(2390), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, + STATE(3490), 1, sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(3708), 1, sym_template_type, - STATE(2698), 1, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3809), 1, + sym_type_specifier, + STATE(3826), 1, sym_qualified_type_identifier, - STATE(2997), 1, + STATE(4089), 1, sym_decltype_auto, - STATE(4749), 1, - sym_type_specifier, - STATE(7425), 1, + STATE(8422), 1, sym_argument_list, - STATE(8682), 1, + STATE(9840), 1, sym__scope_resolution, - STATE(2942), 2, + STATE(3997), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13036), 4, + ACTIONS(13897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(4090), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -664770,805 +736778,1069 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [251088] = 26, + [291777] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 1, + ACTIONS(6207), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(13051), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(13055), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(13057), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(6609), 1, sym_argument_list, - STATE(5920), 1, + STATE(6610), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11990), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(13025), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(13027), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(13031), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(13033), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(13037), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(13047), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(13059), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(13041), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(13043), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251179] = 26, + [291868] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(12200), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13228), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13234), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13238), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13244), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13250), 1, + anon_sym_QMARK, + ACTIONS(13252), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13254), 1, + anon_sym_bitor, + ACTIONS(13256), 1, + anon_sym_bitand, + ACTIONS(13915), 1, + anon_sym_COLON, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(12202), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13224), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13226), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13230), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13232), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13236), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13240), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13242), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [291959] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13078), 1, - anon_sym_COMMA, - STATE(3874), 1, + ACTIONS(13917), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251270] = 26, + [292050] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11974), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11988), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(13021), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(13029), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(13035), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(13039), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(13045), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(13051), 1, + anon_sym_QMARK, + ACTIONS(13053), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(13055), 1, + anon_sym_bitor, + ACTIONS(13057), 1, + anon_sym_bitand, + ACTIONS(13919), 1, + anon_sym_RBRACK, + STATE(6609), 1, + sym_argument_list, + STATE(6610), 1, + sym_subscript_argument_list, + ACTIONS(11990), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(13025), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13027), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(13031), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13033), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(13037), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(13047), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(13059), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(13041), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(13043), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [292141] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13080), 1, + ACTIONS(13921), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251361] = 26, + [292232] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13082), 1, - anon_sym_COMMA, - STATE(3874), 1, + ACTIONS(13923), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251452] = 26, + [292323] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13084), 1, - anon_sym_COMMA, - STATE(3874), 1, + ACTIONS(13925), 1, + anon_sym_SEMI, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251543] = 26, + [292414] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13086), 1, - anon_sym_COMMA, - STATE(3874), 1, + ACTIONS(13927), 1, + anon_sym_COLON_RBRACK, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251634] = 26, + [292505] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13088), 1, + ACTIONS(13929), 1, anon_sym_COMMA, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251725] = 26, + [292596] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(13931), 1, + anon_sym_RPAREN, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [292687] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(13090), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13933), 1, + anon_sym_COMMA, + STATE(4188), 1, sym_argument_list, - STATE(5920), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12894), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [292778] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, + anon_sym_SLASH, + ACTIONS(12888), 1, + anon_sym_PIPE, + ACTIONS(12892), 1, + anon_sym_AMP, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + ACTIONS(13935), 1, + anon_sym_COMMA, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12884), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12900), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251816] = 26, + [292869] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13092), 1, + ACTIONS(13937), 1, anon_sym_COMMA, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251907] = 26, + [292960] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13094), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(13939), 1, + anon_sym_COMMA, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251998] = 26, + [293051] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13096), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13941), 1, + anon_sym_COMMA, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252089] = 26, + [293142] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10050), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10052), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12882), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12888), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12892), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12898), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12902), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12904), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12906), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12916), 1, anon_sym_QMARK, - ACTIONS(13098), 1, + ACTIONS(13943), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(4188), 1, sym_argument_list, - STATE(3900), 1, + STATE(4199), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10054), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12319), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12878), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12886), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12890), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12900), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12894), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12896), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [252180] = 3, + [293233] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 11, + ACTIONS(5836), 1, + anon_sym_SEMI, + ACTIONS(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9614), 1, + anon_sym_LPAREN2, + ACTIONS(9620), 1, + anon_sym_LBRACK, + ACTIONS(5671), 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(9878), 25, + ACTIONS(5663), 23, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -665576,8 +737848,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACK, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -665590,216 +737863,542 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [252224] = 27, + [293285] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(12873), 1, + anon_sym_LBRACE, + ACTIONS(13945), 1, + sym_identifier, + STATE(7345), 1, + sym_splice_specifier, + STATE(7704), 1, + sym_field_declaration_list, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8022), 1, + sym__class_declaration_item, + STATE(8024), 1, + sym__class_declaration, + STATE(8792), 1, + sym_ms_declspec_modifier, + STATE(9795), 1, + sym__scope_resolution, + STATE(10623), 1, + sym_virtual_specifier, + STATE(11648), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7244), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7771), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8793), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8454), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293377] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(12873), 1, + anon_sym_LBRACE, + ACTIONS(13945), 1, + sym_identifier, + STATE(7345), 1, + sym_splice_specifier, + STATE(7704), 1, + sym_field_declaration_list, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8022), 1, + sym__class_declaration_item, + STATE(8025), 1, + sym__class_declaration, + STATE(8792), 1, + sym_ms_declspec_modifier, + STATE(9795), 1, + sym__scope_resolution, + STATE(10623), 1, + sym_virtual_specifier, + STATE(11648), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7244), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7771), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8793), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8454), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293469] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10834), 1, + anon_sym_LBRACE, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13947), 1, + sym_identifier, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5420), 1, + sym_field_declaration_list, + STATE(6182), 1, + sym__class_declaration, + STATE(6183), 1, + sym__class_declaration_item, + STATE(8797), 1, + sym_ms_declspec_modifier, + STATE(9822), 1, + sym__scope_resolution, + STATE(10702), 1, + sym_virtual_specifier, + STATE(11815), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4697), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8798), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8461), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293561] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10834), 1, + anon_sym_LBRACE, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13947), 1, + sym_identifier, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5420), 1, + sym_field_declaration_list, + STATE(6183), 1, + sym__class_declaration_item, + STATE(6189), 1, + sym__class_declaration, + STATE(8797), 1, + sym_ms_declspec_modifier, + STATE(9822), 1, + sym__scope_resolution, + STATE(10702), 1, + sym_virtual_specifier, + STATE(11815), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4697), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8798), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8461), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293653] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10834), 1, + anon_sym_LBRACE, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13947), 1, + sym_identifier, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5420), 1, + sym_field_declaration_list, + STATE(6183), 1, + sym__class_declaration_item, + STATE(6191), 1, + sym__class_declaration, + STATE(8797), 1, + sym_ms_declspec_modifier, + STATE(9822), 1, + sym__scope_resolution, + STATE(10702), 1, + sym_virtual_specifier, + STATE(11815), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4697), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8798), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8461), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [293745] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3884), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8297), 1, - anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13949), 1, sym_identifier, - STATE(2605), 1, + STATE(2640), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(2685), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(2719), 1, sym_field_declaration_list, - STATE(3214), 1, + STATE(3039), 1, sym__class_declaration, - STATE(3227), 1, + STATE(3040), 1, sym__class_declaration_item, - STATE(7806), 1, + STATE(8803), 1, sym_ms_declspec_modifier, - STATE(8702), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(10748), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(11448), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2475), 2, + STATE(2443), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(2686), 2, sym_template_type, sym_splice_type_specifier, - STATE(7807), 2, + STATE(8804), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7472), 3, + STATE(8465), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252316] = 27, + [293837] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3884), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8297), 1, - anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13949), 1, sym_identifier, - STATE(2605), 1, + STATE(2640), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(2685), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(2719), 1, sym_field_declaration_list, - STATE(3227), 1, + STATE(3040), 1, sym__class_declaration_item, - STATE(3231), 1, + STATE(3041), 1, sym__class_declaration, - STATE(7806), 1, + STATE(8803), 1, sym_ms_declspec_modifier, - STATE(8702), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(10748), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(11448), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2475), 2, + STATE(2443), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(2686), 2, sym_template_type, sym_splice_type_specifier, - STATE(7807), 2, + STATE(8804), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7472), 3, + STATE(8465), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252408] = 27, + [293929] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3884), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8297), 1, - anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13949), 1, sym_identifier, - STATE(2605), 1, + STATE(2640), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(2685), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(2719), 1, sym_field_declaration_list, - STATE(3227), 1, + STATE(3040), 1, sym__class_declaration_item, - STATE(3233), 1, + STATE(3042), 1, sym__class_declaration, - STATE(7806), 1, + STATE(8803), 1, sym_ms_declspec_modifier, - STATE(8702), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(10748), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(11448), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2475), 2, + STATE(2443), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(2686), 2, sym_template_type, sym_splice_type_specifier, - STATE(7807), 2, + STATE(8804), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7472), 3, + STATE(8465), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252500] = 3, + [294021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 9, + ACTIONS(10232), 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(10234), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -665810,11 +738409,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, @@ -665827,339 +738423,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [252544] = 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(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, - 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, - 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, + anon_sym_GT2, + [294065] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13951), 1, sym_identifier, - STATE(3711), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(6573), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(6991), 1, sym_field_declaration_list, - STATE(4057), 1, + STATE(7109), 1, sym__class_declaration, - STATE(4060), 1, + STATE(7110), 1, sym__class_declaration_item, - STATE(7865), 1, + STATE(8845), 1, sym_ms_declspec_modifier, - STATE(8707), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(10801), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(11831), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3540), 2, + STATE(6384), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(7871), 2, + STATE(8846), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7466), 3, + STATE(8436), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252728] = 27, + [294157] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13951), 1, sym_identifier, - STATE(3711), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(6573), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(6991), 1, sym_field_declaration_list, - STATE(4060), 1, + STATE(7110), 1, sym__class_declaration_item, - STATE(4106), 1, + STATE(7118), 1, sym__class_declaration, - STATE(7865), 1, + STATE(8845), 1, sym_ms_declspec_modifier, - STATE(8707), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(10801), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(11831), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3540), 2, + STATE(6384), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(7871), 2, + STATE(8846), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7466), 3, + STATE(8436), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252820] = 27, + [294249] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13951), 1, sym_identifier, - STATE(3711), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(6573), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(6991), 1, sym_field_declaration_list, - STATE(4060), 1, + STATE(7110), 1, sym__class_declaration_item, - STATE(4107), 1, + STATE(7123), 1, sym__class_declaration, - STATE(7865), 1, + STATE(8845), 1, sym_ms_declspec_modifier, - STATE(8707), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(10801), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(11831), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3540), 2, + STATE(6384), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7871), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7466), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [252912] = 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, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8846), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8436), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253004] = 5, + [294341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, - anon_sym_SEMI, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 15, + ACTIONS(10190), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666168,15 +738631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5638), 19, + ACTIONS(10192), 27, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -666189,26 +738647,35 @@ 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, + [294385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 9, + ACTIONS(10389), 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(9886), 27, + ACTIONS(10391), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666219,11 +738686,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, @@ -666236,10 +738700,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [253096] = 3, + anon_sym_GT2, + [294429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 11, + ACTIONS(10236), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666251,7 +738716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9940), 25, + ACTIONS(10238), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666277,10 +738742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [253140] = 3, + [294473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 11, + ACTIONS(10240), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666292,7 +738757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9742), 25, + ACTIONS(10242), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666318,10 +738783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [253184] = 3, + [294517] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 9, + ACTIONS(5778), 1, + anon_sym_SEMI, + ACTIONS(7109), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9614), 1, + anon_sym_LPAREN2, + ACTIONS(9620), 1, + anon_sym_LBRACK, + ACTIONS(5671), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666331,10 +738804,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9925), 27, + ACTIONS(5663), 23, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -666345,8 +738816,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, @@ -666359,113 +738828,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [253228] = 21, + [294569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(5778), 1, + anon_sym_SEMI, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(5671), 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(5663), 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, - 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, + [294617] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(7378), 1, + anon_sym_LBRACE, + ACTIONS(8597), 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(8599), 1, + anon_sym___declspec, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(13953), 1, + sym_identifier, + STATE(2255), 1, + sym_splice_specifier, + STATE(2267), 1, + sym_field_declaration_list, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2299), 1, + sym__class_declaration, + STATE(2302), 1, + sym__class_declaration_item, + STATE(8791), 1, + sym_ms_declspec_modifier, + STATE(9811), 1, + sym__scope_resolution, + STATE(10811), 1, + sym_virtual_specifier, + STATE(11701), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2199), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2281), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8742), 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, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [253308] = 6, + STATE(8453), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294709] = 3, 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(7371), 4, + ACTIONS(10254), 11, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5657), 29, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10256), 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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, + [294753] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(7378), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(13953), 1, + sym_identifier, + STATE(2255), 1, + sym_splice_specifier, + STATE(2267), 1, + sym_field_declaration_list, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2302), 1, + sym__class_declaration_item, + STATE(2304), 1, + sym__class_declaration, + STATE(8791), 1, + sym_ms_declspec_modifier, + STATE(9811), 1, + sym__scope_resolution, + STATE(10811), 1, + sym_virtual_specifier, + STATE(11701), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [253358] = 3, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2199), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2281), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8742), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8453), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294845] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(7378), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(13953), 1, + sym_identifier, + STATE(2255), 1, + sym_splice_specifier, + STATE(2267), 1, + sym_field_declaration_list, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2302), 1, + sym__class_declaration_item, + STATE(2306), 1, + sym__class_declaration, + STATE(8791), 1, + sym_ms_declspec_modifier, + STATE(9811), 1, + sym__scope_resolution, + STATE(10811), 1, + sym_virtual_specifier, + STATE(11701), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2199), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2281), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8742), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8453), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [294937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 9, + ACTIONS(10416), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666475,7 +739120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9774), 27, + ACTIONS(10418), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666503,205 +739148,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [253402] = 27, + [294981] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(6469), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(8718), 1, + anon_sym_LBRACE, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, + sym_identifier, + STATE(3117), 1, + sym_field_declaration_list, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3250), 1, + sym__class_declaration, + STATE(3251), 1, + sym__class_declaration_item, + STATE(7849), 1, + sym_splice_specifier, + STATE(8867), 1, + sym_ms_declspec_modifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(10610), 1, + sym_virtual_specifier, + STATE(11527), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2803), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8869), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8419), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295073] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13957), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(5157), 1, + STATE(4770), 1, sym_splice_specifier, - STATE(7818), 1, + STATE(8818), 1, sym_ms_declspec_modifier, - STATE(8756), 1, + STATE(9769), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(3791), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7819), 2, + STATE(8819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7409), 3, + STATE(8407), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253494] = 27, + [295165] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13957), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(4327), 1, sym__class_declaration, - STATE(5157), 1, + STATE(4770), 1, sym_splice_specifier, - STATE(7818), 1, + STATE(8818), 1, sym_ms_declspec_modifier, - STATE(8756), 1, + STATE(9769), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(3791), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7819), 2, + STATE(8819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7409), 3, + STATE(8407), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253586] = 27, + [295257] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13957), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(5157), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4770), 1, sym_splice_specifier, - STATE(7818), 1, + STATE(8818), 1, sym_ms_declspec_modifier, - STATE(8756), 1, + STATE(9769), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(3791), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7819), 2, + STATE(8819), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7409), 3, + STATE(8407), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253678] = 3, + [295349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 9, + ACTIONS(10254), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666711,7 +739421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5638), 27, + ACTIONS(10256), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666739,20 +739449,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [253722] = 3, + [295393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 9, + ACTIONS(10258), 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(9932), 27, + ACTIONS(10260), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666763,11 +739475,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, @@ -666780,53 +739489,11 @@ 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, + anon_sym_GT2, + [295437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 11, + ACTIONS(10395), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666838,7 +739505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9944), 25, + ACTIONS(10397), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666864,22 +739531,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [253858] = 3, + [295481] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(8718), 1, + anon_sym_LBRACE, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, + sym_identifier, + STATE(3117), 1, + sym_field_declaration_list, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3251), 1, + sym__class_declaration_item, + STATE(3252), 1, + sym__class_declaration, + STATE(7849), 1, + sym_splice_specifier, + STATE(8867), 1, + sym_ms_declspec_modifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(10610), 1, + sym_virtual_specifier, + STATE(11527), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2803), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8869), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8419), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 11, + ACTIONS(8898), 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(9948), 25, + ACTIONS(3472), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666890,7 +739620,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, @@ -666904,359 +739637,431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [253902] = 27, + [295617] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2958), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11038), 1, + ACTIONS(10602), 1, + anon_sym_LBRACE, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13959), 1, sym_identifier, - STATE(2104), 1, + STATE(4632), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(5169), 1, sym_field_declaration_list, - STATE(2227), 1, + STATE(5837), 1, sym__class_declaration, - STATE(2228), 1, + STATE(5838), 1, sym__class_declaration_item, - STATE(7891), 1, + STATE(8847), 1, sym_ms_declspec_modifier, - STATE(8763), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(10668), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(11771), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2075), 2, + STATE(4464), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(4764), 2, sym_template_type, sym_splice_type_specifier, - STATE(7892), 2, + STATE(8848), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7492), 3, + STATE(8367), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253994] = 27, + [295709] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2958), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11038), 1, + ACTIONS(10602), 1, + anon_sym_LBRACE, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13959), 1, sym_identifier, - STATE(2104), 1, + STATE(4632), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(5169), 1, sym_field_declaration_list, - STATE(2228), 1, + STATE(5838), 1, sym__class_declaration_item, - STATE(2230), 1, + STATE(5839), 1, sym__class_declaration, - STATE(7891), 1, + STATE(8847), 1, sym_ms_declspec_modifier, - STATE(8763), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(10668), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(11771), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2075), 2, + STATE(4464), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(4764), 2, sym_template_type, sym_splice_type_specifier, - STATE(7892), 2, + STATE(8848), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7492), 3, + STATE(8367), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254086] = 16, + [295801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(10264), 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(10266), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(6465), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, + [295845] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11038), 1, + ACTIONS(8718), 1, + anon_sym_LBRACE, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(3117), 1, sym_field_declaration_list, - STATE(2228), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3251), 1, sym__class_declaration_item, - STATE(2232), 1, + STATE(3253), 1, sym__class_declaration, - STATE(7891), 1, + STATE(7849), 1, + sym_splice_specifier, + STATE(8867), 1, sym_ms_declspec_modifier, - STATE(8763), 1, + STATE(9836), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2075), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(3140), 2, sym_template_type, sym_splice_type_specifier, - STATE(7892), 2, + STATE(8869), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7492), 3, + STATE(8419), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254248] = 7, + [295937] = 3, 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, + ACTIONS(10310), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7225), 29, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(10312), 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, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LBRACK, - 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, + 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, + [295981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(10210), 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(10212), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(6465), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, + [296025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10337), 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(10339), 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, + anon_sym_AMP_AMP, + anon_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, + [296069] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + STATE(8522), 1, + sym_ref_qualifier, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9475), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8654), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 6, + anon_sym_LPAREN2, 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, + anon_sym_EQ, + anon_sym_try, + [296155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 9, + ACTIONS(10367), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -667266,7 +740071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9948), 27, + ACTIONS(10369), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -667294,10 +740099,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [254414] = 3, + [296199] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 1, + anon_sym_SEMI, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(5671), 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(5663), 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, + [296247] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + STATE(8534), 1, + sym_ref_qualifier, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9482), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8658), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_try, + [296333] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 1, + anon_sym_SEMI, + ACTIONS(11194), 1, + sym_literal_suffix, + ACTIONS(5671), 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(5663), 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, + [296381] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10602), 1, + anon_sym_LBRACE, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13959), 1, + sym_identifier, + STATE(4632), 1, + sym_splice_specifier, + STATE(4808), 1, + sym__splice_specialization_specifier, + STATE(5169), 1, + sym_field_declaration_list, + STATE(5838), 1, + sym__class_declaration_item, + STATE(5840), 1, + sym__class_declaration, + STATE(8847), 1, + sym_ms_declspec_modifier, + STATE(9790), 1, + sym__scope_resolution, + STATE(10668), 1, + sym_virtual_specifier, + STATE(11771), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4464), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4764), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8848), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8367), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [296473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 11, + ACTIONS(10404), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -667309,7 +740327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9770), 25, + ACTIONS(10406), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -667335,20 +740353,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [254458] = 3, + [296517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 9, + ACTIONS(10408), 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), 27, + ACTIONS(10410), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -667359,10 +740379,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, @@ -667376,10 +740393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [254502] = 3, + anon_sym_GT2, + [296561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 11, + ACTIONS(10385), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -667391,7 +740409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9750), 25, + ACTIONS(10387), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -667417,22 +740435,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [254546] = 3, + [296605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 11, + ACTIONS(10222), 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(9766), 25, + ACTIONS(10224), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -667443,8 +740459,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, @@ -667457,927 +740476,1266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [254590] = 27, + [296649] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(4925), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254682] = 27, + [296741] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9965), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, - anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(4305), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4446), 1, - sym__class_declaration, - STATE(4448), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7326), 1, + STATE(4327), 1, + sym__class_declaration, + STATE(4349), 1, sym_splice_specifier, - STATE(7837), 1, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8745), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7838), 2, + STATE(4925), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7482), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254774] = 27, + [296833] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5140), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11427), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5954), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(6064), 1, - sym__class_declaration, - STATE(6065), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7867), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8757), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7868), 2, + STATE(4925), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7455), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254866] = 27, + [296925] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5778), 1, + anon_sym_SEMI, + ACTIONS(11194), 1, + sym_literal_suffix, + ACTIONS(5671), 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(5663), 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, + [296973] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5140), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11427), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5954), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(6065), 1, - sym__class_declaration_item, - STATE(6084), 1, + STATE(4323), 1, sym__class_declaration, - STATE(7867), 1, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8757), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7868), 2, + STATE(4926), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7455), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254958] = 27, + [297065] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9965), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, - anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(4305), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4448), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(4451), 1, + STATE(4327), 1, sym__class_declaration, - STATE(7326), 1, + STATE(4349), 1, sym_splice_specifier, - STATE(7837), 1, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8745), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7838), 2, + STATE(4926), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7482), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255050] = 27, + [297157] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4495), 2, + STATE(4926), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255142] = 27, + [297249] = 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, + ACTIONS(10284), 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(10286), 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, + [297293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10416), 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(10418), 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, + [297337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5671), 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(5663), 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, + [297381] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(13963), 1, + anon_sym___attribute__, + ACTIONS(13966), 1, + anon_sym___attribute, + ACTIONS(13969), 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, + ACTIONS(13975), 1, + anon_sym_requires, + STATE(9000), 1, + sym_trailing_return_type, + STATE(9053), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13972), 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(4495), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 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, - [255234] = 27, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8565), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7623), 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, + [297461] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13978), 1, sym_identifier, - STATE(3808), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4793), 1, + STATE(3838), 1, sym__class_declaration, - STATE(4884), 1, + STATE(3839), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(6696), 1, + sym_splice_specifier, + STATE(6972), 1, + sym_field_declaration_list, + STATE(8777), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10754), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11788), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(4495), 2, + STATE(6571), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8790), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8434), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255326] = 27, + [297553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10258), 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(10260), 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, + [297597] = 27, 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, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11427), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13978), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(5954), 1, - sym_field_declaration_list, - STATE(6033), 1, - sym__class_declaration, - STATE(6065), 1, + STATE(3839), 1, sym__class_declaration_item, - STATE(7867), 1, + STATE(3840), 1, + sym__class_declaration, + STATE(6696), 1, + sym_splice_specifier, + STATE(6972), 1, + sym_field_declaration_list, + STATE(8777), 1, sym_ms_declspec_modifier, - STATE(8757), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(10754), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(11788), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(7868), 2, + STATE(6571), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8790), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7455), 3, + STATE(8434), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255418] = 25, + [297689] = 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(10302), 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(10304), 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, + [297733] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10306), 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(10308), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + 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, + [297777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10268), 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(10270), 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, - ACTIONS(12243), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [297821] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10222), 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, - [255506] = 27, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10224), 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, + [297865] = 21, 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, - 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, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(13008), 1, anon_sym___attribute__, + ACTIONS(13011), 1, 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(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, - 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, + ACTIONS(13014), 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, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9057), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 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(4503), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 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, - [255690] = 27, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8563), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 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, + [297945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10345), 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(10347), 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, + [297989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10333), 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(10335), 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, + [298033] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 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(5966), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10516), 1, + anon_sym_STAR, + ACTIONS(10518), 1, + anon_sym_AMP_AMP, + ACTIONS(10520), 1, + anon_sym_AMP, + ACTIONS(10522), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(5245), 1, + sym_parameter_list, + STATE(9224), 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, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9600), 1, sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + STATE(9905), 1, + sym__abstract_declarator, + ACTIONS(7862), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(7864), 5, + anon_sym_COLON, 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(4503), 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, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [255782] = 27, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [298113] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10236), 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(10238), 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, + [298157] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13978), 1, sym_identifier, - STATE(3808), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(3839), 1, + sym__class_declaration_item, + STATE(3841), 1, + sym__class_declaration, + STATE(6696), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(6972), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7828), 1, + STATE(8777), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10754), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11788), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(4503), 2, + STATE(6571), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8790), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8434), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255874] = 7, + [298249] = 3, 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, + ACTIONS(10371), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668387,8 +741745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5638), 23, + ACTIONS(10373), 27, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -668399,6 +741759,8 @@ 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, @@ -668411,10 +741773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [255926] = 3, + [298293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 11, + ACTIONS(10190), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668426,7 +741788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9738), 25, + ACTIONS(10192), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668452,64 +741814,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [255970] = 16, + [298337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(10280), 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(10282), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6463), 1, anon_sym_STAR, - ACTIONS(6465), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, + [298381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10240), 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(10242), 27, + anon_sym_DOT_DOT_DOT, 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, - [256040] = 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [298425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 9, + ACTIONS(10194), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668519,7 +741909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9940), 27, + ACTIONS(10196), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668533,8 +741923,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, @@ -668547,10 +741937,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256084] = 3, + [298469] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9063), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8569), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 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, + [298549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 9, + ACTIONS(10198), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668560,7 +742009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9921), 27, + ACTIONS(10200), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668588,10 +742037,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256128] = 3, + [298593] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, + sym_identifier, + ACTIONS(13980), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4323), 1, + sym__class_declaration, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4349), 1, + sym_splice_specifier, + STATE(8843), 1, + sym_ms_declspec_modifier, + STATE(9805), 1, + sym__scope_resolution, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7016), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8844), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8406), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [298685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 11, + ACTIONS(10284), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668603,7 +742117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9814), 25, + ACTIONS(10286), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668629,22 +742143,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [256172] = 3, + [298729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 11, + ACTIONS(10385), 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(9806), 25, + ACTIONS(10387), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668655,8 +742167,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, @@ -668669,11 +742184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [256216] = 3, + [298773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 9, + ACTIONS(10389), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668683,7 +742197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9597), 27, + ACTIONS(10391), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668711,10 +742225,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256260] = 3, + [298817] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, + sym_identifier, + ACTIONS(13980), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4327), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8843), 1, + sym_ms_declspec_modifier, + STATE(9805), 1, + sym__scope_resolution, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7016), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8844), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8406), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [298909] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, + sym_identifier, + ACTIONS(13980), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8843), 1, + sym_ms_declspec_modifier, + STATE(9805), 1, + sym__scope_resolution, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7016), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8844), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8406), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [299001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 9, + ACTIONS(10375), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668724,7 +742368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(3488), 27, + ACTIONS(10377), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668738,8 +742382,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, @@ -668752,14 +742396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256304] = 5, + [299045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 1, - anon_sym_SEMI, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 9, + ACTIONS(5671), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668769,8 +742409,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5638), 25, + ACTIONS(5663), 27, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -668783,6 +742424,7 @@ 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, @@ -668795,10 +742437,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256352] = 3, + [299089] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10524), 1, + anon_sym_STAR, + ACTIONS(10526), 1, + anon_sym_AMP_AMP, + ACTIONS(10528), 1, + anon_sym_AMP, + ACTIONS(10530), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5394), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9586), 1, + sym__scope_resolution, + STATE(9861), 1, + sym__abstract_declarator, + ACTIONS(7862), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7864), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [299169] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(8523), 1, + sym_ref_qualifier, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9465), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8650), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_try, + [299255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 11, + ACTIONS(10412), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668810,7 +742573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9824), 25, + ACTIONS(10414), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668836,911 +742599,725 @@ 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, + [299299] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, + ACTIONS(11291), 1, anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(11653), 1, + anon_sym_COLON_COLON, + ACTIONS(13982), 1, sym_identifier, - STATE(3028), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3190), 1, - sym__class_declaration, - STATE(3863), 1, + STATE(4406), 1, sym_field_declaration_list, - STATE(7260), 1, + STATE(4513), 1, + sym__class_declaration, + STATE(4517), 1, + sym__class_declaration_item, + STATE(8086), 1, sym_splice_specifier, - STATE(7859), 1, + STATE(8856), 1, sym_ms_declspec_modifier, - STATE(8711), 1, + STATE(9755), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7860), 2, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8857), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7475), 3, + STATE(8405), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9599), 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), 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, - [256602] = 6, + [299391] = 27, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, 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__, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9572), 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_or, - anon_sym_and, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, + anon_sym_COLON_COLON, + ACTIONS(13982), 1, + sym_identifier, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4406), 1, + sym_field_declaration_list, + STATE(4517), 1, + sym__class_declaration_item, + STATE(4520), 1, + sym__class_declaration, + STATE(8086), 1, + sym_splice_specifier, + STATE(8856), 1, + sym_ms_declspec_modifier, + STATE(9755), 1, + sym__scope_resolution, + STATE(10792), 1, + sym_virtual_specifier, + STATE(11817), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [256652] = 27, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3772), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8857), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8405), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [299483] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, + anon_sym_COLON_COLON, + ACTIONS(13982), 1, sym_identifier, - STATE(3808), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4406), 1, sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4517), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4541), 1, + sym__class_declaration, + STATE(8086), 1, + sym_splice_specifier, + STATE(8856), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9755), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4473), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8857), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8405), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256744] = 27, + [299575] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9242), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(3490), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(4011), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4132), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4133), 1, + sym__class_declaration_item, + STATE(8760), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9840), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10626), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11559), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4473), 2, + STATE(3394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8773), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8388), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256836] = 27, + [299667] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(12545), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13605), 1, + anon_sym_COLON_COLON, + ACTIONS(13986), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(7367), 1, sym_field_declaration_list, - STATE(4793), 1, + STATE(7852), 1, sym__class_declaration, - STATE(4884), 1, + STATE(7853), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(8871), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10709), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11590), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4473), 2, + STATE(6919), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8873), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8431), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256928] = 27, + [299759] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(12545), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13605), 1, + anon_sym_COLON_COLON, + ACTIONS(13986), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(7367), 1, sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(7853), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7854), 1, + sym__class_declaration, + STATE(8871), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10709), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11590), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4474), 2, + STATE(6919), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8873), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8431), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257020] = 27, + [299851] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(12545), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13605), 1, + anon_sym_COLON_COLON, + ACTIONS(13986), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(7367), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(7853), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(7855), 1, sym__class_declaration, - STATE(7828), 1, + STATE(8871), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10709), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11590), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4474), 2, + STATE(6919), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8873), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8431), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257112] = 27, + [299943] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4793), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4474), 2, + STATE(4953), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 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, + [300035] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3028), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3144), 1, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4324), 1, sym__class_declaration_item, - STATE(3155), 1, + STATE(4327), 1, sym__class_declaration, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7260), 1, + STATE(4349), 1, sym_splice_specifier, - STATE(7859), 1, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8711), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(4953), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7860), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7475), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9826), 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(9828), 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, - [257384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9792), 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(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, + [300127] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3028), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3091), 1, - sym__class_declaration, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3863), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(7260), 1, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, sym_splice_specifier, - STATE(7859), 1, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8711), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(4953), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7860), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7475), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257520] = 16, + [300219] = 27, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9242), 1, 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(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, + sym_identifier, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(4011), 1, + sym_field_declaration_list, + STATE(4133), 1, + sym__class_declaration_item, + STATE(4134), 1, + sym__class_declaration, + STATE(8760), 1, + sym_ms_declspec_modifier, + STATE(9840), 1, + sym__scope_resolution, + STATE(10626), 1, + sym_virtual_specifier, + STATE(11559), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3394), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8773), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8388), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [300311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 9, + ACTIONS(10333), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -669750,7 +743327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9738), 27, + ACTIONS(10335), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -669778,337 +743355,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [257634] = 10, + [300355] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - ACTIONS(13129), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(13131), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9242), 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, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, + sym_identifier, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(4011), 1, + sym_field_declaration_list, + STATE(4133), 1, + sym__class_declaration_item, + STATE(4135), 1, + sym__class_declaration, + STATE(8760), 1, + sym_ms_declspec_modifier, + STATE(9840), 1, + sym__scope_resolution, + STATE(10626), 1, + sym_virtual_specifier, + STATE(11559), 1, + sym_base_class_clause, + ACTIONS(7380), 2, 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, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3394), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8773), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8388), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [300447] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4528), 2, + STATE(4954), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257832] = 27, + [300539] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(4327), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4528), 2, + STATE(4954), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257924] = 27, + [300631] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4528), 2, + STATE(4954), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258016] = 3, + [300723] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 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(4928), 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, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 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, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11445), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [258060] = 3, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(8528), 1, + sym_ref_qualifier, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9466), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8646), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [300809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 11, + ACTIONS(10105), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -670120,7 +743692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9898), 25, + ACTIONS(10103), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -670146,1012 +743718,971 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [258104] = 27, + [300853] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3300), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9572), 1, + anon_sym_LBRACE, + ACTIONS(11663), 1, + anon_sym_COLON_COLON, + ACTIONS(13988), 1, + sym_identifier, + STATE(4129), 1, + sym_splice_specifier, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4406), 1, + sym_field_declaration_list, + STATE(4513), 1, + sym__class_declaration, + STATE(4517), 1, + sym__class_declaration_item, + STATE(8751), 1, + sym_ms_declspec_modifier, + STATE(9761), 1, + sym__scope_resolution, + STATE(10792), 1, + sym_virtual_specifier, + STATE(11817), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3772), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8743), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8364), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [300945] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(4327), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4533), 2, + STATE(3791), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258196] = 27, + [301037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 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(4980), 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, + [301081] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3300), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11663), 1, + anon_sym_COLON_COLON, + ACTIONS(13988), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4129), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4406), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4517), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4520), 1, + sym__class_declaration, + STATE(8751), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9761), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4533), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8743), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8364), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258288] = 27, + [301173] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3300), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11663), 1, + anon_sym_COLON_COLON, + ACTIONS(13988), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4129), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4406), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4517), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4541), 1, + sym__class_declaration, + STATE(8751), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9761), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8743), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8364), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258380] = 3, + [301265] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + ACTIONS(10050), 1, + anon_sym_LBRACK, + ACTIONS(10052), 1, + anon_sym_DOT, + ACTIONS(12748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12882), 1, anon_sym_SLASH, + ACTIONS(12888), 1, anon_sym_PIPE, + ACTIONS(12892), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9810), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12898), 1, + anon_sym_GT_EQ, + ACTIONS(12902), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12904), 1, + anon_sym_bitor, + ACTIONS(12906), 1, + anon_sym_bitand, + ACTIONS(12916), 1, + anon_sym_QMARK, + STATE(4188), 1, + sym_argument_list, + STATE(4199), 1, + sym_subscript_argument_list, + ACTIONS(10054), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12319), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12878), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12880), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12884), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12886), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12890), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12900), 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, + ACTIONS(12894), 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, - [258424] = 27, + ACTIONS(12896), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [301353] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3161), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9965), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(13847), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13990), 1, sym_identifier, - STATE(4272), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(5034), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(5858), 1, sym_field_declaration_list, - STATE(4446), 1, + STATE(6747), 1, sym__class_declaration, - STATE(4448), 1, + STATE(6751), 1, sym__class_declaration_item, - STATE(7852), 1, + STATE(8748), 1, sym_ms_declspec_modifier, - STATE(8676), 1, + STATE(9816), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10742), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11429), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3966), 2, + STATE(4830), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(5039), 2, sym_template_type, sym_splice_type_specifier, - STATE(7853), 2, + STATE(8749), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7450), 3, + STATE(8371), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258516] = 27, + [301445] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3161), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9965), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(13847), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13990), 1, sym_identifier, - STATE(4272), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(5034), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(5858), 1, sym_field_declaration_list, - STATE(4448), 1, + STATE(6751), 1, sym__class_declaration_item, - STATE(4451), 1, + STATE(6755), 1, sym__class_declaration, - STATE(7852), 1, + STATE(8748), 1, sym_ms_declspec_modifier, - STATE(8676), 1, + STATE(9816), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10742), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11429), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3966), 2, + STATE(4830), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(5039), 2, sym_template_type, sym_splice_type_specifier, - STATE(7853), 2, + STATE(8749), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7450), 3, + STATE(8371), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9830), 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(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, - 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, - [258652] = 27, + [301537] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3161), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9965), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(13847), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13990), 1, sym_identifier, - STATE(4272), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(5034), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(5858), 1, sym_field_declaration_list, - STATE(4448), 1, + STATE(6751), 1, sym__class_declaration_item, - STATE(4456), 1, + STATE(6757), 1, sym__class_declaration, - STATE(7852), 1, + STATE(8748), 1, sym_ms_declspec_modifier, - STATE(8676), 1, + STATE(9816), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10742), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11429), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3966), 2, + STATE(4830), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(5039), 2, sym_template_type, sym_splice_type_specifier, - STATE(7853), 2, + STATE(8749), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7450), 3, + STATE(8371), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9740), 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(9742), 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, - [258788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9856), 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(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, - 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, - [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, + [301629] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4415), 2, + STATE(4970), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258982] = 27, + [301721] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(12873), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13945), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(7345), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(7704), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8021), 1, sym__class_declaration, - STATE(7828), 1, + STATE(8022), 1, + sym__class_declaration_item, + STATE(8792), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9795), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10623), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11648), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4415), 2, + STATE(7244), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7771), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8793), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8454), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259074] = 27, + [301813] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4415), 2, + STATE(4970), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259166] = 27, + [301905] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4418), 2, + STATE(4973), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259258] = 27, + [301997] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(4327), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4418), 2, + STATE(4973), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259350] = 27, + [302089] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4418), 2, + STATE(4973), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259442] = 3, + [302181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 9, + ACTIONS(10288), 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(9862), 27, + ACTIONS(10290), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671162,11 +744693,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, @@ -671179,10 +744707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [259486] = 3, + anon_sym_GT2, + [302225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 9, + ACTIONS(10363), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -671192,7 +744721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9814), 27, + ACTIONS(10365), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671220,22 +744749,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [259530] = 3, + [302269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 11, + ACTIONS(10404), 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(10406), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671246,8 +744773,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,11 +744790,75 @@ 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, + [302313] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(8718), 1, + anon_sym_LBRACE, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(13992), 1, + sym_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3117), 1, + sym_field_declaration_list, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3250), 1, + sym__class_declaration, + STATE(3251), 1, + sym__class_declaration_item, + STATE(8808), 1, + sym_ms_declspec_modifier, + STATE(9763), 1, + sym__scope_resolution, + STATE(10610), 1, + sym_virtual_specifier, + STATE(11527), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2803), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8809), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8468), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [302405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 9, + ACTIONS(10408), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -671274,7 +744868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9874), 27, + ACTIONS(10410), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671302,20 +744896,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [259618] = 3, + [302449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 9, + ACTIONS(10363), 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(10365), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671326,11 +744922,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,22 +744936,21 @@ 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, + [302493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 11, + ACTIONS(10412), 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(9858), 25, + ACTIONS(10414), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671369,7 +744961,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, @@ -671383,474 +744978,465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [259706] = 27, + [302537] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4435), 2, + STATE(4988), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259798] = 27, + [302629] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(4327), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4435), 2, + STATE(4988), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259890] = 27, + [302721] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4435), 2, + STATE(4988), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259982] = 27, + [302813] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4436), 2, + STATE(4989), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260074] = 27, + [302905] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(4327), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4436), 2, + STATE(4989), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260166] = 27, + [302997] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4436), 2, + STATE(4989), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260258] = 27, + [303089] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3764), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(13992), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(3037), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(3117), 1, sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3251), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(3252), 1, + sym__class_declaration, + STATE(8808), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9763), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4501), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8809), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8468), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260350] = 7, + [303181] = 3, ACTIONS(3), 1, sym_comment, - 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(5645), 9, + ACTIONS(10341), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -671860,8 +745446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5638), 23, + ACTIONS(10343), 27, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -671872,6 +745460,8 @@ 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, @@ -671884,1073 +745474,1067 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [260402] = 27, + [303225] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4323), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4501), 2, + STATE(4996), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260494] = 27, + [303317] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4327), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4501), 2, + STATE(4996), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260586] = 5, + [303409] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, - anon_sym_SEMI, - ACTIONS(7227), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 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(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, + sym_ms_declspec_modifier, + STATE(9818), 1, + sym__scope_resolution, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4996), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [303501] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(3045), 1, + STATE(4323), 1, sym__class_declaration, - STATE(3048), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7878), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8682), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7879), 2, + STATE(4997), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7418), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260726] = 27, + [303593] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(3048), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(3049), 1, + STATE(4327), 1, sym__class_declaration, - STATE(7878), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8682), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7879), 2, + STATE(4997), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7418), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260818] = 27, + [303685] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4449), 2, + STATE(4997), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260910] = 27, + [303777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10268), 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(10270), 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, + [303821] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3764), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(13992), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(3037), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(3117), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3251), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(3253), 1, sym__class_declaration, - STATE(7828), 1, + STATE(8808), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9763), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4449), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8809), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8468), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261002] = 27, + [303913] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + anon_sym_DOT, + ACTIONS(10204), 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, + [303957] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4793), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4449), 2, + STATE(5018), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261094] = 27, + [304049] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4450), 2, + STATE(5005), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261186] = 27, + [304141] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(4327), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4450), 2, + STATE(5005), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261278] = 27, + [304233] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4450), 2, + STATE(5005), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261370] = 27, + [304325] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(3048), 1, - sym__class_declaration_item, - STATE(3057), 1, + STATE(4323), 1, sym__class_declaration, - STATE(7878), 1, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8682), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7879), 2, + STATE(5006), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7418), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 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, + [304417] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, 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__, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9630), 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_or, - anon_sym_and, + ACTIONS(13961), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4327), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, + sym_ms_declspec_modifier, + STATE(9818), 1, + sym__scope_resolution, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, 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, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5006), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [304509] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8503), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(3530), 1, - sym__class_declaration, - STATE(3531), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7869), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8686), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2606), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2934), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7870), 2, + STATE(5006), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7504), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261736] = 27, + [304601] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(4128), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8503), 1, - anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13994), 1, sym_identifier, - STATE(2742), 1, + STATE(2836), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2890), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(2970), 1, sym_field_declaration_list, - STATE(3531), 1, - sym__class_declaration_item, - STATE(3532), 1, + STATE(3340), 1, sym__class_declaration, - STATE(7869), 1, + STATE(3341), 1, + sym__class_declaration_item, + STATE(8754), 1, sym_ms_declspec_modifier, - STATE(8686), 1, + STATE(9817), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(10632), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(11620), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2606), 2, + STATE(2559), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(2876), 2, sym_template_type, sym_splice_type_specifier, - STATE(7870), 2, + STATE(8755), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7504), 3, + STATE(8381), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261828] = 7, + [304693] = 3, 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, + ACTIONS(10210), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -672960,8 +746544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5638), 23, + ACTIONS(10212), 27, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -672972,6 +746558,8 @@ 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, @@ -672984,22 +746572,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [261880] = 3, + [304737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 11, + ACTIONS(10218), 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(9936), 25, + ACTIONS(10220), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -673010,7 +746596,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, @@ -673024,122 +746613,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [261924] = 27, + [304781] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(4128), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8503), 1, - anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13994), 1, sym_identifier, - STATE(2742), 1, + STATE(2836), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2890), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(2970), 1, sym_field_declaration_list, - STATE(3531), 1, + STATE(3341), 1, sym__class_declaration_item, - STATE(3533), 1, + STATE(3342), 1, sym__class_declaration, - STATE(7869), 1, + STATE(8754), 1, sym_ms_declspec_modifier, - STATE(8686), 1, + STATE(9817), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(10632), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(11620), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2606), 2, + STATE(2559), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(2876), 2, sym_template_type, sym_splice_type_specifier, - STATE(7870), 2, + STATE(8755), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7504), 3, + STATE(8381), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [262016] = 21, + [304873] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, + ACTIONS(10951), 1, anon_sym_DASH_GT, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10382), 1, + ACTIONS(10963), 1, anon_sym_requires, - ACTIONS(12406), 1, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(13966), 1, anon_sym___attribute, - ACTIONS(12412), 1, + ACTIONS(13969), 1, anon_sym_LBRACK_LBRACK, - STATE(7999), 1, + STATE(9034), 1, sym_trailing_return_type, - STATE(8069), 1, + STATE(9058), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - STATE(7661), 3, + STATE(8570), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 9, + ACTIONS(7623), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -673149,133 +746737,10 @@ static const uint16_t ts_small_parse_table[] = { 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, + [304953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 9, + ACTIONS(10232), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -673285,7 +746750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9894), 27, + ACTIONS(10234), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -673313,145 +746778,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [262272] = 3, + [304997] = 27, 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(2422), 1, + anon_sym_decltype, + ACTIONS(4128), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11671), 1, + anon_sym_COLON_COLON, + ACTIONS(13994), 1, + sym_identifier, + STATE(2836), 1, + sym_splice_specifier, + STATE(2890), 1, + sym__splice_specialization_specifier, + STATE(2970), 1, + sym_field_declaration_list, + STATE(3341), 1, + sym__class_declaration_item, + STATE(3343), 1, + sym__class_declaration, + STATE(8754), 1, + sym_ms_declspec_modifier, + STATE(9817), 1, + sym__scope_resolution, + STATE(10632), 1, + sym_virtual_specifier, + STATE(11620), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2559), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2876), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8755), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [305089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13139), 1, - anon_sym_COMMA, - ACTIONS(13141), 1, - anon_sym_RBRACK, - ACTIONS(5645), 9, + ACTIONS(8898), 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_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, + ACTIONS(3472), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -673462,11 +746869,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, @@ -673479,10 +746883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [262452] = 3, + anon_sym_GT2, + [305133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 9, + ACTIONS(10264), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -673492,7 +746897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9794), 27, + ACTIONS(10266), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -673520,92 +746925,10 @@ static const uint16_t ts_small_parse_table[] = { 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, + [305177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 9, + ACTIONS(10280), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -673615,7 +746938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9820), 27, + ACTIONS(10282), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -673643,10 +746966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [262628] = 3, + [305221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 11, + ACTIONS(10310), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -673658,7 +746981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9832), 25, + ACTIONS(10312), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -673684,10 +747007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [262672] = 3, + [305265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 11, + ACTIONS(10337), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -673699,7 +747022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9780), 25, + ACTIONS(10339), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -673725,32 +747048,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [262716] = 11, + [305309] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(9314), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - STATE(3117), 1, + STATE(3869), 1, sym_attribute_specifier, - STATE(7712), 1, + STATE(8631), 1, sym_field_declaration_list, - STATE(9484), 1, + STATE(10607), 1, sym_virtual_specifier, - STATE(10465), 1, + STATE(11519), 1, sym_base_class_clause, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(7237), 3, + ACTIONS(7372), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7235), 23, + ACTIONS(7370), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -673774,156 +747097,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [262776] = 5, + [305369] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 1, - anon_sym_SEMI, - ACTIONS(7227), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(12315), 1, + anon_sym_LBRACE, + ACTIONS(13428), 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, + ACTIONS(13996), 1, + sym_identifier, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6979), 1, + sym_splice_specifier, + STATE(7109), 1, + sym__class_declaration, + STATE(7110), 1, + sym__class_declaration_item, + STATE(7401), 1, + sym_field_declaration_list, + STATE(8761), 1, + sym_ms_declspec_modifier, + STATE(9815), 1, + sym__scope_resolution, + STATE(10720), 1, + sym_virtual_specifier, + STATE(11760), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, anon_sym___attribute__, - ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6888), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8762), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8392), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [305461] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 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, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(12315), 1, + anon_sym_LBRACE, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(13996), 1, + sym_identifier, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6979), 1, + sym_splice_specifier, + STATE(7110), 1, + sym__class_declaration_item, + STATE(7118), 1, + sym__class_declaration, + STATE(7401), 1, + sym_field_declaration_list, + STATE(8761), 1, + sym_ms_declspec_modifier, + STATE(9815), 1, + sym__scope_resolution, + STATE(10720), 1, + sym_virtual_specifier, + STATE(11760), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6888), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8762), 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, + STATE(8392), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [305553] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(12315), 1, anon_sym_LBRACE, - [262910] = 3, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(13996), 1, + sym_identifier, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6979), 1, + sym_splice_specifier, + STATE(7110), 1, + sym__class_declaration_item, + STATE(7123), 1, + sym__class_declaration, + STATE(7401), 1, + sym_field_declaration_list, + STATE(8761), 1, + sym_ms_declspec_modifier, + STATE(9815), 1, + sym__scope_resolution, + STATE(10720), 1, + sym_virtual_specifier, + STATE(11760), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6888), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8762), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8392), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [305645] = 27, 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(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, + sym_ms_declspec_modifier, + STATE(9818), 1, + sym__scope_resolution, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3791), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [305737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 9, + ACTIONS(10105), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -673933,7 +747370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9790), 27, + ACTIONS(10103), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -673961,205 +747398,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [262998] = 27, + [305781] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3028), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3190), 1, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4323), 1, sym__class_declaration, - STATE(3800), 1, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4349), 1, sym_splice_specifier, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7861), 1, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8738), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(4928), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7862), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7412), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263090] = 27, + [305873] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3028), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3144), 1, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4324), 1, sym__class_declaration_item, - STATE(3155), 1, + STATE(4327), 1, sym__class_declaration, - STATE(3800), 1, + STATE(4349), 1, sym_splice_specifier, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7861), 1, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8738), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(4928), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7862), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7412), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263182] = 27, + [305965] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(13961), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4327), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, + sym_ms_declspec_modifier, + STATE(9818), 1, + sym__scope_resolution, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5018), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [306057] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11510), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(13998), 1, sym_identifier, - STATE(3028), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(3091), 1, + STATE(3838), 1, sym__class_declaration, - STATE(3144), 1, + STATE(3839), 1, sym__class_declaration_item, - STATE(3800), 1, + STATE(8373), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(8624), 1, sym_field_declaration_list, - STATE(7861), 1, + STATE(8820), 1, sym_ms_declspec_modifier, - STATE(8738), 1, + STATE(9814), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10718), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11777), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(8311), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7862), 2, + STATE(8821), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7412), 3, + STATE(8409), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263274] = 3, + [306149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 11, + ACTIONS(10367), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -674171,7 +747673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9820), 25, + ACTIONS(10369), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -674197,487 +747699,580 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [263318] = 24, + [306193] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(13998), 1, + sym_identifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3839), 1, + sym__class_declaration_item, + STATE(3840), 1, + sym__class_declaration, + STATE(8373), 1, + sym_splice_specifier, + STATE(8624), 1, + sym_field_declaration_list, + STATE(8820), 1, + sym_ms_declspec_modifier, + STATE(9814), 1, + sym__scope_resolution, + STATE(10718), 1, + sym_virtual_specifier, + STATE(11777), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3420), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8311), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8821), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8409), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [306285] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(13998), 1, + sym_identifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3839), 1, + sym__class_declaration_item, + STATE(3841), 1, + sym__class_declaration, + STATE(8373), 1, + sym_splice_specifier, + STATE(8624), 1, + sym_field_declaration_list, + STATE(8820), 1, + sym_ms_declspec_modifier, + STATE(9814), 1, + sym__scope_resolution, + STATE(10718), 1, + sym_virtual_specifier, + STATE(11777), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3420), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8311), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8821), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8409), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [306377] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10934), 1, anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11435), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(14003), 1, anon_sym_requires, - STATE(7583), 1, + STATE(8532), 1, sym_ref_qualifier, - STATE(8510), 1, + STATE(9534), 1, sym__function_attributes_end, - STATE(8511), 1, + STATE(9535), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - STATE(7733), 3, + STATE(8651), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 6, + ACTIONS(7474), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [263404] = 21, + [306463] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10372), 1, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(12406), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(12412), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(11439), 1, anon_sym_requires, - STATE(8013), 1, - sym_trailing_return_type, - STATE(8066), 1, + STATE(8538), 1, + sym_ref_qualifier, + STATE(9571), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9639), 1, + sym_trailing_return_type, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12415), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - STATE(7656), 3, + STATE(8642), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 9, + ACTIONS(7474), 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, - [263484] = 27, + [306549] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(4304), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9690), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(14006), 1, sym_identifier, - STATE(3028), 1, + STATE(4119), 1, + sym_splice_specifier, + STATE(4182), 1, sym__splice_specialization_specifier, - STATE(3144), 1, + STATE(4366), 1, + sym_field_declaration_list, + STATE(4740), 1, sym__class_declaration_item, - STATE(3190), 1, + STATE(4743), 1, sym__class_declaration, - STATE(7481), 1, - sym_splice_specifier, - STATE(7709), 1, - sym_field_declaration_list, - STATE(7823), 1, + STATE(8766), 1, sym_ms_declspec_modifier, - STATE(8691), 1, + STATE(9844), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(10775), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(11821), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7348), 2, + STATE(3818), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7826), 2, + STATE(4328), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8767), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7480), 3, + STATE(8418), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 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, + [306641] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(4304), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9690), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(14006), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3155), 1, - sym__class_declaration, - STATE(7481), 1, + STATE(4119), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(4182), 1, + sym__splice_specialization_specifier, + STATE(4366), 1, sym_field_declaration_list, - STATE(7823), 1, + STATE(4719), 1, + sym__class_declaration, + STATE(4740), 1, + sym__class_declaration_item, + STATE(8766), 1, sym_ms_declspec_modifier, - STATE(8691), 1, + STATE(9844), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(10775), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(11821), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7348), 2, + STATE(3818), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7826), 2, + STATE(4328), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8767), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7480), 3, + STATE(8418), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263756] = 27, + [306733] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(4304), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(9690), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(14006), 1, sym_identifier, - STATE(3711), 1, + STATE(4119), 1, + sym_splice_specifier, + STATE(4182), 1, sym__splice_specialization_specifier, - STATE(4057), 1, + STATE(4366), 1, + sym_field_declaration_list, + STATE(4721), 1, sym__class_declaration, - STATE(4060), 1, + STATE(4740), 1, sym__class_declaration_item, - STATE(4263), 1, - sym_splice_specifier, - STATE(4380), 1, - sym_field_declaration_list, - STATE(7885), 1, + STATE(8766), 1, sym_ms_declspec_modifier, - STATE(8675), 1, + STATE(9844), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(10775), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(11821), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4032), 2, + STATE(3818), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7886), 2, + STATE(4328), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8767), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7420), 3, + STATE(8418), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263848] = 27, + [306825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4982), 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(4980), 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, + [306869] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 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, + ACTIONS(5966), 1, sym_identifier, - STATE(3711), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10447), 1, + anon_sym_STAR, + ACTIONS(10449), 1, + anon_sym_AMP_AMP, + ACTIONS(10451), 1, + anon_sym_AMP, + ACTIONS(10453), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4060), 1, - sym__class_declaration_item, - STATE(4106), 1, - sym__class_declaration, - STATE(4263), 1, + STATE(5193), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(4380), 1, - sym_field_declaration_list, - STATE(7885), 1, - sym_ms_declspec_modifier, - STATE(8675), 1, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9641), 1, sym__scope_resolution, - STATE(9587), 1, - sym_virtual_specifier, - STATE(10321), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + STATE(9909), 1, + sym__abstract_declarator, + ACTIONS(7862), 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(7864), 5, + anon_sym_COLON, 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(7886), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7420), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [263940] = 3, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [306949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 11, + ACTIONS(5836), 1, + anon_sym_SEMI, + ACTIONS(11194), 1, + sym_literal_suffix, + ACTIONS(5671), 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(9774), 25, + ACTIONS(5663), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -674686,102 +748281,95 @@ 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, - [263984] = 27, + [306997] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3711), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4060), 1, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4324), 1, sym__class_declaration_item, - STATE(4107), 1, + STATE(4333), 1, sym__class_declaration, - STATE(4263), 1, + STATE(4349), 1, sym_splice_specifier, - STATE(4380), 1, - sym_field_declaration_list, - STATE(7885), 1, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8675), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3728), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4032), 2, + STATE(4928), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7886), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7420), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [264076] = 3, + [307089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 11, + ACTIONS(10288), 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(9798), 25, + ACTIONS(10290), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -674792,8 +748380,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, @@ -674806,11 +748397,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [264120] = 3, + [307133] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5836), 1, + anon_sym_SEMI, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(5671), 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(5663), 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, + [307181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 11, + ACTIONS(10218), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -674822,7 +748455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9874), 25, + ACTIONS(10220), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -674848,20 +748481,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [264164] = 3, + [307225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 9, + ACTIONS(10341), 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), 27, + ACTIONS(10343), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -674872,11 +748507,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, @@ -674889,140 +748521,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [264208] = 27, + anon_sym_GT2, + [307269] = 27, ACTIONS(3), 1, sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8088), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + ACTIONS(14008), 1, + sym_identifier, + STATE(2545), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2656), 1, + sym__splice_specialization_specifier, + STATE(2708), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(2936), 1, sym__class_declaration, - STATE(4884), 1, + STATE(2937), 1, sym__class_declaration_item, - STATE(7836), 1, + STATE(8877), 1, sym_ms_declspec_modifier, - STATE(8710), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10789), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, + STATE(2403), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7839), 2, + STATE(2610), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8878), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7448), 3, + STATE(8421), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [264300] = 27, + [307361] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(10822), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + ACTIONS(14010), 1, + sym_identifier, + STATE(4714), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4858), 1, + sym__splice_specialization_specifier, + STATE(5378), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(6319), 1, sym__class_declaration, - STATE(7836), 1, + STATE(6339), 1, + sym__class_declaration_item, + STATE(8775), 1, sym_ms_declspec_modifier, - STATE(8710), 1, + STATE(9745), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10745), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11625), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, + STATE(4667), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7839), 2, + STATE(4874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8776), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7448), 3, + STATE(8429), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [264392] = 3, + [307453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 11, + ACTIONS(10194), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -675034,7 +748667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9882), 25, + ACTIONS(10196), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -675060,20 +748693,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [264436] = 3, + [307497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 9, + ACTIONS(10302), 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), 27, + ACTIONS(10304), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -675084,11 +748719,49 @@ 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_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, + [307541] = 3, + ACTIONS(3), 1, + sym_comment, + 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(10200), 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, @@ -675101,329 +748774,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [264480] = 27, + anon_sym_GT2, + [307585] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8269), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(3220), 1, - sym__class_declaration, - STATE(3222), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7895), 1, + STATE(4333), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8687), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2460), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2678), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7897), 2, + STATE(5018), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7406), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [264572] = 27, + [307677] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8269), 1, + ACTIONS(10822), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(14010), 1, sym_identifier, - STATE(2638), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(4858), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(5378), 1, sym_field_declaration_list, - STATE(3222), 1, + STATE(6339), 1, sym__class_declaration_item, - STATE(3226), 1, + STATE(6340), 1, sym__class_declaration, - STATE(7895), 1, + STATE(8775), 1, sym_ms_declspec_modifier, - STATE(8687), 1, + STATE(9745), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(10745), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(11625), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2460), 2, + STATE(4667), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(7897), 2, + STATE(8776), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7406), 3, + STATE(8429), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [264664] = 21, + [307769] = 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(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13108), 1, - anon_sym___attribute__, - ACTIONS(13111), 1, - 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, - STATE(7667), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 9, + ACTIONS(10306), 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(10308), 25, + 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_try, - [264744] = 27, + [307813] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8269), 1, + ACTIONS(10822), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(14010), 1, sym_identifier, - STATE(2638), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(4858), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(5378), 1, sym_field_declaration_list, - STATE(3222), 1, + STATE(6339), 1, sym__class_declaration_item, - STATE(3230), 1, + STATE(6341), 1, sym__class_declaration, - STATE(7895), 1, + STATE(8775), 1, sym_ms_declspec_modifier, - STATE(8687), 1, + STATE(9745), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(10745), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(11625), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2460), 2, + STATE(4667), 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, - 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(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, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(6256), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7839), 2, + STATE(8776), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7448), 3, + STATE(8429), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [264928] = 3, + [307905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 9, + ACTIONS(10395), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -675433,7 +749024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9828), 27, + ACTIONS(10397), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -675461,10 +749052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [264972] = 3, + [307949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 11, + ACTIONS(10345), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -675476,7 +749067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9862), 25, + ACTIONS(10347), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -675502,495 +749093,380 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265016] = 27, + [307993] = 27, ACTIONS(3), 1, sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8088), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, + ACTIONS(14008), 1, + sym_identifier, + STATE(2545), 1, sym_splice_specifier, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(2656), 1, + sym__splice_specialization_specifier, + STATE(2708), 1, + sym_field_declaration_list, + STATE(2937), 1, sym__class_declaration_item, - STATE(7893), 1, + STATE(2939), 1, + sym__class_declaration, + STATE(8877), 1, sym_ms_declspec_modifier, - STATE(8705), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(10789), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(11403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(2403), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2610), 2, sym_template_type, sym_splice_type_specifier, - STATE(7894), 2, + STATE(8878), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7449), 3, + STATE(8421), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265108] = 27, + [308085] = 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(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(5828), 1, + anon_sym_SEMI, + ACTIONS(7109), 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, - sym_splice_specifier, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, - sym__class_declaration, - 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, - sym_template_type, - sym_splice_type_specifier, - STATE(7894), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8848), 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(9614), 1, + anon_sym_LPAREN2, + ACTIONS(9620), 1, + anon_sym_LBRACK, + ACTIONS(5671), 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(5663), 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, + [308137] = 27, ACTIONS(3), 1, sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8088), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4793), 1, - sym__class_declaration, - STATE(4802), 1, + ACTIONS(14008), 1, + sym_identifier, + STATE(2545), 1, sym_splice_specifier, - STATE(4884), 1, + STATE(2656), 1, + sym__splice_specialization_specifier, + STATE(2708), 1, + sym_field_declaration_list, + STATE(2937), 1, sym__class_declaration_item, - STATE(7893), 1, + STATE(2940), 1, + sym__class_declaration, + STATE(8877), 1, sym_ms_declspec_modifier, - STATE(8705), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(10789), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(11403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(2403), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2610), 2, sym_template_type, sym_splice_type_specifier, - STATE(7894), 2, + STATE(8878), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7449), 3, + STATE(8421), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265292] = 27, + [308229] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(4383), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8249), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11687), 1, + anon_sym_COLON_COLON, + ACTIONS(14012), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2742), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(2984), 1, sym__class_declaration, - STATE(4884), 1, + STATE(2985), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(8783), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9746), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10564), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11510), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4434), 2, + STATE(2451), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(2700), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8784), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8444), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265384] = 27, + [308321] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(4383), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8249), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11687), 1, + anon_sym_COLON_COLON, + ACTIONS(14012), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2742), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(2985), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(2986), 1, sym__class_declaration, - STATE(7828), 1, + STATE(8783), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9746), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10564), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11510), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4434), 2, + STATE(2451), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(2700), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8784), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8444), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265476] = 27, + [308413] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(4383), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8249), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11687), 1, + anon_sym_COLON_COLON, + ACTIONS(14012), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2742), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(2985), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(2987), 1, + sym__class_declaration, + STATE(8783), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9746), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10564), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11510), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4434), 2, + STATE(2451), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(2700), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8784), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8444), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265568] = 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, - [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, + [308505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 11, + ACTIONS(10202), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -676002,7 +749478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9932), 25, + ACTIONS(10204), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -676028,51 +749504,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265726] = 3, + [308549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 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(9886), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(14014), 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_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, - [265770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9748), 9, + ACTIONS(14016), 1, + anon_sym_RBRACK, + ACTIONS(5671), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -676082,9 +749521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9750), 27, + ACTIONS(5663), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -676097,7 +749535,6 @@ 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, @@ -676110,287 +749547,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [265814] = 27, + [308597] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(14019), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + ACTIONS(14021), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7595), 1, - sym_field_declaration_list, - STATE(7634), 1, + STATE(4323), 1, sym__class_declaration, - STATE(7635), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7902), 1, + STATE(8861), 1, sym_ms_declspec_modifier, - STATE(8700), 1, + STATE(9758), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9983), 1, + sym_splice_specifier, + STATE(10511), 1, + sym_field_declaration_list, + STATE(10779), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(11806), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7089), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7122), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7903), 2, + STATE(8862), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7399), 3, + STATE(9951), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8460), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265906] = 27, + [308689] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(14019), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + ACTIONS(14021), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7595), 1, - sym_field_declaration_list, - STATE(7635), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7637), 1, + STATE(4327), 1, sym__class_declaration, - STATE(7902), 1, + STATE(8861), 1, sym_ms_declspec_modifier, - STATE(8700), 1, + STATE(9758), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9983), 1, + sym_splice_specifier, + STATE(10511), 1, + sym_field_declaration_list, + STATE(10779), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(11806), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7089), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7122), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7903), 2, + STATE(8862), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7399), 3, + STATE(9951), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8460), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265998] = 27, + [308781] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(14019), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + ACTIONS(14021), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7595), 1, - sym_field_declaration_list, - STATE(7635), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7638), 1, + STATE(4333), 1, sym__class_declaration, - STATE(7902), 1, + STATE(8861), 1, sym_ms_declspec_modifier, - STATE(8700), 1, + STATE(9758), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9983), 1, + sym_splice_specifier, + STATE(10511), 1, + sym_field_declaration_list, + STATE(10779), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(11806), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7089), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7122), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7903), 2, + STATE(8862), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7399), 3, + STATE(9951), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8460), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [266090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9804), 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(9806), 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, - [266134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9892), 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(9894), 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, - [266178] = 3, + [308873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 11, + ACTIONS(10371), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -676402,7 +749757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5638), 25, + ACTIONS(10373), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -676428,499 +749783,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266222] = 27, + [308917] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4323), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4324), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4533), 2, + STATE(3791), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(8833), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(8376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [266314] = 26, - 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(10659), 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(7610), 1, - sym__class_declaration_item, - STATE(7905), 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(7904), 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, - [266403] = 25, - 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(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(4108), 1, - sym_type_specifier, - STATE(4119), 1, - sym_decltype_auto, - 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, - [266490] = 25, - 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(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(4108), 1, - sym_type_specifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(8707), 1, - sym__scope_resolution, - STATE(3967), 2, + STATE(13053), 3, 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, - [266577] = 25, + [309009] = 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(11036), 1, - sym_identifier, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11040), 1, - sym_primitive_type, - 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(3566), 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(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, - [266664] = 25, + ACTIONS(10375), 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(10377), 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, + [309053] = 27, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 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, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(2233), 1, - sym_type_specifier, - STATE(8763), 1, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4324), 1, + sym__class_declaration_item, + STATE(4327), 1, + sym__class_declaration, + STATE(4349), 1, + sym_splice_specifier, + STATE(8759), 1, + sym_ms_declspec_modifier, + STATE(9818), 1, sym__scope_resolution, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - 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, - [266751] = 25, - 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(12803), 1, - anon_sym_enum, - ACTIONS(12805), 1, - anon_sym_typename, - STATE(2073), 1, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, sym_template_type, - STATE(2087), 1, + sym_splice_type_specifier, + STATE(4970), 2, + sym__class_name, 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(2233), 1, - sym_type_specifier, - STATE(8763), 1, - sym__scope_resolution, - STATE(2169), 2, + STATE(8833), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, 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, - [266838] = 25, + [309145] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3839), 1, + ACTIONS(75), 1, + anon_sym_enum, + ACTIONS(77), 1, anon_sym_class, - ACTIONS(3841), 1, + ACTIONS(79), 1, anon_sym_struct, - ACTIONS(3843), 1, + ACTIONS(81), 1, anon_sym_union, - ACTIONS(3849), 1, + ACTIONS(129), 1, sym_auto, - ACTIONS(3851), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11095), 1, + ACTIONS(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5184), 1, sym_identifier, - ACTIONS(11097), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(12839), 1, - anon_sym_enum, - ACTIONS(12841), 1, + ACTIONS(5192), 1, anon_sym_typename, - STATE(2385), 1, + ACTIONS(5194), 1, + anon_sym_template, + STATE(3245), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2712), 1, + STATE(4033), 1, sym_template_type, - STATE(2843), 1, + STATE(4036), 1, sym_qualified_type_identifier, - STATE(3166), 1, - sym_decltype_auto, - STATE(5024), 1, - sym_type_specifier, - STATE(8702), 1, - sym__scope_resolution, - STATE(3053), 2, + STATE(4211), 1, sym_decltype, + STATE(4255), 1, + sym_type_specifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4349), 1, + sym_splice_specifier, + STATE(5074), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(9818), 1, + sym__scope_resolution, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12837), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3167), 7, + STATE(4346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -676928,124 +750017,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266925] = 26, + [309234] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3300), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8269), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13988), 1, sym_identifier, - STATE(2638), 1, + STATE(4129), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(4406), 1, sym_field_declaration_list, - STATE(3133), 1, + STATE(4504), 1, sym__class_declaration_item, - STATE(7899), 1, + STATE(8745), 1, sym_ms_declspec_modifier, - STATE(8687), 1, + STATE(9761), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2460), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(4316), 2, sym_template_type, sym_splice_type_specifier, - STATE(7898), 2, + STATE(8744), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [267014] = 25, + [309323] = 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, + ACTIONS(4254), 1, anon_sym_enum, - ACTIONS(3706), 1, + ACTIONS(4256), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(4258), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(4260), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(4286), 1, + sym_auto, + ACTIONS(4288), 1, + anon_sym_decltype, + ACTIONS(4304), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(11677), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - ACTIONS(11107), 1, + ACTIONS(11681), 1, + sym_primitive_type, + ACTIONS(11683), 1, anon_sym_typename, - STATE(2852), 1, + STATE(3348), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(4119), 1, + sym_splice_specifier, + STATE(4182), 1, sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(4542), 1, sym_template_type, - STATE(3747), 1, + STATE(4544), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(8738), 1, + STATE(4766), 1, + sym_decltype_auto, + STATE(4794), 1, + sym_type_specifier, + STATE(9844), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(4774), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(4250), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4771), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677053,61 +750142,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267101] = 25, + [309410] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(3732), 1, + ACTIONS(3800), 1, anon_sym_enum, - ACTIONS(3734), 1, + ACTIONS(3802), 1, anon_sym_class, - ACTIONS(3736), 1, + ACTIONS(3804), 1, anon_sym_struct, - ACTIONS(3738), 1, + ACTIONS(3806), 1, anon_sym_union, - ACTIONS(3742), 1, + ACTIONS(3810), 1, sym_auto, - ACTIONS(3744), 1, + ACTIONS(3812), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(11532), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, + ACTIONS(11536), 1, sym_primitive_type, - ACTIONS(11014), 1, + ACTIONS(11538), 1, anon_sym_typename, - STATE(2180), 1, + STATE(2277), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, + STATE(2545), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(2656), 1, sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(2811), 1, sym_template_type, - STATE(2698), 1, + STATE(2818), 1, sym_qualified_type_identifier, - STATE(2997), 1, + STATE(2927), 1, sym_decltype_auto, - STATE(3023), 1, + STATE(2941), 1, sym_type_specifier, - STATE(8682), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(2942), 2, + STATE(2929), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3728), 4, + ACTIONS(3796), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(2928), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677115,125 +750204,177 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267188] = 26, + [309497] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2958), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(10602), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13959), 1, sym_identifier, - STATE(3808), 1, + STATE(4632), 1, + sym_splice_specifier, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(5169), 1, sym_field_declaration_list, - STATE(4987), 1, + STATE(5893), 1, sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(7825), 1, + STATE(8853), 1, sym_ms_declspec_modifier, - STATE(8756), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10668), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11771), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(4464), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7824), 2, + STATE(4764), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8852), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [267277] = 26, + [309586] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12734), 1, + anon_sym_LPAREN2, + ACTIONS(12752), 1, + sym_identifier, + ACTIONS(12754), 1, + anon_sym_STAR, + ACTIONS(12756), 1, + anon_sym_AMP_AMP, + ACTIONS(12758), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(9676), 1, + sym__field_declarator, + STATE(9871), 1, + sym_operator_name, + STATE(12436), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9957), 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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [309655] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 1, + ACTIONS(3010), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13492), 1, + sym_identifier, + ACTIONS(13494), 1, + anon_sym_COLON_COLON, + ACTIONS(13498), 1, + sym_primitive_type, + ACTIONS(13500), 1, anon_sym_enum, - ACTIONS(3206), 1, + ACTIONS(13502), 1, anon_sym_class, - ACTIONS(3208), 1, + ACTIONS(13504), 1, anon_sym_struct, - ACTIONS(3210), 1, + ACTIONS(13506), 1, anon_sym_union, - ACTIONS(3236), 1, + ACTIONS(13508), 1, + anon_sym_typename, + ACTIONS(13510), 1, sym_auto, - ACTIONS(3238), 1, + ACTIONS(13512), 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(4043), 1, + STATE(2611), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4714), 1, + sym_splice_specifier, + STATE(4858), 1, + sym__splice_specialization_specifier, + STATE(5204), 1, sym_template_type, - STATE(4204), 1, + STATE(5337), 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, + STATE(5375), 1, sym_type_specifier, - STATE(4690), 1, - sym_splice_type_specifier, - STATE(6642), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(6150), 1, + sym_decltype_auto, + STATE(9745), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(5871), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3200), 4, + ACTIONS(13496), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(6152), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677241,61 +750382,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267366] = 25, + [309742] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(3280), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(3282), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3300), 1, anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, + ACTIONS(3778), 1, + anon_sym_enum, + ACTIONS(3780), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(3782), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(3784), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10655), 1, + ACTIONS(11655), 1, sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(11661), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(12787), 1, - anon_sym_enum, - ACTIONS(12789), 1, + ACTIONS(11665), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3126), 1, + STATE(3339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(4129), 1, + sym_splice_specifier, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4341), 1, sym_template_type, - STATE(3747), 1, + STATE(4342), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(6514), 1, - sym_type_specifier, - STATE(8738), 1, - sym__scope_resolution, - STATE(3021), 2, + STATE(4492), 1, + sym_decltype_auto, + STATE(4495), 1, sym_decltype, + STATE(4543), 1, + sym_type_specifier, + STATE(4700), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(9761), 1, + sym__scope_resolution, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(3244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4493), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677303,249 +750445,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267453] = 26, + [309831] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3161), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(13847), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13990), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3185), 1, - sym__class_declaration_item, - STATE(3800), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(5858), 1, sym_field_declaration_list, - STATE(7896), 1, + STATE(6688), 1, + sym__class_declaration_item, + STATE(8886), 1, sym_ms_declspec_modifier, - STATE(8738), 1, + STATE(9816), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10742), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11429), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(4830), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7805), 2, + STATE(5039), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8750), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 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, - 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, - 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(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, - 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(13053), 3, sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, 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, - [267629] = 26, + [309920] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4062), 1, + ACTIONS(4114), 1, anon_sym_enum, - ACTIONS(4064), 1, + ACTIONS(4116), 1, anon_sym_class, - ACTIONS(4066), 1, + ACTIONS(4118), 1, anon_sym_struct, - ACTIONS(4068), 1, + ACTIONS(4120), 1, anon_sym_union, - ACTIONS(4072), 1, + ACTIONS(4124), 1, sym_auto, - ACTIONS(4074), 1, + ACTIONS(4126), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(4128), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11071), 1, + ACTIONS(11669), 1, sym_identifier, - ACTIONS(11073), 1, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - ACTIONS(11075), 1, + ACTIONS(11673), 1, sym_primitive_type, - ACTIONS(11077), 1, + ACTIONS(11675), 1, anon_sym_typename, - STATE(2356), 1, + STATE(2389), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, + STATE(2836), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2890), 1, sym__splice_specialization_specifier, - STATE(2933), 1, - sym_template_type, - STATE(3031), 1, - sym_qualified_type_identifier, - STATE(3447), 1, - sym_decltype, - STATE(3486), 1, - sym_splice_type_specifier, - STATE(3527), 1, - sym_decltype_auto, - STATE(3534), 1, - sym_type_specifier, - STATE(8686), 1, - sym__scope_resolution, - 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, - [267718] = 25, - 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, + STATE(2982), 1, sym_template_type, - STATE(2087), 1, + STATE(2983), 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, + STATE(3336), 1, sym_decltype_auto, - STATE(2233), 1, + STATE(3344), 1, sym_type_specifier, - STATE(8763), 1, + STATE(9817), 1, sym__scope_resolution, - STATE(2169), 2, + STATE(3338), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3974), 4, + ACTIONS(4110), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3337), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677553,31 +750570,32 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267805] = 6, + [310007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(7444), 1, anon_sym_COLON_COLON, - ACTIONS(12277), 1, + ACTIONS(13480), 1, anon_sym_LT, - STATE(2938), 1, + STATE(3458), 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, + ACTIONS(7447), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(7442), 28, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + 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, @@ -677591,66 +750609,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_auto, - anon_sym_decltype, + sym_primitive_type, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_requires, - [267854] = 25, + [310056] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 1, + anon_sym_SEMI, + ACTIONS(5671), 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(5663), 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, + [310101] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(3161), 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11095), 1, + ACTIONS(13845), 1, sym_identifier, - ACTIONS(11097), 1, + ACTIONS(13847), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(13851), 1, sym_primitive_type, - ACTIONS(12839), 1, + ACTIONS(13853), 1, anon_sym_enum, - ACTIONS(12841), 1, + ACTIONS(13855), 1, + anon_sym_class, + ACTIONS(13857), 1, + anon_sym_struct, + ACTIONS(13859), 1, + anon_sym_union, + ACTIONS(13861), 1, anon_sym_typename, - STATE(2385), 1, + ACTIONS(13863), 1, + sym_auto, + ACTIONS(13865), 1, + anon_sym_decltype, + STATE(2739), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2605), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(5034), 1, sym__splice_specialization_specifier, - STATE(2712), 1, + STATE(5661), 1, sym_template_type, - STATE(2843), 1, + STATE(5876), 1, sym_qualified_type_identifier, - STATE(3166), 1, + STATE(6672), 1, sym_decltype_auto, - STATE(3238), 1, + STATE(6759), 1, sym_type_specifier, - STATE(8702), 1, + STATE(9816), 1, sym__scope_resolution, - STATE(3053), 2, + STATE(6545), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12837), 4, + ACTIONS(13849), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3167), 7, + STATE(6673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677658,75 +750716,137 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267941] = 26, + [310188] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(2982), 1, + STATE(4253), 1, sym__class_declaration_item, - STATE(7822), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8802), 1, sym_ms_declspec_modifier, - STATE(8682), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7820), 2, + STATE(3791), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8768), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [310277] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + ACTIONS(13448), 1, + sym_identifier, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13454), 1, + sym_primitive_type, + ACTIONS(13456), 1, + anon_sym_enum, + ACTIONS(13458), 1, + anon_sym_class, + ACTIONS(13460), 1, + anon_sym_struct, + ACTIONS(13462), 1, + anon_sym_union, + ACTIONS(13464), 1, + anon_sym_typename, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3842), 1, + sym_type_specifier, + STATE(3928), 1, + sym_decltype_auto, + STATE(6696), 1, + sym_splice_specifier, + STATE(9846), 1, + sym__scope_resolution, + STATE(3812), 2, sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - [268030] = 4, + ACTIONS(13452), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [310364] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, + ACTIONS(5778), 1, anon_sym_SEMI, - ACTIONS(5645), 9, + ACTIONS(5671), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -677736,7 +750856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5638), 25, + ACTIONS(5663), 25, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_STAR, @@ -677762,124 +750882,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [268075] = 26, + [310409] = 24, 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, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 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, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(11625), 1, + anon_sym_requires, + STATE(8560), 1, + sym_ref_qualifier, + STATE(9438), 1, + sym_trailing_return_type, + STATE(9717), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 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, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 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, - [268164] = 25, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8732), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [310494] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3010), 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11057), 1, + ACTIONS(13492), 1, sym_identifier, - ACTIONS(11059), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(12988), 1, + ACTIONS(13498), 1, + sym_primitive_type, + ACTIONS(13500), 1, anon_sym_enum, - ACTIONS(12990), 1, + ACTIONS(13502), 1, + anon_sym_class, + ACTIONS(13504), 1, + anon_sym_struct, + ACTIONS(13506), 1, + anon_sym_union, + ACTIONS(13508), 1, anon_sym_typename, - STATE(3770), 1, + ACTIONS(13510), 1, + sym_auto, + ACTIONS(13512), 1, + anon_sym_decltype, + STATE(2611), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4272), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(4858), 1, sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(4457), 1, + STATE(5204), 1, + sym_template_type, + STATE(5337), 1, + sym_qualified_type_identifier, + STATE(5506), 1, sym_type_specifier, - STATE(8676), 1, + STATE(6150), 1, + sym_decltype_auto, + STATE(9745), 1, sym__scope_resolution, - STATE(4373), 2, + STATE(5871), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12986), 4, + ACTIONS(13496), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(6152), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677887,61 +751005,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268251] = 25, + [310581] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4128), 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11671), 1, + anon_sym_COLON_COLON, + ACTIONS(13994), 1, + sym_identifier, + STATE(2836), 1, + sym_splice_specifier, + STATE(2890), 1, + sym__splice_specialization_specifier, + STATE(2970), 1, + sym_field_declaration_list, + STATE(3359), 1, + sym__class_declaration_item, + STATE(8757), 1, + sym_ms_declspec_modifier, + STATE(9817), 1, + sym__scope_resolution, + STATE(10632), 1, + sym_virtual_specifier, + STATE(11620), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2559), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2876), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8756), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [310670] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13444), 1, sym_auto, - ACTIONS(4074), 1, + ACTIONS(13446), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11071), 1, + ACTIONS(13575), 1, sym_identifier, - ACTIONS(11073), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(11075), 1, + ACTIONS(13581), 1, sym_primitive_type, - ACTIONS(13052), 1, + ACTIONS(13583), 1, anon_sym_enum, - ACTIONS(13054), 1, + ACTIONS(13585), 1, + anon_sym_class, + ACTIONS(13587), 1, + anon_sym_struct, + ACTIONS(13589), 1, + anon_sym_union, + ACTIONS(13591), 1, anon_sym_typename, - STATE(2449), 1, + STATE(3645), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(5857), 1, + sym_type_specifier, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(2933), 1, + STATE(6573), 1, + sym_splice_specifier, + STATE(6845), 1, sym_template_type, - STATE(3031), 1, + STATE(6885), 1, sym_qualified_type_identifier, - STATE(3527), 1, + STATE(7186), 1, sym_decltype_auto, - STATE(3534), 1, - sym_type_specifier, - STATE(8686), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(3447), 2, + STATE(7067), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13050), 4, + ACTIONS(13579), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3528), 7, + STATE(7187), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677949,62 +751130,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268338] = 26, + [310757] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(129), 1, sym_auto, - ACTIONS(3893), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(4314), 1, + ACTIONS(2314), 1, anon_sym_enum, - ACTIONS(4316), 1, + ACTIONS(2316), 1, anon_sym_class, - ACTIONS(4318), 1, + ACTIONS(2318), 1, anon_sym_struct, - ACTIONS(4320), 1, + ACTIONS(2320), 1, anon_sym_union, - ACTIONS(4360), 1, + ACTIONS(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(5657), 1, + anon_sym_typename, + ACTIONS(6640), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(8222), 1, anon_sym_COLON_COLON, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11085), 1, - anon_sym_typename, - STATE(3488), 1, + STATE(3245), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3759), 1, + STATE(4033), 1, sym_template_type, - STATE(3819), 1, + STATE(4036), 1, sym_qualified_type_identifier, - STATE(3967), 1, + STATE(4211), 1, sym_decltype, - STATE(4108), 1, + STATE(4255), 1, sym_type_specifier, - STATE(4119), 1, + STATE(4287), 1, sym_decltype_auto, - STATE(4263), 1, + STATE(4770), 1, sym_splice_specifier, - STATE(4758), 1, + STATE(6687), 1, sym_splice_type_specifier, - STATE(8675), 1, + STATE(9769), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4310), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(4346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678012,62 +751193,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268427] = 26, + [310846] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(3248), 1, + anon_sym_enum, + ACTIONS(3250), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(3252), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(3254), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(3280), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(3282), 1, anon_sym_decltype, - ACTIONS(3978), 1, - anon_sym_enum, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11651), 1, + sym_identifier, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(11655), 1, sym_primitive_type, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(11117), 1, + ACTIONS(11657), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2093), 1, + STATE(3339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2104), 1, - sym_splice_specifier, - STATE(2169), 1, - sym_decltype, - STATE(2170), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(2211), 1, - sym_splice_type_specifier, - STATE(2221), 1, + STATE(4341), 1, + sym_template_type, + STATE(4342), 1, + sym_qualified_type_identifier, + STATE(4492), 1, sym_decltype_auto, - STATE(2233), 1, + STATE(4543), 1, sym_type_specifier, - STATE(8763), 1, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(4495), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3974), 4, + ACTIONS(3244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(4493), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678075,61 +751255,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268516] = 25, + [310933] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(3010), 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, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(13492), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, + ACTIONS(13498), 1, sym_primitive_type, - ACTIONS(13038), 1, + ACTIONS(13500), 1, anon_sym_enum, - ACTIONS(13040), 1, + ACTIONS(13502), 1, + anon_sym_class, + ACTIONS(13504), 1, + anon_sym_struct, + ACTIONS(13506), 1, + anon_sym_union, + ACTIONS(13508), 1, anon_sym_typename, - STATE(2360), 1, + ACTIONS(13510), 1, + sym_auto, + ACTIONS(13512), 1, + anon_sym_decltype, + STATE(2611), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(4858), 1, sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(5204), 1, sym_template_type, - STATE(2698), 1, + STATE(5337), 1, sym_qualified_type_identifier, - STATE(2997), 1, + STATE(6150), 1, sym_decltype_auto, - STATE(4651), 1, + STATE(6357), 1, sym_type_specifier, - STATE(8682), 1, + STATE(9745), 1, sym__scope_resolution, - STATE(2942), 2, + STATE(5871), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13036), 4, + ACTIONS(13496), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(6152), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678137,61 +751317,114 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268603] = 25, + [311020] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12732), 1, + sym_identifier, + ACTIONS(12734), 1, + anon_sym_LPAREN2, + ACTIONS(12736), 1, + anon_sym_STAR, + ACTIONS(12738), 1, + anon_sym_AMP_AMP, + ACTIONS(12740), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(10177), 1, + sym__field_declarator, + STATE(10346), 1, + sym_operator_name, + STATE(12473), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9957), 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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [311089] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, sym_auto, ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13170), 1, + ACTIONS(14023), 1, sym_identifier, - ACTIONS(13172), 1, + ACTIONS(14025), 1, anon_sym_COLON_COLON, - ACTIONS(13176), 1, + ACTIONS(14029), 1, sym_primitive_type, - ACTIONS(13178), 1, + ACTIONS(14031), 1, anon_sym_enum, - ACTIONS(13180), 1, + ACTIONS(14033), 1, anon_sym_class, - ACTIONS(13182), 1, + ACTIONS(14035), 1, anon_sym_struct, - ACTIONS(13184), 1, + ACTIONS(14037), 1, anon_sym_union, - ACTIONS(13186), 1, + ACTIONS(14039), 1, anon_sym_typename, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4776), 1, - sym_type_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4948), 1, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4287), 1, sym_decltype_auto, - STATE(7700), 1, + STATE(8602), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8695), 1, + STATE(9748), 1, sym__scope_resolution, - STATE(9262), 1, - sym_template_type, - STATE(9343), 1, - sym_qualified_type_identifier, - STATE(4830), 2, + STATE(9983), 1, + sym_splice_specifier, + STATE(11761), 1, + sym_type_specifier, + STATE(4211), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13174), 4, + ACTIONS(14027), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(4346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678199,62 +751432,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268690] = 26, + [311176] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9242), 1, + anon_sym_LBRACE, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, + sym_identifier, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(4011), 1, + sym_field_declaration_list, + STATE(4139), 1, + sym__class_declaration_item, + STATE(8816), 1, + sym_ms_declspec_modifier, + STATE(9840), 1, + sym__scope_resolution, + STATE(10626), 1, + sym_virtual_specifier, + STATE(11559), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3394), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8814), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [311265] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(4397), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13603), 1, + sym_identifier, + ACTIONS(13605), 1, + anon_sym_COLON_COLON, + ACTIONS(13609), 1, + sym_primitive_type, + ACTIONS(13611), 1, anon_sym_enum, - ACTIONS(4399), 1, + ACTIONS(13613), 1, anon_sym_class, - ACTIONS(4401), 1, + ACTIONS(13615), 1, anon_sym_struct, - ACTIONS(4403), 1, + ACTIONS(13617), 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, + ACTIONS(13619), 1, anon_sym_typename, - STATE(3490), 1, + ACTIONS(13621), 1, + sym_auto, + ACTIONS(13623), 1, + anon_sym_decltype, + STATE(4137), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4272), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(7038), 1, sym__splice_specialization_specifier, - STATE(4373), 1, - sym_decltype, - STATE(4426), 1, + STATE(7301), 1, + sym_template_type, + STATE(7365), 1, + sym_qualified_type_identifier, + STATE(7844), 1, sym_decltype_auto, - STATE(4457), 1, + STATE(7857), 1, sym_type_specifier, - STATE(4690), 1, - sym_splice_type_specifier, - STATE(8676), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(7647), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4395), 4, + ACTIONS(13607), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(7846), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678262,167 +751557,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268779] = 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(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__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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, - anon_sym_STAR, - ACTIONS(11991), 1, - anon_sym_AMP_AMP, - ACTIONS(11993), 1, - anon_sym_AMP, - 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(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, - [268917] = 25, + [311352] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11291), 1, anon_sym_LBRACK_COLON, - ACTIONS(4062), 1, + ACTIONS(11593), 1, + sym_identifier, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(11599), 1, + sym_primitive_type, + ACTIONS(11601), 1, anon_sym_enum, - ACTIONS(4064), 1, + ACTIONS(11603), 1, anon_sym_class, - ACTIONS(4066), 1, + ACTIONS(11605), 1, anon_sym_struct, - ACTIONS(4068), 1, + ACTIONS(11607), 1, anon_sym_union, - ACTIONS(4072), 1, + ACTIONS(11609), 1, + anon_sym_typename, + ACTIONS(11611), 1, sym_auto, - ACTIONS(4074), 1, + ACTIONS(11613), 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, + STATE(6894), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, + STATE(7345), 1, sym_splice_specifier, - STATE(2921), 1, - sym__splice_specialization_specifier, - STATE(2933), 1, + STATE(7520), 1, sym_template_type, - STATE(3031), 1, + STATE(7521), 1, sym_qualified_type_identifier, - STATE(3527), 1, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8014), 1, sym_decltype_auto, - STATE(3534), 1, + STATE(8026), 1, sym_type_specifier, - STATE(8686), 1, + STATE(9795), 1, sym__scope_resolution, - STATE(3447), 2, + STATE(8016), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4058), 4, + ACTIONS(11597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3528), 7, + STATE(8015), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678430,61 +751619,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269004] = 25, + [311439] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2958), 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(13713), 1, + sym_identifier, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(13719), 1, sym_primitive_type, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(12897), 1, + ACTIONS(13721), 1, anon_sym_enum, - ACTIONS(12899), 1, + ACTIONS(13723), 1, + anon_sym_class, + ACTIONS(13725), 1, + anon_sym_struct, + ACTIONS(13727), 1, + anon_sym_union, + ACTIONS(13729), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, + ACTIONS(13731), 1, + sym_auto, + ACTIONS(13733), 1, + anon_sym_decltype, + STATE(2582), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4632), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(2210), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2221), 1, - sym_decltype_auto, - STATE(2233), 1, + STATE(5026), 1, + sym_template_type, + STATE(5161), 1, sym_type_specifier, - STATE(8763), 1, + STATE(5163), 1, + sym_qualified_type_identifier, + STATE(5816), 1, + sym_decltype_auto, + STATE(9790), 1, sym__scope_resolution, - STATE(2169), 2, + STATE(5642), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12895), 4, + ACTIONS(13717), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(5818), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678492,61 +751681,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269091] = 25, + [311526] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, + ACTIONS(2422), 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, + ACTIONS(4948), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(12315), 1, + anon_sym_LBRACE, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(13996), 1, sym_identifier, - ACTIONS(11081), 1, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6979), 1, + sym_splice_specifier, + STATE(7077), 1, + sym__class_declaration_item, + STATE(7401), 1, + sym_field_declaration_list, + STATE(8764), 1, + sym_ms_declspec_modifier, + STATE(9815), 1, + sym__scope_resolution, + STATE(10720), 1, + sym_virtual_specifier, + STATE(11760), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6888), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8763), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [311615] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13627), 1, anon_sym_COLON_COLON, - ACTIONS(11083), 1, + ACTIONS(13635), 1, + anon_sym_class, + ACTIONS(13637), 1, + anon_sym_struct, + ACTIONS(13639), 1, + anon_sym_union, + ACTIONS(13643), 1, + sym_auto, + ACTIONS(13645), 1, + anon_sym_decltype, + ACTIONS(13895), 1, + sym_identifier, + ACTIONS(13899), 1, sym_primitive_type, - ACTIONS(12759), 1, + ACTIONS(13901), 1, anon_sym_enum, - ACTIONS(12761), 1, + ACTIONS(13903), 1, anon_sym_typename, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3762), 1, + STATE(2390), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3819), 1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3708), 1, + sym_template_type, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3826), 1, sym_qualified_type_identifier, - STATE(4119), 1, + STATE(4089), 1, sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(6515), 1, + STATE(4138), 1, sym_type_specifier, - STATE(8675), 1, + STATE(9840), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(3997), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12757), 4, + ACTIONS(13897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(4090), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678554,38 +751806,38 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269178] = 16, + [311702] = 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, + ACTIONS(12732), 1, sym_identifier, - ACTIONS(11997), 1, + ACTIONS(12734), 1, + anon_sym_LPAREN2, + ACTIONS(12736), 1, anon_sym_STAR, - ACTIONS(11999), 1, + ACTIONS(12738), 1, anon_sym_AMP_AMP, - ACTIONS(12001), 1, + ACTIONS(12740), 1, anon_sym_AMP, - STATE(7511), 1, + STATE(2859), 1, sym_alignas_qualifier, - STATE(9026), 1, + STATE(10153), 1, sym__field_declarator, - STATE(9236), 1, + STATE(10346), 1, sym_operator_name, - STATE(11191), 1, + STATE(12473), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8839), 7, + STATE(9957), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -678593,7 +751845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3270), 13, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -678607,38 +751859,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [269247] = 16, + [311771] = 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, + ACTIONS(12732), 1, sym_identifier, - ACTIONS(11997), 1, + ACTIONS(12734), 1, + anon_sym_LPAREN2, + ACTIONS(12736), 1, anon_sym_STAR, - ACTIONS(11999), 1, + ACTIONS(12738), 1, anon_sym_AMP_AMP, - ACTIONS(12001), 1, + ACTIONS(12740), 1, anon_sym_AMP, - STATE(7511), 1, + STATE(2859), 1, sym_alignas_qualifier, - STATE(9054), 1, + STATE(10204), 1, sym__field_declarator, - STATE(9236), 1, + STATE(10346), 1, sym_operator_name, - STATE(11191), 1, + STATE(12473), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8839), 7, + STATE(9957), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -678646,7 +751898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3270), 13, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -678660,7 +751912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [269316] = 26, + [311840] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2248), 1, @@ -678675,39 +751927,39 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(11281), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(11287), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(11289), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(11291), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3021), 1, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, + sym_qualified_type_identifier, + STATE(3234), 1, sym_decltype, - STATE(3028), 1, + STATE(3239), 1, sym__splice_specialization_specifier, - STATE(3097), 1, + STATE(3254), 1, sym_type_specifier, - STATE(3197), 1, + STATE(3314), 1, sym_decltype_auto, - STATE(3485), 1, + STATE(3434), 1, sym_splice_type_specifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7260), 1, + STATE(7849), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9836), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, ACTIONS(2244), 4, @@ -678715,69 +751967,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [269405] = 25, - 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(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(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, - 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, + STATE(3233), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678785,7 +751975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269492] = 25, + [311929] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, @@ -678800,38 +751990,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(2320), 1, anon_sym_union, - ACTIONS(3466), 1, + ACTIONS(3536), 1, sym_primitive_type, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5629), 1, + ACTIONS(5657), 1, anon_sym_typename, - ACTIONS(6455), 1, + ACTIONS(6640), 1, sym_identifier, - ACTIONS(6469), 1, + ACTIONS(8222), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, + STATE(3245), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4578), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, sym_template_type, - STATE(4601), 1, + STATE(4036), 1, sym_qualified_type_identifier, - STATE(4776), 1, + STATE(4255), 1, sym_type_specifier, - STATE(4948), 1, + STATE(4287), 1, sym_decltype_auto, - STATE(5157), 1, + STATE(4770), 1, sym_splice_specifier, - STATE(8756), 1, + STATE(9769), 1, sym__scope_resolution, - STATE(4830), 2, + STATE(4211), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, ACTIONS(59), 4, @@ -678839,7 +752029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(4346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678847,61 +752037,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269579] = 25, + [312016] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2728), 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13444), 1, sym_auto, - ACTIONS(3744), 1, + ACTIONS(13446), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(13575), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, + ACTIONS(13581), 1, sym_primitive_type, - ACTIONS(13038), 1, + ACTIONS(13583), 1, anon_sym_enum, - ACTIONS(13040), 1, + ACTIONS(13585), 1, + anon_sym_class, + ACTIONS(13587), 1, + anon_sym_struct, + ACTIONS(13589), 1, + anon_sym_union, + ACTIONS(13591), 1, anon_sym_typename, - STATE(2360), 1, + STATE(3645), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(6027), 1, + sym_type_specifier, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(6573), 1, + sym_splice_specifier, + STATE(6845), 1, sym_template_type, - STATE(2698), 1, + STATE(6885), 1, sym_qualified_type_identifier, - STATE(2997), 1, + STATE(7186), 1, sym_decltype_auto, - STATE(4647), 1, - sym_type_specifier, - STATE(8682), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(2942), 2, + STATE(7067), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13036), 4, + ACTIONS(13579), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(7187), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678909,61 +752099,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269666] = 25, + [312103] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(3280), 1, + sym_auto, + ACTIONS(3282), 1, + anon_sym_decltype, + ACTIONS(3300), 1, anon_sym_LBRACK_COLON, - ACTIONS(4429), 1, + ACTIONS(3778), 1, + anon_sym_enum, + ACTIONS(3780), 1, anon_sym_class, - ACTIONS(4431), 1, + ACTIONS(3782), 1, anon_sym_struct, - ACTIONS(4433), 1, + ACTIONS(3784), 1, anon_sym_union, - ACTIONS(4439), 1, - sym_auto, - ACTIONS(4441), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11087), 1, + ACTIONS(11655), 1, + sym_primitive_type, + ACTIONS(11661), 1, sym_identifier, - ACTIONS(11089), 1, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(11091), 1, - sym_primitive_type, - ACTIONS(12795), 1, - anon_sym_enum, - ACTIONS(12797), 1, + ACTIONS(11665), 1, anon_sym_typename, - STATE(2377), 1, + STATE(3339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, + STATE(4129), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(2701), 1, + STATE(4341), 1, sym_template_type, - STATE(2781), 1, + STATE(4342), 1, sym_qualified_type_identifier, - STATE(3099), 1, + STATE(4492), 1, sym_decltype_auto, - STATE(4881), 1, + STATE(4543), 1, sym_type_specifier, - STATE(8687), 1, + STATE(9761), 1, sym__scope_resolution, - STATE(2984), 2, + STATE(4495), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12793), 4, + ACTIONS(3244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 7, + STATE(4493), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678971,186 +752161,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269753] = 6, + [312190] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(12065), 1, - anon_sym_decltype, - ACTIONS(13121), 1, + ACTIONS(2280), 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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3873), 1, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, anon_sym_class, - ACTIONS(3875), 1, + ACTIONS(3740), 1, anon_sym_struct, - ACTIONS(3877), 1, + ACTIONS(3742), 1, anon_sym_union, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11083), 1, + ACTIONS(11287), 1, sym_primitive_type, - ACTIONS(11109), 1, + ACTIONS(11705), 1, sym_identifier, - ACTIONS(11111), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - ACTIONS(12875), 1, - anon_sym_enum, - ACTIONS(12877), 1, + ACTIONS(11709), 1, anon_sym_typename, - STATE(3375), 1, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3759), 1, + STATE(2916), 1, sym_template_type, - STATE(3819), 1, + STATE(2926), 1, sym_qualified_type_identifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(5335), 1, - sym_type_specifier, - STATE(8707), 1, - sym__scope_resolution, - STATE(3967), 2, + STATE(3037), 1, + sym_splice_specifier, + STATE(3234), 1, sym_decltype, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3254), 1, + sym_type_specifier, + STATE(3314), 1, + sym_decltype_auto, + STATE(3434), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(9763), 1, + sym__scope_resolution, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12873), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(3233), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679158,61 +752224,122 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269979] = 25, + [312279] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(8557), 1, + sym_ref_qualifier, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9243), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8661), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [312364] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(4427), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13603), 1, + sym_identifier, + ACTIONS(13605), 1, + anon_sym_COLON_COLON, + ACTIONS(13609), 1, + sym_primitive_type, + ACTIONS(13611), 1, anon_sym_enum, - ACTIONS(4429), 1, + ACTIONS(13613), 1, anon_sym_class, - ACTIONS(4431), 1, + ACTIONS(13615), 1, anon_sym_struct, - ACTIONS(4433), 1, + ACTIONS(13617), 1, anon_sym_union, - ACTIONS(4439), 1, + ACTIONS(13619), 1, + anon_sym_typename, + ACTIONS(13621), 1, sym_auto, - ACTIONS(4441), 1, + ACTIONS(13623), 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, + STATE(4137), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(7038), 1, sym__splice_specialization_specifier, - STATE(2701), 1, + STATE(7301), 1, sym_template_type, - STATE(2781), 1, + STATE(7365), 1, sym_qualified_type_identifier, - STATE(3089), 1, + STATE(7398), 1, sym_type_specifier, - STATE(3099), 1, + STATE(7844), 1, sym_decltype_auto, - STATE(8687), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(2984), 2, + STATE(7647), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4423), 4, + ACTIONS(13607), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 7, + STATE(7846), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679220,124 +752347,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270066] = 26, + [312451] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3807), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, anon_sym_enum, - ACTIONS(3809), 1, + ACTIONS(3738), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(3740), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(3742), 1, anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11705), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - ACTIONS(11040), 1, - sym_primitive_type, - ACTIONS(11042), 1, + ACTIONS(11709), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2076), 1, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2087), 1, + STATE(2916), 1, + sym_template_type, + STATE(2926), 1, sym_qualified_type_identifier, - STATE(2104), 1, + STATE(3037), 1, sym_splice_specifier, - STATE(2169), 1, - sym_decltype, - STATE(2170), 1, + STATE(3239), 1, sym__splice_specialization_specifier, - STATE(2211), 1, - sym_splice_type_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(2233), 1, + STATE(3254), 1, sym_type_specifier, - STATE(8763), 1, - sym__scope_resolution, - 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, - [270155] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13170), 1, - sym_identifier, - ACTIONS(13172), 1, - anon_sym_COLON_COLON, - ACTIONS(13176), 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, - anon_sym_typename, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4948), 1, + STATE(3314), 1, sym_decltype_auto, - STATE(7700), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8695), 1, + STATE(9763), 1, sym__scope_resolution, - STATE(9262), 1, - sym_template_type, - STATE(9343), 1, - sym_qualified_type_identifier, - STATE(10496), 1, - sym_type_specifier, - STATE(4830), 2, + STATE(3234), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13174), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(3233), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679345,61 +752409,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270242] = 25, + [312538] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, + ACTIONS(3800), 1, + anon_sym_enum, + ACTIONS(3802), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(3804), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(3806), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(3810), 1, + sym_auto, + ACTIONS(3812), 1, + anon_sym_decltype, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(11532), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(12787), 1, - anon_sym_enum, - ACTIONS(12789), 1, + ACTIONS(11536), 1, + sym_primitive_type, + ACTIONS(11538), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3126), 1, + STATE(2277), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(2545), 1, + sym_splice_specifier, + STATE(2656), 1, + sym__splice_specialization_specifier, + STATE(2811), 1, sym_template_type, - STATE(3747), 1, + STATE(2818), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(6511), 1, + STATE(2918), 1, + sym_splice_type_specifier, + STATE(2927), 1, + sym_decltype_auto, + STATE(2929), 1, + sym_decltype, + STATE(2941), 1, sym_type_specifier, - STATE(8738), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(3796), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(2928), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679407,427 +752472,250 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270329] = 26, + [312627] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(13982), 1, + sym_identifier, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4406), 1, sym_field_declaration_list, - STATE(4987), 1, + STATE(4504), 1, sym__class_declaration_item, - STATE(7812), 1, + STATE(8086), 1, + sym_splice_specifier, + STATE(8859), 1, sym_ms_declspec_modifier, - STATE(8710), 1, + STATE(9755), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7811), 2, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8858), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [270418] = 26, + [312716] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, + ACTIONS(13961), 1, sym_identifier, - ACTIONS(13166), 1, + ACTIONS(13980), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4987), 1, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4253), 1, sym__class_declaration_item, - STATE(7817), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(8747), 1, sym_ms_declspec_modifier, - STATE(8705), 1, + STATE(9805), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7816), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, + STATE(7016), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8412), 3, + STATE(8870), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [270507] = 26, + [312805] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9965), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13957), 1, sym_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4544), 1, + STATE(4253), 1, sym__class_declaration_item, - STATE(7856), 1, + STATE(4770), 1, + sym_splice_specifier, + STATE(8825), 1, sym_ms_declspec_modifier, - STATE(8676), 1, + STATE(9769), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7855), 2, + STATE(3791), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8824), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [270596] = 25, + [312894] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(4314), 1, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(4316), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(4318), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(4320), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(11281), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - ACTIONS(11083), 1, + ACTIONS(11287), 1, sym_primitive_type, - ACTIONS(11085), 1, + ACTIONS(11289), 1, anon_sym_typename, - STATE(3488), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3759), 1, + STATE(2916), 1, sym_template_type, - STATE(3819), 1, + STATE(2926), 1, sym_qualified_type_identifier, - STATE(4108), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3254), 1, sym_type_specifier, - STATE(4119), 1, + STATE(3314), 1, sym_decltype_auto, - STATE(4263), 1, + STATE(7849), 1, sym_splice_specifier, - STATE(8675), 1, + STATE(9836), 1, sym__scope_resolution, - 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, - [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, - 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(9073), 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), 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, - [270837] = 26, - 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(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, + STATE(3234), 2, 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, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3833), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3167), 7, + STATE(3233), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679835,186 +752723,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270926] = 26, + [312981] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11427), 1, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13998), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(5954), 1, - sym_field_declaration_list, - STATE(6122), 1, + STATE(3871), 1, sym__class_declaration_item, - STATE(7873), 1, + STATE(8373), 1, + sym_splice_specifier, + STATE(8624), 1, + sym_field_declaration_list, + STATE(8832), 1, sym_ms_declspec_modifier, - STATE(8757), 1, + STATE(9814), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(10718), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(11777), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(7872), 2, + STATE(8311), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8828), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [271015] = 25, + [313070] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(2728), 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(5194), 1, + anon_sym_template, + ACTIONS(11526), 1, sym_auto, - ACTIONS(3851), 1, + ACTIONS(11528), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11095), 1, + ACTIONS(13448), 1, sym_identifier, - ACTIONS(11097), 1, + ACTIONS(13450), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(13454), 1, sym_primitive_type, - ACTIONS(12839), 1, + ACTIONS(13456), 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(4849), 1, - sym_type_specifier, - 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, - [271102] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4064), 1, + ACTIONS(13458), 1, anon_sym_class, - ACTIONS(4066), 1, + ACTIONS(13460), 1, anon_sym_struct, - ACTIONS(4068), 1, + ACTIONS(13462), 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(13052), 1, - anon_sym_enum, - ACTIONS(13054), 1, + ACTIONS(13464), 1, anon_sym_typename, - STATE(2449), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(2933), 1, + STATE(3470), 1, sym_template_type, - STATE(3031), 1, + STATE(3474), 1, sym_qualified_type_identifier, - STATE(3527), 1, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3928), 1, sym_decltype_auto, - STATE(5298), 1, + STATE(6696), 1, + sym_splice_specifier, + STATE(7347), 1, sym_type_specifier, - STATE(8686), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(3447), 2, + STATE(3812), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13050), 4, + ACTIONS(13452), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3528), 7, + STATE(3939), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680022,62 +752848,122 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271189] = 26, + [313157] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3732), 1, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(8556), 1, + sym_ref_qualifier, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9283), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8713), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [313242] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, anon_sym_enum, - ACTIONS(3734), 1, + ACTIONS(77), 1, anon_sym_class, - ACTIONS(3736), 1, + ACTIONS(79), 1, anon_sym_struct, - ACTIONS(3738), 1, + ACTIONS(81), 1, anon_sym_union, - ACTIONS(3742), 1, + ACTIONS(129), 1, sym_auto, - ACTIONS(3744), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5184), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, - sym_primitive_type, - ACTIONS(11014), 1, + ACTIONS(5192), 1, anon_sym_typename, - STATE(2180), 1, + ACTIONS(5194), 1, + anon_sym_template, + STATE(3245), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(4033), 1, sym_template_type, - STATE(2698), 1, + STATE(4036), 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(4255), 1, sym_type_specifier, - STATE(8682), 1, + STATE(4287), 1, + sym_decltype_auto, + STATE(4349), 1, + sym_splice_specifier, + STATE(9818), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(4211), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3728), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(4346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680085,221 +752971,122 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271278] = 16, + [313329] = 24, 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(7511), 1, - sym_alignas_qualifier, - STATE(8625), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10687), 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, - [271347] = 6, - 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(5657), 4, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(7371), 28, + ACTIONS(10934), 1, anon_sym_AMP, - anon_sym___extension__, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11625), 1, + anon_sym_requires, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, anon_sym___attribute__, + ACTIONS(13011), 1, 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, + STATE(8548), 1, + sym_ref_qualifier, + STATE(9438), 1, + sym_trailing_return_type, + STATE(9519), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - [271396] = 26, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8683), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [313414] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2438), 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(13625), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(13627), 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, - sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3485), 1, - sym_splice_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, - 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, - [271485] = 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(13631), 1, + sym_primitive_type, + ACTIONS(13633), 1, anon_sym_enum, - ACTIONS(3706), 1, + ACTIONS(13635), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(13637), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(13639), 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, + ACTIONS(13641), 1, anon_sym_typename, - STATE(2852), 1, + ACTIONS(13643), 1, + sym_auto, + ACTIONS(13645), 1, + anon_sym_decltype, + STATE(2416), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3021), 1, - sym_decltype, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3708), 1, sym_template_type, - STATE(3747), 1, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3826), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(4698), 1, - sym_splice_type_specifier, - STATE(8738), 1, + STATE(4089), 1, + sym_decltype_auto, + STATE(4138), 1, + sym_type_specifier, + STATE(9840), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(3997), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(13629), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4090), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680307,62 +753094,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271574] = 26, + [313501] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4427), 1, + ACTIONS(3868), 1, anon_sym_enum, - ACTIONS(4429), 1, + ACTIONS(3870), 1, anon_sym_class, - ACTIONS(4431), 1, + ACTIONS(3872), 1, anon_sym_struct, - ACTIONS(4433), 1, + ACTIONS(3874), 1, anon_sym_union, - ACTIONS(4439), 1, + ACTIONS(3880), 1, sym_auto, - ACTIONS(4441), 1, + ACTIONS(3882), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3884), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11087), 1, + ACTIONS(11693), 1, sym_identifier, - ACTIONS(11089), 1, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - ACTIONS(11091), 1, + ACTIONS(11697), 1, sym_primitive_type, - ACTIONS(11093), 1, + ACTIONS(11699), 1, anon_sym_typename, - STATE(2283), 1, + STATE(2337), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, + STATE(2640), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(2685), 1, sym__splice_specialization_specifier, - STATE(2701), 1, + STATE(2852), 1, sym_template_type, - STATE(2781), 1, + STATE(2853), 1, sym_qualified_type_identifier, - STATE(2984), 1, + STATE(3034), 1, + sym_decltype_auto, + STATE(3036), 1, sym_decltype, - STATE(3089), 1, + STATE(3043), 1, sym_type_specifier, - STATE(3099), 1, - sym_decltype_auto, - STATE(3153), 1, + STATE(3101), 1, sym_splice_type_specifier, - STATE(8687), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4423), 4, + ACTIONS(3864), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 7, + STATE(3035), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680370,61 +753157,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271663] = 25, + [313590] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(4367), 1, + anon_sym_enum, + ACTIONS(4369), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(4371), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(4373), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(4379), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(4381), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(4383), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(11685), 1, + sym_identifier, + ACTIONS(11687), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(11689), 1, sym_primitive_type, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(12897), 1, - anon_sym_enum, - ACTIONS(12899), 1, + ACTIONS(11691), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, + STATE(2340), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2639), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(2210), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2221), 1, + STATE(2860), 1, + sym_template_type, + STATE(2861), 1, + sym_qualified_type_identifier, + STATE(2979), 1, sym_decltype_auto, - STATE(3566), 1, + STATE(2988), 1, sym_type_specifier, - STATE(8763), 1, + STATE(9746), 1, sym__scope_resolution, - STATE(2169), 2, + STATE(2981), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12895), 4, + ACTIONS(4363), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(2980), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680432,61 +753219,245 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271750] = 25, + [313677] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9637), 1, + anon_sym_LPAREN2, + ACTIONS(9651), 1, + anon_sym_LBRACK, + ACTIONS(10588), 1, + anon_sym_STAR, + ACTIONS(10590), 1, + anon_sym_AMP_AMP, + ACTIONS(10592), 1, + anon_sym_AMP, + ACTIONS(10594), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5883), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9349), 1, + sym__function_declarator_seq, + STATE(9651), 1, + sym__scope_resolution, + STATE(9944), 1, + sym__abstract_declarator, + ACTIONS(7862), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(7864), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9348), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [313756] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4304), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9690), 1, + anon_sym_LBRACE, + ACTIONS(11679), 1, + anon_sym_COLON_COLON, + ACTIONS(14006), 1, + sym_identifier, + STATE(4119), 1, + sym_splice_specifier, + STATE(4182), 1, + sym__splice_specialization_specifier, + STATE(4366), 1, + sym_field_declaration_list, + STATE(4729), 1, + sym__class_declaration_item, + STATE(8770), 1, + sym_ms_declspec_modifier, + STATE(9844), 1, + sym__scope_resolution, + STATE(10775), 1, + sym_virtual_specifier, + STATE(11821), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4328), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8769), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [313845] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3466), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(8718), 1, + anon_sym_LBRACE, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, + sym_identifier, + STATE(3117), 1, + sym_field_declaration_list, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3296), 1, + sym__class_declaration_item, + STATE(7849), 1, + sym_splice_specifier, + STATE(8782), 1, + sym_ms_declspec_modifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(10610), 1, + sym_virtual_specifier, + STATE(11527), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2803), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8815), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [313934] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13424), 1, + sym_identifier, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(13432), 1, sym_primitive_type, - ACTIONS(3468), 1, + ACTIONS(13434), 1, anon_sym_enum, - ACTIONS(3470), 1, + ACTIONS(13436), 1, anon_sym_class, - ACTIONS(3472), 1, + ACTIONS(13438), 1, anon_sym_struct, - ACTIONS(3474), 1, + ACTIONS(13440), 1, anon_sym_union, - ACTIONS(3476), 1, + ACTIONS(13442), 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, - sym__splice_specialization_specifier, - STATE(3824), 1, + ACTIONS(13444), 1, + sym_auto, + ACTIONS(13446), 1, + anon_sym_decltype, + STATE(4131), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4504), 1, - sym_splice_specifier, - STATE(4578), 1, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6845), 1, sym_template_type, - STATE(4601), 1, + STATE(6885), 1, sym_qualified_type_identifier, - STATE(4776), 1, - sym_type_specifier, - STATE(4948), 1, + STATE(6979), 1, + sym_splice_specifier, + STATE(7186), 1, sym_decltype_auto, - STATE(8716), 1, + STATE(7385), 1, + sym_type_specifier, + STATE(9815), 1, sym__scope_resolution, - STATE(4830), 2, + STATE(7067), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(13430), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(7187), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680494,177 +753465,249 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271837] = 26, + [314021] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8088), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9246), 1, - anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(14008), 1, sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(2545), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(2656), 1, + sym__splice_specialization_specifier, + STATE(2708), 1, sym_field_declaration_list, - STATE(4131), 1, + STATE(2943), 1, sym__class_declaration_item, - STATE(7883), 1, + STATE(8881), 1, sym_ms_declspec_modifier, - STATE(8707), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(10789), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(11403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3540), 2, + STATE(2403), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(2610), 2, sym_template_type, sym_splice_type_specifier, - STATE(7882), 2, + STATE(8880), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [271926] = 16, + [314110] = 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(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13635), 1, + anon_sym_class, + ACTIONS(13637), 1, + anon_sym_struct, + ACTIONS(13639), 1, + anon_sym_union, + ACTIONS(13643), 1, + sym_auto, + ACTIONS(13645), 1, + anon_sym_decltype, + ACTIONS(13895), 1, + sym_identifier, + ACTIONS(13899), 1, + sym_primitive_type, + ACTIONS(13901), 1, + anon_sym_enum, + ACTIONS(13903), 1, + anon_sym_typename, + STATE(2390), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3708), 1, + sym_template_type, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3806), 1, + sym_type_specifier, + STATE(3826), 1, + sym_qualified_type_identifier, + STATE(4089), 1, + sym_decltype_auto, + STATE(9840), 1, + sym__scope_resolution, + STATE(3997), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13897), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4090), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [314197] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4064), 1, + ACTIONS(4254), 1, + anon_sym_enum, + ACTIONS(4256), 1, anon_sym_class, - ACTIONS(4066), 1, + ACTIONS(4258), 1, anon_sym_struct, - ACTIONS(4068), 1, + ACTIONS(4260), 1, anon_sym_union, - ACTIONS(4072), 1, + ACTIONS(4286), 1, sym_auto, - ACTIONS(4074), 1, + ACTIONS(4288), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(4304), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11071), 1, + ACTIONS(11677), 1, sym_identifier, - ACTIONS(11073), 1, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - ACTIONS(11075), 1, + ACTIONS(11681), 1, sym_primitive_type, - ACTIONS(13052), 1, - anon_sym_enum, - ACTIONS(13054), 1, + ACTIONS(11683), 1, anon_sym_typename, - STATE(2449), 1, + STATE(3348), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, + STATE(4119), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(4182), 1, sym__splice_specialization_specifier, - STATE(2933), 1, + STATE(4542), 1, sym_template_type, - STATE(3031), 1, + STATE(4544), 1, sym_qualified_type_identifier, - STATE(3527), 1, + STATE(4766), 1, sym_decltype_auto, - STATE(5385), 1, + STATE(4774), 1, + sym_decltype, + STATE(4794), 1, + sym_type_specifier, + STATE(4798), 1, + sym_splice_type_specifier, + STATE(9844), 1, + sym__scope_resolution, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4250), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4771), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [314286] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13538), 1, + sym_identifier, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13544), 1, + sym_primitive_type, + ACTIONS(13546), 1, + anon_sym_enum, + ACTIONS(13548), 1, + anon_sym_class, + ACTIONS(13550), 1, + anon_sym_struct, + ACTIONS(13552), 1, + anon_sym_union, + ACTIONS(13554), 1, + anon_sym_typename, + ACTIONS(13556), 1, + sym_auto, + ACTIONS(13558), 1, + anon_sym_decltype, + STATE(2624), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5227), 1, + sym_template_type, + STATE(5365), 1, sym_type_specifier, - STATE(8686), 1, + STATE(5416), 1, + sym_qualified_type_identifier, + STATE(6160), 1, + sym_decltype_auto, + STATE(9822), 1, sym__scope_resolution, - STATE(3447), 2, + STATE(6010), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13050), 4, + ACTIONS(13542), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3528), 7, + STATE(6163), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680672,122 +753715,122 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272082] = 24, + [314373] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10934), 1, anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11044), 1, + ACTIONS(11734), 1, anon_sym_DASH_GT, - ACTIONS(13188), 1, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(14041), 1, anon_sym_requires, - STATE(7653), 1, + STATE(8561), 1, sym_ref_qualifier, - STATE(8398), 1, + STATE(9412), 1, sym_trailing_return_type, - STATE(8627), 1, + STATE(9449), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - STATE(7794), 3, + STATE(8688), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 5, + ACTIONS(7474), 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, + [314458] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(3078), 1, anon_sym_LBRACK_COLON, - ACTIONS(10986), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13538), 1, sym_identifier, - ACTIONS(10988), 1, + ACTIONS(13540), 1, anon_sym_COLON_COLON, - ACTIONS(10992), 1, + ACTIONS(13544), 1, sym_primitive_type, - ACTIONS(10994), 1, + ACTIONS(13546), 1, anon_sym_enum, - ACTIONS(10996), 1, + ACTIONS(13548), 1, anon_sym_class, - ACTIONS(10998), 1, + ACTIONS(13550), 1, anon_sym_struct, - ACTIONS(11000), 1, + ACTIONS(13552), 1, anon_sym_union, - ACTIONS(11002), 1, + ACTIONS(13554), 1, anon_sym_typename, - ACTIONS(11004), 1, + ACTIONS(13556), 1, sym_auto, - ACTIONS(11006), 1, + ACTIONS(13558), 1, anon_sym_decltype, - STATE(6426), 1, + STATE(2624), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6581), 1, + STATE(4787), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(4831), 1, sym__splice_specialization_specifier, - STATE(7225), 1, + STATE(5227), 1, sym_template_type, - STATE(7440), 1, + STATE(5416), 1, sym_qualified_type_identifier, - STATE(7625), 1, + STATE(6160), 1, sym_decltype_auto, - STATE(7639), 1, + STATE(6193), 1, sym_type_specifier, - STATE(8700), 1, + STATE(9822), 1, sym__scope_resolution, - STATE(7592), 2, + STATE(6010), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10990), 4, + ACTIONS(13542), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(7655), 7, + STATE(6163), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680795,247 +753838,230 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272254] = 24, + [314545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(13480), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(5689), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + anon_sym_LBRACE, + ACTIONS(7543), 28, anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, + anon_sym___extension__, 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_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, - 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, + [314594] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 1, + anon_sym_enum, + ACTIONS(3838), 1, + anon_sym_class, + ACTIONS(3840), 1, + anon_sym_struct, + ACTIONS(3842), 1, + anon_sym_union, + ACTIONS(3848), 1, + sym_auto, + ACTIONS(3850), 1, + anon_sym_decltype, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11615), 1, + sym_identifier, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(11619), 1, + sym_primitive_type, + ACTIONS(11621), 1, + anon_sym_typename, + STATE(2069), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2228), 1, + sym_template_type, + STATE(2229), 1, + sym_qualified_type_identifier, + STATE(2255), 1, + sym_splice_specifier, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2314), 1, + sym_type_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(9811), 1, + sym__scope_resolution, + STATE(2345), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3832), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2339), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [314681] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8297), 1, + ACTIONS(10822), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(14010), 1, sym_identifier, - STATE(2605), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(4858), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(5378), 1, sym_field_declaration_list, - STATE(3165), 1, + STATE(6314), 1, sym__class_declaration_item, - STATE(7809), 1, + STATE(8779), 1, sym_ms_declspec_modifier, - STATE(8702), 1, + STATE(9745), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(10745), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(11625), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2475), 2, + STATE(4667), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(7808), 2, + STATE(8778), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [272428] = 25, + [314770] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(4114), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(4116), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(4118), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(4120), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(4124), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(4126), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(4128), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(11669), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(11673), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(11675), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2389), 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(7260), 1, + STATE(2836), 1, sym_splice_specifier, - STATE(8711), 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, - [272515] = 25, - 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(4043), 1, + STATE(2890), 1, + sym__splice_specialization_specifier, + STATE(2982), 1, sym_template_type, - STATE(4204), 1, + STATE(2983), 1, sym_qualified_type_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, + STATE(3336), 1, sym_decltype_auto, - STATE(4457), 1, - sym_type_specifier, - STATE(8676), 1, - sym__scope_resolution, - STATE(4373), 2, + STATE(3338), 1, sym_decltype, + STATE(3344), 1, + sym_type_specifier, + STATE(3380), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(9817), 1, + sym__scope_resolution, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4395), 4, + ACTIONS(4110), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(3337), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681043,124 +754069,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272602] = 26, + [314859] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(4966), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(12545), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13986), 1, sym_identifier, - STATE(3028), 1, + STATE(7005), 1, + sym_splice_specifier, + STATE(7038), 1, sym__splice_specialization_specifier, - STATE(3185), 1, - sym__class_declaration_item, - STATE(3863), 1, + STATE(7367), 1, sym_field_declaration_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(7841), 1, + STATE(7876), 1, + sym__class_declaration_item, + STATE(8875), 1, sym_ms_declspec_modifier, - STATE(8711), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10709), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11590), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(6919), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7857), 2, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8874), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [272691] = 25, + [314948] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(3868), 1, + anon_sym_enum, + ACTIONS(3870), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(3872), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(3874), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(3880), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(3882), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3884), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(11693), 1, + sym_identifier, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(11697), 1, sym_primitive_type, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(12897), 1, - anon_sym_enum, - ACTIONS(12899), 1, + ACTIONS(11699), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, + STATE(2337), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2640), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2685), 1, sym__splice_specialization_specifier, - STATE(2210), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2221), 1, + STATE(2852), 1, + sym_template_type, + STATE(2853), 1, + sym_qualified_type_identifier, + STATE(3034), 1, sym_decltype_auto, - STATE(3581), 1, + STATE(3043), 1, sym_type_specifier, - STATE(8763), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(2169), 2, + STATE(3036), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12895), 4, + ACTIONS(3864), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3035), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681168,61 +754194,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272778] = 25, + [315035] = 25, 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, + ACTIONS(129), 1, sym_auto, - ACTIONS(3893), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11109), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14023), 1, sym_identifier, - ACTIONS(11111), 1, + ACTIONS(14025), 1, anon_sym_COLON_COLON, - ACTIONS(12875), 1, + ACTIONS(14029), 1, + sym_primitive_type, + ACTIONS(14031), 1, anon_sym_enum, - ACTIONS(12877), 1, + ACTIONS(14033), 1, + anon_sym_class, + ACTIONS(14035), 1, + anon_sym_struct, + ACTIONS(14037), 1, + anon_sym_union, + ACTIONS(14039), 1, anon_sym_typename, - STATE(3375), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3759), 1, + STATE(4033), 1, sym_template_type, - STATE(3819), 1, + STATE(4036), 1, sym_qualified_type_identifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(5431), 1, + STATE(4255), 1, sym_type_specifier, - STATE(8707), 1, + STATE(4287), 1, + sym_decltype_auto, + STATE(8602), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(9748), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(9983), 1, + sym_splice_specifier, + STATE(4211), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12873), 4, + ACTIONS(14027), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(4346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681230,124 +754256,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272865] = 26, + [315122] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13978), 1, sym_identifier, - STATE(3808), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(3871), 1, + sym__class_declaration_item, + STATE(6696), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(6972), 1, sym_field_declaration_list, - STATE(4987), 1, - sym__class_declaration_item, - STATE(7890), 1, + STATE(8842), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10754), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11788), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(6571), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7880), 2, + STATE(8838), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [272954] = 25, + [315211] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3078), 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(5194), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(13538), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(13540), 1, anon_sym_COLON_COLON, - ACTIONS(12787), 1, + ACTIONS(13544), 1, + sym_primitive_type, + ACTIONS(13546), 1, anon_sym_enum, - ACTIONS(12789), 1, + ACTIONS(13548), 1, + anon_sym_class, + ACTIONS(13550), 1, + anon_sym_struct, + ACTIONS(13552), 1, + anon_sym_union, + ACTIONS(13554), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3126), 1, + ACTIONS(13556), 1, + sym_auto, + ACTIONS(13558), 1, + anon_sym_decltype, + STATE(2624), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5227), 1, sym_template_type, - STATE(3747), 1, + STATE(5416), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(8738), 1, + STATE(5428), 1, + sym_type_specifier, + STATE(6160), 1, + sym_decltype_auto, + STATE(9822), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(6010), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(13542), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(6163), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681355,230 +754381,248 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273041] = 26, + [315298] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13951), 1, sym_identifier, - STATE(3028), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(3185), 1, - sym__class_declaration_item, - STATE(7481), 1, + STATE(6573), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(6991), 1, sym_field_declaration_list, - STATE(7835), 1, + STATE(7077), 1, + sym__class_declaration_item, + STATE(8850), 1, sym_ms_declspec_modifier, - STATE(8691), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(10801), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(11831), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7348), 2, + STATE(6384), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7834), 2, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8849), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [273130] = 6, + [315387] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, + ACTIONS(3161), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13845), 1, + sym_identifier, + ACTIONS(13847), 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, + ACTIONS(13851), 1, + sym_primitive_type, + ACTIONS(13853), 1, + anon_sym_enum, + ACTIONS(13855), 1, + anon_sym_class, + ACTIONS(13857), 1, + anon_sym_struct, + ACTIONS(13859), 1, + anon_sym_union, + ACTIONS(13861), 1, + anon_sym_typename, + ACTIONS(13863), 1, + sym_auto, + ACTIONS(13865), 1, + anon_sym_decltype, + STATE(2739), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4986), 1, + sym_splice_specifier, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(5661), 1, + sym_template_type, + STATE(5876), 1, + sym_qualified_type_identifier, + STATE(6114), 1, + sym_type_specifier, + STATE(6672), 1, + sym_decltype_auto, + STATE(9816), 1, + sym__scope_resolution, + STATE(6545), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13849), 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, - [273179] = 26, + STATE(6673), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [315474] = 25, 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, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, - anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13444), 1, + sym_auto, + ACTIONS(13446), 1, + anon_sym_decltype, + ACTIONS(13575), 1, sym_identifier, - STATE(4305), 1, + ACTIONS(13577), 1, + anon_sym_COLON_COLON, + ACTIONS(13581), 1, + sym_primitive_type, + ACTIONS(13583), 1, + anon_sym_enum, + ACTIONS(13585), 1, + anon_sym_class, + ACTIONS(13587), 1, + anon_sym_struct, + ACTIONS(13589), 1, + anon_sym_union, + ACTIONS(13591), 1, + anon_sym_typename, + STATE(3645), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(4350), 1, - sym_field_declaration_list, - STATE(4544), 1, - sym__class_declaration_item, - STATE(7326), 1, + STATE(6573), 1, sym_splice_specifier, - STATE(7845), 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__, - 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, + STATE(6845), 1, sym_template_type, - sym_splice_type_specifier, - STATE(7844), 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, + STATE(6885), 1, + sym_qualified_type_identifier, + STATE(7124), 1, + sym_type_specifier, + STATE(7186), 1, + sym_decltype_auto, + STATE(9760), 1, + sym__scope_resolution, + STATE(7067), 2, sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - [273268] = 25, + ACTIONS(13579), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7187), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [315561] = 25, 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(4948), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13424), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(13428), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(13432), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(13434), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(13436), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(13438), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(13440), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(13442), 1, anon_sym_typename, - STATE(3028), 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, + ACTIONS(13444), 1, + sym_auto, + ACTIONS(13446), 1, + anon_sym_decltype, + STATE(4131), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6845), 1, sym_template_type, - STATE(7716), 1, + STATE(6885), 1, sym_qualified_type_identifier, - STATE(8691), 1, + STATE(6979), 1, + sym_splice_specifier, + STATE(7186), 1, + sym_decltype_auto, + STATE(7387), 1, + sym_type_specifier, + STATE(9815), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(7067), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(13430), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(7187), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681586,61 +754630,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273355] = 25, + [315648] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11526), 1, sym_auto, - ACTIONS(131), 1, + ACTIONS(11528), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13170), 1, + ACTIONS(13448), 1, sym_identifier, - ACTIONS(13172), 1, + ACTIONS(13450), 1, anon_sym_COLON_COLON, - ACTIONS(13176), 1, + ACTIONS(13454), 1, sym_primitive_type, - ACTIONS(13178), 1, + ACTIONS(13456), 1, anon_sym_enum, - ACTIONS(13180), 1, + ACTIONS(13458), 1, anon_sym_class, - ACTIONS(13182), 1, + ACTIONS(13460), 1, anon_sym_struct, - ACTIONS(13184), 1, + ACTIONS(13462), 1, anon_sym_union, - ACTIONS(13186), 1, + ACTIONS(13464), 1, anon_sym_typename, - STATE(3808), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4948), 1, - sym_decltype_auto, - STATE(7700), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8695), 1, - sym__scope_resolution, - STATE(9262), 1, + STATE(3470), 1, sym_template_type, - STATE(9343), 1, + STATE(3474), 1, sym_qualified_type_identifier, - STATE(10506), 1, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3928), 1, + sym_decltype_auto, + STATE(5857), 1, sym_type_specifier, - STATE(4830), 2, + STATE(6696), 1, + sym_splice_specifier, + STATE(9846), 1, + sym__scope_resolution, + STATE(3812), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13174), 4, + ACTIONS(13452), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(3939), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681648,62 +754692,123 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273442] = 26, + [315735] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11526), 1, sym_auto, - ACTIONS(131), 1, + ACTIONS(11528), 1, anon_sym_decltype, - ACTIONS(2314), 1, + ACTIONS(13448), 1, + sym_identifier, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13454), 1, + sym_primitive_type, + ACTIONS(13456), 1, anon_sym_enum, - ACTIONS(2316), 1, + ACTIONS(13458), 1, anon_sym_class, - ACTIONS(2318), 1, + ACTIONS(13460), 1, anon_sym_struct, - ACTIONS(2320), 1, + ACTIONS(13462), 1, anon_sym_union, - ACTIONS(3466), 1, - sym_primitive_type, - ACTIONS(3486), 1, + ACTIONS(13464), 1, + anon_sym_typename, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3928), 1, + sym_decltype_auto, + STATE(6696), 1, + sym_splice_specifier, + STATE(7379), 1, + sym_type_specifier, + STATE(9846), 1, + sym__scope_resolution, + STATE(3812), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13452), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [315822] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4948), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5629), 1, - anon_sym_typename, - ACTIONS(6455), 1, + ACTIONS(13424), 1, sym_identifier, - ACTIONS(6469), 1, + ACTIONS(13428), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, + ACTIONS(13432), 1, + sym_primitive_type, + ACTIONS(13434), 1, + anon_sym_enum, + ACTIONS(13436), 1, + anon_sym_class, + ACTIONS(13438), 1, + anon_sym_struct, + ACTIONS(13440), 1, + anon_sym_union, + ACTIONS(13442), 1, + anon_sym_typename, + ACTIONS(13444), 1, + sym_auto, + ACTIONS(13446), 1, + anon_sym_decltype, + STATE(4131), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4578), 1, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6845), 1, sym_template_type, - STATE(4601), 1, + STATE(6885), 1, sym_qualified_type_identifier, - STATE(4609), 1, - sym_splice_type_specifier, - STATE(4776), 1, + STATE(6979), 1, + sym_splice_specifier, + STATE(7124), 1, sym_type_specifier, - STATE(4830), 1, - sym_decltype, - STATE(4948), 1, + STATE(7186), 1, sym_decltype_auto, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(9815), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(7067), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(13430), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(7187), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681711,61 +754816,183 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273531] = 25, + [315909] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10569), 1, + anon_sym_STAR, + ACTIONS(10571), 1, + anon_sym_AMP_AMP, + ACTIONS(10573), 1, + anon_sym_AMP, + ACTIONS(10575), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5233), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9565), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9935), 1, + sym__abstract_declarator, + ACTIONS(7862), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(7864), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [315988] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(4383), 1, anon_sym_LBRACK_COLON, - ACTIONS(4399), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8249), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11687), 1, + anon_sym_COLON_COLON, + ACTIONS(14012), 1, + sym_identifier, + STATE(2639), 1, + sym_splice_specifier, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2742), 1, + sym_field_declaration_list, + STATE(2999), 1, + sym__class_declaration_item, + STATE(8787), 1, + sym_ms_declspec_modifier, + STATE(9746), 1, + sym__scope_resolution, + STATE(10564), 1, + sym_virtual_specifier, + STATE(11510), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2451), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2700), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8786), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [316077] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2280), 1, + sym_auto, + ACTIONS(2282), 1, + anon_sym_decltype, + ACTIONS(3736), 1, + anon_sym_enum, + ACTIONS(3738), 1, anon_sym_class, - ACTIONS(4401), 1, + ACTIONS(3740), 1, anon_sym_struct, - ACTIONS(4403), 1, + ACTIONS(3742), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11050), 1, + ACTIONS(11287), 1, sym_primitive_type, - ACTIONS(11057), 1, + ACTIONS(11705), 1, sym_identifier, - ACTIONS(11059), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - ACTIONS(12988), 1, - anon_sym_enum, - ACTIONS(12990), 1, + ACTIONS(11709), 1, anon_sym_typename, - STATE(3770), 1, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, + STATE(2916), 1, sym_template_type, - STATE(4204), 1, + STATE(2926), 1, sym_qualified_type_identifier, - STATE(4272), 1, + STATE(3037), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(3234), 1, + sym_decltype, + STATE(3239), 1, sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(6505), 1, + STATE(3254), 1, sym_type_specifier, - STATE(8676), 1, - sym__scope_resolution, - STATE(4373), 2, - sym_decltype, + STATE(3314), 1, + sym_decltype_auto, + STATE(4750), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(9763), 1, + sym__scope_resolution, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12986), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(3233), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681773,61 +755000,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273618] = 25, + [316166] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(3161), 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11087), 1, + ACTIONS(13845), 1, sym_identifier, - ACTIONS(11089), 1, + ACTIONS(13847), 1, anon_sym_COLON_COLON, - ACTIONS(11091), 1, + ACTIONS(13851), 1, sym_primitive_type, - ACTIONS(12795), 1, + ACTIONS(13853), 1, anon_sym_enum, - ACTIONS(12797), 1, + ACTIONS(13855), 1, + anon_sym_class, + ACTIONS(13857), 1, + anon_sym_struct, + ACTIONS(13859), 1, + anon_sym_union, + ACTIONS(13861), 1, anon_sym_typename, - STATE(2377), 1, + ACTIONS(13863), 1, + sym_auto, + ACTIONS(13865), 1, + anon_sym_decltype, + STATE(2739), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(5034), 1, sym__splice_specialization_specifier, - STATE(2701), 1, + STATE(5661), 1, sym_template_type, - STATE(2781), 1, + STATE(5876), 1, sym_qualified_type_identifier, - STATE(3099), 1, - sym_decltype_auto, - STATE(4931), 1, + STATE(5906), 1, sym_type_specifier, - STATE(8687), 1, + STATE(6672), 1, + sym_decltype_auto, + STATE(9816), 1, sym__scope_resolution, - STATE(2984), 2, + STATE(6545), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12793), 4, + ACTIONS(13849), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 7, + STATE(6673), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681835,61 +755062,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273705] = 25, + [316253] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(4316), 1, + ACTIONS(3248), 1, + anon_sym_enum, + ACTIONS(3250), 1, anon_sym_class, - ACTIONS(4318), 1, + ACTIONS(3252), 1, anon_sym_struct, - ACTIONS(4320), 1, + ACTIONS(3254), 1, anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(3280), 1, + sym_auto, + ACTIONS(3282), 1, + anon_sym_decltype, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11651), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - ACTIONS(11083), 1, + ACTIONS(11655), 1, sym_primitive_type, - ACTIONS(12759), 1, - anon_sym_enum, - ACTIONS(12761), 1, + ACTIONS(11657), 1, anon_sym_typename, - STATE(3711), 1, + STATE(3339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(3759), 1, + STATE(4341), 1, sym_template_type, - STATE(3762), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3819), 1, + STATE(4342), 1, sym_qualified_type_identifier, - STATE(4119), 1, + STATE(4492), 1, sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(6534), 1, - sym_type_specifier, - STATE(8675), 1, - sym__scope_resolution, - STATE(3967), 2, + STATE(4495), 1, sym_decltype, + STATE(4543), 1, + sym_type_specifier, + STATE(4700), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, + sym__scope_resolution, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12757), 4, + ACTIONS(3244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(4493), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681897,61 +755125,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273792] = 25, + [316342] = 25, 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, + ACTIONS(129), 1, sym_auto, - ACTIONS(3238), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11046), 1, + ACTIONS(14023), 1, sym_identifier, - ACTIONS(11048), 1, + ACTIONS(14025), 1, anon_sym_COLON_COLON, - ACTIONS(11050), 1, + ACTIONS(14029), 1, sym_primitive_type, - ACTIONS(11052), 1, + ACTIONS(14031), 1, + anon_sym_enum, + ACTIONS(14033), 1, + anon_sym_class, + ACTIONS(14035), 1, + anon_sym_struct, + ACTIONS(14037), 1, + anon_sym_union, + ACTIONS(14039), 1, anon_sym_typename, - STATE(4043), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, sym_template_type, - STATE(4204), 1, + STATE(4036), 1, sym_qualified_type_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, + STATE(4287), 1, sym_decltype_auto, - STATE(4457), 1, - sym_type_specifier, - STATE(6642), 1, + STATE(8602), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(9748), 1, sym__scope_resolution, - STATE(4373), 2, + STATE(9983), 1, + sym_splice_specifier, + STATE(11474), 1, + sym_type_specifier, + STATE(4211), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3200), 4, + ACTIONS(14027), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(4346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681959,61 +755187,103 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273879] = 25, + [316429] = 4, 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(5836), 1, + anon_sym_SEMI, + ACTIONS(5671), 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(5663), 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, + [316474] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2248), 1, anon_sym_enum, - ACTIONS(5148), 1, + ACTIONS(2250), 1, anon_sym_class, - ACTIONS(5150), 1, + ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(5152), 1, + ACTIONS(2254), 1, anon_sym_union, - ACTIONS(5154), 1, - anon_sym_typename, - ACTIONS(5156), 1, + ACTIONS(2280), 1, sym_auto, - ACTIONS(5158), 1, + ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(11281), 1, + sym_identifier, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11287), 1, + sym_primitive_type, + ACTIONS(11289), 1, + anon_sym_typename, + ACTIONS(11291), 1, anon_sym_LBRACK_COLON, - STATE(4387), 1, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4802), 1, - sym_splice_specifier, - STATE(5365), 1, + STATE(2916), 1, sym_template_type, - STATE(5472), 1, - sym__splice_specialization_specifier, - STATE(5574), 1, + STATE(2926), 1, sym_qualified_type_identifier, - STATE(6026), 1, + STATE(3234), 1, + sym_decltype, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3254), 1, sym_type_specifier, - STATE(6031), 1, + STATE(3314), 1, sym_decltype_auto, - STATE(8757), 1, - sym__scope_resolution, - STATE(5973), 2, - sym_decltype, + STATE(7849), 1, + sym_splice_specifier, + STATE(8634), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(9836), 1, + sym__scope_resolution, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(5142), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6050), 7, + STATE(3233), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682021,62 +755291,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273966] = 26, + [316563] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13625), 1, + sym_identifier, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13631), 1, + sym_primitive_type, + ACTIONS(13633), 1, anon_sym_enum, - ACTIONS(77), 1, + ACTIONS(13635), 1, anon_sym_class, - ACTIONS(79), 1, + ACTIONS(13637), 1, anon_sym_struct, - ACTIONS(81), 1, + ACTIONS(13639), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(13641), 1, + anon_sym_typename, + ACTIONS(13643), 1, sym_auto, - ACTIONS(131), 1, + ACTIONS(13645), 1, anon_sym_decltype, - ACTIONS(3466), 1, - sym_primitive_type, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5464), 1, - anon_sym_typename, - ACTIONS(5936), 1, - sym_identifier, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, + STATE(2416), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4504), 1, + STATE(3490), 1, sym_splice_specifier, - STATE(4578), 1, + STATE(3708), 1, sym_template_type, - STATE(4601), 1, - sym_qualified_type_identifier, - STATE(4609), 1, - sym_splice_type_specifier, - STATE(4776), 1, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3804), 1, sym_type_specifier, - STATE(4830), 1, - sym_decltype, - STATE(4948), 1, + STATE(3826), 1, + sym_qualified_type_identifier, + STATE(4089), 1, sym_decltype_auto, - STATE(8716), 1, + STATE(9840), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(3997), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(13629), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(4090), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682084,188 +755353,240 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274055] = 26, + [316650] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12734), 1, + anon_sym_LPAREN2, + ACTIONS(12752), 1, + sym_identifier, + ACTIONS(12754), 1, + anon_sym_STAR, + ACTIONS(12756), 1, + anon_sym_AMP_AMP, + ACTIONS(12758), 1, + anon_sym_AMP, + STATE(2859), 1, + sym_alignas_qualifier, + STATE(9711), 1, + sym__field_declarator, + STATE(9871), 1, + sym_operator_name, + STATE(12436), 1, + sym_ms_based_modifier, + ACTIONS(3228), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2654), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(9957), 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(3226), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [316719] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(3852), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(7243), 1, + ACTIONS(7378), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(11038), 1, + ACTIONS(11617), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13953), 1, sym_identifier, - STATE(2104), 1, + STATE(2255), 1, sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(2267), 1, sym_field_declaration_list, - STATE(2190), 1, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2313), 1, sym__class_declaration_item, - STATE(7814), 1, + STATE(8826), 1, sym_ms_declspec_modifier, - STATE(8763), 1, + STATE(9811), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(10811), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(11701), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2075), 2, + STATE(2199), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(2281), 2, sym_template_type, sym_splice_type_specifier, - STATE(7813), 2, + STATE(8822), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [274144] = 26, + [316808] = 26, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11109), 1, - sym_identifier, - ACTIONS(11111), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 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, + ACTIONS(12873), 1, + anon_sym_LBRACE, + ACTIONS(13945), 1, + sym_identifier, + STATE(7345), 1, sym_splice_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3819), 1, + STATE(7704), 1, + sym_field_declaration_list, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8045), 1, + sym__class_declaration_item, + STATE(8795), 1, + sym_ms_declspec_modifier, + STATE(9795), 1, + sym__scope_resolution, + STATE(10623), 1, + sym_virtual_specifier, + STATE(11648), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7244), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3967), 1, + STATE(7771), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8794), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, 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, + [316897] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, - anon_sym_decltype, - ACTIONS(2314), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13625), 1, + sym_identifier, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13631), 1, + sym_primitive_type, + ACTIONS(13633), 1, anon_sym_enum, - ACTIONS(2316), 1, + ACTIONS(13635), 1, anon_sym_class, - ACTIONS(2318), 1, + ACTIONS(13637), 1, anon_sym_struct, - ACTIONS(2320), 1, + ACTIONS(13639), 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, + ACTIONS(13641), 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, + ACTIONS(13643), 1, + sym_auto, + ACTIONS(13645), 1, + anon_sym_decltype, + STATE(2416), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4578), 1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3708), 1, sym_template_type, - STATE(4601), 1, - sym_qualified_type_identifier, - STATE(4776), 1, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3806), 1, sym_type_specifier, - STATE(4830), 1, - sym_decltype, - STATE(4948), 1, + STATE(3826), 1, + sym_qualified_type_identifier, + STATE(4089), 1, sym_decltype_auto, - STATE(5157), 1, - sym_splice_specifier, - STATE(5943), 1, - sym_splice_type_specifier, - STATE(8756), 1, + STATE(9840), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(3997), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(13629), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(4090), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682273,61 +755594,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274322] = 25, + [316984] = 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11508), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(11510), 1, anon_sym_COLON_COLON, - ACTIONS(12787), 1, + ACTIONS(11514), 1, + sym_primitive_type, + ACTIONS(11516), 1, anon_sym_enum, - ACTIONS(12789), 1, + ACTIONS(11518), 1, + anon_sym_class, + ACTIONS(11520), 1, + anon_sym_struct, + ACTIONS(11522), 1, + anon_sym_union, + ACTIONS(11524), 1, anon_sym_typename, - STATE(3028), 1, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(3126), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(3470), 1, sym_template_type, - STATE(3747), 1, + STATE(3474), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(5431), 1, + STATE(3842), 1, sym_type_specifier, - STATE(8738), 1, + STATE(3928), 1, + sym_decltype_auto, + STATE(8373), 1, + sym_splice_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(9814), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(3812), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(11512), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3939), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682335,61 +755656,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274409] = 25, + [317071] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3837), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(2314), 1, anon_sym_enum, - ACTIONS(3839), 1, + ACTIONS(2316), 1, anon_sym_class, - ACTIONS(3841), 1, + ACTIONS(2318), 1, anon_sym_struct, - ACTIONS(3843), 1, + ACTIONS(2320), 1, anon_sym_union, - ACTIONS(3849), 1, - sym_auto, - ACTIONS(3851), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3536), 1, + sym_primitive_type, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11095), 1, + ACTIONS(5657), 1, + anon_sym_typename, + ACTIONS(6640), 1, sym_identifier, - ACTIONS(11097), 1, + ACTIONS(8222), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11101), 1, - anon_sym_typename, - STATE(2263), 1, + STATE(3245), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2712), 1, + STATE(4033), 1, sym_template_type, - STATE(2843), 1, + STATE(4036), 1, sym_qualified_type_identifier, - STATE(3166), 1, - sym_decltype_auto, - STATE(3238), 1, - sym_type_specifier, - STATE(8702), 1, - sym__scope_resolution, - STATE(3053), 2, + STATE(4211), 1, sym_decltype, + STATE(4255), 1, + sym_type_specifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4770), 1, + sym_splice_specifier, + STATE(5074), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(9769), 1, + sym__scope_resolution, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3833), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3167), 7, + STATE(4346), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682397,38 +755719,38 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274496] = 16, + [317160] = 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, + ACTIONS(12734), 1, anon_sym_LPAREN2, - ACTIONS(11989), 1, + ACTIONS(12752), 1, + sym_identifier, + ACTIONS(12754), 1, anon_sym_STAR, - ACTIONS(11991), 1, + ACTIONS(12756), 1, anon_sym_AMP_AMP, - ACTIONS(11993), 1, + ACTIONS(12758), 1, anon_sym_AMP, - STATE(7511), 1, + STATE(2859), 1, sym_alignas_qualifier, - STATE(8612), 1, + STATE(9686), 1, sym__field_declarator, - STATE(8807), 1, + STATE(9871), 1, sym_operator_name, - STATE(10687), 1, + STATE(12436), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3228), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(2654), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8839), 7, + STATE(9957), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -682436,7 +755758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3270), 13, + ACTIONS(3226), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -682450,61 +755772,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [274565] = 25, + [317229] = 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(3836), 1, + anon_sym_enum, + ACTIONS(3838), 1, anon_sym_class, - ACTIONS(4401), 1, + ACTIONS(3840), 1, anon_sym_struct, - ACTIONS(4403), 1, + ACTIONS(3842), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(3848), 1, + sym_auto, + ACTIONS(3850), 1, + anon_sym_decltype, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11057), 1, + ACTIONS(11615), 1, sym_identifier, - ACTIONS(11059), 1, + ACTIONS(11617), 1, anon_sym_COLON_COLON, - ACTIONS(12988), 1, - anon_sym_enum, - ACTIONS(12990), 1, + ACTIONS(11619), 1, + sym_primitive_type, + ACTIONS(11621), 1, anon_sym_typename, - STATE(3770), 1, + STATE(2069), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, + STATE(2228), 1, sym_template_type, - STATE(4204), 1, + STATE(2229), 1, sym_qualified_type_identifier, - STATE(4272), 1, + STATE(2255), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(2273), 1, sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(6535), 1, + STATE(2301), 1, + sym_splice_type_specifier, + STATE(2314), 1, sym_type_specifier, - STATE(8676), 1, - sym__scope_resolution, - STATE(4373), 2, + STATE(2328), 1, + sym_decltype_auto, + STATE(2345), 1, sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, + STATE(9811), 1, + sym__scope_resolution, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12986), 4, + ACTIONS(3832), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(2339), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682512,185 +755835,188 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274652] = 25, + [317318] = 26, 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11087), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(14019), 1, sym_identifier, - ACTIONS(11089), 1, + ACTIONS(14021), 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, - aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2701), 1, + STATE(4253), 1, + sym__class_declaration_item, + STATE(8884), 1, + sym_ms_declspec_modifier, + STATE(9758), 1, + sym__scope_resolution, + STATE(9983), 1, + sym_splice_specifier, + STATE(10511), 1, + sym_field_declaration_list, + STATE(10779), 1, + sym_virtual_specifier, + STATE(11806), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3486), 2, sym_template_type, - STATE(2781), 1, + sym_splice_type_specifier, + STATE(8883), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9951), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3089), 1, - sym_type_specifier, - STATE(3099), 1, - sym_decltype_auto, - STATE(8687), 1, - sym__scope_resolution, - STATE(2984), 2, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, 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, - [274739] = 25, + [317407] = 26, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3466), 1, - sym_primitive_type, - ACTIONS(3486), 1, + ACTIONS(3078), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5464), 1, - anon_sym_typename, - ACTIONS(5936), 1, - sym_identifier, - ACTIONS(5938), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(10834), 1, + anon_sym_LBRACE, + ACTIONS(13540), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4504), 1, + ACTIONS(13947), 1, + sym_identifier, + STATE(4787), 1, sym_splice_specifier, - 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(8716), 1, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5420), 1, + sym_field_declaration_list, + STATE(6258), 1, + sym__class_declaration_item, + STATE(8800), 1, + sym_ms_declspec_modifier, + STATE(9822), 1, sym__scope_resolution, - STATE(4830), 2, - sym_decltype, + STATE(10702), 1, + sym_virtual_specifier, + STATE(11815), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4697), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4832), 2, + sym_template_type, sym_splice_type_specifier, - STATE(10768), 2, + STATE(8799), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, 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, - [274826] = 25, + [317496] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(4367), 1, + anon_sym_enum, + ACTIONS(4369), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(4371), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(4373), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(4379), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(4381), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(4383), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(11685), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(11687), 1, anon_sym_COLON_COLON, - ACTIONS(11040), 1, + ACTIONS(11689), 1, sym_primitive_type, - ACTIONS(12803), 1, - anon_sym_enum, - ACTIONS(12805), 1, + ACTIONS(11691), 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(2340), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2170), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(2221), 1, + STATE(2860), 1, + sym_template_type, + STATE(2861), 1, + sym_qualified_type_identifier, + STATE(2979), 1, sym_decltype_auto, - STATE(3581), 1, - sym_type_specifier, - STATE(8763), 1, - sym__scope_resolution, - STATE(2169), 2, + STATE(2981), 1, sym_decltype, + STATE(2988), 1, + sym_type_specifier, + STATE(3080), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(9746), 1, + sym__scope_resolution, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12801), 4, + ACTIONS(4363), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(2980), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682698,61 +756024,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274913] = 25, + [317585] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13635), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(13637), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(13639), 1, anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(13643), 1, + sym_auto, + ACTIONS(13645), 1, + anon_sym_decltype, + ACTIONS(13895), 1, sym_identifier, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(12787), 1, + ACTIONS(13899), 1, + sym_primitive_type, + ACTIONS(13901), 1, anon_sym_enum, - ACTIONS(12789), 1, + ACTIONS(13903), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3126), 1, + STATE(2390), 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(3490), 1, sym_splice_specifier, - STATE(5335), 1, + STATE(3708), 1, + sym_template_type, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3804), 1, sym_type_specifier, - STATE(8738), 1, + STATE(3826), 1, + sym_qualified_type_identifier, + STATE(4089), 1, + sym_decltype_auto, + STATE(9840), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(3997), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(13897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4090), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682760,62 +756086,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [275000] = 26, + [317672] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13713), 1, + sym_identifier, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13719), 1, + sym_primitive_type, + ACTIONS(13721), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(13723), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(13725), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(13727), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(13729), 1, + anon_sym_typename, + ACTIONS(13731), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(13733), 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, + STATE(2582), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3021), 1, - sym_decltype, - STATE(3028), 1, + STATE(4632), 1, + sym_splice_specifier, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(5026), 1, sym_template_type, - STATE(3747), 1, + STATE(5163), 1, sym_qualified_type_identifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(7935), 1, - sym_splice_type_specifier, - STATE(8711), 1, + STATE(5231), 1, + sym_type_specifier, + STATE(5816), 1, + sym_decltype_auto, + STATE(9790), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(5642), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(13717), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(5818), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682823,450 +756148,556 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [275089] = 26, + [317759] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3884), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8189), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8599), 1, anon_sym___declspec, - ACTIONS(8503), 1, - anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13949), 1, sym_identifier, - STATE(2742), 1, + STATE(2640), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2685), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(2719), 1, sym_field_declaration_list, - STATE(3550), 1, + STATE(3052), 1, sym__class_declaration_item, - STATE(7876), 1, + STATE(8806), 1, sym_ms_declspec_modifier, - STATE(8686), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(10748), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(11448), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8593), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8601), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2606), 2, + STATE(2443), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(2686), 2, sym_template_type, sym_splice_type_specifier, - STATE(7874), 2, + STATE(8805), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(9376), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [275178] = 24, + [317848] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10934), 1, anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(13188), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(14041), 1, anon_sym_requires, - STATE(7616), 1, + STATE(8555), 1, sym_ref_qualifier, - STATE(8398), 1, + STATE(9412), 1, sym_trailing_return_type, - STATE(8471), 1, + STATE(9728), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - STATE(7767), 3, + STATE(8698), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7474), 5, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [275263] = 21, + anon_sym_try, + [317933] = 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, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13603), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(13605), 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, + ACTIONS(13609), 1, + sym_primitive_type, + ACTIONS(13611), 1, + anon_sym_enum, + ACTIONS(13613), 1, + anon_sym_class, + ACTIONS(13615), 1, + anon_sym_struct, + ACTIONS(13617), 1, + anon_sym_union, + ACTIONS(13619), 1, + anon_sym_typename, + ACTIONS(13621), 1, + sym_auto, + ACTIONS(13623), 1, + anon_sym_decltype, + STATE(4137), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7005), 1, + sym_splice_specifier, + STATE(7038), 1, sym__splice_specialization_specifier, - STATE(7990), 1, + STATE(7301), 1, + sym_template_type, + STATE(7365), 1, + sym_qualified_type_identifier, + STATE(7399), 1, + sym_type_specifier, + STATE(7844), 1, + sym_decltype_auto, + STATE(9780), 1, sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8831), 1, - sym__declarator, - STATE(10957), 1, - sym_ms_based_modifier, - STATE(10768), 5, + STATE(7647), 2, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, + STATE(13053), 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(13607), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7846), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [318020] = 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, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8599), 1, + anon_sym___declspec, + ACTIONS(8718), 1, + anon_sym_LBRACE, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(13992), 1, + sym_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3117), 1, + sym_field_declaration_list, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3296), 1, + sym__class_declaration_item, + STATE(8811), 1, + sym_ms_declspec_modifier, + STATE(9763), 1, + sym__scope_resolution, + STATE(10610), 1, + sym_virtual_specifier, + STATE(11527), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8593), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8601), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2803), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8810), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318109] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11526), 1, + sym_auto, + ACTIONS(11528), 1, + anon_sym_decltype, + ACTIONS(13448), 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(13450), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(13454), 1, + sym_primitive_type, + ACTIONS(13456), 1, + anon_sym_enum, + ACTIONS(13458), 1, + anon_sym_class, + ACTIONS(13460), 1, + anon_sym_struct, + ACTIONS(13462), 1, + anon_sym_union, + ACTIONS(13464), 1, + anon_sym_typename, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(3470), 1, + sym_template_type, + STATE(3474), 1, + sym_qualified_type_identifier, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3928), 1, + sym_decltype_auto, + STATE(6027), 1, + sym_type_specifier, + STATE(6696), 1, sym_splice_specifier, - STATE(8383), 1, - sym__declarator, - STATE(11612), 1, - sym_ms_based_modifier, - STATE(10768), 5, + STATE(9846), 1, + sym__scope_resolution, + STATE(3812), 2, sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13452), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3939), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [318196] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13713), 1, + sym_identifier, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13719), 1, + sym_primitive_type, + ACTIONS(13721), 1, + anon_sym_enum, + ACTIONS(13723), 1, + anon_sym_class, + ACTIONS(13725), 1, + anon_sym_struct, + ACTIONS(13727), 1, + anon_sym_union, + ACTIONS(13729), 1, + anon_sym_typename, + ACTIONS(13731), 1, + sym_auto, + ACTIONS(13733), 1, + anon_sym_decltype, + STATE(2582), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4632), 1, + sym_splice_specifier, + STATE(4808), 1, + sym__splice_specialization_specifier, + STATE(5026), 1, sym_template_type, + STATE(5163), 1, + sym_qualified_type_identifier, + STATE(5816), 1, + sym_decltype_auto, + STATE(5842), 1, + sym_type_specifier, + STATE(9790), 1, + sym__scope_resolution, + STATE(5642), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(13053), 2, sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13717), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5818), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [318283] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(3536), 1, + sym_primitive_type, + ACTIONS(3538), 1, + anon_sym_enum, + ACTIONS(3540), 1, + anon_sym_class, + ACTIONS(3542), 1, + anon_sym_struct, + ACTIONS(3544), 1, + anon_sym_union, + ACTIONS(3546), 1, + anon_sym_typename, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5184), 1, + sym_identifier, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, + anon_sym_template, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4033), 1, + sym_template_type, + STATE(4036), 1, + sym_qualified_type_identifier, + STATE(4255), 1, + sym_type_specifier, + STATE(4287), 1, + sym_decltype_auto, + STATE(4349), 1, + sym_splice_specifier, + STATE(9818), 1, + sym__scope_resolution, + STATE(4211), 2, + sym_decltype, sym_splice_type_specifier, + STATE(13053), 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, - [275419] = 16, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4346), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [318370] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12162), 1, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10802), 1, anon_sym_STAR, - ACTIONS(12164), 1, + ACTIONS(10804), 1, anon_sym_AMP_AMP, - ACTIONS(12166), 1, + ACTIONS(10806), 1, anon_sym_AMP, - STATE(5222), 1, + ACTIONS(10808), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5804), 1, sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, sym__function_declarator_seq, - STATE(9154), 1, + STATE(9580), 1, + sym__scope_resolution, + STATE(9978), 1, sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7517), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7391), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(7862), 2, anon_sym_COMMA, - anon_sym_GT2, - STATE(8596), 5, + anon_sym_RPAREN, + ACTIONS(7864), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, 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, - [275487] = 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, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [275565] = 21, + sym_abstract_qualified_identifier, + [318448] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(10711), 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(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8868), 1, + STATE(10199), 1, sym__declarator, - STATE(10743), 1, + STATE(11956), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - sym_reference_declarator, - sym_structured_binding_declarator, - sym_template_function, - sym_destructor_name, - sym_qualified_identifier, - sym_operator_name, - [275643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3118), 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(3128), 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, - [275685] = 21, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [318526] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -683275,43 +756706,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10264), 1, + ACTIONS(10705), 1, anon_sym_STAR, - ACTIONS(10266), 1, + ACTIONS(10707), 1, anon_sym_AMP_AMP, - ACTIONS(10268), 1, + ACTIONS(10709), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7990), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8969), 1, + STATE(9839), 1, sym__declarator, - STATE(10957), 1, + STATE(12133), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683323,148 +756754,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7079), 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(7077), 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, - [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_try, - [275883] = 21, + [318604] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10757), 1, + anon_sym_STAR, + ACTIONS(10759), 1, + anon_sym_AMP_AMP, + ACTIONS(10761), 1, + anon_sym_AMP, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9034), 1, + STATE(10035), 1, sym__declarator, - STATE(11554), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683476,52 +756811,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275961] = 21, + [318682] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10705), 1, + anon_sym_STAR, + ACTIONS(10707), 1, + anon_sym_AMP_AMP, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8831), 1, + STATE(9770), 1, sym__declarator, - STATE(11554), 1, + STATE(12133), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683533,111 +756868,7 @@ 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, - 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(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, + [318760] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -683648,41 +756879,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, + ACTIONS(3516), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3518), 1, anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9048), 1, + STATE(10133), 1, sym__declarator, - STATE(11554), 1, + STATE(11956), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683694,64 +756925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276253] = 21, - ACTIONS(3), 1, - sym_comment, - 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(10592), 1, - anon_sym_DASH_GT, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12858), 1, - anon_sym___asm, - 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_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_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [276331] = 21, + [318838] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -683760,43 +756934,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10735), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10737), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10739), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8989), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8792), 1, + STATE(9878), 1, sym__declarator, - STATE(10900), 1, + STATE(12068), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683808,166 +756982,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276409] = 21, - 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, - 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(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, - [276487] = 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(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, - STATE(7731), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [276565] = 21, + [318916] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10705), 1, + anon_sym_STAR, + ACTIONS(10707), 1, + anon_sym_AMP_AMP, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9044), 1, + STATE(9808), 1, sym__declarator, - STATE(11554), 1, + STATE(12133), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683979,7 +757039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276643] = 21, + [318994] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -683988,43 +757048,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7990), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8530), 1, + STATE(10032), 1, sym__declarator, - STATE(11622), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684036,52 +757096,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276721] = 21, + [319072] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9014), 1, + STATE(9381), 1, sym__declarator, - STATE(11554), 1, + STATE(12896), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684093,7 +757153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276799] = 21, + [319150] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -684102,43 +757162,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10705), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10707), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10709), 1, anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8438), 1, + STATE(9843), 1, sym__declarator, - STATE(11612), 1, + STATE(12133), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684150,52 +757210,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276877] = 21, + [319228] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9020), 1, + STATE(9409), 1, sym__declarator, - STATE(11554), 1, + STATE(12896), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684207,7 +757267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276955] = 21, + [319306] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -684216,43 +757276,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8935), 1, + STATE(10020), 1, sym__declarator, - STATE(10743), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684264,7 +757324,64 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277033] = 21, + [319384] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10743), 1, + anon_sym_STAR, + ACTIONS(10745), 1, + anon_sym_AMP_AMP, + ACTIONS(10747), 1, + anon_sym_AMP, + ACTIONS(10749), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5504), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9614), 1, + sym__scope_resolution, + STATE(9980), 1, + sym__abstract_declarator, + ACTIONS(7862), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(7864), 4, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [319462] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -684273,43 +757390,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8753), 1, + STATE(10037), 1, sym__declarator, - STATE(10900), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684321,415 +757438,124 @@ 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, - 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, - 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, - [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_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_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, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - [277419] = 24, + [319540] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10934), 1, anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, + ACTIONS(11880), 1, anon_sym_DASH_GT, - ACTIONS(13197), 1, + ACTIONS(11882), 1, anon_sym_requires, - STATE(7663), 1, + STATE(8575), 1, sym_ref_qualifier, - STATE(8714), 1, + STATE(9765), 1, sym__function_attributes_end, - STATE(8715), 1, + STATE(9766), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - STATE(7848), 3, + STATE(8835), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 4, + ACTIONS(7474), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [277503] = 16, + [319624] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 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(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, + ACTIONS(6646), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12162), 1, + ACTIONS(10717), 1, anon_sym_STAR, - ACTIONS(12164), 1, + ACTIONS(10719), 1, anon_sym_AMP_AMP, - ACTIONS(12166), 1, + ACTIONS(10721), 1, anon_sym_AMP, - STATE(5222), 1, + ACTIONS(10723), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5796), 1, sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9559), 1, + sym__scope_resolution, + STATE(9576), 1, sym__function_declarator_seq, - STATE(9106), 1, + STATE(10052), 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, + ACTIONS(7862), 2, anon_sym_COMMA, anon_sym_GT2, - STATE(8596), 5, + ACTIONS(7864), 5, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, 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, + sym_abstract_qualified_identifier, + [319702] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -684738,43 +757564,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10705), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10707), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10709), 1, anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8530), 1, + STATE(9824), 1, sym__declarator, - STATE(11612), 1, + STATE(12133), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684786,91 +757612,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10316), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - ACTIONS(10318), 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, - [277759] = 21, + [319780] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10705), 1, + anon_sym_STAR, + ACTIONS(10707), 1, + anon_sym_AMP_AMP, + ACTIONS(10709), 1, + anon_sym_AMP, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9018), 1, + STATE(9827), 1, sym__declarator, - STATE(11554), 1, + STATE(12133), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684882,7 +757669,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277837] = 21, + [319858] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(8372), 1, + anon_sym_LPAREN2, + STATE(2692), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6170), 1, + sym_argument_list, + STATE(6233), 1, + sym_initializer_list, + ACTIONS(8554), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7361), 5, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 20, + anon_sym_AMP, + anon_sym___extension__, + 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, + [319912] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -684891,43 +757723,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10697), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10699), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10701), 1, anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8443), 1, + STATE(9420), 1, sym__declarator, - STATE(11612), 1, + STATE(12896), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684939,52 +757771,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277915] = 21, + [319990] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10796), 1, + anon_sym_STAR, + ACTIONS(10798), 1, + anon_sym_AMP_AMP, + ACTIONS(10800), 1, + anon_sym_AMP, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9031), 1, + STATE(10021), 1, sym__declarator, - STATE(11554), 1, + STATE(12242), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684996,7 +757828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277993] = 21, + [320068] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -685005,43 +757837,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10705), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10707), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10709), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8877), 1, + STATE(9891), 1, sym__declarator, - STATE(10743), 1, + STATE(12133), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685053,7 +757885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278071] = 21, + [320146] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -685062,43 +757894,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10697), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10699), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10701), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10703), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8742), 1, + STATE(9406), 1, sym__declarator, - STATE(10900), 1, + STATE(12896), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685110,52 +757942,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278149] = 21, + [320224] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(10711), 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(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8831), 1, + STATE(10176), 1, sym__declarator, - STATE(10743), 1, + STATE(11956), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685167,7 +757999,67 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278227] = 21, + [320302] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(14044), 1, + anon_sym_requires, + STATE(8571), 1, + sym_ref_qualifier, + STATE(9772), 1, + sym__function_attributes_end, + STATE(9774), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8840), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [320386] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -685178,41 +758070,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, + ACTIONS(3516), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3518), 1, anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9065), 1, + STATE(10190), 1, sym__declarator, - STATE(11554), 1, + STATE(11956), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685224,7 +758116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278305] = 21, + [320464] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -685233,43 +758125,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10697), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10699), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10701), 1, anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8390), 1, + STATE(9385), 1, sym__declarator, - STATE(11612), 1, + STATE(12896), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685281,52 +758173,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278383] = 21, + [320542] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9043), 1, + STATE(9843), 1, sym__declarator, - STATE(11554), 1, + STATE(12896), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685338,7 +758230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278461] = 21, + [320620] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -685347,43 +758239,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8873), 1, + STATE(10002), 1, sym__declarator, - STATE(10743), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685395,7 +758287,64 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278539] = 21, + [320698] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9078), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8636), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [320776] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -685404,43 +758353,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8755), 1, + STATE(9941), 1, sym__declarator, - STATE(10900), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685452,52 +758401,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278617] = 21, + [320854] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10711), 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(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8530), 1, + STATE(10169), 1, sym__declarator, - STATE(10900), 1, + STATE(11956), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685509,52 +758458,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278695] = 21, + [320932] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8585), 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(10711), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8442), 1, + STATE(10197), 1, sym__declarator, - STATE(11612), 1, + STATE(11956), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685566,52 +758515,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278773] = 21, + [321010] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(10711), 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(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8921), 1, + STATE(9941), 1, sym__declarator, - STATE(10743), 1, + STATE(11956), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685623,7 +758572,64 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278851] = 21, + [321088] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13975), 1, + anon_sym_requires, + ACTIONS(14050), 1, + anon_sym___asm, + STATE(9000), 1, + sym_trailing_return_type, + STATE(9079), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(14047), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8637), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7623), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [321166] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -685632,43 +758638,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10741), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10769), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10771), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10773), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8989), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8739), 1, + STATE(10074), 1, sym__declarator, - STATE(10900), 1, + STATE(12191), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685680,7 +758686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278929] = 21, + [321244] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -685689,43 +758695,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10697), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10699), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10701), 1, anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8439), 1, + STATE(9405), 1, sym__declarator, - STATE(11612), 1, + STATE(12896), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685737,7 +758743,64 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279007] = 21, + [321322] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14050), 1, + anon_sym___asm, + STATE(9034), 1, + sym_trailing_return_type, + STATE(9101), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(14047), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8625), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7623), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [321400] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -685746,43 +758809,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10705), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10707), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10709), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8929), 1, + STATE(9791), 1, sym__declarator, - STATE(10743), 1, + STATE(12133), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685794,104 +758857,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279085] = 16, + [321478] = 21, 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, + ACTIONS(29), 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(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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - ACTIONS(10246), 1, - anon_sym_STAR, - ACTIONS(10248), 1, - anon_sym_AMP_AMP, - ACTIONS(10250), 1, - anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7990), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8788), 1, + STATE(10145), 1, sym__declarator, - STATE(10837), 1, + STATE(11956), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685903,7 +758914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279231] = 21, + [321556] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -685912,43 +758923,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(10751), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10753), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10755), 1, anon_sym_AMP, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8989), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8409), 1, + STATE(9620), 1, sym__declarator, - STATE(11612), 1, + STATE(13027), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685960,7 +758971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279309] = 21, + [321634] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -685969,43 +758980,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8889), 1, + STATE(10012), 1, sym__declarator, - STATE(10743), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -686017,7 +759028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279387] = 21, + [321712] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -686026,43 +759037,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8774), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10741), 1, anon_sym_COLON_COLON, - ACTIONS(10252), 1, + ACTIONS(10769), 1, anon_sym_STAR, - ACTIONS(10254), 1, + ACTIONS(10771), 1, anon_sym_AMP_AMP, - ACTIONS(10256), 1, + ACTIONS(10773), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8989), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8788), 1, + STATE(10105), 1, sym__declarator, - STATE(11008), 1, + STATE(12191), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -686074,52 +759085,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279465] = 21, + [321790] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10697), 1, + anon_sym_STAR, + ACTIONS(10699), 1, + anon_sym_AMP_AMP, + ACTIONS(10701), 1, + anon_sym_AMP, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9013), 1, + STATE(9415), 1, sym__declarator, - STATE(11554), 1, + STATE(12896), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -686131,166 +759142,109 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279543] = 21, + [321868] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10624), 1, + ACTIONS(11226), 1, anon_sym_DASH_GT, - ACTIONS(12412), 1, + ACTIONS(13014), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, - anon_sym_requires, - STATE(8013), 1, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(9009), 1, sym_trailing_return_type, - STATE(8410), 1, + STATE(9100), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12415), 2, + ACTIONS(10604), 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, - [279621] = 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(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13114), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13161), 1, - anon_sym_requires, - STATE(8035), 1, - sym_trailing_return_type, - STATE(8429), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(13743), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13158), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - STATE(7705), 3, + STATE(8618), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 7, - anon_sym_RPAREN, + ACTIONS(7474), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [279699] = 21, + [321946] = 21, 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(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3516), 1, + anon_sym_STAR, + ACTIONS(3518), 1, + anon_sym_AMP, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8585), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10711), 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(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8701), 1, + STATE(10184), 1, sym__declarator, - STATE(10900), 1, + STATE(11956), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -686302,7 +759256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279777] = 21, + [322024] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -686311,43 +759265,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3512), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3530), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10695), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10757), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10759), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10761), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(8975), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8694), 1, + STATE(10051), 1, sym__declarator, - STATE(10900), 1, + STATE(11972), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(9532), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -686359,866 +759313,319 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279855] = 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(9251), 1, - sym__abstract_declarator, - ACTIONS(7343), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7600), 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, - [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, + [322102] = 21, 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, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7399), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(29), 1, 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, - [280046] = 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, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7507), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3516), 1, 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, - [280093] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - STATE(7608), 1, - sym_attribute_specifier, - ACTIONS(7423), 2, + ACTIONS(3518), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(7425), 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_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, - [280140] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(3530), 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10182), 1, + sym__declarator, + STATE(11956), 1, + sym_ms_based_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [322180] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - STATE(7611), 1, - sym_attribute_specifier, - ACTIONS(7431), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7433), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(29), 1, 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, - [280270] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - STATE(7612), 1, - sym_attribute_specifier, - ACTIONS(7435), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7437), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3512), 1, anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3516), 1, 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, - [280317] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - STATE(7613), 1, - sym_attribute_specifier, - ACTIONS(7453), 2, + ACTIONS(3518), 1, anon_sym_AMP, - anon_sym_const, - ACTIONS(7455), 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_LBRACE, + ACTIONS(3530), 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, - [280364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7473), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7475), 30, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8585), 1, + sym_identifier, + ACTIONS(10711), 1, 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [280405] = 21, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8988), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10203), 1, + sym__declarator, + STATE(11956), 1, + sym_ms_based_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9532), 11, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + sym_reference_declarator, + sym_structured_binding_declarator, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + [322258] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11445), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, - anon_sym_requires, - STATE(8559), 1, - sym__function_attributes_end, - STATE(8565), 1, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + STATE(9034), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9467), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - STATE(7735), 3, + STATE(8649), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7623), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [280482] = 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(9250), 1, - sym__abstract_declarator, - ACTIONS(7351), 2, - anon_sym_LBRACE, - anon_sym_requires, - 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(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, - [280549] = 6, - 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, - 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, - [280596] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - STATE(7620), 1, - sym_attribute_specifier, - ACTIONS(7531), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7533), 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_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, - [280643] = 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(13200), 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), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8002), 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, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [280698] = 21, + [322335] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11466), 1, anon_sym_DASH_GT, - ACTIONS(13205), 1, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13975), 1, anon_sym_requires, - STATE(8512), 1, - sym__function_attributes_end, - STATE(8513), 1, + STATE(9000), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9496), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(13972), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 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(7734), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [280775] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - STATE(7627), 1, - sym_attribute_specifier, - ACTIONS(7427), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7429), 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_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, - [280822] = 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(9224), 1, - sym__abstract_declarator, - ACTIONS(7345), 2, - anon_sym_LBRACE, - anon_sym_requires, - 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(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, - [280889] = 10, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8644), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7623), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_try, + [322412] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(9963), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10114), 1, - anon_sym_LBRACE, - ACTIONS(13208), 1, - anon_sym_COLON, - STATE(4316), 1, - sym__enum_base_clause, - STATE(4370), 1, - sym_enumerator_list, - STATE(4517), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(11439), 1, + anon_sym_requires, + STATE(9571), 1, + sym__function_attributes_end, + STATE(9639), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, sym_attribute_specifier, - ACTIONS(8000), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8002), 24, - anon_sym_DOT_DOT_DOT, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8642), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 6, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [322489] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9384), 1, + anon_sym_decltype, + ACTIONS(13480), 1, + anon_sym_LT, + ACTIONS(14055), 1, + sym_auto, + STATE(3290), 1, + sym_template_argument_list, + STATE(3847), 1, + sym_decltype_auto, + STATE(8585), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5669), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, + ACTIONS(14053), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5661), 19, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym___based, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -687232,519 +759639,432 @@ 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, - [280944] = 24, + sym_primitive_type, + sym_identifier, + [322546] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10934), 1, anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, + ACTIONS(11439), 1, anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11950), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(13008), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(13011), 1, anon_sym___attribute, - STATE(7673), 1, + STATE(8611), 1, sym_ref_qualifier, - STATE(8585), 1, + STATE(9639), 1, sym_trailing_return_type, - STATE(8604), 1, + STATE(9681), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7474), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7933), 3, + STATE(8911), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [281027] = 24, + [322629] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10934), 1, anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, + ACTIONS(12108), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(13008), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(13011), 1, anon_sym___attribute, - STATE(7698), 1, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(8584), 1, sym_ref_qualifier, - STATE(8667), 1, - sym__function_attributes_end, - STATE(8718), 1, + STATE(9039), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9665), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(13083), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7474), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7968), 3, + STATE(8915), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [281110] = 6, + [322712] = 21, 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, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5657), 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, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - 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, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, anon_sym___attribute__, + ACTIONS(11218), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - ACTIONS(9576), 1, - anon_sym_LBRACE, - ACTIONS(13200), 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), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8008), 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, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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(11445), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13975), 1, + anon_sym_requires, + STATE(9000), 1, + sym_trailing_return_type, + STATE(9517), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13972), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [281265] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7223), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7225), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8652), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7623), 6, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [281308] = 16, + [322789] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 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, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(11218), 1, anon_sym___attribute, - STATE(7629), 1, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9475), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, sym_attribute_specifier, - ACTIONS(7547), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7549), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8654), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 6, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, + 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, - [281422] = 6, + [322866] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(11218), 1, anon_sym___attribute, - STATE(7624), 1, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9482), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, sym_attribute_specifier, - ACTIONS(7551), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7553), 28, - anon_sym_COMMA, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8658), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 6, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_try, + [322943] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 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(6646), 1, + anon_sym_LPAREN2, + ACTIONS(10842), 1, + anon_sym_STAR, + ACTIONS(10844), 1, + anon_sym_AMP_AMP, + ACTIONS(10846), 1, + anon_sym_AMP, + ACTIONS(10848), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5724), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9526), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10093), 1, + sym__abstract_declarator, + ACTIONS(7862), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7864), 3, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [281469] = 24, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [323020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(13197), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14060), 1, anon_sym_requires, - STATE(7675), 1, - sym_ref_qualifier, - STATE(8643), 1, + STATE(9542), 1, sym__function_attributes_end, - STATE(8715), 1, + STATE(9543), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(14057), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7938), 3, + STATE(8653), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [281552] = 11, + ACTIONS(7623), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [323097] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(12277), 1, + ACTIONS(9317), 1, anon_sym_LT, - ACTIONS(13214), 1, - sym_auto, - ACTIONS(13216), 1, - anon_sym_decltype, - STATE(3203), 1, - sym_decltype_auto, - STATE(3735), 1, + STATE(3290), 1, sym_template_argument_list, - STATE(7686), 1, + STATE(8585), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5643), 3, + ACTIONS(7131), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(13212), 4, + anon_sym_LBRACE, + ACTIONS(7129), 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, - ACTIONS(5636), 19, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -687761,415 +760081,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [281609] = 16, + [323146] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 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(9200), 1, - sym__abstract_declarator, - ACTIONS(6823), 2, - anon_sym_LBRACE, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, anon_sym_requires, - 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(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, - [281676] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(11218), 1, anon_sym___attribute, - STATE(7618), 1, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + STATE(9034), 1, + sym_trailing_return_type, + STATE(9512), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, sym_attribute_specifier, - ACTIONS(7413), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7415), 28, - anon_sym_COMMA, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8643), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7623), 6, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, + anon_sym_COLON, anon_sym_LBRACE, + anon_sym_try, + [323223] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 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(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14003), 1, + anon_sym_requires, + STATE(9534), 1, + sym__function_attributes_end, + STATE(9535), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [281723] = 16, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8651), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [323300] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, anon_sym_LBRACK, - ACTIONS(12261), 1, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(8920), 1, + anon_sym_COLON_COLON, + ACTIONS(10850), 1, anon_sym_STAR, - ACTIONS(12263), 1, + ACTIONS(10852), 1, anon_sym_AMP_AMP, - ACTIONS(12265), 1, + ACTIONS(10854), 1, anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(5697), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5388), 1, sym_parameter_list, - STATE(8598), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, sym__function_declarator_seq, - STATE(9269), 1, + STATE(9640), 1, + sym__scope_resolution, + STATE(10092), 1, sym__abstract_declarator, - ACTIONS(7355), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2488), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7862), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, 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, + sym_abstract_qualified_identifier, + [323377] = 24, 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__, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - 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, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(7207), 4, + ACTIONS(10934), 1, anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11882), 1, + anon_sym_requires, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, anon_sym___attribute__, + ACTIONS(13011), 1, 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, + STATE(8597), 1, + sym_ref_qualifier, + STATE(9710), 1, + sym__function_attributes_end, + STATE(9766), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 3, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(7357), 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, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - [281951] = 21, + anon_sym_GT2, + STATE(8948), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [323460] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11435), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(11439), 1, anon_sym_requires, - STATE(8510), 1, + STATE(9537), 1, sym__function_attributes_end, - STATE(8511), 1, + STATE(9546), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - STATE(7733), 3, + STATE(8641), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 6, + ACTIONS(7623), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [282028] = 9, - 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, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8008), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(8006), 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, - [282081] = 11, + [323537] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(13227), 1, + ACTIONS(14063), 1, sym_identifier, - ACTIONS(13233), 1, + ACTIONS(14069), 1, sym_primitive_type, - STATE(3497), 1, + STATE(2870), 1, sym_alignas_qualifier, - STATE(7694), 1, + STATE(8594), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9727), 2, + ACTIONS(9048), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7602), 2, + STATE(8542), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7249), 4, + ACTIONS(6934), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(7251), 4, + ACTIONS(6936), 4, anon_sym_AMP, anon_sym___attribute__, anon_sym___attribute, anon_sym___based, - ACTIONS(13230), 4, + ACTIONS(14066), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(9722), 13, + ACTIONS(9043), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -688183,247 +760410,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [282138] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7779), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7781), 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, - [282178] = 3, + [323594] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7637), 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(6415), 1, + anon_sym___asm, + ACTIONS(7472), 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, - [282218] = 3, - 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, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(10932), 1, 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, - [282258] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7561), 3, + ACTIONS(10934), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7563), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, 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, - [282298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7655), 3, - anon_sym_AMP, + ACTIONS(13011), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7657), 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, + ACTIONS(14044), 1, anon_sym_requires, - [282338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7663), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7665), 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(8598), 1, + sym_ref_qualifier, + STATE(9699), 1, + sym__function_attributes_end, + STATE(9774), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [282378] = 3, + STATE(8958), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [323677] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 3, - anon_sym_AMP, + ACTIONS(12462), 1, + anon_sym_LBRACE, + ACTIONS(14072), 1, + anon_sym_COLON, + STATE(3865), 1, + sym_attribute_specifier, + STATE(8573), 1, + sym__enum_base_clause, + STATE(8630), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - ACTIONS(7669), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7392), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7390), 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, @@ -688437,30 +760511,43 @@ 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, - [282418] = 3, + sym_primitive_type, + sym_identifier, + [323730] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7673), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14074), 1, + sym_identifier, + ACTIONS(14080), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(8582), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9024), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7023), 4, 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, + ACTIONS(7025), 4, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + ACTIONS(14077), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9019), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -688472,179 +760559,147 @@ 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, - [282458] = 21, + [323787] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(13188), 1, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, anon_sym_requires, - STATE(8398), 1, + STATE(9039), 1, sym_trailing_return_type, - STATE(8471), 1, + STATE(9466), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(13083), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - STATE(7767), 3, + STATE(8646), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7474), 6, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [282534] = 21, + anon_sym_try, + [323864] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(13236), 1, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, anon_sym_requires, - STATE(8401), 1, + STATE(9039), 1, sym_trailing_return_type, - STATE(8472), 1, + STATE(9465), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(13083), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - STATE(7776), 3, + STATE(8650), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7647), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7649), 29, - anon_sym_COMMA, + ACTIONS(7474), 6, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [282650] = 3, + [323941] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 3, - anon_sym_AMP, + ACTIONS(12462), 1, + anon_sym_LBRACE, + ACTIONS(14072), 1, + anon_sym_COLON, + STATE(3901), 1, + sym_attribute_specifier, + STATE(8576), 1, + sym__enum_base_clause, + STATE(8639), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - ACTIONS(7653), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7415), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7413), 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, @@ -688658,1491 +760713,1648 @@ 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, - [282690] = 3, + sym_primitive_type, + sym_identifier, + [323994] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7769), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, 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, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(14003), 1, + anon_sym_requires, + STATE(8601), 1, + sym_ref_qualifier, + STATE(9535), 1, + sym_trailing_return_type, + STATE(9694), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [282730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7771), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7773), 29, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 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___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, - [282770] = 3, + STATE(8964), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [324077] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7158), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7160), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(10934), 1, + anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, 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, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + STATE(8578), 1, + sym_ref_qualifier, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9574), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [282810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7659), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7661), 29, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 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___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, - [282850] = 3, + STATE(8927), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [324160] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7563), 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(6415), 1, + anon_sym___asm, + ACTIONS(7621), 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, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11625), 1, anon_sym_requires, - [282890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7601), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(13963), 1, 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, + ACTIONS(13966), 1, + anon_sym___attribute, + STATE(9377), 1, + sym_trailing_return_type, + STATE(9522), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [282930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7731), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7733), 29, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8684), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7623), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___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, - [282970] = 3, + [324236] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - 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, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 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(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(14041), 1, + anon_sym_requires, + STATE(9412), 1, + sym_trailing_return_type, + STATE(9449), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [283010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7775), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7777), 29, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8688), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___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, - [283050] = 3, + [324312] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7571), 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(7472), 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, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, anon_sym_requires, - [283090] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7627), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7629), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(11216), 1, 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, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9283), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [283130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7585), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7587), 29, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8713), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___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, - [283170] = 3, + [324388] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7597), 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(7472), 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(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9243), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(13083), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [283210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7607), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7609), 29, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8661), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___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, - [283250] = 3, + [324464] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 3, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10932), 1, + anon_sym_AMP_AMP, + ACTIONS(10934), 1, anon_sym_AMP, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7625), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14003), 1, + anon_sym_requires, + STATE(8619), 1, + sym_ref_qualifier, + STATE(9960), 1, + sym__function_attributes_end, + STATE(10100), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7474), 2, 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, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [283290] = 3, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8981), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [324546] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7741), 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(6415), 1, + anon_sym___asm, + ACTIONS(7472), 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(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(11625), 1, + anon_sym_requires, + STATE(9438), 1, + sym_trailing_return_type, + STATE(9717), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [283330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7743), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7745), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8732), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 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, - [283370] = 3, + [324622] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 3, - anon_sym_AMP, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11625), 1, + anon_sym_requires, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7605), 29, + STATE(9438), 1, + sym_trailing_return_type, + STATE(9519), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8683), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___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, - [283410] = 3, + [324698] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 3, - anon_sym_AMP, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7753), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(14083), 1, + anon_sym_requires, + STATE(9387), 1, + sym_trailing_return_type, + STATE(9689), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8704), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7623), 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, - [283450] = 3, + [324774] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 3, - anon_sym_AMP, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7757), 29, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14050), 1, + anon_sym___asm, + STATE(9034), 1, + sym_trailing_return_type, + STATE(9285), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(14047), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8717), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7623), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___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, - [283490] = 3, + [324850] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7759), 3, - anon_sym_AMP, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7761), 29, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13975), 1, + anon_sym_requires, + ACTIONS(14050), 1, + anon_sym___asm, + STATE(9000), 1, + sym_trailing_return_type, + STATE(9244), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(14047), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8664), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7623), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___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, - [283530] = 3, + [324926] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 3, - anon_sym_AMP, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7765), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(14041), 1, + anon_sym_requires, + STATE(9412), 1, + sym_trailing_return_type, + STATE(9728), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8698), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 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, - [283570] = 3, + [325002] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7597), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(6648), 1, anon_sym_STAR, + ACTIONS(6650), 1, anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(7864), 1, + anon_sym_COLON, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10113), 1, + sym__abstract_declarator, + ACTIONS(7862), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [283610] = 21, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [325078] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, + ACTIONS(11623), 1, anon_sym_DASH_GT, - ACTIONS(10921), 1, + ACTIONS(11625), 1, anon_sym_requires, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - STATE(8441), 1, + STATE(9377), 1, sym_trailing_return_type, - STATE(8497), 1, + STATE(9739), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - STATE(7770), 3, + STATE(8662), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7623), 5, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [283686] = 21, + anon_sym_try, + [325154] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, + ACTIONS(11734), 1, anon_sym_DASH_GT, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(13108), 1, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13966), 1, anon_sym___attribute, - STATE(8374), 1, + ACTIONS(14083), 1, + anon_sym_requires, + STATE(9387), 1, sym_trailing_return_type, - STATE(8450), 1, + STATE(9450), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(14057), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - STATE(7743), 3, + STATE(8690), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 5, + ACTIONS(7623), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [283762] = 21, + [325230] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(13011), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(13014), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10921), 1, + ACTIONS(13086), 1, anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - STATE(8374), 1, + STATE(9039), 1, sym_trailing_return_type, - STATE(8659), 1, + STATE(9063), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(13083), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - STATE(7758), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 5, + ACTIONS(7474), 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, - [283838] = 3, + [325299] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 3, - anon_sym_AMP, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(13963), 1, + anon_sym___attribute__, + ACTIONS(13966), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7567), 29, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + STATE(9034), 1, + sym_trailing_return_type, + STATE(9058), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [283878] = 3, + [325368] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7643), 3, - anon_sym_AMP, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7645), 29, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9057), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [283918] = 3, + [325437] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 3, - anon_sym_AMP, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(14086), 1, + anon_sym___attribute__, + ACTIONS(14089), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7737), 29, + ACTIONS(14092), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14098), 1, + anon_sym_requires, + STATE(9038), 1, + sym_trailing_return_type, + STATE(9062), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14095), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [283958] = 3, + [325506] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7749), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(7864), 1, + anon_sym_try, + ACTIONS(11021), 1, anon_sym_STAR, + ACTIONS(11023), 1, anon_sym_AMP_AMP, + ACTIONS(11025), 1, + anon_sym_AMP, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5281), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9654), 1, + sym__scope_resolution, + STATE(10157), 1, + sym__abstract_declarator, + ACTIONS(7862), 3, 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, - [283998] = 24, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [325581] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11880), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(14044), 1, anon_sym_requires, - STATE(7701), 1, - sym_ref_qualifier, - STATE(8845), 1, + STATE(9772), 1, sym__function_attributes_end, - STATE(8972), 1, + STATE(9774), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7791), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(10859), 2, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - STATE(7991), 3, + STATE(8840), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [284080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7561), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7563), 29, + ACTIONS(7474), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_GT2, + [325656] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 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(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(11882), 1, + anon_sym_requires, + STATE(9765), 1, + sym__function_attributes_end, + STATE(9766), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8835), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7474), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [284120] = 3, + [325731] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 3, - anon_sym_AMP, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(13963), 1, + anon_sym___attribute__, + ACTIONS(13966), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7633), 29, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13975), 1, + anon_sym_requires, + STATE(9000), 1, + sym_trailing_return_type, + STATE(9053), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [284160] = 21, + [325800] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(8285), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10951), 1, + anon_sym_DASH_GT, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(14086), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(14089), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(14092), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - ACTIONS(13188), 1, - anon_sym_requires, - STATE(8398), 1, + STATE(9027), 1, sym_trailing_return_type, - STATE(8627), 1, + STATE(9059), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - STATE(7794), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 5, + ACTIONS(8287), 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, - [284236] = 21, + [325869] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11044), 1, + ACTIONS(11880), 1, anon_sym_DASH_GT, - ACTIONS(13236), 1, + ACTIONS(14101), 1, anon_sym_requires, - STATE(8401), 1, - sym_trailing_return_type, - STATE(8629), 1, + STATE(9775), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9777), 1, + sym_trailing_return_type, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(14057), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - STATE(7800), 3, + STATE(8841), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 5, + ACTIONS(7623), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_GT2, + [325944] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(9168), 1, + anon_sym_COLON_COLON, + ACTIONS(11122), 1, + anon_sym_STAR, + ACTIONS(11124), 1, + anon_sym_AMP_AMP, + ACTIONS(11126), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5887), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9603), 1, + sym__scope_resolution, + STATE(10146), 1, + sym__abstract_declarator, + ACTIONS(7862), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [326019] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12462), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [284312] = 21, + STATE(3904), 1, + sym_attribute_specifier, + STATE(8615), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7423), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7421), 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, + [326066] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(11132), 1, + anon_sym_STAR, + ACTIONS(11134), 1, + anon_sym_AMP_AMP, + ACTIONS(11136), 1, + anon_sym_AMP, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5954), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9525), 1, + sym__scope_resolution, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(10149), 1, + sym__abstract_declarator, + ACTIONS(7862), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7864), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [326141] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, + ACTIONS(11880), 1, anon_sym_DASH_GT, - STATE(8441), 1, - sym_trailing_return_type, - STATE(8631), 1, + ACTIONS(11882), 1, + anon_sym_requires, + STATE(9773), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9782), 1, + sym_trailing_return_type, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - STATE(7759), 3, + STATE(8836), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 5, + ACTIONS(7623), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [284388] = 3, + anon_sym_GT2, + [326216] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 3, - anon_sym_AMP, + ACTIONS(12462), 1, + anon_sym_LBRACE, + STATE(3923), 1, + sym_attribute_specifier, + STATE(8621), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - ACTIONS(7225), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7419), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7417), 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, @@ -690156,191 +762368,424 @@ 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, + sym_primitive_type, + sym_identifier, + [326263] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, + sym_identifier, + ACTIONS(14104), 1, + anon_sym_LPAREN2, + ACTIONS(14106), 1, + anon_sym_LBRACE, + ACTIONS(14110), 1, anon_sym_requires, - [284428] = 18, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(3852), 1, + sym_requirement_seq, + STATE(9002), 1, + sym_lambda_capture_specifier, + STATE(9840), 1, + sym__scope_resolution, + STATE(11416), 1, + sym_requires_parameter_list, + ACTIONS(14108), 2, + sym_true, + sym_false, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(3853), 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, + [326335] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(12108), 1, anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13966), 1, anon_sym___attribute, - ACTIONS(13114), 1, + ACTIONS(13969), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13161), 1, - anon_sym_requires, - STATE(8035), 1, + STATE(9034), 1, sym_trailing_return_type, - STATE(8067), 1, + STATE(9577), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13158), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 9, + ACTIONS(7623), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + STATE(8962), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [326409] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3492), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7281), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [284497] = 18, + ACTIONS(14112), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7279), 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, + [326451] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(8603), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7292), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(7290), 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, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + [326491] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11948), 1, anon_sym_DASH_GT, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(12406), 1, + ACTIONS(13008), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(13011), 1, anon_sym___attribute, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - STATE(7999), 1, - sym_trailing_return_type, - STATE(8069), 1, + ACTIONS(14044), 1, + anon_sym_requires, + STATE(9699), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9774), 1, + sym_trailing_return_type, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 9, + ACTIONS(7474), 3, 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, - [284566] = 21, + STATE(8958), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [326565] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3492), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7302), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(14115), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7300), 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, + [326607] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3492), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7277), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(14118), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7275), 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, + [326649] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(13966), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(13969), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(13197), 1, + ACTIONS(13975), 1, anon_sym_requires, - STATE(8714), 1, - sym__function_attributes_end, - STATE(8715), 1, + STATE(9000), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9666), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(13972), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - STATE(7848), 3, + ACTIONS(7623), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(8916), 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, + [326723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9576), 1, + STATE(3492), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7310), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - STATE(3201), 1, - sym_attribute_specifier, - STATE(7732), 1, - sym_enumerator_list, - ACTIONS(43), 2, + ACTIONS(14121), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7308), 21, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7389), 3, + 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, + [326765] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3492), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7255), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7387), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, + anon_sym_LBRACE, + ACTIONS(14124), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(7253), 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, @@ -690357,30 +762802,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [284688] = 7, + [326807] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9576), 1, - anon_sym_LBRACE, - STATE(3245), 1, - sym_attribute_specifier, - STATE(7719), 1, - sym_enumerator_list, - ACTIONS(43), 2, + ACTIONS(14127), 1, + sym_identifier, + ACTIONS(14131), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(10078), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7025), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7383), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7381), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7023), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14129), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(67), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -690393,392 +762845,201 @@ 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, - [284735] = 18, + [326861] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10382), 1, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(10963), 1, anon_sym_requires, - ACTIONS(13108), 1, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13011), 1, anon_sym___attribute, - ACTIONS(13114), 1, + ACTIONS(13014), 1, anon_sym_LBRACK_LBRACK, - STATE(8057), 1, + STATE(9009), 1, sym_trailing_return_type, - STATE(8070), 1, + STATE(9574), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 9, + ACTIONS(7474), 3, 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, - [284804] = 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(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, - STATE(7840), 3, + STATE(8927), 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, - [284879] = 21, + [326935] = 5, 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(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, - 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(7849), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(8579), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7271), 4, anon_sym_LPAREN2, - anon_sym_GT2, - [284954] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, - anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(13242), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(14133), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7269), 21, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(13245), 1, anon_sym___attribute, - ACTIONS(13248), 1, - anon_sym_LBRACK_LBRACK, - STATE(8032), 1, - sym_trailing_return_type, - STATE(8073), 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(8297), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 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, - [285023] = 18, + 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, + [326977] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - 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(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, - ACTIONS(7791), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13577), 1, + anon_sym_COLON_COLON, + ACTIONS(13951), 1, + sym_identifier, + ACTIONS(14136), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(14138), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [285092] = 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(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, + ACTIONS(14142), 1, anon_sym_requires, - STATE(8726), 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, - STATE(7842), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [285167] = 18, + STATE(5596), 1, + sym_requirement_seq, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6573), 1, + sym_splice_specifier, + STATE(9051), 1, + sym_lambda_capture_specifier, + STATE(9760), 1, + sym__scope_resolution, + STATE(11466), 1, + sym_requires_parameter_list, + ACTIONS(14140), 2, + sym_true, + sym_false, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7048), 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, + [327049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, - anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(13242), 1, - anon_sym___attribute__, - ACTIONS(13245), 1, - anon_sym___attribute, - ACTIONS(13248), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13254), 1, - anon_sym_requires, - STATE(8046), 1, - sym_trailing_return_type, - STATE(8068), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13251), 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(8297), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(8606), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7318), 4, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [285236] = 5, + ACTIONS(14144), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7316), 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, + [327091] = 5, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, + STATE(8583), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7725), 4, + ACTIONS(7265), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13257), 4, + ACTIONS(14147), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7723), 21, + ACTIONS(7263), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -690800,37 +763061,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285278] = 11, + [327133] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(13260), 1, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4966), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13605), 1, + anon_sym_COLON_COLON, + ACTIONS(13986), 1, sym_identifier, - ACTIONS(13264), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8970), 1, + ACTIONS(14150), 1, + anon_sym_LPAREN2, + ACTIONS(14152), 1, + anon_sym_LBRACE, + ACTIONS(14156), 1, + anon_sym_requires, + STATE(7005), 1, + sym_splice_specifier, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(7315), 1, + sym_requirement_seq, + STATE(8992), 1, + sym_lambda_capture_specifier, + STATE(9780), 1, + sym__scope_resolution, + STATE(11450), 1, + sym_requires_parameter_list, + ACTIONS(14154), 2, + sym_true, + sym_false, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7538), 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, + [327205] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3492), 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, + ACTIONS(7186), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(13262), 4, + ACTIONS(14158), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(67), 13, + ACTIONS(7183), 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, @@ -690843,50 +763146,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, + [327247] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11073), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(14010), 1, sym_identifier, - ACTIONS(13266), 1, + ACTIONS(14162), 1, anon_sym_LPAREN2, - ACTIONS(13268), 1, + ACTIONS(14164), 1, anon_sym_LBRACE, - ACTIONS(13272), 1, + ACTIONS(14168), 1, anon_sym_requires, - STATE(2742), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(4858), 1, sym__splice_specialization_specifier, - STATE(5671), 1, + STATE(5718), 1, sym_requirement_seq, - STATE(8042), 1, + STATE(8995), 1, sym_lambda_capture_specifier, - STATE(8686), 1, + STATE(9745), 1, sym__scope_resolution, - STATE(10366), 1, + STATE(11711), 1, sym_requires_parameter_list, - ACTIONS(13270), 2, + ACTIONS(14166), 2, sym_true, sym_false, - STATE(2934), 2, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5551), 8, + STATE(5662), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -690895,22 +763202,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [285404] = 5, + [327319] = 5, ACTIONS(3), 1, sym_comment, - STATE(7699), 1, + STATE(8586), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7709), 4, + ACTIONS(7324), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13274), 4, + ACTIONS(14170), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7707), 21, + ACTIONS(7322), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -690932,156 +763239,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285446] = 21, + [327361] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, + ACTIONS(11882), 1, + anon_sym_requires, + ACTIONS(11948), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(13966), 1, anon_sym___attribute, - ACTIONS(13197), 1, - anon_sym_requires, - STATE(8643), 1, + STATE(9673), 1, sym__function_attributes_end, - STATE(8715), 1, + STATE(9782), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7623), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - STATE(7938), 3, + STATE(8935), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [285520] = 21, + [327435] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(13963), 1, + anon_sym___attribute__, + ACTIONS(13966), 1, + anon_sym___attribute, + ACTIONS(14101), 1, anon_sym_requires, - ACTIONS(11518), 1, + STATE(9700), 1, + sym__function_attributes_end, + STATE(9777), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(8961), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [327509] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11950), 1, anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13008), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13011), 1, anon_sym___attribute, - STATE(8565), 1, + ACTIONS(14003), 1, + anon_sym_requires, + STATE(9535), 1, sym_trailing_return_type, - STATE(8606), 1, + STATE(9694), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(7474), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7962), 3, + STATE(8964), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [285594] = 20, + [327583] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3161), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11089), 1, + ACTIONS(13847), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13990), 1, sym_identifier, - ACTIONS(13277), 1, + ACTIONS(14173), 1, anon_sym_LPAREN2, - ACTIONS(13279), 1, + ACTIONS(14175), 1, anon_sym_LBRACE, - ACTIONS(13283), 1, + ACTIONS(14179), 1, anon_sym_requires, - STATE(2638), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(5034), 1, sym__splice_specialization_specifier, - STATE(5141), 1, + STATE(6320), 1, sym_requirement_seq, - STATE(8045), 1, + STATE(9033), 1, sym_lambda_capture_specifier, - STATE(8687), 1, + STATE(9816), 1, sym__scope_resolution, - STATE(10515), 1, + STATE(11415), 1, sym_requires_parameter_list, - ACTIONS(13281), 2, + ACTIONS(14177), 2, sym_true, sym_false, - STATE(2678), 2, + STATE(5039), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5042), 8, + STATE(6138), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -691090,75 +763450,118 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [285666] = 21, + [327655] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, + ACTIONS(11950), 1, anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13966), 1, anon_sym___attribute, - ACTIONS(13239), 1, + ACTIONS(14060), 1, anon_sym_requires, - STATE(8662), 1, - sym__function_attributes_end, - STATE(8725), 1, + STATE(9543), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9695), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(14057), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(7623), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7985), 3, + STATE(8965), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [285740] = 5, + [327729] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14181), 1, + sym_identifier, + ACTIONS(14185), 1, + sym_primitive_type, + STATE(2870), 1, + sym_alignas_qualifier, + STATE(8675), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6936), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8587), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6934), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(14183), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(67), 13, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [327783] = 5, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, + STATE(3492), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7715), 4, + ACTIONS(7306), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13285), 4, + ACTIONS(14187), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7713), 21, + ACTIONS(7304), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -691180,103 +763583,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285782] = 21, + [327825] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11518), 1, + ACTIONS(11439), 1, + anon_sym_requires, + ACTIONS(11950), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(13008), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(13011), 1, anon_sym___attribute, - ACTIONS(13149), 1, + STATE(9639), 1, + sym_trailing_return_type, + STATE(9681), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(8911), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [327899] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11206), 1, + anon_sym_STAR, + ACTIONS(11208), 1, + anon_sym_AMP_AMP, + ACTIONS(11210), 1, + anon_sym_AMP, + ACTIONS(11212), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5717), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9645), 1, + sym__scope_resolution, + STATE(10229), 1, + sym__abstract_declarator, + ACTIONS(7862), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [327971] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3492), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7298), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(14190), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7296), 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, + [328013] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, anon_sym_requires, - STATE(8511), 1, + STATE(9039), 1, sym_trailing_return_type, - STATE(8640), 1, + STATE(9665), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(13083), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7474), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7969), 3, + STATE(8915), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [285856] = 20, + [328087] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11010), 1, + ACTIONS(13428), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13996), 1, sym_identifier, - ACTIONS(13288), 1, + ACTIONS(14193), 1, anon_sym_LPAREN2, - ACTIONS(13290), 1, + ACTIONS(14195), 1, anon_sym_LBRACE, - ACTIONS(13294), 1, + ACTIONS(14199), 1, anon_sym_requires, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(4980), 1, + STATE(6979), 1, + sym_splice_specifier, + STATE(7509), 1, sym_requirement_seq, - STATE(8041), 1, + STATE(9037), 1, sym_lambda_capture_specifier, - STATE(8682), 1, + STATE(9815), 1, sym__scope_resolution, - STATE(10367), 1, + STATE(11561), 1, sym_requires_parameter_list, - ACTIONS(13292), 2, + ACTIONS(14197), 2, sym_true, sym_false, - STATE(2615), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(4982), 8, + STATE(7510), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -691285,50 +763830,50 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [285928] = 20, + [328159] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3078), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11097), 1, + ACTIONS(13540), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13947), 1, sym_identifier, - ACTIONS(13296), 1, + ACTIONS(14201), 1, anon_sym_LPAREN2, - ACTIONS(13298), 1, + ACTIONS(14203), 1, anon_sym_LBRACE, - ACTIONS(13302), 1, + ACTIONS(14207), 1, anon_sym_requires, - STATE(2605), 1, + STATE(4787), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(4831), 1, sym__splice_specialization_specifier, - STATE(5137), 1, + STATE(5540), 1, sym_requirement_seq, - STATE(8024), 1, + STATE(9052), 1, sym_lambda_capture_specifier, - STATE(8702), 1, + STATE(9822), 1, sym__scope_resolution, - STATE(10457), 1, + STATE(11650), 1, sym_requires_parameter_list, - ACTIONS(13300), 2, + ACTIONS(14205), 2, sym_true, sym_false, - STATE(2661), 2, + STATE(4832), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5138), 8, + STATE(5542), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -691337,193 +763882,156 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [286000] = 21, + [328231] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11518), 1, + ACTIONS(11882), 1, + anon_sym_requires, + ACTIONS(11948), 1, anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13008), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13011), 1, anon_sym___attribute, - ACTIONS(13205), 1, - anon_sym_requires, - STATE(8513), 1, - sym_trailing_return_type, - STATE(8641), 1, + STATE(9710), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9766), 1, + sym_trailing_return_type, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(7474), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7922), 3, + anon_sym_GT2, + STATE(8948), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [286074] = 21, + [328305] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, + ACTIONS(11439), 1, anon_sym_requires, - ACTIONS(11516), 1, + ACTIONS(11950), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(13966), 1, anon_sym___attribute, - STATE(8667), 1, - sym__function_attributes_end, - STATE(8718), 1, + STATE(9546), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9682), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7623), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7968), 3, + STATE(8908), 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, + [328379] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11105), 1, + ACTIONS(13450), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13978), 1, sym_identifier, - ACTIONS(13307), 1, + ACTIONS(14136), 1, anon_sym_LPAREN2, - ACTIONS(13309), 1, + ACTIONS(14138), 1, anon_sym_LBRACE, - ACTIONS(13313), 1, + ACTIONS(14142), 1, anon_sym_requires, - STATE(3028), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(5259), 1, + STATE(5596), 1, sym_requirement_seq, - STATE(8001), 1, + STATE(6696), 1, + sym_splice_specifier, + STATE(9051), 1, sym_lambda_capture_specifier, - STATE(8738), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(10473), 1, + STATE(11466), 1, sym_requires_parameter_list, - ACTIONS(13311), 2, + ACTIONS(14209), 2, sym_true, sym_false, - STATE(3060), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6188), 8, + STATE(6886), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -691532,50 +764040,50 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [286262] = 20, + [328451] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2958), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11111), 1, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13959), 1, sym_identifier, - ACTIONS(13307), 1, + ACTIONS(14211), 1, anon_sym_LPAREN2, - ACTIONS(13309), 1, + ACTIONS(14213), 1, anon_sym_LBRACE, - ACTIONS(13313), 1, + ACTIONS(14217), 1, anon_sym_requires, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(4632), 1, sym_splice_specifier, - STATE(5259), 1, + STATE(4808), 1, + sym__splice_specialization_specifier, + STATE(5288), 1, sym_requirement_seq, - STATE(8001), 1, + STATE(8991), 1, sym_lambda_capture_specifier, - STATE(8707), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(10473), 1, + STATE(11823), 1, sym_requires_parameter_list, - ACTIONS(13315), 2, + ACTIONS(14215), 2, sym_true, sym_false, - STATE(3728), 2, + STATE(4764), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6288), 8, + STATE(5289), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -691584,79 +764092,415 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [286334] = 20, + [328523] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2870), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(14221), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(14219), 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, + [328568] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3924), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7674), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7672), 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, + [328609] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(2870), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(8626), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(14225), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(14223), 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, + [328654] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14003), 1, + anon_sym_requires, + STATE(9960), 1, + sym__function_attributes_end, + STATE(10100), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7474), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8981), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [328727] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14050), 1, + anon_sym___asm, + STATE(9034), 1, + sym_trailing_return_type, + STATE(9101), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(14047), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [328794] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, anon_sym_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14060), 1, + anon_sym_requires, + STATE(9968), 1, + sym__function_attributes_end, + STATE(10079), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7623), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + STATE(8983), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [328867] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(13317), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - ACTIONS(13319), 1, + ACTIONS(7862), 1, anon_sym_LBRACE, - ACTIONS(13323), 1, + ACTIONS(7864), 1, anon_sym_requires, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + ACTIONS(11273), 1, + anon_sym_STAR, + ACTIONS(11275), 1, + anon_sym_AMP_AMP, + ACTIONS(11277), 1, + anon_sym_AMP, + ACTIONS(11279), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3648), 1, - sym_requirement_seq, - STATE(8030), 1, - sym_lambda_capture_specifier, - STATE(8763), 1, + STATE(6124), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9591), 1, sym__scope_resolution, - STATE(10534), 1, - sym_requires_parameter_list, - ACTIONS(13321), 2, - sym_true, - sym_false, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, + STATE(10351), 1, + sym__abstract_declarator, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - STATE(3657), 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, - [286406] = 5, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [328940] = 5, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7683), 4, + STATE(3934), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7708), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(13325), 4, + ACTIONS(7706), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7681), 21, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + [328981] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3936), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7572), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7570), 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, + [329022] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3864), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, + ACTIONS(7576), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7574), 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, @@ -691673,27 +764517,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286448] = 5, + [329063] = 5, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7695), 4, + STATE(3868), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7580), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(13328), 4, + ACTIONS(7578), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7693), 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, @@ -691710,80 +764553,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286490] = 21, + [329104] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(8285), 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, + ACTIONS(10963), 1, anon_sym_requires, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(11218), 1, anon_sym___attribute, - STATE(8585), 1, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(14092), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14230), 1, + anon_sym___asm, + STATE(9027), 1, sym_trailing_return_type, - STATE(8604), 1, + STATE(9103), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + ACTIONS(14227), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(8287), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7933), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [286564] = 5, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [329171] = 7, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7699), 4, + STATE(2870), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2711), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(14235), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(13331), 4, + ACTIONS(14233), 8, + anon_sym_AMP, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7697), 21, - anon_sym_AMP, + sym_primitive_type, + sym_identifier, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -691796,31 +764640,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [286606] = 5, + [329216] = 7, ACTIONS(3), 1, sym_comment, - STATE(7687), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7557), 4, + STATE(2870), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(8614), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(14239), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(13334), 4, + ACTIONS(14237), 8, + anon_sym_AMP, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7555), 21, - anon_sym_AMP, + 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, + [329261] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3900), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, + ACTIONS(7678), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7676), 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, @@ -691837,27 +764714,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286648] = 5, + [329302] = 5, ACTIONS(3), 1, sym_comment, - STATE(7689), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7785), 4, + STATE(3926), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7690), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(13337), 4, + ACTIONS(7688), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7783), 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, @@ -691874,21 +764750,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286690] = 4, + [329343] = 5, ACTIONS(3), 1, sym_comment, - STATE(7682), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7719), 4, + STATE(3903), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7619), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(7717), 25, + ACTIONS(7617), 23, anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -691910,22 +764786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286730] = 7, + [329384] = 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(3984), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7694), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7223), 23, + ACTIONS(7692), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -691949,27 +764822,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286776] = 5, + [329425] = 5, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7525), 4, + STATE(3909), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7704), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(13342), 4, + ACTIONS(7702), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7528), 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, @@ -691986,131 +764858,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286818] = 20, + [329466] = 8, 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, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, - sym_identifier, - ACTIONS(13346), 1, + ACTIONS(8372), 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, + STATE(6170), 1, + sym_argument_list, + STATE(6233), 1, + sym_initializer_list, + ACTIONS(7361), 4, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 20, + anon_sym_AMP, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(2422), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, 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, + [329513] = 8, ACTIONS(3), 1, sym_comment, - STATE(7668), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7703), 4, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(8372), 1, anon_sym_LPAREN2, + STATE(6364), 1, + sym_argument_list, + STATE(6372), 1, + sym_initializer_list, + ACTIONS(7361), 4, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(13362), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7701), 21, + anon_sym_LBRACK_COLON, + ACTIONS(7359), 20, 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, @@ -692125,82 +764933,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, - [287004] = 21, + anon_sym_decltype, + anon_sym_template, + [329560] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, + ACTIONS(13086), 1, anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9078), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [329627] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(11218), 1, anon_sym___attribute, - STATE(8668), 1, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13975), 1, + anon_sym_requires, + ACTIONS(14050), 1, + anon_sym___asm, + STATE(9000), 1, + sym_trailing_return_type, + STATE(9079), 1, sym__function_attributes_end, - STATE(8730), 1, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(14047), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [329694] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(14092), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14098), 1, + anon_sym_requires, + ACTIONS(14230), 1, + anon_sym___asm, + STATE(9038), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9080), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(14095), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(14227), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [329761] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9100), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(7474), 7, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7917), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [287078] = 5, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [329828] = 5, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7729), 4, + STATE(3922), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7636), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(13365), 4, + ACTIONS(7634), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7727), 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, @@ -692217,37 +765168,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [287120] = 11, + [329869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13368), 1, - sym_identifier, - ACTIONS(13372), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(7789), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7251), 2, + STATE(3925), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(7669), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7249), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(13370), 4, + ACTIONS(7682), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7680), 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, @@ -692260,688 +765200,1661 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [287174] = 21, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [329910] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(8285), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11435), 1, anon_sym_DASH_GT, - ACTIONS(13205), 1, + ACTIONS(11439), 1, anon_sym_requires, - STATE(8853), 1, + STATE(9655), 1, + sym_trailing_return_type, + STATE(9661), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [329976] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(11439), 1, + anon_sym_requires, + STATE(9537), 1, sym__function_attributes_end, - STATE(8949), 1, + STATE(9546), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7966), 2, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(10859), 2, + [330042] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(14092), 1, + anon_sym_LBRACK_LBRACK, + STATE(9027), 1, + sym_trailing_return_type, + STATE(9458), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - STATE(7994), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [287247] = 18, + ACTIONS(8287), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_try, + [330108] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(8285), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10624), 1, + ACTIONS(11466), 1, anon_sym_DASH_GT, - ACTIONS(13114), 1, + ACTIONS(14092), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13161), 1, + ACTIONS(14098), 1, anon_sym_requires, - STATE(8035), 1, + STATE(9038), 1, sym_trailing_return_type, - STATE(8429), 1, + STATE(9520), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13158), 2, + ACTIONS(14095), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, + ACTIONS(8287), 6, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_try, + [330174] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9466), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [287314] = 18, + [330240] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10592), 1, + ACTIONS(11445), 1, anon_sym_DASH_GT, - ACTIONS(12412), 1, + ACTIONS(13969), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, + ACTIONS(13975), 1, anon_sym_requires, - ACTIONS(12858), 1, + STATE(9000), 1, + sym_trailing_return_type, + STATE(9517), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [330306] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, anon_sym___asm, - STATE(8013), 1, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(9039), 1, sym_trailing_return_type, - STATE(8125), 1, + STATE(9465), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(12415), 2, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13083), 2, anon_sym_final, anon_sym_override, - ACTIONS(12855), 2, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_try, + [330372] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14003), 1, + anon_sym_requires, + STATE(9534), 1, + sym__function_attributes_end, + STATE(9535), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - STATE(7923), 2, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 7, + ACTIONS(7474), 6, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [330438] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(14092), 1, + anon_sym_LBRACK_LBRACK, + STATE(9027), 1, + sym_trailing_return_type, + STATE(9468), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [287381] = 18, + [330504] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10592), 1, + ACTIONS(11466), 1, anon_sym_DASH_GT, - ACTIONS(13248), 1, + ACTIONS(13969), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13254), 1, + ACTIONS(13975), 1, + anon_sym_requires, + STATE(9000), 1, + sym_trailing_return_type, + STATE(9496), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_try, + [330570] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14060), 1, + anon_sym_requires, + STATE(9542), 1, + sym__function_attributes_end, + STATE(9543), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [330636] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(14092), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14098), 1, + anon_sym_requires, + STATE(9038), 1, + sym_trailing_return_type, + STATE(9471), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14095), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [330702] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14244), 1, + anon_sym_requires, + STATE(9548), 1, + sym_trailing_return_type, + STATE(9549), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14241), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [330768] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + STATE(9034), 1, + sym_trailing_return_type, + STATE(9467), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [330834] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9475), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [330900] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(11439), 1, + anon_sym_requires, + STATE(9571), 1, + sym__function_attributes_end, + STATE(9639), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [330966] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9482), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_try, + [331032] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + STATE(9034), 1, + sym_trailing_return_type, + STATE(9512), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_try, + [331098] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11625), 1, + anon_sym_requires, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + STATE(9438), 1, + sym_trailing_return_type, + STATE(9519), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [331163] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13086), 1, + anon_sym_requires, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9243), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [331228] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13975), 1, anon_sym_requires, - ACTIONS(13377), 1, + ACTIONS(14050), 1, anon_sym___asm, - STATE(8046), 1, + STATE(9000), 1, sym_trailing_return_type, - STATE(8127), 1, + STATE(9244), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(13251), 2, + ACTIONS(13972), 2, anon_sym_final, anon_sym_override, - ACTIONS(13374), 2, + ACTIONS(14047), 2, anon_sym_asm, anon_sym___asm__, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, + ACTIONS(7623), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [287448] = 18, + [331293] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(8285), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13248), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13254), 1, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(11625), 1, anon_sym_requires, - STATE(8046), 1, + STATE(9437), 1, sym_trailing_return_type, - STATE(8435), 1, + STATE(9722), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13251), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, - anon_sym_RPAREN, + ACTIONS(8287), 5, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [287515] = 18, + [331358] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(14142), 1, anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(14247), 1, + sym_identifier, + ACTIONS(14249), 1, + anon_sym_LPAREN2, + ACTIONS(14251), 1, + anon_sym_COLON_COLON, + ACTIONS(14255), 1, + anon_sym_LBRACK_COLON, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(9051), 1, + sym_lambda_capture_specifier, + STATE(9269), 1, + sym_splice_specifier, + STATE(9789), 1, + sym__scope_resolution, + ACTIONS(14253), 2, + sym_true, + sym_false, + STATE(3420), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(9636), 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, + [331421] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10592), 1, + ACTIONS(11580), 1, anon_sym_DASH_GT, - ACTIONS(13248), 1, + ACTIONS(14092), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13377), 1, + ACTIONS(14098), 1, + anon_sym_requires, + ACTIONS(14230), 1, anon_sym___asm, - STATE(8032), 1, + STATE(9038), 1, sym_trailing_return_type, - STATE(8081), 1, + STATE(9245), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(8160), 2, + ACTIONS(14095), 2, anon_sym_final, anon_sym_override, - ACTIONS(13374), 2, + ACTIONS(14227), 2, anon_sym_asm, anon_sym___asm__, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, + ACTIONS(8287), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [287582] = 7, + [331486] = 17, ACTIONS(3), 1, sym_comment, - STATE(3497), 1, - sym_alignas_qualifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7715), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(13382), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(13380), 8, - anon_sym_AMP, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(14142), 1, + anon_sym_requires, + ACTIONS(14247), 1, 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, - [287627] = 5, + ACTIONS(14249), 1, + anon_sym_LPAREN2, + ACTIONS(14251), 1, + anon_sym_COLON_COLON, + ACTIONS(14255), 1, + anon_sym_LBRACK_COLON, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(9051), 1, + sym_lambda_capture_specifier, + STATE(9269), 1, + sym_splice_specifier, + STATE(9789), 1, + sym__scope_resolution, + ACTIONS(14257), 2, + sym_true, + sym_false, + STATE(3420), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5600), 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, + [331549] = 17, ACTIONS(3), 1, sym_comment, - STATE(3223), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7549), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7547), 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, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(14255), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14259), 1, sym_identifier, - [287668] = 5, + ACTIONS(14261), 1, + anon_sym_LPAREN2, + ACTIONS(14263), 1, + anon_sym_COLON_COLON, + ACTIONS(14267), 1, + anon_sym_requires, + STATE(9043), 1, + sym_lambda_capture_specifier, + STATE(9109), 1, + sym_splice_specifier, + STATE(9295), 1, + sym__splice_specialization_specifier, + STATE(9812), 1, + sym__scope_resolution, + ACTIONS(14265), 2, + sym_true, + sym_false, + STATE(9358), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(9390), 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, + [331612] = 17, ACTIONS(3), 1, sym_comment, - STATE(3116), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7553), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7551), 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, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(14255), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14259), 1, sym_identifier, - [287709] = 5, + ACTIONS(14261), 1, + anon_sym_LPAREN2, + ACTIONS(14263), 1, + anon_sym_COLON_COLON, + ACTIONS(14267), 1, + anon_sym_requires, + STATE(9043), 1, + sym_lambda_capture_specifier, + STATE(9109), 1, + sym_splice_specifier, + STATE(9295), 1, + sym__splice_specialization_specifier, + STATE(9812), 1, + sym__scope_resolution, + ACTIONS(14269), 2, + sym_true, + sym_false, + STATE(9358), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(9442), 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, + [331675] = 26, ACTIONS(3), 1, sym_comment, - STATE(3187), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7415), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7413), 23, - anon_sym_AMP, - anon_sym___extension__, + ACTIONS(53), 1, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12557), 1, + anon_sym_STAR, + ACTIONS(14271), 1, sym_identifier, - [287750] = 5, + ACTIONS(14273), 1, + anon_sym_TILDE, + ACTIONS(14275), 1, + anon_sym_COLON_COLON, + ACTIONS(14277), 1, + anon_sym_template, + ACTIONS(14279), 1, + anon_sym_operator, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4358), 1, + sym_template_function, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, + sym_operator_name, + STATE(4420), 1, + sym_dependent_identifier, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8668), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10664), 1, + sym_operator_cast, + STATE(10687), 1, + sym_qualified_operator_cast_identifier, + STATE(12036), 1, + sym_ms_based_modifier, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [331756] = 17, ACTIONS(3), 1, sym_comment, - STATE(3199), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7429), 3, - 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, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3161), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(13990), 1, sym_identifier, - [287791] = 5, + ACTIONS(14179), 1, + anon_sym_requires, + ACTIONS(14281), 1, + anon_sym_LPAREN2, + STATE(4986), 1, + sym_splice_specifier, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(9033), 1, + sym_lambda_capture_specifier, + STATE(9816), 1, + sym__scope_resolution, + ACTIONS(14177), 2, + sym_true, + sym_false, + STATE(5039), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6138), 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, + [331819] = 17, ACTIONS(3), 1, sym_comment, - STATE(3243), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7399), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7397), 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, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(13996), 1, sym_identifier, - [287832] = 5, + ACTIONS(14199), 1, + anon_sym_requires, + ACTIONS(14283), 1, + anon_sym_LPAREN2, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6979), 1, + sym_splice_specifier, + STATE(9037), 1, + sym_lambda_capture_specifier, + STATE(9815), 1, + sym__scope_resolution, + ACTIONS(14285), 2, + sym_true, + sym_false, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7526), 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, + [331882] = 17, ACTIONS(3), 1, sym_comment, - STATE(3164), 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, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(13996), 1, sym_identifier, - [287873] = 5, + ACTIONS(14199), 1, + anon_sym_requires, + ACTIONS(14283), 1, + anon_sym_LPAREN2, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6979), 1, + sym_splice_specifier, + STATE(9037), 1, + sym_lambda_capture_specifier, + STATE(9815), 1, + sym__scope_resolution, + ACTIONS(14287), 2, + sym_true, + sym_false, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7461), 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, + [331945] = 17, ACTIONS(3), 1, sym_comment, - STATE(3235), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7425), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7423), 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, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13959), 1, sym_identifier, - [287914] = 7, + ACTIONS(14217), 1, + anon_sym_requires, + ACTIONS(14289), 1, + anon_sym_LPAREN2, + STATE(4632), 1, + sym_splice_specifier, + STATE(4808), 1, + sym__splice_specialization_specifier, + STATE(8991), 1, + sym_lambda_capture_specifier, + STATE(9790), 1, + sym__scope_resolution, + ACTIONS(14291), 2, + sym_true, + sym_false, + STATE(4764), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5273), 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, + [332008] = 26, 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, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(13384), 8, - anon_sym_AMP, + ACTIONS(53), 1, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(143), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5492), 1, + anon_sym_COLON_COLON, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(14293), 1, 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, + ACTIONS(14295), 1, + anon_sym_template, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4358), 1, + sym_template_function, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, + sym_operator_name, + STATE(4420), 1, + sym_dependent_identifier, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8673), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10664), 1, + sym_operator_cast, + STATE(10687), 1, + sym_qualified_operator_cast_identifier, + STATE(12437), 1, + sym_ms_based_modifier, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [332089] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(13216), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(13340), 1, - sym_auto, - STATE(3215), 1, - sym_decltype_auto, - ACTIONS(7225), 3, - anon_sym_LPAREN2, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5653), 1, + anon_sym_COLON_COLON, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6002), 1, 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, + ACTIONS(14297), 1, sym_identifier, - [288002] = 5, + ACTIONS(14299), 1, + anon_sym_template, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4358), 1, + sym_template_function, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, + sym_operator_name, + STATE(4420), 1, + sym_dependent_identifier, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8674), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(12437), 1, + sym_ms_based_modifier, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [332170] = 6, ACTIONS(3), 1, sym_comment, - STATE(3103), 1, - sym_attribute_specifier, - ACTIONS(43), 2, + STATE(3492), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7183), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7437), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7435), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, + ACTIONS(7186), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(9407), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(7173), 17, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -692958,1028 +766871,1817 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [288043] = 5, + [332211] = 19, ACTIONS(3), 1, sym_comment, - STATE(3175), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7455), 3, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(6648), 1, anon_sym_STAR, + ACTIONS(6650), 1, anon_sym_AMP_AMP, - ACTIONS(7453), 23, + ACTIONS(6652), 1, 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, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10442), 1, + sym__abstract_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [332278] = 17, ACTIONS(3), 1, sym_comment, - STATE(3139), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7523), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7521), 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, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13959), 1, sym_identifier, - [288125] = 5, + ACTIONS(14217), 1, + anon_sym_requires, + ACTIONS(14289), 1, + anon_sym_LPAREN2, + STATE(4632), 1, + sym_splice_specifier, + STATE(4808), 1, + sym__splice_specialization_specifier, + STATE(8991), 1, + sym_lambda_capture_specifier, + STATE(9790), 1, + sym__scope_resolution, + ACTIONS(14301), 2, + sym_true, + sym_false, + STATE(4764), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5274), 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, + [332341] = 17, ACTIONS(3), 1, sym_comment, - STATE(3212), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7533), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7531), 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, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13961), 1, sym_identifier, - [288166] = 21, + ACTIONS(14303), 1, + anon_sym_LPAREN2, + ACTIONS(14305), 1, + anon_sym_COLON_COLON, + ACTIONS(14309), 1, + anon_sym_requires, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9041), 1, + sym_lambda_capture_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9830), 1, + sym__scope_resolution, + ACTIONS(14307), 2, + sym_true, + sym_false, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(9752), 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, + [332404] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(1860), 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(13149), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4966), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13605), 1, + anon_sym_COLON_COLON, + ACTIONS(13986), 1, + sym_identifier, + ACTIONS(14156), 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, + ACTIONS(14311), 1, 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, - STATE(7991), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [288239] = 7, + STATE(7005), 1, + sym_splice_specifier, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(8992), 1, + sym_lambda_capture_specifier, + STATE(9780), 1, + sym__scope_resolution, + ACTIONS(14154), 2, + sym_true, + sym_false, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7538), 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, + [332467] = 17, ACTIONS(3), 1, sym_comment, - STATE(3497), 1, - sym_alignas_qualifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7725), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(13390), 3, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(13996), 1, + sym_identifier, + ACTIONS(14199), 1, + anon_sym_requires, + ACTIONS(14283), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(13388), 8, - anon_sym_AMP, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6979), 1, + sym_splice_specifier, + STATE(9037), 1, + sym_lambda_capture_specifier, + STATE(9815), 1, + sym__scope_resolution, + ACTIONS(14197), 2, + sym_true, + sym_false, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7510), 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, + [332530] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13978), 1, 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, - [288284] = 18, + ACTIONS(14142), 1, + anon_sym_requires, + ACTIONS(14249), 1, + anon_sym_LPAREN2, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(6696), 1, + sym_splice_specifier, + STATE(9051), 1, + sym_lambda_capture_specifier, + STATE(9846), 1, + sym__scope_resolution, + ACTIONS(14313), 2, + sym_true, + sym_false, + STATE(3420), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6864), 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, + [332593] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14142), 1, + anon_sym_requires, + ACTIONS(14249), 1, + anon_sym_LPAREN2, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9044), 1, + sym_lambda_capture_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9832), 1, + sym__scope_resolution, + ACTIONS(14257), 2, + sym_true, + sym_false, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5600), 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, + [332656] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11625), 1, anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(13966), 1, anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13114), 1, - anon_sym_LBRACK_LBRACK, - STATE(8057), 1, + STATE(9377), 1, sym_trailing_return_type, - STATE(8434), 1, + STATE(9522), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, + ACTIONS(7623), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [288351] = 18, + anon_sym_GT2, + [332721] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11625), 1, anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(14086), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(14089), 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, + STATE(9437), 1, sym_trailing_return_type, - STATE(8080), 1, + STATE(9487), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(13191), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - STATE(7923), 2, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, + ACTIONS(8287), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [288418] = 7, + anon_sym_GT2, + [332786] = 17, 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(13394), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(13392), 8, - anon_sym_AMP, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13959), 1, 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, - [288463] = 18, + ACTIONS(14217), 1, + anon_sym_requires, + ACTIONS(14289), 1, + anon_sym_LPAREN2, + STATE(4632), 1, + sym_splice_specifier, + STATE(4808), 1, + sym__splice_specialization_specifier, + STATE(8991), 1, + sym_lambda_capture_specifier, + STATE(9790), 1, + sym__scope_resolution, + ACTIONS(14215), 2, + sym_true, + sym_false, + STATE(4764), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5289), 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, + [332849] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(1860), 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(12412), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12858), 1, - anon_sym___asm, - 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_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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13961), 1, + sym_identifier, + ACTIONS(14303), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [288530] = 18, + ACTIONS(14305), 1, + anon_sym_COLON_COLON, + ACTIONS(14309), 1, + anon_sym_requires, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9041), 1, + sym_lambda_capture_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9830), 1, + sym__scope_resolution, + ACTIONS(14319), 2, + sym_true, + sym_false, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(3414), 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, + [332912] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(13011), 1, anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13114), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13161), 1, + ACTIONS(14041), 1, anon_sym_requires, - ACTIONS(13194), 1, - anon_sym___asm, - STATE(8035), 1, + STATE(9412), 1, sym_trailing_return_type, - STATE(8126), 1, + STATE(9449), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(13158), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(13191), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - STATE(7923), 2, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, + ACTIONS(7474), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [288597] = 18, + anon_sym_GT2, + [332977] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(13966), 1, anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - STATE(7999), 1, + ACTIONS(14083), 1, + anon_sym_requires, + STATE(9387), 1, sym_trailing_return_type, - STATE(8373), 1, + STATE(9450), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(14057), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 7, + ACTIONS(7623), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [288664] = 18, + anon_sym_GT2, + [333042] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(11021), 1, + anon_sym_STAR, + ACTIONS(11023), 1, + anon_sym_AMP_AMP, + ACTIONS(11025), 1, + anon_sym_AMP, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5281), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9654), 1, + sym__scope_resolution, + STATE(10200), 1, + sym__abstract_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [333109] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(8285), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(14086), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(14089), 1, anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, + ACTIONS(14321), 1, anon_sym_requires, - STATE(8013), 1, + STATE(9389), 1, sym_trailing_return_type, - STATE(8410), 1, + STATE(9451), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12415), 2, + ACTIONS(14241), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 7, + ACTIONS(8287), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [288731] = 9, + anon_sym_GT2, + [333174] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(8569), 1, - anon_sym_LPAREN2, - STATE(3537), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5537), 1, - sym_argument_list, - STATE(5538), 1, - sym_initializer_list, - ACTIONS(7223), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(9214), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7225), 18, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, + ACTIONS(1860), 1, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - [288780] = 18, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3010), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13494), 1, + anon_sym_COLON_COLON, + ACTIONS(14010), 1, + sym_identifier, + ACTIONS(14168), 1, + anon_sym_requires, + ACTIONS(14324), 1, + anon_sym_LPAREN2, + STATE(4714), 1, + sym_splice_specifier, + STATE(4858), 1, + sym__splice_specialization_specifier, + STATE(8995), 1, + sym_lambda_capture_specifier, + STATE(9745), 1, + sym__scope_resolution, + ACTIONS(14166), 2, + sym_true, + sym_false, + STATE(4874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5662), 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, + [333237] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13248), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - STATE(8032), 1, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(14041), 1, + anon_sym_requires, + STATE(9412), 1, sym_trailing_return_type, - STATE(8372), 1, + STATE(9728), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, - anon_sym_RPAREN, + ACTIONS(7474), 5, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [288847] = 5, + [333302] = 17, ACTIONS(3), 1, sym_comment, - STATE(3246), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7433), 3, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13961), 1, + sym_identifier, + ACTIONS(14303), 1, + anon_sym_LPAREN2, + ACTIONS(14305), 1, + anon_sym_COLON_COLON, + ACTIONS(14309), 1, + anon_sym_requires, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9041), 1, + sym_lambda_capture_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9830), 1, + sym__scope_resolution, + ACTIONS(14326), 2, + sym_true, + sym_false, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(9825), 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, + [333365] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(6648), 1, anon_sym_STAR, + ACTIONS(6650), 1, anon_sym_AMP_AMP, - ACTIONS(7431), 23, + ACTIONS(6652), 1, 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, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10498), 1, + sym__abstract_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [333432] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, sym_identifier, - [288888] = 18, + ACTIONS(14110), 1, + anon_sym_requires, + ACTIONS(14328), 1, + anon_sym_LPAREN2, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(9002), 1, + sym_lambda_capture_specifier, + STATE(9840), 1, + sym__scope_resolution, + ACTIONS(14330), 2, + sym_true, + sym_false, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(3916), 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, + [333495] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(1860), 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, + sym_identifier, + ACTIONS(14110), 1, anon_sym_requires, - STATE(8512), 1, - sym__function_attributes_end, - STATE(8513), 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), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14328), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [288954] = 18, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(9002), 1, + sym_lambda_capture_specifier, + STATE(9840), 1, + sym__scope_resolution, + ACTIONS(14332), 2, + sym_true, + sym_false, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(3917), 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, + [333558] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11623), 1, anon_sym_DASH_GT, - ACTIONS(13399), 1, + ACTIONS(11625), 1, anon_sym_requires, - STATE(8517), 1, + STATE(9438), 1, sym_trailing_return_type, - STATE(8518), 1, + STATE(9717), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13396), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7474), 5, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - [289020] = 18, + anon_sym_EQ, + anon_sym_try, + [333623] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11623), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(14083), 1, anon_sym_requires, - STATE(8551), 1, + STATE(9387), 1, sym_trailing_return_type, - STATE(8593), 1, + STATE(9689), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(14057), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7623), 5, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - [289086] = 18, + anon_sym_EQ, + anon_sym_try, + [333688] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(1860), 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(10861), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3161), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(13990), 1, + sym_identifier, + ACTIONS(14179), 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, - ACTIONS(7791), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14281), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [289152] = 18, + STATE(4986), 1, + sym_splice_specifier, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(9033), 1, + sym_lambda_capture_specifier, + STATE(9816), 1, + sym__scope_resolution, + ACTIONS(14334), 2, + sym_true, + sym_false, + STATE(5039), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6334), 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, + [333751] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13947), 1, + sym_identifier, + ACTIONS(14207), 1, + anon_sym_requires, + ACTIONS(14336), 1, + anon_sym_LPAREN2, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(9052), 1, + sym_lambda_capture_specifier, + STATE(9822), 1, + sym__scope_resolution, + ACTIONS(14338), 2, + sym_true, + sym_false, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5643), 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, + [333814] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13947), 1, + sym_identifier, + ACTIONS(14207), 1, + anon_sym_requires, + ACTIONS(14336), 1, + anon_sym_LPAREN2, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(9052), 1, + sym_lambda_capture_specifier, + STATE(9822), 1, + sym__scope_resolution, + ACTIONS(14340), 2, + sym_true, + sym_false, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5587), 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, + [333877] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3161), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(13990), 1, + sym_identifier, + ACTIONS(14179), 1, + anon_sym_requires, + ACTIONS(14281), 1, + anon_sym_LPAREN2, + STATE(4986), 1, + sym_splice_specifier, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(9033), 1, + sym_lambda_capture_specifier, + STATE(9816), 1, + sym__scope_resolution, + ACTIONS(14342), 2, + sym_true, + sym_false, + STATE(5039), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6389), 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, + [333940] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(14156), 1, + anon_sym_requires, + ACTIONS(14255), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14311), 1, + anon_sym_LPAREN2, + ACTIONS(14344), 1, + sym_identifier, + ACTIONS(14346), 1, + anon_sym_COLON_COLON, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(8992), 1, + sym_lambda_capture_specifier, + STATE(9499), 1, + sym_splice_specifier, + STATE(9757), 1, + sym__scope_resolution, + ACTIONS(14348), 2, + sym_true, + sym_false, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(9847), 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, + [334003] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(8285), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11623), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(14321), 1, anon_sym_requires, - STATE(8510), 1, - sym__function_attributes_end, - STATE(8511), 1, + STATE(9389), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9690), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(14241), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8287), 5, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - [289218] = 18, + anon_sym_EQ, + anon_sym_try, + [334068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10406), 1, + sym__abstract_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [334135] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(14156), 1, + anon_sym_requires, + ACTIONS(14255), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14311), 1, + anon_sym_LPAREN2, + ACTIONS(14344), 1, + sym_identifier, + ACTIONS(14346), 1, + anon_sym_COLON_COLON, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(8992), 1, + sym_lambda_capture_specifier, + STATE(9499), 1, + sym_splice_specifier, + STATE(9757), 1, + sym__scope_resolution, + ACTIONS(14350), 2, + sym_true, + sym_false, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(9800), 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, + [334198] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10461), 1, + sym__abstract_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [334265] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(14156), 1, + anon_sym_requires, + ACTIONS(14255), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14311), 1, + anon_sym_LPAREN2, + ACTIONS(14344), 1, + sym_identifier, + ACTIONS(14346), 1, + anon_sym_COLON_COLON, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(8992), 1, + sym_lambda_capture_specifier, + STATE(9499), 1, + sym_splice_specifier, + STATE(9757), 1, + sym__scope_resolution, + ACTIONS(14352), 2, + sym_true, + sym_false, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7259), 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, + [334328] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, + anon_sym_LPAREN2, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10488), 1, + sym__abstract_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [334395] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13577), 1, + anon_sym_COLON_COLON, + ACTIONS(13951), 1, + sym_identifier, + ACTIONS(14142), 1, + anon_sym_requires, + ACTIONS(14249), 1, + anon_sym_LPAREN2, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6573), 1, + sym_splice_specifier, + STATE(9051), 1, + sym_lambda_capture_specifier, + STATE(9760), 1, + sym__scope_resolution, + ACTIONS(14140), 2, + sym_true, + sym_false, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7048), 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, + [334458] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11580), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, - anon_sym_requires, - STATE(8559), 1, - sym__function_attributes_end, - STATE(8565), 1, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13746), 1, + anon_sym___asm, + STATE(9009), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9283), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + ACTIONS(13743), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 6, + ACTIONS(7474), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - [289284] = 12, + anon_sym_try, + [334523] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(9429), 1, - anon_sym___attribute, - ACTIONS(11172), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - ACTIONS(11174), 1, + ACTIONS(6648), 1, anon_sym_STAR, - ACTIONS(11176), 1, + ACTIONS(6650), 1, anon_sym_AMP_AMP, - ACTIONS(11178), 1, + ACTIONS(6652), 1, anon_sym_AMP, - ACTIONS(11186), 1, - anon_sym_LBRACK, - STATE(4330), 1, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, sym_parameter_list, - STATE(8314), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, sym__function_declarator_seq, - STATE(8380), 1, + STATE(9625), 1, + sym__scope_resolution, + STATE(10529), 1, sym__abstract_declarator, - STATE(8312), 5, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9427), 13, + sym_abstract_qualified_identifier, + [334590] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14050), 1, + anon_sym___asm, + STATE(9034), 1, + sym_trailing_return_type, + STATE(9285), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(14047), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 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_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [289337] = 17, + [334655] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13450), 1, anon_sym_COLON_COLON, - ACTIONS(13168), 1, + ACTIONS(13978), 1, sym_identifier, - ACTIONS(13402), 1, - anon_sym_LPAREN2, - ACTIONS(13406), 1, + ACTIONS(14142), 1, anon_sym_requires, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + ACTIONS(14249), 1, + anon_sym_LPAREN2, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(8060), 1, + STATE(6696), 1, + sym_splice_specifier, + STATE(9051), 1, sym_lambda_capture_specifier, - STATE(8700), 1, + STATE(9846), 1, sym__scope_resolution, - ACTIONS(13404), 2, + ACTIONS(14209), 2, sym_true, sym_false, - STATE(7122), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8424), 8, + STATE(6886), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -693988,217 +768690,235 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289400] = 17, + [334718] = 19, 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - STATE(3711), 1, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(8001), 1, - sym_lambda_capture_specifier, - STATE(8707), 1, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, sym__scope_resolution, - ACTIONS(13315), 2, - sym_true, - sym_false, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, + STATE(10397), 1, + sym__abstract_declarator, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, 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, - [289463] = 17, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [334785] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(13283), 1, - anon_sym_requires, - ACTIONS(13410), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8045), 1, - sym_lambda_capture_specifier, - STATE(8687), 1, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, sym__scope_resolution, - ACTIONS(13281), 2, - sym_true, - sym_false, - STATE(2678), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, + STATE(10428), 1, + sym__abstract_declarator, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - STATE(5042), 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, - [289526] = 18, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [334852] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(8285), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, + ACTIONS(10963), 1, anon_sym_requires, - ACTIONS(13242), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(13245), 1, + ACTIONS(11218), 1, anon_sym___attribute, - STATE(8428), 1, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(14092), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14230), 1, + anon_sym___asm, + STATE(9027), 1, sym_trailing_return_type, - STATE(8455), 1, + STATE(9287), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + ACTIONS(14227), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 5, + ACTIONS(8287), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [289591] = 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [334917] = 19, ACTIONS(3), 1, sym_comment, - STATE(7682), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7225), 3, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, + ACTIONS(6648), 1, anon_sym_STAR, + ACTIONS(6650), 1, anon_sym_AMP_AMP, - ACTIONS(13412), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7223), 19, + ACTIONS(6652), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [289630] = 17, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, + sym_splice_specifier, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10456), 1, + sym__abstract_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [334984] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, + sym_identifier, + ACTIONS(14110), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(14328), 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(3490), 1, sym_splice_specifier, - STATE(8001), 1, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(9002), 1, sym_lambda_capture_specifier, - STATE(8685), 1, + STATE(9840), 1, sym__scope_resolution, - ACTIONS(13419), 2, + ACTIONS(14108), 2, sym_true, sym_false, - STATE(3060), 2, + STATE(3705), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8597), 8, + STATE(3853), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694207,44 +768927,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289693] = 17, + [335047] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(14255), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(14259), 1, sym_identifier, - ACTIONS(13423), 1, + ACTIONS(14261), 1, anon_sym_LPAREN2, - ACTIONS(13425), 1, + ACTIONS(14263), 1, anon_sym_COLON_COLON, - ACTIONS(13429), 1, + ACTIONS(14267), 1, anon_sym_requires, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8008), 1, + STATE(9043), 1, sym_lambda_capture_specifier, - STATE(8222), 1, + STATE(9109), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(9295), 1, + sym__splice_specialization_specifier, + STATE(9812), 1, sym__scope_resolution, - ACTIONS(13427), 2, + ACTIONS(14354), 2, sym_true, sym_false, - STATE(3790), 2, + STATE(9358), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8697), 8, + STATE(9428), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694253,44 +768973,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289756] = 17, + [335110] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13577), 1, + anon_sym_COLON_COLON, + ACTIONS(13951), 1, + sym_identifier, + ACTIONS(14142), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(14249), 1, anon_sym_LPAREN2, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(8052), 1, - sym_lambda_capture_specifier, - STATE(8222), 1, + STATE(6573), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(9051), 1, + sym_lambda_capture_specifier, + STATE(9760), 1, sym__scope_resolution, - ACTIONS(13431), 2, + ACTIONS(14356), 2, sym_true, sym_false, - STATE(3790), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(9391), 8, + STATE(7025), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694299,44 +769019,92 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289819] = 17, + [335173] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(13168), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(13402), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6014), 1, + anon_sym_LBRACK, + ACTIONS(6646), 1, anon_sym_LPAREN2, - ACTIONS(13406), 1, - anon_sym_requires, - STATE(6581), 1, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(6650), 1, + anon_sym_AMP_AMP, + ACTIONS(6652), 1, + anon_sym_AMP, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5186), 1, + sym_parameter_list, + STATE(9224), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(9576), 1, + sym__function_declarator_seq, + STATE(9625), 1, + sym__scope_resolution, + STATE(10531), 1, + sym__abstract_declarator, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(9556), 6, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + sym_abstract_qualified_identifier, + [335240] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1860), 1, + anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14142), 1, + anon_sym_requires, + ACTIONS(14249), 1, + anon_sym_LPAREN2, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8060), 1, + STATE(9044), 1, sym_lambda_capture_specifier, - STATE(8700), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9832), 1, sym__scope_resolution, - ACTIONS(13433), 2, + ACTIONS(14358), 2, sym_true, sym_false, - STATE(7122), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8431), 8, + STATE(10436), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694345,44 +769113,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289882] = 17, + [335303] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13951), 1, sym_identifier, - ACTIONS(13323), 1, + ACTIONS(14142), 1, anon_sym_requires, - ACTIONS(13435), 1, + ACTIONS(14249), 1, anon_sym_LPAREN2, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(8030), 1, + STATE(6573), 1, + sym_splice_specifier, + STATE(9051), 1, sym_lambda_capture_specifier, - STATE(8763), 1, + STATE(9760), 1, sym__scope_resolution, - ACTIONS(13321), 2, + ACTIONS(14257), 2, sym_true, sym_false, - STATE(2147), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3657), 8, + STATE(5600), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694391,44 +769159,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289945] = 17, + [335366] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11010), 1, + ACTIONS(13540), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13947), 1, sym_identifier, - ACTIONS(13294), 1, + ACTIONS(14207), 1, anon_sym_requires, - ACTIONS(13437), 1, + ACTIONS(14336), 1, anon_sym_LPAREN2, - STATE(2547), 1, + STATE(4787), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(4831), 1, sym__splice_specialization_specifier, - STATE(8041), 1, + STATE(9052), 1, sym_lambda_capture_specifier, - STATE(8682), 1, + STATE(9822), 1, sym__scope_resolution, - ACTIONS(13292), 2, + ACTIONS(14205), 2, sym_true, sym_false, - STATE(2615), 2, + STATE(4832), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(4982), 8, + STATE(5542), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694437,44 +769205,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290008] = 17, + [335429] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(13100), 1, - sym_identifier, - ACTIONS(13302), 1, - anon_sym_requires, - ACTIONS(13439), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14303), 1, anon_sym_LPAREN2, - STATE(2605), 1, + ACTIONS(14309), 1, + anon_sym_requires, + ACTIONS(14360), 1, + sym_identifier, + ACTIONS(14362), 1, + anon_sym_COLON_COLON, + STATE(3558), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(3949), 1, sym__splice_specialization_specifier, - STATE(8024), 1, + STATE(9041), 1, sym_lambda_capture_specifier, - STATE(8702), 1, + STATE(9803), 1, sym__scope_resolution, - ACTIONS(13441), 2, + ACTIONS(14364), 2, sym_true, sym_false, - STATE(2661), 2, + STATE(3848), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5240), 8, + STATE(3971), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694483,44 +769251,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290071] = 17, + [335492] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(13100), 1, - sym_identifier, - ACTIONS(13302), 1, - anon_sym_requires, - ACTIONS(13439), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14303), 1, anon_sym_LPAREN2, - STATE(2605), 1, + ACTIONS(14309), 1, + anon_sym_requires, + ACTIONS(14360), 1, + sym_identifier, + ACTIONS(14362), 1, + anon_sym_COLON_COLON, + STATE(3558), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(3949), 1, sym__splice_specialization_specifier, - STATE(8024), 1, + STATE(9041), 1, sym_lambda_capture_specifier, - STATE(8702), 1, + STATE(9803), 1, sym__scope_resolution, - ACTIONS(13443), 2, + ACTIONS(14319), 2, sym_true, sym_false, - STATE(2661), 2, + STATE(3848), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5169), 8, + STATE(3414), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694529,44 +769297,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290134] = 17, + [335555] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(14142), 1, + anon_sym_requires, + ACTIONS(14247), 1, sym_identifier, - ACTIONS(13423), 1, + ACTIONS(14249), 1, anon_sym_LPAREN2, - ACTIONS(13425), 1, + ACTIONS(14251), 1, anon_sym_COLON_COLON, - ACTIONS(13429), 1, - anon_sym_requires, - STATE(3808), 1, + ACTIONS(14255), 1, + anon_sym_LBRACK_COLON, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(8008), 1, + STATE(9051), 1, sym_lambda_capture_specifier, - STATE(8222), 1, + STATE(9269), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(9789), 1, sym__scope_resolution, - ACTIONS(13445), 2, + ACTIONS(14366), 2, sym_true, sym_false, - STATE(3790), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3038), 8, + STATE(9648), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694575,91 +769343,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290197] = 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(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(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, - ACTIONS(7791), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [290262] = 17, + [335618] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(5992), 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(14303), 1, anon_sym_LPAREN2, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(7326), 1, + ACTIONS(14309), 1, + anon_sym_requires, + ACTIONS(14360), 1, + sym_identifier, + ACTIONS(14362), 1, + anon_sym_COLON_COLON, + STATE(3558), 1, sym_splice_specifier, - STATE(8047), 1, + STATE(3949), 1, + sym__splice_specialization_specifier, + STATE(9041), 1, sym_lambda_capture_specifier, - STATE(8745), 1, + STATE(9803), 1, sym__scope_resolution, - ACTIONS(13449), 2, + ACTIONS(14368), 2, sym_true, sym_false, - STATE(4296), 2, + STATE(3848), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8680), 8, + STATE(3976), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694668,44 +769389,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290325] = 17, + [335681] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11073), 1, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13986), 1, sym_identifier, - ACTIONS(13272), 1, + ACTIONS(14156), 1, anon_sym_requires, - ACTIONS(13451), 1, + ACTIONS(14311), 1, anon_sym_LPAREN2, - STATE(2742), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(7038), 1, sym__splice_specialization_specifier, - STATE(8042), 1, + STATE(8992), 1, sym_lambda_capture_specifier, - STATE(8686), 1, + STATE(9780), 1, sym__scope_resolution, - ACTIONS(13270), 2, + ACTIONS(14370), 2, sym_true, sym_false, - STATE(2934), 2, + STATE(7036), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5551), 8, + STATE(7544), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694714,44 +769435,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290388] = 17, + [335744] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13986), 1, sym_identifier, - ACTIONS(13360), 1, + ACTIONS(14156), 1, anon_sym_requires, - ACTIONS(13447), 1, + ACTIONS(14311), 1, anon_sym_LPAREN2, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(7326), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(8047), 1, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(8992), 1, sym_lambda_capture_specifier, - STATE(8745), 1, + STATE(9780), 1, sym__scope_resolution, - ACTIONS(13453), 2, + ACTIONS(14352), 2, sym_true, sym_false, - STATE(4296), 2, + STATE(7036), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6462), 8, + STATE(7259), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694760,138 +769481,146 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290451] = 18, + [335807] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, + ACTIONS(11623), 1, anon_sym_DASH_GT, - STATE(8428), 1, + ACTIONS(11625), 1, + anon_sym_requires, + STATE(9377), 1, sym_trailing_return_type, - STATE(8630), 1, + STATE(9739), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 5, + ACTIONS(7623), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [290516] = 18, + [335872] = 26, 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(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - STATE(8374), 1, - sym_trailing_return_type, - STATE(8659), 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), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [290581] = 17, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(143), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(3528), 1, + anon_sym_COLON_COLON, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(14372), 1, + sym_identifier, + ACTIONS(14374), 1, + anon_sym_template, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4358), 1, + sym_template_function, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, + sym_operator_name, + STATE(4420), 1, + sym_dependent_identifier, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8733), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(10664), 1, + sym_operator_cast, + STATE(10687), 1, + sym_qualified_operator_cast_identifier, + STATE(12437), 1, + sym_ms_based_modifier, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [335953] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11089), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(14010), 1, sym_identifier, - ACTIONS(13283), 1, + ACTIONS(14168), 1, anon_sym_requires, - ACTIONS(13410), 1, + ACTIONS(14324), 1, anon_sym_LPAREN2, - STATE(2638), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(4858), 1, sym__splice_specialization_specifier, - STATE(8045), 1, + STATE(8995), 1, sym_lambda_capture_specifier, - STATE(8687), 1, + STATE(9745), 1, sym__scope_resolution, - ACTIONS(13455), 2, + ACTIONS(14376), 2, sym_true, sym_false, - STATE(2678), 2, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5166), 8, + STATE(5586), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694900,44 +769629,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290644] = 17, + [336016] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(14378), 1, sym_identifier, - ACTIONS(13302), 1, - anon_sym_requires, - ACTIONS(13439), 1, + ACTIONS(14380), 1, anon_sym_LPAREN2, - STATE(2605), 1, + ACTIONS(14382), 1, + anon_sym_COLON_COLON, + ACTIONS(14386), 1, + anon_sym_requires, + ACTIONS(14388), 1, + anon_sym_LBRACK_COLON, + STATE(8868), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(8970), 1, sym__splice_specialization_specifier, - STATE(8024), 1, + STATE(9010), 1, sym_lambda_capture_specifier, - STATE(8702), 1, + STATE(9833), 1, sym__scope_resolution, - ACTIONS(13300), 2, + ACTIONS(14384), 2, sym_true, sym_false, - STATE(2661), 2, + STATE(8978), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5138), 8, + STATE(8993), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694946,44 +769675,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290707] = 17, + [336079] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(14378), 1, sym_identifier, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(14380), 1, anon_sym_LPAREN2, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + ACTIONS(14382), 1, + anon_sym_COLON_COLON, + ACTIONS(14386), 1, + anon_sym_requires, + ACTIONS(14388), 1, + anon_sym_LBRACK_COLON, + STATE(8868), 1, sym_splice_specifier, - STATE(8001), 1, + STATE(8970), 1, + sym__splice_specialization_specifier, + STATE(9010), 1, sym_lambda_capture_specifier, - STATE(8707), 1, + STATE(9833), 1, sym__scope_resolution, - ACTIONS(13457), 2, + ACTIONS(14390), 2, sym_true, sym_false, - STATE(3728), 2, + STATE(8978), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6282), 8, + STATE(8990), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694992,44 +769721,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290770] = 17, + [336142] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11111), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(14010), 1, sym_identifier, - ACTIONS(13313), 1, + ACTIONS(14168), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(14324), 1, anon_sym_LPAREN2, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(8001), 1, + STATE(4858), 1, + sym__splice_specialization_specifier, + STATE(8995), 1, sym_lambda_capture_specifier, - STATE(8707), 1, + STATE(9745), 1, sym__scope_resolution, - ACTIONS(13459), 2, + ACTIONS(14392), 2, sym_true, sym_false, - STATE(3728), 2, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5245), 8, + STATE(5784), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695038,44 +769767,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290833] = 17, + [336205] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, - sym_identifier, - ACTIONS(13283), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14142), 1, anon_sym_requires, - ACTIONS(13410), 1, + ACTIONS(14249), 1, anon_sym_LPAREN2, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8045), 1, + STATE(9044), 1, sym_lambda_capture_specifier, - STATE(8687), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9832), 1, sym__scope_resolution, - ACTIONS(13461), 2, + ACTIONS(14394), 2, sym_true, sym_false, - STATE(2678), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5252), 8, + STATE(10539), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695084,91 +769813,78 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290896] = 18, + [336268] = 5, 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(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, - ACTIONS(7791), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(8603), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7361), 3, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [290961] = 17, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(14396), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 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, + [336307] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(14378), 1, sym_identifier, - ACTIONS(13294), 1, - anon_sym_requires, - ACTIONS(13437), 1, + ACTIONS(14380), 1, anon_sym_LPAREN2, - STATE(2547), 1, + ACTIONS(14382), 1, + anon_sym_COLON_COLON, + ACTIONS(14386), 1, + anon_sym_requires, + ACTIONS(14388), 1, + anon_sym_LBRACK_COLON, + STATE(8868), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(8970), 1, sym__splice_specialization_specifier, - STATE(8041), 1, + STATE(9010), 1, sym_lambda_capture_specifier, - STATE(8682), 1, + STATE(9833), 1, sym__scope_resolution, - ACTIONS(13463), 2, + ACTIONS(14399), 2, sym_true, sym_false, - STATE(2615), 2, + STATE(8978), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(4936), 8, + STATE(9020), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695177,91 +769893,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291024] = 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(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, - ACTIONS(7966), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [291089] = 17, + [336370] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1860), 1, anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13978), 1, + sym_identifier, + ACTIONS(14142), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(14249), 1, anon_sym_LPAREN2, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(8052), 1, - sym_lambda_capture_specifier, - STATE(8222), 1, + STATE(6696), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(9051), 1, + sym_lambda_capture_specifier, + STATE(9846), 1, sym__scope_resolution, - ACTIONS(13465), 2, + ACTIONS(14257), 2, sym_true, sym_false, - STATE(3790), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(9398), 8, + STATE(5600), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695270,8663 +769939,9130 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291152] = 17, + [336433] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3852), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11105), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(7378), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11617), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13953), 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(2255), 1, sym_splice_specifier, - STATE(8001), 1, - sym_lambda_capture_specifier, - STATE(8738), 1, + STATE(2267), 1, + sym_field_declaration_list, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2310), 1, + sym__class_declaration_item, + STATE(9811), 1, sym__scope_resolution, - ACTIONS(13311), 2, - sym_true, - sym_false, - STATE(3060), 2, + STATE(10811), 1, + sym_virtual_specifier, + STATE(11701), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(2199), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2281), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 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, - [291215] = 18, + [336503] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(13108), 1, - anon_sym___attribute__, - ACTIONS(13111), 1, - anon_sym___attribute, - STATE(8374), 1, - sym_trailing_return_type, - STATE(8450), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(9572), 1, + anon_sym_LBRACE, + ACTIONS(11663), 1, + anon_sym_COLON_COLON, + ACTIONS(13988), 1, + sym_identifier, + STATE(4129), 1, + sym_splice_specifier, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4406), 1, + sym_field_declaration_list, + STATE(4458), 1, + sym__class_declaration_item, + STATE(9761), 1, + sym__scope_resolution, + STATE(10792), 1, + sym_virtual_specifier, + STATE(11817), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(3772), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 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), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [291280] = 17, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [336573] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(3300), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11081), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9572), 1, + anon_sym_LBRACE, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13988), 1, sym_identifier, - ACTIONS(13352), 1, - anon_sym_requires, - ACTIONS(13467), 1, - anon_sym_LPAREN2, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(4263), 1, + STATE(4129), 1, sym_splice_specifier, - STATE(8009), 1, - sym_lambda_capture_specifier, - STATE(8675), 1, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4406), 1, + sym_field_declaration_list, + STATE(4529), 1, + sym__class_declaration_item, + STATE(9761), 1, sym__scope_resolution, - ACTIONS(13350), 2, - sym_true, - sym_false, - STATE(3728), 2, + STATE(10792), 1, + sym_virtual_specifier, + STATE(11817), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3772), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4316), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 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, - [291343] = 17, + [336643] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3300), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11059), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9572), 1, + anon_sym_LBRACE, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13988), 1, sym_identifier, - ACTIONS(13360), 1, - anon_sym_requires, - ACTIONS(13447), 1, - anon_sym_LPAREN2, - STATE(4272), 1, + STATE(4129), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(8047), 1, - sym_lambda_capture_specifier, - STATE(8676), 1, + STATE(4406), 1, + sym_field_declaration_list, + STATE(4459), 1, + sym__class_declaration_item, + STATE(9761), 1, sym__scope_resolution, - ACTIONS(13469), 2, - sym_true, - sym_false, - STATE(4296), 2, + STATE(10792), 1, + sym_virtual_specifier, + STATE(11817), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3772), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4316), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8746), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6580), 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, - [291406] = 17, + [336713] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(13423), 1, - anon_sym_LPAREN2, - ACTIONS(13429), 1, - anon_sym_requires, - ACTIONS(13471), 1, - sym_identifier, - ACTIONS(13473), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9572), 1, + anon_sym_LBRACE, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(13477), 1, - anon_sym_LBRACK_COLON, - STATE(3389), 1, + ACTIONS(13988), 1, + sym_identifier, + STATE(4129), 1, sym_splice_specifier, - STATE(3699), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(8008), 1, - sym_lambda_capture_specifier, - STATE(8746), 1, + STATE(4406), 1, + sym_field_declaration_list, + STATE(4509), 1, + sym__class_declaration_item, + STATE(9761), 1, sym__scope_resolution, - ACTIONS(13475), 2, - sym_true, - sym_false, - STATE(3676), 2, + STATE(10792), 1, + sym_virtual_specifier, + STATE(11817), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3772), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4316), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3622), 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, - [291469] = 17, + [336783] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(13423), 1, - anon_sym_LPAREN2, - ACTIONS(13429), 1, - anon_sym_requires, - ACTIONS(13471), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, sym_identifier, - ACTIONS(13473), 1, + ACTIONS(13980), 1, anon_sym_COLON_COLON, - ACTIONS(13477), 1, - anon_sym_LBRACK_COLON, - STATE(3389), 1, - sym_splice_specifier, - STATE(3699), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8008), 1, - sym_lambda_capture_specifier, - STATE(8746), 1, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4304), 1, + sym__class_declaration_item, + STATE(4349), 1, + sym_splice_specifier, + STATE(9805), 1, sym__scope_resolution, - ACTIONS(13445), 2, - sym_true, - sym_false, - STATE(3676), 2, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(7016), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8879), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3038), 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, - [291532] = 17, + [336853] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3161), 1, anon_sym_LBRACK_COLON, - ACTIONS(13125), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10912), 1, + anon_sym_LBRACE, + ACTIONS(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(13990), 1, sym_identifier, - ACTIONS(13479), 1, - anon_sym_LPAREN2, - ACTIONS(13483), 1, - anon_sym_requires, - STATE(4802), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(5034), 1, sym__splice_specialization_specifier, - STATE(8039), 1, - sym_lambda_capture_specifier, - STATE(8757), 1, + STATE(5858), 1, + sym_field_declaration_list, + STATE(6680), 1, + sym__class_declaration_item, + STATE(9816), 1, sym__scope_resolution, - ACTIONS(13481), 2, - sym_true, - sym_false, - STATE(5423), 2, + STATE(10742), 1, + sym_virtual_specifier, + STATE(11429), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(4830), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5039), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8750), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8049), 8, + [336923] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3161), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10912), 1, + anon_sym_LBRACE, + ACTIONS(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(13990), 1, + sym_identifier, + STATE(4986), 1, + sym_splice_specifier, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(5858), 1, + sym_field_declaration_list, + STATE(6685), 1, + sym__class_declaration_item, + STATE(9816), 1, + sym__scope_resolution, + STATE(10742), 1, + sym_virtual_specifier, + STATE(11429), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(4830), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [291595] = 18, + STATE(5039), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [336993] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3161), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 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, + ACTIONS(10912), 1, + anon_sym_LBRACE, + ACTIONS(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(13990), 1, + sym_identifier, + STATE(4986), 1, + sym_splice_specifier, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(5858), 1, + sym_field_declaration_list, + STATE(6711), 1, + sym__class_declaration_item, + STATE(9816), 1, + sym__scope_resolution, + STATE(10742), 1, + sym_virtual_specifier, + STATE(11429), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(4830), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5039), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 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, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [337063] = 21, 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, + ACTIONS(3300), 1, anon_sym_LBRACK_COLON, - ACTIONS(5460), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9572), 1, + anon_sym_LBRACE, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(13488), 1, + ACTIONS(13988), 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, + STATE(4129), 1, + sym_splice_specifier, + STATE(4309), 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, + STATE(4406), 1, + sym_field_declaration_list, + STATE(4531), 1, + sym__class_declaration_item, + STATE(9761), 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, + STATE(10792), 1, + sym_virtual_specifier, + STATE(11817), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3772), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4316), 2, + sym_template_type, sym_splice_type_specifier, + STATE(8744), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, sym_splice_expression, - [291741] = 17, + [337133] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3161), 1, anon_sym_LBRACK_COLON, - ACTIONS(13125), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10912), 1, + anon_sym_LBRACE, + ACTIONS(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(13990), 1, sym_identifier, - ACTIONS(13479), 1, - anon_sym_LPAREN2, - ACTIONS(13483), 1, - anon_sym_requires, - STATE(4802), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(5034), 1, sym__splice_specialization_specifier, - STATE(8039), 1, - sym_lambda_capture_specifier, - STATE(8757), 1, + STATE(5858), 1, + sym_field_declaration_list, + STATE(6652), 1, + sym__class_declaration_item, + STATE(9816), 1, sym__scope_resolution, - ACTIONS(13492), 2, - sym_true, - sym_false, - STATE(5423), 2, + STATE(10742), 1, + sym_virtual_specifier, + STATE(11429), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(4830), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5039), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8020), 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, - [291804] = 26, + [337203] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(8938), 1, + anon_sym_COLON_COLON, + ACTIONS(9109), 1, anon_sym_STAR, - ACTIONS(13494), 1, + ACTIONS(14401), 1, sym_identifier, - ACTIONS(13496), 1, - anon_sym_TILDE, - ACTIONS(13498), 1, - anon_sym_COLON_COLON, - ACTIONS(13500), 1, + ACTIONS(14403), 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, + STATE(3495), 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, + STATE(4358), 1, sym_template_function, - STATE(4016), 1, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, sym_operator_name, - STATE(4018), 1, + STATE(4420), 1, sym_dependent_identifier, - STATE(7779), 1, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8753), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(9442), 1, - sym_operator_cast, - STATE(9637), 1, - sym_qualified_operator_cast_identifier, - STATE(11037), 1, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(12437), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [291885] = 17, + [337277] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(4128), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11059), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13994), 1, sym_identifier, - ACTIONS(13360), 1, - anon_sym_requires, - ACTIONS(13447), 1, - anon_sym_LPAREN2, - STATE(4272), 1, + STATE(2836), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(2890), 1, sym__splice_specialization_specifier, - STATE(8047), 1, - sym_lambda_capture_specifier, - STATE(8676), 1, + STATE(2970), 1, + sym_field_declaration_list, + STATE(3353), 1, + sym__class_declaration_item, + STATE(9817), 1, sym__scope_resolution, - ACTIONS(13358), 2, - sym_true, - sym_false, - STATE(4296), 2, + STATE(10632), 1, + sym_virtual_specifier, + STATE(11620), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(2559), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2876), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8756), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 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, - [291948] = 17, + [337347] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(4128), 1, anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13994), 1, sym_identifier, - ACTIONS(13360), 1, - anon_sym_requires, - ACTIONS(13447), 1, - anon_sym_LPAREN2, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(7326), 1, + STATE(2836), 1, sym_splice_specifier, - STATE(8047), 1, - sym_lambda_capture_specifier, - STATE(8745), 1, + STATE(2890), 1, + sym__splice_specialization_specifier, + STATE(2970), 1, + sym_field_declaration_list, + STATE(3358), 1, + sym__class_declaration_item, + STATE(9817), 1, sym__scope_resolution, - ACTIONS(13504), 2, - sym_true, - sym_false, - STATE(4296), 2, + STATE(10632), 1, + sym_virtual_specifier, + STATE(11620), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(2559), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2876), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8765), 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, - [292011] = 17, + [337417] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(4128), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, - anon_sym_LPAREN2, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8052), 1, - sym_lambda_capture_specifier, - STATE(8222), 1, + ACTIONS(13994), 1, + sym_identifier, + STATE(2836), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(2890), 1, + sym__splice_specialization_specifier, + STATE(2970), 1, + sym_field_declaration_list, + STATE(3370), 1, + sym__class_declaration_item, + STATE(9817), 1, sym__scope_resolution, - ACTIONS(13459), 2, - sym_true, - sym_false, - STATE(3790), 2, + STATE(10632), 1, + sym_virtual_specifier, + STATE(11620), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(2559), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2876), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, 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, + [337487] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(4128), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11081), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13994), 1, sym_identifier, - ACTIONS(13352), 1, - anon_sym_requires, - ACTIONS(13467), 1, - anon_sym_LPAREN2, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(4263), 1, + STATE(2836), 1, sym_splice_specifier, - STATE(8009), 1, - sym_lambda_capture_specifier, - STATE(8675), 1, + STATE(2890), 1, + sym__splice_specialization_specifier, + STATE(2970), 1, + sym_field_declaration_list, + STATE(3374), 1, + sym__class_declaration_item, + STATE(9817), 1, sym__scope_resolution, - ACTIONS(13506), 2, - sym_true, - sym_false, - STATE(3728), 2, + STATE(10632), 1, + sym_virtual_specifier, + STATE(11620), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(2559), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2876), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8758), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6614), 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, - [292137] = 26, + [337557] = 21, 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(3458), 1, - anon_sym_COLON_COLON, - ACTIONS(5164), 1, + ACTIONS(4128), 1, anon_sym_LBRACK_COLON, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(13508), 1, - sym_identifier, - ACTIONS(13510), 1, + ACTIONS(5194), 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(7376), 1, + anon_sym_COLON, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11671), 1, + anon_sym_COLON_COLON, + ACTIONS(13994), 1, + sym_identifier, + STATE(2836), 1, + sym_splice_specifier, + STATE(2890), 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(7784), 1, + STATE(2970), 1, + sym_field_declaration_list, + STATE(3384), 1, + sym__class_declaration_item, + STATE(9817), 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, + STATE(10632), 1, + sym_virtual_specifier, + STATE(11620), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(2559), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2876), 2, + sym_template_type, sym_splice_type_specifier, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, sym_splice_expression, - [292218] = 17, + [337627] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, - anon_sym_LPAREN2, - ACTIONS(13415), 1, - sym_identifier, - ACTIONS(13417), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - STATE(3028), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, + sym_identifier, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7260), 1, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4181), 1, + sym__class_declaration_item, + STATE(4349), 1, sym_splice_specifier, - STATE(8001), 1, - sym_lambda_capture_specifier, - STATE(8685), 1, + STATE(9818), 1, sym__scope_resolution, - ACTIONS(13512), 2, - sym_true, - sym_false, - STATE(3060), 2, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(3791), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8768), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8569), 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, - [292281] = 17, + [337697] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13423), 1, - anon_sym_LPAREN2, - ACTIONS(13425), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9242), 1, + anon_sym_LBRACE, + ACTIONS(13627), 1, anon_sym_COLON_COLON, - ACTIONS(13429), 1, - anon_sym_requires, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8008), 1, - sym_lambda_capture_specifier, - STATE(8222), 1, + ACTIONS(13984), 1, + sym_identifier, + STATE(3490), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(4011), 1, + sym_field_declaration_list, + STATE(4050), 1, + sym__class_declaration_item, + STATE(9840), 1, sym__scope_resolution, - ACTIONS(13514), 2, - sym_true, - sym_false, - STATE(3790), 2, + STATE(10626), 1, + sym_virtual_specifier, + STATE(11559), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3394), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3705), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8814), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8719), 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, - [292344] = 17, + [337767] = 21, 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, + ACTIONS(4948), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11010), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_LBRACE, + ACTIONS(13428), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13996), 1, sym_identifier, - ACTIONS(13294), 1, - anon_sym_requires, - ACTIONS(13437), 1, - anon_sym_LPAREN2, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(8041), 1, - sym_lambda_capture_specifier, - STATE(8682), 1, + STATE(6979), 1, + sym_splice_specifier, + STATE(7185), 1, + sym__class_declaration_item, + STATE(7401), 1, + sym_field_declaration_list, + STATE(9815), 1, sym__scope_resolution, - ACTIONS(13516), 2, - sym_true, - sym_false, - STATE(2615), 2, + STATE(10720), 1, + sym_virtual_specifier, + STATE(11760), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(6888), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8763), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(4946), 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, - [292407] = 17, + [337837] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(4948), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, - anon_sym_LPAREN2, - ACTIONS(13415), 1, - sym_identifier, - ACTIONS(13417), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_LBRACE, + ACTIONS(13428), 1, anon_sym_COLON_COLON, - STATE(3028), 1, + ACTIONS(13996), 1, + sym_identifier, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(7260), 1, + STATE(6979), 1, sym_splice_specifier, - STATE(8001), 1, - sym_lambda_capture_specifier, - STATE(8685), 1, + STATE(7107), 1, + sym__class_declaration_item, + STATE(7401), 1, + sym_field_declaration_list, + STATE(9815), 1, sym__scope_resolution, - ACTIONS(13459), 2, - sym_true, - sym_false, - STATE(3060), 2, + STATE(10720), 1, + sym_virtual_specifier, + STATE(11760), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(6888), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, 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, - [292470] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7528), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7525), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(10109), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6999), 17, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [292511] = 17, + [337907] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(4948), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_LBRACE, + ACTIONS(13428), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13996), 1, sym_identifier, - ACTIONS(13323), 1, - anon_sym_requires, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(8030), 1, - sym_lambda_capture_specifier, - STATE(8763), 1, + STATE(6979), 1, + sym_splice_specifier, + STATE(7125), 1, + sym__class_declaration_item, + STATE(7401), 1, + sym_field_declaration_list, + STATE(9815), 1, sym__scope_resolution, - ACTIONS(13518), 2, - sym_true, - sym_false, - STATE(2147), 2, + STATE(10720), 1, + sym_virtual_specifier, + STATE(11760), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(6888), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 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, + [337977] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(4948), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_LBRACE, + ACTIONS(13428), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13996), 1, sym_identifier, - ACTIONS(13323), 1, - anon_sym_requires, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(8030), 1, - sym_lambda_capture_specifier, - STATE(8763), 1, + STATE(6979), 1, + sym_splice_specifier, + STATE(7184), 1, + sym__class_declaration_item, + STATE(7401), 1, + sym_field_declaration_list, + STATE(9815), 1, sym__scope_resolution, - ACTIONS(13520), 2, - sym_true, - sym_false, - STATE(2147), 2, + STATE(10720), 1, + sym_virtual_specifier, + STATE(11760), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(6888), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8765), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 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, + [338047] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(4948), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11105), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_LBRACE, + ACTIONS(13428), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13996), 1, sym_identifier, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, - anon_sym_LPAREN2, - STATE(3028), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(3800), 1, + STATE(6979), 1, sym_splice_specifier, - STATE(8001), 1, - sym_lambda_capture_specifier, - STATE(8738), 1, + STATE(7164), 1, + sym__class_declaration_item, + STATE(7401), 1, + sym_field_declaration_list, + STATE(9815), 1, sym__scope_resolution, - ACTIONS(13522), 2, - sym_true, - sym_false, - STATE(3060), 2, + STATE(10720), 1, + sym_virtual_specifier, + STATE(11760), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(6190), 8, + STATE(6888), 2, sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, sym_qualified_type_identifier, - [292700] = 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(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, + STATE(8893), 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), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [292765] = 18, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [338117] = 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4304), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 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, + ACTIONS(9690), 1, + anon_sym_LBRACE, + ACTIONS(11679), 1, + anon_sym_COLON_COLON, + ACTIONS(14006), 1, + sym_identifier, + STATE(4119), 1, + sym_splice_specifier, + STATE(4182), 1, + sym__splice_specialization_specifier, + STATE(4366), 1, + sym_field_declaration_list, + STATE(4701), 1, + sym__class_declaration_item, + STATE(9844), 1, + sym__scope_resolution, + STATE(10775), 1, + sym_virtual_specifier, + STATE(11821), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(3818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4328), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8769), 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), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [292830] = 17, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [338187] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(4304), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11073), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9690), 1, + anon_sym_LBRACE, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(14006), 1, sym_identifier, - ACTIONS(13272), 1, - anon_sym_requires, - ACTIONS(13451), 1, - anon_sym_LPAREN2, - STATE(2742), 1, + STATE(4119), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(4182), 1, sym__splice_specialization_specifier, - STATE(8042), 1, - sym_lambda_capture_specifier, - STATE(8686), 1, + STATE(4366), 1, + sym_field_declaration_list, + STATE(4723), 1, + sym__class_declaration_item, + STATE(9844), 1, sym__scope_resolution, - ACTIONS(13524), 2, - sym_true, - sym_false, - STATE(2934), 2, + STATE(10775), 1, + sym_virtual_specifier, + STATE(11821), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4328), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5606), 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, - [292893] = 17, + [338257] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11073), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, sym_identifier, - ACTIONS(13272), 1, - anon_sym_requires, - ACTIONS(13451), 1, - anon_sym_LPAREN2, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8042), 1, - sym_lambda_capture_specifier, - STATE(8686), 1, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4298), 1, + sym__class_declaration_item, + STATE(4349), 1, + sym_splice_specifier, + STATE(9818), 1, sym__scope_resolution, - ACTIONS(13526), 2, - sym_true, - sym_false, - STATE(2934), 2, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(3791), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5608), 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, - [292956] = 17, + [338327] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(4304), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9690), 1, + anon_sym_LBRACE, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - ACTIONS(13168), 1, + ACTIONS(14006), 1, sym_identifier, - ACTIONS(13402), 1, - anon_sym_LPAREN2, - ACTIONS(13406), 1, - anon_sym_requires, - STATE(6581), 1, + STATE(4119), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(4182), 1, sym__splice_specialization_specifier, - STATE(8060), 1, - sym_lambda_capture_specifier, - STATE(8700), 1, + STATE(4366), 1, + sym_field_declaration_list, + STATE(4741), 1, + sym__class_declaration_item, + STATE(9844), 1, sym__scope_resolution, - ACTIONS(13528), 2, - sym_true, - sym_false, - STATE(7122), 2, + STATE(10775), 1, + sym_virtual_specifier, + STATE(11821), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4328), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8425), 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, - [293019] = 17, + [338397] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(4304), 1, anon_sym_LBRACK_COLON, - ACTIONS(13125), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9690), 1, + anon_sym_LBRACE, + ACTIONS(11679), 1, + anon_sym_COLON_COLON, + ACTIONS(14006), 1, sym_identifier, - ACTIONS(13479), 1, - anon_sym_LPAREN2, - ACTIONS(13483), 1, - anon_sym_requires, - STATE(4802), 1, + STATE(4119), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(4182), 1, sym__splice_specialization_specifier, - STATE(8039), 1, - sym_lambda_capture_specifier, - STATE(8757), 1, + STATE(4366), 1, + sym_field_declaration_list, + STATE(4792), 1, + sym__class_declaration_item, + STATE(9844), 1, sym__scope_resolution, - ACTIONS(13530), 2, - sym_true, - sym_false, - STATE(5423), 2, + STATE(10775), 1, + sym_virtual_specifier, + STATE(11821), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4328), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8771), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8034), 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, - [293082] = 18, + [338467] = 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(2422), 1, + anon_sym_decltype, + ACTIONS(4304), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 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, + ACTIONS(9690), 1, + anon_sym_LBRACE, + ACTIONS(11679), 1, + anon_sym_COLON_COLON, + ACTIONS(14006), 1, + sym_identifier, + STATE(4119), 1, + sym_splice_specifier, + STATE(4182), 1, + sym__splice_specialization_specifier, + STATE(4366), 1, + sym_field_declaration_list, + STATE(4706), 1, + sym__class_declaration_item, + STATE(9844), 1, + sym__scope_resolution, + STATE(10775), 1, + sym_virtual_specifier, + STATE(11821), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(3818), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4328), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 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), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [293147] = 18, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [338537] = 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(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - ACTIONS(13485), 1, - anon_sym_requires, - STATE(8402), 1, - sym_trailing_return_type, - STATE(8632), 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(9630), 1, + anon_sym_LBRACE, + ACTIONS(14019), 1, + sym_identifier, + ACTIONS(14021), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4321), 1, + sym__class_declaration_item, + STATE(9758), 1, + sym__scope_resolution, + STATE(9983), 1, + sym_splice_specifier, + STATE(10511), 1, + sym_field_declaration_list, + STATE(10779), 1, + sym_virtual_specifier, + STATE(11806), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 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, - [293212] = 17, + STATE(9951), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [338607] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(13423), 1, - anon_sym_LPAREN2, - ACTIONS(13429), 1, - anon_sym_requires, - ACTIONS(13471), 1, - sym_identifier, - ACTIONS(13473), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9242), 1, + anon_sym_LBRACE, + ACTIONS(13627), 1, anon_sym_COLON_COLON, - ACTIONS(13477), 1, - anon_sym_LBRACK_COLON, - STATE(3389), 1, + ACTIONS(13984), 1, + sym_identifier, + STATE(3490), 1, sym_splice_specifier, - STATE(3699), 1, + STATE(3723), 1, sym__splice_specialization_specifier, - STATE(8008), 1, - sym_lambda_capture_specifier, - STATE(8746), 1, + STATE(4011), 1, + sym_field_declaration_list, + STATE(4121), 1, + sym__class_declaration_item, + STATE(9840), 1, sym__scope_resolution, - ACTIONS(13532), 2, - sym_true, - sym_false, - STATE(3676), 2, + STATE(10626), 1, + sym_virtual_specifier, + STATE(11559), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3394), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3705), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3689), 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, - [293275] = 17, + [338677] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11105), 1, + ACTIONS(6002), 1, + anon_sym_STAR, + ACTIONS(9257), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(14401), 1, sym_identifier, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, - anon_sym_LPAREN2, - STATE(3028), 1, + ACTIONS(14403), 1, + anon_sym_template, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(8001), 1, - sym_lambda_capture_specifier, - STATE(8738), 1, + STATE(4358), 1, + sym_template_function, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, + sym_operator_name, + STATE(4420), 1, + sym_dependent_identifier, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8774), 1, sym__scope_resolution, - ACTIONS(13459), 2, - sym_true, - sym_false, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, + STATE(9224), 1, + sym_splice_specifier, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(12437), 1, + sym_ms_based_modifier, + STATE(13053), 5, sym_decltype, + sym_template_type, 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, - [293338] = 17, + [338751] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11081), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10822), 1, + anon_sym_LBRACE, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(14010), 1, sym_identifier, - ACTIONS(13352), 1, - anon_sym_requires, - ACTIONS(13467), 1, - anon_sym_LPAREN2, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(4263), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(8009), 1, - sym_lambda_capture_specifier, - STATE(8675), 1, + STATE(4858), 1, + sym__splice_specialization_specifier, + STATE(5378), 1, + sym_field_declaration_list, + STATE(6294), 1, + sym__class_declaration_item, + STATE(9745), 1, sym__scope_resolution, - ACTIONS(13534), 2, - sym_true, - sym_false, - STATE(3728), 2, + STATE(10745), 1, + sym_virtual_specifier, + STATE(11625), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(4667), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8778), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6677), 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, - [293401] = 17, + [338821] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(11059), 1, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10822), 1, + anon_sym_LBRACE, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(14010), 1, sym_identifier, - ACTIONS(13360), 1, - anon_sym_requires, - ACTIONS(13447), 1, - anon_sym_LPAREN2, - STATE(4272), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(4858), 1, sym__splice_specialization_specifier, - STATE(8047), 1, - sym_lambda_capture_specifier, - STATE(8676), 1, + STATE(5378), 1, + sym_field_declaration_list, + STATE(6308), 1, + sym__class_declaration_item, + STATE(9745), 1, sym__scope_resolution, - ACTIONS(13453), 2, - sym_true, - sym_false, - STATE(4296), 2, + STATE(10745), 1, + sym_virtual_specifier, + STATE(11625), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(4667), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6462), 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, - [293464] = 21, + [338891] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(13450), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13978), 1, sym_identifier, - STATE(3028), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(3240), 1, + STATE(3867), 1, sym__class_declaration_item, - STATE(3800), 1, + STATE(6696), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(6972), 1, sym_field_declaration_list, - STATE(8738), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10754), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11788), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(6571), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8838), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [338961] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3010), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10822), 1, + anon_sym_LBRACE, + ACTIONS(13494), 1, + anon_sym_COLON_COLON, + ACTIONS(14010), 1, + sym_identifier, + STATE(4714), 1, + sym_splice_specifier, + STATE(4858), 1, + sym__splice_specialization_specifier, + STATE(5378), 1, + sym_field_declaration_list, + STATE(6210), 1, + sym__class_declaration_item, + STATE(9745), 1, + sym__scope_resolution, + STATE(10745), 1, + sym_virtual_specifier, + STATE(11625), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(4667), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(4874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293534] = 21, + [339031] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8297), 1, + ACTIONS(10822), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(14010), 1, sym_identifier, - STATE(2605), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(4858), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(5378), 1, sym_field_declaration_list, - STATE(3195), 1, + STATE(6220), 1, sym__class_declaration_item, - STATE(8702), 1, + STATE(9745), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(10745), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(11625), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(4667), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(7808), 2, + STATE(8780), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293604] = 21, + [339101] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3010), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8297), 1, + ACTIONS(10822), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(14010), 1, sym_identifier, - STATE(2605), 1, + STATE(4714), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(4858), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(5378), 1, sym_field_declaration_list, - STATE(3229), 1, + STATE(6330), 1, sym__class_declaration_item, - STATE(8702), 1, + STATE(9745), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(10745), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(11625), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(4667), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293674] = 21, + [339171] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(9351), 1, + sym_ms_call_modifier, + STATE(10208), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [339229] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8297), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, sym_identifier, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(3117), 1, sym_field_declaration_list, - STATE(3106), 1, + STATE(3153), 1, sym__class_declaration_item, - STATE(8702), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(3140), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8789), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293744] = 21, + [339299] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(4383), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8297), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11687), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(14012), 1, sym_identifier, - STATE(2605), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(2742), 1, sym_field_declaration_list, - STATE(3141), 1, + STATE(2995), 1, sym__class_declaration_item, - STATE(8702), 1, + STATE(9746), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(10564), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(11510), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(2451), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(2700), 2, sym_template_type, sym_splice_type_specifier, - STATE(7810), 2, + STATE(8786), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293814] = 21, + [339369] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(4383), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8297), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11687), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(14012), 1, sym_identifier, - STATE(2605), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(2742), 1, sym_field_declaration_list, - STATE(3228), 1, + STATE(2998), 1, sym__class_declaration_item, - STATE(8702), 1, + STATE(9746), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(10564), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(11510), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(2451), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(2700), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293884] = 21, + [339439] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - ACTIONS(13154), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4836), 1, + STATE(4321), 1, sym__class_declaration_item, - STATE(8710), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(6256), 2, + STATE(3791), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293954] = 21, + [339509] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(4383), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11687), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + ACTIONS(14012), 1, + sym_identifier, + STATE(2639), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2742), 1, sym_field_declaration_list, - STATE(4862), 1, + STATE(3005), 1, sym__class_declaration_item, - STATE(8710), 1, + STATE(9746), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10564), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11510), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, + STATE(2451), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7881), 2, + STATE(2700), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294024] = 21, + [339579] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(4383), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(7243), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11038), 1, + ACTIONS(11687), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(14012), 1, sym_identifier, - STATE(2104), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(2742), 1, sym_field_declaration_list, - STATE(2183), 1, + STATE(3008), 1, sym__class_declaration_item, - STATE(8763), 1, + STATE(9746), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(10564), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(11510), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2075), 2, + STATE(2451), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(2700), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8788), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294094] = 21, + [339649] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(4383), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(7243), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11038), 1, + ACTIONS(11687), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(14012), 1, sym_identifier, - STATE(2104), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(2742), 1, sym_field_declaration_list, - STATE(2202), 1, + STATE(3016), 1, sym__class_declaration_item, - STATE(8763), 1, + STATE(9746), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(10564), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(11510), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2075), 2, + STATE(2451), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(2700), 2, sym_template_type, sym_splice_type_specifier, - STATE(7815), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294164] = 21, + [339719] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11038), 1, + ACTIONS(8718), 1, + anon_sym_LBRACE, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(3117), 1, sym_field_declaration_list, - STATE(2205), 1, + STATE(3180), 1, sym__class_declaration_item, - STATE(8763), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2075), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(3140), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294234] = 21, + [339789] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(13450), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(13978), 1, + sym_identifier, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4836), 1, + STATE(3870), 1, sym__class_declaration_item, - STATE(8705), 1, - sym__scope_resolution, - STATE(9320), 1, + STATE(6696), 1, + sym_splice_specifier, + STATE(6972), 1, sym_field_declaration_list, - STATE(9556), 1, + STATE(9846), 1, + sym__scope_resolution, + STATE(10754), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(11788), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, + STATE(6571), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294304] = 21, + [339859] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3852), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(7378), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11617), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, + ACTIONS(13953), 1, + sym_identifier, + STATE(2255), 1, sym_splice_specifier, - STATE(4862), 1, + STATE(2267), 1, + sym_field_declaration_list, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2295), 1, sym__class_declaration_item, - STATE(8705), 1, + STATE(9811), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(10811), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(11701), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(2199), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2281), 2, sym_template_type, sym_splice_type_specifier, - STATE(7854), 2, + STATE(8822), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294374] = 21, + [339929] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(12873), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13945), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(7345), 1, + sym_splice_specifier, + STATE(7704), 1, sym_field_declaration_list, - STATE(4968), 1, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8039), 1, sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(9795), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10623), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11648), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(7244), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7824), 2, + STATE(7771), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8794), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294444] = 21, + [339999] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(12873), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13945), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(7345), 1, + sym_splice_specifier, + STATE(7704), 1, sym_field_declaration_list, - STATE(4984), 1, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8044), 1, sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(9795), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10623), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11648), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(7244), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7771), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294514] = 21, + [340069] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11010), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(12873), 1, + anon_sym_LBRACE, + ACTIONS(13945), 1, sym_identifier, - STATE(2547), 1, + STATE(7345), 1, sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(7704), 1, sym_field_declaration_list, - STATE(3058), 1, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8061), 1, sym__class_declaration_item, - STATE(8682), 1, + STATE(9795), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(10623), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(11648), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2389), 2, + STATE(7244), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2615), 2, + STATE(7771), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 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, + [340139] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11010), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(12873), 1, + anon_sym_LBRACE, + ACTIONS(13945), 1, sym_identifier, - STATE(2547), 1, + STATE(7345), 1, sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(7704), 1, sym_field_declaration_list, - STATE(3066), 1, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8067), 1, sym__class_declaration_item, - STATE(8682), 1, + STATE(9795), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(10623), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(11648), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2389), 2, + STATE(7244), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2615), 2, + STATE(7771), 2, sym_template_type, sym_splice_type_specifier, - STATE(7827), 2, + STATE(8796), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294712] = 21, + [340209] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(12873), 1, + anon_sym_LBRACE, + ACTIONS(13945), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3109), 1, - sym__class_declaration_item, - STATE(7481), 1, + STATE(7345), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(7704), 1, sym_field_declaration_list, - STATE(8691), 1, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(8077), 1, + sym__class_declaration_item, + STATE(9795), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(10623), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(11648), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7348), 2, + STATE(7244), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7834), 2, + STATE(7771), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294782] = 21, + [340279] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3078), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(10834), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13947), 1, sym_identifier, - STATE(3808), 1, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(5420), 1, sym_field_declaration_list, - STATE(4836), 1, + STATE(6250), 1, sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(9822), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10702), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11815), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(4697), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8799), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294852] = 21, + [340349] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3078), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(10834), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13947), 1, sym_identifier, - STATE(3808), 1, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(5420), 1, sym_field_declaration_list, - STATE(4862), 1, + STATE(6257), 1, sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(9822), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10702), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11815), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(4697), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7829), 2, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294922] = 21, + [340419] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3078), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(10834), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(13540), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13947), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3178), 1, - sym__class_declaration_item, - STATE(7481), 1, + STATE(4787), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5420), 1, sym_field_declaration_list, - STATE(8691), 1, + STATE(6278), 1, + sym__class_declaration_item, + STATE(9822), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(10702), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(11815), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7348), 2, + STATE(4697), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294992] = 21, + [340489] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11010), 1, + ACTIONS(10834), 1, + anon_sym_LBRACE, + ACTIONS(13540), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13947), 1, sym_identifier, - STATE(2547), 1, + STATE(4787), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(4831), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(5420), 1, sym_field_declaration_list, - STATE(2964), 1, + STATE(6283), 1, sym__class_declaration_item, - STATE(8682), 1, + STATE(9822), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(10702), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(11815), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2389), 2, + STATE(4697), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2615), 2, + STATE(4832), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8801), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295062] = 21, + [340559] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3078), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(10834), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13947), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4787), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5420), 1, sym_field_declaration_list, - STATE(4968), 1, + STATE(6342), 1, sym__class_declaration_item, - STATE(8716), 1, + STATE(9822), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10702), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11815), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(4697), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7880), 2, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295132] = 21, + [340629] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(6469), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4932), 1, + STATE(4304), 1, sym__class_declaration_item, - STATE(5157), 1, + STATE(4349), 1, sym_splice_specifier, - STATE(8756), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(3791), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(8785), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295202] = 21, + [340699] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3884), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11695), 1, + anon_sym_COLON_COLON, + ACTIONS(13949), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2640), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2685), 1, + sym__splice_specialization_specifier, + STATE(2719), 1, sym_field_declaration_list, - STATE(4932), 1, + STATE(3048), 1, sym__class_declaration_item, - STATE(8716), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10748), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11448), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(2443), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(2686), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8805), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295272] = 21, + [340769] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3884), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11695), 1, + anon_sym_COLON_COLON, + ACTIONS(13949), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2640), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2685), 1, + sym__splice_specialization_specifier, + STATE(2719), 1, sym_field_declaration_list, - STATE(4984), 1, + STATE(3051), 1, sym__class_declaration_item, - STATE(8716), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10748), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11448), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(2443), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(2686), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295342] = 12, + [340839] = 21, 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, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3884), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(8189), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [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, + ACTIONS(8597), 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, + ACTIONS(11695), 1, + anon_sym_COLON_COLON, + ACTIONS(13949), 1, + sym_identifier, + STATE(2640), 1, + sym_splice_specifier, + STATE(2685), 1, + sym__splice_specialization_specifier, + STATE(2719), 1, + sym_field_declaration_list, + STATE(3059), 1, + sym__class_declaration_item, + STATE(9759), 1, + sym__scope_resolution, + STATE(10748), 1, + sym_virtual_specifier, + STATE(11448), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(2443), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2686), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 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, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [340909] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3884), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13949), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3240), 1, - sym__class_declaration_item, - STATE(7481), 1, + STATE(2640), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(2685), 1, + sym__splice_specialization_specifier, + STATE(2719), 1, sym_field_declaration_list, - STATE(8691), 1, + STATE(3138), 1, + sym__class_declaration_item, + STATE(9759), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(10748), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(11448), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7348), 2, + STATE(2443), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(2686), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8807), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295528] = 21, + [340979] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3884), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13949), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3237), 1, - sym__class_declaration_item, - STATE(7481), 1, + STATE(2640), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(2685), 1, + sym__splice_specialization_specifier, + STATE(2719), 1, sym_field_declaration_list, - STATE(8691), 1, + STATE(3069), 1, + sym__class_declaration_item, + STATE(9759), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(10748), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(11448), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7348), 2, + STATE(2443), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7851), 2, + STATE(2686), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295598] = 21, + [341049] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3764), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + ACTIONS(13992), 1, + sym_identifier, + STATE(3037), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(3117), 1, sym_field_declaration_list, - STATE(4968), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3287), 1, sym__class_declaration_item, - STATE(8710), 1, + STATE(9763), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7811), 2, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8810), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295668] = 21, + [341119] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13992), 1, sym_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3037), 1, + sym_splice_specifier, + STATE(3117), 1, sym_field_declaration_list, - STATE(4529), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3294), 1, sym__class_declaration_item, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(9763), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3140), 2, sym_template_type, sym_splice_type_specifier, - STATE(7844), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295738] = 21, + [341189] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13992), 1, sym_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3037), 1, + sym_splice_specifier, + STATE(3117), 1, sym_field_declaration_list, - STATE(4543), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3291), 1, sym__class_declaration_item, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(9763), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3140), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295808] = 21, + [341259] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3764), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + ACTIONS(13992), 1, + sym_identifier, + STATE(3037), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(3117), 1, sym_field_declaration_list, - STATE(4984), 1, + STATE(3153), 1, sym__class_declaration_item, - STATE(8710), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(9763), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8813), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295878] = 18, + [341329] = 23, 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(11298), 1, - anon_sym_requires, - STATE(8726), 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), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [295942] = 21, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8882), 1, + anon_sym_COLON_COLON, + ACTIONS(9160), 1, + anon_sym_STAR, + ACTIONS(14405), 1, + sym_identifier, + ACTIONS(14407), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8812), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9524), 1, + sym_dependent_identifier, + STATE(9588), 1, + sym_pointer_type_declarator, + STATE(9589), 1, + sym_template_function, + STATE(9590), 1, + sym_destructor_name, + STATE(9594), 1, + sym_qualified_identifier, + STATE(9595), 1, + sym_operator_name, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(12869), 1, + sym_ms_based_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [341403] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13992), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3237), 1, - sym__class_declaration_item, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7260), 1, + STATE(3037), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(3117), 1, + sym_field_declaration_list, + STATE(3180), 1, + sym__class_declaration_item, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(9763), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7843), 2, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 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, + [341473] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9242), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, + ACTIONS(13627), 1, anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13984), 1, sym_identifier, - STATE(3028), 1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, sym__splice_specialization_specifier, - STATE(3225), 1, - sym__class_declaration_item, - STATE(3863), 1, + STATE(4011), 1, sym_field_declaration_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, + STATE(4177), 1, + sym__class_declaration_item, + STATE(9840), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10626), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11559), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(3394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296146] = 21, + [341543] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, sym_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3117), 1, sym_field_declaration_list, - STATE(4461), 1, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(3291), 1, sym__class_declaration_item, - STATE(7326), 1, + STATE(7849), 1, sym_splice_specifier, - STATE(8745), 1, + STATE(9836), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3140), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296216] = 21, + [341613] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(9242), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(13627), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13984), 1, sym_identifier, - STATE(4305), 1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4011), 1, sym_field_declaration_list, - STATE(4466), 1, + STATE(4128), 1, sym__class_declaration_item, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(9840), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10626), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11559), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(3394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3705), 2, sym_template_type, sym_splice_type_specifier, - STATE(7846), 2, + STATE(8817), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296286] = 21, + [341683] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(9242), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(13627), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13984), 1, sym_identifier, - STATE(4305), 1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4011), 1, sym_field_declaration_list, - STATE(4424), 1, + STATE(4155), 1, sym__class_declaration_item, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(9840), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10626), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11559), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(3394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3705), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296356] = 18, + [341753] = 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(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(8597), 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(9630), 1, + anon_sym_LBRACE, + ACTIONS(13957), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4181), 1, + sym__class_declaration_item, + STATE(4770), 1, + sym_splice_specifier, + STATE(9769), 1, + sym__scope_resolution, + STATE(10606), 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(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3791), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8824), 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(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [341823] = 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(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(8597), 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(9630), 1, + anon_sym_LBRACE, + ACTIONS(13957), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4249), 1, + sym__class_declaration_item, + STATE(4770), 1, + sym_splice_specifier, + STATE(9769), 1, + sym__scope_resolution, + STATE(10606), 1, + sym_virtual_specifier, + STATE(11525), 1, + sym_base_class_clause, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3791), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8893), 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(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [341893] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(11510), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(13998), 1, sym_identifier, - STATE(3028), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(3225), 1, + STATE(3867), 1, sym__class_declaration_item, - STATE(3800), 1, + STATE(8373), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(8624), 1, sym_field_declaration_list, - STATE(8738), 1, + STATE(9814), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10718), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11777), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(8311), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(8828), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296618] = 21, + [341963] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(11510), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(13998), 1, sym_identifier, - STATE(3028), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(3225), 1, + STATE(3870), 1, sym__class_declaration_item, - STATE(7481), 1, + STATE(8373), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(8624), 1, sym_field_declaration_list, - STATE(8691), 1, + STATE(9814), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(10718), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(11777), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(7348), 2, + STATE(8311), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296688] = 21, + [342033] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3852), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(7378), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11617), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13953), 1, sym_identifier, - STATE(4272), 1, + STATE(2255), 1, sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2267), 1, sym_field_declaration_list, - STATE(4529), 1, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2316), 1, sym__class_declaration_item, - STATE(8676), 1, + STATE(9811), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10811), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11701), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2199), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2281), 2, sym_template_type, sym_splice_type_specifier, - STATE(7855), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296758] = 21, + [342103] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(9255), 1, + sym_ms_call_modifier, + STATE(10275), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [342161] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13957), 1, sym_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4543), 1, + STATE(4298), 1, sym__class_declaration_item, - STATE(8676), 1, + STATE(4770), 1, + sym_splice_specifier, + STATE(9769), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(3791), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296828] = 21, + [342231] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, + ACTIONS(13957), 1, sym_identifier, - ACTIONS(13166), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4932), 1, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4304), 1, sym__class_declaration_item, - STATE(8705), 1, + STATE(4770), 1, + sym_splice_specifier, + STATE(9769), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, + STATE(3791), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(8829), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296898] = 21, + [342301] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3852), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(7378), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11617), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13953), 1, sym_identifier, - STATE(4272), 1, + STATE(2255), 1, sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2267), 1, sym_field_declaration_list, - STATE(4461), 1, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2320), 1, sym__class_declaration_item, - STATE(8676), 1, + STATE(9811), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10811), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11701), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2199), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2281), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8827), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296968] = 21, + [342371] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3852), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(7378), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11617), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13953), 1, sym_identifier, - STATE(4272), 1, + STATE(2255), 1, sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2267), 1, sym_field_declaration_list, - STATE(4466), 1, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(2330), 1, sym__class_declaration_item, - STATE(8676), 1, + STATE(9811), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10811), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11701), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2199), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2281), 2, sym_template_type, sym_splice_type_specifier, - STATE(7907), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297038] = 21, + [342441] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(10653), 1, + ACTIONS(11510), 1, anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(13998), 1, sym_identifier, - STATE(3028), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(3240), 1, + STATE(3908), 1, sym__class_declaration_item, - STATE(3863), 1, + STATE(8373), 1, + sym_splice_specifier, + STATE(8624), 1, sym_field_declaration_list, - STATE(7260), 1, + STATE(9814), 1, + sym__scope_resolution, + STATE(10718), 1, + sym_virtual_specifier, + STATE(11777), 1, + sym_base_class_clause, + ACTIONS(7380), 2, + anon_sym_final, + anon_sym_override, + STATE(3420), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8311), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [342511] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, + anon_sym_COLON, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(13957), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4092), 1, + sym_field_declaration_list, + STATE(4321), 1, + sym__class_declaration_item, + STATE(4770), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9769), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(3791), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297108] = 15, + [342581] = 23, 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(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8906), 1, + anon_sym_COLON_COLON, + ACTIONS(9175), 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, + ACTIONS(14405), 1, + sym_identifier, + ACTIONS(14407), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8830), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9524), 1, + sym_dependent_identifier, + STATE(9588), 1, sym_pointer_type_declarator, - STATE(8292), 1, - sym_ms_call_modifier, - STATE(9114), 1, - sym__type_declarator, - STATE(11156), 1, + STATE(9589), 1, + sym_template_function, + STATE(9590), 1, + sym_destructor_name, + STATE(9594), 1, + sym_qualified_identifier, + STATE(9595), 1, + sym_operator_name, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(12869), 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, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [342655] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12433), 1, + anon_sym_LT, + STATE(8971), 1, + sym_template_argument_list, + ACTIONS(6774), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6781), 19, + 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_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, + [342695] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(10653), 1, + ACTIONS(11510), 1, anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(13998), 1, sym_identifier, - STATE(3028), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(3109), 1, + STATE(3910), 1, sym__class_declaration_item, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7260), 1, + STATE(8373), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(8624), 1, + sym_field_declaration_list, + STATE(9814), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10718), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11777), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(8311), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7857), 2, + STATE(8837), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297236] = 21, + [342765] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3028), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3178), 1, - sym__class_declaration_item, - STATE(3863), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(7260), 1, + STATE(4249), 1, + sym__class_declaration_item, + STATE(4349), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(3791), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297306] = 21, + [342835] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(11882), 1, + anon_sym_requires, + STATE(9765), 1, + sym__function_attributes_end, + STATE(9766), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [342899] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(11882), 1, + anon_sym_requires, + STATE(9773), 1, + sym__function_attributes_end, + STATE(9782), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [342963] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(11882), 1, + anon_sym_requires, + STATE(9787), 1, + sym_trailing_return_type, + STATE(9788), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [343027] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(11510), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(12384), 1, + anon_sym_LBRACE, + ACTIONS(13998), 1, sym_identifier, - STATE(3028), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(3109), 1, + STATE(3927), 1, sym__class_declaration_item, - STATE(3800), 1, + STATE(8373), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(8624), 1, sym_field_declaration_list, - STATE(8738), 1, + STATE(9814), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10718), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11777), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(8311), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7805), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297376] = 21, + [343097] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(13450), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13978), 1, sym_identifier, - STATE(3028), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(3178), 1, + STATE(3908), 1, sym__class_declaration_item, - STATE(3800), 1, + STATE(6696), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(6972), 1, sym_field_declaration_list, - STATE(8738), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10754), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11788), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(6571), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297446] = 15, + [343167] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(14044), 1, + anon_sym_requires, + STATE(9772), 1, + sym__function_attributes_end, + STATE(9774), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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, + anon_sym_GT2, + [343231] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(14101), 1, + anon_sym_requires, + STATE(9775), 1, + sym__function_attributes_end, + STATE(9777), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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, + anon_sym_GT2, + [343295] = 18, 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, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 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(3905), 1, - sym_field_declaration_list, - STATE(4111), 1, - sym__class_declaration_item, - STATE(8707), 1, - sym__scope_resolution, - STATE(9611), 1, - sym_virtual_specifier, - STATE(10572), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(14409), 1, + anon_sym_requires, + STATE(9781), 1, + sym_trailing_return_type, + STATE(9783), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14241), 2, anon_sym_final, anon_sym_override, - STATE(3540), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7882), 2, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [297632] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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(8311), 1, - sym_ms_call_modifier, - STATE(9109), 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, - [297690] = 21, + anon_sym_GT2, + [343359] = 21, 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, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11427), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13978), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(5954), 1, - sym_field_declaration_list, - STATE(6036), 1, + STATE(3910), 1, sym__class_declaration_item, - STATE(8757), 1, + STATE(6696), 1, + sym_splice_specifier, + STATE(6972), 1, + sym_field_declaration_list, + STATE(9846), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(10754), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(11788), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(7872), 2, + STATE(6571), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8885), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297760] = 21, + [343429] = 21, 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, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11427), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + ACTIONS(13980), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5954), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(6085), 1, + STATE(4181), 1, sym__class_declaration_item, - STATE(8757), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(9805), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7016), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8870), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297830] = 21, + [343499] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8503), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + ACTIONS(13980), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(3545), 1, + STATE(4249), 1, sym__class_declaration_item, - STATE(8686), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(9805), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2606), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2934), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7874), 2, + STATE(7016), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297900] = 21, + [343569] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8503), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13951), 1, sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(6573), 1, + sym_splice_specifier, + STATE(6991), 1, sym_field_declaration_list, - STATE(3549), 1, + STATE(7185), 1, sym__class_declaration_item, - STATE(8686), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(10801), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(11831), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2606), 2, + STATE(6384), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8849), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297970] = 21, + [343639] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13951), 1, sym_identifier, - STATE(3711), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(6573), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(6991), 1, sym_field_declaration_list, - STATE(4082), 1, + STATE(7107), 1, sym__class_declaration_item, - STATE(8707), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(10801), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(11831), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3540), 2, + STATE(6384), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298040] = 21, + [343709] = 21, 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, + ACTIONS(2958), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11427), 1, + ACTIONS(10602), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13959), 1, sym_identifier, - STATE(4802), 1, + STATE(4632), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(5954), 1, + STATE(5169), 1, sym_field_declaration_list, - STATE(6077), 1, + STATE(5884), 1, sym__class_declaration_item, - STATE(8757), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(10668), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(11771), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(5279), 2, + STATE(4464), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5423), 2, + STATE(4764), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8852), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298110] = 21, + [343779] = 21, 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, + ACTIONS(2958), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11427), 1, + ACTIONS(10602), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(13959), 1, sym_identifier, - STATE(4802), 1, + STATE(4632), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(5954), 1, + STATE(5169), 1, sym_field_declaration_list, - STATE(6082), 1, + STATE(5888), 1, sym__class_declaration_item, - STATE(8757), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(10668), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(11771), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(5279), 2, + STATE(4464), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5423), 2, + STATE(4764), 2, sym_template_type, sym_splice_type_specifier, - STATE(7875), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298180] = 21, + [343849] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8503), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13951), 1, sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(6573), 1, + sym_splice_specifier, + STATE(6991), 1, sym_field_declaration_list, - STATE(3558), 1, + STATE(7125), 1, sym__class_declaration_item, - STATE(8686), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(10801), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(11831), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2606), 2, + STATE(6384), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298250] = 21, + [343919] = 21, 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, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11427), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13577), 1, + anon_sym_COLON_COLON, + ACTIONS(13951), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(5954), 1, + STATE(6573), 1, + sym_splice_specifier, + STATE(6991), 1, sym_field_declaration_list, - STATE(6028), 1, + STATE(7184), 1, sym__class_declaration_item, - STATE(8757), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(10801), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(11831), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(5279), 2, + STATE(6384), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5423), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8863), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298320] = 21, + [343989] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(9281), 1, + sym_ms_call_modifier, + STATE(10242), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [344047] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(2958), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8503), 1, + ACTIONS(10602), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13959), 1, sym_identifier, - STATE(2742), 1, + STATE(4632), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(5169), 1, sym_field_declaration_list, - STATE(3561), 1, + STATE(5936), 1, sym__class_declaration_item, - STATE(8686), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(10668), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(11771), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2606), 2, + STATE(4464), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(4764), 2, sym_template_type, sym_splice_type_specifier, - STATE(7877), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298390] = 21, + [344117] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(2958), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8503), 1, + ACTIONS(10602), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13959), 1, sym_identifier, - STATE(2742), 1, + STATE(4632), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(5169), 1, sym_field_declaration_list, - STATE(3575), 1, + STATE(5941), 1, sym__class_declaration_item, - STATE(8686), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(10668), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(11771), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2606), 2, + STATE(4464), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(4764), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8854), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298460] = 21, + [344187] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11010), 1, + ACTIONS(10602), 1, + anon_sym_LBRACE, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13959), 1, sym_identifier, - STATE(2547), 1, + STATE(4632), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(5169), 1, sym_field_declaration_list, - STATE(3042), 1, + STATE(6015), 1, sym__class_declaration_item, - STATE(8682), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(10668), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(11771), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2389), 2, + STATE(4464), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2615), 2, + STATE(4764), 2, sym_template_type, sym_splice_type_specifier, - STATE(7820), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298530] = 21, + [344257] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11010), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8784), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(8912), 1, + anon_sym_STAR, + ACTIONS(14405), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + ACTIONS(14407), 1, + anon_sym_template, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2692), 1, - sym_field_declaration_list, - STATE(2949), 1, - sym__class_declaration_item, - STATE(8682), 1, + STATE(8855), 1, sym__scope_resolution, - STATE(9585), 1, - sym_virtual_specifier, - STATE(10216), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(9224), 1, + sym_splice_specifier, + STATE(9524), 1, + sym_dependent_identifier, + STATE(9588), 1, + sym_pointer_type_declarator, + STATE(9589), 1, + sym_template_function, + STATE(9590), 1, + sym_destructor_name, + STATE(9594), 1, + sym_qualified_identifier, + STATE(9595), 1, + sym_operator_name, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(12869), 1, + sym_ms_based_modifier, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [298600] = 21, + [344331] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, + anon_sym_COLON_COLON, + ACTIONS(13982), 1, sym_identifier, - STATE(3808), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4406), 1, sym_field_declaration_list, - STATE(4836), 1, + STATE(4531), 1, sym__class_declaration_item, - STATE(8716), 1, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8858), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298670] = 21, + [344401] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(13982), 1, + sym_identifier, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4406), 1, sym_field_declaration_list, - STATE(4932), 1, + STATE(4458), 1, sym__class_declaration_item, - STATE(8710), 1, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298740] = 21, + [344471] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13982), 1, sym_identifier, - STATE(3711), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3905), 1, + STATE(4406), 1, sym_field_declaration_list, - STATE(4125), 1, + STATE(4529), 1, sym__class_declaration_item, - STATE(8707), 1, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3540), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(4316), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298810] = 21, + [344541] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13982), 1, sym_identifier, - STATE(3711), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3905), 1, + STATE(4406), 1, sym_field_declaration_list, - STATE(4048), 1, + STATE(4459), 1, sym__class_declaration_item, - STATE(8707), 1, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3540), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(4316), 2, sym_template_type, sym_splice_type_specifier, - STATE(7884), 2, + STATE(8860), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298880] = 21, + [344611] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13982), 1, sym_identifier, - STATE(3711), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3905), 1, + STATE(4406), 1, sym_field_declaration_list, - STATE(4093), 1, + STATE(4509), 1, sym__class_declaration_item, - STATE(8707), 1, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(10792), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(11817), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3540), 2, + STATE(3772), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(4316), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298950] = 21, + [344681] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(14019), 1, sym_identifier, - STATE(3711), 1, + ACTIONS(14021), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4111), 1, + STATE(4181), 1, sym__class_declaration_item, - STATE(4263), 1, + STATE(9758), 1, + sym__scope_resolution, + STATE(9983), 1, sym_splice_specifier, - STATE(4380), 1, + STATE(10511), 1, sym_field_declaration_list, - STATE(8675), 1, - sym__scope_resolution, - STATE(9587), 1, + STATE(10779), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(11806), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3728), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4032), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7887), 2, + STATE(8883), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(9951), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299020] = 21, + [344751] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(14019), 1, sym_identifier, - STATE(3711), 1, + ACTIONS(14021), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4082), 1, + STATE(4249), 1, sym__class_declaration_item, - STATE(4263), 1, + STATE(9758), 1, + sym__scope_resolution, + STATE(9983), 1, sym_splice_specifier, - STATE(4380), 1, + STATE(10511), 1, sym_field_declaration_list, - STATE(8675), 1, - sym__scope_resolution, - STATE(9587), 1, + STATE(10779), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(11806), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3728), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4032), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(9951), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299090] = 21, + [344821] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13951), 1, sym_identifier, - STATE(3711), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(4125), 1, - sym__class_declaration_item, - STATE(4263), 1, + STATE(6573), 1, sym_splice_specifier, - STATE(4380), 1, + STATE(6991), 1, sym_field_declaration_list, - STATE(8675), 1, + STATE(7164), 1, + sym__class_declaration_item, + STATE(9760), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(10801), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(11831), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4032), 2, + STATE(6384), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299160] = 21, + [344891] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(9292), 1, + sym_ms_call_modifier, + STATE(10265), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [344949] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12433), 1, + anon_sym_LT, + STATE(8971), 1, + sym_template_argument_list, + ACTIONS(7543), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5689), 19, + 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_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, + [344989] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(9298), 1, + sym_ms_call_modifier, + STATE(10262), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 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, + [345047] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, sym_identifier, - STATE(3711), 1, + STATE(3117), 1, + sym_field_declaration_list, + STATE(3239), 1, sym__splice_specialization_specifier, - STATE(4048), 1, + STATE(3287), 1, sym__class_declaration_item, - STATE(4263), 1, + STATE(7849), 1, sym_splice_specifier, - STATE(4380), 1, - sym_field_declaration_list, - STATE(8675), 1, + STATE(9836), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4032), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7889), 2, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8815), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299230] = 21, + [345117] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(12433), 1, + anon_sym_LT, + STATE(8973), 1, + sym_template_argument_list, + ACTIONS(7442), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7447), 19, + 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_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, + [345157] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, sym_identifier, - STATE(3711), 1, + STATE(3117), 1, + sym_field_declaration_list, + STATE(3239), 1, sym__splice_specialization_specifier, - STATE(4093), 1, + STATE(3294), 1, sym__class_declaration_item, - STATE(4263), 1, + STATE(7849), 1, sym_splice_specifier, - STATE(4380), 1, - sym_field_declaration_list, - STATE(8675), 1, + STATE(9836), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(10610), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(11527), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4032), 2, + STATE(2803), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299300] = 21, + [345227] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(13980), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(4862), 1, + STATE(4298), 1, sym__class_declaration_item, - STATE(8716), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(9805), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(7016), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7830), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299370] = 21, + [345297] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11038), 1, + ACTIONS(12545), 1, + anon_sym_LBRACE, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13986), 1, sym_identifier, - STATE(2104), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(7038), 1, sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(7367), 1, sym_field_declaration_list, - STATE(2176), 1, + STATE(7871), 1, sym__class_declaration_item, - STATE(8763), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(10709), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(11590), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2075), 2, + STATE(6919), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(7036), 2, sym_template_type, sym_splice_type_specifier, - STATE(7813), 2, + STATE(8874), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299440] = 21, + [345367] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(143), 1, + anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5992), 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, + ACTIONS(8595), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(14401), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + ACTIONS(14403), 1, + anon_sym_template, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2172), 1, - sym_field_declaration_list, - STATE(2189), 1, - sym__class_declaration_item, - STATE(8763), 1, + STATE(4358), 1, + sym_template_function, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, + sym_operator_name, + STATE(4420), 1, + sym_dependent_identifier, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8872), 1, sym__scope_resolution, - STATE(9644), 1, - sym_virtual_specifier, - STATE(10276), 1, - sym_base_class_clause, - ACTIONS(7245), 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(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(9224), 1, + sym_splice_specifier, + STATE(10664), 1, + sym_operator_cast, + STATE(10687), 1, + sym_qualified_operator_cast_identifier, + STATE(12437), 1, + sym_ms_based_modifier, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [299510] = 21, + [345441] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(12545), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, + ACTIONS(13986), 1, + sym_identifier, + STATE(7005), 1, sym_splice_specifier, - STATE(4968), 1, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(7367), 1, + sym_field_declaration_list, + STATE(7875), 1, sym__class_declaration_item, - STATE(8705), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(10709), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(11590), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(6919), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7036), 2, sym_template_type, sym_splice_type_specifier, - STATE(7816), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299580] = 21, + [345511] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(12545), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, + ACTIONS(13986), 1, + sym_identifier, + STATE(7005), 1, sym_splice_specifier, - STATE(4984), 1, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(7367), 1, + sym_field_declaration_list, + STATE(7890), 1, sym__class_declaration_item, - STATE(8705), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(10709), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(11590), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(6919), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7036), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299650] = 21, + [345581] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8269), 1, + ACTIONS(12545), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13986), 1, sym_identifier, - STATE(2638), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(7038), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(7367), 1, sym_field_declaration_list, - STATE(3086), 1, + STATE(7893), 1, sym__class_declaration_item, - STATE(8687), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(10709), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(11590), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2460), 2, + STATE(6919), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(7036), 2, sym_template_type, sym_splice_type_specifier, - STATE(7898), 2, + STATE(8876), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299720] = 21, + [345651] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(12545), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13986), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3237), 1, - sym__class_declaration_item, - STATE(3800), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(7367), 1, sym_field_declaration_list, - STATE(8738), 1, + STATE(7908), 1, + sym__class_declaration_item, + STATE(9780), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(10709), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(11590), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(6919), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7850), 2, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299790] = 21, + [345721] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8269), 1, + ACTIONS(8088), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(14008), 1, sym_identifier, - STATE(2638), 1, + STATE(2545), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(2656), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(2708), 1, sym_field_declaration_list, - STATE(3213), 1, + STATE(2967), 1, sym__class_declaration_item, - STATE(8687), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(10789), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(11403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2460), 2, + STATE(2403), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(2610), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8880), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299860] = 21, + [345791] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8269), 1, + ACTIONS(8088), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(14008), 1, sym_identifier, - STATE(2638), 1, + STATE(2545), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(2656), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(2708), 1, sym_field_declaration_list, - STATE(3112), 1, + STATE(2972), 1, sym__class_declaration_item, - STATE(8687), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(10789), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(11403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2460), 2, + STATE(2403), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(2610), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299930] = 21, + [345861] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8269), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + ACTIONS(13980), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(4092), 1, sym_field_declaration_list, - STATE(3179), 1, + STATE(4321), 1, sym__class_declaration_item, - STATE(8687), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(9805), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(10606), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(11525), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2460), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2678), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7900), 2, + STATE(7016), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300000] = 21, + [345931] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8269), 1, + ACTIONS(8088), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(14008), 1, sym_identifier, - STATE(2638), 1, + STATE(2545), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(2656), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(2708), 1, sym_field_declaration_list, - STATE(3162), 1, + STATE(2914), 1, sym__class_declaration_item, - STATE(8687), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(10789), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(11403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(2460), 2, + STATE(2403), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(2610), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300070] = 23, + [346001] = 21, 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, + ACTIONS(2300), 1, anon_sym_LBRACK_COLON, - ACTIONS(8238), 1, - anon_sym_COLON_COLON, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(13539), 1, - sym_identifier, - ACTIONS(13541), 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(7901), 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), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [300144] = 21, - ACTIONS(3), 1, - sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8088), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(12978), 1, - anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(14008), 1, sym_identifier, - STATE(6581), 1, + STATE(2545), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(2656), 1, sym__splice_specialization_specifier, - STATE(7595), 1, + STATE(2708), 1, sym_field_declaration_list, - STATE(7623), 1, + STATE(2905), 1, sym__class_declaration_item, - STATE(8700), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(10789), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(11403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7089), 2, + STATE(2403), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7122), 2, + STATE(2610), 2, sym_template_type, sym_splice_type_specifier, - STATE(7904), 2, + STATE(8882), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300214] = 21, + [346071] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8088), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(12978), 1, - anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(14008), 1, sym_identifier, - STATE(6581), 1, + STATE(2545), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(2656), 1, sym__splice_specialization_specifier, - STATE(7595), 1, + STATE(2708), 1, sym_field_declaration_list, - STATE(7650), 1, + STATE(2908), 1, sym__class_declaration_item, - STATE(8700), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(10789), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(11403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7089), 2, + STATE(2403), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7122), 2, + STATE(2610), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300284] = 21, + [346141] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(14019), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + ACTIONS(14021), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7595), 1, - sym_field_declaration_list, - STATE(7631), 1, + STATE(4298), 1, sym__class_declaration_item, - STATE(8700), 1, + STATE(9758), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9983), 1, + sym_splice_specifier, + STATE(10511), 1, + sym_field_declaration_list, + STATE(10779), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(11806), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7089), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7122), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(9951), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300354] = 21, + [346211] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(14019), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + ACTIONS(14021), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7595), 1, - sym_field_declaration_list, - STATE(7641), 1, + STATE(4304), 1, sym__class_declaration_item, - STATE(8700), 1, + STATE(9758), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9983), 1, + sym_splice_specifier, + STATE(10511), 1, + sym_field_declaration_list, + STATE(10779), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(11806), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7089), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7122), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7906), 2, + STATE(8772), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(9951), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300424] = 21, + [346281] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13978), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(7595), 1, - sym_field_declaration_list, - STATE(7614), 1, + STATE(3927), 1, sym__class_declaration_item, - STATE(8700), 1, + STATE(6696), 1, + sym_splice_specifier, + STATE(6972), 1, + sym_field_declaration_list, + STATE(9846), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(10754), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(11788), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(7089), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7122), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(6571), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300494] = 21, + [346351] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3161), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7376), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(13847), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13990), 1, sym_identifier, - STATE(4272), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(5034), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(5858), 1, sym_field_declaration_list, - STATE(4424), 1, + STATE(6742), 1, sym__class_declaration_item, - STATE(8676), 1, + STATE(9816), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(10742), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(11429), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7380), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(4830), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(5039), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8752), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300564] = 18, + [346421] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13551), 1, + ACTIONS(14420), 1, anon_sym_RBRACK, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300627] = 24, + [346484] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(12583), 1, anon_sym_STAR, - ACTIONS(13555), 1, + ACTIONS(14424), 1, sym_identifier, - ACTIONS(13557), 1, + ACTIONS(14426), 1, anon_sym_TILDE, - ACTIONS(13559), 1, + ACTIONS(14428), 1, anon_sym_COLON_COLON, - ACTIONS(13561), 1, + ACTIONS(14430), 1, anon_sym_template, - ACTIONS(13563), 1, + ACTIONS(14432), 1, anon_sym_operator, - STATE(2455), 1, - sym_template_type, - STATE(2457), 1, + STATE(3446), 1, sym_dependent_type_identifier, - STATE(2543), 1, + STATE(3453), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5691), 1, + STATE(5905), 1, sym_pointer_type_declarator, - STATE(5695), 1, + STATE(5909), 1, sym_template_function, - STATE(5701), 1, + STATE(5910), 1, sym_destructor_name, - STATE(5702), 1, + STATE(5912), 1, sym_dependent_identifier, - STATE(5704), 1, + STATE(5918), 1, sym_qualified_identifier, - STATE(5705), 1, + STATE(5923), 1, sym_operator_name, - STATE(7909), 1, + STATE(8888), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11657), 1, + STATE(12075), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [300702] = 18, + [346559] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13565), 1, + ACTIONS(14434), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300765] = 18, + [346622] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13567), 1, + ACTIONS(14436), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300828] = 24, + [346685] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(12597), 1, anon_sym_STAR, - ACTIONS(13569), 1, + ACTIONS(14438), 1, sym_identifier, - ACTIONS(13571), 1, + ACTIONS(14440), 1, anon_sym_TILDE, - ACTIONS(13573), 1, + ACTIONS(14442), 1, anon_sym_COLON_COLON, - ACTIONS(13575), 1, + ACTIONS(14444), 1, anon_sym_template, - ACTIONS(13577), 1, + ACTIONS(14446), 1, anon_sym_operator, - STATE(2755), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4076), 1, + sym_template_type, + STATE(4077), 1, sym_dependent_type_identifier, - STATE(2812), 1, + STATE(4106), 1, + sym_qualified_type_identifier, + STATE(6513), 1, + sym_pointer_type_declarator, + STATE(6530), 1, + sym_template_function, + STATE(6531), 1, + sym_destructor_name, + STATE(6541), 1, + sym_operator_name, + STATE(6561), 1, + sym_dependent_identifier, + STATE(6589), 1, + sym_qualified_identifier, + STATE(8891), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11943), 1, + sym_ms_based_modifier, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [346760] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12583), 1, + anon_sym_STAR, + ACTIONS(14426), 1, + anon_sym_TILDE, + ACTIONS(14432), 1, + anon_sym_operator, + ACTIONS(14448), 1, + sym_identifier, + ACTIONS(14450), 1, + anon_sym_COLON_COLON, + ACTIONS(14452), 1, + anon_sym_template, + STATE(3119), 1, sym_template_type, - STATE(2920), 1, + STATE(3120), 1, + sym_dependent_type_identifier, + STATE(3121), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(5905), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(5909), 1, sym_template_function, - STATE(3851), 1, + STATE(5910), 1, sym_destructor_name, - STATE(3852), 1, + STATE(5912), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(5918), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(5923), 1, sym_operator_name, - STATE(7912), 1, + STATE(8892), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(12075), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [300903] = 18, + [346835] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14454), 1, + anon_sym_LBRACK_LBRACK, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9440), 5, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + 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, + 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, + [346872] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13579), 1, + ACTIONS(14457), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300966] = 18, + [346935] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13581), 1, + ACTIONS(14459), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301029] = 18, + [346998] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(12557), 1, + anon_sym_STAR, + ACTIONS(14273), 1, + anon_sym_TILDE, + ACTIONS(14461), 1, + sym_identifier, + ACTIONS(14463), 1, + anon_sym_COLON_COLON, + ACTIONS(14465), 1, + anon_sym_template, + ACTIONS(14467), 1, + anon_sym_operator, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4358), 1, + sym_template_function, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, + sym_operator_name, + STATE(4420), 1, + sym_dependent_identifier, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8896), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(12036), 1, + sym_ms_based_modifier, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [347073] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13583), 1, + ACTIONS(14469), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 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, - 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(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(13242), 1, - anon_sym___attribute__, - ACTIONS(13245), 1, - anon_sym___attribute, - STATE(8669), 1, - sym__function_attributes_end, - STATE(8736), 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(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [301218] = 24, + [347136] = 18, 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5960), 1, + anon_sym_EQ, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5625), 1, - anon_sym_COLON_COLON, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(13585), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13587), 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(14414), 1, + anon_sym_STAR, + ACTIONS(14416), 1, + anon_sym_AMP, + ACTIONS(14418), 1, + anon_sym_COLON_COLON, + ACTIONS(14422), 1, + sym_this, + ACTIONS(14471), 1, + anon_sym_RBRACK, + STATE(3495), 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(7918), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11156), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(11746), 1, + sym_lambda_default_capture, + STATE(11279), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301293] = 24, + [347199] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11906), 1, + ACTIONS(12567), 1, anon_sym_STAR, - ACTIONS(13589), 1, + ACTIONS(14473), 1, sym_identifier, - ACTIONS(13591), 1, + ACTIONS(14475), 1, anon_sym_TILDE, - ACTIONS(13593), 1, + ACTIONS(14477), 1, anon_sym_COLON_COLON, - ACTIONS(13595), 1, + ACTIONS(14479), 1, anon_sym_template, - ACTIONS(13597), 1, + ACTIONS(14481), 1, anon_sym_operator, - STATE(2579), 1, + STATE(3119), 1, sym_template_type, - STATE(2580), 1, + STATE(3120), 1, sym_dependent_type_identifier, - STATE(2633), 1, + STATE(3121), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5854), 1, + STATE(4302), 1, sym_pointer_type_declarator, - STATE(5856), 1, + STATE(4315), 1, sym_template_function, - STATE(5858), 1, + STATE(4332), 1, sym_destructor_name, - STATE(5859), 1, + STATE(4336), 1, sym_dependent_identifier, - STATE(5860), 1, + STATE(4340), 1, sym_qualified_identifier, - STATE(5863), 1, + STATE(4343), 1, sym_operator_name, - STATE(7919), 1, + STATE(8899), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11304), 1, + STATE(12380), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [301368] = 24, + [347274] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(12583), 1, anon_sym_STAR, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(13599), 1, + ACTIONS(14483), 1, sym_identifier, - ACTIONS(13601), 1, + ACTIONS(14485), 1, + anon_sym_TILDE, + ACTIONS(14487), 1, anon_sym_COLON_COLON, - ACTIONS(13603), 1, + ACTIONS(14489), 1, anon_sym_template, - STATE(3491), 1, - sym_template_type, - STATE(3495), 1, + ACTIONS(14491), 1, + anon_sym_operator, + STATE(3446), 1, sym_dependent_type_identifier, - STATE(3644), 1, + STATE(3453), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(6345), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(6347), 1, sym_template_function, - STATE(3851), 1, + STATE(6348), 1, sym_destructor_name, - STATE(3852), 1, + STATE(6349), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(6351), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(6352), 1, sym_operator_name, - STATE(7920), 1, + STATE(8900), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(12075), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [301443] = 24, + [347349] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5960), 1, + anon_sym_EQ, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11933), 1, - anon_sym_STAR, - ACTIONS(13605), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13607), 1, - anon_sym_TILDE, - ACTIONS(13609), 1, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14416), 1, + anon_sym_AMP, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13611), 1, - anon_sym_template, - ACTIONS(13613), 1, - anon_sym_operator, - STATE(3808), 1, + ACTIONS(14422), 1, + sym_this, + ACTIONS(14493), 1, + anon_sym_RBRACK, + STATE(3495), 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(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11053), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(11746), 1, + sym_lambda_default_capture, + STATE(11279), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 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, + [347412] = 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(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 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(5960), 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(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, + sym_identifier, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14416), 1, + anon_sym_AMP, + ACTIONS(14418), 1, + anon_sym_COLON_COLON, + ACTIONS(14422), 1, + sym_this, + ACTIONS(14495), 1, + anon_sym_RBRACK, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8985), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11746), 1, + sym_lambda_default_capture, + STATE(11279), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [347475] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5960), 1, + anon_sym_EQ, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, - anon_sym_STAR, - ACTIONS(13557), 1, - anon_sym_TILDE, - ACTIONS(13563), 1, - anon_sym_operator, - ACTIONS(13615), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13617), 1, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14416), 1, + anon_sym_AMP, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13619), 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(14422), 1, + sym_this, + ACTIONS(14497), 1, + anon_sym_RBRACK, + STATE(3495), 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(7924), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11657), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(11746), 1, + sym_lambda_default_capture, + STATE(11279), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301699] = 24, + [347538] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11906), 1, + ACTIONS(12625), 1, anon_sym_STAR, - ACTIONS(13591), 1, - anon_sym_TILDE, - ACTIONS(13597), 1, - anon_sym_operator, - ACTIONS(13621), 1, + ACTIONS(14499), 1, sym_identifier, - ACTIONS(13623), 1, + ACTIONS(14501), 1, + anon_sym_TILDE, + ACTIONS(14503), 1, anon_sym_COLON_COLON, - ACTIONS(13625), 1, + ACTIONS(14505), 1, anon_sym_template, - STATE(3743), 1, + ACTIONS(14507), 1, + anon_sym_operator, + STATE(3446), 1, sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3752), 1, + STATE(3453), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5854), 1, + STATE(6450), 1, sym_pointer_type_declarator, - STATE(5856), 1, + STATE(6451), 1, sym_template_function, - STATE(5858), 1, + STATE(6458), 1, sym_destructor_name, - STATE(5859), 1, + STATE(6461), 1, sym_dependent_identifier, - STATE(5860), 1, + STATE(6470), 1, sym_qualified_identifier, - STATE(5863), 1, + STATE(6475), 1, sym_operator_name, - STATE(7925), 1, + STATE(8904), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11304), 1, + STATE(12592), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [301774] = 24, + [347613] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11947), 1, + ACTIONS(12597), 1, anon_sym_STAR, - ACTIONS(13571), 1, + ACTIONS(14440), 1, anon_sym_TILDE, - ACTIONS(13577), 1, + ACTIONS(14446), 1, anon_sym_operator, - ACTIONS(13599), 1, + ACTIONS(14509), 1, sym_identifier, - ACTIONS(13627), 1, + ACTIONS(14511), 1, anon_sym_COLON_COLON, - ACTIONS(13629), 1, + ACTIONS(14513), 1, anon_sym_template, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4076), 1, sym_template_type, - STATE(2920), 1, + STATE(4077), 1, + sym_dependent_type_identifier, + STATE(4106), 1, sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(6513), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(6530), 1, sym_template_function, - STATE(3851), 1, + STATE(6531), 1, sym_destructor_name, - STATE(3852), 1, + STATE(6541), 1, + sym_operator_name, + STATE(6561), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(6589), 1, sym_qualified_identifier, - STATE(3856), 1, - sym_operator_name, - STATE(7926), 1, + STATE(8905), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10893), 1, + STATE(11943), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [301849] = 18, + [347688] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13631), 1, + ACTIONS(14515), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301912] = 24, + [347751] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11933), 1, + ACTIONS(12583), 1, anon_sym_STAR, - ACTIONS(13607), 1, + ACTIONS(14485), 1, anon_sym_TILDE, - ACTIONS(13613), 1, + ACTIONS(14491), 1, anon_sym_operator, - ACTIONS(13633), 1, + ACTIONS(14517), 1, sym_identifier, - ACTIONS(13635), 1, + ACTIONS(14519), 1, anon_sym_COLON_COLON, - ACTIONS(13637), 1, + ACTIONS(14521), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + STATE(2761), 1, sym_template_type, - STATE(3752), 1, + STATE(2768), 1, + sym_dependent_type_identifier, + STATE(2835), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5836), 1, + STATE(6345), 1, sym_pointer_type_declarator, - STATE(5841), 1, + STATE(6347), 1, sym_template_function, - STATE(5845), 1, + STATE(6348), 1, sym_destructor_name, - STATE(5849), 1, + STATE(6349), 1, sym_dependent_identifier, - STATE(5861), 1, + STATE(6351), 1, sym_qualified_identifier, - STATE(5871), 1, + STATE(6352), 1, sym_operator_name, - STATE(7928), 1, + STATE(8907), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11053), 1, + STATE(12075), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [301987] = 18, + [347826] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(8285), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, + ACTIONS(11439), 1, anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11950), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(14086), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(14089), 1, anon_sym___attribute, - STATE(8585), 1, + STATE(9655), 1, sym_trailing_return_type, - STATE(8604), 1, + STATE(9683), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(8287), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [302050] = 24, + [347889] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(12557), 1, anon_sym_STAR, - ACTIONS(13571), 1, + ACTIONS(14475), 1, anon_sym_TILDE, - ACTIONS(13577), 1, + ACTIONS(14481), 1, anon_sym_operator, - ACTIONS(13639), 1, + ACTIONS(14523), 1, sym_identifier, - ACTIONS(13641), 1, + ACTIONS(14525), 1, anon_sym_COLON_COLON, - ACTIONS(13643), 1, + ACTIONS(14527), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + STATE(3119), 1, sym_template_type, - STATE(3752), 1, + STATE(3120), 1, + sym_dependent_type_identifier, + STATE(3121), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(4302), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(4315), 1, sym_template_function, - STATE(3851), 1, + STATE(4332), 1, sym_destructor_name, - STATE(3852), 1, + STATE(4336), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(4340), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(4343), 1, sym_operator_name, - STATE(7930), 1, + STATE(8909), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(12036), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302125] = 24, + [347964] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11933), 1, + ACTIONS(12597), 1, anon_sym_STAR, - ACTIONS(13607), 1, + ACTIONS(14440), 1, anon_sym_TILDE, - ACTIONS(13613), 1, + ACTIONS(14446), 1, anon_sym_operator, - ACTIONS(13645), 1, + ACTIONS(14529), 1, sym_identifier, - ACTIONS(13647), 1, + ACTIONS(14531), 1, anon_sym_COLON_COLON, - ACTIONS(13649), 1, + ACTIONS(14533), 1, anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4123), 1, - sym_template_type, - STATE(4127), 1, + STATE(3446), 1, sym_dependent_type_identifier, - STATE(4267), 1, + STATE(3453), 1, sym_qualified_type_identifier, - STATE(5836), 1, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6513), 1, sym_pointer_type_declarator, - STATE(5841), 1, + STATE(6530), 1, sym_template_function, - STATE(5845), 1, + STATE(6531), 1, sym_destructor_name, - STATE(5849), 1, + STATE(6541), 1, + sym_operator_name, + STATE(6561), 1, sym_dependent_identifier, - STATE(5861), 1, + STATE(6589), 1, sym_qualified_identifier, - STATE(5871), 1, - sym_operator_name, - STATE(7931), 1, + STATE(8910), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11053), 1, + STATE(11943), 1, sym_ms_based_modifier, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [302200] = 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(13651), 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, + STATE(13053), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302263] = 18, + [348039] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, + ACTIONS(11439), 1, anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11950), 1, anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13966), 1, anon_sym___attribute, - STATE(8565), 1, + STATE(9546), 1, sym_trailing_return_type, - STATE(8606), 1, + STATE(9682), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(7623), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [302326] = 24, + [348102] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(12557), 1, anon_sym_STAR, - ACTIONS(13653), 1, - sym_identifier, - ACTIONS(13655), 1, + ACTIONS(14475), 1, anon_sym_TILDE, - ACTIONS(13657), 1, + ACTIONS(14481), 1, + anon_sym_operator, + ACTIONS(14535), 1, + sym_identifier, + ACTIONS(14537), 1, anon_sym_COLON_COLON, - ACTIONS(13659), 1, + ACTIONS(14539), 1, anon_sym_template, - ACTIONS(13661), 1, - anon_sym_operator, - STATE(2755), 1, + STATE(3446), 1, sym_dependent_type_identifier, - STATE(2812), 1, - sym_template_type, - STATE(2920), 1, + STATE(3453), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5453), 1, + STATE(4302), 1, sym_pointer_type_declarator, - STATE(5456), 1, + STATE(4315), 1, sym_template_function, - STATE(5457), 1, + STATE(4332), 1, sym_destructor_name, - STATE(5461), 1, + STATE(4336), 1, sym_dependent_identifier, - STATE(5463), 1, + STATE(4340), 1, sym_qualified_identifier, - STATE(5465), 1, + STATE(4343), 1, sym_operator_name, - STATE(7934), 1, + STATE(8912), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11657), 1, + STATE(12036), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302401] = 8, + [348177] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6837), 1, anon_sym_COLON_COLON, - ACTIONS(8569), 1, - anon_sym_LPAREN2, - STATE(5569), 1, - sym_argument_list, - STATE(5579), 1, - sym_initializer_list, - ACTIONS(7223), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7225), 18, - anon_sym_RPAREN, + ACTIONS(12551), 1, 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, - [302444] = 18, + ACTIONS(14541), 1, + sym_identifier, + ACTIONS(14543), 1, + anon_sym_template, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4358), 1, + sym_template_function, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, + sym_operator_name, + STATE(4420), 1, + sym_dependent_identifier, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8913), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(12437), 1, + sym_ms_based_modifier, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [348252] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(13014), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(9039), 1, + sym_trailing_return_type, + STATE(9665), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [348315] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(12108), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(13966), 1, anon_sym___attribute, - ACTIONS(13197), 1, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13975), 1, anon_sym_requires, - STATE(8643), 1, + STATE(9000), 1, + sym_trailing_return_type, + STATE(9666), 1, sym__function_attributes_end, - STATE(8715), 1, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [348378] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(14086), 1, + anon_sym___attribute__, + ACTIONS(14089), 1, + anon_sym___attribute, + ACTIONS(14092), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14098), 1, + anon_sym_requires, + STATE(9038), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9667), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(14095), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(8287), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [302507] = 24, + [348441] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5958), 1, + anon_sym_RBRACK, + ACTIONS(5960), 1, + anon_sym_EQ, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, + sym_identifier, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14416), 1, + anon_sym_AMP, + ACTIONS(14418), 1, + anon_sym_COLON_COLON, + ACTIONS(14422), 1, + sym_this, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8985), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11746), 1, + sym_lambda_default_capture, + STATE(11279), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [348504] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(12583), 1, anon_sym_STAR, - ACTIONS(13557), 1, + ACTIONS(14485), 1, anon_sym_TILDE, - ACTIONS(13563), 1, + ACTIONS(14491), 1, anon_sym_operator, - ACTIONS(13663), 1, + ACTIONS(14545), 1, sym_identifier, - ACTIONS(13665), 1, + ACTIONS(14547), 1, anon_sym_COLON_COLON, - ACTIONS(13667), 1, + ACTIONS(14549), 1, anon_sym_template, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + STATE(3119), 1, sym_template_type, - STATE(2920), 1, + STATE(3120), 1, + sym_dependent_type_identifier, + STATE(3121), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5691), 1, + STATE(6345), 1, sym_pointer_type_declarator, - STATE(5695), 1, + STATE(6347), 1, sym_template_function, - STATE(5701), 1, + STATE(6348), 1, sym_destructor_name, - STATE(5702), 1, + STATE(6349), 1, sym_dependent_identifier, - STATE(5704), 1, + STATE(6351), 1, sym_qualified_identifier, - STATE(5705), 1, + STATE(6352), 1, sym_operator_name, - STATE(7937), 1, + STATE(8918), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11657), 1, + STATE(12075), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302582] = 18, + [348579] = 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(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, - [302645] = 8, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5960), 1, + anon_sym_EQ, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, + sym_identifier, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14416), 1, + anon_sym_AMP, + ACTIONS(14418), 1, + anon_sym_COLON_COLON, + ACTIONS(14422), 1, + sym_this, + ACTIONS(14551), 1, + anon_sym_RBRACK, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8985), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11746), 1, + sym_lambda_default_capture, + STATE(11279), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [348642] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12557), 1, + anon_sym_STAR, + ACTIONS(14473), 1, + sym_identifier, + ACTIONS(14475), 1, + anon_sym_TILDE, + ACTIONS(14479), 1, + anon_sym_template, + ACTIONS(14481), 1, + anon_sym_operator, + ACTIONS(14553), 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, + STATE(3119), 1, + sym_template_type, + STATE(3120), 1, + sym_dependent_type_identifier, + STATE(3121), 1, + sym_qualified_type_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4302), 1, + sym_pointer_type_declarator, + STATE(4315), 1, + sym_template_function, + STATE(4332), 1, + sym_destructor_name, + STATE(4336), 1, + sym_dependent_identifier, + STATE(4340), 1, + sym_qualified_identifier, + STATE(4343), 1, + sym_operator_name, + STATE(8920), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(12036), 1, + sym_ms_based_modifier, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [348717] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(12625), 1, 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, + ACTIONS(14501), 1, + anon_sym_TILDE, + ACTIONS(14507), 1, + anon_sym_operator, + ACTIONS(14555), 1, + sym_identifier, + ACTIONS(14557), 1, + anon_sym_COLON_COLON, + ACTIONS(14559), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4103), 1, + sym_template_type, + STATE(4104), 1, + sym_dependent_type_identifier, + STATE(4113), 1, + sym_qualified_type_identifier, + STATE(6450), 1, + sym_pointer_type_declarator, + STATE(6451), 1, + sym_template_function, + STATE(6458), 1, + sym_destructor_name, + STATE(6461), 1, + sym_dependent_identifier, + STATE(6470), 1, + sym_qualified_identifier, + STATE(6475), 1, + sym_operator_name, + STATE(8921), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(12592), 1, + sym_ms_based_modifier, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [348792] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13669), 1, + ACTIONS(14561), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302751] = 18, + [348855] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13671), 1, + ACTIONS(14563), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302814] = 24, + [348918] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(12557), 1, anon_sym_STAR, - ACTIONS(13655), 1, + ACTIONS(14475), 1, anon_sym_TILDE, - ACTIONS(13661), 1, + ACTIONS(14481), 1, anon_sym_operator, - ACTIONS(13673), 1, + ACTIONS(14565), 1, sym_identifier, - ACTIONS(13675), 1, + ACTIONS(14567), 1, anon_sym_COLON_COLON, - ACTIONS(13677), 1, + ACTIONS(14569), 1, anon_sym_template, - STATE(3743), 1, + STATE(3446), 1, sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3752), 1, + STATE(3453), 1, sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5453), 1, - sym_pointer_type_declarator, - STATE(5456), 1, - sym_template_function, - STATE(5457), 1, - sym_destructor_name, - STATE(5461), 1, - sym_dependent_identifier, - STATE(5463), 1, - sym_qualified_identifier, - STATE(5465), 1, - sym_operator_name, - STATE(7942), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(11657), 1, - sym_ms_based_modifier, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [302889] = 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(13599), 1, - sym_identifier, - ACTIONS(13629), 1, - anon_sym_template, - ACTIONS(13679), 1, - anon_sym_COLON_COLON, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + STATE(3465), 1, sym_template_type, - STATE(2920), 1, - sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(4302), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(4315), 1, sym_template_function, - STATE(3851), 1, + STATE(4332), 1, sym_destructor_name, - STATE(3852), 1, + STATE(4336), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(4340), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(4343), 1, sym_operator_name, - STATE(7943), 1, + STATE(8924), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(12036), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302964] = 18, + [348993] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13681), 1, + ACTIONS(14571), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303027] = 18, + [349056] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13683), 1, + ACTIONS(14573), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303090] = 18, + [349119] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(13963), 1, + anon_sym___attribute__, + ACTIONS(13966), 1, + anon_sym___attribute, + ACTIONS(13969), 1, + anon_sym_LBRACK_LBRACK, + STATE(9034), 1, + sym_trailing_return_type, + STATE(9577), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [349182] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13685), 1, + ACTIONS(14575), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303153] = 24, + [349245] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(12567), 1, anon_sym_STAR, - ACTIONS(13496), 1, + ACTIONS(14475), 1, anon_sym_TILDE, - ACTIONS(13687), 1, + ACTIONS(14481), 1, + anon_sym_operator, + ACTIONS(14577), 1, sym_identifier, - ACTIONS(13689), 1, + ACTIONS(14579), 1, anon_sym_COLON_COLON, - ACTIONS(13691), 1, + ACTIONS(14581), 1, anon_sym_template, - ACTIONS(13693), 1, - anon_sym_operator, - STATE(3743), 1, + STATE(3446), 1, sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3752), 1, + STATE(3453), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3957), 1, + STATE(4302), 1, sym_pointer_type_declarator, - STATE(3972), 1, + STATE(4315), 1, + sym_template_function, + STATE(4332), 1, sym_destructor_name, - STATE(3975), 1, + STATE(4336), 1, + sym_dependent_identifier, + STATE(4340), 1, sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, + STATE(4343), 1, sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7947), 1, + STATE(8929), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(12380), 1, sym_ms_based_modifier, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [303228] = 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(13695), 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, + STATE(13053), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303291] = 24, + [349320] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(12583), 1, anon_sym_STAR, - ACTIONS(13557), 1, + ACTIONS(14485), 1, anon_sym_TILDE, - ACTIONS(13563), 1, + ACTIONS(14491), 1, anon_sym_operator, - ACTIONS(13697), 1, + ACTIONS(14583), 1, sym_identifier, - ACTIONS(13699), 1, + ACTIONS(14585), 1, anon_sym_COLON_COLON, - ACTIONS(13701), 1, + ACTIONS(14587), 1, anon_sym_template, - STATE(2675), 1, + STATE(2588), 1, sym_template_type, - STATE(2676), 1, + STATE(2589), 1, sym_dependent_type_identifier, - STATE(2811), 1, + STATE(2590), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5691), 1, + STATE(6345), 1, sym_pointer_type_declarator, - STATE(5695), 1, + STATE(6347), 1, sym_template_function, - STATE(5701), 1, + STATE(6348), 1, sym_destructor_name, - STATE(5702), 1, + STATE(6349), 1, sym_dependent_identifier, - STATE(5704), 1, + STATE(6351), 1, sym_qualified_identifier, - STATE(5705), 1, + STATE(6352), 1, sym_operator_name, - STATE(7949), 1, + STATE(8930), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11657), 1, + STATE(12075), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [303366] = 8, + [349395] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8833), 2, + ACTIONS(9220), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(6377), 2, + STATE(7230), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8056), 2, + STATE(9032), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8835), 16, + ACTIONS(9222), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -703943,1795 +779079,1921 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [303409] = 18, + [349438] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 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(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, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13705), 1, + ACTIONS(14589), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303535] = 18, + [349501] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 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(12557), 1, anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14475), 1, + anon_sym_TILDE, + ACTIONS(14481), 1, + anon_sym_operator, + ACTIONS(14577), 1, + sym_identifier, + ACTIONS(14581), 1, + anon_sym_template, + ACTIONS(14591), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13707), 1, - anon_sym_RBRACK, - STATE(3808), 1, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(4302), 1, + sym_pointer_type_declarator, + STATE(4315), 1, + sym_template_function, + STATE(4332), 1, + sym_destructor_name, + STATE(4336), 1, + sym_dependent_identifier, + STATE(4340), 1, + sym_qualified_identifier, + STATE(4343), 1, + sym_operator_name, + STATE(8933), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 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(12036), 1, + sym_ms_based_modifier, + STATE(13053), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303598] = 24, + [349576] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(12567), 1, anon_sym_STAR, - ACTIONS(13571), 1, + ACTIONS(14475), 1, anon_sym_TILDE, - ACTIONS(13577), 1, + ACTIONS(14481), 1, anon_sym_operator, - ACTIONS(13709), 1, + ACTIONS(14593), 1, sym_identifier, - ACTIONS(13711), 1, + ACTIONS(14595), 1, anon_sym_COLON_COLON, - ACTIONS(13713), 1, + ACTIONS(14597), 1, anon_sym_template, - STATE(2083), 1, - sym_dependent_type_identifier, - STATE(2094), 1, + STATE(2243), 1, sym_template_type, - STATE(2114), 1, + STATE(2244), 1, + sym_dependent_type_identifier, + STATE(2247), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(4302), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(4315), 1, sym_template_function, - STATE(3851), 1, + STATE(4332), 1, sym_destructor_name, - STATE(3852), 1, + STATE(4336), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(4340), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(4343), 1, sym_operator_name, - STATE(7954), 1, + STATE(8934), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(12380), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [303673] = 5, + [349651] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - STATE(7955), 2, + ACTIONS(11882), 1, + anon_sym_requires, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(14086), 1, + anon_sym___attribute__, + ACTIONS(14089), 1, + anon_sym___attribute, + STATE(9675), 1, + sym__function_attributes_end, + STATE(9787), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9075), 5, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 3, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_GT2, + [349714] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(12108), 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(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(13014), 1, + anon_sym_LBRACK_LBRACK, + STATE(9009), 1, + sym_trailing_return_type, + STATE(9574), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 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(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [349777] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(12597), 1, anon_sym_STAR, - ACTIONS(13571), 1, + ACTIONS(14440), 1, anon_sym_TILDE, - ACTIONS(13577), 1, + ACTIONS(14446), 1, anon_sym_operator, - ACTIONS(13718), 1, + ACTIONS(14599), 1, sym_identifier, - ACTIONS(13720), 1, + ACTIONS(14601), 1, anon_sym_COLON_COLON, - ACTIONS(13722), 1, + ACTIONS(14603), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + STATE(2601), 1, sym_template_type, - STATE(3752), 1, + STATE(2602), 1, + sym_dependent_type_identifier, + STATE(2606), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(6513), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(6530), 1, sym_template_function, - STATE(3851), 1, + STATE(6531), 1, sym_destructor_name, - STATE(3852), 1, + STATE(6541), 1, + sym_operator_name, + STATE(6561), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(6589), 1, sym_qualified_identifier, - STATE(3856), 1, - sym_operator_name, - STATE(7956), 1, + STATE(8937), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(11943), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [303785] = 18, + [349852] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 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(12625), 1, anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14501), 1, + anon_sym_TILDE, + ACTIONS(14507), 1, + anon_sym_operator, + ACTIONS(14605), 1, + sym_identifier, + ACTIONS(14607), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13724), 1, - anon_sym_RBRACK, - STATE(3808), 1, + ACTIONS(14609), 1, + anon_sym_template, + STATE(2625), 1, + sym_template_type, + STATE(2626), 1, + sym_dependent_type_identifier, + STATE(2627), 1, + sym_qualified_type_identifier, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(6450), 1, + sym_pointer_type_declarator, + STATE(6451), 1, + sym_template_function, + STATE(6458), 1, + sym_destructor_name, + STATE(6461), 1, + sym_dependent_identifier, + STATE(6470), 1, + sym_qualified_identifier, + STATE(6475), 1, + sym_operator_name, + STATE(8938), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 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(12592), 1, + sym_ms_based_modifier, + STATE(13053), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303848] = 18, + [349927] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13726), 1, + ACTIONS(14611), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303911] = 18, + [349990] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13728), 1, + ACTIONS(14613), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303974] = 18, + [350053] = 8, 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(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9224), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(7230), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9006), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9226), 16, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, 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(13730), 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, - [304037] = 18, + 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, + [350096] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13732), 1, + ACTIONS(14615), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 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, + [350159] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(12557), 1, anon_sym_STAR, - ACTIONS(13571), 1, + ACTIONS(14475), 1, anon_sym_TILDE, - ACTIONS(13577), 1, + ACTIONS(14481), 1, anon_sym_operator, - ACTIONS(13734), 1, + ACTIONS(14593), 1, sym_identifier, - ACTIONS(13736), 1, - anon_sym_COLON_COLON, - ACTIONS(13738), 1, + ACTIONS(14597), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + ACTIONS(14617), 1, + anon_sym_COLON_COLON, + STATE(2243), 1, sym_template_type, - STATE(3752), 1, + STATE(2244), 1, + sym_dependent_type_identifier, + STATE(2247), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(4302), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(4315), 1, sym_template_function, - STATE(3851), 1, + STATE(4332), 1, sym_destructor_name, - STATE(3852), 1, + STATE(4336), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(4340), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(4343), 1, sym_operator_name, - STATE(7963), 1, + STATE(8943), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(12036), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [304238] = 18, + [350234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7566), 4, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, + anon_sym___asm, + ACTIONS(7568), 21, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_SEMI, anon_sym___attribute__, - 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, 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, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [350267] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5960), 1, + anon_sym_EQ, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, - anon_sym_STAR, - ACTIONS(13557), 1, - anon_sym_TILDE, - ACTIONS(13563), 1, - anon_sym_operator, - ACTIONS(13740), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13742), 1, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14416), 1, + anon_sym_AMP, + ACTIONS(14418), 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(14422), 1, + sym_this, + ACTIONS(14619), 1, + anon_sym_RBRACK, + STATE(3495), 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(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11657), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(11746), 1, + sym_lambda_default_capture, + STATE(11279), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304376] = 24, + [350330] = 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(3444), 1, - anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(6586), 1, - anon_sym_COLON_COLON, - ACTIONS(11896), 1, + ACTIONS(12557), 1, anon_sym_STAR, - ACTIONS(13746), 1, + ACTIONS(14475), 1, + anon_sym_TILDE, + ACTIONS(14481), 1, + anon_sym_operator, + ACTIONS(14621), 1, sym_identifier, - ACTIONS(13748), 1, + ACTIONS(14623), 1, + anon_sym_COLON_COLON, + ACTIONS(14625), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + STATE(3119), 1, sym_template_type, - STATE(3752), 1, + STATE(3120), 1, + sym_dependent_type_identifier, + STATE(3121), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3957), 1, + STATE(4302), 1, sym_pointer_type_declarator, - STATE(3972), 1, + STATE(4315), 1, + sym_template_function, + STATE(4332), 1, sym_destructor_name, - STATE(3975), 1, + STATE(4336), 1, + sym_dependent_identifier, + STATE(4340), 1, sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, + STATE(4343), 1, sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7966), 1, + STATE(8946), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11156), 1, + STATE(12036), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [304451] = 18, + [350405] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13750), 1, + ACTIONS(14627), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304514] = 18, + [350468] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, + ACTIONS(11882), 1, anon_sym_requires, - ACTIONS(11516), 1, + ACTIONS(11948), 1, anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13963), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13966), 1, anon_sym___attribute, - STATE(8668), 1, + STATE(9673), 1, sym__function_attributes_end, - STATE(8730), 1, + STATE(9782), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(7623), 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, + [350531] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5928), 1, + ACTIONS(5958), 1, anon_sym_RBRACK, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - STATE(3808), 1, + ACTIONS(14629), 1, + sym_identifier, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304703] = 24, + [350594] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5960), 1, + anon_sym_EQ, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11906), 1, - anon_sym_STAR, - ACTIONS(13591), 1, - anon_sym_TILDE, - ACTIONS(13597), 1, - anon_sym_operator, - ACTIONS(13752), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13754), 1, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14416), 1, + anon_sym_AMP, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13756), 1, - anon_sym_template, - STATE(3491), 1, - sym_template_type, + ACTIONS(14422), 1, + sym_this, + ACTIONS(14631), 1, + anon_sym_RBRACK, STATE(3495), 1, - sym_dependent_type_identifier, - STATE(3644), 1, - sym_qualified_type_identifier, - STATE(3808), 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(7971), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11304), 1, - sym_ms_based_modifier, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [304778] = 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(11947), 1, - anon_sym_STAR, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(13718), 1, - sym_identifier, - ACTIONS(13722), 1, - anon_sym_template, - ACTIONS(13758), 1, - anon_sym_COLON_COLON, - 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, + STATE(11746), 1, + sym_lambda_default_capture, + STATE(11279), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(3856), 1, - sym_operator_name, - STATE(7972), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10893), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304853] = 18, + [350657] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13760), 1, + ACTIONS(14633), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304916] = 18, + [350720] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13762), 1, + ACTIONS(14635), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304979] = 24, + [350783] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11882), 1, + anon_sym_requires, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + STATE(9710), 1, + sym__function_attributes_end, + STATE(9766), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [350846] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(14044), 1, + anon_sym_requires, + STATE(9699), 1, + sym__function_attributes_end, + STATE(9774), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [350909] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5960), 1, + anon_sym_EQ, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11947), 1, - anon_sym_STAR, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(13709), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13713), 1, - anon_sym_template, - ACTIONS(13764), 1, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14416), 1, + anon_sym_AMP, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - STATE(2083), 1, - sym_dependent_type_identifier, - STATE(2094), 1, - sym_template_type, - STATE(2114), 1, - sym_qualified_type_identifier, - STATE(3808), 1, + ACTIONS(14422), 1, + sym_this, + ACTIONS(14637), 1, + anon_sym_RBRACK, + STATE(3495), 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(7975), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10893), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(11746), 1, + sym_lambda_default_capture, + STATE(11279), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305054] = 24, + [350972] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11933), 1, + ACTIONS(12557), 1, anon_sym_STAR, - ACTIONS(13607), 1, + ACTIONS(14475), 1, anon_sym_TILDE, - ACTIONS(13613), 1, + ACTIONS(14481), 1, anon_sym_operator, - ACTIONS(13766), 1, + ACTIONS(14639), 1, sym_identifier, - ACTIONS(13768), 1, + ACTIONS(14641), 1, anon_sym_COLON_COLON, - ACTIONS(13770), 1, + ACTIONS(14643), 1, anon_sym_template, - STATE(2550), 1, + STATE(2243), 1, sym_template_type, - STATE(2551), 1, + STATE(2244), 1, sym_dependent_type_identifier, - STATE(2625), 1, + STATE(2247), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5836), 1, + STATE(4302), 1, sym_pointer_type_declarator, - STATE(5841), 1, + STATE(4315), 1, sym_template_function, - STATE(5845), 1, + STATE(4332), 1, sym_destructor_name, - STATE(5849), 1, + STATE(4336), 1, sym_dependent_identifier, - STATE(5861), 1, + STATE(4340), 1, sym_qualified_identifier, - STATE(5871), 1, + STATE(4343), 1, sym_operator_name, - STATE(7976), 1, + STATE(8956), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11053), 1, + STATE(12036), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [305129] = 18, + [351047] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 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(13772), 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, - [305192] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13774), 1, + ACTIONS(14645), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305255] = 18, + [351110] = 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(13776), 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, - [305318] = 18, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(13963), 1, + anon_sym___attribute__, + ACTIONS(13966), 1, + anon_sym___attribute, + ACTIONS(14101), 1, + anon_sym_requires, + STATE(9700), 1, + sym__function_attributes_end, + STATE(9777), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [351173] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13778), 1, + ACTIONS(14647), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305381] = 18, + [351236] = 24, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym___based, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13545), 1, + ACTIONS(12583), 1, anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, - anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13780), 1, + ACTIONS(14485), 1, + anon_sym_TILDE, + ACTIONS(14491), 1, + anon_sym_operator, + ACTIONS(14649), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(14651), 1, + anon_sym_COLON_COLON, + ACTIONS(14653), 1, + anon_sym_template, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(6345), 1, + sym_pointer_type_declarator, + STATE(6347), 1, + sym_template_function, + STATE(6348), 1, + sym_destructor_name, + STATE(6349), 1, + sym_dependent_identifier, + STATE(6351), 1, + sym_qualified_identifier, + STATE(6352), 1, + sym_operator_name, + STATE(8960), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 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(12075), 1, + sym_ms_based_modifier, + STATE(13053), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305444] = 18, + [351311] = 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(13782), 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, - [305507] = 18, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(14086), 1, + anon_sym___attribute__, + ACTIONS(14089), 1, + anon_sym___attribute, + ACTIONS(14409), 1, + anon_sym_requires, + STATE(9701), 1, + sym__function_attributes_end, + STATE(9781), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14241), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [351374] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(14086), 1, + anon_sym___attribute__, + ACTIONS(14089), 1, + anon_sym___attribute, + ACTIONS(14092), 1, + anon_sym_LBRACK_LBRACK, + STATE(9027), 1, + sym_trailing_return_type, + STATE(9578), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [351437] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + ACTIONS(13008), 1, + anon_sym___attribute__, + ACTIONS(13011), 1, + anon_sym___attribute, + ACTIONS(14003), 1, + anon_sym_requires, + STATE(9535), 1, + sym_trailing_return_type, + STATE(9694), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [351500] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + ACTIONS(13963), 1, + anon_sym___attribute__, + ACTIONS(13966), 1, + anon_sym___attribute, + ACTIONS(14060), 1, + anon_sym_requires, + STATE(9543), 1, + sym_trailing_return_type, + STATE(9695), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [351563] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + ACTIONS(14086), 1, + anon_sym___attribute__, + ACTIONS(14089), 1, + anon_sym___attribute, + ACTIONS(14244), 1, + anon_sym_requires, + STATE(9548), 1, + sym_trailing_return_type, + STATE(9696), 1, + sym__function_attributes_end, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(14241), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [351626] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13784), 1, + ACTIONS(14655), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305570] = 18, + [351689] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5952), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5960), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(14414), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(14416), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(14422), 1, sym_this, - ACTIONS(13786), 1, + ACTIONS(14657), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(11746), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(11279), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305633] = 18, + [351752] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, + ACTIONS(11439), 1, + anon_sym_requires, + ACTIONS(11950), 1, anon_sym_DASH_GT, - ACTIONS(13242), 1, + ACTIONS(13008), 1, anon_sym___attribute__, - ACTIONS(13245), 1, + ACTIONS(13011), 1, anon_sym___attribute, - ACTIONS(13536), 1, - anon_sym_requires, - STATE(8609), 1, - sym__function_attributes_end, - STATE(8735), 1, + STATE(9639), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9681), 1, + sym__function_attributes_end, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13396), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 3, + ACTIONS(7474), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [305696] = 21, + [351815] = 18, 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, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5960), 1, + anon_sym_EQ, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(13788), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13790), 1, - anon_sym_template, - STATE(3808), 1, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14416), 1, + anon_sym_AMP, + ACTIONS(14418), 1, + anon_sym_COLON_COLON, + ACTIONS(14422), 1, + sym_this, + ACTIONS(14659), 1, + anon_sym_RBRACK, + STATE(3495), 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(7986), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11156), 1, - sym_ms_based_modifier, - STATE(10768), 5, + STATE(11746), 1, + sym_lambda_default_capture, + STATE(11279), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305764] = 5, + [351878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13792), 1, - anon_sym_LBRACK_LBRACK, - STATE(7987), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 3, + ACTIONS(7442), 4, anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9075), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(7447), 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_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, + [351910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6815), 4, + anon_sym___attribute, anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6822), 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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, 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, - [305800] = 24, + [351942] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13797), 1, + ACTIONS(14663), 1, anon_sym_SEMI, - ACTIONS(13799), 1, + ACTIONS(14665), 1, anon_sym_COLON, - ACTIONS(13801), 1, + ACTIONS(14667), 1, anon_sym_LBRACE, - ACTIONS(13803), 1, + ACTIONS(14669), 1, anon_sym_LBRACK, - ACTIONS(13805), 1, + ACTIONS(14671), 1, anon_sym_EQ, - ACTIONS(13807), 1, + ACTIONS(14673), 1, anon_sym_try, - STATE(3359), 1, + STATE(3561), 1, sym_compound_statement, - STATE(3360), 1, + STATE(3562), 1, sym_default_method_clause, - STATE(3361), 1, + STATE(3563), 1, sym_delete_method_clause, - STATE(3362), 1, + STATE(3564), 1, sym_pure_virtual_clause, - STATE(3363), 1, + STATE(3565), 1, sym_try_statement, - STATE(4334), 1, + STATE(4853), 1, sym_parameter_list, - STATE(8856), 1, + STATE(9967), 1, sym__function_declarator_seq, - STATE(9176), 1, + STATE(10378), 1, sym_bitfield_clause, - STATE(9177), 1, + STATE(10379), 1, sym_initializer_list, - STATE(9185), 1, + STATE(10380), 1, aux_sym_field_declaration_repeat1, - STATE(11032), 1, + STATE(12412), 1, sym_attribute_specifier, - STATE(8678), 2, + STATE(9768), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [305874] = 18, + [352016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7149), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7151), 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_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, + [352048] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6415), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(11216), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(11218), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(11435), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(14003), 1, anon_sym_requires, - STATE(8845), 1, + STATE(9960), 1, sym__function_attributes_end, - STATE(8972), 1, + STATE(10100), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7791), 2, + ACTIONS(7474), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - [305936] = 21, + [352110] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -705740,112 +781002,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8554), 1, + ACTIONS(10703), 1, anon_sym_COLON_COLON, - ACTIONS(11860), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(13809), 1, + ACTIONS(14675), 1, sym_identifier, - ACTIONS(13811), 1, + ACTIONS(14677), 1, anon_sym_template, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8546), 1, - sym_pointer_type_declarator, - STATE(8547), 1, + STATE(4358), 1, sym_template_function, - STATE(8554), 1, - sym_destructor_name, - STATE(8557), 1, + STATE(4360), 1, sym_qualified_identifier, - STATE(8558), 1, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, sym_operator_name, - STATE(8602), 1, + STATE(4420), 1, sym_dependent_identifier, - STATE(11686), 1, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8975), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(12437), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [306004] = 18, + [352178] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14665), 1, + anon_sym_COLON, + ACTIONS(14669), 1, + anon_sym_LBRACK, + ACTIONS(14679), 1, + anon_sym_SEMI, + ACTIONS(14681), 1, + anon_sym_LBRACE, + ACTIONS(14683), 1, + anon_sym_EQ, + ACTIONS(14685), 1, + anon_sym_try, + STATE(3636), 1, + sym_pure_virtual_clause, + STATE(3676), 1, + sym_try_statement, + STATE(3754), 1, + sym_compound_statement, + STATE(3758), 1, + sym_default_method_clause, + STATE(3760), 1, + sym_delete_method_clause, + STATE(4853), 1, + sym_parameter_list, + STATE(9967), 1, + sym__function_declarator_seq, + STATE(10386), 1, + sym_bitfield_clause, + STATE(10387), 1, + sym_initializer_list, + STATE(10389), 1, + aux_sym_field_declaration_repeat1, + STATE(12589), 1, + sym_attribute_specifier, + STATE(9768), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7497), 19, + 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_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, + [352286] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7668), 4, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(10582), 1, + anon_sym___asm, + ACTIONS(7670), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(10584), 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, + anon_sym_requires, + [352320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7519), 4, anon_sym___attribute, - ACTIONS(10817), 1, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7521), 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_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, + [352352] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14687), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + STATE(8980), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2461), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9440), 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_LBRACE, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - ACTIONS(13205), 1, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - STATE(8853), 1, + [352388] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14060), 1, + anon_sym_requires, + STATE(9968), 1, + sym__function_attributes_end, + STATE(10079), 1, + sym_trailing_return_type, + STATE(10278), 1, + sym_gnu_asm_expression, + ACTIONS(6873), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7623), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(8941), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9014), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + [352450] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14665), 1, + anon_sym_COLON, + ACTIONS(14669), 1, + anon_sym_LBRACK, + ACTIONS(14690), 1, + anon_sym_SEMI, + ACTIONS(14692), 1, + anon_sym_LBRACE, + ACTIONS(14694), 1, + anon_sym_EQ, + ACTIONS(14696), 1, + anon_sym_try, + STATE(3164), 1, + sym_compound_statement, + STATE(3170), 1, + sym_default_method_clause, + STATE(3171), 1, + sym_delete_method_clause, + STATE(3172), 1, + sym_pure_virtual_clause, + STATE(3173), 1, + sym_try_statement, + STATE(4853), 1, + sym_parameter_list, + STATE(9967), 1, + sym__function_declarator_seq, + STATE(10301), 1, + sym_bitfield_clause, + STATE(10303), 1, + sym_initializer_list, + STATE(10304), 1, + aux_sym_field_declaration_repeat1, + STATE(12377), 1, + sym_attribute_specifier, + STATE(9768), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352524] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + anon_sym___asm, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14244), 1, + anon_sym_requires, + STATE(9953), 1, sym__function_attributes_end, - STATE(8949), 1, + STATE(10097), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(10278), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6873), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7966), 2, + ACTIONS(8287), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(8941), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(9014), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - [306066] = 14, + [352586] = 14, 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, + ACTIONS(12732), 1, sym_identifier, - ACTIONS(11997), 1, + ACTIONS(12734), 1, + anon_sym_LPAREN2, + ACTIONS(12736), 1, anon_sym_STAR, - ACTIONS(11999), 1, + ACTIONS(12738), 1, anon_sym_AMP_AMP, - ACTIONS(12001), 1, + ACTIONS(12740), 1, anon_sym_AMP, - STATE(8457), 1, + STATE(9459), 1, sym_ms_call_modifier, - STATE(9029), 1, + STATE(10202), 1, sym__field_declarator, - STATE(9236), 1, + STATE(10346), 1, sym_operator_name, - STATE(11191), 1, + STATE(12473), 1, sym_ms_based_modifier, ACTIONS(2242), 6, anon_sym___cdecl, @@ -705854,7 +781380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8839), 7, + STATE(9957), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -705862,7 +781388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [306120] = 21, + [352640] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -705871,139 +781397,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(13539), 1, + ACTIONS(14418), 1, + anon_sym_COLON_COLON, + ACTIONS(14698), 1, sym_identifier, - ACTIONS(13541), 1, + ACTIONS(14700), 1, anon_sym_template, - STATE(3808), 1, + STATE(3495), 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, + STATE(4358), 1, sym_template_function, - STATE(4016), 1, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, sym_operator_name, - STATE(4018), 1, + STATE(4420), 1, sym_dependent_identifier, - STATE(7993), 1, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [306188] = 18, + [352708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 4, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(10582), 1, + anon_sym___asm, + ACTIONS(7497), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13399), 1, - anon_sym_requires, - STATE(8843), 1, - sym__function_attributes_end, - STATE(8950), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_asm, anon_sym___asm__, - ACTIONS(8422), 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(8550), 2, - sym__function_postfix, - sym_requires_clause, - [306250] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, - 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_GT2, 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, - sym_attribute_specifier, - STATE(8678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [306324] = 21, + anon_sym_requires, + [352742] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -706012,95 +781474,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(13821), 1, + ACTIONS(14702), 1, sym_identifier, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(13825), 1, + ACTIONS(14706), 1, anon_sym_template, - STATE(3808), 1, + STATE(3495), 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, + STATE(4358), 1, sym_template_function, - STATE(4016), 1, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, sym_operator_name, - STATE(4018), 1, + STATE(4420), 1, sym_dependent_identifier, - STATE(7996), 1, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [306392] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13799), 1, - anon_sym_COLON, - ACTIONS(13803), 1, - anon_sym_LBRACK, - ACTIONS(13827), 1, - anon_sym_SEMI, - ACTIONS(13829), 1, - anon_sym_LBRACE, - ACTIONS(13831), 1, - anon_sym_EQ, - ACTIONS(13833), 1, - anon_sym_try, - STATE(2862), 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, - 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, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [306466] = 21, + [352810] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -706109,84 +781521,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3514), 1, anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(13549), 1, + ACTIONS(10711), 1, anon_sym_COLON_COLON, - ACTIONS(13835), 1, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(14401), 1, sym_identifier, - ACTIONS(13837), 1, + ACTIONS(14403), 1, anon_sym_template, - STATE(3808), 1, + STATE(3495), 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, + STATE(4358), 1, sym_template_function, - STATE(4016), 1, + STATE(4360), 1, + sym_qualified_identifier, + STATE(4383), 1, + sym_destructor_name, + STATE(4384), 1, sym_operator_name, - STATE(4018), 1, + STATE(4420), 1, sym_dependent_identifier, - STATE(7998), 1, + STATE(4438), 1, + sym_pointer_type_declarator, + STATE(8988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [306534] = 7, + [352878] = 21, 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(8358), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7966), 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, - [306573] = 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3514), 1, + anon_sym_TILDE, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10741), 1, + anon_sym_COLON_COLON, + ACTIONS(12617), 1, + anon_sym_STAR, + ACTIONS(14405), 1, + sym_identifier, + ACTIONS(14407), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8989), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(9524), 1, + sym_dependent_identifier, + STATE(9588), 1, + sym_pointer_type_declarator, + STATE(9589), 1, + sym_template_function, + STATE(9590), 1, + sym_destructor_name, + STATE(9594), 1, + sym_qualified_identifier, + STATE(9595), 1, + sym_operator_name, + STATE(12869), 1, + sym_ms_based_modifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [352946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 3, + ACTIONS(9275), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8887), 20, + ACTIONS(9277), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -706207,103 +781634,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306604] = 17, + [352977] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6835), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13839), 1, + ACTIONS(14708), 1, anon_sym_LBRACE, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - STATE(5061), 1, + STATE(5325), 1, sym_compound_statement, - STATE(8027), 1, + STATE(9018), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10264), 1, + STATE(11776), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [306663] = 17, + [353036] = 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, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(8597), 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, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14714), 1, + anon_sym_LBRACE, + STATE(7320), 1, + sym_compound_statement, + STATE(9015), 1, + sym_template_parameter_list, + STATE(9261), 1, + sym_parameter_list, + STATE(11508), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 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, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [353095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 3, + ACTIONS(14716), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9853), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8911), 20, + ACTIONS(9855), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, @@ -706311,379 +781740,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [306753] = 11, - ACTIONS(3), 1, - sym_comment, - 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(4613), 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, - 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, - [306800] = 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(8833), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8835), 17, - 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_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, - [306835] = 3, + [353128] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9921), 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(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, + ACTIONS(2422), 1, anon_sym_decltype, + ACTIONS(5194), 1, anon_sym_template, - [306866] = 17, - 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(13849), 1, - anon_sym_LBRACE, - ACTIONS(13851), 1, - anon_sym_requires, - STATE(5555), 1, - sym_compound_statement, - STATE(8091), 1, - sym_requires_clause, - STATE(8263), 1, - sym_parameter_list, - STATE(10520), 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, - [306925] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8597), 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(3009), 1, - sym_compound_statement, - STATE(8011), 1, - sym_template_parameter_list, - STATE(8263), 1, - sym_parameter_list, - STATE(10337), 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, - [306984] = 17, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + ACTIONS(14718), 1, + anon_sym_virtual, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9629), 1, + sym_access_specifier, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9007), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11187), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(14720), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [353187] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6835), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13855), 1, + ACTIONS(14722), 1, anon_sym_LBRACE, - STATE(6651), 1, + STATE(5549), 1, sym_compound_statement, - STATE(8014), 1, + STATE(8998), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10250), 1, + STATE(11724), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307043] = 17, + [353246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3149), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3147), 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, + [353277] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13421), 1, + ACTIONS(14315), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(14317), 1, anon_sym_COLON_COLON, - ACTIONS(13857), 1, + ACTIONS(14724), 1, anon_sym_virtual, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8536), 1, + STATE(9652), 1, sym_access_specifier, - STATE(8762), 1, + STATE(9832), 1, sym__scope_resolution, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(8021), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9603), 2, + STATE(10665), 2, sym__class_name, sym_qualified_type_identifier, - ACTIONS(13847), 3, + ACTIONS(14720), 3, anon_sym_private, anon_sym_public, anon_sym_protected, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [307102] = 17, + [353336] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, - anon_sym_requires, - ACTIONS(13853), 1, + ACTIONS(14722), 1, anon_sym_LBRACE, - STATE(2983), 1, + ACTIONS(14726), 1, + anon_sym_requires, + STATE(5554), 1, sym_compound_statement, - STATE(8140), 1, + STATE(9136), 1, sym_requires_clause, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10378), 1, + STATE(11766), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307161] = 17, + [353395] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, + ACTIONS(14726), 1, anon_sym_requires, - ACTIONS(13859), 1, + ACTIONS(14728), 1, anon_sym_LBRACE, - STATE(4832), 1, + STATE(3883), 1, sym_compound_statement, - STATE(8077), 1, + STATE(9121), 1, sym_requires_clause, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10423), 1, + STATE(11571), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307220] = 7, + [353454] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13161), 1, + ACTIONS(14098), 1, anon_sym_requires, - ACTIONS(13158), 2, + ACTIONS(14095), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 3, + ACTIONS(8285), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7966), 13, + ACTIONS(8287), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -706697,56 +782017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [307259] = 17, - 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(13851), 1, - anon_sym_requires, - ACTIONS(13855), 1, - anon_sym_LBRACE, - STATE(6665), 1, - sym_compound_statement, - STATE(8090), 1, - sym_requires_clause, - STATE(8263), 1, - sym_parameter_list, - STATE(10318), 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, - [307318] = 3, + [353493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 3, + ACTIONS(9352), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8956), 20, + ACTIONS(9354), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -706767,70 +782045,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [307349] = 3, + [353524] = 17, 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, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14728), 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, + STATE(3856), 1, + sym_compound_statement, + STATE(8999), 1, + sym_template_parameter_list, + STATE(9261), 1, + sym_parameter_list, + STATE(11442), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [353583] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14726), 1, anon_sym_requires, - [307380] = 3, + STATE(5560), 1, + sym_compound_statement, + STATE(9081), 1, + sym_requires_clause, + STATE(9261), 1, + sym_parameter_list, + STATE(11695), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [353642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8948), 20, + ACTIONS(10224), 9, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_STAR, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, 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, + anon_sym_LBRACK_COLON, + ACTIONS(10222), 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, + [353673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 3, + ACTIONS(9253), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8952), 20, + ACTIONS(9255), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -706851,129 +782185,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [307442] = 17, + [353704] = 5, 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, + ACTIONS(11433), 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, + STATE(8980), 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, - 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, + ACTIONS(9220), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9395), 16, + ACTIONS(9222), 17, + 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, - [307536] = 17, + [353739] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13421), 1, + ACTIONS(14315), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(14317), 1, anon_sym_COLON_COLON, - ACTIONS(13867), 1, + ACTIONS(14730), 1, anon_sym_virtual, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8508), 1, + STATE(9659), 1, sym_access_specifier, - STATE(8762), 1, + STATE(9832), 1, sym__scope_resolution, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9481), 2, + STATE(11144), 2, sym__class_name, sym_qualified_type_identifier, - ACTIONS(13847), 3, + ACTIONS(14720), 3, anon_sym_private, anon_sym_public, anon_sym_protected, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [307595] = 3, + [353798] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 3, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7472), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8706), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(7474), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -706985,120 +782287,90 @@ 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_noexcept, - anon_sym_throw, - anon_sym_requires, - [307626] = 3, + [353837] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 3, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7621), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8944), 20, + ACTIONS(7623), 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, + [353876] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6835), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13869), 1, + ACTIONS(14732), 1, anon_sym_LBRACE, - STATE(5139), 1, + STATE(9017), 1, sym_compound_statement, - STATE(8028), 1, + STATE(9029), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10460), 1, + STATE(11460), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 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, + [353935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 3, + ACTIONS(9271), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3153), 20, + ACTIONS(9273), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707119,182 +782391,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [307778] = 17, + [353966] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13839), 1, - anon_sym_LBRACE, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, + ACTIONS(14726), 1, anon_sym_requires, - STATE(5092), 1, + ACTIONS(14734), 1, + anon_sym_LBRACE, + STATE(5560), 1, sym_compound_statement, - STATE(8148), 1, + STATE(9070), 1, sym_requires_clause, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10541), 1, + STATE(11638), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307837] = 17, + [354025] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, + ACTIONS(14726), 1, anon_sym_requires, - ACTIONS(13869), 1, + ACTIONS(14736), 1, anon_sym_LBRACE, - STATE(5161), 1, + STATE(7424), 1, sym_compound_statement, - STATE(8101), 1, + STATE(9073), 1, sym_requires_clause, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10504), 1, + STATE(11605), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307896] = 17, + [354084] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, + STATE(8980), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9224), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9226), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13843), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, - ACTIONS(13851), 1, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(13871), 1, - anon_sym_LBRACE, - STATE(6453), 1, - sym_compound_statement, - STATE(8079), 1, - sym_requires_clause, - STATE(8263), 1, - sym_parameter_list, - STATE(10430), 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, - [307955] = 17, + [354119] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13873), 1, + ACTIONS(14714), 1, anon_sym_LBRACE, - STATE(3595), 1, + ACTIONS(14726), 1, + anon_sym_requires, + STATE(7328), 1, sym_compound_statement, - STATE(8062), 1, - sym_template_parameter_list, - STATE(8263), 1, + STATE(9090), 1, + sym_requires_clause, + STATE(9261), 1, sym_parameter_list, - STATE(10615), 1, + STATE(11483), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308014] = 3, + [354178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9378), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9380), 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, + [354209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 3, + ACTIONS(9279), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8994), 20, + ACTIONS(9281), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707315,25 +782603,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308045] = 7, + [354240] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14708), 1, + anon_sym_LBRACE, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14726), 1, + anon_sym_requires, + STATE(5470), 1, + sym_compound_statement, + STATE(9133), 1, + sym_requires_clause, + STATE(9261), 1, + sym_parameter_list, + STATE(11662), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [354299] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 1, + ACTIONS(13086), 1, anon_sym_requires, - ACTIONS(8160), 2, + ACTIONS(13083), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 3, + ACTIONS(7472), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8907), 13, + ACTIONS(7474), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707347,27 +782677,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308084] = 3, + [354338] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 3, + ACTIONS(14716), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(14738), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9737), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9013), 20, + ACTIONS(9739), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, anon_sym_final, @@ -707375,21 +782707,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308115] = 4, + [354373] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(13865), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9322), 3, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14726), 1, + anon_sym_requires, + ACTIONS(14740), 1, + anon_sym_LBRACE, + STATE(9104), 1, + sym_requires_clause, + STATE(9261), 1, + sym_parameter_list, + STATE(9439), 1, + sym_compound_statement, + STATE(11793), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [354432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9360), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9324), 18, + ACTIONS(9362), 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 +782769,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,46 +782777,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308148] = 7, + [354463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13254), 1, - anon_sym_requires, - 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(8424), 3, + ACTIONS(9329), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8422), 13, + ACTIONS(9331), 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, - [308187] = 3, + anon_sym_requires, + [354494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 3, + ACTIONS(9329), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8994), 20, + ACTIONS(9331), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707464,14 +782833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308218] = 3, + [354525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 3, + ACTIONS(9329), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8994), 20, + ACTIONS(9331), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707492,25 +782861,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308249] = 7, + [354556] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 1, + ACTIONS(10963), 1, anon_sym_requires, - ACTIONS(8160), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9263), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 3, + ACTIONS(9267), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7791), 13, + ACTIONS(9269), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707524,56 +782893,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308288] = 17, + [354595] = 7, 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, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9253), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9336), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9338), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13875), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(8015), 1, - sym_compound_statement, - STATE(8044), 1, - sym_template_parameter_list, - STATE(8263), 1, - sym_parameter_list, - STATE(10614), 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, - [308347] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [354634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 3, + ACTIONS(9292), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8998), 20, + ACTIONS(9294), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707594,103 +782953,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308378] = 17, + [354665] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13859), 1, + ACTIONS(14726), 1, + anon_sym_requires, + ACTIONS(14732), 1, anon_sym_LBRACE, - STATE(4877), 1, + STATE(9042), 1, sym_compound_statement, - STATE(8012), 1, - sym_template_parameter_list, - STATE(8263), 1, + STATE(9129), 1, + sym_requires_clause, + STATE(9261), 1, sym_parameter_list, - STATE(10492), 1, + STATE(11516), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308437] = 17, + [354724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(9061), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9063), 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, - ACTIONS(10372), 1, + 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, - ACTIONS(10374), 1, anon_sym_throw, - ACTIONS(13795), 1, + anon_sym_requires, + [354755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9296), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9298), 20, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13849), 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(5686), 1, - sym_compound_statement, - STATE(8007), 1, - sym_template_parameter_list, - STATE(8263), 1, - sym_parameter_list, - STATE(10443), 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, - [308496] = 5, + 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, + [354786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - STATE(7987), 2, + STATE(8980), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 3, + ACTIONS(9393), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8839), 17, + ACTIONS(9395), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -707708,109 +783081,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308531] = 17, - 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(13851), 1, - anon_sym_requires, - ACTIONS(13875), 1, - anon_sym_LBRACE, - STATE(8016), 1, - sym_compound_statement, - STATE(8117), 1, - sym_requires_clause, - STATE(8263), 1, - sym_parameter_list, - STATE(10393), 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, - [308590] = 17, + [354821] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6835), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13877), 1, + ACTIONS(14742), 1, anon_sym_LBRACE, - STATE(5146), 1, + STATE(6344), 1, sym_compound_statement, - STATE(8053), 1, + STATE(9047), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10525), 1, + STATE(11419), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308649] = 7, + [354880] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13882), 1, + ACTIONS(10963), 1, anon_sym_requires, - ACTIONS(13879), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 3, + ACTIONS(8285), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8907), 13, + ACTIONS(8287), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707824,98 +783155,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308688] = 17, + [354919] = 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, + ACTIONS(9263), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9265), 20, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13871), 1, - anon_sym_LBRACE, - STATE(6430), 1, - sym_compound_statement, - STATE(8029), 1, - sym_template_parameter_list, - STATE(8263), 1, - sym_parameter_list, - STATE(10295), 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, - [308747] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, 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(13851), 1, - anon_sym_requires, - ACTIONS(13885), 1, 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, + [354950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 3, + ACTIONS(3178), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9002), 20, + ACTIONS(3176), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707936,25 +783211,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308837] = 7, + [354981] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14736), 1, + anon_sym_LBRACE, + STATE(7514), 1, + sym_compound_statement, + STATE(9013), 1, + sym_template_parameter_list, + STATE(9261), 1, + sym_parameter_list, + STATE(11566), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [355040] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13890), 1, + ACTIONS(14747), 1, anon_sym_requires, - ACTIONS(13887), 2, + ACTIONS(14744), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8301), 2, + STATE(9253), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8913), 3, + ACTIONS(9336), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8915), 13, + ACTIONS(9338), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707968,25 +783285,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308876] = 7, + [355079] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 1, + ACTIONS(13975), 1, anon_sym_requires, - ACTIONS(8160), 2, + ACTIONS(13972), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8301), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8913), 3, + ACTIONS(7621), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8915), 13, + ACTIONS(7623), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708000,234 +783317,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308915] = 17, + [355118] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - STATE(5061), 1, + ACTIONS(14726), 1, + anon_sym_requires, + ACTIONS(14750), 1, + anon_sym_LBRACE, + STATE(3436), 1, sym_compound_statement, - STATE(8055), 1, - sym_template_parameter_list, - STATE(8263), 1, + STATE(9110), 1, + sym_requires_clause, + STATE(9261), 1, sym_parameter_list, - STATE(10595), 1, + STATE(11690), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308974] = 17, + [355177] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, - anon_sym_requires, - ACTIONS(13877), 1, + ACTIONS(14750), 1, anon_sym_LBRACE, - STATE(5183), 1, + STATE(3415), 1, sym_compound_statement, - STATE(8147), 1, - sym_requires_clause, - STATE(8263), 1, + STATE(9040), 1, + sym_template_parameter_list, + STATE(9261), 1, sym_parameter_list, - STATE(10209), 1, + STATE(11825), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [309033] = 7, + [355236] = 3, 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, + ACTIONS(9313), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7791), 13, + ACTIONS(9315), 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, - [309072] = 17, + anon_sym_requires, + [355267] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, - anon_sym_requires, - STATE(5092), 1, - sym_compound_statement, - STATE(8134), 1, - sym_requires_clause, - STATE(8263), 1, + ACTIONS(14740), 1, + anon_sym_LBRACE, + STATE(9021), 1, + sym_template_parameter_list, + STATE(9261), 1, sym_parameter_list, - STATE(10329), 1, + STATE(9445), 1, + sym_compound_statement, + STATE(11768), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [309131] = 5, + [355326] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - STATE(7987), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9073), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + ACTIONS(14712), 1, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [309166] = 7, - 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, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8422), 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, - [309205] = 3, + STATE(5581), 1, + sym_compound_statement, + STATE(9003), 1, + sym_template_parameter_list, + STATE(9261), 1, + sym_parameter_list, + STATE(11637), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [355385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 3, + ACTIONS(9356), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8895), 20, + ACTIONS(9358), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708248,80 +783541,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [309236] = 3, + [355416] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8903), 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(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8597), 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, - anon_sym_requires, - [309267] = 17, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + ACTIONS(14752), 1, + anon_sym_virtual, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9555), 1, + sym_access_specifier, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10558), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(14720), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [355475] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13885), 1, + ACTIONS(14726), 1, + anon_sym_requires, + ACTIONS(14742), 1, anon_sym_LBRACE, - STATE(8048), 1, - sym_template_parameter_list, - STATE(8263), 1, - sym_parameter_list, - STATE(8378), 1, + STATE(6323), 1, sym_compound_statement, - STATE(10585), 1, + STATE(9094), 1, + sym_requires_clause, + STATE(9261), 1, + sym_parameter_list, + STATE(11461), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [309326] = 3, + [355534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9738), 9, + ACTIONS(10365), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -708331,7 +783638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, anon_sym_LBRACK_COLON, - ACTIONS(9736), 14, + ACTIONS(10363), 14, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -708346,70 +783653,186 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [309357] = 17, + [355565] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14726), 1, + anon_sym_requires, + ACTIONS(14754), 1, + anon_sym_LBRACE, + STATE(5565), 1, + sym_compound_statement, + STATE(9134), 1, + sym_requires_clause, + STATE(9261), 1, + sym_parameter_list, + STATE(11530), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [355624] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14759), 1, + anon_sym_requires, + ACTIONS(14756), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9263), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9267), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9269), 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, + [355663] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14734), 1, + anon_sym_LBRACE, + STATE(5581), 1, + sym_compound_statement, + STATE(9012), 1, + sym_template_parameter_list, + STATE(9261), 1, + sym_parameter_list, + STATE(11551), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [355722] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, - anon_sym_requires, - ACTIONS(13873), 1, + ACTIONS(14754), 1, anon_sym_LBRACE, - STATE(3670), 1, + STATE(5543), 1, sym_compound_statement, - STATE(8129), 1, - sym_requires_clause, - STATE(8263), 1, + STATE(9049), 1, + sym_template_parameter_list, + STATE(9261), 1, sym_parameter_list, - STATE(10385), 1, + STATE(11484), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [309416] = 9, + [355781] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10951), 1, anon_sym_DASH_GT, - ACTIONS(12418), 1, + ACTIONS(14098), 1, anon_sym_requires, - STATE(8013), 1, + STATE(9038), 1, sym_trailing_return_type, - ACTIONS(7789), 2, + ACTIONS(8285), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(12415), 2, + ACTIONS(14095), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 11, + ACTIONS(8287), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708421,106 +783844,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309458] = 15, + [355823] = 5, 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(13543), 1, - sym_identifier, - ACTIONS(13545), 1, - anon_sym_STAR, - ACTIONS(13549), 1, - anon_sym_COLON_COLON, - ACTIONS(13893), 1, + ACTIONS(14764), 1, + anon_sym_LPAREN2, + STATE(9146), 1, + sym_preproc_argument_list, + ACTIONS(14766), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(13895), 1, - sym_this, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10184), 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, - [309512] = 15, - 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(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14762), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, 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_PERCENT, + anon_sym_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, + [355857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(13161), 1, - anon_sym_requires, - STATE(8035), 1, - sym_trailing_return_type, - ACTIONS(7968), 2, + ACTIONS(5623), 3, anon_sym___attribute, anon_sym_LBRACK, - 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), 11, + anon_sym___asm, + ACTIONS(5625), 19, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708529,31 +783890,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_RBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [309608] = 9, + anon_sym_requires, + [355887] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10951), 1, anon_sym_DASH_GT, - ACTIONS(13254), 1, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8046), 1, + STATE(9009), 1, sym_trailing_return_type, - ACTIONS(8424), 2, + ACTIONS(7472), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(13251), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 11, + ACTIONS(7474), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708565,28 +783933,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309650] = 9, + [355929] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10951), 1, anon_sym_DASH_GT, - ACTIONS(13882), 1, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8050), 1, + STATE(9034), 1, sym_trailing_return_type, - ACTIONS(8905), 2, + ACTIONS(7621), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(13879), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 11, + ACTIONS(7623), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708598,28 +783966,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309692] = 9, + [355971] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10951), 1, anon_sym_DASH_GT, - ACTIONS(10382), 1, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8057), 1, + STATE(9027), 1, sym_trailing_return_type, - ACTIONS(7968), 2, + ACTIONS(8285), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(8160), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 11, + ACTIONS(8287), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708631,28 +783999,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309734] = 9, + [356013] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10951), 1, anon_sym_DASH_GT, - ACTIONS(10382), 1, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8032), 1, + STATE(9026), 1, sym_trailing_return_type, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8424), 2, + ACTIONS(9336), 2, anon_sym___attribute, anon_sym_LBRACK, - STATE(8114), 2, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(9253), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 11, + ACTIONS(9338), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708664,46 +784032,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309776] = 12, + [356055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(9429), 1, + ACTIONS(5619), 3, 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, + anon_sym___asm, + ACTIONS(5621), 19, + 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_RBRACK, 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, - [309824] = 3, + [356085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9806), 8, + ACTIONS(10397), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -708712,7 +784071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, anon_sym_LBRACK_COLON, - ACTIONS(9804), 14, + ACTIONS(10395), 14, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -708727,28 +784086,28 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [309854] = 9, + [356115] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10951), 1, anon_sym_DASH_GT, - ACTIONS(10382), 1, + ACTIONS(14747), 1, anon_sym_requires, - STATE(8051), 1, + STATE(9050), 1, sym_trailing_return_type, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8905), 2, + ACTIONS(9336), 2, anon_sym___attribute, anon_sym_LBRACK, - STATE(8114), 2, + ACTIONS(14744), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(9253), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 11, + ACTIONS(9338), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708760,57 +784119,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309896] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13901), 1, - anon_sym_LPAREN2, - STATE(8155), 1, - sym_preproc_argument_list, - ACTIONS(13903), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13899), 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, - [309930] = 9, + [356157] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10951), 1, anon_sym_DASH_GT, - ACTIONS(10382), 1, + ACTIONS(13975), 1, anon_sym_requires, - STATE(7999), 1, + STATE(9000), 1, sym_trailing_return_type, - ACTIONS(7789), 2, + ACTIONS(7621), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(8160), 2, + ACTIONS(13972), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 11, + ACTIONS(7623), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708822,663 +784152,395 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309972] = 14, + [356199] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13905), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13907), 1, - sym_primitive_type, - STATE(3126), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14418), 1, + anon_sym_COLON_COLON, + ACTIONS(14768), 1, + anon_sym_AMP, + ACTIONS(14770), 1, + sym_this, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8738), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(3192), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(12785), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10768), 5, + STATE(9224), 1, + sym_splice_specifier, + STATE(11512), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310023] = 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(13859), 1, - anon_sym_LBRACE, - STATE(4927), 1, - sym_compound_statement, - STATE(8263), 1, - sym_parameter_list, - STATE(10453), 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, - [310076] = 16, + [356253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, + ACTIONS(7566), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(7568), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(13911), 1, anon_sym_RPAREN, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13919), 1, + anon_sym_LPAREN2, 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(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(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, - 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, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym_COLON_COLON, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [310225] = 9, + anon_sym_requires, + [356283] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10592), 1, + ACTIONS(10951), 1, anon_sym_DASH_GT, - STATE(8051), 1, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(9039), 1, sym_trailing_return_type, - ACTIONS(8160), 2, + ACTIONS(7472), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(13083), 2, anon_sym_final, anon_sym_override, - ACTIONS(8905), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 10, + ACTIONS(7474), 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_try, - [310266] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, - anon_sym_LPAREN2, - ACTIONS(13941), 1, - anon_sym_SEMI, - ACTIONS(13943), 1, - anon_sym_LBRACE, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(13951), 1, + anon_sym_GT2, anon_sym_try, - STATE(437), 1, - sym_compound_statement, - STATE(438), 1, - sym_try_statement, - 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, - [310327] = 14, + [356325] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5952), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13953), 1, + ACTIONS(14412), 1, sym_identifier, - ACTIONS(13955), 1, - sym_primitive_type, - STATE(2153), 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(12801), 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, - [310378] = 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(6469), 1, + ACTIONS(14414), 1, + anon_sym_STAR, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(13957), 1, - sym_identifier, - ACTIONS(13959), 1, - sym_primitive_type, - STATE(3808), 1, + ACTIONS(14768), 1, + anon_sym_AMP, + ACTIONS(14772), 1, + sym_this, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3824), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(8985), 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(9224), 1, + sym_splice_specifier, + STATE(10818), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310429] = 14, + [356379] = 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(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13905), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(13907), 1, - sym_primitive_type, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8738), 1, - sym__scope_resolution, - STATE(3192), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(2244), 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, - [310480] = 14, + ACTIONS(14776), 1, + anon_sym_RPAREN, + ACTIONS(14778), 1, + anon_sym_LPAREN2, + ACTIONS(14780), 1, + anon_sym_defined, + ACTIONS(14786), 1, + sym_number_literal, + ACTIONS(14782), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14784), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14788), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(9139), 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, + [356422] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11081), 1, + ACTIONS(13540), 1, anon_sym_COLON_COLON, - ACTIONS(13961), 1, + ACTIONS(14790), 1, sym_identifier, - ACTIONS(13963), 1, + ACTIONS(14792), 1, sym_primitive_type, - STATE(3488), 1, + STATE(2624), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8675), 1, + STATE(9822), 1, sym__scope_resolution, - STATE(3953), 2, + STATE(5760), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(4310), 4, + ACTIONS(13542), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310531] = 9, + [356473] = 15, 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, - 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, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14734), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [310572] = 14, + STATE(5615), 1, + sym_compound_statement, + STATE(9261), 1, + sym_parameter_list, + STATE(11597), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [356526] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11010), 1, + ACTIONS(11595), 1, anon_sym_COLON_COLON, - ACTIONS(13965), 1, + ACTIONS(14794), 1, sym_identifier, - ACTIONS(13967), 1, + ACTIONS(14796), 1, sym_primitive_type, - STATE(2180), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(6894), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(9224), 1, sym_splice_specifier, - STATE(8682), 1, + STATE(9795), 1, sym__scope_resolution, - STATE(2827), 2, + STATE(8056), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3728), 4, + ACTIONS(11597), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310623] = 14, + [356577] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11059), 1, + ACTIONS(13450), 1, anon_sym_COLON_COLON, - ACTIONS(13969), 1, + ACTIONS(14798), 1, sym_identifier, - ACTIONS(13971), 1, + ACTIONS(14800), 1, sym_primitive_type, - STATE(3490), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(9224), 1, sym_splice_specifier, - STATE(8676), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(4445), 2, + STATE(3902), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(4395), 4, + ACTIONS(13452), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310674] = 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(13855), 1, - anon_sym_LBRACE, - STATE(6681), 1, - sym_compound_statement, - STATE(8263), 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, + [356628] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13849), 1, + ACTIONS(14736), 1, anon_sym_LBRACE, - STATE(5548), 1, + STATE(7463), 1, sym_compound_statement, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10322), 1, + STATE(11629), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [310780] = 15, + [356681] = 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, + ACTIONS(12734), 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, + ACTIONS(12752), 1, sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, + ACTIONS(12754), 1, anon_sym_STAR, - ACTIONS(11991), 1, + ACTIONS(12756), 1, anon_sym_AMP_AMP, - ACTIONS(11993), 1, + ACTIONS(12758), 1, anon_sym_AMP, - ACTIONS(13975), 1, + ACTIONS(14802), 1, anon_sym_SEMI, - STATE(7997), 1, + STATE(8982), 1, sym__field_declarator, - STATE(8807), 1, + STATE(9871), 1, sym_operator_name, - STATE(10687), 1, + STATE(12436), 1, sym_ms_based_modifier, - STATE(10876), 1, + STATE(12889), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(8839), 7, + STATE(9957), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -709486,1094 +784548,779 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [310886] = 14, + [356734] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11089), 1, + ACTIONS(13847), 1, anon_sym_COLON_COLON, - ACTIONS(13977), 1, + ACTIONS(14804), 1, sym_identifier, - ACTIONS(13979), 1, + ACTIONS(14806), 1, sym_primitive_type, - STATE(2283), 1, + STATE(2739), 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(4423), 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, - [310937] = 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(13172), 1, - anon_sym_COLON_COLON, - ACTIONS(13981), 1, - sym_identifier, - ACTIONS(13983), 1, - sym_primitive_type, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7700), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8695), 1, + STATE(9816), 1, sym__scope_resolution, - STATE(4741), 2, + STATE(6263), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(13174), 4, + ACTIONS(13849), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310988] = 19, + [356785] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(2312), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(14685), 1, + anon_sym_try, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(14810), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14812), 1, + anon_sym_SEMI, + ACTIONS(14814), 1, + anon_sym_LBRACE, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, + ACTIONS(14818), 1, anon_sym_EQ, - ACTIONS(13985), 1, - anon_sym_SEMI, - ACTIONS(13987), 1, - anon_sym_try, - STATE(1007), 1, + STATE(3720), 1, sym_compound_statement, - STATE(1008), 1, + STATE(3744), 1, sym_try_statement, - STATE(4564), 1, + STATE(5113), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(9692), 1, + STATE(11179), 1, sym_gnu_asm_expression, - STATE(9729), 1, + STATE(11181), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, + STATE(11447), 2, sym_argument_list, sym_initializer_list, - [311049] = 3, + [356846] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 3, - anon_sym___attribute, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(9039), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8891), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 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_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [311078] = 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(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13965), 1, - sym_identifier, - ACTIONS(13967), 1, - sym_primitive_type, - STATE(2360), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 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(13036), 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, - [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, + [356887] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(13975), 1, + anon_sym_requires, + STATE(9000), 1, + sym_trailing_return_type, + ACTIONS(7621), 2, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 10, 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, - ACTIONS(13993), 1, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(13995), 1, - anon_sym_try, - STATE(813), 1, - sym_compound_statement, - STATE(835), 1, - sym_try_statement, - 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_EQ, 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, - [311243] = 15, + anon_sym_try, + [356928] = 9, 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, + ACTIONS(11226), 1, anon_sym_DASH_GT, - ACTIONS(13869), 1, - anon_sym_LBRACE, - STATE(5170), 1, - sym_compound_statement, - STATE(8263), 1, - sym_parameter_list, - STATE(10531), 1, - sym_lambda_declarator, - STATE(10827), 1, + ACTIONS(14098), 1, + anon_sym_requires, + STATE(9038), 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, - [311296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8897), 3, - anon_sym___attribute, + ACTIONS(8285), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8899), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(14095), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 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_DASH_GT, - anon_sym_final, - anon_sym_override, - 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, + [356969] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13997), 2, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + ACTIONS(14747), 1, + anon_sym_requires, + STATE(9050), 1, + sym_trailing_return_type, + ACTIONS(9336), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14744), 2, anon_sym_final, anon_sym_override, - STATE(8104), 2, + STATE(9108), 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(9253), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 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, - 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, + [357010] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, - sym_identifier, - ACTIONS(14006), 1, - anon_sym_RPAREN, - ACTIONS(14008), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, - anon_sym_defined, - ACTIONS(14016), 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(8078), 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, - [311554] = 19, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + STATE(5615), 1, + sym_compound_statement, + STATE(9261), 1, + sym_parameter_list, + STATE(11709), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [357063] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13833), 1, - anon_sym_try, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(14810), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, + ACTIONS(14818), 1, anon_sym_EQ, - ACTIONS(14020), 1, + ACTIONS(14822), 1, anon_sym_SEMI, - ACTIONS(14022), 1, + ACTIONS(14824), 1, anon_sym_LBRACE, - STATE(2855), 1, + ACTIONS(14826), 1, + anon_sym_try, + STATE(835), 1, sym_compound_statement, - STATE(2874), 1, + STATE(857), 1, sym_try_statement, - STATE(4564), 1, + STATE(5113), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(10066), 1, + STATE(11146), 1, sym_gnu_asm_expression, - STATE(10067), 1, + STATE(11148), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, + STATE(11447), 2, sym_argument_list, sym_initializer_list, - [311615] = 14, - ACTIONS(3), 1, + [357124] = 5, + ACTIONS(14762), 1, + anon_sym_LF, + ACTIONS(14828), 1, + anon_sym_LPAREN2, + ACTIONS(14830), 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(2449), 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(13050), 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, - [311666] = 14, + STATE(9345), 1, + sym_preproc_argument_list, + ACTIONS(14766), 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, + [357157] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - ACTIONS(13971), 1, - sym_primitive_type, - ACTIONS(14028), 1, + ACTIONS(14832), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6642), 1, + ACTIONS(14834), 1, + sym_primitive_type, + STATE(2389), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8745), 1, + STATE(9817), 1, sym__scope_resolution, - STATE(4445), 2, + STATE(2964), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3200), 4, + ACTIONS(4110), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311717] = 14, + [357208] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14836), 1, + anon_sym_COMMA, + ACTIONS(14838), 1, + anon_sym_RPAREN, + ACTIONS(14844), 1, + anon_sym_SLASH, + ACTIONS(14846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14848), 1, + anon_sym_AMP_AMP, + ACTIONS(14850), 1, + anon_sym_PIPE, + ACTIONS(14852), 1, + anon_sym_CARET, + ACTIONS(14854), 1, + anon_sym_AMP, + STATE(11042), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(14840), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14842), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14856), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14858), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14860), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14862), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [357263] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11111), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(13961), 1, + ACTIONS(14864), 1, sym_identifier, - ACTIONS(13963), 1, + ACTIONS(14866), 1, sym_primitive_type, - STATE(2941), 1, + STATE(2277), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8707), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(3953), 2, + STATE(2682), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3867), 4, + ACTIONS(3796), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311768] = 3, + [357314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 3, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6774), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8981), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(14868), 1, + anon_sym_LT, + STATE(9257), 1, + sym_template_argument_list, + ACTIONS(6781), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [311797] = 14, + [357349] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(14030), 1, + ACTIONS(14870), 1, sym_identifier, - ACTIONS(14032), 1, + ACTIONS(14872), 1, sym_primitive_type, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6426), 1, + STATE(3339), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8700), 1, + STATE(9761), 1, sym__scope_resolution, - STATE(7626), 2, + STATE(4369), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(10990), 4, + ACTIONS(3244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311848] = 5, - 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, - anon_sym___asm, - ACTIONS(9141), 14, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [311881] = 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(13885), 1, - anon_sym_LBRACE, - STATE(8263), 1, - sym_parameter_list, - STATE(8369), 1, - sym_compound_statement, - STATE(10272), 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, - [311934] = 3, + [357400] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8940), 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, - [311963] = 15, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, + anon_sym_COLON_COLON, + ACTIONS(14872), 1, + sym_primitive_type, + ACTIONS(14874), 1, + sym_identifier, + STATE(3339), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9755), 1, + sym__scope_resolution, + STATE(4369), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3244), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [357451] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13875), 1, + ACTIONS(14714), 1, anon_sym_LBRACE, - STATE(8058), 1, + STATE(7260), 1, sym_compound_statement, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10245), 1, + STATE(11672), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [312016] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14004), 1, - sym_identifier, - ACTIONS(14008), 1, - anon_sym_LPAREN2, - ACTIONS(14010), 1, - anon_sym_defined, - ACTIONS(14034), 1, - anon_sym_RPAREN, - ACTIONS(14036), 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(8145), 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, - [312059] = 14, + [357504] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(14038), 1, + ACTIONS(11695), 1, + anon_sym_COLON_COLON, + ACTIONS(14876), 1, sym_identifier, - ACTIONS(14040), 1, + ACTIONS(14878), 1, sym_primitive_type, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4387), 1, + STATE(2337), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8757), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(6060), 2, + STATE(2727), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(5142), 4, + ACTIONS(3864), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312110] = 14, + [357555] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11097), 1, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - ACTIONS(14000), 1, + ACTIONS(14880), 1, sym_identifier, - ACTIONS(14002), 1, + ACTIONS(14882), 1, sym_primitive_type, - STATE(2263), 1, + STATE(3348), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8702), 1, + STATE(9844), 1, sym__scope_resolution, - STATE(2913), 2, + STATE(4427), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3833), 4, + ACTIONS(4250), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312161] = 19, + [357606] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(14774), 1, + sym_identifier, + ACTIONS(14778), 1, + anon_sym_LPAREN2, + ACTIONS(14780), 1, + anon_sym_defined, + ACTIONS(14884), 1, + anon_sym_RPAREN, + ACTIONS(14886), 1, + sym_number_literal, + ACTIONS(14782), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14784), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14788), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(9085), 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, + [357649] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13807), 1, - anon_sym_try, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(14042), 1, - anon_sym_SEMI, - ACTIONS(14044), 1, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14742), 1, anon_sym_LBRACE, - STATE(3431), 1, + STATE(6156), 1, sym_compound_statement, - STATE(3432), 1, - sym_try_statement, - STATE(4564), 1, + STATE(9261), 1, sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9889), 1, - sym_gnu_asm_expression, - STATE(9890), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, + STATE(11491), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [312222] = 16, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [357702] = 14, 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, + ACTIONS(5190), 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, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(14000), 1, + ACTIONS(14888), 1, sym_identifier, - ACTIONS(14002), 1, + ACTIONS(14890), 1, sym_primitive_type, - STATE(2093), 1, + STATE(3245), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8763), 1, + STATE(9818), 1, sym__scope_resolution, - STATE(2226), 2, + STATE(4282), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3974), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312328] = 9, + [357753] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(12418), 1, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8013), 1, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + STATE(9009), 1, sym_trailing_return_type, - ACTIONS(7789), 2, + ACTIONS(7472), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(12415), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9335), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 10, + ACTIONS(7474), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -710584,60 +785331,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [312369] = 9, + [357794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13161), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(7543), 1, + anon_sym___attribute, + ACTIONS(14868), 1, + anon_sym_LT, + STATE(9257), 1, + sym_template_argument_list, + ACTIONS(5689), 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, - STATE(8035), 1, - sym_trailing_return_type, - ACTIONS(7968), 2, + [357829] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14892), 1, + anon_sym_LPAREN2, + ACTIONS(9372), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(13158), 2, + ACTIONS(9374), 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, + [357860] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14894), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9099), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 10, + ACTIONS(9471), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9473), 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, - [312410] = 9, + anon_sym_requires, + [357893] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13254), 1, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8046), 1, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + STATE(9034), 1, sym_trailing_return_type, - ACTIONS(8424), 2, + ACTIONS(7621), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(13251), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 10, + ACTIONS(7623), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -710648,28 +785447,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [312451] = 9, + [357934] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13882), 1, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8050), 1, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + STATE(9027), 1, sym_trailing_return_type, - ACTIONS(8905), 2, + ACTIONS(8285), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(13879), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 10, + ACTIONS(8287), 10, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -710680,350 +785479,387 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [312492] = 19, + [357975] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(2312), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13819), 1, - anon_sym_try, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(14810), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, + ACTIONS(14818), 1, anon_sym_EQ, - ACTIONS(14055), 1, + ACTIONS(14897), 1, anon_sym_SEMI, - ACTIONS(14057), 1, - anon_sym_LBRACE, - STATE(3476), 1, + ACTIONS(14899), 1, + anon_sym_try, + STATE(981), 1, sym_compound_statement, - STATE(3477), 1, + STATE(982), 1, sym_try_statement, - STATE(4564), 1, + STATE(5113), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(10143), 1, + STATE(10886), 1, sym_gnu_asm_expression, - STATE(10144), 1, + STATE(10926), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, + STATE(11447), 2, sym_argument_list, sym_initializer_list, - [312553] = 15, + [358036] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11226), 1, + anon_sym_DASH_GT, + STATE(9026), 1, + sym_trailing_return_type, + ACTIONS(9336), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9253), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 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, + [358077] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13873), 1, + ACTIONS(14740), 1, anon_sym_LBRACE, - STATE(3636), 1, - sym_compound_statement, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10495), 1, + STATE(9378), 1, + sym_compound_statement, + STATE(11800), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [312606] = 14, + [358130] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11073), 1, + ACTIONS(11510), 1, + anon_sym_COLON_COLON, + ACTIONS(14901), 1, + sym_identifier, + ACTIONS(14903), 1, + sym_primitive_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8539), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9814), 1, + sym__scope_resolution, + STATE(3902), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(11512), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [358181] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11285), 1, anon_sym_COLON_COLON, - ACTIONS(14024), 1, + ACTIONS(14905), 1, sym_identifier, - ACTIONS(14026), 1, + ACTIONS(14907), 1, sym_primitive_type, - STATE(2356), 1, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8686), 1, + STATE(9836), 1, sym__scope_resolution, - STATE(3211), 2, + STATE(3157), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(4058), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312657] = 16, + [358232] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, - anon_sym_COMMA, - 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(14059), 1, - anon_sym_RPAREN, - STATE(9875), 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, - [312712] = 9, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13577), 1, + anon_sym_COLON_COLON, + ACTIONS(14909), 1, + sym_identifier, + ACTIONS(14911), 1, + sym_primitive_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(3645), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9760), 1, + sym__scope_resolution, + STATE(6941), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(13579), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [358283] = 5, 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, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9099), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 10, + ACTIONS(9499), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9501), 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, - [312753] = 4, + anon_sym_requires, + [358316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14061), 1, - anon_sym_LPAREN2, - ACTIONS(9027), 3, + ACTIONS(7442), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9029), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(14868), 1, + anon_sym_LT, + STATE(9319), 1, + sym_template_argument_list, + ACTIONS(7447), 17, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [312784] = 15, + [358351] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - STATE(5058), 1, + ACTIONS(14750), 1, + anon_sym_LBRACE, + STATE(3457), 1, sym_compound_statement, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10383), 1, + STATE(11670), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [312837] = 14, + [358404] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11097), 1, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(14000), 1, + ACTIONS(14913), 1, sym_identifier, - ACTIONS(14002), 1, + ACTIONS(14915), 1, sym_primitive_type, - STATE(2385), 1, + STATE(2582), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8702), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(2913), 2, + STATE(5355), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12837), 4, + ACTIONS(13717), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312888] = 5, - ACTIONS(13899), 1, - anon_sym_LF, - ACTIONS(14063), 1, - anon_sym_LPAREN2, - ACTIONS(14065), 1, - sym_comment, - STATE(8277), 1, - sym_preproc_argument_list, - ACTIONS(13903), 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, - [312921] = 10, + [358455] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14067), 1, + ACTIONS(14917), 1, anon_sym_RPAREN, - ACTIONS(14069), 1, + ACTIONS(14919), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8131), 7, + STATE(9125), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -711031,14 +785867,77 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [312964] = 3, + [358498] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(14888), 1, + sym_identifier, + ACTIONS(14890), 1, + sym_primitive_type, + STATE(3245), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9769), 1, + sym__scope_resolution, + STATE(4282), 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(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [358549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9300), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9302), 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, + [358578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 3, + ACTIONS(9368), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9009), 18, + ACTIONS(9370), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -711057,481 +785956,992 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [312993] = 14, + [358607] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11038), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - ACTIONS(13953), 1, + ACTIONS(14921), 1, sym_identifier, - ACTIONS(13955), 1, + ACTIONS(14923), 1, sym_primitive_type, - STATE(2076), 1, + STATE(2611), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9745), 1, + sym__scope_resolution, + STATE(5733), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(13496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [358658] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14025), 1, + anon_sym_COLON_COLON, + ACTIONS(14925), 1, + sym_identifier, + ACTIONS(14927), 1, + sym_primitive_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8602), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9748), 1, + sym__scope_resolution, + STATE(4282), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(14027), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [358709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9364), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9366), 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, + [358738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9319), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9321), 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, + [358767] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(14929), 1, + sym_identifier, + ACTIONS(14931), 1, + sym_primitive_type, + STATE(2069), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8763), 1, + STATE(9811), 1, sym__scope_resolution, - STATE(2226), 2, + STATE(2276), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3803), 4, + ACTIONS(3832), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313044] = 15, + [358818] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13853), 1, + ACTIONS(14728), 1, anon_sym_LBRACE, - STATE(2957), 1, + STATE(3918), 1, sym_compound_statement, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10415), 1, + STATE(11684), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [313097] = 14, + [358871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9259), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9261), 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, + [358900] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12734), 1, + anon_sym_LPAREN2, + ACTIONS(12752), 1, + sym_identifier, + ACTIONS(12754), 1, + anon_sym_STAR, + ACTIONS(12756), 1, + anon_sym_AMP_AMP, + ACTIONS(12758), 1, + anon_sym_AMP, + ACTIONS(14933), 1, + anon_sym_SEMI, + STATE(8972), 1, + sym__field_declarator, + STATE(9871), 1, + sym_operator_name, + STATE(12049), 1, + sym_attribute_specifier, + STATE(12436), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(9957), 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, + [358953] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11081), 1, + ACTIONS(13627), 1, anon_sym_COLON_COLON, - ACTIONS(13961), 1, + ACTIONS(14935), 1, sym_identifier, - ACTIONS(13963), 1, + ACTIONS(14937), 1, sym_primitive_type, - STATE(3762), 1, + STATE(2416), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8675), 1, + STATE(9840), 1, sym__scope_resolution, - STATE(3953), 2, + STATE(4115), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12757), 4, + ACTIONS(13629), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313148] = 14, + [359004] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14836), 1, + anon_sym_COMMA, + ACTIONS(14844), 1, + anon_sym_SLASH, + ACTIONS(14846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14848), 1, + anon_sym_AMP_AMP, + ACTIONS(14850), 1, + anon_sym_PIPE, + ACTIONS(14852), 1, + anon_sym_CARET, + ACTIONS(14854), 1, + anon_sym_AMP, + ACTIONS(14939), 1, + anon_sym_RPAREN, + STATE(11261), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(14840), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14842), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14856), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14858), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14860), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14862), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [359059] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10653), 1, + ACTIONS(13627), 1, anon_sym_COLON_COLON, - ACTIONS(13907), 1, - sym_primitive_type, - ACTIONS(14071), 1, + ACTIONS(14941), 1, sym_identifier, - STATE(2852), 1, + ACTIONS(14943), 1, + sym_primitive_type, + STATE(2390), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9840), 1, sym__scope_resolution, - STATE(3192), 2, + STATE(4115), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(2244), 4, + ACTIONS(13897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313199] = 14, + [359110] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14696), 1, + anon_sym_try, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14810), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14818), 1, + anon_sym_EQ, + ACTIONS(14945), 1, + anon_sym_SEMI, + ACTIONS(14947), 1, + anon_sym_LBRACE, + STATE(3256), 1, + sym_compound_statement, + STATE(3259), 1, + sym_try_statement, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11388), 1, + sym_gnu_asm_expression, + STATE(11389), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [359171] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11111), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - ACTIONS(13961), 1, - sym_identifier, - ACTIONS(13963), 1, + ACTIONS(14907), 1, sym_primitive_type, - STATE(3375), 1, + ACTIONS(14949), 1, + sym_identifier, + STATE(2489), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8707), 1, + STATE(9763), 1, sym__scope_resolution, - STATE(3953), 2, + STATE(3157), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12873), 4, + ACTIONS(2244), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313250] = 14, + [359222] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(14732), 1, + anon_sym_LBRACE, + STATE(9001), 1, + sym_compound_statement, + STATE(9261), 1, + sym_parameter_list, + STATE(11538), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [359275] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14810), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14818), 1, + anon_sym_EQ, + ACTIONS(14951), 1, + anon_sym_SEMI, + ACTIONS(14953), 1, + anon_sym_LBRACE, + ACTIONS(14955), 1, + anon_sym_try, + STATE(452), 1, + sym_compound_statement, + STATE(453), 1, + sym_try_statement, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11141), 1, + sym_gnu_asm_expression, + STATE(11142), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [359336] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11020), 1, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - ACTIONS(14073), 1, + ACTIONS(14957), 1, sym_identifier, - ACTIONS(14075), 1, + ACTIONS(14959), 1, sym_primitive_type, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7606), 1, + STATE(4137), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8691), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(3192), 2, + STATE(7474), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(11022), 4, + ACTIONS(13607), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313301] = 16, + [359387] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, - anon_sym_COMMA, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13919), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13921), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12734), 1, + anon_sym_LPAREN2, + ACTIONS(12752), 1, + sym_identifier, + ACTIONS(12754), 1, + anon_sym_STAR, + ACTIONS(12756), 1, anon_sym_AMP_AMP, - ACTIONS(13923), 1, - anon_sym_PIPE, - ACTIONS(13925), 1, - anon_sym_CARET, - ACTIONS(13927), 1, + ACTIONS(12758), 1, anon_sym_AMP, - ACTIONS(14077), 1, - anon_sym_RPAREN, - STATE(9850), 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, - [313356] = 19, + ACTIONS(14961), 1, + anon_sym_SEMI, + STATE(8976), 1, + sym__field_declarator, + STATE(9871), 1, + sym_operator_name, + STATE(12171), 1, + sym_attribute_specifier, + STATE(12436), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(9957), 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, + [359440] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14661), 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, + ACTIONS(14708), 1, anon_sym_LBRACE, - ACTIONS(14083), 1, - anon_sym_try, - STATE(667), 1, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + STATE(5284), 1, sym_compound_statement, - STATE(668), 1, - sym_try_statement, - STATE(4564), 1, + STATE(9261), 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, + STATE(11740), 1, + sym_lambda_declarator, + STATE(12197), 1, + sym_trailing_return_type, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [313417] = 15, + STATE(9504), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10353), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [359493] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(13877), 1, + ACTIONS(14754), 1, anon_sym_LBRACE, - STATE(5224), 1, + STATE(5588), 1, sym_compound_statement, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10249), 1, + STATE(11871), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [313470] = 15, + [359546] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11687), 1, + anon_sym_COLON_COLON, + ACTIONS(14963), 1, + sym_identifier, + ACTIONS(14965), 1, + sym_primitive_type, + STATE(2340), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9746), 1, + sym__scope_resolution, + STATE(2769), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(4363), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [359597] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13839), 1, - anon_sym_LBRACE, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - STATE(5058), 1, + ACTIONS(14722), 1, + anon_sym_LBRACE, + STATE(5705), 1, sym_compound_statement, - STATE(8263), 1, + STATE(9261), 1, sym_parameter_list, - STATE(10427), 1, + STATE(11782), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(12197), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(9276), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(9504), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(10353), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [313523] = 11, + [359650] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14673), 1, + anon_sym_try, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14810), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(11805), 1, - anon_sym_STAR, - ACTIONS(11807), 1, - anon_sym_AMP_AMP, - ACTIONS(11809), 1, - anon_sym_AMP, - STATE(4672), 1, + ACTIONS(14818), 1, + anon_sym_EQ, + ACTIONS(14967), 1, + anon_sym_SEMI, + ACTIONS(14969), 1, + anon_sym_LBRACE, + STATE(3575), 1, + sym_compound_statement, + STATE(3609), 1, + sym_try_statement, + STATE(5113), 1, sym_parameter_list, - STATE(8598), 1, + STATE(9627), 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, + STATE(10898), 1, + sym_gnu_asm_expression, + STATE(10899), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [359711] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14808), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14810), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14818), 1, + anon_sym_EQ, + ACTIONS(14971), 1, anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(14973), 1, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [313568] = 14, + ACTIONS(14975), 1, + anon_sym_try, + STATE(709), 1, + sym_try_statement, + STATE(744), 1, + sym_compound_statement, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11062), 1, + sym_gnu_asm_expression, + STATE(11063), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [359772] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14836), 1, + anon_sym_COMMA, + ACTIONS(14844), 1, + anon_sym_SLASH, + ACTIONS(14846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14848), 1, + anon_sym_AMP_AMP, + ACTIONS(14850), 1, + anon_sym_PIPE, + ACTIONS(14852), 1, + anon_sym_CARET, + ACTIONS(14854), 1, + anon_sym_AMP, + ACTIONS(14977), 1, + anon_sym_RPAREN, + STATE(11028), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(14840), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14842), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14856), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14858), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14860), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14862), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [359827] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5938), 1, + ACTIONS(13428), 1, anon_sym_COLON_COLON, - ACTIONS(13957), 1, + ACTIONS(14979), 1, sym_identifier, - ACTIONS(13959), 1, + ACTIONS(14981), 1, sym_primitive_type, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3824), 1, + STATE(4131), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8716), 1, + STATE(9815), 1, sym__scope_resolution, - STATE(4741), 2, + STATE(6941), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(59), 4, + ACTIONS(13430), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313619] = 9, + [359878] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14485), 1, + anon_sym_TILDE, + ACTIONS(14491), 1, + anon_sym_operator, + ACTIONS(14983), 1, + sym_identifier, + ACTIONS(14985), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14988), 1, + anon_sym_COLON_COLON, + ACTIONS(14990), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5534), 1, + sym_splice_specifier, + STATE(5878), 1, + sym_splice_expression, + STATE(5879), 1, + sym_operator_name, + STATE(9411), 1, + sym__scope_resolution, + STATE(6382), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [359933] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14095), 1, + ACTIONS(15002), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8324), 7, + STATE(9279), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -711539,61 +786949,100 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313659] = 9, + [359973] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(12549), 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, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(10031), 1, + sym__type_declarator, + STATE(10452), 1, + sym__type_definition_declarators, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [360023] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14844), 1, + anon_sym_SLASH, + ACTIONS(14852), 1, + anon_sym_CARET, + ACTIONS(14854), 1, + anon_sym_AMP, + ACTIONS(15008), 1, + anon_sym_PIPE, + ACTIONS(14840), 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, + ACTIONS(14842), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14856), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14858), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14860), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14862), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15006), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [360069] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14101), 1, + ACTIONS(15010), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8288), 7, + STATE(9251), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -711601,52 +787050,222 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313739] = 14, + [360109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15014), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(15012), 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, + [360137] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(10031), 1, + sym__type_declarator, + STATE(10407), 1, + sym__type_definition_declarators, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [360187] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, sym_primitive_type, - STATE(3180), 1, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9405), 1, + STATE(10426), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [360237] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(10031), 1, + sym__type_declarator, + STATE(10483), 1, + sym__type_definition_declarators, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [360287] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2958), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14485), 1, + anon_sym_TILDE, + ACTIONS(14491), 1, + anon_sym_operator, + ACTIONS(14983), 1, + sym_identifier, + ACTIONS(14988), 1, + anon_sym_COLON_COLON, + ACTIONS(14990), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5534), 1, + sym_splice_specifier, + STATE(5878), 1, + sym_splice_expression, + STATE(5879), 1, + sym_operator_name, + STATE(9411), 1, + sym__scope_resolution, + STATE(6382), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [360339] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(10031), 1, + sym__type_declarator, + STATE(10460), 1, + sym__type_definition_declarators, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [313789] = 3, + [360389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 5, + ACTIONS(15018), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(14103), 15, + ACTIONS(15016), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -711662,30 +787281,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [313817] = 9, + [360417] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14107), 1, + ACTIONS(15020), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8321), 7, + STATE(9357), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -711693,66 +787312,103 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313857] = 14, + [360457] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9379), 1, + STATE(10524), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [313907] = 9, + [360507] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14475), 1, + anon_sym_TILDE, + ACTIONS(14481), 1, + anon_sym_operator, + ACTIONS(15022), 1, + sym_identifier, + ACTIONS(15024), 1, + anon_sym_COLON_COLON, + ACTIONS(15026), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4023), 1, + sym_splice_specifier, + STATE(4058), 1, + sym_splice_expression, + STATE(4320), 1, + sym_operator_name, + STATE(9418), 1, + sym__scope_resolution, + STATE(4286), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [360559] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14109), 1, + ACTIONS(15028), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8303), 7, + STATE(9350), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -711760,28 +787416,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [313947] = 7, + [360599] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, + ACTIONS(14844), 1, anon_sym_SLASH, - ACTIONS(13913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13915), 2, + ACTIONS(14842), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14113), 4, + ACTIONS(15008), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(14111), 9, + ACTIONS(15006), 13, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -711789,30 +787441,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [313983] = 9, + anon_sym_LT_LT, + anon_sym_GT_GT, + [360631] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14115), 1, + ACTIONS(15030), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8206), 7, + STATE(9321), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -711820,30 +787474,88 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314023] = 9, + [360671] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14844), 1, + anon_sym_SLASH, + ACTIONS(14854), 1, + anon_sym_AMP, + ACTIONS(15008), 1, + anon_sym_PIPE, + ACTIONS(14840), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14842), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14856), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14858), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14860), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14862), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15006), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [360715] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15034), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(15032), 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, + [360743] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14117), 1, + ACTIONS(15036), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8273), 7, + STATE(9275), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -711851,66 +787563,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314063] = 14, + [360783] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9328), 1, + STATE(10468), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [314113] = 9, + [360833] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14119), 1, + ACTIONS(15038), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8247), 7, + STATE(9282), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -711918,164 +787630,97 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314153] = 9, - 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, - 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, - 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, - [314193] = 14, + [360873] = 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, + ACTIONS(9123), 1, sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9276), 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, - [314243] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9293), 1, + STATE(10457), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [314293] = 9, + [360923] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, - sym_identifier, - ACTIONS(14008), 1, - anon_sym_LPAREN2, - ACTIONS(14010), 1, - anon_sym_defined, - ACTIONS(14121), 1, - sym_number_literal, - ACTIONS(14012), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14844), 1, + anon_sym_SLASH, + ACTIONS(14840), 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(8212), 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, - [314333] = 9, + ACTIONS(14842), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14858), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14860), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14862), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15008), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(15006), 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, + [360963] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14123), 1, + ACTIONS(15040), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8326), 7, + STATE(9254), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712083,133 +787728,116 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314373] = 14, + [361003] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9314), 1, + STATE(10478), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [314423] = 9, + [361053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, - sym_identifier, - ACTIONS(14087), 1, - anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14125), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15008), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(15006), 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(8287), 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, - [314463] = 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, + [361081] = 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(15044), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(15042), 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_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, + 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, + [361109] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14127), 1, + ACTIONS(15046), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8185), 7, + STATE(9331), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712217,30 +787845,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314553] = 9, + [361149] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14129), 1, + ACTIONS(15048), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8348), 7, + STATE(9290), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712248,162 +787876,116 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314593] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 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, + [361189] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9402), 1, + STATE(10508), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [314689] = 9, + [361239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, - sym_identifier, - ACTIONS(14087), 1, - anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14131), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15052), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(15050), 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(8347), 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, - [314729] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [361267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, - sym_identifier, - ACTIONS(14008), 1, - anon_sym_LPAREN2, - ACTIONS(14010), 1, - anon_sym_defined, - ACTIONS(14133), 1, - sym_number_literal, - ACTIONS(14012), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(15056), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(15054), 15, + anon_sym_COMMA, + anon_sym_RPAREN, 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(8342), 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, - [314769] = 9, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [361295] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14135), 1, + ACTIONS(15058), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8193), 7, + STATE(9157), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712411,63 +787993,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314809] = 11, - 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, - 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, + [361335] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14137), 1, + ACTIONS(15060), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8286), 7, + STATE(9168), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712475,67 +788024,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, + [361375] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14145), 1, + ACTIONS(15062), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8291), 7, + STATE(9202), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712543,30 +788055,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314985] = 9, + [361415] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14147), 1, + ACTIONS(15064), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8293), 7, + STATE(9211), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712574,98 +788086,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315025] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - 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(8598), 1, - sym__function_declarator_seq, - STATE(8885), 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), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [315069] = 13, - 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, + [361455] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14149), 1, + ACTIONS(15066), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8302), 7, + STATE(9144), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712673,30 +788117,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315157] = 9, + [361495] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14151), 1, + ACTIONS(15068), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8195), 7, + STATE(9159), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712704,102 +788148,97 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315197] = 14, + [361535] = 9, 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(14774), 1, + sym_identifier, + ACTIONS(14778), 1, + anon_sym_LPAREN2, + ACTIONS(14780), 1, + anon_sym_defined, + ACTIONS(15070), 1, + sym_number_literal, + ACTIONS(14782), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14784), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14788), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(9193), 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, + [361575] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9283), 1, + STATE(10451), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [315297] = 9, + [361625] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14155), 1, + ACTIONS(15072), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8221), 7, + STATE(9165), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712807,30 +788246,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315337] = 9, + [361665] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14157), 1, + ACTIONS(15074), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8159), 7, + STATE(9205), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712838,30 +788277,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315377] = 9, + [361705] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14159), 1, + ACTIONS(15076), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8210), 7, + STATE(9212), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712869,231 +788308,195 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315417] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13917), 1, - 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_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), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [315463] = 14, + [361745] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9315), 1, + STATE(10538), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [315513] = 12, + [361795] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13925), 1, - anon_sym_CARET, - ACTIONS(13927), 1, - anon_sym_AMP, - ACTIONS(14113), 1, - anon_sym_PIPE, - ACTIONS(13913), 2, + ACTIONS(14992), 1, + sym_identifier, + ACTIONS(14994), 1, + anon_sym_LPAREN2, + ACTIONS(14996), 1, + anon_sym_defined, + ACTIONS(15078), 1, + sym_number_literal, + ACTIONS(14998), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(15000), 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), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [315559] = 14, + ACTIONS(15004), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(9338), 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, + [361835] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(14994), 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(9377), 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, - [315609] = 14, + ACTIONS(14996), 1, + anon_sym_defined, + ACTIONS(15080), 1, + sym_number_literal, + ACTIONS(14998), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(15000), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15004), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(9343), 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, + [361875] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9407), 1, + STATE(10525), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [315659] = 3, + [361925] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14163), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14161), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14992), 1, + sym_identifier, + ACTIONS(14994), 1, + anon_sym_LPAREN2, + ACTIONS(14996), 1, + anon_sym_defined, + ACTIONS(15082), 1, + sym_number_literal, + ACTIONS(14998), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(15000), 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, - [315687] = 9, + ACTIONS(15004), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(9241), 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, + [361965] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14165), 1, + ACTIONS(15084), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8272), 7, + STATE(9306), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713101,30 +788504,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315727] = 9, + [362005] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14167), 1, + ACTIONS(15086), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8318), 7, + STATE(9249), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713132,80 +788535,62 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315767] = 3, + [362045] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(14171), 5, + ACTIONS(14844), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14169), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14840), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(14842), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(14856), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(14858), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14860), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(14862), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [315795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14175), 5, - anon_sym_SLASH, + ACTIONS(15008), 2, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14173), 15, + ACTIONS(15006), 5, 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, - [315823] = 9, + [362087] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14177), 1, + ACTIONS(15088), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8330), 7, + STATE(9309), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713213,30 +788598,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315863] = 9, + [362127] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14179), 1, + ACTIONS(15090), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8357), 7, + STATE(9353), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713244,30 +788629,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315903] = 9, + [362167] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14181), 1, + ACTIONS(15092), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8333), 7, + STATE(9272), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713275,24 +788660,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315943] = 5, + [362207] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14475), 1, + anon_sym_TILDE, + ACTIONS(14481), 1, + anon_sym_operator, + ACTIONS(15022), 1, + sym_identifier, + ACTIONS(15094), 1, + anon_sym_COLON_COLON, + ACTIONS(15096), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4023), 1, + sym_splice_specifier, + STATE(4058), 1, + sym_splice_expression, + STATE(6315), 1, + sym_operator_name, + STATE(9431), 1, + sym__scope_resolution, + STATE(4286), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [362259] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15100), 5, anon_sym_SLASH, - ACTIONS(13915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(14113), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(14111), 13, + ACTIONS(15098), 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, @@ -713302,16 +788722,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [315975] = 3, + [362287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 5, + ACTIONS(11198), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10564), 15, + ACTIONS(11196), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -713327,66 +788747,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [316003] = 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(9395), 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, - [316053] = 9, + [362315] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14183), 1, + ACTIONS(15102), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8179), 7, + STATE(9256), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713394,75 +788778,172 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316093] = 6, + [362355] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(10031), 1, + sym__type_declarator, + STATE(10403), 1, + sym__type_definition_declarators, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [362405] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14844), 1, anon_sym_SLASH, - ACTIONS(13913), 2, + ACTIONS(14848), 1, + anon_sym_AMP_AMP, + ACTIONS(14850), 1, + anon_sym_PIPE, + ACTIONS(14852), 1, + anon_sym_CARET, + ACTIONS(14854), 1, + anon_sym_AMP, + ACTIONS(14840), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, + ACTIONS(14842), 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(14856), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(14858), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14860), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(14862), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [316127] = 3, + ACTIONS(15006), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [362453] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3010), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14440), 1, + anon_sym_TILDE, + ACTIONS(14446), 1, + anon_sym_operator, + ACTIONS(15104), 1, + sym_identifier, + ACTIONS(15106), 1, + anon_sym_COLON_COLON, + ACTIONS(15108), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5920), 1, + sym_splice_specifier, + STATE(6120), 1, + sym_operator_name, + STATE(6302), 1, + sym_splice_expression, + STATE(9386), 1, + sym__scope_resolution, + STATE(6484), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [362505] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14187), 5, + ACTIONS(14844), 1, anon_sym_SLASH, + ACTIONS(14846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14848), 1, + anon_sym_AMP_AMP, + ACTIONS(14850), 1, anon_sym_PIPE, + ACTIONS(14852), 1, + anon_sym_CARET, + ACTIONS(14854), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14185), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14840), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(14842), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(14856), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(14858), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14860), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(14862), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [316155] = 3, + ACTIONS(15110), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [362555] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14113), 5, + ACTIONS(14844), 1, anon_sym_SLASH, + ACTIONS(14840), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14842), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14862), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15008), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(14111), 15, + ACTIONS(15006), 9, 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, @@ -713470,104 +788951,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [316183] = 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(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(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(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, + [362591] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14774), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14778), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14189), 1, + ACTIONS(15112), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8355), 7, + STATE(9204), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713575,30 +788982,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316323] = 9, + [362631] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14191), 1, + ACTIONS(15114), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8327), 7, + STATE(9320), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713606,30 +789013,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316363] = 9, + [362671] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14193), 1, + ACTIONS(15116), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8319), 7, + STATE(9322), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713637,64 +789044,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316403] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(9429), 1, - anon_sym___attribute, - 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(5313), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8939), 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_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [316449] = 9, + [362711] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14195), 1, + ACTIONS(15118), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8331), 7, + STATE(9323), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713702,30 +789075,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316489] = 9, + [362751] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14197), 1, + ACTIONS(15120), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8305), 7, + STATE(9324), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713733,22 +789106,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316529] = 3, + [362791] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(14201), 5, + ACTIONS(14844), 1, anon_sym_SLASH, + ACTIONS(14850), 1, anon_sym_PIPE, + ACTIONS(14852), 1, + anon_sym_CARET, + ACTIONS(14854), 1, anon_sym_AMP, + ACTIONS(14840), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14842), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14856), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14858), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(14199), 15, + ACTIONS(14860), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14862), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15006), 4, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [362837] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14844), 1, + anon_sym_SLASH, + ACTIONS(14840), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(14842), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(15008), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(15006), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -713758,94 +789168,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, 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, - 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, - 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, - 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, + [362871] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14209), 1, + ACTIONS(15122), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8232), 7, + STATE(9337), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713853,66 +789199,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316681] = 14, + [362911] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9380), 1, + STATE(10466), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [316731] = 9, + [362961] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14211), 1, + ACTIONS(15124), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8188), 7, + STATE(9325), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713920,30 +789266,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316771] = 9, + [363001] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14213), 1, + ACTIONS(15126), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8322), 7, + STATE(9326), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713951,30 +789297,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316811] = 9, + [363041] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, + anon_sym_defined, + ACTIONS(15128), 1, + sym_number_literal, + ACTIONS(14998), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(15000), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15004), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(9327), 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, + [363081] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14992), 1, + sym_identifier, + ACTIONS(14994), 1, + anon_sym_LPAREN2, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14215), 1, + ACTIONS(15130), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8329), 7, + STATE(9328), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713982,78 +789359,156 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316851] = 15, + [363121] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(3078), 1, anon_sym_LBRACK_COLON, - ACTIONS(13571), 1, + ACTIONS(14501), 1, anon_sym_TILDE, - ACTIONS(13577), 1, + ACTIONS(14507), 1, anon_sym_operator, - ACTIONS(14203), 1, + ACTIONS(15132), 1, sym_identifier, - ACTIONS(14217), 1, + ACTIONS(15134), 1, anon_sym_COLON_COLON, - ACTIONS(14219), 1, + ACTIONS(15136), 1, anon_sym_template, - STATE(3744), 1, - sym_splice_specifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3817), 1, + STATE(6002), 1, + sym_splice_specifier, + STATE(6139), 1, sym_splice_expression, - STATE(5607), 1, + STATE(6144), 1, sym_operator_name, - STATE(8416), 1, + STATE(9422), 1, sym__scope_resolution, - STATE(3928), 4, + STATE(6440), 4, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, sym_qualified_field_identifier, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, - [316903] = 3, + [363173] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14223), 5, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14221), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(10031), 1, + sym__type_declarator, + STATE(10542), 1, + sym__type_definition_declarators, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [363223] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(12553), 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, - [316931] = 3, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(10031), 1, + sym__type_declarator, + STATE(10398), 1, + sym__type_definition_declarators, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [363273] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14992), 1, + sym_identifier, + ACTIONS(14994), 1, + anon_sym_LPAREN2, + ACTIONS(14996), 1, + anon_sym_defined, + ACTIONS(15138), 1, + sym_number_literal, + ACTIONS(14998), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(15000), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15004), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(9329), 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, + [363313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14227), 5, + ACTIONS(15142), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(14225), 15, + ACTIONS(15140), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -714069,98 +789524,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [316959] = 10, + [363341] = 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(13929), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13931), 2, - anon_sym_GT, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 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), 5, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7447), 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, - [317001] = 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, + [363373] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(10031), 1, sym__type_declarator, - STATE(9346), 1, + STATE(10474), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [317051] = 9, + [363423] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, anon_sym_defined, - ACTIONS(14229), 1, + ACTIONS(15144), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14998), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(15000), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(15004), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8323), 7, + STATE(9330), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -714168,30 +789618,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [317091] = 9, + [363463] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14992), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14994), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14996), 1, + anon_sym_defined, + ACTIONS(15146), 1, + sym_number_literal, + ACTIONS(14998), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(15000), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15004), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(9355), 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, + [363503] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14774), 1, + sym_identifier, + ACTIONS(14778), 1, + anon_sym_LPAREN2, + ACTIONS(14780), 1, anon_sym_defined, - ACTIONS(14231), 1, + ACTIONS(15148), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14782), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14784), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14788), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8246), 7, + STATE(9174), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -714199,193 +789680,361 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [317131] = 15, + [363543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9707), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9709), 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, + [363570] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4383), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(8341), 1, + anon_sym_LBRACE, + ACTIONS(11687), 1, + anon_sym_COLON_COLON, + ACTIONS(14012), 1, + sym_identifier, + STATE(2639), 1, + sym_splice_specifier, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2741), 1, + sym_enumerator_list, + STATE(9746), 1, + sym__scope_resolution, + ACTIONS(15150), 2, + anon_sym_class, + anon_sym_struct, + STATE(2505), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2700), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [363621] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(14019), 1, + sym_identifier, + ACTIONS(14021), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9758), 1, + sym__scope_resolution, + STATE(9983), 1, + sym_splice_specifier, + STATE(10510), 1, + sym_enumerator_list, + ACTIONS(15152), 2, + anon_sym_class, + anon_sym_struct, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10127), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [363672] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(12920), 1, + anon_sym_LBRACE, + ACTIONS(13945), 1, + sym_identifier, + STATE(7345), 1, + sym_splice_specifier, + STATE(7702), 1, + sym_enumerator_list, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(9795), 1, + sym__scope_resolution, + ACTIONS(15154), 2, + anon_sym_class, + anon_sym_struct, + STATE(7283), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7771), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [363723] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11114), 1, + anon_sym_LBRACE, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13947), 1, + sym_identifier, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5418), 1, + sym_enumerator_list, + STATE(9822), 1, + sym__scope_resolution, + ACTIONS(15156), 2, + anon_sym_class, + anon_sym_struct, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4995), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [363774] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3884), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(8354), 1, + anon_sym_LBRACE, + ACTIONS(11695), 1, + anon_sym_COLON_COLON, + ACTIONS(13949), 1, + sym_identifier, + STATE(2640), 1, + sym_splice_specifier, + STATE(2685), 1, + sym__splice_specialization_specifier, + STATE(2718), 1, + sym_enumerator_list, + STATE(9759), 1, + sym__scope_resolution, + ACTIONS(15158), 2, + anon_sym_class, + anon_sym_struct, + STATE(2509), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2686), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [363825] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(2728), 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, + ACTIONS(5194), 1, anon_sym_template, - STATE(3808), 1, + ACTIONS(12445), 1, + anon_sym_LBRACE, + ACTIONS(13577), 1, + anon_sym_COLON_COLON, + ACTIONS(13951), 1, + sym_identifier, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(5353), 1, + STATE(6573), 1, sym_splice_specifier, - STATE(5649), 1, - sym_splice_expression, - STATE(5700), 1, - sym_operator_name, - STATE(8371), 1, + STATE(6987), 1, + sym_enumerator_list, + STATE(9760), 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, + ACTIONS(15160), 2, + anon_sym_class, + anon_sym_struct, + STATE(6606), 2, sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, - [317183] = 9, + STATE(6797), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [363876] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, - sym_identifier, - ACTIONS(14008), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, - anon_sym_defined, - ACTIONS(14239), 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(8164), 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, - [317223] = 15, + ACTIONS(15162), 1, + anon_sym_LBRACK, + STATE(9635), 1, + sym_parameter_list, + ACTIONS(9752), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(9429), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9754), 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, + [363913] = 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, + ACTIONS(3852), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5044), 1, + ACTIONS(7396), 1, + anon_sym_LBRACE, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(13953), 1, + sym_identifier, + STATE(2255), 1, sym_splice_specifier, - STATE(5307), 1, - sym_splice_expression, - STATE(5308), 1, - sym_operator_name, - STATE(8388), 1, + STATE(2266), 1, + sym_enumerator_list, + STATE(2273), 1, + sym__splice_specialization_specifier, + STATE(9811), 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, + ACTIONS(15164), 2, + anon_sym_class, + anon_sym_struct, + STATE(2206), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2281), 2, sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, - [317275] = 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(9394), 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, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [363964] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14315), 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(14317), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9685), 1, + sym_access_specifier, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10644), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(14720), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [364013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10320), 1, + ACTIONS(12433), 1, anon_sym_LT, - STATE(8449), 1, + STATE(9481), 1, sym_template_argument_list, - ACTIONS(6574), 4, + ACTIONS(12435), 4, anon_sym___attribute, anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6567), 12, + ACTIONS(7109), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -714398,268 +790047,427 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [317398] = 3, + [364046] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 3, - anon_sym___attribute, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(13957), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4054), 1, + sym_enumerator_list, + STATE(4770), 1, + sym_splice_specifier, + STATE(9769), 1, + sym__scope_resolution, + ACTIONS(15166), 2, + anon_sym_class, + anon_sym_struct, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4672), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [364097] = 12, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15168), 1, + anon_sym_LF, + ACTIONS(15174), 1, + anon_sym_PIPE_PIPE, + ACTIONS(15176), 1, + anon_sym_AMP_AMP, + ACTIONS(15178), 1, + anon_sym_PIPE, + ACTIONS(15180), 1, + anon_sym_CARET, + ACTIONS(15182), 1, + anon_sym_AMP, + ACTIONS(15170), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(15188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15172), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(15186), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [364142] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(9039), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9310), 16, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 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_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [317425] = 3, + [364181] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 3, - anon_sym___attribute, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(13975), 1, + anon_sym_requires, + STATE(9000), 1, + sym_trailing_return_type, + ACTIONS(7621), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9318), 16, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 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_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [317452] = 13, + [364220] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + ACTIONS(14098), 1, + anon_sym_requires, + STATE(9038), 1, + sym_trailing_return_type, + ACTIONS(8285), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14095), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, 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_asm, + anon_sym___asm__, + anon_sym_try, + [364259] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11580), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(14747), 1, anon_sym_requires, - STATE(9835), 1, + STATE(9050), 1, sym_trailing_return_type, - STATE(11587), 1, + ACTIONS(9336), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14744), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9253), 2, + sym__function_postfix, sym_requires_clause, - STATE(8834), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9062), 2, + ACTIONS(9338), 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, + [364298] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(12462), 1, + anon_sym_LBRACE, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(13978), 1, + sym_identifier, + STATE(3443), 1, + sym__splice_specialization_specifier, + STATE(6696), 1, + sym_splice_specifier, + STATE(6971), 1, + sym_enumerator_list, + STATE(9846), 1, + sym__scope_resolution, + ACTIONS(15190), 2, + anon_sym_class, + anon_sym_struct, + STATE(3420), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6858), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [364349] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15162), 1, + anon_sym_LBRACK, + STATE(9635), 1, + sym_parameter_list, + ACTIONS(9828), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(9429), 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(9830), 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, + [364386] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12557), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12559), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12561), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(9121), 1, + STATE(3862), 1, sym__type_declarator, - STATE(11156), 1, + STATE(12036), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 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, + [364433] = 12, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14249), 1, - anon_sym_LF, - ACTIONS(14255), 1, + ACTIONS(15174), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(15176), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(15178), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14251), 2, + ACTIONS(15192), 1, + anon_sym_LF, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [317591] = 14, + [364478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13919), 1, + ACTIONS(9711), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9713), 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, + [364505] = 12, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15174), 1, anon_sym_PIPE_PIPE, - ACTIONS(13921), 1, + ACTIONS(15176), 1, anon_sym_AMP_AMP, - ACTIONS(13923), 1, + ACTIONS(15178), 1, anon_sym_PIPE, - ACTIONS(13925), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(13927), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14271), 1, - anon_sym_RPAREN, - ACTIONS(13913), 2, + ACTIONS(15194), 1, + anon_sym_LF, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13929), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13931), 2, + ACTIONS(15188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15172), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(15186), 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, - [317640] = 15, + anon_sym_LT, + [364550] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(8383), 1, - anon_sym_LBRACE, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14315), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2691), 1, - sym_enumerator_list, - STATE(8682), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9670), 1, + sym_access_specifier, + STATE(9832), 1, sym__scope_resolution, - ACTIONS(14273), 2, - anon_sym_class, - anon_sym_struct, - STATE(2615), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4368), 2, + STATE(10665), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + ACTIONS(14720), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(13053), 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, + [364599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 3, + ACTIONS(9267), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9437), 16, + ACTIONS(9269), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -714676,290 +790484,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [317765] = 8, - 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(9480), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8436), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9482), 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, - [317802] = 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(14277), 1, - anon_sym_LBRACE, - STATE(9842), 1, - sym_trailing_return_type, - STATE(10631), 1, - sym_requires_clause, - STATE(8359), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9008), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9076), 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, - [317849] = 3, - ACTIONS(14065), 1, + [364626] = 12, + ACTIONS(14830), 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, + ACTIONS(15174), 1, anon_sym_PIPE_PIPE, + ACTIONS(15176), 1, anon_sym_AMP_AMP, + ACTIONS(15178), 1, anon_sym_PIPE, + ACTIONS(15180), 1, anon_sym_CARET, + ACTIONS(15182), 1, anon_sym_AMP, + ACTIONS(15196), 1, + anon_sym_LF, + ACTIONS(15170), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(15188), 2, 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, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(15186), 4, 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, - 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, - 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, + [364671] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11943), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11945), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11947), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11949), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11951), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11955), 1, - sym_primitive_type, - STATE(4785), 1, - sym__type_declarator, - STATE(5644), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(10893), 1, + STATE(10263), 1, + sym__type_declarator, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11953), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5575), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [318050] = 3, + [364718] = 12, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15174), 1, + anon_sym_PIPE_PIPE, + ACTIONS(15176), 1, + anon_sym_AMP_AMP, + ACTIONS(15178), 1, + anon_sym_PIPE, + ACTIONS(15180), 1, + anon_sym_CARET, + ACTIONS(15182), 1, + anon_sym_AMP, + ACTIONS(15198), 1, + anon_sym_LF, + ACTIONS(15170), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(15188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15172), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(15186), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [364763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 3, + ACTIONS(6815), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9363), 16, + ACTIONS(6822), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_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, 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, + [364790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 3, + ACTIONS(9724), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9367), 16, + ACTIONS(9726), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -714976,14 +790632,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [318155] = 3, + [364817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 3, + ACTIONS(9728), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9391), 16, + ACTIONS(9730), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -715000,14 +790656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [318182] = 3, + [364844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 3, + ACTIONS(7472), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9371), 16, + ACTIONS(7474), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -715024,454 +790680,786 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [318209] = 13, + [364871] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(14245), 1, + ACTIONS(15200), 1, + anon_sym_LBRACE, + ACTIONS(15202), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(15204), 1, anon_sym_requires, - ACTIONS(14283), 1, - anon_sym_LBRACE, - STATE(9958), 1, + STATE(11214), 1, sym_trailing_return_type, - STATE(11663), 1, + STATE(12067), 1, sym_requires_clause, - STATE(8244), 2, + STATE(9296), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9038), 2, + STATE(10191), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9064), 3, + STATE(10178), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [318256] = 3, + [364918] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 3, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12433), 1, + anon_sym_LT, + STATE(9481), 1, + sym_template_argument_list, + ACTIONS(6783), 4, anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9375), 16, + ACTIONS(6776), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [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, + [364951] = 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, + ACTIONS(9845), 3, anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - STATE(8436), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9478), 11, + ACTIONS(9847), 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, - [318371] = 13, + anon_sym_requires, + [364978] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11878), 1, + ACTIONS(12563), 1, sym_identifier, - ACTIONS(11880), 1, + ACTIONS(12565), 1, anon_sym_LPAREN2, - ACTIONS(11882), 1, + ACTIONS(12567), 1, anon_sym_STAR, - ACTIONS(11884), 1, + ACTIONS(12569), 1, anon_sym_AMP_AMP, - ACTIONS(11886), 1, + ACTIONS(12571), 1, anon_sym_AMP, - ACTIONS(11890), 1, + ACTIONS(12575), 1, sym_primitive_type, - STATE(4670), 1, + STATE(5395), 1, sym__type_declarator, - STATE(5448), 1, + STATE(6370), 1, sym_pointer_type_declarator, - STATE(11657), 1, + STATE(12380), 1, sym_ms_based_modifier, - ACTIONS(11888), 4, + ACTIONS(12573), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5436), 5, + STATE(6368), 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, + [365025] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10320), 1, + ACTIONS(15016), 1, + anon_sym_LF, + ACTIONS(15018), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(8449), 1, - sym_template_argument_list, - ACTIONS(11754), 4, + anon_sym_LT_LT, + anon_sym_GT_GT, + [365052] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15206), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(10147), 3, anon_sym___attribute, - anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6883), 12, + ACTIONS(10149), 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, - [318451] = 13, + [365081] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11929), 1, + ACTIONS(8930), 1, + sym_primitive_type, + ACTIONS(12613), 1, sym_identifier, - ACTIONS(11931), 1, + ACTIONS(12615), 1, anon_sym_LPAREN2, - ACTIONS(11933), 1, + ACTIONS(12617), 1, anon_sym_STAR, - ACTIONS(11935), 1, + ACTIONS(12619), 1, anon_sym_AMP_AMP, - ACTIONS(11937), 1, + ACTIONS(12621), 1, anon_sym_AMP, - ACTIONS(11941), 1, - sym_primitive_type, - STATE(4770), 1, + STATE(9341), 1, sym__type_declarator, - STATE(5594), 1, + STATE(9634), 1, sym_pointer_type_declarator, - STATE(11053), 1, + STATE(12869), 1, sym_ms_based_modifier, - ACTIONS(11939), 4, + ACTIONS(8926), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5593), 5, + STATE(9579), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [318498] = 5, + [365128] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, + sym_identifier, + ACTIONS(13980), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4054), 1, + sym_enumerator_list, + STATE(4349), 1, + sym_splice_specifier, + STATE(9805), 1, + sym__scope_resolution, + ACTIONS(15208), 2, + anon_sym_class, + anon_sym_struct, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7225), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [365179] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7444), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(13480), 1, anon_sym_LT, - STATE(3735), 1, + STATE(3458), 1, sym_template_argument_list, - ACTIONS(6572), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(7442), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(7447), 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, + [365212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9336), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9338), 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_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [365239] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(13480), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(6774), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(6781), 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_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [318529] = 13, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [365272] = 12, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15174), 1, + anon_sym_PIPE_PIPE, + ACTIONS(15176), 1, + anon_sym_AMP_AMP, + ACTIONS(15178), 1, + anon_sym_PIPE, + ACTIONS(15180), 1, + anon_sym_CARET, + ACTIONS(15182), 1, + anon_sym_AMP, + ACTIONS(15210), 1, + anon_sym_LF, + ACTIONS(15170), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(15188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15172), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(15186), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [365317] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(9701), 1, + anon_sym_LBRACE, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, + sym_identifier, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(4010), 1, + sym_enumerator_list, + STATE(9840), 1, + sym__scope_resolution, + ACTIONS(15212), 2, + anon_sym_class, + anon_sym_struct, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4412), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [365368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8287), 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, + [365395] = 12, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15174), 1, + anon_sym_PIPE_PIPE, + ACTIONS(15176), 1, + anon_sym_AMP_AMP, + ACTIONS(15178), 1, + anon_sym_PIPE, + ACTIONS(15180), 1, + anon_sym_CARET, + ACTIONS(15182), 1, + anon_sym_AMP, + ACTIONS(15214), 1, + anon_sym_LF, + ACTIONS(15170), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(15188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15172), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(15186), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [365440] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(14287), 1, + ACTIONS(15216), 1, anon_sym_LBRACE, - STATE(8252), 1, + STATE(9303), 1, sym_parameter_list, - STATE(10657), 1, + STATE(12132), 1, sym_trailing_return_type, - STATE(7955), 2, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8458), 2, + STATE(9461), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9189), 3, + STATE(10371), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [318576] = 12, - ACTIONS(14065), 1, + [365487] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12625), 1, + anon_sym_STAR, + ACTIONS(12627), 1, + anon_sym_AMP_AMP, + ACTIONS(12629), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(5285), 1, + sym__type_declarator, + STATE(12592), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [365534] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14810), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14818), 1, + anon_sym_EQ, + ACTIONS(15218), 1, + anon_sym_SEMI, + ACTIONS(15220), 1, + anon_sym_COLON, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11293), 1, + sym_gnu_asm_expression, + STATE(11294), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [365589] = 12, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(15174), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(15176), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(15178), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14289), 1, + ACTIONS(15222), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [318621] = 12, - ACTIONS(14065), 1, + [365634] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + STATE(9009), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 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, + [365673] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(10260), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [365720] = 12, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15174), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(15176), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(15178), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14291), 1, + ACTIONS(15224), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [318666] = 14, + [365765] = 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(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(10963), 1, + anon_sym_requires, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + STATE(9034), 1, + sym_trailing_return_type, + ACTIONS(7621), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 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, + [365804] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10114), 1, + ACTIONS(9875), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13982), 1, sym_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(4358), 1, + STATE(4405), 1, sym_enumerator_list, - STATE(8676), 1, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, sym__scope_resolution, - ACTIONS(14293), 2, + ACTIONS(15226), 2, anon_sym_class, anon_sym_struct, - STATE(4296), 2, + STATE(4316), 2, sym_template_type, sym_splice_type_specifier, - STATE(6371), 2, + STATE(7650), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318766] = 6, + [365855] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(2648), 1, - sym_template_argument_list, - ACTIONS(7371), 2, - anon_sym___attribute, - anon_sym_COLON, - ACTIONS(5657), 14, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + STATE(9027), 1, + sym_trailing_return_type, + ACTIONS(8285), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 8, 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_asm, + anon_sym___asm__, + anon_sym_try, + [365894] = 3, + ACTIONS(11196), 1, anon_sym_LF, - ACTIONS(14105), 18, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(11198), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -715490,679 +791478,518 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [318826] = 11, + [365921] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11580), 1, + anon_sym_DASH_GT, + STATE(9026), 1, + sym_trailing_return_type, + ACTIONS(9336), 2, anon_sym_LBRACK, - 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(8598), 1, - sym__function_declarator_seq, - STATE(8961), 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_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym___asm, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [318869] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(8383), 1, - anon_sym_LBRACE, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, - sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2691), 1, - sym_enumerator_list, - STATE(8682), 1, - sym__scope_resolution, - ACTIONS(14295), 2, - anon_sym_class, - anon_sym_struct, - STATE(2520), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [318920] = 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(7385), 1, - anon_sym_LBRACE, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, - sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2171), 1, - sym_enumerator_list, - STATE(8763), 1, - sym__scope_resolution, - ACTIONS(14297), 2, - anon_sym_class, - anon_sym_struct, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(2345), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [318971] = 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(14299), 2, - anon_sym_class, - anon_sym_struct, - STATE(2690), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2934), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319022] = 15, - 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(9413), 1, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9253), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, - sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(4263), 1, - sym_splice_specifier, - STATE(4379), 1, - sym_enumerator_list, - STATE(8675), 1, - sym__scope_resolution, - ACTIONS(14301), 2, - anon_sym_class, - anon_sym_struct, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4051), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319073] = 15, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [365960] = 8, 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(8472), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15162), 1, + anon_sym_LBRACK, + STATE(9635), 1, + sym_parameter_list, + ACTIONS(9770), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(9429), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9772), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, 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(2796), 1, - sym_enumerator_list, - STATE(8687), 1, - sym__scope_resolution, - ACTIONS(14303), 2, - anon_sym_class, - anon_sym_struct, - STATE(2569), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2678), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319124] = 15, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [365997] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3764), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(8476), 1, + ACTIONS(8790), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13992), 1, sym_identifier, - STATE(2605), 1, + STATE(3037), 1, sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2847), 1, + STATE(3116), 1, sym_enumerator_list, - STATE(8702), 1, - sym__scope_resolution, - ACTIONS(14305), 2, - anon_sym_class, - anon_sym_struct, - STATE(2571), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2661), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319175] = 15, - 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, + STATE(3239), 1, sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3901), 1, - sym_enumerator_list, - STATE(8707), 1, + STATE(9763), 1, sym__scope_resolution, - ACTIONS(14307), 2, + ACTIONS(15228), 2, anon_sym_class, anon_sym_struct, - STATE(3665), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(3140), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [319226] = 12, - ACTIONS(14065), 1, + [366048] = 12, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(15174), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(15176), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(15178), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14309), 1, + ACTIONS(15230), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319271] = 12, - ACTIONS(14065), 1, + [366093] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(14255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(15232), 1, + anon_sym_LBRACE, + STATE(10928), 1, + sym_trailing_return_type, + STATE(11969), 1, + sym_requires_clause, + STATE(9947), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10150), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10159), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [366140] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, - anon_sym_PIPE, - ACTIONS(14261), 1, - anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(14311), 1, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(10244), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [366187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9892), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9894), 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, + [366214] = 3, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15140), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15142), 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, - [319316] = 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(14313), 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, - [319361] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [366241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(7442), 1, + anon_sym___attribute, + ACTIONS(7447), 18, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, - anon_sym_STAR, - ACTIONS(11908), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11910), 1, - anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(4938), 1, - sym__type_declarator, - STATE(11304), 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, - [319408] = 15, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_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, + [366268] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(15234), 1, + anon_sym_LBRACE, + STATE(11059), 1, + sym_trailing_return_type, + STATE(13052), 1, + sym_requires_clause, + STATE(9947), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10181), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10196), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [366315] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(4966), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(8624), 1, + ACTIONS(12744), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13986), 1, sym_identifier, - STATE(2742), 1, + STATE(7005), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(7038), 1, sym__splice_specialization_specifier, - STATE(3039), 1, + STATE(7366), 1, sym_enumerator_list, - STATE(8686), 1, + STATE(9780), 1, sym__scope_resolution, - ACTIONS(14315), 2, + ACTIONS(15236), 2, anon_sym_class, anon_sym_struct, - STATE(2934), 2, + STATE(7036), 2, sym_template_type, sym_splice_type_specifier, - STATE(4708), 2, + STATE(7093), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [319459] = 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(14317), 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, - [319504] = 13, + [366366] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(9082), 1, + STATE(10283), 1, sym__type_declarator, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 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, - 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(14319), 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, - [319596] = 17, + [366413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(9861), 3, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(9863), 16, anon_sym_COMMA, - ACTIONS(13939), 1, + anon_sym_RPAREN, 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___attribute__, 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, 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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [366440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(7458), 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, + ACTIONS(7495), 1, + anon_sym___attribute, + ACTIONS(7497), 17, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [319682] = 3, - ACTIONS(14065), 1, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [366469] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(14173), 1, - anon_sym_LF, - ACTIONS(14175), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7495), 1, + anon_sym___attribute, + ACTIONS(7497), 17, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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, - [319709] = 3, + 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, + [366498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 3, + ACTIONS(7519), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8907), 16, + ACTIONS(7521), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_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, anon_sym_requires, - [319736] = 3, + [366525] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(15238), 1, + anon_sym_LBRACE, + STATE(11211), 1, + sym_trailing_return_type, + STATE(12059), 1, + sym_requires_clause, + STATE(9291), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10193), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10179), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [366572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 3, + ACTIONS(9865), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7791), 16, + ACTIONS(9867), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -716179,86 +792006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [319763] = 15, - 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(9413), 1, - anon_sym_LBRACE, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, - sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(4263), 1, - sym_splice_specifier, - STATE(4379), 1, - sym_enumerator_list, - STATE(8675), 1, - sym__scope_resolution, - ACTIONS(14325), 2, - anon_sym_class, - anon_sym_struct, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6340), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319814] = 15, + [366599] = 3, 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(7385), 1, - anon_sym_LBRACE, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, - sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2171), 1, - sym_enumerator_list, - STATE(8763), 1, - sym__scope_resolution, - ACTIONS(14327), 2, - anon_sym_class, - anon_sym_struct, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3997), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9445), 3, + ACTIONS(9869), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9447), 16, + ACTIONS(9871), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -716275,349 +792030,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [319892] = 12, - ACTIONS(14065), 1, + [366626] = 12, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(15174), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(15176), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(15178), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14329), 1, + ACTIONS(15240), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319937] = 12, - ACTIONS(14065), 1, + [366671] = 3, + 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(14331), 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, - [319982] = 15, + ACTIONS(9888), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9890), 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, + [366698] = 8, 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(7385), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15162), 1, + anon_sym_LBRACK, + STATE(9635), 1, + sym_parameter_list, + ACTIONS(9812), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(9429), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9814), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, - sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2171), 1, - sym_enumerator_list, - STATE(8763), 1, - sym__scope_resolution, - ACTIONS(14333), 2, - anon_sym_class, - anon_sym_struct, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4053), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [320033] = 12, - ACTIONS(14065), 1, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [366735] = 12, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(15174), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(15176), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(15178), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14335), 1, + ACTIONS(15242), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320078] = 3, - ACTIONS(14065), 1, + [366780] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14185), 1, - anon_sym_LF, - ACTIONS(14187), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9925), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9927), 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, + [366807] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(12593), 1, + sym_identifier, + ACTIONS(12595), 1, + anon_sym_LPAREN2, + ACTIONS(12597), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(12599), 1, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(12601), 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, - [320105] = 15, + ACTIONS(12605), 1, + sym_primitive_type, + STATE(5346), 1, + sym__type_declarator, + STATE(6222), 1, + sym_pointer_type_declarator, + STATE(11943), 1, + sym_ms_based_modifier, + ACTIONS(12603), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6198), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [366854] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(3300), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7385), 1, + ACTIONS(9875), 1, anon_sym_LBRACE, - ACTIONS(11038), 1, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13988), 1, sym_identifier, - STATE(2104), 1, + STATE(4129), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(2171), 1, + STATE(4405), 1, sym_enumerator_list, - STATE(8763), 1, + STATE(9761), 1, sym__scope_resolution, - ACTIONS(14337), 2, + ACTIONS(15244), 2, anon_sym_class, anon_sym_struct, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(2317), 2, + STATE(3942), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [320156] = 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(8660), 1, - sym_access_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, + STATE(4316), 2, sym_template_type, sym_splice_type_specifier, - 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, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320205] = 15, + [366905] = 3, 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(8472), 1, + ACTIONS(9935), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9937), 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(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(2796), 1, - sym_enumerator_list, - STATE(8687), 1, - sym__scope_resolution, - ACTIONS(14339), 2, - anon_sym_class, - anon_sym_struct, - STATE(2678), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4444), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [320256] = 14, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [366932] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, + ACTIONS(11510), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(12462), 1, + anon_sym_LBRACE, + ACTIONS(13998), 1, + sym_identifier, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8373), 1, sym_splice_specifier, - STATE(8619), 1, - sym_access_specifier, - STATE(8762), 1, + STATE(8623), 1, + sym_enumerator_list, + STATE(9814), 1, sym__scope_resolution, - STATE(3790), 2, + ACTIONS(15246), 2, + anon_sym_class, + anon_sym_struct, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(9763), 2, + STATE(8541), 2, sym__class_name, sym_qualified_type_identifier, - ACTIONS(13847), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320305] = 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(9130), 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, - [320352] = 3, + [366983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 3, + ACTIONS(9703), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9335), 16, + ACTIONS(9705), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -716634,14 +792327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [320379] = 3, + [367010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 3, + ACTIONS(9703), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7966), 16, + ACTIONS(9705), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -716658,42 +792351,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [320406] = 3, + [367037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 3, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(13480), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(7543), 2, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9339), 16, + anon_sym_COLON, + ACTIONS(5689), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [320433] = 4, - ACTIONS(14065), 1, + [367070] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(15098), 1, anon_sym_LF, - ACTIONS(14253), 3, + ACTIONS(15100), 18, + anon_sym_DASH, + anon_sym_PLUS, 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, @@ -716707,17 +792402,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [320462] = 3, - ACTIONS(14065), 1, + [367097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7149), 1, + anon_sym___attribute, + ACTIONS(7151), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_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, + [367124] = 4, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14169), 1, + ACTIONS(15006), 1, anon_sym_LF, - ACTIONS(14171), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(15008), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -716731,48 +792451,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [320489] = 15, - ACTIONS(3), 1, + [367153] = 12, + ACTIONS(14830), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10554), 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(8705), 1, - sym__scope_resolution, - STATE(9319), 1, - sym_enumerator_list, - ACTIONS(14341), 2, - anon_sym_class, - anon_sym_struct, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(8996), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [320540] = 3, - ACTIONS(14065), 1, + ACTIONS(15174), 1, + anon_sym_PIPE_PIPE, + ACTIONS(15176), 1, + anon_sym_AMP_AMP, + ACTIONS(15178), 1, + anon_sym_PIPE, + ACTIONS(15180), 1, + anon_sym_CARET, + ACTIONS(15182), 1, + anon_sym_AMP, + ACTIONS(15248), 1, + anon_sym_LF, + ACTIONS(15170), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(15188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15172), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(15186), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [367198] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(15006), 1, anon_sym_LF, - ACTIONS(14113), 18, + ACTIONS(15008), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -716791,254 +792508,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [320567] = 12, - ACTIONS(14065), 1, + [367225] = 12, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(15006), 1, anon_sym_LF, - ACTIONS(14113), 1, + ACTIONS(15008), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(15176), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(15178), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320612] = 15, - 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(9576), 1, - anon_sym_LBRACE, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(3862), 1, - sym_enumerator_list, - STATE(8738), 1, - sym__scope_resolution, - ACTIONS(14343), 2, - anon_sym_class, - anon_sym_struct, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6136), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [320663] = 11, - ACTIONS(14065), 1, + [367270] = 11, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(15006), 1, anon_sym_LF, - ACTIONS(14259), 1, + ACTIONS(15178), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14113), 2, + ACTIONS(15008), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320706] = 10, - ACTIONS(14065), 1, + [367313] = 10, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(15006), 1, anon_sym_LF, - ACTIONS(14261), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14113), 3, + ACTIONS(15008), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320747] = 9, - ACTIONS(14065), 1, + [367354] = 9, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(15006), 1, anon_sym_LF, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14113), 4, + ACTIONS(15008), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320786] = 8, - ACTIONS(14065), 1, + [367393] = 8, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(15006), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(14113), 5, + ACTIONS(15008), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, 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, + [367430] = 7, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(15006), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(14113), 7, + ACTIONS(15008), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -717046,22 +792691,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [320909] = 6, - ACTIONS(14065), 1, + [367465] = 6, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(15006), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14113), 11, + ACTIONS(15008), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -717073,88 +792718,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320942] = 15, - ACTIONS(3), 1, + [367498] = 5, + ACTIONS(14830), 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, + ACTIONS(15006), 1, + anon_sym_LF, + ACTIONS(15170), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15172), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(15008), 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, + [367529] = 12, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(15174), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(15176), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(15178), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(15180), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(15182), 1, anon_sym_AMP, - ACTIONS(14349), 1, + ACTIONS(15250), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(15188), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [321038] = 5, - ACTIONS(14065), 1, + [367574] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(15042), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(15044), 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,650 +792801,1068 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [321069] = 12, - ACTIONS(14065), 1, + [367601] = 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(14351), 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, - [321114] = 15, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(8790), 1, + anon_sym_LBRACE, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, + sym_identifier, + STATE(3116), 1, + sym_enumerator_list, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + ACTIONS(15252), 2, + anon_sym_class, + anon_sym_struct, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7731), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [367652] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3161), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(9413), 1, + ACTIONS(11414), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(13847), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13990), 1, sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(4986), 1, sym_splice_specifier, - STATE(3901), 1, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(5843), 1, sym_enumerator_list, - STATE(8707), 1, + STATE(9816), 1, sym__scope_resolution, - ACTIONS(14353), 2, + ACTIONS(15254), 2, anon_sym_class, anon_sym_struct, - STATE(3728), 2, + STATE(5039), 2, sym_template_type, sym_splice_type_specifier, - STATE(6053), 2, + STATE(5159), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321165] = 3, - ACTIONS(14065), 1, + [367703] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14199), 1, + ACTIONS(7621), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7623), 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, + [367730] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9726), 1, + sym_access_specifier, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11144), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(14720), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [367779] = 12, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15174), 1, + anon_sym_PIPE_PIPE, + ACTIONS(15176), 1, + anon_sym_AMP_AMP, + ACTIONS(15178), 1, + anon_sym_PIPE, + ACTIONS(15180), 1, + anon_sym_CARET, + ACTIONS(15182), 1, + anon_sym_AMP, + ACTIONS(15256), 1, anon_sym_LF, - ACTIONS(14201), 18, + ACTIONS(15170), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(15184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(15188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15172), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(15186), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [367824] = 12, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15174), 1, anon_sym_PIPE_PIPE, + ACTIONS(15176), 1, anon_sym_AMP_AMP, + ACTIONS(15178), 1, anon_sym_PIPE, + ACTIONS(15180), 1, anon_sym_CARET, + ACTIONS(15182), 1, anon_sym_AMP, + ACTIONS(15258), 1, + anon_sym_LF, + ACTIONS(15170), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15184), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(15188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15172), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(15186), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [321192] = 17, + [367869] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(4676), 1, + ACTIONS(4682), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(14810), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, + ACTIONS(14818), 1, anon_sym_EQ, - ACTIONS(14323), 1, + ACTIONS(15220), 1, anon_sym_COLON, - ACTIONS(14355), 1, + ACTIONS(15260), 1, anon_sym_SEMI, - STATE(4564), 1, + STATE(5113), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(9976), 1, + STATE(11348), 1, sym_gnu_asm_expression, - STATE(9977), 1, + STATE(11350), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, + STATE(11447), 2, sym_argument_list, sym_initializer_list, - [321247] = 15, + [367924] = 15, ACTIONS(3), 1, sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(10554), 1, + ACTIONS(8154), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11534), 1, + anon_sym_COLON_COLON, + ACTIONS(14008), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2545), 1, sym_splice_specifier, - STATE(4701), 1, + STATE(2656), 1, + sym__splice_specialization_specifier, + STATE(2707), 1, sym_enumerator_list, - STATE(8716), 1, + STATE(9829), 1, sym__scope_resolution, - ACTIONS(14357), 2, + ACTIONS(15262), 2, anon_sym_class, anon_sym_struct, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4612), 2, + STATE(2436), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(2610), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321298] = 6, + [367975] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(2648), 1, - sym_template_argument_list, - ACTIONS(6565), 2, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15162), 1, + anon_sym_LBRACK, + STATE(9635), 1, + sym_parameter_list, + ACTIONS(9760), 2, anon_sym___attribute, - anon_sym_COLON, - ACTIONS(6572), 14, + anon_sym___asm, + STATE(9429), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9762), 11, 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_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [321331] = 13, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [368012] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4128), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(8450), 1, + anon_sym_LBRACE, + ACTIONS(11671), 1, + anon_sym_COLON_COLON, + ACTIONS(13994), 1, + sym_identifier, + STATE(2836), 1, + sym_splice_specifier, + STATE(2890), 1, + sym__splice_specialization_specifier, + STATE(2910), 1, + sym_enumerator_list, + STATE(9817), 1, + sym__scope_resolution, + ACTIONS(15264), 2, + anon_sym_class, + anon_sym_struct, + STATE(2600), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2876), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [368063] = 12, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15174), 1, + anon_sym_PIPE_PIPE, + ACTIONS(15176), 1, + anon_sym_AMP_AMP, + ACTIONS(15178), 1, + anon_sym_PIPE, + ACTIONS(15180), 1, + anon_sym_CARET, + ACTIONS(15182), 1, + anon_sym_AMP, + ACTIONS(15266), 1, + anon_sym_LF, + ACTIONS(15170), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(15188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15172), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(15186), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [368108] = 3, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15032), 1, + anon_sym_LF, + ACTIONS(15034), 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, + [368135] = 3, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15012), 1, + anon_sym_LF, + ACTIONS(15014), 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, + [368162] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(12579), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12581), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12583), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12585), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12587), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(12591), 1, sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(9081), 1, + STATE(5137), 1, sym__type_declarator, - STATE(11156), 1, + STATE(6026), 1, + sym_pointer_type_declarator, + STATE(12075), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(12589), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(6022), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [321378] = 15, + [368209] = 15, 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, + ACTIONS(4948), 1, anon_sym_LBRACK_COLON, - ACTIONS(11651), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(12445), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(13996), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(5979), 1, + STATE(6979), 1, + sym_splice_specifier, + STATE(7400), 1, sym_enumerator_list, - STATE(8757), 1, + STATE(9815), 1, sym__scope_resolution, - ACTIONS(14359), 2, + ACTIONS(15268), 2, anon_sym_class, anon_sym_struct, - STATE(5423), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(5568), 2, + STATE(7098), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321429] = 8, + [368260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14275), 1, + ACTIONS(9939), 3, + anon_sym___attribute, anon_sym_LBRACK, - STATE(8570), 1, - sym_parameter_list, - ACTIONS(9439), 2, + anon_sym___asm, + ACTIONS(9941), 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, + [368287] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9943), 3, anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - STATE(8436), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9441), 11, + ACTIONS(9945), 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, - [321466] = 13, + anon_sym_requires, + [368314] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14844), 1, + anon_sym_SLASH, + ACTIONS(14846), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14848), 1, + anon_sym_AMP_AMP, + ACTIONS(14850), 1, + anon_sym_PIPE, + ACTIONS(14852), 1, + anon_sym_CARET, + ACTIONS(14854), 1, + anon_sym_AMP, + ACTIONS(15270), 1, + anon_sym_RPAREN, + ACTIONS(14840), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14842), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14856), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14858), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14860), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14862), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [368363] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11856), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11858), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11860), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11862), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11864), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11870), 1, - sym_primitive_type, - STATE(8343), 1, - sym__type_declarator, - STATE(8576), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(11686), 1, + STATE(10226), 1, + sym__type_declarator, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11868), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8574), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [321513] = 4, - ACTIONS(3), 1, + [368410] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(14361), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9699), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(15050), 1, + anon_sym_LF, + ACTIONS(15052), 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_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, - [321542] = 14, + anon_sym_LT_LT, + anon_sym_GT_GT, + [368437] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, + ACTIONS(14844), 1, anon_sym_SLASH, - ACTIONS(13919), 1, + ACTIONS(14846), 1, anon_sym_PIPE_PIPE, - ACTIONS(13921), 1, + ACTIONS(14848), 1, anon_sym_AMP_AMP, - ACTIONS(13923), 1, + ACTIONS(14850), 1, anon_sym_PIPE, - ACTIONS(13925), 1, + ACTIONS(14852), 1, anon_sym_CARET, - ACTIONS(13927), 1, + ACTIONS(14854), 1, anon_sym_AMP, - ACTIONS(14363), 1, + ACTIONS(15272), 1, anon_sym_RPAREN, - ACTIONS(13913), 2, + ACTIONS(14840), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, + ACTIONS(14842), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13929), 2, + ACTIONS(14856), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13931), 2, + ACTIONS(14858), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(13933), 2, + ACTIONS(14860), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(13935), 2, + ACTIONS(14862), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [321591] = 8, - 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, - anon_sym___attribute, - anon_sym___asm, - STATE(8436), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9486), 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, - [321628] = 13, + [368486] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(12549), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(12551), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(12553), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(12555), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3478), 1, sym_pointer_type_declarator, - STATE(8966), 1, + STATE(10069), 1, sym__type_declarator, - STATE(11156), 1, + STATE(12437), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(9119), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3501), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [321675] = 15, + [368533] = 3, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15054), 1, + anon_sym_LF, + ACTIONS(15056), 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, + [368560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6829), 1, + anon_sym___attribute, + ACTIONS(6831), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_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, + [368587] = 12, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15174), 1, + anon_sym_PIPE_PIPE, + ACTIONS(15176), 1, + anon_sym_AMP_AMP, + ACTIONS(15178), 1, + anon_sym_PIPE, + ACTIONS(15180), 1, + anon_sym_CARET, + ACTIONS(15182), 1, + anon_sym_AMP, + ACTIONS(15274), 1, + anon_sym_LF, + ACTIONS(15170), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(15184), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(15188), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(15172), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(15186), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [368632] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(7668), 1, + anon_sym___attribute, + ACTIONS(7670), 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, + [368661] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2958), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(9576), 1, + ACTIONS(10973), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13959), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3800), 1, + STATE(4632), 1, sym_splice_specifier, - STATE(3862), 1, + STATE(4808), 1, + sym__splice_specialization_specifier, + STATE(5124), 1, sym_enumerator_list, - STATE(8738), 1, + STATE(9790), 1, sym__scope_resolution, - ACTIONS(14365), 2, + ACTIONS(15276), 2, anon_sym_class, anon_sym_struct, - STATE(3060), 2, + STATE(4764), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4913), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [368712] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9716), 1, + sym_access_specifier, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(3755), 2, + STATE(10849), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + ACTIONS(14720), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321726] = 15, + [368761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6803), 1, + anon_sym___attribute, + ACTIONS(6805), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_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, + [368788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6799), 1, + anon_sym___attribute, + ACTIONS(6801), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_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, + [368815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym___attribute, + ACTIONS(6809), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_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, + [368842] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(4304), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10114), 1, + ACTIONS(9886), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(14006), 1, sym_identifier, - STATE(4272), 1, + STATE(4119), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(4182), 1, sym__splice_specialization_specifier, - STATE(4358), 1, + STATE(4361), 1, sym_enumerator_list, - STATE(8676), 1, + STATE(9844), 1, sym__scope_resolution, - ACTIONS(14367), 2, + ACTIONS(15278), 2, anon_sym_class, anon_sym_struct, - STATE(4075), 2, + STATE(3951), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(4328), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321777] = 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(14369), 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, - [321822] = 12, - ACTIONS(14065), 1, + [368893] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(6795), 1, + anon_sym___attribute, + ACTIONS(6797), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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(14371), 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, - [321867] = 3, - ACTIONS(14065), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_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, + [368920] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14221), 1, - anon_sym_LF, - ACTIONS(14223), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6791), 1, + anon_sym___attribute, + ACTIONS(6793), 18, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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, - [321894] = 3, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON_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, + [368947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 3, + ACTIONS(6811), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9409), 16, + ACTIONS(6813), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_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, anon_sym_requires, - [321921] = 3, + [368974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 3, + ACTIONS(9816), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9417), 16, + ACTIONS(9818), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -717828,50 +793879,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [321948] = 15, + [369001] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(9123), 1, + sym_primitive_type, + ACTIONS(12547), 1, + sym_identifier, + ACTIONS(12549), 1, + anon_sym_LPAREN2, + ACTIONS(12551), 1, + anon_sym_STAR, + ACTIONS(12553), 1, + anon_sym_AMP_AMP, + ACTIONS(12555), 1, + anon_sym_AMP, + STATE(3478), 1, + sym_pointer_type_declarator, + STATE(9435), 1, + sym__type_declarator, + STATE(12437), 1, + sym_ms_based_modifier, + ACTIONS(9119), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3501), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [369048] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3556), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(6469), 1, + ACTIONS(5190), 1, anon_sym_COLON_COLON, - ACTIONS(10554), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(9947), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13961), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4701), 1, + STATE(4054), 1, sym_enumerator_list, - STATE(5157), 1, + STATE(4349), 1, + sym_splice_specifier, + STATE(9818), 1, + sym__scope_resolution, + ACTIONS(15280), 2, + anon_sym_class, + anon_sym_struct, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4335), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [369099] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3010), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11096), 1, + anon_sym_LBRACE, + ACTIONS(13494), 1, + anon_sym_COLON_COLON, + ACTIONS(14010), 1, + sym_identifier, + STATE(4714), 1, sym_splice_specifier, - STATE(8756), 1, + STATE(4858), 1, + sym__splice_specialization_specifier, + STATE(5376), 1, + sym_enumerator_list, + STATE(9745), 1, sym__scope_resolution, - ACTIONS(14373), 2, + ACTIONS(15282), 2, anon_sym_class, anon_sym_struct, - STATE(3790), 2, + STATE(4874), 2, sym_template_type, sym_splice_type_specifier, - STATE(5468), 2, + STATE(4969), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321999] = 3, + [369150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 3, + ACTIONS(9917), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9421), 16, + ACTIONS(9919), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -717888,425 +794009,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [322026] = 3, + [369177] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(9701), 1, + anon_sym_LBRACE, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, + sym_identifier, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(4010), 1, + sym_enumerator_list, + STATE(9840), 1, + sym__scope_resolution, + ACTIONS(15284), 2, + anon_sym_class, + anon_sym_struct, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4498), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [369228] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(9425), 16, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14808), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14810), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14818), 1, anon_sym_EQ, + ACTIONS(14951), 1, + anon_sym_SEMI, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11141), 1, + sym_gnu_asm_expression, + STATE(11142), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [322053] = 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(14375), 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, - [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, - 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(14379), 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, - [322188] = 3, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [369280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 3, + ACTIONS(9356), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8422), 16, + ACTIONS(9358), 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, - [322215] = 13, + [369306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(15288), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(15293), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(9376), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + ACTIONS(15291), 4, + anon_sym_COLON_COLON, 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, - 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, - 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(10554), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(15286), 7, + anon_sym_COLON, + anon_sym___declspec, sym_identifier, - ACTIONS(13154), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4701), 1, - sym_enumerator_list, - STATE(8710), 1, - sym__scope_resolution, - ACTIONS(14383), 2, - anon_sym_class, - anon_sym_struct, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6379), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [322313] = 3, - ACTIONS(10564), 1, - anon_sym_LF, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(10566), 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, - [322340] = 3, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + [369338] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 3, + ACTIONS(8285), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9298), 16, + ACTIONS(11625), 1, + anon_sym_requires, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [322367] = 3, + [369372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 3, + ACTIONS(9352), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8915), 16, + ACTIONS(9354), 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, + [369398] = 7, 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(9267), 1, anon_sym___attribute, - anon_sym___asm, - STATE(8436), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9302), 11, + ACTIONS(11625), 1, + anon_sym_requires, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9621), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9269), 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_asm, - anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [322431] = 13, - 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(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(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(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, + [369432] = 3, 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, + ACTIONS(9253), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14385), 12, + ACTIONS(9255), 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, - [322555] = 3, + anon_sym_requires, + [369458] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 3, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(11190), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14673), 1, + anon_sym_try, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(15296), 1, + anon_sym_SEMI, + STATE(3757), 1, + sym_compound_statement, + STATE(3759), 1, + sym_try_statement, + STATE(5275), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(10951), 1, + sym_gnu_asm_expression, + STATE(10953), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [369512] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15298), 1, + sym_identifier, + ACTIONS(15300), 1, + anon_sym_COLON_COLON, + ACTIONS(15302), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4064), 1, + sym_template_method, + STATE(4066), 1, + sym_dependent_field_identifier, + STATE(4081), 1, + sym_qualified_field_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9382), 1, + sym__scope_resolution, + STATE(11485), 1, + sym_operator_name, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [369562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10147), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9890), 15, + ACTIONS(10149), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -718322,12 +794325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [322581] = 3, + [369588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 1, + ACTIONS(9296), 1, anon_sym___attribute, - ACTIONS(8895), 17, + ACTIONS(9298), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -718345,139 +794348,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [322607] = 3, + [369614] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 1, - anon_sym___attribute, - ACTIONS(8903), 17, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(1113), 1, anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14816), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + ACTIONS(14975), 1, anon_sym_try, - anon_sym_requires, - [322633] = 15, + ACTIONS(15304), 1, + anon_sym_SEMI, + STATE(688), 1, + sym_compound_statement, + STATE(689), 1, + sym_try_statement, + STATE(5275), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11089), 1, + sym_gnu_asm_expression, + STATE(11090), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [369668] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2286), 1, anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(14235), 1, + ACTIONS(15106), 1, anon_sym_COLON_COLON, - ACTIONS(14389), 1, + ACTIONS(15306), 1, sym_identifier, - ACTIONS(14391), 1, + ACTIONS(15308), 1, anon_sym_template, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5726), 1, + STATE(6414), 1, sym_template_method, - STATE(5728), 1, + STATE(6416), 1, sym_dependent_field_identifier, - STATE(5730), 1, + STATE(6417), 1, sym_qualified_field_identifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8371), 1, + STATE(9386), 1, sym__scope_resolution, - STATE(10434), 1, + STATE(11819), 1, sym_operator_name, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [322683] = 9, + [369718] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, - anon_sym_LBRACK, - ACTIONS(10382), 1, + ACTIONS(8285), 1, + anon_sym___attribute, + ACTIONS(14321), 1, anon_sym_requires, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - STATE(8051), 1, - sym_trailing_return_type, - ACTIONS(8160), 2, + ACTIONS(14241), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 8, + ACTIONS(8287), 10, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [322721] = 9, + [369752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(9471), 1, + anon_sym___attribute, + ACTIONS(15310), 2, + anon_sym_final, + anon_sym_override, + STATE(9388), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9473), 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, - ACTIONS(10382), 1, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - STATE(8057), 1, - sym_trailing_return_type, - ACTIONS(8160), 2, + [369782] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(15316), 1, + anon_sym_requires, + ACTIONS(15313), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 8, + ACTIONS(9338), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [369816] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9853), 1, + anon_sym___attribute, + ACTIONS(15319), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9855), 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, + [369844] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9499), 1, + anon_sym___attribute, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9388), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9501), 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_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [322759] = 7, + anon_sym_requires, + [369874] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(9267), 1, anon_sym___attribute, - ACTIONS(10921), 1, + ACTIONS(15324), 1, anon_sym_requires, - ACTIONS(10859), 2, + ACTIONS(15321), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9621), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 10, + ACTIONS(9269), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -718488,55 +794575,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [322793] = 15, + [369908] = 7, 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(14205), 1, - anon_sym_COLON_COLON, - ACTIONS(14393), 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, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8375), 1, - sym__scope_resolution, - STATE(10254), 1, - sym_operator_name, - STATE(10768), 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, + ACTIONS(9774), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4330), 1, + STATE(4852), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10184), 13, + ACTIONS(9776), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -718550,78 +794602,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [322877] = 15, + [369942] = 7, 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(14399), 1, - sym_identifier, - ACTIONS(14401), 1, - anon_sym_COLON_COLON, - ACTIONS(14403), 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(8377), 1, - sym__scope_resolution, - STATE(10296), 1, - sym_operator_name, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [322927] = 3, + ACTIONS(9792), 1, + anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(4852), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9794), 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, + [369976] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 1, + ACTIONS(9796), 1, anon_sym___attribute, - ACTIONS(8956), 17, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(4852), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9798), 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, - [322953] = 7, + [370010] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, + ACTIONS(9780), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4330), 1, + STATE(4852), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10196), 13, + ACTIONS(9782), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -718635,20 +794683,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [322987] = 7, + [370044] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(9784), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4330), 1, + STATE(4852), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10200), 13, + ACTIONS(9786), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -718662,45 +794710,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [323021] = 5, + [370078] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9139), 1, + ACTIONS(9800), 1, anon_sym___attribute, - ACTIONS(10859), 2, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(4852), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9802), 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, - STATE(8444), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9141), 13, - anon_sym_DOT_DOT_DOT, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [370112] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9788), 1, + anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(4852), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9790), 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, - [323051] = 7, + [370146] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10190), 1, + ACTIONS(9804), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4330), 1, + STATE(4852), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10188), 13, + ACTIONS(9806), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -718714,406 +794791,682 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [323085] = 17, + [370180] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14810), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14818), 1, + anon_sym_EQ, + ACTIONS(14822), 1, + anon_sym_SEMI, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11146), 1, + sym_gnu_asm_expression, + STATE(11148), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [370232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3178), 1, + anon_sym___attribute, + ACTIONS(3176), 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, + [370258] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym___attribute, + ACTIONS(11625), 1, + anon_sym_requires, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [370292] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14810), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14818), 1, + anon_sym_EQ, + ACTIONS(14971), 1, + anon_sym_SEMI, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11062), 1, + sym_gnu_asm_expression, + STATE(11063), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [370344] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(13987), 1, + ACTIONS(14899), 1, anon_sym_try, - ACTIONS(14405), 1, + ACTIONS(15329), 1, anon_sym_SEMI, - STATE(912), 1, + STATE(1040), 1, sym_compound_statement, - STATE(913), 1, + STATE(1041), 1, sym_try_statement, - STATE(4564), 1, + STATE(5275), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(10168), 1, + STATE(11133), 1, sym_gnu_asm_expression, - STATE(10188), 1, + STATE(11136), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [323139] = 7, + [370398] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10194), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4330), 1, + ACTIONS(14955), 1, + anon_sym_try, + ACTIONS(15331), 1, + anon_sym_SEMI, + STATE(482), 1, + sym_compound_statement, + STATE(483), 1, + sym_try_statement, + STATE(5275), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10192), 13, + STATE(11243), 1, + sym_gnu_asm_expression, + STATE(11244), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [370452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9360), 1, + anon_sym___attribute, + ACTIONS(9362), 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, - [323173] = 7, + [370478] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + STATE(3487), 1, + sym_parameter_list, + ACTIONS(9752), 2, anon_sym___attribute, - ACTIONS(13795), 1, + anon_sym___asm, + STATE(9507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9754), 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, + [370514] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4330), 1, + ACTIONS(14826), 1, + anon_sym_try, + ACTIONS(15333), 1, + anon_sym_SEMI, + STATE(814), 1, + sym_compound_statement, + STATE(815), 1, + sym_try_statement, + STATE(5275), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10204), 13, + STATE(10861), 1, + sym_gnu_asm_expression, + STATE(10862), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [370568] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym___attribute, + ACTIONS(14041), 1, + anon_sym_requires, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [370602] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14988), 1, + anon_sym_COLON_COLON, + ACTIONS(15335), 1, + sym_identifier, + ACTIONS(15337), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6153), 1, + sym_template_method, + STATE(6157), 1, + sym_dependent_field_identifier, + STATE(6227), 1, + sym_qualified_field_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9411), 1, + sym__scope_resolution, + STATE(11541), 1, + sym_operator_name, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [370652] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym___attribute, + ACTIONS(14083), 1, + anon_sym_requires, + ACTIONS(14057), 2, anon_sym_final, anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [323207] = 7, + [370686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10174), 1, + ACTIONS(7495), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(7497), 17, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(14397), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10172), 13, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [370712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9329), 1, + anon_sym___attribute, + ACTIONS(9331), 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, - [323241] = 7, + [370738] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(11177), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14696), 1, + anon_sym_try, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4330), 1, + ACTIONS(15339), 1, + anon_sym_SEMI, + STATE(3181), 1, + sym_compound_statement, + STATE(3185), 1, + sym_try_statement, + STATE(5275), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10208), 13, + STATE(10891), 1, + sym_gnu_asm_expression, + STATE(10902), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [370792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9329), 1, + anon_sym___attribute, + ACTIONS(9331), 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, + [370818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9329), 1, + anon_sym___attribute, + ACTIONS(9331), 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, - [323275] = 15, + [370844] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(2286), 1, anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(14051), 1, + ACTIONS(15024), 1, anon_sym_COLON_COLON, - ACTIONS(14407), 1, + ACTIONS(15341), 1, sym_identifier, - ACTIONS(14409), 1, + ACTIONS(15343), 1, anon_sym_template, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5709), 1, + STATE(4064), 1, sym_template_method, - STATE(5713), 1, + STATE(4066), 1, sym_dependent_field_identifier, - STATE(5714), 1, + STATE(4081), 1, sym_qualified_field_identifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8388), 1, + STATE(9418), 1, sym__scope_resolution, - STATE(10211), 1, + STATE(11560), 1, sym_operator_name, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [323325] = 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(13941), 1, - anon_sym_SEMI, - 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(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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(1113), 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, - anon_sym_LBRACK, - ACTIONS(14083), 1, - anon_sym_try, - ACTIONS(14411), 1, - anon_sym_SEMI, - STATE(684), 1, - sym_compound_statement, - STATE(685), 1, - sym_try_statement, - 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, - [323431] = 15, + [370894] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, - anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(14141), 1, + ACTIONS(6022), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14418), 1, anon_sym_COLON_COLON, - ACTIONS(14413), 1, + ACTIONS(15345), 1, sym_identifier, - ACTIONS(14415), 1, - anon_sym_template, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(5788), 1, - sym_dependent_field_identifier, - STATE(5794), 1, - sym_template_method, - STATE(5842), 1, - sym_qualified_field_identifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8391), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(10416), 1, - sym_operator_name, - STATE(10768), 5, + STATE(9224), 1, + sym_splice_specifier, + ACTIONS(6024), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(11867), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [323481] = 16, + [370940] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(4676), 1, + ACTIONS(11164), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14685), 1, + anon_sym_try, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(13985), 1, + ACTIONS(15347), 1, anon_sym_SEMI, - STATE(4564), 1, + STATE(3586), 1, + sym_try_statement, + STATE(3741), 1, + sym_compound_statement, + STATE(5275), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(9692), 1, + STATE(11208), 1, sym_gnu_asm_expression, - STATE(9729), 1, + STATE(11209), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [323533] = 14, + [370994] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + STATE(3487), 1, + sym_parameter_list, + ACTIONS(9828), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(9507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9830), 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, + [371030] = 15, 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, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(14401), 1, + ACTIONS(15134), 1, anon_sym_COLON_COLON, - ACTIONS(14417), 1, + ACTIONS(15349), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(15351), 1, + anon_sym_template, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(6466), 1, + sym_template_method, + STATE(6467), 1, + sym_dependent_field_identifier, + STATE(6468), 1, + sym_qualified_field_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8377), 1, + STATE(9422), 1, sym__scope_resolution, - STATE(10296), 1, + STATE(11457), 1, sym_operator_name, - STATE(10582), 1, - sym_field_initializer, - STATE(9461), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [323581] = 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(14321), 1, - anon_sym_SEMI, - 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, - [323633] = 3, + [371080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 1, + ACTIONS(3149), 1, anon_sym___attribute, - ACTIONS(8994), 17, + ACTIONS(3147), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719131,184 +795484,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [323659] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 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, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [323693] = 3, + [371106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 3, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + STATE(8980), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15355), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9699), 15, + ACTIONS(15353), 12, 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, - 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_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [323753] = 3, + [371136] = 14, 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, - [323779] = 14, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15300), 1, + anon_sym_COLON_COLON, + ACTIONS(15357), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9382), 1, + sym__scope_resolution, + STATE(11452), 1, + sym_field_initializer, + STATE(11485), 1, + sym_operator_name, + STATE(10582), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [371184] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2286), 1, anon_sym_operator, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(14401), 1, + ACTIONS(15300), 1, anon_sym_COLON_COLON, - ACTIONS(14417), 1, + ACTIONS(15357), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8377), 1, + STATE(9382), 1, sym__scope_resolution, - STATE(9879), 1, + STATE(11077), 1, sym_field_initializer, - STATE(10296), 1, + STATE(11485), 1, sym_operator_name, - STATE(9461), 2, + STATE(10582), 2, sym_template_method, sym_qualified_field_identifier, - STATE(10768), 5, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [323827] = 7, + [371232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(9292), 1, anon_sym___attribute, - ACTIONS(13485), 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), 10, + ACTIONS(9294), 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, - [323861] = 7, + anon_sym_requires, + [371258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(9737), 1, anon_sym___attribute, - ACTIONS(14422), 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), 10, + ACTIONS(15319), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(15359), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9739), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719317,53 +795620,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [323895] = 7, + anon_sym_requires, + [371288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + STATE(8980), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10011), 3, anon_sym___attribute, - ACTIONS(14428), 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), 10, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10013), 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, - [323929] = 8, + [371318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9758), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - STATE(3140), 1, + STATE(3487), 1, sym_parameter_list, - ACTIONS(9300), 2, + ACTIONS(9812), 2, anon_sym___attribute, anon_sym___asm, - STATE(8473), 2, + STATE(9507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9302), 10, + ACTIONS(9814), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -719374,53 +795678,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [323965] = 9, + [371354] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15094), 1, + anon_sym_COLON_COLON, + ACTIONS(15341), 1, + sym_identifier, + ACTIONS(15361), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4064), 1, + sym_template_method, + STATE(4066), 1, + sym_dependent_field_identifier, + STATE(4081), 1, + sym_qualified_field_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9431), 1, + sym__scope_resolution, + STATE(11518), 1, + sym_operator_name, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [371404] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14810), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - STATE(7999), 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(8313), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 8, + ACTIONS(15260), 1, + anon_sym_SEMI, + ACTIONS(15363), 1, + anon_sym_EQ, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11348), 1, + sym_gnu_asm_expression, + STATE(11350), 1, + aux_sym_declaration_repeat1, + STATE(11351), 1, + sym_initializer_list, + STATE(11447), 1, + sym_argument_list, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [371458] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12433), 1, + anon_sym_LT, + STATE(9481), 1, + sym_template_argument_list, + ACTIONS(10094), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10096), 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, - [324003] = 8, + [371488] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9758), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - STATE(3140), 1, + STATE(3487), 1, sym_parameter_list, - ACTIONS(9476), 2, + ACTIONS(9770), 2, anon_sym___attribute, anon_sym___asm, - STATE(8473), 2, + STATE(9507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9478), 10, + ACTIONS(9772), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -719431,24 +795803,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [324039] = 8, + [371524] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9758), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - STATE(3140), 1, + STATE(3487), 1, sym_parameter_list, - ACTIONS(9484), 2, + ACTIONS(9760), 2, anon_sym___attribute, anon_sym___asm, - STATE(8473), 2, + STATE(9507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9486), 10, + ACTIONS(9762), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -719459,206 +795831,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [324075] = 7, + [371560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 1, + ACTIONS(9271), 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(8601), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8915), 10, + ACTIONS(9273), 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, - [324109] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - 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, - 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, + anon_sym_requires, + [371586] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13161), 1, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(11625), 1, anon_sym_requires, - STATE(8035), 1, - sym_trailing_return_type, - ACTIONS(13158), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 8, + ACTIONS(9338), 10, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [324201] = 9, + [371620] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(12418), 1, + ACTIONS(7621), 1, + anon_sym___attribute, + ACTIONS(11625), 1, anon_sym_requires, - STATE(8013), 1, - sym_trailing_return_type, - ACTIONS(12415), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(9663), 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, - [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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8885), 1, - anon_sym___attribute, - ACTIONS(8887), 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, - [324297] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8942), 1, - anon_sym___attribute, - ACTIONS(8944), 17, + ACTIONS(7623), 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, - [324323] = 3, + [371654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(9313), 1, anon_sym___attribute, - ACTIONS(3161), 17, + ACTIONS(9315), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719676,72 +795931,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9652), 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, - [324429] = 3, + [371680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 1, + ACTIONS(9263), 1, anon_sym___attribute, - ACTIONS(8923), 17, + ACTIONS(9265), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719759,49 +795954,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324455] = 17, + [371706] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(4676), 1, + ACTIONS(4682), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(14810), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14321), 1, - anon_sym_SEMI, - ACTIONS(14445), 1, + ACTIONS(14818), 1, anon_sym_EQ, - STATE(4564), 1, + ACTIONS(14897), 1, + anon_sym_SEMI, + STATE(5113), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(10077), 1, + STATE(10886), 1, sym_gnu_asm_expression, - STATE(10079), 1, + STATE(10926), 1, aux_sym_declaration_repeat1, - STATE(10114), 1, - sym_initializer_list, - STATE(10418), 1, - sym_argument_list, - ACTIONS(13949), 2, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [324509] = 3, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [371758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 1, + ACTIONS(9275), 1, anon_sym___attribute, - ACTIONS(8998), 17, + ACTIONS(9277), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719819,35 +796013,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324535] = 3, + [371784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(10359), 3, anon_sym___attribute, - ACTIONS(3153), 17, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10361), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LT, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, 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, - [324561] = 3, + [371810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 1, + ACTIONS(9378), 1, anon_sym___attribute, - ACTIONS(8952), 17, + ACTIONS(9380), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719865,12 +796059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324587] = 3, + [371836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 1, + ACTIONS(9279), 1, anon_sym___attribute, - ACTIONS(9013), 17, + ACTIONS(9281), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719888,297 +796082,635 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324613] = 3, + [371862] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 1, - anon_sym___attribute, - ACTIONS(9002), 17, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14808), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14810), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(14816), 1, anon_sym_LBRACK, + ACTIONS(14818), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, + ACTIONS(15260), 1, + anon_sym_SEMI, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11348), 1, + sym_gnu_asm_expression, + STATE(11350), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [371914] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + STATE(9009), 1, + sym_trailing_return_type, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_try, - anon_sym_requires, - [324639] = 4, + [371951] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9322), 1, + ACTIONS(7472), 1, anon_sym___attribute, - ACTIONS(14447), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9324), 15, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(14041), 1, + anon_sym_requires, + STATE(9412), 1, + sym_trailing_return_type, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 7, 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, - [324667] = 3, + [371988] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 1, + ACTIONS(7621), 1, anon_sym___attribute, - ACTIONS(8948), 17, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(14083), 1, + anon_sym_requires, + STATE(9387), 1, + sym_trailing_return_type, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 7, 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, - [324693] = 3, + [372025] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 1, + ACTIONS(8285), 1, anon_sym___attribute, - ACTIONS(8911), 17, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(14321), 1, + anon_sym_requires, + STATE(9389), 1, + sym_trailing_return_type, + ACTIONS(14241), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 7, 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, - [324719] = 7, + [372062] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(10921), 1, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + ACTIONS(15316), 1, anon_sym_requires, - ACTIONS(10859), 2, + STATE(9392), 1, + sym_trailing_return_type, + ACTIONS(15313), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 10, + ACTIONS(9338), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [324753] = 9, + [372099] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(8790), 1, + anon_sym_LBRACE, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13955), 1, + sym_identifier, + STATE(3125), 1, + sym_enumerator_list, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(7849), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7675), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [372146] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12732), 1, + sym_identifier, + ACTIONS(12734), 1, + anon_sym_LPAREN2, + ACTIONS(12736), 1, + anon_sym_STAR, + ACTIONS(12738), 1, + anon_sym_AMP_AMP, + ACTIONS(12740), 1, + anon_sym_AMP, + STATE(10148), 1, + sym__field_declarator, + STATE(10346), 1, + sym_operator_name, + STATE(12473), 1, + sym_ms_based_modifier, + STATE(9957), 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, + [372189] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(13961), 1, + sym_identifier, + ACTIONS(13980), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4143), 1, + sym_enumerator_list, + STATE(4349), 1, + sym_splice_specifier, + STATE(9805), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7242), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [372236] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15365), 1, + sym_identifier, + ACTIONS(8800), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(9476), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(15367), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(15369), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [372267] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3764), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(8790), 1, + anon_sym_LBRACE, + ACTIONS(11707), 1, + anon_sym_COLON_COLON, + ACTIONS(13992), 1, + sym_identifier, + STATE(3037), 1, + sym_splice_specifier, + STATE(3125), 1, + sym_enumerator_list, + STATE(3239), 1, + sym__splice_specialization_specifier, + STATE(9763), 1, + sym__scope_resolution, + STATE(2873), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3140), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [372314] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3010), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11096), 1, + anon_sym_LBRACE, + ACTIONS(13494), 1, + anon_sym_COLON_COLON, + ACTIONS(14010), 1, + sym_identifier, + STATE(4714), 1, + sym_splice_specifier, + STATE(4858), 1, + sym__splice_specialization_specifier, + STATE(5367), 1, + sym_enumerator_list, + STATE(9745), 1, + sym__scope_resolution, + STATE(4874), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4983), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [372361] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(9336), 1, anon_sym_LBRACK, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13254), 1, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8046), 1, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + STATE(9026), 1, sym_trailing_return_type, - ACTIONS(13251), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(9253), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 8, + ACTIONS(9338), 7, 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, - [324791] = 8, + [372398] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(12732), 1, + sym_identifier, + ACTIONS(12734), 1, anon_sym_LPAREN2, - STATE(3140), 1, - sym_parameter_list, - ACTIONS(9439), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8473), 2, + ACTIONS(12736), 1, + anon_sym_STAR, + ACTIONS(12738), 1, + anon_sym_AMP_AMP, + ACTIONS(12740), 1, + anon_sym_AMP, + STATE(10201), 1, + sym__field_declarator, + STATE(10346), 1, + sym_operator_name, + STATE(12473), 1, + sym_ms_based_modifier, + STATE(9957), 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, + [372441] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4966), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(12744), 1, + anon_sym_LBRACE, + ACTIONS(13605), 1, + anon_sym_COLON_COLON, + ACTIONS(13986), 1, + sym_identifier, + STATE(7005), 1, + sym_splice_specifier, + STATE(7038), 1, + sym__splice_specialization_specifier, + STATE(7368), 1, + sym_enumerator_list, + STATE(9780), 1, + sym__scope_resolution, + STATE(7036), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7141), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [372488] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10956), 1, + anon_sym_noexcept, + ACTIONS(10958), 1, + anon_sym_throw, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(15371), 1, + anon_sym_LBRACE, + STATE(12018), 1, + sym_trailing_return_type, + STATE(9947), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(10288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9441), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + STATE(10289), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(14710), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [372529] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(9947), 1, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [324827] = 5, + ACTIONS(13961), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4143), 1, + sym_enumerator_list, + STATE(4349), 1, + sym_splice_specifier, + STATE(9818), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4303), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [372576] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9393), 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, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2438), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(9701), 1, anon_sym_LBRACE, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, + sym_identifier, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(4043), 1, + sym_enumerator_list, + STATE(9840), 1, + sym__scope_resolution, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4413), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [372623] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + STATE(9009), 1, + sym_trailing_return_type, + ACTIONS(10604), 2, 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, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 7, 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, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [372660] = 9, 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, + ACTIONS(7621), 1, anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8994), 1, - sym__abstract_declarator, - ACTIONS(9427), 5, - anon_sym_COMMA, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(13975), 1, + anon_sym_requires, + STATE(9000), 1, + sym_trailing_return_type, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 7, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, 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, + anon_sym_try, + [372697] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(7621), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10624), 1, + ACTIONS(11445), 1, anon_sym_DASH_GT, - STATE(8032), 1, + ACTIONS(13975), 1, + anon_sym_requires, + STATE(9000), 1, sym_trailing_return_type, - ACTIONS(8160), 2, + ACTIONS(13972), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 8, - anon_sym_RPAREN, + ACTIONS(7623), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, @@ -720186,28 +796718,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [324989] = 9, + [372734] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(8285), 1, anon_sym_LBRACK, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13882), 1, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8050), 1, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + STATE(9027), 1, sym_trailing_return_type, - ACTIONS(13879), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 8, - anon_sym_RPAREN, + ACTIONS(8287), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, @@ -720215,419 +796746,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [325027] = 5, + [372771] = 9, 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, + ACTIONS(9336), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9519), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + STATE(9026), 1, + sym_trailing_return_type, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9253), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 7, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [325057] = 16, + [372808] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4676), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3300), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(9875), 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(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, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [325109] = 17, + ACTIONS(11663), 1, + anon_sym_COLON_COLON, + ACTIONS(13988), 1, + sym_identifier, + STATE(4129), 1, + sym_splice_specifier, + STATE(4309), 1, + sym__splice_specialization_specifier, + STATE(4411), 1, + sym_enumerator_list, + STATE(9761), 1, + sym__scope_resolution, + STATE(3945), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4316), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [372855] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(960), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9947), 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, - 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(14019), 1, + sym_identifier, + ACTIONS(14021), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9758), 1, + sym__scope_resolution, + STATE(9983), 1, + sym_splice_specifier, + STATE(10512), 1, + sym_enumerator_list, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10115), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [372902] = 9, 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, + ACTIONS(9336), 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, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(14747), 1, anon_sym_requires, - ACTIONS(10859), 2, + STATE(9050), 1, + sym_trailing_return_type, + ACTIONS(14744), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9253), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9338), 7, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [372939] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3078), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11114), 1, anon_sym_LBRACE, + ACTIONS(13540), 1, + anon_sym_COLON_COLON, + ACTIONS(13947), 1, + sym_identifier, + STATE(4787), 1, + sym_splice_specifier, + STATE(4831), 1, + sym__splice_specialization_specifier, + STATE(5463), 1, + sym_enumerator_list, + STATE(9822), 1, + sym__scope_resolution, + STATE(4832), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5000), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [372986] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9796), 1, + anon_sym___asm, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, anon_sym_LBRACK, + STATE(5105), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9798), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [325251] = 7, + anon_sym_requires, + [373019] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, - anon_sym___attribute, - ACTIONS(10921), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6008), 1, + anon_sym_COLON_COLON, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(15373), 1, + sym_identifier, + ACTIONS(15375), 1, + anon_sym_template, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9474), 1, + sym__scope_resolution, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [373070] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, anon_sym_requires, - ACTIONS(10859), 2, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + STATE(9034), 1, + sym_trailing_return_type, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7623), 7, 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, - [325285] = 17, + [373107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10603), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13807), 1, - anon_sym_try, - ACTIONS(13937), 1, + ACTIONS(15377), 1, + sym_identifier, + ACTIONS(8744), 3, 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, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(9511), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(15367), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(15369), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [373138] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(9780), 1, anon_sym___asm, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - ACTIONS(13951), 1, - anon_sym_try, - ACTIONS(14457), 1, - anon_sym_SEMI, - STATE(458), 1, - sym_compound_statement, - STATE(459), 1, - sym_try_statement, - STATE(4564), 1, + STATE(5105), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9313), 1, sym__function_declarator_seq, - STATE(9843), 1, - sym_gnu_asm_expression, - STATE(9844), 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, - [325393] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9143), 1, - anon_sym___attribute, - ACTIONS(14459), 2, - anon_sym_final, - anon_sym_override, - STATE(8444), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9145), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(9782), 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_LBRACK, anon_sym_EQ, - anon_sym_GT2, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, anon_sym_requires, - [325423] = 13, + [373171] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3852), 1, anon_sym_LBRACK_COLON, - ACTIONS(5946), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13549), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(7396), 1, + anon_sym_LBRACE, + ACTIONS(11617), 1, anon_sym_COLON_COLON, - ACTIONS(14462), 1, + ACTIONS(13953), 1, sym_identifier, - STATE(3808), 1, + STATE(2255), 1, + sym_splice_specifier, + STATE(2273), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(2283), 1, + sym_enumerator_list, + STATE(9811), 1, sym__scope_resolution, - STATE(8222), 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, - sym_decltype, + STATE(2212), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2281), 2, sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, sym_splice_expression, - [325469] = 8, + [373218] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(9784), 1, + anon_sym___asm, + ACTIONS(14661), 1, anon_sym_LPAREN2, - STATE(3140), 1, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5105), 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(9313), 1, + sym__function_declarator_seq, + ACTIONS(9786), 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, + [373251] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 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, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9061), 1, - sym__abstract_declarator, - ACTIONS(9427), 4, - anon_sym_SEMI, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3161), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(11414), 1, 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(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(13990), 1, + sym_identifier, + STATE(4986), 1, + sym_splice_specifier, + STATE(5034), 1, + sym__splice_specialization_specifier, + STATE(5926), 1, + sym_enumerator_list, + STATE(9816), 1, + sym__scope_resolution, + STATE(5039), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5177), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [373298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 1, + ACTIONS(6822), 1, anon_sym_COLON_COLON, - ACTIONS(6603), 4, + ACTIONS(6824), 4, anon_sym___attribute, anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6596), 12, + ACTIONS(6817), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -720640,251 +797156,626 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [325599] = 9, + [373325] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, + ACTIONS(7621), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8428), 1, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + STATE(9034), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, - anon_sym_COMMA, + ACTIONS(7623), 7, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [325636] = 14, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [373362] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(3452), 1, + sym_template_argument_list, + ACTIONS(6781), 14, + 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, + [373391] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2438), 1, anon_sym_LBRACK_COLON, - ACTIONS(10554), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(9701), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, + ACTIONS(13627), 1, + anon_sym_COLON_COLON, + ACTIONS(13984), 1, sym_identifier, - ACTIONS(13166), 1, + STATE(3490), 1, + sym_splice_specifier, + STATE(3723), 1, + sym__splice_specialization_specifier, + STATE(4043), 1, + sym_enumerator_list, + STATE(9840), 1, + sym__scope_resolution, + STATE(3705), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4538), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [373438] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11510), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(12462), 1, + anon_sym_LBRACE, + ACTIONS(13998), 1, + sym_identifier, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(4802), 1, + STATE(8373), 1, sym_splice_specifier, - STATE(8705), 1, - sym__scope_resolution, - STATE(9323), 1, + STATE(8628), 1, sym_enumerator_list, - STATE(3790), 2, + STATE(9814), 1, + sym__scope_resolution, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(9001), 2, + STATE(8545), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325683] = 14, + [373485] = 14, ACTIONS(3), 1, sym_comment, + ACTIONS(2300), 1, + anon_sym_LBRACK_COLON, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(8624), 1, + ACTIONS(8154), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(14008), 1, sym_identifier, - STATE(2742), 1, + STATE(2545), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2656), 1, sym__splice_specialization_specifier, - STATE(3007), 1, + STATE(2712), 1, sym_enumerator_list, - STATE(8686), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(2934), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4656), 2, + STATE(2466), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(2610), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325730] = 14, + [373532] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(11625), 1, + anon_sym_requires, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + STATE(9379), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [373569] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9800), 1, + anon_sym___asm, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5105), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9802), 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, + [373602] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9788), 1, + anon_sym___asm, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5105), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9790), 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, + [373635] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3884), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(8472), 1, + ACTIONS(8354), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13949), 1, sym_identifier, - STATE(2638), 1, + STATE(2640), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(2685), 1, sym__splice_specialization_specifier, - STATE(2882), 1, + STATE(2720), 1, sym_enumerator_list, - STATE(8687), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(2570), 2, + STATE(2510), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(2686), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325777] = 14, + [373682] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14810), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14818), 1, + anon_sym_EQ, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11482), 1, + sym_gnu_asm_expression, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(15379), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11447), 2, + sym_argument_list, + sym_initializer_list, + [373729] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(9039), 1, + sym_trailing_return_type, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [373766] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(4128), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10114), 1, + ACTIONS(8450), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11671), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13994), 1, sym_identifier, - STATE(4305), 1, + STATE(2836), 1, + sym_splice_specifier, + STATE(2890), 1, sym__splice_specialization_specifier, - STATE(4359), 1, + STATE(2961), 1, sym_enumerator_list, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(9817), 1, sym__scope_resolution, - STATE(4296), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7601), 2, + STATE(2605), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(2876), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325824] = 9, + [373813] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6774), 1, + anon_sym___attribute, + ACTIONS(15381), 1, + anon_sym_LT, + STATE(6862), 1, + sym_template_argument_list, + ACTIONS(6781), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [373844] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(7543), 1, anon_sym___attribute, - ACTIONS(10919), 1, + ACTIONS(15381), 1, + anon_sym_LT, + STATE(6862), 1, + sym_template_argument_list, + ACTIONS(5689), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [373875] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11466), 1, anon_sym_DASH_GT, - ACTIONS(10921), 1, + ACTIONS(14098), 1, anon_sym_requires, - STATE(8408), 1, + STATE(9038), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(14095), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 7, - anon_sym_COMMA, + ACTIONS(8287), 7, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [325861] = 14, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [373912] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(4948), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(8476), 1, + ACTIONS(12445), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(13428), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13996), 1, sym_identifier, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, + STATE(6476), 1, sym__splice_specialization_specifier, - STATE(2885), 1, + STATE(6979), 1, + sym_splice_specifier, + STATE(7402), 1, sym_enumerator_list, - STATE(8702), 1, + STATE(9815), 1, sym__scope_resolution, - STATE(2572), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2661), 2, + STATE(6606), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(7170), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325908] = 12, + [373959] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9774), 1, + anon_sym___asm, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5105), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9776), 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, + [373992] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7442), 1, + anon_sym___attribute, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(15381), 1, + anon_sym_LT, + STATE(7064), 1, + sym_template_argument_list, + ACTIONS(7447), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [374023] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym_LBRACK, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(9039), 1, + sym_trailing_return_type, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [374060] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9792), 1, + anon_sym___asm, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5105), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9794), 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, + [374093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9603), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9601), 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, + [374118] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(11987), 1, + ACTIONS(12734), 1, anon_sym_LPAREN2, - ACTIONS(11995), 1, + ACTIONS(12752), 1, sym_identifier, - ACTIONS(11997), 1, + ACTIONS(12754), 1, anon_sym_STAR, - ACTIONS(11999), 1, + ACTIONS(12756), 1, anon_sym_AMP_AMP, - ACTIONS(12001), 1, + ACTIONS(12758), 1, anon_sym_AMP, - STATE(9035), 1, + STATE(9553), 1, sym__field_declarator, - STATE(9236), 1, + STATE(9871), 1, sym_operator_name, - STATE(11191), 1, + STATE(12436), 1, sym_ms_based_modifier, - STATE(8839), 7, + STATE(9957), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -720892,303 +797783,199 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [325951] = 11, + [374161] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10956), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10958), 1, anon_sym_throw, - ACTIONS(13843), 1, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(14464), 1, + ACTIONS(15216), 1, anon_sym_LBRACE, - STATE(11685), 1, + STATE(12132), 1, sym_trailing_return_type, - STATE(8834), 2, + STATE(9947), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9191), 2, + STATE(10370), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9192), 3, + STATE(10371), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(14710), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [325992] = 14, + [374202] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(9413), 1, + ACTIONS(9875), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13982), 1, sym_identifier, - STATE(3711), 1, + STATE(4309), 1, sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3884), 1, + STATE(4411), 1, sym_enumerator_list, - STATE(8707), 1, + STATE(8086), 1, + sym_splice_specifier, + STATE(9755), 1, sym__scope_resolution, - STATE(3666), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3728), 2, + STATE(4316), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(7652), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326039] = 6, + [374249] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14466), 1, + ACTIONS(15383), 1, sym_identifier, - ACTIONS(8406), 3, - anon_sym_COMMA, + ACTIONS(15385), 2, anon_sym_RPAREN, anon_sym_COLON, - STATE(8460), 3, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(14469), 5, + STATE(10796), 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(14472), 5, + ACTIONS(161), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [326070] = 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(9576), 1, - anon_sym_LBRACE, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(3873), 1, - sym_enumerator_list, - STATE(8738), 1, - sym__scope_resolution, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3756), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [326117] = 11, + [374282] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(11433), 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, + STATE(8980), 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, + ACTIONS(10011), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10013), 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, + [374311] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10114), 1, - anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(11291), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(12920), 1, + anon_sym_LBRACE, + ACTIONS(13945), 1, sym_identifier, - STATE(4272), 1, + STATE(7345), 1, sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4359), 1, + STATE(7708), 1, sym_enumerator_list, - STATE(8676), 1, + STATE(7770), 1, + sym__splice_specialization_specifier, + STATE(9795), 1, sym__scope_resolution, - STATE(4076), 2, + STATE(7284), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [326205] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(8383), 1, - anon_sym_LBRACE, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, - sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2704), 1, - sym_enumerator_list, - STATE(8682), 1, - sym__scope_resolution, - STATE(2615), 2, + STATE(7771), 2, sym_template_type, sym_splice_type_specifier, - STATE(4327), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326252] = 14, + [374358] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2728), 1, anon_sym_LBRACK_COLON, - ACTIONS(9576), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(12462), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(13450), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13978), 1, sym_identifier, - STATE(3028), 1, + STATE(3443), 1, sym__splice_specialization_specifier, - STATE(7481), 1, + STATE(6696), 1, sym_splice_specifier, - STATE(7710), 1, + STATE(6973), 1, sym_enumerator_list, - STATE(8691), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(3060), 2, + STATE(3420), 2, sym_template_type, sym_splice_type_specifier, - STATE(7605), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [326299] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(8383), 1, - anon_sym_LBRACE, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, - sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2704), 1, - sym_enumerator_list, - STATE(8682), 1, - sym__scope_resolution, - STATE(2521), 2, + STATE(6831), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2615), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326346] = 7, + [374405] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(9804), 1, anon_sym___asm, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4562), 1, + STATE(5105), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10200), 12, + ACTIONS(9806), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -721201,30 +797988,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [326379] = 12, + [374438] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15387), 1, + sym_identifier, + ACTIONS(8756), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(9511), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(15390), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(15393), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [374469] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(11466), 1, + anon_sym_DASH_GT, + STATE(9027), 1, + sym_trailing_return_type, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [374506] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(2728), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(12445), 1, + anon_sym_LBRACE, + ACTIONS(13577), 1, + anon_sym_COLON_COLON, + ACTIONS(13951), 1, + sym_identifier, + STATE(6476), 1, + sym__splice_specialization_specifier, + STATE(6573), 1, + sym_splice_specifier, + STATE(6944), 1, + sym_enumerator_list, + STATE(9760), 1, + sym__scope_resolution, + STATE(6606), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6806), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [374553] = 12, 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, + ACTIONS(12734), 1, anon_sym_LPAREN2, - ACTIONS(11989), 1, + ACTIONS(12752), 1, + sym_identifier, + ACTIONS(12754), 1, anon_sym_STAR, - ACTIONS(11991), 1, + ACTIONS(12756), 1, anon_sym_AMP_AMP, - ACTIONS(11993), 1, + ACTIONS(12758), 1, anon_sym_AMP, - STATE(8578), 1, + STATE(9727), 1, sym__field_declarator, - STATE(8807), 1, + STATE(9871), 1, sym_operator_name, - STATE(10687), 1, + STATE(12436), 1, sym_ms_based_modifier, - STATE(8839), 7, + STATE(9957), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -721232,60 +798105,121 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [326422] = 14, + [374596] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(4304), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(13131), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(9886), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(11679), 1, + anon_sym_COLON_COLON, + ACTIONS(14006), 1, sym_identifier, - STATE(6581), 1, + STATE(4119), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(4182), 1, sym__splice_specialization_specifier, - STATE(7599), 1, + STATE(4400), 1, sym_enumerator_list, - STATE(8700), 1, + STATE(9844), 1, sym__scope_resolution, - STATE(7122), 2, + STATE(3961), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4328), 2, sym_template_type, sym_splice_type_specifier, - STATE(7291), 2, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [374643] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(4383), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(8341), 1, + anon_sym_LBRACE, + ACTIONS(11687), 1, + anon_sym_COLON_COLON, + ACTIONS(14012), 1, + sym_identifier, + STATE(2639), 1, + sym_splice_specifier, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2746), 1, + sym_enumerator_list, + STATE(9746), 1, + sym__scope_resolution, + STATE(2507), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(2700), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326469] = 9, + [374690] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym_LBRACK, + ACTIONS(11445), 1, + anon_sym_DASH_GT, + ACTIONS(14098), 1, + anon_sym_requires, + STATE(9038), 1, + sym_trailing_return_type, + ACTIONS(14095), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [374727] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(7472), 1, anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(13188), 1, + ACTIONS(11625), 1, anon_sym_requires, - STATE(8398), 1, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + STATE(9438), 1, sym_trailing_return_type, - ACTIONS(13146), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 7, + ACTIONS(7474), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -721293,27 +798227,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [326506] = 9, + [374764] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(7621), 1, anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(13236), 1, + ACTIONS(11625), 1, anon_sym_requires, - STATE(8401), 1, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + STATE(9377), 1, sym_trailing_return_type, - ACTIONS(13202), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, + ACTIONS(7623), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -721321,899 +798255,1035 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [326543] = 9, + [374801] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(10919), 1, + ACTIONS(9336), 1, + anon_sym_LBRACK, + ACTIONS(11466), 1, anon_sym_DASH_GT, - ACTIONS(13485), 1, + ACTIONS(14747), 1, anon_sym_requires, - STATE(8402), 1, + STATE(9050), 1, sym_trailing_return_type, - ACTIONS(13396), 2, + ACTIONS(14744), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9253), 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, - 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, + ACTIONS(9338), 7, 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_asm, - anon_sym___asm__, anon_sym_try, - [326609] = 12, - 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(9012), 1, - sym__field_declarator, - STATE(9236), 1, - sym_operator_name, - STATE(11191), 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, - [326652] = 14, + [374838] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(2958), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10114), 1, + ACTIONS(10973), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(13715), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13959), 1, sym_identifier, - STATE(4272), 1, + STATE(4632), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(4808), 1, sym__splice_specialization_specifier, - STATE(4359), 1, + STATE(5187), 1, sym_enumerator_list, - STATE(8676), 1, + STATE(9790), 1, sym__scope_resolution, - STATE(4296), 2, + STATE(4764), 2, sym_template_type, sym_splice_type_specifier, - STATE(6303), 2, + STATE(4866), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326699] = 6, + [374885] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14475), 1, - sym_identifier, - ACTIONS(8454), 3, + ACTIONS(8285), 1, + anon_sym___attribute, + ACTIONS(11625), 1, + anon_sym_requires, + ACTIONS(11734), 1, + anon_sym_DASH_GT, + STATE(9437), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 7, 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, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [374922] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10174), 1, - anon_sym___asm, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(3556), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(8222), 1, + anon_sym_COLON_COLON, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(13957), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4143), 1, + sym_enumerator_list, + STATE(4770), 1, + sym_splice_specifier, + STATE(9769), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4674), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [374969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10379), 3, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10172), 12, + anon_sym___asm, + ACTIONS(10381), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [326763] = 14, + [374993] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(9576), 1, - anon_sym_LBRACE, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(3028), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9117), 1, + anon_sym_COLON_COLON, + ACTIONS(11132), 1, + anon_sym_STAR, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3800), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(3873), 1, - sym_enumerator_list, - STATE(8738), 1, + STATE(9525), 1, sym__scope_resolution, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6133), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [326810] = 14, + [375037] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11651), 1, - anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10842), 1, + anon_sym_STAR, + ACTIONS(10848), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(6005), 1, - sym_enumerator_list, - STATE(8757), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9526), 1, sym__scope_resolution, - STATE(5423), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5624), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [326857] = 9, + [375081] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(7472), 1, anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(14422), 1, + ACTIONS(11439), 1, anon_sym_requires, - STATE(8403), 1, - sym_trailing_return_type, - ACTIONS(14419), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 7, + ACTIONS(7474), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [326894] = 14, + [375113] = 13, 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(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6853), 1, + anon_sym_COLON_COLON, + ACTIONS(15396), 1, + anon_sym_STAR, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6206), 1, + sym_abstract_pointer_declarator, + STATE(6209), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9528), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [375157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10190), 1, - anon_sym___asm, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(9459), 3, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10188), 12, + anon_sym___asm, + ACTIONS(9461), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [326974] = 14, + [375181] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7385), 1, - anon_sym_LBRACE, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2134), 1, - sym_enumerator_list, - STATE(2170), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6736), 1, + anon_sym_COLON_COLON, + ACTIONS(15398), 1, + anon_sym_STAR, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8763), 1, + STATE(5341), 1, + sym_abstract_pointer_declarator, + STATE(5342), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9530), 1, sym__scope_resolution, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3998), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [327021] = 14, + [375225] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(8476), 1, - anon_sym_LBRACE, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7609), 1, + anon_sym_STAR, + ACTIONS(7615), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2885), 1, - sym_enumerator_list, - STATE(8702), 1, + STATE(5828), 1, + sym_abstract_pointer_declarator, + STATE(5831), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9531), 1, sym__scope_resolution, - STATE(2661), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4505), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [327068] = 7, + [375269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10194), 1, - anon_sym___asm, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(12435), 3, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10192), 12, + anon_sym___asm, + ACTIONS(7109), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [327101] = 14, + [375293] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(8624), 1, - anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(15400), 1, sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3007), 1, - sym_enumerator_list, - STATE(8686), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(2731), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2934), 2, - sym_template_type, + STATE(9224), 1, + sym_splice_specifier, + STATE(11649), 1, sym_splice_type_specifier, - STATE(10768), 3, + STATE(12107), 1, + sym_qualified_identifier, + ACTIONS(15402), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(13053), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [327148] = 7, + [375337] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10186), 1, - anon_sym___asm, - ACTIONS(13795), 1, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14060), 1, + anon_sym_requires, + STATE(9543), 1, + sym_trailing_return_type, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(14397), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10184), 12, + [375371] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym___attribute, + ACTIONS(14060), 1, + anon_sym_requires, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 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, + [375403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15406), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(15404), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [327181] = 14, + [375427] = 8, 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(7385), 1, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(11439), 1, + anon_sym_requires, + STATE(9655), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, - sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2134), 1, - sym_enumerator_list, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(8763), 1, - sym__scope_resolution, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(2318), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [327228] = 14, + anon_sym_LBRACK, + [375461] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(3711), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6630), 1, + anon_sym_COLON_COLON, + ACTIONS(15408), 1, + anon_sym_STAR, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4263), 1, + STATE(5341), 1, + sym_abstract_pointer_declarator, + STATE(5342), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(4324), 1, - sym_enumerator_list, - STATE(8675), 1, + STATE(9538), 1, sym__scope_resolution, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6374), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [327275] = 12, + [375505] = 3, 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, + ACTIONS(9861), 1, + anon_sym___attribute, + ACTIONS(9863), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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, + 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, + [375529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9865), 1, + anon_sym___attribute, + ACTIONS(9867), 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, + [375553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(9869), 1, anon_sym___attribute, - ACTIONS(10919), 1, + ACTIONS(9871), 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, + [375577] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11435), 1, anon_sym_DASH_GT, - ACTIONS(10921), 1, + ACTIONS(14244), 1, anon_sym_requires, - STATE(8441), 1, + STATE(9548), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(14241), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [375611] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym___attribute, + ACTIONS(14244), 1, + anon_sym_requires, + ACTIONS(14241), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 7, + ACTIONS(8287), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [327355] = 14, + [375643] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7135), 1, + anon_sym_STAR, + ACTIONS(7141), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4671), 1, - sym_enumerator_list, - STATE(5157), 1, + STATE(5828), 1, + sym_abstract_pointer_declarator, + STATE(5831), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8756), 1, + STATE(9544), 1, sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5469), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [327402] = 14, + [375687] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(15410), 1, sym_identifier, - STATE(3711), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3884), 1, - sym_enumerator_list, - STATE(8707), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(3728), 2, - sym_template_type, + STATE(9224), 1, + sym_splice_specifier, + STATE(11490), 1, sym_splice_type_specifier, - STATE(6120), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(12110), 1, + sym_qualified_identifier, + ACTIONS(15412), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(13053), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [327449] = 7, + [375731] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 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(10208), 12, + ACTIONS(8285), 1, + anon_sym___attribute, + ACTIONS(11439), 1, + anon_sym_requires, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 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_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [327482] = 7, + anon_sym_LBRACK, + [375763] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15414), 1, sym_identifier, - ACTIONS(14485), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9518), 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, - [327515] = 7, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11598), 1, + sym_splice_type_specifier, + STATE(12637), 1, + sym_qualified_identifier, + ACTIONS(15416), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [375807] = 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, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(15418), 1, + anon_sym_requires, + ACTIONS(15313), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 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_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [327548] = 9, + anon_sym_LBRACK, + [375839] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, - anon_sym___attribute, - ACTIONS(10919), 1, + ACTIONS(11435), 1, anon_sym_DASH_GT, - ACTIONS(10921), 1, + ACTIONS(15418), 1, anon_sym_requires, - STATE(8374), 1, + STATE(9551), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(15313), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, + ACTIONS(9338), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [327585] = 14, + [375873] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(3711), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7382), 1, + anon_sym_STAR, + ACTIONS(7388), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4263), 1, + STATE(5828), 1, + sym_abstract_pointer_declarator, + STATE(5831), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(4324), 1, - sym_enumerator_list, - STATE(8675), 1, + STATE(9550), 1, sym__scope_resolution, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4052), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [327632] = 7, + [375917] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, - anon_sym___asm, - ACTIONS(13795), 1, + ACTIONS(9267), 1, + anon_sym___attribute, + ACTIONS(15421), 1, + anon_sym_requires, + ACTIONS(15321), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9621), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9269), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(14397), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10204), 12, + [375949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9888), 1, + anon_sym___attribute, + ACTIONS(9890), 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, anon_sym_requires, - [327665] = 14, + [375973] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14665), 1, + anon_sym_COLON, + ACTIONS(14669), 1, + anon_sym_LBRACK, + ACTIONS(15426), 1, + anon_sym___attribute, + ACTIONS(15428), 1, + anon_sym_EQ, + STATE(4853), 1, + sym_parameter_list, + STATE(9967), 1, + sym__function_declarator_seq, + STATE(10579), 1, + sym_bitfield_clause, + STATE(10580), 1, + sym_initializer_list, + STATE(9768), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15424), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [376019] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6598), 1, anon_sym_COLON_COLON, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(15430), 1, + anon_sym_STAR, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(3836), 1, + sym_abstract_pointer_declarator, + STATE(3889), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9554), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [376063] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14315), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + ACTIONS(15432), 1, + anon_sym_virtual, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(4671), 1, - sym_enumerator_list, - STATE(8716), 1, + STATE(9832), 1, sym__scope_resolution, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(4594), 2, + STATE(10665), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327712] = 6, + [376107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14487), 1, - sym_identifier, - ACTIONS(8466), 3, + ACTIONS(9939), 1, + anon_sym___attribute, + ACTIONS(9941), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, 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, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [376131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 3, + ACTIONS(9816), 1, + anon_sym___attribute, + ACTIONS(9818), 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, + [376155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15436), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9222), 14, + ACTIONS(15434), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722222,214 +799292,361 @@ static const uint16_t ts_small_parse_table[] = { 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, + [376179] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7385), 1, - anon_sym_LBRACE, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2134), 1, - sym_enumerator_list, - STATE(2170), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10717), 1, + anon_sym_STAR, + ACTIONS(10723), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8763), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9559), 1, sym__scope_resolution, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4136), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [327815] = 14, + [376223] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(15438), 1, + sym_identifier, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4671), 1, - sym_enumerator_list, - STATE(8710), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(3790), 2, - sym_template_type, + STATE(9224), 1, + sym_splice_specifier, + STATE(11535), 1, sym_splice_type_specifier, - STATE(6381), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(12571), 1, + sym_qualified_identifier, + ACTIONS(15440), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(13053), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [327862] = 14, + [376267] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 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, + ACTIONS(5966), 1, sym_identifier, - STATE(3028), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9639), 1, + anon_sym_STAR, + ACTIONS(9645), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(3873), 1, - sym_enumerator_list, - STATE(7260), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9315), 1, + sym_abstract_pointer_declarator, + STATE(9316), 1, + sym_abstract_qualified_identifier, + STATE(9561), 1, sym__scope_resolution, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7591), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [327909] = 14, + [376311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9707), 1, + anon_sym___attribute, + ACTIONS(9709), 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, + [376335] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(8472), 1, - anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(15442), 1, sym_identifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(2882), 1, - sym_enumerator_list, - STATE(8687), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(2678), 2, - sym_template_type, + STATE(9224), 1, + sym_splice_specifier, + STATE(11630), 1, sym_splice_type_specifier, - STATE(4511), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(12069), 1, + sym_qualified_identifier, + ACTIONS(15444), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(13053), 4, sym_decltype, + sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [327956] = 14, + [376379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9455), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9457), 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, + [376403] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(7385), 1, - anon_sym_LBRACE, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(5966), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2134), 1, - sym_enumerator_list, - STATE(2170), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10569), 1, + anon_sym_STAR, + ACTIONS(10575), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8763), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9565), 1, sym__scope_resolution, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(2346), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [328003] = 13, + [376447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9711), 1, + anon_sym___attribute, + ACTIONS(9713), 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, + [376471] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10963), 1, + anon_sym_requires, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + STATE(9009), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(10604), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [376507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9724), 1, + anon_sym___attribute, + ACTIONS(9726), 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, + [376531] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6708), 1, anon_sym_COLON_COLON, - ACTIONS(14489), 1, - anon_sym_virtual, - STATE(3808), 1, + ACTIONS(15446), 1, + anon_sym_STAR, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(5723), 1, + sym_abstract_pointer_declarator, + STATE(5725), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(9569), 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, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [328047] = 3, + [376575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12380), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(12378), 11, + anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [376599] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 1, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(11439), 1, + anon_sym_requires, + STATE(9546), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [376633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9728), 1, anon_sym___attribute, - ACTIONS(9298), 15, + ACTIONS(9730), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -722445,49 +799662,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [328071] = 8, + [376657] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13205), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6764), 1, + anon_sym_COLON_COLON, + ACTIONS(15448), 1, + anon_sym_STAR, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5723), 1, + sym_abstract_pointer_declarator, + STATE(5725), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9573), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [376701] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8513), 1, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + STATE(9034), 1, sym_trailing_return_type, - ACTIONS(13202), 2, + ACTIONS(7621), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, + ACTIONS(7623), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [376737] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(15452), 1, + anon_sym___asm, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15450), 8, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - [328105] = 7, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [376773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(9943), 1, anon_sym___attribute, - ACTIONS(13205), 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), 8, + ACTIONS(9945), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722496,65 +799762,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328137] = 8, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [376797] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13399), 1, + ACTIONS(10963), 1, anon_sym_requires, - STATE(8517), 1, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + STATE(9027), 1, sym_trailing_return_type, - ACTIONS(13396), 2, + ACTIONS(8285), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9270), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, + ACTIONS(8287), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [328171] = 7, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [376833] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(13399), 1, + ACTIONS(10963), 1, anon_sym_requires, - ACTIONS(13396), 2, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + STATE(9026), 1, + sym_trailing_return_type, + ACTIONS(9336), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9108), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9253), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 8, + ACTIONS(9338), 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, - [328203] = 3, + anon_sym_LBRACK_LBRACK, + [376869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14493), 3, + ACTIONS(9414), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14491), 13, + ACTIONS(9416), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722568,147 +799843,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328227] = 8, + [376893] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(10861), 1, - anon_sym_requires, - STATE(8585), 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_COMMA, - anon_sym_RPAREN, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10802), 1, + anon_sym_STAR, + ACTIONS(10808), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9580), 1, + sym__scope_resolution, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [376937] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(15456), 1, + anon_sym___asm, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15454), 8, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - [328261] = 13, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [376973] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14495), 1, + ACTIONS(15458), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10580), 1, + STATE(11865), 1, sym_splice_type_specifier, - STATE(10707), 1, + STATE(12962), 1, sym_qualified_identifier, - ACTIONS(14497), 2, + ACTIONS(15460), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328305] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute, - ACTIONS(14499), 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), 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, - [328337] = 8, + [377017] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(14499), 1, - anon_sym_requires, - STATE(8519), 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_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [328371] = 7, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5982), 1, + anon_sym_COLON_COLON, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15462), 1, + anon_sym_STAR, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(3836), 1, + sym_abstract_pointer_declarator, + STATE(3889), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9583), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [377061] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 1, - anon_sym___attribute, - ACTIONS(14502), 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), 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, - [328403] = 3, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15464), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11432), 1, + sym_splice_type_specifier, + STATE(12194), 1, + sym_qualified_identifier, + ACTIONS(15466), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [377105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9095), 3, + ACTIONS(15470), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9097), 13, + ACTIONS(15468), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722722,14 +800015,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328427] = 3, + [377129] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10524), 1, + anon_sym_STAR, + ACTIONS(10530), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9586), 1, + sym__scope_resolution, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [377173] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15472), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11550), 1, + sym_splice_type_specifier, + STATE(12920), 1, + sym_qualified_identifier, + ACTIONS(15474), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [377217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9041), 3, + ACTIONS(10379), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9043), 13, + ACTIONS(10381), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722743,62 +800098,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328451] = 3, + [377241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(10379), 3, anon_sym___attribute, - ACTIONS(7791), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10381), 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, - [328475] = 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(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, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [328511] = 3, + [377265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 3, + ACTIONS(10379), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14509), 13, + ACTIONS(10381), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722812,70 +800140,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328535] = 13, + [377289] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(11273), 1, + anon_sym_STAR, + ACTIONS(11279), 1, anon_sym_COLON_COLON, - ACTIONS(14513), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9591), 1, + sym__scope_resolution, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [377333] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15476), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10317), 1, + STATE(11577), 1, sym_splice_type_specifier, - STATE(10933), 1, + STATE(11919), 1, sym_qualified_identifier, - ACTIONS(14515), 2, + ACTIONS(15478), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328579] = 7, + [377377] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym___attribute, - ACTIONS(10861), 1, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14003), 1, anon_sym_requires, - ACTIONS(10859), 2, + STATE(9535), 1, + sym_trailing_return_type, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 8, + ACTIONS(7474), 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, - [328611] = 3, + [377411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 3, + ACTIONS(10379), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9035), 13, + ACTIONS(10381), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722889,73 +800249,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328635] = 9, + [377435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(10379), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14519), 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(14517), 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, - [328671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9308), 1, - anon_sym___attribute, - ACTIONS(9310), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(10381), 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, + [377459] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14523), 1, + ACTIONS(15482), 1, anon_sym___asm, - STATE(4564), 1, + STATE(5113), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14521), 8, + ACTIONS(15480), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -722964,273 +800297,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [328731] = 3, + [377495] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9047), 13, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(11439), 1, + anon_sym_requires, + STATE(9639), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 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, - [328755] = 13, + anon_sym_LBRACK, + [377529] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(7525), 1, + anon_sym_STAR, + ACTIONS(7533), 1, anon_sym_COLON_COLON, - ACTIONS(14525), 1, - sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(7417), 1, + sym_abstract_pointer_declarator, + STATE(7418), 1, + sym_abstract_qualified_identifier, + STATE(9224), 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, + STATE(9598), 1, + sym__scope_resolution, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [328799] = 13, + [377573] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14529), 1, + ACTIONS(15484), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10225), 1, + STATE(11692), 1, sym_splice_type_specifier, - STATE(11282), 1, + STATE(12231), 1, sym_qualified_identifier, - ACTIONS(14531), 2, + ACTIONS(15486), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328843] = 13, + [377617] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10516), 1, + anon_sym_STAR, + ACTIONS(10522), 1, anon_sym_COLON_COLON, - ACTIONS(14533), 1, - anon_sym_virtual, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(9315), 1, + sym_abstract_pointer_declarator, + STATE(9316), 1, + sym_abstract_qualified_identifier, + STATE(9600), 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, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [328887] = 13, + [377661] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym___attribute, + ACTIONS(14003), 1, + anon_sym_requires, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 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, + [377693] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14535), 1, + ACTIONS(15488), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10219), 1, + STATE(11739), 1, sym_splice_type_specifier, - STATE(10828), 1, + STATE(12378), 1, sym_qualified_identifier, - ACTIONS(14537), 2, + ACTIONS(15490), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328931] = 13, + [377737] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9168), 1, anon_sym_COLON_COLON, - ACTIONS(14539), 1, - anon_sym_virtual, - STATE(3808), 1, + ACTIONS(11122), 1, + anon_sym_STAR, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(9603), 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, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [328975] = 3, + [377781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 1, + ACTIONS(15494), 3, anon_sym___attribute, - ACTIONS(9363), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(15492), 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, + [377805] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(6728), 1, anon_sym_COLON_COLON, - ACTIONS(14541), 1, - sym_identifier, - STATE(3808), 1, + ACTIONS(15496), 1, + anon_sym_STAR, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(3836), 1, + sym_abstract_pointer_declarator, + STATE(3889), 1, + sym_abstract_qualified_identifier, + STATE(9224), 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, + STATE(9605), 1, + sym__scope_resolution, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [329043] = 13, + [377849] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(5966), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6106), 1, anon_sym_COLON_COLON, - ACTIONS(14545), 1, - anon_sym_virtual, - STATE(3808), 1, + ACTIONS(15498), 1, + anon_sym_STAR, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(3836), 1, + sym_abstract_pointer_declarator, + STATE(3889), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(9606), 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, + STATE(13053), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [329087] = 3, + [377893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 3, + ACTIONS(15502), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9039), 13, + ACTIONS(15500), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723244,220 +800607,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329111] = 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___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, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [329147] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, - 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_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, - [329187] = 13, + [377917] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(7925), 1, + anon_sym_STAR, + ACTIONS(7931), 1, anon_sym_COLON_COLON, - ACTIONS(14551), 1, - sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(7523), 1, + sym_abstract_pointer_declarator, + STATE(7528), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(10478), 1, - sym_splice_type_specifier, - STATE(11562), 1, - sym_qualified_identifier, - ACTIONS(14553), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, + STATE(9608), 1, + sym__scope_resolution, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [329231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9365), 1, - anon_sym___attribute, - ACTIONS(9367), 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, - [329255] = 13, + [377961] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14555), 1, + ACTIONS(15504), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10549), 1, + STATE(11869), 1, sym_splice_type_specifier, - STATE(10666), 1, + STATE(12688), 1, sym_qualified_identifier, - ACTIONS(14557), 2, + ACTIONS(15506), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [329299] = 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, - [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, - 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, + [378005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 1, + ACTIONS(9917), 1, anon_sym___attribute, - ACTIONS(9391), 15, + ACTIONS(9919), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723473,12 +800690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329407] = 3, + [378029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(7621), 1, anon_sym___attribute, - ACTIONS(8907), 15, + ACTIONS(7623), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723494,81 +800711,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329431] = 7, + [378053] = 9, 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(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(14816), 1, anon_sym_LBRACK, - [329463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9415), 1, - anon_sym___attribute, - ACTIONS(9417), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(15510), 1, + anon_sym___asm, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15508), 8, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [329487] = 3, + [378089] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 1, - anon_sym___attribute, - ACTIONS(9421), 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, - [329511] = 3, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15512), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11413), 1, + sym_splice_type_specifier, + STATE(12394), 1, + sym_qualified_identifier, + ACTIONS(15514), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [378133] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10743), 1, + anon_sym_STAR, + ACTIONS(10749), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9614), 1, + sym__scope_resolution, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [378177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 3, + ACTIONS(9410), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9762), 13, + ACTIONS(9412), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723582,14 +800821,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329535] = 3, + [378201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11754), 3, + ACTIONS(9418), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6883), 13, + ACTIONS(9420), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723603,14 +800842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329559] = 3, + [378225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14565), 3, + ACTIONS(9422), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14563), 13, + ACTIONS(9424), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723624,14 +800863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329583] = 3, + [378249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 3, + ACTIONS(9401), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9762), 13, + ACTIONS(9403), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723645,59 +800884,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329607] = 3, + [378273] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 3, - anon_sym___attribute, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10121), 1, + anon_sym_STAR, + ACTIONS(10127), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9315), 1, + sym_abstract_pointer_declarator, + STATE(9316), 1, + sym_abstract_qualified_identifier, + STATE(9619), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [378317] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, anon_sym_LBRACK, + ACTIONS(15518), 1, anon_sym___asm, - ACTIONS(9762), 13, + STATE(5113), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15516), 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, - [329631] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(10861), 1, - anon_sym_requires, - STATE(8551), 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, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [329665] = 3, + [378353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 1, + ACTIONS(9845), 1, anon_sym___attribute, - ACTIONS(8915), 15, + ACTIONS(9847), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723713,89 +800963,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329689] = 3, + [378377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(15522), 3, anon_sym___attribute, - ACTIONS(8422), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(15520), 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, + [378401] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(6668), 1, anon_sym_COLON_COLON, - ACTIONS(14567), 1, + ACTIONS(15524), 1, + anon_sym_STAR, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5728), 1, + sym_abstract_pointer_declarator, + STATE(5729), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9623), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [378445] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6022), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14418), 1, + anon_sym_COLON_COLON, + ACTIONS(15345), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10469), 1, - sym_splice_type_specifier, - STATE(11519), 1, + STATE(11867), 2, + sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - ACTIONS(14569), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [329757] = 7, + [378487] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 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(8601), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8915), 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, - [329789] = 3, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6648), 1, + anon_sym_STAR, + ACTIONS(9481), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9625), 1, + sym__scope_resolution, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [378531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 1, + ACTIONS(9925), 1, anon_sym___attribute, - ACTIONS(9437), 15, + ACTIONS(9927), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723811,68 +801097,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329813] = 7, + [378555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(15528), 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(15526), 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, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [378579] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(6748), 1, anon_sym_COLON_COLON, - ACTIONS(14571), 1, - sym_identifier, - STATE(3808), 1, + ACTIONS(15530), 1, + anon_sym_STAR, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(6206), 1, + sym_abstract_pointer_declarator, + STATE(6209), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9628), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [378623] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + ACTIONS(15532), 1, + anon_sym_virtual, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, sym_splice_specifier, - STATE(10355), 1, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, sym_splice_type_specifier, - STATE(11014), 1, - sym_qualified_identifier, - ACTIONS(14573), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, + STATE(11144), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [329889] = 3, + [378667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 1, + ACTIONS(9935), 1, anon_sym___attribute, - ACTIONS(9371), 15, + ACTIONS(9937), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723888,78 +801201,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329913] = 3, + [378691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14577), 3, + ACTIONS(9703), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14575), 13, + ACTIONS(9705), 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, - [329937] = 4, + anon_sym_requires, + [378715] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9322), 1, - anon_sym___attribute, - ACTIONS(14579), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9324), 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, - [329963] = 3, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7428), 1, + anon_sym_STAR, + ACTIONS(7434), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5828), 1, + sym_abstract_pointer_declarator, + STATE(5831), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9632), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [378759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 3, + ACTIONS(9703), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9061), 13, + ACTIONS(9705), 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, + [378783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9088), 3, + ACTIONS(9389), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9090), 13, + ACTIONS(9391), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723973,14 +801295,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [330011] = 3, + [378807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14583), 3, + ACTIONS(9397), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14581), 13, + ACTIONS(9399), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723994,56 +801316,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [330035] = 3, + [378831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 3, + ACTIONS(9853), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9065), 13, + ACTIONS(15534), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9855), 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_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [330059] = 3, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [378857] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7915), 1, + anon_sym_STAR, + ACTIONS(7921), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(7417), 1, + sym_abstract_pointer_declarator, + STATE(7418), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9637), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [378901] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7231), 1, + anon_sym_STAR, + ACTIONS(7237), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5828), 1, + sym_abstract_pointer_declarator, + STATE(5831), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9638), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [378945] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 3, + ACTIONS(7621), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9069), 13, + ACTIONS(11439), 1, + anon_sym_requires, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 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, - [330083] = 3, + anon_sym_LBRACK, + [378977] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8920), 1, + anon_sym_COLON_COLON, + ACTIONS(10850), 1, + anon_sym_STAR, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(9640), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [379021] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10447), 1, + anon_sym_STAR, + ACTIONS(10453), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9315), 1, + sym_abstract_pointer_declarator, + STATE(9316), 1, + sym_abstract_qualified_identifier, + STATE(9641), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [379065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9080), 3, + ACTIONS(10214), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9082), 13, + ACTIONS(10216), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724057,14 +801508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [330107] = 3, + [379089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9084), 3, + ACTIONS(9445), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9086), 13, + ACTIONS(9447), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724078,12 +801529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [330131] = 3, + [379113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 1, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(9409), 15, + ACTIONS(9338), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -724099,128 +801550,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330155] = 14, + [379137] = 13, 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, - 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_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [330201] = 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, - 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, - [330225] = 13, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11206), 1, + anon_sym_STAR, + ACTIONS(11212), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(9645), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [379181] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(7405), 1, + anon_sym_STAR, + ACTIONS(7411), 1, anon_sym_COLON_COLON, - ACTIONS(14591), 1, - sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(5828), 1, + sym_abstract_pointer_declarator, + STATE(5831), 1, + sym_abstract_qualified_identifier, + STATE(9224), 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, + STATE(9646), 1, + sym__scope_resolution, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [330269] = 13, + [379225] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(7501), 1, + anon_sym_STAR, + ACTIONS(7509), 1, anon_sym_COLON_COLON, - ACTIONS(14595), 1, - sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(7523), 1, + sym_abstract_pointer_declarator, + STATE(7528), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(10490), 1, - sym_splice_type_specifier, - STATE(11253), 1, - sym_qualified_identifier, - ACTIONS(14597), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, + STATE(9647), 1, + sym__scope_resolution, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [330313] = 3, + [379269] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 1, + ACTIONS(9737), 1, anon_sym___attribute, - ACTIONS(9425), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(15534), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(15536), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9739), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724229,44 +801663,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [330337] = 8, + [379297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(10861), 1, - anon_sym_requires, - STATE(8565), 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, + ACTIONS(15540), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(15538), 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, - [330371] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [379321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(7472), 1, anon_sym___attribute, - ACTIONS(7966), 15, + ACTIONS(7474), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -724282,95 +801708,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330395] = 7, + [379345] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 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(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 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, - [330427] = 3, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10588), 1, + anon_sym_STAR, + ACTIONS(10594), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9315), 1, + sym_abstract_pointer_declarator, + STATE(9316), 1, + sym_abstract_qualified_identifier, + STATE(9651), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [379389] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(14601), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14599), 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, - [330451] = 8, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + ACTIONS(15542), 1, + anon_sym_virtual, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10644), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [379433] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13149), 1, - anon_sym_requires, - STATE(8511), 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, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [330485] = 7, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6772), 1, + anon_sym_COLON_COLON, + ACTIONS(15544), 1, + anon_sym_STAR, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5728), 1, + sym_abstract_pointer_declarator, + STATE(5729), 1, + sym_abstract_qualified_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9653), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [379477] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11021), 1, + anon_sym_STAR, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9631), 1, + sym_abstract_pointer_declarator, + STATE(9633), 1, + sym_abstract_qualified_identifier, + STATE(9654), 1, + sym__scope_resolution, + STATE(13053), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [379521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(13149), 1, + ACTIONS(11439), 1, anon_sym_requires, - ACTIONS(13146), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 8, + ACTIONS(9338), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724379,35 +801857,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + [379553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14609), 3, + ACTIONS(9426), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14607), 13, + ACTIONS(9428), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724421,43 +801878,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [330565] = 13, + [379577] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14611), 1, + ACTIONS(15546), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10261), 1, + STATE(11400), 1, sym_splice_type_specifier, - STATE(11179), 1, + STATE(12612), 1, sym_qualified_identifier, - ACTIONS(14613), 2, + ACTIONS(15548), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [330609] = 3, + [379621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 1, + ACTIONS(9267), 1, anon_sym___attribute, - ACTIONS(9318), 15, + ACTIONS(9269), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -724473,80 +801930,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330633] = 8, + [379645] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + ACTIONS(15550), 1, + anon_sym_virtual, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10849), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [379689] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9267), 1, + anon_sym___attribute, + ACTIONS(11439), 1, anon_sym_requires, - STATE(8563), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(9621), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 7, + ACTIONS(9269), 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, - [330667] = 3, + [379721] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14617), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14615), 13, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(11439), 1, + anon_sym_requires, + STATE(9660), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 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, - [330691] = 3, + anon_sym_LBRACK, + [379755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 3, + ACTIONS(9892), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9917), 13, + ACTIONS(9894), 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, - [330715] = 3, + anon_sym_requires, + [379779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 1, + ACTIONS(8285), 1, anon_sym___attribute, - ACTIONS(9335), 15, + ACTIONS(8287), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -724562,292 +802054,641 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330739] = 5, + [379803] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9393), 1, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(13086), 1, + anon_sym_requires, + STATE(9039), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, 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_LBRACK, + ACTIONS(13083), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9335), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 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_LBRACK, + [379839] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(13975), 1, + anon_sym_requires, + STATE(9000), 1, + sym_trailing_return_type, + ACTIONS(7621), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(13972), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [379875] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(14098), 1, + anon_sym_requires, + STATE(9038), 1, + sym_trailing_return_type, + ACTIONS(8285), 2, + anon_sym___attribute, anon_sym_LBRACK, + ACTIONS(14095), 2, anon_sym_final, anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9270), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [379911] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12108), 1, + anon_sym_DASH_GT, + ACTIONS(14747), 1, anon_sym_requires, - [330767] = 3, + STATE(9050), 1, + sym_trailing_return_type, + ACTIONS(9336), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(14744), 2, + anon_sym_final, + anon_sym_override, + STATE(9108), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9253), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [379947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 1, + ACTIONS(15554), 3, anon_sym___attribute, - ACTIONS(9339), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(15552), 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, - [330791] = 12, + [379971] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5966), 1, + sym_identifier, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5946), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13549), 1, + ACTIONS(9820), 1, + anon_sym_STAR, + ACTIONS(9826), 1, anon_sym_COLON_COLON, - ACTIONS(14462), 1, - sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10273), 2, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, + STATE(9315), 1, + sym_abstract_pointer_declarator, + STATE(9316), 1, + sym_abstract_qualified_identifier, + STATE(9669), 1, + sym__scope_resolution, + STATE(13053), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [330833] = 13, + [380015] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14621), 1, + ACTIONS(14315), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10346), 1, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, sym_splice_type_specifier, - STATE(10997), 1, - sym_qualified_identifier, - ACTIONS(14623), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, + STATE(10644), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [330877] = 3, + [380056] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15383), 1, + sym_identifier, + STATE(9677), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(11912), 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, + [380085] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15383), 1, + sym_identifier, + STATE(9677), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(11204), 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, + [380114] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 1, + ACTIONS(8285), 1, anon_sym___attribute, - ACTIONS(9447), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(11882), 1, + anon_sym_requires, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + STATE(9787), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 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_GT2, + [380149] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15383), 1, + sym_identifier, + STATE(9677), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(11898), 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, + [380178] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(11882), 1, + anon_sym_requires, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + STATE(9796), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [330901] = 3, + [380213] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 3, - anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14669), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9762), 13, + ACTIONS(15558), 1, + anon_sym___attribute, + STATE(4853), 1, + sym_parameter_list, + STATE(9967), 1, + sym__function_declarator_seq, + STATE(9768), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15556), 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, - [330925] = 6, + [380248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, - sym_identifier, - STATE(8656), 2, + STATE(9455), 2, sym_string_literal, sym_raw_string_literal, - STATE(9673), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, + ACTIONS(9517), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(15367), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(161), 5, + ACTIONS(15369), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330954] = 9, + [380275] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(11625), 1, + anon_sym_requires, + STATE(9438), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [380308] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15560), 1, + sym_identifier, + ACTIONS(15562), 1, + aux_sym_preproc_if_token2, + ACTIONS(15564), 1, + aux_sym_preproc_else_token1, + ACTIONS(15566), 1, + aux_sym_preproc_elif_token1, + STATE(9985), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9986), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(10272), 1, + sym_enumerator, + ACTIONS(15568), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(12970), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(12979), 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, + [380347] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(7472), 1, anon_sym___attribute, - ACTIONS(10861), 1, + ACTIONS(11439), 1, anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11950), 1, anon_sym_DASH_GT, - STATE(8565), 1, + STATE(9639), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(7474), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [330989] = 12, + [380382] = 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(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(9642), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [331030] = 9, + ACTIONS(7621), 1, + anon_sym___attribute, + ACTIONS(11439), 1, + anon_sym_requires, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + STATE(9546), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [380417] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(8285), 1, anon_sym___attribute, - ACTIONS(10861), 1, + ACTIONS(11439), 1, anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11950), 1, anon_sym_DASH_GT, - STATE(8551), 1, + STATE(9655), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 5, + ACTIONS(8287), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [331065] = 9, + [380452] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(10861), 1, + ACTIONS(11439), 1, anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11950), 1, anon_sym_DASH_GT, - STATE(8563), 1, + STATE(9660), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 5, + ACTIONS(9338), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [331100] = 6, + [380487] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14669), 1, + anon_sym_LBRACK, + ACTIONS(15572), 1, + anon_sym___attribute, + STATE(4853), 1, + sym_parameter_list, + STATE(9967), 1, + sym__function_declarator_seq, + STATE(9768), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15570), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [380522] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10620), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [380563] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14669), 1, + anon_sym_LBRACK, + ACTIONS(15576), 1, + anon_sym___attribute, + STATE(4853), 1, + sym_parameter_list, + STATE(9967), 1, + sym__function_declarator_seq, + STATE(9768), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15574), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [380598] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(15578), 1, + sym_identifier, + ACTIONS(15580), 1, + anon_sym_COLON_COLON, + ACTIONS(15582), 1, + anon_sym_LBRACK_COLON, + STATE(4362), 1, + sym_splice_specifier, + STATE(4382), 1, + sym_splice_type_specifier, + STATE(4580), 1, + sym__splice_specialization_specifier, + STATE(4645), 1, + sym_template_type, + STATE(9837), 1, + sym__scope_resolution, + STATE(4651), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [380641] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(9886), 2, + STATE(11287), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -724862,64 +802703,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331129] = 9, + [380670] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute, - ACTIONS(11516), 1, + ACTIONS(11623), 1, anon_sym_DASH_GT, - ACTIONS(14625), 1, + ACTIONS(14321), 1, anon_sym_requires, - STATE(8749), 1, + STATE(9389), 1, sym_trailing_return_type, - ACTIONS(14419), 2, + ACTIONS(14241), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 5, - anon_sym_COMMA, + ACTIONS(8287), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [331164] = 6, + anon_sym_EQ, + anon_sym_try, + [380703] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, - sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(10062), 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, - [331193] = 6, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(15316), 1, + anon_sym_requires, + STATE(9392), 1, + sym_trailing_return_type, + ACTIONS(15313), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [380736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(9906), 2, + STATE(10946), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -724934,69 +802776,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331222] = 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(14630), 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(14628), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [331257] = 11, + [380765] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(15560), 1, sym_identifier, - ACTIONS(14634), 1, - aux_sym_preproc_if_token2, - ACTIONS(14636), 1, + ACTIONS(15564), 1, aux_sym_preproc_else_token1, - ACTIONS(14638), 1, + ACTIONS(15566), 1, aux_sym_preproc_elif_token1, - STATE(8923), 1, + ACTIONS(15584), 1, + aux_sym_preproc_if_token2, + STATE(9975), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8924), 1, + STATE(9976), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9089), 1, + STATE(10272), 1, sym_enumerator, - ACTIONS(14640), 2, + ACTIONS(15568), 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, + STATE(12809), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [331296] = 6, + STATE(12831), 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, + [380804] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym___attribute, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + ACTIONS(14003), 1, + anon_sym_requires, + STATE(9535), 1, + sym_trailing_return_type, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [380839] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, + anon_sym___attribute, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + ACTIONS(14060), 1, + anon_sym_requires, + STATE(9543), 1, + sym_trailing_return_type, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [380874] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym___attribute, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + ACTIONS(14244), 1, + anon_sym_requires, + STATE(9548), 1, + sym_trailing_return_type, + ACTIONS(14241), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [380909] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(11950), 1, + anon_sym_DASH_GT, + ACTIONS(15418), 1, + anon_sym_requires, + STATE(9551), 1, + sym_trailing_return_type, + ACTIONS(15313), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [380944] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7472), 1, + anon_sym___attribute, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(14044), 1, + anon_sym_requires, + STATE(9774), 1, + sym_trailing_return_type, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [380979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(9971), 2, + STATE(11311), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725011,15 +802957,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331325] = 6, + [381008] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(7621), 1, + anon_sym___attribute, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(14101), 1, + anon_sym_requires, + STATE(9777), 1, + sym_trailing_return_type, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [381043] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8285), 1, + anon_sym___attribute, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(14409), 1, + anon_sym_requires, + STATE(9781), 1, + sym_trailing_return_type, + ACTIONS(14241), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [381078] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + ACTIONS(15586), 1, + anon_sym_requires, + STATE(9784), 1, + sym_trailing_return_type, + ACTIONS(15313), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [381113] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(11518), 2, + STATE(11927), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725034,15 +803058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331354] = 6, + [381142] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(9993), 2, + STATE(12041), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725057,96 +803081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331383] = 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, - 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, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [331418] = 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, - 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, - anon_sym_COMMA, - anon_sym_SEMI, - 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, + [381171] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(10061), 2, + STATE(10929), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725161,15 +803104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331523] = 6, + [381200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(10086), 2, + STATE(12120), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725184,15 +803127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331552] = 6, + [381229] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(10137), 2, + STATE(12179), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725207,15 +803150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331581] = 6, + [381258] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(10126), 2, + STATE(11066), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725230,15 +803173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331610] = 6, + [381287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(10158), 2, + STATE(12234), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725253,219 +803196,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331639] = 9, + [381316] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(9774), 1, + anon_sym___asm, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - ACTIONS(14652), 1, - anon_sym___attribute, - STATE(4334), 1, + STATE(5489), 1, sym_parameter_list, - STATE(8856), 1, + STATE(9313), 1, sym__function_declarator_seq, - STATE(8678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14650), 7, + ACTIONS(9776), 10, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_try, - [331674] = 8, + anon_sym_requires, + [381347] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - ACTIONS(13188), 1, + ACTIONS(7621), 1, + anon_sym___attribute, + ACTIONS(11882), 1, anon_sym_requires, - STATE(8398), 1, + ACTIONS(11948), 1, + anon_sym_DASH_GT, + STATE(9782), 1, sym_trailing_return_type, - ACTIONS(13146), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 6, + ACTIONS(7623), 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, - [331707] = 8, + anon_sym_GT2, + [381382] = 9, 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, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, + ACTIONS(14669), 1, + anon_sym_LBRACK, + ACTIONS(15591), 1, + anon_sym___attribute, + STATE(4853), 1, + sym_parameter_list, + STATE(9967), 1, + sym__function_declarator_seq, + STATE(9768), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15589), 7, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [331740] = 11, + [381417] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15383), 1, + sym_identifier, + STATE(9677), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(11382), 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, + [381446] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15560), 1, + sym_identifier, + ACTIONS(15564), 1, + aux_sym_preproc_else_token1, + ACTIONS(15566), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15593), 1, + aux_sym_preproc_if_token2, + STATE(10008), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(10010), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(10272), 1, + sym_enumerator, + ACTIONS(15568), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(12224), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(12237), 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, + [381485] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(9780), 1, + anon_sym___asm, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(15327), 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, + STATE(5489), 1, sym_parameter_list, - STATE(8598), 1, + STATE(9313), 1, sym__function_declarator_seq, - STATE(9226), 1, - sym__abstract_declarator, - ACTIONS(9427), 2, + ACTIONS(9782), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, 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_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), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_try, - [331812] = 8, + anon_sym_requires, + [381516] = 6, 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(15383), 1, + sym_identifier, + STATE(9677), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10839), 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, + [381545] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14315), 1, + sym_identifier, + ACTIONS(14317), 1, + anon_sym_COLON_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9832), 1, + sym__scope_resolution, + STATE(3486), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11070), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(13053), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [381586] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11623), 1, anon_sym_DASH_GT, - STATE(8374), 1, + ACTIONS(11625), 1, + anon_sym_requires, + STATE(9377), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 6, + ACTIONS(7623), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [331878] = 8, + [381619] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11044), 1, + ACTIONS(11623), 1, anon_sym_DASH_GT, - ACTIONS(14422), 1, + ACTIONS(14041), 1, anon_sym_requires, - STATE(8403), 1, + STATE(9412), 1, sym_trailing_return_type, - ACTIONS(14419), 2, + ACTIONS(14000), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 6, + ACTIONS(7474), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [331911] = 6, + [381652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(10179), 2, + STATE(11099), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725480,15 +803472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331940] = 6, + [381681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(9784), 2, + STATE(10885), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725503,15 +803495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331969] = 6, + [381710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(10927), 2, + STATE(10939), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725526,245 +803518,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331998] = 9, + [381739] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym___attribute, - ACTIONS(11516), 1, + ACTIONS(11623), 1, anon_sym_DASH_GT, - ACTIONS(13197), 1, + ACTIONS(11625), 1, anon_sym_requires, - STATE(8715), 1, + STATE(9379), 1, sym_trailing_return_type, - ACTIONS(13146), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [332033] = 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(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, + ACTIONS(9338), 6, 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_LBRACK, anon_sym_EQ, anon_sym_try, - [332107] = 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(6574), 4, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6567), 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__, - [332136] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, - anon_sym___attribute, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(13205), 1, - anon_sym_requires, - STATE(8513), 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_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - [332171] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(11518), 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), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - [332206] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(14499), 1, - anon_sym_requires, - STATE(8519), 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_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - [332241] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, - anon_sym___attribute, - ACTIONS(11516), 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_COMMA, - 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, + [381772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(9896), 2, + STATE(11057), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725779,51 +803566,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332334] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(14662), 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, + [381801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(14660), 1, + ACTIONS(15595), 1, anon_sym_LT, - STATE(4045), 1, + STATE(4467), 1, sym_template_argument_list, - ACTIONS(11754), 4, + ACTIONS(12435), 4, anon_sym___attribute, anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6883), 8, + ACTIONS(7109), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -725832,15 +803589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_asm, anon_sym___asm__, - [332406] = 6, + [381830] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(10685), 2, + STATE(11006), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725855,67 +803612,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332435] = 12, + [381859] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(14315), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(14317), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(9832), 1, sym__scope_resolution, - STATE(3790), 2, + STATE(3486), 2, sym_template_type, sym_splice_type_specifier, - STATE(10198), 2, + STATE(10849), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [332476] = 6, + [381900] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, - sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(10810), 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, - [332505] = 6, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14669), 1, + anon_sym_LBRACK, + ACTIONS(15599), 1, + anon_sym___attribute, + STATE(4853), 1, + sym_parameter_list, + STATE(9967), 1, + sym__function_declarator_seq, + STATE(9768), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15597), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [381935] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(14083), 1, + anon_sym_requires, + STATE(9387), 1, + sym_trailing_return_type, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [381968] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(15595), 1, + anon_sym_LT, + STATE(4467), 1, + sym_template_argument_list, + ACTIONS(6783), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6776), 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__, + [381997] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(10889), 2, + STATE(11306), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725930,15 +803738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332534] = 6, + [382026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(9755), 2, + STATE(11085), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725953,15 +803761,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332563] = 6, + [382055] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(9792), 1, + anon_sym___asm, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5489), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9794), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [382086] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9784), 1, + anon_sym___asm, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5489), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9786), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [382117] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9788), 1, + anon_sym___asm, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5489), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9790), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [382148] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9804), 1, + anon_sym___asm, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5489), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9806), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [382179] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9800), 1, + anon_sym___asm, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5489), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9802), 10, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [382210] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(10946), 2, + STATE(11175), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725976,15 +803904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332592] = 6, + [382239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(11000), 2, + STATE(11128), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725999,15 +803927,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332621] = 6, + [382268] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(11623), 1, + anon_sym_DASH_GT, + ACTIONS(11625), 1, + anon_sym_requires, + STATE(9437), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [382301] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(9826), 2, + STATE(10842), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -726022,37 +803975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332650] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(8501), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9118), 3, - 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, + [382330] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(15383), 1, sym_identifier, - STATE(8656), 2, + STATE(9677), 2, sym_string_literal, sym_raw_string_literal, - STATE(9799), 2, + STATE(11226), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -726067,2626 +803998,2920 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332706] = 11, + [382359] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(15560), 1, sym_identifier, - ACTIONS(14636), 1, + ACTIONS(15564), 1, aux_sym_preproc_else_token1, - ACTIONS(14638), 1, + ACTIONS(15566), 1, aux_sym_preproc_elif_token1, - ACTIONS(14668), 1, + ACTIONS(15601), 1, aux_sym_preproc_if_token2, - STATE(8900), 1, + STATE(10024), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8901), 1, + STATE(10042), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9089), 1, + STATE(10272), 1, sym_enumerator, - ACTIONS(14640), 2, + ACTIONS(15568), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(10741), 3, + STATE(12913), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(10744), 3, + STATE(12944), 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, + [382398] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10921), 1, + ACTIONS(7472), 1, + anon_sym___attribute, + ACTIONS(11882), 1, anon_sym_requires, - ACTIONS(11044), 1, + ACTIONS(11948), 1, anon_sym_DASH_GT, - STATE(8428), 1, + STATE(9766), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 6, + ACTIONS(7474), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [382433] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9796), 1, + anon_sym___asm, + ACTIONS(14661), 1, anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5489), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9798), 10, + anon_sym_COMMA, anon_sym_SEMI, + 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_try, - [332778] = 12, + anon_sym_requires, + [382464] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, + ACTIONS(13494), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(15603), 1, + sym_identifier, + ACTIONS(15605), 1, + anon_sym_template, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(4673), 1, + sym_template_type, + STATE(4676), 1, + sym_dependent_type_identifier, + STATE(4730), 1, + sym_qualified_type_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(9745), 1, sym__scope_resolution, - STATE(3790), 2, - sym_template_type, + STATE(13053), 3, + sym_decltype, sym_splice_type_specifier, - STATE(9533), 2, - sym__class_name, + sym_splice_expression, + [382506] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11687), 1, + anon_sym_COLON_COLON, + ACTIONS(15607), 1, + sym_identifier, + ACTIONS(15609), 1, + anon_sym_template, + STATE(2601), 1, + sym_template_type, + STATE(2602), 1, + sym_dependent_type_identifier, + STATE(2606), 1, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9746), 1, + sym__scope_resolution, + STATE(13053), 3, sym_decltype, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [332819] = 8, + [382548] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - 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), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(309), 1, anon_sym_LBRACE, + ACTIONS(12435), 1, anon_sym_LBRACK, + ACTIONS(15611), 1, + anon_sym_SEMI, + ACTIONS(15613), 1, + anon_sym_COLON, + ACTIONS(15615), 1, anon_sym_EQ, + ACTIONS(15617), 1, anon_sym_try, - [332852] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(11516), 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_COMMA, + STATE(426), 1, + sym_compound_statement, + STATE(11425), 1, + sym_field_initializer_list, + ACTIONS(7109), 2, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [332887] = 6, + anon_sym_LBRACK_LBRACK, + STATE(427), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [382586] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14025), 1, + anon_sym_COLON_COLON, + ACTIONS(15619), 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(15621), 1, + anon_sym_template, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9748), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [382628] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15410), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 1, - anon_sym___attribute, - ACTIONS(10861), 1, - anon_sym_requires, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - STATE(8585), 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_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - [332990] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 1, - anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - 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_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [333025] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, - anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - 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_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [333060] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - 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_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [333095] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - 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_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [333130] = 9, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11490), 1, + sym_splice_type_specifier, + STATE(12110), 1, + sym_qualified_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [382668] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym___attribute, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(13149), 1, - anon_sym_requires, - STATE(8511), 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_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - [333165] = 12, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15623), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11762), 1, + sym_splice_type_specifier, + STATE(12389), 1, + sym_qualified_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [382708] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14672), 1, + ACTIONS(15625), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10553), 1, + STATE(11396), 1, sym_splice_type_specifier, - STATE(10723), 1, + STATE(12713), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [333205] = 3, + [382748] = 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, + ACTIONS(15627), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9855), 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, + [382770] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14674), 1, - anon_sym_SEMI, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14678), 1, + ACTIONS(15629), 1, + anon_sym_SEMI, + ACTIONS(15631), 1, anon_sym_EQ, - ACTIONS(14680), 1, + ACTIONS(15633), 1, anon_sym_try, - STATE(1013), 1, + STATE(912), 1, sym_compound_statement, - STATE(10376), 1, + STATE(11562), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(874), 4, + STATE(918), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [333265] = 11, + [382808] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(11177), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14682), 1, + ACTIONS(15635), 1, anon_sym_SEMI, - ACTIONS(14684), 1, + ACTIONS(15637), 1, anon_sym_EQ, - ACTIONS(14686), 1, + ACTIONS(15639), 1, anon_sym_try, - STATE(2869), 1, + STATE(3162), 1, sym_compound_statement, - STATE(10248), 1, + STATE(11563), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2871), 4, + STATE(3166), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [333303] = 13, + [382846] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11081), 1, + ACTIONS(11653), 1, anon_sym_COLON_COLON, - ACTIONS(14688), 1, + ACTIONS(15641), 1, sym_identifier, - ACTIONS(14690), 1, + ACTIONS(15643), 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, - 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, sym__splice_specialization_specifier, - STATE(4123), 1, + STATE(4076), 1, sym_template_type, - STATE(4127), 1, + STATE(4077), 1, sym_dependent_type_identifier, - STATE(4267), 1, + STATE(4106), 1, sym_qualified_type_identifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8676), 1, + STATE(9755), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [333387] = 11, + [382888] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14696), 1, + ACTIONS(15645), 1, anon_sym_SEMI, - ACTIONS(14698), 1, + ACTIONS(15647), 1, anon_sym_EQ, - ACTIONS(14700), 1, + ACTIONS(15649), 1, anon_sym_try, - STATE(3366), 1, + STATE(722), 1, sym_compound_statement, - STATE(10431), 1, + STATE(11462), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(3367), 4, + STATE(723), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [333425] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14704), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(7987), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14702), 9, - 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_try, - [333451] = 5, - 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, - anon_sym___asm, - ACTIONS(9652), 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_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, - 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, + [382926] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11010), 1, + ACTIONS(14346), 1, anon_sym_COLON_COLON, - ACTIONS(14710), 1, + ACTIONS(15651), 1, sym_identifier, - ACTIONS(14712), 1, + ACTIONS(15653), 1, anon_sym_template, - STATE(2455), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6868), 1, sym_template_type, - STATE(2457), 1, + STATE(6878), 1, sym_dependent_type_identifier, - STATE(2543), 1, + STATE(6960), 1, sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8682), 1, + STATE(9757), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 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, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [333615] = 12, + [382968] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14021), 1, anon_sym_COLON_COLON, - ACTIONS(14714), 1, + ACTIONS(15619), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(15621), 1, + anon_sym_template, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(5317), 1, + sym_qualified_type_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(10507), 1, - sym_splice_type_specifier, - STATE(11383), 1, - sym_qualified_identifier, - STATE(10768), 4, + STATE(9758), 1, + sym__scope_resolution, + STATE(13053), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [333655] = 13, + [383010] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13417), 1, + ACTIONS(11695), 1, anon_sym_COLON_COLON, - ACTIONS(14716), 1, + ACTIONS(15655), 1, sym_identifier, - ACTIONS(14718), 1, + ACTIONS(15657), 1, anon_sym_template, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + STATE(2625), 1, sym_template_type, - STATE(2920), 1, + STATE(2626), 1, + sym_dependent_type_identifier, + STATE(2627), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8685), 1, + STATE(9759), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [333697] = 13, + [383052] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11073), 1, + ACTIONS(13577), 1, anon_sym_COLON_COLON, - ACTIONS(14720), 1, + ACTIONS(15659), 1, sym_identifier, - ACTIONS(14722), 1, + ACTIONS(15661), 1, anon_sym_template, - STATE(2675), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5787), 1, sym_template_type, - STATE(2676), 1, + STATE(5788), 1, sym_dependent_type_identifier, - STATE(2811), 1, + STATE(6365), 1, sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8686), 1, + STATE(9760), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [333739] = 13, + [383094] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11089), 1, + ACTIONS(11663), 1, anon_sym_COLON_COLON, - ACTIONS(14724), 1, - sym_identifier, - ACTIONS(14726), 1, + ACTIONS(15643), 1, anon_sym_template, - STATE(2550), 1, + ACTIONS(15663), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4076), 1, sym_template_type, - STATE(2551), 1, + STATE(4077), 1, sym_dependent_type_identifier, - STATE(2625), 1, + STATE(4106), 1, sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8687), 1, + STATE(9761), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 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, + [383136] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14728), 1, + ACTIONS(15665), 1, anon_sym_SEMI, - ACTIONS(14730), 1, + ACTIONS(15667), 1, anon_sym_EQ, - ACTIONS(14732), 1, + ACTIONS(15669), 1, anon_sym_try, - STATE(3464), 1, + STATE(862), 1, sym_compound_statement, - STATE(10524), 1, + STATE(11468), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(3465), 4, + STATE(863), 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, + [383174] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11020), 1, + ACTIONS(11707), 1, anon_sym_COLON_COLON, - ACTIONS(14738), 1, + ACTIONS(15671), 1, sym_identifier, - ACTIONS(14740), 1, + ACTIONS(15673), 1, anon_sym_template, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + STATE(3119), 1, sym_template_type, - STATE(2920), 1, + STATE(3120), 1, + sym_dependent_type_identifier, + STATE(3121), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8691), 1, + STATE(9763), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 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, + [383216] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14744), 1, - anon_sym_SEMI, - STATE(4564), 1, + ACTIONS(15452), 1, + anon_sym___asm, + STATE(5275), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(10138), 1, - sym_gnu_asm_expression, - STATE(10140), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14750), 1, + ACTIONS(15450), 6, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(14752), 1, - anon_sym_EQ, - ACTIONS(14754), 1, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - STATE(440), 1, - sym_compound_statement, - STATE(10405), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(441), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [334115] = 3, + [383250] = 8, 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, + ACTIONS(11880), 1, anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [334137] = 11, + ACTIONS(11882), 1, + anon_sym_requires, + STATE(9782), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [383282] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(7621), 1, + anon_sym___attribute, + ACTIONS(11882), 1, + anon_sym_requires, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14752), 1, - anon_sym_EQ, - ACTIONS(14754), 1, - anon_sym_try, - ACTIONS(14758), 1, - anon_sym_SEMI, - STATE(411), 1, - sym_compound_statement, - STATE(10566), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, + anon_sym_GT2, + [383312] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(14044), 1, + anon_sym_requires, + STATE(9774), 1, + sym_trailing_return_type, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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, - [334175] = 3, + anon_sym_LBRACK, + anon_sym_GT2, + [383344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 1, - sym_identifier, - ACTIONS(8752), 13, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15677), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(8980), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15675), 9, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, 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, - [334197] = 13, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [383370] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(8222), 1, anon_sym_COLON_COLON, - ACTIONS(14760), 1, + ACTIONS(15373), 1, sym_identifier, - ACTIONS(14762), 1, + ACTIONS(15375), 1, anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6690), 1, - sym_template_type, - STATE(6691), 1, + STATE(3446), 1, sym_dependent_type_identifier, - STATE(6827), 1, + STATE(3453), 1, sym_qualified_type_identifier, - STATE(8222), 1, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8700), 1, + STATE(9769), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [334239] = 13, + [383412] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14405), 1, + ACTIONS(15331), 1, anon_sym_SEMI, - STATE(4564), 1, + STATE(5275), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(10168), 1, + STATE(11243), 1, sym_gnu_asm_expression, - STATE(10188), 1, + STATE(11244), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [334281] = 13, + [383454] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(14764), 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, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8702), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [334323] = 12, + ACTIONS(7472), 1, + anon_sym___attribute, + ACTIONS(14044), 1, + anon_sym_requires, + ACTIONS(14000), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [383484] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(14101), 1, + anon_sym_requires, + STATE(9777), 1, + sym_trailing_return_type, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [383516] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(11882), 1, + anon_sym_requires, + STATE(9787), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [383548] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7621), 1, anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, + ACTIONS(14101), 1, + anon_sym_requires, + ACTIONS(14057), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(13945), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(14768), 1, - anon_sym_EQ, - STATE(4334), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - ACTIONS(14734), 2, + anon_sym_GT2, + [383578] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(14409), 1, + anon_sym_requires, + STATE(9781), 1, + sym_trailing_return_type, + ACTIONS(14241), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, anon_sym_GT2, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9150), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [334363] = 6, + [383610] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4613), 1, + ACTIONS(15510), 1, + anon_sym___asm, + STATE(5275), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10204), 10, - anon_sym_RPAREN, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15508), 6, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [334391] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13166), 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(3808), 1, - sym__splice_specialization_specifier, - STATE(4565), 1, - sym_qualified_type_identifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8705), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [334433] = 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(14555), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10549), 1, - sym_splice_type_specifier, - STATE(10666), 1, - sym_qualified_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [334473] = 13, + [383644] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(14770), 1, - sym_identifier, - ACTIONS(14772), 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, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8707), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [334515] = 11, + ACTIONS(8285), 1, + anon_sym___attribute, + ACTIONS(14409), 1, + anon_sym_requires, + ACTIONS(14241), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [383674] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(11177), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14730), 1, + ACTIONS(15637), 1, anon_sym_EQ, - ACTIONS(14732), 1, + ACTIONS(15639), 1, anon_sym_try, - ACTIONS(14774), 1, + ACTIONS(15679), 1, anon_sym_SEMI, - STATE(3479), 1, + STATE(3292), 1, sym_compound_statement, - STATE(10212), 1, + STATE(11606), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(3480), 4, + STATE(3301), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [334553] = 6, + [383712] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4613), 1, + ACTIONS(15456), 1, + anon_sym___asm, + STATE(5275), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10192), 10, - anon_sym_RPAREN, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15454), 6, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - anon_sym_requires, - [334581] = 13, + [383746] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13154), 1, + ACTIONS(13605), 1, anon_sym_COLON_COLON, - ACTIONS(14776), 1, - sym_identifier, - ACTIONS(14778), 1, + ACTIONS(15653), 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, - anon_sym_LBRACK_COLON, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(14780), 1, + ACTIONS(15681), 1, sym_identifier, - ACTIONS(14782), 1, - anon_sym_template, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(6868), 1, sym_template_type, - STATE(2920), 1, + STATE(6878), 1, + sym_dependent_type_identifier, + STATE(6960), 1, sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(9780), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [334665] = 8, + [383788] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(13197), 1, + ACTIONS(9336), 1, + anon_sym___attribute, + ACTIONS(15586), 1, anon_sym_requires, - STATE(8715), 1, - sym_trailing_return_type, - ACTIONS(13146), 2, + ACTIONS(15313), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 5, + ACTIONS(9338), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [334697] = 7, + [383818] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(8285), 1, anon_sym___attribute, - ACTIONS(13197), 1, + ACTIONS(11882), 1, anon_sym_requires, - ACTIONS(13146), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9644), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 6, + ACTIONS(8287), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [334727] = 8, + [383848] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11296), 1, + ACTIONS(11880), 1, anon_sym_DASH_GT, - ACTIONS(13239), 1, + ACTIONS(15586), 1, anon_sym_requires, - STATE(8725), 1, + STATE(9784), 1, sym_trailing_return_type, - ACTIONS(13202), 2, + ACTIONS(15313), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(9338), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [334759] = 7, + [383880] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(9267), 1, anon_sym___attribute, - ACTIONS(13239), 1, + ACTIONS(15683), 1, anon_sym_requires, - ACTIONS(13202), 2, + ACTIONS(15321), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9621), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 6, + ACTIONS(9269), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [334789] = 13, + [383910] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(5938), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14776), 1, + ACTIONS(15464), 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(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8716), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(10768), 3, - sym_decltype, + STATE(9224), 1, + sym_splice_specifier, + STATE(11432), 1, sym_splice_type_specifier, + STATE(12194), 1, + sym_qualified_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_expression, - [334831] = 8, + [383950] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11296), 1, + ACTIONS(11880), 1, anon_sym_DASH_GT, - ACTIONS(11298), 1, + ACTIONS(11882), 1, anon_sym_requires, - STATE(8730), 1, + STATE(9766), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(7474), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_GT2, - [334863] = 7, + [383982] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(9336), 1, anon_sym___attribute, - ACTIONS(11298), 1, + ACTIONS(11882), 1, anon_sym_requires, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 6, + ACTIONS(9338), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [334893] = 4, + [384012] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14756), 2, + ACTIONS(11880), 1, + anon_sym_DASH_GT, + ACTIONS(11882), 1, + anon_sym_requires, + STATE(9796), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [384044] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14251), 1, + anon_sym_COLON_COLON, + ACTIONS(15686), 1, + sym_identifier, + ACTIONS(15688), 1, + anon_sym_template, + STATE(3204), 1, + sym_template_type, + STATE(3205), 1, + sym_dependent_type_identifier, + STATE(3330), 1, + sym_qualified_type_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9789), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [384086] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13715), 1, + anon_sym_COLON_COLON, + ACTIONS(15690), 1, + sym_identifier, + ACTIONS(15692), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4475), 1, + sym_template_type, + STATE(4476), 1, + sym_dependent_type_identifier, + STATE(4612), 1, + sym_qualified_type_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9790), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [384128] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(15304), 1, + anon_sym_SEMI, + STATE(5275), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11089), 1, + sym_gnu_asm_expression, + STATE(11090), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [384170] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11190), 1, + anon_sym_LBRACE, + ACTIONS(12435), 1, + anon_sym_LBRACK, + ACTIONS(15613), 1, + anon_sym_COLON, + ACTIONS(15694), 1, + anon_sym_SEMI, + ACTIONS(15696), 1, + anon_sym_EQ, + ACTIONS(15698), 1, + anon_sym_try, + STATE(3574), 1, + sym_compound_statement, + STATE(11716), 1, + sym_field_initializer_list, + ACTIONS(7109), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(3608), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [384208] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15546), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11400), 1, + sym_splice_type_specifier, + STATE(12612), 1, + sym_qualified_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [384248] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15700), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11492), 1, + sym_splice_type_specifier, + STATE(12138), 1, + sym_qualified_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [384288] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11595), 1, + anon_sym_COLON_COLON, + ACTIONS(15702), 1, + sym_identifier, + ACTIONS(15704), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(7559), 1, + sym_template_type, + STATE(7560), 1, + sym_dependent_type_identifier, + STATE(7561), 1, + sym_qualified_type_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9795), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [384330] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9267), 1, + anon_sym___attribute, + ACTIONS(11882), 1, + anon_sym_requires, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9621), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9269), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [384360] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11164), 1, + anon_sym_LBRACE, + ACTIONS(12435), 1, + anon_sym_LBRACK, + ACTIONS(15613), 1, + anon_sym_COLON, + ACTIONS(15706), 1, + anon_sym_SEMI, + ACTIONS(15708), 1, + anon_sym_EQ, + ACTIONS(15710), 1, + anon_sym_try, + STATE(3614), 1, + sym_compound_statement, + STATE(11467), 1, + sym_field_initializer_list, + ACTIONS(7109), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(3615), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [384398] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(12435), 1, + anon_sym_LBRACK, + ACTIONS(15613), 1, + anon_sym_COLON, + ACTIONS(15667), 1, + anon_sym_EQ, + ACTIONS(15669), 1, + anon_sym_try, + ACTIONS(15712), 1, + anon_sym_SEMI, + STATE(884), 1, + sym_compound_statement, + STATE(11686), 1, + sym_field_initializer_list, + ACTIONS(7109), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(886), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [384436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 1, + sym_identifier, + ACTIONS(9099), 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, + [384458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9853), 1, + anon_sym___attribute, + ACTIONS(15714), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(14784), 2, + ACTIONS(9855), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_or, - ACTIONS(9395), 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, - [334917] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [384482] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(11190), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14786), 1, - anon_sym_SEMI, - ACTIONS(14788), 1, + ACTIONS(15696), 1, anon_sym_EQ, - ACTIONS(14790), 1, + ACTIONS(15698), 1, anon_sym_try, - STATE(719), 1, + ACTIONS(15716), 1, + anon_sym_SEMI, + STATE(3707), 1, sym_compound_statement, - STATE(10522), 1, + STATE(11767), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(720), 4, + STATE(3711), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [334955] = 12, + [384520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8998), 1, + sym_identifier, + ACTIONS(9000), 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, + [384542] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14362), 1, anon_sym_COLON_COLON, - ACTIONS(14591), 1, + ACTIONS(15718), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(15720), 1, + anon_sym_template, + STATE(3495), 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, - STATE(10768), 4, - sym_decltype, + STATE(3955), 1, sym_template_type, + STATE(3956), 1, sym_dependent_type_identifier, + STATE(3969), 1, + sym_qualified_type_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9803), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, sym_splice_expression, - [334995] = 6, + [384584] = 12, 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, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11433), 1, 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(3), 1, - sym_comment, - ACTIONS(13795), 1, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4613), 1, + ACTIONS(15724), 1, + anon_sym_EQ, + STATE(4853), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10188), 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, - [335051] = 8, - 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, + ACTIONS(15722), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_GT2, - [335083] = 7, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10228), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [384624] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 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, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [335113] = 8, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13980), 1, + anon_sym_COLON_COLON, + ACTIONS(15726), 1, + sym_identifier, + ACTIONS(15728), 1, + anon_sym_template, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5317), 1, + sym_qualified_type_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9805), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [384666] = 3, 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, + ACTIONS(9006), 1, + sym_identifier, + ACTIONS(9008), 13, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [335145] = 12, + 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, + [384688] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14529), 1, + ACTIONS(15504), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10225), 1, + STATE(11869), 1, sym_splice_type_specifier, - STATE(11282), 1, + STATE(12688), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [335185] = 12, + [384728] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(15730), 1, + anon_sym_SEMI, + STATE(5275), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(10851), 1, + sym_gnu_asm_expression, + STATE(10852), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [384770] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14513), 1, + ACTIONS(15476), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10317), 1, + STATE(11577), 1, sym_splice_type_specifier, - STATE(10933), 1, + STATE(11919), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [335225] = 11, + [384810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(15595), 1, + anon_sym_LT, + STATE(4467), 1, + sym_template_argument_list, + ACTIONS(10094), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14792), 1, - anon_sym_SEMI, - 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___asm, + ACTIONS(10096), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - STATE(850), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [335263] = 7, + anon_sym_asm, + anon_sym___asm__, + [384836] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11617), 1, + anon_sym_COLON_COLON, + ACTIONS(15732), 1, + sym_identifier, + ACTIONS(15734), 1, + anon_sym_template, + STATE(2243), 1, + sym_template_type, + STATE(2244), 1, + sym_dependent_type_identifier, + STATE(2247), 1, + sym_qualified_type_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9811), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [384878] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14263), 1, + anon_sym_COLON_COLON, + ACTIONS(15736), 1, + sym_identifier, + ACTIONS(15738), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9300), 1, + sym_template_type, + STATE(9301), 1, + sym_dependent_type_identifier, + STATE(9413), 1, + sym_qualified_type_identifier, + STATE(9812), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [384920] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(7472), 1, anon_sym___attribute, - ACTIONS(11298), 1, + ACTIONS(11882), 1, anon_sym_requires, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(9611), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 6, + ACTIONS(7474), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [335293] = 12, + [384950] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(11510), 1, anon_sym_COLON_COLON, - ACTIONS(14798), 1, + ACTIONS(15688), 1, + anon_sym_template, + ACTIONS(15740), 1, sym_identifier, - STATE(3808), 1, + STATE(3204), 1, + sym_template_type, + STATE(3205), 1, + sym_dependent_type_identifier, + STATE(3330), 1, + sym_qualified_type_identifier, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(9224), 1, + sym_splice_specifier, + STATE(9814), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [384992] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13428), 1, + anon_sym_COLON_COLON, + ACTIONS(15661), 1, + anon_sym_template, + ACTIONS(15742), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(5787), 1, + sym_template_type, + STATE(5788), 1, + sym_dependent_type_identifier, + STATE(6365), 1, + sym_qualified_type_identifier, + STATE(9224), 1, sym_splice_specifier, - STATE(10251), 1, + STATE(9815), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, sym_splice_type_specifier, - STATE(10814), 1, - sym_qualified_identifier, - STATE(10768), 4, + sym_splice_expression, + [385034] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13847), 1, + anon_sym_COLON_COLON, + ACTIONS(15744), 1, + sym_identifier, + ACTIONS(15746), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4903), 1, + sym_template_type, + STATE(4904), 1, + sym_dependent_type_identifier, + STATE(5010), 1, + sym_qualified_type_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9816), 1, + sym__scope_resolution, + STATE(13053), 3, sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [385076] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11671), 1, + anon_sym_COLON_COLON, + ACTIONS(15748), 1, + sym_identifier, + ACTIONS(15750), 1, + anon_sym_template, + STATE(2761), 1, sym_template_type, + STATE(2768), 1, sym_dependent_type_identifier, + STATE(2835), 1, + sym_qualified_type_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9817), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, sym_splice_expression, - [335333] = 6, + [385118] = 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(10208), 10, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5190), 1, + anon_sym_COLON_COLON, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15726), 1, + sym_identifier, + ACTIONS(15728), 1, + anon_sym_template, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9818), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [385160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9029), 1, + sym_identifier, + ACTIONS(9031), 13, + anon_sym_COMMA, 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, - [335361] = 11, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [385182] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(11164), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14678), 1, + ACTIONS(15708), 1, anon_sym_EQ, - ACTIONS(14680), 1, + ACTIONS(15710), 1, anon_sym_try, - ACTIONS(14800), 1, + ACTIONS(15752), 1, anon_sym_SEMI, - STATE(994), 1, + STATE(3638), 1, sym_compound_statement, - STATE(10230), 1, + STATE(11487), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(996), 4, + STATE(3639), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [335399] = 11, + [385220] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14794), 1, + ACTIONS(15647), 1, anon_sym_EQ, - ACTIONS(14796), 1, + ACTIONS(15649), 1, anon_sym_try, - ACTIONS(14802), 1, + ACTIONS(15754), 1, anon_sym_SEMI, - STATE(834), 1, + STATE(713), 1, sym_compound_statement, - STATE(10414), 1, + STATE(11418), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(782), 4, + STATE(714), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [335437] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8905), 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, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - 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_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, + [385258] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11105), 1, + ACTIONS(13540), 1, anon_sym_COLON_COLON, - ACTIONS(14782), 1, - anon_sym_template, - ACTIONS(14804), 1, + ACTIONS(15756), 1, sym_identifier, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + ACTIONS(15758), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4693), 1, sym_template_type, - STATE(2920), 1, + STATE(4694), 1, + sym_dependent_type_identifier, + STATE(4797), 1, sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8738), 1, + STATE(9822), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 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, - 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, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [335653] = 12, + [385300] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14611), 1, + ACTIONS(15760), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10261), 1, + STATE(11631), 1, sym_splice_type_specifier, - STATE(11179), 1, + STATE(12072), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [335693] = 13, + [385340] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14806), 1, + ACTIONS(15329), 1, anon_sym_SEMI, - STATE(4564), 1, + STATE(5275), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(9997), 1, + STATE(11133), 1, sym_gnu_asm_expression, - STATE(9999), 1, + STATE(11136), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [335735] = 8, + [385382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11296), 1, + ACTIONS(15627), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(15762), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9739), 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, - 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_noexcept, + anon_sym_throw, + [385406] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(12435), 1, + anon_sym_LBRACK, + ACTIONS(15613), 1, + anon_sym_COLON, + ACTIONS(15615), 1, + anon_sym_EQ, + ACTIONS(15617), 1, + anon_sym_try, + ACTIONS(15764), 1, + anon_sym_SEMI, + STATE(456), 1, + sym_compound_statement, + STATE(11573), 1, + sym_field_initializer_list, + ACTIONS(7109), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(457), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [385444] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(14816), 1, anon_sym_LBRACK, - anon_sym_GT2, - [335767] = 7, + ACTIONS(15333), 1, + anon_sym_SEMI, + STATE(5275), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(10861), 1, + sym_gnu_asm_expression, + STATE(10862), 1, + aux_sym_declaration_repeat1, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [385486] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 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(8601), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8915), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12826), 1, anon_sym___attribute__, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, anon_sym_LBRACK, - anon_sym_GT2, - [335797] = 13, + ACTIONS(15766), 1, + anon_sym_EQ, + STATE(4853), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + ACTIONS(15722), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10228), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [385526] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11534), 1, anon_sym_COLON_COLON, - ACTIONS(14694), 1, - anon_sym_template, - ACTIONS(14808), 1, + ACTIONS(15768), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4123), 1, + ACTIONS(15770), 1, + anon_sym_template, + STATE(2588), 1, sym_template_type, - STATE(4127), 1, + STATE(2589), 1, sym_dependent_type_identifier, - STATE(4267), 1, + STATE(2590), 1, sym_qualified_type_identifier, - STATE(8222), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8745), 1, + STATE(9829), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335839] = 13, + [385568] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13473), 1, + ACTIONS(14305), 1, anon_sym_COLON_COLON, - ACTIONS(14810), 1, - sym_identifier, - ACTIONS(14812), 1, + ACTIONS(15728), 1, anon_sym_template, - STATE(3594), 1, + ACTIONS(15772), 1, + sym_identifier, + STATE(3446), 1, sym_dependent_type_identifier, - STATE(3610), 1, - sym_template_type, - STATE(3612), 1, + STATE(3453), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8746), 1, + STATE(9830), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335881] = 12, + [385610] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14704), 1, anon_sym_COLON_COLON, - ACTIONS(14814), 1, + ACTIONS(15442), 1, sym_identifier, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10499), 1, + STATE(11630), 1, sym_splice_type_specifier, - STATE(10689), 1, + STATE(12069), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(13053), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [335921] = 12, + [385650] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5194), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14317), 1, anon_sym_COLON_COLON, - ACTIONS(14621), 1, + ACTIONS(15774), 1, sym_identifier, - STATE(3808), 1, + STATE(3446), 1, + sym_dependent_type_identifier, + STATE(3453), 1, + sym_qualified_type_identifier, + STATE(3465), 1, + sym_template_type, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(10346), 1, - sym_splice_type_specifier, - STATE(10997), 1, - sym_qualified_identifier, - STATE(10768), 4, + STATE(9832), 1, + sym__scope_resolution, + STATE(13053), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, + 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, + [385692] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14382), 1, anon_sym_COLON_COLON, - ACTIONS(14819), 1, + ACTIONS(15776), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(15778), 1, + anon_sym_template, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(5317), 1, + sym_qualified_type_identifier, + STATE(8977), 1, + sym_dependent_type_identifier, + STATE(8986), 1, + sym_template_type, + STATE(9224), 1, sym_splice_specifier, - STATE(10326), 1, - sym_splice_type_specifier, - STATE(11273), 1, - sym_qualified_identifier, - STATE(10768), 4, + STATE(9833), 1, + sym__scope_resolution, + STATE(13053), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [336059] = 11, + [385734] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14788), 1, + ACTIONS(15631), 1, anon_sym_EQ, - ACTIONS(14790), 1, + ACTIONS(15633), 1, anon_sym_try, - ACTIONS(14821), 1, + ACTIONS(15780), 1, anon_sym_SEMI, - STATE(709), 1, + STATE(990), 1, sym_compound_statement, - STATE(10420), 1, + STATE(11699), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(710), 4, + STATE(991), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [336097] = 13, + [385772] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15488), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11739), 1, + sym_splice_type_specifier, + STATE(12378), 1, + sym_qualified_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [385812] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11285), 1, + anon_sym_COLON_COLON, + ACTIONS(15673), 1, + anon_sym_template, + ACTIONS(15782), 1, + sym_identifier, + STATE(3119), 1, + sym_template_type, + STATE(3120), 1, + sym_dependent_type_identifier, + STATE(3121), 1, + sym_qualified_type_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9836), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [385854] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15580), 1, + anon_sym_COLON_COLON, + ACTIONS(15784), 1, + sym_identifier, + ACTIONS(15786), 1, + anon_sym_template, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4592), 1, + sym_template_type, + STATE(4596), 1, + sym_dependent_type_identifier, + STATE(4678), 1, + sym_qualified_type_identifier, + STATE(9224), 1, + sym_splice_specifier, + STATE(9837), 1, + sym__scope_resolution, + STATE(13053), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [385896] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15788), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11744), 1, + sym_splice_type_specifier, + STATE(12397), 1, + sym_qualified_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [385936] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14451), 1, + ACTIONS(15790), 1, anon_sym_SEMI, - STATE(4564), 1, + STATE(5275), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(9933), 1, + STATE(11315), 1, sym_gnu_asm_expression, - STATE(9934), 1, + STATE(11316), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(14820), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [336139] = 13, + [385978] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(14664), 1, + ACTIONS(13627), 1, anon_sym_COLON_COLON, - ACTIONS(14823), 1, + ACTIONS(15792), 1, sym_identifier, - ACTIONS(14825), 1, + ACTIONS(15794), 1, anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4215), 1, + STATE(3429), 1, sym_template_type, - STATE(4217), 1, + STATE(3430), 1, sym_dependent_type_identifier, - STATE(4218), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(3517), 1, sym_qualified_type_identifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8754), 1, + STATE(9840), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [336181] = 13, + [386020] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15796), 1, + sym_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11783), 1, + sym_splice_type_specifier, + STATE(12553), 1, + sym_qualified_identifier, + STATE(13053), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [386060] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14457), 1, - anon_sym_SEMI, - STATE(4564), 1, + ACTIONS(15482), 1, + anon_sym___asm, + STATE(5275), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(9843), 1, - sym_gnu_asm_expression, - STATE(9844), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15480), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + anon_sym_try, + [386094] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(15518), 1, + anon_sym___asm, + STATE(5275), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [336223] = 13, + ACTIONS(15516), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [386128] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(6469), 1, + ACTIONS(11679), 1, anon_sym_COLON_COLON, - ACTIONS(14827), 1, + ACTIONS(15798), 1, sym_identifier, - ACTIONS(14829), 1, + ACTIONS(15800), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(4103), 1, sym_template_type, - STATE(3752), 1, + STATE(4104), 1, + sym_dependent_type_identifier, + STATE(4113), 1, sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(9224), 1, sym_splice_specifier, - STATE(8756), 1, + STATE(9844), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [336265] = 13, + [386170] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(2422), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5164), 1, + ACTIONS(5194), 1, + anon_sym_template, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(14746), 1, + ACTIONS(14704), 1, + anon_sym_COLON_COLON, + ACTIONS(15802), 1, sym_identifier, - ACTIONS(14831), 1, - anon_sym_template, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(4565), 1, - sym_qualified_type_identifier, - STATE(4766), 1, + STATE(8987), 1, + sym__scope_resolution, + STATE(9224), 1, + sym_splice_specifier, + STATE(11691), 1, + sym_splice_type_specifier, + STATE(12228), 1, + sym_qualified_identifier, + STATE(13053), 4, + sym_decltype, sym_template_type, - STATE(4773), 1, sym_dependent_type_identifier, - STATE(8222), 1, + sym_splice_expression, + [386210] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 1, + anon_sym_decltype, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13450), 1, + anon_sym_COLON_COLON, + ACTIONS(15688), 1, + anon_sym_template, + ACTIONS(15804), 1, + sym_identifier, + STATE(3204), 1, + sym_template_type, + STATE(3205), 1, + sym_dependent_type_identifier, + STATE(3330), 1, + sym_qualified_type_identifier, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(9224), 1, sym_splice_specifier, - STATE(8757), 1, + STATE(9846), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(13053), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [336307] = 6, + [386252] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9737), 1, + anon_sym___attribute, + ACTIONS(15714), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(15806), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9739), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [386278] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15814), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11731), 2, + sym_preproc_call, + sym_enumerator, + STATE(12355), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(9912), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [386311] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15816), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11437), 2, + sym_preproc_call, + sym_enumerator, + STATE(12372), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(9923), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [386344] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15818), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11846), 2, + sym_preproc_call, + sym_enumerator, + STATE(13002), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(9926), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [386377] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5245), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9802), 9, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [386404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4613), 1, + STATE(5193), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10184), 10, - anon_sym_RPAREN, + ACTIONS(9802), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, @@ -728696,287 +806921,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [336335] = 11, + [386431] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14684), 1, + ACTIONS(15482), 1, + anon_sym___attribute, + STATE(4853), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15480), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, 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_GT2, + [386464] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(8667), 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, - [336395] = 11, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15820), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11514), 2, + sym_preproc_call, + sym_enumerator, + STATE(12326), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(9859), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [386497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + STATE(5193), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9782), 9, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(14698), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(14700), 1, + anon_sym_final, + anon_sym_override, anon_sym_try, - ACTIONS(14835), 1, + anon_sym_requires, + [386524] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5245), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9776), 9, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(3343), 1, - sym_compound_statement, - STATE(10290), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [386551] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5245), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9790), 9, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, 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, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [386578] = 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(13425), 1, - anon_sym_COLON_COLON, - ACTIONS(14837), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, sym_identifier, - 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(8762), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [336475] = 13, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15822), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11704), 2, + sym_preproc_call, + sym_enumerator, + STATE(12291), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(10039), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [386611] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(14839), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14841), 1, - anon_sym_template, - STATE(2083), 1, - sym_dependent_type_identifier, - STATE(2094), 1, - sym_template_type, - STATE(2114), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8763), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [336517] = 6, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15824), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11616), 2, + sym_preproc_call, + sym_enumerator, + STATE(12017), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(10039), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [386644] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15826), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11528), 2, + sym_preproc_call, + sym_enumerator, + STATE(12551), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(9864), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [386677] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9796), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4613), 1, + STATE(5394), 1, sym_parameter_list, - STATE(8243), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10196), 10, + ACTIONS(9798), 8, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [336545] = 5, + [386706] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9393), 1, + ACTIONS(9800), 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, - anon_sym_COMMA, + ACTIONS(14661), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(15828), 1, anon_sym_LBRACK, + STATE(5394), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9802), 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, - [336571] = 9, + [386735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5193), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9794), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [386762] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14851), 1, + ACTIONS(15830), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10341), 2, + STATE(11579), 2, sym_preproc_call, sym_enumerator, - STATE(11154), 2, + STATE(11937), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(10039), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336604] = 10, + [386795] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12433), 1, + anon_sym_LT, + ACTIONS(15834), 1, + sym_auto, + ACTIONS(15836), 1, + anon_sym_decltype, + STATE(3452), 1, + sym_template_argument_list, + STATE(4259), 1, + sym_decltype_auto, + STATE(10082), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5669), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(15832), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [386830] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14794), 1, + ACTIONS(15631), 1, anon_sym_EQ, - ACTIONS(14796), 1, + ACTIONS(15633), 1, anon_sym_try, - STATE(834), 1, + STATE(990), 1, sym_compound_statement, - STATE(10414), 1, + STATE(11699), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(782), 4, + STATE(991), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [336639] = 8, + [386865] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(9804), 1, + anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5394), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9806), 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, + [386894] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(7357), 1, + ACTIONS(7129), 1, anon_sym___attribute, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - STATE(3735), 1, + STATE(3290), 1, sym_template_argument_list, - STATE(8973), 1, + STATE(10082), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7359), 4, + ACTIONS(7131), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14853), 4, + ACTIONS(15832), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [336670] = 9, + [386925] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14855), 1, + ACTIONS(15838), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10400), 2, + STATE(11843), 2, + sym_preproc_call, + sym_enumerator, + STATE(12955), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(9873), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [386958] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15840), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11773), 2, sym_preproc_call, sym_enumerator, - STATE(11131), 2, + STATE(12497), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(9900), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336703] = 5, + [386991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14859), 1, + ACTIONS(15844), 1, anon_sym_LT, - STATE(8837), 1, + STATE(9932), 1, sym_template_argument_list, - ACTIONS(14861), 2, + ACTIONS(15846), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14857), 9, + ACTIONS(15842), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -728986,169 +807356,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [336728] = 10, + [387016] = 6, 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, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(15595), 1, + anon_sym_LT, + STATE(9481), 1, + sym_template_argument_list, + ACTIONS(12435), 2, anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(8598), 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, + anon_sym___asm, + ACTIONS(7109), 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, + [387043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15848), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11626), 2, + sym_preproc_call, + sym_enumerator, + STATE(12111), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(10039), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [387076] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14678), 1, + ACTIONS(15615), 1, anon_sym_EQ, - ACTIONS(14680), 1, + ACTIONS(15617), 1, anon_sym_try, - STATE(994), 1, + STATE(426), 1, sym_compound_statement, - STATE(10230), 1, + STATE(11425), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(996), 4, + STATE(427), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [336798] = 9, + [387111] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15850), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11660), 2, + sym_preproc_call, + sym_enumerator, + STATE(12161), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(9915), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [387144] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(12433), 1, + anon_sym_LT, + STATE(3452), 1, + sym_template_argument_list, + ACTIONS(6774), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(6781), 8, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [387171] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14863), 1, + ACTIONS(15852), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10483), 2, + STATE(11671), 2, sym_preproc_call, sym_enumerator, - STATE(11307), 2, + STATE(12178), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8833), 3, + STATE(9886), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336831] = 10, + [387204] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 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(14816), 1, anon_sym_LBRACK, - STATE(4706), 1, + ACTIONS(15518), 1, + anon_sym___attribute, + STATE(4853), 1, sym_parameter_list, - STATE(8598), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(9401), 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, - [336866] = 10, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15516), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [387237] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(12435), 1, + anon_sym_LBRACK, + ACTIONS(15613), 1, + anon_sym_COLON, + ACTIONS(15615), 1, + anon_sym_EQ, + ACTIONS(15617), 1, + anon_sym_try, + STATE(456), 1, + sym_compound_statement, + STATE(11573), 1, + sym_field_initializer_list, + ACTIONS(7109), 2, 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_LBRACK, + STATE(457), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [387272] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(12435), 1, anon_sym_LBRACK, - STATE(4706), 1, + ACTIONS(15613), 1, + anon_sym_COLON, + ACTIONS(15667), 1, + anon_sym_EQ, + ACTIONS(15669), 1, + anon_sym_try, + STATE(884), 1, + sym_compound_statement, + STATE(11686), 1, + sym_field_initializer_list, + ACTIONS(7109), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(886), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [387307] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5193), 1, sym_parameter_list, - STATE(8598), 1, + STATE(9313), 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, + ACTIONS(9776), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [387334] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(9784), 1, + anon_sym___attribute, + ACTIONS(14661), 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(15828), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5394), 1, sym_parameter_list, - STATE(8598), 1, + STATE(9630), 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, + ACTIONS(9786), 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, + [387363] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, + ACTIONS(1113), 1, + anon_sym_LBRACE, + ACTIONS(12435), 1, + anon_sym_LBRACK, + ACTIONS(15613), 1, + anon_sym_COLON, + ACTIONS(15647), 1, + anon_sym_EQ, + ACTIONS(15649), 1, + anon_sym_try, + STATE(722), 1, + sym_compound_statement, + STATE(11462), 1, + sym_field_initializer_list, + ACTIONS(7109), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(723), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [387398] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9788), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4796), 1, + STATE(5394), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10196), 8, + ACTIONS(9790), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -729157,623 +807659,760 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [336965] = 9, + [387427] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15844), 1, + anon_sym_LT, + STATE(9937), 1, + sym_template_argument_list, + ACTIONS(15856), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(15854), 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, + [387452] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14867), 1, + ACTIONS(15858), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10294), 2, + STATE(11749), 2, sym_preproc_call, sym_enumerator, - STATE(11584), 2, + STATE(12393), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8829), 3, + STATE(10039), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336998] = 9, + [387485] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14869), 1, + ACTIONS(15860), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10305), 2, + STATE(11708), 2, sym_preproc_call, sym_enumerator, - STATE(10728), 2, + STATE(12287), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8819), 3, + STATE(9893), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337031] = 9, + [387518] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5193), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9806), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [387545] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14871), 1, + ACTIONS(15862), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10621), 2, + STATE(11477), 2, sym_preproc_call, sym_enumerator, - STATE(11696), 2, + STATE(12066), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8817), 3, + STATE(10039), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337064] = 10, + [387578] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 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(14816), 1, anon_sym_LBRACK, - STATE(4706), 1, + ACTIONS(15510), 1, + anon_sym___attribute, + STATE(4853), 1, sym_parameter_list, - STATE(8598), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(9277), 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, - [337099] = 9, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15508), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [387611] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(5275), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(11542), 1, + sym_gnu_asm_expression, + ACTIONS(14820), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(15864), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [387648] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(5851), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + ACTIONS(15722), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10228), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [387685] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15866), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11786), 2, + sym_preproc_call, + sym_enumerator, + STATE(12266), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(10039), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [387718] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14873), 1, + ACTIONS(15868), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10279), 2, + STATE(11751), 2, sym_preproc_call, sym_enumerator, - STATE(11004), 2, + STATE(12405), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8766), 3, + STATE(9908), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337132] = 10, + [387751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(12380), 6, anon_sym_LPAREN2, - ACTIONS(6463), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(6465), 1, anon_sym_AMP_AMP, - ACTIONS(6467), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(12378), 7, anon_sym_AMP, - ACTIONS(11793), 1, + anon_sym___based, anon_sym_LBRACK, - STATE(4706), 1, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [387772] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5193), 1, sym_parameter_list, - STATE(8598), 1, + STATE(9313), 1, sym__function_declarator_seq, - STATE(9410), 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, - [337167] = 10, + ACTIONS(9790), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [387799] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14794), 1, + ACTIONS(15631), 1, anon_sym_EQ, - ACTIONS(14796), 1, + ACTIONS(15633), 1, anon_sym_try, - STATE(842), 1, + STATE(912), 1, sym_compound_statement, - STATE(10456), 1, + STATE(11562), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(850), 4, + STATE(918), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [337202] = 8, + [387834] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(9774), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4586), 1, + STATE(5394), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9630), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14505), 6, + ACTIONS(9776), 8, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_try, - [337233] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [387863] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14875), 1, + ACTIONS(15870), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10274), 2, + STATE(11524), 2, sym_preproc_call, sym_enumerator, - STATE(10695), 2, + STATE(12479), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(10039), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337266] = 7, + [387896] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15872), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11795), 2, + sym_preproc_call, + sym_enumerator, + STATE(12623), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(10039), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [387929] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4796), 1, + STATE(5245), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10200), 8, - anon_sym_COMMA, + ACTIONS(9794), 9, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [337295] = 9, + [387956] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14523), 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(14521), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(15613), 1, + anon_sym_COLON, + ACTIONS(15667), 1, anon_sym_EQ, - anon_sym_GT2, - [337328] = 9, + ACTIONS(15669), 1, + anon_sym_try, + STATE(862), 1, + sym_compound_statement, + STATE(11468), 1, + sym_field_initializer_list, + ACTIONS(7109), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(863), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [387991] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14561), 1, + ACTIONS(15456), 1, anon_sym___attribute, - STATE(4334), 1, + STATE(4853), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14559), 5, + ACTIONS(15454), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [337361] = 10, + [388024] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(12435), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(15613), 1, anon_sym_COLON, - ACTIONS(14678), 1, + ACTIONS(15647), 1, anon_sym_EQ, - ACTIONS(14680), 1, + ACTIONS(15649), 1, anon_sym_try, - STATE(1013), 1, + STATE(713), 1, sym_compound_statement, - STATE(10376), 1, + STATE(11418), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(7109), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(874), 4, + STATE(714), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [337396] = 7, + [388059] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4796), 1, + STATE(5245), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10204), 8, - anon_sym_COMMA, + ACTIONS(9798), 9, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [337425] = 11, + [388086] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15874), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11476), 2, + sym_preproc_call, + sym_enumerator, + STATE(12029), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(9899), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [388119] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9792), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4564), 1, + STATE(5394), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9630), 1, sym__function_declarator_seq, - STATE(10475), 1, - sym_gnu_asm_expression, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(14877), 2, + ACTIONS(9794), 8, anon_sym_COMMA, - anon_sym_SEMI, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [337462] = 9, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [388148] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14879), 1, + ACTIONS(15876), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10343), 2, + STATE(11774), 2, sym_preproc_call, sym_enumerator, - STATE(10990), 2, + STATE(12506), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8796), 3, + STATE(10039), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337495] = 8, + [388181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4586), 1, + STATE(5193), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9313), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14559), 6, - anon_sym_RPAREN, + ACTIONS(9798), 9, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_try, - [337526] = 9, + anon_sym_requires, + [388208] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14881), 1, + ACTIONS(15878), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10591), 2, + STATE(11599), 2, sym_preproc_call, sym_enumerator, - STATE(11621), 2, + STATE(12044), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8799), 3, + STATE(9858), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337559] = 9, + [388241] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14883), 1, + ACTIONS(15880), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10451), 2, + STATE(11868), 2, sym_preproc_call, sym_enumerator, - STATE(11239), 2, + STATE(13018), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(9914), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337592] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 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, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9019), 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, - [337627] = 10, - 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, + [388274] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14889), 1, + ACTIONS(15882), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10234), 2, + STATE(11488), 2, sym_preproc_call, sym_enumerator, - STATE(10849), 2, + STATE(12128), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(10039), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337695] = 7, + [388307] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10186), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4796), 1, + STATE(5245), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10184), 8, - anon_sym_COMMA, + ACTIONS(9782), 9, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [337724] = 10, + [388334] = 9, 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(9384), 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, - [337759] = 11, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15884), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11407), 2, + sym_preproc_call, + sym_enumerator, + STATE(12090), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(10039), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [388367] = 9, 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, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15886), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11698), 2, + sym_preproc_call, + sym_enumerator, + STATE(12261), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(10039), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [388400] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4334), 1, + STATE(5245), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(14734), 2, - anon_sym_COMMA, + ACTIONS(9786), 9, 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, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [388427] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(9780), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4796), 1, + STATE(5394), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10208), 8, + ACTIONS(9782), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -729782,753 +808421,436 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [337825] = 8, + [388456] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4586), 1, + ACTIONS(15452), 1, + anon_sym___attribute, + STATE(4853), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14547), 6, + ACTIONS(15450), 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, - [337856] = 9, + anon_sym_GT2, + [388489] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14891), 1, + ACTIONS(15888), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10252), 2, + STATE(11816), 2, sym_preproc_call, sym_enumerator, - STATE(11598), 2, + STATE(12876), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8812), 3, + STATE(10039), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337889] = 6, + [388522] = 9, 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, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6567), 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, - [337916] = 5, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15810), 1, + aux_sym_preproc_if_token1, + ACTIONS(15890), 1, + anon_sym_RBRACE, + ACTIONS(15812), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11398), 2, + sym_preproc_call, + sym_enumerator, + STATE(12971), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(9919), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [388555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14859), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(15595), 1, anon_sym_LT, - STATE(8854), 1, + STATE(9481), 1, sym_template_argument_list, - ACTIONS(14895), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(14893), 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, - [337941] = 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(14507), 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(14505), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [337974] = 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(9340), 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, - [338009] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(6783), 2, anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14788), 1, - anon_sym_EQ, - ACTIONS(14790), 1, - anon_sym_try, - STATE(709), 1, - sym_compound_statement, - STATE(10420), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, + anon_sym___asm, + ACTIONS(6776), 8, + anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(710), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [338044] = 10, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [388582] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(14661), 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(15327), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5245), 1, sym_parameter_list, - STATE(8598), 1, + STATE(9313), 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, + ACTIONS(9806), 9, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [388609] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14897), 1, + ACTIONS(15892), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10336), 2, + STATE(11478), 2, sym_preproc_call, sym_enumerator, - STATE(10836), 2, + STATE(12027), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(10039), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338112] = 9, + [388642] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14899), 1, + ACTIONS(15894), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10563), 2, + STATE(11584), 2, sym_preproc_call, sym_enumerator, - STATE(10688), 2, + STATE(11936), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8815), 3, + STATE(9925), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338145] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10190), 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(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, + [388675] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14901), 1, + ACTIONS(15896), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10226), 2, + STATE(11621), 2, sym_preproc_call, sym_enumerator, - STATE(10769), 2, + STATE(12028), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(10039), 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, + [388708] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14903), 1, + ACTIONS(15898), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10359), 2, + STATE(11589), 2, sym_preproc_call, sym_enumerator, - STATE(10848), 2, + STATE(11950), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(10039), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338273] = 9, + [388741] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14905), 1, + ACTIONS(15900), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10523), 2, + STATE(11464), 2, sym_preproc_call, sym_enumerator, - STATE(11255), 2, + STATE(11935), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8786), 3, + STATE(9889), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338306] = 9, + [388774] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14907), 1, + ACTIONS(15902), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10344), 2, + STATE(11604), 2, sym_preproc_call, sym_enumerator, - STATE(11334), 2, + STATE(11996), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(10039), 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, - 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(14519), 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(14517), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [338457] = 9, + [388807] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(15810), 1, aux_sym_preproc_if_token1, - ACTIONS(14909), 1, + ACTIONS(15904), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(15812), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10354), 2, + STATE(11802), 2, sym_preproc_call, sym_enumerator, - STATE(11017), 2, + STATE(12877), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8769), 3, + STATE(9928), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338490] = 10, + [388840] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(14661), 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(15327), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5193), 1, sym_parameter_list, - STATE(8598), 1, + STATE(9313), 1, sym__function_declarator_seq, - STATE(9322), 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, - [338525] = 8, + ACTIONS(9786), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [388867] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14517), 6, + ACTIONS(15508), 5, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [338556] = 10, + [388897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(10117), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(10119), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(14752), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(14754), 1, anon_sym_try, - STATE(440), 1, - sym_compound_statement, - STATE(10405), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(441), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [338591] = 7, + [388917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10174), 1, + ACTIONS(15908), 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(10172), 8, + ACTIONS(15906), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [338620] = 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(14911), 1, - anon_sym_RBRACE, - ACTIONS(14849), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10227), 2, - sym_preproc_call, - sym_enumerator, - STATE(11066), 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, - [338653] = 10, - 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_LBRACK_LBRACK, + anon_sym_LBRACE, 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, + [388937] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14521), 6, + ACTIONS(15454), 5, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [338719] = 6, + [388967] = 6, 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(11754), 2, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6883), 8, + STATE(5233), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9798), 8, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [338746] = 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(14913), 1, - anon_sym_RBRACE, - ACTIONS(14849), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10516), 2, - sym_preproc_call, - sym_enumerator, - STATE(11420), 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, - [338779] = 4, - 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_COLON, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, + anon_sym_final, + anon_sym_override, anon_sym_requires, - [338801] = 6, + [388993] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10172), 8, - anon_sym_COMMA, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15450), 5, 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_try, + [389023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14922), 2, + ACTIONS(10020), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14920), 10, + ACTIONS(10022), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730539,13 +808861,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [338847] = 3, + [389043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9513), 2, + ACTIONS(15912), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9515), 10, + ACTIONS(15910), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730556,18 +808878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [338867] = 6, + [389063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(5233), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10208), 8, + ACTIONS(9790), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -730576,165 +808898,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [338893] = 3, + [389089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14895), 2, - anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(14893), 10, + STATE(5233), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9782), 8, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [389115] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15516), 5, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [338913] = 3, + [389145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14926), 2, - anon_sym___attribute, + ACTIONS(15595), 1, + anon_sym_LT, + STATE(9481), 1, + sym_template_argument_list, + ACTIONS(10094), 2, anon_sym_LBRACK, - ACTIONS(14924), 10, + anon_sym___asm, + ACTIONS(10096), 8, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [338933] = 6, + [389169] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(9792), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(5883), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10188), 8, + ACTIONS(9794), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - [338959] = 3, + [389197] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14930), 2, + ACTIONS(9796), 1, anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, anon_sym_LBRACK, - ACTIONS(14928), 10, + STATE(5883), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9798), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [338979] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(14499), 1, - anon_sym_requires, - STATE(8951), 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), 3, + anon_sym_requires, + [389225] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(15828), 1, anon_sym_LBRACK, - [339009] = 3, + STATE(5233), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9786), 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, + [389251] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14934), 2, + ACTIONS(9774), 1, anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, anon_sym_LBRACK, - ACTIONS(14932), 10, + STATE(5883), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9776), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [339029] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [389279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + STATE(9947), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + ACTIONS(15916), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + ACTIONS(15914), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_DASH_GT, - ACTIONS(13205), 1, + anon_sym_noexcept, + anon_sym_throw, 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, + [389301] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(9780), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(5883), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10192), 8, + ACTIONS(9782), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - [339085] = 3, + [389329] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(9401), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9403), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [389355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14938), 2, + ACTIONS(15921), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14936), 10, + ACTIONS(15919), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730745,103 +809118,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339105] = 11, + [389375] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(12119), 1, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4978), 1, + STATE(4184), 1, sym_attribute_specifier, - STATE(9326), 1, + STATE(10514), 1, sym_field_declaration_list, - STATE(9572), 1, + STATE(10785), 1, sym_virtual_specifier, - STATE(10542), 1, + STATE(11811), 1, sym_base_class_clause, - ACTIONS(7237), 2, + ACTIONS(7372), 2, anon_sym_COMMA, anon_sym_GT2, - ACTIONS(8160), 2, + ACTIONS(10604), 2, anon_sym_final, anon_sym_override, - [339141] = 6, + [389411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15925), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4672), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10204), 8, + ACTIONS(15923), 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, - [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_EQ, + anon_sym_try, + [389431] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + ACTIONS(11435), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(15418), 1, anon_sym_requires, - STATE(8972), 1, + STATE(10090), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(9338), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [339219] = 6, + [389461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(5233), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10200), 8, + ACTIONS(9776), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -730850,35 +809202,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [339245] = 8, + [389487] = 4, 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, - 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, - [339275] = 3, + STATE(9455), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(15367), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(15369), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [389509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9693), 2, + ACTIONS(15929), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9695), 10, + ACTIONS(15927), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730889,13 +809237,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339295] = 3, + [389529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14942), 2, + ACTIONS(15846), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14940), 10, + ACTIONS(15842), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730906,13 +809254,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339315] = 3, + [389549] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9800), 1, + anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5883), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9802), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [389577] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15480), 5, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_try, + [389607] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14060), 1, + anon_sym_requires, + STATE(10079), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9663), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7623), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [389637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14946), 2, + ACTIONS(15933), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14944), 10, + ACTIONS(15931), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730923,38 +809336,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339335] = 6, + [389657] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(9788), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15327), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(5883), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9313), 1, sym__function_declarator_seq, - ACTIONS(10184), 8, + ACTIONS(9790), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - [339361] = 6, + [389685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(5233), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10196), 8, + ACTIONS(9794), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -730963,117 +809377,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [339387] = 5, + [389711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14660), 1, - anon_sym_LT, - STATE(8449), 1, - sym_template_argument_list, - ACTIONS(9650), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9652), 8, - anon_sym_COMMA, + ACTIONS(14661), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - 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, - 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, - anon_sym___attribute, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(6634), 9, + STATE(5233), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9802), 8, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [339476] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [389737] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 2, + ACTIONS(9804), 1, anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, anon_sym_LBRACK, - ACTIONS(6614), 9, + STATE(5883), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9806), 7, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [339495] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [389765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 2, - anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(6626), 9, + STATE(5233), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9806), 8, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [339514] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [389791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 2, + ACTIONS(15937), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6630), 9, + ACTIONS(15935), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -731082,172 +809455,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339533] = 2, + [389811] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14948), 11, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14244), 1, + anon_sym_requires, + STATE(10097), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 3, anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [339550] = 6, + anon_sym_LBRACK, + [389841] = 7, 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, + ACTIONS(9784), 1, anon_sym___attribute, - anon_sym_COLON, - ACTIONS(5657), 6, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15327), 1, + anon_sym_LBRACK, + STATE(5883), 1, + sym_parameter_list, + STATE(9313), 1, + sym__function_declarator_seq, + ACTIONS(9786), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, - anon_sym_GT2, - [339575] = 11, + anon_sym_requires, + [389869] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(11435), 1, + anon_sym_DASH_GT, + ACTIONS(14003), 1, + anon_sym_requires, + STATE(10100), 1, + sym_trailing_return_type, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 3, anon_sym_LPAREN2, - ACTIONS(13945), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(13987), 1, - anon_sym_try, - STATE(975), 1, - sym_compound_statement, - STATE(976), 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, - [339610] = 5, + [389899] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12429), 1, + anon_sym_new, + ACTIONS(12531), 1, + anon_sym_delete, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [389922] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10426), 1, + anon_sym_delete, + ACTIONS(10428), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [389945] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10618), 1, anon_sym_delete, - ACTIONS(10156), 1, + ACTIONS(10620), 1, anon_sym_new, - ACTIONS(9601), 4, + ACTIONS(10107), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(10101), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [339633] = 9, + [389968] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9792), 1, + anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5804), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9794), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [389995] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14950), 1, + ACTIONS(15939), 1, aux_sym_preproc_if_token2, - ACTIONS(14952), 1, + ACTIONS(15941), 1, aux_sym_preproc_else_token1, - ACTIONS(14954), 1, + ACTIONS(15943), 1, aux_sym_preproc_elif_token1, - STATE(9072), 1, + STATE(10166), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, + STATE(12384), 1, sym_enumerator, - ACTIONS(14956), 2, + ACTIONS(15945), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(11496), 3, + STATE(11883), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [339664] = 8, + [390026] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(15560), 1, sym_identifier, - ACTIONS(14958), 1, + ACTIONS(15947), 1, aux_sym_preproc_if_token2, - ACTIONS(14960), 1, + ACTIONS(15949), 1, aux_sym_preproc_else_token1, - ACTIONS(14962), 1, + ACTIONS(15951), 1, aux_sym_preproc_elif_token1, - ACTIONS(14964), 2, + ACTIONS(15953), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(9007), 2, + STATE(10151), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(11497), 3, + STATE(11893), 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, + [390055] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14083), 1, + ACTIONS(14975), 1, anon_sym_try, - STATE(698), 1, + STATE(690), 1, sym_compound_statement, - STATE(699), 1, + STATE(691), 1, sym_try_statement, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [339747] = 3, + [390090] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 2, + ACTIONS(9796), 1, + anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5804), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9798), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [390117] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5712), 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, + [390134] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5504), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9798), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [390159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6618), 9, + ACTIONS(6793), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -731257,13 +809731,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339766] = 3, + [390178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(6811), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6622), 9, + ACTIONS(6813), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -731273,665 +809747,715 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339785] = 5, + [390197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(10288), 1, + ACTIONS(7444), 1, + anon_sym_COLON_COLON, + ACTIONS(12433), 1, + anon_sym_LT, + STATE(3820), 1, + sym_template_argument_list, + ACTIONS(7442), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(7447), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [390222] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12427), 1, anon_sym_delete, - ACTIONS(9601), 4, + ACTIONS(12429), 1, + anon_sym_new, + ACTIONS(10107), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(10101), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [339808] = 11, + [390245] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(15941), 1, + aux_sym_preproc_else_token1, + ACTIONS(15943), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15955), 1, + aux_sym_preproc_if_token2, + STATE(10166), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(12384), 1, + sym_enumerator, + ACTIONS(15945), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(12146), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [390276] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15560), 1, + sym_identifier, + ACTIONS(15949), 1, + aux_sym_preproc_else_token1, + ACTIONS(15951), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15957), 1, + aux_sym_preproc_if_token2, + ACTIONS(15953), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10151), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(12147), 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, + [390305] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11164), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13951), 1, + ACTIONS(14685), 1, anon_sym_try, - STATE(483), 1, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(3655), 1, sym_compound_statement, - STATE(484), 1, + STATE(3729), 1, sym_try_statement, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [339843] = 5, + [390340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, + ACTIONS(12478), 1, anon_sym_delete, - ACTIONS(11815), 1, + ACTIONS(12480), 1, anon_sym_new, - ACTIONS(9601), 4, + ACTIONS(10107), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(10101), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [339866] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 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, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [339901] = 11, + [390363] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(9774), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13819), 1, - anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(3256), 1, - sym_compound_statement, - STATE(3257), 1, - sym_try_statement, - STATE(4586), 1, + STATE(5796), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9630), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [339936] = 5, + ACTIONS(9776), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [390390] = 9, 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, + ACTIONS(15584), 1, + aux_sym_preproc_if_token2, + ACTIONS(15808), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [339959] = 8, + ACTIONS(15941), 1, + aux_sym_preproc_else_token1, + ACTIONS(15943), 1, + aux_sym_preproc_elif_token1, + STATE(9975), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(12384), 1, + sym_enumerator, + ACTIONS(15945), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(12809), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [390421] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14966), 1, + ACTIONS(15959), 1, sym_identifier, - ACTIONS(14968), 1, + ACTIONS(15961), 1, anon_sym_COLON, - ACTIONS(14970), 1, + ACTIONS(15963), 1, sym_system_lib_string, - STATE(10122), 1, + STATE(11024), 1, sym_string_literal, - STATE(10123), 1, + STATE(11025), 1, sym_module_name, - STATE(10131), 1, + STATE(11027), 1, sym_module_partition, - ACTIONS(10274), 5, + ACTIONS(10729), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [339988] = 2, + [390450] = 7, 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(3), 1, - sym_comment, - ACTIONS(13795), 1, + ACTIONS(9780), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4861), 1, + STATE(5796), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10196), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9782), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [340030] = 6, + [390477] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(9784), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4861), 1, + STATE(5796), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10200), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9786), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [340055] = 6, + [390504] = 5, 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(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, + ACTIONS(12482), 1, + anon_sym_delete, + ACTIONS(12484), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [390527] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(9788), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4861), 1, + STATE(5796), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10192), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9790), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [340105] = 9, + [390554] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10778), 1, + anon_sym_delete, + ACTIONS(10780), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [390577] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14654), 1, + ACTIONS(15562), 1, aux_sym_preproc_if_token2, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14952), 1, + ACTIONS(15941), 1, aux_sym_preproc_else_token1, - ACTIONS(14954), 1, + ACTIONS(15943), 1, aux_sym_preproc_elif_token1, - STATE(8870), 1, + STATE(9985), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, + STATE(12384), 1, sym_enumerator, - ACTIONS(14956), 2, + ACTIONS(15945), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(11503), 3, + STATE(12970), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [340136] = 11, + [390608] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(15560), 1, + sym_identifier, + ACTIONS(15949), 1, + aux_sym_preproc_else_token1, + ACTIONS(15951), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15965), 1, + aux_sym_preproc_if_token2, + ACTIONS(15953), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(9986), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(12979), 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, + [390637] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10987), 1, + anon_sym_delete, + ACTIONS(10989), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [390660] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13819), 1, - anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(3268), 1, - sym_compound_statement, - STATE(3269), 1, - sym_try_statement, - STATE(4586), 1, + ACTIONS(15510), 1, + anon_sym___attribute, + STATE(5851), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [340171] = 9, + ACTIONS(15508), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [390691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14845), 1, + ACTIONS(10428), 1, + anon_sym_new, + ACTIONS(10763), 1, + anon_sym_delete, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, 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, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [390714] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(11164), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14685), 1, + anon_sym_try, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4861), 1, + STATE(3547), 1, + sym_try_statement, + STATE(3658), 1, + sym_compound_statement, + STATE(5215), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10204), 7, - anon_sym_SEMI, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [390749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15967), 11, + anon_sym_LPAREN2, + anon_sym_LT, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [340227] = 8, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [390766] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(15560), 1, sym_identifier, - ACTIONS(14960), 1, + ACTIONS(15949), 1, aux_sym_preproc_else_token1, - ACTIONS(14962), 1, + ACTIONS(15951), 1, aux_sym_preproc_elif_token1, - ACTIONS(14976), 1, + ACTIONS(15969), 1, aux_sym_preproc_if_token2, - ACTIONS(14964), 2, + ACTIONS(15953), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(9007), 2, + STATE(9976), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(11559), 3, + STATE(12831), 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, + [390795] = 11, 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(14978), 1, - aux_sym_preproc_if_token2, - ACTIONS(14964), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8871), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - 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, - [340285] = 9, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14955), 1, + anon_sym_try, + STATE(487), 1, + sym_compound_statement, + STATE(488), 1, + sym_try_statement, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [390830] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14670), 1, - aux_sym_preproc_if_token2, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14952), 1, + ACTIONS(15941), 1, aux_sym_preproc_else_token1, - ACTIONS(14954), 1, + ACTIONS(15943), 1, aux_sym_preproc_elif_token1, - STATE(8890), 1, + ACTIONS(15971), 1, + aux_sym_preproc_if_token2, + STATE(10008), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, + STATE(12384), 1, sym_enumerator, - ACTIONS(14956), 2, + ACTIONS(15945), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(11038), 3, + STATE(12224), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [340316] = 6, + [390861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(6829), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4861), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10208), 7, + ACTIONS(6831), 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, - [340341] = 8, + [390880] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14960), 1, + ACTIONS(15941), 1, aux_sym_preproc_else_token1, - ACTIONS(14962), 1, + ACTIONS(15943), 1, aux_sym_preproc_elif_token1, - ACTIONS(14980), 1, + ACTIONS(15973), 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, - 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(14982), 1, - aux_sym_preproc_if_token2, - STATE(8923), 1, + STATE(10166), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, + STATE(12384), 1, sym_enumerator, - ACTIONS(14956), 2, + ACTIONS(15945), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(10879), 3, + STATE(12443), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [340401] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14966), 1, - sym_identifier, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(14984), 1, - sym_system_lib_string, - STATE(10004), 1, - sym_string_literal, - STATE(10006), 1, - sym_module_name, - STATE(10007), 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, - [340430] = 7, + [390911] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10186), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(5310), 1, + ACTIONS(15456), 1, + anon_sym___attribute, + STATE(5851), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10184), 6, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15454), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - 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, + [390942] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(15560), 1, sym_identifier, - ACTIONS(14960), 1, + ACTIONS(15949), 1, aux_sym_preproc_else_token1, - ACTIONS(14962), 1, + ACTIONS(15951), 1, aux_sym_preproc_elif_token1, - ACTIONS(14988), 1, + ACTIONS(15975), 1, aux_sym_preproc_if_token2, - ACTIONS(14964), 2, + ACTIONS(15953), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(9007), 2, + STATE(10151), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(10868), 3, + STATE(12475), 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, + [390971] = 2, 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(15977), 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, + [390988] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13807), 1, - anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(3439), 1, + ACTIONS(14975), 1, + anon_sym_try, + STATE(702), 1, sym_compound_statement, - STATE(3440), 1, + STATE(703), 1, sym_try_statement, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [340575] = 5, + [391023] = 2, 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(15979), 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, + [391040] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10194), 1, + ACTIONS(9800), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(5804), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10192), 6, + ACTIONS(9802), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [340625] = 7, + [391067] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10174), 1, + ACTIONS(9804), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(5796), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10172), 6, + ACTIONS(9806), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [340652] = 7, + [391094] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10186), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(11190), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14673), 1, + anon_sym_try, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(3761), 1, + sym_compound_statement, + STATE(3762), 1, + sym_try_statement, + STATE(5215), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10184), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [340679] = 2, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [391129] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12429), 1, + anon_sym_new, + ACTIONS(12447), 1, + anon_sym_delete, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [391152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14990), 11, + ACTIONS(15981), 11, anon_sym_LPAREN2, anon_sym_LT, anon_sym_LBRACK_LBRACK, @@ -731943,18 +810467,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - [340696] = 6, + [391169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(6795), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6797), 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, + [391188] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4861), 1, + ACTIONS(14826), 1, + anon_sym_try, + STATE(836), 1, + sym_compound_statement, + STATE(837), 1, + sym_try_statement, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [391223] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(15518), 1, + anon_sym___attribute, + STATE(5851), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15516), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [391254] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5504), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10172), 7, + ACTIONS(9782), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -731962,1198 +810548,1267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [340721] = 5, + [391279] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10387), 1, - anon_sym_delete, - ACTIONS(10389), 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, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14899), 1, + anon_sym_try, + STATE(1044), 1, + sym_compound_statement, + STATE(1046), 1, + sym_try_statement, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [391314] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15808), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [340744] = 5, + ACTIONS(15941), 1, + aux_sym_preproc_else_token1, + ACTIONS(15943), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15983), 1, + aux_sym_preproc_if_token2, + STATE(10166), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(12384), 1, + sym_enumerator, + ACTIONS(15945), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(12383), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [391345] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11756), 1, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(14826), 1, + anon_sym_try, + STATE(816), 1, + sym_compound_statement, + STATE(817), 1, + sym_try_statement, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [391380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12386), 1, anon_sym_delete, - ACTIONS(11758), 1, + ACTIONS(12388), 1, anon_sym_new, - ACTIONS(9601), 4, + ACTIONS(10107), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(10101), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [340767] = 5, + [391403] = 6, 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, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5504), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9786), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [391428] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5504), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9790), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [391453] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15959), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [340790] = 8, + ACTIONS(15961), 1, + anon_sym_COLON, + ACTIONS(15985), 1, + sym_system_lib_string, + STATE(11238), 1, + sym_string_literal, + STATE(11239), 1, + sym_module_name, + STATE(11242), 1, + sym_module_partition, + ACTIONS(10729), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [391482] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14966), 1, + ACTIONS(15959), 1, sym_identifier, - ACTIONS(14968), 1, + ACTIONS(15961), 1, anon_sym_COLON, - ACTIONS(14992), 1, + ACTIONS(15987), 1, sym_system_lib_string, - STATE(9856), 1, + STATE(11021), 1, sym_string_literal, - STATE(9857), 1, + STATE(11022), 1, sym_module_name, - STATE(9858), 1, + STATE(11023), 1, sym_module_partition, - ACTIONS(10274), 5, + ACTIONS(10729), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [340819] = 7, + [391511] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15989), 1, + anon_sym_COMMA, + ACTIONS(15993), 1, anon_sym___attribute, - ACTIONS(13795), 1, + STATE(3487), 1, + sym_parameter_list, + STATE(10541), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(15991), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(9507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [391544] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(5310), 1, + ACTIONS(14955), 1, + anon_sym_try, + STATE(400), 1, + sym_try_statement, + STATE(410), 1, + sym_compound_statement, + STATE(5215), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10196), 6, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [391579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6803), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6805), 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, - [340846] = 7, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [391598] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(9800), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(5796), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10200), 6, + ACTIONS(9802), 6, anon_sym_COMMA, 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, + [391625] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13833), 1, - anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(2794), 1, + ACTIONS(14899), 1, + anon_sym_try, + STATE(939), 1, sym_compound_statement, - STATE(2795), 1, + STATE(940), 1, sym_try_statement, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [340939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11844), 1, - anon_sym_delete, - ACTIONS(11846), 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, - [340962] = 5, + [391660] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9744), 1, - anon_sym_delete, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(5684), 1, 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, - [340985] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10206), 1, + ACTIONS(12433), 1, + anon_sym_LT, + STATE(3452), 1, + sym_template_argument_list, + ACTIONS(7543), 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(10204), 6, + anon_sym_COLON, + ACTIONS(5689), 6, anon_sym_COMMA, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [341012] = 11, + [391685] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(11190), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13807), 1, + ACTIONS(14673), 1, anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(3443), 1, + STATE(3731), 1, sym_compound_statement, - STATE(3444), 1, + STATE(3737), 1, sym_try_statement, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [341047] = 7, + [391720] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(9804), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(5804), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10208), 6, + ACTIONS(9806), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [341074] = 9, + [391747] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15995), 1, + sym_identifier, + ACTIONS(15998), 1, + aux_sym_preproc_if_token1, + ACTIONS(16004), 1, + sym_preproc_directive, + ACTIONS(16007), 1, + anon_sym_RBRACE, + ACTIONS(16001), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11892), 2, + sym_preproc_call, + sym_enumerator, + STATE(10039), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [391776] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5504), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9802), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [391801] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14845), 1, + ACTIONS(15808), 1, sym_identifier, - ACTIONS(14952), 1, + ACTIONS(15941), 1, aux_sym_preproc_else_token1, - ACTIONS(14954), 1, + ACTIONS(15943), 1, aux_sym_preproc_elif_token1, - ACTIONS(14996), 1, + ACTIONS(16009), 1, aux_sym_preproc_if_token2, - STATE(9072), 1, + STATE(10024), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, + STATE(12384), 1, sym_enumerator, - ACTIONS(14956), 2, + ACTIONS(15945), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(10710), 3, + STATE(12913), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [341105] = 8, + [391832] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(15560), 1, sym_identifier, - ACTIONS(14960), 1, + ACTIONS(15949), 1, aux_sym_preproc_else_token1, - ACTIONS(14962), 1, + ACTIONS(15951), 1, aux_sym_preproc_elif_token1, - ACTIONS(14998), 1, + ACTIONS(16011), 1, aux_sym_preproc_if_token2, - ACTIONS(14964), 2, + ACTIONS(15953), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(9007), 2, + STATE(10151), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(10748), 3, + STATE(12460), 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, + [391861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 11, + ACTIONS(14661), 1, anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5504), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9776), 7, + anon_sym_SEMI, 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, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [391886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10190), 1, + ACTIONS(12486), 1, + anon_sym_delete, + ACTIONS(12488), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [391909] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6799), 2, anon_sym___attribute, - ACTIONS(13795), 1, + anon_sym_LBRACK, + ACTIONS(6801), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(14865), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [391928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6807), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(5313), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10188), 6, + ACTIONS(6809), 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, + [391947] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10194), 1, + ACTIONS(9780), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(5804), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10192), 6, + ACTIONS(9782), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [341205] = 5, + [391974] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9746), 1, + ACTIONS(10428), 1, anon_sym_new, - ACTIONS(9967), 1, + ACTIONS(10828), 1, anon_sym_delete, - ACTIONS(9601), 4, + ACTIONS(10107), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(10101), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [341228] = 11, + [391997] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(9792), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13833), 1, - anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(2867), 1, - sym_compound_statement, - STATE(2872), 1, - sym_try_statement, - STATE(4586), 1, + STATE(5796), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9630), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [341263] = 8, + ACTIONS(9794), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [392024] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15000), 1, + ACTIONS(10109), 1, + anon_sym_delete, + ACTIONS(10111), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, 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, - sym_enumerator, - STATE(8930), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [341292] = 11, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [392047] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(11177), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13951), 1, + ACTIONS(14696), 1, anon_sym_try, - STATE(460), 1, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(3237), 1, sym_compound_statement, - STATE(461), 1, + STATE(3242), 1, sym_try_statement, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [341327] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15014), 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, - [341344] = 7, + [392082] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10174), 1, + ACTIONS(9796), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(5796), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10172), 6, + ACTIONS(9798), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [341371] = 11, + [392109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - 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(10713), 1, + anon_sym_delete, + ACTIONS(10715), 1, + anon_sym_new, + ACTIONS(10107), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(10101), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [392132] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(15828), 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, + STATE(5504), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9630), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [341441] = 6, + ACTIONS(9794), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [392157] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(9774), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4861), 1, + STATE(5804), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10184), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(9776), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [341466] = 8, + [392184] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14966), 1, + ACTIONS(15959), 1, sym_identifier, - ACTIONS(14968), 1, + ACTIONS(15961), 1, anon_sym_COLON, - ACTIONS(15016), 1, + ACTIONS(16013), 1, sym_system_lib_string, - STATE(9992), 1, + STATE(11218), 1, sym_string_literal, - STATE(9998), 1, + STATE(11343), 1, sym_module_name, - STATE(10008), 1, + STATE(11346), 1, sym_module_partition, - ACTIONS(10274), 5, + ACTIONS(10729), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [341495] = 7, + [392213] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(5313), 1, + ACTIONS(15452), 1, + anon_sym___attribute, + STATE(5851), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10196), 6, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(15450), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [341522] = 7, + [392244] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(9788), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(5804), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10200), 6, + ACTIONS(9790), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [341549] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(10314), 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, - [341572] = 10, + [392271] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11177), 1, + anon_sym_LBRACE, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(15018), 1, - anon_sym_COMMA, - ACTIONS(15022), 1, - anon_sym___attribute, - STATE(3140), 1, + ACTIONS(14696), 1, + anon_sym_try, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(3211), 1, + sym_compound_statement, + STATE(3222), 1, + sym_try_statement, + STATE(5215), 1, sym_parameter_list, - STATE(9373), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(15020), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(8473), 2, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [341605] = 7, + [392306] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(9784), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(5804), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10204), 6, + ACTIONS(9786), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [341632] = 5, + [392333] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11758), 1, + ACTIONS(10428), 1, anon_sym_new, - ACTIONS(11836), 1, + ACTIONS(10558), 1, anon_sym_delete, - ACTIONS(9601), 4, + ACTIONS(10107), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(10101), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [341655] = 7, + [392356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(5504), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10208), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(9806), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [341682] = 11, + [392381] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 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, + ACTIONS(15482), 1, + anon_sym___attribute, + STATE(5851), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [341717] = 7, + ACTIONS(15480), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [392412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10190), 1, + ACTIONS(7263), 1, anon_sym___attribute, - ACTIONS(13795), 1, + STATE(10080), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7265), 4, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(16015), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [392434] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(5724), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10188), 6, + ACTIONS(9776), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [341744] = 5, + [392458] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, + ACTIONS(43), 1, anon_sym___attribute, - STATE(8968), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7719), 4, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5954), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(15722), 2, anon_sym_COMMA, + anon_sym_RPAREN, + STATE(10223), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [392488] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5887), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(15722), 2, + anon_sym_COMMA, anon_sym_GT2, - ACTIONS(15024), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [341766] = 5, + STATE(10223), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [392518] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7693), 1, + ACTIONS(7279), 1, anon_sym___attribute, - STATE(4065), 1, + STATE(3492), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7695), 4, + ACTIONS(7281), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15026), 4, + ACTIONS(16017), 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, + [392540] = 8, 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, + ACTIONS(9758), 1, 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, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [341860] = 5, + ACTIONS(16021), 1, + anon_sym___attribute, + STATE(3487), 1, + sym_parameter_list, + STATE(9507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(16019), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [392568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7697), 1, + ACTIONS(7269), 1, anon_sym___attribute, - STATE(4065), 1, + STATE(10068), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7699), 4, + ACTIONS(7271), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15026), 4, + ACTIONS(16023), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [341882] = 7, + [392590] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, + ACTIONS(9792), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4779), 1, + STATE(5388), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10196), 5, + ACTIONS(9794), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [341908] = 7, + [392616] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(9800), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4779), 1, + STATE(5388), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10204), 5, + ACTIONS(9802), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [341934] = 7, + [392642] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(9804), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4779), 1, + STATE(5388), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10208), 5, + ACTIONS(9806), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [341960] = 2, + [392668] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(15028), 10, - anon_sym_LBRACK_LBRACK, + ACTIONS(4682), 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, - anon_sym_requires, - [341976] = 6, - 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(10184), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [342000] = 6, - 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(10196), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [342024] = 6, - 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(10188), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [342048] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(5227), 1, + ACTIONS(16025), 1, + anon_sym_EQ, + STATE(5197), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10192), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [342072] = 6, + STATE(12148), 1, + sym_initializer_list, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [392700] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5227), 1, + STATE(5724), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10200), 6, + ACTIONS(9782), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [342096] = 6, + [392724] = 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(10172), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(7253), 1, + anon_sym___attribute, + STATE(3492), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7255), 4, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_GT2, - anon_sym_requires, - [342120] = 6, + ACTIONS(16017), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [392746] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5227), 1, + STATE(5724), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10204), 6, + ACTIONS(9786), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [342144] = 6, + [392770] = 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(10208), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(7300), 1, + anon_sym___attribute, + STATE(3492), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7302), 4, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_GT2, + ACTIONS(16017), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [392792] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14244), 1, anon_sym_requires, - [342168] = 5, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9644), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8287), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [392816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7701), 1, + ACTIONS(7275), 1, anon_sym___attribute, - STATE(8978), 1, + STATE(3492), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7703), 4, + ACTIONS(7277), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15030), 4, + ACTIONS(16017), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342190] = 8, + [392838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(15034), 1, + ACTIONS(7304), 1, anon_sym___attribute, - STATE(3140), 1, - sym_parameter_list, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(15032), 3, + STATE(3492), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7306), 4, anon_sym_COMMA, - anon_sym_SEMI, anon_sym___attribute__, - [342218] = 5, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(16017), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [392860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, + ACTIONS(7308), 1, anon_sym___attribute, - STATE(8979), 1, + STATE(3492), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7709), 4, + ACTIONS(7310), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15036), 4, + ACTIONS(16017), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342240] = 5, + [392882] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(5689), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + anon_sym_or, + anon_sym_and, + [392904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(7316), 1, anon_sym___attribute, - STATE(4065), 1, + STATE(10099), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7677), 4, + ACTIONS(7318), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15026), 4, + ACTIONS(16027), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342262] = 10, + [392926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(15038), 1, - anon_sym_EQ, - STATE(4586), 1, + STATE(5724), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9630), 1, sym__function_declarator_seq, - STATE(10637), 1, - sym_initializer_list, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [342294] = 5, + ACTIONS(9790), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [392950] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7713), 1, + ACTIONS(7290), 1, anon_sym___attribute, - STATE(4065), 1, + STATE(10081), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7715), 4, + ACTIONS(7292), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15026), 4, + ACTIONS(16029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342316] = 6, + [392972] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15042), 1, + ACTIONS(16033), 1, anon_sym_LBRACK, - STATE(9522), 1, - sym_gnu_asm_input_operand, - STATE(10677), 1, + STATE(10738), 1, + sym_gnu_asm_output_operand, + STATE(12398), 1, sym_string_literal, - ACTIONS(15040), 2, + ACTIONS(16031), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(123), 5, @@ -733162,1572 +811817,1907 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [342340] = 6, + [392996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13205), 1, + ACTIONS(16035), 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, + [393012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7322), 1, + anon_sym___attribute, + STATE(10076), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7324), 4, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(16037), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [393034] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15421), 1, anon_sym_requires, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(9621), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(9269), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [342364] = 5, + [393058] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7681), 1, - anon_sym___attribute, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7683), 4, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5724), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9794), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(15026), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [342386] = 7, + anon_sym_requires, + [393082] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(9796), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4779), 1, + STATE(5388), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10200), 5, + ACTIONS(9798), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [342412] = 9, + [393108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5327), 1, + STATE(5724), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(14734), 2, + ACTIONS(9798), 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, + [393132] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7555), 1, - anon_sym___attribute, - STATE(8948), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7557), 4, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5724), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9802), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(15044), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [342464] = 5, + anon_sym_requires, + [393156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7783), 1, - anon_sym___attribute, - STATE(8952), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7785), 4, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(6781), 7, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym___attribute__, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(15046), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [342486] = 5, + anon_sym_or, + anon_sym_and, + [393178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7723), 1, - anon_sym___attribute, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7725), 4, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5724), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9806), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(15026), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [342508] = 5, + anon_sym_requires, + [393202] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15418), 1, + anon_sym_requires, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9338), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [393226] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16041), 1, + anon_sym_LBRACK, + STATE(10713), 1, + sym_gnu_asm_input_operand, + STATE(12365), 1, + sym_string_literal, + ACTIONS(16039), 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, + [393250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7727), 1, + ACTIONS(7296), 1, anon_sym___attribute, - STATE(4065), 1, + STATE(3492), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7729), 4, + ACTIONS(7298), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15026), 4, + ACTIONS(16017), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342530] = 6, + [393272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13149), 1, + ACTIONS(14060), 1, anon_sym_requires, - ACTIONS(10859), 2, + ACTIONS(11437), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(9391), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(9663), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7623), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [342554] = 6, + [393296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15050), 1, + ACTIONS(14003), 1, + anon_sym_requires, + ACTIONS(11437), 2, + anon_sym_final, + anon_sym_override, + STATE(9391), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(9611), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7474), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(9480), 1, - sym_gnu_asm_output_operand, - STATE(11261), 1, - sym_string_literal, - ACTIONS(15048), 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, - [342578] = 9, + [393320] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(5340), 1, + STATE(5197), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(14734), 2, - 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, + ACTIONS(15454), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [393347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10172), 5, + ACTIONS(9782), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [342648] = 10, + [393370] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(7939), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15056), 1, + ACTIONS(16043), 1, sym_identifier, - ACTIONS(15058), 1, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(16047), 1, anon_sym_inline, - STATE(827), 1, + STATE(424), 1, sym_declaration_list, - STATE(9113), 1, + STATE(10218), 1, sym_attribute_declaration, - STATE(10533), 1, + STATE(11412), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(12823), 1, sym__namespace_specifier, - [342679] = 10, + [393401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15062), 1, - sym_identifier, - STATE(424), 1, - sym_declaration_list, - STATE(9102), 1, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(5197), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + ACTIONS(15516), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(9424), 2, sym_attribute_declaration, - STATE(10570), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [342710] = 6, + aux_sym_attributed_declarator_repeat1, + [393428] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10208), 5, + ACTIONS(9802), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [342733] = 5, + [393451] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15064), 1, + ACTIONS(16049), 1, sym_identifier, - ACTIONS(15068), 1, + ACTIONS(16053), 1, sym_system_lib_string, - STATE(10634), 2, + STATE(13051), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(15066), 5, + ACTIONS(16051), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [342754] = 6, + [393472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10196), 5, + ACTIONS(9786), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [342777] = 10, + [393495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15070), 1, + ACTIONS(16055), 1, sym_identifier, - STATE(973), 1, - sym_declaration_list, - STATE(9148), 1, - sym_attribute_declaration, - STATE(10539), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [342808] = 10, + ACTIONS(16057), 1, + sym_system_lib_string, + STATE(11941), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(16051), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [393516] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7943), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(16047), 1, anon_sym_inline, - ACTIONS(15072), 1, + ACTIONS(16059), 1, sym_identifier, - STATE(409), 1, + STATE(874), 1, sym_declaration_list, - STATE(9116), 1, + STATE(10236), 1, sym_attribute_declaration, - STATE(10510), 1, + STATE(11669), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(12823), 1, sym__namespace_specifier, - [342839] = 6, + [393547] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10192), 5, + ACTIONS(9776), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [342862] = 10, + [393570] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - 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(9086), 1, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(5197), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + ACTIONS(15508), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(9424), 2, sym_attribute_declaration, - STATE(10335), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [342893] = 6, + aux_sym_attributed_declarator_repeat1, + [393597] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10200), 5, + ACTIONS(9798), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [342916] = 5, + [393620] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(7941), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16045), 1, + anon_sym_COLON_COLON, + ACTIONS(16047), 1, + anon_sym_inline, + ACTIONS(16061), 1, sym_identifier, - ACTIONS(15078), 1, - sym_system_lib_string, - STATE(10881), 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, - [342937] = 9, + STATE(899), 1, + sym_declaration_list, + STATE(10274), 1, + sym_attribute_declaration, + STATE(11807), 1, + sym_nested_namespace_specifier, + STATE(12823), 1, + sym__namespace_specifier, + [393651] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10554), 1, + ACTIONS(9947), 1, anon_sym_LBRACE, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15080), 1, + ACTIONS(16063), 1, anon_sym_COLON, - STATE(4868), 1, + STATE(4274), 1, sym_attribute_specifier, - STATE(9119), 1, + STATE(10268), 1, sym__enum_base_clause, - STATE(9324), 1, + STATE(10516), 1, sym_enumerator_list, - ACTIONS(8002), 2, + ACTIONS(7415), 2, anon_sym_COMMA, anon_sym_GT2, - [342966] = 5, + [393680] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(7943), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16045), 1, + anon_sym_COLON_COLON, + ACTIONS(16047), 1, + anon_sym_inline, + ACTIONS(16065), 1, sym_identifier, - ACTIONS(15084), 1, - sym_system_lib_string, - STATE(10869), 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, - [342987] = 6, + STATE(861), 1, + sym_declaration_list, + STATE(10253), 1, + sym_attribute_declaration, + STATE(11780), 1, + sym_nested_namespace_specifier, + STATE(12823), 1, + sym__namespace_specifier, + [393711] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5197), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10184), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(15450), 2, anon_sym_LBRACE, - [343010] = 10, + anon_sym_EQ, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [393738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16069), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(16067), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [393755] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(7923), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(16047), 1, anon_sym_inline, - ACTIONS(15086), 1, + ACTIONS(16071), 1, sym_identifier, - STATE(863), 1, + STATE(793), 1, sym_declaration_list, - STATE(9158), 1, + STATE(10215), 1, sym_attribute_declaration, - STATE(10232), 1, + STATE(11713), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(12823), 1, sym__namespace_specifier, - [343041] = 10, + [393786] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9806), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [393809] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16075), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(16073), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [393826] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(5197), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + ACTIONS(15480), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [393853] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(7923), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(16047), 1, anon_sym_inline, - ACTIONS(15088), 1, + ACTIONS(16077), 1, sym_identifier, - STATE(939), 1, + STATE(786), 1, sym_declaration_list, - STATE(9110), 1, + STATE(10234), 1, sym_attribute_declaration, - STATE(10428), 1, + STATE(11427), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(12823), 1, sym__namespace_specifier, - [343072] = 9, + [393884] = 6, 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(4912), 1, - sym_attribute_specifier, - STATE(9123), 1, - sym__enum_base_clause, - STATE(9335), 1, - sym_enumerator_list, - ACTIONS(8008), 2, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9794), 5, anon_sym_COMMA, - anon_sym_GT2, - [343101] = 5, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [393907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15090), 1, + ACTIONS(16079), 1, sym_identifier, - ACTIONS(15092), 1, + ACTIONS(16081), 1, sym_system_lib_string, - STATE(11393), 2, + STATE(11908), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(15066), 5, + ACTIONS(16051), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [343122] = 6, + [393928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10204), 5, + ACTIONS(9790), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [343145] = 3, + [393951] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(15096), 4, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16063), 1, + anon_sym_COLON, + STATE(4197), 1, + sym_attribute_specifier, + STATE(10241), 1, + sym__enum_base_clause, + STATE(10513), 1, + sym_enumerator_list, + ACTIONS(7392), 2, + anon_sym_COMMA, + anon_sym_GT2, + [393980] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(15094), 5, - anon_sym___based, + ACTIONS(16047), 1, + anon_sym_inline, + ACTIONS(16083), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [343162] = 10, + STATE(438), 1, + sym_declaration_list, + STATE(10212), 1, + sym_attribute_declaration, + STATE(11506), 1, + sym_nested_namespace_specifier, + STATE(12823), 1, + sym__namespace_specifier, + [394011] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(7941), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(16047), 1, anon_sym_inline, - ACTIONS(15098), 1, + ACTIONS(16085), 1, sym_identifier, - STATE(653), 1, + STATE(1004), 1, sym_declaration_list, - STATE(9159), 1, + STATE(10210), 1, sym_attribute_declaration, - STATE(10263), 1, + STATE(11664), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(12823), 1, sym__namespace_specifier, - [343193] = 6, + [394042] = 5, 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(10188), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [343216] = 5, + ACTIONS(16087), 1, + sym_identifier, + ACTIONS(16089), 1, + sym_system_lib_string, + STATE(12533), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(16051), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [394063] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(15100), 1, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16091), 1, sym_identifier, - ACTIONS(15105), 1, + STATE(3412), 1, + sym_template_type, + STATE(4163), 1, + sym_template_method, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11485), 1, + sym_operator_name, + STATE(11558), 1, + sym_splice_specifier, + [394091] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16095), 1, aux_sym_preproc_elif_token1, - STATE(9007), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(15103), 4, + ACTIONS(16097), 1, + anon_sym_EQ, + ACTIONS(16093), 6, + anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [343236] = 8, + sym_identifier, + [394109] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(11433), 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(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(16099), 1, + anon_sym_COLON, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343262] = 8, + [394135] = 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(15107), 1, - anon_sym_LBRACE, - STATE(10152), 1, - sym_trailing_return_type, - STATE(11324), 1, - sym_requires_clause, - STATE(7955), 2, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(16101), 1, + anon_sym_SEMI, + ACTIONS(16103), 1, + anon_sym_EQ, + STATE(3290), 1, + sym_template_argument_list, + STATE(10758), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343288] = 8, + [394161] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14669), 1, anon_sym_LBRACK, - ACTIONS(15109), 1, - anon_sym_SEMI, - STATE(4586), 1, + ACTIONS(15570), 1, + anon_sym_RPAREN, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9967), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9768), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343314] = 9, + [394187] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15111), 1, + ACTIONS(16105), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5556), 1, + STATE(4052), 1, sym__splice_specialization_specifier, - STATE(5906), 1, + STATE(4163), 1, sym_template_method, - STATE(10340), 1, + STATE(11459), 1, sym_splice_specifier, - STATE(10416), 1, + STATE(11518), 1, sym_operator_name, - [343342] = 8, + [394215] = 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(14646), 1, - anon_sym_RPAREN, - STATE(4586), 1, - sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(8678), 2, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(16107), 1, + anon_sym_SEMI, + ACTIONS(16109), 1, + anon_sym_EQ, + STATE(3290), 1, + sym_template_argument_list, + STATE(10599), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343368] = 8, + [394241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(15113), 1, - anon_sym_SEMI, - STATE(4586), 1, + STATE(5281), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9630), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [343394] = 8, + ACTIONS(9806), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [394263] = 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(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(16111), 1, anon_sym_SEMI, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, + ACTIONS(16113), 1, + anon_sym_EQ, + STATE(3290), 1, + sym_template_argument_list, + STATE(10770), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343420] = 5, - 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, + [394289] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15117), 1, + ACTIONS(16115), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(3798), 1, - sym_template_method, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - STATE(10412), 1, + STATE(6185), 1, + sym_template_method, + STATE(11541), 1, sym_operator_name, - [343468] = 9, + STATE(11558), 1, + sym_splice_specifier, + [394317] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15117), 1, + ACTIONS(16105), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(3798), 1, - sym_template_method, - STATE(3804), 1, + STATE(4052), 1, sym__splice_specialization_specifier, - STATE(10412), 1, - sym_operator_name, - STATE(10450), 1, + STATE(4163), 1, + sym_template_method, + STATE(11459), 1, sym_splice_specifier, - [343496] = 8, + STATE(11560), 1, + sym_operator_name, + [394345] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(16117), 1, + anon_sym___attribute__, + ACTIONS(16120), 1, + anon_sym___attribute, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(7400), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_GT2, + [394365] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9792), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(15119), 1, - anon_sym_SEMI, - STATE(4586), 1, + STATE(5887), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9630), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [343522] = 6, + ACTIONS(9794), 3, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_GT2, + [394389] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(9792), 1, + anon_sym___attribute, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4883), 1, + STATE(5954), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(15121), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [343544] = 8, + ACTIONS(9794), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [394413] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(15123), 1, + ACTIONS(16123), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343570] = 5, - 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, - anon_sym_operator, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15131), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5692), 1, - sym__splice_specialization_specifier, - STATE(5761), 1, - sym_template_method, - STATE(10434), 1, - sym_operator_name, - STATE(10464), 1, - sym_splice_specifier, - [343618] = 7, + [394439] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(9796), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5327), 1, + STATE(5887), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10204), 3, + ACTIONS(9798), 3, anon_sym_COMMA, anon_sym___attribute__, anon_sym_GT2, - [343642] = 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, - sym_template_method, - STATE(3804), 1, - sym__splice_specialization_specifier, - STATE(10254), 1, - sym_operator_name, - STATE(10450), 1, - sym_splice_specifier, - [343670] = 8, + [394463] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15133), 1, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(16125), 1, anon_sym_SEMI, - ACTIONS(15135), 1, - anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - STATE(9501), 2, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343696] = 8, + [394489] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(14669), 1, anon_sym_LBRACK, - ACTIONS(14656), 1, + ACTIONS(15597), 1, anon_sym_RPAREN, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8856), 1, + STATE(9967), 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(9768), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343748] = 7, + [394515] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(9796), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5340), 1, + STATE(5954), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10208), 3, + ACTIONS(9798), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - [343772] = 8, + [394539] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13803), 1, - anon_sym_LBRACK, - ACTIONS(15139), 1, - anon_sym_RPAREN, - STATE(4586), 1, - sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(8678), 2, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(16127), 1, + anon_sym_LBRACE, + STATE(11126), 1, + sym_trailing_return_type, + STATE(12382), 1, + sym_requires_clause, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343798] = 4, + [394565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15143), 1, + ACTIONS(16129), 1, + sym_identifier, + ACTIONS(16134), 1, aux_sym_preproc_elif_token1, - ACTIONS(15145), 1, - anon_sym_EQ, - ACTIONS(15141), 6, - anon_sym_COMMA, + STATE(10151), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(16132), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - sym_identifier, - [343816] = 8, + [394585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(15147), 1, + STATE(5281), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9794), 4, anon_sym_SEMI, - STATE(4586), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [394607] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14669), 1, + anon_sym_LBRACK, + ACTIONS(15556), 1, + anon_sym_RPAREN, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9967), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9768), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343842] = 9, + [394633] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(9456), 1, + ACTIONS(9804), 1, + anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5954), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9806), 3, 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, + anon_sym_RPAREN, + anon_sym___attribute__, + [394657] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14628), 1, - anon_sym_RPAREN, - STATE(4586), 1, + ACTIONS(16136), 1, + anon_sym_SEMI, + STATE(5215), 1, sym_parameter_list, - STATE(8856), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8678), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343896] = 8, + [394683] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(15156), 1, - anon_sym_COLON, - STATE(4586), 1, + ACTIONS(16138), 1, + anon_sym_SEMI, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343922] = 8, + [394709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(15158), 1, - anon_sym_RPAREN, - STATE(4586), 1, + STATE(5281), 1, sym_parameter_list, - STATE(8856), 1, + STATE(9630), 1, sym__function_declarator_seq, - STATE(8678), 2, + ACTIONS(9798), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [394731] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16140), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(6122), 1, + sym__splice_specialization_specifier, + STATE(6474), 1, + sym_template_method, + STATE(11457), 1, + sym_operator_name, + STATE(11511), 1, + sym_splice_specifier, + [394759] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(16127), 1, + anon_sym_LBRACE, + STATE(11126), 1, + sym_trailing_return_type, + STATE(12382), 1, + sym_requires_clause, + STATE(10171), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343948] = 8, + [394785] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - ACTIONS(15160), 1, + ACTIONS(16142), 1, anon_sym_SEMI, - ACTIONS(15162), 1, + ACTIONS(16144), 1, anon_sym_EQ, - STATE(3735), 1, + STATE(3290), 1, sym_template_argument_list, - STATE(9433), 2, + STATE(10761), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343974] = 7, + [394811] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5281), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9802), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [394833] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(9800), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5327), 1, + STATE(5887), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10200), 3, + ACTIONS(9802), 3, anon_sym_COMMA, anon_sym___attribute__, anon_sym_GT2, - [343998] = 8, + [394857] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 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, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344024] = 9, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16105), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(4163), 1, + sym_template_method, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + STATE(11560), 1, + sym_operator_name, + [394885] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15164), 1, + ACTIONS(16105), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5546), 1, + STATE(4163), 1, sym_template_method, - STATE(10211), 1, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11518), 1, sym_operator_name, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [344052] = 8, + [394913] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(16146), 1, + anon_sym_SEMI, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [394939] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16148), 1, + sym_identifier, + ACTIONS(16153), 1, + aux_sym_preproc_elif_token1, + STATE(10166), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(12384), 1, + sym_enumerator, + ACTIONS(16151), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [394961] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - ACTIONS(15166), 1, + ACTIONS(16155), 1, anon_sym_SEMI, - ACTIONS(15168), 1, + ACTIONS(16157), 1, anon_sym_EQ, - STATE(3735), 1, + STATE(3290), 1, sym_template_argument_list, - STATE(9543), 2, + STATE(10727), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344078] = 6, + [394987] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4883), 1, + ACTIONS(16159), 1, + anon_sym_SEMI, + STATE(5215), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10196), 4, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [395013] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(16161), 1, anon_sym_SEMI, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [395039] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16033), 1, + anon_sym_LBRACK, + STATE(11026), 1, + sym_gnu_asm_output_operand, + STATE(12398), 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, + [395059] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(16163), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [344100] = 6, + STATE(11054), 1, + sym_trailing_return_type, + STATE(12381), 1, + sym_requires_clause, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [395085] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16165), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(6137), 1, + sym__splice_specialization_specifier, + STATE(6423), 1, + sym_template_method, + STATE(11819), 1, + sym_operator_name, + STATE(11827), 1, + sym_splice_specifier, + [395113] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_operator, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16165), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(6423), 1, + sym_template_method, + STATE(11558), 1, + sym_splice_specifier, + STATE(11819), 1, + sym_operator_name, + [395141] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(14816), 1, + anon_sym_LBRACK, + ACTIONS(16167), 1, + anon_sym_SEMI, + STATE(5215), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [395167] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(4883), 1, + ACTIONS(16169), 1, + anon_sym_RPAREN, + STATE(5215), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10208), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [344122] = 8, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [395193] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(15170), 1, + ACTIONS(16171), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344148] = 8, + [395219] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14669), 1, anon_sym_LBRACK, - ACTIONS(15172), 1, + ACTIONS(15589), 1, anon_sym_RPAREN, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9967), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9768), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344174] = 8, + [395245] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14245), 1, + ACTIONS(15202), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(15204), 1, anon_sym_requires, - ACTIONS(15174), 1, + ACTIONS(15234), 1, anon_sym_LBRACE, - STATE(10081), 1, + STATE(11059), 1, sym_trailing_return_type, - STATE(10847), 1, + STATE(13052), 1, + sym_requires_clause, + STATE(10181), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [395271] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(15232), 1, + anon_sym_LBRACE, + STATE(10928), 1, + sym_trailing_return_type, + STATE(11969), 1, sym_requires_clause, - STATE(7955), 2, + STATE(10150), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344200] = 9, + [395297] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15176), 1, + ACTIONS(16115), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(3798), 1, - sym_template_method, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10296), 1, - sym_operator_name, - STATE(10302), 1, + STATE(6185), 1, + sym_template_method, + STATE(11438), 1, sym_splice_specifier, - [344228] = 8, + STATE(11541), 1, + sym_operator_name, + [395325] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(8597), 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, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(16173), 1, + anon_sym_LBRACE, + STATE(10923), 1, + sym_trailing_return_type, + STATE(12645), 1, + sym_requires_clause, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344254] = 8, + [395351] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(15180), 1, + ACTIONS(16175), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344280] = 8, + [395377] = 7, 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(15182), 1, - anon_sym_SEMI, - ACTIONS(15184), 1, - anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - STATE(9514), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344306] = 8, + ACTIONS(9800), 1, + anon_sym___attribute, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5954), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9802), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [395401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(15186), 1, + ACTIONS(16177), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344332] = 8, + [395427] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - ACTIONS(15188), 1, + ACTIONS(16179), 1, anon_sym_SEMI, - ACTIONS(15190), 1, + ACTIONS(16181), 1, anon_sym_EQ, - STATE(3735), 1, + STATE(3290), 1, sym_template_argument_list, - STATE(9584), 2, + STATE(10776), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344358] = 7, + [395453] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5327), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10196), 3, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(9904), 1, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [344382] = 7, + ACTIONS(16183), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16185), 1, + anon_sym_RBRACK, + ACTIONS(16188), 1, + anon_sym_EQ, + STATE(3290), 1, + sym_template_argument_list, + STATE(11193), 1, + aux_sym_structured_binding_declarator_repeat1, + [395481] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - STATE(5340), 1, + ACTIONS(16190), 1, + anon_sym_SEMI, + STATE(5215), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9627), 1, sym__function_declarator_seq, - ACTIONS(10196), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [344406] = 8, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [395507] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(14650), 1, - anon_sym_RPAREN, - STATE(4586), 1, + ACTIONS(16192), 1, + anon_sym_SEMI, + STATE(5215), 1, sym_parameter_list, - STATE(8856), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8678), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344432] = 8, + [395533] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(16194), 1, + anon_sym_LBRACE, + STATE(11124), 1, + sym_trailing_return_type, + STATE(12333), 1, + sym_requires_clause, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [395559] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(15192), 1, + ACTIONS(16196), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344458] = 8, + [395585] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8597), 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(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(15234), 1, + anon_sym_LBRACE, + STATE(11059), 1, + sym_trailing_return_type, + STATE(13052), 1, + sym_requires_clause, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344484] = 9, + [395611] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2286), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15131), 1, + ACTIONS(16140), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(5761), 1, + STATE(6474), 1, sym_template_method, - STATE(10302), 1, - sym_splice_specifier, - STATE(10434), 1, + STATE(11457), 1, sym_operator_name, - [344512] = 9, + STATE(11558), 1, + sym_splice_specifier, + [395639] = 8, 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, - sym_operator_name, - STATE(10419), 1, - sym_splice_specifier, - [344540] = 5, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(15232), 1, + anon_sym_LBRACE, + STATE(10928), 1, + sym_trailing_return_type, + STATE(11969), 1, + sym_requires_clause, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [395665] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15042), 1, + ACTIONS(16041), 1, anon_sym_LBRACK, - STATE(9709), 1, + STATE(11081), 1, sym_gnu_asm_input_operand, - STATE(10677), 1, + STATE(12365), 1, sym_string_literal, ACTIONS(123), 5, anon_sym_L_DQUOTE, @@ -734735,28722 +813725,30961 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [344560] = 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(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(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(10200), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [344610] = 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(15198), 1, - anon_sym_LBRACE, - STATE(9693), 1, - sym_trailing_return_type, - STATE(10701), 1, - sym_requires_clause, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344636] = 7, + [395685] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(9804), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5327), 1, + STATE(5887), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10208), 3, + ACTIONS(9806), 3, anon_sym_COMMA, anon_sym___attribute__, anon_sym_GT2, - [344660] = 8, + [395709] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14243), 1, - anon_sym_LBRACE, - ACTIONS(14245), 1, + ACTIONS(15202), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(15204), 1, anon_sym_requires, - STATE(9835), 1, + ACTIONS(16173), 1, + anon_sym_LBRACE, + STATE(10923), 1, sym_trailing_return_type, - STATE(11587), 1, + STATE(12645), 1, sym_requires_clause, - STATE(9062), 2, + STATE(10189), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344686] = 8, + [395735] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(15200), 1, + ACTIONS(16198), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344712] = 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(9009), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344738] = 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(15198), 1, - anon_sym_LBRACE, - STATE(9693), 1, - sym_trailing_return_type, - STATE(10701), 1, - sym_requires_clause, - STATE(9045), 2, + STATE(9424), 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, + [395761] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - ACTIONS(15202), 1, + ACTIONS(16200), 1, anon_sym_SEMI, - ACTIONS(15204), 1, + ACTIONS(16202), 1, anon_sym_EQ, - STATE(3735), 1, + STATE(3290), 1, sym_template_argument_list, - STATE(9548), 2, + STATE(10772), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344814] = 8, + [395787] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(15206), 1, + ACTIONS(16204), 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, - [344840] = 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(15208), 1, - anon_sym_RPAREN, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344866] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15210), 1, - sym_identifier, - ACTIONS(15215), 1, - aux_sym_preproc_elif_token1, - STATE(9072), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - ACTIONS(15213), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [344888] = 6, + [395813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(4883), 1, + STATE(5281), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10204), 4, + ACTIONS(16206), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [344910] = 8, + [395835] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14669), 1, anon_sym_LBRACK, - ACTIONS(15217), 1, - anon_sym_SEMI, - STATE(4586), 1, + ACTIONS(16208), 1, + anon_sym_RPAREN, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9967), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9768), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344936] = 8, + [395861] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14669), 1, anon_sym_LBRACK, - ACTIONS(15219), 1, - anon_sym_SEMI, - STATE(4586), 1, + ACTIONS(16210), 1, + anon_sym_RPAREN, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9967), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344962] = 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(14381), 1, - anon_sym_LBRACE, - STATE(10012), 1, - sym_trailing_return_type, - STATE(11133), 1, - sym_requires_clause, - STATE(9027), 2, + STATE(9768), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344988] = 8, + [395887] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14816), 1, anon_sym_LBRACK, - ACTIONS(15221), 1, - anon_sym_SEMI, - STATE(4586), 1, + ACTIONS(16212), 1, + anon_sym_RPAREN, + STATE(5215), 1, sym_parameter_list, - STATE(8572), 1, + STATE(9627), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(9424), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345014] = 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, - sym_template_method, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10254), 1, - sym_operator_name, - STATE(10302), 1, - sym_splice_specifier, - [345042] = 8, + [395913] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(14669), 1, anon_sym_LBRACK, - ACTIONS(14642), 1, + ACTIONS(15574), 1, anon_sym_RPAREN, - STATE(4586), 1, + STATE(5215), 1, sym_parameter_list, - STATE(8856), 1, + STATE(9967), 1, sym__function_declarator_seq, - STATE(8678), 2, + STATE(9768), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345068] = 7, + [395939] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16045), 1, + anon_sym_COLON_COLON, + ACTIONS(16047), 1, + anon_sym_inline, + ACTIONS(16214), 1, + sym_identifier, + STATE(12823), 1, + sym__namespace_specifier, + STATE(12150), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [395962] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16216), 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, - anon_sym___attribute__, - [345092] = 7, + STATE(10257), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(16218), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [395979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(16220), 1, anon_sym_LPAREN2, - ACTIONS(15223), 1, - anon_sym_RPAREN, - STATE(3140), 1, - sym_parameter_list, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345115] = 7, + STATE(10257), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(16218), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [395996] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9758), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(15225), 1, + ACTIONS(16222), 1, anon_sym_RPAREN, - STATE(3140), 1, + STATE(3487), 1, sym_parameter_list, - STATE(8473), 2, + STATE(9507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345138] = 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(10172), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [345159] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9333), 1, - anon_sym___attribute, - ACTIONS(15227), 1, - anon_sym_EQ, - ACTIONS(9335), 5, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [345176] = 5, + [396019] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(15229), 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, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(16224), 1, + sym_identifier, + STATE(1133), 1, + sym_template_parameter_list, + STATE(3412), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [396044] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(7941), 1, anon_sym_LBRACE, - ACTIONS(15058), 1, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(16047), 1, anon_sym_inline, - ACTIONS(15237), 1, + ACTIONS(16226), 1, sym_identifier, - STATE(672), 1, + STATE(1037), 1, sym_declaration_list, - STATE(10448), 1, + STATE(11583), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(12823), 1, sym__namespace_specifier, - [345220] = 7, + [396069] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(5655), 1, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(3709), 1, - sym_template_argument_list, - STATE(9741), 2, - sym_argument_list, - sym_initializer_list, - [345243] = 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(15239), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [345262] = 4, + ACTIONS(16047), 1, + anon_sym_inline, + ACTIONS(16228), 1, + sym_identifier, + STATE(12823), 1, + sym__namespace_specifier, + STATE(12975), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [396092] = 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(7939), 1, + anon_sym_LBRACE, + ACTIONS(16045), 1, + anon_sym_COLON_COLON, + ACTIONS(16047), 1, + anon_sym_inline, + ACTIONS(16230), 1, sym_identifier, - [345279] = 6, + STATE(470), 1, + sym_declaration_list, + STATE(11613), 1, + sym_nested_namespace_specifier, + STATE(12823), 1, + sym__namespace_specifier, + [396117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6491), 1, - anon_sym___attribute, - ACTIONS(6493), 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, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345300] = 6, + ACTIONS(16232), 1, + anon_sym_LPAREN2, + STATE(10221), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(16218), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [396134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5222), 1, + STATE(5717), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10188), 3, + ACTIONS(9790), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [345321] = 7, + [396155] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(7923), 1, + anon_sym_LBRACE, + ACTIONS(16045), 1, + anon_sym_COLON_COLON, + ACTIONS(16047), 1, + anon_sym_inline, + ACTIONS(16234), 1, + sym_identifier, + STATE(676), 1, + sym_declaration_list, + STATE(11475), 1, + sym_nested_namespace_specifier, + STATE(12823), 1, + sym__namespace_specifier, + [396180] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16236), 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, - [345344] = 8, + STATE(10245), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(16218), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [396197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(15247), 1, - sym_identifier, - STATE(1099), 1, - sym_template_parameter_list, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [345369] = 7, + ACTIONS(16238), 1, + anon_sym_LPAREN2, + STATE(10233), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(16218), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [396214] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15058), 1, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(16047), 1, anon_sym_inline, - ACTIONS(15249), 1, + ACTIONS(16083), 1, sym_identifier, - STATE(11515), 1, - sym__namespace_specifier, - STATE(11298), 2, + STATE(438), 1, + sym_declaration_list, + STATE(11506), 1, sym_nested_namespace_specifier, - sym_splice_specifier, - [345392] = 6, + STATE(12823), 1, + sym__namespace_specifier, + [396239] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5222), 1, + STATE(5717), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10192), 3, + ACTIONS(9782), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [345413] = 6, - 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(6154), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6408), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345434] = 8, + [396260] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, + ACTIONS(6835), 1, anon_sym_LT, - ACTIONS(15247), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(1100), 1, + STATE(1134), 1, sym_template_parameter_list, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [345459] = 6, + [396285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(16240), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5222), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10196), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [345480] = 8, + STATE(10257), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(16218), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [396302] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(15247), 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, - sym_splice_specifier, - [345505] = 8, + ACTIONS(6910), 1, + anon_sym___attribute__, + ACTIONS(6912), 1, + anon_sym___attribute, + ACTIONS(6914), 1, + anon_sym_LBRACK_LBRACK, + STATE(4578), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5058), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [396323] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(15247), 1, - sym_identifier, - STATE(1096), 1, - sym_template_parameter_list, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [345530] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(16242), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [396342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(9939), 1, + anon_sym___attribute, + ACTIONS(16244), 1, + anon_sym_EQ, + ACTIONS(9941), 5, + anon_sym_COMMA, 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(10200), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_GT2, - [345551] = 8, + [396359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, - anon_sym_LBRACE, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15251), 1, - sym_identifier, - STATE(449), 1, - sym_declaration_list, - STATE(10330), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [345576] = 7, + ACTIONS(6863), 1, + anon_sym___attribute__, + ACTIONS(6865), 1, + anon_sym___attribute, + ACTIONS(6867), 1, + anon_sym_LBRACK_LBRACK, + STATE(4534), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4950), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [396380] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9758), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(15253), 1, + ACTIONS(16246), 1, anon_sym_RPAREN, - STATE(3140), 1, + STATE(3487), 1, sym_parameter_list, - STATE(8473), 2, + STATE(9507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345599] = 7, + [396403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(8164), 1, + anon_sym___attribute__, + ACTIONS(8166), 1, + anon_sym___attribute, + ACTIONS(8168), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(15255), 1, - anon_sym_RPAREN, - STATE(3140), 1, - sym_parameter_list, - STATE(8473), 2, + STATE(6917), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7249), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345622] = 6, + [396424] = 5, 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, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(16242), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_GT2, - [345643] = 6, + [396443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5222), 1, + STATE(5717), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10208), 3, + ACTIONS(9798), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [345664] = 7, + [396464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(15257), 1, + ACTIONS(9939), 1, + anon_sym___attribute, + ACTIONS(16248), 1, + anon_sym_EQ, + ACTIONS(9941), 5, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3140), 1, - sym_parameter_list, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345687] = 8, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [396481] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, + ACTIONS(6835), 1, anon_sym_LT, - ACTIONS(15247), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(1098), 1, + STATE(1136), 1, sym_template_parameter_list, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [345712] = 7, + [396506] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(16224), 1, + sym_identifier, + STATE(1135), 1, + sym_template_parameter_list, + STATE(3412), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [396531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16250), 1, anon_sym_LPAREN2, - ACTIONS(15259), 1, - anon_sym_RPAREN, - STATE(3140), 1, - sym_parameter_list, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345735] = 8, + STATE(10257), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(16218), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [396548] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(7923), 1, anon_sym_LBRACE, - ACTIONS(15058), 1, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(16047), 1, anon_sym_inline, - ACTIONS(15261), 1, + ACTIONS(16071), 1, sym_identifier, - STATE(868), 1, + STATE(793), 1, sym_declaration_list, - STATE(10599), 1, + STATE(11713), 1, sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [345760] = 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(15263), 1, - sym_identifier, - STATE(11515), 1, + STATE(12823), 1, sym__namespace_specifier, - STATE(10961), 2, - sym_nested_namespace_specifier, - sym_splice_specifier, - [345783] = 6, + [396573] = 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, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5717), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9806), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [396594] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(7943), 1, anon_sym_LBRACE, - ACTIONS(15058), 1, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(16047), 1, anon_sym_inline, - ACTIONS(15265), 1, + ACTIONS(16252), 1, sym_identifier, - STATE(830), 1, + STATE(829), 1, sym_declaration_list, - STATE(10229), 1, + STATE(11813), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(12823), 1, sym__namespace_specifier, - [345829] = 7, + [396619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(15267), 1, - anon_sym_RPAREN, - STATE(3140), 1, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5717), 1, sym_parameter_list, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345852] = 6, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9794), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [396640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, + ACTIONS(6997), 1, anon_sym___attribute__, - ACTIONS(6766), 1, + ACTIONS(6999), 1, anon_sym___attribute, - ACTIONS(6768), 1, + ACTIONS(7001), 1, anon_sym_LBRACK_LBRACK, - STATE(4371), 2, + STATE(4599), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5004), 2, + STATE(5070), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345873] = 8, + [396661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, - anon_sym_LBRACE, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15062), 1, - sym_identifier, - STATE(424), 1, - sym_declaration_list, - STATE(10570), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [345898] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15269), 1, + ACTIONS(16254), 1, anon_sym_LPAREN2, - STATE(9118), 2, + STATE(10206), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16218), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345915] = 4, + [396678] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15273), 1, - anon_sym_LPAREN2, - STATE(9157), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16045), 1, + anon_sym_COLON_COLON, + ACTIONS(16047), 1, anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [345932] = 7, + ACTIONS(16256), 1, + sym_identifier, + STATE(12823), 1, + sym__namespace_specifier, + STATE(12435), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [396701] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10554), 1, + ACTIONS(9947), 1, anon_sym_LBRACE, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4799), 1, + STATE(4284), 1, sym_attribute_specifier, - STATE(9337), 1, + STATE(10517), 1, sym_enumerator_list, - ACTIONS(7389), 2, + ACTIONS(7423), 2, anon_sym_COMMA, anon_sym_GT2, - [345955] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9333), 1, - anon_sym___attribute, - ACTIONS(15275), 1, - anon_sym_EQ, - ACTIONS(9335), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - [345972] = 7, + [396724] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9758), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(15277), 1, + ACTIONS(16258), 1, anon_sym_RPAREN, - STATE(3140), 1, + STATE(3487), 1, sym_parameter_list, - STATE(8473), 2, + STATE(9507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345995] = 7, + [396747] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(16224), 1, + sym_identifier, + STATE(1131), 1, + sym_template_parameter_list, + STATE(3412), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [396772] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9758), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(15279), 1, + ACTIONS(16260), 1, anon_sym_RPAREN, - STATE(3140), 1, + STATE(3487), 1, sym_parameter_list, - STATE(8473), 2, + STATE(9507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [346018] = 7, + [396795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(12119), 1, - anon_sym___attribute__, - STATE(5003), 1, - sym_attribute_specifier, - STATE(9341), 1, - sym_enumerator_list, - ACTIONS(7383), 2, - anon_sym_COMMA, - anon_sym_GT2, - [346041] = 6, + ACTIONS(16262), 1, + anon_sym_LPAREN2, + STATE(10257), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(16218), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [396812] = 4, 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, + STATE(10081), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7361), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(16029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [396829] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15281), 1, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(16224), 1, sym_identifier, - STATE(11515), 1, - sym__namespace_specifier, - STATE(11659), 2, - sym_nested_namespace_specifier, + STATE(3412), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(10443), 1, + sym_template_parameter_list, + STATE(11558), 1, sym_splice_specifier, - [346085] = 4, + [396854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15283), 1, + ACTIONS(16264), 1, anon_sym_LPAREN2, - STATE(9149), 2, + STATE(10257), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16218), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346102] = 8, + [396871] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 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(16183), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16266), 1, + anon_sym_EQ, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(9982), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [396894] = 6, 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(8199), 1, + anon_sym___attribute__, + ACTIONS(8201), 1, + anon_sym___attribute, + ACTIONS(8203), 1, + anon_sym_LBRACK_LBRACK, + STATE(6866), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7234), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [396915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 1, - anon_sym___attribute__, - ACTIONS(6648), 1, + ACTIONS(7590), 1, anon_sym___attribute, - ACTIONS(6650), 1, + ACTIONS(7592), 1, anon_sym_LBRACK_LBRACK, - STATE(4061), 2, + ACTIONS(7653), 1, + anon_sym___attribute__, + STATE(4992), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4488), 2, + STATE(5221), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [346171] = 7, + [396936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + STATE(5717), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9786), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [396957] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7943), 1, + anon_sym_LBRACE, + ACTIONS(16045), 1, + anon_sym_COLON_COLON, + ACTIONS(16047), 1, + anon_sym_inline, + ACTIONS(16059), 1, + sym_identifier, + STATE(874), 1, + sym_declaration_list, + STATE(11669), 1, + sym_nested_namespace_specifier, + STATE(12823), 1, + sym__namespace_specifier, + [396982] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(13426), 1, anon_sym_LPAREN2, - ACTIONS(15287), 1, - anon_sym_RPAREN, - STATE(3140), 1, + STATE(4031), 1, + sym_template_argument_list, + STATE(11349), 2, + sym_argument_list, + sym_initializer_list, + [397005] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5717), 1, sym_parameter_list, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [346194] = 4, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9776), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [397026] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16268), 1, + anon_sym_LBRACK, + ACTIONS(16271), 1, + anon_sym_EQ, + ACTIONS(16273), 1, + anon_sym_DOT, + STATE(10256), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [397045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15289), 1, + ACTIONS(16276), 1, anon_sym_LPAREN2, - STATE(9132), 2, + STATE(10257), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16278), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346211] = 4, + [397062] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6835), 1, + anon_sym_LT, + ACTIONS(16224), 1, + sym_identifier, + STATE(1137), 1, + sym_template_parameter_list, + STATE(3412), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [397087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15291), 1, + ACTIONS(16281), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(10257), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16218), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346228] = 6, + [397104] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, anon_sym_LBRACK_LBRACK, - STATE(6165), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6395), 2, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(16283), 1, + anon_sym_RPAREN, + STATE(3487), 1, + sym_parameter_list, + STATE(9507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [346249] = 6, + [397127] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7176), 1, - anon_sym___attribute__, - ACTIONS(7178), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - STATE(4483), 2, + ACTIONS(12826), 1, + anon_sym___attribute__, + STATE(10142), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4648), 2, + ACTIONS(16285), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [397146] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(16287), 1, + anon_sym_RPAREN, + STATE(3487), 1, + sym_parameter_list, + STATE(9507), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [346270] = 4, + [397169] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15293), 1, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - STATE(9136), 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__, - [346287] = 4, + ACTIONS(16289), 1, + anon_sym_RPAREN, + STATE(3487), 1, + sym_parameter_list, + STATE(9507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [397192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15295), 1, + ACTIONS(16291), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(10266), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16218), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346304] = 4, + [397209] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(16293), 1, + anon_sym_RPAREN, + STATE(3487), 1, + sym_parameter_list, + STATE(9507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [397232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15297), 1, + ACTIONS(16295), 1, anon_sym_LPAREN2, - STATE(9138), 2, + STATE(10257), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16218), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346321] = 4, + [397249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(5717), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9802), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [397270] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(9947), 1, + anon_sym_LBRACE, + ACTIONS(12826), 1, + anon_sym___attribute__, + STATE(4247), 1, + sym_attribute_specifier, + STATE(10522), 1, + sym_enumerator_list, + ACTIONS(7419), 2, + anon_sym_COMMA, + anon_sym_GT2, + [397293] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(16183), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16188), 1, + anon_sym_EQ, + STATE(3290), 1, + sym_template_argument_list, + ACTIONS(9968), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [397316] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15299), 1, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 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__, - [346338] = 4, + ACTIONS(14816), 1, + anon_sym_LBRACK, + STATE(5197), 1, + sym_parameter_list, + STATE(9627), 1, + sym__function_declarator_seq, + STATE(9424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [397339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15301), 1, + ACTIONS(16297), 1, anon_sym_LPAREN2, - STATE(9140), 2, + STATE(10273), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16218), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346355] = 4, + [397356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15303), 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__, - [346372] = 4, + ACTIONS(16301), 1, + anon_sym_COMMA, + ACTIONS(16303), 1, + aux_sym_preproc_elif_token1, + ACTIONS(16299), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [397373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15305), 1, + ACTIONS(16305), 1, anon_sym_LPAREN2, - STATE(9142), 2, + STATE(10257), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16218), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346389] = 4, + [397390] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(15307), 1, - anon_sym_LPAREN2, - STATE(9157), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(7941), 1, + anon_sym_LBRACE, + ACTIONS(16045), 1, + anon_sym_COLON_COLON, + ACTIONS(16047), 1, anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [346406] = 4, + ACTIONS(16085), 1, + sym_identifier, + STATE(1004), 1, + sym_declaration_list, + STATE(11664), 1, + sym_nested_namespace_specifier, + STATE(12823), 1, + sym__namespace_specifier, + [397415] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15309), 1, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 1, anon_sym_LPAREN2, - STATE(9145), 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__, - [346423] = 8, + ACTIONS(16307), 1, + anon_sym_RPAREN, + STATE(3487), 1, + sym_parameter_list, + STATE(9507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [397438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16309), 1, + anon_sym_LBRACK, + ACTIONS(16311), 1, + anon_sym_EQ, + ACTIONS(16313), 1, + anon_sym_DOT, + STATE(10256), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [397457] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, + ACTIONS(6835), 1, anon_sym_LT, - ACTIONS(15247), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(1094), 1, + STATE(1132), 1, sym_template_parameter_list, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [346448] = 4, + [397482] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15311), 1, + ACTIONS(11216), 1, + anon_sym___attribute__, + ACTIONS(11218), 1, + anon_sym___attribute, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + STATE(8931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(9006), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [397503] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16315), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(10248), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16218), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346465] = 4, + [397520] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7077), 1, + anon_sym___attribute__, + ACTIONS(7079), 1, + anon_sym___attribute, + ACTIONS(7081), 1, + anon_sym_LBRACK_LBRACK, + STATE(4895), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5406), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [397541] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15313), 1, + ACTIONS(16317), 1, anon_sym_LPAREN2, - STATE(9147), 2, + STATE(10207), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16218), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346482] = 4, + [397558] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6409), 1, + anon_sym___attribute, + ACTIONS(6411), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16319), 1, + anon_sym___attribute__, + STATE(3361), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(3497), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [397579] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15315), 1, + ACTIONS(9758), 1, + anon_sym_LBRACK, + ACTIONS(11433), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14661), 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__, - [346499] = 8, + ACTIONS(16321), 1, + anon_sym_RPAREN, + STATE(3487), 1, + sym_parameter_list, + STATE(9507), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [397602] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, - anon_sym_LBRACE, - ACTIONS(15058), 1, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16045), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(16047), 1, anon_sym_inline, - ACTIONS(15088), 1, + ACTIONS(16323), 1, sym_identifier, - STATE(939), 1, - sym_declaration_list, - STATE(10428), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(12823), 1, sym__namespace_specifier, - [346524] = 4, + STATE(12026), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [397625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15317), 1, + ACTIONS(16325), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(10259), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(16218), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346541] = 5, + [397642] = 7, 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(12798), 1, 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, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(9021), 2, + ACTIONS(16327), 1, + anon_sym_SEMI, + STATE(10317), 1, + aux_sym_field_declaration_repeat1, + STATE(12118), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(15319), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [346579] = 5, + [397664] = 7, 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, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16329), 1, + sym_identifier, + ACTIONS(16331), 1, + anon_sym_for, + STATE(3412), 1, + sym_template_type, + STATE(6455), 1, + sym__splice_specialization_specifier, + STATE(11688), 1, + sym_splice_specifier, + [397686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6719), 1, - anon_sym___attribute__, - ACTIONS(6721), 1, - anon_sym___attribute, - ACTIONS(6723), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - STATE(4178), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4563), 2, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(16333), 1, + anon_sym_LBRACE, + STATE(11985), 1, + sym_trailing_return_type, + STATE(8893), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [346619] = 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(10184), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [346640] = 7, + [397706] = 6, 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(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(16333), 1, + anon_sym_LBRACE, + STATE(11985), 1, + sym_trailing_return_type, + STATE(10322), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [397726] = 6, 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, + ACTIONS(11164), 1, + anon_sym_LBRACE, + ACTIONS(14685), 1, + anon_sym_try, + ACTIONS(16335), 1, + anon_sym_SEMI, + ACTIONS(16337), 1, anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(9544), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [346686] = 4, + STATE(3621), 2, + sym_compound_statement, + sym_try_statement, + [397746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15329), 1, - anon_sym_LPAREN2, - STATE(9157), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15331), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [346703] = 8, + ACTIONS(16007), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(16339), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [397760] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, - anon_sym_LBRACE, - ACTIONS(15056), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16341), 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, + STATE(3412), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(9642), 1, + sym_template_function, + STATE(11558), 1, + sym_splice_specifier, + [397782] = 5, 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(9764), 1, + anon_sym_LT, + ACTIONS(10094), 1, + anon_sym_LBRACK, + STATE(6782), 1, + sym_template_argument_list, + ACTIONS(10096), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [397800] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(15247), 1, + ACTIONS(16343), 1, sym_identifier, - STATE(1097), 1, - sym_template_parameter_list, - STATE(3739), 1, + STATE(3122), 1, sym_template_type, - STATE(5426), 1, + STATE(6003), 1, + sym_template_function, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [346778] = 4, + [397822] = 6, ACTIONS(3), 1, sym_comment, - STATE(8968), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7225), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(15024), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [346795] = 7, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(14826), 1, + anon_sym_try, + ACTIONS(16345), 1, + anon_sym_SEMI, + ACTIONS(16347), 1, + anon_sym_EQ, + STATE(811), 2, + sym_compound_statement, + sym_try_statement, + [397842] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15334), 1, + ACTIONS(16349), 1, sym_identifier, - ACTIONS(15336), 1, - anon_sym_for, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5903), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10214), 1, + STATE(6249), 1, + sym_template_function, + STATE(11558), 1, sym_splice_specifier, - [346817] = 7, + [397864] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15338), 1, + ACTIONS(16351), 1, sym_identifier, - STATE(3498), 1, + STATE(3412), 1, sym_template_type, - STATE(3931), 1, + STATE(4389), 1, sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [346839] = 3, + [397886] = 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(3), 1, - sym_comment, - ACTIONS(960), 1, + ACTIONS(11164), 1, anon_sym_LBRACE, - ACTIONS(13995), 1, + ACTIONS(14685), 1, anon_sym_try, - ACTIONS(15340), 1, + ACTIONS(16353), 1, anon_sym_SEMI, - ACTIONS(15342), 1, + ACTIONS(16355), 1, anon_sym_EQ, - STATE(825), 2, + STATE(3641), 2, sym_compound_statement, sym_try_statement, - [346873] = 7, + [397906] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15344), 1, + ACTIONS(16357), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5311), 1, + STATE(6003), 1, sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [346895] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10572), 1, - anon_sym_LBRACE, - ACTIONS(13819), 1, - anon_sym_try, - ACTIONS(15346), 1, - anon_sym_SEMI, - ACTIONS(15348), 1, - anon_sym_EQ, - STATE(3468), 2, - sym_compound_statement, - sym_try_statement, - [346915] = 3, + [397928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15350), 2, + ACTIONS(16359), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(15352), 4, + ACTIONS(16361), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [346929] = 3, + [397942] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16363), 1, + anon_sym_SEMI, + STATE(10312), 1, + aux_sym_field_declaration_repeat1, + STATE(12083), 1, + sym_attribute_specifier, + [397964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15012), 2, + ACTIONS(16365), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(15354), 4, + ACTIONS(16367), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [346943] = 7, + [397978] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16369), 1, + anon_sym_SEMI, + STATE(10313), 1, + aux_sym_field_declaration_repeat1, + STATE(12455), 1, + sym_attribute_specifier, + [398000] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16371), 1, + anon_sym_SEMI, + STATE(10492), 1, + aux_sym_field_declaration_repeat1, + STATE(12468), 1, + sym_attribute_specifier, + [398022] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15356), 1, + ACTIONS(16373), 1, sym_identifier, - STATE(2086), 1, + STATE(2592), 1, sym_template_type, - STATE(3931), 1, - sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(6249), 1, + sym_template_function, + STATE(11558), 1, sym_splice_specifier, - [346965] = 7, + [398044] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15358), 1, + ACTIONS(16375), 1, sym_identifier, - STATE(3739), 1, + STATE(3122), 1, sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(6249), 1, + sym_template_function, + STATE(11558), 1, sym_splice_specifier, - [346987] = 3, + [398066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15360), 2, + ACTIONS(16377), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(15362), 4, + ACTIONS(16379), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [347001] = 3, + [398080] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16381), 1, + sym_identifier, + STATE(2249), 1, + sym_template_type, + STATE(4191), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15364), 2, + ACTIONS(16383), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(15366), 4, + ACTIONS(16385), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [347015] = 7, + [398116] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16387), 1, + sym_identifier, + STATE(3122), 1, + sym_template_type, + STATE(4191), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398138] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16389), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(4389), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398160] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15368), 1, + ACTIONS(16391), 1, anon_sym_SEMI, - STATE(9194), 1, + STATE(10492), 1, aux_sym_field_declaration_repeat1, - STATE(10873), 1, + STATE(12176), 1, sym_attribute_specifier, - [347037] = 3, + [398182] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15370), 2, - anon_sym_RBRACE, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16393), 1, + anon_sym_SEMI, + STATE(10492), 1, + aux_sym_field_declaration_repeat1, + STATE(12185), 1, + sym_attribute_specifier, + [398204] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16395), 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, + STATE(3412), 1, + sym_template_type, + STATE(4191), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398226] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16397), 1, + sym_identifier, + STATE(4080), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(6399), 1, + sym_template_function, + STATE(11558), 1, + sym_splice_specifier, + [398248] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15374), 1, + ACTIONS(16399), 1, anon_sym_SEMI, - STATE(9209), 1, + STATE(10492), 1, aux_sym_field_declaration_repeat1, - STATE(10774), 1, + STATE(12453), 1, sym_attribute_specifier, - [347073] = 7, + [398270] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15376), 1, + ACTIONS(16401), 1, anon_sym_SEMI, - STATE(9182), 1, + STATE(10492), 1, aux_sym_field_declaration_repeat1, - STATE(11010), 1, + STATE(12496), 1, sym_attribute_specifier, - [347095] = 3, + [398292] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15378), 2, - anon_sym_RBRACE, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16403), 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(3412), 1, + sym_template_type, + STATE(4389), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(14955), 1, + anon_sym_try, + ACTIONS(16405), 1, + anon_sym_SEMI, + ACTIONS(16407), 1, + anon_sym_EQ, + STATE(430), 2, + sym_compound_statement, + sym_try_statement, + [398334] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15382), 1, + ACTIONS(16409), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(5558), 1, + STATE(6249), 1, + sym_template_function, + STATE(11558), 1, + sym_splice_specifier, + [398356] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16411), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(4389), 1, sym_template_function, - STATE(10302), 1, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, sym_splice_specifier, - [347131] = 7, + [398378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(16413), 1, + anon_sym_LBRACE, + STATE(12848), 1, + sym_trailing_return_type, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [398398] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(10094), 1, + anon_sym_LBRACK, + STATE(6782), 1, + sym_template_argument_list, + ACTIONS(10096), 3, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [398416] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15384), 1, + ACTIONS(16415), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(4027), 1, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(6576), 1, sym_template_function, - STATE(5426), 1, + STATE(11558), 1, + sym_splice_specifier, + [398438] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16417), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(6399), 1, + sym_template_function, + STATE(11558), 1, sym_splice_specifier, - [347153] = 7, + [398460] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15386), 1, + ACTIONS(16419), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(10492), 1, aux_sym_field_declaration_repeat1, - STATE(10959), 1, + STATE(11973), 1, sym_attribute_specifier, - [347175] = 7, + [398482] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16421), 1, + sym_identifier, + STATE(4080), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(6399), 1, + sym_template_function, + STATE(11558), 1, + sym_splice_specifier, + [398504] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16423), 1, + sym_identifier, + STATE(2786), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(6249), 1, + sym_template_function, + STATE(11558), 1, + sym_splice_specifier, + [398526] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16425), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(4191), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398548] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16427), 1, + sym_identifier, + STATE(4107), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(6576), 1, + sym_template_function, + STATE(11558), 1, + sym_splice_specifier, + [398570] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16429), 1, + sym_identifier, + STATE(2603), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(6399), 1, + sym_template_function, + STATE(11558), 1, + sym_splice_specifier, + [398592] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15388), 1, + ACTIONS(16431), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(10492), 1, aux_sym_field_declaration_repeat1, - STATE(10853), 1, + STATE(11997), 1, sym_attribute_specifier, - [347197] = 6, + [398614] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16433), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(4389), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398636] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16435), 1, + sym_identifier, + STATE(2629), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(6576), 1, + sym_template_function, + STATE(11558), 1, + sym_splice_specifier, + [398658] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16437), 1, + sym_identifier, + STATE(3122), 1, + sym_template_type, + STATE(4191), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398680] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1113), 1, + anon_sym_LBRACE, + ACTIONS(14975), 1, + anon_sym_try, + ACTIONS(16439), 1, + anon_sym_SEMI, + ACTIONS(16441), 1, + anon_sym_EQ, + STATE(716), 2, + sym_compound_statement, + sym_try_statement, + [398700] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16443), 1, + sym_identifier, + STATE(2249), 1, + sym_template_type, + STATE(4191), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398722] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(12009), 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, + [398736] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16445), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(4389), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398758] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16447), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(4389), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398780] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1113), 1, + anon_sym_LBRACE, + ACTIONS(14975), 1, + anon_sym_try, + ACTIONS(16449), 1, + anon_sym_SEMI, + ACTIONS(16451), 1, + anon_sym_EQ, + STATE(725), 2, + sym_compound_statement, + sym_try_statement, + [398800] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6845), 1, + anon_sym_for, + ACTIONS(16329), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(6455), 1, + sym__splice_specialization_specifier, + STATE(11688), 1, + sym_splice_specifier, + [398822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16453), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(16455), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [398836] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16457), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(4191), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [398858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15595), 1, + anon_sym_LT, + ACTIONS(15856), 1, + anon_sym_LBRACK, + STATE(9937), 1, + sym_template_argument_list, + ACTIONS(15854), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [398876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(15595), 1, + anon_sym_LT, + ACTIONS(15846), 1, + anon_sym_LBRACK, + STATE(9932), 1, + sym_template_argument_list, + ACTIONS(15842), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, + [398894] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(14955), 1, + anon_sym_try, + ACTIONS(16459), 1, + anon_sym_SEMI, + ACTIONS(16461), 1, + anon_sym_EQ, + STATE(459), 2, + sym_compound_statement, + sym_try_statement, + [398914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16463), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(16465), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [398928] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(6124), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9794), 2, + anon_sym_LBRACE, + anon_sym_requires, + [398948] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(6124), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9776), 2, + anon_sym_LBRACE, + anon_sym_requires, + [398968] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(6124), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9798), 2, + anon_sym_LBRACE, + anon_sym_requires, + [398988] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(12175), 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, + [399002] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(14464), 1, + ACTIONS(15216), 1, anon_sym_LBRACE, - STATE(11685), 1, + STATE(12132), 1, sym_trailing_return_type, - STATE(7955), 2, + STATE(10370), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [347217] = 6, + [399022] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5697), 1, + STATE(6124), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10184), 2, + ACTIONS(9802), 2, anon_sym_LBRACE, anon_sym_requires, - [347237] = 7, + [399042] = 3, 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, + ACTIONS(16463), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(16465), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [399056] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(6124), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9806), 2, + anon_sym_LBRACE, + anon_sym_requires, + [399076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16467), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(16469), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [399090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16153), 1, + aux_sym_preproc_elif_token1, + ACTIONS(16151), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [399104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16471), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(16473), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [399118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16383), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(16385), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [399132] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11177), 1, + anon_sym_LBRACE, + ACTIONS(14696), 1, + anon_sym_try, + ACTIONS(16475), 1, anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(11581), 1, - sym_attribute_specifier, - [347259] = 6, + ACTIONS(16477), 1, + anon_sym_EQ, + STATE(3175), 2, + sym_compound_statement, + sym_try_statement, + [399152] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16479), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(4389), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [399174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(11177), 1, anon_sym_LBRACE, - ACTIONS(13819), 1, + ACTIONS(14696), 1, anon_sym_try, - ACTIONS(15392), 1, + ACTIONS(16481), 1, anon_sym_SEMI, - ACTIONS(15394), 1, + ACTIONS(16483), 1, anon_sym_EQ, - STATE(3482), 2, + STATE(3306), 2, sym_compound_statement, sym_try_statement, - [347279] = 3, + [399194] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15396), 2, - anon_sym_RBRACE, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(6124), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9782), 2, + anon_sym_LBRACE, + anon_sym_requires, + [399214] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(6124), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9786), 2, + anon_sym_LBRACE, + anon_sym_requires, + [399234] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16485), 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(3412), 1, + sym_template_type, + STATE(4389), 1, + sym_template_function, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [399256] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15400), 1, + ACTIONS(16487), 1, anon_sym_SEMI, - STATE(9201), 1, + STATE(10332), 1, + aux_sym_field_declaration_repeat1, + STATE(12308), 1, + sym_attribute_specifier, + [399278] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16489), 1, + anon_sym_SEMI, + STATE(10492), 1, + aux_sym_field_declaration_repeat1, + STATE(12878), 1, + sym_attribute_specifier, + [399300] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16491), 1, + anon_sym_SEMI, + STATE(10492), 1, aux_sym_field_declaration_repeat1, - STATE(10950), 1, + STATE(12928), 1, sym_attribute_specifier, - [347315] = 6, + [399322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8597), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(15371), 1, + anon_sym_LBRACE, + STATE(12018), 1, + sym_trailing_return_type, + STATE(8893), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [399342] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14712), 1, anon_sym_DASH_GT, - ACTIONS(14464), 1, + ACTIONS(15371), 1, anon_sym_LBRACE, - STATE(11685), 1, + STATE(12018), 1, sym_trailing_return_type, - STATE(9191), 2, + STATE(10288), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [347335] = 7, + [399362] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11190), 1, + anon_sym_LBRACE, + ACTIONS(14673), 1, + anon_sym_try, + ACTIONS(16493), 1, + anon_sym_SEMI, + ACTIONS(16495), 1, + anon_sym_EQ, + STATE(3734), 2, + sym_compound_statement, + sym_try_statement, + [399382] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14899), 1, + anon_sym_try, + ACTIONS(16497), 1, + anon_sym_SEMI, + ACTIONS(16499), 1, + anon_sym_EQ, + STATE(949), 2, + sym_compound_statement, + sym_try_statement, + [399402] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + STATE(6124), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + ACTIONS(9790), 2, + anon_sym_LBRACE, + anon_sym_requires, + [399422] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15402), 1, + ACTIONS(16501), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(3931), 1, + STATE(4389), 1, sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [347357] = 6, + [399444] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(15404), 1, + ACTIONS(11190), 1, anon_sym_LBRACE, - STATE(10948), 1, - sym_trailing_return_type, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [347377] = 6, + ACTIONS(14673), 1, + anon_sym_try, + ACTIONS(16503), 1, + anon_sym_SEMI, + ACTIONS(16505), 1, + anon_sym_EQ, + STATE(3718), 2, + sym_compound_statement, + sym_try_statement, + [399464] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(15404), 1, + ACTIONS(57), 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(14899), 1, + anon_sym_try, + ACTIONS(16507), 1, + anon_sym_SEMI, + ACTIONS(16509), 1, + anon_sym_EQ, + STATE(999), 2, + sym_compound_statement, + sym_try_statement, + [399484] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15406), 1, + ACTIONS(16511), 1, anon_sym_SEMI, - STATE(9213), 1, + STATE(10382), 1, aux_sym_field_declaration_repeat1, - STATE(11083), 1, + STATE(12548), 1, sym_attribute_specifier, - [347419] = 7, + [399506] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15408), 1, + ACTIONS(16513), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(10383), 1, aux_sym_field_declaration_repeat1, - STATE(10953), 1, + STATE(12558), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15414), 1, - sym_identifier, - STATE(4080), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5774), 1, - sym_template_function, - STATE(10302), 1, - sym_splice_specifier, - [347477] = 7, + [399528] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15416), 1, + ACTIONS(16515), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(10492), 1, aux_sym_field_declaration_repeat1, - STATE(10956), 1, + STATE(12564), 1, sym_attribute_specifier, - [347499] = 5, + [399550] = 7, 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, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16517), 1, + anon_sym_SEMI, + STATE(10385), 1, + aux_sym_field_declaration_repeat1, + STATE(12640), 1, + sym_attribute_specifier, + [399572] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15418), 1, + ACTIONS(16519), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(10492), 1, aux_sym_field_declaration_repeat1, - STATE(10986), 1, + STATE(12655), 1, sym_attribute_specifier, - [347539] = 6, + [399594] = 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(10204), 2, - anon_sym_LBRACE, - anon_sym_requires, - [347559] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16521), 1, + anon_sym_SEMI, + STATE(10492), 1, + aux_sym_field_declaration_repeat1, + STATE(12660), 1, + sym_attribute_specifier, + [399616] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15420), 1, + ACTIONS(16523), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(10492), 1, aux_sym_field_declaration_repeat1, - STATE(10999), 1, + STATE(12691), 1, sym_attribute_specifier, - [347581] = 3, + [399638] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15424), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(15422), 4, - anon_sym_virtual, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - [347595] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16525), 1, + anon_sym_SEMI, + STATE(10492), 1, + aux_sym_field_declaration_repeat1, + STATE(12695), 1, + sym_attribute_specifier, + [399660] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15426), 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, - [347617] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12798), 1, + anon_sym_COMMA, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16527), 1, + anon_sym_SEMI, + STATE(10368), 1, + aux_sym_field_declaration_repeat1, + STATE(12080), 1, + sym_attribute_specifier, + [399682] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15428), 1, + ACTIONS(16529), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(10369), 1, aux_sym_field_declaration_repeat1, - STATE(11117), 1, + STATE(12096), 1, sym_attribute_specifier, - [347639] = 7, + [399704] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 1, + anon_sym_LBRACE, + ACTIONS(14826), 1, + anon_sym_try, + ACTIONS(16531), 1, + anon_sym_SEMI, + ACTIONS(16533), 1, + anon_sym_EQ, + STATE(866), 2, + sym_compound_statement, + sym_try_statement, + [399724] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12798), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15430), 1, + ACTIONS(16535), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(10492), 1, aux_sym_field_declaration_repeat1, - STATE(11189), 1, + STATE(12141), 1, sym_attribute_specifier, - [347661] = 7, + [399746] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15432), 1, + ACTIONS(6841), 1, + anon_sym_for, + ACTIONS(16329), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(3931), 1, - sym_template_function, - STATE(5426), 1, + STATE(6455), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11688), 1, sym_splice_specifier, - [347683] = 7, + [399768] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15434), 1, + ACTIONS(16537), 1, sym_identifier, - STATE(3739), 1, + STATE(3122), 1, sym_template_type, - STATE(4027), 1, + STATE(4191), 1, sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [347705] = 7, + [399790] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15436), 1, + ACTIONS(6843), 1, + anon_sym_for, + ACTIONS(16329), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(6455), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11688), 1, sym_splice_specifier, - [347727] = 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, + [399812] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(14083), 1, - anon_sym_try, - ACTIONS(15440), 1, - anon_sym_SEMI, - ACTIONS(15442), 1, - anon_sym_EQ, - STATE(712), 2, - sym_compound_statement, - sym_try_statement, - [347769] = 6, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6839), 1, + anon_sym_for, + ACTIONS(16329), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(6455), 1, + sym__splice_specialization_specifier, + STATE(11688), 1, + sym_splice_specifier, + [399834] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, - 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, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16329), 1, + sym_identifier, + ACTIONS(16539), 1, + anon_sym_for, + STATE(3412), 1, + sym_template_type, + STATE(6455), 1, + sym__splice_specialization_specifier, + STATE(11688), 1, + sym_splice_specifier, + [399856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15396), 2, - anon_sym_RBRACE, + ACTIONS(16543), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(16541), 4, + anon_sym_virtual, sym_identifier, - ACTIONS(15398), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [347803] = 7, + anon_sym_decltype, + anon_sym_template, + [399870] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15448), 1, + ACTIONS(16545), 1, anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(11192), 1, + STATE(10142), 2, 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, + aux_sym_type_definition_repeat1, + [399887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5697), 1, + ACTIONS(16547), 1, + anon_sym_RPAREN, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10196), 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, + [399906] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15456), 1, + ACTIONS(16549), 1, anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(11176), 1, + STATE(10408), 2, sym_attribute_specifier, - [347909] = 6, + aux_sym_type_definition_repeat1, + [399923] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(2396), 1, anon_sym_LBRACE, - ACTIONS(13833), 1, - anon_sym_try, - ACTIONS(15458), 1, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + STATE(4267), 1, + sym_initializer_list, + STATE(4271), 1, + sym_argument_list, + [399942] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16551), 1, anon_sym_SEMI, - ACTIONS(15460), 1, - anon_sym_EQ, - STATE(2739), 2, - sym_compound_statement, - sym_try_statement, - [347929] = 6, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [399959] = 5, 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(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16553), 1, + anon_sym_SEMI, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [399976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15462), 1, + ACTIONS(16555), 1, sym_identifier, - STATE(3739), 1, + STATE(4080), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(8595), 1, - sym_template_function, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [347971] = 7, + [399995] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15464), 1, + ACTIONS(16557), 1, anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(11155), 1, + STATE(10527), 2, sym_attribute_specifier, - [347993] = 7, + aux_sym_type_definition_repeat1, + [400012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15466), 1, + ACTIONS(16559), 1, sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(6887), 1, + sym_template_type, + STATE(11558), 1, sym_splice_specifier, - [348015] = 7, + [400031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15468), 1, + ACTIONS(16561), 1, sym_identifier, - STATE(2736), 1, + STATE(3207), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(5558), 1, - sym_template_function, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [348037] = 6, + [400050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5697), 1, + ACTIONS(16563), 1, + anon_sym_RPAREN, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10208), 2, - anon_sym_LBRACE, - anon_sym_requires, - [348057] = 7, + [400069] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15470), 1, + ACTIONS(16565), 1, anon_sym_SEMI, - STATE(9204), 1, - aux_sym_field_declaration_repeat1, - STATE(10943), 1, + STATE(10427), 2, sym_attribute_specifier, - [348079] = 6, + aux_sym_type_definition_repeat1, + [400086] = 5, 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(12826), 1, + anon_sym___attribute__, + ACTIONS(16567), 1, + anon_sym_SEMI, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [400103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15472), 1, + ACTIONS(16569), 1, sym_identifier, - STATE(2736), 1, + STATE(3959), 1, sym_template_type, - STATE(3931), 1, - sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [348121] = 7, + [400122] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16571), 1, + anon_sym_SEMI, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [400139] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15474), 1, + ACTIONS(16573), 1, sym_identifier, - STATE(3739), 1, + STATE(4905), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(5926), 1, - sym_template_function, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [348143] = 6, + [400158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(13951), 1, - anon_sym_try, - ACTIONS(15476), 1, - anon_sym_SEMI, - ACTIONS(15478), 1, + ACTIONS(16575), 1, + sym_identifier, + ACTIONS(16577), 1, + anon_sym_using, + ACTIONS(16579), 1, anon_sym_EQ, - STATE(443), 2, - sym_compound_statement, - sym_try_statement, - [348163] = 7, + STATE(10949), 1, + sym_attribute, + STATE(11017), 1, + sym_annotation, + [400177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15338), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(2736), 1, + STATE(3412), 1, sym_template_type, - STATE(3931), 1, - sym_template_function, - STATE(5426), 1, + STATE(6455), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11688), 1, sym_splice_specifier, - [348185] = 7, + [400196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15480), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5774), 1, - sym_template_function, - STATE(10302), 1, - sym_splice_specifier, - [348207] = 7, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(16583), 1, + anon_sym_COLON_COLON, + STATE(11581), 1, + sym_argument_list, + ACTIONS(16581), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [400213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15482), 1, + ACTIONS(16585), 1, sym_identifier, - STATE(2736), 1, + STATE(4600), 1, sym_template_type, - STATE(5311), 1, - sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [348229] = 7, + [400232] = 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(15484), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15961), 1, + anon_sym_COLON, + ACTIONS(16587), 1, anon_sym_SEMI, - STATE(9239), 1, - aux_sym_field_declaration_repeat1, - STATE(10732), 1, - sym_attribute_specifier, - [348251] = 6, + STATE(11300), 1, + sym_module_partition, + STATE(12464), 1, + sym_attribute_declaration, + [400251] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(4682), 1, anon_sym_LBRACE, - ACTIONS(13995), 1, - anon_sym_try, - ACTIONS(15486), 1, - anon_sym_SEMI, - ACTIONS(15488), 1, - anon_sym_EQ, - STATE(790), 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, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(11631), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [348307] = 7, + STATE(6570), 1, + sym_argument_list, + STATE(8246), 1, + sym_initializer_list, + [400270] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(6592), 1, - anon_sym_for, - ACTIONS(15334), 1, + ACTIONS(16589), 1, sym_identifier, - STATE(3739), 1, + STATE(5794), 1, sym_template_type, - STATE(5903), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10214), 1, + STATE(11558), 1, sym_splice_specifier, - [348329] = 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(15490), 1, - anon_sym_SEMI, - STATE(9197), 1, - aux_sym_field_declaration_repeat1, - STATE(10877), 1, - sym_attribute_specifier, - [348351] = 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(15492), 1, - anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(11005), 1, - sym_attribute_specifier, - [348373] = 5, - 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, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [348391] = 7, + [400289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15494), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(4080), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(4052), 1, sym__splice_specialization_specifier, - STATE(5774), 1, - sym_template_function, - STATE(10302), 1, + STATE(11459), 1, sym_splice_specifier, - [348413] = 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(15496), 1, - anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(10897), 1, - sym_attribute_specifier, - [348435] = 6, + [400308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - 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, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + ACTIONS(16591), 1, + anon_sym_RPAREN, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [400327] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(13951), 1, - anon_sym_try, - ACTIONS(15502), 1, + ACTIONS(16593), 1, + anon_sym_COMMA, + ACTIONS(16598), 1, + anon_sym___attribute, + STATE(10421), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(16596), 2, anon_sym_SEMI, - ACTIONS(15504), 1, - anon_sym_EQ, - STATE(418), 2, - sym_compound_statement, - sym_try_statement, - [348475] = 7, + anon_sym___attribute__, + [400344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15506), 1, + ACTIONS(16600), 1, sym_identifier, - STATE(2682), 1, - sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(5558), 1, - sym_template_function, - STATE(10302), 1, + STATE(8979), 1, + sym_template_type, + STATE(11558), 1, sym_splice_specifier, - [348497] = 7, + [400363] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15508), 1, + ACTIONS(12929), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12933), 1, + anon_sym_EQ, + ACTIONS(16602), 1, sym_identifier, - STATE(2466), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5558), 1, - sym_template_function, - STATE(10302), 1, - sym_splice_specifier, - [348519] = 7, + ACTIONS(12931), 2, + anon_sym_COMMA, + anon_sym_GT2, + [400380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16606), 1, + anon_sym_DOT, + STATE(10521), 1, + aux_sym_module_name_repeat1, + ACTIONS(16604), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [400395] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15510), 1, + ACTIONS(16608), 1, sym_identifier, - STATE(3739), 1, + STATE(4681), 1, sym_template_type, - STATE(3931), 1, - sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [348541] = 7, + [400414] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15512), 1, + ACTIONS(16610), 1, anon_sym_SEMI, - STATE(9221), 1, - aux_sym_field_declaration_repeat1, - STATE(10951), 1, + STATE(10433), 2, sym_attribute_specifier, - [348563] = 7, + aux_sym_type_definition_repeat1, + [400431] = 5, 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(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16612), 1, + anon_sym_SEMI, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [400448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5697), 1, + ACTIONS(16614), 1, + anon_sym_RPAREN, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10188), 2, - anon_sym_LBRACE, - anon_sym_requires, - [348605] = 6, + [400467] = 6, 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(10192), 2, + ACTIONS(2952), 1, 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, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(6170), 1, + sym_argument_list, + STATE(6233), 1, + sym_initializer_list, + [400486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15334), 1, + ACTIONS(16616), 1, sym_identifier, - ACTIONS(15516), 1, - anon_sym_for, - STATE(3739), 1, - sym_template_type, - STATE(5903), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10214), 1, + STATE(7412), 1, + sym_template_type, + STATE(11558), 1, sym_splice_specifier, - [348661] = 7, + [400505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6588), 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, - [348683] = 7, + ACTIONS(16618), 5, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [400516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(6590), 1, - anon_sym_for, - ACTIONS(15334), 1, + ACTIONS(16620), 1, sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5903), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10214), 1, + STATE(9302), 1, + sym_template_type, + STATE(11558), 1, sym_splice_specifier, - [348705] = 3, - 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, + [400535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15518), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(15520), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [348733] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16622), 1, + anon_sym_SEMI, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [400552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(6636), 1, - anon_sym_for, - ACTIONS(15334), 1, + ACTIONS(16624), 1, sym_identifier, - STATE(3739), 1, + STATE(2786), 1, sym_template_type, - STATE(5903), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10214), 1, + STATE(11558), 1, sym_splice_specifier, - [348755] = 7, + [400571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15522), 1, + ACTIONS(16626), 1, sym_identifier, - STATE(2553), 1, + STATE(4695), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(5774), 1, - sym_template_function, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [348777] = 3, + [400590] = 3, 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(16628), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9855), 3, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_or, + [400603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15524), 1, + ACTIONS(16630), 1, sym_identifier, - STATE(3739), 1, + STATE(4107), 1, sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [348813] = 6, + [400622] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + ACTIONS(16634), 1, anon_sym_COLON_COLON, - ACTIONS(14887), 1, - anon_sym_decltype, - ACTIONS(15526), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 2, + STATE(11439), 1, + sym_argument_list, + ACTIONS(16632), 2, anon_sym_COMMA, - anon_sym_GT2, - [348833] = 7, + anon_sym_RBRACK_RBRACK, + [400639] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15528), 1, + ACTIONS(16636), 1, sym_identifier, - STATE(2582), 1, + STATE(2603), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(5926), 1, - sym_template_function, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [348855] = 7, + [400658] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15530), 1, + ACTIONS(16638), 1, sym_identifier, - STATE(3739), 1, + STATE(2629), 1, sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [348877] = 6, - 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(3), 1, - sym_comment, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(14083), 1, - anon_sym_try, - ACTIONS(15536), 1, - anon_sym_SEMI, - ACTIONS(15538), 1, - anon_sym_EQ, - STATE(721), 2, - sym_compound_statement, - sym_try_statement, - [348917] = 7, + [400677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15540), 1, + ACTIONS(16640), 1, sym_identifier, - STATE(3739), 1, + STATE(3396), 1, sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [348939] = 6, + [400696] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, - anon_sym_LBRACE, - ACTIONS(13807), 1, - anon_sym_try, - ACTIONS(15542), 1, - anon_sym_SEMI, - ACTIONS(15544), 1, - anon_sym_EQ, - STATE(3369), 2, - sym_compound_statement, - sym_try_statement, - [348959] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - STATE(5697), 1, + ACTIONS(16642), 1, + anon_sym_RPAREN, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - ACTIONS(10172), 2, - anon_sym_LBRACE, - anon_sym_requires, - [348979] = 7, + [400715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(16644), 2, + anon_sym_class, + anon_sym_typename, + STATE(11572), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [400728] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15546), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(8084), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11424), 1, sym_splice_specifier, - [349001] = 6, + [400747] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(15548), 1, + ACTIONS(16575), 1, + sym_identifier, + ACTIONS(16577), 1, + anon_sym_using, + ACTIONS(16579), 1, + anon_sym_EQ, + STATE(11038), 1, + sym_attribute, + STATE(11039), 1, + sym_annotation, + [400766] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, anon_sym_LBRACE, - STATE(11678), 1, - sym_trailing_return_type, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [349021] = 5, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + STATE(6413), 1, + sym_argument_list, + STATE(8213), 1, + sym_initializer_list, + [400785] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15550), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15961), 1, + anon_sym_COLON, + ACTIONS(16646), 1, anon_sym_SEMI, - STATE(9295), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349038] = 6, + STATE(11131), 1, + sym_module_partition, + STATE(12491), 1, + sym_attribute_declaration, + [400804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15552), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(3498), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [349057] = 5, + [400823] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4974), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + STATE(4271), 1, + sym_argument_list, + STATE(6708), 1, + sym_initializer_list, + [400842] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16648), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9440), 2, + anon_sym_using, + anon_sym_EQ, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [400857] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15554), 1, + ACTIONS(16651), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(10458), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349074] = 5, + [400874] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15556), 1, + ACTIONS(16653), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(10401), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349091] = 5, + [400891] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15558), 1, + ACTIONS(16655), 1, anon_sym_SEMI, - STATE(9352), 2, + STATE(10142), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349108] = 6, + [400908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(15560), 1, + ACTIONS(16657), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [400927] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + ACTIONS(16659), 1, + anon_sym_RPAREN, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [400946] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + ACTIONS(16661), 1, + anon_sym_RPAREN, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - [349127] = 5, + [400965] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15562), 1, + ACTIONS(16663), 1, anon_sym_SEMI, - STATE(9347), 2, + STATE(10463), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349144] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15564), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [349163] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15566), 1, - sym_identifier, - ACTIONS(15568), 1, - anon_sym_using, - ACTIONS(15570), 1, - anon_sym_EQ, - STATE(9949), 1, - sym_attribute, - STATE(9950), 1, - sym_annotation, - [349182] = 5, + [400982] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15572), 1, + ACTIONS(16665), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(10142), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349199] = 5, + [400999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15574), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(2394), 1, + sym_template_argument_list, + ACTIONS(6776), 2, 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, + anon_sym_RBRACK, + [401016] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15581), 1, + ACTIONS(16667), 1, anon_sym_SEMI, - STATE(9316), 2, + STATE(10479), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349233] = 6, + [401033] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9230), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(3899), 1, - sym_initializer_list, - [349252] = 6, + ACTIONS(15828), 1, + anon_sym_LBRACK, + ACTIONS(16669), 1, + anon_sym_RPAREN, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [401052] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14968), 1, + ACTIONS(15961), 1, anon_sym_COLON, - ACTIONS(15583), 1, + ACTIONS(16671), 1, anon_sym_SEMI, - STATE(9714), 1, + STATE(11030), 1, sym_module_partition, - STATE(10771), 1, + STATE(12905), 1, sym_attribute_declaration, - [349271] = 6, + [401071] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16673), 1, + anon_sym_SEMI, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [401088] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15585), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(2086), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6137), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11827), 1, sym_splice_specifier, - [349290] = 6, + [401107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15587), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(2682), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6455), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11729), 1, sym_splice_specifier, - [349309] = 6, + [401126] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16675), 1, + anon_sym_SEMI, + STATE(10400), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [401143] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15961), 1, + anon_sym_COLON, + ACTIONS(16677), 1, + anon_sym_SEMI, + STATE(11236), 1, + sym_module_partition, + STATE(12127), 1, + sym_attribute_declaration, + [401162] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16679), 1, + anon_sym_SEMI, + STATE(10540), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [401179] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15560), 1, + sym_identifier, + ACTIONS(16681), 1, + aux_sym_preproc_if_token2, + STATE(10272), 1, + sym_enumerator, + STATE(10598), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(10600), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [401198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5692), 1, + STATE(6741), 1, sym__splice_specialization_specifier, - STATE(10464), 1, + STATE(11570), 1, sym_splice_specifier, - [349328] = 6, + [401217] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16575), 1, + sym_identifier, + ACTIONS(16577), 1, + anon_sym_using, + ACTIONS(16579), 1, + anon_sym_EQ, + STATE(10962), 1, + sym_attribute, + STATE(10963), 1, + sym_annotation, + [401236] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + STATE(6413), 1, + sym_argument_list, + STATE(6473), 1, + sym_initializer_list, + [401255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15589), 1, + ACTIONS(16683), 1, sym_identifier, - STATE(4080), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [349347] = 6, + [401274] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16685), 1, + anon_sym_SEMI, + STATE(10484), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [401291] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + ACTIONS(16687), 1, + anon_sym_RPAREN, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [401310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15591), 1, + ACTIONS(16689), 1, sym_identifier, - STATE(2466), 1, + STATE(2249), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [349366] = 5, - 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, + [401329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(16575), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(16577), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(16579), 1, anon_sym_EQ, - STATE(10040), 1, + STATE(10924), 1, sym_attribute, - STATE(10041), 1, + STATE(10925), 1, sym_annotation, - [349402] = 5, + [401348] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15593), 1, + ACTIONS(16691), 1, anon_sym_SEMI, - STATE(9358), 2, + STATE(10503), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349419] = 5, + [401365] = 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, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12826), 1, + anon_sym___attribute__, + ACTIONS(16693), 1, + anon_sym_SEMI, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [401382] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16695), 1, + sym_identifier, + STATE(3412), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [401401] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [349436] = 5, + ACTIONS(15828), 1, + anon_sym_LBRACK, + ACTIONS(16697), 1, + anon_sym_RPAREN, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [401420] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + ACTIONS(16699), 1, + sym_identifier, + STATE(4478), 1, + sym_template_type, + STATE(6029), 1, + sym__splice_specialization_specifier, + STATE(11558), 1, + sym_splice_specifier, + [401439] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15595), 1, + ACTIONS(16701), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(10489), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349453] = 5, + [401456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15597), 1, - anon_sym_COMMA, - ACTIONS(15602), 1, + ACTIONS(43), 1, anon_sym___attribute, - STATE(9296), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(15600), 2, - anon_sym_SEMI, + ACTIONS(12826), 1, anon_sym___attribute__, - [349470] = 6, + ACTIONS(16703), 1, + anon_sym_SEMI, + STATE(10142), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [401473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(16045), 1, + anon_sym_COLON_COLON, + ACTIONS(16047), 1, + anon_sym_inline, + ACTIONS(16705), 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(10937), 1, + sym__namespace_specifier, + STATE(11617), 1, + sym_nested_namespace_specifier, + [401492] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(16575), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(16577), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(16579), 1, anon_sym_EQ, - STATE(10115), 1, + STATE(11018), 1, sym_attribute, - STATE(10116), 1, + STATE(11019), 1, sym_annotation, - [349508] = 6, + [401511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15604), 1, + ACTIONS(16707), 1, sym_identifier, - STATE(4806), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [349527] = 5, + [401530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + ACTIONS(16709), 1, + anon_sym_RPAREN, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [401549] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15606), 1, + ACTIONS(16711), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(10142), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349544] = 6, + [401566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15961), 1, + anon_sym_COLON, + ACTIONS(16713), 1, + anon_sym_SEMI, + STATE(11113), 1, + sym_module_partition, + STATE(12244), 1, + sym_attribute_declaration, + [401585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16575), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(16577), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(16579), 1, anon_sym_EQ, - STATE(10193), 1, + STATE(11154), 1, sym_attribute, - STATE(10194), 1, + STATE(11155), 1, sym_annotation, - [349563] = 5, + [401604] = 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, + ACTIONS(16715), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [349580] = 6, + ACTIONS(16720), 1, + anon_sym___attribute, + STATE(10492), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(16718), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [401621] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10094), 1, + anon_sym_LBRACK, + ACTIONS(12433), 1, + anon_sym_LT, + STATE(7304), 1, + sym_template_argument_list, + ACTIONS(10096), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [401638] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16575), 1, + sym_identifier, + ACTIONS(16577), 1, + anon_sym_using, + ACTIONS(16579), 1, + anon_sym_EQ, + STATE(11257), 1, + sym_attribute, + STATE(11258), 1, + sym_annotation, + [401657] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15612), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(2736), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(7969), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11729), 1, sym_splice_specifier, - [349599] = 6, + [401676] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(3155), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(6170), 1, + sym_argument_list, + STATE(6770), 1, + sym_initializer_list, + [401695] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16575), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(16577), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(16579), 1, anon_sym_EQ, - STATE(9678), 1, + STATE(11356), 1, sym_attribute, - STATE(9679), 1, + STATE(11357), 1, sym_annotation, - [349618] = 6, + [401714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(15614), 1, + ACTIONS(16722), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - [349637] = 6, + [401733] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(16575), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(16577), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(16579), 1, anon_sym_EQ, - STATE(9695), 1, + STATE(11368), 1, sym_attribute, - STATE(9696), 1, + STATE(11371), 1, sym_annotation, - [349656] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15616), 1, - anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349673] = 6, + [401752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(16575), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(16577), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(16579), 1, anon_sym_EQ, - STATE(9712), 1, + STATE(11044), 1, sym_attribute, - STATE(9713), 1, + STATE(11045), 1, sym_annotation, - [349692] = 6, + [401771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6122), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11511), 1, sym_splice_specifier, - [349711] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15618), 1, - anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349728] = 6, + [401790] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15620), 1, + ACTIONS(16575), 1, sym_identifier, - STATE(4222), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 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, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15624), 1, - anon_sym_SEMI, - STATE(9275), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349802] = 5, + ACTIONS(16577), 1, + anon_sym_using, + ACTIONS(16579), 1, + anon_sym_EQ, + STATE(11188), 1, + sym_attribute, + STATE(11189), 1, + sym_annotation, + [401809] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15626), 1, + ACTIONS(16724), 1, anon_sym_SEMI, - STATE(9329), 2, + STATE(10142), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349819] = 5, + [401826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15628), 1, - anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349836] = 4, + ACTIONS(16575), 1, + sym_identifier, + ACTIONS(16577), 1, + anon_sym_using, + ACTIONS(16579), 1, + anon_sym_EQ, + STATE(11288), 1, + sym_attribute, + STATE(11289), 1, + sym_annotation, + [401845] = 6, 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(16575), 1, + sym_identifier, + ACTIONS(16577), 1, + anon_sym_using, + ACTIONS(16579), 1, + anon_sym_EQ, + STATE(11359), 1, + sym_attribute, + STATE(11361), 1, + sym_annotation, + [401864] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15634), 5, - anon_sym_LPAREN2, + ACTIONS(16045), 1, + anon_sym_COLON_COLON, + ACTIONS(16047), 1, anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [349862] = 5, + ACTIONS(16705), 1, + sym_identifier, + STATE(11164), 1, + sym__namespace_specifier, + STATE(11580), 1, + sym_nested_namespace_specifier, + [401883] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - STATE(4863), 1, - sym_attribute_specifier, - ACTIONS(7549), 2, - anon_sym_COMMA, - anon_sym_GT2, - [349879] = 5, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + ACTIONS(16726), 1, + anon_sym_RPAREN, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [401902] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4969), 1, + ACTIONS(16728), 1, + anon_sym_SEMI, + STATE(10526), 2, sym_attribute_specifier, - ACTIONS(7553), 2, - anon_sym_COMMA, - anon_sym_GT2, - [349896] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15636), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [349915] = 6, + aux_sym_type_definition_repeat1, + [401919] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(15638), 1, + ACTIONS(16730), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - [349934] = 5, + [401938] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4887), 1, + STATE(4216), 1, sym_attribute_specifier, - ACTIONS(7415), 2, + ACTIONS(7576), 2, anon_sym_COMMA, anon_sym_GT2, - [349951] = 5, + [401955] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4795), 1, + STATE(4183), 1, sym_attribute_specifier, - ACTIONS(7429), 2, + ACTIONS(7580), 2, anon_sym_COMMA, anon_sym_GT2, - [349968] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15642), 1, - anon_sym_DOT, - STATE(9325), 1, - aux_sym_module_name_repeat1, - ACTIONS(15640), 3, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [349983] = 5, + [401972] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4842), 1, + STATE(4273), 1, sym_attribute_specifier, - ACTIONS(7399), 2, + ACTIONS(7678), 2, anon_sym_COMMA, anon_sym_GT2, - [350000] = 5, + [401989] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4852), 1, + STATE(4283), 1, sym_attribute_specifier, - ACTIONS(7507), 2, + ACTIONS(7619), 2, anon_sym_COMMA, anon_sym_GT2, - [350017] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15645), 1, - anon_sym_SEMI, - STATE(9307), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [350034] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15647), 1, - anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [350051] = 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(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15653), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [350087] = 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(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15655), 1, - anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [350123] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(15657), 1, - anon_sym_SEMI, - STATE(9838), 1, - sym_module_partition, - STATE(11607), 1, - sym_attribute_declaration, - [350142] = 5, + [402006] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(5000), 1, + STATE(4299), 1, sym_attribute_specifier, - ACTIONS(7425), 2, + ACTIONS(7694), 2, anon_sym_COMMA, anon_sym_GT2, - [350159] = 6, - 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, + [402023] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(5027), 1, + STATE(4301), 1, sym_attribute_specifier, - ACTIONS(7433), 2, + ACTIONS(7704), 2, anon_sym_COMMA, anon_sym_GT2, - [350195] = 5, + [402040] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4815), 1, + STATE(4242), 1, sym_attribute_specifier, - ACTIONS(7437), 2, + ACTIONS(7636), 2, anon_sym_COMMA, anon_sym_GT2, - [350212] = 5, + [402057] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4908), 1, + STATE(4338), 1, sym_attribute_specifier, - ACTIONS(7455), 2, + ACTIONS(7674), 2, anon_sym_COMMA, anon_sym_GT2, - [350229] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15661), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [350248] = 5, + [402074] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4993), 1, + STATE(4279), 1, sym_attribute_specifier, - ACTIONS(7523), 2, + ACTIONS(7682), 2, anon_sym_COMMA, anon_sym_GT2, - [350265] = 5, + [402091] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - STATE(4870), 1, + STATE(4237), 1, sym_attribute_specifier, - ACTIONS(7533), 2, - anon_sym_COMMA, - anon_sym_GT2, - [350282] = 5, - 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, + ACTIONS(7690), 2, anon_sym_COMMA, - anon_sym_GT2, - [350299] = 3, - 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, + anon_sym_GT2, + [402108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(15665), 1, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + ACTIONS(15828), 1, + anon_sym_LBRACK, + ACTIONS(16732), 1, + anon_sym_RPAREN, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [402127] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16736), 1, + anon_sym_DOT, + STATE(10521), 1, + aux_sym_module_name_repeat1, + ACTIONS(16734), 3, anon_sym_SEMI, - STATE(9685), 1, - sym_module_partition, - STATE(11194), 1, - sym_attribute_declaration, - [350331] = 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [402142] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15667), 1, - anon_sym_SEMI, - STATE(9361), 2, + STATE(4278), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [350348] = 5, + ACTIONS(7708), 2, + anon_sym_COMMA, + anon_sym_GT2, + [402159] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15669), 1, - anon_sym_SEMI, - STATE(9021), 2, + STATE(4305), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [350365] = 5, + ACTIONS(7572), 2, + anon_sym_COMMA, + anon_sym_GT2, + [402176] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15671), 1, + ACTIONS(16739), 1, anon_sym_SEMI, - STATE(9300), 2, + STATE(10453), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350382] = 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(5903), 1, - sym__splice_specialization_specifier, - STATE(10214), 1, - sym_splice_specifier, - [350401] = 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(5556), 1, - sym__splice_specialization_specifier, - STATE(10340), 1, - sym_splice_specifier, - [350420] = 6, - 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, + [402193] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15673), 1, + ACTIONS(16741), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(10530), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - STATE(5537), 1, - sym_argument_list, - STATE(5538), 1, - sym_initializer_list, - [350475] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15675), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9075), 2, - anon_sym_using, - anon_sym_EQ, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [350490] = 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(7012), 1, - sym__splice_specialization_specifier, - STATE(10536), 1, - sym_splice_specifier, - [350509] = 5, + [402210] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15678), 1, + ACTIONS(16743), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(10142), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350526] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15680), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [350545] = 5, + [402227] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15682), 1, + ACTIONS(16745), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(10142), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350562] = 6, + [402244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15604), 1, + ACTIONS(16224), 1, sym_identifier, - STATE(3739), 1, + STATE(3412), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11438), 1, sym_splice_specifier, - [350581] = 3, + [402263] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, - anon_sym_AMP, - ACTIONS(11731), 4, + ACTIONS(14661), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(15828), 1, anon_sym_LBRACK, - [350594] = 5, + ACTIONS(16747), 1, + anon_sym_RPAREN, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [402282] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15684), 1, + ACTIONS(16749), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(10142), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350611] = 6, + [402299] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(15686), 1, + ACTIONS(16751), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - [350630] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15566), 1, - sym_identifier, - ACTIONS(15568), 1, - anon_sym_using, - ACTIONS(15570), 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, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5903), 1, - sym__splice_specialization_specifier, - STATE(10536), 1, - sym_splice_specifier, - [350687] = 6, + [402318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, + ACTIONS(16753), 1, sym_identifier, - STATE(3739), 1, + STATE(2592), 1, sym_template_type, - STATE(7179), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10486), 1, + STATE(11558), 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, + [402337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(10094), 1, + anon_sym_LBRACK, + STATE(6449), 1, + sym_template_argument_list, + ACTIONS(10096), 2, + anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(15690), 1, - anon_sym_SEMI, - STATE(9955), 1, - sym_module_partition, - STATE(11616), 1, - sym_attribute_declaration, - [350744] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15692), 1, - sym_identifier, - STATE(2736), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [350763] = 6, + [402354] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15058), 1, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15694), 1, - sym_identifier, - STATE(9863), 1, - sym__namespace_specifier, - STATE(10409), 1, - sym_nested_namespace_specifier, - [350782] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, + ACTIONS(9662), 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, + STATE(4271), 1, + sym_argument_list, + STATE(6708), 1, + sym_initializer_list, + [402373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - ACTIONS(15698), 1, + ACTIONS(16755), 1, sym_identifier, - STATE(2736), 1, + STATE(3122), 1, sym_template_type, - STATE(5426), 1, + STATE(6029), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(11558), 1, sym_splice_specifier, - [350820] = 5, + [402392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15018), 1, - 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, + ACTIONS(3038), 1, + anon_sym_LBRACE, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + STATE(6570), 1, + sym_argument_list, + STATE(6582), 1, + sym_initializer_list, + [402411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - STATE(2131), 1, + STATE(4031), 1, sym_template_argument_list, - ACTIONS(6567), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [350854] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, + ACTIONS(10039), 2, 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, - 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, + anon_sym_LBRACE, + [402428] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15708), 1, + ACTIONS(16757), 1, anon_sym_SEMI, - STATE(9408), 2, + STATE(10410), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350907] = 6, + [402445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(9739), 1, anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - STATE(5772), 1, - sym_argument_list, - STATE(5843), 1, - sym_initializer_list, - [350926] = 5, + ACTIONS(16628), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(16759), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + [402460] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15710), 1, + ACTIONS(16761), 1, anon_sym_SEMI, - STATE(9356), 2, + STATE(10142), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350943] = 5, + [402477] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15989), 1, + anon_sym_COMMA, + ACTIONS(16765), 1, + anon_sym___attribute, + STATE(10421), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(16763), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [402494] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12826), 1, anon_sym___attribute__, - ACTIONS(15712), 1, + ACTIONS(16767), 1, anon_sym_SEMI, - STATE(9274), 2, + STATE(10396), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350960] = 6, + [402511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15714), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [350979] = 6, + ACTIONS(16606), 1, + anon_sym_DOT, + STATE(10424), 1, + aux_sym_module_name_repeat1, + ACTIONS(16769), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [402526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15716), 1, - sym_identifier, - STATE(2553), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [350998] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15961), 1, + anon_sym_COLON, + ACTIONS(16771), 1, + anon_sym_SEMI, + STATE(10952), 1, + sym_module_partition, + STATE(12081), 1, + sym_attribute_declaration, + [402545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10900), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - STATE(5772), 1, - sym_argument_list, - STATE(7298), 1, - sym_initializer_list, - [351017] = 6, + ACTIONS(15828), 1, + anon_sym_LBRACK, + ACTIONS(16773), 1, + anon_sym_RPAREN, + STATE(5186), 1, + sym_parameter_list, + STATE(9630), 1, + sym__function_declarator_seq, + [402564] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15828), 1, anon_sym_LBRACK, - ACTIONS(15718), 1, + ACTIONS(16775), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(5186), 1, sym_parameter_list, - STATE(8592), 1, + STATE(9630), 1, sym__function_declarator_seq, - [351036] = 6, - ACTIONS(3), 1, + [402583] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15720), 1, - sym_identifier, - STATE(3614), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [351055] = 6, + ACTIONS(16777), 1, + anon_sym_DQUOTE, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [402599] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(16783), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [402615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(16785), 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(16787), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [402627] = 5, 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(14152), 1, + anon_sym_LBRACE, + ACTIONS(16789), 1, + anon_sym_LPAREN2, + STATE(7315), 1, + sym_requirement_seq, + STATE(11450), 1, + sym_requires_parameter_list, + [402643] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(4682), 1, anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10982), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - STATE(5862), 1, + STATE(4271), 1, sym_argument_list, - STATE(7380), 1, + STATE(6708), 1, sym_initializer_list, - [351112] = 6, + [402659] = 4, 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(16791), 1, + anon_sym___except, + ACTIONS(16793), 1, + anon_sym___finally, + STATE(698), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [402673] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(10684), 1, + sym_splice_specifier, + STATE(10700), 1, + sym_splice_type_specifier, + [402689] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11631), 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, + STATE(6427), 1, + sym_argument_list, + STATE(8180), 1, + sym_initializer_list, + [402705] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9395), 1, + ACTIONS(8718), 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, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(3023), 1, + sym_field_declaration_list, + STATE(11829), 1, + sym_base_class_clause, + [402721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15732), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [351184] = 6, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16797), 1, + anon_sym_GT2, + STATE(10893), 1, + aux_sym_template_argument_list_repeat1, + [402737] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9230), 1, + ACTIONS(16789), 1, anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(5969), 1, - sym_initializer_list, - [351203] = 5, + ACTIONS(16799), 1, + anon_sym_LBRACE, + STATE(9444), 1, + sym_requirement_seq, + STATE(11635), 1, + sym_requires_parameter_list, + [402753] = 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, + ACTIONS(16801), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16803), 1, + anon_sym_COMMA, + ACTIONS(16805), 1, + anon_sym_LBRACE, + STATE(11342), 1, + aux_sym_base_class_clause_repeat1, + [402769] = 4, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16807), 1, + anon_sym_SQUOTE, + STATE(10567), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16809), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [402783] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15736), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(16811), 1, anon_sym_SEMI, - STATE(9310), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [351237] = 6, + STATE(3290), 1, + sym_template_argument_list, + [402799] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16813), 1, + anon_sym_DQUOTE, + ACTIONS(16815), 1, + aux_sym_string_literal_token1, + ACTIONS(16817), 1, + sym_escape_sequence, + STATE(10739), 1, + aux_sym_string_literal_repeat1, + [402815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, - sym_identifier, - ACTIONS(15568), 1, - anon_sym_using, - ACTIONS(15570), 1, - anon_sym_EQ, - STATE(9868), 1, - sym_attribute, - STATE(9869), 1, - sym_annotation, - [351256] = 6, + ACTIONS(16819), 1, + anon_sym___except, + ACTIONS(16821), 1, + anon_sym___finally, + STATE(630), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [402829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(8088), 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(10600), 1, + anon_sym_COLON, + STATE(2665), 1, + sym_field_declaration_list, + STATE(11479), 1, + sym_base_class_clause, + [402845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15730), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9324), 3, - anon_sym_PIPE_PIPE, + ACTIONS(8249), 1, anon_sym_LBRACE, - anon_sym_or, - [351288] = 6, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(2750), 1, + sym_field_declaration_list, + STATE(11546), 1, + sym_base_class_clause, + [402861] = 5, 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(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16823), 1, + anon_sym_GT2, + STATE(10856), 1, + aux_sym_template_argument_list_repeat1, + [402877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15740), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [351326] = 6, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16825), 1, + anon_sym_GT2, + STATE(11087), 1, + aux_sym_template_argument_list_repeat1, + [402893] = 4, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16827), 1, + anon_sym_SQUOTE, + STATE(10567), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16829), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [402907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(11631), 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, + STATE(6570), 1, + sym_argument_list, + STATE(8246), 1, + sym_initializer_list, + [402923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15744), 1, - anon_sym_SEMI, - STATE(9281), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [351362] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16109), 1, + anon_sym_EQ, + STATE(10599), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [402937] = 5, 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(10600), 1, + anon_sym_COLON, + ACTIONS(10912), 1, + anon_sym_LBRACE, + STATE(6058), 1, + sym_field_declaration_list, + STATE(11526), 1, + sym_base_class_clause, + [402953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15748), 1, - sym_identifier, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(6692), 1, - sym_template_type, - STATE(10302), 1, - sym_splice_specifier, - [351400] = 5, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16832), 1, + anon_sym_GT2, + STATE(11010), 1, + aux_sym_template_argument_list_repeat1, + [402969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16834), 1, + anon_sym_GT2, + STATE(11137), 1, + aux_sym_template_argument_list_repeat1, + [402985] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16836), 1, + anon_sym_DQUOTE, + ACTIONS(16838), 1, + aux_sym_string_literal_token1, + ACTIONS(16840), 1, + sym_escape_sequence, + STATE(10581), 1, + aux_sym_string_literal_repeat1, + [403001] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16842), 1, + anon_sym_DQUOTE, + ACTIONS(16844), 1, + aux_sym_string_literal_token1, + ACTIONS(16846), 1, + sym_escape_sequence, + STATE(10717), 1, + aux_sym_string_literal_repeat1, + [403017] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(16848), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [403033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12945), 1, anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15750), 1, + ACTIONS(12943), 3, + anon_sym_COMMA, anon_sym_SEMI, - STATE(9333), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [351417] = 6, + anon_sym___attribute__, + [403045] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(16850), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [403061] = 5, 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(10419), 1, - sym_splice_specifier, - [351436] = 5, + ACTIONS(2952), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(6364), 1, + sym_argument_list, + STATE(6372), 1, + sym_initializer_list, + [403077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(16854), 1, anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15752), 1, + ACTIONS(16852), 3, + anon_sym_COMMA, anon_sym_SEMI, - STATE(9413), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [351453] = 5, + anon_sym___attribute__, + [403089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(16858), 1, anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15754), 1, + ACTIONS(16856), 3, + anon_sym_COMMA, anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [351470] = 6, + anon_sym___attribute__, + [403101] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(16860), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [403117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(4682), 1, + anon_sym_LBRACE, + ACTIONS(13426), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15756), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [351489] = 6, + STATE(11355), 2, + sym_argument_list, + sym_initializer_list, + [403131] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16862), 1, + anon_sym_DQUOTE, + ACTIONS(16864), 1, + aux_sym_string_literal_token1, + ACTIONS(16867), 1, + sym_escape_sequence, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [403147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15758), 1, + ACTIONS(16870), 1, + anon_sym_COMMA, + STATE(10584), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(16873), 2, anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [351508] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + [403161] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(3804), 1, - sym__splice_specialization_specifier, - STATE(10450), 1, - sym_splice_specifier, - [351527] = 4, + ACTIONS(16875), 1, + aux_sym_preproc_include_token2, + ACTIONS(16877), 1, + anon_sym_LPAREN, + ACTIONS(16879), 1, + sym_preproc_arg, + STATE(11548), 1, + sym_preproc_params, + [403177] = 4, 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, + ACTIONS(16881), 1, + anon_sym_COMMA, + STATE(10590), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(16883), 2, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [351542] = 5, + [403191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15762), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(16885), 1, anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [351559] = 6, + STATE(3290), 1, + sym_template_argument_list, + [403207] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15058), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15694), 1, - sym_identifier, - STATE(10049), 1, - sym__namespace_specifier, - STATE(10334), 1, - sym_nested_namespace_specifier, - [351578] = 6, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(16887), 1, + anon_sym_SEMI, + STATE(3290), 1, + sym_template_argument_list, + [403223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15764), 1, - sym_identifier, - STATE(2582), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [351597] = 6, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16889), 1, + anon_sym_GT2, + STATE(10908), 1, + aux_sym_template_argument_list_repeat1, + [403239] = 4, 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, + ACTIONS(16891), 1, + anon_sym_COMMA, + STATE(10590), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(16894), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [403253] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9650), 1, - anon_sym_LBRACK, - ACTIONS(10320), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, anon_sym_LT, - STATE(6491), 1, + ACTIONS(16896), 1, + anon_sym_SEMI, + STATE(3290), 1, sym_template_argument_list, - ACTIONS(9652), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [351633] = 5, + [403269] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15766), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16898), 1, + anon_sym_GT2, + STATE(11125), 1, + aux_sym_template_argument_list_repeat1, + [403285] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16900), 1, + sym_identifier, + ACTIONS(16902), 1, anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [351650] = 5, + ACTIONS(16904), 1, + anon_sym_COLON, + STATE(10544), 1, + sym_module_name, + [403301] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16906), 1, + anon_sym_DQUOTE, + ACTIONS(16908), 1, + aux_sym_string_literal_token1, + ACTIONS(16910), 1, + sym_escape_sequence, + STATE(10603), 1, + aux_sym_string_literal_repeat1, + [403317] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13290), 1, + ACTIONS(4974), 1, anon_sym_LBRACE, - ACTIONS(15768), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - STATE(4980), 1, - sym_requirement_seq, - STATE(10367), 1, - sym_requires_parameter_list, - [351666] = 5, - ACTIONS(14065), 1, + STATE(4288), 1, + sym_argument_list, + STATE(6698), 1, + sym_initializer_list, + [403333] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15770), 1, + ACTIONS(16912), 1, + anon_sym___except, + ACTIONS(16914), 1, + anon_sym___finally, + STATE(360), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [403347] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16916), 1, anon_sym_DQUOTE, - ACTIONS(15772), 1, + ACTIONS(16918), 1, aux_sym_string_literal_token1, - ACTIONS(15774), 1, + ACTIONS(16920), 1, sym_escape_sequence, - STATE(9439), 1, + STATE(10547), 1, aux_sym_string_literal_repeat1, - [351682] = 5, + [403363] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(16922), 1, + aux_sym_preproc_if_token2, + STATE(10166), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(12384), 1, + sym_enumerator, + [403379] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16924), 1, + anon_sym_EQ, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [403393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15560), 1, + sym_identifier, + ACTIONS(16926), 1, + aux_sym_preproc_if_token2, + STATE(10151), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [403407] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(2772), 1, + sym_field_declaration_list, + STATE(11585), 1, + sym_base_class_clause, + [403423] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16877), 1, + anon_sym_LPAREN, + ACTIONS(16928), 1, + aux_sym_preproc_include_token2, + ACTIONS(16930), 1, + sym_preproc_arg, + STATE(11454), 1, + sym_preproc_params, + [403439] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(16932), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [403455] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13426), 1, anon_sym_LPAREN2, - STATE(5738), 1, - sym_initializer_list, - STATE(5807), 1, + STATE(11441), 1, sym_argument_list, - [351698] = 5, + ACTIONS(16934), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [403469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(15808), 1, + sym_identifier, + ACTIONS(16681), 1, + aux_sym_preproc_if_token2, + STATE(10598), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(12384), 1, + sym_enumerator, + [403485] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9630), 1, anon_sym_LBRACE, - ACTIONS(14676), 1, + ACTIONS(10600), 1, anon_sym_COLON, - STATE(9760), 1, - sym_compound_statement, - STATE(10215), 1, - sym_field_initializer_list, - [351714] = 5, + STATE(4122), 1, + sym_field_declaration_list, + STATE(11772), 1, + sym_base_class_clause, + [403501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(9965), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - STATE(4342), 1, + STATE(8640), 1, sym_field_declaration_list, - STATE(10345), 1, + STATE(11633), 1, sym_base_class_clause, - [351730] = 5, + [403517] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15560), 1, + sym_identifier, + ACTIONS(16936), 1, + aux_sym_preproc_if_token2, + STATE(10600), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [403531] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(16795), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15778), 1, + ACTIONS(16938), 1, anon_sym_GT2, - STATE(9758), 1, + STATE(11230), 1, aux_sym_template_argument_list_repeat1, - [351746] = 5, + [403547] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13298), 1, + ACTIONS(8718), 1, anon_sym_LBRACE, - ACTIONS(15768), 1, - 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, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(9965), 1, - anon_sym_LBRACE, - STATE(4377), 1, + STATE(3130), 1, sym_field_declaration_list, - STATE(10288), 1, + STATE(11435), 1, sym_base_class_clause, - [351778] = 5, + [403563] = 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, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16940), 1, + anon_sym_GT2, + STATE(10844), 1, + aux_sym_template_argument_list_repeat1, + [403579] = 5, + ACTIONS(14830), 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, + ACTIONS(16877), 1, + anon_sym_LPAREN, + ACTIONS(16942), 1, + aux_sym_preproc_include_token2, + ACTIONS(16944), 1, + sym_preproc_arg, + STATE(11810), 1, + sym_preproc_params, + [403595] = 5, + ACTIONS(14830), 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, + ACTIONS(16946), 1, + anon_sym_DQUOTE, + ACTIONS(16948), 1, + aux_sym_string_literal_token1, + ACTIONS(16950), 1, 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, + STATE(10636), 1, + aux_sym_string_literal_repeat1, + [403611] = 5, + ACTIONS(14830), 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(16952), 1, + anon_sym_DQUOTE, + ACTIONS(16954), 1, + aux_sym_string_literal_token1, + ACTIONS(16956), 1, + sym_escape_sequence, + STATE(10651), 1, + aux_sym_string_literal_repeat1, + [403627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(16795), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15788), 1, + ACTIONS(16958), 1, anon_sym_GT2, - STATE(9908), 1, + STATE(10921), 1, aux_sym_template_argument_list_repeat1, - [351870] = 4, - ACTIONS(3), 1, + [403643] = 5, + ACTIONS(14830), 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, + ACTIONS(16960), 1, + anon_sym_DQUOTE, + ACTIONS(16962), 1, + aux_sym_string_literal_token1, + ACTIONS(16964), 1, + sym_escape_sequence, + STATE(10628), 1, + aux_sym_string_literal_repeat1, + [403659] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - ACTIONS(15792), 1, + ACTIONS(16966), 1, anon_sym_SEMI, - STATE(3735), 1, + STATE(3290), 1, sym_template_argument_list, - [351900] = 4, + [403675] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16877), 1, + anon_sym_LPAREN, + ACTIONS(16968), 1, + aux_sym_preproc_include_token2, + ACTIONS(16970), 1, + sym_preproc_arg, + STATE(11567), 1, + sym_preproc_params, + [403691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15794), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(6776), 1, + anon_sym_SEMI, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(2865), 1, + sym_template_argument_list, + [403707] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16803), 1, anon_sym_COMMA, - STATE(9435), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(15797), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [351914] = 5, + ACTIONS(16972), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16974), 1, + anon_sym_LBRACE, + STATE(10837), 1, + aux_sym_base_class_clause_repeat1, + [403723] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16976), 1, + anon_sym_DQUOTE, + ACTIONS(16978), 1, + aux_sym_string_literal_token1, + ACTIONS(16980), 1, + sym_escape_sequence, + STATE(10624), 1, + aux_sym_string_literal_repeat1, + [403739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(2970), 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(11701), 1, + anon_sym_LPAREN2, + STATE(6413), 1, + sym_argument_list, + STATE(6473), 1, + sym_initializer_list, + [403755] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(8297), 1, + ACTIONS(12873), 1, anon_sym_LBRACE, - STATE(2753), 1, + STATE(7711), 1, sym_field_declaration_list, - STATE(10347), 1, + STATE(11706), 1, sym_base_class_clause, - [351946] = 5, + [403771] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(16982), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [403787] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(10578), 1, + sym_splice_type_specifier, + STATE(10684), 1, + sym_splice_specifier, + [403803] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(9242), 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, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(4012), 1, + sym_field_declaration_list, + STATE(11588), 1, + sym_base_class_clause, + [403819] = 4, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15799), 1, - anon_sym_DQUOTE, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(16984), 1, + anon_sym_SQUOTE, + STATE(10567), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16809), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [351978] = 5, - ACTIONS(14065), 1, + [403833] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15805), 1, - anon_sym_DQUOTE, - ACTIONS(15807), 1, + ACTIONS(16779), 1, aux_sym_string_literal_token1, - ACTIONS(15809), 1, + ACTIONS(16781), 1, sym_escape_sequence, - STATE(9620), 1, + ACTIONS(16986), 1, + anon_sym_DQUOTE, + STATE(10583), 1, aux_sym_string_literal_repeat1, - [351994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15813), 1, - anon_sym___attribute, - ACTIONS(15811), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [352006] = 2, + [403849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15815), 4, - anon_sym_SEMI, + ACTIONS(57), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [352016] = 5, + ACTIONS(15613), 1, + anon_sym_COLON, + STATE(11152), 1, + sym_compound_statement, + STATE(11568), 1, + sym_field_initializer_list, + [403865] = 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(57), 1, + anon_sym_LBRACE, + ACTIONS(15613), 1, + anon_sym_COLON, + STATE(11096), 1, + sym_compound_statement, + STATE(11494), 1, + sym_field_initializer_list, + [403881] = 5, 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, + ACTIONS(14175), 1, + anon_sym_LBRACE, + ACTIONS(16789), 1, + anon_sym_LPAREN2, + STATE(6320), 1, + sym_requirement_seq, + STATE(11415), 1, + sym_requires_parameter_list, + [403897] = 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, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(2909), 1, + sym_field_declaration_list, + STATE(11679), 1, + sym_base_class_clause, + [403913] = 4, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15825), 1, + ACTIONS(16988), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(10567), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(16809), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [352074] = 5, - ACTIONS(14065), 1, + [403927] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 1, + anon_sym_LBRACE, + ACTIONS(11701), 1, + anon_sym_LPAREN2, + STATE(6556), 1, + sym_argument_list, + STATE(8309), 1, + sym_initializer_list, + [403943] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16990), 1, + anon_sym_using, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [403957] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(16779), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(16781), 1, sym_escape_sequence, - ACTIONS(15827), 1, + ACTIONS(16992), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10583), 1, aux_sym_string_literal_repeat1, - [352090] = 5, + [403973] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(16994), 1, + anon_sym_SEMI, + STATE(3290), 1, + sym_template_argument_list, + [403989] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(2394), 1, + sym_template_argument_list, + ACTIONS(10096), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [404003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15829), 1, + ACTIONS(16900), 1, sym_identifier, - ACTIONS(15831), 1, + ACTIONS(16996), 1, anon_sym_SEMI, - ACTIONS(15833), 1, + ACTIONS(16998), 1, anon_sym_COLON, - STATE(9367), 1, + STATE(10490), 1, sym_module_name, - [352106] = 5, + [404019] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(8503), 1, + ACTIONS(9242), 1, anon_sym_LBRACE, - STATE(3025), 1, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(3993), 1, sym_field_declaration_list, - STATE(10228), 1, + STATE(11623), 1, sym_base_class_clause, - [352122] = 4, + [404035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15835), 1, + ACTIONS(12959), 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(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17000), 1, + anon_sym_GT2, + STATE(11206), 1, + aux_sym_template_argument_list_repeat1, + [404051] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(16795), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15840), 1, + ACTIONS(17002), 1, anon_sym_GT2, - STATE(9995), 1, + STATE(10932), 1, aux_sym_template_argument_list_repeat1, - [352152] = 5, + [404067] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14203), 1, + anon_sym_LBRACE, + ACTIONS(16789), 1, + anon_sym_LPAREN2, + STATE(5540), 1, + sym_requirement_seq, + STATE(11650), 1, + sym_requires_parameter_list, + [404083] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16803), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(17004), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15842), 1, - anon_sym_GT2, - STATE(9665), 1, - aux_sym_template_argument_list_repeat1, - [352168] = 5, + ACTIONS(17006), 1, + anon_sym_LBRACE, + STATE(11138), 1, + aux_sym_base_class_clause_repeat1, + [404099] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(17008), 1, + anon_sym_DQUOTE, + ACTIONS(17010), 1, + aux_sym_string_literal_token1, + ACTIONS(17012), 1, + sym_escape_sequence, + STATE(10653), 1, + aux_sym_string_literal_repeat1, + [404115] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + anon_sym_LBRACE, + ACTIONS(11631), 1, + anon_sym_LPAREN2, + STATE(6427), 1, + sym_argument_list, + STATE(6456), 1, + sym_initializer_list, + [404131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(11427), 1, + ACTIONS(12873), 1, anon_sym_LBRACE, - STATE(5999), 1, + STATE(7719), 1, sym_field_declaration_list, - STATE(10364), 1, + STATE(11750), 1, sym_base_class_clause, - [352184] = 4, + [404147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, anon_sym_LT, - STATE(2131), 1, + ACTIONS(17014), 1, + anon_sym_SEMI, + STATE(3290), 1, sym_template_argument_list, - ACTIONS(9652), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [352198] = 4, + [404163] = 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, - sym_comment, - ACTIONS(15846), 1, - anon_sym_DQUOTE, - ACTIONS(15848), 1, - aux_sym_string_literal_token1, - ACTIONS(15850), 1, - sym_escape_sequence, - STATE(9473), 1, - aux_sym_string_literal_repeat1, - [352228] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15852), 1, - anon_sym_DQUOTE, - ACTIONS(15854), 1, - aux_sym_string_literal_token1, - ACTIONS(15856), 1, - sym_escape_sequence, - STATE(9500), 1, - aux_sym_string_literal_repeat1, - [352244] = 4, - ACTIONS(14065), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(10595), 1, + sym_splice_type_specifier, + STATE(10684), 1, + sym_splice_specifier, + [404179] = 4, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15858), 1, + ACTIONS(17016), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(10567), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(16809), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [352258] = 5, - ACTIONS(14065), 1, + [404193] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15860), 1, - anon_sym_DQUOTE, - ACTIONS(15862), 1, + ACTIONS(16779), 1, aux_sym_string_literal_token1, - ACTIONS(15864), 1, + ACTIONS(16781), 1, sym_escape_sequence, - STATE(9497), 1, + ACTIONS(17018), 1, + anon_sym_DQUOTE, + STATE(10583), 1, aux_sym_string_literal_repeat1, - [352274] = 4, + [404209] = 5, 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, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(15613), 1, + anon_sym_COLON, + STATE(11379), 1, + sym_compound_statement, + STATE(11618), 1, + sym_field_initializer_list, + [404225] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(17020), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [404241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(2952), 1, anon_sym_LBRACE, - ACTIONS(12755), 1, + ACTIONS(11309), 1, anon_sym_LPAREN2, - STATE(9752), 2, + STATE(6170), 1, sym_argument_list, + STATE(6233), 1, 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, - anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - STATE(2697), 1, - sym_field_declaration_list, - STATE(10454), 1, - sym_base_class_clause, - [352330] = 4, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15874), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [352344] = 5, + [404257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(16795), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15876), 1, + ACTIONS(17022), 1, anon_sym_GT2, - STATE(9737), 1, + STATE(10866), 1, aux_sym_template_argument_list_repeat1, - [352360] = 5, + [404273] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(2396), 1, anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - STATE(5537), 1, - sym_argument_list, - STATE(5538), 1, + STATE(4252), 1, sym_initializer_list, - [352376] = 5, - ACTIONS(14065), 1, + STATE(4288), 1, + sym_argument_list, + [404289] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(15878), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [352392] = 5, + ACTIONS(8414), 1, + anon_sym_LBRACE, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(2899), 1, + sym_field_declaration_list, + STATE(11703), 1, + sym_base_class_clause, + [404305] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(16795), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15880), 1, + ACTIONS(17024), 1, anon_sym_GT2, - STATE(9690), 1, + STATE(10943), 1, aux_sym_template_argument_list_repeat1, - [352408] = 5, - ACTIONS(14065), 1, + [404321] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15882), 1, + ACTIONS(17026), 1, anon_sym_DQUOTE, - ACTIONS(15884), 1, + ACTIONS(17028), 1, aux_sym_string_literal_token1, - ACTIONS(15886), 1, + ACTIONS(17030), 1, sym_escape_sequence, - STATE(9547), 1, + STATE(10663), 1, aux_sym_string_literal_repeat1, - [352424] = 5, + [404337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - STATE(4731), 1, - sym_field_declaration_list, - STATE(10444), 1, - sym_base_class_clause, - [352440] = 5, - ACTIONS(14065), 1, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(17032), 1, + anon_sym_SEMI, + ACTIONS(17034), 1, + anon_sym_noexcept, + STATE(12032), 1, + sym_trailing_return_type, + [404353] = 5, + ACTIONS(3), 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(5992), 1, + anon_sym_LBRACK_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(10554), 1, + sym_splice_type_specifier, + STATE(10684), 1, + sym_splice_specifier, + [404369] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - ACTIONS(15894), 1, + ACTIONS(17036), 1, anon_sym_SEMI, - STATE(3735), 1, + STATE(3290), 1, sym_template_argument_list, - [352472] = 5, - ACTIONS(14065), 1, + [404385] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(16779), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(16781), 1, sym_escape_sequence, - ACTIONS(15896), 1, - anon_sym_DQUOTE, - STATE(9601), 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, - sym_comment, - ACTIONS(15900), 1, + ACTIONS(17038), 1, anon_sym_DQUOTE, - ACTIONS(15902), 1, - aux_sym_string_literal_token1, - ACTIONS(15904), 1, - sym_escape_sequence, - STATE(9559), 1, + STATE(10583), 1, aux_sym_string_literal_repeat1, - [352518] = 5, + [404401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(17040), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - ACTIONS(15908), 1, anon_sym_EQ, - STATE(435), 1, - sym_declaration_list, - [352534] = 5, - ACTIONS(14065), 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(3), 1, - sym_comment, - ACTIONS(13268), 1, - anon_sym_LBRACE, - ACTIONS(15768), 1, - anon_sym_LPAREN2, - STATE(5671), 1, - sym_requirement_seq, - STATE(10366), 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, + anon_sym_try, + [404411] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15916), 1, + ACTIONS(16803), 1, anon_sym_COMMA, - STATE(9606), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(15918), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [352596] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15920), 1, + ACTIONS(17042), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(15924), 1, + ACTIONS(17044), 1, anon_sym_LBRACE, - STATE(10026), 1, + STATE(11176), 1, aux_sym_base_class_clause_repeat1, - [352612] = 5, + [404427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13348), 1, + ACTIONS(57), 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(15613), 1, + anon_sym_COLON, + STATE(11067), 1, + sym_compound_statement, + STATE(11644), 1, + sym_field_initializer_list, + [404443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9314), 1, - anon_sym_LBRACE, - STATE(7713), 1, - sym_field_declaration_list, - STATE(10466), 1, - sym_base_class_clause, - [352644] = 5, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17046), 1, + anon_sym_GT2, + STATE(11264), 1, + aux_sym_template_argument_list_repeat1, + [404459] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(9314), 1, + ACTIONS(10602), 1, anon_sym_LBRACE, - STATE(7717), 1, + STATE(5191), 1, sym_field_declaration_list, - STATE(10467), 1, + STATE(11757), 1, sym_base_class_clause, - [352660] = 5, - ACTIONS(14065), 1, + [404475] = 4, + ACTIONS(3), 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, + ACTIONS(17048), 1, + anon_sym___except, + ACTIONS(17050), 1, + anon_sym___finally, + STATE(1284), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [404489] = 5, + ACTIONS(3), 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, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17052), 1, + anon_sym_GT2, + STATE(10956), 1, + aux_sym_template_argument_list_repeat1, + [404505] = 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(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(17054), 1, + anon_sym_SEMI, + STATE(3290), 1, + sym_template_argument_list, + [404521] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(9438), 1, + STATE(10634), 1, sym_splice_type_specifier, - STATE(9605), 1, + STATE(10684), 1, sym_splice_specifier, - [352722] = 5, - ACTIONS(14065), 1, + [404537] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(14138), 1, + anon_sym_LBRACE, + ACTIONS(16789), 1, + anon_sym_LPAREN2, + STATE(5596), 1, + sym_requirement_seq, + STATE(11466), 1, + sym_requires_parameter_list, + [404553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17056), 1, + anon_sym___except, + ACTIONS(17058), 1, + anon_sym___finally, + STATE(644), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [404567] = 4, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(17060), 1, + anon_sym_SQUOTE, + STATE(10567), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16809), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - ACTIONS(15934), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [352738] = 5, + [404581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - STATE(5807), 1, - sym_argument_list, - STATE(7256), 1, - sym_initializer_list, - [352754] = 5, + ACTIONS(15613), 1, + anon_sym_COLON, + STATE(11186), 1, + sym_compound_statement, + STATE(11665), 1, + sym_field_initializer_list, + [404597] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(8269), 1, + ACTIONS(10822), 1, anon_sym_LBRACE, - STATE(2820), 1, + STATE(5305), 1, sym_field_declaration_list, - STATE(10485), 1, + STATE(11402), 1, sym_base_class_clause, - [352770] = 5, - ACTIONS(14065), 1, + [404613] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15936), 1, + ACTIONS(17062), 1, anon_sym_DQUOTE, - ACTIONS(15938), 1, + ACTIONS(17064), 1, aux_sym_string_literal_token1, - ACTIONS(15940), 1, + ACTIONS(17066), 1, sym_escape_sequence, - STATE(9539), 1, + STATE(10708), 1, aux_sym_string_literal_repeat1, - [352786] = 4, - ACTIONS(14065), 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, - sym_escape_sequence, - [352800] = 4, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15944), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [352814] = 5, - ACTIONS(14065), 1, + [404629] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15946), 1, + ACTIONS(17068), 1, anon_sym_DQUOTE, - ACTIONS(15948), 1, + ACTIONS(17070), 1, aux_sym_string_literal_token1, - ACTIONS(15950), 1, + ACTIONS(17072), 1, sym_escape_sequence, - STATE(9557), 1, + STATE(10699), 1, aux_sym_string_literal_repeat1, - [352830] = 4, - 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, + [404645] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(15954), 1, + ACTIONS(17074), 1, anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [352860] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15801), 1, + ACTIONS(17076), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(17078), 1, sym_escape_sequence, - ACTIONS(15956), 1, - anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10705), 1, aux_sym_string_literal_repeat1, - [352876] = 5, + [404661] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15958), 1, - anon_sym_GT2, - STATE(9781), 1, - aux_sym_template_argument_list_repeat1, - [352892] = 5, - ACTIONS(14065), 1, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(10684), 1, + sym_splice_specifier, + STATE(10714), 1, + sym_splice_type_specifier, + [404677] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(17080), 1, + anon_sym_DQUOTE, + ACTIONS(17082), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(17084), 1, sym_escape_sequence, - ACTIONS(15960), 1, - anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10726), 1, aux_sym_string_literal_repeat1, - [352908] = 4, - ACTIONS(3), 1, + [404693] = 5, + ACTIONS(14830), 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(16877), 1, + anon_sym_LPAREN, + ACTIONS(17086), 1, + aux_sym_preproc_include_token2, + ACTIONS(17088), 1, + sym_preproc_arg, + STATE(11727), 1, + sym_preproc_params, + [404709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15768), 1, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + ACTIONS(7447), 2, anon_sym_LPAREN2, - ACTIONS(15964), 1, anon_sym_LBRACE, - STATE(3006), 1, - sym_requirement_seq, - STATE(10331), 1, - sym_requires_parameter_list, - [352938] = 4, + [404723] = 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(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(17090), 1, + anon_sym_SEMI, + STATE(3290), 1, + sym_template_argument_list, + [404739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(8297), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2733), 1, - sym_field_declaration_list, - STATE(10291), 1, - sym_base_class_clause, - [352968] = 4, + ACTIONS(15613), 1, + anon_sym_COLON, + STATE(11298), 1, + sym_compound_statement, + STATE(11687), 1, + sym_field_initializer_list, + [404755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15190), 1, + ACTIONS(17040), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - STATE(9584), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [352982] = 5, - ACTIONS(14065), 1, + anon_sym_try, + [404765] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15968), 1, - anon_sym_DQUOTE, - ACTIONS(15970), 1, - aux_sym_string_literal_token1, - ACTIONS(15972), 1, - sym_escape_sequence, - STATE(9582), 1, - aux_sym_string_literal_repeat1, - [352998] = 5, - ACTIONS(14065), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(17092), 1, + anon_sym_SEMI, + STATE(3290), 1, + sym_template_argument_list, + [404781] = 5, + ACTIONS(3), 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(3155), 1, + anon_sym_LBRACE, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(6170), 1, + sym_argument_list, + STATE(6770), 1, + sym_initializer_list, + [404797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(10602), 1, anon_sym_LBRACE, - STATE(4718), 1, + STATE(5211), 1, sym_field_declaration_list, - STATE(10239), 1, + STATE(11499), 1, sym_base_class_clause, - [353030] = 5, + [404813] = 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, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17094), 1, + anon_sym_GT2, + STATE(10968), 1, + aux_sym_template_argument_list_repeat1, + [404829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13279), 1, + ACTIONS(2396), 1, anon_sym_LBRACE, - ACTIONS(15768), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - STATE(5141), 1, - sym_requirement_seq, - STATE(10515), 1, - sym_requires_parameter_list, - [353062] = 5, + STATE(4267), 1, + sym_initializer_list, + STATE(4271), 1, + sym_argument_list, + [404845] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(5969), 1, - sym_initializer_list, - [353078] = 5, + ACTIONS(5992), 1, + anon_sym_LBRACK_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(10684), 1, + sym_splice_specifier, + STATE(10799), 1, + sym_splice_type_specifier, + [404861] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16877), 1, + anon_sym_LPAREN, + ACTIONS(17096), 1, + aux_sym_preproc_include_token2, + ACTIONS(17098), 1, + sym_preproc_arg, + STATE(11501), 1, + sym_preproc_params, + [404877] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(8503), 1, + ACTIONS(14106), 1, anon_sym_LBRACE, - STATE(3036), 1, - sym_field_declaration_list, - STATE(10568), 1, - sym_base_class_clause, - [353094] = 5, - ACTIONS(14065), 1, + ACTIONS(16789), 1, + anon_sym_LPAREN2, + STATE(3852), 1, + sym_requirement_seq, + STATE(11416), 1, + sym_requires_parameter_list, + [404893] = 4, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15982), 1, - anon_sym_DQUOTE, - ACTIONS(15984), 1, - aux_sym_string_literal_token1, - ACTIONS(15986), 1, + ACTIONS(17100), 1, + anon_sym_SQUOTE, + STATE(10567), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16809), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - STATE(9540), 1, - aux_sym_string_literal_repeat1, - [353110] = 4, + [404907] = 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(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17102), 1, + anon_sym_GT2, + STATE(10973), 1, + aux_sym_template_argument_list_repeat1, + [404923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5992), 1, anon_sym_LBRACK_COLON, - STATE(3808), 1, + STATE(3495), 1, sym__splice_specialization_specifier, - STATE(9525), 1, + STATE(10646), 1, sym_splice_type_specifier, - STATE(9605), 1, + STATE(10684), 1, sym_splice_specifier, - [353140] = 4, - ACTIONS(3), 1, + [404939] = 5, + ACTIONS(14830), 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, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(17104), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [404955] = 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(4682), 1, + anon_sym_LBRACE, + ACTIONS(9662), 1, + anon_sym_LPAREN2, + STATE(4288), 1, + sym_argument_list, + STATE(6698), 1, + sym_initializer_list, + [404971] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15994), 1, + ACTIONS(17106), 1, anon_sym_COMMA, - STATE(9600), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(15996), 2, + STATE(10787), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(17108), 2, anon_sym_RPAREN, anon_sym_COLON, - [353182] = 5, + [404985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(14676), 1, + ACTIONS(10600), 1, anon_sym_COLON, - STATE(9774), 1, - sym_compound_statement, - STATE(10287), 1, - sym_field_initializer_list, - [353198] = 4, - ACTIONS(14065), 1, + ACTIONS(10834), 1, + anon_sym_LBRACE, + STATE(5468), 1, + sym_field_declaration_list, + STATE(11399), 1, + sym_base_class_clause, + [405001] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15998), 1, + ACTIONS(14195), 1, + anon_sym_LBRACE, + ACTIONS(16789), 1, + anon_sym_LPAREN2, + STATE(7509), 1, + sym_requirement_seq, + STATE(11561), 1, + sym_requires_parameter_list, + [405017] = 4, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(17110), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(10567), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(16809), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [353212] = 4, - ACTIONS(14065), 1, + [405031] = 5, + ACTIONS(14830), 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, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, sym_escape_sequence, - [353226] = 4, + ACTIONS(17112), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [405047] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(16002), 1, + ACTIONS(12959), 1, 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, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17114), 1, + anon_sym_GT2, + STATE(10979), 1, + aux_sym_template_argument_list_repeat1, + [405063] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16006), 1, - anon_sym_EQ, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353254] = 4, - ACTIONS(3), 1, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(12545), 1, + anon_sym_LBRACE, + STATE(7375), 1, + sym_field_declaration_list, + STATE(11608), 1, + sym_base_class_clause, + [405079] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15184), 1, - anon_sym_EQ, - STATE(9514), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353268] = 5, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(17116), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [405095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(12545), 1, anon_sym_LBRACE, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - STATE(3887), 1, - sym_initializer_list, - STATE(3892), 1, - sym_argument_list, - [353284] = 5, + STATE(7371), 1, + sym_field_declaration_list, + STATE(11431), 1, + sym_base_class_clause, + [405111] = 4, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(17118), 1, + anon_sym_SQUOTE, + STATE(10567), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16809), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [405125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15829), 1, - sym_identifier, - ACTIONS(16008), 1, - anon_sym_SEMI, - ACTIONS(16010), 1, + ACTIONS(10600), 1, anon_sym_COLON, - STATE(9345), 1, - sym_module_name, - [353300] = 2, + ACTIONS(10834), 1, + anon_sym_LBRACE, + STATE(5480), 1, + sym_field_declaration_list, + STATE(11411), 1, + sym_base_class_clause, + [405141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15640), 4, - anon_sym_SEMI, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17120), 1, + anon_sym_GT2, + STATE(10986), 1, + aux_sym_template_argument_list_repeat1, + [405157] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17122), 1, + anon_sym_COMMA, + STATE(10790), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(17124), 2, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_DOT, - [353310] = 5, + [405171] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(2970), 1, anon_sym_LBRACE, - ACTIONS(10900), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - STATE(5772), 1, - sym_argument_list, - STATE(5843), 1, + STATE(6443), 1, sym_initializer_list, - [353326] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16012), 1, - anon_sym_EQ, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353340] = 4, + STATE(6556), 1, + sym_argument_list, + [405187] = 5, 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(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17126), 1, + anon_sym_GT2, + STATE(10879), 1, + aux_sym_template_argument_list_repeat1, + [405203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - ACTIONS(16014), 1, + ACTIONS(17128), 1, anon_sym_SEMI, - STATE(3735), 1, + STATE(3290), 1, sym_template_argument_list, - [353370] = 5, + [405219] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(17130), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [405235] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(12384), 1, anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - STATE(5780), 1, - sym_initializer_list, - STATE(5789), 1, - sym_argument_list, - [353386] = 5, + STATE(8632), 1, + sym_field_declaration_list, + STATE(11520), 1, + sym_base_class_clause, + [405251] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(16016), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16018), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - STATE(9740), 1, - aux_sym_base_class_clause_repeat1, - [353402] = 5, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(4146), 1, + sym_field_declaration_list, + STATE(11646), 1, + sym_base_class_clause, + [405267] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13319), 1, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(12315), 1, anon_sym_LBRACE, - ACTIONS(15768), 1, - anon_sym_LPAREN2, - STATE(3648), 1, - sym_requirement_seq, - STATE(10534), 1, - sym_requires_parameter_list, - [353418] = 5, + STATE(7405), 1, + sym_field_declaration_list, + STATE(11785), 1, + sym_base_class_clause, + [405283] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(7378), 1, anon_sym_LBRACE, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - STATE(2140), 1, + STATE(2284), 1, sym_field_declaration_list, - STATE(10253), 1, + STATE(11775), 1, sym_base_class_clause, - [353434] = 5, - ACTIONS(14065), 1, + [405299] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(17132), 1, + anon_sym_DQUOTE, + ACTIONS(17134), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(17136), 1, sym_escape_sequence, - ACTIONS(16020), 1, - anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10548), 1, aux_sym_string_literal_repeat1, - [353450] = 4, + [405315] = 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(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17138), 1, + anon_sym_GT2, + STATE(10993), 1, + aux_sym_template_argument_list_repeat1, + [405331] = 4, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(17140), 1, + anon_sym_SQUOTE, + STATE(10567), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16809), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [405345] = 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, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17142), 1, + anon_sym_GT2, + STATE(11313), 1, + aux_sym_template_argument_list_repeat1, + [405361] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(16779), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(16781), 1, sym_escape_sequence, - ACTIONS(16024), 1, + ACTIONS(17144), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10583), 1, aux_sym_string_literal_repeat1, - [353494] = 5, - ACTIONS(14065), 1, + [405377] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(16026), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [353510] = 5, - ACTIONS(14065), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17146), 1, + anon_sym_EQ, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [405391] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(16028), 1, + ACTIONS(17148), 1, anon_sym_DQUOTE, - ACTIONS(16030), 1, + ACTIONS(17150), 1, aux_sym_string_literal_token1, - ACTIONS(16032), 1, + ACTIONS(17152), 1, sym_escape_sequence, - STATE(9485), 1, + STATE(10752), 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, + [405407] = 5, 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, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17154), 1, + anon_sym_GT2, + STATE(10830), 1, + aux_sym_template_argument_list_repeat1, + [405423] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15204), 1, - anon_sym_EQ, - STATE(9548), 2, + ACTIONS(17156), 1, + anon_sym_using, + STATE(10450), 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, + [405437] = 5, 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(16900), 1, + sym_identifier, + ACTIONS(17158), 1, + anon_sym_SEMI, + ACTIONS(17160), 1, + anon_sym_COLON, + STATE(10447), 1, + sym_module_name, + [405453] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(17162), 1, + anon_sym_DQUOTE, + ACTIONS(17164), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(17166), 1, sym_escape_sequence, - ACTIONS(16040), 1, - anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10794), 1, aux_sym_string_literal_repeat1, - [353616] = 4, + [405469] = 5, 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, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17168), 1, + anon_sym_GT2, + STATE(10999), 1, + aux_sym_template_argument_list_repeat1, + [405485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9317), 1, anon_sym_LT, - ACTIONS(16044), 1, + ACTIONS(17170), 1, anon_sym_SEMI, - STATE(3735), 1, + STATE(3290), 1, sym_template_argument_list, - [353646] = 5, + [405501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9314), 1, + ACTIONS(7923), 1, anon_sym_LBRACE, - STATE(3935), 1, - sym_field_declaration_list, - STATE(10309), 1, - sym_base_class_clause, - [353662] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, + ACTIONS(17172), 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(17174), 1, + anon_sym_EQ, + STATE(801), 1, + sym_declaration_list, + [405517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(16795), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16048), 1, + ACTIONS(17176), 1, anon_sym_GT2, - STATE(9789), 1, + STATE(11004), 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, - sym_comment, - ACTIONS(16056), 1, - anon_sym_DQUOTE, - ACTIONS(16058), 1, - aux_sym_string_literal_token1, - ACTIONS(16060), 1, - sym_escape_sequence, - STATE(9568), 1, - aux_sym_string_literal_repeat1, - [353726] = 5, + [405533] = 4, 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17178), 1, + anon_sym_EQ, + STATE(10767), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [405547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(17106), 1, + anon_sym_COMMA, + STATE(10701), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(17180), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - STATE(9327), 1, - sym_field_declaration_list, - STATE(10543), 1, - sym_base_class_clause, - [353758] = 5, - ACTIONS(14065), 1, + [405561] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(16779), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(16781), 1, sym_escape_sequence, - ACTIONS(16062), 1, + ACTIONS(17182), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10583), 1, aux_sym_string_literal_repeat1, - [353774] = 5, - ACTIONS(14065), 1, + [405577] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(16064), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [353790] = 5, - ACTIONS(14065), 1, + ACTIONS(16734), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_DOT, + [405587] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(17184), 1, + anon_sym_DQUOTE, + ACTIONS(17186), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(17188), 1, sym_escape_sequence, - ACTIONS(16066), 1, - anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10757), 1, aux_sym_string_literal_repeat1, - [353806] = 5, + [405603] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15768), 1, - anon_sym_LPAREN2, - ACTIONS(16068), 1, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(10912), 1, anon_sym_LBRACE, - STATE(8422), 1, - sym_requirement_seq, - STATE(10555), 1, - sym_requires_parameter_list, - [353822] = 5, - ACTIONS(3), 1, + STATE(5950), 1, + sym_field_declaration_list, + STATE(11496), 1, + sym_base_class_clause, + [405619] = 5, + ACTIONS(14830), 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(16877), 1, + anon_sym_LPAREN, + ACTIONS(17190), 1, + aux_sym_preproc_include_token2, + ACTIONS(17192), 1, + sym_preproc_arg, + STATE(11422), 1, + sym_preproc_params, + [405635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(7943), 1, + anon_sym_LBRACE, + ACTIONS(17172), 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, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15162), 1, + ACTIONS(17194), 1, anon_sym_EQ, - STATE(9433), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353868] = 4, - ACTIONS(14065), 1, + STATE(846), 1, + sym_declaration_list, + [405651] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(16074), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16076), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [353882] = 5, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(10822), 1, + anon_sym_LBRACE, + STATE(5301), 1, + sym_field_declaration_list, + STATE(11763), 1, + sym_base_class_clause, + [405667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(4960), 1, anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(11701), 1, anon_sym_LPAREN2, - STATE(5862), 1, + STATE(6413), 1, sym_argument_list, - STATE(7380), 1, + STATE(8213), 1, sym_initializer_list, - [353898] = 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(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9314), 1, - anon_sym_LBRACE, - STATE(3855), 1, - sym_field_declaration_list, - STATE(10265), 1, - sym_base_class_clause, - [353930] = 5, - ACTIONS(14065), 1, + [405683] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(17196), 1, + anon_sym_DQUOTE, + ACTIONS(17198), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(17200), 1, sym_escape_sequence, - ACTIONS(16079), 1, - anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10575), 1, aux_sym_string_literal_repeat1, - [353946] = 4, - 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, + [405699] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(8269), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(2834), 1, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(2724), 1, sym_field_declaration_list, - STATE(10517), 1, + STATE(11471), 1, sym_base_class_clause, - [353976] = 4, - ACTIONS(14065), 1, + [405715] = 4, + ACTIONS(14830), 1, sym_comment, - ACTIONS(16085), 1, + ACTIONS(17202), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(10567), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(16809), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [353990] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - STATE(9338), 1, - sym_field_declaration_list, - STATE(10545), 1, - sym_base_class_clause, - [354006] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(5969), 1, - sym_initializer_list, - [354022] = 4, - 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, + [405729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(16089), 1, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + ACTIONS(17204), 1, anon_sym_SEMI, - ACTIONS(16091), 1, - anon_sym_noexcept, - STATE(11555), 1, - sym_trailing_return_type, - [354052] = 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(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16093), 1, - anon_sym_GT2, - STATE(10160), 1, - aux_sym_template_argument_list_repeat1, - [354084] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - STATE(5862), 1, - sym_argument_list, - STATE(5876), 1, - sym_initializer_list, - [354100] = 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(9613), 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, + STATE(3290), 1, + sym_template_argument_list, + [405745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(16795), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16099), 1, + ACTIONS(17206), 1, anon_sym_GT2, - STATE(9828), 1, + STATE(10847), 1, aux_sym_template_argument_list_repeat1, - [354148] = 5, - ACTIONS(14065), 1, + [405761] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(16779), 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(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, - anon_sym_COLON, - [354178] = 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(16781), 1, + sym_escape_sequence, + ACTIONS(17208), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [405777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(8158), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - STATE(2671), 1, + STATE(7408), 1, sym_field_declaration_list, - STATE(10351), 1, + STATE(11797), 1, sym_base_class_clause, - [354208] = 5, - ACTIONS(14065), 1, + [405793] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(16110), 1, - anon_sym_DQUOTE, - ACTIONS(16112), 1, - aux_sym_string_literal_token1, - ACTIONS(16114), 1, - sym_escape_sequence, - STATE(9498), 1, - aux_sym_string_literal_repeat1, - [354224] = 5, + ACTIONS(10600), 1, + anon_sym_COLON, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(6977), 1, + sym_field_declaration_list, + STATE(11790), 1, + sym_base_class_clause, + [405809] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(9246), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - STATE(4385), 1, + STATE(6984), 1, sym_field_declaration_list, - STATE(10358), 1, + STATE(11791), 1, sym_base_class_clause, - [354240] = 5, + [405825] = 5, 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(7941), 1, + anon_sym_LBRACE, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + ACTIONS(17210), 1, + anon_sym_EQ, + STATE(954), 1, + sym_declaration_list, + [405841] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15912), 1, - anon_sym_LPAREN, - ACTIONS(16118), 1, - aux_sym_preproc_include_token2, - ACTIONS(16120), 1, - sym_preproc_arg, - STATE(10255), 1, - sym_preproc_params, - [354272] = 3, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(17212), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [405857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12299), 1, - anon_sym___attribute, - ACTIONS(12297), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [354284] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17214), 1, + anon_sym_EQ, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [405871] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16122), 1, - anon_sym___except, - ACTIONS(16124), 1, - anon_sym___finally, - STATE(748), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [354298] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17216), 1, + anon_sym_using, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [405885] = 4, 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, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16157), 1, + anon_sym_EQ, + STATE(10727), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [405899] = 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(9619), 1, - sym_splice_type_specifier, - [354330] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17218), 1, + anon_sym_EQ, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [405913] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16103), 1, + anon_sym_EQ, + STATE(10758), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [405927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(16795), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16128), 1, + ACTIONS(17220), 1, anon_sym_GT2, - STATE(9796), 1, + STATE(11336), 1, aux_sym_template_argument_list_repeat1, - [354346] = 5, + [405943] = 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(17222), 1, + anon_sym_EQ, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [405957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(9490), 1, - sym_splice_type_specifier, - STATE(9605), 1, - sym_splice_specifier, - [354378] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16144), 1, + anon_sym_EQ, + STATE(10761), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [405971] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 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, - 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(12959), 1, + anon_sym_COMMA, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17224), 1, + anon_sym_GT2, + STATE(10947), 1, + aux_sym_template_argument_list_repeat1, + [405987] = 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(17226), 1, + anon_sym_EQ, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [406001] = 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(16113), 1, + anon_sym_EQ, + STATE(10770), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [406015] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(16140), 1, + ACTIONS(17228), 1, anon_sym_DQUOTE, - ACTIONS(16142), 1, + ACTIONS(17230), 1, aux_sym_string_literal_token1, - ACTIONS(16145), 1, + ACTIONS(17232), 1, sym_escape_sequence, - STATE(9601), 1, + STATE(10780), 1, aux_sym_string_literal_repeat1, - [354456] = 5, + [406031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(14676), 1, - anon_sym_COLON, - STATE(9739), 1, - sym_compound_statement, - STATE(10544), 1, - sym_field_initializer_list, - [354472] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17234), 1, + anon_sym_EQ, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [406045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(16148), 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, - sym_comment, - ACTIONS(16152), 1, - anon_sym_DQUOTE, - ACTIONS(16154), 1, - aux_sym_string_literal_token1, - ACTIONS(16156), 1, - sym_escape_sequence, - STATE(9536), 1, - aux_sym_string_literal_repeat1, - [354504] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16202), 1, + anon_sym_EQ, + STATE(10772), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [406059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7090), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [354518] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17236), 1, + anon_sym_EQ, + STATE(10450), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [406073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15916), 1, - 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, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16181), 1, + anon_sym_EQ, + STATE(10776), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [406087] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13309), 1, + ACTIONS(4974), 1, anon_sym_LBRACE, - ACTIONS(15768), 1, + ACTIONS(9662), 1, anon_sym_LPAREN2, - STATE(5259), 1, - sym_requirement_seq, - STATE(10473), 1, - sym_requires_parameter_list, - [354548] = 4, + STATE(4271), 1, + sym_argument_list, + STATE(6708), 1, + sym_initializer_list, + [406103] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9690), 1, + anon_sym_LBRACE, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(4404), 1, + sym_field_declaration_list, + STATE(11600), 1, + sym_base_class_clause, + [406119] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16160), 1, - anon_sym_using, - STATE(9354), 2, + ACTIONS(17238), 1, + anon_sym_EQ, + STATE(10450), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [354562] = 5, + [406133] = 5, 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(5992), 1, + anon_sym_LBRACK_COLON, + STATE(3495), 1, + sym__splice_specialization_specifier, + STATE(10656), 1, + sym_splice_type_specifier, + STATE(10684), 1, + sym_splice_specifier, + [406149] = 4, + ACTIONS(14830), 1, sym_comment, - ACTIONS(16164), 1, + ACTIONS(17240), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(10567), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(16809), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [354592] = 5, + [406163] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9246), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - STATE(3917), 1, - sym_field_declaration_list, - STATE(10574), 1, - sym_base_class_clause, - [354608] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(9246), 1, - anon_sym_LBRACE, - STATE(3936), 1, + STATE(10515), 1, sym_field_declaration_list, - STATE(10575), 1, + STATE(11812), 1, sym_base_class_clause, - [354624] = 5, - ACTIONS(3), 1, + [406179] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - STATE(3892), 1, - sym_argument_list, - STATE(5964), 1, - sym_initializer_list, - [354640] = 5, - ACTIONS(14065), 1, + ACTIONS(16779), 1, + aux_sym_string_literal_token1, + ACTIONS(16781), 1, + sym_escape_sequence, + ACTIONS(17242), 1, + anon_sym_DQUOTE, + STATE(10583), 1, + aux_sym_string_literal_repeat1, + [406195] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(16166), 1, + ACTIONS(17244), 1, anon_sym_DQUOTE, - ACTIONS(16168), 1, + ACTIONS(17246), 1, aux_sym_string_literal_token1, - ACTIONS(16170), 1, + ACTIONS(17248), 1, sym_escape_sequence, - STATE(9626), 1, + STATE(10795), 1, aux_sym_string_literal_repeat1, - [354656] = 5, + [406211] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9246), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(4389), 1, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(2729), 1, sym_field_declaration_list, - STATE(10401), 1, + STATE(11481), 1, sym_base_class_clause, - [354672] = 5, - ACTIONS(3), 1, + [406227] = 4, + ACTIONS(14830), 1, sym_comment, - ACTIONS(7373), 1, - anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - ACTIONS(16172), 1, - anon_sym_EQ, - STATE(861), 1, - sym_declaration_list, - [354688] = 5, + ACTIONS(17250), 1, + anon_sym_SQUOTE, + STATE(10567), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16809), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [406241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16174), 1, - anon_sym_GT2, - STATE(9747), 1, - aux_sym_template_argument_list_repeat1, - [354704] = 5, - ACTIONS(14065), 1, + ACTIONS(17252), 1, + anon_sym___except, + ACTIONS(17254), 1, + anon_sym___finally, + STATE(698), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [406255] = 5, + ACTIONS(3), 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, + ACTIONS(9630), 1, + anon_sym_LBRACE, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(10518), 1, + sym_field_declaration_list, + STATE(11814), 1, + sym_base_class_clause, + [406271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, + ACTIONS(3038), 1, anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(11631), 1, anon_sym_LPAREN2, - STATE(5569), 1, + STATE(6570), 1, sym_argument_list, - STATE(6057), 1, + STATE(6582), 1, sym_initializer_list, - [354736] = 5, - ACTIONS(14065), 1, + [406287] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(16180), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [354752] = 5, + ACTIONS(17256), 1, + anon_sym_COMMA, + STATE(10787), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(17259), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [406301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(14213), 1, anon_sym_LBRACE, - ACTIONS(9230), 1, + ACTIONS(16789), 1, anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(3899), 1, - sym_initializer_list, - [354768] = 5, - ACTIONS(14065), 1, + STATE(5288), 1, + sym_requirement_seq, + STATE(11823), 1, + sym_requires_parameter_list, + [406317] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, - anon_sym_LPAREN, - ACTIONS(16182), 1, - aux_sym_preproc_include_token2, - ACTIONS(16184), 1, - sym_preproc_arg, - STATE(10306), 1, - sym_preproc_params, - [354784] = 4, - ACTIONS(14065), 1, + ACTIONS(8088), 1, + anon_sym_LBRACE, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(2661), 1, + sym_field_declaration_list, + STATE(11445), 1, + sym_base_class_clause, + [406333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17122), 1, + anon_sym_COMMA, + STATE(10584), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(17261), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [406347] = 4, + ACTIONS(14830), 1, sym_comment, - ACTIONS(16186), 1, + ACTIONS(17263), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(10567), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(16809), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [354798] = 5, - ACTIONS(14065), 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, + [406361] = 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(9572), 1, + anon_sym_LBRACE, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(4380), 1, + sym_field_declaration_list, + STATE(11849), 1, + sym_base_class_clause, + [406377] = 4, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(17265), 1, + anon_sym_SQUOTE, + STATE(10567), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16809), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [406391] = 5, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(16779), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(16781), 1, sym_escape_sequence, - ACTIONS(16192), 1, + ACTIONS(17267), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10583), 1, aux_sym_string_literal_repeat1, - [354846] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16194), 1, - anon_sym_GT2, - STATE(9722), 1, - aux_sym_template_argument_list_repeat1, - [354862] = 4, - 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, + [406407] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(16779), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(16781), 1, sym_escape_sequence, - ACTIONS(16200), 1, + ACTIONS(17269), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(10583), 1, aux_sym_string_literal_repeat1, - [354892] = 4, + [406423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16002), 1, + ACTIONS(16881), 1, anon_sym_COMMA, - STATE(9450), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(16202), 2, + STATE(10586), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(17271), 2, anon_sym_RPAREN, anon_sym_COLON, - [354906] = 5, + [406437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16204), 1, - anon_sym_GT2, - STATE(10088), 1, - aux_sym_template_argument_list_repeat1, - [354922] = 5, + ACTIONS(16789), 1, + anon_sym_LPAREN2, + ACTIONS(17273), 1, + anon_sym_LBRACE, + STATE(9016), 1, + sym_requirement_seq, + STATE(11449), 1, + sym_requires_parameter_list, + [406453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(14164), 1, anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - ACTIONS(16206), 1, - anon_sym_EQ, - STATE(664), 1, - sym_declaration_list, - [354938] = 5, - ACTIONS(14065), 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(16789), 1, + anon_sym_LPAREN2, + STATE(5718), 1, + sym_requirement_seq, + STATE(11711), 1, + sym_requires_parameter_list, + [406469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(3155), 1, anon_sym_LBRACE, - ACTIONS(14676), 1, - anon_sym_COLON, - STATE(9904), 1, - sym_compound_statement, - STATE(10363), 1, - sym_field_initializer_list, - [354970] = 5, + ACTIONS(11309), 1, + anon_sym_LPAREN2, + STATE(6364), 1, + sym_argument_list, + STATE(6784), 1, + sym_initializer_list, + [406485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(7939), 1, anon_sym_LBRACE, - ACTIONS(14676), 1, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + ACTIONS(17275), 1, + anon_sym_EQ, + STATE(449), 1, + sym_declaration_list, + [406501] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10600), 1, anon_sym_COLON, - STATE(9894), 1, - sym_compound_statement, - STATE(10312), 1, - sym_field_initializer_list, - [354986] = 5, + ACTIONS(12315), 1, + anon_sym_LBRACE, + STATE(6939), 1, + sym_field_declaration_list, + STATE(11833), 1, + sym_base_class_clause, + [406517] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - ACTIONS(11427), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - STATE(5938), 1, + STATE(6961), 1, sym_field_declaration_list, - STATE(10442), 1, + STATE(11834), 1, sym_base_class_clause, - [355002] = 2, + [406533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15815), 4, - anon_sym_SEMI, + ACTIONS(9690), 1, anon_sym_LBRACE, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(4443), 1, + sym_field_declaration_list, + STATE(11596), 1, + sym_base_class_clause, + [406549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17277), 1, anon_sym_EQ, - anon_sym_try, - [355012] = 5, - ACTIONS(14065), 1, + STATE(10764), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [406563] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(16214), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [355028] = 4, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(15613), 1, + anon_sym_COLON, + STATE(11165), 1, + sym_compound_statement, + STATE(11436), 1, + sym_field_initializer_list, + [406579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10441), 1, - sym_argument_list, - ACTIONS(16216), 2, + ACTIONS(12959), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [355042] = 5, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17279), 1, + anon_sym_GT2, + STATE(10816), 1, + aux_sym_template_argument_list_repeat1, + [406595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13356), 1, - anon_sym_LBRACE, - ACTIONS(15768), 1, + ACTIONS(16789), 1, anon_sym_LPAREN2, - STATE(6492), 1, + ACTIONS(17281), 1, + anon_sym_LBRACE, + STATE(3468), 1, sym_requirement_seq, - STATE(10281), 1, + STATE(11822), 1, sym_requires_parameter_list, - [355058] = 5, - ACTIONS(3), 1, + [406611] = 5, + ACTIONS(14830), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16218), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [355074] = 5, + ACTIONS(17283), 1, + anon_sym_DQUOTE, + ACTIONS(17285), 1, + aux_sym_string_literal_token1, + ACTIONS(17287), 1, + sym_escape_sequence, + STATE(10577), 1, + aux_sym_string_literal_repeat1, + [406627] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(16220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16222), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - STATE(9945), 1, - aux_sym_base_class_clause_repeat1, - [355090] = 5, + ACTIONS(10600), 1, + anon_sym_COLON, + STATE(4378), 1, + sym_field_declaration_list, + STATE(11758), 1, + sym_base_class_clause, + [406643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(15722), 1, - aux_sym_preproc_if_token2, - STATE(9445), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - [355106] = 5, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(11794), 1, + sym_argument_list, + ACTIONS(17289), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [406657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(7378), 1, anon_sym_LBRACE, - ACTIONS(8156), 1, + ACTIONS(10600), 1, anon_sym_COLON, - STATE(2158), 1, + STATE(2291), 1, sym_field_declaration_list, - STATE(10320), 1, + STATE(11755), 1, sym_base_class_clause, - [355122] = 4, + [406673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16224), 1, - anon_sym___except, - ACTIONS(16226), 1, - anon_sym___finally, - STATE(1245), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [355136] = 5, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17291), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [406686] = 2, 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, + ACTIONS(17293), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [406695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16230), 1, + ACTIONS(17295), 1, anon_sym_GT2, - STATE(9805), 1, + STATE(10817), 1, aux_sym_template_argument_list_repeat1, - [355168] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16232), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [355184] = 5, + [406708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16234), 1, + ACTIONS(17297), 1, anon_sym_GT2, - STATE(10129), 1, + STATE(11364), 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(3), 1, - sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - STATE(5569), 1, - sym_argument_list, - STATE(5579), 1, - sym_initializer_list, - [355232] = 5, + [406721] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16242), 1, + ACTIONS(17299), 1, anon_sym_GT2, - STATE(9801), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [355248] = 5, + [406734] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16244), 1, + ACTIONS(17301), 1, anon_sym_GT2, - STATE(9771), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [355264] = 4, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(16246), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [355278] = 5, + [406747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17303), 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, + ACTIONS(17305), 1, + anon_sym_RBRACK, + STATE(11061), 1, + aux_sym_lambda_capture_specifier_repeat1, + [406760] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(16250), 1, - anon_sym_DQUOTE, - ACTIONS(16252), 1, - aux_sym_string_literal_token1, - ACTIONS(16254), 1, - sym_escape_sequence, - STATE(9558), 1, - aux_sym_string_literal_repeat1, - [355310] = 4, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17307), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [406773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10513), 1, - sym_argument_list, - ACTIONS(16256), 2, + ACTIONS(13017), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [355324] = 5, - ACTIONS(14065), 1, + ACTIONS(17309), 1, + anon_sym_RPAREN, + STATE(11033), 1, + aux_sym_argument_list_repeat1, + [406786] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(16258), 1, - anon_sym_DQUOTE, - ACTIONS(16260), 1, - aux_sym_string_literal_token1, - ACTIONS(16262), 1, - sym_escape_sequence, - STATE(9624), 1, - aux_sym_string_literal_repeat1, - [355340] = 5, + ACTIONS(17311), 1, + anon_sym_RPAREN, + ACTIONS(17313), 1, + anon_sym_COLON, + STATE(11046), 1, + sym_gnu_asm_input_operand_list, + [406799] = 4, 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, + ACTIONS(17315), 1, + anon_sym_COMMA, + ACTIONS(17317), 1, + anon_sym_RPAREN, + STATE(11115), 1, + aux_sym_throw_specifier_repeat1, + [406812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(9421), 1, - sym_splice_type_specifier, - STATE(9605), 1, - sym_splice_specifier, - [355372] = 4, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + ACTIONS(17321), 1, + anon_sym_constexpr, + STATE(234), 1, + sym_condition_clause, + [406825] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16264), 1, + ACTIONS(17323), 1, anon_sym_COMMA, - ACTIONS(16267), 1, + ACTIONS(17326), 1, anon_sym_RPAREN, - STATE(9661), 1, - aux_sym_preproc_params_repeat1, - [355385] = 4, + STATE(10824), 1, + aux_sym_requires_parameter_list_repeat1, + [406838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(5946), 1, + anon_sym_RBRACE, + ACTIONS(17328), 1, + anon_sym_COMMA, + STATE(11130), 1, + aux_sym_initializer_list_repeat1, + [406851] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16269), 1, + ACTIONS(17330), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(10900), 1, aux_sym_declaration_repeat1, - [355398] = 4, + [406864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16271), 1, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(17332), 1, + anon_sym_GT2, + STATE(10831), 1, + aux_sym_template_argument_list_repeat1, + [406877] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16274), 1, + ACTIONS(17334), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [355411] = 4, + [406890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16276), 1, + ACTIONS(17336), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [355424] = 4, + [406903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16278), 1, + ACTIONS(17338), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [355437] = 4, + [406916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16280), 1, + ACTIONS(17340), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [355450] = 3, + [406929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 1, - anon_sym___attribute, - ACTIONS(9832), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [355461] = 3, + ACTIONS(13017), 1, + anon_sym_COMMA, + ACTIONS(17342), 1, + anon_sym_RPAREN, + STATE(11033), 1, + aux_sym_argument_list_repeat1, + [406942] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 1, - anon_sym___attribute, - ACTIONS(9770), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [355472] = 4, + ACTIONS(7923), 1, + anon_sym_LBRACE, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + STATE(696), 1, + sym_declaration_list, + [406955] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3370), 1, - anon_sym_while, - ACTIONS(16282), 1, - anon_sym_else, - STATE(597), 1, - sym_else_clause, - [355485] = 2, + ACTIONS(5820), 1, + anon_sym_RBRACE, + ACTIONS(17344), 1, + anon_sym_COMMA, + STATE(11130), 1, + aux_sym_initializer_list_repeat1, + [406968] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16284), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [355494] = 3, + ACTIONS(17313), 1, + anon_sym_COLON, + ACTIONS(17346), 1, + anon_sym_RPAREN, + STATE(11047), 1, + sym_gnu_asm_input_operand_list, + [406981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 1, - anon_sym___attribute, - ACTIONS(9794), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [355505] = 4, + ACTIONS(17348), 1, + anon_sym_COMMA, + ACTIONS(17350), 1, + anon_sym_GT2, + STATE(11122), 1, + aux_sym_template_parameter_list_repeat1, + [406994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 1, - anon_sym_RBRACE, - ACTIONS(16286), 1, + ACTIONS(16803), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [355518] = 4, + ACTIONS(17352), 1, + anon_sym_LBRACE, + STATE(11196), 1, + aux_sym_base_class_clause_repeat1, + [407007] = 4, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(17354), 1, + aux_sym_preproc_include_token2, + ACTIONS(17356), 1, + anon_sym_LPAREN2, + STATE(12420), 1, + sym_preproc_argument_list, + [407020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16288), 1, + ACTIONS(17358), 1, anon_sym_RPAREN, - ACTIONS(16290), 1, + ACTIONS(17360), 1, anon_sym_COLON, - STATE(9895), 1, + STATE(11051), 1, sym_gnu_asm_output_operand_list, - [355531] = 4, + [407033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17313), 1, + anon_sym_COLON, + ACTIONS(17362), 1, + anon_sym_RPAREN, + STATE(10881), 1, + sym_gnu_asm_input_operand_list, + [407046] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16292), 1, + ACTIONS(17364), 1, anon_sym_GT2, - STATE(9900), 1, + STATE(10845), 1, aux_sym_template_argument_list_repeat1, - [355544] = 3, + [407059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 1, - anon_sym___attribute, - ACTIONS(9820), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [355555] = 4, + ACTIONS(17360), 1, + anon_sym_COLON, + ACTIONS(17366), 1, + anon_sym_RPAREN, + STATE(10882), 1, + sym_gnu_asm_output_operand_list, + [407072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16296), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [355568] = 4, + ACTIONS(17368), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16296), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(16298), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [355581] = 4, + ACTIONS(17370), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16300), 1, - anon_sym_RBRACK_RBRACK, - STATE(9683), 1, - aux_sym_attribute_declaration_repeat1, - [355594] = 4, + ACTIONS(17372), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16300), 1, - anon_sym_RBRACK_RBRACK, - STATE(9684), 1, - aux_sym_attribute_declaration_repeat2, - [355607] = 4, + ACTIONS(17374), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16302), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16304), 1, - anon_sym_RBRACK, - STATE(9916), 1, - aux_sym_lambda_capture_specifier_repeat1, - [355620] = 4, + ACTIONS(17376), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(12311), 1, - anon_sym_RPAREN, - STATE(9808), 1, - aux_sym_argument_list_repeat1, - [355633] = 4, + ACTIONS(17378), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(17380), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17382), 2, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(448), 1, - sym_declaration_list, - [355646] = 4, + [407161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16306), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [355659] = 4, + ACTIONS(17384), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(14808), 1, 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, + ACTIONS(17386), 1, anon_sym_SEMI, - STATE(11196), 1, - sym_attribute_declaration, - [355685] = 4, + STATE(10883), 1, + aux_sym_declaration_repeat1, + [407187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12313), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(12315), 1, - anon_sym_RBRACE, - STATE(9817), 1, - aux_sym_initializer_list_repeat1, - [355698] = 4, + ACTIONS(17388), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [407200] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16310), 1, - anon_sym_GT2, - STATE(9691), 1, - aux_sym_template_argument_list_repeat1, - [355711] = 4, + ACTIONS(17390), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [407213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(16314), 1, + ACTIONS(17394), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(10873), 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, + [407226] = 3, 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, + ACTIONS(17396), 1, + anon_sym_catch, + STATE(3372), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [407237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16320), 1, + ACTIONS(17398), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [355763] = 4, + [407250] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16803), 1, anon_sym_COMMA, - ACTIONS(16322), 1, - anon_sym_SEMI, - STATE(9662), 1, - aux_sym_declaration_repeat1, - [355776] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(15174), 1, + ACTIONS(17352), 1, anon_sym_LBRACE, - STATE(10847), 1, - sym_requires_clause, - [355789] = 4, + STATE(11071), 1, + aux_sym_base_class_clause_repeat1, + [407263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(13023), 1, anon_sym_COMMA, - ACTIONS(16324), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [355802] = 4, + ACTIONS(17400), 1, + anon_sym_RBRACK, + STATE(10904), 1, + aux_sym_subscript_argument_list_repeat1, + [407276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16326), 1, - anon_sym_RBRACK_RBRACK, - STATE(9699), 1, - aux_sym_attribute_declaration_repeat1, - [355815] = 4, + ACTIONS(17402), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16326), 1, - anon_sym_RBRACK_RBRACK, - STATE(9700), 1, - aux_sym_attribute_declaration_repeat2, - [355828] = 4, + ACTIONS(17404), 1, + anon_sym_RPAREN, + STATE(10884), 1, + aux_sym_throw_specifier_repeat1, + [407302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16328), 1, - anon_sym_RBRACK_RBRACK, - STATE(9742), 1, - aux_sym_attribute_declaration_repeat1, - [355841] = 4, + ACTIONS(17406), 1, + anon_sym_SEMI, + STATE(10819), 1, + aux_sym_declaration_repeat1, + [407315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16328), 1, - anon_sym_RBRACK_RBRACK, - STATE(9743), 1, - aux_sym_attribute_declaration_repeat2, - [355854] = 4, + ACTIONS(17408), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [407328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16330), 1, + ACTIONS(17412), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(11384), 1, aux_sym_attribute_declaration_repeat1, - [355867] = 4, + [407341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16330), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [355880] = 4, + ACTIONS(17414), 1, + anon_sym_GT2, + STATE(10867), 1, + aux_sym_template_argument_list_repeat1, + [407354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16332), 1, + ACTIONS(17416), 1, anon_sym_GT2, - STATE(9704), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [355893] = 4, + [407367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16334), 1, + ACTIONS(17418), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [355906] = 4, + [407380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16336), 1, + ACTIONS(17420), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [355919] = 4, + [407393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17412), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16338), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [355932] = 4, + STATE(11393), 1, + aux_sym_attribute_declaration_repeat2, + [407406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(12955), 1, + anon_sym_RBRACE, + ACTIONS(13093), 1, + anon_sym_COMMA, + STATE(11183), 1, + aux_sym_initializer_list_repeat1, + [407419] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17424), 1, + anon_sym_RPAREN, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(16340), 1, + STATE(12262), 1, + sym_gnu_asm_goto_list, + [407432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17428), 1, anon_sym_RPAREN, - STATE(9825), 1, - sym_gnu_asm_output_operand_list, - [355945] = 4, + ACTIONS(17430), 1, + anon_sym_COLON, + STATE(10911), 1, + sym_gnu_asm_clobber_list, + [407445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(16342), 1, - anon_sym_GT2, - STATE(9832), 1, - aux_sym_template_argument_list_repeat1, - [355958] = 2, + ACTIONS(13119), 1, + anon_sym_RPAREN, + STATE(10936), 1, + aux_sym_argument_list_repeat1, + [407458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16344), 3, + ACTIONS(17432), 1, anon_sym_COMMA, + ACTIONS(17435), 1, anon_sym_RPAREN, - anon_sym_COLON, - [355967] = 4, + STATE(10873), 1, + aux_sym_parameter_list_repeat1, + [407471] = 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, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + ACTIONS(17437), 1, + anon_sym_constexpr, + STATE(226), 1, + sym_condition_clause, + [407484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16348), 3, + ACTIONS(14808), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [355989] = 4, + ACTIONS(17439), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [407497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16346), 1, - anon_sym_RBRACK_RBRACK, - STATE(10111), 1, - aux_sym_attribute_declaration_repeat2, - [356002] = 3, + ACTIONS(17441), 1, + anon_sym_GT2, + STATE(10880), 1, + aux_sym_template_argument_list_repeat1, + [407510] = 2, 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, + ACTIONS(17443), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [407519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16352), 1, - anon_sym_RBRACK_RBRACK, - STATE(9717), 1, - aux_sym_attribute_declaration_repeat1, - [356026] = 4, + ACTIONS(17445), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16352), 1, - anon_sym_RBRACK_RBRACK, - STATE(9718), 1, - aux_sym_attribute_declaration_repeat2, - [356039] = 4, + ACTIONS(17447), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407545] = 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(12959), 1, + anon_sym_COMMA, + ACTIONS(17449), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(16358), 1, + ACTIONS(17430), 1, + anon_sym_COLON, + ACTIONS(17451), 1, anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [356065] = 4, + STATE(10888), 1, + sym_gnu_asm_clobber_list, + [407571] = 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, + ACTIONS(17313), 1, + anon_sym_COLON, + ACTIONS(17453), 1, + anon_sym_RPAREN, + STATE(10889), 1, + sym_gnu_asm_input_operand_list, + [407584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16360), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [356091] = 4, + ACTIONS(17455), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [407597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16360), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [356104] = 4, + ACTIONS(17457), 1, + anon_sym_RPAREN, + STATE(11115), 1, + aux_sym_throw_specifier_repeat1, + [407610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17360), 1, + anon_sym_COLON, + ACTIONS(17459), 1, + anon_sym_RPAREN, + STATE(10938), 1, + sym_gnu_asm_output_operand_list, + [407623] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16362), 1, + ACTIONS(17461), 1, anon_sym_SEMI, - STATE(9766), 1, + STATE(11170), 1, aux_sym_declaration_repeat1, - [356117] = 4, + [407636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16364), 1, + ACTIONS(17463), 1, anon_sym_GT2, - STATE(9723), 1, + STATE(10948), 1, aux_sym_template_argument_list_repeat1, - [356130] = 4, + [407649] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17426), 1, + anon_sym_COLON, + ACTIONS(17465), 1, + anon_sym_RPAREN, + STATE(12104), 1, + sym_gnu_asm_goto_list, + [407662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17430), 1, + anon_sym_COLON, + ACTIONS(17467), 1, + anon_sym_RPAREN, + STATE(10895), 1, + sym_gnu_asm_clobber_list, + [407675] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16366), 1, + ACTIONS(17469), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(10894), 1, aux_sym_template_argument_list_repeat1, - [356143] = 4, + [407688] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17471), 1, + anon_sym_SEMI, + STATE(11056), 1, + aux_sym_declaration_repeat1, + [407701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16368), 1, + ACTIONS(17473), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356156] = 4, + [407714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16370), 1, + ACTIONS(17475), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356169] = 4, + [407727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16372), 1, - anon_sym_SEMI, - STATE(9935), 1, - aux_sym_declaration_repeat1, - [356182] = 4, + ACTIONS(17477), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [407740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16374), 1, - anon_sym_COMMA, - ACTIONS(16376), 1, + ACTIONS(17426), 1, + anon_sym_COLON, + ACTIONS(17479), 1, anon_sym_RPAREN, - STATE(9786), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [356195] = 4, + STATE(12113), 1, + sym_gnu_asm_goto_list, + [407753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13004), 1, anon_sym_COMMA, - ACTIONS(16378), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356208] = 4, + ACTIONS(17481), 1, + anon_sym_RPAREN, + STATE(11097), 1, + aux_sym_generic_expression_repeat1, + [407766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(17483), 1, anon_sym_COMMA, - ACTIONS(15924), 1, + ACTIONS(17486), 1, anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [356221] = 4, + STATE(10897), 1, + aux_sym_field_initializer_list_repeat1, + [407779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16380), 1, + ACTIONS(17488), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(10958), 1, aux_sym_declaration_repeat1, - [356234] = 4, + [407792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16382), 1, + ACTIONS(17490), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [356247] = 4, + [407805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16384), 1, + ACTIONS(17492), 1, anon_sym_SEMI, - STATE(9845), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [356260] = 4, + [407818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(16386), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356273] = 4, + ACTIONS(17494), 1, + anon_sym_RPAREN, + STATE(10959), 1, + aux_sym_parameter_list_repeat1, + [407831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16388), 1, + ACTIONS(17496), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [356286] = 4, + [407844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(16390), 1, + ACTIONS(17498), 1, anon_sym_RPAREN, - STATE(9846), 1, + STATE(10873), 1, aux_sym_parameter_list_repeat1, - [356299] = 4, + [407857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(13276), 1, + anon_sym_RBRACK, + ACTIONS(17500), 1, anon_sym_COMMA, - ACTIONS(16392), 1, - anon_sym_RPAREN, - STATE(9937), 1, - aux_sym_parameter_list_repeat1, - [356312] = 4, + STATE(10904), 1, + aux_sym_subscript_argument_list_repeat1, + [407870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17503), 1, + anon_sym_catch, + STATE(558), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [407881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16394), 1, + ACTIONS(17505), 1, anon_sym_GT2, - STATE(9738), 1, + STATE(10909), 1, aux_sym_template_argument_list_repeat1, - [356325] = 4, + [407894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16396), 1, + ACTIONS(17507), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356338] = 4, + [407907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16398), 1, + ACTIONS(17509), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356351] = 4, + [407920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16400), 1, + ACTIONS(17511), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 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, + [407933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(13023), 1, anon_sym_COMMA, - ACTIONS(16222), 1, - anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [356388] = 3, + ACTIONS(17513), 1, + anon_sym_RBRACK, + STATE(10904), 1, + aux_sym_subscript_argument_list_repeat1, + [407946] = 4, 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(17426), 1, + anon_sym_COLON, + ACTIONS(17515), 1, + anon_sym_RPAREN, + STATE(12813), 1, + sym_gnu_asm_goto_list, + [407959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16408), 1, + ACTIONS(17517), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(11384), 1, aux_sym_attribute_declaration_repeat1, - [356412] = 4, + [407972] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16408), 1, + ACTIONS(17517), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(11393), 1, aux_sym_attribute_declaration_repeat2, - [356425] = 4, + [407985] = 4, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(17356), 1, + anon_sym_LPAREN2, + ACTIONS(17519), 1, + aux_sym_preproc_include_token2, + STATE(12420), 1, + sym_preproc_argument_list, + [407998] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17313), 1, + anon_sym_COLON, + ACTIONS(17521), 1, + anon_sym_RPAREN, + STATE(11345), 1, + sym_gnu_asm_input_operand_list, + [408011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(12447), 1, + ACTIONS(17523), 1, anon_sym_RPAREN, - STATE(9792), 1, - aux_sym_argument_list_repeat1, - [356438] = 4, + STATE(10873), 1, + aux_sym_parameter_list_repeat1, + [408024] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17315), 1, + anon_sym_COMMA, + ACTIONS(17525), 1, + anon_sym_RPAREN, + STATE(11115), 1, + aux_sym_throw_specifier_repeat1, + [408037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(13004), 1, + anon_sym_COMMA, + ACTIONS(17527), 1, + anon_sym_RPAREN, + STATE(11097), 1, + aux_sym_generic_expression_repeat1, + [408050] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16410), 1, + ACTIONS(17529), 1, anon_sym_GT2, - STATE(9748), 1, + STATE(10922), 1, aux_sym_template_argument_list_repeat1, - [356451] = 4, + [408063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16412), 1, + ACTIONS(17531), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356464] = 4, + [408076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16414), 1, + ACTIONS(17533), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356477] = 4, + [408089] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16416), 1, + ACTIONS(17535), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356490] = 4, + [408102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16418), 1, - anon_sym_COMMA, - ACTIONS(16420), 1, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(16194), 1, anon_sym_LBRACE, - STATE(10196), 1, - aux_sym_field_initializer_list_repeat1, - [356503] = 4, + STATE(12333), 1, + sym_requires_clause, + [408115] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12449), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(12451), 1, - anon_sym_RBRACE, - STATE(9793), 1, - aux_sym_initializer_list_repeat1, - [356516] = 4, + ACTIONS(17537), 1, + anon_sym_RBRACK_RBRACK, + STATE(11220), 1, + aux_sym_attribute_declaration_repeat1, + [408128] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16422), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356529] = 3, + ACTIONS(17537), 1, + anon_sym_RBRACK_RBRACK, + STATE(11240), 1, + aux_sym_attribute_declaration_repeat2, + [408141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16424), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16426), 2, + ACTIONS(14808), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [356540] = 4, + ACTIONS(17539), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [408154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(17541), 3, anon_sym_COMMA, - ACTIONS(12390), 1, - anon_sym_RBRACK, - STATE(9848), 1, - aux_sym_subscript_argument_list_repeat1, - [356553] = 4, + anon_sym_RPAREN, + anon_sym_GT2, + [408163] = 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, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(16127), 1, + anon_sym_LBRACE, + STATE(12382), 1, + sym_requires_clause, + [408176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(16428), 1, + ACTIONS(17543), 1, anon_sym_RPAREN, - STATE(9798), 1, + STATE(11358), 1, sym_gnu_asm_output_operand_list, - [356579] = 4, + [408189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16430), 1, + ACTIONS(17545), 1, anon_sym_GT2, - STATE(9759), 1, + STATE(10933), 1, aux_sym_template_argument_list_repeat1, - [356592] = 4, + [408202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16432), 1, + ACTIONS(17547), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356605] = 4, + [408215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16434), 1, + ACTIONS(17549), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356618] = 4, + [408228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16436), 1, + ACTIONS(17551), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356631] = 3, + [408241] = 3, 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(17553), 1, + anon_sym_EQ, + ACTIONS(16093), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [408252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16440), 1, - anon_sym_GT2, - STATE(9802), 1, - aux_sym_template_argument_list_repeat1, - [356655] = 4, + ACTIONS(17555), 1, + anon_sym_RPAREN, + STATE(11058), 1, + aux_sym_throw_specifier_repeat1, + [408265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(16222), 1, - anon_sym_LBRACE, - STATE(9945), 1, - aux_sym_base_class_clause_repeat1, - [356668] = 3, + ACTIONS(17557), 1, + anon_sym_RPAREN, + STATE(11033), 1, + aux_sym_argument_list_repeat1, + [408278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16442), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16444), 2, - anon_sym_COMMA, + ACTIONS(17561), 1, + anon_sym_COLON_COLON, + ACTIONS(17559), 2, + anon_sym_SEMI, anon_sym_LBRACE, - [356679] = 4, + [408289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16446), 1, - anon_sym_SEMI, - STATE(9811), 1, - aux_sym_declaration_repeat1, - [356692] = 4, + ACTIONS(17313), 1, + anon_sym_COLON, + ACTIONS(17563), 1, + anon_sym_RPAREN, + STATE(10983), 1, + sym_gnu_asm_input_operand_list, + [408302] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16448), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356705] = 4, + ACTIONS(17360), 1, + anon_sym_COLON, + ACTIONS(17565), 1, + anon_sym_RPAREN, + STATE(10988), 1, + sym_gnu_asm_output_operand_list, + [408315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16450), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356718] = 4, + ACTIONS(17567), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [408328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, - sym_identifier, - ACTIONS(15568), 1, - anon_sym_using, - STATE(10283), 1, - sym_attribute, - [356731] = 4, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(17569), 1, + anon_sym_GT2, + STATE(10944), 1, + aux_sym_template_argument_list_repeat1, + [408341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16452), 1, - anon_sym_RPAREN, - STATE(9812), 1, - aux_sym_parameter_list_repeat1, - [356744] = 4, + ACTIONS(17571), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [408354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16454), 1, + ACTIONS(17573), 1, anon_sym_GT2, - STATE(9772), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356757] = 4, + [408367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16456), 1, + ACTIONS(17575), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356770] = 4, + [408380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17577), 1, + anon_sym_SEMI, + STATE(10975), 1, + aux_sym_declaration_repeat1, + [408393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17360), 1, + anon_sym_COLON, + ACTIONS(17579), 1, + anon_sym_RPAREN, + STATE(11105), 1, + sym_gnu_asm_output_operand_list, + [408406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16458), 1, + ACTIONS(17581), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356783] = 4, + [408419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16460), 1, + ACTIONS(17583), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356796] = 4, + [408432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16462), 1, + ACTIONS(17585), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(11202), 1, aux_sym_attribute_declaration_repeat1, - [356809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16464), 1, - anon_sym_catch, - STATE(522), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [356820] = 4, + [408445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(16462), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [356833] = 3, + ACTIONS(13091), 1, + anon_sym_RPAREN, + STATE(11344), 1, + aux_sym_argument_list_repeat1, + [408458] = 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(14808), 1, + anon_sym_COMMA, + ACTIONS(17587), 1, + anon_sym_SEMI, + STATE(10989), 1, + aux_sym_declaration_repeat1, + [408471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16468), 1, - anon_sym_RPAREN, - ACTIONS(16470), 1, - anon_sym_COLON, - STATE(10887), 1, - sym_gnu_asm_goto_list, - [356857] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17589), 1, + anon_sym_SEMI, + STATE(12815), 1, + sym_attribute_declaration, + [408484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16472), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16475), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [356870] = 4, + ACTIONS(17591), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [408497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16477), 1, + ACTIONS(17593), 1, anon_sym_GT2, - STATE(9782), 1, + STATE(10957), 1, aux_sym_template_argument_list_repeat1, - [356883] = 4, + [408510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16479), 1, + ACTIONS(17595), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356896] = 4, + [408523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16481), 1, + ACTIONS(17597), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356909] = 4, + [408536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16483), 1, + ACTIONS(17599), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [356922] = 2, + [408549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16485), 3, + ACTIONS(14808), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [356931] = 2, + ACTIONS(17601), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [408562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16487), 3, + ACTIONS(17392), 1, anon_sym_COMMA, + ACTIONS(17603), 1, anon_sym_RPAREN, - anon_sym_COLON, - [356940] = 4, + STATE(10873), 1, + aux_sym_parameter_list_repeat1, + [408575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(15110), 1, + anon_sym_RPAREN, + ACTIONS(17605), 1, anon_sym_COMMA, - ACTIONS(12402), 1, - anon_sym_RBRACK, - STATE(9942), 1, - aux_sym_subscript_argument_list_repeat1, - [356953] = 4, + STATE(10960), 1, + aux_sym_preproc_argument_list_repeat1, + [408588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16374), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16489), 1, + ACTIONS(17608), 1, anon_sym_RPAREN, - STATE(9820), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [356966] = 4, + STATE(10990), 1, + aux_sym_throw_specifier_repeat1, + [408601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16491), 1, - anon_sym_GT2, - STATE(9790), 1, - aux_sym_template_argument_list_repeat1, - [356979] = 4, + ACTIONS(17610), 1, + anon_sym_RBRACK_RBRACK, + STATE(11101), 1, + aux_sym_attribute_declaration_repeat1, + [408614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16493), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356992] = 4, + ACTIONS(17610), 1, + anon_sym_RBRACK_RBRACK, + STATE(11102), 1, + aux_sym_attribute_declaration_repeat2, + [408627] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7943), 1, + anon_sym_LBRACE, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + STATE(824), 1, + sym_declaration_list, + [408640] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 1, + anon_sym_COLON_COLON, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + [408653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16495), 1, + ACTIONS(17612), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(10969), 1, aux_sym_template_argument_list_repeat1, - [357005] = 4, + [408666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16497), 1, + ACTIONS(17614), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [357018] = 4, + [408679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16499), 1, - anon_sym_RPAREN, - STATE(9688), 1, - aux_sym_parameter_list_repeat1, - [357031] = 4, + ACTIONS(17616), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [408692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16501), 1, - anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [357044] = 4, + ACTIONS(17618), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [408705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 1, - anon_sym_RBRACE, - ACTIONS(16503), 1, + ACTIONS(17620), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [357057] = 4, + ACTIONS(17623), 1, + anon_sym_RPAREN, + STATE(10970), 1, + aux_sym_preproc_params_repeat1, + [408718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16505), 1, + ACTIONS(17625), 1, anon_sym_GT2, - STATE(9797), 1, + STATE(10974), 1, aux_sym_template_argument_list_repeat1, - [357070] = 4, + [408731] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16507), 1, + ACTIONS(17627), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [357083] = 4, + [408744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16509), 1, + ACTIONS(17629), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [357096] = 4, + [408757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16511), 1, + ACTIONS(17631), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [357109] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16513), 1, - anon_sym_RPAREN, - ACTIONS(16515), 1, - anon_sym_COLON, - STATE(9821), 1, - sym_gnu_asm_input_operand_list, - [357122] = 4, + [408770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(16517), 1, - anon_sym_RPAREN, - STATE(9822), 1, - sym_gnu_asm_output_operand_list, - [357135] = 4, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17633), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [408783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16519), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [357148] = 4, + ACTIONS(17635), 1, + anon_sym_RPAREN, + STATE(10822), 1, + aux_sym_throw_specifier_repeat1, + [408796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16521), 1, + ACTIONS(17637), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(10980), 1, aux_sym_template_argument_list_repeat1, - [357161] = 4, + [408809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16523), 1, + ACTIONS(17639), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [357174] = 4, + [408822] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16525), 1, + ACTIONS(17641), 1, anon_sym_GT2, - STATE(9806), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [357187] = 4, + [408835] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16527), 1, + ACTIONS(17643), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [357200] = 4, + [408848] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17645), 1, anon_sym_COMMA, - ACTIONS(16529), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [357213] = 4, + ACTIONS(17648), 1, + anon_sym_RBRACK, + STATE(10981), 1, + aux_sym_lambda_capture_specifier_repeat1, + [408861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16531), 1, + ACTIONS(17650), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [357226] = 4, + [408874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16533), 1, - anon_sym_RPAREN, - ACTIONS(16535), 1, + ACTIONS(17430), 1, anon_sym_COLON, - STATE(10038), 1, + ACTIONS(17652), 1, + anon_sym_RPAREN, + STATE(10995), 1, sym_gnu_asm_clobber_list, - [357239] = 4, + [408887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16537), 1, - anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [357252] = 4, + ACTIONS(17654), 1, + anon_sym_GT2, + STATE(10987), 1, + aux_sym_template_argument_list_repeat1, + [408900] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16539), 1, - anon_sym_SEMI, - STATE(9823), 1, - aux_sym_declaration_repeat1, - [357265] = 4, + ACTIONS(17656), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [408913] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16541), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [357278] = 4, + ACTIONS(17658), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [408926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16543), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [357291] = 4, + ACTIONS(17660), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [408939] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, - anon_sym_COMMA, - ACTIONS(16545), 1, + ACTIONS(17313), 1, + anon_sym_COLON, + ACTIONS(17662), 1, anon_sym_RPAREN, - STATE(10185), 1, - aux_sym_parameter_list_repeat1, - [357304] = 3, + STATE(10996), 1, + sym_gnu_asm_input_operand_list, + [408952] = 4, 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, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17664), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [408965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16547), 1, + ACTIONS(17666), 1, anon_sym_RPAREN, - STATE(9824), 1, + STATE(11115), 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, + [408978] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16549), 1, - anon_sym_RBRACK, - STATE(10201), 1, - aux_sym_subscript_argument_list_repeat1, - [357354] = 4, + ACTIONS(17668), 1, + anon_sym_GT2, + STATE(10994), 1, + aux_sym_template_argument_list_repeat1, + [408991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5774), 1, - anon_sym_RBRACE, - ACTIONS(16551), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [357367] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12404), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [357376] = 4, + ACTIONS(17670), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [409004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(12523), 1, - anon_sym_RPAREN, - STATE(10074), 1, - aux_sym_argument_list_repeat1, - [357389] = 4, + ACTIONS(17672), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [409017] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16553), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16556), 1, - anon_sym_RPAREN, - STATE(9820), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [357402] = 4, + ACTIONS(17674), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [409030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(16558), 1, + ACTIONS(17676), 1, anon_sym_RPAREN, - STATE(9829), 1, - sym_gnu_asm_clobber_list, - [357415] = 4, + STATE(12565), 1, + sym_gnu_asm_goto_list, + [409043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(17430), 1, anon_sym_COLON, - ACTIONS(16560), 1, + ACTIONS(17678), 1, anon_sym_RPAREN, - STATE(9831), 1, - sym_gnu_asm_input_operand_list, - [357428] = 4, + STATE(11001), 1, + sym_gnu_asm_clobber_list, + [409056] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16562), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [357441] = 4, + ACTIONS(17680), 1, + anon_sym_GT2, + STATE(11000), 1, + aux_sym_template_argument_list_repeat1, + [409069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(12959), 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(17682), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [409082] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16570), 1, + ACTIONS(17684), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [357493] = 4, + [409095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16572), 1, + ACTIONS(17686), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [357506] = 4, + [409108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(16574), 1, + ACTIONS(17688), 1, anon_sym_RPAREN, - STATE(11573), 1, + STATE(12600), 1, sym_gnu_asm_goto_list, - [357519] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - ACTIONS(16578), 1, - anon_sym_constexpr, - STATE(217), 1, - sym_condition_clause, - [357532] = 4, + [409121] = 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, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(17690), 1, + anon_sym_GT2, + STATE(11005), 1, + aux_sym_template_argument_list_repeat1, + [409134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16582), 1, + ACTIONS(17692), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 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, + [409147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16586), 1, - anon_sym_RPAREN, - STATE(9715), 1, - aux_sym_throw_specifier_repeat1, - [357582] = 4, + ACTIONS(17694), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [409160] = 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(12959), 1, + anon_sym_COMMA, + ACTIONS(17696), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [409173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(16588), 1, + ACTIONS(17698), 1, anon_sym_RPAREN, - STATE(11601), 1, - sym_gnu_asm_goto_list, - [357608] = 4, + STATE(10821), 1, + sym_gnu_asm_output_operand_list, + [409186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(17303), 1, anon_sym_COMMA, - ACTIONS(16590), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [357621] = 4, - ACTIONS(3), 1, + ACTIONS(17700), 1, + anon_sym_RBRACK, + STATE(10981), 1, + aux_sym_lambda_capture_specifier_repeat1, + [409199] = 4, + ACTIONS(14830), 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(17356), 1, + anon_sym_LPAREN2, + ACTIONS(17702), 1, + aux_sym_preproc_include_token2, + STATE(12420), 1, + sym_preproc_argument_list, + [409212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16594), 3, + ACTIONS(17704), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [357643] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16596), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [357652] = 2, + anon_sym_GT2, + [409221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16598), 3, + ACTIONS(12959), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [357661] = 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(17706), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [409234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17708), 1, anon_sym_COMMA, - ACTIONS(16600), 1, - anon_sym_SEMI, - STATE(9867), 1, - aux_sym_declaration_repeat1, - [357687] = 4, + ACTIONS(17710), 1, + anon_sym_RPAREN, + STATE(10824), 1, + aux_sym_requires_parameter_list_repeat1, + [409247] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16602), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [357700] = 4, + ACTIONS(17712), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [409260] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16604), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [357713] = 4, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + ACTIONS(17714), 1, + anon_sym_constexpr, + STATE(202), 1, + sym_condition_clause, + [409273] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(16606), 1, + ACTIONS(17716), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(11268), 1, aux_sym_parameter_list_repeat1, - [357726] = 3, - ACTIONS(3), 1, + [409286] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(16402), 1, - anon_sym_catch, - STATE(291), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [357737] = 4, + STATE(10650), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17718), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [409297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(13103), 1, anon_sym_COMMA, - ACTIONS(16608), 1, - anon_sym_RBRACK, - STATE(10201), 1, - aux_sym_subscript_argument_list_repeat1, - [357750] = 4, + ACTIONS(13105), 1, + anon_sym_RBRACE, + STATE(11360), 1, + aux_sym_initializer_list_repeat1, + [409310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16610), 1, - anon_sym_RPAREN, - STATE(9871), 1, - aux_sym_throw_specifier_repeat1, - [357763] = 4, + ACTIONS(17585), 1, + anon_sym_RBRACK_RBRACK, + STATE(11251), 1, + aux_sym_attribute_declaration_repeat2, + [409323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16612), 1, - anon_sym_RPAREN, - STATE(9932), 1, - aux_sym_preproc_argument_list_repeat1, - [357776] = 3, + ACTIONS(17720), 1, + anon_sym_RBRACK_RBRACK, + STATE(11048), 1, + aux_sym_attribute_declaration_repeat1, + [409336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10857), 1, - anon_sym_EQ, - ACTIONS(10855), 2, + ACTIONS(17422), 1, anon_sym_COMMA, - anon_sym_GT2, - [357787] = 2, + ACTIONS(17720), 1, + anon_sym_RBRACK_RBRACK, + STATE(11049), 1, + aux_sym_attribute_declaration_repeat2, + [409349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15906), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(7941), 1, anon_sym_LBRACE, - [357796] = 4, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + STATE(995), 1, + sym_declaration_list, + [409362] = 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17722), 1, + anon_sym_SEMI, + STATE(12505), 1, + sym_attribute_declaration, + [409375] = 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17724), 1, + anon_sym_SEMI, + STATE(12510), 1, + sym_attribute_declaration, + [409388] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16626), 1, + ACTIONS(17726), 1, anon_sym_SEMI, - STATE(10632), 1, + STATE(12518), 1, sym_attribute_declaration, - [357835] = 4, + [409401] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16628), 1, + ACTIONS(17728), 1, anon_sym_SEMI, - STATE(10766), 1, + STATE(12685), 1, sym_attribute_declaration, - [357848] = 4, + [409414] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16630), 1, + ACTIONS(17730), 1, anon_sym_SEMI, - STATE(10786), 1, + STATE(12687), 1, sym_attribute_declaration, - [357861] = 4, + [409427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17732), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [409436] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16632), 1, + ACTIONS(17734), 1, anon_sym_SEMI, - STATE(10939), 1, + STATE(12702), 1, sym_attribute_declaration, - [357874] = 3, + [409449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 1, - anon_sym___attribute, - ACTIONS(9948), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [357885] = 3, + ACTIONS(14836), 1, + anon_sym_COMMA, + ACTIONS(17736), 1, + anon_sym_RPAREN, + STATE(10960), 1, + aux_sym_preproc_argument_list_repeat1, + [409462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16438), 1, + ACTIONS(17738), 1, anon_sym_catch, - STATE(520), 2, + STATE(288), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [357896] = 4, + [409473] = 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, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17740), 1, + anon_sym_SEMI, + STATE(12870), 1, + sym_attribute_declaration, + [409486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16638), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16640), 1, + ACTIONS(17742), 1, anon_sym_RPAREN, - STATE(10078), 1, - aux_sym_requires_parameter_list_repeat1, - [357922] = 3, + STATE(10917), 1, + aux_sym_throw_specifier_repeat1, + [409499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16644), 1, - anon_sym_COLON_COLON, - ACTIONS(16642), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [357933] = 4, + ACTIONS(17396), 1, + anon_sym_catch, + STATE(3328), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [409510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(16646), 1, + ACTIONS(13406), 1, anon_sym_RPAREN, - STATE(9876), 1, - sym_gnu_asm_clobber_list, - [357946] = 4, + ACTIONS(17744), 1, + anon_sym_COMMA, + STATE(11033), 1, + aux_sym_argument_list_repeat1, + [409523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(16648), 1, + ACTIONS(17747), 1, anon_sym_RPAREN, - STATE(9877), 1, - sym_gnu_asm_input_operand_list, - [357959] = 4, + STATE(12084), 1, + sym_gnu_asm_goto_list, + [409536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(16650), 1, - anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [357972] = 4, + ACTIONS(17749), 1, + anon_sym_default, + ACTIONS(17751), 1, + anon_sym_delete, + ACTIONS(17753), 1, + aux_sym_pure_virtual_clause_token1, + [409549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17755), 1, + anon_sym_catch, + STATE(422), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [409560] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16652), 1, + ACTIONS(17757), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11064), 1, aux_sym_declaration_repeat1, - [357985] = 4, + [409573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16654), 1, + ACTIONS(17759), 1, anon_sym_RBRACK_RBRACK, - STATE(9880), 1, + STATE(10912), 1, aux_sym_attribute_declaration_repeat1, - [357998] = 4, + [409586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16654), 1, + ACTIONS(17759), 1, anon_sym_RBRACK_RBRACK, - STATE(9881), 1, + STATE(10913), 1, aux_sym_attribute_declaration_repeat2, - [358011] = 4, + [409599] = 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(14808), 1, + anon_sym_COMMA, + ACTIONS(17761), 1, + anon_sym_SEMI, + STATE(11143), 1, + aux_sym_declaration_repeat1, + [409612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(16656), 1, - anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [358037] = 4, + ACTIONS(10284), 1, + anon_sym___attribute, + ACTIONS(10286), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [409623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5760), 1, - anon_sym_RBRACE, - ACTIONS(16658), 1, + ACTIONS(14836), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [358050] = 3, - ACTIONS(3), 1, + ACTIONS(17763), 1, + anon_sym_RPAREN, + STATE(10960), 1, + aux_sym_preproc_argument_list_repeat1, + [409636] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(16660), 1, - anon_sym_catch, - STATE(1116), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [358061] = 4, + STATE(10675), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17765), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [409647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16662), 1, - anon_sym_SEMI, - STATE(9891), 1, - aux_sym_declaration_repeat1, - [358074] = 4, + ACTIONS(17767), 1, + anon_sym_RBRACK_RBRACK, + STATE(11074), 1, + aux_sym_attribute_declaration_repeat1, + [409660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16664), 1, - anon_sym_RPAREN, - STATE(9932), 1, - aux_sym_preproc_argument_list_repeat1, - [358087] = 4, + ACTIONS(17767), 1, + anon_sym_RBRACK_RBRACK, + STATE(11075), 1, + aux_sym_attribute_declaration_repeat2, + [409673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(17430), 1, anon_sym_COLON, - ACTIONS(16666), 1, + ACTIONS(17769), 1, anon_sym_RPAREN, - STATE(10970), 1, - sym_gnu_asm_goto_list, - [358100] = 4, + STATE(11286), 1, + sym_gnu_asm_clobber_list, + [409686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(17430), 1, anon_sym_COLON, - ACTIONS(16668), 1, + ACTIONS(17771), 1, anon_sym_RPAREN, - STATE(9883), 1, + STATE(11078), 1, sym_gnu_asm_clobber_list, - [358113] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16670), 1, - anon_sym_COMMA, - ACTIONS(16672), 1, - anon_sym_RPAREN, - STATE(9661), 1, - aux_sym_preproc_params_repeat1, - [358126] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16418), 1, - anon_sym_COMMA, - ACTIONS(16674), 1, - anon_sym_LBRACE, - STATE(9749), 1, - aux_sym_field_initializer_list_repeat1, - [358139] = 4, + [409699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16676), 1, + ACTIONS(17773), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(11384), 1, aux_sym_attribute_declaration_repeat1, - [358152] = 4, + [409712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16676), 1, + ACTIONS(17773), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(11393), 1, aux_sym_attribute_declaration_repeat2, - [358165] = 4, + [409725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(12459), 1, + ACTIONS(13207), 1, anon_sym_RPAREN, - STATE(9902), 1, + STATE(11076), 1, aux_sym_argument_list_repeat1, - [358178] = 4, + [409738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(17313), 1, anon_sym_COLON, - ACTIONS(16678), 1, + ACTIONS(17775), 1, anon_sym_RPAREN, - STATE(11006), 1, - sym_gnu_asm_goto_list, - [358191] = 4, + STATE(11092), 1, + sym_gnu_asm_input_operand_list, + [409751] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3380), 1, + anon_sym_while, + ACTIONS(17777), 1, + anon_sym_else, + STATE(636), 1, + sym_else_clause, + [409764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12461), 1, + ACTIONS(13209), 1, anon_sym_COMMA, - ACTIONS(12463), 1, + ACTIONS(13211), 1, anon_sym_RBRACE, - STATE(9903), 1, + STATE(11082), 1, aux_sym_initializer_list_repeat1, - [358204] = 4, + [409777] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(17779), 1, + anon_sym_LBRACE, + STATE(12130), 1, + sym_requires_clause, + [409790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16680), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [358217] = 4, + ACTIONS(17781), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [409803] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17783), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [409816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(16682), 1, + ACTIONS(17785), 1, anon_sym_RPAREN, - STATE(9905), 1, + STATE(11084), 1, sym_gnu_asm_output_operand_list, - [358230] = 4, + [409829] = 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, + ACTIONS(17315), 1, + anon_sym_COMMA, + ACTIONS(17787), 1, + anon_sym_RPAREN, + STATE(11115), 1, + aux_sym_throw_specifier_repeat1, + [409842] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(16173), 1, + anon_sym_LBRACE, + STATE(12645), 1, + sym_requires_clause, + [409855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16684), 1, + ACTIONS(17789), 1, anon_sym_GT2, - STATE(9909), 1, + STATE(11088), 1, aux_sym_template_argument_list_repeat1, - [358256] = 4, + [409868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17303), 1, anon_sym_COMMA, - ACTIONS(16686), 1, + ACTIONS(17791), 1, + anon_sym_RBRACK, + STATE(10981), 1, + aux_sym_lambda_capture_specifier_repeat1, + [409881] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17793), 1, anon_sym_SEMI, - STATE(9912), 1, + STATE(11091), 1, aux_sym_declaration_repeat1, - [358269] = 4, + [409894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16688), 1, + ACTIONS(17795), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [358282] = 4, + [409907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16690), 1, + ACTIONS(17797), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [358295] = 4, + [409920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(16692), 1, + ACTIONS(17799), 1, anon_sym_RPAREN, - STATE(9913), 1, + STATE(11093), 1, aux_sym_parameter_list_repeat1, - [358308] = 4, + [409933] = 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(17360), 1, + anon_sym_COLON, + ACTIONS(17801), 1, + anon_sym_RPAREN, + STATE(10915), 1, + sym_gnu_asm_output_operand_list, + [409946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16696), 1, + ACTIONS(17755), 1, anon_sym_catch, - STATE(2545), 2, + STATE(545), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [358332] = 4, + [409957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(16698), 1, - anon_sym_RPAREN, - STATE(9985), 1, - sym_gnu_asm_input_operand_list, - [358345] = 4, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + ACTIONS(17803), 1, + anon_sym_constexpr, + STATE(189), 1, + sym_condition_clause, + [409970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(16700), 1, - anon_sym_RPAREN, - STATE(9986), 1, - sym_gnu_asm_output_operand_list, - [358358] = 4, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17805), 1, + anon_sym_SEMI, + STATE(11353), 1, + aux_sym_declaration_repeat1, + [409983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17807), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17809), 2, anon_sym_COMMA, - ACTIONS(16702), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [358371] = 4, + anon_sym_LBRACE, + [409994] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16803), 1, + anon_sym_COMMA, + ACTIONS(17811), 1, + anon_sym_LBRACE, + STATE(11196), 1, + aux_sym_base_class_clause_repeat1, + [410007] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16704), 1, + ACTIONS(17813), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11012), 1, aux_sym_template_argument_list_repeat1, - [358384] = 4, + [410020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9471), 1, + ACTIONS(17348), 1, anon_sym_COMMA, - ACTIONS(16706), 1, - anon_sym_RBRACK, - STATE(10180), 1, - aux_sym_structured_binding_declarator_repeat1, - [358397] = 4, + ACTIONS(17815), 1, + anon_sym_GT2, + STATE(10836), 1, + aux_sym_template_parameter_list_repeat1, + [410033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16708), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [358410] = 4, + ACTIONS(17817), 1, + anon_sym_RBRACK_RBRACK, + STATE(11384), 1, + aux_sym_attribute_declaration_repeat1, + [410046] = 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(17422), 1, + anon_sym_COMMA, + ACTIONS(17817), 1, + anon_sym_RBRACK_RBRACK, + STATE(11393), 1, + aux_sym_attribute_declaration_repeat2, + [410059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(16712), 1, + ACTIONS(17819), 1, anon_sym_RPAREN, - STATE(9952), 1, + STATE(11033), 1, aux_sym_argument_list_repeat1, - [358436] = 4, + [410072] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17821), 1, + anon_sym_COMMA, + ACTIONS(17823), 1, + anon_sym_LBRACE, + STATE(11354), 1, + aux_sym_field_initializer_list_repeat1, + [410085] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17426), 1, + anon_sym_COLON, + ACTIONS(17825), 1, + anon_sym_RPAREN, + STATE(12354), 1, + sym_gnu_asm_goto_list, + [410098] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13004), 1, + anon_sym_COMMA, + ACTIONS(17827), 1, + anon_sym_RPAREN, + STATE(11097), 1, + aux_sym_generic_expression_repeat1, + [410111] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17829), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [410120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17831), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [410129] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(5782), 1, anon_sym_RBRACE, - ACTIONS(16714), 1, + ACTIONS(17833), 1, anon_sym_COMMA, - STATE(9972), 1, + STATE(11130), 1, aux_sym_initializer_list_repeat1, - [358449] = 3, + [410142] = 4, 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(17835), 1, + anon_sym_COMMA, + ACTIONS(17837), 1, + anon_sym_RPAREN, + STATE(11100), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [410155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(17313), 1, anon_sym_COLON, - ACTIONS(16716), 1, + ACTIONS(17839), 1, anon_sym_RPAREN, - STATE(9917), 1, + STATE(11109), 1, sym_gnu_asm_input_operand_list, - [358473] = 4, + [410168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(16718), 1, + ACTIONS(17841), 1, anon_sym_RPAREN, - STATE(9918), 1, + STATE(11110), 1, sym_gnu_asm_output_operand_list, - [358486] = 4, + [410181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16720), 1, + ACTIONS(17843), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [358499] = 4, + [410194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16722), 1, + ACTIONS(17845), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [358512] = 4, + [410207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16724), 1, + ACTIONS(17847), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [358525] = 4, + [410220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16726), 1, + ACTIONS(17849), 1, anon_sym_SEMI, - STATE(9919), 1, + STATE(11111), 1, aux_sym_declaration_repeat1, - [358538] = 4, + [410233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16728), 1, + ACTIONS(17851), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [358551] = 4, + [410246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16730), 1, + ACTIONS(17853), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [358564] = 4, + [410259] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17430), 1, + anon_sym_COLON, + ACTIONS(17855), 1, + anon_sym_RPAREN, + STATE(11123), 1, + sym_gnu_asm_clobber_list, + [410272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(16732), 1, + ACTIONS(17857), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(10873), 1, aux_sym_parameter_list_repeat1, - [358577] = 3, + [410285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16696), 1, + ACTIONS(17755), 1, + anon_sym_catch, + STATE(546), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [410296] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17315), 1, + anon_sym_COMMA, + ACTIONS(17859), 1, + anon_sym_RPAREN, + STATE(11112), 1, + aux_sym_throw_specifier_repeat1, + [410309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17861), 1, anon_sym_catch, - STATE(2564), 2, + STATE(628), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [358588] = 4, + [410320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17863), 1, + anon_sym_COMMA, + ACTIONS(17866), 1, + anon_sym_RPAREN, + STATE(11097), 1, + aux_sym_generic_expression_repeat1, + [410333] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17868), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [410342] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17870), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [410351] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17835), 1, + anon_sym_COMMA, + ACTIONS(17872), 1, + anon_sym_RPAREN, + STATE(11108), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [410364] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17410), 1, + anon_sym_COMMA, + ACTIONS(17874), 1, + anon_sym_RBRACK_RBRACK, + STATE(11384), 1, + aux_sym_attribute_declaration_repeat1, + [410377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17422), 1, + anon_sym_COMMA, + ACTIONS(17874), 1, + anon_sym_RBRACK_RBRACK, + STATE(11393), 1, + aux_sym_attribute_declaration_repeat2, + [410390] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17876), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [410399] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13017), 1, + anon_sym_COMMA, + ACTIONS(13109), 1, + anon_sym_RPAREN, + STATE(11195), 1, + aux_sym_argument_list_repeat1, + [410412] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17313), 1, + anon_sym_COLON, + ACTIONS(17878), 1, + anon_sym_RPAREN, + STATE(11291), 1, + sym_gnu_asm_input_operand_list, + [410425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(17880), 1, + anon_sym_GT2, + STATE(11139), 1, + aux_sym_template_argument_list_repeat1, + [410438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + STATE(468), 1, + sym_declaration_list, + [410451] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17882), 1, + anon_sym_COMMA, + ACTIONS(17885), 1, + anon_sym_RPAREN, + STATE(11108), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [410464] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17430), 1, + anon_sym_COLON, + ACTIONS(17887), 1, + anon_sym_RPAREN, + STATE(11116), 1, + sym_gnu_asm_clobber_list, + [410477] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17313), 1, + anon_sym_COLON, + ACTIONS(17889), 1, + anon_sym_RPAREN, + STATE(11117), 1, + sym_gnu_asm_input_operand_list, + [410490] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17891), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [410503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16734), 1, + ACTIONS(17893), 1, anon_sym_RPAREN, - STATE(9920), 1, + STATE(11115), 1, aux_sym_throw_specifier_repeat1, - [358601] = 4, + [410516] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17895), 1, + anon_sym_SEMI, + STATE(12865), 1, + sym_attribute_declaration, + [410529] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17897), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [410538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16302), 1, + ACTIONS(17899), 1, anon_sym_COMMA, - ACTIONS(16736), 1, - anon_sym_RBRACK, - STATE(10189), 1, - aux_sym_lambda_capture_specifier_repeat1, - [358614] = 4, + ACTIONS(17902), 1, + anon_sym_RPAREN, + STATE(11115), 1, + aux_sym_throw_specifier_repeat1, + [410551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(16738), 1, + ACTIONS(17904), 1, anon_sym_RPAREN, - STATE(9922), 1, - sym_gnu_asm_clobber_list, - [358627] = 4, + STATE(12309), 1, + sym_gnu_asm_goto_list, + [410564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(17430), 1, anon_sym_COLON, - ACTIONS(16740), 1, + ACTIONS(17906), 1, anon_sym_RPAREN, - STATE(9923), 1, - sym_gnu_asm_input_operand_list, - [358640] = 4, + STATE(11120), 1, + sym_gnu_asm_clobber_list, + [410577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13111), 1, anon_sym_COMMA, - ACTIONS(16742), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [358653] = 4, + ACTIONS(13113), 1, + anon_sym_RBRACE, + STATE(11199), 1, + aux_sym_initializer_list_repeat1, + [410590] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(17908), 3, anon_sym_COMMA, - ACTIONS(16744), 1, anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [358666] = 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, + anon_sym_COLON, + [410599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(16748), 1, + ACTIONS(17910), 1, anon_sym_RPAREN, - STATE(11279), 1, + STATE(12319), 1, sym_gnu_asm_goto_list, - [358692] = 4, + [410612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(16750), 1, + ACTIONS(13004), 1, + anon_sym_COMMA, + ACTIONS(17912), 1, anon_sym_RPAREN, - STATE(9924), 1, - sym_gnu_asm_clobber_list, - [358705] = 4, + STATE(11097), 1, + aux_sym_generic_expression_repeat1, + [410625] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17914), 1, + anon_sym_COMMA, + ACTIONS(17917), 1, + anon_sym_GT2, + STATE(11122), 1, + aux_sym_template_parameter_list_repeat1, + [410638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(16752), 1, + ACTIONS(17919), 1, anon_sym_RPAREN, - STATE(11283), 1, + STATE(12817), 1, sym_gnu_asm_goto_list, - [358718] = 4, + [410651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(16754), 1, - anon_sym_RPAREN, - STATE(9778), 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, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(17921), 1, + anon_sym_LBRACE, + STATE(12232), 1, + sym_requires_clause, + [410664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16758), 1, - anon_sym_SEMI, - STATE(9751), 1, - aux_sym_declaration_repeat1, - [358755] = 4, + ACTIONS(17923), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [410677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, - anon_sym_COMMA, - ACTIONS(12537), 1, - anon_sym_RBRACK, - STATE(9816), 1, - aux_sym_subscript_argument_list_repeat1, - [358768] = 4, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(16163), 1, + anon_sym_LBRACE, + STATE(12381), 1, + sym_requires_clause, + [410690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(16760), 1, - anon_sym_RPAREN, - STATE(10124), 1, - sym_gnu_asm_input_operand_list, - [358781] = 4, + ACTIONS(10375), 1, + anon_sym___attribute, + ACTIONS(10377), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [410701] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(16762), 1, + ACTIONS(17925), 1, anon_sym_RPAREN, - STATE(10127), 1, + STATE(11225), 1, sym_gnu_asm_output_operand_list, - [358794] = 4, + [410714] = 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(12959), 1, + anon_sym_COMMA, + ACTIONS(17927), 1, + anon_sym_GT2, + STATE(11233), 1, + aux_sym_template_argument_list_repeat1, + [410727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14153), 1, - anon_sym_RPAREN, - ACTIONS(16764), 1, + ACTIONS(13002), 1, + anon_sym_RBRACE, + ACTIONS(17929), 1, anon_sym_COMMA, - STATE(9932), 1, - aux_sym_preproc_argument_list_repeat1, - [358820] = 4, + STATE(11130), 1, + aux_sym_initializer_list_repeat1, + [410740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16767), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17932), 1, anon_sym_SEMI, - STATE(10009), 1, - aux_sym_declaration_repeat1, - [358833] = 4, + STATE(12135), 1, + sym_attribute_declaration, + [410753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16769), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [358846] = 4, + ACTIONS(17934), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [410766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16771), 1, + ACTIONS(17936), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(10828), 1, aux_sym_declaration_repeat1, - [358859] = 4, + [410779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16773), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [358872] = 4, + ACTIONS(7941), 1, + anon_sym_LBRACE, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + STATE(908), 1, + sym_declaration_list, + [410792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, - anon_sym_COMMA, - ACTIONS(16775), 1, - anon_sym_RPAREN, - STATE(10185), 1, - aux_sym_parameter_list_repeat1, - [358885] = 4, - ACTIONS(14065), 1, + ACTIONS(17938), 1, + anon_sym_default, + ACTIONS(17940), 1, + anon_sym_delete, + ACTIONS(17942), 1, + aux_sym_pure_virtual_clause_token1, + [410805] = 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(14808), 1, + anon_sym_COMMA, + ACTIONS(17944), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [410818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16781), 1, + ACTIONS(17946), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [358911] = 3, + [410831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16438), 1, - anon_sym_catch, - STATE(539), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [358922] = 4, + ACTIONS(16803), 1, + anon_sym_COMMA, + ACTIONS(16974), 1, + anon_sym_LBRACE, + STATE(11196), 1, + aux_sym_base_class_clause_repeat1, + [410844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16783), 1, + ACTIONS(17948), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [358935] = 4, + [410857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(13023), 1, anon_sym_COMMA, - ACTIONS(16785), 1, + ACTIONS(13201), 1, anon_sym_RBRACK, - STATE(10201), 1, + STATE(10858), 1, aux_sym_subscript_argument_list_repeat1, - [358948] = 4, + [410870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(16787), 1, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17950), 1, anon_sym_SEMI, - STATE(11214), 1, - sym_trailing_return_type, - [358961] = 4, + STATE(11245), 1, + aux_sym_declaration_repeat1, + [410883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16789), 1, - anon_sym_RPAREN, - STATE(10014), 1, - aux_sym_throw_specifier_repeat1, - [358974] = 4, + ACTIONS(17952), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [410896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16791), 1, - anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [358987] = 3, + ACTIONS(17954), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [410909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16793), 1, + ACTIONS(17956), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16795), 2, + ACTIONS(17958), 2, anon_sym_COMMA, anon_sym_LBRACE, - [358998] = 4, + [410920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(16797), 1, + ACTIONS(17960), 1, anon_sym_RPAREN, - STATE(9932), 1, - aux_sym_preproc_argument_list_repeat1, - [359011] = 4, + STATE(11246), 1, + aux_sym_parameter_list_repeat1, + [410933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16799), 1, - anon_sym_GT2, - STATE(9941), 1, - aux_sym_template_argument_list_repeat1, - [359024] = 4, + ACTIONS(17962), 1, + anon_sym_SEMI, + STATE(10875), 1, + aux_sym_declaration_repeat1, + [410946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(13004), 1, anon_sym_COMMA, - ACTIONS(16801), 1, - anon_sym_RBRACK_RBRACK, - STATE(9967), 1, - aux_sym_attribute_declaration_repeat1, - [359037] = 4, + ACTIONS(17964), 1, + anon_sym_RPAREN, + STATE(11097), 1, + aux_sym_generic_expression_repeat1, + [410959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16801), 1, - anon_sym_RBRACK_RBRACK, - STATE(9968), 1, - aux_sym_attribute_declaration_repeat2, - [359050] = 4, + ACTIONS(17966), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [410972] = 4, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(17356), 1, + anon_sym_LPAREN2, + ACTIONS(17968), 1, + aux_sym_preproc_include_token2, + STATE(12420), 1, + sym_preproc_argument_list, + [410985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(17319), 1, anon_sym_LPAREN2, - ACTIONS(16803), 1, + ACTIONS(17970), 1, anon_sym_constexpr, - STATE(200), 1, + STATE(208), 1, sym_condition_clause, - [359063] = 4, - ACTIONS(3), 1, + [410998] = 3, + ACTIONS(14830), 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, + STATE(10749), 1, aux_sym_char_literal_repeat1, - ACTIONS(16808), 2, + ACTIONS(17972), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [359087] = 4, + [411009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(16791), 1, - anon_sym_LBRACE, - STATE(10199), 1, - aux_sym_base_class_clause_repeat1, - [359100] = 4, + ACTIONS(17738), 1, + anon_sym_catch, + STATE(292), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [411020] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16810), 1, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17974), 1, anon_sym_SEMI, - STATE(11359), 1, - sym_attribute_declaration, - [359113] = 4, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [411033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12295), 1, - anon_sym_RBRACE, - ACTIONS(12535), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - STATE(9672), 1, - aux_sym_initializer_list_repeat1, - [359126] = 2, + ACTIONS(17976), 1, + anon_sym_RBRACK_RBRACK, + STATE(11167), 1, + aux_sym_attribute_declaration_repeat1, + [411046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16812), 3, + ACTIONS(17422), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [359135] = 4, + ACTIONS(17976), 1, + anon_sym_RBRACK_RBRACK, + STATE(11168), 1, + aux_sym_attribute_declaration_repeat2, + [411059] = 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(12959), 1, + anon_sym_COMMA, + ACTIONS(17978), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [411072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16696), 1, - anon_sym_catch, - STATE(2568), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [359159] = 4, + ACTIONS(13023), 1, + anon_sym_COMMA, + ACTIONS(13187), 1, + anon_sym_RBRACK, + STATE(11391), 1, + aux_sym_subscript_argument_list_repeat1, + [411085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16302), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(16814), 1, - anon_sym_RBRACK, - STATE(10189), 1, - aux_sym_lambda_capture_specifier_repeat1, - [359172] = 3, + ACTIONS(17980), 1, + anon_sym_RPAREN, + STATE(10903), 1, + aux_sym_parameter_list_repeat1, + [411098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16816), 1, - anon_sym_EQ, - ACTIONS(15141), 2, + ACTIONS(13023), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [359183] = 4, + ACTIONS(13117), 1, + anon_sym_RBRACK, + STATE(11248), 1, + aux_sym_subscript_argument_list_repeat1, + [411111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16818), 1, + ACTIONS(17982), 1, anon_sym_default, - ACTIONS(16820), 1, + ACTIONS(17984), 1, anon_sym_delete, - ACTIONS(16822), 1, + ACTIONS(17986), 1, aux_sym_pure_virtual_clause_token1, - [359196] = 4, + [411124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17988), 1, + anon_sym_catch, + STATE(1156), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [411135] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16824), 1, + ACTIONS(17990), 1, anon_sym_SEMI, - STATE(9978), 1, + STATE(11182), 1, aux_sym_declaration_repeat1, - [359209] = 4, - ACTIONS(14065), 1, + [411148] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16779), 1, - anon_sym_LPAREN2, - ACTIONS(16826), 1, - aux_sym_preproc_include_token2, - STATE(10803), 1, - sym_preproc_argument_list, - [359222] = 3, + ACTIONS(17172), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [411157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16828), 1, - sym_identifier, - ACTIONS(16830), 2, - anon_sym_COMMA, - anon_sym_GT2, - [359233] = 2, + ACTIONS(17561), 1, + anon_sym_COLON_COLON, + ACTIONS(17992), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [411168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16832), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [359242] = 4, + ACTIONS(17503), 1, + anon_sym_catch, + STATE(550), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [411179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17861), 1, + anon_sym_catch, + STATE(472), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [411190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16834), 1, + ACTIONS(17994), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(11384), 1, aux_sym_attribute_declaration_repeat1, - [359255] = 4, + [411203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16834), 1, + ACTIONS(17994), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(11393), 1, aux_sym_attribute_declaration_repeat2, - [359268] = 4, + [411216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(12469), 1, + ACTIONS(13061), 1, anon_sym_RPAREN, - STATE(9987), 1, + STATE(11200), 1, aux_sym_argument_list_repeat1, - [359281] = 4, + [411229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(17996), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [411242] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13063), 1, anon_sym_COMMA, - ACTIONS(12473), 1, + ACTIONS(13065), 1, anon_sym_RBRACE, - STATE(9988), 1, + STATE(11201), 1, aux_sym_initializer_list_repeat1, - [359294] = 4, + [411255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(17998), 1, + anon_sym_GT2, + STATE(11156), 1, + aux_sym_template_argument_list_repeat1, + [411268] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16575), 1, + sym_identifier, + ACTIONS(16577), 1, + anon_sym_using, + STATE(11864), 1, + sym_attribute, + [411281] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16803), 1, + anon_sym_COMMA, + ACTIONS(17006), 1, + anon_sym_LBRACE, + STATE(11138), 1, + aux_sym_base_class_clause_repeat1, + [411294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(16836), 1, + ACTIONS(18000), 1, anon_sym_RPAREN, - STATE(9991), 1, + STATE(11203), 1, sym_gnu_asm_output_operand_list, - [359307] = 4, + [411307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 1, - anon_sym_RBRACE, - ACTIONS(16838), 1, + ACTIONS(16803), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [359320] = 4, + ACTIONS(17006), 1, + anon_sym_LBRACE, + STATE(11196), 1, + aux_sym_base_class_clause_repeat1, + [411320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16841), 1, + ACTIONS(18002), 1, anon_sym_GT2, - STATE(9996), 1, + STATE(11207), 1, aux_sym_template_argument_list_repeat1, - [359333] = 4, + [411333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(16843), 1, - anon_sym_RBRACK_RBRACK, - STATE(10043), 1, - aux_sym_attribute_declaration_repeat1, - [359346] = 4, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + ACTIONS(18004), 1, + anon_sym_constexpr, + STATE(239), 1, + sym_condition_clause, + [411346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16843), 1, - anon_sym_RBRACK_RBRACK, - STATE(10044), 1, - aux_sym_attribute_declaration_repeat2, - [359359] = 4, + ACTIONS(18006), 1, + anon_sym_SEMI, + STATE(11210), 1, + aux_sym_declaration_repeat1, + [411359] = 3, + ACTIONS(14830), 1, + sym_comment, + STATE(10704), 1, + aux_sym_char_literal_repeat1, + ACTIONS(18008), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [411370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16845), 1, + ACTIONS(18010), 1, anon_sym_SEMI, - STATE(10000), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [359372] = 4, + [411383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16847), 1, + ACTIONS(18012), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [359385] = 4, + [411396] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(5718), 1, + anon_sym_RBRACE, + ACTIONS(18014), 1, anon_sym_COMMA, - ACTIONS(16849), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [359398] = 4, + STATE(11130), 1, + aux_sym_initializer_list_repeat1, + [411409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(16851), 1, + ACTIONS(18016), 1, anon_sym_RPAREN, - STATE(10002), 1, + STATE(11212), 1, aux_sym_parameter_list_repeat1, - [359411] = 3, + [411422] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18018), 1, + anon_sym_COMMA, + ACTIONS(18020), 1, + anon_sym_RPAREN, + STATE(10970), 1, + aux_sym_preproc_params_repeat1, + [411435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16853), 1, + ACTIONS(18022), 1, anon_sym_catch, - STATE(2910), 2, + STATE(2846), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [359422] = 4, + [411446] = 3, 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(18024), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(18026), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [411457] = 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(17410), 1, + anon_sym_COMMA, + ACTIONS(18028), 1, + anon_sym_RBRACK_RBRACK, + STATE(11234), 1, + aux_sym_attribute_declaration_repeat1, + [411470] = 4, + 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(17422), 1, + anon_sym_COMMA, + ACTIONS(18028), 1, + anon_sym_RBRACK_RBRACK, + STATE(11237), 1, + aux_sym_attribute_declaration_repeat2, + [411483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 1, - anon_sym___attribute, - ACTIONS(9878), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [359470] = 4, + ACTIONS(18030), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [411492] = 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(9317), 1, + anon_sym_LT, + ACTIONS(10096), 1, + anon_sym_SEMI, + STATE(2865), 1, + sym_template_argument_list, + [411505] = 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(18032), 1, + anon_sym_default, + ACTIONS(18034), 1, + anon_sym_delete, + ACTIONS(18036), 1, + aux_sym_pure_virtual_clause_token1, + [411518] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9732), 1, + anon_sym_COMMA, + ACTIONS(18038), 1, + anon_sym_RBRACK, + STATE(11194), 1, + aux_sym_structured_binding_declarator_repeat1, + [411531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18040), 1, + anon_sym_COMMA, + ACTIONS(18043), 1, + anon_sym_RBRACK, + STATE(11194), 1, + aux_sym_structured_binding_declarator_repeat1, + [411544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(16865), 1, + ACTIONS(18045), 1, anon_sym_RPAREN, - STATE(9952), 1, + STATE(11033), 1, aux_sym_argument_list_repeat1, - [359509] = 4, + [411557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18026), 1, + anon_sym_LBRACE, + ACTIONS(18047), 1, + anon_sym_COMMA, + STATE(11196), 1, + aux_sym_base_class_clause_repeat1, + [411570] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18050), 1, + anon_sym_COMMA, + ACTIONS(18053), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [411583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5734), 1, + ACTIONS(7939), 1, + anon_sym_LBRACE, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + STATE(537), 1, + sym_declaration_list, + [411596] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5826), 1, anon_sym_RBRACE, - ACTIONS(16867), 1, + ACTIONS(18055), 1, anon_sym_COMMA, - STATE(9972), 1, + STATE(11130), 1, aux_sym_initializer_list_repeat1, - [359522] = 4, + [411609] = 4, ACTIONS(3), 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(13017), 1, + anon_sym_COMMA, + ACTIONS(18057), 1, + anon_sym_RPAREN, + STATE(11033), 1, + aux_sym_argument_list_repeat1, + [411622] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 1, - anon_sym___attribute, - ACTIONS(9882), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [359546] = 4, + ACTIONS(5804), 1, + anon_sym_RBRACE, + ACTIONS(18059), 1, + anon_sym_COMMA, + STATE(11130), 1, + aux_sym_initializer_list_repeat1, + [411635] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(17410), 1, + anon_sym_COMMA, + ACTIONS(18061), 1, + anon_sym_RBRACK_RBRACK, + STATE(11384), 1, + aux_sym_attribute_declaration_repeat1, + [411648] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17313), 1, anon_sym_COLON, - ACTIONS(16875), 1, + ACTIONS(18063), 1, anon_sym_RPAREN, - STATE(10016), 1, + STATE(11221), 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, + [411661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(16879), 1, + ACTIONS(18065), 1, anon_sym_RPAREN, - STATE(10017), 1, + STATE(11222), 1, sym_gnu_asm_output_operand_list, - [359585] = 4, + [411674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16881), 1, + ACTIONS(18067), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [359598] = 4, + [411687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16883), 1, + ACTIONS(18069), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [359611] = 4, + [411700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16885), 1, + ACTIONS(18071), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [359624] = 4, + [411713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16887), 1, + ACTIONS(18073), 1, anon_sym_SEMI, - STATE(10018), 1, + STATE(11223), 1, aux_sym_declaration_repeat1, - [359637] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16889), 1, - anon_sym_SEMI, - STATE(11626), 1, - sym_attribute_declaration, - [359650] = 4, + [411726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16891), 1, + ACTIONS(18075), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [359663] = 4, + [411739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16893), 1, + ACTIONS(18077), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [359676] = 2, + [411752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16895), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [359685] = 4, + ACTIONS(15204), 1, + anon_sym_requires, + ACTIONS(15232), 1, + anon_sym_LBRACE, + STATE(11969), 1, + sym_requires_clause, + [411765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(16897), 1, + ACTIONS(18079), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(10873), 1, aux_sym_parameter_list_repeat1, - [359698] = 3, + [411778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16853), 1, + ACTIONS(18022), 1, anon_sym_catch, - STATE(2924), 2, + STATE(2850), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [359709] = 4, + [411789] = 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(15204), 1, + anon_sym_requires, + ACTIONS(15234), 1, + anon_sym_LBRACE, + STATE(13052), 1, + sym_requires_clause, + [411802] = 3, + ACTIONS(14830), 1, + sym_comment, + STATE(10791), 1, + aux_sym_char_literal_repeat1, + ACTIONS(18081), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [411813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16901), 1, + ACTIONS(18083), 1, anon_sym_RPAREN, - STATE(10019), 1, + STATE(11224), 1, aux_sym_throw_specifier_repeat1, - [359735] = 4, + [411826] = 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(13023), 1, + anon_sym_COMMA, + ACTIONS(13049), 1, + anon_sym_RBRACK, + STATE(10910), 1, + aux_sym_subscript_argument_list_repeat1, + [411839] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16905), 1, + ACTIONS(18085), 1, anon_sym_SEMI, - STATE(11065), 1, + STATE(12540), 1, sym_attribute_declaration, - [359761] = 4, + [411852] = 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(18087), 1, + anon_sym_default, + ACTIONS(18089), 1, + anon_sym_delete, + ACTIONS(18091), 1, + aux_sym_pure_virtual_clause_token1, + [411865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16909), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [359787] = 2, + ACTIONS(18093), 1, + anon_sym_RBRACK_RBRACK, + STATE(11384), 1, + aux_sym_attribute_declaration_repeat1, + [411878] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16895), 3, - anon_sym_COMMA, + ACTIONS(17430), 1, + anon_sym_COLON, + ACTIONS(18095), 1, anon_sym_RPAREN, - anon_sym_GT2, - [359796] = 3, - 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, + STATE(11228), 1, + sym_gnu_asm_clobber_list, + [411891] = 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(17313), 1, + anon_sym_COLON, + ACTIONS(18097), 1, + anon_sym_RPAREN, + STATE(11229), 1, + sym_gnu_asm_input_operand_list, + [411904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16911), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16914), 1, - anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [359833] = 4, + ACTIONS(18099), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [411917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16916), 1, + ACTIONS(18101), 1, anon_sym_RPAREN, - STATE(10013), 1, + STATE(11115), 1, aux_sym_throw_specifier_repeat1, - [359846] = 3, - ACTIONS(14065), 1, - sym_comment, - STATE(9571), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16918), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359857] = 4, + [411930] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(17313), 1, anon_sym_COLON, - ACTIONS(16920), 1, + ACTIONS(18103), 1, anon_sym_RPAREN, - STATE(10022), 1, - sym_gnu_asm_clobber_list, - [359870] = 4, + STATE(11292), 1, + sym_gnu_asm_input_operand_list, + [411943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(16922), 1, + ACTIONS(18105), 1, anon_sym_RPAREN, - STATE(10023), 1, - sym_gnu_asm_input_operand_list, - [359883] = 4, + STATE(11296), 1, + sym_gnu_asm_output_operand_list, + [411956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16924), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [359896] = 4, + ACTIONS(18107), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [411969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(16926), 1, + ACTIONS(17426), 1, + anon_sym_COLON, + ACTIONS(18109), 1, anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [359909] = 4, + STATE(12119), 1, + sym_gnu_asm_goto_list, + [411982] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - ACTIONS(16928), 1, - anon_sym_constexpr, - STATE(203), 1, - sym_condition_clause, - [359922] = 4, + ACTIONS(17430), 1, + anon_sym_COLON, + ACTIONS(18111), 1, + anon_sym_RPAREN, + STATE(11231), 1, + sym_gnu_asm_clobber_list, + [411995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16018), 1, - anon_sym_LBRACE, - STATE(9740), 1, - aux_sym_base_class_clause_repeat1, - [359935] = 4, + ACTIONS(18113), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [412008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(16930), 1, + ACTIONS(18115), 1, anon_sym_RPAREN, - STATE(10857), 1, + STATE(12124), 1, sym_gnu_asm_goto_list, - [359948] = 4, + [412021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(16932), 1, + ACTIONS(13004), 1, + anon_sym_COMMA, + ACTIONS(18117), 1, anon_sym_RPAREN, - STATE(10025), 1, - sym_gnu_asm_clobber_list, - [359961] = 4, + STATE(11097), 1, + aux_sym_generic_expression_repeat1, + [412034] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(18119), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [412047] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17410), 1, + anon_sym_COMMA, + ACTIONS(18121), 1, + anon_sym_RBRACK_RBRACK, + STATE(11384), 1, + aux_sym_attribute_declaration_repeat1, + [412060] = 3, + ACTIONS(14830), 1, + sym_comment, + STATE(10627), 1, + aux_sym_char_literal_repeat1, + ACTIONS(18123), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [412071] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(18125), 1, + anon_sym_SEMI, + STATE(12456), 1, + sym_attribute_declaration, + [412084] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17422), 1, + anon_sym_COMMA, + ACTIONS(18121), 1, + anon_sym_RBRACK_RBRACK, + STATE(11393), 1, + aux_sym_attribute_declaration_repeat2, + [412097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(18127), 1, + anon_sym_SEMI, + STATE(12289), 1, + sym_attribute_declaration, + [412110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(18129), 1, + anon_sym_SEMI, + STATE(12327), 1, + sym_attribute_declaration, + [412123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17422), 1, + anon_sym_COMMA, + ACTIONS(18093), 1, + anon_sym_RBRACK_RBRACK, + STATE(11393), 1, + aux_sym_attribute_declaration_repeat2, + [412136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16934), 1, + ACTIONS(18131), 1, anon_sym_default, - ACTIONS(16936), 1, + ACTIONS(18133), 1, anon_sym_delete, - ACTIONS(16938), 1, + ACTIONS(18135), 1, aux_sym_pure_virtual_clause_token1, - [359974] = 4, + [412149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(16940), 1, - anon_sym_RPAREN, - STATE(10861), 1, - sym_gnu_asm_goto_list, - [359987] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(18137), 1, + anon_sym_SEMI, + STATE(12342), 1, + sym_attribute_declaration, + [412162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16018), 1, - anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [360000] = 4, + ACTIONS(18139), 1, + anon_sym_SEMI, + STATE(11301), 1, + aux_sym_declaration_repeat1, + [412175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16942), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [360013] = 4, + ACTIONS(18141), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [412188] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(16944), 1, + ACTIONS(18143), 1, anon_sym_SEMI, - STATE(10080), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [360026] = 3, + [412201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16946), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16948), 2, + ACTIONS(17392), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [360037] = 4, + ACTIONS(18145), 1, + anon_sym_RPAREN, + STATE(10873), 1, + aux_sym_parameter_list_repeat1, + [412214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16634), 1, - anon_sym_COMMA, - ACTIONS(16950), 1, - anon_sym_GT2, - STATE(10169), 1, - aux_sym_template_parameter_list_repeat1, - [360050] = 4, + ACTIONS(17738), 1, + anon_sym_catch, + STATE(291), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [412225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16952), 1, + ACTIONS(13023), 1, anon_sym_COMMA, - ACTIONS(16955), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [360063] = 4, - ACTIONS(14065), 1, + ACTIONS(18147), 1, + anon_sym_RBRACK, + STATE(10904), 1, + aux_sym_subscript_argument_list_repeat1, + [412238] = 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(10194), 1, + anon_sym___attribute, + ACTIONS(10196), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [412249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16948), 1, - anon_sym_LBRACE, - ACTIONS(16959), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [360089] = 4, + ACTIONS(13181), 1, + anon_sym_RPAREN, + STATE(10832), 1, + aux_sym_argument_list_repeat1, + [412262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16962), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16965), 1, + ACTIONS(18061), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(11393), 1, aux_sym_attribute_declaration_repeat2, - [360102] = 3, - ACTIONS(14065), 1, + [412275] = 3, + ACTIONS(14830), 1, sym_comment, - STATE(9520), 1, + STATE(10696), 1, aux_sym_char_literal_repeat1, - ACTIONS(16967), 2, + ACTIONS(18149), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [360113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16971), 1, - anon_sym_RPAREN, - ACTIONS(16969), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [360124] = 4, - ACTIONS(14065), 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, + [412286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(16975), 1, - anon_sym_RPAREN, - STATE(11173), 1, - sym_gnu_asm_goto_list, - [360150] = 4, + ACTIONS(10198), 1, + anon_sym___attribute, + ACTIONS(10200), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [412297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16977), 1, + ACTIONS(18151), 1, anon_sym_default, - ACTIONS(16979), 1, + ACTIONS(18153), 1, anon_sym_delete, - ACTIONS(16981), 1, + ACTIONS(18155), 1, aux_sym_pure_virtual_clause_token1, - [360163] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(16983), 1, - anon_sym_RBRACK_RBRACK, - STATE(10055), 1, - aux_sym_attribute_declaration_repeat1, - [360176] = 4, + [412310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(16983), 1, - anon_sym_RBRACK_RBRACK, - STATE(10056), 1, - aux_sym_attribute_declaration_repeat2, - [360189] = 4, + ACTIONS(18157), 1, + anon_sym_GT2, + STATE(11265), 1, + aux_sym_template_argument_list_repeat1, + [412323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9471), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(16985), 1, - anon_sym_RBRACK, - STATE(9899), 1, - aux_sym_structured_binding_declarator_repeat1, - [360202] = 4, + ACTIONS(18159), 1, + anon_sym_RPAREN, + STATE(11303), 1, + aux_sym_throw_specifier_repeat1, + [412336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(16987), 1, + ACTIONS(18161), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(11280), 1, aux_sym_attribute_declaration_repeat1, - [360215] = 4, + [412349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(16987), 1, + ACTIONS(18161), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(11281), 1, aux_sym_attribute_declaration_repeat2, - [360228] = 4, + [412362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(7923), 1, + anon_sym_LBRACE, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + STATE(675), 1, + sym_declaration_list, + [412375] = 3, + ACTIONS(14830), 1, + sym_comment, + STATE(10793), 1, + aux_sym_char_literal_repeat1, + ACTIONS(18163), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [412386] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14836), 1, anon_sym_COMMA, - ACTIONS(12431), 1, + ACTIONS(18165), 1, anon_sym_RPAREN, - STATE(10113), 1, - aux_sym_argument_list_repeat1, - [360241] = 3, - ACTIONS(14065), 1, + STATE(10960), 1, + aux_sym_preproc_argument_list_repeat1, + [412399] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(18167), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [412412] = 3, + ACTIONS(14830), 1, sym_comment, - STATE(9545), 1, + STATE(10710), 1, aux_sym_char_literal_repeat1, - ACTIONS(16989), 2, + ACTIONS(18169), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [360252] = 3, + [412423] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(18171), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [412436] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(18173), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [412449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16853), 1, + ACTIONS(18022), 1, anon_sym_catch, - STATE(2906), 2, + STATE(2862), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [360263] = 4, + [412460] = 3, + ACTIONS(14830), 1, + sym_comment, + STATE(10783), 1, + aux_sym_char_literal_repeat1, + ACTIONS(18175), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [412471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(16991), 1, + ACTIONS(17392), 1, + anon_sym_COMMA, + ACTIONS(18177), 1, anon_sym_RPAREN, - STATE(11177), 1, - sym_gnu_asm_goto_list, - [360276] = 3, + STATE(10873), 1, + aux_sym_parameter_list_repeat1, + [412484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16644), 1, - anon_sym_COLON_COLON, - ACTIONS(16993), 2, + ACTIONS(14808), 1, + anon_sym_COMMA, + ACTIONS(18179), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [360287] = 4, + STATE(11295), 1, + aux_sym_declaration_repeat1, + [412497] = 3, + ACTIONS(14830), 1, + sym_comment, + STATE(10633), 1, + aux_sym_char_literal_repeat1, + ACTIONS(18181), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [412508] = 3, + ACTIONS(14830), 1, + sym_comment, + STATE(10724), 1, + aux_sym_char_literal_repeat1, + ACTIONS(18183), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [412519] = 4, 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(18018), 1, + anon_sym_COMMA, + ACTIONS(18185), 1, + anon_sym_RPAREN, + STATE(11185), 1, + aux_sym_preproc_params_repeat1, + [412532] = 3, + ACTIONS(14830), 1, + sym_comment, + STATE(10778), 1, + aux_sym_char_literal_repeat1, + ACTIONS(18187), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [412543] = 3, + ACTIONS(14830), 1, + sym_comment, + STATE(10559), 1, + aux_sym_char_literal_repeat1, + ACTIONS(18189), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [412554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13183), 1, anon_sym_COMMA, - ACTIONS(16995), 1, - anon_sym_SEMI, - STATE(10068), 1, - aux_sym_declaration_repeat1, - [360313] = 4, + ACTIONS(13185), 1, + anon_sym_RBRACE, + STATE(10834), 1, + aux_sym_initializer_list_repeat1, + [412567] = 2, 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(18191), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [412576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(17003), 1, - anon_sym_RPAREN, - STATE(10103), 1, - sym_gnu_asm_clobber_list, - [360339] = 4, + ACTIONS(16795), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(18193), 2, + anon_sym_COMMA, + anon_sym_GT2, + [412587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12433), 1, + ACTIONS(17503), 1, + anon_sym_catch, + STATE(543), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [412598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17303), 1, anon_sym_COMMA, - ACTIONS(12435), 1, - anon_sym_RBRACE, - STATE(10118), 1, - aux_sym_initializer_list_repeat1, - [360352] = 4, + ACTIONS(18195), 1, + anon_sym_RBRACK, + STATE(11007), 1, + aux_sym_lambda_capture_specifier_repeat1, + [412611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(17005), 1, + ACTIONS(18197), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(11384), 1, aux_sym_attribute_declaration_repeat1, - [360365] = 4, + [412624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(17005), 1, + ACTIONS(18197), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(11393), 1, aux_sym_attribute_declaration_repeat2, - [360378] = 4, + [412637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(12483), 1, + ACTIONS(13019), 1, anon_sym_RPAREN, - STATE(10082), 1, + STATE(11383), 1, aux_sym_argument_list_repeat1, - [360391] = 3, - ACTIONS(14065), 1, + [412650] = 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(13017), 1, + anon_sym_COMMA, + ACTIONS(13075), 1, + anon_sym_RPAREN, + STATE(11307), 1, + aux_sym_argument_list_repeat1, + [412663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12553), 1, + ACTIONS(14712), 1, + anon_sym_DASH_GT, + ACTIONS(18199), 1, + anon_sym_SEMI, + STATE(12073), 1, + sym_trailing_return_type, + [412676] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13077), 1, anon_sym_COMMA, - ACTIONS(12555), 1, + ACTIONS(13079), 1, anon_sym_RBRACE, - STATE(10084), 1, + STATE(11309), 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, + [412689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(17011), 1, + ACTIONS(18201), 1, anon_sym_RPAREN, - STATE(10085), 1, - sym_gnu_asm_output_operand_list, - [360439] = 4, + STATE(12413), 1, + sym_gnu_asm_goto_list, + [412702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(17013), 1, + ACTIONS(18203), 1, anon_sym_RPAREN, - STATE(10125), 1, + STATE(11310), 1, sym_gnu_asm_output_operand_list, - [360452] = 4, + [412715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(17015), 1, - anon_sym_GT2, - STATE(10089), 1, - aux_sym_template_argument_list_repeat1, - [360465] = 4, + ACTIONS(18205), 1, + anon_sym_RBRACK_RBRACK, + STATE(11304), 1, + aux_sym_attribute_declaration_repeat1, + [412728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17422), 1, + anon_sym_COMMA, + ACTIONS(18205), 1, + anon_sym_RBRACK_RBRACK, + STATE(11305), 1, + aux_sym_attribute_declaration_repeat2, + [412741] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(17017), 1, + ACTIONS(18207), 1, anon_sym_GT2, - STATE(10130), 1, + STATE(11314), 1, aux_sym_template_argument_list_repeat1, - [360478] = 4, + [412754] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(17019), 1, - anon_sym_RBRACK_RBRACK, - STATE(9676), 1, - aux_sym_attribute_declaration_repeat1, - [360491] = 4, + ACTIONS(17430), 1, + anon_sym_COLON, + ACTIONS(18209), 1, + anon_sym_RPAREN, + STATE(11034), 1, + sym_gnu_asm_clobber_list, + [412767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17430), 1, + anon_sym_COLON, + ACTIONS(18211), 1, + anon_sym_RPAREN, + STATE(11325), 1, + sym_gnu_asm_clobber_list, + [412780] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17021), 1, + ACTIONS(18213), 1, anon_sym_SEMI, - STATE(10093), 1, + STATE(11317), 1, aux_sym_declaration_repeat1, - [360504] = 4, + [412793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17023), 1, + ACTIONS(18215), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [360517] = 4, + [412806] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17025), 1, + ACTIONS(18217), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [360530] = 3, - ACTIONS(14065), 1, + [412819] = 4, + ACTIONS(3), 1, sym_comment, - STATE(9493), 1, - aux_sym_char_literal_repeat1, - ACTIONS(17027), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [360541] = 4, + ACTIONS(17313), 1, + anon_sym_COLON, + ACTIONS(18219), 1, + anon_sym_RPAREN, + STATE(11326), 1, + sym_gnu_asm_input_operand_list, + [412832] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(17029), 1, + ACTIONS(18221), 1, anon_sym_RPAREN, - STATE(10094), 1, + STATE(11319), 1, aux_sym_parameter_list_repeat1, - [360554] = 3, - ACTIONS(14065), 1, - sym_comment, - STATE(9521), 1, - aux_sym_char_literal_repeat1, - ACTIONS(17031), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [360565] = 4, + [412845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, - anon_sym_COMMA, - ACTIONS(17019), 1, - anon_sym_RBRACK_RBRACK, - STATE(9677), 1, - aux_sym_attribute_declaration_repeat2, - [360578] = 3, - ACTIONS(14065), 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(18223), 1, + anon_sym_catch, + STATE(3317), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [412856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(16803), 1, anon_sym_COMMA, - ACTIONS(17035), 1, - anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [360602] = 3, - ACTIONS(14065), 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(17044), 1, + anon_sym_LBRACE, + STATE(11176), 1, + aux_sym_base_class_clause_repeat1, + [412869] = 4, + ACTIONS(3), 1, sym_comment, - STATE(9464), 1, - aux_sym_char_literal_repeat1, - ACTIONS(17039), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [360624] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(18225), 1, + anon_sym_SEMI, + STATE(12052), 1, + sym_attribute_declaration, + [412882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17041), 1, + ACTIONS(18227), 1, anon_sym_SEMI, - STATE(10141), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [360637] = 4, + [412895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16638), 1, + ACTIONS(18231), 1, + anon_sym_RPAREN, + ACTIONS(18229), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [412906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(17043), 1, + ACTIONS(18233), 1, anon_sym_RPAREN, - STATE(10174), 1, - aux_sym_requires_parameter_list_repeat1, - [360650] = 4, + STATE(11115), 1, + aux_sym_throw_specifier_repeat1, + [412919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(17045), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [360663] = 4, + ACTIONS(18235), 1, + anon_sym_RBRACK_RBRACK, + STATE(11384), 1, + aux_sym_attribute_declaration_repeat1, + [412932] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(17047), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [360676] = 4, + ACTIONS(18235), 1, + anon_sym_RBRACK_RBRACK, + STATE(11393), 1, + aux_sym_attribute_declaration_repeat2, + [412945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(17049), 1, - anon_sym_LBRACE, - STATE(11309), 1, - sym_requires_clause, - [360689] = 4, + ACTIONS(17360), 1, + anon_sym_COLON, + ACTIONS(18237), 1, + anon_sym_RPAREN, + STATE(10840), 1, + sym_gnu_asm_output_operand_list, + [412958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(17051), 1, + ACTIONS(18239), 1, anon_sym_RPAREN, - STATE(9952), 1, + STATE(11033), 1, aux_sym_argument_list_repeat1, - [360702] = 4, + [412971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, - anon_sym_COMMA, - ACTIONS(17053), 1, + ACTIONS(13000), 3, anon_sym_RPAREN, - STATE(10147), 1, - aux_sym_parameter_list_repeat1, - [360715] = 4, + anon_sym_SEMI, + anon_sym_COLON, + [412980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5908), 1, + ACTIONS(5830), 1, anon_sym_RBRACE, - ACTIONS(17055), 1, + ACTIONS(18241), 1, anon_sym_COMMA, - STATE(9972), 1, + STATE(11130), 1, aux_sym_initializer_list_repeat1, - [360728] = 4, + [412993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(17313), 1, anon_sym_COLON, - ACTIONS(17057), 1, + ACTIONS(18243), 1, anon_sym_RPAREN, - STATE(10099), 1, + STATE(11327), 1, sym_gnu_asm_input_operand_list, - [360741] = 4, + [413006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(17059), 1, + ACTIONS(18245), 1, anon_sym_RPAREN, - STATE(10100), 1, + STATE(11328), 1, sym_gnu_asm_output_operand_list, - [360754] = 4, + [413019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(17061), 1, + ACTIONS(18247), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [360767] = 4, + [413032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(17063), 1, + ACTIONS(18249), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [360780] = 4, + [413045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(17065), 1, + ACTIONS(18251), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [360793] = 4, + [413058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17067), 1, - anon_sym_RBRACK_RBRACK, - STATE(9773), 1, - aux_sym_attribute_declaration_repeat1, - [360806] = 4, + ACTIONS(18253), 1, + anon_sym_SEMI, + STATE(11329), 1, + aux_sym_declaration_repeat1, + [413071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17069), 1, + ACTIONS(18255), 1, anon_sym_SEMI, - STATE(10101), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [360819] = 4, + [413084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17071), 1, + ACTIONS(18257), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [360832] = 4, + [413097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(11429), 1, + anon_sym_EQ, + ACTIONS(11427), 2, anon_sym_COMMA, - ACTIONS(17073), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [360845] = 4, + anon_sym_GT2, + [413108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(17075), 1, + ACTIONS(18259), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(10873), 1, aux_sym_parameter_list_repeat1, - [360858] = 4, + [413121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18223), 1, + anon_sym_catch, + STATE(3323), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [413132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(17077), 1, + ACTIONS(18261), 1, anon_sym_RPAREN, - STATE(10102), 1, + STATE(11330), 1, aux_sym_throw_specifier_repeat1, - [360871] = 3, + [413145] = 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(12959), 1, + anon_sym_COMMA, + ACTIONS(18263), 1, + anon_sym_GT2, + STATE(10848), 1, + aux_sym_template_argument_list_repeat1, + [413158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 1, - anon_sym___attribute, - ACTIONS(9894), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [360893] = 4, + ACTIONS(17708), 1, + anon_sym_COMMA, + ACTIONS(18265), 1, + anon_sym_RPAREN, + STATE(11011), 1, + aux_sym_requires_parameter_list_repeat1, + [413171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(12439), 1, - anon_sym_RBRACK, - STATE(10149), 1, - aux_sym_subscript_argument_list_repeat1, - [360906] = 4, + ACTIONS(18267), 1, + anon_sym_GT2, + STATE(11337), 1, + aux_sym_template_argument_list_repeat1, + [413184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(17079), 1, + ACTIONS(18269), 1, + anon_sym_RPAREN, + STATE(12675), 1, + sym_gnu_asm_goto_list, + [413197] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17430), 1, + anon_sym_COLON, + ACTIONS(18271), 1, anon_sym_RPAREN, - STATE(10104), 1, + STATE(11338), 1, sym_gnu_asm_clobber_list, - [360919] = 4, + [413210] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(17430), 1, anon_sym_COLON, - ACTIONS(17081), 1, + ACTIONS(18273), 1, anon_sym_RPAREN, - STATE(10105), 1, + STATE(11331), 1, + sym_gnu_asm_clobber_list, + [413223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17313), 1, + anon_sym_COLON, + ACTIONS(18275), 1, + anon_sym_RPAREN, + STATE(11332), 1, sym_gnu_asm_input_operand_list, - [360932] = 4, + [413236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17083), 1, + ACTIONS(18277), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [360945] = 4, + [413249] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(17315), 1, anon_sym_COMMA, - ACTIONS(17085), 1, + ACTIONS(18279), 1, anon_sym_RPAREN, - STATE(10013), 1, + STATE(11115), 1, aux_sym_throw_specifier_repeat1, - [360958] = 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, + [413262] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(17089), 1, + ACTIONS(18281), 1, anon_sym_RPAREN, - STATE(11185), 1, + STATE(12625), 1, sym_gnu_asm_goto_list, - [360984] = 4, + [413275] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(17430), 1, anon_sym_COLON, - ACTIONS(17091), 1, + ACTIONS(18283), 1, anon_sym_RPAREN, - STATE(10106), 1, + STATE(11333), 1, sym_gnu_asm_clobber_list, - [360997] = 4, + [413288] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(17426), 1, anon_sym_COLON, - ACTIONS(17093), 1, + ACTIONS(18285), 1, anon_sym_RPAREN, - STATE(11188), 1, + STATE(12636), 1, sym_gnu_asm_goto_list, - [361010] = 4, + [413301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(13004), 1, anon_sym_COMMA, - ACTIONS(17095), 1, + ACTIONS(18287), 1, anon_sym_RPAREN, - STATE(9778), 1, + STATE(11097), 1, aux_sym_generic_expression_repeat1, - [361023] = 4, + [413314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(17097), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [361036] = 4, + ACTIONS(18289), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [413327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(17067), 1, - anon_sym_RBRACK_RBRACK, - STATE(9775), 1, - aux_sym_attribute_declaration_repeat2, - [361049] = 4, + ACTIONS(18291), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [413340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12959), 1, anon_sym_COMMA, - ACTIONS(17099), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [361062] = 4, + ACTIONS(18293), 1, + anon_sym_GT2, + STATE(11364), 1, + aux_sym_template_argument_list_repeat1, + [413353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, - anon_sym_COMMA, - ACTIONS(17099), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [361075] = 4, + ACTIONS(17426), 1, + anon_sym_COLON, + ACTIONS(18295), 1, + anon_sym_RPAREN, + STATE(12699), 1, + sym_gnu_asm_goto_list, + [413366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10236), 1, + anon_sym___attribute, + ACTIONS(10238), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [413377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10240), 1, + anon_sym___attribute, + ACTIONS(10242), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [413388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16670), 1, + ACTIONS(13004), 1, anon_sym_COMMA, - ACTIONS(17101), 1, + ACTIONS(18297), 1, anon_sym_RPAREN, - STATE(9878), 1, - aux_sym_preproc_params_repeat1, - [361088] = 4, + STATE(11097), 1, + aux_sym_generic_expression_repeat1, + [413401] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16803), 1, + anon_sym_COMMA, + ACTIONS(17044), 1, + anon_sym_LBRACE, + STATE(11196), 1, + aux_sym_base_class_clause_repeat1, + [413414] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(18299), 1, + anon_sym_SEMI, + STATE(12829), 1, + sym_attribute_declaration, + [413427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(17103), 1, + ACTIONS(18301), 1, anon_sym_RPAREN, - STATE(9952), 1, + STATE(11033), 1, aux_sym_argument_list_repeat1, - [361101] = 3, + [413440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(17107), 1, + ACTIONS(17430), 1, + anon_sym_COLON, + ACTIONS(18303), 1, anon_sym_RPAREN, - ACTIONS(17105), 2, - anon_sym_COMMA, + STATE(10870), 1, + sym_gnu_asm_clobber_list, + [413453] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(18305), 1, anon_sym_SEMI, - [361112] = 4, + STATE(12186), 1, + sym_attribute_declaration, + [413466] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(9732), 1, anon_sym_COMMA, - ACTIONS(17109), 1, - anon_sym_RBRACK_RBRACK, - STATE(10132), 1, - aux_sym_attribute_declaration_repeat1, - [361125] = 4, + ACTIONS(18307), 1, + anon_sym_RBRACK, + STATE(11193), 1, + aux_sym_structured_binding_declarator_repeat1, + [413479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17109), 1, - anon_sym_RBRACK_RBRACK, - STATE(10134), 1, - aux_sym_attribute_declaration_repeat2, - [361138] = 4, + ACTIONS(18309), 1, + anon_sym_SEMI, + STATE(10853), 1, + aux_sym_declaration_repeat1, + [413492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(18311), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(18313), 2, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(692), 1, - sym_declaration_list, - [361151] = 4, + [413503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, - anon_sym_RBRACE, - ACTIONS(17111), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [361164] = 3, + ACTIONS(18315), 1, + anon_sym_SEMI, + STATE(11197), 1, + aux_sym_declaration_repeat1, + [413516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16466), 1, - anon_sym_catch, - STATE(396), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [361175] = 4, + ACTIONS(18319), 1, + anon_sym_RPAREN, + ACTIONS(18317), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [413527] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(12539), 1, - anon_sym_RPAREN, - STATE(9866), 1, - aux_sym_argument_list_repeat1, - [361188] = 4, + ACTIONS(7943), 1, + anon_sym_LBRACE, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + STATE(827), 1, + sym_declaration_list, + [413540] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17113), 1, + ACTIONS(18321), 1, anon_sym_SEMI, - STATE(10145), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [361201] = 4, + [413553] = 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(17821), 1, + anon_sym_COMMA, + ACTIONS(18323), 1, + anon_sym_LBRACE, + STATE(10897), 1, + aux_sym_field_initializer_list_repeat1, + [413566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(17117), 1, - anon_sym_SEMI, - STATE(10829), 1, - sym_attribute_declaration, - [361227] = 4, + ACTIONS(18325), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(18327), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [413577] = 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, + ACTIONS(17410), 1, + anon_sym_COMMA, + ACTIONS(18329), 1, + anon_sym_RBRACK_RBRACK, + STATE(11374), 1, + aux_sym_attribute_declaration_repeat1, + [413590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(17422), 1, + anon_sym_COMMA, + ACTIONS(18329), 1, + anon_sym_RBRACK_RBRACK, + STATE(11375), 1, + aux_sym_attribute_declaration_repeat2, + [413603] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17313), 1, anon_sym_COLON, - ACTIONS(17121), 1, + ACTIONS(18331), 1, anon_sym_RPAREN, - STATE(10182), 1, + STATE(10871), 1, sym_gnu_asm_input_operand_list, - [361253] = 4, + [413616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(17123), 1, - anon_sym_RPAREN, - STATE(10183), 1, - sym_gnu_asm_output_operand_list, - [361266] = 4, + ACTIONS(17410), 1, + anon_sym_COMMA, + ACTIONS(18333), 1, + anon_sym_RBRACK_RBRACK, + STATE(11376), 1, + aux_sym_attribute_declaration_repeat1, + [413629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(17125), 1, + ACTIONS(5838), 1, + anon_sym_RBRACE, + ACTIONS(18335), 1, + anon_sym_COMMA, + STATE(11130), 1, + aux_sym_initializer_list_repeat1, + [413642] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17422), 1, + anon_sym_COMMA, + ACTIONS(18333), 1, + anon_sym_RBRACK_RBRACK, + STATE(11378), 1, + aux_sym_attribute_declaration_repeat2, + [413655] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17392), 1, + anon_sym_COMMA, + ACTIONS(18337), 1, anon_sym_RPAREN, - STATE(9807), 1, - sym_gnu_asm_input_operand_list, - [361279] = 4, + STATE(10854), 1, + aux_sym_parameter_list_repeat1, + [413668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(17293), 3, anon_sym_COMMA, - ACTIONS(17127), 1, + anon_sym_RPAREN, anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [361292] = 4, + [413677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(18339), 1, anon_sym_COMMA, - ACTIONS(17129), 1, + ACTIONS(18342), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(11364), 1, aux_sym_template_argument_list_repeat1, - [361305] = 4, + [413690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18223), 1, + anon_sym_catch, + STATE(3326), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [413701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(18344), 1, + sym_identifier, + ACTIONS(18346), 2, anon_sym_COMMA, - ACTIONS(17131), 1, anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [361318] = 4, + [413712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10254), 1, + anon_sym___attribute, + ACTIONS(10256), 2, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - ACTIONS(17133), 1, - anon_sym_SEMI, - STATE(10832), 1, - sym_attribute_declaration, - [361331] = 4, + [413723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(17410), 1, anon_sym_COMMA, - ACTIONS(17135), 1, + ACTIONS(18348), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(10863), 1, aux_sym_attribute_declaration_repeat1, - [361344] = 3, + [413736] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(17137), 2, + ACTIONS(14808), 1, anon_sym_COMMA, - anon_sym_GT2, - [361355] = 4, + ACTIONS(18350), 1, + anon_sym_SEMI, + STATE(11390), 1, + aux_sym_declaration_repeat1, + [413749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10258), 1, + anon_sym___attribute, + ACTIONS(10260), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [413760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(17135), 1, + ACTIONS(18348), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(10868), 1, + aux_sym_attribute_declaration_repeat2, + [413773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10268), 1, + anon_sym___attribute, + ACTIONS(10270), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [413784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10190), 1, + anon_sym___attribute, + ACTIONS(10192), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [413795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17410), 1, + anon_sym_COMMA, + ACTIONS(18352), 1, + anon_sym_RBRACK_RBRACK, + STATE(11384), 1, + aux_sym_attribute_declaration_repeat1, + [413808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17422), 1, + anon_sym_COMMA, + ACTIONS(18352), 1, + anon_sym_RBRACK_RBRACK, + STATE(11393), 1, aux_sym_attribute_declaration_repeat2, - [361368] = 4, + [413821] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17410), 1, + anon_sym_COMMA, + ACTIONS(18354), 1, + anon_sym_RBRACK_RBRACK, + STATE(11384), 1, + aux_sym_attribute_declaration_repeat1, + [413834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(12493), 1, + ACTIONS(13095), 1, anon_sym_RPAREN, - STATE(10155), 1, + STATE(10820), 1, aux_sym_argument_list_repeat1, - [361381] = 4, + [413847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(17139), 1, + ACTIONS(17422), 1, anon_sym_COMMA, - ACTIONS(17142), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [361394] = 4, + ACTIONS(18354), 1, + anon_sym_RBRACK_RBRACK, + STATE(11393), 1, + aux_sym_attribute_declaration_repeat2, + [413860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17396), 1, + anon_sym_catch, + STATE(3364), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [413871] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13097), 1, + anon_sym_COMMA, + ACTIONS(13099), 1, + anon_sym_RBRACE, + STATE(10825), 1, + aux_sym_initializer_list_repeat1, + [413884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17861), 1, + anon_sym_catch, + STATE(659), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [413895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(17360), 1, anon_sym_COLON, - ACTIONS(17144), 1, + ACTIONS(18356), 1, anon_sym_RPAREN, - STATE(10157), 1, + STATE(10835), 1, sym_gnu_asm_output_operand_list, - [361407] = 4, + [413908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13017), 1, anon_sym_COMMA, - ACTIONS(17146), 1, - anon_sym_SEMI, - STATE(10186), 1, - aux_sym_declaration_repeat1, - [361420] = 4, + ACTIONS(18358), 1, + anon_sym_RPAREN, + STATE(11033), 1, + aux_sym_argument_list_repeat1, + [413921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(18360), 1, anon_sym_COMMA, - ACTIONS(17148), 1, + ACTIONS(18363), 1, + anon_sym_RBRACK_RBRACK, + STATE(11384), 1, + aux_sym_attribute_declaration_repeat1, + [413934] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12959), 1, + anon_sym_COMMA, + ACTIONS(18365), 1, anon_sym_GT2, - STATE(10161), 1, + STATE(10859), 1, aux_sym_template_argument_list_repeat1, - [361433] = 4, + [413947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17150), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [361446] = 4, + ACTIONS(3408), 1, + anon_sym_while, + ACTIONS(17777), 1, + anon_sym_else, + STATE(616), 1, + sym_else_clause, + [413960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17152), 1, + ACTIONS(18367), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11153), 1, aux_sym_declaration_repeat1, - [361459] = 3, - 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, + [413973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17154), 1, + ACTIONS(18369), 1, anon_sym_SEMI, - STATE(10164), 1, + STATE(10812), 1, aux_sym_declaration_repeat1, - [361483] = 4, + [413986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17156), 1, + ACTIONS(18371), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [361496] = 4, + [413999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(14808), 1, anon_sym_COMMA, - ACTIONS(17158), 1, + ACTIONS(18373), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(11197), 1, aux_sym_declaration_repeat1, - [361509] = 4, + [414012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(13023), 1, anon_sym_COMMA, - ACTIONS(17160), 1, - anon_sym_RPAREN, - STATE(10165), 1, - aux_sym_parameter_list_repeat1, - [361522] = 4, + ACTIONS(18375), 1, + anon_sym_RBRACK, + STATE(10904), 1, + aux_sym_subscript_argument_list_repeat1, + [414025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(17392), 1, anon_sym_COMMA, - ACTIONS(17162), 1, + ACTIONS(18377), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(10916), 1, aux_sym_parameter_list_repeat1, - [361535] = 3, + [414038] = 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(18379), 1, + anon_sym_COMMA, + ACTIONS(18382), 1, + anon_sym_RBRACK_RBRACK, + STATE(11393), 1, + aux_sym_attribute_declaration_repeat2, + [414051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(16803), 1, anon_sym_COMMA, - ACTIONS(17164), 1, - anon_sym_RBRACK, - STATE(10201), 1, - aux_sym_subscript_argument_list_repeat1, - [361559] = 4, + ACTIONS(16974), 1, + anon_sym_LBRACE, + STATE(10837), 1, + aux_sym_base_class_clause_repeat1, + [414064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(15107), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(11324), 1, - sym_requires_clause, - [361572] = 4, + STATE(10562), 1, + sym_compound_statement, + [414074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(17166), 1, - anon_sym_RPAREN, - STATE(10187), 1, - aux_sym_throw_specifier_repeat1, - [361585] = 4, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(17090), 1, + anon_sym_SEMI, + [414084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(17168), 1, + ACTIONS(10834), 1, anon_sym_LBRACE, - STATE(11328), 1, - sym_requires_clause, - [361598] = 3, + STATE(5480), 1, + sym_field_declaration_list, + [414094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, - anon_sym___attribute, - ACTIONS(9898), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [361609] = 4, + ACTIONS(15888), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, + anon_sym_COMMA, + [414104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(10834), 1, anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(829), 1, - sym_declaration_list, - [361622] = 4, + STATE(5481), 1, + sym_field_declaration_list, + [414114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(17170), 1, - anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [361635] = 2, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(17054), 1, + anon_sym_SEMI, + [414124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17172), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [361644] = 4, + ACTIONS(11190), 1, + anon_sym_LBRACE, + STATE(3481), 1, + sym_compound_statement, + [414134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(17174), 1, - anon_sym_RPAREN, - STATE(10170), 1, - sym_gnu_asm_input_operand_list, - [361657] = 4, + ACTIONS(10822), 1, + anon_sym_LBRACE, + STATE(5331), 1, + sym_field_declaration_list, + [414144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(17176), 1, - anon_sym_RPAREN, - STATE(10171), 1, - sym_gnu_asm_output_operand_list, - [361670] = 4, + ACTIONS(8088), 1, + anon_sym_LBRACE, + STATE(2661), 1, + sym_field_declaration_list, + [414154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(17178), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [361683] = 4, + ACTIONS(2089), 1, + anon_sym_LBRACE, + STATE(1299), 1, + sym_compound_statement, + [414164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(17180), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [361696] = 4, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12050), 1, + sym_argument_list, + [414174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(17182), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [361709] = 4, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(10674), 1, + sym_compound_statement, + [414184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(18384), 1, anon_sym_COMMA, - ACTIONS(17184), 1, - anon_sym_SEMI, - STATE(10172), 1, - aux_sym_declaration_repeat1, - [361722] = 4, + ACTIONS(18386), 1, + anon_sym_RBRACE, + [414194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17186), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [361735] = 4, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(215), 1, + sym_condition_clause, + [414204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17188), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [361748] = 4, + ACTIONS(18388), 1, + sym_identifier, + ACTIONS(18390), 1, + anon_sym_RPAREN, + [414214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, - anon_sym_COMMA, - ACTIONS(17190), 1, - anon_sym_RPAREN, - STATE(10185), 1, - aux_sym_parameter_list_repeat1, - [361761] = 4, + ACTIONS(16900), 1, + sym_identifier, + STATE(10462), 1, + sym_module_name, + [414224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(17192), 1, - anon_sym_RPAREN, - STATE(10173), 1, - aux_sym_throw_specifier_repeat1, - [361774] = 2, + ACTIONS(10834), 1, + anon_sym_LBRACE, + STATE(5497), 1, + sym_field_declaration_list, + [414234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17194), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [361783] = 4, + ACTIONS(7939), 1, + anon_sym_LBRACE, + STATE(542), 1, + sym_declaration_list, + [414244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17196), 1, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16155), 1, anon_sym_SEMI, - STATE(10175), 1, - aux_sym_declaration_repeat1, - [361796] = 4, + [414254] = 3, 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, + ACTIONS(9690), 1, + anon_sym_LBRACE, + STATE(4443), 1, + sym_field_declaration_list, + [414264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(17203), 1, - anon_sym_RPAREN, - STATE(10176), 1, - sym_gnu_asm_clobber_list, - [361822] = 4, + ACTIONS(14175), 1, + anon_sym_LBRACE, + STATE(6276), 1, + sym_requirement_seq, + [414274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(17205), 1, - anon_sym_RPAREN, - STATE(10177), 1, - sym_gnu_asm_input_operand_list, - [361835] = 4, + ACTIONS(14106), 1, + anon_sym_LBRACE, + STATE(3877), 1, + sym_requirement_seq, + [414284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17207), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [361848] = 4, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(217), 1, + sym_condition_clause, + [414294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(17209), 1, - anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [361861] = 4, + ACTIONS(1113), 1, + anon_sym_LBRACE, + STATE(721), 1, + sym_compound_statement, + [414304] = 3, 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(14742), 1, + anon_sym_LBRACE, + STATE(6223), 1, + sym_compound_statement, + [414314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17216), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [361887] = 4, + ACTIONS(12545), 1, + anon_sym_LBRACE, + STATE(7375), 1, + sym_field_declaration_list, + [414324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(17218), 1, - anon_sym_RPAREN, - STATE(11545), 1, - sym_gnu_asm_goto_list, - [361900] = 4, - ACTIONS(3), 1, + ACTIONS(18392), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [414332] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(17220), 1, - anon_sym_RPAREN, - STATE(10178), 1, - sym_gnu_asm_clobber_list, - [361913] = 4, + ACTIONS(18394), 1, + aux_sym_preproc_include_token2, + ACTIONS(18396), 1, + sym_preproc_arg, + [414342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(17222), 1, - anon_sym_RPAREN, - STATE(11547), 1, - sym_gnu_asm_goto_list, - [361926] = 4, + ACTIONS(18398), 1, + anon_sym_LT, + STATE(4481), 1, + sym_template_argument_list, + [414352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(17224), 1, - anon_sym_RPAREN, - STATE(9929), 1, - sym_gnu_asm_output_operand_list, - [361939] = 4, + ACTIONS(15381), 1, + anon_sym_LT, + STATE(7064), 1, + sym_template_argument_list, + [414362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17226), 1, - anon_sym_COMMA, - ACTIONS(17229), 1, - anon_sym_RBRACK, - STATE(10180), 1, - aux_sym_structured_binding_declarator_repeat1, - [361952] = 4, - ACTIONS(3), 1, + ACTIONS(309), 1, + anon_sym_LBRACE, + STATE(454), 1, + sym_compound_statement, + [414372] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17231), 1, - anon_sym_SEMI, - STATE(9732), 1, - aux_sym_declaration_repeat1, - [361965] = 4, + ACTIONS(18400), 1, + aux_sym_preproc_include_token2, + ACTIONS(18402), 1, + sym_preproc_arg, + [414382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(17233), 1, - anon_sym_RPAREN, - STATE(10190), 1, - sym_gnu_asm_clobber_list, - [361978] = 4, + ACTIONS(7923), 1, + anon_sym_LBRACE, + STATE(802), 1, + sym_declaration_list, + [414392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(17235), 1, - anon_sym_RPAREN, - STATE(10191), 1, - sym_gnu_asm_input_operand_list, - [361991] = 4, + ACTIONS(18404), 1, + anon_sym_LPAREN2, + STATE(13048), 1, + sym_parenthesized_expression, + [414402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16302), 1, - anon_sym_COMMA, - ACTIONS(17237), 1, - anon_sym_RBRACK, - STATE(9960), 1, - aux_sym_lambda_capture_specifier_repeat1, - [362004] = 4, + ACTIONS(10912), 1, + anon_sym_LBRACE, + STATE(5950), 1, + sym_field_declaration_list, + [414412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17239), 1, - anon_sym_COMMA, - ACTIONS(17242), 1, - anon_sym_RPAREN, - STATE(10185), 1, - aux_sym_parameter_list_repeat1, - [362017] = 4, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + STATE(11639), 1, + sym_parameter_list, + [414422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17244), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [362030] = 4, + ACTIONS(12545), 1, + anon_sym_LBRACE, + STATE(7376), 1, + sym_field_declaration_list, + [414432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(17246), 1, - anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [362043] = 4, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16811), 1, + anon_sym_SEMI, + [414442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17248), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [362056] = 4, + ACTIONS(960), 1, + anon_sym_LBRACE, + STATE(772), 1, + sym_compound_statement, + [414452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17250), 1, - anon_sym_COMMA, - ACTIONS(17253), 1, - anon_sym_RBRACK, - STATE(10189), 1, - aux_sym_lambda_capture_specifier_repeat1, - [362069] = 4, + ACTIONS(8718), 1, + anon_sym_LBRACE, + STATE(3023), 1, + sym_field_declaration_list, + [414462] = 3, 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(8718), 1, + anon_sym_LBRACE, + STATE(3024), 1, + sym_field_declaration_list, + [414472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(17257), 1, - anon_sym_RPAREN, - STATE(10195), 1, - sym_gnu_asm_clobber_list, - [362095] = 4, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(10905), 1, + sym_compound_statement, + [414482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12541), 1, - anon_sym_COMMA, - ACTIONS(12543), 1, + ACTIONS(15892), 1, anon_sym_RBRACE, - STATE(9872), 1, - aux_sym_initializer_list_repeat1, - [362108] = 4, + ACTIONS(18384), 1, + anon_sym_COMMA, + [414492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(17259), 1, - anon_sym_RBRACK_RBRACK, - STATE(10202), 1, - aux_sym_attribute_declaration_repeat1, - [362121] = 4, + ACTIONS(18398), 1, + anon_sym_LT, + STATE(4702), 1, + sym_template_argument_list, + [414502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(18406), 2, anon_sym_COMMA, - ACTIONS(17259), 1, anon_sym_RBRACK_RBRACK, - STATE(10203), 1, - aux_sym_attribute_declaration_repeat2, - [362134] = 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(3), 1, + [414510] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17263), 1, - anon_sym_COMMA, - ACTIONS(17266), 1, - anon_sym_LBRACE, - STATE(10196), 1, - aux_sym_field_initializer_list_repeat1, - [362160] = 4, + ACTIONS(18408), 1, + aux_sym_preproc_include_token2, + ACTIONS(18410), 1, + sym_preproc_arg, + [414520] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(18412), 2, anon_sym_COMMA, - ACTIONS(17268), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [362173] = 3, + anon_sym_RBRACK_RBRACK, + [414528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17270), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(17272), 2, - anon_sym_COMMA, + ACTIONS(14728), 1, anon_sym_LBRACE, - [362184] = 4, + STATE(3887), 1, + sym_compound_statement, + [414538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(18414), 2, anon_sym_COMMA, - ACTIONS(17274), 1, anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [362197] = 4, + [414546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(8088), 1, anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(945), 1, - sym_declaration_list, - [362210] = 4, + STATE(2665), 1, + sym_field_declaration_list, + [414556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12735), 1, - anon_sym_RBRACK, - ACTIONS(17276), 1, - anon_sym_COMMA, - STATE(10201), 1, - aux_sym_subscript_argument_list_repeat1, - [362223] = 4, + ACTIONS(8088), 1, + anon_sym_LBRACE, + STATE(2677), 1, + sym_field_declaration_list, + [414566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(17279), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [362236] = 4, + ACTIONS(18404), 1, + anon_sym_LPAREN2, + STATE(11578), 1, + sym_parenthesized_expression, + [414576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(18317), 2, anon_sym_COMMA, - ACTIONS(17279), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [362249] = 2, + anon_sym_SEMI, + [414584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17281), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(8189), 1, anon_sym_LBRACE, - [362258] = 4, + STATE(2724), 1, + sym_field_declaration_list, + [414594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(17283), 1, - anon_sym_GT2, - STATE(9666), 1, - aux_sym_template_argument_list_repeat1, - [362271] = 3, + ACTIONS(17273), 1, + anon_sym_LBRACE, + STATE(9031), 1, + sym_requirement_seq, + [414604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 1, - anon_sym___attribute, - ACTIONS(9810), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [362282] = 3, - ACTIONS(14065), 1, + ACTIONS(14152), 1, + anon_sym_LBRACE, + STATE(7327), 1, + sym_requirement_seq, + [414614] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17285), 1, + ACTIONS(18416), 1, aux_sym_preproc_include_token2, - ACTIONS(17287), 1, + ACTIONS(18418), 1, sym_preproc_arg, - [362292] = 3, + [414624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(10217), 1, - sym_condition_clause, - [362302] = 3, + ACTIONS(17486), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [414632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13877), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(5225), 1, + STATE(388), 1, sym_compound_statement, - [362312] = 3, + [414642] = 3, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(18420), 1, + aux_sym_preproc_include_token2, + ACTIONS(18422), 1, + sym_preproc_arg, + [414652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(196), 1, - sym_condition_clause, - [362322] = 3, + ACTIONS(18424), 2, + anon_sym_COMMA, + anon_sym_GT2, + [414660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17289), 1, + ACTIONS(12433), 1, anon_sym_LT, - STATE(5535), 1, + STATE(3452), 1, sym_template_argument_list, - [362332] = 3, + [414670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, - anon_sym_LBRACE, - STATE(3262), 1, - sym_compound_statement, - [362342] = 3, + ACTIONS(18426), 1, + anon_sym_LT, + STATE(6613), 1, + sym_template_argument_list, + [414680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(10011), 1, - sym_compound_statement, - [362352] = 3, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(3452), 1, + sym_template_argument_list, + [414690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 1, + ACTIONS(18428), 1, anon_sym_LT, - STATE(2992), 1, + STATE(3701), 1, sym_template_argument_list, - [362362] = 3, + [414700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(14732), 1, anon_sym_LBRACE, - STATE(9940), 1, + STATE(9045), 1, sym_compound_statement, - [362372] = 3, + [414710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, + ACTIONS(14742), 1, anon_sym_LBRACE, - STATE(2671), 1, - sym_field_declaration_list, - [362382] = 3, + STATE(6248), 1, + sym_compound_statement, + [414720] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1113), 1, anon_sym_LBRACE, - STATE(583), 1, + STATE(672), 1, sym_compound_statement, - [362392] = 3, + [414730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10930), 1, - sym_argument_list, - [362402] = 3, + ACTIONS(17809), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [414738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15166), 1, - anon_sym_SEMI, - [362412] = 3, + ACTIONS(15862), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, + anon_sym_COMMA, + [414748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9645), 1, - sym_compound_statement, - [362422] = 3, + ACTIONS(12844), 1, + anon_sym_LT, + STATE(4159), 1, + sym_template_argument_list, + [414758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(201), 1, - sym_condition_clause, - [362432] = 3, + ACTIONS(14138), 1, + anon_sym_LBRACE, + STATE(5752), 1, + sym_requirement_seq, + [414768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(11164), 1, anon_sym_LBRACE, - STATE(771), 1, + STATE(3637), 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, + [414778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - STATE(1230), 1, + STATE(860), 1, sym_compound_statement, - [362462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15786), 1, - anon_sym_SEMI, - [362472] = 3, + [414788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17297), 1, - anon_sym_RBRACE, - [362482] = 3, + ACTIONS(8189), 1, + anon_sym_LBRACE, + STATE(2729), 1, + sym_field_declaration_list, + [414798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, + ACTIONS(17902), 2, anon_sym_COMMA, - ACTIONS(17299), 1, - anon_sym_RBRACE, - [362492] = 3, + anon_sym_RPAREN, + [414806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8503), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(3030), 1, + STATE(2730), 1, sym_field_declaration_list, - [362502] = 3, + [414816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - STATE(810), 1, - sym_declaration_list, - [362512] = 3, + STATE(1270), 1, + sym_compound_statement, + [414826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(1011), 1, - sym_compound_statement, - [362522] = 3, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(210), 1, + sym_condition_clause, + [414836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - STATE(5969), 1, - sym_initializer_list, - [362532] = 3, + ACTIONS(18430), 2, + anon_sym_COMMA, + anon_sym_GT2, + [414844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(7923), 1, anon_sym_LBRACE, - STATE(783), 1, + STATE(697), 1, sym_declaration_list, - [362542] = 3, + [414854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(11252), 1, - sym_parenthesized_expression, - [362552] = 3, + ACTIONS(15870), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, + anon_sym_COMMA, + [414864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, + ACTIONS(18384), 1, anon_sym_COMMA, - ACTIONS(17303), 1, + ACTIONS(18432), 1, anon_sym_RBRACE, - [362562] = 3, + [414874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(10476), 1, - sym_parameter_list, - [362572] = 3, + ACTIONS(18384), 1, + anon_sym_COMMA, + ACTIONS(18434), 1, + anon_sym_RBRACE, + [414884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9965), 1, + ACTIONS(8088), 1, anon_sym_LBRACE, - STATE(4377), 1, + STATE(2664), 1, sym_field_declaration_list, - [362582] = 3, + [414894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17917), 2, + anon_sym_COMMA, + anon_sym_GT2, + [414902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(8189), 1, anon_sym_LBRACE, - STATE(2716), 1, - sym_compound_statement, - [362592] = 3, + STATE(2733), 1, + sym_field_declaration_list, + [414912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(15864), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [414920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14714), 1, anon_sym_LBRACE, - STATE(10148), 1, + STATE(7262), 1, sym_compound_statement, - [362602] = 3, + [414930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(14754), 1, anon_sym_LBRACE, - STATE(4760), 1, - sym_field_declaration_list, - [362612] = 3, + STATE(5566), 1, + sym_compound_statement, + [414940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13885), 1, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(4095), 1, + sym_template_argument_list, + [414950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11164), 1, anon_sym_LBRACE, - STATE(8370), 1, + STATE(3513), 1, sym_compound_statement, - [362622] = 3, + [414960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(10550), 1, - sym_parenthesized_expression, - [362632] = 3, + ACTIONS(11164), 1, + anon_sym_LBRACE, + STATE(3677), 1, + sym_compound_statement, + [414970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(10546), 1, - sym_parenthesized_expression, - [362642] = 3, + ACTIONS(18384), 1, + anon_sym_COMMA, + ACTIONS(18436), 1, + anon_sym_RBRACE, + [414980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(10406), 1, - sym_condition_clause, - [362652] = 3, + ACTIONS(18438), 1, + anon_sym_LT, + STATE(6310), 1, + sym_template_argument_list, + [414990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13348), 1, - anon_sym_LBRACE, - STATE(6663), 1, - sym_requirement_seq, - [362662] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16885), 1, + anon_sym_SEMI, + [415000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13875), 1, + ACTIONS(14742), 1, anon_sym_LBRACE, - STATE(8023), 1, + STATE(6321), 1, sym_compound_statement, - [362672] = 2, + [415010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17305), 2, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16887), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [362680] = 3, + [415020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11568), 1, - sym_argument_list, - [362690] = 3, + ACTIONS(18440), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [415028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2839), 1, + STATE(11381), 1, sym_compound_statement, - [362700] = 3, + [415038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13877), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - STATE(5234), 1, - sym_compound_statement, - [362710] = 3, + STATE(6058), 1, + sym_field_declaration_list, + [415048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13855), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - STATE(6667), 1, - sym_compound_statement, - [362720] = 3, + STATE(6092), 1, + sym_field_declaration_list, + [415058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16046), 1, - anon_sym_SEMI, - [362730] = 3, + ACTIONS(18442), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [415066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14897), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(18444), 2, anon_sym_COMMA, - [362740] = 3, + anon_sym_GT2, + [415074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(10602), 1, anon_sym_LBRACE, - STATE(2165), 1, + STATE(5225), 1, sym_field_declaration_list, - [362750] = 3, + [415084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17307), 1, + ACTIONS(9317), 1, anon_sym_LT, - STATE(3805), 1, + STATE(3290), 1, sym_template_argument_list, - [362760] = 3, - ACTIONS(14065), 1, + [415094] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17309), 1, + ACTIONS(18446), 1, aux_sym_preproc_include_token2, - ACTIONS(17311), 1, + ACTIONS(18448), 1, sym_preproc_arg, - [362770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17307), 1, - anon_sym_LT, - STATE(2090), 1, - sym_template_argument_list, - [362780] = 3, + [415104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17313), 1, - anon_sym_LT, - STATE(2928), 1, - sym_template_argument_list, - [362790] = 2, + ACTIONS(2089), 1, + anon_sym_LBRACE, + STATE(1267), 1, + sym_compound_statement, + [415114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17315), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [362798] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17317), 1, - aux_sym_preproc_include_token2, - ACTIONS(17319), 1, - sym_preproc_arg, - [362808] = 3, + ACTIONS(13276), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [415122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(10278), 1, - sym_condition_clause, - [362818] = 3, + ACTIONS(18450), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [415130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16130), 1, - anon_sym_SEMI, - [362828] = 3, + ACTIONS(18452), 1, + anon_sym_LT, + STATE(2253), 1, + sym_template_argument_list, + [415140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(7939), 1, anon_sym_LBRACE, - STATE(9711), 1, - sym_compound_statement, - [362838] = 3, + STATE(471), 1, + sym_declaration_list, + [415150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(665), 1, - sym_declaration_list, - [362848] = 3, + ACTIONS(12533), 1, + anon_sym_LT, + STATE(7564), 1, + sym_template_argument_list, + [415160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13839), 1, + ACTIONS(14714), 1, anon_sym_LBRACE, - STATE(5106), 1, + STATE(7329), 1, sym_compound_statement, - [362858] = 3, + [415170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(2396), 1, anon_sym_LBRACE, - STATE(3954), 1, - sym_field_declaration_list, - [362868] = 3, + STATE(4267), 1, + sym_initializer_list, + [415180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16162), 1, - anon_sym_SEMI, - [362878] = 3, + ACTIONS(8249), 1, + anon_sym_LBRACE, + STATE(2750), 1, + sym_field_declaration_list, + [415190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12059), 1, + ACTIONS(18438), 1, anon_sym_LT, - STATE(6693), 1, + STATE(4833), 1, sym_template_argument_list, - [362888] = 2, + [415200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11724), 2, + ACTIONS(17648), 2, anon_sym_COMMA, anon_sym_RBRACK, - [362896] = 3, + [415208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11274), 1, - sym_argument_list, - [362906] = 3, + ACTIONS(17326), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [415216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9628), 1, - sym_compound_statement, - [362916] = 3, + ACTIONS(15824), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, + anon_sym_COMMA, + [415226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_LBRACE, - STATE(3899), 1, - sym_initializer_list, - [362926] = 3, + ACTIONS(13216), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [415234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13885), 1, + ACTIONS(14732), 1, anon_sym_LBRACE, - STATE(8414), 1, + STATE(9005), 1, sym_compound_statement, - [362936] = 2, + [415244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9544), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [362944] = 3, + ACTIONS(18454), 1, + anon_sym_LT, + STATE(5795), 1, + sym_template_argument_list, + [415254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17321), 1, - anon_sym_RBRACE, - [362954] = 3, + ACTIONS(18426), 1, + anon_sym_LT, + STATE(4095), 1, + sym_template_argument_list, + [415264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - STATE(3234), 1, - sym_compound_statement, - [362964] = 3, + STATE(8640), 1, + sym_field_declaration_list, + [415274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - STATE(2158), 1, + STATE(8629), 1, sym_field_declaration_list, - [362974] = 3, - ACTIONS(14065), 1, + [415284] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17323), 1, - aux_sym_preproc_include_token2, - ACTIONS(17325), 1, - sym_preproc_arg, - [362984] = 3, + ACTIONS(13002), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [415292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - STATE(1252), 1, + STATE(770), 1, sym_compound_statement, - [362994] = 3, + [415302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14851), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + ACTIONS(18456), 1, + anon_sym_SEMI, + [415312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18384), 1, anon_sym_COMMA, - [363004] = 3, + ACTIONS(18458), 1, + anon_sym_RBRACE, + [415322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - STATE(2753), 1, + STATE(4122), 1, sym_field_declaration_list, - [363014] = 3, + [415332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13356), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - STATE(6449), 1, - sym_requirement_seq, - [363024] = 3, + STATE(5965), 1, + sym_field_declaration_list, + [415342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(11139), 1, - sym_parenthesized_expression, - [363034] = 2, + ACTIONS(8718), 1, + anon_sym_LBRACE, + STATE(3130), 1, + sym_field_declaration_list, + [415352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16955), 2, + ACTIONS(15830), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [363042] = 3, + [415362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(10275), 1, - sym_parameter_list, - [363052] = 3, + ACTIONS(13220), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [415370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17327), 1, - sym_identifier, - ACTIONS(17329), 1, - anon_sym_RPAREN, - [363062] = 3, + ACTIONS(14754), 1, + anon_sym_LBRACE, + STATE(5589), 1, + sym_compound_statement, + [415380] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(195), 1, + sym_condition_clause, + [415390] = 3, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(18460), 1, + aux_sym_preproc_include_token2, + ACTIONS(18462), 1, + sym_preproc_arg, + [415400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9965), 1, + ACTIONS(17382), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(4342), 1, - sym_field_declaration_list, - [363072] = 3, + [415408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - STATE(9813), 1, + STATE(782), 1, sym_compound_statement, - [363082] = 3, + [415418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9965), 1, - anon_sym_LBRACE, - STATE(4343), 1, - sym_field_declaration_list, - [363092] = 2, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16142), 1, + anon_sym_SEMI, + [415428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14868), 1, + anon_sym_LT, + STATE(9257), 1, + sym_template_argument_list, + [415438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17331), 2, + ACTIONS(15379), 2, anon_sym_COMMA, - anon_sym_LBRACE, - [363100] = 3, + anon_sym_SEMI, + [415446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(14732), 1, anon_sym_LBRACE, - STATE(3365), 1, + STATE(9022), 1, sym_compound_statement, - [363110] = 3, + [415456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(17958), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(2754), 1, - sym_field_declaration_list, - [363120] = 3, + [415464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(10365), 1, - sym_parenthesized_expression, - [363130] = 2, + ACTIONS(4682), 1, + anon_sym_LBRACE, + STATE(8246), 1, + sym_initializer_list, + [415474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16965), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [363138] = 3, + ACTIONS(18398), 1, + anon_sym_LT, + STATE(6133), 1, + sym_template_argument_list, + [415484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14911), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(18464), 2, anon_sym_COMMA, - [363148] = 3, + anon_sym_SEMI, + [415492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13871), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - STATE(6454), 1, - sym_compound_statement, - [363158] = 3, + STATE(2772), 1, + sym_field_declaration_list, + [415502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3805), 1, - sym_template_argument_list, - [363168] = 3, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(11798), 1, + sym_condition_clause, + [415512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16044), 1, - anon_sym_SEMI, - [363178] = 3, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(191), 1, + sym_condition_clause, + [415522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - STATE(3855), 1, + STATE(2778), 1, sym_field_declaration_list, - [363188] = 3, + [415532] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9873), 1, + STATE(11029), 1, sym_compound_statement, - [363198] = 3, - ACTIONS(14065), 1, + [415542] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17333), 1, + ACTIONS(18466), 1, aux_sym_preproc_include_token2, - ACTIONS(17335), 1, + ACTIONS(18468), 1, sym_preproc_arg, - [363208] = 3, + [415552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 1, + ACTIONS(12682), 1, anon_sym_LT, - STATE(2938), 1, + STATE(3095), 1, sym_template_argument_list, - [363218] = 3, + [415562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - [363228] = 2, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16200), 1, + anon_sym_SEMI, + [415572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17337), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [363236] = 3, + ACTIONS(14734), 1, + anon_sym_LBRACE, + STATE(5563), 1, + sym_compound_statement, + [415582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(13426), 1, anon_sym_LPAREN2, - STATE(10954), 1, + STATE(12098), 1, sym_argument_list, - [363246] = 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, + [415592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(4731), 1, - sym_field_declaration_list, - [363276] = 3, + STATE(10596), 1, + sym_compound_statement, + [415602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5843), 1, - sym_initializer_list, - [363286] = 3, + STATE(613), 1, + sym_compound_statement, + [415612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_LBRACE, - STATE(3865), 1, - sym_field_declaration_list, - [363296] = 3, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(201), 1, + sym_condition_clause, + [415622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - STATE(10361), 1, + STATE(11781), 1, sym_parameter_list, - [363306] = 3, + [415632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17343), 1, + ACTIONS(16900), 1, sym_identifier, - ACTIONS(17345), 1, - anon_sym_LPAREN2, - [363316] = 3, + STATE(10467), 1, + sym_module_name, + [415642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9914), 1, - sym_compound_statement, - [363326] = 3, + ACTIONS(9317), 1, + anon_sym_LT, + STATE(2125), 1, + sym_template_argument_list, + [415652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(9242), 1, anon_sym_LBRACE, - STATE(2140), 1, + STATE(4012), 1, sym_field_declaration_list, - [363336] = 3, + [415662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17347), 1, + ACTIONS(18428), 1, anon_sym_LT, - STATE(5547), 1, + STATE(4095), 1, sym_template_argument_list, - [363346] = 3, + [415672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(10381), 1, - sym_parenthesized_expression, - [363356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + ACTIONS(14195), 1, anon_sym_LBRACE, - STATE(545), 1, - sym_compound_statement, - [363366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16218), 1, - anon_sym_SEMI, - [363376] = 3, + STATE(7420), 1, + sym_requirement_seq, + [415682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13855), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(6682), 1, + STATE(988), 1, sym_compound_statement, - [363386] = 3, + [415692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(11177), 1, anon_sym_LBRACE, - STATE(2793), 1, + STATE(3280), 1, sym_compound_statement, - [363396] = 3, + [415702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, - anon_sym_LBRACE, - STATE(2144), 1, - sym_field_declaration_list, - [363406] = 3, + ACTIONS(18404), 1, + anon_sym_LPAREN2, + STATE(12082), 1, + sym_parenthesized_expression, + [415712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, - anon_sym_LBRACE, - STATE(4385), 1, - sym_field_declaration_list, - [363416] = 3, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + STATE(11657), 1, + sym_parameter_list, + [415722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13849), 1, + ACTIONS(14736), 1, anon_sym_LBRACE, - STATE(5673), 1, + STATE(7429), 1, sym_compound_statement, - [363426] = 3, - ACTIONS(3), 1, + [415732] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(625), 1, - sym_compound_statement, - [363436] = 3, + ACTIONS(18470), 1, + aux_sym_preproc_include_token2, + ACTIONS(18472), 1, + sym_preproc_arg, + [415742] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9959), 1, + STATE(11247), 1, sym_compound_statement, - [363446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - ACTIONS(17349), 1, - anon_sym_SEMI, - [363456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16190), 1, - anon_sym_SEMI, - [363466] = 3, + [415752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17347), 1, + ACTIONS(18428), 1, anon_sym_LT, - STATE(2577), 1, + STATE(3471), 1, sym_template_argument_list, - [363476] = 3, + [415762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10664), 1, - sym_argument_list, - [363486] = 3, + ACTIONS(18474), 1, + anon_sym_LT, + STATE(5080), 1, + sym_template_argument_list, + [415772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(14728), 1, anon_sym_LBRACE, - STATE(5083), 1, + STATE(3919), 1, sym_compound_statement, - [363496] = 3, + [415782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, - anon_sym_LBRACE, - STATE(474), 1, - sym_declaration_list, - [363506] = 3, + ACTIONS(18476), 2, + anon_sym_COMMA, + anon_sym_GT2, + [415790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15964), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(2976), 1, - sym_requirement_seq, - [363516] = 2, + STATE(529), 1, + sym_compound_statement, + [415800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17351), 2, + ACTIONS(13071), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [363524] = 3, + anon_sym_SEMI, + [415808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, - anon_sym_LBRACE, - STATE(585), 1, - sym_compound_statement, - [363534] = 2, + ACTIONS(18404), 1, + anon_sym_LPAREN2, + STATE(11742), 1, + sym_parenthesized_expression, + [415818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13480), 1, + anon_sym_LT, + STATE(3290), 1, + sym_template_argument_list, + [415828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16993), 2, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16994), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [363542] = 3, + [415838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(673), 1, - sym_declaration_list, - [363552] = 3, + STATE(772), 1, + sym_compound_statement, + [415848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, + ACTIONS(18384), 1, anon_sym_COMMA, - ACTIONS(17353), 1, + ACTIONS(18478), 1, anon_sym_RBRACE, - [363562] = 3, + [415858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13853), 1, + ACTIONS(17992), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3004), 1, - sym_compound_statement, - [363572] = 3, + [415866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(10237), 1, - sym_parameter_list, - [363582] = 3, + ACTIONS(18480), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [415874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12551), 1, + ACTIONS(18482), 1, anon_sym_LT, - STATE(4054), 1, + STATE(2745), 1, sym_template_argument_list, - [363592] = 3, + [415884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17355), 1, - anon_sym_LT, - STATE(2721), 1, - sym_template_argument_list, - [363602] = 3, + ACTIONS(7941), 1, + anon_sym_LBRACE, + STATE(911), 1, + sym_declaration_list, + [415894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17357), 1, + ACTIONS(15896), 1, anon_sym_RBRACE, - [363612] = 3, + ACTIONS(18384), 1, + anon_sym_COMMA, + [415904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8249), 1, + anon_sym_LBRACE, + STATE(2789), 1, + sym_field_declaration_list, + [415914] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(10003), 1, + STATE(11166), 1, sym_compound_statement, - [363622] = 3, + [415924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14883), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, - anon_sym_COMMA, - [363632] = 3, + ACTIONS(9242), 1, + anon_sym_LBRACE, + STATE(3993), 1, + sym_field_declaration_list, + [415934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, + ACTIONS(9242), 1, + anon_sym_LBRACE, + STATE(3996), 1, + sym_field_declaration_list, + [415944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18384), 1, anon_sym_COMMA, - ACTIONS(17359), 1, + ACTIONS(18484), 1, anon_sym_RBRACE, - [363642] = 3, + [415954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9965), 1, + ACTIONS(12545), 1, anon_sym_LBRACE, - STATE(4351), 1, + STATE(7371), 1, sym_field_declaration_list, - [363652] = 3, + [415964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16232), 1, - anon_sym_SEMI, - [363662] = 3, + ACTIONS(18486), 1, + sym_identifier, + ACTIONS(18488), 1, + anon_sym_LPAREN2, + [415974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LBRACE, - STATE(2760), 1, - sym_field_declaration_list, - [363672] = 3, + ACTIONS(16900), 1, + sym_identifier, + STATE(11683), 1, + sym_module_name, + [415984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17307), 1, - anon_sym_LT, - STATE(3709), 1, - sym_template_argument_list, - [363682] = 3, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(11778), 1, + sym_condition_clause, + [415994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(240), 1, + sym_condition_clause, + [416004] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(10047), 1, + STATE(11036), 1, sym_compound_statement, - [363692] = 3, + [416014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, + ACTIONS(9690), 1, anon_sym_LBRACE, - STATE(2697), 1, + STATE(4354), 1, sym_field_declaration_list, - [363702] = 3, + [416024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, + ACTIONS(14734), 1, anon_sym_LBRACE, - STATE(2699), 1, - sym_field_declaration_list, - [363712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10996), 1, - sym_argument_list, - [363722] = 2, + STATE(5755), 1, + sym_compound_statement, + [416034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17361), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [363730] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16107), 1, + anon_sym_SEMI, + [416044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14855), 1, + ACTIONS(15822), 1, anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(18384), 1, anon_sym_COMMA, - [363740] = 3, + [416054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15133), 1, - anon_sym_SEMI, - [363750] = 3, + ACTIONS(9690), 1, + anon_sym_LBRACE, + STATE(4444), 1, + sym_field_declaration_list, + [416064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13426), 1, anon_sym_LPAREN2, - STATE(10408), 1, - sym_parameter_list, - [363760] = 3, + STATE(12004), 1, + sym_argument_list, + [416074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(4389), 1, - sym_field_declaration_list, - [363770] = 3, + STATE(10669), 1, + sym_compound_statement, + [416084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, - anon_sym_LBRACE, - STATE(4390), 1, - sym_field_declaration_list, - [363780] = 3, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(193), 1, + sym_condition_clause, + [416094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, + ACTIONS(18384), 1, anon_sym_COMMA, - ACTIONS(17363), 1, + ACTIONS(18490), 1, anon_sym_RBRACE, - [363790] = 3, + [416104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 1, + ACTIONS(14736), 1, anon_sym_LBRACE, - STATE(7581), 1, - sym_field_declaration_list, - [363800] = 3, + STATE(7466), 1, + sym_compound_statement, + [416114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(11177), 1, anon_sym_LBRACE, - STATE(1200), 1, + STATE(3165), 1, sym_compound_statement, - [363810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11281), 1, - sym_argument_list, - [363820] = 3, + [416124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9776), 1, - sym_compound_statement, - [363830] = 3, + ACTIONS(17435), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [416132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11427), 1, + ACTIONS(12545), 1, anon_sym_LBRACE, - STATE(5945), 1, + STATE(7378), 1, sym_field_declaration_list, - [363840] = 3, + [416142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - STATE(1257), 1, + STATE(577), 1, sym_compound_statement, - [363850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13268), 1, - anon_sym_LBRACE, - STATE(5655), 1, - sym_requirement_seq, - [363860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13290), 1, - anon_sym_LBRACE, - STATE(4985), 1, - sym_requirement_seq, - [363870] = 3, + [416152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 1, + ACTIONS(18438), 1, anon_sym_LT, - STATE(2648), 1, + STATE(4696), 1, sym_template_argument_list, - [363880] = 3, + [416162] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9591), 1, + STATE(643), 1, sym_compound_statement, - [363890] = 3, + [416172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + ACTIONS(18492), 1, + anon_sym_SEMI, + [416182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7939), 1, anon_sym_LBRACE, - STATE(10119), 1, - sym_compound_statement, - [363900] = 3, + STATE(539), 1, + sym_declaration_list, + [416192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(18404), 1, anon_sym_LPAREN2, - STATE(11679), 1, - sym_argument_list, - [363910] = 3, + STATE(12307), 1, + sym_parenthesized_expression, + [416202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(14661), 1, anon_sym_LPAREN2, - STATE(212), 1, - sym_condition_clause, - [363920] = 3, + STATE(11609), 1, + sym_parameter_list, + [416212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(4318), 1, - sym_template_argument_list, - [363930] = 3, + ACTIONS(18384), 1, + anon_sym_COMMA, + ACTIONS(18494), 1, + anon_sym_RBRACE, + [416222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11368), 1, - sym_argument_list, - [363940] = 3, + ACTIONS(17559), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [416230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13855), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(6685), 1, + STATE(10855), 1, sym_compound_statement, - [363950] = 3, + [416240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(1113), 1, anon_sym_LBRACE, - STATE(926), 1, + STATE(585), 1, sym_compound_statement, - [363960] = 3, + [416250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15894), 1, - anon_sym_SEMI, - [363970] = 3, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(2909), 1, + sym_field_declaration_list, + [416260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13853), 1, - anon_sym_LBRACE, - STATE(2960), 1, - sym_compound_statement, - [363980] = 3, + ACTIONS(18384), 1, + anon_sym_COMMA, + ACTIONS(18496), 1, + anon_sym_RBRACE, + [416270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(18404), 1, anon_sym_LPAREN2, - STATE(11509), 1, - sym_argument_list, - [363990] = 3, + STATE(11824), 1, + sym_parenthesized_expression, + [416280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(211), 1, - sym_condition_clause, - [364000] = 3, + ACTIONS(9242), 1, + anon_sym_LBRACE, + STATE(4022), 1, + sym_field_declaration_list, + [416290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - STATE(623), 1, + STATE(1226), 1, sym_compound_statement, - [364010] = 3, + [416300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10862), 1, - sym_argument_list, - [364020] = 3, + ACTIONS(10822), 1, + anon_sym_LBRACE, + STATE(5301), 1, + sym_field_declaration_list, + [416310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(5181), 1, - sym_compound_statement, - [364030] = 3, + ACTIONS(18384), 1, + anon_sym_COMMA, + ACTIONS(18498), 1, + anon_sym_RBRACE, + [416320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(17319), 1, anon_sym_LPAREN2, - STATE(11164), 1, - sym_argument_list, - [364040] = 3, + STATE(11404), 1, + sym_condition_clause, + [416330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13873), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3662), 1, + STATE(11032), 1, sym_compound_statement, - [364050] = 3, + [416340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, + ACTIONS(14736), 1, anon_sym_LBRACE, - STATE(6093), 1, - sym_initializer_list, - [364060] = 3, + STATE(7469), 1, + sym_compound_statement, + [416350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11405), 1, - sym_argument_list, - [364070] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16966), 1, + anon_sym_SEMI, + [416360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11720), 1, - sym_argument_list, - [364080] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(17036), 1, + anon_sym_SEMI, + [416370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(13426), 1, anon_sym_LPAREN2, - STATE(10733), 1, + STATE(12173), 1, sym_argument_list, - [364090] = 3, + [416380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10842), 1, - sym_argument_list, - [364100] = 2, + ACTIONS(12384), 1, + anon_sym_LBRACE, + STATE(8622), 1, + sym_field_declaration_list, + [416390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17365), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [364108] = 3, + ACTIONS(18428), 1, + anon_sym_LT, + STATE(4031), 1, + sym_template_argument_list, + [416400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10940), 1, - sym_argument_list, - [364118] = 3, + ACTIONS(16799), 1, + anon_sym_LBRACE, + STATE(9384), 1, + sym_requirement_seq, + [416410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13875), 1, + ACTIONS(18500), 1, + anon_sym_LT, + STATE(4168), 1, + sym_template_argument_list, + [416420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(8059), 1, + STATE(5563), 1, sym_compound_statement, - [364128] = 3, + [416430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11054), 1, - sym_argument_list, - [364138] = 3, + ACTIONS(14734), 1, + anon_sym_LBRACE, + STATE(5616), 1, + sym_compound_statement, + [416440] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(960), 1, anon_sym_LBRACE, - STATE(561), 1, + STATE(639), 1, sym_compound_statement, - [364148] = 3, + [416450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16304), 1, - anon_sym_RBRACK, - ACTIONS(17367), 1, - anon_sym_COMMA, - [364158] = 3, + ACTIONS(1113), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym_compound_statement, + [416460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(18404), 1, anon_sym_LPAREN2, - STATE(10619), 1, - sym_condition_clause, - [364168] = 3, + STATE(12057), 1, + sym_parenthesized_expression, + [416470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + STATE(11486), 1, + sym_parameter_list, + [416480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, + ACTIONS(15381), 1, anon_sym_LT, - STATE(3735), 1, + STATE(6862), 1, sym_template_argument_list, - [364178] = 3, + [416490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(4718), 1, - sym_field_declaration_list, - [364188] = 3, - ACTIONS(3), 1, + STATE(11094), 1, + sym_compound_statement, + [416500] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17369), 1, - anon_sym_RBRACE, - [364198] = 3, + ACTIONS(18502), 1, + aux_sym_preproc_include_token2, + ACTIONS(18504), 1, + sym_preproc_arg, + [416510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - STATE(4392), 1, + STATE(4098), 1, sym_field_declaration_list, - [364208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - ACTIONS(17371), 1, - anon_sym_SEMI, - [364218] = 3, + [416520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(18404), 1, anon_sym_LPAREN2, - STATE(218), 1, - sym_condition_clause, - [364228] = 3, + STATE(11502), 1, + sym_parenthesized_expression, + [416530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(12873), 1, anon_sym_LBRACE, - STATE(9460), 1, - sym_compound_statement, - [364238] = 3, + STATE(7711), 1, + sym_field_declaration_list, + [416540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - STATE(466), 1, - sym_compound_statement, - [364248] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16101), 1, + anon_sym_SEMI, + [416550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(14203), 1, anon_sym_LBRACE, - STATE(586), 1, - sym_compound_statement, - [364258] = 3, + STATE(5558), 1, + sym_requirement_seq, + [416560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17373), 1, + ACTIONS(10439), 1, anon_sym_LT, - STATE(2938), 1, + STATE(4631), 1, sym_template_argument_list, - [364268] = 3, + [416570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, - anon_sym_LBRACE, - STATE(3118), 1, - sym_compound_statement, - [364278] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16642), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [364286] = 3, + ACTIONS(18398), 1, + anon_sym_LT, + STATE(5921), 1, + sym_template_argument_list, + [416580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10320), 1, + ACTIONS(18506), 1, anon_sym_LT, - STATE(3735), 1, + STATE(6297), 1, sym_template_argument_list, - [364296] = 3, + [416590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11271), 1, - sym_argument_list, - [364306] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(11161), 1, + sym_compound_statement, + [416600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17375), 1, + ACTIONS(12433), 1, anon_sym_LT, - STATE(3805), 1, + STATE(8971), 1, sym_template_argument_list, - [364316] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17377), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [364324] = 3, + [416610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - STATE(841), 1, - sym_compound_statement, - [364334] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(11915), 1, + sym_argument_list, + [416620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13853), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(3002), 1, + STATE(309), 1, sym_compound_statement, - [364344] = 3, + [416630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17355), 1, - anon_sym_LT, - STATE(5732), 1, - sym_template_argument_list, - [364354] = 3, + ACTIONS(17172), 1, + anon_sym_COLON_COLON, + ACTIONS(18508), 1, + anon_sym_SEMI, + [416640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9860), 1, - sym_compound_statement, - [364364] = 2, + ACTIONS(18510), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [416648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17105), 2, + ACTIONS(15886), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, anon_sym_COMMA, - anon_sym_SEMI, - [364372] = 3, + [416658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17289), 1, + ACTIONS(18512), 1, anon_sym_LT, - STATE(2613), 1, + STATE(2604), 1, sym_template_argument_list, - [364382] = 3, + [416668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(14708), 1, anon_sym_LBRACE, - STATE(718), 1, + STATE(5291), 1, sym_compound_statement, - [364392] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17379), 1, - aux_sym_preproc_include_token2, - ACTIONS(17381), 1, - sym_preproc_arg, - [364402] = 3, + [416678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - STATE(5969), 1, - sym_initializer_list, - [364412] = 3, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + STATE(11624), 1, + sym_parameter_list, + [416688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13859), 1, + ACTIONS(7941), 1, anon_sym_LBRACE, - STATE(4929), 1, - sym_compound_statement, - [364422] = 3, + STATE(906), 1, + sym_declaration_list, + [416698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(310), 1, + STATE(11213), 1, sym_compound_statement, - [364432] = 3, - ACTIONS(3), 1, + [416708] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - ACTIONS(17383), 1, - anon_sym_SEMI, - [364442] = 2, + ACTIONS(18514), 1, + aux_sym_preproc_include_token2, + ACTIONS(18516), 1, + sym_preproc_arg, + [416718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16267), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [364450] = 3, + ACTIONS(18404), 1, + anon_sym_LPAREN2, + STATE(11640), 1, + sym_parenthesized_expression, + [416728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13839), 1, - anon_sym_LBRACE, - STATE(5181), 1, - sym_compound_statement, - [364460] = 3, + ACTIONS(16579), 1, + anon_sym_EQ, + STATE(11866), 1, + sym_annotation, + [416738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(7943), 1, anon_sym_LBRACE, - STATE(871), 1, + STATE(830), 1, sym_declaration_list, - [364470] = 3, + [416748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11427), 1, + ACTIONS(14750), 1, anon_sym_LBRACE, - STATE(5938), 1, - sym_field_declaration_list, - [364480] = 3, + STATE(3461), 1, + sym_compound_statement, + [416758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13871), 1, + ACTIONS(15858), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, + anon_sym_COMMA, + [416768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14714), 1, anon_sym_LBRACE, - STATE(6466), 1, + STATE(7263), 1, sym_compound_statement, - [364490] = 3, + [416778] = 3, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(18518), 1, + aux_sym_preproc_include_token2, + ACTIONS(18520), 1, + sym_preproc_arg, + [416788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3390), 1, + STATE(11266), 1, sym_compound_statement, - [364500] = 2, + [416798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17385), 2, + ACTIONS(17623), 2, anon_sym_COMMA, - anon_sym_GT2, - [364508] = 3, + anon_sym_RPAREN, + [416806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(239), 1, - sym_condition_clause, - [364518] = 3, + ACTIONS(2970), 1, + anon_sym_LBRACE, + STATE(6473), 1, + sym_initializer_list, + [416816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17375), 1, - anon_sym_LT, - STATE(5840), 1, - sym_template_argument_list, - [364528] = 3, + ACTIONS(8414), 1, + anon_sym_LBRACE, + STATE(2899), 1, + sym_field_declaration_list, + [416826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(351), 1, + STATE(10784), 1, sym_compound_statement, - [364538] = 3, + [416836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11427), 1, + ACTIONS(8414), 1, anon_sym_LBRACE, - STATE(5999), 1, + STATE(2906), 1, sym_field_declaration_list, - [364548] = 3, + [416846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15570), 1, - anon_sym_EQ, - STATE(10293), 1, - sym_annotation, - [364558] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12375), 1, + sym_argument_list, + [416856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 1, + ACTIONS(9317), 1, anon_sym_LT, - STATE(3735), 1, + STATE(4031), 1, sym_template_argument_list, - [364568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(189), 1, - sym_condition_clause, - [364578] = 3, - ACTIONS(14065), 1, + [416866] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17387), 1, + ACTIONS(18522), 1, aux_sym_preproc_include_token2, - ACTIONS(17389), 1, + ACTIONS(18524), 1, sym_preproc_arg, - [364588] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17391), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [364596] = 3, + [416876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11427), 1, - anon_sym_LBRACE, - STATE(6000), 1, - sym_field_declaration_list, - [364606] = 3, + ACTIONS(18526), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [416884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13849), 1, + ACTIONS(14728), 1, anon_sym_LBRACE, - STATE(5557), 1, + STATE(3932), 1, sym_compound_statement, - [364616] = 3, + [416894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, - anon_sym_LBRACE, - STATE(4736), 1, - sym_field_declaration_list, - [364626] = 3, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + STATE(11779), 1, + sym_parameter_list, + [416904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(960), 1, anon_sym_LBRACE, - STATE(2733), 1, - sym_field_declaration_list, - [364636] = 3, + STATE(822), 1, + sym_compound_statement, + [416914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(372), 1, + STATE(11320), 1, sym_compound_statement, - [364646] = 3, + [416924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17289), 1, + ACTIONS(13480), 1, anon_sym_LT, - STATE(5314), 1, + STATE(3458), 1, sym_template_argument_list, - [364656] = 3, + [416934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(4682), 1, anon_sym_LBRACE, - STATE(693), 1, - sym_declaration_list, - [364666] = 3, + STATE(6708), 1, + sym_initializer_list, + [416944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(14750), 1, anon_sym_LBRACE, - STATE(771), 1, + STATE(3404), 1, sym_compound_statement, - [364676] = 3, + [416954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17307), 1, - anon_sym_LT, - STATE(2174), 1, - sym_template_argument_list, - [364686] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(17092), 1, + anon_sym_SEMI, + [416964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17393), 1, - anon_sym_RBRACE, - [364696] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16179), 1, + anon_sym_SEMI, + [416974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8269), 1, - anon_sym_LBRACE, - STATE(2820), 1, - sym_field_declaration_list, - [364706] = 3, + ACTIONS(18528), 1, + anon_sym_LT, + STATE(2659), 1, + sym_template_argument_list, + [416984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13859), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(4937), 1, + STATE(11365), 1, sym_compound_statement, - [364716] = 3, + [416994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2672), 1, - sym_field_declaration_list, - [364726] = 3, + STATE(5616), 1, + sym_compound_statement, + [417004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12547), 1, - anon_sym_RPAREN, - ACTIONS(12549), 1, - anon_sym_SEMI, - [364736] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(11992), 1, + sym_argument_list, + [417014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12914), 1, + sym_argument_list, + [417024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18384), 1, + anon_sym_COMMA, + ACTIONS(18530), 1, + anon_sym_RBRACE, + [417034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(802), 1, + STATE(891), 1, sym_compound_statement, - [364746] = 3, + [417044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13298), 1, - anon_sym_LBRACE, - STATE(5156), 1, - sym_requirement_seq, - [364756] = 2, + ACTIONS(14661), 1, + anon_sym_LPAREN2, + STATE(11401), 1, + sym_parameter_list, + [417054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16795), 2, - anon_sym_COMMA, + ACTIONS(7378), 1, anon_sym_LBRACE, - [364764] = 3, + STATE(2291), 1, + sym_field_declaration_list, + [417064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15829), 1, - sym_identifier, - STATE(9368), 1, - sym_module_name, - [364774] = 3, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(200), 1, + sym_condition_clause, + [417074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13869), 1, + ACTIONS(8414), 1, anon_sym_LBRACE, - STATE(5162), 1, - sym_compound_statement, - [364784] = 2, + STATE(2946), 1, + sym_field_declaration_list, + [417084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 2, + ACTIONS(18384), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [364792] = 3, + ACTIONS(18532), 1, + anon_sym_RBRACE, + [417094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9099), 1, - anon_sym_LT, - STATE(3663), 1, - sym_template_argument_list, - [364802] = 3, + ACTIONS(12873), 1, + anon_sym_LBRACE, + STATE(7719), 1, + sym_field_declaration_list, + [417104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(12873), 1, anon_sym_LBRACE, - STATE(7713), 1, + STATE(7720), 1, sym_field_declaration_list, - [364812] = 3, + [417114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17347), 1, - anon_sym_LT, - STATE(2681), 1, - sym_template_argument_list, - [364822] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12139), 1, + sym_argument_list, + [417124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15866), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, + anon_sym_COMMA, + [417134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7717), 1, - sym_field_declaration_list, - [364832] = 3, + STATE(5755), 1, + sym_compound_statement, + [417144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(11949), 1, + sym_argument_list, + [417154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(14164), 1, anon_sym_LBRACE, - STATE(7718), 1, - sym_field_declaration_list, - [364842] = 3, + STATE(5539), 1, + sym_requirement_seq, + [417164] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(11554), 1, + sym_condition_clause, + [417174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(7923), 1, anon_sym_LBRACE, - STATE(7720), 1, - sym_field_declaration_list, - [364852] = 3, + STATE(677), 1, + sym_declaration_list, + [417184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(4960), 1, anon_sym_LBRACE, - STATE(5876), 1, + STATE(8213), 1, sym_initializer_list, - [364862] = 3, + [417194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15160), 1, - anon_sym_SEMI, - [364872] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12108), 1, + sym_argument_list, + [417204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16126), 1, - anon_sym_SEMI, - [364882] = 3, + ACTIONS(11190), 1, + anon_sym_LBRACE, + STATE(3624), 1, + sym_compound_statement, + [417214] = 3, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(18534), 1, + aux_sym_preproc_include_token2, + ACTIONS(18536), 1, + sym_preproc_arg, + [417224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(13426), 1, anon_sym_LPAREN2, - STATE(10955), 1, + STATE(12485), 1, sym_argument_list, - [364892] = 3, + [417234] = 3, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(18538), 1, + aux_sym_preproc_include_token2, + ACTIONS(18540), 1, + sym_preproc_arg, + [417244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17395), 1, - sym_identifier, - ACTIONS(17397), 1, + ACTIONS(13426), 1, anon_sym_LPAREN2, - [364902] = 3, + STATE(12921), 1, + sym_argument_list, + [417254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13309), 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(6024), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [417262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17403), 2, + ACTIONS(18542), 2, anon_sym_COMMA, - anon_sym_SEMI, - [364930] = 3, + anon_sym_RPAREN, + [417270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12131), 1, + sym_argument_list, + [417280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14722), 1, anon_sym_LBRACE, - STATE(549), 1, + STATE(5556), 1, sym_compound_statement, - [364940] = 3, - ACTIONS(14065), 1, + [417290] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(17405), 1, - aux_sym_preproc_include_token2, - ACTIONS(17407), 1, - sym_preproc_arg, - [364950] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12392), 1, + sym_argument_list, + [417300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15202), 1, - anon_sym_SEMI, - [364960] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12137), 1, + sym_argument_list, + [417310] = 3, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(18544), 1, + aux_sym_preproc_include_token2, + ACTIONS(18546), 1, + sym_preproc_arg, + [417320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17289), 1, + ACTIONS(9764), 1, anon_sym_LT, - STATE(2494), 1, + STATE(3452), 1, sym_template_argument_list, - [364970] = 3, + [417330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - ACTIONS(17409), 1, - anon_sym_SEMI, - [364980] = 3, + ACTIONS(18454), 1, + anon_sym_LT, + STATE(6505), 1, + sym_template_argument_list, + [417340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9569), 1, - sym_compound_statement, - [364990] = 2, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12945), 1, + sym_argument_list, + [417350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17411), 2, + ACTIONS(15882), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, anon_sym_COMMA, - anon_sym_GT2, - [364998] = 3, + [417360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14913), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, - anon_sym_COMMA, - [365008] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(11902), 1, + sym_argument_list, + [417370] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8269), 1, - anon_sym_LBRACE, - STATE(2834), 1, - sym_field_declaration_list, - [365018] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12271), 1, + sym_argument_list, + [417380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8269), 1, - anon_sym_LBRACE, - STATE(2858), 1, - sym_field_declaration_list, - [365028] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12634), 1, + sym_argument_list, + [417390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12551), 1, - anon_sym_LT, - STATE(4313), 1, - sym_template_argument_list, - [365038] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(11934), 1, + sym_argument_list, + [417400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(18404), 1, anon_sym_LPAREN2, - STATE(10435), 1, - sym_condition_clause, - [365048] = 3, + STATE(11433), 1, + sym_parenthesized_expression, + [417410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3709), 1, - sym_template_argument_list, - [365058] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12003), 1, + sym_argument_list, + [417420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(13426), 1, anon_sym_LPAREN2, - STATE(202), 1, - sym_condition_clause, - [365068] = 3, + STATE(12103), 1, + sym_argument_list, + [417430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(7458), 1, anon_sym_COLON_COLON, - ACTIONS(15188), 1, + ACTIONS(17128), 1, anon_sym_SEMI, - [365078] = 3, + [417440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(14708), 1, anon_sym_LBRACE, - STATE(10142), 1, + STATE(5264), 1, sym_compound_statement, - [365088] = 3, + [417450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13859), 1, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12164), 1, + sym_argument_list, + [417460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(4833), 1, + STATE(655), 1, sym_compound_statement, - [365098] = 3, + [417470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(13426), 1, anon_sym_LPAREN2, - STATE(226), 1, - sym_condition_clause, - [365108] = 3, + STATE(12238), 1, + sym_argument_list, + [417480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8503), 1, - anon_sym_LBRACE, - STATE(3036), 1, - sym_field_declaration_list, - [365118] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16896), 1, + anon_sym_SEMI, + [417490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13873), 1, - anon_sym_LBRACE, - STATE(3680), 1, - sym_compound_statement, - [365128] = 2, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12324), 1, + sym_argument_list, + [417500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17413), 2, + ACTIONS(18195), 1, + anon_sym_RBRACK, + ACTIONS(18548), 1, anon_sym_COMMA, - anon_sym_GT2, - [365136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15829), 1, - sym_identifier, - STATE(9313), 1, - sym_module_name, - [365146] = 3, + [417510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - STATE(774), 1, - sym_compound_statement, - [365156] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12430), 1, + sym_argument_list, + [417520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16014), 1, - anon_sym_SEMI, - [365166] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12478), 1, + sym_argument_list, + [417530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17355), 1, - anon_sym_LT, - STATE(5542), 1, - sym_template_argument_list, - [365176] = 3, + ACTIONS(18384), 1, + anon_sym_COMMA, + ACTIONS(18550), 1, + anon_sym_RBRACE, + [417540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11370), 1, - sym_argument_list, - [365186] = 2, + ACTIONS(12873), 1, + anon_sym_LBRACE, + STATE(7723), 1, + sym_field_declaration_list, + [417550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17415), 2, + ACTIONS(15876), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, anon_sym_COMMA, - anon_sym_GT2, - [365194] = 3, + [417560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(17172), 1, anon_sym_COLON_COLON, - ACTIONS(15194), 1, + ACTIONS(18552), 1, anon_sym_SEMI, - [365204] = 3, + [417570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13869), 1, + ACTIONS(10602), 1, anon_sym_LBRACE, - STATE(5174), 1, - sym_compound_statement, - [365214] = 3, + STATE(5211), 1, + sym_field_declaration_list, + [417580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13871), 1, + ACTIONS(7378), 1, anon_sym_LBRACE, - STATE(6468), 1, - sym_compound_statement, - [365224] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17417), 2, - anon_sym_COMMA, - anon_sym_GT2, - [365232] = 3, + STATE(2284), 1, + sym_field_declaration_list, + [417590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16072), 1, - anon_sym_SEMI, - [365242] = 3, + ACTIONS(7378), 1, + anon_sym_LBRACE, + STATE(2286), 1, + sym_field_declaration_list, + [417600] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9517), 1, + STATE(10552), 1, sym_compound_statement, - [365252] = 3, + [417610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(236), 1, - sym_condition_clause, - [365262] = 3, + ACTIONS(10602), 1, + anon_sym_LBRACE, + STATE(5212), 1, + sym_field_declaration_list, + [417620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - STATE(390), 1, - sym_declaration_list, - [365272] = 3, + STATE(4447), 1, + sym_field_declaration_list, + [417630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15829), 1, - sym_identifier, - STATE(9334), 1, - sym_module_name, - [365282] = 2, + ACTIONS(10822), 1, + anon_sym_LBRACE, + STATE(5305), 1, + sym_field_declaration_list, + [417640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12315), 1, + anon_sym_LBRACE, + STATE(7405), 1, + sym_field_declaration_list, + [417650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17419), 2, + ACTIONS(18554), 2, anon_sym_COMMA, anon_sym_GT2, - [365290] = 2, + [417658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17421), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [365298] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(17014), 1, + anon_sym_SEMI, + [417668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(10822), 1, anon_sym_LBRACE, - STATE(7380), 1, - sym_initializer_list, - [365308] = 3, + STATE(5307), 1, + sym_field_declaration_list, + [417678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13279), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - STATE(5176), 1, - sym_requirement_seq, - [365318] = 3, + STATE(4146), 1, + sym_field_declaration_list, + [417688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, + ACTIONS(18043), 2, anon_sym_COMMA, - ACTIONS(17423), 1, - anon_sym_RBRACE, - [365328] = 3, + anon_sym_RBRACK, + [417696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8269), 1, + ACTIONS(14722), 1, anon_sym_LBRACE, - STATE(2826), 1, - sym_field_declaration_list, - [365338] = 3, + STATE(5706), 1, + sym_compound_statement, + [417706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(11190), 1, anon_sym_LBRACE, - STATE(3935), 1, - sym_field_declaration_list, - [365348] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17425), 1, - aux_sym_preproc_include_token2, - ACTIONS(17427), 1, - sym_preproc_arg, - [365358] = 3, + STATE(3685), 1, + sym_compound_statement, + [417716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13849), 1, + ACTIONS(14740), 1, anon_sym_LBRACE, - STATE(5549), 1, + STATE(9375), 1, sym_compound_statement, - [365368] = 3, + [417726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17429), 1, + ACTIONS(18556), 1, anon_sym_LPAREN2, - ACTIONS(17431), 1, + ACTIONS(18558), 1, sym_raw_string_delimiter, - [365378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1113), 1, - anon_sym_LBRACE, - STATE(731), 1, - sym_compound_statement, - [365388] = 3, + [417736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14875), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, - anon_sym_COMMA, - [365398] = 3, + ACTIONS(9469), 1, + anon_sym_LT, + STATE(3935), 1, + sym_template_argument_list, + [417746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(10602), 1, anon_sym_LBRACE, - STATE(3478), 1, - sym_compound_statement, - [365408] = 3, + STATE(5191), 1, + sym_field_declaration_list, + [417756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13877), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - STATE(5184), 1, - sym_compound_statement, - [365418] = 3, + STATE(4147), 1, + sym_field_declaration_list, + [417766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(11148), 1, - sym_parenthesized_expression, - [365428] = 3, + ACTIONS(15872), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, + anon_sym_COMMA, + [417776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17433), 1, - anon_sym_LPAREN2, - ACTIONS(17435), 1, - sym_raw_string_delimiter, - [365438] = 3, + ACTIONS(18384), 1, + anon_sym_COMMA, + ACTIONS(18560), 1, + anon_sym_RBRACE, + [417786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(7378), 1, anon_sym_LBRACE, - STATE(9327), 1, + STATE(2265), 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, + [417796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10647), 1, - anon_sym_LT, - STATE(4318), 1, - sym_template_argument_list, - [365468] = 3, + ACTIONS(14708), 1, + anon_sym_LBRACE, + STATE(5486), 1, + sym_compound_statement, + [417806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13869), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - STATE(5180), 1, - sym_compound_statement, - [365478] = 3, + STATE(8632), 1, + sym_field_declaration_list, + [417816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(11412), 1, - sym_parenthesized_expression, - [365488] = 3, + ACTIONS(1113), 1, + anon_sym_LBRACE, + STATE(658), 1, + sym_compound_statement, + [417826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(11177), 1, anon_sym_LBRACE, - STATE(836), 1, - sym_declaration_list, - [365498] = 3, + STATE(3079), 1, + sym_compound_statement, + [417836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13319), 1, + ACTIONS(7943), 1, anon_sym_LBRACE, - STATE(3653), 1, - sym_requirement_seq, - [365508] = 2, + STATE(858), 1, + sym_declaration_list, + [417846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17229), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [365516] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(557), 1, + sym_compound_statement, + [417856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17373), 1, - anon_sym_LT, - STATE(3733), 1, - sym_template_argument_list, - [365526] = 2, + ACTIONS(14722), 1, + anon_sym_LBRACE, + STATE(5613), 1, + sym_compound_statement, + [417866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17201), 2, - anon_sym_COMMA, - anon_sym_GT2, - [365534] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(17204), 1, + anon_sym_SEMI, + [417876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(10424), 1, - sym_parameter_list, - [365544] = 3, + ACTIONS(12315), 1, + anon_sym_LBRACE, + STATE(7408), 1, + sym_field_declaration_list, + [417886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - STATE(1003), 1, - sym_declaration_list, - [365554] = 3, + STATE(7409), 1, + sym_field_declaration_list, + [417896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(10316), 1, - sym_parameter_list, - [365564] = 3, + ACTIONS(18384), 1, + anon_sym_COMMA, + ACTIONS(18562), 1, + anon_sym_RBRACE, + [417906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13839), 1, - anon_sym_LBRACE, - STATE(5083), 1, - sym_compound_statement, - [365574] = 3, + ACTIONS(18564), 2, + anon_sym_COMMA, + anon_sym_GT2, + [417914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - STATE(9338), 1, + STATE(6977), 1, sym_field_declaration_list, - [365584] = 3, + [417924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - STATE(9339), 1, + STATE(6984), 1, sym_field_declaration_list, - [365594] = 3, + [417934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - STATE(9847), 1, - sym_compound_statement, - [365604] = 3, + STATE(6985), 1, + sym_field_declaration_list, + [417944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(12384), 1, anon_sym_LBRACE, - STATE(9342), 1, + STATE(6989), 1, sym_field_declaration_list, - [365614] = 3, + [417954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(229), 1, + sym_condition_clause, + [417964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14740), 1, anon_sym_LBRACE, - STATE(774), 1, + STATE(9380), 1, sym_compound_statement, - [365624] = 2, + [417974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17214), 2, + ACTIONS(18566), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [365632] = 3, + anon_sym_RBRACK_RBRACK, + [417982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17355), 1, - anon_sym_LT, - STATE(2594), 1, - sym_template_argument_list, - [365642] = 3, + ACTIONS(18384), 1, + anon_sym_COMMA, + ACTIONS(18568), 1, + anon_sym_RBRACE, + [417992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16070), 1, - anon_sym_SEMI, - [365652] = 3, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(227), 1, + sym_condition_clause, + [418002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12315), 1, + anon_sym_LBRACE, + STATE(7373), 1, + sym_field_declaration_list, + [418012] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(309), 1, anon_sym_LBRACE, - STATE(383), 1, + STATE(341), 1, sym_compound_statement, - [365662] = 2, + [418022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14877), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [365670] = 3, + ACTIONS(3155), 1, + anon_sym_LBRACE, + STATE(6770), 1, + sym_initializer_list, + [418032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(10571), 1, - sym_parenthesized_expression, - [365680] = 3, + ACTIONS(14740), 1, + anon_sym_LBRACE, + STATE(9407), 1, + sym_compound_statement, + [418042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15792), 1, - anon_sym_SEMI, - [365690] = 3, + ACTIONS(2952), 1, + anon_sym_LBRACE, + STATE(6233), 1, + sym_initializer_list, + [418052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(224), 1, - sym_condition_clause, - [365700] = 3, + ACTIONS(15902), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, + anon_sym_COMMA, + [418062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16068), 1, - anon_sym_LBRACE, - STATE(8427), 1, - sym_requirement_seq, - [365710] = 2, + ACTIONS(18570), 1, + anon_sym_LPAREN2, + ACTIONS(18572), 1, + sym_raw_string_delimiter, + [418072] = 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(13131), 1, + anon_sym_RPAREN, + ACTIONS(13133), 1, + anon_sym_SEMI, + [418082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15829), 1, + ACTIONS(16900), 1, sym_identifier, - STATE(10246), 1, + STATE(10416), 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, + [418092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17242), 2, - 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, + ACTIONS(9630), 1, + anon_sym_LBRACE, + STATE(10515), 1, + sym_field_declaration_list, + [418102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17253), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [365774] = 3, + ACTIONS(7941), 1, + anon_sym_LBRACE, + STATE(960), 1, + sym_declaration_list, + [418112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14901), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, - anon_sym_COMMA, - [365784] = 2, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_compound_statement, + [418122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16914), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [365792] = 3, - ACTIONS(14065), 1, + ACTIONS(3038), 1, + anon_sym_LBRACE, + STATE(6582), 1, + sym_initializer_list, + [418132] = 3, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17453), 1, + ACTIONS(18574), 1, aux_sym_preproc_include_token2, - ACTIONS(17455), 1, + ACTIONS(18576), 1, sym_preproc_arg, - [365802] = 3, + [418142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - STATE(439), 1, - sym_compound_statement, - [365812] = 3, + STATE(10518), 1, + sym_field_declaration_list, + [418152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8503), 1, + ACTIONS(9630), 1, anon_sym_LBRACE, - STATE(3025), 1, + STATE(10519), 1, + sym_field_declaration_list, + [418162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7943), 1, + anon_sym_LBRACE, + STATE(828), 1, + sym_declaration_list, + [418172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9630), 1, + anon_sym_LBRACE, + STATE(10523), 1, sym_field_declaration_list, - [365822] = 3, + [418182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8503), 1, + ACTIONS(10834), 1, anon_sym_LBRACE, - STATE(3035), 1, + STATE(5468), 1, sym_field_declaration_list, - [365832] = 2, + [418192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 2, + ACTIONS(18384), 1, anon_sym_COMMA, + ACTIONS(18578), 1, anon_sym_RBRACE, - [365840] = 3, + [418202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - STATE(450), 1, - sym_declaration_list, - [365850] = 3, + STATE(4380), 1, + sym_field_declaration_list, + [418212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(564), 1, - sym_compound_statement, - [365860] = 3, + ACTIONS(13426), 1, + anon_sym_LPAREN2, + STATE(12561), 1, + sym_argument_list, + [418222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18506), 1, + anon_sym_LT, + STATE(6469), 1, + sym_template_argument_list, + [418232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18404), 1, + anon_sym_LPAREN2, + STATE(12058), 1, + sym_parenthesized_expression, + [418242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(9690), 1, anon_sym_LBRACE, - STATE(3917), 1, + STATE(4404), 1, sym_field_declaration_list, - [365870] = 3, + [418252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(17281), 1, anon_sym_LBRACE, - STATE(3936), 1, - sym_field_declaration_list, - [365880] = 3, + STATE(3418), 1, + sym_requirement_seq, + [418262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(14213), 1, anon_sym_LBRACE, - STATE(3942), 1, - sym_field_declaration_list, - [365890] = 3, + STATE(5282), 1, + sym_requirement_seq, + [418272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(3836), 1, - sym_field_declaration_list, - [365900] = 2, + STATE(363), 1, + sym_compound_statement, + [418282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17272), 2, - anon_sym_COMMA, + ACTIONS(14750), 1, anon_sym_LBRACE, - [365908] = 3, + STATE(3460), 1, + sym_compound_statement, + [418292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17457), 1, + ACTIONS(18580), 1, + anon_sym_LT, + STATE(2535), 1, + sym_template_argument_list, + [418302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18506), 1, + anon_sym_LT, + STATE(4859), 1, + sym_template_argument_list, + [418312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18582), 1, + sym_identifier, + ACTIONS(18584), 1, anon_sym_LPAREN2, - ACTIONS(17459), 1, - sym_raw_string_delimiter, - [365918] = 2, + [418322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16444), 2, - anon_sym_COMMA, + ACTIONS(8718), 1, anon_sym_LBRACE, - [365926] = 2, + STATE(3087), 1, + sym_field_declaration_list, + [418332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12681), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [365934] = 3, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(11534), 1, + sym_condition_clause, + [418342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15182), 1, - anon_sym_SEMI, - [365944] = 2, + ACTIONS(12315), 1, + anon_sym_LBRACE, + STATE(6939), 1, + sym_field_declaration_list, + [418352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17461), 2, - anon_sym_COMMA, + ACTIONS(12315), 1, anon_sym_LBRACE, - [365952] = 2, + STATE(6961), 1, + sym_field_declaration_list, + [418362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17266), 2, - anon_sym_COMMA, + ACTIONS(12315), 1, anon_sym_LBRACE, - [365960] = 3, + STATE(6964), 1, + sym_field_declaration_list, + [418372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(12315), 1, anon_sym_LBRACE, - STATE(5538), 1, - sym_initializer_list, - [365970] = 3, + STATE(7004), 1, + sym_field_declaration_list, + [418382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17463), 1, + ACTIONS(18586), 1, anon_sym_LPAREN2, - ACTIONS(17465), 1, + ACTIONS(18588), 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, + [418392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17467), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [365998] = 3, + ACTIONS(18474), 1, + anon_sym_LT, + STATE(4906), 1, + sym_template_argument_list, + [418402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - STATE(7298), 1, - sym_initializer_list, - [366008] = 3, + ACTIONS(17319), 1, + anon_sym_LPAREN2, + STATE(203), 1, + sym_condition_clause, + [418412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17373), 1, + ACTIONS(18506), 1, anon_sym_LT, - STATE(4130), 1, + STATE(4602), 1, sym_template_argument_list, - [366018] = 3, + [418422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17469), 1, + ACTIONS(18590), 1, anon_sym_LPAREN2, - ACTIONS(17471), 1, + ACTIONS(18592), 1, sym_raw_string_delimiter, - [366028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12978), 1, - anon_sym_LBRACE, - STATE(7571), 1, - sym_field_declaration_list, - [366038] = 3, + [418432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14889), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(13406), 2, anon_sym_COMMA, - [366048] = 2, + anon_sym_RPAREN, + [418440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12735), 2, + ACTIONS(12361), 2, anon_sym_COMMA, anon_sym_RBRACK, - [366056] = 3, + [418448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17473), 1, + ACTIONS(18594), 1, anon_sym_LPAREN2, - ACTIONS(17475), 1, + ACTIONS(18596), 1, sym_raw_string_delimiter, - [366066] = 2, + [418458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14481), 2, + ACTIONS(15848), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, anon_sym_COMMA, - anon_sym_SEMI, - [366074] = 3, + [418468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(5106), 1, - sym_compound_statement, - [366084] = 3, + ACTIONS(18598), 1, + anon_sym_LPAREN2, + ACTIONS(18600), 1, + sym_raw_string_delimiter, + [418478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17477), 1, + ACTIONS(18602), 1, anon_sym_LPAREN2, - ACTIONS(17479), 1, + ACTIONS(18604), 1, sym_raw_string_delimiter, - [366094] = 3, + [418488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(11039), 1, - sym_parenthesized_expression, - [366104] = 3, + ACTIONS(15898), 1, + anon_sym_RBRACE, + ACTIONS(18384), 1, + anon_sym_COMMA, + [418498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17481), 1, + ACTIONS(18606), 1, anon_sym_LPAREN2, - ACTIONS(17483), 1, + ACTIONS(18608), 1, sym_raw_string_delimiter, - [366114] = 3, + [418508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - STATE(946), 1, - sym_declaration_list, - [366124] = 3, + STATE(4378), 1, + sym_field_declaration_list, + [418518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16228), 1, + ACTIONS(9572), 1, anon_sym_LBRACE, - STATE(8003), 1, - sym_requirement_seq, - [366134] = 3, + STATE(4387), 1, + sym_field_declaration_list, + [418528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17485), 1, + ACTIONS(18610), 1, anon_sym_LPAREN2, - ACTIONS(17487), 1, + ACTIONS(18612), 1, sym_raw_string_delimiter, - [366144] = 3, + [418538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17489), 1, + ACTIONS(18614), 1, anon_sym_LPAREN2, - ACTIONS(17491), 1, + ACTIONS(18616), 1, sym_raw_string_delimiter, - [366154] = 3, + [418548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17493), 1, + ACTIONS(18618), 1, anon_sym_LPAREN2, - ACTIONS(17495), 1, + ACTIONS(18620), 1, sym_raw_string_delimiter, - [366164] = 3, + [418558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17497), 1, + ACTIONS(18622), 1, anon_sym_LPAREN2, - ACTIONS(17499), 1, + ACTIONS(18624), 1, sym_raw_string_delimiter, - [366174] = 3, + [418568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17501), 1, + ACTIONS(18626), 1, anon_sym_LPAREN2, - ACTIONS(17503), 1, + ACTIONS(18628), 1, sym_raw_string_delimiter, - [366184] = 3, + [418578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17505), 1, + ACTIONS(18630), 1, anon_sym_LPAREN2, - ACTIONS(17507), 1, + ACTIONS(18632), 1, sym_raw_string_delimiter, - [366194] = 3, + [418588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17509), 1, + ACTIONS(18634), 1, anon_sym_LPAREN2, - ACTIONS(17511), 1, + ACTIONS(18636), 1, sym_raw_string_delimiter, - [366204] = 3, + [418598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17513), 1, + ACTIONS(18638), 1, anon_sym_LPAREN2, - ACTIONS(17515), 1, + ACTIONS(18640), 1, sym_raw_string_delimiter, - [366214] = 3, + [418608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17517), 1, + ACTIONS(18642), 1, anon_sym_LPAREN2, - ACTIONS(17519), 1, + ACTIONS(18644), 1, sym_raw_string_delimiter, - [366224] = 3, + [418618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17521), 1, + ACTIONS(18646), 1, anon_sym_LPAREN2, - ACTIONS(17523), 1, + ACTIONS(18648), 1, sym_raw_string_delimiter, - [366234] = 3, + [418628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17525), 1, + ACTIONS(18650), 1, anon_sym_LPAREN2, - ACTIONS(17527), 1, + ACTIONS(18652), 1, sym_raw_string_delimiter, - [366244] = 3, + [418638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17529), 1, + ACTIONS(18654), 1, anon_sym_LPAREN2, - ACTIONS(17531), 1, + ACTIONS(18656), 1, sym_raw_string_delimiter, - [366254] = 3, + [418648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17533), 1, + ACTIONS(18658), 1, anon_sym_LPAREN2, - ACTIONS(17535), 1, + ACTIONS(18660), 1, sym_raw_string_delimiter, - [366264] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13875), 1, - anon_sym_LBRACE, - STATE(8017), 1, - sym_compound_statement, - [366274] = 3, + [418658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13873), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3672), 1, + STATE(11278), 1, sym_compound_statement, - [366284] = 3, + [418668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17313), 1, - anon_sym_LT, - STATE(2648), 1, - sym_template_argument_list, - [366294] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5948), 2, + ACTIONS(18363), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [366302] = 3, + anon_sym_RBRACK_RBRACK, + [418676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9950), 1, - anon_sym_LT, - STATE(4214), 1, - sym_template_argument_list, - [366312] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(16111), 1, + anon_sym_SEMI, + [418686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - STATE(666), 1, - sym_compound_statement, - [366322] = 2, + ACTIONS(18382), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [418694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12443), 2, + ACTIONS(9982), 2, anon_sym_COMMA, - anon_sym_SEMI, - [366330] = 3, + anon_sym_RBRACK, + [418702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14903), 1, + ACTIONS(15884), 1, anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(18384), 1, anon_sym_COMMA, - [366340] = 3, + [418712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(10395), 1, - sym_parameter_list, - [366350] = 3, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + ACTIONS(17170), 1, + anon_sym_SEMI, + [418722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 1, + ACTIONS(4974), 1, anon_sym_LBRACE, - STATE(7575), 1, - sym_field_declaration_list, - [366360] = 3, + STATE(6708), 1, + sym_initializer_list, + [418732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 1, + ACTIONS(14754), 1, anon_sym_LBRACE, - STATE(7576), 1, - sym_field_declaration_list, - [366370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(237), 1, - sym_condition_clause, - [366380] = 3, + STATE(5593), 1, + sym_compound_statement, + [418742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(10498), 1, - sym_parenthesized_expression, - [366390] = 2, + ACTIONS(18662), 1, + sym_auto, + [418749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17537), 1, + ACTIONS(18664), 1, anon_sym_SEMI, - [366397] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17539), 1, - anon_sym_LPAREN2, - [366404] = 2, + [418756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17541), 1, + ACTIONS(18666), 1, anon_sym_DOT_DOT_DOT, - [366411] = 2, + [418763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17543), 1, - aux_sym_preproc_if_token2, - [366418] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14381), 1, - anon_sym_LBRACE, - [366425] = 2, + ACTIONS(18668), 1, + anon_sym_RPAREN, + [418770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17545), 1, + ACTIONS(18670), 1, anon_sym_SEMI, - [366432] = 2, + [418777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17547), 1, - anon_sym_LPAREN2, - [366439] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(16826), 1, - aux_sym_preproc_include_token2, - [366446] = 2, + ACTIONS(18672), 1, + anon_sym_SEMI, + [418784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12942), 1, + ACTIONS(18674), 1, anon_sym_RPAREN, - [366453] = 2, + [418791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17549), 1, - anon_sym_DQUOTE, - [366460] = 2, + ACTIONS(18676), 1, + sym_identifier, + [418798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17107), 1, - anon_sym_RPAREN, - [366467] = 2, + ACTIONS(18678), 1, + anon_sym_DQUOTE, + [418805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17551), 1, - sym_identifier, - [366474] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17553), 1, - aux_sym_preproc_include_token2, - [366481] = 2, + ACTIONS(18680), 1, + aux_sym_preproc_if_token2, + [418812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17555), 1, + ACTIONS(18682), 1, anon_sym_SEMI, - [366488] = 2, + [418819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17557), 1, - anon_sym_RPAREN, - [366495] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17559), 1, - anon_sym_RPAREN, - [366502] = 2, + ACTIONS(18684), 1, + aux_sym_preproc_if_token2, + [418826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17561), 1, + ACTIONS(18686), 1, anon_sym_RPAREN, - [366509] = 2, + [418833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17563), 1, + ACTIONS(18688), 1, anon_sym_RPAREN, - [366516] = 2, + [418840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17565), 1, + ACTIONS(18690), 1, sym_identifier, - [366523] = 2, + [418847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17567), 1, + ACTIONS(18692), 1, anon_sym_RPAREN, - [366530] = 2, + [418854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17569), 1, - anon_sym_RPAREN, - [366537] = 2, + ACTIONS(18694), 1, + sym_identifier, + [418861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17571), 1, + ACTIONS(18696), 1, sym_auto, - [366544] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17573), 1, - aux_sym_preproc_include_token2, - [366551] = 2, + [418868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17575), 1, - ts_builtin_sym_end, - [366558] = 2, + ACTIONS(18698), 1, + anon_sym_RPAREN, + [418875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12293), 1, + ACTIONS(18700), 1, anon_sym_SEMI, - [366565] = 2, + [418882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17577), 1, + ACTIONS(18384), 1, + anon_sym_COMMA, + [418889] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18702), 1, aux_sym_preproc_if_token2, - [366572] = 2, + [418896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17579), 1, - anon_sym_DQUOTE, - [366579] = 2, + ACTIONS(18704), 1, + aux_sym_preproc_if_token2, + [418903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17581), 1, + ACTIONS(18706), 1, anon_sym_RPAREN, - [366586] = 2, + [418910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17583), 1, - sym_identifier, - [366593] = 2, - ACTIONS(3), 1, + ACTIONS(18708), 1, + aux_sym_preproc_if_token2, + [418917] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(10890), 1, - anon_sym_RPAREN, - [366600] = 2, + ACTIONS(18710), 1, + aux_sym_preproc_include_token2, + [418924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14464), 1, - anon_sym_LBRACE, - [366607] = 2, + ACTIONS(18712), 1, + anon_sym_RPAREN, + [418931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17585), 1, - sym_identifier, - [366614] = 2, + ACTIONS(18714), 1, + sym_raw_string_delimiter, + [418938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17587), 1, - anon_sym_DQUOTE, - [366621] = 2, + ACTIONS(18716), 1, + anon_sym_SEMI, + [418945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12679), 1, + ACTIONS(13378), 1, anon_sym_COLON, - [366628] = 2, + [418952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17589), 1, + ACTIONS(18718), 1, anon_sym_RPAREN, - [366635] = 2, + [418959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17591), 1, + ACTIONS(18720), 1, anon_sym_RPAREN, - [366642] = 2, + [418966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17593), 1, - anon_sym_RBRACK, - [366649] = 2, + ACTIONS(18722), 1, + anon_sym_RPAREN, + [418973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17595), 1, - anon_sym_RPAREN, - [366656] = 2, + ACTIONS(18724), 1, + anon_sym_COLON, + [418980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17597), 1, - anon_sym_RPAREN, - [366663] = 2, + ACTIONS(13282), 1, + anon_sym_COLON, + [418987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16070), 1, - anon_sym_SEMI, - [366670] = 2, - ACTIONS(14065), 1, + ACTIONS(18726), 1, + anon_sym_RPAREN, + [418994] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17599), 1, + ACTIONS(17354), 1, aux_sym_preproc_include_token2, - [366677] = 2, - ACTIONS(3), 1, + [419001] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17601), 1, - anon_sym_RPAREN, - [366684] = 2, + ACTIONS(18728), 1, + aux_sym_preproc_include_token2, + [419008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PIPE_PIPE, - [366691] = 2, + ACTIONS(18730), 1, + sym_identifier, + [419015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17605), 1, - anon_sym_LPAREN2, - [366698] = 2, + ACTIONS(18732), 1, + aux_sym_preproc_if_token2, + [419022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17607), 1, + ACTIONS(18734), 1, anon_sym_RPAREN, - [366705] = 2, + [419029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17609), 1, + ACTIONS(13703), 1, anon_sym_RPAREN, - [366712] = 2, + [419036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17611), 1, - anon_sym_RPAREN, - [366719] = 2, + ACTIONS(18736), 1, + aux_sym_preproc_if_token2, + [419043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17613), 1, + ACTIONS(18738), 1, anon_sym_RPAREN, - [366726] = 2, + [419050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17615), 1, + ACTIONS(18740), 1, sym_identifier, - [366733] = 2, + [419057] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18742), 1, + anon_sym_COLON, + [419064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17617), 1, + ACTIONS(18744), 1, anon_sym_RPAREN, - [366740] = 2, + [419071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17619), 1, + ACTIONS(16994), 1, + anon_sym_SEMI, + [419078] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18746), 1, anon_sym_LPAREN2, - [366747] = 2, - ACTIONS(14065), 1, + [419085] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17621), 1, - aux_sym_preproc_include_token2, - [366754] = 2, + ACTIONS(18748), 1, + aux_sym_preproc_if_token2, + [419092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17623), 1, + ACTIONS(6082), 1, + anon_sym_DOT_DOT_DOT, + [419099] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18750), 1, + aux_sym_preproc_if_token2, + [419106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18752), 1, anon_sym_RPAREN, - [366761] = 2, + [419113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17625), 1, + ACTIONS(18754), 1, + anon_sym_SEMI, + [419120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18756), 1, anon_sym_SEMI, - [366768] = 2, + [419127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12809), 1, + ACTIONS(18758), 1, anon_sym_RPAREN, - [366775] = 2, + [419134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12473), 1, - anon_sym_RBRACE, - [366782] = 2, + ACTIONS(18760), 1, + sym_raw_string_delimiter, + [419141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17627), 1, - aux_sym_preproc_if_token2, - [366789] = 2, + ACTIONS(13280), 1, + anon_sym_SEMI, + [419148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17629), 1, - anon_sym_LPAREN2, - [366796] = 2, + ACTIONS(18762), 1, + sym_identifier, + [419155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17631), 1, + ACTIONS(13470), 1, anon_sym_RPAREN, - [366803] = 2, + [419162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17633), 1, - sym_raw_string_delimiter, - [366810] = 2, + ACTIONS(13065), 1, + anon_sym_RBRACE, + [419169] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(18764), 1, + aux_sym_preproc_include_token2, + [419176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17635), 1, - anon_sym_STAR, - [366817] = 2, + ACTIONS(18766), 1, + anon_sym_RPAREN, + [419183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14901), 1, + ACTIONS(15862), 1, + anon_sym_RBRACE, + [419190] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15896), 1, anon_sym_RBRACE, - [366824] = 2, + [419197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16014), 1, + ACTIONS(18478), 1, + anon_sym_RBRACE, + [419204] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13741), 1, + anon_sym_RPAREN, + [419211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13368), 1, anon_sym_SEMI, - [366831] = 2, + [419218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17637), 1, - anon_sym_LPAREN2, - [366838] = 2, + ACTIONS(13372), 1, + anon_sym_COLON, + [419225] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(17968), 1, + aux_sym_preproc_include_token2, + [419232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17639), 1, + ACTIONS(18768), 1, aux_sym_preproc_if_token2, - [366845] = 2, + [419239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17641), 1, - sym_identifier, - [366852] = 2, + ACTIONS(18770), 1, + anon_sym_STAR, + [419246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17643), 1, - anon_sym_RBRACK, - [366859] = 2, + ACTIONS(18772), 1, + aux_sym_preproc_if_token2, + [419253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17645), 1, - anon_sym_private, - [366866] = 2, + ACTIONS(18774), 1, + anon_sym_RPAREN, + [419260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17321), 1, - anon_sym_RBRACE, - [366873] = 2, + ACTIONS(18776), 1, + anon_sym_RPAREN, + [419267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17647), 1, + ACTIONS(18778), 1, anon_sym_RPAREN, - [366880] = 2, + [419274] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18780), 1, + anon_sym_LPAREN2, + [419281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17649), 1, + ACTIONS(18782), 1, anon_sym_RPAREN, - [366887] = 2, + [419288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17651), 1, - aux_sym_preproc_if_token2, - [366894] = 2, + ACTIONS(18484), 1, + anon_sym_RBRACE, + [419295] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18784), 1, + anon_sym_RPAREN, + [419302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17653), 1, + ACTIONS(18786), 1, anon_sym_RPAREN, - [366901] = 2, + [419309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10546), 1, + ACTIONS(18788), 1, anon_sym_SEMI, - [366908] = 2, + [419316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15174), 1, - anon_sym_LBRACE, - [366915] = 2, + ACTIONS(18790), 1, + sym_identifier, + [419323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17655), 1, - aux_sym_preproc_if_token2, - [366922] = 2, + ACTIONS(18792), 1, + anon_sym_RPAREN, + [419330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17657), 1, - sym_identifier, - [366929] = 2, + ACTIONS(18794), 1, + anon_sym_STAR, + [419337] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18796), 1, + anon_sym_SEMI, + [419344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17659), 1, + ACTIONS(18798), 1, anon_sym_RPAREN, - [366936] = 2, + [419351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17661), 1, - aux_sym_preproc_if_token2, - [366943] = 2, + ACTIONS(18800), 1, + anon_sym_RPAREN, + [419358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12719), 1, - anon_sym_SEMI, - [366950] = 2, + ACTIONS(18802), 1, + anon_sym_DQUOTE, + [419365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15182), 1, - anon_sym_SEMI, - [366957] = 2, + ACTIONS(18804), 1, + anon_sym_COLON, + [419372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17663), 1, - anon_sym_RBRACE, - [366964] = 2, + ACTIONS(18806), 1, + anon_sym_DQUOTE, + [419379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17665), 1, - anon_sym_SEMI, - [366971] = 2, + ACTIONS(6085), 1, + anon_sym_DOT_DOT_DOT, + [419386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17667), 1, - aux_sym_preproc_if_token2, - [366978] = 2, + ACTIONS(18808), 1, + sym_identifier, + [419393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17669), 1, - anon_sym_RPAREN, - [366985] = 2, + ACTIONS(18810), 1, + anon_sym_DQUOTE, + [419400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17671), 1, - anon_sym_RPAREN, - [366992] = 2, + ACTIONS(18812), 1, + anon_sym_DQUOTE, + [419407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17673), 1, + ACTIONS(18814), 1, anon_sym_RPAREN, - [366999] = 2, + [419414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17675), 1, - anon_sym_SEMI, - [367006] = 2, - ACTIONS(14065), 1, + ACTIONS(15206), 1, + sym_identifier, + [419421] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16127), 1, + anon_sym_LBRACE, + [419428] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17677), 1, + ACTIONS(13352), 1, + anon_sym_RPAREN, + [419435] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(18816), 1, aux_sym_preproc_include_token2, - [367013] = 2, + [419442] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18818), 1, + anon_sym_STAR, + [419449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17679), 1, + ACTIONS(18820), 1, anon_sym_SEMI, - [367020] = 2, + [419456] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18822), 1, + aux_sym_preproc_if_token2, + [419463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10874), 1, + ACTIONS(18824), 1, anon_sym_RPAREN, - [367027] = 2, + [419470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17681), 1, + ACTIONS(18826), 1, anon_sym_SEMI, - [367034] = 2, + [419477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17683), 1, + ACTIONS(6441), 1, anon_sym_SEMI, - [367041] = 2, + [419484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 1, + ACTIONS(18828), 1, anon_sym_SEMI, - [367048] = 2, + [419491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17685), 1, + ACTIONS(18830), 1, anon_sym_SEMI, - [367055] = 2, + [419498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17687), 1, + ACTIONS(18832), 1, aux_sym_preproc_if_token2, - [367062] = 2, + [419505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15792), 1, + ACTIONS(18834), 1, anon_sym_SEMI, - [367069] = 2, + [419512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12693), 1, + ACTIONS(13290), 1, anon_sym_COLON, - [367076] = 2, + [419519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17689), 1, - sym_identifier, - [367083] = 2, + ACTIONS(18836), 1, + anon_sym_SEMI, + [419526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17691), 1, - anon_sym_COLON, - [367090] = 2, + ACTIONS(18838), 1, + anon_sym_RPAREN, + [419533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12729), 1, - anon_sym_SEMI, - [367097] = 2, + ACTIONS(16413), 1, + anon_sym_LBRACE, + [419540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14907), 1, - anon_sym_RBRACE, - [367104] = 2, + ACTIONS(18840), 1, + sym_identifier, + [419547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17693), 1, - anon_sym_LPAREN2, - [367111] = 2, + ACTIONS(6116), 1, + anon_sym_DOT_DOT_DOT, + [419554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17695), 1, + ACTIONS(18842), 1, anon_sym_SEMI, - [367118] = 2, + [419561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17697), 1, - anon_sym_SEMI, - [367125] = 2, + ACTIONS(6088), 1, + anon_sym_DOT_DOT_DOT, + [419568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17699), 1, - anon_sym_SEMI, - [367132] = 2, + ACTIONS(18844), 1, + sym_identifier, + [419575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17701), 1, - anon_sym_RPAREN, - [367139] = 2, + ACTIONS(6119), 1, + anon_sym_DOT_DOT_DOT, + [419582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11438), 1, - sym_identifier, - [367146] = 2, + ACTIONS(18846), 1, + anon_sym_STAR, + [419589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17703), 1, - sym_identifier, - [367153] = 2, + ACTIONS(18848), 1, + aux_sym_preproc_if_token2, + [419596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18850), 1, + anon_sym_SEMI, + [419603] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(18852), 1, + aux_sym_preproc_include_token2, + [419610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17705), 1, + ACTIONS(18490), 1, anon_sym_RBRACE, - [367160] = 2, + [419617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12944), 1, - anon_sym_RPAREN, - [367167] = 2, + ACTIONS(18854), 1, + anon_sym_SEMI, + [419624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17707), 1, - sym_identifier, - [367174] = 2, + ACTIONS(18856), 1, + anon_sym_DQUOTE, + [419631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17709), 1, + ACTIONS(18858), 1, anon_sym_LPAREN2, - [367181] = 2, - ACTIONS(14065), 1, + [419638] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17711), 1, - aux_sym_preproc_include_token2, - [367188] = 2, + ACTIONS(18860), 1, + anon_sym_RPAREN, + [419645] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10151), 1, + sym_identifier, + [419652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17713), 1, + ACTIONS(18862), 1, aux_sym_preproc_if_token2, - [367195] = 2, + [419659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17715), 1, - anon_sym_SEMI, - [367202] = 2, + ACTIONS(18864), 1, + anon_sym_RPAREN, + [419666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17717), 1, - anon_sym_STAR, - [367209] = 2, + ACTIONS(18866), 1, + anon_sym_RPAREN, + [419673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17719), 1, - aux_sym_preproc_if_token2, - [367216] = 2, + ACTIONS(18868), 1, + anon_sym_DQUOTE, + [419680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17721), 1, - anon_sym_SEMI, - [367223] = 2, + ACTIONS(18870), 1, + sym_identifier, + [419687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17723), 1, + ACTIONS(18872), 1, anon_sym_RPAREN, - [367230] = 2, + [419694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17725), 1, - anon_sym_SEMI, - [367237] = 2, + ACTIONS(18874), 1, + anon_sym_RPAREN, + [419701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17727), 1, - aux_sym_preproc_if_token2, - [367244] = 2, + ACTIONS(18876), 1, + anon_sym_LPAREN2, + [419708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17729), 1, - aux_sym_preproc_if_token2, - [367251] = 2, + ACTIONS(18878), 1, + anon_sym_RPAREN, + [419715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17731), 1, - aux_sym_preproc_if_token2, - [367258] = 2, + ACTIONS(18880), 1, + anon_sym_RPAREN, + [419722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17733), 1, + ACTIONS(18882), 1, sym_identifier, - [367265] = 2, + [419729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17735), 1, + ACTIONS(13751), 1, anon_sym_RPAREN, - [367272] = 2, + [419736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17737), 1, - sym_identifier, - [367279] = 2, + ACTIONS(18884), 1, + sym_auto, + [419743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17739), 1, - sym_this, - [367286] = 2, + ACTIONS(18886), 1, + anon_sym_RPAREN, + [419750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, - sym_identifier, - [367293] = 2, + ACTIONS(13649), 1, + anon_sym_RPAREN, + [419757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17741), 1, - aux_sym_preproc_if_token2, - [367300] = 2, + ACTIONS(18494), 1, + anon_sym_RBRACE, + [419764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17743), 1, - sym_identifier, - [367307] = 2, + ACTIONS(16333), 1, + anon_sym_LBRACE, + [419771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17745), 1, - anon_sym_COLON, - [367314] = 2, + ACTIONS(18888), 1, + anon_sym_RPAREN, + [419778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12733), 1, - anon_sym_SEMI, - [367321] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17747), 1, - aux_sym_preproc_include_token2, - [367328] = 2, + ACTIONS(18890), 1, + anon_sym_RPAREN, + [419785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17749), 1, + ACTIONS(18892), 1, anon_sym_SEMI, - [367335] = 2, + [419792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17751), 1, - anon_sym_LBRACE, - [367342] = 2, + ACTIONS(18894), 1, + aux_sym_preproc_if_token2, + [419799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17753), 1, - anon_sym_SEMI, - [367349] = 2, + ACTIONS(18896), 1, + anon_sym_DOT_DOT_DOT, + [419806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17755), 1, + ACTIONS(18899), 1, aux_sym_preproc_if_token2, - [367356] = 2, + [419813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17757), 1, + ACTIONS(18901), 1, anon_sym_SEMI, - [367363] = 2, + [419820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17759), 1, + ACTIONS(18903), 1, anon_sym_SEMI, - [367370] = 2, + [419827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10526), 1, - anon_sym_SEMI, - [367377] = 2, + ACTIONS(18434), 1, + anon_sym_RBRACE, + [419834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - [367384] = 2, + ACTIONS(18496), 1, + anon_sym_RBRACE, + [419841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17297), 1, + ACTIONS(15870), 1, anon_sym_RBRACE, - [367391] = 2, + [419848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17761), 1, + ACTIONS(18905), 1, anon_sym_LPAREN2, - [367398] = 2, + [419855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17763), 1, + ACTIONS(18907), 1, anon_sym_SEMI, - [367405] = 2, + [419862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17765), 1, + ACTIONS(18199), 1, anon_sym_SEMI, - [367412] = 2, - ACTIONS(8659), 1, - aux_sym_preproc_include_token2, - ACTIONS(14065), 1, - sym_comment, - [367419] = 2, + [419869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17767), 1, + ACTIONS(18909), 1, anon_sym_SEMI, - [367426] = 2, + [419876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17769), 1, + ACTIONS(18911), 1, + sym_identifier, + [419883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18913), 1, anon_sym_RPAREN, - [367433] = 2, + [419890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17771), 1, - anon_sym_SEMI, - [367440] = 2, + ACTIONS(18915), 1, + anon_sym_STAR, + [419897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17773), 1, - anon_sym_SEMI, - [367447] = 2, - ACTIONS(14065), 1, + ACTIONS(18917), 1, + anon_sym_RPAREN, + [419904] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17775), 1, - aux_sym_preproc_include_token2, - [367454] = 2, + ACTIONS(18919), 1, + anon_sym_SEMI, + [419911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17777), 1, + ACTIONS(18921), 1, sym_identifier, - [367461] = 2, + [419918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17779), 1, - anon_sym_RPAREN, - [367468] = 2, + ACTIONS(18923), 1, + anon_sym_DQUOTE, + [419925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17781), 1, + ACTIONS(18925), 1, anon_sym_RPAREN, - [367475] = 2, + [419932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17783), 1, - anon_sym_RPAREN, - [367482] = 2, + ACTIONS(18927), 1, + sym_raw_string_delimiter, + [419939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17785), 1, + ACTIONS(18929), 1, sym_identifier, - [367489] = 2, + [419946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17787), 1, - aux_sym_preproc_if_token2, - [367496] = 2, + ACTIONS(15822), 1, + anon_sym_RBRACE, + [419953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17789), 1, - sym_auto, - [367503] = 2, + ACTIONS(6091), 1, + anon_sym_DOT_DOT_DOT, + [419960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17791), 1, + ACTIONS(18931), 1, anon_sym_SEMI, - [367510] = 2, + [419967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17793), 1, - anon_sym_RPAREN, - [367517] = 2, + ACTIONS(18933), 1, + anon_sym_SEMI, + [419974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17795), 1, - anon_sym_RPAREN, - [367524] = 2, + ACTIONS(18935), 1, + anon_sym_DQUOTE, + [419981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17797), 1, + ACTIONS(18937), 1, anon_sym_SEMI, - [367531] = 2, + [419988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17799), 1, + ACTIONS(18939), 1, anon_sym_RPAREN, - [367538] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17801), 1, - sym_identifier, - [367545] = 2, + [419995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12597), 1, - anon_sym_RPAREN, - [367552] = 2, + ACTIONS(18941), 1, + anon_sym_DQUOTE, + [420002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17803), 1, - anon_sym_RPAREN, - [367559] = 2, + ACTIONS(18943), 1, + anon_sym_SEMI, + [420009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17805), 1, - anon_sym_DQUOTE, - [367566] = 2, + ACTIONS(18945), 1, + sym_identifier, + [420016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - [367573] = 2, + ACTIONS(18947), 1, + anon_sym_EQ, + [420023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17807), 1, - aux_sym_preproc_if_token2, - [367580] = 2, + ACTIONS(18949), 1, + anon_sym_SEMI, + [420030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17809), 1, - anon_sym_DQUOTE, - [367587] = 2, + ACTIONS(18951), 1, + sym_identifier, + [420037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17811), 1, - anon_sym_RPAREN, - [367594] = 2, + ACTIONS(18953), 1, + anon_sym_SEMI, + [420044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17813), 1, - anon_sym_RPAREN, - [367601] = 2, + ACTIONS(18955), 1, + anon_sym_SEMI, + [420051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17815), 1, - anon_sym_RPAREN, - [367608] = 2, + ACTIONS(15232), 1, + anon_sym_LBRACE, + [420058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17817), 1, - sym_identifier, - [367615] = 2, + ACTIONS(18957), 1, + anon_sym_SEMI, + [420065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17819), 1, + ACTIONS(18959), 1, anon_sym_RPAREN, - [367622] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14103), 1, - aux_sym_preproc_include_token2, - [367629] = 2, + [420072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17821), 1, + ACTIONS(18961), 1, sym_identifier, - [367636] = 2, + [420079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17823), 1, - anon_sym_RPAREN, - [367643] = 2, + ACTIONS(13346), 1, + anon_sym_SEMI, + [420086] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17825), 1, + ACTIONS(18963), 1, anon_sym_RPAREN, - [367650] = 2, + [420093] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17827), 1, + ACTIONS(18965), 1, anon_sym_DQUOTE, - [367657] = 2, + [420100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17829), 1, - sym_auto, - [367664] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17831), 1, - sym_identifier, - [367671] = 2, + ACTIONS(18432), 1, + anon_sym_RBRACE, + [420107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17833), 1, - anon_sym_RPAREN, - [367678] = 2, + ACTIONS(15234), 1, + anon_sym_LBRACE, + [420114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17835), 1, - sym_raw_string_delimiter, - [367685] = 2, + ACTIONS(18967), 1, + anon_sym_STAR, + [420121] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17837), 1, + ACTIONS(16966), 1, anon_sym_SEMI, - [367692] = 2, + [420128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17839), 1, + ACTIONS(18969), 1, anon_sym_SEMI, - [367699] = 2, + [420135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16046), 1, + ACTIONS(13398), 1, anon_sym_SEMI, - [367706] = 2, + [420142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17841), 1, + ACTIONS(17036), 1, anon_sym_SEMI, - [367713] = 2, + [420149] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17843), 1, + ACTIONS(18971), 1, anon_sym_SEMI, - [367720] = 2, + [420156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17845), 1, - aux_sym_preproc_if_token2, - [367727] = 2, + ACTIONS(6122), 1, + anon_sym_DOT_DOT_DOT, + [420163] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17847), 1, - sym_identifier, - [367734] = 2, + ACTIONS(18973), 1, + anon_sym_STAR, + [420170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17849), 1, - anon_sym_RPAREN, - [367741] = 2, + ACTIONS(18975), 1, + anon_sym_DQUOTE, + [420177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9701), 1, - sym_identifier, - [367748] = 2, + ACTIONS(18977), 1, + anon_sym_SEMI, + [420184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17851), 1, + ACTIONS(18979), 1, aux_sym_preproc_if_token2, - [367755] = 2, + [420191] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17853), 1, + ACTIONS(18981), 1, anon_sym_SEMI, - [367762] = 2, + [420198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17855), 1, + ACTIONS(18983), 1, anon_sym_SEMI, - [367769] = 2, + [420205] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17857), 1, + ACTIONS(18985), 1, anon_sym_SEMI, - [367776] = 2, + [420212] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17859), 1, - sym_identifier, - [367783] = 2, + ACTIONS(18987), 1, + anon_sym_SEMI, + [420219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17861), 1, - sym_identifier, - [367790] = 2, + ACTIONS(18989), 1, + anon_sym_SEMI, + [420226] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14287), 1, - anon_sym_LBRACE, - [367797] = 2, + ACTIONS(18991), 1, + anon_sym_RPAREN, + [420233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15166), 1, + ACTIONS(18993), 1, anon_sym_SEMI, - [367804] = 2, + [420240] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17863), 1, + ACTIONS(18995), 1, + anon_sym_LPAREN2, + [420247] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(18997), 1, + aux_sym_preproc_include_token2, + [420254] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13278), 1, + anon_sym_COLON, + [420261] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18999), 1, + anon_sym_RPAREN, + [420268] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18386), 1, + anon_sym_RBRACE, + [420275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19001), 1, anon_sym_SEMI, - [367811] = 2, + [420282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17865), 1, + ACTIONS(19003), 1, anon_sym_SEMI, - [367818] = 2, + [420289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6110), 1, + anon_sym_DOT_DOT_DOT, + [420296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19005), 1, + anon_sym_DQUOTE, + [420303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17867), 1, + ACTIONS(19007), 1, sym_identifier, - [367825] = 2, + [420310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19009), 1, + anon_sym_SEMI, + [420317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19011), 1, + sym_auto, + [420324] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19013), 1, + anon_sym_RPAREN, + [420331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17869), 1, + ACTIONS(11116), 1, anon_sym_SEMI, - [367832] = 2, + [420338] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17871), 1, + ACTIONS(19015), 1, anon_sym_DQUOTE, - [367839] = 2, + [420345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17873), 1, - aux_sym_preproc_if_token2, - [367846] = 2, + ACTIONS(19017), 1, + anon_sym_RPAREN, + [420352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19019), 1, + anon_sym_RPAREN, + [420359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19021), 1, + anon_sym_RPAREN, + [420366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19023), 1, + anon_sym_RPAREN, + [420373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19025), 1, + anon_sym_RPAREN, + [420380] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13755), 1, + anon_sym_RPAREN, + [420387] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16101), 1, + anon_sym_SEMI, + [420394] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19027), 1, + anon_sym_RPAREN, + [420401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19029), 1, + anon_sym_RPAREN, + [420408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10509), 1, + ACTIONS(16885), 1, anon_sym_SEMI, - [367853] = 2, + [420415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17353), 1, + ACTIONS(18498), 1, anon_sym_RBRACE, - [367860] = 2, + [420422] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17875), 1, - anon_sym_STAR, - [367867] = 2, + ACTIONS(11307), 1, + anon_sym_RPAREN, + [420429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17877), 1, + ACTIONS(19031), 1, anon_sym_RPAREN, - [367874] = 2, + [420436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12737), 1, - anon_sym_COLON, - [367881] = 2, + ACTIONS(19033), 1, + anon_sym_RBRACE, + [420443] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12601), 1, + ACTIONS(19035), 1, + sym_identifier, + [420450] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19037), 1, anon_sym_SEMI, - [367888] = 2, + [420457] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19039), 1, + anon_sym_DQUOTE, + [420464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17879), 1, + ACTIONS(19041), 1, anon_sym_SEMI, - [367895] = 2, + [420471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17881), 1, + ACTIONS(19043), 1, anon_sym_RPAREN, - [367902] = 2, + [420478] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17883), 1, - aux_sym_preproc_if_token2, - [367909] = 2, + ACTIONS(19045), 1, + anon_sym_RPAREN, + [420485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19047), 1, + sym_raw_string_delimiter, + [420492] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12727), 1, + ACTIONS(19049), 1, anon_sym_RPAREN, - [367916] = 2, + [420499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12661), 1, - anon_sym_COLON, - [367923] = 2, + ACTIONS(19051), 1, + sym_identifier, + [420506] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12946), 1, + ACTIONS(19053), 1, anon_sym_RPAREN, - [367930] = 2, + [420513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17049), 1, - anon_sym_LBRACE, - [367937] = 2, + ACTIONS(19055), 1, + sym_identifier, + [420520] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15032), 1, + aux_sym_preproc_include_token2, + [420527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17363), 1, - anon_sym_RBRACE, - [367944] = 2, + ACTIONS(19057), 1, + anon_sym_SEMI, + [420534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17303), 1, + ACTIONS(18436), 1, anon_sym_RBRACE, - [367951] = 2, + [420541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17885), 1, - aux_sym_preproc_if_token2, - [367958] = 2, + ACTIONS(19059), 1, + anon_sym_RPAREN, + [420548] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17887), 1, - aux_sym_preproc_if_token2, - [367965] = 2, + ACTIONS(19061), 1, + anon_sym_LBRACE, + [420555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17889), 1, + ACTIONS(19063), 1, + anon_sym_RPAREN, + [420562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15371), 1, + anon_sym_LBRACE, + [420569] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19065), 1, + anon_sym_STAR, + [420576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19067), 1, + anon_sym_DQUOTE, + [420583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19069), 1, + anon_sym_SEMI, + [420590] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19071), 1, aux_sym_preproc_if_token2, - [367972] = 2, + [420597] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17891), 1, + ACTIONS(19073), 1, + anon_sym_RPAREN, + [420604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16887), 1, anon_sym_SEMI, - [367979] = 2, + [420611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17893), 1, - anon_sym_DQUOTE, - [367986] = 2, + ACTIONS(19075), 1, + anon_sym_RPAREN, + [420618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17895), 1, - anon_sym_LPAREN2, - [367993] = 2, + ACTIONS(19077), 1, + anon_sym_RPAREN, + [420625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15243), 1, - anon_sym_COMMA, - [368000] = 2, + ACTIONS(19079), 1, + anon_sym_SEMI, + [420632] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19081), 1, + anon_sym_SEMI, + [420639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17897), 1, + ACTIONS(19083), 1, + anon_sym_LPAREN2, + [420646] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13657), 1, anon_sym_RPAREN, - [368007] = 2, + [420653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17899), 1, + ACTIONS(6113), 1, + anon_sym_DOT_DOT_DOT, + [420660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19085), 1, + aux_sym_preproc_if_token2, + [420667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19087), 1, aux_sym_preproc_if_token2, - [368014] = 2, + [420674] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18319), 1, + anon_sym_RPAREN, + [420681] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19089), 1, + anon_sym_LPAREN2, + [420688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19091), 1, + anon_sym_SEMI, + [420695] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17901), 1, - aux_sym_preproc_if_token2, - [368021] = 2, + ACTIONS(19093), 1, + anon_sym_SEMI, + [420702] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11671), 1, + ACTIONS(19095), 1, sym_identifier, - [368028] = 2, + [420709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17903), 1, - anon_sym_RPAREN, - [368035] = 2, + ACTIONS(19097), 1, + aux_sym_preproc_if_token2, + [420716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17905), 1, - anon_sym_RPAREN, - [368042] = 2, + ACTIONS(19099), 1, + anon_sym_DQUOTE, + [420723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17907), 1, - anon_sym_RPAREN, - [368049] = 2, + ACTIONS(19101), 1, + anon_sym_SEMI, + [420730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17909), 1, + ACTIONS(19103), 1, sym_identifier, - [368056] = 2, + [420737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17911), 1, - sym_identifier, - [368063] = 2, + ACTIONS(19105), 1, + aux_sym_preproc_if_token2, + [420744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17913), 1, + ACTIONS(19107), 1, sym_auto, - [368070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_AMP_AMP, - [368077] = 2, + [420751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17915), 1, - aux_sym_preproc_if_token2, - [368084] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(16973), 1, - aux_sym_preproc_include_token2, - [368091] = 2, + ACTIONS(19109), 1, + anon_sym_SEMI, + [420758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17917), 1, + ACTIONS(13296), 1, anon_sym_RPAREN, - [368098] = 2, + [420765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17919), 1, - anon_sym_SEMI, - [368105] = 2, + ACTIONS(15886), 1, + anon_sym_RBRACE, + [420772] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15424), 1, - anon_sym_COLON, - [368112] = 2, + ACTIONS(19111), 1, + anon_sym_RPAREN, + [420779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17921), 1, + ACTIONS(19113), 1, anon_sym_SEMI, - [368119] = 2, + [420786] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17923), 1, - aux_sym_preproc_if_token2, - [368126] = 2, + ACTIONS(19115), 1, + anon_sym_RPAREN, + [420793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17925), 1, - anon_sym_DQUOTE, - [368133] = 2, - ACTIONS(3), 1, + ACTIONS(19117), 1, + anon_sym_COLON, + [420800] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17927), 1, - anon_sym_SEMI, - [368140] = 2, + ACTIONS(19119), 1, + aux_sym_preproc_include_token2, + [420807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17929), 1, - anon_sym_SEMI, - [368147] = 2, + ACTIONS(13689), 1, + anon_sym_RPAREN, + [420814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17931), 1, - anon_sym_DQUOTE, - [368154] = 2, + ACTIONS(13759), 1, + anon_sym_RPAREN, + [420821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17933), 1, - aux_sym_preproc_if_token2, - [368161] = 2, + ACTIONS(13298), 1, + anon_sym_RPAREN, + [420828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17935), 1, - aux_sym_preproc_if_token2, - [368168] = 2, - ACTIONS(14065), 1, + ACTIONS(19121), 1, + anon_sym_SEMI, + [420835] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16957), 1, - aux_sym_preproc_include_token2, - [368175] = 2, + ACTIONS(19123), 1, + anon_sym_SEMI, + [420842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12932), 1, - anon_sym_RPAREN, - [368182] = 2, + ACTIONS(19125), 1, + sym_auto, + [420849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17937), 1, + ACTIONS(19127), 1, anon_sym_RPAREN, - [368189] = 2, + [420856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17939), 1, + ACTIONS(19129), 1, sym_identifier, - [368196] = 2, + [420863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17941), 1, - sym_identifier, - [368203] = 2, + ACTIONS(19131), 1, + anon_sym_LPAREN2, + [420870] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17943), 1, - anon_sym_RPAREN, - [368210] = 2, + ACTIONS(19133), 1, + anon_sym_SEMI, + [420877] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17945), 1, + ACTIONS(13490), 1, anon_sym_RPAREN, - [368217] = 2, + [420884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17947), 1, - aux_sym_preproc_if_token2, - [368224] = 2, + ACTIONS(15858), 1, + anon_sym_RBRACE, + [420891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17949), 1, + ACTIONS(19135), 1, anon_sym_RPAREN, - [368231] = 2, + [420898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17951), 1, + ACTIONS(19137), 1, sym_raw_string_delimiter, - [368238] = 2, + [420905] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19139), 1, + anon_sym_LPAREN2, + [420912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17953), 1, + ACTIONS(19141), 1, anon_sym_SEMI, - [368245] = 2, + [420919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17955), 1, + ACTIONS(19143), 1, sym_identifier, - [368252] = 2, + [420926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17957), 1, - anon_sym_STAR, - [368259] = 2, + ACTIONS(19145), 1, + sym_identifier, + [420933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17959), 1, - anon_sym_LPAREN2, - [368266] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17961), 1, - aux_sym_preproc_include_token2, - [368273] = 2, + ACTIONS(19147), 1, + anon_sym_SEMI, + [420940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17963), 1, - anon_sym_LPAREN2, - [368280] = 2, + ACTIONS(19149), 1, + anon_sym_SEMI, + [420947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17965), 1, + ACTIONS(13268), 1, anon_sym_SEMI, - [368287] = 2, + [420954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17967), 1, + ACTIONS(19151), 1, sym_identifier, - [368294] = 2, - ACTIONS(14065), 1, + [420961] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17969), 1, - aux_sym_preproc_include_token2, - [368301] = 2, + ACTIONS(12145), 1, + sym_identifier, + [420968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17971), 1, - anon_sym_STAR, - [368308] = 2, - ACTIONS(14065), 1, + ACTIONS(19153), 1, + anon_sym_RPAREN, + [420975] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14225), 1, - aux_sym_preproc_include_token2, - [368315] = 2, - ACTIONS(14065), 1, + ACTIONS(19155), 1, + anon_sym_STAR, + [420982] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(17973), 1, + ACTIONS(19157), 1, aux_sym_preproc_include_token2, - [368322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17975), 1, - anon_sym_LPAREN2, - [368329] = 2, + [420989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17977), 1, - anon_sym_DQUOTE, - [368336] = 2, + ACTIONS(19159), 1, + anon_sym_SEMI, + [420996] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17979), 1, + ACTIONS(16811), 1, anon_sym_SEMI, - [368343] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17981), 1, - aux_sym_preproc_include_token2, - [368350] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17983), 1, - aux_sym_preproc_include_token2, - [368357] = 2, + [421003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17985), 1, + ACTIONS(19161), 1, anon_sym_RPAREN, - [368364] = 2, + [421010] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17987), 1, - sym_identifier, - [368371] = 2, + ACTIONS(19163), 1, + aux_sym_preproc_if_token2, + [421017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10721), 1, - anon_sym_RPAREN, - [368378] = 2, + ACTIONS(15216), 1, + anon_sym_LBRACE, + [421024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17989), 1, - anon_sym_DQUOTE, - [368385] = 2, + ACTIONS(19165), 1, + anon_sym_SEMI, + [421031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19167), 1, + sym_identifier, + [421038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13074), 1, + ACTIONS(19169), 1, anon_sym_RPAREN, - [368392] = 2, + [421045] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(19171), 1, + aux_sym_preproc_include_token2, + [421052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PIPE, - [368399] = 2, + ACTIONS(19173), 1, + aux_sym_preproc_if_token2, + [421059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17991), 1, + ACTIONS(19175), 1, sym_identifier, - [368406] = 2, + [421066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17993), 1, + ACTIONS(19177), 1, anon_sym_RPAREN, - [368413] = 2, + [421073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17995), 1, - anon_sym_LPAREN2, - [368420] = 2, + ACTIONS(13675), 1, + anon_sym_RPAREN, + [421080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17997), 1, + ACTIONS(19179), 1, anon_sym_RPAREN, - [368427] = 2, + [421087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17999), 1, - anon_sym_RPAREN, - [368434] = 2, + ACTIONS(19181), 1, + anon_sym_LPAREN2, + [421094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18001), 1, - anon_sym_RPAREN, - [368441] = 2, + ACTIONS(19183), 1, + anon_sym_LPAREN2, + [421101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18003), 1, + ACTIONS(19185), 1, anon_sym_RPAREN, - [368448] = 2, + [421108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18005), 1, + ACTIONS(19187), 1, anon_sym_RPAREN, - [368455] = 2, + [421115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18007), 1, - anon_sym_RPAREN, - [368462] = 2, + ACTIONS(19189), 1, + anon_sym_LPAREN2, + [421122] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18009), 1, + ACTIONS(19191), 1, sym_identifier, - [368469] = 2, + [421129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18011), 1, + ACTIONS(19193), 1, anon_sym_RPAREN, - [368476] = 2, + [421136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18013), 1, + ACTIONS(19195), 1, sym_auto, - [368483] = 2, - ACTIONS(3), 1, + [421143] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(18015), 1, - anon_sym_RPAREN, - [368490] = 2, + ACTIONS(15140), 1, + aux_sym_preproc_include_token2, + [421150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18017), 1, + ACTIONS(19197), 1, anon_sym_RPAREN, - [368497] = 2, + [421157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18019), 1, - anon_sym_RPAREN, - [368504] = 2, + ACTIONS(13348), 1, + anon_sym_COLON, + [421164] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18021), 1, + ACTIONS(19199), 1, anon_sym_RPAREN, - [368511] = 2, + [421171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18023), 1, + ACTIONS(19201), 1, anon_sym_RPAREN, - [368518] = 2, + [421178] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18025), 1, - anon_sym_COLON, - [368525] = 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, + ACTIONS(13300), 1, + anon_sym_RPAREN, + [421185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18029), 1, + ACTIONS(19203), 1, anon_sym_SEMI, - [368546] = 2, + [421192] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18031), 1, - anon_sym_DQUOTE, - [368553] = 2, + ACTIONS(19205), 1, + anon_sym_RPAREN, + [421199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18033), 1, - sym_identifier, - [368560] = 2, + ACTIONS(19207), 1, + anon_sym_RPAREN, + [421206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_CARET, - [368567] = 2, + ACTIONS(19209), 1, + aux_sym_preproc_if_token2, + [421213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18035), 1, + ACTIONS(19211), 1, aux_sym_preproc_if_token2, - [368574] = 2, + [421220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18037), 1, - anon_sym_SEMI, - [368581] = 2, + ACTIONS(19213), 1, + anon_sym_LPAREN2, + [421227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18039), 1, - anon_sym_RPAREN, - [368588] = 2, + ACTIONS(19215), 1, + sym_identifier, + [421234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18041), 1, - sym_identifier, - [368595] = 2, + ACTIONS(17092), 1, + anon_sym_SEMI, + [421241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18043), 1, - aux_sym_preproc_if_token2, - [368602] = 2, + ACTIONS(19217), 1, + sym_identifier, + [421248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18045), 1, + ACTIONS(19219), 1, anon_sym_SEMI, - [368609] = 2, + [421255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18047), 1, + ACTIONS(16179), 1, anon_sym_SEMI, - [368616] = 2, + [421262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18049), 1, - anon_sym_SEMI, - [368623] = 2, + ACTIONS(19221), 1, + anon_sym_LBRACE, + [421269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18051), 1, + ACTIONS(19223), 1, anon_sym_RPAREN, - [368630] = 2, + [421276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18053), 1, - sym_raw_string_delimiter, - [368637] = 2, + ACTIONS(19225), 1, + anon_sym_RPAREN, + [421283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15548), 1, - anon_sym_LBRACE, - [368644] = 2, + ACTIONS(19227), 1, + sym_raw_string_delimiter, + [421290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18055), 1, - sym_identifier, - [368651] = 2, + ACTIONS(19229), 1, + ts_builtin_sym_end, + [421297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18057), 1, - anon_sym_SEMI, - [368658] = 2, + ACTIONS(19231), 1, + aux_sym_preproc_if_token2, + [421304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18059), 1, - anon_sym_SEMI, - [368665] = 2, + ACTIONS(19233), 1, + anon_sym_RPAREN, + [421311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18061), 1, - sym_identifier, - [368672] = 2, + ACTIONS(19235), 1, + aux_sym_preproc_if_token2, + [421318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18063), 1, + ACTIONS(11106), 1, anon_sym_SEMI, - [368679] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18065), 1, - anon_sym_RPAREN, - [368686] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18067), 1, - anon_sym_RPAREN, - [368693] = 2, + [421325] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18069), 1, + ACTIONS(12953), 1, anon_sym_SEMI, - [368700] = 2, + [421332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18071), 1, + ACTIONS(19237), 1, anon_sym_STAR, - [368707] = 2, + [421339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16162), 1, - anon_sym_SEMI, - [368714] = 2, + ACTIONS(19239), 1, + anon_sym_private, + [421346] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18073), 1, + ACTIONS(19241), 1, anon_sym_SEMI, - [368721] = 2, + [421353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12948), 1, + ACTIONS(13761), 1, anon_sym_RPAREN, - [368728] = 2, + [421360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18075), 1, - anon_sym_SEMI, - [368735] = 2, + ACTIONS(19243), 1, + aux_sym_preproc_if_token2, + [421367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18077), 1, - anon_sym_DQUOTE, - [368742] = 2, + ACTIONS(16543), 1, + anon_sym_COLON, + [421374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15327), 1, - anon_sym_EQ, - [368749] = 2, + ACTIONS(13302), 1, + anon_sym_SEMI, + [421381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18079), 1, + ACTIONS(19245), 1, sym_identifier, - [368756] = 2, + [421388] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10495), 1, - anon_sym_SEMI, - [368763] = 2, + ACTIONS(19247), 1, + sym_raw_string_content, + [421395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18081), 1, - anon_sym_DQUOTE, - [368770] = 2, + ACTIONS(19249), 1, + anon_sym_RPAREN, + [421402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18083), 1, - aux_sym_preproc_if_token2, - [368777] = 2, + ACTIONS(19251), 1, + anon_sym_LPAREN2, + [421409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18085), 1, + ACTIONS(19253), 1, sym_identifier, - [368784] = 2, + [421416] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(19255), 1, + aux_sym_preproc_include_token2, + [421423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18087), 1, + ACTIONS(19257), 1, sym_identifier, - [368791] = 2, + [421430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18089), 1, + ACTIONS(19259), 1, anon_sym_RPAREN, - [368798] = 2, + [421437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18091), 1, - aux_sym_preproc_if_token2, - [368805] = 2, + ACTIONS(19261), 1, + sym_auto, + [421444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18093), 1, - sym_auto, - [368812] = 2, + ACTIONS(19263), 1, + anon_sym_SEMI, + [421451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18095), 1, - anon_sym_LPAREN2, - [368819] = 2, + ACTIONS(19265), 1, + anon_sym_RPAREN, + [421458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18097), 1, - anon_sym_SEMI, - [368826] = 2, + ACTIONS(19267), 1, + sym_identifier, + [421465] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18099), 1, - anon_sym_RPAREN, - [368833] = 2, + ACTIONS(18530), 1, + anon_sym_RBRACE, + [421472] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13010), 1, + ACTIONS(19269), 1, anon_sym_RPAREN, - [368840] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(18101), 1, - aux_sym_preproc_include_token2, - [368847] = 2, + [421479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18103), 1, + ACTIONS(19271), 1, sym_identifier, - [368854] = 2, + [421486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12435), 1, - anon_sym_RBRACE, - [368861] = 2, + ACTIONS(19273), 1, + anon_sym_RPAREN, + [421493] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18105), 1, - sym_auto, - [368868] = 2, + ACTIONS(19275), 1, + sym_raw_string_delimiter, + [421500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18107), 1, - anon_sym_LPAREN2, - [368875] = 2, + ACTIONS(18562), 1, + anon_sym_RBRACE, + [421507] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18109), 1, + ACTIONS(19277), 1, anon_sym_COLON, - [368882] = 2, + [421514] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18111), 1, - anon_sym_DQUOTE, - [368889] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18113), 1, + ACTIONS(19279), 1, anon_sym_RPAREN, - [368896] = 2, + [421521] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18115), 1, - sym_identifier, - [368903] = 2, + ACTIONS(19281), 1, + sym_this, + [421528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18117), 1, - anon_sym_SEMI, - [368910] = 2, + ACTIONS(19283), 1, + anon_sym_RPAREN, + [421535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12771), 1, + ACTIONS(19285), 1, anon_sym_RPAREN, - [368917] = 2, + [421542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18119), 1, + ACTIONS(13691), 1, anon_sym_RPAREN, - [368924] = 2, + [421549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12463), 1, - anon_sym_RBRACE, - [368931] = 2, + ACTIONS(19287), 1, + anon_sym_RBRACK, + [421556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14883), 1, - anon_sym_RBRACE, - [368938] = 2, + ACTIONS(19289), 1, + anon_sym_RPAREN, + [421563] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15042), 1, + aux_sym_preproc_include_token2, + [421570] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18121), 1, + ACTIONS(19291), 1, anon_sym_LPAREN2, - [368945] = 2, + [421577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18123), 1, - anon_sym_SEMI, - [368952] = 2, + ACTIONS(12306), 1, + sym_identifier, + [421584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18125), 1, - anon_sym_DQUOTE, - [368959] = 2, + ACTIONS(13113), 1, + anon_sym_RBRACE, + [421591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18127), 1, - anon_sym_DQUOTE, - [368966] = 2, + ACTIONS(19293), 1, + aux_sym_preproc_if_token2, + [421598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18129), 1, - sym_identifier, - [368973] = 2, + ACTIONS(19295), 1, + sym_auto, + [421605] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18131), 1, + ACTIONS(19297), 1, anon_sym_RPAREN, - [368980] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16232), 1, - anon_sym_SEMI, - [368987] = 2, + [421612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18133), 1, - aux_sym_preproc_if_token2, - [368994] = 2, + ACTIONS(19299), 1, + anon_sym_DQUOTE, + [421619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18135), 1, - anon_sym_SEMI, - [369001] = 2, + ACTIONS(19301), 1, + anon_sym_RPAREN, + [421626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18137), 1, - anon_sym_RPAREN, - [369008] = 2, + ACTIONS(19303), 1, + aux_sym_preproc_if_token2, + [421633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18139), 1, + ACTIONS(19305), 1, sym_raw_string_delimiter, - [369015] = 2, + [421640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18141), 1, + ACTIONS(19307), 1, anon_sym_DQUOTE, - [369022] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18143), 1, - anon_sym_RPAREN, - [369029] = 2, + [421647] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14851), 1, + ACTIONS(15866), 1, anon_sym_RBRACE, - [369036] = 2, + [421654] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18145), 1, + ACTIONS(11029), 1, anon_sym_SEMI, - [369043] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18147), 1, - anon_sym_RPAREN, - [369050] = 2, + [421661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18149), 1, - sym_identifier, - [369057] = 2, + ACTIONS(19309), 1, + anon_sym_SEMI, + [421668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18151), 1, - anon_sym_STAR, - [369064] = 2, + ACTIONS(13711), 1, + anon_sym_RPAREN, + [421675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_AMP, - [369071] = 2, + ACTIONS(18532), 1, + anon_sym_RBRACE, + [421682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18153), 1, - anon_sym_SEMI, - [369078] = 2, + ACTIONS(19311), 1, + sym_auto, + [421689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12861), 1, + ACTIONS(19313), 1, anon_sym_RPAREN, - [369085] = 2, + [421696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12555), 1, - anon_sym_RBRACE, - [369092] = 2, + ACTIONS(13358), 1, + anon_sym_SEMI, + [421703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_EQ_EQ, - [369099] = 2, + ACTIONS(13400), 1, + anon_sym_SEMI, + [421710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15133), 1, - anon_sym_SEMI, - [369106] = 2, + ACTIONS(19315), 1, + sym_raw_string_delimiter, + [421717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12653), 1, - anon_sym_COLON, - [369113] = 2, + ACTIONS(19317), 1, + anon_sym_RPAREN, + [421724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18155), 1, + ACTIONS(19319), 1, anon_sym_SEMI, - [369120] = 2, + [421731] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14855), 1, - anon_sym_RBRACE, - [369127] = 2, + ACTIONS(19321), 1, + sym_identifier, + [421738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18157), 1, - anon_sym_LPAREN2, - [369134] = 2, + ACTIONS(19323), 1, + anon_sym_DQUOTE, + [421745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18159), 1, + ACTIONS(13801), 1, anon_sym_RPAREN, - [369141] = 2, + [421752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18161), 1, + ACTIONS(19325), 1, anon_sym_RPAREN, - [369148] = 2, + [421759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18163), 1, - sym_identifier, - [369155] = 2, + ACTIONS(19327), 1, + sym_auto, + [421766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18165), 1, + ACTIONS(19329), 1, anon_sym_RPAREN, - [369162] = 2, + [421773] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18167), 1, - sym_auto, - [369169] = 2, + ACTIONS(19331), 1, + sym_raw_string_delimiter, + [421780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18169), 1, - anon_sym_RPAREN, - [369176] = 2, + ACTIONS(13185), 1, + anon_sym_RBRACE, + [421787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18171), 1, - anon_sym_RPAREN, - [369183] = 2, + ACTIONS(19333), 1, + anon_sym_SEMI, + [421794] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18173), 1, - aux_sym_preproc_if_token2, - [369190] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14221), 1, - aux_sym_preproc_include_token2, - [369197] = 2, + ACTIONS(19335), 1, + anon_sym_SEMI, + [421801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18175), 1, + ACTIONS(19337), 1, anon_sym_RPAREN, - [369204] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18177), 1, - sym_identifier, - [369211] = 2, + [421808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18179), 1, - anon_sym_COLON, - [369218] = 2, + ACTIONS(13893), 1, + anon_sym_RPAREN, + [421815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18181), 1, - sym_raw_string_delimiter, - [369225] = 2, + ACTIONS(19339), 1, + anon_sym_LPAREN2, + [421822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18183), 1, - anon_sym_SEMI, - [369232] = 2, + ACTIONS(19341), 1, + sym_auto, + [421829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18185), 1, + ACTIONS(19343), 1, anon_sym_RPAREN, - [369239] = 2, + [421836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18187), 1, - anon_sym_SEMI, - [369246] = 2, + ACTIONS(19345), 1, + sym_raw_string_delimiter, + [421843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12669), 1, - anon_sym_SEMI, - [369253] = 2, + ACTIONS(19347), 1, + sym_identifier, + [421850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18189), 1, + ACTIONS(19349), 1, anon_sym_RPAREN, - [369260] = 2, + [421857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18191), 1, - anon_sym_STAR, - [369267] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18193), 1, + ACTIONS(19351), 1, aux_sym_preproc_if_token2, - [369274] = 2, + [421864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18195), 1, - anon_sym_SEMI, - [369281] = 2, + ACTIONS(13211), 1, + anon_sym_RBRACE, + [421871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18197), 1, + ACTIONS(19353), 1, anon_sym_RPAREN, - [369288] = 2, - ACTIONS(3), 1, + [421878] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(18199), 1, - anon_sym_SEMI, - [369295] = 2, + ACTIONS(19355), 1, + aux_sym_preproc_include_token2, + [421885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18201), 1, - anon_sym_LPAREN2, - [369302] = 2, + ACTIONS(19357), 1, + sym_auto, + [421892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18203), 1, + ACTIONS(19359), 1, anon_sym_RPAREN, - [369309] = 2, + [421899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18205), 1, - anon_sym_RPAREN, - [369316] = 2, + ACTIONS(19361), 1, + sym_raw_string_delimiter, + [421906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12641), 1, + ACTIONS(19363), 1, anon_sym_RPAREN, - [369323] = 2, + [421913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18207), 1, - sym_auto, - [369330] = 2, + ACTIONS(19365), 1, + aux_sym_preproc_if_token2, + [421920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18209), 1, - anon_sym_RPAREN, - [369337] = 2, + ACTIONS(15824), 1, + anon_sym_RBRACE, + [421927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_BANG_EQ, - [369344] = 2, + ACTIONS(19367), 1, + anon_sym_SEMI, + [421934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_GT, - [369351] = 2, + ACTIONS(19369), 1, + anon_sym_RPAREN, + [421941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18211), 1, + ACTIONS(19371), 1, + sym_auto, + [421948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19373), 1, anon_sym_RPAREN, - [369358] = 2, + [421955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18213), 1, + ACTIONS(19375), 1, sym_raw_string_delimiter, - [369365] = 2, + [421962] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18215), 1, - anon_sym_SEMI, - [369372] = 2, + ACTIONS(19377), 1, + aux_sym_preproc_if_token2, + [421969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18217), 1, - anon_sym_STAR, - [369379] = 2, + ACTIONS(17921), 1, + anon_sym_LBRACE, + [421976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18219), 1, + ACTIONS(13763), 1, anon_sym_RPAREN, - [369386] = 2, + [421983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18221), 1, - anon_sym_RPAREN, - [369393] = 2, + ACTIONS(19379), 1, + aux_sym_preproc_if_token2, + [421990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18223), 1, - sym_identifier, - [369400] = 2, + ACTIONS(19381), 1, + sym_auto, + [421997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12950), 1, + ACTIONS(19383), 1, anon_sym_RPAREN, - [369407] = 2, + [422004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18225), 1, - sym_auto, - [369414] = 2, + ACTIONS(19385), 1, + sym_raw_string_delimiter, + [422011] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(19387), 1, + aux_sym_preproc_include_token2, + [422018] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18227), 1, - anon_sym_RPAREN, - [369421] = 2, + ACTIONS(19389), 1, + anon_sym_DQUOTE, + [422025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18229), 1, - anon_sym_SEMI, - [369428] = 2, + ACTIONS(19391), 1, + anon_sym_DQUOTE, + [422032] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18231), 1, + ACTIONS(19393), 1, anon_sym_SEMI, - [369435] = 2, + [422039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18233), 1, - sym_raw_string_delimiter, - [369442] = 2, + ACTIONS(13133), 1, + anon_sym_SEMI, + [422046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12741), 1, - anon_sym_COLON, - [369449] = 2, + ACTIONS(19395), 1, + anon_sym_RPAREN, + [422053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18235), 1, - aux_sym_preproc_if_token2, - [369456] = 2, + ACTIONS(19397), 1, + sym_raw_string_delimiter, + [422060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18237), 1, - anon_sym_SEMI, - [369463] = 2, + ACTIONS(11454), 1, + anon_sym_RPAREN, + [422067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17299), 1, - anon_sym_RBRACE, - [369470] = 2, + ACTIONS(19399), 1, + anon_sym_COLON, + [422074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18239), 1, - aux_sym_preproc_if_token2, - [369477] = 2, + ACTIONS(19401), 1, + sym_identifier, + [422081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18241), 1, - anon_sym_LBRACE, - [369484] = 2, + ACTIONS(19403), 1, + anon_sym_SEMI, + [422088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18243), 1, + ACTIONS(19405), 1, sym_auto, - [369491] = 2, + [422095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18245), 1, + ACTIONS(19407), 1, anon_sym_RPAREN, - [369498] = 2, + [422102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18247), 1, + ACTIONS(19409), 1, sym_raw_string_delimiter, - [369505] = 2, + [422109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18249), 1, - anon_sym_SEMI, - [369512] = 2, + ACTIONS(13350), 1, + anon_sym_COLON, + [422116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 1, - anon_sym_SEMI, - [369519] = 2, + ACTIONS(19411), 1, + anon_sym_RPAREN, + [422123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18251), 1, - anon_sym_SEMI, - [369526] = 2, - ACTIONS(3), 1, + ACTIONS(15882), 1, + anon_sym_RBRACE, + [422130] = 2, + ACTIONS(9000), 1, + aux_sym_preproc_include_token2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(18253), 1, - sym_identifier, - [369533] = 2, + [422137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18255), 1, - anon_sym_SEMI, - [369540] = 2, + ACTIONS(19413), 1, + sym_auto, + [422144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18257), 1, + ACTIONS(19415), 1, anon_sym_RPAREN, - [369547] = 2, + [422151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18259), 1, + ACTIONS(19417), 1, sym_raw_string_delimiter, - [369554] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(18261), 1, - aux_sym_preproc_include_token2, - [369561] = 2, + [422158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18263), 1, - anon_sym_SEMI, - [369568] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(18265), 1, - aux_sym_preproc_include_token2, - [369575] = 2, + ACTIONS(19419), 1, + aux_sym_preproc_if_token2, + [422165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 1, - anon_sym_COLON, - [369582] = 2, + ACTIONS(19421), 1, + anon_sym_RBRACE, + [422172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18267), 1, - anon_sym_SEMI, - [369589] = 2, + ACTIONS(11896), 1, + sym_identifier, + [422179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18269), 1, + ACTIONS(19423), 1, anon_sym_RPAREN, - [369596] = 2, + [422186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18271), 1, + ACTIONS(19425), 1, sym_raw_string_delimiter, - [369603] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12559), 1, - anon_sym_RPAREN, - [369610] = 2, + [422193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12721), 1, - anon_sym_SEMI, - [369617] = 2, + ACTIONS(19427), 1, + anon_sym_LPAREN2, + [422200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18273), 1, - anon_sym_RPAREN, - [369624] = 2, + ACTIONS(6125), 1, + anon_sym_DOT_DOT_DOT, + [422207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_GT_EQ, - [369631] = 2, + ACTIONS(19429), 1, + aux_sym_preproc_if_token2, + [422214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18275), 1, + ACTIONS(19431), 1, anon_sym_RPAREN, - [369638] = 2, + [422221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18277), 1, + ACTIONS(19433), 1, sym_raw_string_delimiter, - [369645] = 2, + [422228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_LT_EQ, - [369652] = 2, + ACTIONS(19435), 1, + aux_sym_preproc_if_token2, + [422235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_LT, - [369659] = 2, + ACTIONS(19437), 1, + anon_sym_DQUOTE, + [422242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18279), 1, - anon_sym_LPAREN2, - [369666] = 2, + ACTIONS(15892), 1, + anon_sym_RBRACE, + [422249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18281), 1, + ACTIONS(19439), 1, anon_sym_RPAREN, - [369673] = 2, + [422256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18283), 1, + ACTIONS(19441), 1, sym_raw_string_delimiter, - [369680] = 2, + [422263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18285), 1, + ACTIONS(19443), 1, anon_sym_RPAREN, - [369687] = 2, + [422270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18287), 1, + ACTIONS(19445), 1, anon_sym_LPAREN2, - [369694] = 2, + [422277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18289), 1, - anon_sym_RPAREN, - [369701] = 2, + ACTIONS(19447), 1, + anon_sym_SEMI, + [422284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18291), 1, - sym_raw_string_delimiter, - [369708] = 2, + ACTIONS(17128), 1, + anon_sym_SEMI, + [422291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18293), 1, - anon_sym_RPAREN, - [369715] = 2, + ACTIONS(19449), 1, + sym_identifier, + [422298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6046), 1, - anon_sym_DOT_DOT_DOT, - [369722] = 2, + ACTIONS(19451), 1, + anon_sym_STAR, + [422305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18295), 1, - anon_sym_RPAREN, - [369729] = 2, + ACTIONS(17779), 1, + anon_sym_LBRACE, + [422312] = 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, + ACTIONS(16163), 1, + anon_sym_LBRACE, + [422319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_LT_LT, - [369750] = 2, + ACTIONS(19453), 1, + aux_sym_preproc_if_token2, + [422326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18301), 1, - anon_sym_RPAREN, - [369757] = 2, + ACTIONS(16301), 1, + anon_sym_COMMA, + [422333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18303), 1, - sym_raw_string_delimiter, - [369764] = 2, + ACTIONS(11876), 1, + sym_identifier, + [422340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_GT_GT, - [369771] = 2, + ACTIONS(13364), 1, + anon_sym_COLON, + [422347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18305), 1, - anon_sym_COLON, - [369778] = 2, + ACTIONS(19455), 1, + anon_sym_SEMI, + [422354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18307), 1, - anon_sym_RPAREN, - [369785] = 2, + ACTIONS(19457), 1, + anon_sym_COLON, + [422361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18309), 1, - sym_raw_string_delimiter, - [369792] = 2, + ACTIONS(17014), 1, + anon_sym_SEMI, + [422368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_EQ, - [369799] = 2, + ACTIONS(19459), 1, + anon_sym_RBRACE, + [422375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18311), 1, - sym_raw_string_content, - [369806] = 2, + ACTIONS(19461), 1, + aux_sym_preproc_if_token2, + [422382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18313), 1, + ACTIONS(19463), 1, anon_sym_RPAREN, - [369813] = 2, + [422389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18315), 1, - sym_raw_string_delimiter, - [369820] = 2, + ACTIONS(18550), 1, + anon_sym_RBRACE, + [422396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18317), 1, + ACTIONS(16155), 1, anon_sym_SEMI, - [369827] = 2, + [422403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18319), 1, + ACTIONS(19465), 1, anon_sym_RPAREN, - [369834] = 2, + [422410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18321), 1, - sym_raw_string_delimiter, - [369841] = 2, + ACTIONS(19467), 1, + aux_sym_preproc_if_token2, + [422417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18323), 1, + ACTIONS(16896), 1, anon_sym_SEMI, - [369848] = 2, + [422424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18325), 1, - anon_sym_DQUOTE, - [369855] = 2, + ACTIONS(19469), 1, + anon_sym_LPAREN2, + [422431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18327), 1, + ACTIONS(13516), 1, anon_sym_RPAREN, - [369862] = 2, + [422438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18329), 1, - anon_sym_DQUOTE, - [369869] = 2, + ACTIONS(13079), 1, + anon_sym_RBRACE, + [422445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18331), 1, + ACTIONS(11071), 1, anon_sym_SEMI, - [369876] = 2, + [422452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18333), 1, + ACTIONS(19471), 1, + anon_sym_RPAREN, + [422459] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19473), 1, + anon_sym_RPAREN, + [422466] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19475), 1, anon_sym_LPAREN2, - [369883] = 2, + [422473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18335), 1, - anon_sym_SEMI, - [369890] = 2, + ACTIONS(15876), 1, + anon_sym_RBRACE, + [422480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18337), 1, + ACTIONS(19477), 1, anon_sym_LPAREN2, - [369897] = 2, + [422487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18339), 1, + ACTIONS(19479), 1, anon_sym_LPAREN2, - [369904] = 2, + [422494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18341), 1, + ACTIONS(19481), 1, anon_sym_LPAREN2, - [369911] = 2, + [422501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18343), 1, + ACTIONS(19483), 1, anon_sym_LPAREN2, - [369918] = 2, + [422508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17369), 1, - anon_sym_RBRACE, - [369925] = 2, + ACTIONS(11138), 1, + anon_sym_SEMI, + [422515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18345), 1, + ACTIONS(19485), 1, anon_sym_LPAREN2, - [369932] = 2, + [422522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15137), 1, - anon_sym_LBRACE, - [369939] = 2, + ACTIONS(19487), 1, + anon_sym_SEMI, + [422529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18347), 1, + ACTIONS(19489), 1, anon_sym_RPAREN, - [369946] = 2, + [422536] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19491), 1, + anon_sym_DQUOTE, + [422543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12952), 1, + ACTIONS(19493), 1, anon_sym_RPAREN, - [369953] = 2, + [422550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18349), 1, - anon_sym_SEMI, - [369960] = 2, + ACTIONS(19495), 1, + anon_sym_RPAREN, + [422557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18351), 1, - anon_sym_SEMI, - [369967] = 2, + ACTIONS(19497), 1, + aux_sym_preproc_if_token2, + [422564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18353), 1, - anon_sym_SEMI, - [369974] = 2, + ACTIONS(19499), 1, + anon_sym_RPAREN, + [422571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18355), 1, - anon_sym_SEMI, - [369981] = 2, + ACTIONS(19501), 1, + anon_sym_RBRACE, + [422578] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(15012), 1, + aux_sym_preproc_include_token2, + [422585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18357), 1, - anon_sym_SEMI, - [369988] = 2, + ACTIONS(19503), 1, + anon_sym_RPAREN, + [422592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18359), 1, + ACTIONS(19505), 1, anon_sym_while, - [369995] = 2, + [422599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18361), 1, + ACTIONS(19507), 1, anon_sym_RPAREN, - [370002] = 2, + [422606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18363), 1, + ACTIONS(19509), 1, anon_sym_LPAREN2, - [370009] = 2, + [422613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18365), 1, - anon_sym_DQUOTE, - [370016] = 2, + ACTIONS(19511), 1, + anon_sym_RPAREN, + [422620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18367), 1, + ACTIONS(13522), 1, anon_sym_RPAREN, - [370023] = 2, + [422627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18369), 1, + ACTIONS(19513), 1, anon_sym_LPAREN2, - [370030] = 2, + [422634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18371), 1, + ACTIONS(19515), 1, anon_sym_LPAREN2, - [370037] = 2, + [422641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18373), 1, - anon_sym_SEMI, - [370044] = 2, + ACTIONS(13683), 1, + anon_sym_RPAREN, + [422648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18375), 1, - sym_identifier, - [370051] = 2, + ACTIONS(19517), 1, + anon_sym_RPAREN, + [422655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18377), 1, + ACTIONS(19519), 1, anon_sym_SEMI, - [370058] = 2, + [422662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18379), 1, + ACTIONS(19521), 1, anon_sym_EQ, - [370065] = 2, + [422669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18381), 1, + ACTIONS(19523), 1, sym_raw_string_content, - [370072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6039), 1, - anon_sym_DOT_DOT_DOT, - [370079] = 2, + [422676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17357), 1, - anon_sym_RBRACE, - [370086] = 2, + ACTIONS(19525), 1, + anon_sym_RPAREN, + [422683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18383), 1, + ACTIONS(19527), 1, anon_sym_SEMI, - [370093] = 2, + [422690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18385), 1, + ACTIONS(19529), 1, anon_sym_STAR, - [370100] = 2, + [422697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_STAR_EQ, - [370107] = 2, + ACTIONS(19531), 1, + anon_sym_STAR, + [422704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18387), 1, + ACTIONS(19533), 1, anon_sym_SEMI, - [370114] = 2, + [422711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18389), 1, - anon_sym_SEMI, - [370121] = 2, + ACTIONS(19535), 1, + anon_sym_RPAREN, + [422718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18391), 1, - anon_sym_SEMI, - [370128] = 2, + ACTIONS(13765), 1, + anon_sym_RPAREN, + [422725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6316), 1, - anon_sym_SEMI, - [370135] = 2, + ACTIONS(19537), 1, + anon_sym_RPAREN, + [422732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18393), 1, - anon_sym_SEMI, - [370142] = 2, + ACTIONS(19539), 1, + anon_sym_LBRACE, + [422739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6036), 1, - anon_sym_DOT_DOT_DOT, - [370149] = 2, + ACTIONS(19541), 1, + aux_sym_preproc_if_token2, + [422746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18395), 1, + ACTIONS(19543), 1, anon_sym_RPAREN, - [370156] = 2, + [422753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18397), 1, - anon_sym_RPAREN, - [370163] = 2, + ACTIONS(19545), 1, + anon_sym_SEMI, + [422760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6001), 1, - anon_sym_DOT_DOT_DOT, - [370170] = 2, + ACTIONS(13262), 1, + anon_sym_SEMI, + [422767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12954), 1, + ACTIONS(13793), 1, anon_sym_RPAREN, - [370177] = 2, + [422774] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19547), 1, + anon_sym_COLON, + [422781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18399), 1, + ACTIONS(19549), 1, sym_identifier, - [370184] = 2, + [422788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18401), 1, + ACTIONS(19551), 1, anon_sym_COMMA, - [370191] = 2, + [422795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18403), 1, - anon_sym_SEMI, - [370198] = 2, + ACTIONS(19553), 1, + anon_sym_DQUOTE, + [422802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6011), 1, - anon_sym_DOT_DOT_DOT, - [370205] = 2, + ACTIONS(19555), 1, + anon_sym_DQUOTE, + [422809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18405), 1, - anon_sym_RPAREN, - [370212] = 2, + ACTIONS(19557), 1, + anon_sym_SEMI, + [422816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18407), 1, - anon_sym_RPAREN, - [370219] = 2, + ACTIONS(19559), 1, + sym_identifier, + [422823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18409), 1, + ACTIONS(19561), 1, anon_sym_SEMI, - [370226] = 2, + [422830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12936), 1, - anon_sym_RPAREN, - [370233] = 2, + ACTIONS(19563), 1, + anon_sym_SEMI, + [422837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18411), 1, + ACTIONS(19565), 1, anon_sym_SEMI, - [370240] = 2, + [422844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18413), 1, - anon_sym_RPAREN, - [370247] = 2, + ACTIONS(6178), 1, + anon_sym_SEMI, + [422851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12605), 1, - anon_sym_COLON, - [370254] = 2, + ACTIONS(19567), 1, + anon_sym_SEMI, + [422858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16130), 1, - anon_sym_SEMI, - [370261] = 2, + ACTIONS(19569), 1, + aux_sym_preproc_if_token2, + [422865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18415), 1, - anon_sym_SEMI, - [370268] = 2, + ACTIONS(19571), 1, + anon_sym_RPAREN, + [422872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18417), 1, - sym_identifier, - [370275] = 2, + ACTIONS(13304), 1, + anon_sym_COLON, + [422879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18419), 1, - anon_sym_DQUOTE, - [370282] = 2, + ACTIONS(19573), 1, + aux_sym_preproc_if_token2, + [422886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19575), 1, + anon_sym_SEMI, + [422893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12709), 1, + ACTIONS(13396), 1, anon_sym_COLON, - [370289] = 2, + [422900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15107), 1, - anon_sym_LBRACE, - [370296] = 2, + ACTIONS(19577), 1, + anon_sym_COLON, + [422907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18421), 1, + ACTIONS(19579), 1, anon_sym_RPAREN, - [370303] = 2, + [422914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18423), 1, - anon_sym_DQUOTE, - [370310] = 2, + ACTIONS(19581), 1, + anon_sym_SEMI, + [422921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_SLASH_EQ, - [370317] = 2, + ACTIONS(13370), 1, + anon_sym_COLON, + [422928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18425), 1, + ACTIONS(19583), 1, anon_sym_RPAREN, - [370324] = 2, + [422935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18427), 1, - anon_sym_SEMI, - [370331] = 2, + ACTIONS(19585), 1, + anon_sym_RPAREN, + [422942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18429), 1, - anon_sym_DQUOTE, - [370338] = 2, + ACTIONS(19587), 1, + anon_sym_RBRACE, + [422949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18431), 1, + ACTIONS(19589), 1, anon_sym_STAR, - [370345] = 2, + [422956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18433), 1, - anon_sym_SEMI, - [370352] = 2, + ACTIONS(19591), 1, + anon_sym_RPAREN, + [422963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18435), 1, - anon_sym_DQUOTE, - [370359] = 2, + ACTIONS(19593), 1, + aux_sym_preproc_if_token2, + [422970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18437), 1, - anon_sym_SEMI, - [370366] = 2, - ACTIONS(14065), 1, + ACTIONS(19595), 1, + anon_sym_RPAREN, + [422977] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(18439), 1, + ACTIONS(19597), 1, aux_sym_preproc_include_token2, - [370373] = 2, + [422984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18441), 1, - anon_sym_SEMI, - [370380] = 2, + ACTIONS(19599), 1, + anon_sym_RPAREN, + [422991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18443), 1, - anon_sym_DQUOTE, - [370387] = 2, + ACTIONS(18458), 1, + anon_sym_RBRACE, + [422998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12851), 1, + ACTIONS(19601), 1, anon_sym_RPAREN, - [370394] = 2, + [423005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18445), 1, + ACTIONS(19603), 1, anon_sym_RPAREN, - [370401] = 2, + [423012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6019), 1, - anon_sym_DOT_DOT_DOT, - [370408] = 2, + ACTIONS(19605), 1, + sym_identifier, + [423019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18447), 1, - aux_sym_preproc_if_token2, - [370415] = 2, + ACTIONS(19607), 1, + anon_sym_SEMI, + [423026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18449), 1, + ACTIONS(19609), 1, anon_sym_RPAREN, - [370422] = 2, + [423033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18451), 1, - sym_identifier, - [370429] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14185), 1, - aux_sym_preproc_include_token2, - [370436] = 2, + ACTIONS(19611), 1, + anon_sym_RPAREN, + [423040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18453), 1, - anon_sym_COLON, - [370443] = 2, + ACTIONS(13767), 1, + anon_sym_RPAREN, + [423047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18455), 1, - aux_sym_preproc_if_token2, - [370450] = 2, + ACTIONS(19613), 1, + anon_sym_SEMI, + [423054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18457), 1, - anon_sym_DQUOTE, - [370457] = 2, + ACTIONS(19615), 1, + anon_sym_COLON, + [423061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18459), 1, - anon_sym_DQUOTE, - [370464] = 2, + ACTIONS(19617), 1, + sym_identifier, + [423068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6016), 1, - anon_sym_DOT_DOT_DOT, - [370471] = 2, + ACTIONS(19619), 1, + anon_sym_SEMI, + [423075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12725), 1, + ACTIONS(19621), 1, anon_sym_SEMI, - [370478] = 2, + [423082] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(19623), 1, + aux_sym_preproc_include_token2, + [423089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18461), 1, - anon_sym_SEMI, - [370485] = 2, + ACTIONS(13663), 1, + anon_sym_RPAREN, + [423096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18463), 1, - sym_identifier, - [370492] = 2, + ACTIONS(19625), 1, + aux_sym_preproc_if_token2, + [423103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18465), 1, - anon_sym_RPAREN, - [370499] = 2, + ACTIONS(19627), 1, + aux_sym_preproc_if_token2, + [423110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18467), 1, + ACTIONS(19629), 1, anon_sym_SEMI, - [370506] = 2, + [423117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PERCENT_EQ, - [370513] = 2, + ACTIONS(15872), 1, + anon_sym_RBRACE, + [423124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15894), 1, + ACTIONS(19631), 1, anon_sym_SEMI, - [370520] = 2, + [423131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18469), 1, - anon_sym_RPAREN, - [370527] = 2, + ACTIONS(19633), 1, + anon_sym_COMMA, + [423138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18471), 1, + ACTIONS(19635), 1, anon_sym_RPAREN, - [370534] = 2, + [423145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18473), 1, - anon_sym_RPAREN, - [370541] = 2, + ACTIONS(19637), 1, + anon_sym_COMMA, + [423152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18475), 1, - anon_sym_RPAREN, - [370548] = 2, + ACTIONS(19639), 1, + sym_identifier, + [423159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18477), 1, - anon_sym_SEMI, - [370555] = 2, + ACTIONS(19633), 1, + anon_sym_DASH, + [423166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18479), 1, - aux_sym_preproc_if_token2, - [370562] = 2, + ACTIONS(19641), 1, + anon_sym_DQUOTE, + [423173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18481), 1, - sym_identifier, - [370569] = 2, + ACTIONS(19643), 1, + anon_sym_SEMI, + [423180] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18560), 1, + anon_sym_RBRACE, + [423187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18483), 1, + ACTIONS(19645), 1, aux_sym_preproc_if_token2, - [370576] = 2, - ACTIONS(8699), 1, - aux_sym_preproc_include_token2, - ACTIONS(14065), 1, + [423194] = 2, + ACTIONS(3), 1, sym_comment, - [370583] = 2, + ACTIONS(19647), 1, + anon_sym_SEMI, + [423201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PLUS_EQ, - [370590] = 2, + ACTIONS(19649), 1, + sym_identifier, + [423208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_DASH_EQ, - [370597] = 2, + ACTIONS(19651), 1, + anon_sym_SEMI, + [423215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_LT_LT_EQ, - [370604] = 2, + ACTIONS(19653), 1, + anon_sym_RPAREN, + [423222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14361), 1, - sym_identifier, - [370611] = 2, + ACTIONS(19655), 1, + anon_sym_RPAREN, + [423229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_GT_GT_EQ, - [370618] = 2, + ACTIONS(19633), 1, + anon_sym_PLUS, + [423236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18485), 1, - anon_sym_DQUOTE, - [370625] = 2, + ACTIONS(19633), 1, + anon_sym_STAR, + [423243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_AMP_EQ, - [370632] = 2, + ACTIONS(19657), 1, + anon_sym_SLASH, + [423250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12645), 1, - anon_sym_SEMI, - [370639] = 2, + ACTIONS(19633), 1, + anon_sym_PERCENT, + [423257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12711), 1, - anon_sym_RPAREN, - [370646] = 2, + ACTIONS(19633), 1, + anon_sym_PIPE_PIPE, + [423264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_CARET_EQ, - [370653] = 2, + ACTIONS(19659), 1, + anon_sym_SEMI, + [423271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18487), 1, - sym_identifier, - [370660] = 2, + ACTIONS(19633), 1, + anon_sym_AMP_AMP, + [423278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PIPE_EQ, - [370667] = 2, + ACTIONS(19633), 1, + anon_sym_PIPE, + [423285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18489), 1, - anon_sym_SEMI, - [370674] = 2, + ACTIONS(19633), 1, + anon_sym_CARET, + [423292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17393), 1, - anon_sym_RBRACE, - [370681] = 2, + ACTIONS(19633), 1, + anon_sym_AMP, + [423299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12713), 1, - anon_sym_RPAREN, - [370688] = 2, + ACTIONS(19633), 1, + anon_sym_EQ_EQ, + [423306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18491), 1, + ACTIONS(19661), 1, sym_identifier, - [370695] = 2, + [423313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18493), 1, - anon_sym_SEMI, - [370702] = 2, + ACTIONS(19633), 1, + anon_sym_BANG_EQ, + [423320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10870), 1, - anon_sym_RPAREN, - [370709] = 2, + ACTIONS(19633), 1, + anon_sym_GT, + [423327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18495), 1, - anon_sym_SEMI, - [370716] = 2, - ACTIONS(14065), 1, + ACTIONS(19633), 1, + anon_sym_GT_EQ, + [423334] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18497), 1, - aux_sym_preproc_include_token2, - [370723] = 2, + ACTIONS(19633), 1, + anon_sym_LT_EQ, + [423341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, - anon_sym_RPAREN, - [370730] = 2, + ACTIONS(19633), 1, + anon_sym_LT, + [423348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12715), 1, - anon_sym_SEMI, - [370737] = 2, + ACTIONS(19633), 1, + anon_sym_LT_LT, + [423355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_or, - [370744] = 2, + ACTIONS(19633), 1, + anon_sym_GT_GT, + [423362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6022), 1, - anon_sym_DOT_DOT_DOT, - [370751] = 2, + ACTIONS(19633), 1, + anon_sym_EQ, + [423369] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(17519), 1, + aux_sym_preproc_include_token2, + [423376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10497), 1, - anon_sym_SEMI, - [370758] = 2, + ACTIONS(19663), 1, + anon_sym_DQUOTE, + [423383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12647), 1, - anon_sym_SEMI, - [370765] = 2, + ACTIONS(19665), 1, + anon_sym_while, + [423390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18499), 1, + ACTIONS(19667), 1, anon_sym_SEMI, - [370772] = 2, + [423397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15188), 1, - anon_sym_SEMI, - [370779] = 2, + ACTIONS(19669), 1, + anon_sym_DQUOTE, + [423404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6025), 1, - anon_sym_DOT_DOT_DOT, - [370786] = 2, + ACTIONS(19671), 1, + anon_sym_DQUOTE, + [423411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14875), 1, - anon_sym_RBRACE, - [370793] = 2, + ACTIONS(13833), 1, + anon_sym_RPAREN, + [423418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6031), 1, - anon_sym_DOT_DOT_DOT, - [370800] = 2, + ACTIONS(19673), 1, + anon_sym_SEMI, + [423425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18501), 1, + ACTIONS(13769), 1, anon_sym_RPAREN, - [370807] = 2, + [423432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18503), 1, - anon_sym_COLON, - [370814] = 2, + ACTIONS(19675), 1, + anon_sym_RPAREN, + [423439] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19677), 1, + anon_sym_DQUOTE, + [423446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18505), 1, + ACTIONS(19679), 1, sym_identifier, - [370821] = 2, + [423453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18507), 1, + ACTIONS(19681), 1, anon_sym_RPAREN, - [370828] = 2, + [423460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18509), 1, - anon_sym_LPAREN2, - [370835] = 2, + ACTIONS(19683), 1, + anon_sym_RPAREN, + [423467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12547), 1, + ACTIONS(13891), 1, anon_sym_RPAREN, - [370842] = 2, + [423474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18511), 1, + ACTIONS(19685), 1, anon_sym_SEMI, - [370849] = 2, + [423481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_COMMA, - [370856] = 2, + ACTIONS(13597), 1, + anon_sym_RPAREN, + [423488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18513), 1, - anon_sym_RPAREN, - [370863] = 2, + ACTIONS(19633), 1, + anon_sym_STAR_EQ, + [423495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18515), 1, - anon_sym_SEMI, - [370870] = 2, + ACTIONS(15830), 1, + anon_sym_RBRACE, + [423502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18517), 1, + ACTIONS(19687), 1, anon_sym_RPAREN, - [370877] = 2, + [423509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18519), 1, + ACTIONS(17204), 1, anon_sym_SEMI, - [370884] = 2, + [423516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18521), 1, - anon_sym_SEMI, - [370891] = 2, + ACTIONS(19689), 1, + anon_sym_RPAREN, + [423523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6028), 1, - anon_sym_DOT_DOT_DOT, - [370898] = 2, + ACTIONS(19691), 1, + sym_identifier, + [423530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18523), 1, - anon_sym_RPAREN, - [370905] = 2, + ACTIONS(19633), 1, + anon_sym_SLASH_EQ, + [423537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18525), 1, + ACTIONS(19693), 1, anon_sym_RPAREN, - [370912] = 2, + [423544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16190), 1, + ACTIONS(19695), 1, anon_sym_SEMI, - [370919] = 2, + [423551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18527), 1, - anon_sym_RPAREN, - [370926] = 2, + ACTIONS(19633), 1, + anon_sym_PERCENT_EQ, + [423558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18529), 1, - anon_sym_SEMI, - [370933] = 2, + ACTIONS(19697), 1, + anon_sym_RBRACE, + [423565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18531), 1, - anon_sym_DQUOTE, - [370940] = 2, + ACTIONS(19699), 1, + anon_sym_RPAREN, + [423572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18533), 1, + ACTIONS(19701), 1, anon_sym_RPAREN, - [370947] = 2, + [423579] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(19703), 1, + aux_sym_preproc_include_token2, + [423586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13098), 1, - anon_sym_RPAREN, - [370954] = 2, + ACTIONS(19705), 1, + anon_sym_SEMI, + [423593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18535), 1, + ACTIONS(19707), 1, anon_sym_RPAREN, - [370961] = 2, + [423600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18537), 1, - aux_sym_preproc_if_token2, - [370968] = 2, + ACTIONS(19709), 1, + anon_sym_LPAREN2, + [423607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18539), 1, + ACTIONS(19711), 1, anon_sym_RPAREN, - [370975] = 2, + [423614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15786), 1, - anon_sym_SEMI, - [370982] = 2, + ACTIONS(19713), 1, + anon_sym_RPAREN, + [423621] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(19715), 1, + aux_sym_preproc_include_token2, + [423628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18541), 1, - anon_sym_RPAREN, - [370989] = 2, + ACTIONS(19717), 1, + anon_sym_COLON, + [423635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18543), 1, - anon_sym_LPAREN2, - [370996] = 2, + ACTIONS(16142), 1, + anon_sym_SEMI, + [423642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18545), 1, - anon_sym_LPAREN2, - [371003] = 2, + ACTIONS(19633), 1, + anon_sym_PLUS_EQ, + [423649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18547), 1, + ACTIONS(19719), 1, anon_sym_LPAREN2, - [371010] = 2, + [423656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18549), 1, + ACTIONS(19721), 1, anon_sym_LPAREN2, - [371017] = 2, + [423663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18551), 1, + ACTIONS(19723), 1, anon_sym_LPAREN2, - [371024] = 2, + [423670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15194), 1, - anon_sym_SEMI, - [371031] = 2, + ACTIONS(19725), 1, + anon_sym_LPAREN2, + [423677] = 2, + ACTIONS(9008), 1, + aux_sym_preproc_include_token2, + ACTIONS(14830), 1, + sym_comment, + [423684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18553), 1, + ACTIONS(19727), 1, anon_sym_LPAREN2, - [371038] = 2, + [423691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_and, - [371045] = 2, + ACTIONS(19633), 1, + anon_sym_DASH_EQ, + [423698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18555), 1, - anon_sym_SEMI, - [371052] = 2, + ACTIONS(19729), 1, + anon_sym_RPAREN, + [423705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_bitor, - [371059] = 2, + ACTIONS(19731), 1, + anon_sym_RPAREN, + [423712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18557), 1, + ACTIONS(19733), 1, anon_sym_while, - [371066] = 2, + [423719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_xor, - [371073] = 2, + ACTIONS(19735), 1, + anon_sym_SEMI, + [423726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18559), 1, + ACTIONS(19737), 1, anon_sym_LPAREN2, - [371080] = 2, + [423733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18561), 1, - anon_sym_SEMI, - [371087] = 2, + ACTIONS(19739), 1, + aux_sym_preproc_if_token2, + [423740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18563), 1, + ACTIONS(11128), 1, anon_sym_SEMI, - [371094] = 2, + [423747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18565), 1, + ACTIONS(19741), 1, anon_sym_LPAREN2, - [371101] = 2, + [423754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18567), 1, + ACTIONS(19743), 1, anon_sym_LPAREN2, - [371108] = 2, + [423761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18569), 1, + ACTIONS(19745), 1, anon_sym_SEMI, - [371115] = 2, + [423768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18571), 1, + ACTIONS(19747), 1, anon_sym_EQ, - [371122] = 2, + [423775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18573), 1, + ACTIONS(19749), 1, sym_raw_string_content, - [371129] = 2, + [423782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18575), 1, + ACTIONS(19751), 1, anon_sym_STAR, - [371136] = 2, + [423789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12887), 1, - anon_sym_RPAREN, - [371143] = 2, + ACTIONS(12955), 1, + anon_sym_RBRACE, + [423796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18577), 1, + ACTIONS(19753), 1, anon_sym_RPAREN, - [371150] = 2, + [423803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14913), 1, - anon_sym_RBRACE, - [371157] = 2, + ACTIONS(19755), 1, + anon_sym_RPAREN, + [423810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18579), 1, + ACTIONS(19757), 1, anon_sym_COMMA, - [371164] = 2, + [423817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18581), 1, - anon_sym_LBRACE, - [371171] = 2, + ACTIONS(13773), 1, + anon_sym_RPAREN, + [423824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18583), 1, - anon_sym_LPAREN2, - [371178] = 2, + ACTIONS(19759), 1, + anon_sym_DQUOTE, + [423831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18585), 1, - anon_sym_DQUOTE, - [371185] = 2, + ACTIONS(19761), 1, + anon_sym_SEMI, + [423838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18587), 1, + ACTIONS(19763), 1, anon_sym_RPAREN, - [371192] = 2, + [423845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18589), 1, - anon_sym_COLON, - [371199] = 2, + ACTIONS(19765), 1, + anon_sym_RPAREN, + [423852] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19767), 1, + anon_sym_RPAREN, + [423859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18591), 1, + ACTIONS(19769), 1, anon_sym_COLON, - [371206] = 2, + [423866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18593), 1, + ACTIONS(19771), 1, + anon_sym_SEMI, + [423873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19773), 1, + anon_sym_DQUOTE, + [423880] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19775), 1, + sym_identifier, + [423887] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19777), 1, anon_sym_LPAREN2, - [371213] = 2, + [423894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18595), 1, + ACTIONS(19779), 1, anon_sym_LPAREN2, - [371220] = 2, + [423901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18597), 1, + ACTIONS(19781), 1, anon_sym_LPAREN2, - [371227] = 2, + [423908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12958), 1, - anon_sym_RPAREN, - [371234] = 2, + ACTIONS(19783), 1, + aux_sym_preproc_if_token2, + [423915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18599), 1, + ACTIONS(19785), 1, anon_sym_LPAREN2, - [371241] = 2, + [423922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18601), 1, - anon_sym_RPAREN, - [371248] = 2, + ACTIONS(17054), 1, + anon_sym_SEMI, + [423929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18603), 1, - sym_identifier, - [371255] = 2, + ACTIONS(19787), 1, + anon_sym_SEMI, + [423936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18605), 1, - sym_identifier, - [371262] = 2, + ACTIONS(19789), 1, + anon_sym_SEMI, + [423943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18607), 1, + ACTIONS(19791), 1, anon_sym_while, - [371269] = 2, + [423950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17168), 1, - anon_sym_LBRACE, - [371276] = 2, + ACTIONS(19793), 1, + anon_sym_DQUOTE, + [423957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18609), 1, + ACTIONS(19795), 1, anon_sym_LPAREN2, - [371283] = 2, + [423964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18611), 1, - anon_sym_DQUOTE, - [371290] = 2, + ACTIONS(19797), 1, + anon_sym_SEMI, + [423971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18613), 1, + ACTIONS(19799), 1, anon_sym_LPAREN2, - [371297] = 2, + [423978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18615), 1, - anon_sym_LBRACE, - [371304] = 2, + ACTIONS(19633), 1, + anon_sym_LT_LT_EQ, + [423985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18617), 1, + ACTIONS(19801), 1, anon_sym_EQ, - [371311] = 2, + [423992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18619), 1, + ACTIONS(19803), 1, sym_raw_string_content, - [371318] = 2, + [423999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18621), 1, - anon_sym_RPAREN, - [371325] = 2, + ACTIONS(18568), 1, + anon_sym_RBRACE, + [424006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18623), 1, + ACTIONS(19805), 1, anon_sym_COMMA, - [371332] = 2, + [424013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_bitand, - [371339] = 2, + ACTIONS(19807), 1, + anon_sym_RPAREN, + [424020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17359), 1, - anon_sym_RBRACE, - [371346] = 2, + ACTIONS(19809), 1, + aux_sym_preproc_if_token2, + [424027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11287), 1, - sym_identifier, - [371353] = 2, + ACTIONS(19811), 1, + aux_sym_preproc_if_token2, + [424034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18625), 1, + ACTIONS(19813), 1, anon_sym_RPAREN, - [371360] = 2, + [424041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18627), 1, + ACTIONS(19815), 1, anon_sym_COLON, - [371367] = 2, + [424048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_not_eq, - [371374] = 2, + ACTIONS(19633), 1, + anon_sym_GT_GT_EQ, + [424055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18629), 1, + ACTIONS(19817), 1, anon_sym_LPAREN2, - [371381] = 2, + [424062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18631), 1, + ACTIONS(19819), 1, anon_sym_LPAREN2, - [371388] = 2, + [424069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18633), 1, + ACTIONS(19821), 1, anon_sym_LPAREN2, - [371395] = 2, + [424076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_DOT_STAR, - [371402] = 2, + ACTIONS(19823), 1, + anon_sym_RPAREN, + [424083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18635), 1, + ACTIONS(19825), 1, anon_sym_LPAREN2, - [371409] = 2, + [424090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18637), 1, - anon_sym_LPAREN2, - [371416] = 2, + ACTIONS(19827), 1, + anon_sym_RPAREN, + [424097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18639), 1, - sym_identifier, - [371423] = 2, + ACTIONS(16107), 1, + anon_sym_SEMI, + [424104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18641), 1, + ACTIONS(19829), 1, anon_sym_while, - [371430] = 2, + [424111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18643), 1, + ACTIONS(19831), 1, anon_sym_LPAREN2, - [371437] = 2, + [424118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_DASH_GT_STAR, - [371444] = 2, + ACTIONS(19833), 1, + anon_sym_SEMI, + [424125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18645), 1, + ACTIONS(19835), 1, anon_sym_LPAREN2, - [371451] = 2, + [424132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18647), 1, - anon_sym_RPAREN, - [371458] = 2, + ACTIONS(19633), 1, + anon_sym_AMP_EQ, + [424139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18649), 1, + ACTIONS(19837), 1, anon_sym_EQ, - [371465] = 2, + [424146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18651), 1, + ACTIONS(19839), 1, sym_raw_string_content, - [371472] = 2, + [424153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_DASH, - [371479] = 2, + ACTIONS(16194), 1, + anon_sym_LBRACE, + [424160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18653), 1, + ACTIONS(19841), 1, anon_sym_COMMA, - [371486] = 2, + [424167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18655), 1, - anon_sym_SEMI, - [371493] = 2, + ACTIONS(13775), 1, + anon_sym_RPAREN, + [424174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12587), 1, - anon_sym_COLON, - [371500] = 2, + ACTIONS(19843), 1, + anon_sym_DQUOTE, + [424181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18657), 1, + ACTIONS(19845), 1, anon_sym_RPAREN, - [371507] = 2, + [424188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18659), 1, + ACTIONS(19847), 1, anon_sym_COLON, - [371514] = 2, + [424195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18661), 1, - anon_sym_SEMI, - [371521] = 2, + ACTIONS(19633), 1, + anon_sym_CARET_EQ, + [424202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18663), 1, + ACTIONS(19849), 1, anon_sym_LPAREN2, - [371528] = 2, + [424209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18665), 1, + ACTIONS(19851), 1, anon_sym_LPAREN2, - [371535] = 2, + [424216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18667), 1, + ACTIONS(19853), 1, anon_sym_LPAREN2, - [371542] = 2, + [424223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18669), 1, + ACTIONS(19855), 1, anon_sym_SEMI, - [371549] = 2, + [424230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18671), 1, + ACTIONS(19857), 1, anon_sym_LPAREN2, - [371556] = 2, + [424237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18673), 1, - sym_identifier, - [371563] = 2, + ACTIONS(19633), 1, + anon_sym_PIPE_EQ, + [424244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18675), 1, - anon_sym_COLON, - [371570] = 2, + ACTIONS(19633), 1, + anon_sym_or, + [424251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18677), 1, + ACTIONS(19859), 1, anon_sym_LPAREN2, - [371577] = 2, + [424258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18679), 1, - anon_sym_RPAREN, - [371584] = 2, + ACTIONS(19861), 1, + anon_sym_SEMI, + [424265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18681), 1, + ACTIONS(19863), 1, anon_sym_LPAREN2, - [371591] = 2, + [424272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18683), 1, - anon_sym_RPAREN, - [371598] = 2, + ACTIONS(19633), 1, + anon_sym_and, + [424279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18685), 1, + ACTIONS(19865), 1, anon_sym_EQ, - [371605] = 2, + [424286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18687), 1, + ACTIONS(19867), 1, sym_raw_string_content, - [371612] = 2, + [424293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18689), 1, - anon_sym_while, - [371619] = 2, + ACTIONS(19869), 1, + sym_identifier, + [424300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18691), 1, + ACTIONS(19871), 1, anon_sym_COMMA, - [371626] = 2, + [424307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18693), 1, - anon_sym_LPAREN2, - [371633] = 2, + ACTIONS(19873), 1, + anon_sym_DQUOTE, + [424314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18695), 1, - sym_identifier, - [371640] = 2, + ACTIONS(19875), 1, + anon_sym_RBRACK, + [424321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18697), 1, + ACTIONS(19877), 1, anon_sym_RPAREN, - [371647] = 2, + [424328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18699), 1, + ACTIONS(19879), 1, anon_sym_COLON, - [371654] = 2, + [424335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18701), 1, - sym_raw_string_content, - [371661] = 2, + ACTIONS(19633), 1, + anon_sym_bitor, + [424342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18703), 1, + ACTIONS(19881), 1, anon_sym_LPAREN2, - [371668] = 2, + [424349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18705), 1, + ACTIONS(19883), 1, anon_sym_LPAREN2, - [371675] = 2, + [424356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18707), 1, + ACTIONS(19885), 1, anon_sym_LPAREN2, - [371682] = 2, + [424363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16072), 1, - anon_sym_SEMI, - [371689] = 2, + ACTIONS(19887), 1, + anon_sym_RPAREN, + [424370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18709), 1, + ACTIONS(19889), 1, anon_sym_LPAREN2, - [371696] = 2, + [424377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18711), 1, - aux_sym_preproc_if_token2, - [371703] = 2, + ACTIONS(19891), 1, + anon_sym_SEMI, + [424384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12673), 1, - anon_sym_SEMI, - [371710] = 2, + ACTIONS(19633), 1, + anon_sym_xor, + [424391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18713), 1, + ACTIONS(19893), 1, anon_sym_LPAREN2, - [371717] = 2, + [424398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18715), 1, + ACTIONS(13737), 1, anon_sym_RPAREN, - [371724] = 2, + [424405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18717), 1, + ACTIONS(19895), 1, anon_sym_LPAREN2, - [371731] = 2, + [424412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18719), 1, - anon_sym_RBRACE, - [371738] = 2, + ACTIONS(19897), 1, + sym_raw_string_delimiter, + [424419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18721), 1, + ACTIONS(19899), 1, anon_sym_EQ, - [371745] = 2, + [424426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18723), 1, + ACTIONS(19901), 1, sym_raw_string_content, - [371752] = 2, - ACTIONS(14065), 1, + [424433] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16777), 1, - aux_sym_preproc_include_token2, - [371759] = 2, + ACTIONS(19903), 1, + anon_sym_SEMI, + [424440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18725), 1, + ACTIONS(19905), 1, anon_sym_COMMA, - [371766] = 2, + [424447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PLUS, - [371773] = 2, + ACTIONS(19907), 1, + anon_sym_SEMI, + [424454] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18727), 1, + ACTIONS(17170), 1, anon_sym_SEMI, - [371780] = 2, + [424461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18729), 1, + ACTIONS(19909), 1, anon_sym_RPAREN, - [371787] = 2, + [424468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18731), 1, + ACTIONS(19911), 1, anon_sym_COLON, - [371794] = 2, + [424475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18733), 1, + ACTIONS(19913), 1, anon_sym_SEMI, - [371801] = 2, + [424482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18735), 1, + ACTIONS(19915), 1, anon_sym_LPAREN2, - [371808] = 2, + [424489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18737), 1, + ACTIONS(19917), 1, anon_sym_LPAREN2, - [371815] = 2, + [424496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18739), 1, + ACTIONS(19919), 1, anon_sym_LPAREN2, - [371822] = 2, + [424503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18741), 1, - anon_sym_RPAREN, - [371829] = 2, + ACTIONS(19921), 1, + anon_sym_SEMI, + [424510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18743), 1, + ACTIONS(19923), 1, anon_sym_LPAREN2, - [371836] = 2, + [424517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18745), 1, + ACTIONS(13777), 1, anon_sym_RPAREN, - [371843] = 2, + [424524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18747), 1, + ACTIONS(19925), 1, anon_sym_LPAREN2, - [371850] = 2, + [424531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18749), 1, - aux_sym_preproc_if_token2, - [371857] = 2, + ACTIONS(19927), 1, + anon_sym_RPAREN, + [424538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18751), 1, + ACTIONS(19929), 1, anon_sym_LPAREN2, - [371864] = 2, + [424545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18753), 1, + ACTIONS(19931), 1, sym_raw_string_content, - [371871] = 2, + [424552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18755), 1, + ACTIONS(19933), 1, anon_sym_SEMI, - [371878] = 2, + [424559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18757), 1, + ACTIONS(19935), 1, anon_sym_COMMA, - [371885] = 2, + [424566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18759), 1, + ACTIONS(19937), 1, anon_sym_SEMI, - [371892] = 2, + [424573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18761), 1, + ACTIONS(19939), 1, anon_sym_RPAREN, - [371899] = 2, + [424580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18763), 1, + ACTIONS(19941), 1, anon_sym_COLON, - [371906] = 2, + [424587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10481), 1, - anon_sym_SEMI, - [371913] = 2, + ACTIONS(19943), 1, + anon_sym_RPAREN, + [424594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18765), 1, + ACTIONS(19945), 1, anon_sym_LPAREN2, - [371920] = 2, + [424601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18767), 1, + ACTIONS(19947), 1, anon_sym_LPAREN2, - [371927] = 2, + [424608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12996), 1, - anon_sym_RPAREN, - [371934] = 2, + ACTIONS(19949), 1, + anon_sym_SEMI, + [424615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18769), 1, + ACTIONS(19951), 1, anon_sym_LPAREN2, - [371941] = 2, + [424622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17423), 1, - anon_sym_RBRACE, - [371948] = 2, + ACTIONS(19953), 1, + anon_sym_RPAREN, + [424629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_STAR, - [371955] = 2, + ACTIONS(17090), 1, + anon_sym_SEMI, + [424636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18771), 1, + ACTIONS(19955), 1, anon_sym_LPAREN2, - [371962] = 2, + [424643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18773), 1, + ACTIONS(19957), 1, sym_raw_string_content, - [371969] = 2, - ACTIONS(3), 1, + [424650] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(18775), 1, - anon_sym_RPAREN, - [371976] = 2, + ACTIONS(19959), 1, + aux_sym_preproc_include_token2, + [424657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18777), 1, + ACTIONS(19961), 1, anon_sym_RPAREN, - [371983] = 2, + [424664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18779), 1, + ACTIONS(19963), 1, anon_sym_LPAREN2, - [371990] = 2, + [424671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18781), 1, + ACTIONS(19965), 1, anon_sym_LPAREN2, - [371997] = 2, + [424678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18783), 1, + ACTIONS(19967), 1, anon_sym_LPAREN2, - [372004] = 2, + [424685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18785), 1, + ACTIONS(19969), 1, anon_sym_LPAREN2, - [372011] = 2, + [424692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18787), 1, + ACTIONS(19971), 1, sym_raw_string_content, - [372018] = 2, + [424699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18789), 1, + ACTIONS(19973), 1, anon_sym_RPAREN, - [372025] = 2, + [424706] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18791), 1, + ACTIONS(19975), 1, anon_sym_LPAREN2, - [372032] = 2, + [424713] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18793), 1, + ACTIONS(19977), 1, anon_sym_LPAREN2, - [372039] = 2, + [424720] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18795), 1, + ACTIONS(19979), 1, anon_sym_LPAREN2, - [372046] = 2, + [424727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18797), 1, + ACTIONS(19981), 1, anon_sym_LPAREN2, - [372053] = 2, + [424734] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18799), 1, + ACTIONS(19983), 1, sym_raw_string_content, - [372060] = 2, + [424741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18801), 1, + ACTIONS(19985), 1, anon_sym_RPAREN, - [372067] = 2, + [424748] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19987), 1, + anon_sym_LPAREN2, + [424755] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19989), 1, + anon_sym_LPAREN2, + [424762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18803), 1, + ACTIONS(19991), 1, anon_sym_LPAREN2, - [372074] = 2, + [424769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18805), 1, + ACTIONS(19993), 1, anon_sym_LPAREN2, - [372081] = 2, + [424776] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18807), 1, + ACTIONS(19995), 1, sym_raw_string_content, - [372088] = 2, + [424783] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18809), 1, + ACTIONS(19997), 1, anon_sym_RPAREN, - [372095] = 2, + [424790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18811), 1, + ACTIONS(19999), 1, anon_sym_LPAREN2, - [372102] = 2, + [424797] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18813), 1, + ACTIONS(20001), 1, anon_sym_LPAREN2, - [372109] = 2, + [424804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18815), 1, + ACTIONS(20003), 1, + anon_sym_LPAREN2, + [424811] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20005), 1, + anon_sym_LPAREN2, + [424818] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20007), 1, sym_raw_string_content, - [372116] = 2, + [424825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18817), 1, + ACTIONS(20009), 1, anon_sym_RPAREN, - [372123] = 2, + [424832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20011), 1, + anon_sym_LPAREN2, + [424839] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18819), 1, + ACTIONS(20013), 1, anon_sym_LPAREN2, - [372130] = 2, + [424846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18821), 1, + ACTIONS(20015), 1, anon_sym_LPAREN2, - [372137] = 2, + [424853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18823), 1, + ACTIONS(20017), 1, + anon_sym_LPAREN2, + [424860] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20019), 1, sym_raw_string_content, - [372144] = 2, + [424867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18825), 1, + ACTIONS(20021), 1, anon_sym_RPAREN, - [372151] = 2, + [424874] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20023), 1, + anon_sym_LPAREN2, + [424881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18827), 1, + ACTIONS(20025), 1, anon_sym_LPAREN2, - [372158] = 2, + [424888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18829), 1, + ACTIONS(20027), 1, anon_sym_LPAREN2, - [372165] = 2, + [424895] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18831), 1, + ACTIONS(20029), 1, + anon_sym_LPAREN2, + [424902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20031), 1, sym_raw_string_content, - [372172] = 2, + [424909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18833), 1, + ACTIONS(20033), 1, anon_sym_RPAREN, - [372179] = 2, + [424916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18835), 1, + ACTIONS(20035), 1, anon_sym_LPAREN2, - [372186] = 2, + [424923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18837), 1, + ACTIONS(20037), 1, anon_sym_LPAREN2, - [372193] = 2, + [424930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18839), 1, + ACTIONS(20039), 1, + anon_sym_LPAREN2, + [424937] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20041), 1, + anon_sym_LPAREN2, + [424944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20043), 1, sym_raw_string_content, - [372200] = 2, + [424951] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18841), 1, + ACTIONS(20045), 1, anon_sym_RPAREN, - [372207] = 2, + [424958] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18843), 1, + ACTIONS(20047), 1, anon_sym_LPAREN2, - [372214] = 2, + [424965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18845), 1, + ACTIONS(20049), 1, anon_sym_LPAREN2, - [372221] = 2, + [424972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18847), 1, + ACTIONS(20051), 1, + anon_sym_LPAREN2, + [424979] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20053), 1, + anon_sym_LPAREN2, + [424986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20055), 1, sym_raw_string_content, - [372228] = 2, + [424993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18849), 1, + ACTIONS(20057), 1, anon_sym_RPAREN, - [372235] = 2, + [425000] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20059), 1, + anon_sym_LPAREN2, + [425007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20061), 1, + anon_sym_LPAREN2, + [425014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18851), 1, + ACTIONS(20063), 1, anon_sym_LPAREN2, - [372242] = 2, + [425021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18853), 1, + ACTIONS(20065), 1, anon_sym_LPAREN2, - [372249] = 2, + [425028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18855), 1, + ACTIONS(20067), 1, sym_raw_string_content, - [372256] = 2, + [425035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18857), 1, + ACTIONS(20069), 1, anon_sym_RPAREN, - [372263] = 2, + [425042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18859), 1, + ACTIONS(20071), 1, anon_sym_LPAREN2, - [372270] = 2, + [425049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18861), 1, + ACTIONS(20073), 1, anon_sym_LPAREN2, - [372277] = 2, + [425056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18863), 1, + ACTIONS(20075), 1, sym_raw_string_content, - [372284] = 2, + [425063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18865), 1, + ACTIONS(20077), 1, anon_sym_RPAREN, - [372291] = 2, + [425070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18867), 1, + ACTIONS(20079), 1, anon_sym_LPAREN2, - [372298] = 2, + [425077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18869), 1, + ACTIONS(20081), 1, anon_sym_LPAREN2, - [372305] = 2, + [425084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18871), 1, + ACTIONS(20083), 1, sym_raw_string_content, - [372312] = 2, + [425091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18873), 1, + ACTIONS(20085), 1, anon_sym_RPAREN, - [372319] = 2, + [425098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20087), 1, + anon_sym_LPAREN2, + [425105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18875), 1, + ACTIONS(20089), 1, anon_sym_LPAREN2, - [372326] = 2, + [425112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18877), 1, + ACTIONS(20091), 1, sym_raw_string_content, - [372333] = 2, + [425119] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18879), 1, + ACTIONS(20093), 1, anon_sym_RPAREN, - [372340] = 2, + [425126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18881), 1, + ACTIONS(20095), 1, anon_sym_LPAREN2, - [372347] = 2, + [425133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18883), 1, + ACTIONS(20097), 1, anon_sym_LPAREN2, - [372354] = 2, + [425140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18885), 1, + ACTIONS(20099), 1, anon_sym_LPAREN2, - [372361] = 2, + [425147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18887), 1, - anon_sym_SLASH, - [372368] = 2, + ACTIONS(20101), 1, + anon_sym_LPAREN2, + [425154] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18889), 1, - sym_identifier, - [372375] = 2, + ACTIONS(20103), 1, + anon_sym_LPAREN2, + [425161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18891), 1, + ACTIONS(20105), 1, anon_sym_LPAREN2, - [372382] = 2, + [425168] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18893), 1, + ACTIONS(20107), 1, anon_sym_LPAREN2, - [372389] = 2, + [425175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18895), 1, - sym_identifier, - [372396] = 2, + ACTIONS(20109), 1, + anon_sym_LPAREN2, + [425182] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18897), 1, - sym_identifier, - [372403] = 2, + ACTIONS(20111), 1, + anon_sym_LPAREN2, + [425189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18899), 1, - anon_sym_RPAREN, - [372410] = 2, + ACTIONS(20113), 1, + anon_sym_LPAREN2, + [425196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18901), 1, - anon_sym_SEMI, - [372417] = 2, + ACTIONS(20115), 1, + anon_sym_LPAREN2, + [425203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18903), 1, - anon_sym_DQUOTE, - [372424] = 2, + ACTIONS(20117), 1, + anon_sym_LPAREN2, + [425210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18905), 1, - anon_sym_RPAREN, - [372431] = 2, + ACTIONS(20119), 1, + anon_sym_LPAREN2, + [425217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12940), 1, - anon_sym_RPAREN, - [372438] = 2, + ACTIONS(20121), 1, + anon_sym_LPAREN2, + [425224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12667), 1, - anon_sym_COLON, - [372445] = 2, + ACTIONS(20123), 1, + anon_sym_LPAREN2, + [425231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18907), 1, - anon_sym_RBRACE, - [372452] = 2, + ACTIONS(20125), 1, + anon_sym_LPAREN2, + [425238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12651), 1, - anon_sym_SEMI, - [372459] = 2, + ACTIONS(20127), 1, + anon_sym_LPAREN2, + [425245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12743), 1, - anon_sym_COLON, - [372466] = 2, + ACTIONS(20129), 1, + anon_sym_LPAREN2, + [425252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18909), 1, - anon_sym_EQ, - [372473] = 2, + ACTIONS(20131), 1, + anon_sym_LPAREN2, + [425259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18911), 1, - aux_sym_preproc_if_token2, - [372480] = 2, + ACTIONS(20133), 1, + anon_sym_LPAREN2, + [425266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18913), 1, - aux_sym_preproc_if_token2, - [372487] = 2, + ACTIONS(20135), 1, + anon_sym_LPAREN2, + [425273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12295), 1, - anon_sym_RBRACE, - [372494] = 2, + ACTIONS(20137), 1, + anon_sym_LPAREN2, + [425280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18915), 1, + ACTIONS(20139), 1, anon_sym_LPAREN2, - [372501] = 2, + [425287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18917), 1, - anon_sym_SEMI, - [372508] = 2, + ACTIONS(20141), 1, + anon_sym_LPAREN2, + [425294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18919), 1, - anon_sym_RBRACE, - [372515] = 2, + ACTIONS(20143), 1, + sym_identifier, + [425301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18921), 1, - anon_sym_RPAREN, - [372522] = 2, + ACTIONS(20145), 1, + aux_sym_preproc_if_token2, + [425308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18923), 1, - aux_sym_preproc_if_token2, - [372529] = 2, + ACTIONS(20147), 1, + anon_sym_LPAREN2, + [425315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18925), 1, - aux_sym_preproc_if_token2, - [372536] = 2, + ACTIONS(20149), 1, + anon_sym_LPAREN2, + [425322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18927), 1, + ACTIONS(20151), 1, + sym_identifier, + [425329] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20153), 1, anon_sym_RPAREN, - [372543] = 2, + [425336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18929), 1, + ACTIONS(13779), 1, + anon_sym_RPAREN, + [425343] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20155), 1, anon_sym_SEMI, - [372550] = 2, + [425350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PERCENT, - [372557] = 2, + ACTIONS(20157), 1, + aux_sym_preproc_if_token2, + [425357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18931), 1, + ACTIONS(20159), 1, anon_sym_RPAREN, - [372564] = 2, + [425364] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(20161), 1, + aux_sym_preproc_include_token2, + [425371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18933), 1, - anon_sym_RPAREN, - [372571] = 2, + ACTIONS(13105), 1, + anon_sym_RBRACE, + [425378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18935), 1, - aux_sym_preproc_if_token2, - [372578] = 2, + ACTIONS(20163), 1, + sym_identifier, + [425385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12315), 1, - anon_sym_RBRACE, - [372585] = 2, + ACTIONS(20165), 1, + sym_identifier, + [425392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18937), 1, + ACTIONS(13270), 1, anon_sym_SEMI, - [372592] = 2, + [425399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12723), 1, - anon_sym_SEMI, - [372599] = 2, + ACTIONS(17561), 1, + anon_sym_COLON_COLON, + [425406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18939), 1, + ACTIONS(13131), 1, anon_sym_RPAREN, - [372606] = 2, + [425413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16644), 1, - anon_sym_COLON_COLON, - [372613] = 2, + ACTIONS(20167), 1, + sym_identifier, + [425420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18941), 1, - anon_sym_SEMI, - [372620] = 2, + ACTIONS(19633), 1, + anon_sym_bitand, + [425427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16126), 1, - anon_sym_SEMI, - [372627] = 2, + ACTIONS(20169), 1, + anon_sym_LPAREN2, + [425434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18943), 1, + ACTIONS(13781), 1, anon_sym_RPAREN, - [372634] = 2, + [425441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15160), 1, + ACTIONS(20171), 1, anon_sym_SEMI, - [372641] = 2, + [425448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18945), 1, - anon_sym_SEMI, - [372648] = 2, + ACTIONS(6079), 1, + anon_sym_DOT_DOT_DOT, + [425455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18947), 1, - anon_sym_DQUOTE, - [372655] = 2, + ACTIONS(20173), 1, + aux_sym_preproc_if_token2, + [425462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18949), 1, - sym_identifier, - [372662] = 2, + ACTIONS(20175), 1, + anon_sym_RPAREN, + [425469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18951), 1, - anon_sym_RPAREN, - [372669] = 2, + ACTIONS(19633), 1, + anon_sym_not_eq, + [425476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18953), 1, - anon_sym_DQUOTE, - [372676] = 2, + ACTIONS(20177), 1, + anon_sym_EQ, + [425483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18955), 1, - sym_raw_string_content, - [372683] = 2, + ACTIONS(19633), 1, + anon_sym_DOT_STAR, + [425490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18957), 1, - sym_identifier, - [372690] = 2, + ACTIONS(19633), 1, + anon_sym_DASH_GT_STAR, + [425497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18959), 1, - sym_raw_string_delimiter, - [372697] = 2, + ACTIONS(20179), 1, + anon_sym_RPAREN, + [425504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13068), 1, + ACTIONS(13783), 1, anon_sym_RPAREN, - [372704] = 2, + [425511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18961), 1, + ACTIONS(20181), 1, + anon_sym_SEMI, + [425518] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20183), 1, + anon_sym_LBRACE, + [425525] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20185), 1, + anon_sym_SEMI, + [425532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20187), 1, anon_sym_RPAREN, - [372711] = 2, + [425539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18963), 1, + ACTIONS(20189), 1, anon_sym_RPAREN, - [372718] = 2, + [425546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12928), 1, + ACTIONS(20191), 1, anon_sym_RPAREN, - [372725] = 2, + [425553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18965), 1, - anon_sym_COMMA, - [372732] = 2, - ACTIONS(14065), 1, + ACTIONS(20193), 1, + anon_sym_RPAREN, + [425560] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18967), 1, - aux_sym_preproc_include_token2, - [372739] = 2, + ACTIONS(13943), 1, + anon_sym_RPAREN, + [425567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18969), 1, - anon_sym_LBRACE, - [372746] = 2, + ACTIONS(20195), 1, + anon_sym_RPAREN, + [425574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 1, - anon_sym_RBRACE, - [372753] = 2, + ACTIONS(20197), 1, + anon_sym_LBRACE, + [425581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18971), 1, + ACTIONS(20199), 1, anon_sym_RPAREN, - [372760] = 2, + [425588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18973), 1, - aux_sym_preproc_if_token2, - [372767] = 2, + ACTIONS(20201), 1, + sym_identifier, + [425595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18975), 1, - sym_identifier, - [372774] = 2, + ACTIONS(20203), 1, + anon_sym_RPAREN, + [425602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18977), 1, - anon_sym_EQ, - [372781] = 2, + ACTIONS(20205), 1, + anon_sym_RPAREN, + [425609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18979), 1, - anon_sym_SEMI, - [372788] = 2, + ACTIONS(20207), 1, + sym_raw_string_content, + [425616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18981), 1, - aux_sym_preproc_if_token2, - [372795] = 2, + ACTIONS(20209), 1, + anon_sym_RPAREN, + [425623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18983), 1, + ACTIONS(13787), 1, anon_sym_RPAREN, - [372802] = 2, + [425630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18985), 1, + ACTIONS(20211), 1, anon_sym_RPAREN, - [372809] = 2, + [425637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18987), 1, - anon_sym_DQUOTE, - [372816] = 2, + ACTIONS(20213), 1, + sym_auto, + [425644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18989), 1, + ACTIONS(20215), 1, anon_sym_RPAREN, - [372823] = 2, + [425651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18991), 1, + ACTIONS(13789), 1, anon_sym_RPAREN, - [372830] = 2, + [425658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18993), 1, + ACTIONS(20217), 1, anon_sym_RPAREN, - [372837] = 2, + [425665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12962), 1, - anon_sym_RPAREN, - [372844] = 2, + ACTIONS(20219), 1, + sym_identifier, + [425672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18995), 1, + ACTIONS(20221), 1, + sym_identifier, + [425679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20223), 1, + sym_identifier, + [425686] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20225), 1, anon_sym_RPAREN, - [372851] = 2, + [425693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10558), 1, + ACTIONS(20227), 1, anon_sym_SEMI, - [372858] = 2, + [425700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18997), 1, - anon_sym_LPAREN2, - [372865] = 2, + ACTIONS(20229), 1, + sym_identifier, + [425707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18999), 1, + ACTIONS(13404), 1, anon_sym_SEMI, - [372872] = 2, + [425714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19001), 1, - anon_sym_RPAREN, - [372879] = 2, + ACTIONS(20231), 1, + anon_sym_LPAREN2, + [425721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19003), 1, + ACTIONS(20233), 1, anon_sym_STAR, - [372886] = 2, + [425728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16787), 1, + ACTIONS(20235), 1, anon_sym_SEMI, - [372893] = 2, + [425735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19005), 1, - aux_sym_preproc_if_token2, - [372900] = 2, + ACTIONS(20237), 1, + anon_sym_RPAREN, + [425742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19007), 1, - aux_sym_preproc_if_token2, - [372907] = 2, + ACTIONS(20239), 1, + sym_identifier, + [425749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19009), 1, + ACTIONS(20241), 1, + anon_sym_SEMI, + [425756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20243), 1, sym_identifier, - [372914] = 2, + [425763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19011), 1, - aux_sym_preproc_if_token2, - [372921] = 2, + ACTIONS(20245), 1, + anon_sym_SEMI, + [425770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19013), 1, - anon_sym_DQUOTE, - [372928] = 2, + ACTIONS(18578), 1, + anon_sym_RBRACE, + [425777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19015), 1, + ACTIONS(15902), 1, + anon_sym_RBRACE, + [425784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20247), 1, + anon_sym_SEMI, + [425791] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20249), 1, + sym_raw_string_content, + [425798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20251), 1, anon_sym_RPAREN, - [372935] = 2, + [425805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15202), 1, + ACTIONS(20253), 1, + aux_sym_preproc_if_token2, + [425812] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20255), 1, + anon_sym_RPAREN, + [425819] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20257), 1, + aux_sym_preproc_if_token2, + [425826] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20259), 1, anon_sym_SEMI, - [372942] = 2, + [425833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19017), 1, - sym_identifier, - [372949] = 2, + ACTIONS(20261), 1, + anon_sym_SEMI, + [425840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19019), 1, + ACTIONS(20263), 1, sym_identifier, - [372956] = 2, + [425847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12543), 1, - anon_sym_RBRACE, - [372963] = 2, + ACTIONS(20265), 1, + anon_sym_RPAREN, + [425854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19021), 1, - anon_sym_RPAREN, - [372970] = 2, + ACTIONS(20267), 1, + anon_sym_SEMI, + [425861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12549), 1, + ACTIONS(20269), 1, anon_sym_SEMI, - [372977] = 2, + [425868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19023), 1, - anon_sym_STAR, - [372984] = 2, + ACTIONS(20271), 1, + anon_sym_LPAREN2, + [425875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19025), 1, - aux_sym_preproc_if_token2, - [372991] = 2, + ACTIONS(20273), 1, + anon_sym_LPAREN2, + [425882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19027), 1, - aux_sym_preproc_if_token2, - [372998] = 2, + ACTIONS(20275), 1, + anon_sym_LBRACE, + [425889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12753), 1, + ACTIONS(20277), 1, anon_sym_RPAREN, - [373005] = 2, + [425896] = 2, + ACTIONS(14830), 1, + sym_comment, + ACTIONS(20279), 1, + aux_sym_preproc_include_token2, + [425903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19029), 1, + ACTIONS(20281), 1, anon_sym_RPAREN, - [373012] = 2, + [425910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19031), 1, - anon_sym_RPAREN, - [373019] = 2, + ACTIONS(20283), 1, + anon_sym_STAR, + [425917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12922), 1, - anon_sym_RPAREN, - [373026] = 2, + ACTIONS(20285), 1, + anon_sym_SEMI, + [425924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19033), 1, + ACTIONS(13258), 1, anon_sym_RPAREN, - [373033] = 2, + [425931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19035), 1, - anon_sym_RPAREN, - [373040] = 2, + ACTIONS(20287), 1, + sym_identifier, + [425938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19037), 1, + ACTIONS(20289), 1, anon_sym_RPAREN, - [373047] = 2, + [425945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19039), 1, - anon_sym_RPAREN, - [373054] = 2, + ACTIONS(20291), 1, + anon_sym_DQUOTE, + [425952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12731), 1, - anon_sym_COLON, - [373061] = 2, + ACTIONS(20293), 1, + anon_sym_private, + [425959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19041), 1, - anon_sym_COLON, - [373068] = 2, + ACTIONS(20295), 1, + sym_identifier, + [425966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19043), 1, + ACTIONS(20297), 1, anon_sym_SEMI, - [373075] = 2, + [425973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19045), 1, + ACTIONS(20299), 1, anon_sym_SEMI, - [373082] = 2, + [425980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12663), 1, + ACTIONS(6459), 1, anon_sym_SEMI, - [373089] = 2, + [425987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14911), 1, - anon_sym_RBRACE, - [373096] = 2, + ACTIONS(13408), 1, + anon_sym_COLON, + [425994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19047), 1, - aux_sym_preproc_if_token2, - [373103] = 2, + ACTIONS(20301), 1, + anon_sym_SEMI, + [426001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19049), 1, + ACTIONS(20303), 1, anon_sym_DQUOTE, - [373110] = 2, + [426008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15198), 1, - anon_sym_LBRACE, - [373117] = 2, + ACTIONS(20305), 1, + anon_sym_SEMI, + [426015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19051), 1, + ACTIONS(20307), 1, + anon_sym_RPAREN, + [426022] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20309), 1, + sym_identifier, + [426029] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20311), 1, + aux_sym_preproc_if_token2, + [426036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20313), 1, + anon_sym_RPAREN, + [426043] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13260), 1, + anon_sym_RPAREN, + [426050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(20315), 1, anon_sym_LPAREN2, - [373124] = 2, + [426057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19053), 1, + ACTIONS(20317), 1, anon_sym_LPAREN2, - [373131] = 2, + [426064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19055), 1, + ACTIONS(20319), 1, sym_identifier, - [373138] = 2, + [426071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19057), 1, - sym_identifier, - [373145] = 2, + ACTIONS(20321), 1, + anon_sym_DQUOTE, + [426078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19059), 1, - anon_sym_RPAREN, - [373152] = 2, + ACTIONS(16200), 1, + anon_sym_SEMI, + [426085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19061), 1, - sym_identifier, - [373159] = 2, + ACTIONS(20323), 1, + anon_sym_RPAREN, + [426092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19063), 1, + ACTIONS(20325), 1, anon_sym_LPAREN2, - [373166] = 2, + [426099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19065), 1, - anon_sym_SEMI, - [373173] = 2, + ACTIONS(20327), 1, + anon_sym_RPAREN, + [426106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19067), 1, + ACTIONS(20329), 1, sym_identifier, - [373180] = 2, + [426113] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19069), 1, + ACTIONS(20331), 1, sym_raw_string_content, - [373187] = 2, + [426120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14897), 1, - anon_sym_RBRACE, - [373194] = 2, + ACTIONS(20333), 1, + sym_identifier, + [426127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19071), 1, + ACTIONS(13402), 1, anon_sym_SEMI, - [373201] = 2, + [426134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19073), 1, - sym_identifier, - [373208] = 2, + ACTIONS(20335), 1, + anon_sym_SEMI, + [426141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19075), 1, - anon_sym_RPAREN, - [373215] = 2, + ACTIONS(16266), 1, + anon_sym_EQ, + [426148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19077), 1, + ACTIONS(20337), 1, anon_sym_LPAREN2, - [373222] = 2, + [426155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19079), 1, + ACTIONS(20339), 1, anon_sym_LPAREN2, - [373229] = 2, + [426162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19081), 1, + ACTIONS(20341), 1, sym_identifier, - [373236] = 2, + [426169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19083), 1, - aux_sym_preproc_if_token2, - [373243] = 2, + ACTIONS(20343), 1, + anon_sym_DQUOTE, + [426176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19085), 1, - aux_sym_preproc_if_token2, - [373250] = 2, + ACTIONS(20345), 1, + anon_sym_DQUOTE, + [426183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19087), 1, - anon_sym_SEMI, - [373257] = 2, + ACTIONS(20347), 1, + aux_sym_preproc_if_token2, + [426190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19089), 1, + ACTIONS(20349), 1, anon_sym_LPAREN2, - [373264] = 2, + [426197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19091), 1, + ACTIONS(20351), 1, sym_identifier, - [373271] = 2, + [426204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19093), 1, + ACTIONS(20353), 1, sym_raw_string_content, - [373278] = 2, + [426211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19095), 1, + ACTIONS(13564), 1, anon_sym_RPAREN, - [373285] = 2, + [426218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19097), 1, - anon_sym_STAR, - [373292] = 2, + ACTIONS(20355), 1, + anon_sym_SEMI, + [426225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19099), 1, - anon_sym_RPAREN, - [373299] = 2, + ACTIONS(13099), 1, + anon_sym_RBRACE, + [426232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19101), 1, + ACTIONS(20357), 1, anon_sym_LPAREN2, - [373306] = 2, + [426239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19103), 1, + ACTIONS(20359), 1, sym_identifier, - [373313] = 2, + [426246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19105), 1, - anon_sym_SEMI, - [373320] = 2, + ACTIONS(20361), 1, + aux_sym_preproc_if_token2, + [426253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19107), 1, - anon_sym_SEMI, - [373327] = 2, + ACTIONS(20363), 1, + anon_sym_RPAREN, + [426260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19109), 1, - anon_sym_RPAREN, - [373334] = 2, + ACTIONS(20365), 1, + sym_identifier, + [426267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19111), 1, + ACTIONS(20367), 1, sym_identifier, - [373341] = 2, + [426274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19113), 1, + ACTIONS(20369), 1, sym_raw_string_content, - [373348] = 2, + [426281] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14889), 1, - anon_sym_RBRACE, - [373355] = 2, - ACTIONS(3), 1, + ACTIONS(6142), 1, + anon_sym_DOT_DOT_DOT, + [426288] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(19115), 1, - anon_sym_STAR, - [373362] = 2, + ACTIONS(20371), 1, + aux_sym_preproc_include_token2, + [426295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19117), 1, + ACTIONS(20373), 1, anon_sym_LPAREN2, - [373369] = 2, + [426302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19119), 1, + ACTIONS(20375), 1, sym_identifier, - [373376] = 2, + [426309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16044), 1, - anon_sym_SEMI, - [373383] = 2, + ACTIONS(20377), 1, + aux_sym_preproc_if_token2, + [426316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19121), 1, - anon_sym_SEMI, - [373390] = 2, + ACTIONS(13669), 1, + anon_sym_RPAREN, + [426323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19123), 1, - anon_sym_RPAREN, - [373397] = 2, + ACTIONS(15848), 1, + anon_sym_RBRACE, + [426330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19125), 1, + ACTIONS(20379), 1, sym_identifier, - [373404] = 2, + [426337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19127), 1, + ACTIONS(20381), 1, sym_raw_string_content, - [373411] = 2, + [426344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19129), 1, - anon_sym_SEMI, - [373418] = 2, + ACTIONS(20383), 1, + anon_sym_LPAREN2, + [426351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19131), 1, + ACTIONS(20385), 1, anon_sym_LPAREN2, - [373425] = 2, + [426358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19133), 1, + ACTIONS(20387), 1, sym_identifier, - [373432] = 2, + [426365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19135), 1, + ACTIONS(13288), 1, anon_sym_SEMI, - [373439] = 2, + [426372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19137), 1, - anon_sym_RPAREN, - [373446] = 2, + ACTIONS(16111), 1, + anon_sym_SEMI, + [426379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19139), 1, + ACTIONS(20389), 1, sym_identifier, - [373453] = 2, + [426386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19141), 1, + ACTIONS(20391), 1, sym_raw_string_content, - [373460] = 2, + [426393] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19143), 1, - aux_sym_preproc_if_token2, - [373467] = 2, + ACTIONS(20393), 1, + sym_identifier, + [426400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19145), 1, - aux_sym_preproc_if_token2, - [373474] = 2, + ACTIONS(20395), 1, + anon_sym_DQUOTE, + [426407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19147), 1, - anon_sym_DOT_DOT_DOT, - [373481] = 2, + ACTIONS(11498), 1, + anon_sym_RPAREN, + [426414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19150), 1, + ACTIONS(20397), 1, sym_identifier, - [373488] = 2, + [426421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19152), 1, + ACTIONS(20399), 1, sym_raw_string_content, - [373495] = 2, + [426428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19154), 1, - anon_sym_RPAREN, - [373502] = 2, + ACTIONS(20401), 1, + aux_sym_preproc_if_token2, + [426435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 1, - anon_sym_COLON, - [373509] = 2, + ACTIONS(15888), 1, + anon_sym_RBRACE, + [426442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19156), 1, + ACTIONS(20403), 1, sym_raw_string_content, - [373516] = 2, - ACTIONS(3), 1, + [426449] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(11677), 1, - sym_identifier, - [373523] = 2, + ACTIONS(20405), 1, + aux_sym_preproc_include_token2, + [426456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19158), 1, + ACTIONS(20407), 1, sym_raw_string_content, - [373530] = 2, + [426463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19160), 1, + ACTIONS(20409), 1, anon_sym_SEMI, - [373537] = 2, + [426470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19162), 1, + ACTIONS(20411), 1, sym_raw_string_content, - [373544] = 2, + [426477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19164), 1, - anon_sym_RPAREN, - [373551] = 2, + ACTIONS(20413), 1, + aux_sym_preproc_if_token2, + [426484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19166), 1, + ACTIONS(20415), 1, sym_raw_string_content, - [373558] = 2, + [426491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19168), 1, - sym_identifier, - [373565] = 2, + ACTIONS(20417), 1, + aux_sym_preproc_if_token2, + [426498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19170), 1, + ACTIONS(20419), 1, sym_raw_string_content, - [373572] = 2, + [426505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19172), 1, + ACTIONS(20421), 1, sym_identifier, - [373579] = 2, + [426512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19174), 1, + ACTIONS(20423), 1, sym_raw_string_content, - [373586] = 2, + [426519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19176), 1, - anon_sym_DQUOTE, - [373593] = 2, + ACTIONS(20425), 1, + anon_sym_private, + [426526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19178), 1, + ACTIONS(20427), 1, sym_raw_string_content, - [373600] = 2, + [426533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19180), 1, - anon_sym_STAR, - [373607] = 2, + ACTIONS(20429), 1, + anon_sym_RPAREN, + [426540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19182), 1, + ACTIONS(20431), 1, sym_raw_string_content, - [373614] = 2, + [426547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19184), 1, - anon_sym_SEMI, - [373621] = 2, + ACTIONS(20433), 1, + sym_identifier, + [426554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19186), 1, + ACTIONS(20435), 1, sym_raw_string_content, - [373628] = 2, + [426561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19188), 1, - sym_identifier, - [373635] = 2, + ACTIONS(20437), 1, + anon_sym_LPAREN2, + [426568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19190), 1, + ACTIONS(20439), 1, sym_raw_string_content, - [373642] = 2, + [426575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14243), 1, - anon_sym_LBRACE, - [373649] = 2, + ACTIONS(20441), 1, + anon_sym_RPAREN, + [426582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19192), 1, + ACTIONS(20443), 1, sym_raw_string_content, - [373656] = 2, + [426589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19194), 1, - aux_sym_preproc_if_token2, - [373663] = 2, + ACTIONS(20445), 1, + anon_sym_SEMI, + [426596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19196), 1, + ACTIONS(20447), 1, sym_raw_string_content, - [373670] = 2, + [426603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19198), 1, - anon_sym_SEMI, - [373677] = 2, + ACTIONS(11402), 1, + anon_sym_RPAREN, + [426610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19200), 1, + ACTIONS(20449), 1, sym_raw_string_content, - [373684] = 2, + [426617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12557), 1, + ACTIONS(20451), 1, anon_sym_RPAREN, - [373691] = 2, + [426624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19202), 1, - aux_sym_preproc_if_token2, - [373698] = 2, + ACTIONS(20453), 1, + anon_sym_RPAREN, + [426631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19204), 1, - anon_sym_RPAREN, - [373705] = 2, + ACTIONS(20455), 1, + anon_sym_COLON, + [426638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19206), 1, - anon_sym_RPAREN, - [373712] = 2, + ACTIONS(20457), 1, + sym_identifier, + [426645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19208), 1, + ACTIONS(20459), 1, anon_sym_LPAREN2, - [373719] = 2, + [426652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12649), 1, - anon_sym_COLON, - [373726] = 2, + ACTIONS(15898), 1, + anon_sym_RBRACE, + [426659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19210), 1, - anon_sym_private, - [373733] = 2, + ACTIONS(20461), 1, + anon_sym_RPAREN, + [426666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19212), 1, - anon_sym_SEMI, - [373740] = 2, + ACTIONS(20463), 1, + aux_sym_preproc_if_token2, + [426673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19214), 1, + ACTIONS(20465), 1, anon_sym_RPAREN, - [373747] = 2, + [426680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19216), 1, - anon_sym_LBRACE, - [373754] = 2, + ACTIONS(20467), 1, + sym_identifier, + [426687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19218), 1, - anon_sym_RPAREN, - [373761] = 2, + ACTIONS(20469), 1, + anon_sym_SEMI, + [426694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19220), 1, - anon_sym_RBRACE, - [373768] = 2, + ACTIONS(12284), 1, + sym_identifier, + [426701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19222), 1, + ACTIONS(13697), 1, anon_sym_RPAREN, - [373775] = 2, + [426708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19224), 1, + ACTIONS(20471), 1, anon_sym_LPAREN2, - [373782] = 2, + [426715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19226), 1, - anon_sym_DQUOTE, - [373789] = 2, + ACTIONS(20473), 1, + anon_sym_RPAREN, + [426722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19228), 1, - anon_sym_private, - [373796] = 2, + ACTIONS(13274), 1, + anon_sym_COLON, + [426729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15404), 1, - anon_sym_LBRACE, - [373803] = 2, + ACTIONS(20475), 1, + anon_sym_LPAREN2, + [426736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19230), 1, - anon_sym_STAR, - [373810] = 2, + ACTIONS(20477), 1, + anon_sym_RPAREN, + [426743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12739), 1, + ACTIONS(13410), 1, anon_sym_COLON, - [373817] = 2, + [426750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19232), 1, + ACTIONS(20479), 1, anon_sym_LPAREN2, - [373824] = 2, + [426757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19234), 1, + ACTIONS(20481), 1, anon_sym_LPAREN2, - [373831] = 2, + [426764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12906), 1, - anon_sym_RPAREN, - [373838] = 2, + ACTIONS(15884), 1, + anon_sym_RBRACE, + [426771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19236), 1, + ACTIONS(20483), 1, anon_sym_LPAREN2, - [373845] = 2, + [426778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19238), 1, + ACTIONS(20485), 1, anon_sym_LPAREN2, - [373852] = 2, + [426785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19240), 1, - sym_identifier, - [373859] = 2, + ACTIONS(20487), 1, + aux_sym_preproc_if_token2, + [426792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19242), 1, + ACTIONS(20489), 1, anon_sym_LPAREN2, - [373866] = 2, + [426799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19244), 1, + ACTIONS(20491), 1, anon_sym_LPAREN2, - [373873] = 2, + [426806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14903), 1, - anon_sym_RBRACE, - [373880] = 2, + ACTIONS(13356), 1, + anon_sym_RPAREN, + [426813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19246), 1, + ACTIONS(20493), 1, anon_sym_LPAREN2, - [373887] = 2, + [426820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19248), 1, + ACTIONS(20495), 1, anon_sym_LPAREN2, - [373894] = 2, + [426827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19250), 1, - anon_sym_COLON, - [373901] = 2, + ACTIONS(20497), 1, + anon_sym_STAR, + [426834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19252), 1, + ACTIONS(20499), 1, anon_sym_LPAREN2, - [373908] = 2, + [426841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19254), 1, + ACTIONS(20501), 1, anon_sym_LPAREN2, - [373915] = 2, + [426848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19256), 1, - anon_sym_SEMI, - [373922] = 2, + ACTIONS(13248), 1, + anon_sym_COLON, + [426855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19258), 1, + ACTIONS(20503), 1, anon_sym_LPAREN2, - [373929] = 2, + [426862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19260), 1, + ACTIONS(20505), 1, anon_sym_LPAREN2, - [373936] = 2, + [426869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19262), 1, - aux_sym_preproc_if_token2, - [373943] = 2, + ACTIONS(20507), 1, + anon_sym_SEMI, + [426876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19264), 1, + ACTIONS(20509), 1, anon_sym_LPAREN2, - [373950] = 2, + [426883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19266), 1, + ACTIONS(20511), 1, anon_sym_LPAREN2, - [373957] = 2, + [426890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19268), 1, + ACTIONS(20513), 1, anon_sym_LPAREN2, - [373964] = 2, + [426897] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19270), 1, + ACTIONS(20515), 1, anon_sym_LPAREN2, - [373971] = 2, + [426904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19272), 1, + ACTIONS(20517), 1, anon_sym_LPAREN2, - [373978] = 2, + [426911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19274), 1, + ACTIONS(20519), 1, anon_sym_LPAREN2, - [373985] = 2, + [426918] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19276), 1, + ACTIONS(20521), 1, anon_sym_LPAREN2, - [373992] = 2, + [426925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19278), 1, + ACTIONS(20523), 1, anon_sym_LPAREN2, - [373999] = 2, + [426932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19280), 1, + ACTIONS(20525), 1, anon_sym_LPAREN2, - [374006] = 2, + [426939] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19282), 1, + ACTIONS(20527), 1, anon_sym_LPAREN2, - [374013] = 2, + [426946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19284), 1, + ACTIONS(20529), 1, anon_sym_LPAREN2, - [374020] = 2, + [426953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19286), 1, + ACTIONS(20531), 1, anon_sym_LPAREN2, - [374027] = 2, + [426960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19288), 1, + ACTIONS(20533), 1, anon_sym_LPAREN2, - [374034] = 2, + [426967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19290), 1, - anon_sym_DQUOTE, - [374041] = 2, + ACTIONS(11098), 1, + anon_sym_SEMI, + [426974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19292), 1, - anon_sym_RPAREN, - [374048] = 2, + ACTIONS(20535), 1, + anon_sym_SEMI, + [426981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19294), 1, - anon_sym_RPAREN, - [374055] = 2, + ACTIONS(13264), 1, + anon_sym_SEMI, + [426988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19296), 1, - anon_sym_LPAREN2, - [374062] = 2, - ACTIONS(14065), 1, + ACTIONS(13344), 1, + anon_sym_COLON, + [426995] = 2, + ACTIONS(14830), 1, sym_comment, - ACTIONS(19298), 1, + ACTIONS(17702), 1, aux_sym_preproc_include_token2, - [374069] = 2, + [427002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19300), 1, - anon_sym_RPAREN, - [374076] = 2, + ACTIONS(16173), 1, + anon_sym_LBRACE, + [427009] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19302), 1, - anon_sym_RPAREN, - [374083] = 2, + ACTIONS(7458), 1, + anon_sym_COLON_COLON, + [427016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19304), 1, + ACTIONS(20537), 1, anon_sym_LPAREN2, - [374090] = 2, + [427023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19306), 1, + ACTIONS(20539), 1, anon_sym_LPAREN2, - [374097] = 2, + [427030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19308), 1, + ACTIONS(20541), 1, anon_sym_LPAREN2, - [374104] = 2, + [427037] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19310), 1, + ACTIONS(20543), 1, anon_sym_LPAREN2, - [374111] = 2, + [427044] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19312), 1, + ACTIONS(20545), 1, anon_sym_LPAREN2, - [374118] = 2, + [427051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19314), 1, + ACTIONS(20547), 1, anon_sym_LPAREN2, - [374125] = 2, + [427058] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19316), 1, + ACTIONS(20549), 1, anon_sym_LPAREN2, - [374132] = 2, + [427065] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(20551), 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(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(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(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(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(8677)] = 333387, - [SMALL_STATE(8678)] = 333425, - [SMALL_STATE(8679)] = 333451, - [SMALL_STATE(8680)] = 333477, - [SMALL_STATE(8681)] = 333501, - [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(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(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(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(4178)] = 0, + [SMALL_STATE(4179)] = 71, + [SMALL_STATE(4180)] = 142, + [SMALL_STATE(4181)] = 213, + [SMALL_STATE(4182)] = 284, + [SMALL_STATE(4183)] = 355, + [SMALL_STATE(4184)] = 426, + [SMALL_STATE(4185)] = 497, + [SMALL_STATE(4186)] = 568, + [SMALL_STATE(4187)] = 639, + [SMALL_STATE(4188)] = 710, + [SMALL_STATE(4189)] = 781, + [SMALL_STATE(4190)] = 852, + [SMALL_STATE(4191)] = 931, + [SMALL_STATE(4192)] = 1002, + [SMALL_STATE(4193)] = 1073, + [SMALL_STATE(4194)] = 1144, + [SMALL_STATE(4195)] = 1215, + [SMALL_STATE(4196)] = 1290, + [SMALL_STATE(4197)] = 1361, + [SMALL_STATE(4198)] = 1432, + [SMALL_STATE(4199)] = 1507, + [SMALL_STATE(4200)] = 1578, + [SMALL_STATE(4201)] = 1649, + [SMALL_STATE(4202)] = 1720, + [SMALL_STATE(4203)] = 1791, + [SMALL_STATE(4204)] = 1898, + [SMALL_STATE(4205)] = 1969, + [SMALL_STATE(4206)] = 2044, + [SMALL_STATE(4207)] = 2123, + [SMALL_STATE(4208)] = 2198, + [SMALL_STATE(4209)] = 2277, + [SMALL_STATE(4210)] = 2348, + [SMALL_STATE(4211)] = 2419, + [SMALL_STATE(4212)] = 2492, + [SMALL_STATE(4213)] = 2567, + [SMALL_STATE(4214)] = 2642, + [SMALL_STATE(4215)] = 2713, + [SMALL_STATE(4216)] = 2784, + [SMALL_STATE(4217)] = 2855, + [SMALL_STATE(4218)] = 2926, + [SMALL_STATE(4219)] = 2997, + [SMALL_STATE(4220)] = 3072, + [SMALL_STATE(4221)] = 3143, + [SMALL_STATE(4222)] = 3214, + [SMALL_STATE(4223)] = 3285, + [SMALL_STATE(4224)] = 3360, + [SMALL_STATE(4225)] = 3439, + [SMALL_STATE(4226)] = 3510, + [SMALL_STATE(4227)] = 3581, + [SMALL_STATE(4228)] = 3656, + [SMALL_STATE(4229)] = 3727, + [SMALL_STATE(4230)] = 3802, + [SMALL_STATE(4231)] = 3877, + [SMALL_STATE(4232)] = 3952, + [SMALL_STATE(4233)] = 4027, + [SMALL_STATE(4234)] = 4102, + [SMALL_STATE(4235)] = 4177, + [SMALL_STATE(4236)] = 4248, + [SMALL_STATE(4237)] = 4323, + [SMALL_STATE(4238)] = 4394, + [SMALL_STATE(4239)] = 4469, + [SMALL_STATE(4240)] = 4544, + [SMALL_STATE(4241)] = 4615, + [SMALL_STATE(4242)] = 4686, + [SMALL_STATE(4243)] = 4757, + [SMALL_STATE(4244)] = 4886, + [SMALL_STATE(4245)] = 4965, + [SMALL_STATE(4246)] = 5036, + [SMALL_STATE(4247)] = 5107, + [SMALL_STATE(4248)] = 5178, + [SMALL_STATE(4249)] = 5249, + [SMALL_STATE(4250)] = 5320, + [SMALL_STATE(4251)] = 5391, + [SMALL_STATE(4252)] = 5470, + [SMALL_STATE(4253)] = 5541, + [SMALL_STATE(4254)] = 5612, + [SMALL_STATE(4255)] = 5687, + [SMALL_STATE(4256)] = 5758, + [SMALL_STATE(4257)] = 5829, + [SMALL_STATE(4258)] = 5900, + [SMALL_STATE(4259)] = 5971, + [SMALL_STATE(4260)] = 6042, + [SMALL_STATE(4261)] = 6121, + [SMALL_STATE(4262)] = 6250, + [SMALL_STATE(4263)] = 6321, + [SMALL_STATE(4264)] = 6396, + [SMALL_STATE(4265)] = 6525, + [SMALL_STATE(4266)] = 6604, + [SMALL_STATE(4267)] = 6683, + [SMALL_STATE(4268)] = 6754, + [SMALL_STATE(4269)] = 6825, + [SMALL_STATE(4270)] = 6896, + [SMALL_STATE(4271)] = 6967, + [SMALL_STATE(4272)] = 7038, + [SMALL_STATE(4273)] = 7109, + [SMALL_STATE(4274)] = 7180, + [SMALL_STATE(4275)] = 7251, + [SMALL_STATE(4276)] = 7322, + [SMALL_STATE(4277)] = 7393, + [SMALL_STATE(4278)] = 7468, + [SMALL_STATE(4279)] = 7539, + [SMALL_STATE(4280)] = 7610, + [SMALL_STATE(4281)] = 7717, + [SMALL_STATE(4282)] = 7794, + [SMALL_STATE(4283)] = 7865, + [SMALL_STATE(4284)] = 7936, + [SMALL_STATE(4285)] = 8007, + [SMALL_STATE(4286)] = 8078, + [SMALL_STATE(4287)] = 8149, + [SMALL_STATE(4288)] = 8220, + [SMALL_STATE(4289)] = 8291, + [SMALL_STATE(4290)] = 8370, + [SMALL_STATE(4291)] = 8445, + [SMALL_STATE(4292)] = 8520, + [SMALL_STATE(4293)] = 8591, + [SMALL_STATE(4294)] = 8662, + [SMALL_STATE(4295)] = 8733, + [SMALL_STATE(4296)] = 8812, + [SMALL_STATE(4297)] = 8883, + [SMALL_STATE(4298)] = 8954, + [SMALL_STATE(4299)] = 9025, + [SMALL_STATE(4300)] = 9096, + [SMALL_STATE(4301)] = 9167, + [SMALL_STATE(4302)] = 9238, + [SMALL_STATE(4303)] = 9309, + [SMALL_STATE(4304)] = 9392, + [SMALL_STATE(4305)] = 9463, + [SMALL_STATE(4306)] = 9534, + [SMALL_STATE(4307)] = 9663, + [SMALL_STATE(4308)] = 9734, + [SMALL_STATE(4309)] = 9805, + [SMALL_STATE(4310)] = 9876, + [SMALL_STATE(4311)] = 9947, + [SMALL_STATE(4312)] = 10076, + [SMALL_STATE(4313)] = 10153, + [SMALL_STATE(4314)] = 10228, + [SMALL_STATE(4315)] = 10357, + [SMALL_STATE(4316)] = 10428, + [SMALL_STATE(4317)] = 10501, + [SMALL_STATE(4318)] = 10572, + [SMALL_STATE(4319)] = 10649, + [SMALL_STATE(4320)] = 10724, + [SMALL_STATE(4321)] = 10799, + [SMALL_STATE(4322)] = 10870, + [SMALL_STATE(4323)] = 10949, + [SMALL_STATE(4324)] = 11020, + [SMALL_STATE(4325)] = 11091, + [SMALL_STATE(4326)] = 11162, + [SMALL_STATE(4327)] = 11233, + [SMALL_STATE(4328)] = 11304, + [SMALL_STATE(4329)] = 11377, + [SMALL_STATE(4330)] = 11448, + [SMALL_STATE(4331)] = 11519, + [SMALL_STATE(4332)] = 11590, + [SMALL_STATE(4333)] = 11661, + [SMALL_STATE(4334)] = 11732, + [SMALL_STATE(4335)] = 11803, + [SMALL_STATE(4336)] = 11886, + [SMALL_STATE(4337)] = 11957, + [SMALL_STATE(4338)] = 12036, + [SMALL_STATE(4339)] = 12107, + [SMALL_STATE(4340)] = 12178, + [SMALL_STATE(4341)] = 12249, + [SMALL_STATE(4342)] = 12328, + [SMALL_STATE(4343)] = 12405, + [SMALL_STATE(4344)] = 12476, + [SMALL_STATE(4345)] = 12547, + [SMALL_STATE(4346)] = 12618, + [SMALL_STATE(4347)] = 12689, + [SMALL_STATE(4348)] = 12768, + [SMALL_STATE(4349)] = 12839, + [SMALL_STATE(4350)] = 12915, + [SMALL_STATE(4351)] = 13027, + [SMALL_STATE(4352)] = 13103, + [SMALL_STATE(4353)] = 13173, + [SMALL_STATE(4354)] = 13247, + [SMALL_STATE(4355)] = 13321, + [SMALL_STATE(4356)] = 13391, + [SMALL_STATE(4357)] = 13461, + [SMALL_STATE(4358)] = 13535, + [SMALL_STATE(4359)] = 13605, + [SMALL_STATE(4360)] = 13675, + [SMALL_STATE(4361)] = 13745, + [SMALL_STATE(4362)] = 13819, + [SMALL_STATE(4363)] = 13895, + [SMALL_STATE(4364)] = 13965, + [SMALL_STATE(4365)] = 14035, + [SMALL_STATE(4366)] = 14123, + [SMALL_STATE(4367)] = 14197, + [SMALL_STATE(4368)] = 14267, + [SMALL_STATE(4369)] = 14337, + [SMALL_STATE(4370)] = 14407, + [SMALL_STATE(4371)] = 14477, + [SMALL_STATE(4372)] = 14551, + [SMALL_STATE(4373)] = 14673, + [SMALL_STATE(4374)] = 14747, + [SMALL_STATE(4375)] = 14817, + [SMALL_STATE(4376)] = 14929, + [SMALL_STATE(4377)] = 14999, + [SMALL_STATE(4378)] = 15121, + [SMALL_STATE(4379)] = 15195, + [SMALL_STATE(4380)] = 15271, + [SMALL_STATE(4381)] = 15345, + [SMALL_STATE(4382)] = 15415, + [SMALL_STATE(4383)] = 15495, + [SMALL_STATE(4384)] = 15565, + [SMALL_STATE(4385)] = 15635, + [SMALL_STATE(4386)] = 15705, + [SMALL_STATE(4387)] = 15775, + [SMALL_STATE(4388)] = 15849, + [SMALL_STATE(4389)] = 15961, + [SMALL_STATE(4390)] = 16031, + [SMALL_STATE(4391)] = 16101, + [SMALL_STATE(4392)] = 16171, + [SMALL_STATE(4393)] = 16241, + [SMALL_STATE(4394)] = 16311, + [SMALL_STATE(4395)] = 16399, + [SMALL_STATE(4396)] = 16511, + [SMALL_STATE(4397)] = 16581, + [SMALL_STATE(4398)] = 16669, + [SMALL_STATE(4399)] = 16743, + [SMALL_STATE(4400)] = 16831, + [SMALL_STATE(4401)] = 16905, + [SMALL_STATE(4402)] = 16979, + [SMALL_STATE(4403)] = 17053, + [SMALL_STATE(4404)] = 17127, + [SMALL_STATE(4405)] = 17201, + [SMALL_STATE(4406)] = 17275, + [SMALL_STATE(4407)] = 17349, + [SMALL_STATE(4408)] = 17419, + [SMALL_STATE(4409)] = 17489, + [SMALL_STATE(4410)] = 17559, + [SMALL_STATE(4411)] = 17629, + [SMALL_STATE(4412)] = 17703, + [SMALL_STATE(4413)] = 17785, + [SMALL_STATE(4414)] = 17867, + [SMALL_STATE(4415)] = 17989, + [SMALL_STATE(4416)] = 18111, + [SMALL_STATE(4417)] = 18181, + [SMALL_STATE(4418)] = 18303, + [SMALL_STATE(4419)] = 18425, + [SMALL_STATE(4420)] = 18495, + [SMALL_STATE(4421)] = 18565, + [SMALL_STATE(4422)] = 18643, + [SMALL_STATE(4423)] = 18713, + [SMALL_STATE(4424)] = 18783, + [SMALL_STATE(4425)] = 18871, + [SMALL_STATE(4426)] = 18945, + [SMALL_STATE(4427)] = 19057, + [SMALL_STATE(4428)] = 19127, + [SMALL_STATE(4429)] = 19197, + [SMALL_STATE(4430)] = 19267, + [SMALL_STATE(4431)] = 19337, + [SMALL_STATE(4432)] = 19461, + [SMALL_STATE(4433)] = 19535, + [SMALL_STATE(4434)] = 19621, + [SMALL_STATE(4435)] = 19691, + [SMALL_STATE(4436)] = 19815, + [SMALL_STATE(4437)] = 19885, + [SMALL_STATE(4438)] = 19997, + [SMALL_STATE(4439)] = 20067, + [SMALL_STATE(4440)] = 20173, + [SMALL_STATE(4441)] = 20251, + [SMALL_STATE(4442)] = 20329, + [SMALL_STATE(4443)] = 20403, + [SMALL_STATE(4444)] = 20477, + [SMALL_STATE(4445)] = 20551, + [SMALL_STATE(4446)] = 20627, + [SMALL_STATE(4447)] = 20705, + [SMALL_STATE(4448)] = 20779, + [SMALL_STATE(4449)] = 20900, + [SMALL_STATE(4450)] = 20969, + [SMALL_STATE(4451)] = 21074, + [SMALL_STATE(4452)] = 21179, + [SMALL_STATE(4453)] = 21248, + [SMALL_STATE(4454)] = 21317, + [SMALL_STATE(4455)] = 21386, + [SMALL_STATE(4456)] = 21463, + [SMALL_STATE(4457)] = 21532, + [SMALL_STATE(4458)] = 21609, + [SMALL_STATE(4459)] = 21678, + [SMALL_STATE(4460)] = 21747, + [SMALL_STATE(4461)] = 21816, + [SMALL_STATE(4462)] = 21885, + [SMALL_STATE(4463)] = 22006, + [SMALL_STATE(4464)] = 22127, + [SMALL_STATE(4465)] = 22214, + [SMALL_STATE(4466)] = 22319, + [SMALL_STATE(4467)] = 22424, + [SMALL_STATE(4468)] = 22495, + [SMALL_STATE(4469)] = 22568, + [SMALL_STATE(4470)] = 22637, + [SMALL_STATE(4471)] = 22706, + [SMALL_STATE(4472)] = 22801, + [SMALL_STATE(4473)] = 22870, + [SMALL_STATE(4474)] = 22965, + [SMALL_STATE(4475)] = 23060, + [SMALL_STATE(4476)] = 23131, + [SMALL_STATE(4477)] = 23202, + [SMALL_STATE(4478)] = 23323, + [SMALL_STATE(4479)] = 23392, + [SMALL_STATE(4480)] = 23469, + [SMALL_STATE(4481)] = 23538, + [SMALL_STATE(4482)] = 23607, + [SMALL_STATE(4483)] = 23676, + [SMALL_STATE(4484)] = 23745, + [SMALL_STATE(4485)] = 23814, + [SMALL_STATE(4486)] = 23883, + [SMALL_STATE(4487)] = 23988, + [SMALL_STATE(4488)] = 24057, + [SMALL_STATE(4489)] = 24126, + [SMALL_STATE(4490)] = 24203, + [SMALL_STATE(4491)] = 24272, + [SMALL_STATE(4492)] = 24377, + [SMALL_STATE(4493)] = 24446, + [SMALL_STATE(4494)] = 24515, + [SMALL_STATE(4495)] = 24614, + [SMALL_STATE(4496)] = 24685, + [SMALL_STATE(4497)] = 24770, + [SMALL_STATE(4498)] = 24839, + [SMALL_STATE(4499)] = 24922, + [SMALL_STATE(4500)] = 24991, + [SMALL_STATE(4501)] = 25060, + [SMALL_STATE(4502)] = 25165, + [SMALL_STATE(4503)] = 25234, + [SMALL_STATE(4504)] = 25303, + [SMALL_STATE(4505)] = 25372, + [SMALL_STATE(4506)] = 25441, + [SMALL_STATE(4507)] = 25510, + [SMALL_STATE(4508)] = 25579, + [SMALL_STATE(4509)] = 25648, + [SMALL_STATE(4510)] = 25717, + [SMALL_STATE(4511)] = 25822, + [SMALL_STATE(4512)] = 25921, + [SMALL_STATE(4513)] = 25990, + [SMALL_STATE(4514)] = 26059, + [SMALL_STATE(4515)] = 26128, + [SMALL_STATE(4516)] = 26197, + [SMALL_STATE(4517)] = 26266, + [SMALL_STATE(4518)] = 26335, + [SMALL_STATE(4519)] = 26430, + [SMALL_STATE(4520)] = 26525, + [SMALL_STATE(4521)] = 26594, + [SMALL_STATE(4522)] = 26689, + [SMALL_STATE(4523)] = 26758, + [SMALL_STATE(4524)] = 26827, + [SMALL_STATE(4525)] = 26900, + [SMALL_STATE(4526)] = 26969, + [SMALL_STATE(4527)] = 27038, + [SMALL_STATE(4528)] = 27107, + [SMALL_STATE(4529)] = 27176, + [SMALL_STATE(4530)] = 27245, + [SMALL_STATE(4531)] = 27314, + [SMALL_STATE(4532)] = 27383, + [SMALL_STATE(4533)] = 27452, + [SMALL_STATE(4534)] = 27557, + [SMALL_STATE(4535)] = 27636, + [SMALL_STATE(4536)] = 27715, + [SMALL_STATE(4537)] = 27814, + [SMALL_STATE(4538)] = 27883, + [SMALL_STATE(4539)] = 27966, + [SMALL_STATE(4540)] = 28071, + [SMALL_STATE(4541)] = 28140, + [SMALL_STATE(4542)] = 28209, + [SMALL_STATE(4543)] = 28286, + [SMALL_STATE(4544)] = 28355, + [SMALL_STATE(4545)] = 28430, + [SMALL_STATE(4546)] = 28535, + [SMALL_STATE(4547)] = 28610, + [SMALL_STATE(4548)] = 28715, + [SMALL_STATE(4549)] = 28784, + [SMALL_STATE(4550)] = 28853, + [SMALL_STATE(4551)] = 28934, + [SMALL_STATE(4552)] = 29039, + [SMALL_STATE(4553)] = 29144, + [SMALL_STATE(4554)] = 29213, + [SMALL_STATE(4555)] = 29312, + [SMALL_STATE(4556)] = 29387, + [SMALL_STATE(4557)] = 29456, + [SMALL_STATE(4558)] = 29525, + [SMALL_STATE(4559)] = 29624, + [SMALL_STATE(4560)] = 29693, + [SMALL_STATE(4561)] = 29792, + [SMALL_STATE(4562)] = 29861, + [SMALL_STATE(4563)] = 29936, + [SMALL_STATE(4564)] = 30021, + [SMALL_STATE(4565)] = 30098, + [SMALL_STATE(4566)] = 30171, + [SMALL_STATE(4567)] = 30246, + [SMALL_STATE(4568)] = 30315, + [SMALL_STATE(4569)] = 30384, + [SMALL_STATE(4570)] = 30459, + [SMALL_STATE(4571)] = 30527, + [SMALL_STATE(4572)] = 30595, + [SMALL_STATE(4573)] = 30715, + [SMALL_STATE(4574)] = 30835, + [SMALL_STATE(4575)] = 30911, + [SMALL_STATE(4576)] = 30979, + [SMALL_STATE(4577)] = 31047, + [SMALL_STATE(4578)] = 31115, + [SMALL_STATE(4579)] = 31193, + [SMALL_STATE(4580)] = 31271, + [SMALL_STATE(4581)] = 31339, + [SMALL_STATE(4582)] = 31459, + [SMALL_STATE(4583)] = 31527, + [SMALL_STATE(4584)] = 31647, + [SMALL_STATE(4585)] = 31767, + [SMALL_STATE(4586)] = 31841, + [SMALL_STATE(4587)] = 31909, + [SMALL_STATE(4588)] = 31983, + [SMALL_STATE(4589)] = 32051, + [SMALL_STATE(4590)] = 32171, + [SMALL_STATE(4591)] = 32291, + [SMALL_STATE(4592)] = 32411, + [SMALL_STATE(4593)] = 32481, + [SMALL_STATE(4594)] = 32601, + [SMALL_STATE(4595)] = 32721, + [SMALL_STATE(4596)] = 32841, + [SMALL_STATE(4597)] = 32911, + [SMALL_STATE(4598)] = 32979, + [SMALL_STATE(4599)] = 33047, + [SMALL_STATE(4600)] = 33125, + [SMALL_STATE(4601)] = 33193, + [SMALL_STATE(4602)] = 33261, + [SMALL_STATE(4603)] = 33329, + [SMALL_STATE(4604)] = 33397, + [SMALL_STATE(4605)] = 33465, + [SMALL_STATE(4606)] = 33543, + [SMALL_STATE(4607)] = 33611, + [SMALL_STATE(4608)] = 33687, + [SMALL_STATE(4609)] = 33755, + [SMALL_STATE(4610)] = 33823, + [SMALL_STATE(4611)] = 33891, + [SMALL_STATE(4612)] = 33959, + [SMALL_STATE(4613)] = 34027, + [SMALL_STATE(4614)] = 34147, + [SMALL_STATE(4615)] = 34227, + [SMALL_STATE(4616)] = 34307, + [SMALL_STATE(4617)] = 34387, + [SMALL_STATE(4618)] = 34467, + [SMALL_STATE(4619)] = 34543, + [SMALL_STATE(4620)] = 34623, + [SMALL_STATE(4621)] = 34703, + [SMALL_STATE(4622)] = 34783, + [SMALL_STATE(4623)] = 34863, + [SMALL_STATE(4624)] = 34983, + [SMALL_STATE(4625)] = 35057, + [SMALL_STATE(4626)] = 35177, + [SMALL_STATE(4627)] = 35297, + [SMALL_STATE(4628)] = 35365, + [SMALL_STATE(4629)] = 35485, + [SMALL_STATE(4630)] = 35605, + [SMALL_STATE(4631)] = 35725, + [SMALL_STATE(4632)] = 35793, + [SMALL_STATE(4633)] = 35867, + [SMALL_STATE(4634)] = 35935, + [SMALL_STATE(4635)] = 36003, + [SMALL_STATE(4636)] = 36071, + [SMALL_STATE(4637)] = 36145, + [SMALL_STATE(4638)] = 36265, + [SMALL_STATE(4639)] = 36385, + [SMALL_STATE(4640)] = 36509, + [SMALL_STATE(4641)] = 36629, + [SMALL_STATE(4642)] = 36749, + [SMALL_STATE(4643)] = 36823, + [SMALL_STATE(4644)] = 36943, + [SMALL_STATE(4645)] = 37063, + [SMALL_STATE(4646)] = 37133, + [SMALL_STATE(4647)] = 37253, + [SMALL_STATE(4648)] = 37321, + [SMALL_STATE(4649)] = 37441, + [SMALL_STATE(4650)] = 37561, + [SMALL_STATE(4651)] = 37681, + [SMALL_STATE(4652)] = 37749, + [SMALL_STATE(4653)] = 37869, + [SMALL_STATE(4654)] = 37937, + [SMALL_STATE(4655)] = 38005, + [SMALL_STATE(4656)] = 38125, + [SMALL_STATE(4657)] = 38193, + [SMALL_STATE(4658)] = 38261, + [SMALL_STATE(4659)] = 38329, + [SMALL_STATE(4660)] = 38397, + [SMALL_STATE(4661)] = 38465, + [SMALL_STATE(4662)] = 38585, + [SMALL_STATE(4663)] = 38661, + [SMALL_STATE(4664)] = 38729, + [SMALL_STATE(4665)] = 38797, + [SMALL_STATE(4666)] = 38865, + [SMALL_STATE(4667)] = 38933, + [SMALL_STATE(4668)] = 39019, + [SMALL_STATE(4669)] = 39087, + [SMALL_STATE(4670)] = 39155, + [SMALL_STATE(4671)] = 39275, + [SMALL_STATE(4672)] = 39395, + [SMALL_STATE(4673)] = 39475, + [SMALL_STATE(4674)] = 39545, + [SMALL_STATE(4675)] = 39625, + [SMALL_STATE(4676)] = 39745, + [SMALL_STATE(4677)] = 39815, + [SMALL_STATE(4678)] = 39883, + [SMALL_STATE(4679)] = 39951, + [SMALL_STATE(4680)] = 40021, + [SMALL_STATE(4681)] = 40089, + [SMALL_STATE(4682)] = 40157, + [SMALL_STATE(4683)] = 40233, + [SMALL_STATE(4684)] = 40357, + [SMALL_STATE(4685)] = 40477, + [SMALL_STATE(4686)] = 40581, + [SMALL_STATE(4687)] = 40655, + [SMALL_STATE(4688)] = 40775, + [SMALL_STATE(4689)] = 40895, + [SMALL_STATE(4690)] = 41015, + [SMALL_STATE(4691)] = 41091, + [SMALL_STATE(4692)] = 41159, + [SMALL_STATE(4693)] = 41227, + [SMALL_STATE(4694)] = 41297, + [SMALL_STATE(4695)] = 41367, + [SMALL_STATE(4696)] = 41435, + [SMALL_STATE(4697)] = 41503, + [SMALL_STATE(4698)] = 41589, + [SMALL_STATE(4699)] = 41656, + [SMALL_STATE(4700)] = 41723, + [SMALL_STATE(4701)] = 41800, + [SMALL_STATE(4702)] = 41867, + [SMALL_STATE(4703)] = 41934, + [SMALL_STATE(4704)] = 42005, + [SMALL_STATE(4705)] = 42072, + [SMALL_STATE(4706)] = 42145, + [SMALL_STATE(4707)] = 42212, + [SMALL_STATE(4708)] = 42279, + [SMALL_STATE(4709)] = 42346, + [SMALL_STATE(4710)] = 42421, + [SMALL_STATE(4711)] = 42498, + [SMALL_STATE(4712)] = 42565, + [SMALL_STATE(4713)] = 42632, + [SMALL_STATE(4714)] = 42699, + [SMALL_STATE(4715)] = 42772, + [SMALL_STATE(4716)] = 42839, + [SMALL_STATE(4717)] = 42906, + [SMALL_STATE(4718)] = 42973, + [SMALL_STATE(4719)] = 43040, + [SMALL_STATE(4720)] = 43107, + [SMALL_STATE(4721)] = 43176, + [SMALL_STATE(4722)] = 43243, + [SMALL_STATE(4723)] = 43310, + [SMALL_STATE(4724)] = 43377, + [SMALL_STATE(4725)] = 43448, + [SMALL_STATE(4726)] = 43559, + [SMALL_STATE(4727)] = 43626, + [SMALL_STATE(4728)] = 43745, + [SMALL_STATE(4729)] = 43864, + [SMALL_STATE(4730)] = 43931, + [SMALL_STATE(4731)] = 43998, + [SMALL_STATE(4732)] = 44117, + [SMALL_STATE(4733)] = 44188, + [SMALL_STATE(4734)] = 44255, + [SMALL_STATE(4735)] = 44334, + [SMALL_STATE(4736)] = 44453, + [SMALL_STATE(4737)] = 44520, + [SMALL_STATE(4738)] = 44631, + [SMALL_STATE(4739)] = 44742, + [SMALL_STATE(4740)] = 44809, + [SMALL_STATE(4741)] = 44876, + [SMALL_STATE(4742)] = 44943, + [SMALL_STATE(4743)] = 45054, + [SMALL_STATE(4744)] = 45121, + [SMALL_STATE(4745)] = 45198, + [SMALL_STATE(4746)] = 45275, + [SMALL_STATE(4747)] = 45350, + [SMALL_STATE(4748)] = 45417, + [SMALL_STATE(4749)] = 45494, + [SMALL_STATE(4750)] = 45561, + [SMALL_STATE(4751)] = 45638, + [SMALL_STATE(4752)] = 45709, + [SMALL_STATE(4753)] = 45776, + [SMALL_STATE(4754)] = 45853, + [SMALL_STATE(4755)] = 45920, + [SMALL_STATE(4756)] = 46031, + [SMALL_STATE(4757)] = 46102, + [SMALL_STATE(4758)] = 46169, + [SMALL_STATE(4759)] = 46236, + [SMALL_STATE(4760)] = 46315, + [SMALL_STATE(4761)] = 46382, + [SMALL_STATE(4762)] = 46451, + [SMALL_STATE(4763)] = 46518, + [SMALL_STATE(4764)] = 46629, + [SMALL_STATE(4765)] = 46698, + [SMALL_STATE(4766)] = 46769, + [SMALL_STATE(4767)] = 46836, + [SMALL_STATE(4768)] = 46903, + [SMALL_STATE(4769)] = 46982, + [SMALL_STATE(4770)] = 47055, + [SMALL_STATE(4771)] = 47128, + [SMALL_STATE(4772)] = 47195, + [SMALL_STATE(4773)] = 47266, + [SMALL_STATE(4774)] = 47333, + [SMALL_STATE(4775)] = 47402, + [SMALL_STATE(4776)] = 47469, + [SMALL_STATE(4777)] = 47548, + [SMALL_STATE(4778)] = 47615, + [SMALL_STATE(4779)] = 47686, + [SMALL_STATE(4780)] = 47757, + [SMALL_STATE(4781)] = 47836, + [SMALL_STATE(4782)] = 47903, + [SMALL_STATE(4783)] = 47974, + [SMALL_STATE(4784)] = 48047, + [SMALL_STATE(4785)] = 48114, + [SMALL_STATE(4786)] = 48181, + [SMALL_STATE(4787)] = 48248, + [SMALL_STATE(4788)] = 48321, + [SMALL_STATE(4789)] = 48400, + [SMALL_STATE(4790)] = 48467, + [SMALL_STATE(4791)] = 48534, + [SMALL_STATE(4792)] = 48601, + [SMALL_STATE(4793)] = 48668, + [SMALL_STATE(4794)] = 48739, + [SMALL_STATE(4795)] = 48806, + [SMALL_STATE(4796)] = 48889, + [SMALL_STATE(4797)] = 48968, + [SMALL_STATE(4798)] = 49035, + [SMALL_STATE(4799)] = 49112, + [SMALL_STATE(4800)] = 49179, + [SMALL_STATE(4801)] = 49252, + [SMALL_STATE(4802)] = 49319, + [SMALL_STATE(4803)] = 49386, + [SMALL_STATE(4804)] = 49453, + [SMALL_STATE(4805)] = 49520, + [SMALL_STATE(4806)] = 49587, + [SMALL_STATE(4807)] = 49666, + [SMALL_STATE(4808)] = 49733, + [SMALL_STATE(4809)] = 49800, + [SMALL_STATE(4810)] = 49871, + [SMALL_STATE(4811)] = 49937, + [SMALL_STATE(4812)] = 50003, + [SMALL_STATE(4813)] = 50077, + [SMALL_STATE(4814)] = 50151, + [SMALL_STATE(4815)] = 50225, + [SMALL_STATE(4816)] = 50299, + [SMALL_STATE(4817)] = 50373, + [SMALL_STATE(4818)] = 50443, + [SMALL_STATE(4819)] = 50517, + [SMALL_STATE(4820)] = 50587, + [SMALL_STATE(4821)] = 50657, + [SMALL_STATE(4822)] = 50727, + [SMALL_STATE(4823)] = 50797, + [SMALL_STATE(4824)] = 50867, + [SMALL_STATE(4825)] = 50937, + [SMALL_STATE(4826)] = 51007, + [SMALL_STATE(4827)] = 51077, + [SMALL_STATE(4828)] = 51147, + [SMALL_STATE(4829)] = 51217, + [SMALL_STATE(4830)] = 51287, + [SMALL_STATE(4831)] = 51371, + [SMALL_STATE(4832)] = 51437, + [SMALL_STATE(4833)] = 51505, + [SMALL_STATE(4834)] = 51571, + [SMALL_STATE(4835)] = 51637, + [SMALL_STATE(4836)] = 51703, + [SMALL_STATE(4837)] = 51769, + [SMALL_STATE(4838)] = 51835, + [SMALL_STATE(4839)] = 51901, + [SMALL_STATE(4840)] = 51967, + [SMALL_STATE(4841)] = 52033, + [SMALL_STATE(4842)] = 52111, + [SMALL_STATE(4843)] = 52189, + [SMALL_STATE(4844)] = 52267, + [SMALL_STATE(4845)] = 52345, + [SMALL_STATE(4846)] = 52423, + [SMALL_STATE(4847)] = 52501, + [SMALL_STATE(4848)] = 52579, + [SMALL_STATE(4849)] = 52657, + [SMALL_STATE(4850)] = 52731, + [SMALL_STATE(4851)] = 52833, + [SMALL_STATE(4852)] = 52903, + [SMALL_STATE(4853)] = 53023, + [SMALL_STATE(4854)] = 53143, + [SMALL_STATE(4855)] = 53229, + [SMALL_STATE(4856)] = 53295, + [SMALL_STATE(4857)] = 53365, + [SMALL_STATE(4858)] = 53439, + [SMALL_STATE(4859)] = 53505, + [SMALL_STATE(4860)] = 53571, + [SMALL_STATE(4861)] = 53641, + [SMALL_STATE(4862)] = 53751, + [SMALL_STATE(4863)] = 53825, + [SMALL_STATE(4864)] = 53935, + [SMALL_STATE(4865)] = 54045, + [SMALL_STATE(4866)] = 54155, + [SMALL_STATE(4867)] = 54235, + [SMALL_STATE(4868)] = 54345, + [SMALL_STATE(4869)] = 54455, + [SMALL_STATE(4870)] = 54521, + [SMALL_STATE(4871)] = 54595, + [SMALL_STATE(4872)] = 54665, + [SMALL_STATE(4873)] = 54739, + [SMALL_STATE(4874)] = 54857, + [SMALL_STATE(4875)] = 54925, + [SMALL_STATE(4876)] = 55043, + [SMALL_STATE(4877)] = 55113, + [SMALL_STATE(4878)] = 55183, + [SMALL_STATE(4879)] = 55253, + [SMALL_STATE(4880)] = 55323, + [SMALL_STATE(4881)] = 55389, + [SMALL_STATE(4882)] = 55467, + [SMALL_STATE(4883)] = 55537, + [SMALL_STATE(4884)] = 55607, + [SMALL_STATE(4885)] = 55677, + [SMALL_STATE(4886)] = 55747, + [SMALL_STATE(4887)] = 55817, + [SMALL_STATE(4888)] = 55887, + [SMALL_STATE(4889)] = 55961, + [SMALL_STATE(4890)] = 56027, + [SMALL_STATE(4891)] = 56093, + [SMALL_STATE(4892)] = 56159, + [SMALL_STATE(4893)] = 56237, + [SMALL_STATE(4894)] = 56307, + [SMALL_STATE(4895)] = 56377, + [SMALL_STATE(4896)] = 56453, + [SMALL_STATE(4897)] = 56519, + [SMALL_STATE(4898)] = 56585, + [SMALL_STATE(4899)] = 56651, + [SMALL_STATE(4900)] = 56717, + [SMALL_STATE(4901)] = 56795, + [SMALL_STATE(4902)] = 56873, + [SMALL_STATE(4903)] = 56949, + [SMALL_STATE(4904)] = 57017, + [SMALL_STATE(4905)] = 57085, + [SMALL_STATE(4906)] = 57151, + [SMALL_STATE(4907)] = 57217, + [SMALL_STATE(4908)] = 57301, + [SMALL_STATE(4909)] = 57379, + [SMALL_STATE(4910)] = 57445, + [SMALL_STATE(4911)] = 57511, + [SMALL_STATE(4912)] = 57589, + [SMALL_STATE(4913)] = 57663, + [SMALL_STATE(4914)] = 57743, + [SMALL_STATE(4915)] = 57821, + [SMALL_STATE(4916)] = 57895, + [SMALL_STATE(4917)] = 57973, + [SMALL_STATE(4918)] = 58051, + [SMALL_STATE(4919)] = 58153, + [SMALL_STATE(4920)] = 58227, + [SMALL_STATE(4921)] = 58293, + [SMALL_STATE(4922)] = 58402, + [SMALL_STATE(4923)] = 58519, + [SMALL_STATE(4924)] = 58636, + [SMALL_STATE(4925)] = 58709, + [SMALL_STATE(4926)] = 58792, + [SMALL_STATE(4927)] = 58875, + [SMALL_STATE(4928)] = 58946, + [SMALL_STATE(4929)] = 59029, + [SMALL_STATE(4930)] = 59098, + [SMALL_STATE(4931)] = 59171, + [SMALL_STATE(4932)] = 59236, + [SMALL_STATE(4933)] = 59309, + [SMALL_STATE(4934)] = 59382, + [SMALL_STATE(4935)] = 59455, + [SMALL_STATE(4936)] = 59528, + [SMALL_STATE(4937)] = 59637, + [SMALL_STATE(4938)] = 59750, + [SMALL_STATE(4939)] = 59855, + [SMALL_STATE(4940)] = 59956, + [SMALL_STATE(4941)] = 60055, + [SMALL_STATE(4942)] = 60152, + [SMALL_STATE(4943)] = 60247, + [SMALL_STATE(4944)] = 60338, + [SMALL_STATE(4945)] = 60425, + [SMALL_STATE(4946)] = 60534, + [SMALL_STATE(4947)] = 60647, + [SMALL_STATE(4948)] = 60756, + [SMALL_STATE(4949)] = 60869, + [SMALL_STATE(4950)] = 60954, + [SMALL_STATE(4951)] = 61023, + [SMALL_STATE(4952)] = 61088, + [SMALL_STATE(4953)] = 61153, + [SMALL_STATE(4954)] = 61236, + [SMALL_STATE(4955)] = 61319, + [SMALL_STATE(4956)] = 61392, + [SMALL_STATE(4957)] = 61501, + [SMALL_STATE(4958)] = 61610, + [SMALL_STATE(4959)] = 61679, + [SMALL_STATE(4960)] = 61764, + [SMALL_STATE(4961)] = 61837, + [SMALL_STATE(4962)] = 61910, + [SMALL_STATE(4963)] = 61987, + [SMALL_STATE(4964)] = 62056, + [SMALL_STATE(4965)] = 62121, + [SMALL_STATE(4966)] = 62186, + [SMALL_STATE(4967)] = 62251, + [SMALL_STATE(4968)] = 62316, + [SMALL_STATE(4969)] = 62389, + [SMALL_STATE(4970)] = 62468, + [SMALL_STATE(4971)] = 62551, + [SMALL_STATE(4972)] = 62616, + [SMALL_STATE(4973)] = 62701, + [SMALL_STATE(4974)] = 62784, + [SMALL_STATE(4975)] = 62849, + [SMALL_STATE(4976)] = 62922, + [SMALL_STATE(4977)] = 62995, + [SMALL_STATE(4978)] = 63060, + [SMALL_STATE(4979)] = 63133, + [SMALL_STATE(4980)] = 63206, + [SMALL_STATE(4981)] = 63279, + [SMALL_STATE(4982)] = 63352, + [SMALL_STATE(4983)] = 63425, + [SMALL_STATE(4984)] = 63504, + [SMALL_STATE(4985)] = 63589, + [SMALL_STATE(4986)] = 63662, + [SMALL_STATE(4987)] = 63733, + [SMALL_STATE(4988)] = 63798, + [SMALL_STATE(4989)] = 63881, + [SMALL_STATE(4990)] = 63964, + [SMALL_STATE(4991)] = 64029, + [SMALL_STATE(4992)] = 64102, + [SMALL_STATE(4993)] = 64175, + [SMALL_STATE(4994)] = 64260, + [SMALL_STATE(4995)] = 64333, + [SMALL_STATE(4996)] = 64412, + [SMALL_STATE(4997)] = 64495, + [SMALL_STATE(4998)] = 64578, + [SMALL_STATE(4999)] = 64651, + [SMALL_STATE(5000)] = 64724, + [SMALL_STATE(5001)] = 64803, + [SMALL_STATE(5002)] = 64888, + [SMALL_STATE(5003)] = 64961, + [SMALL_STATE(5004)] = 65078, + [SMALL_STATE(5005)] = 65195, + [SMALL_STATE(5006)] = 65278, + [SMALL_STATE(5007)] = 65361, + [SMALL_STATE(5008)] = 65426, + [SMALL_STATE(5009)] = 65543, + [SMALL_STATE(5010)] = 65660, + [SMALL_STATE(5011)] = 65725, + [SMALL_STATE(5012)] = 65790, + [SMALL_STATE(5013)] = 65863, + [SMALL_STATE(5014)] = 65944, + [SMALL_STATE(5015)] = 66027, + [SMALL_STATE(5016)] = 66112, + [SMALL_STATE(5017)] = 66181, + [SMALL_STATE(5018)] = 66254, + [SMALL_STATE(5019)] = 66337, + [SMALL_STATE(5020)] = 66410, + [SMALL_STATE(5021)] = 66483, + [SMALL_STATE(5022)] = 66556, + [SMALL_STATE(5023)] = 66641, + [SMALL_STATE(5024)] = 66708, + [SMALL_STATE(5025)] = 66781, + [SMALL_STATE(5026)] = 66854, + [SMALL_STATE(5027)] = 66926, + [SMALL_STATE(5028)] = 67020, + [SMALL_STATE(5029)] = 67128, + [SMALL_STATE(5030)] = 67222, + [SMALL_STATE(5031)] = 67330, + [SMALL_STATE(5032)] = 67438, + [SMALL_STATE(5033)] = 67506, + [SMALL_STATE(5034)] = 67600, + [SMALL_STATE(5035)] = 67664, + [SMALL_STATE(5036)] = 67758, + [SMALL_STATE(5037)] = 67852, + [SMALL_STATE(5038)] = 67960, + [SMALL_STATE(5039)] = 68028, + [SMALL_STATE(5040)] = 68094, + [SMALL_STATE(5041)] = 68162, + [SMALL_STATE(5042)] = 68256, + [SMALL_STATE(5043)] = 68350, + [SMALL_STATE(5044)] = 68444, + [SMALL_STATE(5045)] = 68538, + [SMALL_STATE(5046)] = 68606, + [SMALL_STATE(5047)] = 68674, + [SMALL_STATE(5048)] = 68768, + [SMALL_STATE(5049)] = 68836, + [SMALL_STATE(5050)] = 68912, + [SMALL_STATE(5051)] = 68988, + [SMALL_STATE(5052)] = 69056, + [SMALL_STATE(5053)] = 69128, + [SMALL_STATE(5054)] = 69196, + [SMALL_STATE(5055)] = 69264, + [SMALL_STATE(5056)] = 69332, + [SMALL_STATE(5057)] = 69408, + [SMALL_STATE(5058)] = 69476, + [SMALL_STATE(5059)] = 69544, + [SMALL_STATE(5060)] = 69638, + [SMALL_STATE(5061)] = 69732, + [SMALL_STATE(5062)] = 69800, + [SMALL_STATE(5063)] = 69872, + [SMALL_STATE(5064)] = 69940, + [SMALL_STATE(5065)] = 70034, + [SMALL_STATE(5066)] = 70108, + [SMALL_STATE(5067)] = 70174, + [SMALL_STATE(5068)] = 70268, + [SMALL_STATE(5069)] = 70334, + [SMALL_STATE(5070)] = 70408, + [SMALL_STATE(5071)] = 70476, + [SMALL_STATE(5072)] = 70548, + [SMALL_STATE(5073)] = 70616, + [SMALL_STATE(5074)] = 70690, + [SMALL_STATE(5075)] = 70764, + [SMALL_STATE(5076)] = 70828, + [SMALL_STATE(5077)] = 70922, + [SMALL_STATE(5078)] = 70990, + [SMALL_STATE(5079)] = 71058, + [SMALL_STATE(5080)] = 71130, + [SMALL_STATE(5081)] = 71194, + [SMALL_STATE(5082)] = 71266, + [SMALL_STATE(5083)] = 71334, + [SMALL_STATE(5084)] = 71410, + [SMALL_STATE(5085)] = 71478, + [SMALL_STATE(5086)] = 71546, + [SMALL_STATE(5087)] = 71612, + [SMALL_STATE(5088)] = 71686, + [SMALL_STATE(5089)] = 71758, + [SMALL_STATE(5090)] = 71834, + [SMALL_STATE(5091)] = 71902, + [SMALL_STATE(5092)] = 71966, + [SMALL_STATE(5093)] = 72030, + [SMALL_STATE(5094)] = 72098, + [SMALL_STATE(5095)] = 72170, + [SMALL_STATE(5096)] = 72284, + [SMALL_STATE(5097)] = 72398, + [SMALL_STATE(5098)] = 72462, + [SMALL_STATE(5099)] = 72538, + [SMALL_STATE(5100)] = 72610, + [SMALL_STATE(5101)] = 72678, + [SMALL_STATE(5102)] = 72742, + [SMALL_STATE(5103)] = 72806, + [SMALL_STATE(5104)] = 72870, + [SMALL_STATE(5105)] = 72938, + [SMALL_STATE(5106)] = 73056, + [SMALL_STATE(5107)] = 73124, + [SMALL_STATE(5108)] = 73192, + [SMALL_STATE(5109)] = 73260, + [SMALL_STATE(5110)] = 73332, + [SMALL_STATE(5111)] = 73408, + [SMALL_STATE(5112)] = 73484, + [SMALL_STATE(5113)] = 73552, + [SMALL_STATE(5114)] = 73670, + [SMALL_STATE(5115)] = 73738, + [SMALL_STATE(5116)] = 73846, + [SMALL_STATE(5117)] = 73914, + [SMALL_STATE(5118)] = 74022, + [SMALL_STATE(5119)] = 74116, + [SMALL_STATE(5120)] = 74180, + [SMALL_STATE(5121)] = 74248, + [SMALL_STATE(5122)] = 74316, + [SMALL_STATE(5123)] = 74410, + [SMALL_STATE(5124)] = 74504, + [SMALL_STATE(5125)] = 74573, + [SMALL_STATE(5126)] = 74682, + [SMALL_STATE(5127)] = 74797, + [SMALL_STATE(5128)] = 74916, + [SMALL_STATE(5129)] = 75031, + [SMALL_STATE(5130)] = 75144, + [SMALL_STATE(5131)] = 75215, + [SMALL_STATE(5132)] = 75288, + [SMALL_STATE(5133)] = 75359, + [SMALL_STATE(5134)] = 75468, + [SMALL_STATE(5135)] = 75577, + [SMALL_STATE(5136)] = 75648, + [SMALL_STATE(5137)] = 75715, + [SMALL_STATE(5138)] = 75788, + [SMALL_STATE(5139)] = 75859, + [SMALL_STATE(5140)] = 75930, + [SMALL_STATE(5141)] = 76001, + [SMALL_STATE(5142)] = 76072, + [SMALL_STATE(5143)] = 76139, + [SMALL_STATE(5144)] = 76300, + [SMALL_STATE(5145)] = 76367, + [SMALL_STATE(5146)] = 76476, + [SMALL_STATE(5147)] = 76549, + [SMALL_STATE(5148)] = 76668, + [SMALL_STATE(5149)] = 76735, + [SMALL_STATE(5150)] = 76848, + [SMALL_STATE(5151)] = 77009, + [SMALL_STATE(5152)] = 77076, + [SMALL_STATE(5153)] = 77159, + [SMALL_STATE(5154)] = 77226, + [SMALL_STATE(5155)] = 77293, + [SMALL_STATE(5156)] = 77402, + [SMALL_STATE(5157)] = 77521, + [SMALL_STATE(5158)] = 77588, + [SMALL_STATE(5159)] = 77701, + [SMALL_STATE(5160)] = 77778, + [SMALL_STATE(5161)] = 77897, + [SMALL_STATE(5162)] = 77970, + [SMALL_STATE(5163)] = 78049, + [SMALL_STATE(5164)] = 78118, + [SMALL_STATE(5165)] = 78191, + [SMALL_STATE(5166)] = 78296, + [SMALL_STATE(5167)] = 78397, + [SMALL_STATE(5168)] = 78494, + [SMALL_STATE(5169)] = 78589, + [SMALL_STATE(5170)] = 78658, + [SMALL_STATE(5171)] = 78767, + [SMALL_STATE(5172)] = 78858, + [SMALL_STATE(5173)] = 78923, + [SMALL_STATE(5174)] = 79012, + [SMALL_STATE(5175)] = 79097, + [SMALL_STATE(5176)] = 79216, + [SMALL_STATE(5177)] = 79297, + [SMALL_STATE(5178)] = 79374, + [SMALL_STATE(5179)] = 79457, + [SMALL_STATE(5180)] = 79528, + [SMALL_STATE(5181)] = 79611, + [SMALL_STATE(5182)] = 79682, + [SMALL_STATE(5183)] = 79801, + [SMALL_STATE(5184)] = 79874, + [SMALL_STATE(5185)] = 79947, + [SMALL_STATE(5186)] = 80010, + [SMALL_STATE(5187)] = 80127, + [SMALL_STATE(5188)] = 80196, + [SMALL_STATE(5189)] = 80265, + [SMALL_STATE(5190)] = 80384, + [SMALL_STATE(5191)] = 80453, + [SMALL_STATE(5192)] = 80522, + [SMALL_STATE(5193)] = 80641, + [SMALL_STATE(5194)] = 80758, + [SMALL_STATE(5195)] = 80829, + [SMALL_STATE(5196)] = 80900, + [SMALL_STATE(5197)] = 80967, + [SMALL_STATE(5198)] = 81084, + [SMALL_STATE(5199)] = 81245, + [SMALL_STATE(5200)] = 81316, + [SMALL_STATE(5201)] = 81387, + [SMALL_STATE(5202)] = 81458, + [SMALL_STATE(5203)] = 81577, + [SMALL_STATE(5204)] = 81648, + [SMALL_STATE(5205)] = 81719, + [SMALL_STATE(5206)] = 81790, + [SMALL_STATE(5207)] = 81853, + [SMALL_STATE(5208)] = 81916, + [SMALL_STATE(5209)] = 81985, + [SMALL_STATE(5210)] = 82056, + [SMALL_STATE(5211)] = 82125, + [SMALL_STATE(5212)] = 82194, + [SMALL_STATE(5213)] = 82263, + [SMALL_STATE(5214)] = 82328, + [SMALL_STATE(5215)] = 82399, + [SMALL_STATE(5216)] = 82516, + [SMALL_STATE(5217)] = 82587, + [SMALL_STATE(5218)] = 82652, + [SMALL_STATE(5219)] = 82723, + [SMALL_STATE(5220)] = 82788, + [SMALL_STATE(5221)] = 82853, + [SMALL_STATE(5222)] = 82920, + [SMALL_STATE(5223)] = 82991, + [SMALL_STATE(5224)] = 83060, + [SMALL_STATE(5225)] = 83125, + [SMALL_STATE(5226)] = 83194, + [SMALL_STATE(5227)] = 83259, + [SMALL_STATE(5228)] = 83330, + [SMALL_STATE(5229)] = 83395, + [SMALL_STATE(5230)] = 83466, + [SMALL_STATE(5231)] = 83531, + [SMALL_STATE(5232)] = 83604, + [SMALL_STATE(5233)] = 83667, + [SMALL_STATE(5234)] = 83784, + [SMALL_STATE(5235)] = 83849, + [SMALL_STATE(5236)] = 83914, + [SMALL_STATE(5237)] = 83987, + [SMALL_STATE(5238)] = 84052, + [SMALL_STATE(5239)] = 84123, + [SMALL_STATE(5240)] = 84196, + [SMALL_STATE(5241)] = 84267, + [SMALL_STATE(5242)] = 84338, + [SMALL_STATE(5243)] = 84409, + [SMALL_STATE(5244)] = 84482, + [SMALL_STATE(5245)] = 84553, + [SMALL_STATE(5246)] = 84670, + [SMALL_STATE(5247)] = 84743, + [SMALL_STATE(5248)] = 84808, + [SMALL_STATE(5249)] = 84879, + [SMALL_STATE(5250)] = 85040, + [SMALL_STATE(5251)] = 85105, + [SMALL_STATE(5252)] = 85178, + [SMALL_STATE(5253)] = 85261, + [SMALL_STATE(5254)] = 85324, + [SMALL_STATE(5255)] = 85430, + [SMALL_STATE(5256)] = 85546, + [SMALL_STATE(5257)] = 85612, + [SMALL_STATE(5258)] = 85674, + [SMALL_STATE(5259)] = 85790, + [SMALL_STATE(5260)] = 85906, + [SMALL_STATE(5261)] = 85968, + [SMALL_STATE(5262)] = 86040, + [SMALL_STATE(5263)] = 86102, + [SMALL_STATE(5264)] = 86170, + [SMALL_STATE(5265)] = 86232, + [SMALL_STATE(5266)] = 86304, + [SMALL_STATE(5267)] = 86378, + [SMALL_STATE(5268)] = 86490, + [SMALL_STATE(5269)] = 86552, + [SMALL_STATE(5270)] = 86624, + [SMALL_STATE(5271)] = 86686, + [SMALL_STATE(5272)] = 86748, + [SMALL_STATE(5273)] = 86814, + [SMALL_STATE(5274)] = 86880, + [SMALL_STATE(5275)] = 86942, + [SMALL_STATE(5276)] = 87058, + [SMALL_STATE(5277)] = 87124, + [SMALL_STATE(5278)] = 87240, + [SMALL_STATE(5279)] = 87306, + [SMALL_STATE(5280)] = 87422, + [SMALL_STATE(5281)] = 87538, + [SMALL_STATE(5282)] = 87654, + [SMALL_STATE(5283)] = 87716, + [SMALL_STATE(5284)] = 87784, + [SMALL_STATE(5285)] = 87846, + [SMALL_STATE(5286)] = 87918, + [SMALL_STATE(5287)] = 87980, + [SMALL_STATE(5288)] = 88042, + [SMALL_STATE(5289)] = 88104, + [SMALL_STATE(5290)] = 88174, + [SMALL_STATE(5291)] = 88246, + [SMALL_STATE(5292)] = 88308, + [SMALL_STATE(5293)] = 88424, + [SMALL_STATE(5294)] = 88540, + [SMALL_STATE(5295)] = 88656, + [SMALL_STATE(5296)] = 88734, + [SMALL_STATE(5297)] = 88802, + [SMALL_STATE(5298)] = 88918, + [SMALL_STATE(5299)] = 88980, + [SMALL_STATE(5300)] = 89086, + [SMALL_STATE(5301)] = 89152, + [SMALL_STATE(5302)] = 89220, + [SMALL_STATE(5303)] = 89282, + [SMALL_STATE(5304)] = 89350, + [SMALL_STATE(5305)] = 89466, + [SMALL_STATE(5306)] = 89534, + [SMALL_STATE(5307)] = 89600, + [SMALL_STATE(5308)] = 89668, + [SMALL_STATE(5309)] = 89730, + [SMALL_STATE(5310)] = 89802, + [SMALL_STATE(5311)] = 89864, + [SMALL_STATE(5312)] = 89926, + [SMALL_STATE(5313)] = 89996, + [SMALL_STATE(5314)] = 90100, + [SMALL_STATE(5315)] = 90212, + [SMALL_STATE(5316)] = 90312, + [SMALL_STATE(5317)] = 90420, + [SMALL_STATE(5318)] = 90482, + [SMALL_STATE(5319)] = 90548, + [SMALL_STATE(5320)] = 90664, + [SMALL_STATE(5321)] = 90780, + [SMALL_STATE(5322)] = 90886, + [SMALL_STATE(5323)] = 90992, + [SMALL_STATE(5324)] = 91108, + [SMALL_STATE(5325)] = 91224, + [SMALL_STATE(5326)] = 91286, + [SMALL_STATE(5327)] = 91348, + [SMALL_STATE(5328)] = 91444, + [SMALL_STATE(5329)] = 91512, + [SMALL_STATE(5330)] = 91618, + [SMALL_STATE(5331)] = 91680, + [SMALL_STATE(5332)] = 91748, + [SMALL_STATE(5333)] = 91854, + [SMALL_STATE(5334)] = 91970, + [SMALL_STATE(5335)] = 92032, + [SMALL_STATE(5336)] = 92104, + [SMALL_STATE(5337)] = 92210, + [SMALL_STATE(5338)] = 92278, + [SMALL_STATE(5339)] = 92394, + [SMALL_STATE(5340)] = 92456, + [SMALL_STATE(5341)] = 92518, + [SMALL_STATE(5342)] = 92580, + [SMALL_STATE(5343)] = 92642, + [SMALL_STATE(5344)] = 92714, + [SMALL_STATE(5345)] = 92784, + [SMALL_STATE(5346)] = 92900, + [SMALL_STATE(5347)] = 92972, + [SMALL_STATE(5348)] = 93088, + [SMALL_STATE(5349)] = 93158, + [SMALL_STATE(5350)] = 93274, + [SMALL_STATE(5351)] = 93390, + [SMALL_STATE(5352)] = 93452, + [SMALL_STATE(5353)] = 93524, + [SMALL_STATE(5354)] = 93594, + [SMALL_STATE(5355)] = 93710, + [SMALL_STATE(5356)] = 93772, + [SMALL_STATE(5357)] = 93888, + [SMALL_STATE(5358)] = 93996, + [SMALL_STATE(5359)] = 94058, + [SMALL_STATE(5360)] = 94174, + [SMALL_STATE(5361)] = 94246, + [SMALL_STATE(5362)] = 94340, + [SMALL_STATE(5363)] = 94406, + [SMALL_STATE(5364)] = 94472, + [SMALL_STATE(5365)] = 94534, + [SMALL_STATE(5366)] = 94606, + [SMALL_STATE(5367)] = 94722, + [SMALL_STATE(5368)] = 94790, + [SMALL_STATE(5369)] = 94852, + [SMALL_STATE(5370)] = 94920, + [SMALL_STATE(5371)] = 94988, + [SMALL_STATE(5372)] = 95104, + [SMALL_STATE(5373)] = 95194, + [SMALL_STATE(5374)] = 95264, + [SMALL_STATE(5375)] = 95380, + [SMALL_STATE(5376)] = 95452, + [SMALL_STATE(5377)] = 95520, + [SMALL_STATE(5378)] = 95592, + [SMALL_STATE(5379)] = 95660, + [SMALL_STATE(5380)] = 95722, + [SMALL_STATE(5381)] = 95784, + [SMALL_STATE(5382)] = 95846, + [SMALL_STATE(5383)] = 95908, + [SMALL_STATE(5384)] = 96024, + [SMALL_STATE(5385)] = 96090, + [SMALL_STATE(5386)] = 96158, + [SMALL_STATE(5387)] = 96264, + [SMALL_STATE(5388)] = 96370, + [SMALL_STATE(5389)] = 96486, + [SMALL_STATE(5390)] = 96592, + [SMALL_STATE(5391)] = 96698, + [SMALL_STATE(5392)] = 96804, + [SMALL_STATE(5393)] = 96910, + [SMALL_STATE(5394)] = 97016, + [SMALL_STATE(5395)] = 97132, + [SMALL_STATE(5396)] = 97204, + [SMALL_STATE(5397)] = 97266, + [SMALL_STATE(5398)] = 97382, + [SMALL_STATE(5399)] = 97444, + [SMALL_STATE(5400)] = 97508, + [SMALL_STATE(5401)] = 97624, + [SMALL_STATE(5402)] = 97686, + [SMALL_STATE(5403)] = 97802, + [SMALL_STATE(5404)] = 97918, + [SMALL_STATE(5405)] = 98024, + [SMALL_STATE(5406)] = 98140, + [SMALL_STATE(5407)] = 98206, + [SMALL_STATE(5408)] = 98268, + [SMALL_STATE(5409)] = 98374, + [SMALL_STATE(5410)] = 98436, + [SMALL_STATE(5411)] = 98552, + [SMALL_STATE(5412)] = 98614, + [SMALL_STATE(5413)] = 98676, + [SMALL_STATE(5414)] = 98792, + [SMALL_STATE(5415)] = 98908, + [SMALL_STATE(5416)] = 98978, + [SMALL_STATE(5417)] = 99046, + [SMALL_STATE(5418)] = 99162, + [SMALL_STATE(5419)] = 99230, + [SMALL_STATE(5420)] = 99346, + [SMALL_STATE(5421)] = 99414, + [SMALL_STATE(5422)] = 99502, + [SMALL_STATE(5423)] = 99610, + [SMALL_STATE(5424)] = 99726, + [SMALL_STATE(5425)] = 99842, + [SMALL_STATE(5426)] = 99912, + [SMALL_STATE(5427)] = 99974, + [SMALL_STATE(5428)] = 100090, + [SMALL_STATE(5429)] = 100162, + [SMALL_STATE(5430)] = 100230, + [SMALL_STATE(5431)] = 100300, + [SMALL_STATE(5432)] = 100372, + [SMALL_STATE(5433)] = 100438, + [SMALL_STATE(5434)] = 100546, + [SMALL_STATE(5435)] = 100662, + [SMALL_STATE(5436)] = 100724, + [SMALL_STATE(5437)] = 100840, + [SMALL_STATE(5438)] = 100948, + [SMALL_STATE(5439)] = 101010, + [SMALL_STATE(5440)] = 101072, + [SMALL_STATE(5441)] = 101188, + [SMALL_STATE(5442)] = 101250, + [SMALL_STATE(5443)] = 101366, + [SMALL_STATE(5444)] = 101482, + [SMALL_STATE(5445)] = 101566, + [SMALL_STATE(5446)] = 101682, + [SMALL_STATE(5447)] = 101752, + [SMALL_STATE(5448)] = 101868, + [SMALL_STATE(5449)] = 101984, + [SMALL_STATE(5450)] = 102062, + [SMALL_STATE(5451)] = 102124, + [SMALL_STATE(5452)] = 102240, + [SMALL_STATE(5453)] = 102320, + [SMALL_STATE(5454)] = 102392, + [SMALL_STATE(5455)] = 102454, + [SMALL_STATE(5456)] = 102570, + [SMALL_STATE(5457)] = 102686, + [SMALL_STATE(5458)] = 102802, + [SMALL_STATE(5459)] = 102868, + [SMALL_STATE(5460)] = 102930, + [SMALL_STATE(5461)] = 102992, + [SMALL_STATE(5462)] = 103108, + [SMALL_STATE(5463)] = 103224, + [SMALL_STATE(5464)] = 103292, + [SMALL_STATE(5465)] = 103360, + [SMALL_STATE(5466)] = 103468, + [SMALL_STATE(5467)] = 103574, + [SMALL_STATE(5468)] = 103642, + [SMALL_STATE(5469)] = 103710, + [SMALL_STATE(5470)] = 103782, + [SMALL_STATE(5471)] = 103844, + [SMALL_STATE(5472)] = 103926, + [SMALL_STATE(5473)] = 103988, + [SMALL_STATE(5474)] = 104060, + [SMALL_STATE(5475)] = 104128, + [SMALL_STATE(5476)] = 104196, + [SMALL_STATE(5477)] = 104302, + [SMALL_STATE(5478)] = 104418, + [SMALL_STATE(5479)] = 104534, + [SMALL_STATE(5480)] = 104602, + [SMALL_STATE(5481)] = 104670, + [SMALL_STATE(5482)] = 104738, + [SMALL_STATE(5483)] = 104850, + [SMALL_STATE(5484)] = 104918, + [SMALL_STATE(5485)] = 105034, + [SMALL_STATE(5486)] = 105150, + [SMALL_STATE(5487)] = 105212, + [SMALL_STATE(5488)] = 105328, + [SMALL_STATE(5489)] = 105444, + [SMALL_STATE(5490)] = 105560, + [SMALL_STATE(5491)] = 105676, + [SMALL_STATE(5492)] = 105744, + [SMALL_STATE(5493)] = 105860, + [SMALL_STATE(5494)] = 105976, + [SMALL_STATE(5495)] = 106092, + [SMALL_STATE(5496)] = 106208, + [SMALL_STATE(5497)] = 106324, + [SMALL_STATE(5498)] = 106392, + [SMALL_STATE(5499)] = 106508, + [SMALL_STATE(5500)] = 106624, + [SMALL_STATE(5501)] = 106740, + [SMALL_STATE(5502)] = 106856, + [SMALL_STATE(5503)] = 106972, + [SMALL_STATE(5504)] = 107088, + [SMALL_STATE(5505)] = 107204, + [SMALL_STATE(5506)] = 107272, + [SMALL_STATE(5507)] = 107344, + [SMALL_STATE(5508)] = 107460, + [SMALL_STATE(5509)] = 107530, + [SMALL_STATE(5510)] = 107602, + [SMALL_STATE(5511)] = 107668, + [SMALL_STATE(5512)] = 107730, + [SMALL_STATE(5513)] = 107846, + [SMALL_STATE(5514)] = 107912, + [SMALL_STATE(5515)] = 108028, + [SMALL_STATE(5516)] = 108090, + [SMALL_STATE(5517)] = 108152, + [SMALL_STATE(5518)] = 108268, + [SMALL_STATE(5519)] = 108384, + [SMALL_STATE(5520)] = 108500, + [SMALL_STATE(5521)] = 108616, + [SMALL_STATE(5522)] = 108732, + [SMALL_STATE(5523)] = 108848, + [SMALL_STATE(5524)] = 108964, + [SMALL_STATE(5525)] = 109080, + [SMALL_STATE(5526)] = 109196, + [SMALL_STATE(5527)] = 109312, + [SMALL_STATE(5528)] = 109428, + [SMALL_STATE(5529)] = 109490, + [SMALL_STATE(5530)] = 109562, + [SMALL_STATE(5531)] = 109624, + [SMALL_STATE(5532)] = 109687, + [SMALL_STATE(5533)] = 109750, + [SMALL_STATE(5534)] = 109861, + [SMALL_STATE(5535)] = 109928, + [SMALL_STATE(5536)] = 110003, + [SMALL_STATE(5537)] = 110070, + [SMALL_STATE(5538)] = 110149, + [SMALL_STATE(5539)] = 110210, + [SMALL_STATE(5540)] = 110271, + [SMALL_STATE(5541)] = 110332, + [SMALL_STATE(5542)] = 110413, + [SMALL_STATE(5543)] = 110482, + [SMALL_STATE(5544)] = 110543, + [SMALL_STATE(5545)] = 110608, + [SMALL_STATE(5546)] = 110673, + [SMALL_STATE(5547)] = 110734, + [SMALL_STATE(5548)] = 110795, + [SMALL_STATE(5549)] = 110856, + [SMALL_STATE(5550)] = 110917, + [SMALL_STATE(5551)] = 111038, + [SMALL_STATE(5552)] = 111137, + [SMALL_STATE(5553)] = 111248, + [SMALL_STATE(5554)] = 111343, + [SMALL_STATE(5555)] = 111404, + [SMALL_STATE(5556)] = 111465, + [SMALL_STATE(5557)] = 111526, + [SMALL_STATE(5558)] = 111587, + [SMALL_STATE(5559)] = 111648, + [SMALL_STATE(5560)] = 111717, + [SMALL_STATE(5561)] = 111778, + [SMALL_STATE(5562)] = 111847, + [SMALL_STATE(5563)] = 111916, + [SMALL_STATE(5564)] = 111977, + [SMALL_STATE(5565)] = 112046, + [SMALL_STATE(5566)] = 112107, + [SMALL_STATE(5567)] = 112168, + [SMALL_STATE(5568)] = 112237, + [SMALL_STATE(5569)] = 112306, + [SMALL_STATE(5570)] = 112419, + [SMALL_STATE(5571)] = 112488, + [SMALL_STATE(5572)] = 112557, + [SMALL_STATE(5573)] = 112618, + [SMALL_STATE(5574)] = 112679, + [SMALL_STATE(5575)] = 112740, + [SMALL_STATE(5576)] = 112801, + [SMALL_STATE(5577)] = 112862, + [SMALL_STATE(5578)] = 112923, + [SMALL_STATE(5579)] = 113016, + [SMALL_STATE(5580)] = 113085, + [SMALL_STATE(5581)] = 113174, + [SMALL_STATE(5582)] = 113235, + [SMALL_STATE(5583)] = 113304, + [SMALL_STATE(5584)] = 113369, + [SMALL_STATE(5585)] = 113430, + [SMALL_STATE(5586)] = 113491, + [SMALL_STATE(5587)] = 113556, + [SMALL_STATE(5588)] = 113617, + [SMALL_STATE(5589)] = 113678, + [SMALL_STATE(5590)] = 113739, + [SMALL_STATE(5591)] = 113804, + [SMALL_STATE(5592)] = 113871, + [SMALL_STATE(5593)] = 113932, + [SMALL_STATE(5594)] = 113993, + [SMALL_STATE(5595)] = 114054, + [SMALL_STATE(5596)] = 114167, + [SMALL_STATE(5597)] = 114228, + [SMALL_STATE(5598)] = 114289, + [SMALL_STATE(5599)] = 114396, + [SMALL_STATE(5600)] = 114457, + [SMALL_STATE(5601)] = 114518, + [SMALL_STATE(5602)] = 114585, + [SMALL_STATE(5603)] = 114650, + [SMALL_STATE(5604)] = 114731, + [SMALL_STATE(5605)] = 114798, + [SMALL_STATE(5606)] = 114867, + [SMALL_STATE(5607)] = 114928, + [SMALL_STATE(5608)] = 114989, + [SMALL_STATE(5609)] = 115050, + [SMALL_STATE(5610)] = 115111, + [SMALL_STATE(5611)] = 115180, + [SMALL_STATE(5612)] = 115241, + [SMALL_STATE(5613)] = 115346, + [SMALL_STATE(5614)] = 115407, + [SMALL_STATE(5615)] = 115520, + [SMALL_STATE(5616)] = 115581, + [SMALL_STATE(5617)] = 115642, + [SMALL_STATE(5618)] = 115747, + [SMALL_STATE(5619)] = 115852, + [SMALL_STATE(5620)] = 115917, + [SMALL_STATE(5621)] = 115978, + [SMALL_STATE(5622)] = 116091, + [SMALL_STATE(5623)] = 116152, + [SMALL_STATE(5624)] = 116213, + [SMALL_STATE(5625)] = 116318, + [SMALL_STATE(5626)] = 116379, + [SMALL_STATE(5627)] = 116466, + [SMALL_STATE(5628)] = 116571, + [SMALL_STATE(5629)] = 116676, + [SMALL_STATE(5630)] = 116749, + [SMALL_STATE(5631)] = 116856, + [SMALL_STATE(5632)] = 116917, + [SMALL_STATE(5633)] = 116992, + [SMALL_STATE(5634)] = 117053, + [SMALL_STATE(5635)] = 117160, + [SMALL_STATE(5636)] = 117229, + [SMALL_STATE(5637)] = 117296, + [SMALL_STATE(5638)] = 117365, + [SMALL_STATE(5639)] = 117478, + [SMALL_STATE(5640)] = 117539, + [SMALL_STATE(5641)] = 117600, + [SMALL_STATE(5642)] = 117683, + [SMALL_STATE(5643)] = 117746, + [SMALL_STATE(5644)] = 117811, + [SMALL_STATE(5645)] = 117876, + [SMALL_STATE(5646)] = 117981, + [SMALL_STATE(5647)] = 118086, + [SMALL_STATE(5648)] = 118191, + [SMALL_STATE(5649)] = 118296, + [SMALL_STATE(5650)] = 118401, + [SMALL_STATE(5651)] = 118506, + [SMALL_STATE(5652)] = 118573, + [SMALL_STATE(5653)] = 118686, + [SMALL_STATE(5654)] = 118761, + [SMALL_STATE(5655)] = 118836, + [SMALL_STATE(5656)] = 118897, + [SMALL_STATE(5657)] = 119004, + [SMALL_STATE(5658)] = 119065, + [SMALL_STATE(5659)] = 119178, + [SMALL_STATE(5660)] = 119247, + [SMALL_STATE(5661)] = 119320, + [SMALL_STATE(5662)] = 119389, + [SMALL_STATE(5663)] = 119458, + [SMALL_STATE(5664)] = 119565, + [SMALL_STATE(5665)] = 119626, + [SMALL_STATE(5666)] = 119739, + [SMALL_STATE(5667)] = 119804, + [SMALL_STATE(5668)] = 119915, + [SMALL_STATE(5669)] = 119976, + [SMALL_STATE(5670)] = 120089, + [SMALL_STATE(5671)] = 120154, + [SMALL_STATE(5672)] = 120229, + [SMALL_STATE(5673)] = 120290, + [SMALL_STATE(5674)] = 120393, + [SMALL_STATE(5675)] = 120454, + [SMALL_STATE(5676)] = 120517, + [SMALL_STATE(5677)] = 120630, + [SMALL_STATE(5678)] = 120691, + [SMALL_STATE(5679)] = 120804, + [SMALL_STATE(5680)] = 120865, + [SMALL_STATE(5681)] = 120926, + [SMALL_STATE(5682)] = 120995, + [SMALL_STATE(5683)] = 121064, + [SMALL_STATE(5684)] = 121177, + [SMALL_STATE(5685)] = 121242, + [SMALL_STATE(5686)] = 121355, + [SMALL_STATE(5687)] = 121468, + [SMALL_STATE(5688)] = 121529, + [SMALL_STATE(5689)] = 121642, + [SMALL_STATE(5690)] = 121755, + [SMALL_STATE(5691)] = 121868, + [SMALL_STATE(5692)] = 121981, + [SMALL_STATE(5693)] = 122094, + [SMALL_STATE(5694)] = 122207, + [SMALL_STATE(5695)] = 122320, + [SMALL_STATE(5696)] = 122433, + [SMALL_STATE(5697)] = 122546, + [SMALL_STATE(5698)] = 122659, + [SMALL_STATE(5699)] = 122772, + [SMALL_STATE(5700)] = 122843, + [SMALL_STATE(5701)] = 122956, + [SMALL_STATE(5702)] = 123069, + [SMALL_STATE(5703)] = 123182, + [SMALL_STATE(5704)] = 123243, + [SMALL_STATE(5705)] = 123304, + [SMALL_STATE(5706)] = 123365, + [SMALL_STATE(5707)] = 123426, + [SMALL_STATE(5708)] = 123539, + [SMALL_STATE(5709)] = 123606, + [SMALL_STATE(5710)] = 123667, + [SMALL_STATE(5711)] = 123728, + [SMALL_STATE(5712)] = 123789, + [SMALL_STATE(5713)] = 123858, + [SMALL_STATE(5714)] = 123919, + [SMALL_STATE(5715)] = 124032, + [SMALL_STATE(5716)] = 124093, + [SMALL_STATE(5717)] = 124162, + [SMALL_STATE(5718)] = 124277, + [SMALL_STATE(5719)] = 124338, + [SMALL_STATE(5720)] = 124399, + [SMALL_STATE(5721)] = 124468, + [SMALL_STATE(5722)] = 124529, + [SMALL_STATE(5723)] = 124590, + [SMALL_STATE(5724)] = 124651, + [SMALL_STATE(5725)] = 124766, + [SMALL_STATE(5726)] = 124827, + [SMALL_STATE(5727)] = 124888, + [SMALL_STATE(5728)] = 124949, + [SMALL_STATE(5729)] = 125010, + [SMALL_STATE(5730)] = 125071, + [SMALL_STATE(5731)] = 125184, + [SMALL_STATE(5732)] = 125245, + [SMALL_STATE(5733)] = 125312, + [SMALL_STATE(5734)] = 125373, + [SMALL_STATE(5735)] = 125440, + [SMALL_STATE(5736)] = 125553, + [SMALL_STATE(5737)] = 125666, + [SMALL_STATE(5738)] = 125779, + [SMALL_STATE(5739)] = 125892, + [SMALL_STATE(5740)] = 125953, + [SMALL_STATE(5741)] = 126014, + [SMALL_STATE(5742)] = 126083, + [SMALL_STATE(5743)] = 126196, + [SMALL_STATE(5744)] = 126303, + [SMALL_STATE(5745)] = 126416, + [SMALL_STATE(5746)] = 126485, + [SMALL_STATE(5747)] = 126546, + [SMALL_STATE(5748)] = 126617, + [SMALL_STATE(5749)] = 126678, + [SMALL_STATE(5750)] = 126739, + [SMALL_STATE(5751)] = 126800, + [SMALL_STATE(5752)] = 126861, + [SMALL_STATE(5753)] = 126922, + [SMALL_STATE(5754)] = 126983, + [SMALL_STATE(5755)] = 127044, + [SMALL_STATE(5756)] = 127105, + [SMALL_STATE(5757)] = 127166, + [SMALL_STATE(5758)] = 127227, + [SMALL_STATE(5759)] = 127288, + [SMALL_STATE(5760)] = 127349, + [SMALL_STATE(5761)] = 127410, + [SMALL_STATE(5762)] = 127479, + [SMALL_STATE(5763)] = 127540, + [SMALL_STATE(5764)] = 127601, + [SMALL_STATE(5765)] = 127664, + [SMALL_STATE(5766)] = 127777, + [SMALL_STATE(5767)] = 127838, + [SMALL_STATE(5768)] = 127917, + [SMALL_STATE(5769)] = 127978, + [SMALL_STATE(5770)] = 128099, + [SMALL_STATE(5771)] = 128164, + [SMALL_STATE(5772)] = 128225, + [SMALL_STATE(5773)] = 128290, + [SMALL_STATE(5774)] = 128351, + [SMALL_STATE(5775)] = 128412, + [SMALL_STATE(5776)] = 128473, + [SMALL_STATE(5777)] = 128534, + [SMALL_STATE(5778)] = 128595, + [SMALL_STATE(5779)] = 128656, + [SMALL_STATE(5780)] = 128717, + [SMALL_STATE(5781)] = 128778, + [SMALL_STATE(5782)] = 128839, + [SMALL_STATE(5783)] = 128906, + [SMALL_STATE(5784)] = 128967, + [SMALL_STATE(5785)] = 129028, + [SMALL_STATE(5786)] = 129105, + [SMALL_STATE(5787)] = 129165, + [SMALL_STATE(5788)] = 129227, + [SMALL_STATE(5789)] = 129289, + [SMALL_STATE(5790)] = 129379, + [SMALL_STATE(5791)] = 129443, + [SMALL_STATE(5792)] = 129503, + [SMALL_STATE(5793)] = 129563, + [SMALL_STATE(5794)] = 129623, + [SMALL_STATE(5795)] = 129683, + [SMALL_STATE(5796)] = 129743, + [SMALL_STATE(5797)] = 129857, + [SMALL_STATE(5798)] = 129917, + [SMALL_STATE(5799)] = 129977, + [SMALL_STATE(5800)] = 130041, + [SMALL_STATE(5801)] = 130109, + [SMALL_STATE(5802)] = 130213, + [SMALL_STATE(5803)] = 130275, + [SMALL_STATE(5804)] = 130379, + [SMALL_STATE(5805)] = 130493, + [SMALL_STATE(5806)] = 130553, + [SMALL_STATE(5807)] = 130659, + [SMALL_STATE(5808)] = 130729, + [SMALL_STATE(5809)] = 130789, + [SMALL_STATE(5810)] = 130849, + [SMALL_STATE(5811)] = 130909, + [SMALL_STATE(5812)] = 131013, + [SMALL_STATE(5813)] = 131117, + [SMALL_STATE(5814)] = 131221, + [SMALL_STATE(5815)] = 131297, + [SMALL_STATE(5816)] = 131453, + [SMALL_STATE(5817)] = 131513, + [SMALL_STATE(5818)] = 131617, + [SMALL_STATE(5819)] = 131677, + [SMALL_STATE(5820)] = 131781, + [SMALL_STATE(5821)] = 131849, + [SMALL_STATE(5822)] = 131953, + [SMALL_STATE(5823)] = 132057, + [SMALL_STATE(5824)] = 132129, + [SMALL_STATE(5825)] = 132203, + [SMALL_STATE(5826)] = 132277, + [SMALL_STATE(5827)] = 132351, + [SMALL_STATE(5828)] = 132457, + [SMALL_STATE(5829)] = 132517, + [SMALL_STATE(5830)] = 132581, + [SMALL_STATE(5831)] = 132641, + [SMALL_STATE(5832)] = 132701, + [SMALL_STATE(5833)] = 132767, + [SMALL_STATE(5834)] = 132837, + [SMALL_STATE(5835)] = 132941, + [SMALL_STATE(5836)] = 133045, + [SMALL_STATE(5837)] = 133105, + [SMALL_STATE(5838)] = 133165, + [SMALL_STATE(5839)] = 133225, + [SMALL_STATE(5840)] = 133285, + [SMALL_STATE(5841)] = 133345, + [SMALL_STATE(5842)] = 133405, + [SMALL_STATE(5843)] = 133465, + [SMALL_STATE(5844)] = 133531, + [SMALL_STATE(5845)] = 133635, + [SMALL_STATE(5846)] = 133705, + [SMALL_STATE(5847)] = 133765, + [SMALL_STATE(5848)] = 133825, + [SMALL_STATE(5849)] = 133981, + [SMALL_STATE(5850)] = 134085, + [SMALL_STATE(5851)] = 134163, + [SMALL_STATE(5852)] = 134277, + [SMALL_STATE(5853)] = 134381, + [SMALL_STATE(5854)] = 134485, + [SMALL_STATE(5855)] = 134545, + [SMALL_STATE(5856)] = 134605, + [SMALL_STATE(5857)] = 134665, + [SMALL_STATE(5858)] = 134735, + [SMALL_STATE(5859)] = 134801, + [SMALL_STATE(5860)] = 134861, + [SMALL_STATE(5861)] = 134923, + [SMALL_STATE(5862)] = 134983, + [SMALL_STATE(5863)] = 135043, + [SMALL_STATE(5864)] = 135103, + [SMALL_STATE(5865)] = 135163, + [SMALL_STATE(5866)] = 135237, + [SMALL_STATE(5867)] = 135311, + [SMALL_STATE(5868)] = 135415, + [SMALL_STATE(5869)] = 135519, + [SMALL_STATE(5870)] = 135623, + [SMALL_STATE(5871)] = 135779, + [SMALL_STATE(5872)] = 135841, + [SMALL_STATE(5873)] = 135947, + [SMALL_STATE(5874)] = 136051, + [SMALL_STATE(5875)] = 136155, + [SMALL_STATE(5876)] = 136227, + [SMALL_STATE(5877)] = 136293, + [SMALL_STATE(5878)] = 136359, + [SMALL_STATE(5879)] = 136421, + [SMALL_STATE(5880)] = 136485, + [SMALL_STATE(5881)] = 136591, + [SMALL_STATE(5882)] = 136651, + [SMALL_STATE(5883)] = 136711, + [SMALL_STATE(5884)] = 136825, + [SMALL_STATE(5885)] = 136885, + [SMALL_STATE(5886)] = 136945, + [SMALL_STATE(5887)] = 137005, + [SMALL_STATE(5888)] = 137119, + [SMALL_STATE(5889)] = 137179, + [SMALL_STATE(5890)] = 137283, + [SMALL_STATE(5891)] = 137387, + [SMALL_STATE(5892)] = 137491, + [SMALL_STATE(5893)] = 137603, + [SMALL_STATE(5894)] = 137663, + [SMALL_STATE(5895)] = 137819, + [SMALL_STATE(5896)] = 137923, + [SMALL_STATE(5897)] = 138027, + [SMALL_STATE(5898)] = 138131, + [SMALL_STATE(5899)] = 138235, + [SMALL_STATE(5900)] = 138295, + [SMALL_STATE(5901)] = 138361, + [SMALL_STATE(5902)] = 138469, + [SMALL_STATE(5903)] = 138535, + [SMALL_STATE(5904)] = 138691, + [SMALL_STATE(5905)] = 138751, + [SMALL_STATE(5906)] = 138811, + [SMALL_STATE(5907)] = 138881, + [SMALL_STATE(5908)] = 138949, + [SMALL_STATE(5909)] = 139009, + [SMALL_STATE(5910)] = 139069, + [SMALL_STATE(5911)] = 139129, + [SMALL_STATE(5912)] = 139237, + [SMALL_STATE(5913)] = 139297, + [SMALL_STATE(5914)] = 139363, + [SMALL_STATE(5915)] = 139519, + [SMALL_STATE(5916)] = 139587, + [SMALL_STATE(5917)] = 139693, + [SMALL_STATE(5918)] = 139849, + [SMALL_STATE(5919)] = 139909, + [SMALL_STATE(5920)] = 139993, + [SMALL_STATE(5921)] = 140059, + [SMALL_STATE(5922)] = 140121, + [SMALL_STATE(5923)] = 140185, + [SMALL_STATE(5924)] = 140245, + [SMALL_STATE(5925)] = 140311, + [SMALL_STATE(5926)] = 140373, + [SMALL_STATE(5927)] = 140439, + [SMALL_STATE(5928)] = 140499, + [SMALL_STATE(5929)] = 140559, + [SMALL_STATE(5930)] = 140619, + [SMALL_STATE(5931)] = 140679, + [SMALL_STATE(5932)] = 140749, + [SMALL_STATE(5933)] = 140853, + [SMALL_STATE(5934)] = 140921, + [SMALL_STATE(5935)] = 140981, + [SMALL_STATE(5936)] = 141043, + [SMALL_STATE(5937)] = 141103, + [SMALL_STATE(5938)] = 141175, + [SMALL_STATE(5939)] = 141235, + [SMALL_STATE(5940)] = 141295, + [SMALL_STATE(5941)] = 141399, + [SMALL_STATE(5942)] = 141459, + [SMALL_STATE(5943)] = 141519, + [SMALL_STATE(5944)] = 141623, + [SMALL_STATE(5945)] = 141689, + [SMALL_STATE(5946)] = 141845, + [SMALL_STATE(5947)] = 141905, + [SMALL_STATE(5948)] = 141965, + [SMALL_STATE(5949)] = 142025, + [SMALL_STATE(5950)] = 142091, + [SMALL_STATE(5951)] = 142157, + [SMALL_STATE(5952)] = 142237, + [SMALL_STATE(5953)] = 142347, + [SMALL_STATE(5954)] = 142451, + [SMALL_STATE(5955)] = 142565, + [SMALL_STATE(5956)] = 142631, + [SMALL_STATE(5957)] = 142735, + [SMALL_STATE(5958)] = 142811, + [SMALL_STATE(5959)] = 142885, + [SMALL_STATE(5960)] = 142987, + [SMALL_STATE(5961)] = 143085, + [SMALL_STATE(5962)] = 143145, + [SMALL_STATE(5963)] = 143205, + [SMALL_STATE(5964)] = 143299, + [SMALL_STATE(5965)] = 143391, + [SMALL_STATE(5966)] = 143457, + [SMALL_STATE(5967)] = 143545, + [SMALL_STATE(5968)] = 143631, + [SMALL_STATE(5969)] = 143713, + [SMALL_STATE(5970)] = 143819, + [SMALL_STATE(5971)] = 143925, + [SMALL_STATE(5972)] = 144031, + [SMALL_STATE(5973)] = 144091, + [SMALL_STATE(5974)] = 144155, + [SMALL_STATE(5975)] = 144233, + [SMALL_STATE(5976)] = 144339, + [SMALL_STATE(5977)] = 144449, + [SMALL_STATE(5978)] = 144525, + [SMALL_STATE(5979)] = 144627, + [SMALL_STATE(5980)] = 144725, + [SMALL_STATE(5981)] = 144819, + [SMALL_STATE(5982)] = 144911, + [SMALL_STATE(5983)] = 144999, + [SMALL_STATE(5984)] = 145085, + [SMALL_STATE(5985)] = 145167, + [SMALL_STATE(5986)] = 145245, + [SMALL_STATE(5987)] = 145325, + [SMALL_STATE(5988)] = 145405, + [SMALL_STATE(5989)] = 145511, + [SMALL_STATE(5990)] = 145621, + [SMALL_STATE(5991)] = 145681, + [SMALL_STATE(5992)] = 145787, + [SMALL_STATE(5993)] = 145897, + [SMALL_STATE(5994)] = 145957, + [SMALL_STATE(5995)] = 146025, + [SMALL_STATE(5996)] = 146085, + [SMALL_STATE(5997)] = 146153, + [SMALL_STATE(5998)] = 146215, + [SMALL_STATE(5999)] = 146283, + [SMALL_STATE(6000)] = 146351, + [SMALL_STATE(6001)] = 146419, + [SMALL_STATE(6002)] = 146483, + [SMALL_STATE(6003)] = 146549, + [SMALL_STATE(6004)] = 146609, + [SMALL_STATE(6005)] = 146669, + [SMALL_STATE(6006)] = 146729, + [SMALL_STATE(6007)] = 146833, + [SMALL_STATE(6008)] = 146907, + [SMALL_STATE(6009)] = 147021, + [SMALL_STATE(6010)] = 147081, + [SMALL_STATE(6011)] = 147143, + [SMALL_STATE(6012)] = 147203, + [SMALL_STATE(6013)] = 147263, + [SMALL_STATE(6014)] = 147331, + [SMALL_STATE(6015)] = 147435, + [SMALL_STATE(6016)] = 147495, + [SMALL_STATE(6017)] = 147577, + [SMALL_STATE(6018)] = 147651, + [SMALL_STATE(6019)] = 147755, + [SMALL_STATE(6020)] = 147815, + [SMALL_STATE(6021)] = 147883, + [SMALL_STATE(6022)] = 147943, + [SMALL_STATE(6023)] = 148003, + [SMALL_STATE(6024)] = 148063, + [SMALL_STATE(6025)] = 148123, + [SMALL_STATE(6026)] = 148227, + [SMALL_STATE(6027)] = 148287, + [SMALL_STATE(6028)] = 148357, + [SMALL_STATE(6029)] = 148513, + [SMALL_STATE(6030)] = 148573, + [SMALL_STATE(6031)] = 148633, + [SMALL_STATE(6032)] = 148737, + [SMALL_STATE(6033)] = 148841, + [SMALL_STATE(6034)] = 148911, + [SMALL_STATE(6035)] = 149015, + [SMALL_STATE(6036)] = 149083, + [SMALL_STATE(6037)] = 149143, + [SMALL_STATE(6038)] = 149207, + [SMALL_STATE(6039)] = 149311, + [SMALL_STATE(6040)] = 149371, + [SMALL_STATE(6041)] = 149431, + [SMALL_STATE(6042)] = 149535, + [SMALL_STATE(6043)] = 149595, + [SMALL_STATE(6044)] = 149703, + [SMALL_STATE(6045)] = 149769, + [SMALL_STATE(6046)] = 149873, + [SMALL_STATE(6047)] = 149941, + [SMALL_STATE(6048)] = 150009, + [SMALL_STATE(6049)] = 150069, + [SMALL_STATE(6050)] = 150129, + [SMALL_STATE(6051)] = 150233, + [SMALL_STATE(6052)] = 150299, + [SMALL_STATE(6053)] = 150365, + [SMALL_STATE(6054)] = 150431, + [SMALL_STATE(6055)] = 150523, + [SMALL_STATE(6056)] = 150583, + [SMALL_STATE(6057)] = 150739, + [SMALL_STATE(6058)] = 150805, + [SMALL_STATE(6059)] = 150871, + [SMALL_STATE(6060)] = 150953, + [SMALL_STATE(6061)] = 151013, + [SMALL_STATE(6062)] = 151073, + [SMALL_STATE(6063)] = 151159, + [SMALL_STATE(6064)] = 151219, + [SMALL_STATE(6065)] = 151279, + [SMALL_STATE(6066)] = 151351, + [SMALL_STATE(6067)] = 151457, + [SMALL_STATE(6068)] = 151531, + [SMALL_STATE(6069)] = 151605, + [SMALL_STATE(6070)] = 151711, + [SMALL_STATE(6071)] = 151783, + [SMALL_STATE(6072)] = 151889, + [SMALL_STATE(6073)] = 151995, + [SMALL_STATE(6074)] = 152105, + [SMALL_STATE(6075)] = 152181, + [SMALL_STATE(6076)] = 152255, + [SMALL_STATE(6077)] = 152357, + [SMALL_STATE(6078)] = 152455, + [SMALL_STATE(6079)] = 152549, + [SMALL_STATE(6080)] = 152641, + [SMALL_STATE(6081)] = 152729, + [SMALL_STATE(6082)] = 152815, + [SMALL_STATE(6083)] = 152897, + [SMALL_STATE(6084)] = 152975, + [SMALL_STATE(6085)] = 153055, + [SMALL_STATE(6086)] = 153129, + [SMALL_STATE(6087)] = 153235, + [SMALL_STATE(6088)] = 153345, + [SMALL_STATE(6089)] = 153451, + [SMALL_STATE(6090)] = 153561, + [SMALL_STATE(6091)] = 153635, + [SMALL_STATE(6092)] = 153705, + [SMALL_STATE(6093)] = 153771, + [SMALL_STATE(6094)] = 153875, + [SMALL_STATE(6095)] = 153935, + [SMALL_STATE(6096)] = 153995, + [SMALL_STATE(6097)] = 154055, + [SMALL_STATE(6098)] = 154211, + [SMALL_STATE(6099)] = 154285, + [SMALL_STATE(6100)] = 154361, + [SMALL_STATE(6101)] = 154435, + [SMALL_STATE(6102)] = 154539, + [SMALL_STATE(6103)] = 154649, + [SMALL_STATE(6104)] = 154709, + [SMALL_STATE(6105)] = 154813, + [SMALL_STATE(6106)] = 154873, + [SMALL_STATE(6107)] = 154945, + [SMALL_STATE(6108)] = 155015, + [SMALL_STATE(6109)] = 155083, + [SMALL_STATE(6110)] = 155143, + [SMALL_STATE(6111)] = 155247, + [SMALL_STATE(6112)] = 155347, + [SMALL_STATE(6113)] = 155453, + [SMALL_STATE(6114)] = 155521, + [SMALL_STATE(6115)] = 155591, + [SMALL_STATE(6116)] = 155655, + [SMALL_STATE(6117)] = 155759, + [SMALL_STATE(6118)] = 155855, + [SMALL_STATE(6119)] = 155965, + [SMALL_STATE(6120)] = 156024, + [SMALL_STATE(6121)] = 156087, + [SMALL_STATE(6122)] = 156148, + [SMALL_STATE(6123)] = 156207, + [SMALL_STATE(6124)] = 156266, + [SMALL_STATE(6125)] = 156379, + [SMALL_STATE(6126)] = 156438, + [SMALL_STATE(6127)] = 156497, + [SMALL_STATE(6128)] = 156556, + [SMALL_STATE(6129)] = 156615, + [SMALL_STATE(6130)] = 156674, + [SMALL_STATE(6131)] = 156733, + [SMALL_STATE(6132)] = 156792, + [SMALL_STATE(6133)] = 156853, + [SMALL_STATE(6134)] = 156912, + [SMALL_STATE(6135)] = 156979, + [SMALL_STATE(6136)] = 157044, + [SMALL_STATE(6137)] = 157103, + [SMALL_STATE(6138)] = 157162, + [SMALL_STATE(6139)] = 157225, + [SMALL_STATE(6140)] = 157286, + [SMALL_STATE(6141)] = 157345, + [SMALL_STATE(6142)] = 157404, + [SMALL_STATE(6143)] = 157463, + [SMALL_STATE(6144)] = 157522, + [SMALL_STATE(6145)] = 157585, + [SMALL_STATE(6146)] = 157644, + [SMALL_STATE(6147)] = 157707, + [SMALL_STATE(6148)] = 157766, + [SMALL_STATE(6149)] = 157825, + [SMALL_STATE(6150)] = 157884, + [SMALL_STATE(6151)] = 157943, + [SMALL_STATE(6152)] = 158010, + [SMALL_STATE(6153)] = 158069, + [SMALL_STATE(6154)] = 158128, + [SMALL_STATE(6155)] = 158231, + [SMALL_STATE(6156)] = 158334, + [SMALL_STATE(6157)] = 158393, + [SMALL_STATE(6158)] = 158452, + [SMALL_STATE(6159)] = 158511, + [SMALL_STATE(6160)] = 158614, + [SMALL_STATE(6161)] = 158673, + [SMALL_STATE(6162)] = 158776, + [SMALL_STATE(6163)] = 158835, + [SMALL_STATE(6164)] = 158894, + [SMALL_STATE(6165)] = 158955, + [SMALL_STATE(6166)] = 159014, + [SMALL_STATE(6167)] = 159077, + [SMALL_STATE(6168)] = 159136, + [SMALL_STATE(6169)] = 159195, + [SMALL_STATE(6170)] = 159254, + [SMALL_STATE(6171)] = 159313, + [SMALL_STATE(6172)] = 159372, + [SMALL_STATE(6173)] = 159475, + [SMALL_STATE(6174)] = 159534, + [SMALL_STATE(6175)] = 159593, + [SMALL_STATE(6176)] = 159652, + [SMALL_STATE(6177)] = 159755, + [SMALL_STATE(6178)] = 159814, + [SMALL_STATE(6179)] = 159877, + [SMALL_STATE(6180)] = 159936, + [SMALL_STATE(6181)] = 159995, + [SMALL_STATE(6182)] = 160098, + [SMALL_STATE(6183)] = 160157, + [SMALL_STATE(6184)] = 160216, + [SMALL_STATE(6185)] = 160275, + [SMALL_STATE(6186)] = 160334, + [SMALL_STATE(6187)] = 160393, + [SMALL_STATE(6188)] = 160452, + [SMALL_STATE(6189)] = 160515, + [SMALL_STATE(6190)] = 160574, + [SMALL_STATE(6191)] = 160633, + [SMALL_STATE(6192)] = 160692, + [SMALL_STATE(6193)] = 160751, + [SMALL_STATE(6194)] = 160810, + [SMALL_STATE(6195)] = 160875, + [SMALL_STATE(6196)] = 160934, + [SMALL_STATE(6197)] = 160993, + [SMALL_STATE(6198)] = 161052, + [SMALL_STATE(6199)] = 161111, + [SMALL_STATE(6200)] = 161172, + [SMALL_STATE(6201)] = 161231, + [SMALL_STATE(6202)] = 161298, + [SMALL_STATE(6203)] = 161357, + [SMALL_STATE(6204)] = 161420, + [SMALL_STATE(6205)] = 161479, + [SMALL_STATE(6206)] = 161538, + [SMALL_STATE(6207)] = 161597, + [SMALL_STATE(6208)] = 161656, + [SMALL_STATE(6209)] = 161715, + [SMALL_STATE(6210)] = 161774, + [SMALL_STATE(6211)] = 161833, + [SMALL_STATE(6212)] = 161892, + [SMALL_STATE(6213)] = 161955, + [SMALL_STATE(6214)] = 162014, + [SMALL_STATE(6215)] = 162081, + [SMALL_STATE(6216)] = 162140, + [SMALL_STATE(6217)] = 162199, + [SMALL_STATE(6218)] = 162258, + [SMALL_STATE(6219)] = 162317, + [SMALL_STATE(6220)] = 162376, + [SMALL_STATE(6221)] = 162435, + [SMALL_STATE(6222)] = 162494, + [SMALL_STATE(6223)] = 162553, + [SMALL_STATE(6224)] = 162612, + [SMALL_STATE(6225)] = 162671, + [SMALL_STATE(6226)] = 162730, + [SMALL_STATE(6227)] = 162789, + [SMALL_STATE(6228)] = 162848, + [SMALL_STATE(6229)] = 162915, + [SMALL_STATE(6230)] = 162974, + [SMALL_STATE(6231)] = 163033, + [SMALL_STATE(6232)] = 163092, + [SMALL_STATE(6233)] = 163151, + [SMALL_STATE(6234)] = 163210, + [SMALL_STATE(6235)] = 163269, + [SMALL_STATE(6236)] = 163328, + [SMALL_STATE(6237)] = 163387, + [SMALL_STATE(6238)] = 163446, + [SMALL_STATE(6239)] = 163509, + [SMALL_STATE(6240)] = 163572, + [SMALL_STATE(6241)] = 163631, + [SMALL_STATE(6242)] = 163690, + [SMALL_STATE(6243)] = 163749, + [SMALL_STATE(6244)] = 163808, + [SMALL_STATE(6245)] = 163867, + [SMALL_STATE(6246)] = 163926, + [SMALL_STATE(6247)] = 163995, + [SMALL_STATE(6248)] = 164062, + [SMALL_STATE(6249)] = 164121, + [SMALL_STATE(6250)] = 164180, + [SMALL_STATE(6251)] = 164239, + [SMALL_STATE(6252)] = 164298, + [SMALL_STATE(6253)] = 164357, + [SMALL_STATE(6254)] = 164418, + [SMALL_STATE(6255)] = 164479, + [SMALL_STATE(6256)] = 164544, + [SMALL_STATE(6257)] = 164647, + [SMALL_STATE(6258)] = 164706, + [SMALL_STATE(6259)] = 164765, + [SMALL_STATE(6260)] = 164824, + [SMALL_STATE(6261)] = 164883, + [SMALL_STATE(6262)] = 164942, + [SMALL_STATE(6263)] = 165009, + [SMALL_STATE(6264)] = 165068, + [SMALL_STATE(6265)] = 165179, + [SMALL_STATE(6266)] = 165238, + [SMALL_STATE(6267)] = 165297, + [SMALL_STATE(6268)] = 165356, + [SMALL_STATE(6269)] = 165415, + [SMALL_STATE(6270)] = 165474, + [SMALL_STATE(6271)] = 165533, + [SMALL_STATE(6272)] = 165592, + [SMALL_STATE(6273)] = 165651, + [SMALL_STATE(6274)] = 165718, + [SMALL_STATE(6275)] = 165777, + [SMALL_STATE(6276)] = 165836, + [SMALL_STATE(6277)] = 165895, + [SMALL_STATE(6278)] = 165954, + [SMALL_STATE(6279)] = 166013, + [SMALL_STATE(6280)] = 166078, + [SMALL_STATE(6281)] = 166137, + [SMALL_STATE(6282)] = 166196, + [SMALL_STATE(6283)] = 166263, + [SMALL_STATE(6284)] = 166322, + [SMALL_STATE(6285)] = 166381, + [SMALL_STATE(6286)] = 166440, + [SMALL_STATE(6287)] = 166499, + [SMALL_STATE(6288)] = 166558, + [SMALL_STATE(6289)] = 166623, + [SMALL_STATE(6290)] = 166682, + [SMALL_STATE(6291)] = 166741, + [SMALL_STATE(6292)] = 166806, + [SMALL_STATE(6293)] = 166865, + [SMALL_STATE(6294)] = 166924, + [SMALL_STATE(6295)] = 166983, + [SMALL_STATE(6296)] = 167042, + [SMALL_STATE(6297)] = 167101, + [SMALL_STATE(6298)] = 167162, + [SMALL_STATE(6299)] = 167227, + [SMALL_STATE(6300)] = 167286, + [SMALL_STATE(6301)] = 167345, + [SMALL_STATE(6302)] = 167404, + [SMALL_STATE(6303)] = 167465, + [SMALL_STATE(6304)] = 167524, + [SMALL_STATE(6305)] = 167583, + [SMALL_STATE(6306)] = 167642, + [SMALL_STATE(6307)] = 167707, + [SMALL_STATE(6308)] = 167766, + [SMALL_STATE(6309)] = 167825, + [SMALL_STATE(6310)] = 167884, + [SMALL_STATE(6311)] = 167945, + [SMALL_STATE(6312)] = 168004, + [SMALL_STATE(6313)] = 168063, + [SMALL_STATE(6314)] = 168124, + [SMALL_STATE(6315)] = 168183, + [SMALL_STATE(6316)] = 168246, + [SMALL_STATE(6317)] = 168305, + [SMALL_STATE(6318)] = 168364, + [SMALL_STATE(6319)] = 168423, + [SMALL_STATE(6320)] = 168482, + [SMALL_STATE(6321)] = 168541, + [SMALL_STATE(6322)] = 168600, + [SMALL_STATE(6323)] = 168659, + [SMALL_STATE(6324)] = 168718, + [SMALL_STATE(6325)] = 168777, + [SMALL_STATE(6326)] = 168836, + [SMALL_STATE(6327)] = 168895, + [SMALL_STATE(6328)] = 168954, + [SMALL_STATE(6329)] = 169013, + [SMALL_STATE(6330)] = 169072, + [SMALL_STATE(6331)] = 169131, + [SMALL_STATE(6332)] = 169194, + [SMALL_STATE(6333)] = 169253, + [SMALL_STATE(6334)] = 169312, + [SMALL_STATE(6335)] = 169373, + [SMALL_STATE(6336)] = 169432, + [SMALL_STATE(6337)] = 169497, + [SMALL_STATE(6338)] = 169556, + [SMALL_STATE(6339)] = 169615, + [SMALL_STATE(6340)] = 169674, + [SMALL_STATE(6341)] = 169733, + [SMALL_STATE(6342)] = 169792, + [SMALL_STATE(6343)] = 169851, + [SMALL_STATE(6344)] = 169910, + [SMALL_STATE(6345)] = 169969, + [SMALL_STATE(6346)] = 170028, + [SMALL_STATE(6347)] = 170087, + [SMALL_STATE(6348)] = 170146, + [SMALL_STATE(6349)] = 170205, + [SMALL_STATE(6350)] = 170264, + [SMALL_STATE(6351)] = 170323, + [SMALL_STATE(6352)] = 170382, + [SMALL_STATE(6353)] = 170441, + [SMALL_STATE(6354)] = 170500, + [SMALL_STATE(6355)] = 170559, + [SMALL_STATE(6356)] = 170618, + [SMALL_STATE(6357)] = 170677, + [SMALL_STATE(6358)] = 170736, + [SMALL_STATE(6359)] = 170795, + [SMALL_STATE(6360)] = 170854, + [SMALL_STATE(6361)] = 170913, + [SMALL_STATE(6362)] = 170972, + [SMALL_STATE(6363)] = 171031, + [SMALL_STATE(6364)] = 171090, + [SMALL_STATE(6365)] = 171149, + [SMALL_STATE(6366)] = 171208, + [SMALL_STATE(6367)] = 171269, + [SMALL_STATE(6368)] = 171328, + [SMALL_STATE(6369)] = 171387, + [SMALL_STATE(6370)] = 171446, + [SMALL_STATE(6371)] = 171505, + [SMALL_STATE(6372)] = 171572, + [SMALL_STATE(6373)] = 171631, + [SMALL_STATE(6374)] = 171690, + [SMALL_STATE(6375)] = 171749, + [SMALL_STATE(6376)] = 171808, + [SMALL_STATE(6377)] = 171867, + [SMALL_STATE(6378)] = 171926, + [SMALL_STATE(6379)] = 171985, + [SMALL_STATE(6380)] = 172044, + [SMALL_STATE(6381)] = 172103, + [SMALL_STATE(6382)] = 172162, + [SMALL_STATE(6383)] = 172221, + [SMALL_STATE(6384)] = 172280, + [SMALL_STATE(6385)] = 172355, + [SMALL_STATE(6386)] = 172420, + [SMALL_STATE(6387)] = 172487, + [SMALL_STATE(6388)] = 172546, + [SMALL_STATE(6389)] = 172609, + [SMALL_STATE(6390)] = 172668, + [SMALL_STATE(6391)] = 172727, + [SMALL_STATE(6392)] = 172786, + [SMALL_STATE(6393)] = 172845, + [SMALL_STATE(6394)] = 172904, + [SMALL_STATE(6395)] = 172963, + [SMALL_STATE(6396)] = 173021, + [SMALL_STATE(6397)] = 173079, + [SMALL_STATE(6398)] = 173151, + [SMALL_STATE(6399)] = 173209, + [SMALL_STATE(6400)] = 173267, + [SMALL_STATE(6401)] = 173325, + [SMALL_STATE(6402)] = 173397, + [SMALL_STATE(6403)] = 173497, + [SMALL_STATE(6404)] = 173595, + [SMALL_STATE(6405)] = 173689, + [SMALL_STATE(6406)] = 173747, + [SMALL_STATE(6407)] = 173837, + [SMALL_STATE(6408)] = 173907, + [SMALL_STATE(6409)] = 173965, + [SMALL_STATE(6410)] = 174023, + [SMALL_STATE(6411)] = 174081, + [SMALL_STATE(6412)] = 174187, + [SMALL_STATE(6413)] = 174245, + [SMALL_STATE(6414)] = 174303, + [SMALL_STATE(6415)] = 174361, + [SMALL_STATE(6416)] = 174419, + [SMALL_STATE(6417)] = 174477, + [SMALL_STATE(6418)] = 174535, + [SMALL_STATE(6419)] = 174593, + [SMALL_STATE(6420)] = 174665, + [SMALL_STATE(6421)] = 174723, + [SMALL_STATE(6422)] = 174781, + [SMALL_STATE(6423)] = 174839, + [SMALL_STATE(6424)] = 174897, + [SMALL_STATE(6425)] = 174975, + [SMALL_STATE(6426)] = 175033, + [SMALL_STATE(6427)] = 175135, + [SMALL_STATE(6428)] = 175193, + [SMALL_STATE(6429)] = 175251, + [SMALL_STATE(6430)] = 175309, + [SMALL_STATE(6431)] = 175375, + [SMALL_STATE(6432)] = 175477, + [SMALL_STATE(6433)] = 175535, + [SMALL_STATE(6434)] = 175593, + [SMALL_STATE(6435)] = 175651, + [SMALL_STATE(6436)] = 175709, + [SMALL_STATE(6437)] = 175771, + [SMALL_STATE(6438)] = 175837, + [SMALL_STATE(6439)] = 175895, + [SMALL_STATE(6440)] = 175965, + [SMALL_STATE(6441)] = 176023, + [SMALL_STATE(6442)] = 176081, + [SMALL_STATE(6443)] = 176147, + [SMALL_STATE(6444)] = 176205, + [SMALL_STATE(6445)] = 176263, + [SMALL_STATE(6446)] = 176321, + [SMALL_STATE(6447)] = 176387, + [SMALL_STATE(6448)] = 176493, + [SMALL_STATE(6449)] = 176551, + [SMALL_STATE(6450)] = 176613, + [SMALL_STATE(6451)] = 176671, + [SMALL_STATE(6452)] = 176729, + [SMALL_STATE(6453)] = 176787, + [SMALL_STATE(6454)] = 176845, + [SMALL_STATE(6455)] = 176903, + [SMALL_STATE(6456)] = 176961, + [SMALL_STATE(6457)] = 177019, + [SMALL_STATE(6458)] = 177077, + [SMALL_STATE(6459)] = 177135, + [SMALL_STATE(6460)] = 177201, + [SMALL_STATE(6461)] = 177259, + [SMALL_STATE(6462)] = 177317, + [SMALL_STATE(6463)] = 177379, + [SMALL_STATE(6464)] = 177485, + [SMALL_STATE(6465)] = 177551, + [SMALL_STATE(6466)] = 177653, + [SMALL_STATE(6467)] = 177711, + [SMALL_STATE(6468)] = 177769, + [SMALL_STATE(6469)] = 177827, + [SMALL_STATE(6470)] = 177885, + [SMALL_STATE(6471)] = 177943, + [SMALL_STATE(6472)] = 178009, + [SMALL_STATE(6473)] = 178067, + [SMALL_STATE(6474)] = 178125, + [SMALL_STATE(6475)] = 178183, + [SMALL_STATE(6476)] = 178241, + [SMALL_STATE(6477)] = 178299, + [SMALL_STATE(6478)] = 178401, + [SMALL_STATE(6479)] = 178461, + [SMALL_STATE(6480)] = 178519, + [SMALL_STATE(6481)] = 178577, + [SMALL_STATE(6482)] = 178635, + [SMALL_STATE(6483)] = 178693, + [SMALL_STATE(6484)] = 178795, + [SMALL_STATE(6485)] = 178853, + [SMALL_STATE(6486)] = 178911, + [SMALL_STATE(6487)] = 178969, + [SMALL_STATE(6488)] = 179035, + [SMALL_STATE(6489)] = 179093, + [SMALL_STATE(6490)] = 179155, + [SMALL_STATE(6491)] = 179213, + [SMALL_STATE(6492)] = 179279, + [SMALL_STATE(6493)] = 179345, + [SMALL_STATE(6494)] = 179403, + [SMALL_STATE(6495)] = 179489, + [SMALL_STATE(6496)] = 179547, + [SMALL_STATE(6497)] = 179613, + [SMALL_STATE(6498)] = 179679, + [SMALL_STATE(6499)] = 179737, + [SMALL_STATE(6500)] = 179795, + [SMALL_STATE(6501)] = 179879, + [SMALL_STATE(6502)] = 179937, + [SMALL_STATE(6503)] = 180003, + [SMALL_STATE(6504)] = 180061, + [SMALL_STATE(6505)] = 180127, + [SMALL_STATE(6506)] = 180185, + [SMALL_STATE(6507)] = 180243, + [SMALL_STATE(6508)] = 180301, + [SMALL_STATE(6509)] = 180363, + [SMALL_STATE(6510)] = 180421, + [SMALL_STATE(6511)] = 180479, + [SMALL_STATE(6512)] = 180537, + [SMALL_STATE(6513)] = 180595, + [SMALL_STATE(6514)] = 180653, + [SMALL_STATE(6515)] = 180723, + [SMALL_STATE(6516)] = 180781, + [SMALL_STATE(6517)] = 180839, + [SMALL_STATE(6518)] = 180897, + [SMALL_STATE(6519)] = 180955, + [SMALL_STATE(6520)] = 181013, + [SMALL_STATE(6521)] = 181071, + [SMALL_STATE(6522)] = 181129, + [SMALL_STATE(6523)] = 181187, + [SMALL_STATE(6524)] = 181245, + [SMALL_STATE(6525)] = 181303, + [SMALL_STATE(6526)] = 181361, + [SMALL_STATE(6527)] = 181419, + [SMALL_STATE(6528)] = 181485, + [SMALL_STATE(6529)] = 181543, + [SMALL_STATE(6530)] = 181601, + [SMALL_STATE(6531)] = 181659, + [SMALL_STATE(6532)] = 181717, + [SMALL_STATE(6533)] = 181775, + [SMALL_STATE(6534)] = 181833, + [SMALL_STATE(6535)] = 181891, + [SMALL_STATE(6536)] = 181949, + [SMALL_STATE(6537)] = 182019, + [SMALL_STATE(6538)] = 182077, + [SMALL_STATE(6539)] = 182143, + [SMALL_STATE(6540)] = 182201, + [SMALL_STATE(6541)] = 182259, + [SMALL_STATE(6542)] = 182317, + [SMALL_STATE(6543)] = 182375, + [SMALL_STATE(6544)] = 182455, + [SMALL_STATE(6545)] = 182521, + [SMALL_STATE(6546)] = 182581, + [SMALL_STATE(6547)] = 182639, + [SMALL_STATE(6548)] = 182705, + [SMALL_STATE(6549)] = 182771, + [SMALL_STATE(6550)] = 182829, + [SMALL_STATE(6551)] = 182901, + [SMALL_STATE(6552)] = 182959, + [SMALL_STATE(6553)] = 183061, + [SMALL_STATE(6554)] = 183131, + [SMALL_STATE(6555)] = 183201, + [SMALL_STATE(6556)] = 183303, + [SMALL_STATE(6557)] = 183361, + [SMALL_STATE(6558)] = 183419, + [SMALL_STATE(6559)] = 183477, + [SMALL_STATE(6560)] = 183535, + [SMALL_STATE(6561)] = 183593, + [SMALL_STATE(6562)] = 183651, + [SMALL_STATE(6563)] = 183713, + [SMALL_STATE(6564)] = 183785, + [SMALL_STATE(6565)] = 183857, + [SMALL_STATE(6566)] = 183915, + [SMALL_STATE(6567)] = 183973, + [SMALL_STATE(6568)] = 184031, + [SMALL_STATE(6569)] = 184089, + [SMALL_STATE(6570)] = 184147, + [SMALL_STATE(6571)] = 184205, + [SMALL_STATE(6572)] = 184281, + [SMALL_STATE(6573)] = 184339, + [SMALL_STATE(6574)] = 184403, + [SMALL_STATE(6575)] = 184469, + [SMALL_STATE(6576)] = 184527, + [SMALL_STATE(6577)] = 184585, + [SMALL_STATE(6578)] = 184643, + [SMALL_STATE(6579)] = 184745, + [SMALL_STATE(6580)] = 184803, + [SMALL_STATE(6581)] = 184873, + [SMALL_STATE(6582)] = 184939, + [SMALL_STATE(6583)] = 184997, + [SMALL_STATE(6584)] = 185055, + [SMALL_STATE(6585)] = 185157, + [SMALL_STATE(6586)] = 185217, + [SMALL_STATE(6587)] = 185275, + [SMALL_STATE(6588)] = 185333, + [SMALL_STATE(6589)] = 185391, + [SMALL_STATE(6590)] = 185449, + [SMALL_STATE(6591)] = 185507, + [SMALL_STATE(6592)] = 185565, + [SMALL_STATE(6593)] = 185627, + [SMALL_STATE(6594)] = 185701, + [SMALL_STATE(6595)] = 185759, + [SMALL_STATE(6596)] = 185817, + [SMALL_STATE(6597)] = 185919, + [SMALL_STATE(6598)] = 185981, + [SMALL_STATE(6599)] = 186039, + [SMALL_STATE(6600)] = 186101, + [SMALL_STATE(6601)] = 186165, + [SMALL_STATE(6602)] = 186223, + [SMALL_STATE(6603)] = 186281, + [SMALL_STATE(6604)] = 186353, + [SMALL_STATE(6605)] = 186455, + [SMALL_STATE(6606)] = 186557, + [SMALL_STATE(6607)] = 186617, + [SMALL_STATE(6608)] = 186689, + [SMALL_STATE(6609)] = 186747, + [SMALL_STATE(6610)] = 186805, + [SMALL_STATE(6611)] = 186863, + [SMALL_STATE(6612)] = 186921, + [SMALL_STATE(6613)] = 186979, + [SMALL_STATE(6614)] = 187037, + [SMALL_STATE(6615)] = 187095, + [SMALL_STATE(6616)] = 187153, + [SMALL_STATE(6617)] = 187211, + [SMALL_STATE(6618)] = 187269, + [SMALL_STATE(6619)] = 187345, + [SMALL_STATE(6620)] = 187411, + [SMALL_STATE(6621)] = 187478, + [SMALL_STATE(6622)] = 187535, + [SMALL_STATE(6623)] = 187592, + [SMALL_STATE(6624)] = 187653, + [SMALL_STATE(6625)] = 187714, + [SMALL_STATE(6626)] = 187775, + [SMALL_STATE(6627)] = 187836, + [SMALL_STATE(6628)] = 187897, + [SMALL_STATE(6629)] = 187958, + [SMALL_STATE(6630)] = 188019, + [SMALL_STATE(6631)] = 188088, + [SMALL_STATE(6632)] = 188149, + [SMALL_STATE(6633)] = 188218, + [SMALL_STATE(6634)] = 188279, + [SMALL_STATE(6635)] = 188384, + [SMALL_STATE(6636)] = 188441, + [SMALL_STATE(6637)] = 188510, + [SMALL_STATE(6638)] = 188567, + [SMALL_STATE(6639)] = 188628, + [SMALL_STATE(6640)] = 188685, + [SMALL_STATE(6641)] = 188742, + [SMALL_STATE(6642)] = 188803, + [SMALL_STATE(6643)] = 188864, + [SMALL_STATE(6644)] = 188921, + [SMALL_STATE(6645)] = 188982, + [SMALL_STATE(6646)] = 189039, + [SMALL_STATE(6647)] = 189100, + [SMALL_STATE(6648)] = 189157, + [SMALL_STATE(6649)] = 189218, + [SMALL_STATE(6650)] = 189279, + [SMALL_STATE(6651)] = 189340, + [SMALL_STATE(6652)] = 189397, + [SMALL_STATE(6653)] = 189454, + [SMALL_STATE(6654)] = 189523, + [SMALL_STATE(6655)] = 189592, + [SMALL_STATE(6656)] = 189661, + [SMALL_STATE(6657)] = 189730, + [SMALL_STATE(6658)] = 189793, + [SMALL_STATE(6659)] = 189850, + [SMALL_STATE(6660)] = 189907, + [SMALL_STATE(6661)] = 189968, + [SMALL_STATE(6662)] = 190037, + [SMALL_STATE(6663)] = 190106, + [SMALL_STATE(6664)] = 190175, + [SMALL_STATE(6665)] = 190232, + [SMALL_STATE(6666)] = 190293, + [SMALL_STATE(6667)] = 190350, + [SMALL_STATE(6668)] = 190411, + [SMALL_STATE(6669)] = 190480, + [SMALL_STATE(6670)] = 190581, + [SMALL_STATE(6671)] = 190638, + [SMALL_STATE(6672)] = 190707, + [SMALL_STATE(6673)] = 190764, + [SMALL_STATE(6674)] = 190821, + [SMALL_STATE(6675)] = 190886, + [SMALL_STATE(6676)] = 190943, + [SMALL_STATE(6677)] = 191000, + [SMALL_STATE(6678)] = 191057, + [SMALL_STATE(6679)] = 191124, + [SMALL_STATE(6680)] = 191181, + [SMALL_STATE(6681)] = 191238, + [SMALL_STATE(6682)] = 191295, + [SMALL_STATE(6683)] = 191352, + [SMALL_STATE(6684)] = 191409, + [SMALL_STATE(6685)] = 191466, + [SMALL_STATE(6686)] = 191523, + [SMALL_STATE(6687)] = 191580, + [SMALL_STATE(6688)] = 191647, + [SMALL_STATE(6689)] = 191704, + [SMALL_STATE(6690)] = 191773, + [SMALL_STATE(6691)] = 191830, + [SMALL_STATE(6692)] = 191887, + [SMALL_STATE(6693)] = 191948, + [SMALL_STATE(6694)] = 192005, + [SMALL_STATE(6695)] = 192062, + [SMALL_STATE(6696)] = 192119, + [SMALL_STATE(6697)] = 192182, + [SMALL_STATE(6698)] = 192239, + [SMALL_STATE(6699)] = 192296, + [SMALL_STATE(6700)] = 192355, + [SMALL_STATE(6701)] = 192414, + [SMALL_STATE(6702)] = 192475, + [SMALL_STATE(6703)] = 192538, + [SMALL_STATE(6704)] = 192601, + [SMALL_STATE(6705)] = 192658, + [SMALL_STATE(6706)] = 192715, + [SMALL_STATE(6707)] = 192772, + [SMALL_STATE(6708)] = 192841, + [SMALL_STATE(6709)] = 192898, + [SMALL_STATE(6710)] = 192955, + [SMALL_STATE(6711)] = 193012, + [SMALL_STATE(6712)] = 193069, + [SMALL_STATE(6713)] = 193126, + [SMALL_STATE(6714)] = 193189, + [SMALL_STATE(6715)] = 193246, + [SMALL_STATE(6716)] = 193309, + [SMALL_STATE(6717)] = 193410, + [SMALL_STATE(6718)] = 193467, + [SMALL_STATE(6719)] = 193524, + [SMALL_STATE(6720)] = 193625, + [SMALL_STATE(6721)] = 193682, + [SMALL_STATE(6722)] = 193743, + [SMALL_STATE(6723)] = 193800, + [SMALL_STATE(6724)] = 193857, + [SMALL_STATE(6725)] = 193918, + [SMALL_STATE(6726)] = 193975, + [SMALL_STATE(6727)] = 194036, + [SMALL_STATE(6728)] = 194093, + [SMALL_STATE(6729)] = 194200, + [SMALL_STATE(6730)] = 194257, + [SMALL_STATE(6731)] = 194326, + [SMALL_STATE(6732)] = 194383, + [SMALL_STATE(6733)] = 194440, + [SMALL_STATE(6734)] = 194497, + [SMALL_STATE(6735)] = 194554, + [SMALL_STATE(6736)] = 194615, + [SMALL_STATE(6737)] = 194672, + [SMALL_STATE(6738)] = 194729, + [SMALL_STATE(6739)] = 194786, + [SMALL_STATE(6740)] = 194843, + [SMALL_STATE(6741)] = 194944, + [SMALL_STATE(6742)] = 195001, + [SMALL_STATE(6743)] = 195058, + [SMALL_STATE(6744)] = 195115, + [SMALL_STATE(6745)] = 195216, + [SMALL_STATE(6746)] = 195273, + [SMALL_STATE(6747)] = 195334, + [SMALL_STATE(6748)] = 195391, + [SMALL_STATE(6749)] = 195492, + [SMALL_STATE(6750)] = 195569, + [SMALL_STATE(6751)] = 195626, + [SMALL_STATE(6752)] = 195683, + [SMALL_STATE(6753)] = 195740, + [SMALL_STATE(6754)] = 195797, + [SMALL_STATE(6755)] = 195854, + [SMALL_STATE(6756)] = 195911, + [SMALL_STATE(6757)] = 195974, + [SMALL_STATE(6758)] = 196031, + [SMALL_STATE(6759)] = 196100, + [SMALL_STATE(6760)] = 196157, + [SMALL_STATE(6761)] = 196214, + [SMALL_STATE(6762)] = 196270, + [SMALL_STATE(6763)] = 196326, + [SMALL_STATE(6764)] = 196424, + [SMALL_STATE(6765)] = 196480, + [SMALL_STATE(6766)] = 196536, + [SMALL_STATE(6767)] = 196634, + [SMALL_STATE(6768)] = 196698, + [SMALL_STATE(6769)] = 196754, + [SMALL_STATE(6770)] = 196818, + [SMALL_STATE(6771)] = 196874, + [SMALL_STATE(6772)] = 196930, + [SMALL_STATE(6773)] = 196986, + [SMALL_STATE(6774)] = 197042, + [SMALL_STATE(6775)] = 197140, + [SMALL_STATE(6776)] = 197196, + [SMALL_STATE(6777)] = 197252, + [SMALL_STATE(6778)] = 197308, + [SMALL_STATE(6779)] = 197364, + [SMALL_STATE(6780)] = 197428, + [SMALL_STATE(6781)] = 197484, + [SMALL_STATE(6782)] = 197540, + [SMALL_STATE(6783)] = 197602, + [SMALL_STATE(6784)] = 197658, + [SMALL_STATE(6785)] = 197714, + [SMALL_STATE(6786)] = 197770, + [SMALL_STATE(6787)] = 197826, + [SMALL_STATE(6788)] = 197882, + [SMALL_STATE(6789)] = 197938, + [SMALL_STATE(6790)] = 197994, + [SMALL_STATE(6791)] = 198050, + [SMALL_STATE(6792)] = 198106, + [SMALL_STATE(6793)] = 198162, + [SMALL_STATE(6794)] = 198218, + [SMALL_STATE(6795)] = 198316, + [SMALL_STATE(6796)] = 198414, + [SMALL_STATE(6797)] = 198470, + [SMALL_STATE(6798)] = 198538, + [SMALL_STATE(6799)] = 198594, + [SMALL_STATE(6800)] = 198650, + [SMALL_STATE(6801)] = 198706, + [SMALL_STATE(6802)] = 198762, + [SMALL_STATE(6803)] = 198818, + [SMALL_STATE(6804)] = 198874, + [SMALL_STATE(6805)] = 198930, + [SMALL_STATE(6806)] = 198986, + [SMALL_STATE(6807)] = 199054, + [SMALL_STATE(6808)] = 199110, + [SMALL_STATE(6809)] = 199166, + [SMALL_STATE(6810)] = 199222, + [SMALL_STATE(6811)] = 199278, + [SMALL_STATE(6812)] = 199334, + [SMALL_STATE(6813)] = 199390, + [SMALL_STATE(6814)] = 199446, + [SMALL_STATE(6815)] = 199544, + [SMALL_STATE(6816)] = 199600, + [SMALL_STATE(6817)] = 199664, + [SMALL_STATE(6818)] = 199720, + [SMALL_STATE(6819)] = 199784, + [SMALL_STATE(6820)] = 199848, + [SMALL_STATE(6821)] = 199912, + [SMALL_STATE(6822)] = 199976, + [SMALL_STATE(6823)] = 200040, + [SMALL_STATE(6824)] = 200104, + [SMALL_STATE(6825)] = 200160, + [SMALL_STATE(6826)] = 200224, + [SMALL_STATE(6827)] = 200280, + [SMALL_STATE(6828)] = 200336, + [SMALL_STATE(6829)] = 200391, + [SMALL_STATE(6830)] = 200462, + [SMALL_STATE(6831)] = 200523, + [SMALL_STATE(6832)] = 200592, + [SMALL_STATE(6833)] = 200647, + [SMALL_STATE(6834)] = 200702, + [SMALL_STATE(6835)] = 200757, + [SMALL_STATE(6836)] = 200816, + [SMALL_STATE(6837)] = 200871, + [SMALL_STATE(6838)] = 200940, + [SMALL_STATE(6839)] = 201039, + [SMALL_STATE(6840)] = 201144, + [SMALL_STATE(6841)] = 201243, + [SMALL_STATE(6842)] = 201342, + [SMALL_STATE(6843)] = 201397, + [SMALL_STATE(6844)] = 201496, + [SMALL_STATE(6845)] = 201551, + [SMALL_STATE(6846)] = 201614, + [SMALL_STATE(6847)] = 201717, + [SMALL_STATE(6848)] = 201788, + [SMALL_STATE(6849)] = 201887, + [SMALL_STATE(6850)] = 201942, + [SMALL_STATE(6851)] = 202045, + [SMALL_STATE(6852)] = 202144, + [SMALL_STATE(6853)] = 202199, + [SMALL_STATE(6854)] = 202254, + [SMALL_STATE(6855)] = 202309, + [SMALL_STATE(6856)] = 202364, + [SMALL_STATE(6857)] = 202467, + [SMALL_STATE(6858)] = 202522, + [SMALL_STATE(6859)] = 202591, + [SMALL_STATE(6860)] = 202652, + [SMALL_STATE(6861)] = 202707, + [SMALL_STATE(6862)] = 202761, + [SMALL_STATE(6863)] = 202815, + [SMALL_STATE(6864)] = 202877, + [SMALL_STATE(6865)] = 202933, + [SMALL_STATE(6866)] = 202997, + [SMALL_STATE(6867)] = 203061, + [SMALL_STATE(6868)] = 203123, + [SMALL_STATE(6869)] = 203179, + [SMALL_STATE(6870)] = 203241, + [SMALL_STATE(6871)] = 203303, + [SMALL_STATE(6872)] = 203365, + [SMALL_STATE(6873)] = 203427, + [SMALL_STATE(6874)] = 203489, + [SMALL_STATE(6875)] = 203555, + [SMALL_STATE(6876)] = 203617, + [SMALL_STATE(6877)] = 203679, + [SMALL_STATE(6878)] = 203741, + [SMALL_STATE(6879)] = 203797, + [SMALL_STATE(6880)] = 203851, + [SMALL_STATE(6881)] = 203913, + [SMALL_STATE(6882)] = 203975, + [SMALL_STATE(6883)] = 204037, + [SMALL_STATE(6884)] = 204101, + [SMALL_STATE(6885)] = 204163, + [SMALL_STATE(6886)] = 204223, + [SMALL_STATE(6887)] = 204281, + [SMALL_STATE(6888)] = 204335, + [SMALL_STATE(6889)] = 204407, + [SMALL_STATE(6890)] = 204461, + [SMALL_STATE(6891)] = 204523, + [SMALL_STATE(6892)] = 204577, + [SMALL_STATE(6893)] = 204639, + [SMALL_STATE(6894)] = 204701, + [SMALL_STATE(6895)] = 204771, + [SMALL_STATE(6896)] = 204837, + [SMALL_STATE(6897)] = 204899, + [SMALL_STATE(6898)] = 204953, + [SMALL_STATE(6899)] = 205015, + [SMALL_STATE(6900)] = 205081, + [SMALL_STATE(6901)] = 205143, + [SMALL_STATE(6902)] = 205207, + [SMALL_STATE(6903)] = 205269, + [SMALL_STATE(6904)] = 205335, + [SMALL_STATE(6905)] = 205389, + [SMALL_STATE(6906)] = 205455, + [SMALL_STATE(6907)] = 205517, + [SMALL_STATE(6908)] = 205587, + [SMALL_STATE(6909)] = 205653, + [SMALL_STATE(6910)] = 205707, + [SMALL_STATE(6911)] = 205769, + [SMALL_STATE(6912)] = 205835, + [SMALL_STATE(6913)] = 205897, + [SMALL_STATE(6914)] = 205967, + [SMALL_STATE(6915)] = 206031, + [SMALL_STATE(6916)] = 206097, + [SMALL_STATE(6917)] = 206159, + [SMALL_STATE(6918)] = 206223, + [SMALL_STATE(6919)] = 206289, + [SMALL_STATE(6920)] = 206361, + [SMALL_STATE(6921)] = 206420, + [SMALL_STATE(6922)] = 206473, + [SMALL_STATE(6923)] = 206532, + [SMALL_STATE(6924)] = 206621, + [SMALL_STATE(6925)] = 206674, + [SMALL_STATE(6926)] = 206727, + [SMALL_STATE(6927)] = 206780, + [SMALL_STATE(6928)] = 206833, + [SMALL_STATE(6929)] = 206886, + [SMALL_STATE(6930)] = 206975, + [SMALL_STATE(6931)] = 207064, + [SMALL_STATE(6932)] = 207121, + [SMALL_STATE(6933)] = 207178, + [SMALL_STATE(6934)] = 207267, + [SMALL_STATE(6935)] = 207320, + [SMALL_STATE(6936)] = 207409, + [SMALL_STATE(6937)] = 207498, + [SMALL_STATE(6938)] = 207587, + [SMALL_STATE(6939)] = 207690, + [SMALL_STATE(6940)] = 207747, + [SMALL_STATE(6941)] = 207802, + [SMALL_STATE(6942)] = 207855, + [SMALL_STATE(6943)] = 207958, + [SMALL_STATE(6944)] = 208011, + [SMALL_STATE(6945)] = 208068, + [SMALL_STATE(6946)] = 208157, + [SMALL_STATE(6947)] = 208246, + [SMALL_STATE(6948)] = 208335, + [SMALL_STATE(6949)] = 208388, + [SMALL_STATE(6950)] = 208441, + [SMALL_STATE(6951)] = 208494, + [SMALL_STATE(6952)] = 208555, + [SMALL_STATE(6953)] = 208608, + [SMALL_STATE(6954)] = 208661, + [SMALL_STATE(6955)] = 208750, + [SMALL_STATE(6956)] = 208803, + [SMALL_STATE(6957)] = 208856, + [SMALL_STATE(6958)] = 208913, + [SMALL_STATE(6959)] = 208966, + [SMALL_STATE(6960)] = 209055, + [SMALL_STATE(6961)] = 209108, + [SMALL_STATE(6962)] = 209165, + [SMALL_STATE(6963)] = 209218, + [SMALL_STATE(6964)] = 209271, + [SMALL_STATE(6965)] = 209328, + [SMALL_STATE(6966)] = 209417, + [SMALL_STATE(6967)] = 209470, + [SMALL_STATE(6968)] = 209523, + [SMALL_STATE(6969)] = 209576, + [SMALL_STATE(6970)] = 209665, + [SMALL_STATE(6971)] = 209718, + [SMALL_STATE(6972)] = 209777, + [SMALL_STATE(6973)] = 209836, + [SMALL_STATE(6974)] = 209895, + [SMALL_STATE(6975)] = 209954, + [SMALL_STATE(6976)] = 210007, + [SMALL_STATE(6977)] = 210066, + [SMALL_STATE(6978)] = 210125, + [SMALL_STATE(6979)] = 210178, + [SMALL_STATE(6980)] = 210237, + [SMALL_STATE(6981)] = 210340, + [SMALL_STATE(6982)] = 210399, + [SMALL_STATE(6983)] = 210452, + [SMALL_STATE(6984)] = 210511, + [SMALL_STATE(6985)] = 210570, + [SMALL_STATE(6986)] = 210629, + [SMALL_STATE(6987)] = 210682, + [SMALL_STATE(6988)] = 210739, + [SMALL_STATE(6989)] = 210798, + [SMALL_STATE(6990)] = 210857, + [SMALL_STATE(6991)] = 210946, + [SMALL_STATE(6992)] = 211003, + [SMALL_STATE(6993)] = 211092, + [SMALL_STATE(6994)] = 211145, + [SMALL_STATE(6995)] = 211198, + [SMALL_STATE(6996)] = 211251, + [SMALL_STATE(6997)] = 211306, + [SMALL_STATE(6998)] = 211395, + [SMALL_STATE(6999)] = 211448, + [SMALL_STATE(7000)] = 211505, + [SMALL_STATE(7001)] = 211562, + [SMALL_STATE(7002)] = 211615, + [SMALL_STATE(7003)] = 211704, + [SMALL_STATE(7004)] = 211757, + [SMALL_STATE(7005)] = 211814, + [SMALL_STATE(7006)] = 211873, + [SMALL_STATE(7007)] = 211962, + [SMALL_STATE(7008)] = 212051, + [SMALL_STATE(7009)] = 212140, + [SMALL_STATE(7010)] = 212229, + [SMALL_STATE(7011)] = 212318, + [SMALL_STATE(7012)] = 212379, + [SMALL_STATE(7013)] = 212468, + [SMALL_STATE(7014)] = 212521, + [SMALL_STATE(7015)] = 212610, + [SMALL_STATE(7016)] = 212699, + [SMALL_STATE(7017)] = 212768, + [SMALL_STATE(7018)] = 212821, + [SMALL_STATE(7019)] = 212910, + [SMALL_STATE(7020)] = 212999, + [SMALL_STATE(7021)] = 213063, + [SMALL_STATE(7022)] = 213127, + [SMALL_STATE(7023)] = 213191, + [SMALL_STATE(7024)] = 213255, + [SMALL_STATE(7025)] = 213311, + [SMALL_STATE(7026)] = 213367, + [SMALL_STATE(7027)] = 213465, + [SMALL_STATE(7028)] = 213529, + [SMALL_STATE(7029)] = 213585, + [SMALL_STATE(7030)] = 213641, + [SMALL_STATE(7031)] = 213697, + [SMALL_STATE(7032)] = 213753, + [SMALL_STATE(7033)] = 213809, + [SMALL_STATE(7034)] = 213873, + [SMALL_STATE(7035)] = 213929, + [SMALL_STATE(7036)] = 213991, + [SMALL_STATE(7037)] = 214045, + [SMALL_STATE(7038)] = 214109, + [SMALL_STATE(7039)] = 214161, + [SMALL_STATE(7040)] = 214217, + [SMALL_STATE(7041)] = 214273, + [SMALL_STATE(7042)] = 214325, + [SMALL_STATE(7043)] = 214389, + [SMALL_STATE(7044)] = 214445, + [SMALL_STATE(7045)] = 214509, + [SMALL_STATE(7046)] = 214573, + [SMALL_STATE(7047)] = 214629, + [SMALL_STATE(7048)] = 214681, + [SMALL_STATE(7049)] = 214741, + [SMALL_STATE(7050)] = 214805, + [SMALL_STATE(7051)] = 214869, + [SMALL_STATE(7052)] = 214929, + [SMALL_STATE(7053)] = 214985, + [SMALL_STATE(7054)] = 215041, + [SMALL_STATE(7055)] = 215101, + [SMALL_STATE(7056)] = 215157, + [SMALL_STATE(7057)] = 215225, + [SMALL_STATE(7058)] = 215281, + [SMALL_STATE(7059)] = 215337, + [SMALL_STATE(7060)] = 215393, + [SMALL_STATE(7061)] = 215449, + [SMALL_STATE(7062)] = 215505, + [SMALL_STATE(7063)] = 215557, + [SMALL_STATE(7064)] = 215613, + [SMALL_STATE(7065)] = 215665, + [SMALL_STATE(7066)] = 215729, + [SMALL_STATE(7067)] = 215785, + [SMALL_STATE(7068)] = 215839, + [SMALL_STATE(7069)] = 215895, + [SMALL_STATE(7070)] = 215959, + [SMALL_STATE(7071)] = 216023, + [SMALL_STATE(7072)] = 216079, + [SMALL_STATE(7073)] = 216135, + [SMALL_STATE(7074)] = 216191, + [SMALL_STATE(7075)] = 216255, + [SMALL_STATE(7076)] = 216354, + [SMALL_STATE(7077)] = 216413, + [SMALL_STATE(7078)] = 216464, + [SMALL_STATE(7079)] = 216559, + [SMALL_STATE(7080)] = 216618, + [SMALL_STATE(7081)] = 216669, + [SMALL_STATE(7082)] = 216768, + [SMALL_STATE(7083)] = 216853, + [SMALL_STATE(7084)] = 216922, + [SMALL_STATE(7085)] = 216973, + [SMALL_STATE(7086)] = 217056, + [SMALL_STATE(7087)] = 217115, + [SMALL_STATE(7088)] = 217166, + [SMALL_STATE(7089)] = 217225, + [SMALL_STATE(7090)] = 217284, + [SMALL_STATE(7091)] = 217343, + [SMALL_STATE(7092)] = 217402, + [SMALL_STATE(7093)] = 217461, + [SMALL_STATE(7094)] = 217526, + [SMALL_STATE(7095)] = 217577, + [SMALL_STATE(7096)] = 217628, + [SMALL_STATE(7097)] = 217687, + [SMALL_STATE(7098)] = 217746, + [SMALL_STATE(7099)] = 217811, + [SMALL_STATE(7100)] = 217914, + [SMALL_STATE(7101)] = 217973, + [SMALL_STATE(7102)] = 218032, + [SMALL_STATE(7103)] = 218091, + [SMALL_STATE(7104)] = 218150, + [SMALL_STATE(7105)] = 218209, + [SMALL_STATE(7106)] = 218260, + [SMALL_STATE(7107)] = 218319, + [SMALL_STATE(7108)] = 218370, + [SMALL_STATE(7109)] = 218429, + [SMALL_STATE(7110)] = 218480, + [SMALL_STATE(7111)] = 218531, + [SMALL_STATE(7112)] = 218626, + [SMALL_STATE(7113)] = 218701, + [SMALL_STATE(7114)] = 218786, + [SMALL_STATE(7115)] = 218845, + [SMALL_STATE(7116)] = 218948, + [SMALL_STATE(7117)] = 219007, + [SMALL_STATE(7118)] = 219066, + [SMALL_STATE(7119)] = 219117, + [SMALL_STATE(7120)] = 219176, + [SMALL_STATE(7121)] = 219235, + [SMALL_STATE(7122)] = 219294, + [SMALL_STATE(7123)] = 219351, + [SMALL_STATE(7124)] = 219402, + [SMALL_STATE(7125)] = 219453, + [SMALL_STATE(7126)] = 219504, + [SMALL_STATE(7127)] = 219555, + [SMALL_STATE(7128)] = 219616, + [SMALL_STATE(7129)] = 219675, + [SMALL_STATE(7130)] = 219726, + [SMALL_STATE(7131)] = 219811, + [SMALL_STATE(7132)] = 219864, + [SMALL_STATE(7133)] = 219915, + [SMALL_STATE(7134)] = 219974, + [SMALL_STATE(7135)] = 220025, + [SMALL_STATE(7136)] = 220084, + [SMALL_STATE(7137)] = 220187, + [SMALL_STATE(7138)] = 220272, + [SMALL_STATE(7139)] = 220323, + [SMALL_STATE(7140)] = 220408, + [SMALL_STATE(7141)] = 220459, + [SMALL_STATE(7142)] = 220524, + [SMALL_STATE(7143)] = 220583, + [SMALL_STATE(7144)] = 220642, + [SMALL_STATE(7145)] = 220701, + [SMALL_STATE(7146)] = 220752, + [SMALL_STATE(7147)] = 220811, + [SMALL_STATE(7148)] = 220870, + [SMALL_STATE(7149)] = 220921, + [SMALL_STATE(7150)] = 220972, + [SMALL_STATE(7151)] = 221071, + [SMALL_STATE(7152)] = 221130, + [SMALL_STATE(7153)] = 221189, + [SMALL_STATE(7154)] = 221248, + [SMALL_STATE(7155)] = 221299, + [SMALL_STATE(7156)] = 221350, + [SMALL_STATE(7157)] = 221409, + [SMALL_STATE(7158)] = 221508, + [SMALL_STATE(7159)] = 221593, + [SMALL_STATE(7160)] = 221652, + [SMALL_STATE(7161)] = 221751, + [SMALL_STATE(7162)] = 221812, + [SMALL_STATE(7163)] = 221873, + [SMALL_STATE(7164)] = 221924, + [SMALL_STATE(7165)] = 221975, + [SMALL_STATE(7166)] = 222046, + [SMALL_STATE(7167)] = 222137, + [SMALL_STATE(7168)] = 222222, + [SMALL_STATE(7169)] = 222321, + [SMALL_STATE(7170)] = 222400, + [SMALL_STATE(7171)] = 222465, + [SMALL_STATE(7172)] = 222550, + [SMALL_STATE(7173)] = 222609, + [SMALL_STATE(7174)] = 222668, + [SMALL_STATE(7175)] = 222771, + [SMALL_STATE(7176)] = 222830, + [SMALL_STATE(7177)] = 222889, + [SMALL_STATE(7178)] = 222948, + [SMALL_STATE(7179)] = 223033, + [SMALL_STATE(7180)] = 223088, + [SMALL_STATE(7181)] = 223139, + [SMALL_STATE(7182)] = 223200, + [SMALL_STATE(7183)] = 223259, + [SMALL_STATE(7184)] = 223310, + [SMALL_STATE(7185)] = 223361, + [SMALL_STATE(7186)] = 223412, + [SMALL_STATE(7187)] = 223463, + [SMALL_STATE(7188)] = 223514, + [SMALL_STATE(7189)] = 223565, + [SMALL_STATE(7190)] = 223616, + [SMALL_STATE(7191)] = 223705, + [SMALL_STATE(7192)] = 223778, + [SMALL_STATE(7193)] = 223829, + [SMALL_STATE(7194)] = 223888, + [SMALL_STATE(7195)] = 223947, + [SMALL_STATE(7196)] = 224039, + [SMALL_STATE(7197)] = 224145, + [SMALL_STATE(7198)] = 224199, + [SMALL_STATE(7199)] = 224249, + [SMALL_STATE(7200)] = 224303, + [SMALL_STATE(7201)] = 224395, + [SMALL_STATE(7202)] = 224449, + [SMALL_STATE(7203)] = 224503, + [SMALL_STATE(7204)] = 224553, + [SMALL_STATE(7205)] = 224607, + [SMALL_STATE(7206)] = 224661, + [SMALL_STATE(7207)] = 224715, + [SMALL_STATE(7208)] = 224765, + [SMALL_STATE(7209)] = 224831, + [SMALL_STATE(7210)] = 224923, + [SMALL_STATE(7211)] = 224977, + [SMALL_STATE(7212)] = 225069, + [SMALL_STATE(7213)] = 225123, + [SMALL_STATE(7214)] = 225215, + [SMALL_STATE(7215)] = 225265, + [SMALL_STATE(7216)] = 225315, + [SMALL_STATE(7217)] = 225369, + [SMALL_STATE(7218)] = 225421, + [SMALL_STATE(7219)] = 225513, + [SMALL_STATE(7220)] = 225567, + [SMALL_STATE(7221)] = 225659, + [SMALL_STATE(7222)] = 225713, + [SMALL_STATE(7223)] = 225819, + [SMALL_STATE(7224)] = 225873, + [SMALL_STATE(7225)] = 225971, + [SMALL_STATE(7226)] = 226033, + [SMALL_STATE(7227)] = 226087, + [SMALL_STATE(7228)] = 226179, + [SMALL_STATE(7229)] = 226271, + [SMALL_STATE(7230)] = 226377, + [SMALL_STATE(7231)] = 226433, + [SMALL_STATE(7232)] = 226487, + [SMALL_STATE(7233)] = 226579, + [SMALL_STATE(7234)] = 226633, + [SMALL_STATE(7235)] = 226687, + [SMALL_STATE(7236)] = 226779, + [SMALL_STATE(7237)] = 226871, + [SMALL_STATE(7238)] = 226963, + [SMALL_STATE(7239)] = 227013, + [SMALL_STATE(7240)] = 227067, + [SMALL_STATE(7241)] = 227159, + [SMALL_STATE(7242)] = 227251, + [SMALL_STATE(7243)] = 227313, + [SMALL_STATE(7244)] = 227367, + [SMALL_STATE(7245)] = 227433, + [SMALL_STATE(7246)] = 227487, + [SMALL_STATE(7247)] = 227539, + [SMALL_STATE(7248)] = 227593, + [SMALL_STATE(7249)] = 227685, + [SMALL_STATE(7250)] = 227739, + [SMALL_STATE(7251)] = 227789, + [SMALL_STATE(7252)] = 227849, + [SMALL_STATE(7253)] = 227903, + [SMALL_STATE(7254)] = 227957, + [SMALL_STATE(7255)] = 228046, + [SMALL_STATE(7256)] = 228095, + [SMALL_STATE(7257)] = 228144, + [SMALL_STATE(7258)] = 228193, + [SMALL_STATE(7259)] = 228242, + [SMALL_STATE(7260)] = 228291, + [SMALL_STATE(7261)] = 228340, + [SMALL_STATE(7262)] = 228393, + [SMALL_STATE(7263)] = 228442, + [SMALL_STATE(7264)] = 228491, + [SMALL_STATE(7265)] = 228582, + [SMALL_STATE(7266)] = 228677, + [SMALL_STATE(7267)] = 228736, + [SMALL_STATE(7268)] = 228827, + [SMALL_STATE(7269)] = 228876, + [SMALL_STATE(7270)] = 228933, + [SMALL_STATE(7271)] = 228990, + [SMALL_STATE(7272)] = 229047, + [SMALL_STATE(7273)] = 229104, + [SMALL_STATE(7274)] = 229161, + [SMALL_STATE(7275)] = 229218, + [SMALL_STATE(7276)] = 229275, + [SMALL_STATE(7277)] = 229370, + [SMALL_STATE(7278)] = 229427, + [SMALL_STATE(7279)] = 229476, + [SMALL_STATE(7280)] = 229533, + [SMALL_STATE(7281)] = 229590, + [SMALL_STATE(7282)] = 229647, + [SMALL_STATE(7283)] = 229704, + [SMALL_STATE(7284)] = 229765, + [SMALL_STATE(7285)] = 229826, + [SMALL_STATE(7286)] = 229917, + [SMALL_STATE(7287)] = 230008, + [SMALL_STATE(7288)] = 230063, + [SMALL_STATE(7289)] = 230152, + [SMALL_STATE(7290)] = 230243, + [SMALL_STATE(7291)] = 230338, + [SMALL_STATE(7292)] = 230433, + [SMALL_STATE(7293)] = 230518, + [SMALL_STATE(7294)] = 230607, + [SMALL_STATE(7295)] = 230666, + [SMALL_STATE(7296)] = 230723, + [SMALL_STATE(7297)] = 230780, + [SMALL_STATE(7298)] = 230837, + [SMALL_STATE(7299)] = 230894, + [SMALL_STATE(7300)] = 230947, + [SMALL_STATE(7301)] = 231038, + [SMALL_STATE(7302)] = 231095, + [SMALL_STATE(7303)] = 231154, + [SMALL_STATE(7304)] = 231213, + [SMALL_STATE(7305)] = 231266, + [SMALL_STATE(7306)] = 231361, + [SMALL_STATE(7307)] = 231428, + [SMALL_STATE(7308)] = 231517, + [SMALL_STATE(7309)] = 231604, + [SMALL_STATE(7310)] = 231689, + [SMALL_STATE(7311)] = 231772, + [SMALL_STATE(7312)] = 231851, + [SMALL_STATE(7313)] = 231928, + [SMALL_STATE(7314)] = 232001, + [SMALL_STATE(7315)] = 232070, + [SMALL_STATE(7316)] = 232119, + [SMALL_STATE(7317)] = 232208, + [SMALL_STATE(7318)] = 232279, + [SMALL_STATE(7319)] = 232368, + [SMALL_STATE(7320)] = 232457, + [SMALL_STATE(7321)] = 232506, + [SMALL_STATE(7322)] = 232595, + [SMALL_STATE(7323)] = 232684, + [SMALL_STATE(7324)] = 232733, + [SMALL_STATE(7325)] = 232782, + [SMALL_STATE(7326)] = 232831, + [SMALL_STATE(7327)] = 232880, + [SMALL_STATE(7328)] = 232929, + [SMALL_STATE(7329)] = 232978, + [SMALL_STATE(7330)] = 233027, + [SMALL_STATE(7331)] = 233080, + [SMALL_STATE(7332)] = 233139, + [SMALL_STATE(7333)] = 233192, + [SMALL_STATE(7334)] = 233248, + [SMALL_STATE(7335)] = 233332, + [SMALL_STATE(7336)] = 233390, + [SMALL_STATE(7337)] = 233438, + [SMALL_STATE(7338)] = 233530, + [SMALL_STATE(7339)] = 233588, + [SMALL_STATE(7340)] = 233642, + [SMALL_STATE(7341)] = 233698, + [SMALL_STATE(7342)] = 233754, + [SMALL_STATE(7343)] = 233810, + [SMALL_STATE(7344)] = 233866, + [SMALL_STATE(7345)] = 233962, + [SMALL_STATE(7346)] = 234016, + [SMALL_STATE(7347)] = 234064, + [SMALL_STATE(7348)] = 234122, + [SMALL_STATE(7349)] = 234188, + [SMALL_STATE(7350)] = 234236, + [SMALL_STATE(7351)] = 234326, + [SMALL_STATE(7352)] = 234414, + [SMALL_STATE(7353)] = 234498, + [SMALL_STATE(7354)] = 234580, + [SMALL_STATE(7355)] = 234682, + [SMALL_STATE(7356)] = 234730, + [SMALL_STATE(7357)] = 234808, + [SMALL_STATE(7358)] = 234884, + [SMALL_STATE(7359)] = 234956, + [SMALL_STATE(7360)] = 235024, + [SMALL_STATE(7361)] = 235120, + [SMALL_STATE(7362)] = 235176, + [SMALL_STATE(7363)] = 235232, + [SMALL_STATE(7364)] = 235288, + [SMALL_STATE(7365)] = 235358, + [SMALL_STATE(7366)] = 235412, + [SMALL_STATE(7367)] = 235466, + [SMALL_STATE(7368)] = 235520, + [SMALL_STATE(7369)] = 235574, + [SMALL_STATE(7370)] = 235628, + [SMALL_STATE(7371)] = 235682, + [SMALL_STATE(7372)] = 235736, + [SMALL_STATE(7373)] = 235784, + [SMALL_STATE(7374)] = 235838, + [SMALL_STATE(7375)] = 235892, + [SMALL_STATE(7376)] = 235946, + [SMALL_STATE(7377)] = 236000, + [SMALL_STATE(7378)] = 236054, + [SMALL_STATE(7379)] = 236108, + [SMALL_STATE(7380)] = 236166, + [SMALL_STATE(7381)] = 236224, + [SMALL_STATE(7382)] = 236282, + [SMALL_STATE(7383)] = 236374, + [SMALL_STATE(7384)] = 236466, + [SMALL_STATE(7385)] = 236558, + [SMALL_STATE(7386)] = 236616, + [SMALL_STATE(7387)] = 236712, + [SMALL_STATE(7388)] = 236770, + [SMALL_STATE(7389)] = 236818, + [SMALL_STATE(7390)] = 236910, + [SMALL_STATE(7391)] = 237006, + [SMALL_STATE(7392)] = 237054, + [SMALL_STATE(7393)] = 237146, + [SMALL_STATE(7394)] = 237204, + [SMALL_STATE(7395)] = 237300, + [SMALL_STATE(7396)] = 237348, + [SMALL_STATE(7397)] = 237448, + [SMALL_STATE(7398)] = 237506, + [SMALL_STATE(7399)] = 237564, + [SMALL_STATE(7400)] = 237622, + [SMALL_STATE(7401)] = 237676, + [SMALL_STATE(7402)] = 237730, + [SMALL_STATE(7403)] = 237784, + [SMALL_STATE(7404)] = 237838, + [SMALL_STATE(7405)] = 237892, + [SMALL_STATE(7406)] = 237946, + [SMALL_STATE(7407)] = 238000, + [SMALL_STATE(7408)] = 238054, + [SMALL_STATE(7409)] = 238108, + [SMALL_STATE(7410)] = 238162, + [SMALL_STATE(7411)] = 238216, + [SMALL_STATE(7412)] = 238270, + [SMALL_STATE(7413)] = 238317, + [SMALL_STATE(7414)] = 238414, + [SMALL_STATE(7415)] = 238511, + [SMALL_STATE(7416)] = 238558, + [SMALL_STATE(7417)] = 238605, + [SMALL_STATE(7418)] = 238652, + [SMALL_STATE(7419)] = 238699, + [SMALL_STATE(7420)] = 238796, + [SMALL_STATE(7421)] = 238843, + [SMALL_STATE(7422)] = 238932, + [SMALL_STATE(7423)] = 239029, + [SMALL_STATE(7424)] = 239076, + [SMALL_STATE(7425)] = 239123, + [SMALL_STATE(7426)] = 239170, + [SMALL_STATE(7427)] = 239267, + [SMALL_STATE(7428)] = 239364, + [SMALL_STATE(7429)] = 239461, + [SMALL_STATE(7430)] = 239508, + [SMALL_STATE(7431)] = 239605, + [SMALL_STATE(7432)] = 239652, + [SMALL_STATE(7433)] = 239699, + [SMALL_STATE(7434)] = 239746, + [SMALL_STATE(7435)] = 239793, + [SMALL_STATE(7436)] = 239840, + [SMALL_STATE(7437)] = 239937, + [SMALL_STATE(7438)] = 240032, + [SMALL_STATE(7439)] = 240079, + [SMALL_STATE(7440)] = 240126, + [SMALL_STATE(7441)] = 240223, + [SMALL_STATE(7442)] = 240320, + [SMALL_STATE(7443)] = 240417, + [SMALL_STATE(7444)] = 240464, + [SMALL_STATE(7445)] = 240511, + [SMALL_STATE(7446)] = 240558, + [SMALL_STATE(7447)] = 240605, + [SMALL_STATE(7448)] = 240694, + [SMALL_STATE(7449)] = 240741, + [SMALL_STATE(7450)] = 240788, + [SMALL_STATE(7451)] = 240885, + [SMALL_STATE(7452)] = 240982, + [SMALL_STATE(7453)] = 241079, + [SMALL_STATE(7454)] = 241126, + [SMALL_STATE(7455)] = 241173, + [SMALL_STATE(7456)] = 241220, + [SMALL_STATE(7457)] = 241267, + [SMALL_STATE(7458)] = 241314, + [SMALL_STATE(7459)] = 241361, + [SMALL_STATE(7460)] = 241458, + [SMALL_STATE(7461)] = 241555, + [SMALL_STATE(7462)] = 241602, + [SMALL_STATE(7463)] = 241699, + [SMALL_STATE(7464)] = 241746, + [SMALL_STATE(7465)] = 241793, + [SMALL_STATE(7466)] = 241840, + [SMALL_STATE(7467)] = 241887, + [SMALL_STATE(7468)] = 241984, + [SMALL_STATE(7469)] = 242031, + [SMALL_STATE(7470)] = 242078, + [SMALL_STATE(7471)] = 242175, + [SMALL_STATE(7472)] = 242222, + [SMALL_STATE(7473)] = 242319, + [SMALL_STATE(7474)] = 242372, + [SMALL_STATE(7475)] = 242419, + [SMALL_STATE(7476)] = 242516, + [SMALL_STATE(7477)] = 242563, + [SMALL_STATE(7478)] = 242660, + [SMALL_STATE(7479)] = 242757, + [SMALL_STATE(7480)] = 242854, + [SMALL_STATE(7481)] = 242951, + [SMALL_STATE(7482)] = 242998, + [SMALL_STATE(7483)] = 243095, + [SMALL_STATE(7484)] = 243192, + [SMALL_STATE(7485)] = 243289, + [SMALL_STATE(7486)] = 243386, + [SMALL_STATE(7487)] = 243483, + [SMALL_STATE(7488)] = 243580, + [SMALL_STATE(7489)] = 243677, + [SMALL_STATE(7490)] = 243774, + [SMALL_STATE(7491)] = 243827, + [SMALL_STATE(7492)] = 243924, + [SMALL_STATE(7493)] = 244021, + [SMALL_STATE(7494)] = 244118, + [SMALL_STATE(7495)] = 244215, + [SMALL_STATE(7496)] = 244312, + [SMALL_STATE(7497)] = 244409, + [SMALL_STATE(7498)] = 244506, + [SMALL_STATE(7499)] = 244603, + [SMALL_STATE(7500)] = 244700, + [SMALL_STATE(7501)] = 244797, + [SMALL_STATE(7502)] = 244894, + [SMALL_STATE(7503)] = 244991, + [SMALL_STATE(7504)] = 245088, + [SMALL_STATE(7505)] = 245135, + [SMALL_STATE(7506)] = 245232, + [SMALL_STATE(7507)] = 245329, + [SMALL_STATE(7508)] = 245384, + [SMALL_STATE(7509)] = 245481, + [SMALL_STATE(7510)] = 245528, + [SMALL_STATE(7511)] = 245579, + [SMALL_STATE(7512)] = 245632, + [SMALL_STATE(7513)] = 245679, + [SMALL_STATE(7514)] = 245732, + [SMALL_STATE(7515)] = 245779, + [SMALL_STATE(7516)] = 245828, + [SMALL_STATE(7517)] = 245881, + [SMALL_STATE(7518)] = 245928, + [SMALL_STATE(7519)] = 245975, + [SMALL_STATE(7520)] = 246022, + [SMALL_STATE(7521)] = 246077, + [SMALL_STATE(7522)] = 246130, + [SMALL_STATE(7523)] = 246177, + [SMALL_STATE(7524)] = 246224, + [SMALL_STATE(7525)] = 246277, + [SMALL_STATE(7526)] = 246330, + [SMALL_STATE(7527)] = 246379, + [SMALL_STATE(7528)] = 246432, + [SMALL_STATE(7529)] = 246479, + [SMALL_STATE(7530)] = 246526, + [SMALL_STATE(7531)] = 246623, + [SMALL_STATE(7532)] = 246678, + [SMALL_STATE(7533)] = 246775, + [SMALL_STATE(7534)] = 246872, + [SMALL_STATE(7535)] = 246925, + [SMALL_STATE(7536)] = 247022, + [SMALL_STATE(7537)] = 247071, + [SMALL_STATE(7538)] = 247168, + [SMALL_STATE(7539)] = 247219, + [SMALL_STATE(7540)] = 247266, + [SMALL_STATE(7541)] = 247321, + [SMALL_STATE(7542)] = 247418, + [SMALL_STATE(7543)] = 247465, + [SMALL_STATE(7544)] = 247512, + [SMALL_STATE(7545)] = 247561, + [SMALL_STATE(7546)] = 247614, + [SMALL_STATE(7547)] = 247661, + [SMALL_STATE(7548)] = 247708, + [SMALL_STATE(7549)] = 247755, + [SMALL_STATE(7550)] = 247802, + [SMALL_STATE(7551)] = 247849, + [SMALL_STATE(7552)] = 247896, + [SMALL_STATE(7553)] = 247993, + [SMALL_STATE(7554)] = 248088, + [SMALL_STATE(7555)] = 248141, + [SMALL_STATE(7556)] = 248188, + [SMALL_STATE(7557)] = 248235, + [SMALL_STATE(7558)] = 248282, + [SMALL_STATE(7559)] = 248337, + [SMALL_STATE(7560)] = 248386, + [SMALL_STATE(7561)] = 248435, + [SMALL_STATE(7562)] = 248482, + [SMALL_STATE(7563)] = 248529, + [SMALL_STATE(7564)] = 248576, + [SMALL_STATE(7565)] = 248623, + [SMALL_STATE(7566)] = 248670, + [SMALL_STATE(7567)] = 248723, + [SMALL_STATE(7568)] = 248770, + [SMALL_STATE(7569)] = 248817, + [SMALL_STATE(7570)] = 248914, + [SMALL_STATE(7571)] = 248961, + [SMALL_STATE(7572)] = 249008, + [SMALL_STATE(7573)] = 249055, + [SMALL_STATE(7574)] = 249102, + [SMALL_STATE(7575)] = 249149, + [SMALL_STATE(7576)] = 249196, + [SMALL_STATE(7577)] = 249243, + [SMALL_STATE(7578)] = 249290, + [SMALL_STATE(7579)] = 249337, + [SMALL_STATE(7580)] = 249434, + [SMALL_STATE(7581)] = 249531, + [SMALL_STATE(7582)] = 249628, + [SMALL_STATE(7583)] = 249725, + [SMALL_STATE(7584)] = 249772, + [SMALL_STATE(7585)] = 249869, + [SMALL_STATE(7586)] = 249957, + [SMALL_STATE(7587)] = 250049, + [SMALL_STATE(7588)] = 250141, + [SMALL_STATE(7589)] = 250233, + [SMALL_STATE(7590)] = 250285, + [SMALL_STATE(7591)] = 250377, + [SMALL_STATE(7592)] = 250469, + [SMALL_STATE(7593)] = 250563, + [SMALL_STATE(7594)] = 250657, + [SMALL_STATE(7595)] = 250751, + [SMALL_STATE(7596)] = 250845, + [SMALL_STATE(7597)] = 250939, + [SMALL_STATE(7598)] = 251021, + [SMALL_STATE(7599)] = 251113, + [SMALL_STATE(7600)] = 251207, + [SMALL_STATE(7601)] = 251301, + [SMALL_STATE(7602)] = 251393, + [SMALL_STATE(7603)] = 251481, + [SMALL_STATE(7604)] = 251575, + [SMALL_STATE(7605)] = 251663, + [SMALL_STATE(7606)] = 251755, + [SMALL_STATE(7607)] = 251847, + [SMALL_STATE(7608)] = 251941, + [SMALL_STATE(7609)] = 252005, + [SMALL_STATE(7610)] = 252065, + [SMALL_STATE(7611)] = 252151, + [SMALL_STATE(7612)] = 252235, + [SMALL_STATE(7613)] = 252329, + [SMALL_STATE(7614)] = 252411, + [SMALL_STATE(7615)] = 252491, + [SMALL_STATE(7616)] = 252567, + [SMALL_STATE(7617)] = 252641, + [SMALL_STATE(7618)] = 252735, + [SMALL_STATE(7619)] = 252805, + [SMALL_STATE(7620)] = 252871, + [SMALL_STATE(7621)] = 252939, + [SMALL_STATE(7622)] = 252993, + [SMALL_STATE(7623)] = 253047, + [SMALL_STATE(7624)] = 253101, + [SMALL_STATE(7625)] = 253195, + [SMALL_STATE(7626)] = 253249, + [SMALL_STATE(7627)] = 253309, + [SMALL_STATE(7628)] = 253401, + [SMALL_STATE(7629)] = 253493, + [SMALL_STATE(7630)] = 253543, + [SMALL_STATE(7631)] = 253631, + [SMALL_STATE(7632)] = 253725, + [SMALL_STATE(7633)] = 253817, + [SMALL_STATE(7634)] = 253911, + [SMALL_STATE(7635)] = 253965, + [SMALL_STATE(7636)] = 254053, + [SMALL_STATE(7637)] = 254147, + [SMALL_STATE(7638)] = 254241, + [SMALL_STATE(7639)] = 254335, + [SMALL_STATE(7640)] = 254429, + [SMALL_STATE(7641)] = 254523, + [SMALL_STATE(7642)] = 254615, + [SMALL_STATE(7643)] = 254709, + [SMALL_STATE(7644)] = 254763, + [SMALL_STATE(7645)] = 254811, + [SMALL_STATE(7646)] = 254903, + [SMALL_STATE(7647)] = 254957, + [SMALL_STATE(7648)] = 255005, + [SMALL_STATE(7649)] = 255097, + [SMALL_STATE(7650)] = 255189, + [SMALL_STATE(7651)] = 255247, + [SMALL_STATE(7652)] = 255339, + [SMALL_STATE(7653)] = 255397, + [SMALL_STATE(7654)] = 255491, + [SMALL_STATE(7655)] = 255585, + [SMALL_STATE(7656)] = 255639, + [SMALL_STATE(7657)] = 255731, + [SMALL_STATE(7658)] = 255783, + [SMALL_STATE(7659)] = 255837, + [SMALL_STATE(7660)] = 255931, + [SMALL_STATE(7661)] = 255977, + [SMALL_STATE(7662)] = 256031, + [SMALL_STATE(7663)] = 256085, + [SMALL_STATE(7664)] = 256179, + [SMALL_STATE(7665)] = 256237, + [SMALL_STATE(7666)] = 256325, + [SMALL_STATE(7667)] = 256379, + [SMALL_STATE(7668)] = 256439, + [SMALL_STATE(7669)] = 256499, + [SMALL_STATE(7670)] = 256587, + [SMALL_STATE(7671)] = 256645, + [SMALL_STATE(7672)] = 256733, + [SMALL_STATE(7673)] = 256827, + [SMALL_STATE(7674)] = 256919, + [SMALL_STATE(7675)] = 256973, + [SMALL_STATE(7676)] = 257031, + [SMALL_STATE(7677)] = 257125, + [SMALL_STATE(7678)] = 257219, + [SMALL_STATE(7679)] = 257311, + [SMALL_STATE(7680)] = 257399, + [SMALL_STATE(7681)] = 257491, + [SMALL_STATE(7682)] = 257585, + [SMALL_STATE(7683)] = 257649, + [SMALL_STATE(7684)] = 257735, + [SMALL_STATE(7685)] = 257819, + [SMALL_STATE(7686)] = 257901, + [SMALL_STATE(7687)] = 257981, + [SMALL_STATE(7688)] = 258057, + [SMALL_STATE(7689)] = 258131, + [SMALL_STATE(7690)] = 258201, + [SMALL_STATE(7691)] = 258267, + [SMALL_STATE(7692)] = 258361, + [SMALL_STATE(7693)] = 258429, + [SMALL_STATE(7694)] = 258517, + [SMALL_STATE(7695)] = 258609, + [SMALL_STATE(7696)] = 258697, + [SMALL_STATE(7697)] = 258789, + [SMALL_STATE(7698)] = 258881, + [SMALL_STATE(7699)] = 258939, + [SMALL_STATE(7700)] = 258993, + [SMALL_STATE(7701)] = 259081, + [SMALL_STATE(7702)] = 259173, + [SMALL_STATE(7703)] = 259223, + [SMALL_STATE(7704)] = 259283, + [SMALL_STATE(7705)] = 259333, + [SMALL_STATE(7706)] = 259393, + [SMALL_STATE(7707)] = 259487, + [SMALL_STATE(7708)] = 259581, + [SMALL_STATE(7709)] = 259631, + [SMALL_STATE(7710)] = 259681, + [SMALL_STATE(7711)] = 259731, + [SMALL_STATE(7712)] = 259781, + [SMALL_STATE(7713)] = 259869, + [SMALL_STATE(7714)] = 259927, + [SMALL_STATE(7715)] = 259977, + [SMALL_STATE(7716)] = 260071, + [SMALL_STATE(7717)] = 260165, + [SMALL_STATE(7718)] = 260259, + [SMALL_STATE(7719)] = 260309, + [SMALL_STATE(7720)] = 260359, + [SMALL_STATE(7721)] = 260409, + [SMALL_STATE(7722)] = 260497, + [SMALL_STATE(7723)] = 260547, + [SMALL_STATE(7724)] = 260597, + [SMALL_STATE(7725)] = 260691, + [SMALL_STATE(7726)] = 260745, + [SMALL_STATE(7727)] = 260839, + [SMALL_STATE(7728)] = 260933, + [SMALL_STATE(7729)] = 260983, + [SMALL_STATE(7730)] = 261077, + [SMALL_STATE(7731)] = 261171, + [SMALL_STATE(7732)] = 261229, + [SMALL_STATE(7733)] = 261281, + [SMALL_STATE(7734)] = 261369, + [SMALL_STATE(7735)] = 261461, + [SMALL_STATE(7736)] = 261549, + [SMALL_STATE(7737)] = 261637, + [SMALL_STATE(7738)] = 261725, + [SMALL_STATE(7739)] = 261813, + [SMALL_STATE(7740)] = 261905, + [SMALL_STATE(7741)] = 261969, + [SMALL_STATE(7742)] = 262029, + [SMALL_STATE(7743)] = 262115, + [SMALL_STATE(7744)] = 262199, + [SMALL_STATE(7745)] = 262281, + [SMALL_STATE(7746)] = 262361, + [SMALL_STATE(7747)] = 262437, + [SMALL_STATE(7748)] = 262511, + [SMALL_STATE(7749)] = 262581, + [SMALL_STATE(7750)] = 262647, + [SMALL_STATE(7751)] = 262741, + [SMALL_STATE(7752)] = 262809, + [SMALL_STATE(7753)] = 262903, + [SMALL_STATE(7754)] = 262963, + [SMALL_STATE(7755)] = 263051, + [SMALL_STATE(7756)] = 263143, + [SMALL_STATE(7757)] = 263231, + [SMALL_STATE(7758)] = 263323, + [SMALL_STATE(7759)] = 263417, + [SMALL_STATE(7760)] = 263481, + [SMALL_STATE(7761)] = 263541, + [SMALL_STATE(7762)] = 263627, + [SMALL_STATE(7763)] = 263711, + [SMALL_STATE(7764)] = 263793, + [SMALL_STATE(7765)] = 263873, + [SMALL_STATE(7766)] = 263949, + [SMALL_STATE(7767)] = 264023, + [SMALL_STATE(7768)] = 264095, + [SMALL_STATE(7769)] = 264161, + [SMALL_STATE(7770)] = 264253, + [SMALL_STATE(7771)] = 264299, + [SMALL_STATE(7772)] = 264347, + [SMALL_STATE(7773)] = 264417, + [SMALL_STATE(7774)] = 264509, + [SMALL_STATE(7775)] = 264567, + [SMALL_STATE(7776)] = 264655, + [SMALL_STATE(7777)] = 264715, + [SMALL_STATE(7778)] = 264775, + [SMALL_STATE(7779)] = 264863, + [SMALL_STATE(7780)] = 264921, + [SMALL_STATE(7781)] = 264981, + [SMALL_STATE(7782)] = 265069, + [SMALL_STATE(7783)] = 265115, + [SMALL_STATE(7784)] = 265163, + [SMALL_STATE(7785)] = 265257, + [SMALL_STATE(7786)] = 265351, + [SMALL_STATE(7787)] = 265445, + [SMALL_STATE(7788)] = 265537, + [SMALL_STATE(7789)] = 265631, + [SMALL_STATE(7790)] = 265725, + [SMALL_STATE(7791)] = 265779, + [SMALL_STATE(7792)] = 265852, + [SMALL_STATE(7793)] = 265943, + [SMALL_STATE(7794)] = 266034, + [SMALL_STATE(7795)] = 266125, + [SMALL_STATE(7796)] = 266216, + [SMALL_STATE(7797)] = 266307, + [SMALL_STATE(7798)] = 266398, + [SMALL_STATE(7799)] = 266489, + [SMALL_STATE(7800)] = 266580, + [SMALL_STATE(7801)] = 266671, + [SMALL_STATE(7802)] = 266762, + [SMALL_STATE(7803)] = 266855, + [SMALL_STATE(7804)] = 266948, + [SMALL_STATE(7805)] = 267041, + [SMALL_STATE(7806)] = 267132, + [SMALL_STATE(7807)] = 267223, + [SMALL_STATE(7808)] = 267314, + [SMALL_STATE(7809)] = 267405, + [SMALL_STATE(7810)] = 267496, + [SMALL_STATE(7811)] = 267587, + [SMALL_STATE(7812)] = 267678, + [SMALL_STATE(7813)] = 267769, + [SMALL_STATE(7814)] = 267860, + [SMALL_STATE(7815)] = 267951, + [SMALL_STATE(7816)] = 268042, + [SMALL_STATE(7817)] = 268133, + [SMALL_STATE(7818)] = 268224, + [SMALL_STATE(7819)] = 268315, + [SMALL_STATE(7820)] = 268366, + [SMALL_STATE(7821)] = 268457, + [SMALL_STATE(7822)] = 268548, + [SMALL_STATE(7823)] = 268639, + [SMALL_STATE(7824)] = 268730, + [SMALL_STATE(7825)] = 268821, + [SMALL_STATE(7826)] = 268912, + [SMALL_STATE(7827)] = 269003, + [SMALL_STATE(7828)] = 269094, + [SMALL_STATE(7829)] = 269187, + [SMALL_STATE(7830)] = 269280, + [SMALL_STATE(7831)] = 269371, + [SMALL_STATE(7832)] = 269462, + [SMALL_STATE(7833)] = 269553, + [SMALL_STATE(7834)] = 269644, + [SMALL_STATE(7835)] = 269735, + [SMALL_STATE(7836)] = 269826, + [SMALL_STATE(7837)] = 269917, + [SMALL_STATE(7838)] = 270008, + [SMALL_STATE(7839)] = 270099, + [SMALL_STATE(7840)] = 270190, + [SMALL_STATE(7841)] = 270281, + [SMALL_STATE(7842)] = 270372, + [SMALL_STATE(7843)] = 270463, + [SMALL_STATE(7844)] = 270554, + [SMALL_STATE(7845)] = 270599, + [SMALL_STATE(7846)] = 270690, + [SMALL_STATE(7847)] = 270735, + [SMALL_STATE(7848)] = 270782, + [SMALL_STATE(7849)] = 270873, + [SMALL_STATE(7850)] = 270924, + [SMALL_STATE(7851)] = 270997, + [SMALL_STATE(7852)] = 271070, + [SMALL_STATE(7853)] = 271115, + [SMALL_STATE(7854)] = 271160, + [SMALL_STATE(7855)] = 271205, + [SMALL_STATE(7856)] = 271250, + [SMALL_STATE(7857)] = 271343, + [SMALL_STATE(7858)] = 271388, + [SMALL_STATE(7859)] = 271433, + [SMALL_STATE(7860)] = 271526, + [SMALL_STATE(7861)] = 271571, + [SMALL_STATE(7862)] = 271662, + [SMALL_STATE(7863)] = 271753, + [SMALL_STATE(7864)] = 271804, + [SMALL_STATE(7865)] = 271895, + [SMALL_STATE(7866)] = 271986, + [SMALL_STATE(7867)] = 272031, + [SMALL_STATE(7868)] = 272076, + [SMALL_STATE(7869)] = 272149, + [SMALL_STATE(7870)] = 272196, + [SMALL_STATE(7871)] = 272269, + [SMALL_STATE(7872)] = 272314, + [SMALL_STATE(7873)] = 272359, + [SMALL_STATE(7874)] = 272450, + [SMALL_STATE(7875)] = 272495, + [SMALL_STATE(7876)] = 272540, + [SMALL_STATE(7877)] = 272585, + [SMALL_STATE(7878)] = 272676, + [SMALL_STATE(7879)] = 272767, + [SMALL_STATE(7880)] = 272858, + [SMALL_STATE(7881)] = 272949, + [SMALL_STATE(7882)] = 273040, + [SMALL_STATE(7883)] = 273133, + [SMALL_STATE(7884)] = 273178, + [SMALL_STATE(7885)] = 273223, + [SMALL_STATE(7886)] = 273316, + [SMALL_STATE(7887)] = 273407, + [SMALL_STATE(7888)] = 273498, + [SMALL_STATE(7889)] = 273543, + [SMALL_STATE(7890)] = 273588, + [SMALL_STATE(7891)] = 273633, + [SMALL_STATE(7892)] = 273678, + [SMALL_STATE(7893)] = 273723, + [SMALL_STATE(7894)] = 273768, + [SMALL_STATE(7895)] = 273859, + [SMALL_STATE(7896)] = 273950, + [SMALL_STATE(7897)] = 273995, + [SMALL_STATE(7898)] = 274086, + [SMALL_STATE(7899)] = 274131, + [SMALL_STATE(7900)] = 274222, + [SMALL_STATE(7901)] = 274267, + [SMALL_STATE(7902)] = 274358, + [SMALL_STATE(7903)] = 274403, + [SMALL_STATE(7904)] = 274494, + [SMALL_STATE(7905)] = 274539, + [SMALL_STATE(7906)] = 274632, + [SMALL_STATE(7907)] = 274677, + [SMALL_STATE(7908)] = 274768, + [SMALL_STATE(7909)] = 274813, + [SMALL_STATE(7910)] = 274906, + [SMALL_STATE(7911)] = 274999, + [SMALL_STATE(7912)] = 275044, + [SMALL_STATE(7913)] = 275089, + [SMALL_STATE(7914)] = 275180, + [SMALL_STATE(7915)] = 275271, + [SMALL_STATE(7916)] = 275362, + [SMALL_STATE(7917)] = 275453, + [SMALL_STATE(7918)] = 275544, + [SMALL_STATE(7919)] = 275635, + [SMALL_STATE(7920)] = 275682, + [SMALL_STATE(7921)] = 275773, + [SMALL_STATE(7922)] = 275864, + [SMALL_STATE(7923)] = 275955, + [SMALL_STATE(7924)] = 276046, + [SMALL_STATE(7925)] = 276137, + [SMALL_STATE(7926)] = 276228, + [SMALL_STATE(7927)] = 276319, + [SMALL_STATE(7928)] = 276410, + [SMALL_STATE(7929)] = 276501, + [SMALL_STATE(7930)] = 276594, + [SMALL_STATE(7931)] = 276685, + [SMALL_STATE(7932)] = 276776, + [SMALL_STATE(7933)] = 276867, + [SMALL_STATE(7934)] = 276958, + [SMALL_STATE(7935)] = 277049, + [SMALL_STATE(7936)] = 277140, + [SMALL_STATE(7937)] = 277213, + [SMALL_STATE(7938)] = 277304, + [SMALL_STATE(7939)] = 277395, + [SMALL_STATE(7940)] = 277486, + [SMALL_STATE(7941)] = 277577, + [SMALL_STATE(7942)] = 277650, + [SMALL_STATE(7943)] = 277741, + [SMALL_STATE(7944)] = 277834, + [SMALL_STATE(7945)] = 277925, + [SMALL_STATE(7946)] = 278016, + [SMALL_STATE(7947)] = 278107, + [SMALL_STATE(7948)] = 278198, + [SMALL_STATE(7949)] = 278289, + [SMALL_STATE(7950)] = 278380, + [SMALL_STATE(7951)] = 278471, + [SMALL_STATE(7952)] = 278562, + [SMALL_STATE(7953)] = 278653, + [SMALL_STATE(7954)] = 278744, + [SMALL_STATE(7955)] = 278835, + [SMALL_STATE(7956)] = 278926, + [SMALL_STATE(7957)] = 279019, + [SMALL_STATE(7958)] = 279110, + [SMALL_STATE(7959)] = 279201, + [SMALL_STATE(7960)] = 279292, + [SMALL_STATE(7961)] = 279383, + [SMALL_STATE(7962)] = 279470, + [SMALL_STATE(7963)] = 279561, + [SMALL_STATE(7964)] = 279652, + [SMALL_STATE(7965)] = 279743, + [SMALL_STATE(7966)] = 279834, + [SMALL_STATE(7967)] = 279925, + [SMALL_STATE(7968)] = 280016, + [SMALL_STATE(7969)] = 280107, + [SMALL_STATE(7970)] = 280152, + [SMALL_STATE(7971)] = 280243, + [SMALL_STATE(7972)] = 280334, + [SMALL_STATE(7973)] = 280425, + [SMALL_STATE(7974)] = 280470, + [SMALL_STATE(7975)] = 280561, + [SMALL_STATE(7976)] = 280652, + [SMALL_STATE(7977)] = 280743, + [SMALL_STATE(7978)] = 280834, + [SMALL_STATE(7979)] = 280925, + [SMALL_STATE(7980)] = 281016, + [SMALL_STATE(7981)] = 281107, + [SMALL_STATE(7982)] = 281198, + [SMALL_STATE(7983)] = 281289, + [SMALL_STATE(7984)] = 281380, + [SMALL_STATE(7985)] = 281471, + [SMALL_STATE(7986)] = 281562, + [SMALL_STATE(7987)] = 281655, + [SMALL_STATE(7988)] = 281746, + [SMALL_STATE(7989)] = 281837, + [SMALL_STATE(7990)] = 281928, + [SMALL_STATE(7991)] = 282021, + [SMALL_STATE(7992)] = 282112, + [SMALL_STATE(7993)] = 282205, + [SMALL_STATE(7994)] = 282296, + [SMALL_STATE(7995)] = 282387, + [SMALL_STATE(7996)] = 282478, + [SMALL_STATE(7997)] = 282551, + [SMALL_STATE(7998)] = 282642, + [SMALL_STATE(7999)] = 282733, + [SMALL_STATE(8000)] = 282824, + [SMALL_STATE(8001)] = 282897, + [SMALL_STATE(8002)] = 282970, + [SMALL_STATE(8003)] = 283061, + [SMALL_STATE(8004)] = 283152, + [SMALL_STATE(8005)] = 283225, + [SMALL_STATE(8006)] = 283298, + [SMALL_STATE(8007)] = 283389, + [SMALL_STATE(8008)] = 283436, + [SMALL_STATE(8009)] = 283483, + [SMALL_STATE(8010)] = 283574, + [SMALL_STATE(8011)] = 283665, + [SMALL_STATE(8012)] = 283756, + [SMALL_STATE(8013)] = 283847, + [SMALL_STATE(8014)] = 283938, + [SMALL_STATE(8015)] = 283983, + [SMALL_STATE(8016)] = 284028, + [SMALL_STATE(8017)] = 284075, + [SMALL_STATE(8018)] = 284166, + [SMALL_STATE(8019)] = 284257, + [SMALL_STATE(8020)] = 284348, + [SMALL_STATE(8021)] = 284439, + [SMALL_STATE(8022)] = 284484, + [SMALL_STATE(8023)] = 284529, + [SMALL_STATE(8024)] = 284620, + [SMALL_STATE(8025)] = 284665, + [SMALL_STATE(8026)] = 284710, + [SMALL_STATE(8027)] = 284755, + [SMALL_STATE(8028)] = 284800, + [SMALL_STATE(8029)] = 284845, + [SMALL_STATE(8030)] = 284890, + [SMALL_STATE(8031)] = 284981, + [SMALL_STATE(8032)] = 285072, + [SMALL_STATE(8033)] = 285145, + [SMALL_STATE(8034)] = 285190, + [SMALL_STATE(8035)] = 285281, + [SMALL_STATE(8036)] = 285326, + [SMALL_STATE(8037)] = 285371, + [SMALL_STATE(8038)] = 285462, + [SMALL_STATE(8039)] = 285507, + [SMALL_STATE(8040)] = 285552, + [SMALL_STATE(8041)] = 285597, + [SMALL_STATE(8042)] = 285642, + [SMALL_STATE(8043)] = 285733, + [SMALL_STATE(8044)] = 285824, + [SMALL_STATE(8045)] = 285869, + [SMALL_STATE(8046)] = 285914, + [SMALL_STATE(8047)] = 286005, + [SMALL_STATE(8048)] = 286096, + [SMALL_STATE(8049)] = 286187, + [SMALL_STATE(8050)] = 286278, + [SMALL_STATE(8051)] = 286369, + [SMALL_STATE(8052)] = 286414, + [SMALL_STATE(8053)] = 286459, + [SMALL_STATE(8054)] = 286504, + [SMALL_STATE(8055)] = 286595, + [SMALL_STATE(8056)] = 286686, + [SMALL_STATE(8057)] = 286731, + [SMALL_STATE(8058)] = 286776, + [SMALL_STATE(8059)] = 286849, + [SMALL_STATE(8060)] = 286894, + [SMALL_STATE(8061)] = 286939, + [SMALL_STATE(8062)] = 286984, + [SMALL_STATE(8063)] = 287029, + [SMALL_STATE(8064)] = 287102, + [SMALL_STATE(8065)] = 287147, + [SMALL_STATE(8066)] = 287192, + [SMALL_STATE(8067)] = 287265, + [SMALL_STATE(8068)] = 287310, + [SMALL_STATE(8069)] = 287355, + [SMALL_STATE(8070)] = 287400, + [SMALL_STATE(8071)] = 287445, + [SMALL_STATE(8072)] = 287490, + [SMALL_STATE(8073)] = 287535, + [SMALL_STATE(8074)] = 287580, + [SMALL_STATE(8075)] = 287625, + [SMALL_STATE(8076)] = 287698, + [SMALL_STATE(8077)] = 287743, + [SMALL_STATE(8078)] = 287788, + [SMALL_STATE(8079)] = 287879, + [SMALL_STATE(8080)] = 287930, + [SMALL_STATE(8081)] = 287975, + [SMALL_STATE(8082)] = 288020, + [SMALL_STATE(8083)] = 288111, + [SMALL_STATE(8084)] = 288184, + [SMALL_STATE(8085)] = 288229, + [SMALL_STATE(8086)] = 288322, + [SMALL_STATE(8087)] = 288373, + [SMALL_STATE(8088)] = 288464, + [SMALL_STATE(8089)] = 288555, + [SMALL_STATE(8090)] = 288600, + [SMALL_STATE(8091)] = 288687, + [SMALL_STATE(8092)] = 288778, + [SMALL_STATE(8093)] = 288869, + [SMALL_STATE(8094)] = 288960, + [SMALL_STATE(8095)] = 289051, + [SMALL_STATE(8096)] = 289144, + [SMALL_STATE(8097)] = 289235, + [SMALL_STATE(8098)] = 289326, + [SMALL_STATE(8099)] = 289417, + [SMALL_STATE(8100)] = 289508, + [SMALL_STATE(8101)] = 289599, + [SMALL_STATE(8102)] = 289690, + [SMALL_STATE(8103)] = 289781, + [SMALL_STATE(8104)] = 289872, + [SMALL_STATE(8105)] = 289963, + [SMALL_STATE(8106)] = 290054, + [SMALL_STATE(8107)] = 290145, + [SMALL_STATE(8108)] = 290236, + [SMALL_STATE(8109)] = 290281, + [SMALL_STATE(8110)] = 290354, + [SMALL_STATE(8111)] = 290445, + [SMALL_STATE(8112)] = 290518, + [SMALL_STATE(8113)] = 290609, + [SMALL_STATE(8114)] = 290700, + [SMALL_STATE(8115)] = 290745, + [SMALL_STATE(8116)] = 290838, + [SMALL_STATE(8117)] = 290929, + [SMALL_STATE(8118)] = 291002, + [SMALL_STATE(8119)] = 291093, + [SMALL_STATE(8120)] = 291184, + [SMALL_STATE(8121)] = 291275, + [SMALL_STATE(8122)] = 291366, + [SMALL_STATE(8123)] = 291457, + [SMALL_STATE(8124)] = 291502, + [SMALL_STATE(8125)] = 291593, + [SMALL_STATE(8126)] = 291684, + [SMALL_STATE(8127)] = 291777, + [SMALL_STATE(8128)] = 291868, + [SMALL_STATE(8129)] = 291959, + [SMALL_STATE(8130)] = 292050, + [SMALL_STATE(8131)] = 292141, + [SMALL_STATE(8132)] = 292232, + [SMALL_STATE(8133)] = 292323, + [SMALL_STATE(8134)] = 292414, + [SMALL_STATE(8135)] = 292505, + [SMALL_STATE(8136)] = 292596, + [SMALL_STATE(8137)] = 292687, + [SMALL_STATE(8138)] = 292778, + [SMALL_STATE(8139)] = 292869, + [SMALL_STATE(8140)] = 292960, + [SMALL_STATE(8141)] = 293051, + [SMALL_STATE(8142)] = 293142, + [SMALL_STATE(8143)] = 293233, + [SMALL_STATE(8144)] = 293285, + [SMALL_STATE(8145)] = 293377, + [SMALL_STATE(8146)] = 293469, + [SMALL_STATE(8147)] = 293561, + [SMALL_STATE(8148)] = 293653, + [SMALL_STATE(8149)] = 293745, + [SMALL_STATE(8150)] = 293837, + [SMALL_STATE(8151)] = 293929, + [SMALL_STATE(8152)] = 294021, + [SMALL_STATE(8153)] = 294065, + [SMALL_STATE(8154)] = 294157, + [SMALL_STATE(8155)] = 294249, + [SMALL_STATE(8156)] = 294341, + [SMALL_STATE(8157)] = 294385, + [SMALL_STATE(8158)] = 294429, + [SMALL_STATE(8159)] = 294473, + [SMALL_STATE(8160)] = 294517, + [SMALL_STATE(8161)] = 294569, + [SMALL_STATE(8162)] = 294617, + [SMALL_STATE(8163)] = 294709, + [SMALL_STATE(8164)] = 294753, + [SMALL_STATE(8165)] = 294845, + [SMALL_STATE(8166)] = 294937, + [SMALL_STATE(8167)] = 294981, + [SMALL_STATE(8168)] = 295073, + [SMALL_STATE(8169)] = 295165, + [SMALL_STATE(8170)] = 295257, + [SMALL_STATE(8171)] = 295349, + [SMALL_STATE(8172)] = 295393, + [SMALL_STATE(8173)] = 295437, + [SMALL_STATE(8174)] = 295481, + [SMALL_STATE(8175)] = 295573, + [SMALL_STATE(8176)] = 295617, + [SMALL_STATE(8177)] = 295709, + [SMALL_STATE(8178)] = 295801, + [SMALL_STATE(8179)] = 295845, + [SMALL_STATE(8180)] = 295937, + [SMALL_STATE(8181)] = 295981, + [SMALL_STATE(8182)] = 296025, + [SMALL_STATE(8183)] = 296069, + [SMALL_STATE(8184)] = 296155, + [SMALL_STATE(8185)] = 296199, + [SMALL_STATE(8186)] = 296247, + [SMALL_STATE(8187)] = 296333, + [SMALL_STATE(8188)] = 296381, + [SMALL_STATE(8189)] = 296473, + [SMALL_STATE(8190)] = 296517, + [SMALL_STATE(8191)] = 296561, + [SMALL_STATE(8192)] = 296605, + [SMALL_STATE(8193)] = 296649, + [SMALL_STATE(8194)] = 296741, + [SMALL_STATE(8195)] = 296833, + [SMALL_STATE(8196)] = 296925, + [SMALL_STATE(8197)] = 296973, + [SMALL_STATE(8198)] = 297065, + [SMALL_STATE(8199)] = 297157, + [SMALL_STATE(8200)] = 297249, + [SMALL_STATE(8201)] = 297293, + [SMALL_STATE(8202)] = 297337, + [SMALL_STATE(8203)] = 297381, + [SMALL_STATE(8204)] = 297461, + [SMALL_STATE(8205)] = 297553, + [SMALL_STATE(8206)] = 297597, + [SMALL_STATE(8207)] = 297689, + [SMALL_STATE(8208)] = 297733, + [SMALL_STATE(8209)] = 297777, + [SMALL_STATE(8210)] = 297821, + [SMALL_STATE(8211)] = 297865, + [SMALL_STATE(8212)] = 297945, + [SMALL_STATE(8213)] = 297989, + [SMALL_STATE(8214)] = 298033, + [SMALL_STATE(8215)] = 298113, + [SMALL_STATE(8216)] = 298157, + [SMALL_STATE(8217)] = 298249, + [SMALL_STATE(8218)] = 298293, + [SMALL_STATE(8219)] = 298337, + [SMALL_STATE(8220)] = 298381, + [SMALL_STATE(8221)] = 298425, + [SMALL_STATE(8222)] = 298469, + [SMALL_STATE(8223)] = 298549, + [SMALL_STATE(8224)] = 298593, + [SMALL_STATE(8225)] = 298685, + [SMALL_STATE(8226)] = 298729, + [SMALL_STATE(8227)] = 298773, + [SMALL_STATE(8228)] = 298817, + [SMALL_STATE(8229)] = 298909, + [SMALL_STATE(8230)] = 299001, + [SMALL_STATE(8231)] = 299045, + [SMALL_STATE(8232)] = 299089, + [SMALL_STATE(8233)] = 299169, + [SMALL_STATE(8234)] = 299255, + [SMALL_STATE(8235)] = 299299, + [SMALL_STATE(8236)] = 299391, + [SMALL_STATE(8237)] = 299483, + [SMALL_STATE(8238)] = 299575, + [SMALL_STATE(8239)] = 299667, + [SMALL_STATE(8240)] = 299759, + [SMALL_STATE(8241)] = 299851, + [SMALL_STATE(8242)] = 299943, + [SMALL_STATE(8243)] = 300035, + [SMALL_STATE(8244)] = 300127, + [SMALL_STATE(8245)] = 300219, + [SMALL_STATE(8246)] = 300311, + [SMALL_STATE(8247)] = 300355, + [SMALL_STATE(8248)] = 300447, + [SMALL_STATE(8249)] = 300539, + [SMALL_STATE(8250)] = 300631, + [SMALL_STATE(8251)] = 300723, + [SMALL_STATE(8252)] = 300809, + [SMALL_STATE(8253)] = 300853, + [SMALL_STATE(8254)] = 300945, + [SMALL_STATE(8255)] = 301037, + [SMALL_STATE(8256)] = 301081, + [SMALL_STATE(8257)] = 301173, + [SMALL_STATE(8258)] = 301265, + [SMALL_STATE(8259)] = 301353, + [SMALL_STATE(8260)] = 301445, + [SMALL_STATE(8261)] = 301537, + [SMALL_STATE(8262)] = 301629, + [SMALL_STATE(8263)] = 301721, + [SMALL_STATE(8264)] = 301813, + [SMALL_STATE(8265)] = 301905, + [SMALL_STATE(8266)] = 301997, + [SMALL_STATE(8267)] = 302089, + [SMALL_STATE(8268)] = 302181, + [SMALL_STATE(8269)] = 302225, + [SMALL_STATE(8270)] = 302269, + [SMALL_STATE(8271)] = 302313, + [SMALL_STATE(8272)] = 302405, + [SMALL_STATE(8273)] = 302449, + [SMALL_STATE(8274)] = 302493, + [SMALL_STATE(8275)] = 302537, + [SMALL_STATE(8276)] = 302629, + [SMALL_STATE(8277)] = 302721, + [SMALL_STATE(8278)] = 302813, + [SMALL_STATE(8279)] = 302905, + [SMALL_STATE(8280)] = 302997, + [SMALL_STATE(8281)] = 303089, + [SMALL_STATE(8282)] = 303181, + [SMALL_STATE(8283)] = 303225, + [SMALL_STATE(8284)] = 303317, + [SMALL_STATE(8285)] = 303409, + [SMALL_STATE(8286)] = 303501, + [SMALL_STATE(8287)] = 303593, + [SMALL_STATE(8288)] = 303685, + [SMALL_STATE(8289)] = 303777, + [SMALL_STATE(8290)] = 303821, + [SMALL_STATE(8291)] = 303913, + [SMALL_STATE(8292)] = 303957, + [SMALL_STATE(8293)] = 304049, + [SMALL_STATE(8294)] = 304141, + [SMALL_STATE(8295)] = 304233, + [SMALL_STATE(8296)] = 304325, + [SMALL_STATE(8297)] = 304417, + [SMALL_STATE(8298)] = 304509, + [SMALL_STATE(8299)] = 304601, + [SMALL_STATE(8300)] = 304693, + [SMALL_STATE(8301)] = 304737, + [SMALL_STATE(8302)] = 304781, + [SMALL_STATE(8303)] = 304873, + [SMALL_STATE(8304)] = 304953, + [SMALL_STATE(8305)] = 304997, + [SMALL_STATE(8306)] = 305089, + [SMALL_STATE(8307)] = 305133, + [SMALL_STATE(8308)] = 305177, + [SMALL_STATE(8309)] = 305221, + [SMALL_STATE(8310)] = 305265, + [SMALL_STATE(8311)] = 305309, + [SMALL_STATE(8312)] = 305369, + [SMALL_STATE(8313)] = 305461, + [SMALL_STATE(8314)] = 305553, + [SMALL_STATE(8315)] = 305645, + [SMALL_STATE(8316)] = 305737, + [SMALL_STATE(8317)] = 305781, + [SMALL_STATE(8318)] = 305873, + [SMALL_STATE(8319)] = 305965, + [SMALL_STATE(8320)] = 306057, + [SMALL_STATE(8321)] = 306149, + [SMALL_STATE(8322)] = 306193, + [SMALL_STATE(8323)] = 306285, + [SMALL_STATE(8324)] = 306377, + [SMALL_STATE(8325)] = 306463, + [SMALL_STATE(8326)] = 306549, + [SMALL_STATE(8327)] = 306641, + [SMALL_STATE(8328)] = 306733, + [SMALL_STATE(8329)] = 306825, + [SMALL_STATE(8330)] = 306869, + [SMALL_STATE(8331)] = 306949, + [SMALL_STATE(8332)] = 306997, + [SMALL_STATE(8333)] = 307089, + [SMALL_STATE(8334)] = 307133, + [SMALL_STATE(8335)] = 307181, + [SMALL_STATE(8336)] = 307225, + [SMALL_STATE(8337)] = 307269, + [SMALL_STATE(8338)] = 307361, + [SMALL_STATE(8339)] = 307453, + [SMALL_STATE(8340)] = 307497, + [SMALL_STATE(8341)] = 307541, + [SMALL_STATE(8342)] = 307585, + [SMALL_STATE(8343)] = 307677, + [SMALL_STATE(8344)] = 307769, + [SMALL_STATE(8345)] = 307813, + [SMALL_STATE(8346)] = 307905, + [SMALL_STATE(8347)] = 307949, + [SMALL_STATE(8348)] = 307993, + [SMALL_STATE(8349)] = 308085, + [SMALL_STATE(8350)] = 308137, + [SMALL_STATE(8351)] = 308229, + [SMALL_STATE(8352)] = 308321, + [SMALL_STATE(8353)] = 308413, + [SMALL_STATE(8354)] = 308505, + [SMALL_STATE(8355)] = 308549, + [SMALL_STATE(8356)] = 308597, + [SMALL_STATE(8357)] = 308689, + [SMALL_STATE(8358)] = 308781, + [SMALL_STATE(8359)] = 308873, + [SMALL_STATE(8360)] = 308917, + [SMALL_STATE(8361)] = 309009, + [SMALL_STATE(8362)] = 309053, + [SMALL_STATE(8363)] = 309145, + [SMALL_STATE(8364)] = 309234, + [SMALL_STATE(8365)] = 309323, + [SMALL_STATE(8366)] = 309410, + [SMALL_STATE(8367)] = 309497, + [SMALL_STATE(8368)] = 309586, + [SMALL_STATE(8369)] = 309655, + [SMALL_STATE(8370)] = 309742, + [SMALL_STATE(8371)] = 309831, + [SMALL_STATE(8372)] = 309920, + [SMALL_STATE(8373)] = 310007, + [SMALL_STATE(8374)] = 310056, + [SMALL_STATE(8375)] = 310101, + [SMALL_STATE(8376)] = 310188, + [SMALL_STATE(8377)] = 310277, + [SMALL_STATE(8378)] = 310364, + [SMALL_STATE(8379)] = 310409, + [SMALL_STATE(8380)] = 310494, + [SMALL_STATE(8381)] = 310581, + [SMALL_STATE(8382)] = 310670, + [SMALL_STATE(8383)] = 310757, + [SMALL_STATE(8384)] = 310846, + [SMALL_STATE(8385)] = 310933, + [SMALL_STATE(8386)] = 311020, + [SMALL_STATE(8387)] = 311089, + [SMALL_STATE(8388)] = 311176, + [SMALL_STATE(8389)] = 311265, + [SMALL_STATE(8390)] = 311352, + [SMALL_STATE(8391)] = 311439, + [SMALL_STATE(8392)] = 311526, + [SMALL_STATE(8393)] = 311615, + [SMALL_STATE(8394)] = 311702, + [SMALL_STATE(8395)] = 311771, + [SMALL_STATE(8396)] = 311840, + [SMALL_STATE(8397)] = 311929, + [SMALL_STATE(8398)] = 312016, + [SMALL_STATE(8399)] = 312103, + [SMALL_STATE(8400)] = 312190, + [SMALL_STATE(8401)] = 312279, + [SMALL_STATE(8402)] = 312364, + [SMALL_STATE(8403)] = 312451, + [SMALL_STATE(8404)] = 312538, + [SMALL_STATE(8405)] = 312627, + [SMALL_STATE(8406)] = 312716, + [SMALL_STATE(8407)] = 312805, + [SMALL_STATE(8408)] = 312894, + [SMALL_STATE(8409)] = 312981, + [SMALL_STATE(8410)] = 313070, + [SMALL_STATE(8411)] = 313157, + [SMALL_STATE(8412)] = 313242, + [SMALL_STATE(8413)] = 313329, + [SMALL_STATE(8414)] = 313414, + [SMALL_STATE(8415)] = 313501, + [SMALL_STATE(8416)] = 313590, + [SMALL_STATE(8417)] = 313677, + [SMALL_STATE(8418)] = 313756, + [SMALL_STATE(8419)] = 313845, + [SMALL_STATE(8420)] = 313934, + [SMALL_STATE(8421)] = 314021, + [SMALL_STATE(8422)] = 314110, + [SMALL_STATE(8423)] = 314197, + [SMALL_STATE(8424)] = 314286, + [SMALL_STATE(8425)] = 314373, + [SMALL_STATE(8426)] = 314458, + [SMALL_STATE(8427)] = 314545, + [SMALL_STATE(8428)] = 314594, + [SMALL_STATE(8429)] = 314681, + [SMALL_STATE(8430)] = 314770, + [SMALL_STATE(8431)] = 314859, + [SMALL_STATE(8432)] = 314948, + [SMALL_STATE(8433)] = 315035, + [SMALL_STATE(8434)] = 315122, + [SMALL_STATE(8435)] = 315211, + [SMALL_STATE(8436)] = 315298, + [SMALL_STATE(8437)] = 315387, + [SMALL_STATE(8438)] = 315474, + [SMALL_STATE(8439)] = 315561, + [SMALL_STATE(8440)] = 315648, + [SMALL_STATE(8441)] = 315735, + [SMALL_STATE(8442)] = 315822, + [SMALL_STATE(8443)] = 315909, + [SMALL_STATE(8444)] = 315988, + [SMALL_STATE(8445)] = 316077, + [SMALL_STATE(8446)] = 316166, + [SMALL_STATE(8447)] = 316253, + [SMALL_STATE(8448)] = 316342, + [SMALL_STATE(8449)] = 316429, + [SMALL_STATE(8450)] = 316474, + [SMALL_STATE(8451)] = 316563, + [SMALL_STATE(8452)] = 316650, + [SMALL_STATE(8453)] = 316719, + [SMALL_STATE(8454)] = 316808, + [SMALL_STATE(8455)] = 316897, + [SMALL_STATE(8456)] = 316984, + [SMALL_STATE(8457)] = 317071, + [SMALL_STATE(8458)] = 317160, + [SMALL_STATE(8459)] = 317229, + [SMALL_STATE(8460)] = 317318, + [SMALL_STATE(8461)] = 317407, + [SMALL_STATE(8462)] = 317496, + [SMALL_STATE(8463)] = 317585, + [SMALL_STATE(8464)] = 317672, + [SMALL_STATE(8465)] = 317759, + [SMALL_STATE(8466)] = 317848, + [SMALL_STATE(8467)] = 317933, + [SMALL_STATE(8468)] = 318020, + [SMALL_STATE(8469)] = 318109, + [SMALL_STATE(8470)] = 318196, + [SMALL_STATE(8471)] = 318283, + [SMALL_STATE(8472)] = 318370, + [SMALL_STATE(8473)] = 318448, + [SMALL_STATE(8474)] = 318526, + [SMALL_STATE(8475)] = 318604, + [SMALL_STATE(8476)] = 318682, + [SMALL_STATE(8477)] = 318760, + [SMALL_STATE(8478)] = 318838, + [SMALL_STATE(8479)] = 318916, + [SMALL_STATE(8480)] = 318994, + [SMALL_STATE(8481)] = 319072, + [SMALL_STATE(8482)] = 319150, + [SMALL_STATE(8483)] = 319228, + [SMALL_STATE(8484)] = 319306, + [SMALL_STATE(8485)] = 319384, + [SMALL_STATE(8486)] = 319462, + [SMALL_STATE(8487)] = 319540, + [SMALL_STATE(8488)] = 319624, + [SMALL_STATE(8489)] = 319702, + [SMALL_STATE(8490)] = 319780, + [SMALL_STATE(8491)] = 319858, + [SMALL_STATE(8492)] = 319912, + [SMALL_STATE(8493)] = 319990, + [SMALL_STATE(8494)] = 320068, + [SMALL_STATE(8495)] = 320146, + [SMALL_STATE(8496)] = 320224, + [SMALL_STATE(8497)] = 320302, + [SMALL_STATE(8498)] = 320386, + [SMALL_STATE(8499)] = 320464, + [SMALL_STATE(8500)] = 320542, + [SMALL_STATE(8501)] = 320620, + [SMALL_STATE(8502)] = 320698, + [SMALL_STATE(8503)] = 320776, + [SMALL_STATE(8504)] = 320854, + [SMALL_STATE(8505)] = 320932, + [SMALL_STATE(8506)] = 321010, + [SMALL_STATE(8507)] = 321088, + [SMALL_STATE(8508)] = 321166, + [SMALL_STATE(8509)] = 321244, + [SMALL_STATE(8510)] = 321322, + [SMALL_STATE(8511)] = 321400, + [SMALL_STATE(8512)] = 321478, + [SMALL_STATE(8513)] = 321556, + [SMALL_STATE(8514)] = 321634, + [SMALL_STATE(8515)] = 321712, + [SMALL_STATE(8516)] = 321790, + [SMALL_STATE(8517)] = 321868, + [SMALL_STATE(8518)] = 321946, + [SMALL_STATE(8519)] = 322024, + [SMALL_STATE(8520)] = 322102, + [SMALL_STATE(8521)] = 322180, + [SMALL_STATE(8522)] = 322258, + [SMALL_STATE(8523)] = 322335, + [SMALL_STATE(8524)] = 322412, + [SMALL_STATE(8525)] = 322489, + [SMALL_STATE(8526)] = 322546, + [SMALL_STATE(8527)] = 322629, + [SMALL_STATE(8528)] = 322712, + [SMALL_STATE(8529)] = 322789, + [SMALL_STATE(8530)] = 322866, + [SMALL_STATE(8531)] = 322943, + [SMALL_STATE(8532)] = 323020, + [SMALL_STATE(8533)] = 323097, + [SMALL_STATE(8534)] = 323146, + [SMALL_STATE(8535)] = 323223, + [SMALL_STATE(8536)] = 323300, + [SMALL_STATE(8537)] = 323377, + [SMALL_STATE(8538)] = 323460, + [SMALL_STATE(8539)] = 323537, + [SMALL_STATE(8540)] = 323594, + [SMALL_STATE(8541)] = 323677, + [SMALL_STATE(8542)] = 323730, + [SMALL_STATE(8543)] = 323787, + [SMALL_STATE(8544)] = 323864, + [SMALL_STATE(8545)] = 323941, + [SMALL_STATE(8546)] = 323994, + [SMALL_STATE(8547)] = 324077, + [SMALL_STATE(8548)] = 324160, + [SMALL_STATE(8549)] = 324236, + [SMALL_STATE(8550)] = 324312, + [SMALL_STATE(8551)] = 324388, + [SMALL_STATE(8552)] = 324464, + [SMALL_STATE(8553)] = 324546, + [SMALL_STATE(8554)] = 324622, + [SMALL_STATE(8555)] = 324698, + [SMALL_STATE(8556)] = 324774, + [SMALL_STATE(8557)] = 324850, + [SMALL_STATE(8558)] = 324926, + [SMALL_STATE(8559)] = 325002, + [SMALL_STATE(8560)] = 325078, + [SMALL_STATE(8561)] = 325154, + [SMALL_STATE(8562)] = 325230, + [SMALL_STATE(8563)] = 325299, + [SMALL_STATE(8564)] = 325368, + [SMALL_STATE(8565)] = 325437, + [SMALL_STATE(8566)] = 325506, + [SMALL_STATE(8567)] = 325581, + [SMALL_STATE(8568)] = 325656, + [SMALL_STATE(8569)] = 325731, + [SMALL_STATE(8570)] = 325800, + [SMALL_STATE(8571)] = 325869, + [SMALL_STATE(8572)] = 325944, + [SMALL_STATE(8573)] = 326019, + [SMALL_STATE(8574)] = 326066, + [SMALL_STATE(8575)] = 326141, + [SMALL_STATE(8576)] = 326216, + [SMALL_STATE(8577)] = 326263, + [SMALL_STATE(8578)] = 326335, + [SMALL_STATE(8579)] = 326409, + [SMALL_STATE(8580)] = 326451, + [SMALL_STATE(8581)] = 326491, + [SMALL_STATE(8582)] = 326565, + [SMALL_STATE(8583)] = 326607, + [SMALL_STATE(8584)] = 326649, + [SMALL_STATE(8585)] = 326723, + [SMALL_STATE(8586)] = 326765, + [SMALL_STATE(8587)] = 326807, + [SMALL_STATE(8588)] = 326861, + [SMALL_STATE(8589)] = 326935, + [SMALL_STATE(8590)] = 326977, + [SMALL_STATE(8591)] = 327049, + [SMALL_STATE(8592)] = 327091, + [SMALL_STATE(8593)] = 327133, + [SMALL_STATE(8594)] = 327205, + [SMALL_STATE(8595)] = 327247, + [SMALL_STATE(8596)] = 327319, + [SMALL_STATE(8597)] = 327361, + [SMALL_STATE(8598)] = 327435, + [SMALL_STATE(8599)] = 327509, + [SMALL_STATE(8600)] = 327583, + [SMALL_STATE(8601)] = 327655, + [SMALL_STATE(8602)] = 327729, + [SMALL_STATE(8603)] = 327783, + [SMALL_STATE(8604)] = 327825, + [SMALL_STATE(8605)] = 327899, + [SMALL_STATE(8606)] = 327971, + [SMALL_STATE(8607)] = 328013, + [SMALL_STATE(8608)] = 328087, + [SMALL_STATE(8609)] = 328159, + [SMALL_STATE(8610)] = 328231, + [SMALL_STATE(8611)] = 328305, + [SMALL_STATE(8612)] = 328379, + [SMALL_STATE(8613)] = 328451, + [SMALL_STATE(8614)] = 328523, + [SMALL_STATE(8615)] = 328568, + [SMALL_STATE(8616)] = 328609, + [SMALL_STATE(8617)] = 328654, + [SMALL_STATE(8618)] = 328727, + [SMALL_STATE(8619)] = 328794, + [SMALL_STATE(8620)] = 328867, + [SMALL_STATE(8621)] = 328940, + [SMALL_STATE(8622)] = 328981, + [SMALL_STATE(8623)] = 329022, + [SMALL_STATE(8624)] = 329063, + [SMALL_STATE(8625)] = 329104, + [SMALL_STATE(8626)] = 329171, + [SMALL_STATE(8627)] = 329216, + [SMALL_STATE(8628)] = 329261, + [SMALL_STATE(8629)] = 329302, + [SMALL_STATE(8630)] = 329343, + [SMALL_STATE(8631)] = 329384, + [SMALL_STATE(8632)] = 329425, + [SMALL_STATE(8633)] = 329466, + [SMALL_STATE(8634)] = 329513, + [SMALL_STATE(8635)] = 329560, + [SMALL_STATE(8636)] = 329627, + [SMALL_STATE(8637)] = 329694, + [SMALL_STATE(8638)] = 329761, + [SMALL_STATE(8639)] = 329828, + [SMALL_STATE(8640)] = 329869, + [SMALL_STATE(8641)] = 329910, + [SMALL_STATE(8642)] = 329976, + [SMALL_STATE(8643)] = 330042, + [SMALL_STATE(8644)] = 330108, + [SMALL_STATE(8645)] = 330174, + [SMALL_STATE(8646)] = 330240, + [SMALL_STATE(8647)] = 330306, + [SMALL_STATE(8648)] = 330372, + [SMALL_STATE(8649)] = 330438, + [SMALL_STATE(8650)] = 330504, + [SMALL_STATE(8651)] = 330570, + [SMALL_STATE(8652)] = 330636, + [SMALL_STATE(8653)] = 330702, + [SMALL_STATE(8654)] = 330768, + [SMALL_STATE(8655)] = 330834, + [SMALL_STATE(8656)] = 330900, + [SMALL_STATE(8657)] = 330966, + [SMALL_STATE(8658)] = 331032, + [SMALL_STATE(8659)] = 331098, + [SMALL_STATE(8660)] = 331163, + [SMALL_STATE(8661)] = 331228, + [SMALL_STATE(8662)] = 331293, + [SMALL_STATE(8663)] = 331358, + [SMALL_STATE(8664)] = 331421, + [SMALL_STATE(8665)] = 331486, + [SMALL_STATE(8666)] = 331549, + [SMALL_STATE(8667)] = 331612, + [SMALL_STATE(8668)] = 331675, + [SMALL_STATE(8669)] = 331756, + [SMALL_STATE(8670)] = 331819, + [SMALL_STATE(8671)] = 331882, + [SMALL_STATE(8672)] = 331945, + [SMALL_STATE(8673)] = 332008, + [SMALL_STATE(8674)] = 332089, + [SMALL_STATE(8675)] = 332170, + [SMALL_STATE(8676)] = 332211, + [SMALL_STATE(8677)] = 332278, + [SMALL_STATE(8678)] = 332341, + [SMALL_STATE(8679)] = 332404, + [SMALL_STATE(8680)] = 332467, + [SMALL_STATE(8681)] = 332530, + [SMALL_STATE(8682)] = 332593, + [SMALL_STATE(8683)] = 332656, + [SMALL_STATE(8684)] = 332721, + [SMALL_STATE(8685)] = 332786, + [SMALL_STATE(8686)] = 332849, + [SMALL_STATE(8687)] = 332912, + [SMALL_STATE(8688)] = 332977, + [SMALL_STATE(8689)] = 333042, + [SMALL_STATE(8690)] = 333109, + [SMALL_STATE(8691)] = 333174, + [SMALL_STATE(8692)] = 333237, + [SMALL_STATE(8693)] = 333302, + [SMALL_STATE(8694)] = 333365, + [SMALL_STATE(8695)] = 333432, + [SMALL_STATE(8696)] = 333495, + [SMALL_STATE(8697)] = 333558, + [SMALL_STATE(8698)] = 333623, + [SMALL_STATE(8699)] = 333688, + [SMALL_STATE(8700)] = 333751, + [SMALL_STATE(8701)] = 333814, + [SMALL_STATE(8702)] = 333877, + [SMALL_STATE(8703)] = 333940, + [SMALL_STATE(8704)] = 334003, + [SMALL_STATE(8705)] = 334068, + [SMALL_STATE(8706)] = 334135, + [SMALL_STATE(8707)] = 334198, + [SMALL_STATE(8708)] = 334265, + [SMALL_STATE(8709)] = 334328, + [SMALL_STATE(8710)] = 334395, + [SMALL_STATE(8711)] = 334458, + [SMALL_STATE(8712)] = 334523, + [SMALL_STATE(8713)] = 334590, + [SMALL_STATE(8714)] = 334655, + [SMALL_STATE(8715)] = 334718, + [SMALL_STATE(8716)] = 334785, + [SMALL_STATE(8717)] = 334852, + [SMALL_STATE(8718)] = 334917, + [SMALL_STATE(8719)] = 334984, + [SMALL_STATE(8720)] = 335047, + [SMALL_STATE(8721)] = 335110, + [SMALL_STATE(8722)] = 335173, + [SMALL_STATE(8723)] = 335240, + [SMALL_STATE(8724)] = 335303, + [SMALL_STATE(8725)] = 335366, + [SMALL_STATE(8726)] = 335429, + [SMALL_STATE(8727)] = 335492, + [SMALL_STATE(8728)] = 335555, + [SMALL_STATE(8729)] = 335618, + [SMALL_STATE(8730)] = 335681, + [SMALL_STATE(8731)] = 335744, + [SMALL_STATE(8732)] = 335807, + [SMALL_STATE(8733)] = 335872, + [SMALL_STATE(8734)] = 335953, + [SMALL_STATE(8735)] = 336016, + [SMALL_STATE(8736)] = 336079, + [SMALL_STATE(8737)] = 336142, + [SMALL_STATE(8738)] = 336205, + [SMALL_STATE(8739)] = 336268, + [SMALL_STATE(8740)] = 336307, + [SMALL_STATE(8741)] = 336370, + [SMALL_STATE(8742)] = 336433, + [SMALL_STATE(8743)] = 336503, + [SMALL_STATE(8744)] = 336573, + [SMALL_STATE(8745)] = 336643, + [SMALL_STATE(8746)] = 336713, + [SMALL_STATE(8747)] = 336783, + [SMALL_STATE(8748)] = 336853, + [SMALL_STATE(8749)] = 336923, + [SMALL_STATE(8750)] = 336993, + [SMALL_STATE(8751)] = 337063, + [SMALL_STATE(8752)] = 337133, + [SMALL_STATE(8753)] = 337203, + [SMALL_STATE(8754)] = 337277, + [SMALL_STATE(8755)] = 337347, + [SMALL_STATE(8756)] = 337417, + [SMALL_STATE(8757)] = 337487, + [SMALL_STATE(8758)] = 337557, + [SMALL_STATE(8759)] = 337627, + [SMALL_STATE(8760)] = 337697, + [SMALL_STATE(8761)] = 337767, + [SMALL_STATE(8762)] = 337837, + [SMALL_STATE(8763)] = 337907, + [SMALL_STATE(8764)] = 337977, + [SMALL_STATE(8765)] = 338047, + [SMALL_STATE(8766)] = 338117, + [SMALL_STATE(8767)] = 338187, + [SMALL_STATE(8768)] = 338257, + [SMALL_STATE(8769)] = 338327, + [SMALL_STATE(8770)] = 338397, + [SMALL_STATE(8771)] = 338467, + [SMALL_STATE(8772)] = 338537, + [SMALL_STATE(8773)] = 338607, + [SMALL_STATE(8774)] = 338677, + [SMALL_STATE(8775)] = 338751, + [SMALL_STATE(8776)] = 338821, + [SMALL_STATE(8777)] = 338891, + [SMALL_STATE(8778)] = 338961, + [SMALL_STATE(8779)] = 339031, + [SMALL_STATE(8780)] = 339101, + [SMALL_STATE(8781)] = 339171, + [SMALL_STATE(8782)] = 339229, + [SMALL_STATE(8783)] = 339299, + [SMALL_STATE(8784)] = 339369, + [SMALL_STATE(8785)] = 339439, + [SMALL_STATE(8786)] = 339509, + [SMALL_STATE(8787)] = 339579, + [SMALL_STATE(8788)] = 339649, + [SMALL_STATE(8789)] = 339719, + [SMALL_STATE(8790)] = 339789, + [SMALL_STATE(8791)] = 339859, + [SMALL_STATE(8792)] = 339929, + [SMALL_STATE(8793)] = 339999, + [SMALL_STATE(8794)] = 340069, + [SMALL_STATE(8795)] = 340139, + [SMALL_STATE(8796)] = 340209, + [SMALL_STATE(8797)] = 340279, + [SMALL_STATE(8798)] = 340349, + [SMALL_STATE(8799)] = 340419, + [SMALL_STATE(8800)] = 340489, + [SMALL_STATE(8801)] = 340559, + [SMALL_STATE(8802)] = 340629, + [SMALL_STATE(8803)] = 340699, + [SMALL_STATE(8804)] = 340769, + [SMALL_STATE(8805)] = 340839, + [SMALL_STATE(8806)] = 340909, + [SMALL_STATE(8807)] = 340979, + [SMALL_STATE(8808)] = 341049, + [SMALL_STATE(8809)] = 341119, + [SMALL_STATE(8810)] = 341189, + [SMALL_STATE(8811)] = 341259, + [SMALL_STATE(8812)] = 341329, + [SMALL_STATE(8813)] = 341403, + [SMALL_STATE(8814)] = 341473, + [SMALL_STATE(8815)] = 341543, + [SMALL_STATE(8816)] = 341613, + [SMALL_STATE(8817)] = 341683, + [SMALL_STATE(8818)] = 341753, + [SMALL_STATE(8819)] = 341823, + [SMALL_STATE(8820)] = 341893, + [SMALL_STATE(8821)] = 341963, + [SMALL_STATE(8822)] = 342033, + [SMALL_STATE(8823)] = 342103, + [SMALL_STATE(8824)] = 342161, + [SMALL_STATE(8825)] = 342231, + [SMALL_STATE(8826)] = 342301, + [SMALL_STATE(8827)] = 342371, + [SMALL_STATE(8828)] = 342441, + [SMALL_STATE(8829)] = 342511, + [SMALL_STATE(8830)] = 342581, + [SMALL_STATE(8831)] = 342655, + [SMALL_STATE(8832)] = 342695, + [SMALL_STATE(8833)] = 342765, + [SMALL_STATE(8834)] = 342835, + [SMALL_STATE(8835)] = 342899, + [SMALL_STATE(8836)] = 342963, + [SMALL_STATE(8837)] = 343027, + [SMALL_STATE(8838)] = 343097, + [SMALL_STATE(8839)] = 343167, + [SMALL_STATE(8840)] = 343231, + [SMALL_STATE(8841)] = 343295, + [SMALL_STATE(8842)] = 343359, + [SMALL_STATE(8843)] = 343429, + [SMALL_STATE(8844)] = 343499, + [SMALL_STATE(8845)] = 343569, + [SMALL_STATE(8846)] = 343639, + [SMALL_STATE(8847)] = 343709, + [SMALL_STATE(8848)] = 343779, + [SMALL_STATE(8849)] = 343849, + [SMALL_STATE(8850)] = 343919, + [SMALL_STATE(8851)] = 343989, + [SMALL_STATE(8852)] = 344047, + [SMALL_STATE(8853)] = 344117, + [SMALL_STATE(8854)] = 344187, + [SMALL_STATE(8855)] = 344257, + [SMALL_STATE(8856)] = 344331, + [SMALL_STATE(8857)] = 344401, + [SMALL_STATE(8858)] = 344471, + [SMALL_STATE(8859)] = 344541, + [SMALL_STATE(8860)] = 344611, + [SMALL_STATE(8861)] = 344681, + [SMALL_STATE(8862)] = 344751, + [SMALL_STATE(8863)] = 344821, + [SMALL_STATE(8864)] = 344891, + [SMALL_STATE(8865)] = 344949, + [SMALL_STATE(8866)] = 344989, + [SMALL_STATE(8867)] = 345047, + [SMALL_STATE(8868)] = 345117, + [SMALL_STATE(8869)] = 345157, + [SMALL_STATE(8870)] = 345227, + [SMALL_STATE(8871)] = 345297, + [SMALL_STATE(8872)] = 345367, + [SMALL_STATE(8873)] = 345441, + [SMALL_STATE(8874)] = 345511, + [SMALL_STATE(8875)] = 345581, + [SMALL_STATE(8876)] = 345651, + [SMALL_STATE(8877)] = 345721, + [SMALL_STATE(8878)] = 345791, + [SMALL_STATE(8879)] = 345861, + [SMALL_STATE(8880)] = 345931, + [SMALL_STATE(8881)] = 346001, + [SMALL_STATE(8882)] = 346071, + [SMALL_STATE(8883)] = 346141, + [SMALL_STATE(8884)] = 346211, + [SMALL_STATE(8885)] = 346281, + [SMALL_STATE(8886)] = 346351, + [SMALL_STATE(8887)] = 346421, + [SMALL_STATE(8888)] = 346484, + [SMALL_STATE(8889)] = 346559, + [SMALL_STATE(8890)] = 346622, + [SMALL_STATE(8891)] = 346685, + [SMALL_STATE(8892)] = 346760, + [SMALL_STATE(8893)] = 346835, + [SMALL_STATE(8894)] = 346872, + [SMALL_STATE(8895)] = 346935, + [SMALL_STATE(8896)] = 346998, + [SMALL_STATE(8897)] = 347073, + [SMALL_STATE(8898)] = 347136, + [SMALL_STATE(8899)] = 347199, + [SMALL_STATE(8900)] = 347274, + [SMALL_STATE(8901)] = 347349, + [SMALL_STATE(8902)] = 347412, + [SMALL_STATE(8903)] = 347475, + [SMALL_STATE(8904)] = 347538, + [SMALL_STATE(8905)] = 347613, + [SMALL_STATE(8906)] = 347688, + [SMALL_STATE(8907)] = 347751, + [SMALL_STATE(8908)] = 347826, + [SMALL_STATE(8909)] = 347889, + [SMALL_STATE(8910)] = 347964, + [SMALL_STATE(8911)] = 348039, + [SMALL_STATE(8912)] = 348102, + [SMALL_STATE(8913)] = 348177, + [SMALL_STATE(8914)] = 348252, + [SMALL_STATE(8915)] = 348315, + [SMALL_STATE(8916)] = 348378, + [SMALL_STATE(8917)] = 348441, + [SMALL_STATE(8918)] = 348504, + [SMALL_STATE(8919)] = 348579, + [SMALL_STATE(8920)] = 348642, + [SMALL_STATE(8921)] = 348717, + [SMALL_STATE(8922)] = 348792, + [SMALL_STATE(8923)] = 348855, + [SMALL_STATE(8924)] = 348918, + [SMALL_STATE(8925)] = 348993, + [SMALL_STATE(8926)] = 349056, + [SMALL_STATE(8927)] = 349119, + [SMALL_STATE(8928)] = 349182, + [SMALL_STATE(8929)] = 349245, + [SMALL_STATE(8930)] = 349320, + [SMALL_STATE(8931)] = 349395, + [SMALL_STATE(8932)] = 349438, + [SMALL_STATE(8933)] = 349501, + [SMALL_STATE(8934)] = 349576, + [SMALL_STATE(8935)] = 349651, + [SMALL_STATE(8936)] = 349714, + [SMALL_STATE(8937)] = 349777, + [SMALL_STATE(8938)] = 349852, + [SMALL_STATE(8939)] = 349927, + [SMALL_STATE(8940)] = 349990, + [SMALL_STATE(8941)] = 350053, + [SMALL_STATE(8942)] = 350096, + [SMALL_STATE(8943)] = 350159, + [SMALL_STATE(8944)] = 350234, + [SMALL_STATE(8945)] = 350267, + [SMALL_STATE(8946)] = 350330, + [SMALL_STATE(8947)] = 350405, + [SMALL_STATE(8948)] = 350468, + [SMALL_STATE(8949)] = 350531, + [SMALL_STATE(8950)] = 350594, + [SMALL_STATE(8951)] = 350657, + [SMALL_STATE(8952)] = 350720, + [SMALL_STATE(8953)] = 350783, + [SMALL_STATE(8954)] = 350846, + [SMALL_STATE(8955)] = 350909, + [SMALL_STATE(8956)] = 350972, + [SMALL_STATE(8957)] = 351047, + [SMALL_STATE(8958)] = 351110, + [SMALL_STATE(8959)] = 351173, + [SMALL_STATE(8960)] = 351236, + [SMALL_STATE(8961)] = 351311, + [SMALL_STATE(8962)] = 351374, + [SMALL_STATE(8963)] = 351437, + [SMALL_STATE(8964)] = 351500, + [SMALL_STATE(8965)] = 351563, + [SMALL_STATE(8966)] = 351626, + [SMALL_STATE(8967)] = 351689, + [SMALL_STATE(8968)] = 351752, + [SMALL_STATE(8969)] = 351815, + [SMALL_STATE(8970)] = 351878, + [SMALL_STATE(8971)] = 351910, + [SMALL_STATE(8972)] = 351942, + [SMALL_STATE(8973)] = 352016, + [SMALL_STATE(8974)] = 352048, + [SMALL_STATE(8975)] = 352110, + [SMALL_STATE(8976)] = 352178, + [SMALL_STATE(8977)] = 352252, + [SMALL_STATE(8978)] = 352286, + [SMALL_STATE(8979)] = 352320, + [SMALL_STATE(8980)] = 352352, + [SMALL_STATE(8981)] = 352388, + [SMALL_STATE(8982)] = 352450, + [SMALL_STATE(8983)] = 352524, + [SMALL_STATE(8984)] = 352586, + [SMALL_STATE(8985)] = 352640, + [SMALL_STATE(8986)] = 352708, + [SMALL_STATE(8987)] = 352742, + [SMALL_STATE(8988)] = 352810, + [SMALL_STATE(8989)] = 352878, + [SMALL_STATE(8990)] = 352946, + [SMALL_STATE(8991)] = 352977, + [SMALL_STATE(8992)] = 353036, + [SMALL_STATE(8993)] = 353095, + [SMALL_STATE(8994)] = 353128, + [SMALL_STATE(8995)] = 353187, + [SMALL_STATE(8996)] = 353246, + [SMALL_STATE(8997)] = 353277, + [SMALL_STATE(8998)] = 353336, + [SMALL_STATE(8999)] = 353395, + [SMALL_STATE(9000)] = 353454, + [SMALL_STATE(9001)] = 353493, + [SMALL_STATE(9002)] = 353524, + [SMALL_STATE(9003)] = 353583, + [SMALL_STATE(9004)] = 353642, + [SMALL_STATE(9005)] = 353673, + [SMALL_STATE(9006)] = 353704, + [SMALL_STATE(9007)] = 353739, + [SMALL_STATE(9008)] = 353798, + [SMALL_STATE(9009)] = 353837, + [SMALL_STATE(9010)] = 353876, + [SMALL_STATE(9011)] = 353935, + [SMALL_STATE(9012)] = 353966, + [SMALL_STATE(9013)] = 354025, + [SMALL_STATE(9014)] = 354084, + [SMALL_STATE(9015)] = 354119, + [SMALL_STATE(9016)] = 354178, + [SMALL_STATE(9017)] = 354209, + [SMALL_STATE(9018)] = 354240, + [SMALL_STATE(9019)] = 354299, + [SMALL_STATE(9020)] = 354338, + [SMALL_STATE(9021)] = 354373, + [SMALL_STATE(9022)] = 354432, + [SMALL_STATE(9023)] = 354463, + [SMALL_STATE(9024)] = 354494, + [SMALL_STATE(9025)] = 354525, + [SMALL_STATE(9026)] = 354556, + [SMALL_STATE(9027)] = 354595, + [SMALL_STATE(9028)] = 354634, + [SMALL_STATE(9029)] = 354665, + [SMALL_STATE(9030)] = 354724, + [SMALL_STATE(9031)] = 354755, + [SMALL_STATE(9032)] = 354786, + [SMALL_STATE(9033)] = 354821, + [SMALL_STATE(9034)] = 354880, + [SMALL_STATE(9035)] = 354919, + [SMALL_STATE(9036)] = 354950, + [SMALL_STATE(9037)] = 354981, + [SMALL_STATE(9038)] = 355040, + [SMALL_STATE(9039)] = 355079, + [SMALL_STATE(9040)] = 355118, + [SMALL_STATE(9041)] = 355177, + [SMALL_STATE(9042)] = 355236, + [SMALL_STATE(9043)] = 355267, + [SMALL_STATE(9044)] = 355326, + [SMALL_STATE(9045)] = 355385, + [SMALL_STATE(9046)] = 355416, + [SMALL_STATE(9047)] = 355475, + [SMALL_STATE(9048)] = 355534, + [SMALL_STATE(9049)] = 355565, + [SMALL_STATE(9050)] = 355624, + [SMALL_STATE(9051)] = 355663, + [SMALL_STATE(9052)] = 355722, + [SMALL_STATE(9053)] = 355781, + [SMALL_STATE(9054)] = 355823, + [SMALL_STATE(9055)] = 355857, + [SMALL_STATE(9056)] = 355887, + [SMALL_STATE(9057)] = 355929, + [SMALL_STATE(9058)] = 355971, + [SMALL_STATE(9059)] = 356013, + [SMALL_STATE(9060)] = 356055, + [SMALL_STATE(9061)] = 356085, + [SMALL_STATE(9062)] = 356115, + [SMALL_STATE(9063)] = 356157, + [SMALL_STATE(9064)] = 356199, + [SMALL_STATE(9065)] = 356253, + [SMALL_STATE(9066)] = 356283, + [SMALL_STATE(9067)] = 356325, + [SMALL_STATE(9068)] = 356379, + [SMALL_STATE(9069)] = 356422, + [SMALL_STATE(9070)] = 356473, + [SMALL_STATE(9071)] = 356526, + [SMALL_STATE(9072)] = 356577, + [SMALL_STATE(9073)] = 356628, + [SMALL_STATE(9074)] = 356681, + [SMALL_STATE(9075)] = 356734, + [SMALL_STATE(9076)] = 356785, + [SMALL_STATE(9077)] = 356846, + [SMALL_STATE(9078)] = 356887, + [SMALL_STATE(9079)] = 356928, + [SMALL_STATE(9080)] = 356969, + [SMALL_STATE(9081)] = 357010, + [SMALL_STATE(9082)] = 357063, + [SMALL_STATE(9083)] = 357124, + [SMALL_STATE(9084)] = 357157, + [SMALL_STATE(9085)] = 357208, + [SMALL_STATE(9086)] = 357263, + [SMALL_STATE(9087)] = 357314, + [SMALL_STATE(9088)] = 357349, + [SMALL_STATE(9089)] = 357400, + [SMALL_STATE(9090)] = 357451, + [SMALL_STATE(9091)] = 357504, + [SMALL_STATE(9092)] = 357555, + [SMALL_STATE(9093)] = 357606, + [SMALL_STATE(9094)] = 357649, + [SMALL_STATE(9095)] = 357702, + [SMALL_STATE(9096)] = 357753, + [SMALL_STATE(9097)] = 357794, + [SMALL_STATE(9098)] = 357829, + [SMALL_STATE(9099)] = 357860, + [SMALL_STATE(9100)] = 357893, + [SMALL_STATE(9101)] = 357934, + [SMALL_STATE(9102)] = 357975, + [SMALL_STATE(9103)] = 358036, + [SMALL_STATE(9104)] = 358077, + [SMALL_STATE(9105)] = 358130, + [SMALL_STATE(9106)] = 358181, + [SMALL_STATE(9107)] = 358232, + [SMALL_STATE(9108)] = 358283, + [SMALL_STATE(9109)] = 358316, + [SMALL_STATE(9110)] = 358351, + [SMALL_STATE(9111)] = 358404, + [SMALL_STATE(9112)] = 358455, + [SMALL_STATE(9113)] = 358498, + [SMALL_STATE(9114)] = 358549, + [SMALL_STATE(9115)] = 358578, + [SMALL_STATE(9116)] = 358607, + [SMALL_STATE(9117)] = 358658, + [SMALL_STATE(9118)] = 358709, + [SMALL_STATE(9119)] = 358738, + [SMALL_STATE(9120)] = 358767, + [SMALL_STATE(9121)] = 358818, + [SMALL_STATE(9122)] = 358871, + [SMALL_STATE(9123)] = 358900, + [SMALL_STATE(9124)] = 358953, + [SMALL_STATE(9125)] = 359004, + [SMALL_STATE(9126)] = 359059, + [SMALL_STATE(9127)] = 359110, + [SMALL_STATE(9128)] = 359171, + [SMALL_STATE(9129)] = 359222, + [SMALL_STATE(9130)] = 359275, + [SMALL_STATE(9131)] = 359336, + [SMALL_STATE(9132)] = 359387, + [SMALL_STATE(9133)] = 359440, + [SMALL_STATE(9134)] = 359493, + [SMALL_STATE(9135)] = 359546, + [SMALL_STATE(9136)] = 359597, + [SMALL_STATE(9137)] = 359650, + [SMALL_STATE(9138)] = 359711, + [SMALL_STATE(9139)] = 359772, + [SMALL_STATE(9140)] = 359827, + [SMALL_STATE(9141)] = 359878, + [SMALL_STATE(9142)] = 359933, + [SMALL_STATE(9143)] = 359973, + [SMALL_STATE(9144)] = 360023, + [SMALL_STATE(9145)] = 360069, + [SMALL_STATE(9146)] = 360109, + [SMALL_STATE(9147)] = 360137, + [SMALL_STATE(9148)] = 360187, + [SMALL_STATE(9149)] = 360237, + [SMALL_STATE(9150)] = 360287, + [SMALL_STATE(9151)] = 360339, + [SMALL_STATE(9152)] = 360389, + [SMALL_STATE(9153)] = 360417, + [SMALL_STATE(9154)] = 360457, + [SMALL_STATE(9155)] = 360507, + [SMALL_STATE(9156)] = 360559, + [SMALL_STATE(9157)] = 360599, + [SMALL_STATE(9158)] = 360631, + [SMALL_STATE(9159)] = 360671, + [SMALL_STATE(9160)] = 360715, + [SMALL_STATE(9161)] = 360743, + [SMALL_STATE(9162)] = 360783, + [SMALL_STATE(9163)] = 360833, + [SMALL_STATE(9164)] = 360873, + [SMALL_STATE(9165)] = 360923, + [SMALL_STATE(9166)] = 360963, + [SMALL_STATE(9167)] = 361003, + [SMALL_STATE(9168)] = 361053, + [SMALL_STATE(9169)] = 361081, + [SMALL_STATE(9170)] = 361109, + [SMALL_STATE(9171)] = 361149, + [SMALL_STATE(9172)] = 361189, + [SMALL_STATE(9173)] = 361239, + [SMALL_STATE(9174)] = 361267, + [SMALL_STATE(9175)] = 361295, + [SMALL_STATE(9176)] = 361335, + [SMALL_STATE(9177)] = 361375, + [SMALL_STATE(9178)] = 361415, + [SMALL_STATE(9179)] = 361455, + [SMALL_STATE(9180)] = 361495, + [SMALL_STATE(9181)] = 361535, + [SMALL_STATE(9182)] = 361575, + [SMALL_STATE(9183)] = 361625, + [SMALL_STATE(9184)] = 361665, + [SMALL_STATE(9185)] = 361705, + [SMALL_STATE(9186)] = 361745, + [SMALL_STATE(9187)] = 361795, + [SMALL_STATE(9188)] = 361835, + [SMALL_STATE(9189)] = 361875, + [SMALL_STATE(9190)] = 361925, + [SMALL_STATE(9191)] = 361965, + [SMALL_STATE(9192)] = 362005, + [SMALL_STATE(9193)] = 362045, + [SMALL_STATE(9194)] = 362087, + [SMALL_STATE(9195)] = 362127, + [SMALL_STATE(9196)] = 362167, + [SMALL_STATE(9197)] = 362207, + [SMALL_STATE(9198)] = 362259, + [SMALL_STATE(9199)] = 362287, + [SMALL_STATE(9200)] = 362315, + [SMALL_STATE(9201)] = 362355, + [SMALL_STATE(9202)] = 362405, + [SMALL_STATE(9203)] = 362453, + [SMALL_STATE(9204)] = 362505, + [SMALL_STATE(9205)] = 362555, + [SMALL_STATE(9206)] = 362591, + [SMALL_STATE(9207)] = 362631, + [SMALL_STATE(9208)] = 362671, + [SMALL_STATE(9209)] = 362711, + [SMALL_STATE(9210)] = 362751, + [SMALL_STATE(9211)] = 362791, + [SMALL_STATE(9212)] = 362837, + [SMALL_STATE(9213)] = 362871, + [SMALL_STATE(9214)] = 362911, + [SMALL_STATE(9215)] = 362961, + [SMALL_STATE(9216)] = 363001, + [SMALL_STATE(9217)] = 363041, + [SMALL_STATE(9218)] = 363081, + [SMALL_STATE(9219)] = 363121, + [SMALL_STATE(9220)] = 363173, + [SMALL_STATE(9221)] = 363223, + [SMALL_STATE(9222)] = 363273, + [SMALL_STATE(9223)] = 363313, + [SMALL_STATE(9224)] = 363341, + [SMALL_STATE(9225)] = 363373, + [SMALL_STATE(9226)] = 363423, + [SMALL_STATE(9227)] = 363463, + [SMALL_STATE(9228)] = 363503, + [SMALL_STATE(9229)] = 363543, + [SMALL_STATE(9230)] = 363570, + [SMALL_STATE(9231)] = 363621, + [SMALL_STATE(9232)] = 363672, + [SMALL_STATE(9233)] = 363723, + [SMALL_STATE(9234)] = 363774, + [SMALL_STATE(9235)] = 363825, + [SMALL_STATE(9236)] = 363876, + [SMALL_STATE(9237)] = 363913, + [SMALL_STATE(9238)] = 363964, + [SMALL_STATE(9239)] = 364013, + [SMALL_STATE(9240)] = 364046, + [SMALL_STATE(9241)] = 364097, + [SMALL_STATE(9242)] = 364142, + [SMALL_STATE(9243)] = 364181, + [SMALL_STATE(9244)] = 364220, + [SMALL_STATE(9245)] = 364259, + [SMALL_STATE(9246)] = 364298, + [SMALL_STATE(9247)] = 364349, + [SMALL_STATE(9248)] = 364386, + [SMALL_STATE(9249)] = 364433, + [SMALL_STATE(9250)] = 364478, + [SMALL_STATE(9251)] = 364505, + [SMALL_STATE(9252)] = 364550, + [SMALL_STATE(9253)] = 364599, + [SMALL_STATE(9254)] = 364626, + [SMALL_STATE(9255)] = 364671, + [SMALL_STATE(9256)] = 364718, + [SMALL_STATE(9257)] = 364763, + [SMALL_STATE(9258)] = 364790, + [SMALL_STATE(9259)] = 364817, + [SMALL_STATE(9260)] = 364844, + [SMALL_STATE(9261)] = 364871, + [SMALL_STATE(9262)] = 364918, + [SMALL_STATE(9263)] = 364951, + [SMALL_STATE(9264)] = 364978, + [SMALL_STATE(9265)] = 365025, + [SMALL_STATE(9266)] = 365052, + [SMALL_STATE(9267)] = 365081, + [SMALL_STATE(9268)] = 365128, + [SMALL_STATE(9269)] = 365179, + [SMALL_STATE(9270)] = 365212, + [SMALL_STATE(9271)] = 365239, + [SMALL_STATE(9272)] = 365272, + [SMALL_STATE(9273)] = 365317, + [SMALL_STATE(9274)] = 365368, + [SMALL_STATE(9275)] = 365395, + [SMALL_STATE(9276)] = 365440, + [SMALL_STATE(9277)] = 365487, + [SMALL_STATE(9278)] = 365534, + [SMALL_STATE(9279)] = 365589, + [SMALL_STATE(9280)] = 365634, + [SMALL_STATE(9281)] = 365673, + [SMALL_STATE(9282)] = 365720, + [SMALL_STATE(9283)] = 365765, + [SMALL_STATE(9284)] = 365804, + [SMALL_STATE(9285)] = 365855, + [SMALL_STATE(9286)] = 365894, + [SMALL_STATE(9287)] = 365921, + [SMALL_STATE(9288)] = 365960, + [SMALL_STATE(9289)] = 365997, + [SMALL_STATE(9290)] = 366048, + [SMALL_STATE(9291)] = 366093, + [SMALL_STATE(9292)] = 366140, + [SMALL_STATE(9293)] = 366187, + [SMALL_STATE(9294)] = 366214, + [SMALL_STATE(9295)] = 366241, + [SMALL_STATE(9296)] = 366268, + [SMALL_STATE(9297)] = 366315, + [SMALL_STATE(9298)] = 366366, + [SMALL_STATE(9299)] = 366413, + [SMALL_STATE(9300)] = 366440, + [SMALL_STATE(9301)] = 366469, + [SMALL_STATE(9302)] = 366498, + [SMALL_STATE(9303)] = 366525, + [SMALL_STATE(9304)] = 366572, + [SMALL_STATE(9305)] = 366599, + [SMALL_STATE(9306)] = 366626, + [SMALL_STATE(9307)] = 366671, + [SMALL_STATE(9308)] = 366698, + [SMALL_STATE(9309)] = 366735, + [SMALL_STATE(9310)] = 366780, + [SMALL_STATE(9311)] = 366807, + [SMALL_STATE(9312)] = 366854, + [SMALL_STATE(9313)] = 366905, + [SMALL_STATE(9314)] = 366932, + [SMALL_STATE(9315)] = 366983, + [SMALL_STATE(9316)] = 367010, + [SMALL_STATE(9317)] = 367037, + [SMALL_STATE(9318)] = 367070, + [SMALL_STATE(9319)] = 367097, + [SMALL_STATE(9320)] = 367124, + [SMALL_STATE(9321)] = 367153, + [SMALL_STATE(9322)] = 367198, + [SMALL_STATE(9323)] = 367225, + [SMALL_STATE(9324)] = 367270, + [SMALL_STATE(9325)] = 367313, + [SMALL_STATE(9326)] = 367354, + [SMALL_STATE(9327)] = 367393, + [SMALL_STATE(9328)] = 367430, + [SMALL_STATE(9329)] = 367465, + [SMALL_STATE(9330)] = 367498, + [SMALL_STATE(9331)] = 367529, + [SMALL_STATE(9332)] = 367574, + [SMALL_STATE(9333)] = 367601, + [SMALL_STATE(9334)] = 367652, + [SMALL_STATE(9335)] = 367703, + [SMALL_STATE(9336)] = 367730, + [SMALL_STATE(9337)] = 367779, + [SMALL_STATE(9338)] = 367824, + [SMALL_STATE(9339)] = 367869, + [SMALL_STATE(9340)] = 367924, + [SMALL_STATE(9341)] = 367975, + [SMALL_STATE(9342)] = 368012, + [SMALL_STATE(9343)] = 368063, + [SMALL_STATE(9344)] = 368108, + [SMALL_STATE(9345)] = 368135, + [SMALL_STATE(9346)] = 368162, + [SMALL_STATE(9347)] = 368209, + [SMALL_STATE(9348)] = 368260, + [SMALL_STATE(9349)] = 368287, + [SMALL_STATE(9350)] = 368314, + [SMALL_STATE(9351)] = 368363, + [SMALL_STATE(9352)] = 368410, + [SMALL_STATE(9353)] = 368437, + [SMALL_STATE(9354)] = 368486, + [SMALL_STATE(9355)] = 368533, + [SMALL_STATE(9356)] = 368560, + [SMALL_STATE(9357)] = 368587, + [SMALL_STATE(9358)] = 368632, + [SMALL_STATE(9359)] = 368661, + [SMALL_STATE(9360)] = 368712, + [SMALL_STATE(9361)] = 368761, + [SMALL_STATE(9362)] = 368788, + [SMALL_STATE(9363)] = 368815, + [SMALL_STATE(9364)] = 368842, + [SMALL_STATE(9365)] = 368893, + [SMALL_STATE(9366)] = 368920, + [SMALL_STATE(9367)] = 368947, + [SMALL_STATE(9368)] = 368974, + [SMALL_STATE(9369)] = 369001, + [SMALL_STATE(9370)] = 369048, + [SMALL_STATE(9371)] = 369099, + [SMALL_STATE(9372)] = 369150, + [SMALL_STATE(9373)] = 369177, + [SMALL_STATE(9374)] = 369228, + [SMALL_STATE(9375)] = 369280, + [SMALL_STATE(9376)] = 369306, + [SMALL_STATE(9377)] = 369338, + [SMALL_STATE(9378)] = 369372, + [SMALL_STATE(9379)] = 369398, + [SMALL_STATE(9380)] = 369432, + [SMALL_STATE(9381)] = 369458, + [SMALL_STATE(9382)] = 369512, + [SMALL_STATE(9383)] = 369562, + [SMALL_STATE(9384)] = 369588, + [SMALL_STATE(9385)] = 369614, + [SMALL_STATE(9386)] = 369668, + [SMALL_STATE(9387)] = 369718, + [SMALL_STATE(9388)] = 369752, + [SMALL_STATE(9389)] = 369782, + [SMALL_STATE(9390)] = 369816, + [SMALL_STATE(9391)] = 369844, + [SMALL_STATE(9392)] = 369874, + [SMALL_STATE(9393)] = 369908, + [SMALL_STATE(9394)] = 369942, + [SMALL_STATE(9395)] = 369976, + [SMALL_STATE(9396)] = 370010, + [SMALL_STATE(9397)] = 370044, + [SMALL_STATE(9398)] = 370078, + [SMALL_STATE(9399)] = 370112, + [SMALL_STATE(9400)] = 370146, + [SMALL_STATE(9401)] = 370180, + [SMALL_STATE(9402)] = 370232, + [SMALL_STATE(9403)] = 370258, + [SMALL_STATE(9404)] = 370292, + [SMALL_STATE(9405)] = 370344, + [SMALL_STATE(9406)] = 370398, + [SMALL_STATE(9407)] = 370452, + [SMALL_STATE(9408)] = 370478, + [SMALL_STATE(9409)] = 370514, + [SMALL_STATE(9410)] = 370568, + [SMALL_STATE(9411)] = 370602, + [SMALL_STATE(9412)] = 370652, + [SMALL_STATE(9413)] = 370686, + [SMALL_STATE(9414)] = 370712, + [SMALL_STATE(9415)] = 370738, + [SMALL_STATE(9416)] = 370792, + [SMALL_STATE(9417)] = 370818, + [SMALL_STATE(9418)] = 370844, + [SMALL_STATE(9419)] = 370894, + [SMALL_STATE(9420)] = 370940, + [SMALL_STATE(9421)] = 370994, + [SMALL_STATE(9422)] = 371030, + [SMALL_STATE(9423)] = 371080, + [SMALL_STATE(9424)] = 371106, + [SMALL_STATE(9425)] = 371136, + [SMALL_STATE(9426)] = 371184, + [SMALL_STATE(9427)] = 371232, + [SMALL_STATE(9428)] = 371258, + [SMALL_STATE(9429)] = 371288, + [SMALL_STATE(9430)] = 371318, + [SMALL_STATE(9431)] = 371354, + [SMALL_STATE(9432)] = 371404, + [SMALL_STATE(9433)] = 371458, + [SMALL_STATE(9434)] = 371488, + [SMALL_STATE(9435)] = 371524, + [SMALL_STATE(9436)] = 371560, + [SMALL_STATE(9437)] = 371586, + [SMALL_STATE(9438)] = 371620, + [SMALL_STATE(9439)] = 371654, + [SMALL_STATE(9440)] = 371680, + [SMALL_STATE(9441)] = 371706, + [SMALL_STATE(9442)] = 371758, + [SMALL_STATE(9443)] = 371784, + [SMALL_STATE(9444)] = 371810, + [SMALL_STATE(9445)] = 371836, + [SMALL_STATE(9446)] = 371862, + [SMALL_STATE(9447)] = 371914, + [SMALL_STATE(9448)] = 371951, + [SMALL_STATE(9449)] = 371988, + [SMALL_STATE(9450)] = 372025, + [SMALL_STATE(9451)] = 372062, + [SMALL_STATE(9452)] = 372099, + [SMALL_STATE(9453)] = 372146, + [SMALL_STATE(9454)] = 372189, + [SMALL_STATE(9455)] = 372236, + [SMALL_STATE(9456)] = 372267, + [SMALL_STATE(9457)] = 372314, + [SMALL_STATE(9458)] = 372361, + [SMALL_STATE(9459)] = 372398, + [SMALL_STATE(9460)] = 372441, + [SMALL_STATE(9461)] = 372488, + [SMALL_STATE(9462)] = 372529, + [SMALL_STATE(9463)] = 372576, + [SMALL_STATE(9464)] = 372623, + [SMALL_STATE(9465)] = 372660, + [SMALL_STATE(9466)] = 372697, + [SMALL_STATE(9467)] = 372734, + [SMALL_STATE(9468)] = 372771, + [SMALL_STATE(9469)] = 372808, + [SMALL_STATE(9470)] = 372855, + [SMALL_STATE(9471)] = 372902, + [SMALL_STATE(9472)] = 372939, + [SMALL_STATE(9473)] = 372986, + [SMALL_STATE(9474)] = 373019, + [SMALL_STATE(9475)] = 373070, + [SMALL_STATE(9476)] = 373107, + [SMALL_STATE(9477)] = 373138, + [SMALL_STATE(9478)] = 373171, + [SMALL_STATE(9479)] = 373218, + [SMALL_STATE(9480)] = 373251, + [SMALL_STATE(9481)] = 373298, + [SMALL_STATE(9482)] = 373325, + [SMALL_STATE(9483)] = 373362, + [SMALL_STATE(9484)] = 373391, + [SMALL_STATE(9485)] = 373438, + [SMALL_STATE(9486)] = 373485, + [SMALL_STATE(9487)] = 373532, + [SMALL_STATE(9488)] = 373569, + [SMALL_STATE(9489)] = 373602, + [SMALL_STATE(9490)] = 373635, + [SMALL_STATE(9491)] = 373682, + [SMALL_STATE(9492)] = 373729, + [SMALL_STATE(9493)] = 373766, + [SMALL_STATE(9494)] = 373813, + [SMALL_STATE(9495)] = 373844, + [SMALL_STATE(9496)] = 373875, + [SMALL_STATE(9497)] = 373912, + [SMALL_STATE(9498)] = 373959, + [SMALL_STATE(9499)] = 373992, + [SMALL_STATE(9500)] = 374023, + [SMALL_STATE(9501)] = 374060, + [SMALL_STATE(9502)] = 374093, + [SMALL_STATE(9503)] = 374118, + [SMALL_STATE(9504)] = 374161, + [SMALL_STATE(9505)] = 374202, + [SMALL_STATE(9506)] = 374249, + [SMALL_STATE(9507)] = 374282, + [SMALL_STATE(9508)] = 374311, + [SMALL_STATE(9509)] = 374358, + [SMALL_STATE(9510)] = 374405, + [SMALL_STATE(9511)] = 374438, + [SMALL_STATE(9512)] = 374469, + [SMALL_STATE(9513)] = 374506, + [SMALL_STATE(9514)] = 374553, + [SMALL_STATE(9515)] = 374596, + [SMALL_STATE(9516)] = 374643, + [SMALL_STATE(9517)] = 374690, + [SMALL_STATE(9518)] = 374727, + [SMALL_STATE(9519)] = 374764, + [SMALL_STATE(9520)] = 374801, + [SMALL_STATE(9521)] = 374838, + [SMALL_STATE(9522)] = 374885, + [SMALL_STATE(9523)] = 374922, + [SMALL_STATE(9524)] = 374969, + [SMALL_STATE(9525)] = 374993, + [SMALL_STATE(9526)] = 375037, + [SMALL_STATE(9527)] = 375081, + [SMALL_STATE(9528)] = 375113, + [SMALL_STATE(9529)] = 375157, + [SMALL_STATE(9530)] = 375181, + [SMALL_STATE(9531)] = 375225, + [SMALL_STATE(9532)] = 375269, + [SMALL_STATE(9533)] = 375293, + [SMALL_STATE(9534)] = 375337, + [SMALL_STATE(9535)] = 375371, + [SMALL_STATE(9536)] = 375403, + [SMALL_STATE(9537)] = 375427, + [SMALL_STATE(9538)] = 375461, + [SMALL_STATE(9539)] = 375505, + [SMALL_STATE(9540)] = 375529, + [SMALL_STATE(9541)] = 375553, + [SMALL_STATE(9542)] = 375577, + [SMALL_STATE(9543)] = 375611, + [SMALL_STATE(9544)] = 375643, + [SMALL_STATE(9545)] = 375687, + [SMALL_STATE(9546)] = 375731, + [SMALL_STATE(9547)] = 375763, + [SMALL_STATE(9548)] = 375807, + [SMALL_STATE(9549)] = 375839, + [SMALL_STATE(9550)] = 375873, + [SMALL_STATE(9551)] = 375917, + [SMALL_STATE(9552)] = 375949, + [SMALL_STATE(9553)] = 375973, + [SMALL_STATE(9554)] = 376019, + [SMALL_STATE(9555)] = 376063, + [SMALL_STATE(9556)] = 376107, + [SMALL_STATE(9557)] = 376131, + [SMALL_STATE(9558)] = 376155, + [SMALL_STATE(9559)] = 376179, + [SMALL_STATE(9560)] = 376223, + [SMALL_STATE(9561)] = 376267, + [SMALL_STATE(9562)] = 376311, + [SMALL_STATE(9563)] = 376335, + [SMALL_STATE(9564)] = 376379, + [SMALL_STATE(9565)] = 376403, + [SMALL_STATE(9566)] = 376447, + [SMALL_STATE(9567)] = 376471, + [SMALL_STATE(9568)] = 376507, + [SMALL_STATE(9569)] = 376531, + [SMALL_STATE(9570)] = 376575, + [SMALL_STATE(9571)] = 376599, + [SMALL_STATE(9572)] = 376633, + [SMALL_STATE(9573)] = 376657, + [SMALL_STATE(9574)] = 376701, + [SMALL_STATE(9575)] = 376737, + [SMALL_STATE(9576)] = 376773, + [SMALL_STATE(9577)] = 376797, + [SMALL_STATE(9578)] = 376833, + [SMALL_STATE(9579)] = 376869, + [SMALL_STATE(9580)] = 376893, + [SMALL_STATE(9581)] = 376937, + [SMALL_STATE(9582)] = 376973, + [SMALL_STATE(9583)] = 377017, + [SMALL_STATE(9584)] = 377061, + [SMALL_STATE(9585)] = 377105, + [SMALL_STATE(9586)] = 377129, + [SMALL_STATE(9587)] = 377173, + [SMALL_STATE(9588)] = 377217, + [SMALL_STATE(9589)] = 377241, + [SMALL_STATE(9590)] = 377265, + [SMALL_STATE(9591)] = 377289, + [SMALL_STATE(9592)] = 377333, + [SMALL_STATE(9593)] = 377377, + [SMALL_STATE(9594)] = 377411, + [SMALL_STATE(9595)] = 377435, + [SMALL_STATE(9596)] = 377459, + [SMALL_STATE(9597)] = 377495, + [SMALL_STATE(9598)] = 377529, + [SMALL_STATE(9599)] = 377573, + [SMALL_STATE(9600)] = 377617, + [SMALL_STATE(9601)] = 377661, + [SMALL_STATE(9602)] = 377693, + [SMALL_STATE(9603)] = 377737, + [SMALL_STATE(9604)] = 377781, + [SMALL_STATE(9605)] = 377805, + [SMALL_STATE(9606)] = 377849, + [SMALL_STATE(9607)] = 377893, + [SMALL_STATE(9608)] = 377917, + [SMALL_STATE(9609)] = 377961, + [SMALL_STATE(9610)] = 378005, + [SMALL_STATE(9611)] = 378029, + [SMALL_STATE(9612)] = 378053, + [SMALL_STATE(9613)] = 378089, + [SMALL_STATE(9614)] = 378133, + [SMALL_STATE(9615)] = 378177, + [SMALL_STATE(9616)] = 378201, + [SMALL_STATE(9617)] = 378225, + [SMALL_STATE(9618)] = 378249, + [SMALL_STATE(9619)] = 378273, + [SMALL_STATE(9620)] = 378317, + [SMALL_STATE(9621)] = 378353, + [SMALL_STATE(9622)] = 378377, + [SMALL_STATE(9623)] = 378401, + [SMALL_STATE(9624)] = 378445, + [SMALL_STATE(9625)] = 378487, + [SMALL_STATE(9626)] = 378531, + [SMALL_STATE(9627)] = 378555, + [SMALL_STATE(9628)] = 378579, + [SMALL_STATE(9629)] = 378623, + [SMALL_STATE(9630)] = 378667, + [SMALL_STATE(9631)] = 378691, + [SMALL_STATE(9632)] = 378715, + [SMALL_STATE(9633)] = 378759, + [SMALL_STATE(9634)] = 378783, + [SMALL_STATE(9635)] = 378807, + [SMALL_STATE(9636)] = 378831, + [SMALL_STATE(9637)] = 378857, + [SMALL_STATE(9638)] = 378901, + [SMALL_STATE(9639)] = 378945, + [SMALL_STATE(9640)] = 378977, + [SMALL_STATE(9641)] = 379021, + [SMALL_STATE(9642)] = 379065, + [SMALL_STATE(9643)] = 379089, + [SMALL_STATE(9644)] = 379113, + [SMALL_STATE(9645)] = 379137, + [SMALL_STATE(9646)] = 379181, + [SMALL_STATE(9647)] = 379225, + [SMALL_STATE(9648)] = 379269, + [SMALL_STATE(9649)] = 379297, + [SMALL_STATE(9650)] = 379321, + [SMALL_STATE(9651)] = 379345, + [SMALL_STATE(9652)] = 379389, + [SMALL_STATE(9653)] = 379433, + [SMALL_STATE(9654)] = 379477, + [SMALL_STATE(9655)] = 379521, + [SMALL_STATE(9656)] = 379553, + [SMALL_STATE(9657)] = 379577, + [SMALL_STATE(9658)] = 379621, + [SMALL_STATE(9659)] = 379645, + [SMALL_STATE(9660)] = 379689, + [SMALL_STATE(9661)] = 379721, + [SMALL_STATE(9662)] = 379755, + [SMALL_STATE(9663)] = 379779, + [SMALL_STATE(9664)] = 379803, + [SMALL_STATE(9665)] = 379839, + [SMALL_STATE(9666)] = 379875, + [SMALL_STATE(9667)] = 379911, + [SMALL_STATE(9668)] = 379947, + [SMALL_STATE(9669)] = 379971, + [SMALL_STATE(9670)] = 380015, + [SMALL_STATE(9671)] = 380056, + [SMALL_STATE(9672)] = 380085, + [SMALL_STATE(9673)] = 380114, + [SMALL_STATE(9674)] = 380149, + [SMALL_STATE(9675)] = 380178, + [SMALL_STATE(9676)] = 380213, + [SMALL_STATE(9677)] = 380248, + [SMALL_STATE(9678)] = 380275, + [SMALL_STATE(9679)] = 380308, + [SMALL_STATE(9680)] = 380347, + [SMALL_STATE(9681)] = 380382, + [SMALL_STATE(9682)] = 380417, + [SMALL_STATE(9683)] = 380452, + [SMALL_STATE(9684)] = 380487, + [SMALL_STATE(9685)] = 380522, + [SMALL_STATE(9686)] = 380563, + [SMALL_STATE(9687)] = 380598, + [SMALL_STATE(9688)] = 380641, + [SMALL_STATE(9689)] = 380670, + [SMALL_STATE(9690)] = 380703, + [SMALL_STATE(9691)] = 380736, + [SMALL_STATE(9692)] = 380765, + [SMALL_STATE(9693)] = 380804, + [SMALL_STATE(9694)] = 380839, + [SMALL_STATE(9695)] = 380874, + [SMALL_STATE(9696)] = 380909, + [SMALL_STATE(9697)] = 380944, + [SMALL_STATE(9698)] = 380979, + [SMALL_STATE(9699)] = 381008, + [SMALL_STATE(9700)] = 381043, + [SMALL_STATE(9701)] = 381078, + [SMALL_STATE(9702)] = 381113, + [SMALL_STATE(9703)] = 381142, + [SMALL_STATE(9704)] = 381171, + [SMALL_STATE(9705)] = 381200, + [SMALL_STATE(9706)] = 381229, + [SMALL_STATE(9707)] = 381258, + [SMALL_STATE(9708)] = 381287, + [SMALL_STATE(9709)] = 381316, + [SMALL_STATE(9710)] = 381347, + [SMALL_STATE(9711)] = 381382, + [SMALL_STATE(9712)] = 381417, + [SMALL_STATE(9713)] = 381446, + [SMALL_STATE(9714)] = 381485, + [SMALL_STATE(9715)] = 381516, + [SMALL_STATE(9716)] = 381545, + [SMALL_STATE(9717)] = 381586, + [SMALL_STATE(9718)] = 381619, + [SMALL_STATE(9719)] = 381652, + [SMALL_STATE(9720)] = 381681, + [SMALL_STATE(9721)] = 381710, + [SMALL_STATE(9722)] = 381739, + [SMALL_STATE(9723)] = 381772, + [SMALL_STATE(9724)] = 381801, + [SMALL_STATE(9725)] = 381830, + [SMALL_STATE(9726)] = 381859, + [SMALL_STATE(9727)] = 381900, + [SMALL_STATE(9728)] = 381935, + [SMALL_STATE(9729)] = 381968, + [SMALL_STATE(9730)] = 381997, + [SMALL_STATE(9731)] = 382026, + [SMALL_STATE(9732)] = 382055, + [SMALL_STATE(9733)] = 382086, + [SMALL_STATE(9734)] = 382117, + [SMALL_STATE(9735)] = 382148, + [SMALL_STATE(9736)] = 382179, + [SMALL_STATE(9737)] = 382210, + [SMALL_STATE(9738)] = 382239, + [SMALL_STATE(9739)] = 382268, + [SMALL_STATE(9740)] = 382301, + [SMALL_STATE(9741)] = 382330, + [SMALL_STATE(9742)] = 382359, + [SMALL_STATE(9743)] = 382398, + [SMALL_STATE(9744)] = 382433, + [SMALL_STATE(9745)] = 382464, + [SMALL_STATE(9746)] = 382506, + [SMALL_STATE(9747)] = 382548, + [SMALL_STATE(9748)] = 382586, + [SMALL_STATE(9749)] = 382628, + [SMALL_STATE(9750)] = 382668, + [SMALL_STATE(9751)] = 382708, + [SMALL_STATE(9752)] = 382748, + [SMALL_STATE(9753)] = 382770, + [SMALL_STATE(9754)] = 382808, + [SMALL_STATE(9755)] = 382846, + [SMALL_STATE(9756)] = 382888, + [SMALL_STATE(9757)] = 382926, + [SMALL_STATE(9758)] = 382968, + [SMALL_STATE(9759)] = 383010, + [SMALL_STATE(9760)] = 383052, + [SMALL_STATE(9761)] = 383094, + [SMALL_STATE(9762)] = 383136, + [SMALL_STATE(9763)] = 383174, + [SMALL_STATE(9764)] = 383216, + [SMALL_STATE(9765)] = 383250, + [SMALL_STATE(9766)] = 383282, + [SMALL_STATE(9767)] = 383312, + [SMALL_STATE(9768)] = 383344, + [SMALL_STATE(9769)] = 383370, + [SMALL_STATE(9770)] = 383412, + [SMALL_STATE(9771)] = 383454, + [SMALL_STATE(9772)] = 383484, + [SMALL_STATE(9773)] = 383516, + [SMALL_STATE(9774)] = 383548, + [SMALL_STATE(9775)] = 383578, + [SMALL_STATE(9776)] = 383610, + [SMALL_STATE(9777)] = 383644, + [SMALL_STATE(9778)] = 383674, + [SMALL_STATE(9779)] = 383712, + [SMALL_STATE(9780)] = 383746, + [SMALL_STATE(9781)] = 383788, + [SMALL_STATE(9782)] = 383818, + [SMALL_STATE(9783)] = 383848, + [SMALL_STATE(9784)] = 383880, + [SMALL_STATE(9785)] = 383910, + [SMALL_STATE(9786)] = 383950, + [SMALL_STATE(9787)] = 383982, + [SMALL_STATE(9788)] = 384012, + [SMALL_STATE(9789)] = 384044, + [SMALL_STATE(9790)] = 384086, + [SMALL_STATE(9791)] = 384128, + [SMALL_STATE(9792)] = 384170, + [SMALL_STATE(9793)] = 384208, + [SMALL_STATE(9794)] = 384248, + [SMALL_STATE(9795)] = 384288, + [SMALL_STATE(9796)] = 384330, + [SMALL_STATE(9797)] = 384360, + [SMALL_STATE(9798)] = 384398, + [SMALL_STATE(9799)] = 384436, + [SMALL_STATE(9800)] = 384458, + [SMALL_STATE(9801)] = 384482, + [SMALL_STATE(9802)] = 384520, + [SMALL_STATE(9803)] = 384542, + [SMALL_STATE(9804)] = 384584, + [SMALL_STATE(9805)] = 384624, + [SMALL_STATE(9806)] = 384666, + [SMALL_STATE(9807)] = 384688, + [SMALL_STATE(9808)] = 384728, + [SMALL_STATE(9809)] = 384770, + [SMALL_STATE(9810)] = 384810, + [SMALL_STATE(9811)] = 384836, + [SMALL_STATE(9812)] = 384878, + [SMALL_STATE(9813)] = 384920, + [SMALL_STATE(9814)] = 384950, + [SMALL_STATE(9815)] = 384992, + [SMALL_STATE(9816)] = 385034, + [SMALL_STATE(9817)] = 385076, + [SMALL_STATE(9818)] = 385118, + [SMALL_STATE(9819)] = 385160, + [SMALL_STATE(9820)] = 385182, + [SMALL_STATE(9821)] = 385220, + [SMALL_STATE(9822)] = 385258, + [SMALL_STATE(9823)] = 385300, + [SMALL_STATE(9824)] = 385340, + [SMALL_STATE(9825)] = 385382, + [SMALL_STATE(9826)] = 385406, + [SMALL_STATE(9827)] = 385444, + [SMALL_STATE(9828)] = 385486, + [SMALL_STATE(9829)] = 385526, + [SMALL_STATE(9830)] = 385568, + [SMALL_STATE(9831)] = 385610, + [SMALL_STATE(9832)] = 385650, + [SMALL_STATE(9833)] = 385692, + [SMALL_STATE(9834)] = 385734, + [SMALL_STATE(9835)] = 385772, + [SMALL_STATE(9836)] = 385812, + [SMALL_STATE(9837)] = 385854, + [SMALL_STATE(9838)] = 385896, + [SMALL_STATE(9839)] = 385936, + [SMALL_STATE(9840)] = 385978, + [SMALL_STATE(9841)] = 386020, + [SMALL_STATE(9842)] = 386060, + [SMALL_STATE(9843)] = 386094, + [SMALL_STATE(9844)] = 386128, + [SMALL_STATE(9845)] = 386170, + [SMALL_STATE(9846)] = 386210, + [SMALL_STATE(9847)] = 386252, + [SMALL_STATE(9848)] = 386278, + [SMALL_STATE(9849)] = 386311, + [SMALL_STATE(9850)] = 386344, + [SMALL_STATE(9851)] = 386377, + [SMALL_STATE(9852)] = 386404, + [SMALL_STATE(9853)] = 386431, + [SMALL_STATE(9854)] = 386464, + [SMALL_STATE(9855)] = 386497, + [SMALL_STATE(9856)] = 386524, + [SMALL_STATE(9857)] = 386551, + [SMALL_STATE(9858)] = 386578, + [SMALL_STATE(9859)] = 386611, + [SMALL_STATE(9860)] = 386644, + [SMALL_STATE(9861)] = 386677, + [SMALL_STATE(9862)] = 386706, + [SMALL_STATE(9863)] = 386735, + [SMALL_STATE(9864)] = 386762, + [SMALL_STATE(9865)] = 386795, + [SMALL_STATE(9866)] = 386830, + [SMALL_STATE(9867)] = 386865, + [SMALL_STATE(9868)] = 386894, + [SMALL_STATE(9869)] = 386925, + [SMALL_STATE(9870)] = 386958, + [SMALL_STATE(9871)] = 386991, + [SMALL_STATE(9872)] = 387016, + [SMALL_STATE(9873)] = 387043, + [SMALL_STATE(9874)] = 387076, + [SMALL_STATE(9875)] = 387111, + [SMALL_STATE(9876)] = 387144, + [SMALL_STATE(9877)] = 387171, + [SMALL_STATE(9878)] = 387204, + [SMALL_STATE(9879)] = 387237, + [SMALL_STATE(9880)] = 387272, + [SMALL_STATE(9881)] = 387307, + [SMALL_STATE(9882)] = 387334, + [SMALL_STATE(9883)] = 387363, + [SMALL_STATE(9884)] = 387398, + [SMALL_STATE(9885)] = 387427, + [SMALL_STATE(9886)] = 387452, + [SMALL_STATE(9887)] = 387485, + [SMALL_STATE(9888)] = 387518, + [SMALL_STATE(9889)] = 387545, + [SMALL_STATE(9890)] = 387578, + [SMALL_STATE(9891)] = 387611, + [SMALL_STATE(9892)] = 387648, + [SMALL_STATE(9893)] = 387685, + [SMALL_STATE(9894)] = 387718, + [SMALL_STATE(9895)] = 387751, + [SMALL_STATE(9896)] = 387772, + [SMALL_STATE(9897)] = 387799, + [SMALL_STATE(9898)] = 387834, + [SMALL_STATE(9899)] = 387863, + [SMALL_STATE(9900)] = 387896, + [SMALL_STATE(9901)] = 387929, + [SMALL_STATE(9902)] = 387956, + [SMALL_STATE(9903)] = 387991, + [SMALL_STATE(9904)] = 388024, + [SMALL_STATE(9905)] = 388059, + [SMALL_STATE(9906)] = 388086, + [SMALL_STATE(9907)] = 388119, + [SMALL_STATE(9908)] = 388148, + [SMALL_STATE(9909)] = 388181, + [SMALL_STATE(9910)] = 388208, + [SMALL_STATE(9911)] = 388241, + [SMALL_STATE(9912)] = 388274, + [SMALL_STATE(9913)] = 388307, + [SMALL_STATE(9914)] = 388334, + [SMALL_STATE(9915)] = 388367, + [SMALL_STATE(9916)] = 388400, + [SMALL_STATE(9917)] = 388427, + [SMALL_STATE(9918)] = 388456, + [SMALL_STATE(9919)] = 388489, + [SMALL_STATE(9920)] = 388522, + [SMALL_STATE(9921)] = 388555, + [SMALL_STATE(9922)] = 388582, + [SMALL_STATE(9923)] = 388609, + [SMALL_STATE(9924)] = 388642, + [SMALL_STATE(9925)] = 388675, + [SMALL_STATE(9926)] = 388708, + [SMALL_STATE(9927)] = 388741, + [SMALL_STATE(9928)] = 388774, + [SMALL_STATE(9929)] = 388807, + [SMALL_STATE(9930)] = 388840, + [SMALL_STATE(9931)] = 388867, + [SMALL_STATE(9932)] = 388897, + [SMALL_STATE(9933)] = 388917, + [SMALL_STATE(9934)] = 388937, + [SMALL_STATE(9935)] = 388967, + [SMALL_STATE(9936)] = 388993, + [SMALL_STATE(9937)] = 389023, + [SMALL_STATE(9938)] = 389043, + [SMALL_STATE(9939)] = 389063, + [SMALL_STATE(9940)] = 389089, + [SMALL_STATE(9941)] = 389115, + [SMALL_STATE(9942)] = 389145, + [SMALL_STATE(9943)] = 389169, + [SMALL_STATE(9944)] = 389197, + [SMALL_STATE(9945)] = 389225, + [SMALL_STATE(9946)] = 389251, + [SMALL_STATE(9947)] = 389279, + [SMALL_STATE(9948)] = 389301, + [SMALL_STATE(9949)] = 389329, + [SMALL_STATE(9950)] = 389355, + [SMALL_STATE(9951)] = 389375, + [SMALL_STATE(9952)] = 389411, + [SMALL_STATE(9953)] = 389431, + [SMALL_STATE(9954)] = 389461, + [SMALL_STATE(9955)] = 389487, + [SMALL_STATE(9956)] = 389509, + [SMALL_STATE(9957)] = 389529, + [SMALL_STATE(9958)] = 389549, + [SMALL_STATE(9959)] = 389577, + [SMALL_STATE(9960)] = 389607, + [SMALL_STATE(9961)] = 389637, + [SMALL_STATE(9962)] = 389657, + [SMALL_STATE(9963)] = 389685, + [SMALL_STATE(9964)] = 389711, + [SMALL_STATE(9965)] = 389737, + [SMALL_STATE(9966)] = 389765, + [SMALL_STATE(9967)] = 389791, + [SMALL_STATE(9968)] = 389811, + [SMALL_STATE(9969)] = 389841, + [SMALL_STATE(9970)] = 389869, + [SMALL_STATE(9971)] = 389899, + [SMALL_STATE(9972)] = 389922, + [SMALL_STATE(9973)] = 389945, + [SMALL_STATE(9974)] = 389968, + [SMALL_STATE(9975)] = 389995, + [SMALL_STATE(9976)] = 390026, + [SMALL_STATE(9977)] = 390055, + [SMALL_STATE(9978)] = 390090, + [SMALL_STATE(9979)] = 390117, + [SMALL_STATE(9980)] = 390134, + [SMALL_STATE(9981)] = 390159, + [SMALL_STATE(9982)] = 390178, + [SMALL_STATE(9983)] = 390197, + [SMALL_STATE(9984)] = 390222, + [SMALL_STATE(9985)] = 390245, + [SMALL_STATE(9986)] = 390276, + [SMALL_STATE(9987)] = 390305, + [SMALL_STATE(9988)] = 390340, + [SMALL_STATE(9989)] = 390363, + [SMALL_STATE(9990)] = 390390, + [SMALL_STATE(9991)] = 390421, + [SMALL_STATE(9992)] = 390450, + [SMALL_STATE(9993)] = 390477, + [SMALL_STATE(9994)] = 390504, + [SMALL_STATE(9995)] = 390527, + [SMALL_STATE(9996)] = 390554, + [SMALL_STATE(9997)] = 390577, + [SMALL_STATE(9998)] = 390608, + [SMALL_STATE(9999)] = 390637, + [SMALL_STATE(10000)] = 390660, + [SMALL_STATE(10001)] = 390691, + [SMALL_STATE(10002)] = 390714, + [SMALL_STATE(10003)] = 390749, + [SMALL_STATE(10004)] = 390766, + [SMALL_STATE(10005)] = 390795, + [SMALL_STATE(10006)] = 390830, + [SMALL_STATE(10007)] = 390861, + [SMALL_STATE(10008)] = 390880, + [SMALL_STATE(10009)] = 390911, + [SMALL_STATE(10010)] = 390942, + [SMALL_STATE(10011)] = 390971, + [SMALL_STATE(10012)] = 390988, + [SMALL_STATE(10013)] = 391023, + [SMALL_STATE(10014)] = 391040, + [SMALL_STATE(10015)] = 391067, + [SMALL_STATE(10016)] = 391094, + [SMALL_STATE(10017)] = 391129, + [SMALL_STATE(10018)] = 391152, + [SMALL_STATE(10019)] = 391169, + [SMALL_STATE(10020)] = 391188, + [SMALL_STATE(10021)] = 391223, + [SMALL_STATE(10022)] = 391254, + [SMALL_STATE(10023)] = 391279, + [SMALL_STATE(10024)] = 391314, + [SMALL_STATE(10025)] = 391345, + [SMALL_STATE(10026)] = 391380, + [SMALL_STATE(10027)] = 391403, + [SMALL_STATE(10028)] = 391428, + [SMALL_STATE(10029)] = 391453, + [SMALL_STATE(10030)] = 391482, + [SMALL_STATE(10031)] = 391511, + [SMALL_STATE(10032)] = 391544, + [SMALL_STATE(10033)] = 391579, + [SMALL_STATE(10034)] = 391598, + [SMALL_STATE(10035)] = 391625, + [SMALL_STATE(10036)] = 391660, + [SMALL_STATE(10037)] = 391685, + [SMALL_STATE(10038)] = 391720, + [SMALL_STATE(10039)] = 391747, + [SMALL_STATE(10040)] = 391776, + [SMALL_STATE(10041)] = 391801, + [SMALL_STATE(10042)] = 391832, + [SMALL_STATE(10043)] = 391861, + [SMALL_STATE(10044)] = 391886, + [SMALL_STATE(10045)] = 391909, + [SMALL_STATE(10046)] = 391928, + [SMALL_STATE(10047)] = 391947, + [SMALL_STATE(10048)] = 391974, + [SMALL_STATE(10049)] = 391997, + [SMALL_STATE(10050)] = 392024, + [SMALL_STATE(10051)] = 392047, + [SMALL_STATE(10052)] = 392082, + [SMALL_STATE(10053)] = 392109, + [SMALL_STATE(10054)] = 392132, + [SMALL_STATE(10055)] = 392157, + [SMALL_STATE(10056)] = 392184, + [SMALL_STATE(10057)] = 392213, + [SMALL_STATE(10058)] = 392244, + [SMALL_STATE(10059)] = 392271, + [SMALL_STATE(10060)] = 392306, + [SMALL_STATE(10061)] = 392333, + [SMALL_STATE(10062)] = 392356, + [SMALL_STATE(10063)] = 392381, + [SMALL_STATE(10064)] = 392412, + [SMALL_STATE(10065)] = 392434, + [SMALL_STATE(10066)] = 392458, + [SMALL_STATE(10067)] = 392488, + [SMALL_STATE(10068)] = 392518, + [SMALL_STATE(10069)] = 392540, + [SMALL_STATE(10070)] = 392568, + [SMALL_STATE(10071)] = 392590, + [SMALL_STATE(10072)] = 392616, + [SMALL_STATE(10073)] = 392642, + [SMALL_STATE(10074)] = 392668, + [SMALL_STATE(10075)] = 392700, + [SMALL_STATE(10076)] = 392724, + [SMALL_STATE(10077)] = 392746, + [SMALL_STATE(10078)] = 392770, + [SMALL_STATE(10079)] = 392792, + [SMALL_STATE(10080)] = 392816, + [SMALL_STATE(10081)] = 392838, + [SMALL_STATE(10082)] = 392860, + [SMALL_STATE(10083)] = 392882, + [SMALL_STATE(10084)] = 392904, + [SMALL_STATE(10085)] = 392926, + [SMALL_STATE(10086)] = 392950, + [SMALL_STATE(10087)] = 392972, + [SMALL_STATE(10088)] = 392996, + [SMALL_STATE(10089)] = 393012, + [SMALL_STATE(10090)] = 393034, + [SMALL_STATE(10091)] = 393058, + [SMALL_STATE(10092)] = 393082, + [SMALL_STATE(10093)] = 393108, + [SMALL_STATE(10094)] = 393132, + [SMALL_STATE(10095)] = 393156, + [SMALL_STATE(10096)] = 393178, + [SMALL_STATE(10097)] = 393202, + [SMALL_STATE(10098)] = 393226, + [SMALL_STATE(10099)] = 393250, + [SMALL_STATE(10100)] = 393272, + [SMALL_STATE(10101)] = 393296, + [SMALL_STATE(10102)] = 393320, + [SMALL_STATE(10103)] = 393347, + [SMALL_STATE(10104)] = 393370, + [SMALL_STATE(10105)] = 393401, + [SMALL_STATE(10106)] = 393428, + [SMALL_STATE(10107)] = 393451, + [SMALL_STATE(10108)] = 393472, + [SMALL_STATE(10109)] = 393495, + [SMALL_STATE(10110)] = 393516, + [SMALL_STATE(10111)] = 393547, + [SMALL_STATE(10112)] = 393570, + [SMALL_STATE(10113)] = 393597, + [SMALL_STATE(10114)] = 393620, + [SMALL_STATE(10115)] = 393651, + [SMALL_STATE(10116)] = 393680, + [SMALL_STATE(10117)] = 393711, + [SMALL_STATE(10118)] = 393738, + [SMALL_STATE(10119)] = 393755, + [SMALL_STATE(10120)] = 393786, + [SMALL_STATE(10121)] = 393809, + [SMALL_STATE(10122)] = 393826, + [SMALL_STATE(10123)] = 393853, + [SMALL_STATE(10124)] = 393884, + [SMALL_STATE(10125)] = 393907, + [SMALL_STATE(10126)] = 393928, + [SMALL_STATE(10127)] = 393951, + [SMALL_STATE(10128)] = 393980, + [SMALL_STATE(10129)] = 394011, + [SMALL_STATE(10130)] = 394042, + [SMALL_STATE(10131)] = 394063, + [SMALL_STATE(10132)] = 394091, + [SMALL_STATE(10133)] = 394109, + [SMALL_STATE(10134)] = 394135, + [SMALL_STATE(10135)] = 394161, + [SMALL_STATE(10136)] = 394187, + [SMALL_STATE(10137)] = 394215, + [SMALL_STATE(10138)] = 394241, + [SMALL_STATE(10139)] = 394263, + [SMALL_STATE(10140)] = 394289, + [SMALL_STATE(10141)] = 394317, + [SMALL_STATE(10142)] = 394345, + [SMALL_STATE(10143)] = 394365, + [SMALL_STATE(10144)] = 394389, + [SMALL_STATE(10145)] = 394413, + [SMALL_STATE(10146)] = 394439, + [SMALL_STATE(10147)] = 394463, + [SMALL_STATE(10148)] = 394489, + [SMALL_STATE(10149)] = 394515, + [SMALL_STATE(10150)] = 394539, + [SMALL_STATE(10151)] = 394565, + [SMALL_STATE(10152)] = 394585, + [SMALL_STATE(10153)] = 394607, + [SMALL_STATE(10154)] = 394633, + [SMALL_STATE(10155)] = 394657, + [SMALL_STATE(10156)] = 394683, + [SMALL_STATE(10157)] = 394709, + [SMALL_STATE(10158)] = 394731, + [SMALL_STATE(10159)] = 394759, + [SMALL_STATE(10160)] = 394785, + [SMALL_STATE(10161)] = 394811, + [SMALL_STATE(10162)] = 394833, + [SMALL_STATE(10163)] = 394857, + [SMALL_STATE(10164)] = 394885, + [SMALL_STATE(10165)] = 394913, + [SMALL_STATE(10166)] = 394939, + [SMALL_STATE(10167)] = 394961, + [SMALL_STATE(10168)] = 394987, + [SMALL_STATE(10169)] = 395013, + [SMALL_STATE(10170)] = 395039, + [SMALL_STATE(10171)] = 395059, + [SMALL_STATE(10172)] = 395085, + [SMALL_STATE(10173)] = 395113, + [SMALL_STATE(10174)] = 395141, + [SMALL_STATE(10175)] = 395167, + [SMALL_STATE(10176)] = 395193, + [SMALL_STATE(10177)] = 395219, + [SMALL_STATE(10178)] = 395245, + [SMALL_STATE(10179)] = 395271, + [SMALL_STATE(10180)] = 395297, + [SMALL_STATE(10181)] = 395325, + [SMALL_STATE(10182)] = 395351, + [SMALL_STATE(10183)] = 395377, + [SMALL_STATE(10184)] = 395401, + [SMALL_STATE(10185)] = 395427, + [SMALL_STATE(10186)] = 395453, + [SMALL_STATE(10187)] = 395481, + [SMALL_STATE(10188)] = 395507, + [SMALL_STATE(10189)] = 395533, + [SMALL_STATE(10190)] = 395559, + [SMALL_STATE(10191)] = 395585, + [SMALL_STATE(10192)] = 395611, + [SMALL_STATE(10193)] = 395639, + [SMALL_STATE(10194)] = 395665, + [SMALL_STATE(10195)] = 395685, + [SMALL_STATE(10196)] = 395709, + [SMALL_STATE(10197)] = 395735, + [SMALL_STATE(10198)] = 395761, + [SMALL_STATE(10199)] = 395787, + [SMALL_STATE(10200)] = 395813, + [SMALL_STATE(10201)] = 395835, + [SMALL_STATE(10202)] = 395861, + [SMALL_STATE(10203)] = 395887, + [SMALL_STATE(10204)] = 395913, + [SMALL_STATE(10205)] = 395939, + [SMALL_STATE(10206)] = 395962, + [SMALL_STATE(10207)] = 395979, + [SMALL_STATE(10208)] = 395996, + [SMALL_STATE(10209)] = 396019, + [SMALL_STATE(10210)] = 396044, + [SMALL_STATE(10211)] = 396069, + [SMALL_STATE(10212)] = 396092, + [SMALL_STATE(10213)] = 396117, + [SMALL_STATE(10214)] = 396134, + [SMALL_STATE(10215)] = 396155, + [SMALL_STATE(10216)] = 396180, + [SMALL_STATE(10217)] = 396197, + [SMALL_STATE(10218)] = 396214, + [SMALL_STATE(10219)] = 396239, + [SMALL_STATE(10220)] = 396260, + [SMALL_STATE(10221)] = 396285, + [SMALL_STATE(10222)] = 396302, + [SMALL_STATE(10223)] = 396323, + [SMALL_STATE(10224)] = 396342, + [SMALL_STATE(10225)] = 396359, + [SMALL_STATE(10226)] = 396380, + [SMALL_STATE(10227)] = 396403, + [SMALL_STATE(10228)] = 396424, + [SMALL_STATE(10229)] = 396443, + [SMALL_STATE(10230)] = 396464, + [SMALL_STATE(10231)] = 396481, + [SMALL_STATE(10232)] = 396506, + [SMALL_STATE(10233)] = 396531, + [SMALL_STATE(10234)] = 396548, + [SMALL_STATE(10235)] = 396573, + [SMALL_STATE(10236)] = 396594, + [SMALL_STATE(10237)] = 396619, + [SMALL_STATE(10238)] = 396640, + [SMALL_STATE(10239)] = 396661, + [SMALL_STATE(10240)] = 396678, + [SMALL_STATE(10241)] = 396701, + [SMALL_STATE(10242)] = 396724, + [SMALL_STATE(10243)] = 396747, + [SMALL_STATE(10244)] = 396772, + [SMALL_STATE(10245)] = 396795, + [SMALL_STATE(10246)] = 396812, + [SMALL_STATE(10247)] = 396829, + [SMALL_STATE(10248)] = 396854, + [SMALL_STATE(10249)] = 396871, + [SMALL_STATE(10250)] = 396894, + [SMALL_STATE(10251)] = 396915, + [SMALL_STATE(10252)] = 396936, + [SMALL_STATE(10253)] = 396957, + [SMALL_STATE(10254)] = 396982, + [SMALL_STATE(10255)] = 397005, + [SMALL_STATE(10256)] = 397026, + [SMALL_STATE(10257)] = 397045, + [SMALL_STATE(10258)] = 397062, + [SMALL_STATE(10259)] = 397087, + [SMALL_STATE(10260)] = 397104, + [SMALL_STATE(10261)] = 397127, + [SMALL_STATE(10262)] = 397146, + [SMALL_STATE(10263)] = 397169, + [SMALL_STATE(10264)] = 397192, + [SMALL_STATE(10265)] = 397209, + [SMALL_STATE(10266)] = 397232, + [SMALL_STATE(10267)] = 397249, + [SMALL_STATE(10268)] = 397270, + [SMALL_STATE(10269)] = 397293, + [SMALL_STATE(10270)] = 397316, + [SMALL_STATE(10271)] = 397339, + [SMALL_STATE(10272)] = 397356, + [SMALL_STATE(10273)] = 397373, + [SMALL_STATE(10274)] = 397390, + [SMALL_STATE(10275)] = 397415, + [SMALL_STATE(10276)] = 397438, + [SMALL_STATE(10277)] = 397457, + [SMALL_STATE(10278)] = 397482, + [SMALL_STATE(10279)] = 397503, + [SMALL_STATE(10280)] = 397520, + [SMALL_STATE(10281)] = 397541, + [SMALL_STATE(10282)] = 397558, + [SMALL_STATE(10283)] = 397579, + [SMALL_STATE(10284)] = 397602, + [SMALL_STATE(10285)] = 397625, + [SMALL_STATE(10286)] = 397642, + [SMALL_STATE(10287)] = 397664, + [SMALL_STATE(10288)] = 397686, + [SMALL_STATE(10289)] = 397706, + [SMALL_STATE(10290)] = 397726, + [SMALL_STATE(10291)] = 397746, + [SMALL_STATE(10292)] = 397760, + [SMALL_STATE(10293)] = 397782, + [SMALL_STATE(10294)] = 397800, + [SMALL_STATE(10295)] = 397822, + [SMALL_STATE(10296)] = 397842, + [SMALL_STATE(10297)] = 397864, + [SMALL_STATE(10298)] = 397886, + [SMALL_STATE(10299)] = 397906, + [SMALL_STATE(10300)] = 397928, + [SMALL_STATE(10301)] = 397942, + [SMALL_STATE(10302)] = 397964, + [SMALL_STATE(10303)] = 397978, + [SMALL_STATE(10304)] = 398000, + [SMALL_STATE(10305)] = 398022, + [SMALL_STATE(10306)] = 398044, + [SMALL_STATE(10307)] = 398066, + [SMALL_STATE(10308)] = 398080, + [SMALL_STATE(10309)] = 398102, + [SMALL_STATE(10310)] = 398116, + [SMALL_STATE(10311)] = 398138, + [SMALL_STATE(10312)] = 398160, + [SMALL_STATE(10313)] = 398182, + [SMALL_STATE(10314)] = 398204, + [SMALL_STATE(10315)] = 398226, + [SMALL_STATE(10316)] = 398248, + [SMALL_STATE(10317)] = 398270, + [SMALL_STATE(10318)] = 398292, + [SMALL_STATE(10319)] = 398314, + [SMALL_STATE(10320)] = 398334, + [SMALL_STATE(10321)] = 398356, + [SMALL_STATE(10322)] = 398378, + [SMALL_STATE(10323)] = 398398, + [SMALL_STATE(10324)] = 398416, + [SMALL_STATE(10325)] = 398438, + [SMALL_STATE(10326)] = 398460, + [SMALL_STATE(10327)] = 398482, + [SMALL_STATE(10328)] = 398504, + [SMALL_STATE(10329)] = 398526, + [SMALL_STATE(10330)] = 398548, + [SMALL_STATE(10331)] = 398570, + [SMALL_STATE(10332)] = 398592, + [SMALL_STATE(10333)] = 398614, + [SMALL_STATE(10334)] = 398636, + [SMALL_STATE(10335)] = 398658, + [SMALL_STATE(10336)] = 398680, + [SMALL_STATE(10337)] = 398700, + [SMALL_STATE(10338)] = 398722, + [SMALL_STATE(10339)] = 398736, + [SMALL_STATE(10340)] = 398758, + [SMALL_STATE(10341)] = 398780, + [SMALL_STATE(10342)] = 398800, + [SMALL_STATE(10343)] = 398822, + [SMALL_STATE(10344)] = 398836, + [SMALL_STATE(10345)] = 398858, + [SMALL_STATE(10346)] = 398876, + [SMALL_STATE(10347)] = 398894, + [SMALL_STATE(10348)] = 398914, + [SMALL_STATE(10349)] = 398928, + [SMALL_STATE(10350)] = 398948, + [SMALL_STATE(10351)] = 398968, + [SMALL_STATE(10352)] = 398988, + [SMALL_STATE(10353)] = 399002, + [SMALL_STATE(10354)] = 399022, + [SMALL_STATE(10355)] = 399042, + [SMALL_STATE(10356)] = 399056, + [SMALL_STATE(10357)] = 399076, + [SMALL_STATE(10358)] = 399090, + [SMALL_STATE(10359)] = 399104, + [SMALL_STATE(10360)] = 399118, + [SMALL_STATE(10361)] = 399132, + [SMALL_STATE(10362)] = 399152, + [SMALL_STATE(10363)] = 399174, + [SMALL_STATE(10364)] = 399194, + [SMALL_STATE(10365)] = 399214, + [SMALL_STATE(10366)] = 399234, + [SMALL_STATE(10367)] = 399256, + [SMALL_STATE(10368)] = 399278, + [SMALL_STATE(10369)] = 399300, + [SMALL_STATE(10370)] = 399322, + [SMALL_STATE(10371)] = 399342, + [SMALL_STATE(10372)] = 399362, + [SMALL_STATE(10373)] = 399382, + [SMALL_STATE(10374)] = 399402, + [SMALL_STATE(10375)] = 399422, + [SMALL_STATE(10376)] = 399444, + [SMALL_STATE(10377)] = 399464, + [SMALL_STATE(10378)] = 399484, + [SMALL_STATE(10379)] = 399506, + [SMALL_STATE(10380)] = 399528, + [SMALL_STATE(10381)] = 399550, + [SMALL_STATE(10382)] = 399572, + [SMALL_STATE(10383)] = 399594, + [SMALL_STATE(10384)] = 399616, + [SMALL_STATE(10385)] = 399638, + [SMALL_STATE(10386)] = 399660, + [SMALL_STATE(10387)] = 399682, + [SMALL_STATE(10388)] = 399704, + [SMALL_STATE(10389)] = 399724, + [SMALL_STATE(10390)] = 399746, + [SMALL_STATE(10391)] = 399768, + [SMALL_STATE(10392)] = 399790, + [SMALL_STATE(10393)] = 399812, + [SMALL_STATE(10394)] = 399834, + [SMALL_STATE(10395)] = 399856, + [SMALL_STATE(10396)] = 399870, + [SMALL_STATE(10397)] = 399887, + [SMALL_STATE(10398)] = 399906, + [SMALL_STATE(10399)] = 399923, + [SMALL_STATE(10400)] = 399942, + [SMALL_STATE(10401)] = 399959, + [SMALL_STATE(10402)] = 399976, + [SMALL_STATE(10403)] = 399995, + [SMALL_STATE(10404)] = 400012, + [SMALL_STATE(10405)] = 400031, + [SMALL_STATE(10406)] = 400050, + [SMALL_STATE(10407)] = 400069, + [SMALL_STATE(10408)] = 400086, + [SMALL_STATE(10409)] = 400103, + [SMALL_STATE(10410)] = 400122, + [SMALL_STATE(10411)] = 400139, + [SMALL_STATE(10412)] = 400158, + [SMALL_STATE(10413)] = 400177, + [SMALL_STATE(10414)] = 400196, + [SMALL_STATE(10415)] = 400213, + [SMALL_STATE(10416)] = 400232, + [SMALL_STATE(10417)] = 400251, + [SMALL_STATE(10418)] = 400270, + [SMALL_STATE(10419)] = 400289, + [SMALL_STATE(10420)] = 400308, + [SMALL_STATE(10421)] = 400327, + [SMALL_STATE(10422)] = 400344, + [SMALL_STATE(10423)] = 400363, + [SMALL_STATE(10424)] = 400380, + [SMALL_STATE(10425)] = 400395, + [SMALL_STATE(10426)] = 400414, + [SMALL_STATE(10427)] = 400431, + [SMALL_STATE(10428)] = 400448, + [SMALL_STATE(10429)] = 400467, + [SMALL_STATE(10430)] = 400486, + [SMALL_STATE(10431)] = 400505, + [SMALL_STATE(10432)] = 400516, + [SMALL_STATE(10433)] = 400535, + [SMALL_STATE(10434)] = 400552, + [SMALL_STATE(10435)] = 400571, + [SMALL_STATE(10436)] = 400590, + [SMALL_STATE(10437)] = 400603, + [SMALL_STATE(10438)] = 400622, + [SMALL_STATE(10439)] = 400639, + [SMALL_STATE(10440)] = 400658, + [SMALL_STATE(10441)] = 400677, + [SMALL_STATE(10442)] = 400696, + [SMALL_STATE(10443)] = 400715, + [SMALL_STATE(10444)] = 400728, + [SMALL_STATE(10445)] = 400747, + [SMALL_STATE(10446)] = 400766, + [SMALL_STATE(10447)] = 400785, + [SMALL_STATE(10448)] = 400804, + [SMALL_STATE(10449)] = 400823, + [SMALL_STATE(10450)] = 400842, + [SMALL_STATE(10451)] = 400857, + [SMALL_STATE(10452)] = 400874, + [SMALL_STATE(10453)] = 400891, + [SMALL_STATE(10454)] = 400908, + [SMALL_STATE(10455)] = 400927, + [SMALL_STATE(10456)] = 400946, + [SMALL_STATE(10457)] = 400965, + [SMALL_STATE(10458)] = 400982, + [SMALL_STATE(10459)] = 400999, + [SMALL_STATE(10460)] = 401016, + [SMALL_STATE(10461)] = 401033, + [SMALL_STATE(10462)] = 401052, + [SMALL_STATE(10463)] = 401071, + [SMALL_STATE(10464)] = 401088, + [SMALL_STATE(10465)] = 401107, + [SMALL_STATE(10466)] = 401126, + [SMALL_STATE(10467)] = 401143, + [SMALL_STATE(10468)] = 401162, + [SMALL_STATE(10469)] = 401179, + [SMALL_STATE(10470)] = 401198, + [SMALL_STATE(10471)] = 401217, + [SMALL_STATE(10472)] = 401236, + [SMALL_STATE(10473)] = 401255, + [SMALL_STATE(10474)] = 401274, + [SMALL_STATE(10475)] = 401291, + [SMALL_STATE(10476)] = 401310, + [SMALL_STATE(10477)] = 401329, + [SMALL_STATE(10478)] = 401348, + [SMALL_STATE(10479)] = 401365, + [SMALL_STATE(10480)] = 401382, + [SMALL_STATE(10481)] = 401401, + [SMALL_STATE(10482)] = 401420, + [SMALL_STATE(10483)] = 401439, + [SMALL_STATE(10484)] = 401456, + [SMALL_STATE(10485)] = 401473, + [SMALL_STATE(10486)] = 401492, + [SMALL_STATE(10487)] = 401511, + [SMALL_STATE(10488)] = 401530, + [SMALL_STATE(10489)] = 401549, + [SMALL_STATE(10490)] = 401566, + [SMALL_STATE(10491)] = 401585, + [SMALL_STATE(10492)] = 401604, + [SMALL_STATE(10493)] = 401621, + [SMALL_STATE(10494)] = 401638, + [SMALL_STATE(10495)] = 401657, + [SMALL_STATE(10496)] = 401676, + [SMALL_STATE(10497)] = 401695, + [SMALL_STATE(10498)] = 401714, + [SMALL_STATE(10499)] = 401733, + [SMALL_STATE(10500)] = 401752, + [SMALL_STATE(10501)] = 401771, + [SMALL_STATE(10502)] = 401790, + [SMALL_STATE(10503)] = 401809, + [SMALL_STATE(10504)] = 401826, + [SMALL_STATE(10505)] = 401845, + [SMALL_STATE(10506)] = 401864, + [SMALL_STATE(10507)] = 401883, + [SMALL_STATE(10508)] = 401902, + [SMALL_STATE(10509)] = 401919, + [SMALL_STATE(10510)] = 401938, + [SMALL_STATE(10511)] = 401955, + [SMALL_STATE(10512)] = 401972, + [SMALL_STATE(10513)] = 401989, + [SMALL_STATE(10514)] = 402006, + [SMALL_STATE(10515)] = 402023, + [SMALL_STATE(10516)] = 402040, + [SMALL_STATE(10517)] = 402057, + [SMALL_STATE(10518)] = 402074, + [SMALL_STATE(10519)] = 402091, + [SMALL_STATE(10520)] = 402108, + [SMALL_STATE(10521)] = 402127, + [SMALL_STATE(10522)] = 402142, + [SMALL_STATE(10523)] = 402159, + [SMALL_STATE(10524)] = 402176, + [SMALL_STATE(10525)] = 402193, + [SMALL_STATE(10526)] = 402210, + [SMALL_STATE(10527)] = 402227, + [SMALL_STATE(10528)] = 402244, + [SMALL_STATE(10529)] = 402263, + [SMALL_STATE(10530)] = 402282, + [SMALL_STATE(10531)] = 402299, + [SMALL_STATE(10532)] = 402318, + [SMALL_STATE(10533)] = 402337, + [SMALL_STATE(10534)] = 402354, + [SMALL_STATE(10535)] = 402373, + [SMALL_STATE(10536)] = 402392, + [SMALL_STATE(10537)] = 402411, + [SMALL_STATE(10538)] = 402428, + [SMALL_STATE(10539)] = 402445, + [SMALL_STATE(10540)] = 402460, + [SMALL_STATE(10541)] = 402477, + [SMALL_STATE(10542)] = 402494, + [SMALL_STATE(10543)] = 402511, + [SMALL_STATE(10544)] = 402526, + [SMALL_STATE(10545)] = 402545, + [SMALL_STATE(10546)] = 402564, + [SMALL_STATE(10547)] = 402583, + [SMALL_STATE(10548)] = 402599, + [SMALL_STATE(10549)] = 402615, + [SMALL_STATE(10550)] = 402627, + [SMALL_STATE(10551)] = 402643, + [SMALL_STATE(10552)] = 402659, + [SMALL_STATE(10553)] = 402673, + [SMALL_STATE(10554)] = 402689, + [SMALL_STATE(10555)] = 402705, + [SMALL_STATE(10556)] = 402721, + [SMALL_STATE(10557)] = 402737, + [SMALL_STATE(10558)] = 402753, + [SMALL_STATE(10559)] = 402769, + [SMALL_STATE(10560)] = 402783, + [SMALL_STATE(10561)] = 402799, + [SMALL_STATE(10562)] = 402815, + [SMALL_STATE(10563)] = 402829, + [SMALL_STATE(10564)] = 402845, + [SMALL_STATE(10565)] = 402861, + [SMALL_STATE(10566)] = 402877, + [SMALL_STATE(10567)] = 402893, + [SMALL_STATE(10568)] = 402907, + [SMALL_STATE(10569)] = 402923, + [SMALL_STATE(10570)] = 402937, + [SMALL_STATE(10571)] = 402953, + [SMALL_STATE(10572)] = 402969, + [SMALL_STATE(10573)] = 402985, + [SMALL_STATE(10574)] = 403001, + [SMALL_STATE(10575)] = 403017, + [SMALL_STATE(10576)] = 403033, + [SMALL_STATE(10577)] = 403045, + [SMALL_STATE(10578)] = 403061, + [SMALL_STATE(10579)] = 403077, + [SMALL_STATE(10580)] = 403089, + [SMALL_STATE(10581)] = 403101, + [SMALL_STATE(10582)] = 403117, + [SMALL_STATE(10583)] = 403131, + [SMALL_STATE(10584)] = 403147, + [SMALL_STATE(10585)] = 403161, + [SMALL_STATE(10586)] = 403177, + [SMALL_STATE(10587)] = 403191, + [SMALL_STATE(10588)] = 403207, + [SMALL_STATE(10589)] = 403223, + [SMALL_STATE(10590)] = 403239, + [SMALL_STATE(10591)] = 403253, + [SMALL_STATE(10592)] = 403269, + [SMALL_STATE(10593)] = 403285, + [SMALL_STATE(10594)] = 403301, + [SMALL_STATE(10595)] = 403317, + [SMALL_STATE(10596)] = 403333, + [SMALL_STATE(10597)] = 403347, + [SMALL_STATE(10598)] = 403363, + [SMALL_STATE(10599)] = 403379, + [SMALL_STATE(10600)] = 403393, + [SMALL_STATE(10601)] = 403407, + [SMALL_STATE(10602)] = 403423, + [SMALL_STATE(10603)] = 403439, + [SMALL_STATE(10604)] = 403455, + [SMALL_STATE(10605)] = 403469, + [SMALL_STATE(10606)] = 403485, + [SMALL_STATE(10607)] = 403501, + [SMALL_STATE(10608)] = 403517, + [SMALL_STATE(10609)] = 403531, + [SMALL_STATE(10610)] = 403547, + [SMALL_STATE(10611)] = 403563, + [SMALL_STATE(10612)] = 403579, + [SMALL_STATE(10613)] = 403595, + [SMALL_STATE(10614)] = 403611, + [SMALL_STATE(10615)] = 403627, + [SMALL_STATE(10616)] = 403643, + [SMALL_STATE(10617)] = 403659, + [SMALL_STATE(10618)] = 403675, + [SMALL_STATE(10619)] = 403691, + [SMALL_STATE(10620)] = 403707, + [SMALL_STATE(10621)] = 403723, + [SMALL_STATE(10622)] = 403739, + [SMALL_STATE(10623)] = 403755, + [SMALL_STATE(10624)] = 403771, + [SMALL_STATE(10625)] = 403787, + [SMALL_STATE(10626)] = 403803, + [SMALL_STATE(10627)] = 403819, + [SMALL_STATE(10628)] = 403833, + [SMALL_STATE(10629)] = 403849, + [SMALL_STATE(10630)] = 403865, + [SMALL_STATE(10631)] = 403881, + [SMALL_STATE(10632)] = 403897, + [SMALL_STATE(10633)] = 403913, + [SMALL_STATE(10634)] = 403927, + [SMALL_STATE(10635)] = 403943, + [SMALL_STATE(10636)] = 403957, + [SMALL_STATE(10637)] = 403973, + [SMALL_STATE(10638)] = 403989, + [SMALL_STATE(10639)] = 404003, + [SMALL_STATE(10640)] = 404019, + [SMALL_STATE(10641)] = 404035, + [SMALL_STATE(10642)] = 404051, + [SMALL_STATE(10643)] = 404067, + [SMALL_STATE(10644)] = 404083, + [SMALL_STATE(10645)] = 404099, + [SMALL_STATE(10646)] = 404115, + [SMALL_STATE(10647)] = 404131, + [SMALL_STATE(10648)] = 404147, + [SMALL_STATE(10649)] = 404163, + [SMALL_STATE(10650)] = 404179, + [SMALL_STATE(10651)] = 404193, + [SMALL_STATE(10652)] = 404209, + [SMALL_STATE(10653)] = 404225, + [SMALL_STATE(10654)] = 404241, + [SMALL_STATE(10655)] = 404257, + [SMALL_STATE(10656)] = 404273, + [SMALL_STATE(10657)] = 404289, + [SMALL_STATE(10658)] = 404305, + [SMALL_STATE(10659)] = 404321, + [SMALL_STATE(10660)] = 404337, + [SMALL_STATE(10661)] = 404353, + [SMALL_STATE(10662)] = 404369, + [SMALL_STATE(10663)] = 404385, + [SMALL_STATE(10664)] = 404401, + [SMALL_STATE(10665)] = 404411, + [SMALL_STATE(10666)] = 404427, + [SMALL_STATE(10667)] = 404443, + [SMALL_STATE(10668)] = 404459, + [SMALL_STATE(10669)] = 404475, + [SMALL_STATE(10670)] = 404489, + [SMALL_STATE(10671)] = 404505, + [SMALL_STATE(10672)] = 404521, + [SMALL_STATE(10673)] = 404537, + [SMALL_STATE(10674)] = 404553, + [SMALL_STATE(10675)] = 404567, + [SMALL_STATE(10676)] = 404581, + [SMALL_STATE(10677)] = 404597, + [SMALL_STATE(10678)] = 404613, + [SMALL_STATE(10679)] = 404629, + [SMALL_STATE(10680)] = 404645, + [SMALL_STATE(10681)] = 404661, + [SMALL_STATE(10682)] = 404677, + [SMALL_STATE(10683)] = 404693, + [SMALL_STATE(10684)] = 404709, + [SMALL_STATE(10685)] = 404723, + [SMALL_STATE(10686)] = 404739, + [SMALL_STATE(10687)] = 404755, + [SMALL_STATE(10688)] = 404765, + [SMALL_STATE(10689)] = 404781, + [SMALL_STATE(10690)] = 404797, + [SMALL_STATE(10691)] = 404813, + [SMALL_STATE(10692)] = 404829, + [SMALL_STATE(10693)] = 404845, + [SMALL_STATE(10694)] = 404861, + [SMALL_STATE(10695)] = 404877, + [SMALL_STATE(10696)] = 404893, + [SMALL_STATE(10697)] = 404907, + [SMALL_STATE(10698)] = 404923, + [SMALL_STATE(10699)] = 404939, + [SMALL_STATE(10700)] = 404955, + [SMALL_STATE(10701)] = 404971, + [SMALL_STATE(10702)] = 404985, + [SMALL_STATE(10703)] = 405001, + [SMALL_STATE(10704)] = 405017, + [SMALL_STATE(10705)] = 405031, + [SMALL_STATE(10706)] = 405047, + [SMALL_STATE(10707)] = 405063, + [SMALL_STATE(10708)] = 405079, + [SMALL_STATE(10709)] = 405095, + [SMALL_STATE(10710)] = 405111, + [SMALL_STATE(10711)] = 405125, + [SMALL_STATE(10712)] = 405141, + [SMALL_STATE(10713)] = 405157, + [SMALL_STATE(10714)] = 405171, + [SMALL_STATE(10715)] = 405187, + [SMALL_STATE(10716)] = 405203, + [SMALL_STATE(10717)] = 405219, + [SMALL_STATE(10718)] = 405235, + [SMALL_STATE(10719)] = 405251, + [SMALL_STATE(10720)] = 405267, + [SMALL_STATE(10721)] = 405283, + [SMALL_STATE(10722)] = 405299, + [SMALL_STATE(10723)] = 405315, + [SMALL_STATE(10724)] = 405331, + [SMALL_STATE(10725)] = 405345, + [SMALL_STATE(10726)] = 405361, + [SMALL_STATE(10727)] = 405377, + [SMALL_STATE(10728)] = 405391, + [SMALL_STATE(10729)] = 405407, + [SMALL_STATE(10730)] = 405423, + [SMALL_STATE(10731)] = 405437, + [SMALL_STATE(10732)] = 405453, + [SMALL_STATE(10733)] = 405469, + [SMALL_STATE(10734)] = 405485, + [SMALL_STATE(10735)] = 405501, + [SMALL_STATE(10736)] = 405517, + [SMALL_STATE(10737)] = 405533, + [SMALL_STATE(10738)] = 405547, + [SMALL_STATE(10739)] = 405561, + [SMALL_STATE(10740)] = 405577, + [SMALL_STATE(10741)] = 405587, + [SMALL_STATE(10742)] = 405603, + [SMALL_STATE(10743)] = 405619, + [SMALL_STATE(10744)] = 405635, + [SMALL_STATE(10745)] = 405651, + [SMALL_STATE(10746)] = 405667, + [SMALL_STATE(10747)] = 405683, + [SMALL_STATE(10748)] = 405699, + [SMALL_STATE(10749)] = 405715, + [SMALL_STATE(10750)] = 405729, + [SMALL_STATE(10751)] = 405745, + [SMALL_STATE(10752)] = 405761, + [SMALL_STATE(10753)] = 405777, + [SMALL_STATE(10754)] = 405793, + [SMALL_STATE(10755)] = 405809, + [SMALL_STATE(10756)] = 405825, + [SMALL_STATE(10757)] = 405841, + [SMALL_STATE(10758)] = 405857, + [SMALL_STATE(10759)] = 405871, + [SMALL_STATE(10760)] = 405885, + [SMALL_STATE(10761)] = 405899, + [SMALL_STATE(10762)] = 405913, + [SMALL_STATE(10763)] = 405927, + [SMALL_STATE(10764)] = 405943, + [SMALL_STATE(10765)] = 405957, + [SMALL_STATE(10766)] = 405971, + [SMALL_STATE(10767)] = 405987, + [SMALL_STATE(10768)] = 406001, + [SMALL_STATE(10769)] = 406015, + [SMALL_STATE(10770)] = 406031, + [SMALL_STATE(10771)] = 406045, + [SMALL_STATE(10772)] = 406059, + [SMALL_STATE(10773)] = 406073, + [SMALL_STATE(10774)] = 406087, + [SMALL_STATE(10775)] = 406103, + [SMALL_STATE(10776)] = 406119, + [SMALL_STATE(10777)] = 406133, + [SMALL_STATE(10778)] = 406149, + [SMALL_STATE(10779)] = 406163, + [SMALL_STATE(10780)] = 406179, + [SMALL_STATE(10781)] = 406195, + [SMALL_STATE(10782)] = 406211, + [SMALL_STATE(10783)] = 406227, + [SMALL_STATE(10784)] = 406241, + [SMALL_STATE(10785)] = 406255, + [SMALL_STATE(10786)] = 406271, + [SMALL_STATE(10787)] = 406287, + [SMALL_STATE(10788)] = 406301, + [SMALL_STATE(10789)] = 406317, + [SMALL_STATE(10790)] = 406333, + [SMALL_STATE(10791)] = 406347, + [SMALL_STATE(10792)] = 406361, + [SMALL_STATE(10793)] = 406377, + [SMALL_STATE(10794)] = 406391, + [SMALL_STATE(10795)] = 406407, + [SMALL_STATE(10796)] = 406423, + [SMALL_STATE(10797)] = 406437, + [SMALL_STATE(10798)] = 406453, + [SMALL_STATE(10799)] = 406469, + [SMALL_STATE(10800)] = 406485, + [SMALL_STATE(10801)] = 406501, + [SMALL_STATE(10802)] = 406517, + [SMALL_STATE(10803)] = 406533, + [SMALL_STATE(10804)] = 406549, + [SMALL_STATE(10805)] = 406563, + [SMALL_STATE(10806)] = 406579, + [SMALL_STATE(10807)] = 406595, + [SMALL_STATE(10808)] = 406611, + [SMALL_STATE(10809)] = 406627, + [SMALL_STATE(10810)] = 406643, + [SMALL_STATE(10811)] = 406657, + [SMALL_STATE(10812)] = 406673, + [SMALL_STATE(10813)] = 406686, + [SMALL_STATE(10814)] = 406695, + [SMALL_STATE(10815)] = 406708, + [SMALL_STATE(10816)] = 406721, + [SMALL_STATE(10817)] = 406734, + [SMALL_STATE(10818)] = 406747, + [SMALL_STATE(10819)] = 406760, + [SMALL_STATE(10820)] = 406773, + [SMALL_STATE(10821)] = 406786, + [SMALL_STATE(10822)] = 406799, + [SMALL_STATE(10823)] = 406812, + [SMALL_STATE(10824)] = 406825, + [SMALL_STATE(10825)] = 406838, + [SMALL_STATE(10826)] = 406851, + [SMALL_STATE(10827)] = 406864, + [SMALL_STATE(10828)] = 406877, + [SMALL_STATE(10829)] = 406890, + [SMALL_STATE(10830)] = 406903, + [SMALL_STATE(10831)] = 406916, + [SMALL_STATE(10832)] = 406929, + [SMALL_STATE(10833)] = 406942, + [SMALL_STATE(10834)] = 406955, + [SMALL_STATE(10835)] = 406968, + [SMALL_STATE(10836)] = 406981, + [SMALL_STATE(10837)] = 406994, + [SMALL_STATE(10838)] = 407007, + [SMALL_STATE(10839)] = 407020, + [SMALL_STATE(10840)] = 407033, + [SMALL_STATE(10841)] = 407046, + [SMALL_STATE(10842)] = 407059, + [SMALL_STATE(10843)] = 407072, + [SMALL_STATE(10844)] = 407085, + [SMALL_STATE(10845)] = 407098, + [SMALL_STATE(10846)] = 407111, + [SMALL_STATE(10847)] = 407124, + [SMALL_STATE(10848)] = 407137, + [SMALL_STATE(10849)] = 407150, + [SMALL_STATE(10850)] = 407161, + [SMALL_STATE(10851)] = 407174, + [SMALL_STATE(10852)] = 407187, + [SMALL_STATE(10853)] = 407200, + [SMALL_STATE(10854)] = 407213, + [SMALL_STATE(10855)] = 407226, + [SMALL_STATE(10856)] = 407237, + [SMALL_STATE(10857)] = 407250, + [SMALL_STATE(10858)] = 407263, + [SMALL_STATE(10859)] = 407276, + [SMALL_STATE(10860)] = 407289, + [SMALL_STATE(10861)] = 407302, + [SMALL_STATE(10862)] = 407315, + [SMALL_STATE(10863)] = 407328, + [SMALL_STATE(10864)] = 407341, + [SMALL_STATE(10865)] = 407354, + [SMALL_STATE(10866)] = 407367, + [SMALL_STATE(10867)] = 407380, + [SMALL_STATE(10868)] = 407393, + [SMALL_STATE(10869)] = 407406, + [SMALL_STATE(10870)] = 407419, + [SMALL_STATE(10871)] = 407432, + [SMALL_STATE(10872)] = 407445, + [SMALL_STATE(10873)] = 407458, + [SMALL_STATE(10874)] = 407471, + [SMALL_STATE(10875)] = 407484, + [SMALL_STATE(10876)] = 407497, + [SMALL_STATE(10877)] = 407510, + [SMALL_STATE(10878)] = 407519, + [SMALL_STATE(10879)] = 407532, + [SMALL_STATE(10880)] = 407545, + [SMALL_STATE(10881)] = 407558, + [SMALL_STATE(10882)] = 407571, + [SMALL_STATE(10883)] = 407584, + [SMALL_STATE(10884)] = 407597, + [SMALL_STATE(10885)] = 407610, + [SMALL_STATE(10886)] = 407623, + [SMALL_STATE(10887)] = 407636, + [SMALL_STATE(10888)] = 407649, + [SMALL_STATE(10889)] = 407662, + [SMALL_STATE(10890)] = 407675, + [SMALL_STATE(10891)] = 407688, + [SMALL_STATE(10892)] = 407701, + [SMALL_STATE(10893)] = 407714, + [SMALL_STATE(10894)] = 407727, + [SMALL_STATE(10895)] = 407740, + [SMALL_STATE(10896)] = 407753, + [SMALL_STATE(10897)] = 407766, + [SMALL_STATE(10898)] = 407779, + [SMALL_STATE(10899)] = 407792, + [SMALL_STATE(10900)] = 407805, + [SMALL_STATE(10901)] = 407818, + [SMALL_STATE(10902)] = 407831, + [SMALL_STATE(10903)] = 407844, + [SMALL_STATE(10904)] = 407857, + [SMALL_STATE(10905)] = 407870, + [SMALL_STATE(10906)] = 407881, + [SMALL_STATE(10907)] = 407894, + [SMALL_STATE(10908)] = 407907, + [SMALL_STATE(10909)] = 407920, + [SMALL_STATE(10910)] = 407933, + [SMALL_STATE(10911)] = 407946, + [SMALL_STATE(10912)] = 407959, + [SMALL_STATE(10913)] = 407972, + [SMALL_STATE(10914)] = 407985, + [SMALL_STATE(10915)] = 407998, + [SMALL_STATE(10916)] = 408011, + [SMALL_STATE(10917)] = 408024, + [SMALL_STATE(10918)] = 408037, + [SMALL_STATE(10919)] = 408050, + [SMALL_STATE(10920)] = 408063, + [SMALL_STATE(10921)] = 408076, + [SMALL_STATE(10922)] = 408089, + [SMALL_STATE(10923)] = 408102, + [SMALL_STATE(10924)] = 408115, + [SMALL_STATE(10925)] = 408128, + [SMALL_STATE(10926)] = 408141, + [SMALL_STATE(10927)] = 408154, + [SMALL_STATE(10928)] = 408163, + [SMALL_STATE(10929)] = 408176, + [SMALL_STATE(10930)] = 408189, + [SMALL_STATE(10931)] = 408202, + [SMALL_STATE(10932)] = 408215, + [SMALL_STATE(10933)] = 408228, + [SMALL_STATE(10934)] = 408241, + [SMALL_STATE(10935)] = 408252, + [SMALL_STATE(10936)] = 408265, + [SMALL_STATE(10937)] = 408278, + [SMALL_STATE(10938)] = 408289, + [SMALL_STATE(10939)] = 408302, + [SMALL_STATE(10940)] = 408315, + [SMALL_STATE(10941)] = 408328, + [SMALL_STATE(10942)] = 408341, + [SMALL_STATE(10943)] = 408354, + [SMALL_STATE(10944)] = 408367, + [SMALL_STATE(10945)] = 408380, + [SMALL_STATE(10946)] = 408393, + [SMALL_STATE(10947)] = 408406, + [SMALL_STATE(10948)] = 408419, + [SMALL_STATE(10949)] = 408432, + [SMALL_STATE(10950)] = 408445, + [SMALL_STATE(10951)] = 408458, + [SMALL_STATE(10952)] = 408471, + [SMALL_STATE(10953)] = 408484, + [SMALL_STATE(10954)] = 408497, + [SMALL_STATE(10955)] = 408510, + [SMALL_STATE(10956)] = 408523, + [SMALL_STATE(10957)] = 408536, + [SMALL_STATE(10958)] = 408549, + [SMALL_STATE(10959)] = 408562, + [SMALL_STATE(10960)] = 408575, + [SMALL_STATE(10961)] = 408588, + [SMALL_STATE(10962)] = 408601, + [SMALL_STATE(10963)] = 408614, + [SMALL_STATE(10964)] = 408627, + [SMALL_STATE(10965)] = 408640, + [SMALL_STATE(10966)] = 408653, + [SMALL_STATE(10967)] = 408666, + [SMALL_STATE(10968)] = 408679, + [SMALL_STATE(10969)] = 408692, + [SMALL_STATE(10970)] = 408705, + [SMALL_STATE(10971)] = 408718, + [SMALL_STATE(10972)] = 408731, + [SMALL_STATE(10973)] = 408744, + [SMALL_STATE(10974)] = 408757, + [SMALL_STATE(10975)] = 408770, + [SMALL_STATE(10976)] = 408783, + [SMALL_STATE(10977)] = 408796, + [SMALL_STATE(10978)] = 408809, + [SMALL_STATE(10979)] = 408822, + [SMALL_STATE(10980)] = 408835, + [SMALL_STATE(10981)] = 408848, + [SMALL_STATE(10982)] = 408861, + [SMALL_STATE(10983)] = 408874, + [SMALL_STATE(10984)] = 408887, + [SMALL_STATE(10985)] = 408900, + [SMALL_STATE(10986)] = 408913, + [SMALL_STATE(10987)] = 408926, + [SMALL_STATE(10988)] = 408939, + [SMALL_STATE(10989)] = 408952, + [SMALL_STATE(10990)] = 408965, + [SMALL_STATE(10991)] = 408978, + [SMALL_STATE(10992)] = 408991, + [SMALL_STATE(10993)] = 409004, + [SMALL_STATE(10994)] = 409017, + [SMALL_STATE(10995)] = 409030, + [SMALL_STATE(10996)] = 409043, + [SMALL_STATE(10997)] = 409056, + [SMALL_STATE(10998)] = 409069, + [SMALL_STATE(10999)] = 409082, + [SMALL_STATE(11000)] = 409095, + [SMALL_STATE(11001)] = 409108, + [SMALL_STATE(11002)] = 409121, + [SMALL_STATE(11003)] = 409134, + [SMALL_STATE(11004)] = 409147, + [SMALL_STATE(11005)] = 409160, + [SMALL_STATE(11006)] = 409173, + [SMALL_STATE(11007)] = 409186, + [SMALL_STATE(11008)] = 409199, + [SMALL_STATE(11009)] = 409212, + [SMALL_STATE(11010)] = 409221, + [SMALL_STATE(11011)] = 409234, + [SMALL_STATE(11012)] = 409247, + [SMALL_STATE(11013)] = 409260, + [SMALL_STATE(11014)] = 409273, + [SMALL_STATE(11015)] = 409286, + [SMALL_STATE(11016)] = 409297, + [SMALL_STATE(11017)] = 409310, + [SMALL_STATE(11018)] = 409323, + [SMALL_STATE(11019)] = 409336, + [SMALL_STATE(11020)] = 409349, + [SMALL_STATE(11021)] = 409362, + [SMALL_STATE(11022)] = 409375, + [SMALL_STATE(11023)] = 409388, + [SMALL_STATE(11024)] = 409401, + [SMALL_STATE(11025)] = 409414, + [SMALL_STATE(11026)] = 409427, + [SMALL_STATE(11027)] = 409436, + [SMALL_STATE(11028)] = 409449, + [SMALL_STATE(11029)] = 409462, + [SMALL_STATE(11030)] = 409473, + [SMALL_STATE(11031)] = 409486, + [SMALL_STATE(11032)] = 409499, + [SMALL_STATE(11033)] = 409510, + [SMALL_STATE(11034)] = 409523, + [SMALL_STATE(11035)] = 409536, + [SMALL_STATE(11036)] = 409549, + [SMALL_STATE(11037)] = 409560, + [SMALL_STATE(11038)] = 409573, + [SMALL_STATE(11039)] = 409586, + [SMALL_STATE(11040)] = 409599, + [SMALL_STATE(11041)] = 409612, + [SMALL_STATE(11042)] = 409623, + [SMALL_STATE(11043)] = 409636, + [SMALL_STATE(11044)] = 409647, + [SMALL_STATE(11045)] = 409660, + [SMALL_STATE(11046)] = 409673, + [SMALL_STATE(11047)] = 409686, + [SMALL_STATE(11048)] = 409699, + [SMALL_STATE(11049)] = 409712, + [SMALL_STATE(11050)] = 409725, + [SMALL_STATE(11051)] = 409738, + [SMALL_STATE(11052)] = 409751, + [SMALL_STATE(11053)] = 409764, + [SMALL_STATE(11054)] = 409777, + [SMALL_STATE(11055)] = 409790, + [SMALL_STATE(11056)] = 409803, + [SMALL_STATE(11057)] = 409816, + [SMALL_STATE(11058)] = 409829, + [SMALL_STATE(11059)] = 409842, + [SMALL_STATE(11060)] = 409855, + [SMALL_STATE(11061)] = 409868, + [SMALL_STATE(11062)] = 409881, + [SMALL_STATE(11063)] = 409894, + [SMALL_STATE(11064)] = 409907, + [SMALL_STATE(11065)] = 409920, + [SMALL_STATE(11066)] = 409933, + [SMALL_STATE(11067)] = 409946, + [SMALL_STATE(11068)] = 409957, + [SMALL_STATE(11069)] = 409970, + [SMALL_STATE(11070)] = 409983, + [SMALL_STATE(11071)] = 409994, + [SMALL_STATE(11072)] = 410007, + [SMALL_STATE(11073)] = 410020, + [SMALL_STATE(11074)] = 410033, + [SMALL_STATE(11075)] = 410046, + [SMALL_STATE(11076)] = 410059, + [SMALL_STATE(11077)] = 410072, + [SMALL_STATE(11078)] = 410085, + [SMALL_STATE(11079)] = 410098, + [SMALL_STATE(11080)] = 410111, + [SMALL_STATE(11081)] = 410120, + [SMALL_STATE(11082)] = 410129, + [SMALL_STATE(11083)] = 410142, + [SMALL_STATE(11084)] = 410155, + [SMALL_STATE(11085)] = 410168, + [SMALL_STATE(11086)] = 410181, + [SMALL_STATE(11087)] = 410194, + [SMALL_STATE(11088)] = 410207, + [SMALL_STATE(11089)] = 410220, + [SMALL_STATE(11090)] = 410233, + [SMALL_STATE(11091)] = 410246, + [SMALL_STATE(11092)] = 410259, + [SMALL_STATE(11093)] = 410272, + [SMALL_STATE(11094)] = 410285, + [SMALL_STATE(11095)] = 410296, + [SMALL_STATE(11096)] = 410309, + [SMALL_STATE(11097)] = 410320, + [SMALL_STATE(11098)] = 410333, + [SMALL_STATE(11099)] = 410342, + [SMALL_STATE(11100)] = 410351, + [SMALL_STATE(11101)] = 410364, + [SMALL_STATE(11102)] = 410377, + [SMALL_STATE(11103)] = 410390, + [SMALL_STATE(11104)] = 410399, + [SMALL_STATE(11105)] = 410412, + [SMALL_STATE(11106)] = 410425, + [SMALL_STATE(11107)] = 410438, + [SMALL_STATE(11108)] = 410451, + [SMALL_STATE(11109)] = 410464, + [SMALL_STATE(11110)] = 410477, + [SMALL_STATE(11111)] = 410490, + [SMALL_STATE(11112)] = 410503, + [SMALL_STATE(11113)] = 410516, + [SMALL_STATE(11114)] = 410529, + [SMALL_STATE(11115)] = 410538, + [SMALL_STATE(11116)] = 410551, + [SMALL_STATE(11117)] = 410564, + [SMALL_STATE(11118)] = 410577, + [SMALL_STATE(11119)] = 410590, + [SMALL_STATE(11120)] = 410599, + [SMALL_STATE(11121)] = 410612, + [SMALL_STATE(11122)] = 410625, + [SMALL_STATE(11123)] = 410638, + [SMALL_STATE(11124)] = 410651, + [SMALL_STATE(11125)] = 410664, + [SMALL_STATE(11126)] = 410677, + [SMALL_STATE(11127)] = 410690, + [SMALL_STATE(11128)] = 410701, + [SMALL_STATE(11129)] = 410714, + [SMALL_STATE(11130)] = 410727, + [SMALL_STATE(11131)] = 410740, + [SMALL_STATE(11132)] = 410753, + [SMALL_STATE(11133)] = 410766, + [SMALL_STATE(11134)] = 410779, + [SMALL_STATE(11135)] = 410792, + [SMALL_STATE(11136)] = 410805, + [SMALL_STATE(11137)] = 410818, + [SMALL_STATE(11138)] = 410831, + [SMALL_STATE(11139)] = 410844, + [SMALL_STATE(11140)] = 410857, + [SMALL_STATE(11141)] = 410870, + [SMALL_STATE(11142)] = 410883, + [SMALL_STATE(11143)] = 410896, + [SMALL_STATE(11144)] = 410909, + [SMALL_STATE(11145)] = 410920, + [SMALL_STATE(11146)] = 410933, + [SMALL_STATE(11147)] = 410946, + [SMALL_STATE(11148)] = 410959, + [SMALL_STATE(11149)] = 410972, + [SMALL_STATE(11150)] = 410985, + [SMALL_STATE(11151)] = 410998, + [SMALL_STATE(11152)] = 411009, + [SMALL_STATE(11153)] = 411020, + [SMALL_STATE(11154)] = 411033, + [SMALL_STATE(11155)] = 411046, + [SMALL_STATE(11156)] = 411059, + [SMALL_STATE(11157)] = 411072, + [SMALL_STATE(11158)] = 411085, + [SMALL_STATE(11159)] = 411098, + [SMALL_STATE(11160)] = 411111, + [SMALL_STATE(11161)] = 411124, + [SMALL_STATE(11162)] = 411135, + [SMALL_STATE(11163)] = 411148, + [SMALL_STATE(11164)] = 411157, + [SMALL_STATE(11165)] = 411168, + [SMALL_STATE(11166)] = 411179, + [SMALL_STATE(11167)] = 411190, + [SMALL_STATE(11168)] = 411203, + [SMALL_STATE(11169)] = 411216, + [SMALL_STATE(11170)] = 411229, + [SMALL_STATE(11171)] = 411242, + [SMALL_STATE(11172)] = 411255, + [SMALL_STATE(11173)] = 411268, + [SMALL_STATE(11174)] = 411281, + [SMALL_STATE(11175)] = 411294, + [SMALL_STATE(11176)] = 411307, + [SMALL_STATE(11177)] = 411320, + [SMALL_STATE(11178)] = 411333, + [SMALL_STATE(11179)] = 411346, + [SMALL_STATE(11180)] = 411359, + [SMALL_STATE(11181)] = 411370, + [SMALL_STATE(11182)] = 411383, + [SMALL_STATE(11183)] = 411396, + [SMALL_STATE(11184)] = 411409, + [SMALL_STATE(11185)] = 411422, + [SMALL_STATE(11186)] = 411435, + [SMALL_STATE(11187)] = 411446, + [SMALL_STATE(11188)] = 411457, + [SMALL_STATE(11189)] = 411470, + [SMALL_STATE(11190)] = 411483, + [SMALL_STATE(11191)] = 411492, + [SMALL_STATE(11192)] = 411505, + [SMALL_STATE(11193)] = 411518, + [SMALL_STATE(11194)] = 411531, + [SMALL_STATE(11195)] = 411544, + [SMALL_STATE(11196)] = 411557, + [SMALL_STATE(11197)] = 411570, + [SMALL_STATE(11198)] = 411583, + [SMALL_STATE(11199)] = 411596, + [SMALL_STATE(11200)] = 411609, + [SMALL_STATE(11201)] = 411622, + [SMALL_STATE(11202)] = 411635, + [SMALL_STATE(11203)] = 411648, + [SMALL_STATE(11204)] = 411661, + [SMALL_STATE(11205)] = 411674, + [SMALL_STATE(11206)] = 411687, + [SMALL_STATE(11207)] = 411700, + [SMALL_STATE(11208)] = 411713, + [SMALL_STATE(11209)] = 411726, + [SMALL_STATE(11210)] = 411739, + [SMALL_STATE(11211)] = 411752, + [SMALL_STATE(11212)] = 411765, + [SMALL_STATE(11213)] = 411778, + [SMALL_STATE(11214)] = 411789, + [SMALL_STATE(11215)] = 411802, + [SMALL_STATE(11216)] = 411813, + [SMALL_STATE(11217)] = 411826, + [SMALL_STATE(11218)] = 411839, + [SMALL_STATE(11219)] = 411852, + [SMALL_STATE(11220)] = 411865, + [SMALL_STATE(11221)] = 411878, + [SMALL_STATE(11222)] = 411891, + [SMALL_STATE(11223)] = 411904, + [SMALL_STATE(11224)] = 411917, + [SMALL_STATE(11225)] = 411930, + [SMALL_STATE(11226)] = 411943, + [SMALL_STATE(11227)] = 411956, + [SMALL_STATE(11228)] = 411969, + [SMALL_STATE(11229)] = 411982, + [SMALL_STATE(11230)] = 411995, + [SMALL_STATE(11231)] = 412008, + [SMALL_STATE(11232)] = 412021, + [SMALL_STATE(11233)] = 412034, + [SMALL_STATE(11234)] = 412047, + [SMALL_STATE(11235)] = 412060, + [SMALL_STATE(11236)] = 412071, + [SMALL_STATE(11237)] = 412084, + [SMALL_STATE(11238)] = 412097, + [SMALL_STATE(11239)] = 412110, + [SMALL_STATE(11240)] = 412123, + [SMALL_STATE(11241)] = 412136, + [SMALL_STATE(11242)] = 412149, + [SMALL_STATE(11243)] = 412162, + [SMALL_STATE(11244)] = 412175, + [SMALL_STATE(11245)] = 412188, + [SMALL_STATE(11246)] = 412201, + [SMALL_STATE(11247)] = 412214, + [SMALL_STATE(11248)] = 412225, + [SMALL_STATE(11249)] = 412238, + [SMALL_STATE(11250)] = 412249, + [SMALL_STATE(11251)] = 412262, + [SMALL_STATE(11252)] = 412275, + [SMALL_STATE(11253)] = 412286, + [SMALL_STATE(11254)] = 412297, + [SMALL_STATE(11255)] = 412310, + [SMALL_STATE(11256)] = 412323, + [SMALL_STATE(11257)] = 412336, + [SMALL_STATE(11258)] = 412349, + [SMALL_STATE(11259)] = 412362, + [SMALL_STATE(11260)] = 412375, + [SMALL_STATE(11261)] = 412386, + [SMALL_STATE(11262)] = 412399, + [SMALL_STATE(11263)] = 412412, + [SMALL_STATE(11264)] = 412423, + [SMALL_STATE(11265)] = 412436, + [SMALL_STATE(11266)] = 412449, + [SMALL_STATE(11267)] = 412460, + [SMALL_STATE(11268)] = 412471, + [SMALL_STATE(11269)] = 412484, + [SMALL_STATE(11270)] = 412497, + [SMALL_STATE(11271)] = 412508, + [SMALL_STATE(11272)] = 412519, + [SMALL_STATE(11273)] = 412532, + [SMALL_STATE(11274)] = 412543, + [SMALL_STATE(11275)] = 412554, + [SMALL_STATE(11276)] = 412567, + [SMALL_STATE(11277)] = 412576, + [SMALL_STATE(11278)] = 412587, + [SMALL_STATE(11279)] = 412598, + [SMALL_STATE(11280)] = 412611, + [SMALL_STATE(11281)] = 412624, + [SMALL_STATE(11282)] = 412637, + [SMALL_STATE(11283)] = 412650, + [SMALL_STATE(11284)] = 412663, + [SMALL_STATE(11285)] = 412676, + [SMALL_STATE(11286)] = 412689, + [SMALL_STATE(11287)] = 412702, + [SMALL_STATE(11288)] = 412715, + [SMALL_STATE(11289)] = 412728, + [SMALL_STATE(11290)] = 412741, + [SMALL_STATE(11291)] = 412754, + [SMALL_STATE(11292)] = 412767, + [SMALL_STATE(11293)] = 412780, + [SMALL_STATE(11294)] = 412793, + [SMALL_STATE(11295)] = 412806, + [SMALL_STATE(11296)] = 412819, + [SMALL_STATE(11297)] = 412832, + [SMALL_STATE(11298)] = 412845, + [SMALL_STATE(11299)] = 412856, + [SMALL_STATE(11300)] = 412869, + [SMALL_STATE(11301)] = 412882, + [SMALL_STATE(11302)] = 412895, + [SMALL_STATE(11303)] = 412906, + [SMALL_STATE(11304)] = 412919, + [SMALL_STATE(11305)] = 412932, + [SMALL_STATE(11306)] = 412945, + [SMALL_STATE(11307)] = 412958, + [SMALL_STATE(11308)] = 412971, + [SMALL_STATE(11309)] = 412980, + [SMALL_STATE(11310)] = 412993, + [SMALL_STATE(11311)] = 413006, + [SMALL_STATE(11312)] = 413019, + [SMALL_STATE(11313)] = 413032, + [SMALL_STATE(11314)] = 413045, + [SMALL_STATE(11315)] = 413058, + [SMALL_STATE(11316)] = 413071, + [SMALL_STATE(11317)] = 413084, + [SMALL_STATE(11318)] = 413097, + [SMALL_STATE(11319)] = 413108, + [SMALL_STATE(11320)] = 413121, + [SMALL_STATE(11321)] = 413132, + [SMALL_STATE(11322)] = 413145, + [SMALL_STATE(11323)] = 413158, + [SMALL_STATE(11324)] = 413171, + [SMALL_STATE(11325)] = 413184, + [SMALL_STATE(11326)] = 413197, + [SMALL_STATE(11327)] = 413210, + [SMALL_STATE(11328)] = 413223, + [SMALL_STATE(11329)] = 413236, + [SMALL_STATE(11330)] = 413249, + [SMALL_STATE(11331)] = 413262, + [SMALL_STATE(11332)] = 413275, + [SMALL_STATE(11333)] = 413288, + [SMALL_STATE(11334)] = 413301, + [SMALL_STATE(11335)] = 413314, + [SMALL_STATE(11336)] = 413327, + [SMALL_STATE(11337)] = 413340, + [SMALL_STATE(11338)] = 413353, + [SMALL_STATE(11339)] = 413366, + [SMALL_STATE(11340)] = 413377, + [SMALL_STATE(11341)] = 413388, + [SMALL_STATE(11342)] = 413401, + [SMALL_STATE(11343)] = 413414, + [SMALL_STATE(11344)] = 413427, + [SMALL_STATE(11345)] = 413440, + [SMALL_STATE(11346)] = 413453, + [SMALL_STATE(11347)] = 413466, + [SMALL_STATE(11348)] = 413479, + [SMALL_STATE(11349)] = 413492, + [SMALL_STATE(11350)] = 413503, + [SMALL_STATE(11351)] = 413516, + [SMALL_STATE(11352)] = 413527, + [SMALL_STATE(11353)] = 413540, + [SMALL_STATE(11354)] = 413553, + [SMALL_STATE(11355)] = 413566, + [SMALL_STATE(11356)] = 413577, + [SMALL_STATE(11357)] = 413590, + [SMALL_STATE(11358)] = 413603, + [SMALL_STATE(11359)] = 413616, + [SMALL_STATE(11360)] = 413629, + [SMALL_STATE(11361)] = 413642, + [SMALL_STATE(11362)] = 413655, + [SMALL_STATE(11363)] = 413668, + [SMALL_STATE(11364)] = 413677, + [SMALL_STATE(11365)] = 413690, + [SMALL_STATE(11366)] = 413701, + [SMALL_STATE(11367)] = 413712, + [SMALL_STATE(11368)] = 413723, + [SMALL_STATE(11369)] = 413736, + [SMALL_STATE(11370)] = 413749, + [SMALL_STATE(11371)] = 413760, + [SMALL_STATE(11372)] = 413773, + [SMALL_STATE(11373)] = 413784, + [SMALL_STATE(11374)] = 413795, + [SMALL_STATE(11375)] = 413808, + [SMALL_STATE(11376)] = 413821, + [SMALL_STATE(11377)] = 413834, + [SMALL_STATE(11378)] = 413847, + [SMALL_STATE(11379)] = 413860, + [SMALL_STATE(11380)] = 413871, + [SMALL_STATE(11381)] = 413884, + [SMALL_STATE(11382)] = 413895, + [SMALL_STATE(11383)] = 413908, + [SMALL_STATE(11384)] = 413921, + [SMALL_STATE(11385)] = 413934, + [SMALL_STATE(11386)] = 413947, + [SMALL_STATE(11387)] = 413960, + [SMALL_STATE(11388)] = 413973, + [SMALL_STATE(11389)] = 413986, + [SMALL_STATE(11390)] = 413999, + [SMALL_STATE(11391)] = 414012, + [SMALL_STATE(11392)] = 414025, + [SMALL_STATE(11393)] = 414038, + [SMALL_STATE(11394)] = 414051, + [SMALL_STATE(11395)] = 414064, + [SMALL_STATE(11396)] = 414074, + [SMALL_STATE(11397)] = 414084, + [SMALL_STATE(11398)] = 414094, + [SMALL_STATE(11399)] = 414104, + [SMALL_STATE(11400)] = 414114, + [SMALL_STATE(11401)] = 414124, + [SMALL_STATE(11402)] = 414134, + [SMALL_STATE(11403)] = 414144, + [SMALL_STATE(11404)] = 414154, + [SMALL_STATE(11405)] = 414164, + [SMALL_STATE(11406)] = 414174, + [SMALL_STATE(11407)] = 414184, + [SMALL_STATE(11408)] = 414194, + [SMALL_STATE(11409)] = 414204, + [SMALL_STATE(11410)] = 414214, + [SMALL_STATE(11411)] = 414224, + [SMALL_STATE(11412)] = 414234, + [SMALL_STATE(11413)] = 414244, + [SMALL_STATE(11414)] = 414254, + [SMALL_STATE(11415)] = 414264, + [SMALL_STATE(11416)] = 414274, + [SMALL_STATE(11417)] = 414284, + [SMALL_STATE(11418)] = 414294, + [SMALL_STATE(11419)] = 414304, + [SMALL_STATE(11420)] = 414314, + [SMALL_STATE(11421)] = 414324, + [SMALL_STATE(11422)] = 414332, + [SMALL_STATE(11423)] = 414342, + [SMALL_STATE(11424)] = 414352, + [SMALL_STATE(11425)] = 414362, + [SMALL_STATE(11426)] = 414372, + [SMALL_STATE(11427)] = 414382, + [SMALL_STATE(11428)] = 414392, + [SMALL_STATE(11429)] = 414402, + [SMALL_STATE(11430)] = 414412, + [SMALL_STATE(11431)] = 414422, + [SMALL_STATE(11432)] = 414432, + [SMALL_STATE(11433)] = 414442, + [SMALL_STATE(11434)] = 414452, + [SMALL_STATE(11435)] = 414462, + [SMALL_STATE(11436)] = 414472, + [SMALL_STATE(11437)] = 414482, + [SMALL_STATE(11438)] = 414492, + [SMALL_STATE(11439)] = 414502, + [SMALL_STATE(11440)] = 414510, + [SMALL_STATE(11441)] = 414520, + [SMALL_STATE(11442)] = 414528, + [SMALL_STATE(11443)] = 414538, + [SMALL_STATE(11444)] = 414546, + [SMALL_STATE(11445)] = 414556, + [SMALL_STATE(11446)] = 414566, + [SMALL_STATE(11447)] = 414576, + [SMALL_STATE(11448)] = 414584, + [SMALL_STATE(11449)] = 414594, + [SMALL_STATE(11450)] = 414604, + [SMALL_STATE(11451)] = 414614, + [SMALL_STATE(11452)] = 414624, + [SMALL_STATE(11453)] = 414632, + [SMALL_STATE(11454)] = 414642, + [SMALL_STATE(11455)] = 414652, + [SMALL_STATE(11456)] = 414660, + [SMALL_STATE(11457)] = 414670, + [SMALL_STATE(11458)] = 414680, + [SMALL_STATE(11459)] = 414690, + [SMALL_STATE(11460)] = 414700, + [SMALL_STATE(11461)] = 414710, + [SMALL_STATE(11462)] = 414720, + [SMALL_STATE(11463)] = 414730, + [SMALL_STATE(11464)] = 414738, + [SMALL_STATE(11465)] = 414748, + [SMALL_STATE(11466)] = 414758, + [SMALL_STATE(11467)] = 414768, + [SMALL_STATE(11468)] = 414778, + [SMALL_STATE(11469)] = 414788, + [SMALL_STATE(11470)] = 414798, + [SMALL_STATE(11471)] = 414806, + [SMALL_STATE(11472)] = 414816, + [SMALL_STATE(11473)] = 414826, + [SMALL_STATE(11474)] = 414836, + [SMALL_STATE(11475)] = 414844, + [SMALL_STATE(11476)] = 414854, + [SMALL_STATE(11477)] = 414864, + [SMALL_STATE(11478)] = 414874, + [SMALL_STATE(11479)] = 414884, + [SMALL_STATE(11480)] = 414894, + [SMALL_STATE(11481)] = 414902, + [SMALL_STATE(11482)] = 414912, + [SMALL_STATE(11483)] = 414920, + [SMALL_STATE(11484)] = 414930, + [SMALL_STATE(11485)] = 414940, + [SMALL_STATE(11486)] = 414950, + [SMALL_STATE(11487)] = 414960, + [SMALL_STATE(11488)] = 414970, + [SMALL_STATE(11489)] = 414980, + [SMALL_STATE(11490)] = 414990, + [SMALL_STATE(11491)] = 415000, + [SMALL_STATE(11492)] = 415010, + [SMALL_STATE(11493)] = 415020, + [SMALL_STATE(11494)] = 415028, + [SMALL_STATE(11495)] = 415038, + [SMALL_STATE(11496)] = 415048, + [SMALL_STATE(11497)] = 415058, + [SMALL_STATE(11498)] = 415066, + [SMALL_STATE(11499)] = 415074, + [SMALL_STATE(11500)] = 415084, + [SMALL_STATE(11501)] = 415094, + [SMALL_STATE(11502)] = 415104, + [SMALL_STATE(11503)] = 415114, + [SMALL_STATE(11504)] = 415122, + [SMALL_STATE(11505)] = 415130, + [SMALL_STATE(11506)] = 415140, + [SMALL_STATE(11507)] = 415150, + [SMALL_STATE(11508)] = 415160, + [SMALL_STATE(11509)] = 415170, + [SMALL_STATE(11510)] = 415180, + [SMALL_STATE(11511)] = 415190, + [SMALL_STATE(11512)] = 415200, + [SMALL_STATE(11513)] = 415208, + [SMALL_STATE(11514)] = 415216, + [SMALL_STATE(11515)] = 415226, + [SMALL_STATE(11516)] = 415234, + [SMALL_STATE(11517)] = 415244, + [SMALL_STATE(11518)] = 415254, + [SMALL_STATE(11519)] = 415264, + [SMALL_STATE(11520)] = 415274, + [SMALL_STATE(11521)] = 415284, + [SMALL_STATE(11522)] = 415292, + [SMALL_STATE(11523)] = 415302, + [SMALL_STATE(11524)] = 415312, + [SMALL_STATE(11525)] = 415322, + [SMALL_STATE(11526)] = 415332, + [SMALL_STATE(11527)] = 415342, + [SMALL_STATE(11528)] = 415352, + [SMALL_STATE(11529)] = 415362, + [SMALL_STATE(11530)] = 415370, + [SMALL_STATE(11531)] = 415380, + [SMALL_STATE(11532)] = 415390, + [SMALL_STATE(11533)] = 415400, + [SMALL_STATE(11534)] = 415408, + [SMALL_STATE(11535)] = 415418, + [SMALL_STATE(11536)] = 415428, + [SMALL_STATE(11537)] = 415438, + [SMALL_STATE(11538)] = 415446, + [SMALL_STATE(11539)] = 415456, + [SMALL_STATE(11540)] = 415464, + [SMALL_STATE(11541)] = 415474, + [SMALL_STATE(11542)] = 415484, + [SMALL_STATE(11543)] = 415492, + [SMALL_STATE(11544)] = 415502, + [SMALL_STATE(11545)] = 415512, + [SMALL_STATE(11546)] = 415522, + [SMALL_STATE(11547)] = 415532, + [SMALL_STATE(11548)] = 415542, + [SMALL_STATE(11549)] = 415552, + [SMALL_STATE(11550)] = 415562, + [SMALL_STATE(11551)] = 415572, + [SMALL_STATE(11552)] = 415582, + [SMALL_STATE(11553)] = 415592, + [SMALL_STATE(11554)] = 415602, + [SMALL_STATE(11555)] = 415612, + [SMALL_STATE(11556)] = 415622, + [SMALL_STATE(11557)] = 415632, + [SMALL_STATE(11558)] = 415642, + [SMALL_STATE(11559)] = 415652, + [SMALL_STATE(11560)] = 415662, + [SMALL_STATE(11561)] = 415672, + [SMALL_STATE(11562)] = 415682, + [SMALL_STATE(11563)] = 415692, + [SMALL_STATE(11564)] = 415702, + [SMALL_STATE(11565)] = 415712, + [SMALL_STATE(11566)] = 415722, + [SMALL_STATE(11567)] = 415732, + [SMALL_STATE(11568)] = 415742, + [SMALL_STATE(11569)] = 415752, + [SMALL_STATE(11570)] = 415762, + [SMALL_STATE(11571)] = 415772, + [SMALL_STATE(11572)] = 415782, + [SMALL_STATE(11573)] = 415790, + [SMALL_STATE(11574)] = 415800, + [SMALL_STATE(11575)] = 415808, + [SMALL_STATE(11576)] = 415818, + [SMALL_STATE(11577)] = 415828, + [SMALL_STATE(11578)] = 415838, + [SMALL_STATE(11579)] = 415848, + [SMALL_STATE(11580)] = 415858, + [SMALL_STATE(11581)] = 415866, + [SMALL_STATE(11582)] = 415874, + [SMALL_STATE(11583)] = 415884, + [SMALL_STATE(11584)] = 415894, + [SMALL_STATE(11585)] = 415904, + [SMALL_STATE(11586)] = 415914, + [SMALL_STATE(11587)] = 415924, + [SMALL_STATE(11588)] = 415934, + [SMALL_STATE(11589)] = 415944, + [SMALL_STATE(11590)] = 415954, + [SMALL_STATE(11591)] = 415964, + [SMALL_STATE(11592)] = 415974, + [SMALL_STATE(11593)] = 415984, + [SMALL_STATE(11594)] = 415994, + [SMALL_STATE(11595)] = 416004, + [SMALL_STATE(11596)] = 416014, + [SMALL_STATE(11597)] = 416024, + [SMALL_STATE(11598)] = 416034, + [SMALL_STATE(11599)] = 416044, + [SMALL_STATE(11600)] = 416054, + [SMALL_STATE(11601)] = 416064, + [SMALL_STATE(11602)] = 416074, + [SMALL_STATE(11603)] = 416084, + [SMALL_STATE(11604)] = 416094, + [SMALL_STATE(11605)] = 416104, + [SMALL_STATE(11606)] = 416114, + [SMALL_STATE(11607)] = 416124, + [SMALL_STATE(11608)] = 416132, + [SMALL_STATE(11609)] = 416142, + [SMALL_STATE(11610)] = 416152, + [SMALL_STATE(11611)] = 416162, + [SMALL_STATE(11612)] = 416172, + [SMALL_STATE(11613)] = 416182, + [SMALL_STATE(11614)] = 416192, + [SMALL_STATE(11615)] = 416202, + [SMALL_STATE(11616)] = 416212, + [SMALL_STATE(11617)] = 416222, + [SMALL_STATE(11618)] = 416230, + [SMALL_STATE(11619)] = 416240, + [SMALL_STATE(11620)] = 416250, + [SMALL_STATE(11621)] = 416260, + [SMALL_STATE(11622)] = 416270, + [SMALL_STATE(11623)] = 416280, + [SMALL_STATE(11624)] = 416290, + [SMALL_STATE(11625)] = 416300, + [SMALL_STATE(11626)] = 416310, + [SMALL_STATE(11627)] = 416320, + [SMALL_STATE(11628)] = 416330, + [SMALL_STATE(11629)] = 416340, + [SMALL_STATE(11630)] = 416350, + [SMALL_STATE(11631)] = 416360, + [SMALL_STATE(11632)] = 416370, + [SMALL_STATE(11633)] = 416380, + [SMALL_STATE(11634)] = 416390, + [SMALL_STATE(11635)] = 416400, + [SMALL_STATE(11636)] = 416410, + [SMALL_STATE(11637)] = 416420, + [SMALL_STATE(11638)] = 416430, + [SMALL_STATE(11639)] = 416440, + [SMALL_STATE(11640)] = 416450, + [SMALL_STATE(11641)] = 416460, + [SMALL_STATE(11642)] = 416470, + [SMALL_STATE(11643)] = 416480, + [SMALL_STATE(11644)] = 416490, + [SMALL_STATE(11645)] = 416500, + [SMALL_STATE(11646)] = 416510, + [SMALL_STATE(11647)] = 416520, + [SMALL_STATE(11648)] = 416530, + [SMALL_STATE(11649)] = 416540, + [SMALL_STATE(11650)] = 416550, + [SMALL_STATE(11651)] = 416560, + [SMALL_STATE(11652)] = 416570, + [SMALL_STATE(11653)] = 416580, + [SMALL_STATE(11654)] = 416590, + [SMALL_STATE(11655)] = 416600, + [SMALL_STATE(11656)] = 416610, + [SMALL_STATE(11657)] = 416620, + [SMALL_STATE(11658)] = 416630, + [SMALL_STATE(11659)] = 416640, + [SMALL_STATE(11660)] = 416648, + [SMALL_STATE(11661)] = 416658, + [SMALL_STATE(11662)] = 416668, + [SMALL_STATE(11663)] = 416678, + [SMALL_STATE(11664)] = 416688, + [SMALL_STATE(11665)] = 416698, + [SMALL_STATE(11666)] = 416708, + [SMALL_STATE(11667)] = 416718, + [SMALL_STATE(11668)] = 416728, + [SMALL_STATE(11669)] = 416738, + [SMALL_STATE(11670)] = 416748, + [SMALL_STATE(11671)] = 416758, + [SMALL_STATE(11672)] = 416768, + [SMALL_STATE(11673)] = 416778, + [SMALL_STATE(11674)] = 416788, + [SMALL_STATE(11675)] = 416798, + [SMALL_STATE(11676)] = 416806, + [SMALL_STATE(11677)] = 416816, + [SMALL_STATE(11678)] = 416826, + [SMALL_STATE(11679)] = 416836, + [SMALL_STATE(11680)] = 416846, + [SMALL_STATE(11681)] = 416856, + [SMALL_STATE(11682)] = 416866, + [SMALL_STATE(11683)] = 416876, + [SMALL_STATE(11684)] = 416884, + [SMALL_STATE(11685)] = 416894, + [SMALL_STATE(11686)] = 416904, + [SMALL_STATE(11687)] = 416914, + [SMALL_STATE(11688)] = 416924, + [SMALL_STATE(11689)] = 416934, + [SMALL_STATE(11690)] = 416944, + [SMALL_STATE(11691)] = 416954, + [SMALL_STATE(11692)] = 416964, + [SMALL_STATE(11693)] = 416974, + [SMALL_STATE(11694)] = 416984, + [SMALL_STATE(11695)] = 416994, + [SMALL_STATE(11696)] = 417004, + [SMALL_STATE(11697)] = 417014, + [SMALL_STATE(11698)] = 417024, + [SMALL_STATE(11699)] = 417034, + [SMALL_STATE(11700)] = 417044, + [SMALL_STATE(11701)] = 417054, + [SMALL_STATE(11702)] = 417064, + [SMALL_STATE(11703)] = 417074, + [SMALL_STATE(11704)] = 417084, + [SMALL_STATE(11705)] = 417094, + [SMALL_STATE(11706)] = 417104, + [SMALL_STATE(11707)] = 417114, + [SMALL_STATE(11708)] = 417124, + [SMALL_STATE(11709)] = 417134, + [SMALL_STATE(11710)] = 417144, + [SMALL_STATE(11711)] = 417154, + [SMALL_STATE(11712)] = 417164, + [SMALL_STATE(11713)] = 417174, + [SMALL_STATE(11714)] = 417184, + [SMALL_STATE(11715)] = 417194, + [SMALL_STATE(11716)] = 417204, + [SMALL_STATE(11717)] = 417214, + [SMALL_STATE(11718)] = 417224, + [SMALL_STATE(11719)] = 417234, + [SMALL_STATE(11720)] = 417244, + [SMALL_STATE(11721)] = 417254, + [SMALL_STATE(11722)] = 417262, + [SMALL_STATE(11723)] = 417270, + [SMALL_STATE(11724)] = 417280, + [SMALL_STATE(11725)] = 417290, + [SMALL_STATE(11726)] = 417300, + [SMALL_STATE(11727)] = 417310, + [SMALL_STATE(11728)] = 417320, + [SMALL_STATE(11729)] = 417330, + [SMALL_STATE(11730)] = 417340, + [SMALL_STATE(11731)] = 417350, + [SMALL_STATE(11732)] = 417360, + [SMALL_STATE(11733)] = 417370, + [SMALL_STATE(11734)] = 417380, + [SMALL_STATE(11735)] = 417390, + [SMALL_STATE(11736)] = 417400, + [SMALL_STATE(11737)] = 417410, + [SMALL_STATE(11738)] = 417420, + [SMALL_STATE(11739)] = 417430, + [SMALL_STATE(11740)] = 417440, + [SMALL_STATE(11741)] = 417450, + [SMALL_STATE(11742)] = 417460, + [SMALL_STATE(11743)] = 417470, + [SMALL_STATE(11744)] = 417480, + [SMALL_STATE(11745)] = 417490, + [SMALL_STATE(11746)] = 417500, + [SMALL_STATE(11747)] = 417510, + [SMALL_STATE(11748)] = 417520, + [SMALL_STATE(11749)] = 417530, + [SMALL_STATE(11750)] = 417540, + [SMALL_STATE(11751)] = 417550, + [SMALL_STATE(11752)] = 417560, + [SMALL_STATE(11753)] = 417570, + [SMALL_STATE(11754)] = 417580, + [SMALL_STATE(11755)] = 417590, + [SMALL_STATE(11756)] = 417600, + [SMALL_STATE(11757)] = 417610, + [SMALL_STATE(11758)] = 417620, + [SMALL_STATE(11759)] = 417630, + [SMALL_STATE(11760)] = 417640, + [SMALL_STATE(11761)] = 417650, + [SMALL_STATE(11762)] = 417658, + [SMALL_STATE(11763)] = 417668, + [SMALL_STATE(11764)] = 417678, + [SMALL_STATE(11765)] = 417688, + [SMALL_STATE(11766)] = 417696, + [SMALL_STATE(11767)] = 417706, + [SMALL_STATE(11768)] = 417716, + [SMALL_STATE(11769)] = 417726, + [SMALL_STATE(11770)] = 417736, + [SMALL_STATE(11771)] = 417746, + [SMALL_STATE(11772)] = 417756, + [SMALL_STATE(11773)] = 417766, + [SMALL_STATE(11774)] = 417776, + [SMALL_STATE(11775)] = 417786, + [SMALL_STATE(11776)] = 417796, + [SMALL_STATE(11777)] = 417806, + [SMALL_STATE(11778)] = 417816, + [SMALL_STATE(11779)] = 417826, + [SMALL_STATE(11780)] = 417836, + [SMALL_STATE(11781)] = 417846, + [SMALL_STATE(11782)] = 417856, + [SMALL_STATE(11783)] = 417866, + [SMALL_STATE(11784)] = 417876, + [SMALL_STATE(11785)] = 417886, + [SMALL_STATE(11786)] = 417896, + [SMALL_STATE(11787)] = 417906, + [SMALL_STATE(11788)] = 417914, + [SMALL_STATE(11789)] = 417924, + [SMALL_STATE(11790)] = 417934, + [SMALL_STATE(11791)] = 417944, + [SMALL_STATE(11792)] = 417954, + [SMALL_STATE(11793)] = 417964, + [SMALL_STATE(11794)] = 417974, + [SMALL_STATE(11795)] = 417982, + [SMALL_STATE(11796)] = 417992, + [SMALL_STATE(11797)] = 418002, + [SMALL_STATE(11798)] = 418012, + [SMALL_STATE(11799)] = 418022, + [SMALL_STATE(11800)] = 418032, + [SMALL_STATE(11801)] = 418042, + [SMALL_STATE(11802)] = 418052, + [SMALL_STATE(11803)] = 418062, + [SMALL_STATE(11804)] = 418072, + [SMALL_STATE(11805)] = 418082, + [SMALL_STATE(11806)] = 418092, + [SMALL_STATE(11807)] = 418102, + [SMALL_STATE(11808)] = 418112, + [SMALL_STATE(11809)] = 418122, + [SMALL_STATE(11810)] = 418132, + [SMALL_STATE(11811)] = 418142, + [SMALL_STATE(11812)] = 418152, + [SMALL_STATE(11813)] = 418162, + [SMALL_STATE(11814)] = 418172, + [SMALL_STATE(11815)] = 418182, + [SMALL_STATE(11816)] = 418192, + [SMALL_STATE(11817)] = 418202, + [SMALL_STATE(11818)] = 418212, + [SMALL_STATE(11819)] = 418222, + [SMALL_STATE(11820)] = 418232, + [SMALL_STATE(11821)] = 418242, + [SMALL_STATE(11822)] = 418252, + [SMALL_STATE(11823)] = 418262, + [SMALL_STATE(11824)] = 418272, + [SMALL_STATE(11825)] = 418282, + [SMALL_STATE(11826)] = 418292, + [SMALL_STATE(11827)] = 418302, + [SMALL_STATE(11828)] = 418312, + [SMALL_STATE(11829)] = 418322, + [SMALL_STATE(11830)] = 418332, + [SMALL_STATE(11831)] = 418342, + [SMALL_STATE(11832)] = 418352, + [SMALL_STATE(11833)] = 418362, + [SMALL_STATE(11834)] = 418372, + [SMALL_STATE(11835)] = 418382, + [SMALL_STATE(11836)] = 418392, + [SMALL_STATE(11837)] = 418402, + [SMALL_STATE(11838)] = 418412, + [SMALL_STATE(11839)] = 418422, + [SMALL_STATE(11840)] = 418432, + [SMALL_STATE(11841)] = 418440, + [SMALL_STATE(11842)] = 418448, + [SMALL_STATE(11843)] = 418458, + [SMALL_STATE(11844)] = 418468, + [SMALL_STATE(11845)] = 418478, + [SMALL_STATE(11846)] = 418488, + [SMALL_STATE(11847)] = 418498, + [SMALL_STATE(11848)] = 418508, + [SMALL_STATE(11849)] = 418518, + [SMALL_STATE(11850)] = 418528, + [SMALL_STATE(11851)] = 418538, + [SMALL_STATE(11852)] = 418548, + [SMALL_STATE(11853)] = 418558, + [SMALL_STATE(11854)] = 418568, + [SMALL_STATE(11855)] = 418578, + [SMALL_STATE(11856)] = 418588, + [SMALL_STATE(11857)] = 418598, + [SMALL_STATE(11858)] = 418608, + [SMALL_STATE(11859)] = 418618, + [SMALL_STATE(11860)] = 418628, + [SMALL_STATE(11861)] = 418638, + [SMALL_STATE(11862)] = 418648, + [SMALL_STATE(11863)] = 418658, + [SMALL_STATE(11864)] = 418668, + [SMALL_STATE(11865)] = 418676, + [SMALL_STATE(11866)] = 418686, + [SMALL_STATE(11867)] = 418694, + [SMALL_STATE(11868)] = 418702, + [SMALL_STATE(11869)] = 418712, + [SMALL_STATE(11870)] = 418722, + [SMALL_STATE(11871)] = 418732, + [SMALL_STATE(11872)] = 418742, + [SMALL_STATE(11873)] = 418749, + [SMALL_STATE(11874)] = 418756, + [SMALL_STATE(11875)] = 418763, + [SMALL_STATE(11876)] = 418770, + [SMALL_STATE(11877)] = 418777, + [SMALL_STATE(11878)] = 418784, + [SMALL_STATE(11879)] = 418791, + [SMALL_STATE(11880)] = 418798, + [SMALL_STATE(11881)] = 418805, + [SMALL_STATE(11882)] = 418812, + [SMALL_STATE(11883)] = 418819, + [SMALL_STATE(11884)] = 418826, + [SMALL_STATE(11885)] = 418833, + [SMALL_STATE(11886)] = 418840, + [SMALL_STATE(11887)] = 418847, + [SMALL_STATE(11888)] = 418854, + [SMALL_STATE(11889)] = 418861, + [SMALL_STATE(11890)] = 418868, + [SMALL_STATE(11891)] = 418875, + [SMALL_STATE(11892)] = 418882, + [SMALL_STATE(11893)] = 418889, + [SMALL_STATE(11894)] = 418896, + [SMALL_STATE(11895)] = 418903, + [SMALL_STATE(11896)] = 418910, + [SMALL_STATE(11897)] = 418917, + [SMALL_STATE(11898)] = 418924, + [SMALL_STATE(11899)] = 418931, + [SMALL_STATE(11900)] = 418938, + [SMALL_STATE(11901)] = 418945, + [SMALL_STATE(11902)] = 418952, + [SMALL_STATE(11903)] = 418959, + [SMALL_STATE(11904)] = 418966, + [SMALL_STATE(11905)] = 418973, + [SMALL_STATE(11906)] = 418980, + [SMALL_STATE(11907)] = 418987, + [SMALL_STATE(11908)] = 418994, + [SMALL_STATE(11909)] = 419001, + [SMALL_STATE(11910)] = 419008, + [SMALL_STATE(11911)] = 419015, + [SMALL_STATE(11912)] = 419022, + [SMALL_STATE(11913)] = 419029, + [SMALL_STATE(11914)] = 419036, + [SMALL_STATE(11915)] = 419043, + [SMALL_STATE(11916)] = 419050, + [SMALL_STATE(11917)] = 419057, + [SMALL_STATE(11918)] = 419064, + [SMALL_STATE(11919)] = 419071, + [SMALL_STATE(11920)] = 419078, + [SMALL_STATE(11921)] = 419085, + [SMALL_STATE(11922)] = 419092, + [SMALL_STATE(11923)] = 419099, + [SMALL_STATE(11924)] = 419106, + [SMALL_STATE(11925)] = 419113, + [SMALL_STATE(11926)] = 419120, + [SMALL_STATE(11927)] = 419127, + [SMALL_STATE(11928)] = 419134, + [SMALL_STATE(11929)] = 419141, + [SMALL_STATE(11930)] = 419148, + [SMALL_STATE(11931)] = 419155, + [SMALL_STATE(11932)] = 419162, + [SMALL_STATE(11933)] = 419169, + [SMALL_STATE(11934)] = 419176, + [SMALL_STATE(11935)] = 419183, + [SMALL_STATE(11936)] = 419190, + [SMALL_STATE(11937)] = 419197, + [SMALL_STATE(11938)] = 419204, + [SMALL_STATE(11939)] = 419211, + [SMALL_STATE(11940)] = 419218, + [SMALL_STATE(11941)] = 419225, + [SMALL_STATE(11942)] = 419232, + [SMALL_STATE(11943)] = 419239, + [SMALL_STATE(11944)] = 419246, + [SMALL_STATE(11945)] = 419253, + [SMALL_STATE(11946)] = 419260, + [SMALL_STATE(11947)] = 419267, + [SMALL_STATE(11948)] = 419274, + [SMALL_STATE(11949)] = 419281, + [SMALL_STATE(11950)] = 419288, + [SMALL_STATE(11951)] = 419295, + [SMALL_STATE(11952)] = 419302, + [SMALL_STATE(11953)] = 419309, + [SMALL_STATE(11954)] = 419316, + [SMALL_STATE(11955)] = 419323, + [SMALL_STATE(11956)] = 419330, + [SMALL_STATE(11957)] = 419337, + [SMALL_STATE(11958)] = 419344, + [SMALL_STATE(11959)] = 419351, + [SMALL_STATE(11960)] = 419358, + [SMALL_STATE(11961)] = 419365, + [SMALL_STATE(11962)] = 419372, + [SMALL_STATE(11963)] = 419379, + [SMALL_STATE(11964)] = 419386, + [SMALL_STATE(11965)] = 419393, + [SMALL_STATE(11966)] = 419400, + [SMALL_STATE(11967)] = 419407, + [SMALL_STATE(11968)] = 419414, + [SMALL_STATE(11969)] = 419421, + [SMALL_STATE(11970)] = 419428, + [SMALL_STATE(11971)] = 419435, + [SMALL_STATE(11972)] = 419442, + [SMALL_STATE(11973)] = 419449, + [SMALL_STATE(11974)] = 419456, + [SMALL_STATE(11975)] = 419463, + [SMALL_STATE(11976)] = 419470, + [SMALL_STATE(11977)] = 419477, + [SMALL_STATE(11978)] = 419484, + [SMALL_STATE(11979)] = 419491, + [SMALL_STATE(11980)] = 419498, + [SMALL_STATE(11981)] = 419505, + [SMALL_STATE(11982)] = 419512, + [SMALL_STATE(11983)] = 419519, + [SMALL_STATE(11984)] = 419526, + [SMALL_STATE(11985)] = 419533, + [SMALL_STATE(11986)] = 419540, + [SMALL_STATE(11987)] = 419547, + [SMALL_STATE(11988)] = 419554, + [SMALL_STATE(11989)] = 419561, + [SMALL_STATE(11990)] = 419568, + [SMALL_STATE(11991)] = 419575, + [SMALL_STATE(11992)] = 419582, + [SMALL_STATE(11993)] = 419589, + [SMALL_STATE(11994)] = 419596, + [SMALL_STATE(11995)] = 419603, + [SMALL_STATE(11996)] = 419610, + [SMALL_STATE(11997)] = 419617, + [SMALL_STATE(11998)] = 419624, + [SMALL_STATE(11999)] = 419631, + [SMALL_STATE(12000)] = 419638, + [SMALL_STATE(12001)] = 419645, + [SMALL_STATE(12002)] = 419652, + [SMALL_STATE(12003)] = 419659, + [SMALL_STATE(12004)] = 419666, + [SMALL_STATE(12005)] = 419673, + [SMALL_STATE(12006)] = 419680, + [SMALL_STATE(12007)] = 419687, + [SMALL_STATE(12008)] = 419694, + [SMALL_STATE(12009)] = 419701, + [SMALL_STATE(12010)] = 419708, + [SMALL_STATE(12011)] = 419715, + [SMALL_STATE(12012)] = 419722, + [SMALL_STATE(12013)] = 419729, + [SMALL_STATE(12014)] = 419736, + [SMALL_STATE(12015)] = 419743, + [SMALL_STATE(12016)] = 419750, + [SMALL_STATE(12017)] = 419757, + [SMALL_STATE(12018)] = 419764, + [SMALL_STATE(12019)] = 419771, + [SMALL_STATE(12020)] = 419778, + [SMALL_STATE(12021)] = 419785, + [SMALL_STATE(12022)] = 419792, + [SMALL_STATE(12023)] = 419799, + [SMALL_STATE(12024)] = 419806, + [SMALL_STATE(12025)] = 419813, + [SMALL_STATE(12026)] = 419820, + [SMALL_STATE(12027)] = 419827, + [SMALL_STATE(12028)] = 419834, + [SMALL_STATE(12029)] = 419841, + [SMALL_STATE(12030)] = 419848, + [SMALL_STATE(12031)] = 419855, + [SMALL_STATE(12032)] = 419862, + [SMALL_STATE(12033)] = 419869, + [SMALL_STATE(12034)] = 419876, + [SMALL_STATE(12035)] = 419883, + [SMALL_STATE(12036)] = 419890, + [SMALL_STATE(12037)] = 419897, + [SMALL_STATE(12038)] = 419904, + [SMALL_STATE(12039)] = 419911, + [SMALL_STATE(12040)] = 419918, + [SMALL_STATE(12041)] = 419925, + [SMALL_STATE(12042)] = 419932, + [SMALL_STATE(12043)] = 419939, + [SMALL_STATE(12044)] = 419946, + [SMALL_STATE(12045)] = 419953, + [SMALL_STATE(12046)] = 419960, + [SMALL_STATE(12047)] = 419967, + [SMALL_STATE(12048)] = 419974, + [SMALL_STATE(12049)] = 419981, + [SMALL_STATE(12050)] = 419988, + [SMALL_STATE(12051)] = 419995, + [SMALL_STATE(12052)] = 420002, + [SMALL_STATE(12053)] = 420009, + [SMALL_STATE(12054)] = 420016, + [SMALL_STATE(12055)] = 420023, + [SMALL_STATE(12056)] = 420030, + [SMALL_STATE(12057)] = 420037, + [SMALL_STATE(12058)] = 420044, + [SMALL_STATE(12059)] = 420051, + [SMALL_STATE(12060)] = 420058, + [SMALL_STATE(12061)] = 420065, + [SMALL_STATE(12062)] = 420072, + [SMALL_STATE(12063)] = 420079, + [SMALL_STATE(12064)] = 420086, + [SMALL_STATE(12065)] = 420093, + [SMALL_STATE(12066)] = 420100, + [SMALL_STATE(12067)] = 420107, + [SMALL_STATE(12068)] = 420114, + [SMALL_STATE(12069)] = 420121, + [SMALL_STATE(12070)] = 420128, + [SMALL_STATE(12071)] = 420135, + [SMALL_STATE(12072)] = 420142, + [SMALL_STATE(12073)] = 420149, + [SMALL_STATE(12074)] = 420156, + [SMALL_STATE(12075)] = 420163, + [SMALL_STATE(12076)] = 420170, + [SMALL_STATE(12077)] = 420177, + [SMALL_STATE(12078)] = 420184, + [SMALL_STATE(12079)] = 420191, + [SMALL_STATE(12080)] = 420198, + [SMALL_STATE(12081)] = 420205, + [SMALL_STATE(12082)] = 420212, + [SMALL_STATE(12083)] = 420219, + [SMALL_STATE(12084)] = 420226, + [SMALL_STATE(12085)] = 420233, + [SMALL_STATE(12086)] = 420240, + [SMALL_STATE(12087)] = 420247, + [SMALL_STATE(12088)] = 420254, + [SMALL_STATE(12089)] = 420261, + [SMALL_STATE(12090)] = 420268, + [SMALL_STATE(12091)] = 420275, + [SMALL_STATE(12092)] = 420282, + [SMALL_STATE(12093)] = 420289, + [SMALL_STATE(12094)] = 420296, + [SMALL_STATE(12095)] = 420303, + [SMALL_STATE(12096)] = 420310, + [SMALL_STATE(12097)] = 420317, + [SMALL_STATE(12098)] = 420324, + [SMALL_STATE(12099)] = 420331, + [SMALL_STATE(12100)] = 420338, + [SMALL_STATE(12101)] = 420345, + [SMALL_STATE(12102)] = 420352, + [SMALL_STATE(12103)] = 420359, + [SMALL_STATE(12104)] = 420366, + [SMALL_STATE(12105)] = 420373, + [SMALL_STATE(12106)] = 420380, + [SMALL_STATE(12107)] = 420387, + [SMALL_STATE(12108)] = 420394, + [SMALL_STATE(12109)] = 420401, + [SMALL_STATE(12110)] = 420408, + [SMALL_STATE(12111)] = 420415, + [SMALL_STATE(12112)] = 420422, + [SMALL_STATE(12113)] = 420429, + [SMALL_STATE(12114)] = 420436, + [SMALL_STATE(12115)] = 420443, + [SMALL_STATE(12116)] = 420450, + [SMALL_STATE(12117)] = 420457, + [SMALL_STATE(12118)] = 420464, + [SMALL_STATE(12119)] = 420471, + [SMALL_STATE(12120)] = 420478, + [SMALL_STATE(12121)] = 420485, + [SMALL_STATE(12122)] = 420492, + [SMALL_STATE(12123)] = 420499, + [SMALL_STATE(12124)] = 420506, + [SMALL_STATE(12125)] = 420513, + [SMALL_STATE(12126)] = 420520, + [SMALL_STATE(12127)] = 420527, + [SMALL_STATE(12128)] = 420534, + [SMALL_STATE(12129)] = 420541, + [SMALL_STATE(12130)] = 420548, + [SMALL_STATE(12131)] = 420555, + [SMALL_STATE(12132)] = 420562, + [SMALL_STATE(12133)] = 420569, + [SMALL_STATE(12134)] = 420576, + [SMALL_STATE(12135)] = 420583, + [SMALL_STATE(12136)] = 420590, + [SMALL_STATE(12137)] = 420597, + [SMALL_STATE(12138)] = 420604, + [SMALL_STATE(12139)] = 420611, + [SMALL_STATE(12140)] = 420618, + [SMALL_STATE(12141)] = 420625, + [SMALL_STATE(12142)] = 420632, + [SMALL_STATE(12143)] = 420639, + [SMALL_STATE(12144)] = 420646, + [SMALL_STATE(12145)] = 420653, + [SMALL_STATE(12146)] = 420660, + [SMALL_STATE(12147)] = 420667, + [SMALL_STATE(12148)] = 420674, + [SMALL_STATE(12149)] = 420681, + [SMALL_STATE(12150)] = 420688, + [SMALL_STATE(12151)] = 420695, + [SMALL_STATE(12152)] = 420702, + [SMALL_STATE(12153)] = 420709, + [SMALL_STATE(12154)] = 420716, + [SMALL_STATE(12155)] = 420723, + [SMALL_STATE(12156)] = 420730, + [SMALL_STATE(12157)] = 420737, + [SMALL_STATE(12158)] = 420744, + [SMALL_STATE(12159)] = 420751, + [SMALL_STATE(12160)] = 420758, + [SMALL_STATE(12161)] = 420765, + [SMALL_STATE(12162)] = 420772, + [SMALL_STATE(12163)] = 420779, + [SMALL_STATE(12164)] = 420786, + [SMALL_STATE(12165)] = 420793, + [SMALL_STATE(12166)] = 420800, + [SMALL_STATE(12167)] = 420807, + [SMALL_STATE(12168)] = 420814, + [SMALL_STATE(12169)] = 420821, + [SMALL_STATE(12170)] = 420828, + [SMALL_STATE(12171)] = 420835, + [SMALL_STATE(12172)] = 420842, + [SMALL_STATE(12173)] = 420849, + [SMALL_STATE(12174)] = 420856, + [SMALL_STATE(12175)] = 420863, + [SMALL_STATE(12176)] = 420870, + [SMALL_STATE(12177)] = 420877, + [SMALL_STATE(12178)] = 420884, + [SMALL_STATE(12179)] = 420891, + [SMALL_STATE(12180)] = 420898, + [SMALL_STATE(12181)] = 420905, + [SMALL_STATE(12182)] = 420912, + [SMALL_STATE(12183)] = 420919, + [SMALL_STATE(12184)] = 420926, + [SMALL_STATE(12185)] = 420933, + [SMALL_STATE(12186)] = 420940, + [SMALL_STATE(12187)] = 420947, + [SMALL_STATE(12188)] = 420954, + [SMALL_STATE(12189)] = 420961, + [SMALL_STATE(12190)] = 420968, + [SMALL_STATE(12191)] = 420975, + [SMALL_STATE(12192)] = 420982, + [SMALL_STATE(12193)] = 420989, + [SMALL_STATE(12194)] = 420996, + [SMALL_STATE(12195)] = 421003, + [SMALL_STATE(12196)] = 421010, + [SMALL_STATE(12197)] = 421017, + [SMALL_STATE(12198)] = 421024, + [SMALL_STATE(12199)] = 421031, + [SMALL_STATE(12200)] = 421038, + [SMALL_STATE(12201)] = 421045, + [SMALL_STATE(12202)] = 421052, + [SMALL_STATE(12203)] = 421059, + [SMALL_STATE(12204)] = 421066, + [SMALL_STATE(12205)] = 421073, + [SMALL_STATE(12206)] = 421080, + [SMALL_STATE(12207)] = 421087, + [SMALL_STATE(12208)] = 421094, + [SMALL_STATE(12209)] = 421101, + [SMALL_STATE(12210)] = 421108, + [SMALL_STATE(12211)] = 421115, + [SMALL_STATE(12212)] = 421122, + [SMALL_STATE(12213)] = 421129, + [SMALL_STATE(12214)] = 421136, + [SMALL_STATE(12215)] = 421143, + [SMALL_STATE(12216)] = 421150, + [SMALL_STATE(12217)] = 421157, + [SMALL_STATE(12218)] = 421164, + [SMALL_STATE(12219)] = 421171, + [SMALL_STATE(12220)] = 421178, + [SMALL_STATE(12221)] = 421185, + [SMALL_STATE(12222)] = 421192, + [SMALL_STATE(12223)] = 421199, + [SMALL_STATE(12224)] = 421206, + [SMALL_STATE(12225)] = 421213, + [SMALL_STATE(12226)] = 421220, + [SMALL_STATE(12227)] = 421227, + [SMALL_STATE(12228)] = 421234, + [SMALL_STATE(12229)] = 421241, + [SMALL_STATE(12230)] = 421248, + [SMALL_STATE(12231)] = 421255, + [SMALL_STATE(12232)] = 421262, + [SMALL_STATE(12233)] = 421269, + [SMALL_STATE(12234)] = 421276, + [SMALL_STATE(12235)] = 421283, + [SMALL_STATE(12236)] = 421290, + [SMALL_STATE(12237)] = 421297, + [SMALL_STATE(12238)] = 421304, + [SMALL_STATE(12239)] = 421311, + [SMALL_STATE(12240)] = 421318, + [SMALL_STATE(12241)] = 421325, + [SMALL_STATE(12242)] = 421332, + [SMALL_STATE(12243)] = 421339, + [SMALL_STATE(12244)] = 421346, + [SMALL_STATE(12245)] = 421353, + [SMALL_STATE(12246)] = 421360, + [SMALL_STATE(12247)] = 421367, + [SMALL_STATE(12248)] = 421374, + [SMALL_STATE(12249)] = 421381, + [SMALL_STATE(12250)] = 421388, + [SMALL_STATE(12251)] = 421395, + [SMALL_STATE(12252)] = 421402, + [SMALL_STATE(12253)] = 421409, + [SMALL_STATE(12254)] = 421416, + [SMALL_STATE(12255)] = 421423, + [SMALL_STATE(12256)] = 421430, + [SMALL_STATE(12257)] = 421437, + [SMALL_STATE(12258)] = 421444, + [SMALL_STATE(12259)] = 421451, + [SMALL_STATE(12260)] = 421458, + [SMALL_STATE(12261)] = 421465, + [SMALL_STATE(12262)] = 421472, + [SMALL_STATE(12263)] = 421479, + [SMALL_STATE(12264)] = 421486, + [SMALL_STATE(12265)] = 421493, + [SMALL_STATE(12266)] = 421500, + [SMALL_STATE(12267)] = 421507, + [SMALL_STATE(12268)] = 421514, + [SMALL_STATE(12269)] = 421521, + [SMALL_STATE(12270)] = 421528, + [SMALL_STATE(12271)] = 421535, + [SMALL_STATE(12272)] = 421542, + [SMALL_STATE(12273)] = 421549, + [SMALL_STATE(12274)] = 421556, + [SMALL_STATE(12275)] = 421563, + [SMALL_STATE(12276)] = 421570, + [SMALL_STATE(12277)] = 421577, + [SMALL_STATE(12278)] = 421584, + [SMALL_STATE(12279)] = 421591, + [SMALL_STATE(12280)] = 421598, + [SMALL_STATE(12281)] = 421605, + [SMALL_STATE(12282)] = 421612, + [SMALL_STATE(12283)] = 421619, + [SMALL_STATE(12284)] = 421626, + [SMALL_STATE(12285)] = 421633, + [SMALL_STATE(12286)] = 421640, + [SMALL_STATE(12287)] = 421647, + [SMALL_STATE(12288)] = 421654, + [SMALL_STATE(12289)] = 421661, + [SMALL_STATE(12290)] = 421668, + [SMALL_STATE(12291)] = 421675, + [SMALL_STATE(12292)] = 421682, + [SMALL_STATE(12293)] = 421689, + [SMALL_STATE(12294)] = 421696, + [SMALL_STATE(12295)] = 421703, + [SMALL_STATE(12296)] = 421710, + [SMALL_STATE(12297)] = 421717, + [SMALL_STATE(12298)] = 421724, + [SMALL_STATE(12299)] = 421731, + [SMALL_STATE(12300)] = 421738, + [SMALL_STATE(12301)] = 421745, + [SMALL_STATE(12302)] = 421752, + [SMALL_STATE(12303)] = 421759, + [SMALL_STATE(12304)] = 421766, + [SMALL_STATE(12305)] = 421773, + [SMALL_STATE(12306)] = 421780, + [SMALL_STATE(12307)] = 421787, + [SMALL_STATE(12308)] = 421794, + [SMALL_STATE(12309)] = 421801, + [SMALL_STATE(12310)] = 421808, + [SMALL_STATE(12311)] = 421815, + [SMALL_STATE(12312)] = 421822, + [SMALL_STATE(12313)] = 421829, + [SMALL_STATE(12314)] = 421836, + [SMALL_STATE(12315)] = 421843, + [SMALL_STATE(12316)] = 421850, + [SMALL_STATE(12317)] = 421857, + [SMALL_STATE(12318)] = 421864, + [SMALL_STATE(12319)] = 421871, + [SMALL_STATE(12320)] = 421878, + [SMALL_STATE(12321)] = 421885, + [SMALL_STATE(12322)] = 421892, + [SMALL_STATE(12323)] = 421899, + [SMALL_STATE(12324)] = 421906, + [SMALL_STATE(12325)] = 421913, + [SMALL_STATE(12326)] = 421920, + [SMALL_STATE(12327)] = 421927, + [SMALL_STATE(12328)] = 421934, + [SMALL_STATE(12329)] = 421941, + [SMALL_STATE(12330)] = 421948, + [SMALL_STATE(12331)] = 421955, + [SMALL_STATE(12332)] = 421962, + [SMALL_STATE(12333)] = 421969, + [SMALL_STATE(12334)] = 421976, + [SMALL_STATE(12335)] = 421983, + [SMALL_STATE(12336)] = 421990, + [SMALL_STATE(12337)] = 421997, + [SMALL_STATE(12338)] = 422004, + [SMALL_STATE(12339)] = 422011, + [SMALL_STATE(12340)] = 422018, + [SMALL_STATE(12341)] = 422025, + [SMALL_STATE(12342)] = 422032, + [SMALL_STATE(12343)] = 422039, + [SMALL_STATE(12344)] = 422046, + [SMALL_STATE(12345)] = 422053, + [SMALL_STATE(12346)] = 422060, + [SMALL_STATE(12347)] = 422067, + [SMALL_STATE(12348)] = 422074, + [SMALL_STATE(12349)] = 422081, + [SMALL_STATE(12350)] = 422088, + [SMALL_STATE(12351)] = 422095, + [SMALL_STATE(12352)] = 422102, + [SMALL_STATE(12353)] = 422109, + [SMALL_STATE(12354)] = 422116, + [SMALL_STATE(12355)] = 422123, + [SMALL_STATE(12356)] = 422130, + [SMALL_STATE(12357)] = 422137, + [SMALL_STATE(12358)] = 422144, + [SMALL_STATE(12359)] = 422151, + [SMALL_STATE(12360)] = 422158, + [SMALL_STATE(12361)] = 422165, + [SMALL_STATE(12362)] = 422172, + [SMALL_STATE(12363)] = 422179, + [SMALL_STATE(12364)] = 422186, + [SMALL_STATE(12365)] = 422193, + [SMALL_STATE(12366)] = 422200, + [SMALL_STATE(12367)] = 422207, + [SMALL_STATE(12368)] = 422214, + [SMALL_STATE(12369)] = 422221, + [SMALL_STATE(12370)] = 422228, + [SMALL_STATE(12371)] = 422235, + [SMALL_STATE(12372)] = 422242, + [SMALL_STATE(12373)] = 422249, + [SMALL_STATE(12374)] = 422256, + [SMALL_STATE(12375)] = 422263, + [SMALL_STATE(12376)] = 422270, + [SMALL_STATE(12377)] = 422277, + [SMALL_STATE(12378)] = 422284, + [SMALL_STATE(12379)] = 422291, + [SMALL_STATE(12380)] = 422298, + [SMALL_STATE(12381)] = 422305, + [SMALL_STATE(12382)] = 422312, + [SMALL_STATE(12383)] = 422319, + [SMALL_STATE(12384)] = 422326, + [SMALL_STATE(12385)] = 422333, + [SMALL_STATE(12386)] = 422340, + [SMALL_STATE(12387)] = 422347, + [SMALL_STATE(12388)] = 422354, + [SMALL_STATE(12389)] = 422361, + [SMALL_STATE(12390)] = 422368, + [SMALL_STATE(12391)] = 422375, + [SMALL_STATE(12392)] = 422382, + [SMALL_STATE(12393)] = 422389, + [SMALL_STATE(12394)] = 422396, + [SMALL_STATE(12395)] = 422403, + [SMALL_STATE(12396)] = 422410, + [SMALL_STATE(12397)] = 422417, + [SMALL_STATE(12398)] = 422424, + [SMALL_STATE(12399)] = 422431, + [SMALL_STATE(12400)] = 422438, + [SMALL_STATE(12401)] = 422445, + [SMALL_STATE(12402)] = 422452, + [SMALL_STATE(12403)] = 422459, + [SMALL_STATE(12404)] = 422466, + [SMALL_STATE(12405)] = 422473, + [SMALL_STATE(12406)] = 422480, + [SMALL_STATE(12407)] = 422487, + [SMALL_STATE(12408)] = 422494, + [SMALL_STATE(12409)] = 422501, + [SMALL_STATE(12410)] = 422508, + [SMALL_STATE(12411)] = 422515, + [SMALL_STATE(12412)] = 422522, + [SMALL_STATE(12413)] = 422529, + [SMALL_STATE(12414)] = 422536, + [SMALL_STATE(12415)] = 422543, + [SMALL_STATE(12416)] = 422550, + [SMALL_STATE(12417)] = 422557, + [SMALL_STATE(12418)] = 422564, + [SMALL_STATE(12419)] = 422571, + [SMALL_STATE(12420)] = 422578, + [SMALL_STATE(12421)] = 422585, + [SMALL_STATE(12422)] = 422592, + [SMALL_STATE(12423)] = 422599, + [SMALL_STATE(12424)] = 422606, + [SMALL_STATE(12425)] = 422613, + [SMALL_STATE(12426)] = 422620, + [SMALL_STATE(12427)] = 422627, + [SMALL_STATE(12428)] = 422634, + [SMALL_STATE(12429)] = 422641, + [SMALL_STATE(12430)] = 422648, + [SMALL_STATE(12431)] = 422655, + [SMALL_STATE(12432)] = 422662, + [SMALL_STATE(12433)] = 422669, + [SMALL_STATE(12434)] = 422676, + [SMALL_STATE(12435)] = 422683, + [SMALL_STATE(12436)] = 422690, + [SMALL_STATE(12437)] = 422697, + [SMALL_STATE(12438)] = 422704, + [SMALL_STATE(12439)] = 422711, + [SMALL_STATE(12440)] = 422718, + [SMALL_STATE(12441)] = 422725, + [SMALL_STATE(12442)] = 422732, + [SMALL_STATE(12443)] = 422739, + [SMALL_STATE(12444)] = 422746, + [SMALL_STATE(12445)] = 422753, + [SMALL_STATE(12446)] = 422760, + [SMALL_STATE(12447)] = 422767, + [SMALL_STATE(12448)] = 422774, + [SMALL_STATE(12449)] = 422781, + [SMALL_STATE(12450)] = 422788, + [SMALL_STATE(12451)] = 422795, + [SMALL_STATE(12452)] = 422802, + [SMALL_STATE(12453)] = 422809, + [SMALL_STATE(12454)] = 422816, + [SMALL_STATE(12455)] = 422823, + [SMALL_STATE(12456)] = 422830, + [SMALL_STATE(12457)] = 422837, + [SMALL_STATE(12458)] = 422844, + [SMALL_STATE(12459)] = 422851, + [SMALL_STATE(12460)] = 422858, + [SMALL_STATE(12461)] = 422865, + [SMALL_STATE(12462)] = 422872, + [SMALL_STATE(12463)] = 422879, + [SMALL_STATE(12464)] = 422886, + [SMALL_STATE(12465)] = 422893, + [SMALL_STATE(12466)] = 422900, + [SMALL_STATE(12467)] = 422907, + [SMALL_STATE(12468)] = 422914, + [SMALL_STATE(12469)] = 422921, + [SMALL_STATE(12470)] = 422928, + [SMALL_STATE(12471)] = 422935, + [SMALL_STATE(12472)] = 422942, + [SMALL_STATE(12473)] = 422949, + [SMALL_STATE(12474)] = 422956, + [SMALL_STATE(12475)] = 422963, + [SMALL_STATE(12476)] = 422970, + [SMALL_STATE(12477)] = 422977, + [SMALL_STATE(12478)] = 422984, + [SMALL_STATE(12479)] = 422991, + [SMALL_STATE(12480)] = 422998, + [SMALL_STATE(12481)] = 423005, + [SMALL_STATE(12482)] = 423012, + [SMALL_STATE(12483)] = 423019, + [SMALL_STATE(12484)] = 423026, + [SMALL_STATE(12485)] = 423033, + [SMALL_STATE(12486)] = 423040, + [SMALL_STATE(12487)] = 423047, + [SMALL_STATE(12488)] = 423054, + [SMALL_STATE(12489)] = 423061, + [SMALL_STATE(12490)] = 423068, + [SMALL_STATE(12491)] = 423075, + [SMALL_STATE(12492)] = 423082, + [SMALL_STATE(12493)] = 423089, + [SMALL_STATE(12494)] = 423096, + [SMALL_STATE(12495)] = 423103, + [SMALL_STATE(12496)] = 423110, + [SMALL_STATE(12497)] = 423117, + [SMALL_STATE(12498)] = 423124, + [SMALL_STATE(12499)] = 423131, + [SMALL_STATE(12500)] = 423138, + [SMALL_STATE(12501)] = 423145, + [SMALL_STATE(12502)] = 423152, + [SMALL_STATE(12503)] = 423159, + [SMALL_STATE(12504)] = 423166, + [SMALL_STATE(12505)] = 423173, + [SMALL_STATE(12506)] = 423180, + [SMALL_STATE(12507)] = 423187, + [SMALL_STATE(12508)] = 423194, + [SMALL_STATE(12509)] = 423201, + [SMALL_STATE(12510)] = 423208, + [SMALL_STATE(12511)] = 423215, + [SMALL_STATE(12512)] = 423222, + [SMALL_STATE(12513)] = 423229, + [SMALL_STATE(12514)] = 423236, + [SMALL_STATE(12515)] = 423243, + [SMALL_STATE(12516)] = 423250, + [SMALL_STATE(12517)] = 423257, + [SMALL_STATE(12518)] = 423264, + [SMALL_STATE(12519)] = 423271, + [SMALL_STATE(12520)] = 423278, + [SMALL_STATE(12521)] = 423285, + [SMALL_STATE(12522)] = 423292, + [SMALL_STATE(12523)] = 423299, + [SMALL_STATE(12524)] = 423306, + [SMALL_STATE(12525)] = 423313, + [SMALL_STATE(12526)] = 423320, + [SMALL_STATE(12527)] = 423327, + [SMALL_STATE(12528)] = 423334, + [SMALL_STATE(12529)] = 423341, + [SMALL_STATE(12530)] = 423348, + [SMALL_STATE(12531)] = 423355, + [SMALL_STATE(12532)] = 423362, + [SMALL_STATE(12533)] = 423369, + [SMALL_STATE(12534)] = 423376, + [SMALL_STATE(12535)] = 423383, + [SMALL_STATE(12536)] = 423390, + [SMALL_STATE(12537)] = 423397, + [SMALL_STATE(12538)] = 423404, + [SMALL_STATE(12539)] = 423411, + [SMALL_STATE(12540)] = 423418, + [SMALL_STATE(12541)] = 423425, + [SMALL_STATE(12542)] = 423432, + [SMALL_STATE(12543)] = 423439, + [SMALL_STATE(12544)] = 423446, + [SMALL_STATE(12545)] = 423453, + [SMALL_STATE(12546)] = 423460, + [SMALL_STATE(12547)] = 423467, + [SMALL_STATE(12548)] = 423474, + [SMALL_STATE(12549)] = 423481, + [SMALL_STATE(12550)] = 423488, + [SMALL_STATE(12551)] = 423495, + [SMALL_STATE(12552)] = 423502, + [SMALL_STATE(12553)] = 423509, + [SMALL_STATE(12554)] = 423516, + [SMALL_STATE(12555)] = 423523, + [SMALL_STATE(12556)] = 423530, + [SMALL_STATE(12557)] = 423537, + [SMALL_STATE(12558)] = 423544, + [SMALL_STATE(12559)] = 423551, + [SMALL_STATE(12560)] = 423558, + [SMALL_STATE(12561)] = 423565, + [SMALL_STATE(12562)] = 423572, + [SMALL_STATE(12563)] = 423579, + [SMALL_STATE(12564)] = 423586, + [SMALL_STATE(12565)] = 423593, + [SMALL_STATE(12566)] = 423600, + [SMALL_STATE(12567)] = 423607, + [SMALL_STATE(12568)] = 423614, + [SMALL_STATE(12569)] = 423621, + [SMALL_STATE(12570)] = 423628, + [SMALL_STATE(12571)] = 423635, + [SMALL_STATE(12572)] = 423642, + [SMALL_STATE(12573)] = 423649, + [SMALL_STATE(12574)] = 423656, + [SMALL_STATE(12575)] = 423663, + [SMALL_STATE(12576)] = 423670, + [SMALL_STATE(12577)] = 423677, + [SMALL_STATE(12578)] = 423684, + [SMALL_STATE(12579)] = 423691, + [SMALL_STATE(12580)] = 423698, + [SMALL_STATE(12581)] = 423705, + [SMALL_STATE(12582)] = 423712, + [SMALL_STATE(12583)] = 423719, + [SMALL_STATE(12584)] = 423726, + [SMALL_STATE(12585)] = 423733, + [SMALL_STATE(12586)] = 423740, + [SMALL_STATE(12587)] = 423747, + [SMALL_STATE(12588)] = 423754, + [SMALL_STATE(12589)] = 423761, + [SMALL_STATE(12590)] = 423768, + [SMALL_STATE(12591)] = 423775, + [SMALL_STATE(12592)] = 423782, + [SMALL_STATE(12593)] = 423789, + [SMALL_STATE(12594)] = 423796, + [SMALL_STATE(12595)] = 423803, + [SMALL_STATE(12596)] = 423810, + [SMALL_STATE(12597)] = 423817, + [SMALL_STATE(12598)] = 423824, + [SMALL_STATE(12599)] = 423831, + [SMALL_STATE(12600)] = 423838, + [SMALL_STATE(12601)] = 423845, + [SMALL_STATE(12602)] = 423852, + [SMALL_STATE(12603)] = 423859, + [SMALL_STATE(12604)] = 423866, + [SMALL_STATE(12605)] = 423873, + [SMALL_STATE(12606)] = 423880, + [SMALL_STATE(12607)] = 423887, + [SMALL_STATE(12608)] = 423894, + [SMALL_STATE(12609)] = 423901, + [SMALL_STATE(12610)] = 423908, + [SMALL_STATE(12611)] = 423915, + [SMALL_STATE(12612)] = 423922, + [SMALL_STATE(12613)] = 423929, + [SMALL_STATE(12614)] = 423936, + [SMALL_STATE(12615)] = 423943, + [SMALL_STATE(12616)] = 423950, + [SMALL_STATE(12617)] = 423957, + [SMALL_STATE(12618)] = 423964, + [SMALL_STATE(12619)] = 423971, + [SMALL_STATE(12620)] = 423978, + [SMALL_STATE(12621)] = 423985, + [SMALL_STATE(12622)] = 423992, + [SMALL_STATE(12623)] = 423999, + [SMALL_STATE(12624)] = 424006, + [SMALL_STATE(12625)] = 424013, + [SMALL_STATE(12626)] = 424020, + [SMALL_STATE(12627)] = 424027, + [SMALL_STATE(12628)] = 424034, + [SMALL_STATE(12629)] = 424041, + [SMALL_STATE(12630)] = 424048, + [SMALL_STATE(12631)] = 424055, + [SMALL_STATE(12632)] = 424062, + [SMALL_STATE(12633)] = 424069, + [SMALL_STATE(12634)] = 424076, + [SMALL_STATE(12635)] = 424083, + [SMALL_STATE(12636)] = 424090, + [SMALL_STATE(12637)] = 424097, + [SMALL_STATE(12638)] = 424104, + [SMALL_STATE(12639)] = 424111, + [SMALL_STATE(12640)] = 424118, + [SMALL_STATE(12641)] = 424125, + [SMALL_STATE(12642)] = 424132, + [SMALL_STATE(12643)] = 424139, + [SMALL_STATE(12644)] = 424146, + [SMALL_STATE(12645)] = 424153, + [SMALL_STATE(12646)] = 424160, + [SMALL_STATE(12647)] = 424167, + [SMALL_STATE(12648)] = 424174, + [SMALL_STATE(12649)] = 424181, + [SMALL_STATE(12650)] = 424188, + [SMALL_STATE(12651)] = 424195, + [SMALL_STATE(12652)] = 424202, + [SMALL_STATE(12653)] = 424209, + [SMALL_STATE(12654)] = 424216, + [SMALL_STATE(12655)] = 424223, + [SMALL_STATE(12656)] = 424230, + [SMALL_STATE(12657)] = 424237, + [SMALL_STATE(12658)] = 424244, + [SMALL_STATE(12659)] = 424251, + [SMALL_STATE(12660)] = 424258, + [SMALL_STATE(12661)] = 424265, + [SMALL_STATE(12662)] = 424272, + [SMALL_STATE(12663)] = 424279, + [SMALL_STATE(12664)] = 424286, + [SMALL_STATE(12665)] = 424293, + [SMALL_STATE(12666)] = 424300, + [SMALL_STATE(12667)] = 424307, + [SMALL_STATE(12668)] = 424314, + [SMALL_STATE(12669)] = 424321, + [SMALL_STATE(12670)] = 424328, + [SMALL_STATE(12671)] = 424335, + [SMALL_STATE(12672)] = 424342, + [SMALL_STATE(12673)] = 424349, + [SMALL_STATE(12674)] = 424356, + [SMALL_STATE(12675)] = 424363, + [SMALL_STATE(12676)] = 424370, + [SMALL_STATE(12677)] = 424377, + [SMALL_STATE(12678)] = 424384, + [SMALL_STATE(12679)] = 424391, + [SMALL_STATE(12680)] = 424398, + [SMALL_STATE(12681)] = 424405, + [SMALL_STATE(12682)] = 424412, + [SMALL_STATE(12683)] = 424419, + [SMALL_STATE(12684)] = 424426, + [SMALL_STATE(12685)] = 424433, + [SMALL_STATE(12686)] = 424440, + [SMALL_STATE(12687)] = 424447, + [SMALL_STATE(12688)] = 424454, + [SMALL_STATE(12689)] = 424461, + [SMALL_STATE(12690)] = 424468, + [SMALL_STATE(12691)] = 424475, + [SMALL_STATE(12692)] = 424482, + [SMALL_STATE(12693)] = 424489, + [SMALL_STATE(12694)] = 424496, + [SMALL_STATE(12695)] = 424503, + [SMALL_STATE(12696)] = 424510, + [SMALL_STATE(12697)] = 424517, + [SMALL_STATE(12698)] = 424524, + [SMALL_STATE(12699)] = 424531, + [SMALL_STATE(12700)] = 424538, + [SMALL_STATE(12701)] = 424545, + [SMALL_STATE(12702)] = 424552, + [SMALL_STATE(12703)] = 424559, + [SMALL_STATE(12704)] = 424566, + [SMALL_STATE(12705)] = 424573, + [SMALL_STATE(12706)] = 424580, + [SMALL_STATE(12707)] = 424587, + [SMALL_STATE(12708)] = 424594, + [SMALL_STATE(12709)] = 424601, + [SMALL_STATE(12710)] = 424608, + [SMALL_STATE(12711)] = 424615, + [SMALL_STATE(12712)] = 424622, + [SMALL_STATE(12713)] = 424629, + [SMALL_STATE(12714)] = 424636, + [SMALL_STATE(12715)] = 424643, + [SMALL_STATE(12716)] = 424650, + [SMALL_STATE(12717)] = 424657, + [SMALL_STATE(12718)] = 424664, + [SMALL_STATE(12719)] = 424671, + [SMALL_STATE(12720)] = 424678, + [SMALL_STATE(12721)] = 424685, + [SMALL_STATE(12722)] = 424692, + [SMALL_STATE(12723)] = 424699, + [SMALL_STATE(12724)] = 424706, + [SMALL_STATE(12725)] = 424713, + [SMALL_STATE(12726)] = 424720, + [SMALL_STATE(12727)] = 424727, + [SMALL_STATE(12728)] = 424734, + [SMALL_STATE(12729)] = 424741, + [SMALL_STATE(12730)] = 424748, + [SMALL_STATE(12731)] = 424755, + [SMALL_STATE(12732)] = 424762, + [SMALL_STATE(12733)] = 424769, + [SMALL_STATE(12734)] = 424776, + [SMALL_STATE(12735)] = 424783, + [SMALL_STATE(12736)] = 424790, + [SMALL_STATE(12737)] = 424797, + [SMALL_STATE(12738)] = 424804, + [SMALL_STATE(12739)] = 424811, + [SMALL_STATE(12740)] = 424818, + [SMALL_STATE(12741)] = 424825, + [SMALL_STATE(12742)] = 424832, + [SMALL_STATE(12743)] = 424839, + [SMALL_STATE(12744)] = 424846, + [SMALL_STATE(12745)] = 424853, + [SMALL_STATE(12746)] = 424860, + [SMALL_STATE(12747)] = 424867, + [SMALL_STATE(12748)] = 424874, + [SMALL_STATE(12749)] = 424881, + [SMALL_STATE(12750)] = 424888, + [SMALL_STATE(12751)] = 424895, + [SMALL_STATE(12752)] = 424902, + [SMALL_STATE(12753)] = 424909, + [SMALL_STATE(12754)] = 424916, + [SMALL_STATE(12755)] = 424923, + [SMALL_STATE(12756)] = 424930, + [SMALL_STATE(12757)] = 424937, + [SMALL_STATE(12758)] = 424944, + [SMALL_STATE(12759)] = 424951, + [SMALL_STATE(12760)] = 424958, + [SMALL_STATE(12761)] = 424965, + [SMALL_STATE(12762)] = 424972, + [SMALL_STATE(12763)] = 424979, + [SMALL_STATE(12764)] = 424986, + [SMALL_STATE(12765)] = 424993, + [SMALL_STATE(12766)] = 425000, + [SMALL_STATE(12767)] = 425007, + [SMALL_STATE(12768)] = 425014, + [SMALL_STATE(12769)] = 425021, + [SMALL_STATE(12770)] = 425028, + [SMALL_STATE(12771)] = 425035, + [SMALL_STATE(12772)] = 425042, + [SMALL_STATE(12773)] = 425049, + [SMALL_STATE(12774)] = 425056, + [SMALL_STATE(12775)] = 425063, + [SMALL_STATE(12776)] = 425070, + [SMALL_STATE(12777)] = 425077, + [SMALL_STATE(12778)] = 425084, + [SMALL_STATE(12779)] = 425091, + [SMALL_STATE(12780)] = 425098, + [SMALL_STATE(12781)] = 425105, + [SMALL_STATE(12782)] = 425112, + [SMALL_STATE(12783)] = 425119, + [SMALL_STATE(12784)] = 425126, + [SMALL_STATE(12785)] = 425133, + [SMALL_STATE(12786)] = 425140, + [SMALL_STATE(12787)] = 425147, + [SMALL_STATE(12788)] = 425154, + [SMALL_STATE(12789)] = 425161, + [SMALL_STATE(12790)] = 425168, + [SMALL_STATE(12791)] = 425175, + [SMALL_STATE(12792)] = 425182, + [SMALL_STATE(12793)] = 425189, + [SMALL_STATE(12794)] = 425196, + [SMALL_STATE(12795)] = 425203, + [SMALL_STATE(12796)] = 425210, + [SMALL_STATE(12797)] = 425217, + [SMALL_STATE(12798)] = 425224, + [SMALL_STATE(12799)] = 425231, + [SMALL_STATE(12800)] = 425238, + [SMALL_STATE(12801)] = 425245, + [SMALL_STATE(12802)] = 425252, + [SMALL_STATE(12803)] = 425259, + [SMALL_STATE(12804)] = 425266, + [SMALL_STATE(12805)] = 425273, + [SMALL_STATE(12806)] = 425280, + [SMALL_STATE(12807)] = 425287, + [SMALL_STATE(12808)] = 425294, + [SMALL_STATE(12809)] = 425301, + [SMALL_STATE(12810)] = 425308, + [SMALL_STATE(12811)] = 425315, + [SMALL_STATE(12812)] = 425322, + [SMALL_STATE(12813)] = 425329, + [SMALL_STATE(12814)] = 425336, + [SMALL_STATE(12815)] = 425343, + [SMALL_STATE(12816)] = 425350, + [SMALL_STATE(12817)] = 425357, + [SMALL_STATE(12818)] = 425364, + [SMALL_STATE(12819)] = 425371, + [SMALL_STATE(12820)] = 425378, + [SMALL_STATE(12821)] = 425385, + [SMALL_STATE(12822)] = 425392, + [SMALL_STATE(12823)] = 425399, + [SMALL_STATE(12824)] = 425406, + [SMALL_STATE(12825)] = 425413, + [SMALL_STATE(12826)] = 425420, + [SMALL_STATE(12827)] = 425427, + [SMALL_STATE(12828)] = 425434, + [SMALL_STATE(12829)] = 425441, + [SMALL_STATE(12830)] = 425448, + [SMALL_STATE(12831)] = 425455, + [SMALL_STATE(12832)] = 425462, + [SMALL_STATE(12833)] = 425469, + [SMALL_STATE(12834)] = 425476, + [SMALL_STATE(12835)] = 425483, + [SMALL_STATE(12836)] = 425490, + [SMALL_STATE(12837)] = 425497, + [SMALL_STATE(12838)] = 425504, + [SMALL_STATE(12839)] = 425511, + [SMALL_STATE(12840)] = 425518, + [SMALL_STATE(12841)] = 425525, + [SMALL_STATE(12842)] = 425532, + [SMALL_STATE(12843)] = 425539, + [SMALL_STATE(12844)] = 425546, + [SMALL_STATE(12845)] = 425553, + [SMALL_STATE(12846)] = 425560, + [SMALL_STATE(12847)] = 425567, + [SMALL_STATE(12848)] = 425574, + [SMALL_STATE(12849)] = 425581, + [SMALL_STATE(12850)] = 425588, + [SMALL_STATE(12851)] = 425595, + [SMALL_STATE(12852)] = 425602, + [SMALL_STATE(12853)] = 425609, + [SMALL_STATE(12854)] = 425616, + [SMALL_STATE(12855)] = 425623, + [SMALL_STATE(12856)] = 425630, + [SMALL_STATE(12857)] = 425637, + [SMALL_STATE(12858)] = 425644, + [SMALL_STATE(12859)] = 425651, + [SMALL_STATE(12860)] = 425658, + [SMALL_STATE(12861)] = 425665, + [SMALL_STATE(12862)] = 425672, + [SMALL_STATE(12863)] = 425679, + [SMALL_STATE(12864)] = 425686, + [SMALL_STATE(12865)] = 425693, + [SMALL_STATE(12866)] = 425700, + [SMALL_STATE(12867)] = 425707, + [SMALL_STATE(12868)] = 425714, + [SMALL_STATE(12869)] = 425721, + [SMALL_STATE(12870)] = 425728, + [SMALL_STATE(12871)] = 425735, + [SMALL_STATE(12872)] = 425742, + [SMALL_STATE(12873)] = 425749, + [SMALL_STATE(12874)] = 425756, + [SMALL_STATE(12875)] = 425763, + [SMALL_STATE(12876)] = 425770, + [SMALL_STATE(12877)] = 425777, + [SMALL_STATE(12878)] = 425784, + [SMALL_STATE(12879)] = 425791, + [SMALL_STATE(12880)] = 425798, + [SMALL_STATE(12881)] = 425805, + [SMALL_STATE(12882)] = 425812, + [SMALL_STATE(12883)] = 425819, + [SMALL_STATE(12884)] = 425826, + [SMALL_STATE(12885)] = 425833, + [SMALL_STATE(12886)] = 425840, + [SMALL_STATE(12887)] = 425847, + [SMALL_STATE(12888)] = 425854, + [SMALL_STATE(12889)] = 425861, + [SMALL_STATE(12890)] = 425868, + [SMALL_STATE(12891)] = 425875, + [SMALL_STATE(12892)] = 425882, + [SMALL_STATE(12893)] = 425889, + [SMALL_STATE(12894)] = 425896, + [SMALL_STATE(12895)] = 425903, + [SMALL_STATE(12896)] = 425910, + [SMALL_STATE(12897)] = 425917, + [SMALL_STATE(12898)] = 425924, + [SMALL_STATE(12899)] = 425931, + [SMALL_STATE(12900)] = 425938, + [SMALL_STATE(12901)] = 425945, + [SMALL_STATE(12902)] = 425952, + [SMALL_STATE(12903)] = 425959, + [SMALL_STATE(12904)] = 425966, + [SMALL_STATE(12905)] = 425973, + [SMALL_STATE(12906)] = 425980, + [SMALL_STATE(12907)] = 425987, + [SMALL_STATE(12908)] = 425994, + [SMALL_STATE(12909)] = 426001, + [SMALL_STATE(12910)] = 426008, + [SMALL_STATE(12911)] = 426015, + [SMALL_STATE(12912)] = 426022, + [SMALL_STATE(12913)] = 426029, + [SMALL_STATE(12914)] = 426036, + [SMALL_STATE(12915)] = 426043, + [SMALL_STATE(12916)] = 426050, + [SMALL_STATE(12917)] = 426057, + [SMALL_STATE(12918)] = 426064, + [SMALL_STATE(12919)] = 426071, + [SMALL_STATE(12920)] = 426078, + [SMALL_STATE(12921)] = 426085, + [SMALL_STATE(12922)] = 426092, + [SMALL_STATE(12923)] = 426099, + [SMALL_STATE(12924)] = 426106, + [SMALL_STATE(12925)] = 426113, + [SMALL_STATE(12926)] = 426120, + [SMALL_STATE(12927)] = 426127, + [SMALL_STATE(12928)] = 426134, + [SMALL_STATE(12929)] = 426141, + [SMALL_STATE(12930)] = 426148, + [SMALL_STATE(12931)] = 426155, + [SMALL_STATE(12932)] = 426162, + [SMALL_STATE(12933)] = 426169, + [SMALL_STATE(12934)] = 426176, + [SMALL_STATE(12935)] = 426183, + [SMALL_STATE(12936)] = 426190, + [SMALL_STATE(12937)] = 426197, + [SMALL_STATE(12938)] = 426204, + [SMALL_STATE(12939)] = 426211, + [SMALL_STATE(12940)] = 426218, + [SMALL_STATE(12941)] = 426225, + [SMALL_STATE(12942)] = 426232, + [SMALL_STATE(12943)] = 426239, + [SMALL_STATE(12944)] = 426246, + [SMALL_STATE(12945)] = 426253, + [SMALL_STATE(12946)] = 426260, + [SMALL_STATE(12947)] = 426267, + [SMALL_STATE(12948)] = 426274, + [SMALL_STATE(12949)] = 426281, + [SMALL_STATE(12950)] = 426288, + [SMALL_STATE(12951)] = 426295, + [SMALL_STATE(12952)] = 426302, + [SMALL_STATE(12953)] = 426309, + [SMALL_STATE(12954)] = 426316, + [SMALL_STATE(12955)] = 426323, + [SMALL_STATE(12956)] = 426330, + [SMALL_STATE(12957)] = 426337, + [SMALL_STATE(12958)] = 426344, + [SMALL_STATE(12959)] = 426351, + [SMALL_STATE(12960)] = 426358, + [SMALL_STATE(12961)] = 426365, + [SMALL_STATE(12962)] = 426372, + [SMALL_STATE(12963)] = 426379, + [SMALL_STATE(12964)] = 426386, + [SMALL_STATE(12965)] = 426393, + [SMALL_STATE(12966)] = 426400, + [SMALL_STATE(12967)] = 426407, + [SMALL_STATE(12968)] = 426414, + [SMALL_STATE(12969)] = 426421, + [SMALL_STATE(12970)] = 426428, + [SMALL_STATE(12971)] = 426435, + [SMALL_STATE(12972)] = 426442, + [SMALL_STATE(12973)] = 426449, + [SMALL_STATE(12974)] = 426456, + [SMALL_STATE(12975)] = 426463, + [SMALL_STATE(12976)] = 426470, + [SMALL_STATE(12977)] = 426477, + [SMALL_STATE(12978)] = 426484, + [SMALL_STATE(12979)] = 426491, + [SMALL_STATE(12980)] = 426498, + [SMALL_STATE(12981)] = 426505, + [SMALL_STATE(12982)] = 426512, + [SMALL_STATE(12983)] = 426519, + [SMALL_STATE(12984)] = 426526, + [SMALL_STATE(12985)] = 426533, + [SMALL_STATE(12986)] = 426540, + [SMALL_STATE(12987)] = 426547, + [SMALL_STATE(12988)] = 426554, + [SMALL_STATE(12989)] = 426561, + [SMALL_STATE(12990)] = 426568, + [SMALL_STATE(12991)] = 426575, + [SMALL_STATE(12992)] = 426582, + [SMALL_STATE(12993)] = 426589, + [SMALL_STATE(12994)] = 426596, + [SMALL_STATE(12995)] = 426603, + [SMALL_STATE(12996)] = 426610, + [SMALL_STATE(12997)] = 426617, + [SMALL_STATE(12998)] = 426624, + [SMALL_STATE(12999)] = 426631, + [SMALL_STATE(13000)] = 426638, + [SMALL_STATE(13001)] = 426645, + [SMALL_STATE(13002)] = 426652, + [SMALL_STATE(13003)] = 426659, + [SMALL_STATE(13004)] = 426666, + [SMALL_STATE(13005)] = 426673, + [SMALL_STATE(13006)] = 426680, + [SMALL_STATE(13007)] = 426687, + [SMALL_STATE(13008)] = 426694, + [SMALL_STATE(13009)] = 426701, + [SMALL_STATE(13010)] = 426708, + [SMALL_STATE(13011)] = 426715, + [SMALL_STATE(13012)] = 426722, + [SMALL_STATE(13013)] = 426729, + [SMALL_STATE(13014)] = 426736, + [SMALL_STATE(13015)] = 426743, + [SMALL_STATE(13016)] = 426750, + [SMALL_STATE(13017)] = 426757, + [SMALL_STATE(13018)] = 426764, + [SMALL_STATE(13019)] = 426771, + [SMALL_STATE(13020)] = 426778, + [SMALL_STATE(13021)] = 426785, + [SMALL_STATE(13022)] = 426792, + [SMALL_STATE(13023)] = 426799, + [SMALL_STATE(13024)] = 426806, + [SMALL_STATE(13025)] = 426813, + [SMALL_STATE(13026)] = 426820, + [SMALL_STATE(13027)] = 426827, + [SMALL_STATE(13028)] = 426834, + [SMALL_STATE(13029)] = 426841, + [SMALL_STATE(13030)] = 426848, + [SMALL_STATE(13031)] = 426855, + [SMALL_STATE(13032)] = 426862, + [SMALL_STATE(13033)] = 426869, + [SMALL_STATE(13034)] = 426876, + [SMALL_STATE(13035)] = 426883, + [SMALL_STATE(13036)] = 426890, + [SMALL_STATE(13037)] = 426897, + [SMALL_STATE(13038)] = 426904, + [SMALL_STATE(13039)] = 426911, + [SMALL_STATE(13040)] = 426918, + [SMALL_STATE(13041)] = 426925, + [SMALL_STATE(13042)] = 426932, + [SMALL_STATE(13043)] = 426939, + [SMALL_STATE(13044)] = 426946, + [SMALL_STATE(13045)] = 426953, + [SMALL_STATE(13046)] = 426960, + [SMALL_STATE(13047)] = 426967, + [SMALL_STATE(13048)] = 426974, + [SMALL_STATE(13049)] = 426981, + [SMALL_STATE(13050)] = 426988, + [SMALL_STATE(13051)] = 426995, + [SMALL_STATE(13052)] = 427002, + [SMALL_STATE(13053)] = 427009, + [SMALL_STATE(13054)] = 427016, + [SMALL_STATE(13055)] = 427023, + [SMALL_STATE(13056)] = 427030, + [SMALL_STATE(13057)] = 427037, + [SMALL_STATE(13058)] = 427044, + [SMALL_STATE(13059)] = 427051, + [SMALL_STATE(13060)] = 427058, + [SMALL_STATE(13061)] = 427065, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -763458,1724 +844687,1724 @@ 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), - [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), - [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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10107), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12253), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9196), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12489), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11440), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12311), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9547), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9984), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10412), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12211), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11696), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8949), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12376), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9370), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8254), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8315), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10823), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11712), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12267), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11702), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12226), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12182), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12193), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12199), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12891), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12566), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12958), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8363), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10216), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11043), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10561), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8374), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12989), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10593), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10056), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11586), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10114), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12890), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12524), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11769), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8612), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10109), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12862), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12593), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9213), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12152), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11426), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9613), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11068), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11830), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11961), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11473), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12408), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12387), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12445), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12926), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11678), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12198), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13006), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10029), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11863), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10116), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12811), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12812), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10130), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12821), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9142), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12965), [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), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9145), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12509), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11645), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), [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), - [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), - [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), - [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_block, 2, 0, 10), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11013), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11544), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12448), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11837), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12810), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12677), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13007), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12874), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11553), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12142), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10030), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11547), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10104), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12917), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12918), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), [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(895), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_block, 2, 0, 10), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9190), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 84), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12863), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9170), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12808), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8378), [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(10639), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 10), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 84), + [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 10), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1208), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10130), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12821), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9142), [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), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12965), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11645), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8506), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1150), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5484), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4624), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12311), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9533), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9984), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10412), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12211), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11696), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6526), [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), - [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), - [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), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8949), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5224), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5061), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12376), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4550), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9370), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8360), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8254), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8315), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11013), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11544), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12448), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11837), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12810), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12677), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(13007), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12874), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11553), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12142), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12891), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12566), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12958), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8363), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10216), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7246), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11043), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10561), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6753), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6621), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4287), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12989), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7131), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10030), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1074), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11547), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10104), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12917), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12918), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1549), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1867), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11769), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7804), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8612), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10130), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12821), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9190), [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), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12863), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11645), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8506), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1150), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(563), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5484), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4624), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12311), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9533), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9984), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10412), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12211), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11696), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6526), [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), - [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), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8949), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5224), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5061), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12376), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4550), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9370), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8360), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8254), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8315), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11013), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11544), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12448), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11837), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12810), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12677), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(13007), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12874), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12891), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12566), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12958), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8363), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10216), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8196), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11043), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10561), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8378), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6621), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4287), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12989), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7131), [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), - [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), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10639), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10030), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1074), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11547), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10104), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12917), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12918), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1549), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1867), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11769), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7804), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8612), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), [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), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10125), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12056), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9171), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11986), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11717), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9582), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5228), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5116), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11150), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11593), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12466), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11545), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(243), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12916), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12704), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12841), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11964), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11395), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(13033), + [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9991), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11595), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10123), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12942), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12932), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), [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), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11410), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10125), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12056), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9171), [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), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11986), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11717), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9582), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11150), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11593), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12466), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11545), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12916), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12704), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12841), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11964), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11395), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13033), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9991), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11595), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10123), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12942), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12932), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), [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), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11557), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_block, 2, 0, 0), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10109), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12862), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9213), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12152), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11426), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(283), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5477), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4585), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9613), [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), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5213), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5112), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11068), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11830), + [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1816), + [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11961), + [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11473), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12408), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12387), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12445), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12926), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11678), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12198), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10029), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11863), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10116), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12811), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12812), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1819), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9192), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12987), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11406), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12025), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11805), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9036), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8996), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10107), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12253), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9196), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12489), + [1417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11440), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(282), + [1426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5255), + [1429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4587), + [1432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9547), + [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [1438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5172), + [1441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5082), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10823), + [1447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11712), + [1450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1808), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12267), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11702), + [1459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12226), + [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12182), + [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12193), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12199), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8187), + [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8374), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [1486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10593), + [1489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10056), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2056), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11586), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1539), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10114), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12890), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12524), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9161), [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), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12825), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8449), [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), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10731), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10125), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12056), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9161), + [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12825), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11717), + [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), + [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9582), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5228), + [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5116), + [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11150), + [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11593), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12466), + [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11545), + [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(243), + [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12916), + [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), + [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12704), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12841), + [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11964), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8331), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8449), [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), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10731), + [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9991), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11595), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10123), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12942), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(12932), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1197), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5484), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3241), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12311), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9984), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10471), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12211), + [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8917), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12376), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4550), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9370), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8360), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8254), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8315), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11013), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11544), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11837), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12810), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12677), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13007), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12874), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11553), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12142), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12891), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12566), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12958), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8363), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10216), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7246), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11043), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10561), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6753), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6621), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4287), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12989), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10393), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11547), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1547), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1549), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1867), + [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11769), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7804), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8612), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1736), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10471), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8917), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10393), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 14), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 14), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 14), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 14), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10342), + [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1164), + [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(627), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(385), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5255), + [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(105), + [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10823), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11712), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11702), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12226), + [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12182), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12193), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12199), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11406), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12025), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10390), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11586), + [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1539), + [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1545), + [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10390), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1185), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(349), + [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11150), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11593), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11545), + [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(243), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12916), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1318), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12704), + [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12841), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11964), + [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11395), + [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(13033), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10342), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11595), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1424), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10392), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1155), + [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5477), [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), + [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11068), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11830), + [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11473), + [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12408), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12387), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12445), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12926), + [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11678), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12198), + [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10392), + [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11863), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), + [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1819), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11178), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11627), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12570), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11594), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12930), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12483), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12487), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12062), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11602), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11926), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10394), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11654), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), + [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5490), + [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11178), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11627), + [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11594), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12930), + [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1320), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12483), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12487), + [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(12062), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11602), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11926), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10394), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11654), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1419), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10874), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11796), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12575), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11756), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10287), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12850), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10477), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10413), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), [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), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9973), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9895), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8491), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9333), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8179), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12409), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13001), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13054), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8450), + [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10239), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11151), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10728), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6219), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12411), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10528), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11803), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7956), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8613), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12606), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11014), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9240), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8169), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8457), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12442), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9999), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12633), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13022), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13057), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8383), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10285), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11252), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10722), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10470), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11847), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8600), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), [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), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10050), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10692), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12576), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13016), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13055), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10777), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10279), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11274), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10781), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12030), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10419), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11844), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7909), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8577), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3855), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(258), + [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1709), + [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1709), + [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1613), + [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(627), + [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1616), [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), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9984), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10471), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(105), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8917), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10551), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10823), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11712), + [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1808), + [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12267), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11702), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(218), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12226), + [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1314), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12182), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12193), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12199), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11406), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12025), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1716), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1475), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12891), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12566), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12958), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10553), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10216), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7246), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11043), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10561), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6753), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6621), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12030), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10390), + [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11586), + [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1602), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1539), + [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1545), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1713), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11769), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1715), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7804), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8612), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(409), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1868), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3963), + [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(773), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(53), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11068), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11830), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1816), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11961), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11473), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(241), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12408), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1311), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12387), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12445), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12926), + [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11678), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12198), + [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10392), + [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11863), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1422), + [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1426), + [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1819), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3930), + [2658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(649), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(85), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11150), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11593), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1888), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12466), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11545), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(243), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12916), + [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1318), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12704), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12841), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11964), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11395), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(13033), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10342), + [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11595), + [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1424), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1425), + [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1880), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9609), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10551), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10553), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9657), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9584), + [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3911), + [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(342), + [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(73), + [2747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11013), + [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11544), + [2753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1879), + [2756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12448), + [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11837), + [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(242), + [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12810), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1315), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12677), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(13007), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12874), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11553), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12142), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10393), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11547), + [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1547), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1549), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1867), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9545), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9972), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11180), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10678), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11835), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8115), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10061), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11273), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10621), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11860), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3944), + [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10874), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1866), + [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12570), + [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11796), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12575), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11756), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10287), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3943), + [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1262), + [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(89), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11178), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11627), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11594), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(190), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12930), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1320), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12483), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12487), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(12062), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11602), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11926), + [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10394), + [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11654), + [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1419), + [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1420), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1889), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10654), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10625), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9996), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10622), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12674), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13028), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13059), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10681), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10281), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11263), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10769), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6412), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10464), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11852), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7828), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8595), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10001), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10053), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10786), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12694), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13031), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13060), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10698), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10213), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11267), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10613), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10501), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11855), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8609), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10048), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3684), + [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(258), + [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1709), + [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1613), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [3110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1613), + [3113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1616), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9984), + [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8917), + [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10551), + [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10553), + [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(12030), + [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10413), + [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1868), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10689), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10693), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 7), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 7), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11565), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11565), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [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 = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), + [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(3684), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1616), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9984), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(10551), + [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(10553), + [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(12030), + [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(10413), + [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1868), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12407), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9988), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9284), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8236), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8237), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12609), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13019), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13056), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8447), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10217), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11235), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10574), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8201), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12696), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10444), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11845), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8593), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3684), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1616), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9984), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(10551), + [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(10553), + [3325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(12030), + [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(10413), + [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1868), + [3334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(3684), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1616), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), + [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9984), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), + [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(10551), + [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(10553), + [3355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(12030), + [3358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(10413), + [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1868), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 52), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 52), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 171), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 171), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 109), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 109), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10007), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 178), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 178), + [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 53), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 53), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 53), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 53), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 54), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 54), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 57), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 57), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12125), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9200), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12053), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9194), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12184), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11532), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12820), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8506), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9587), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12866), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9268), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8471), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12247), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10232), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12951), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 71), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 71), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 10), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 84), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 91), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 91), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 10), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 84), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 7), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 7), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 138), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 138), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 190), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 190), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 110), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 110), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 177), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 177), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_statement, 6, 0, 207), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_statement, 6, 0, 207), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 208), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 208), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 118), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 118), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 121), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 121), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 138), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 138), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 91), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 91), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 156), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 156), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 157), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 157), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 161), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 161), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 162), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 162), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 173), + [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 173), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 181), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 181), + [3712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 10), + [3714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 10), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 0), + [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 0), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8271), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8281), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8290), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8400), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11270), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10594), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11859), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 6, 0, 186), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 6, 0, 186), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 221), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 221), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9312), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8253), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8256), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8370), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 185), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 185), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9340), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8337), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8348), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8350), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12635), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8396), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9237), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8162), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8164), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8459), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12676), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9234), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8150), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8415), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12768), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 188), + [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 188), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11271), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10616), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10465), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11839), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8590), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11556), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 3), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 3), + [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11615), + [3965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 2, 0, 0), + [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 2, 0, 0), + [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 7), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 7), + [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 5, 0, 133), + [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 5, 0, 133), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), + [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), + [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [4001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 37), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 37), + [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 10), + [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 10), + [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 38), + [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 38), + [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 45), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 45), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), + [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 47), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 47), + [4029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11615), + [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 59), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 59), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 10), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 10), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 60), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 60), + [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 5), + [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 5), + [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 62), + [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 62), + [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 65), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 65), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 174), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 174), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [4074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 72), + [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 72), + [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), + [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), + [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), [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), @@ -765184,7138 +846413,7723 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9342), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8302), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8305), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8430), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12726), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 82), + [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 82), + [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 83), + [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 83), + [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 5, 0, 84), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 5, 0, 84), + [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 42), + [4144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 42), + [4146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), + [4150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 3, 0, 10), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 3, 0, 10), + [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 98), + [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 98), + [4158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 5, 0, 134), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 5, 0, 134), + [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 99), + [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 99), + [4166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 100), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 100), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11556), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 59), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 59), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 10), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 10), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 60), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 60), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 63), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 63), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 62), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 62), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8445), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 119), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 119), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9364), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8327), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8328), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12654), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13025), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13058), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10264), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11260), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10597), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12738), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10495), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11850), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8608), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3947), + [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1811), + [4312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9999), + [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10689), + [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10693), + [4321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10470), + [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1924), + [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 123), + [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 123), + [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 128), + [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 128), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 131), + [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 131), + [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 132), + [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 132), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9230), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8351), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8353), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8462), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12750), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 5, 0, 139), + [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 5, 0, 139), + [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 140), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 140), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 4, 0, 84), + [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 4, 0, 84), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 85), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 85), + [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 10), + [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 10), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 146), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 146), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 147), + [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 147), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), + [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), + [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 49), + [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 49), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11430), + [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11430), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 186), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 186), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [4464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 48), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 48), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 133), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 133), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 84), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 84), + [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 134), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 134), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 48), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 48), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 167), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 167), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 113), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 113), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 6, 0, 167), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 6, 0, 167), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 10), + [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 10), + [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), [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), + [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 10), + [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 10), + [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 113), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 113), [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), + [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6749), + [4545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12125), + [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9200), [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), - [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), - [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), - [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), + [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12053), + [4556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11532), + [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7288), + [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12820), + [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4689), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8506), + [4571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8506), + [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(575), + [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5247), + [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5498), + [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), + [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), + [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12311), + [4592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9587), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8733), + [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10477), + [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12211), + [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11696), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), + [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12866), + [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5234), + [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5048), + [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12376), + [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3583), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9268), + [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8224), + [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8228), + [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8229), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8471), + [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4287), + [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12989), + [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7131), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12247), + [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10232), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1074), + [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12951), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), + [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10026), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10017), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11954), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11910), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11673), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9560), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10258), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12931), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12183), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9163), + [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11879), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11666), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9599), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10209), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12959), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12183), + [4789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9163), + [4792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11879), + [4795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11666), + [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(953), + [4801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5250), + [4804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5500), + [4807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9599), + [4810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5237), + [4813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5063), + [4816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10209), + [4819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2370), + [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12959), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [4889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11954), + [4892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9166), + [4895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11910), + [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11673), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), + [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5219), + [4907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5487), + [4910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9560), + [4913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5220), + [4918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5038), + [4921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10258), + [4924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2396), + [4927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(12931), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10044), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10568), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10661), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9971), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10746), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10672), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9994), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10774), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10649), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4035), + [4989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1717), + [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10053), + [4995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10786), + [4998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10698), + [5001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10501), + [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1927), + [5007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4028), + [5010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1693), + [5013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9996), + [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10622), + [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10681), + [5022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10464), + [5025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1922), + [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2735), + [5031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1757), + [5034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10050), + [5037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10692), + [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10777), + [5043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10419), + [5046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1881), + [5049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3783), + [5052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1795), + [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10017), + [5058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3933), + [5061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1639), + [5064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9973), + [5067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10654), + [5070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10625), + [5073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10528), + [5076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1911), + [5079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1597), + [5082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9972), + [5085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4014), + [5088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1823), + [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9994), + [5094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10774), + [5097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10649), + [5100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3447), + [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1620), + [5106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10026), + [5109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10465), + [5112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3987), + [5115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1670), + [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9988), + [5121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10746), + [5124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10672), + [5127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10444), + [5130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1921), + [5133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4005), + [5136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1583), + [5139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10044), + [5142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10568), + [5145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10661), + [5148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10495), + [5151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1920), + [5154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1847), + [5157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10001), + [5160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3819), + [5163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1737), + [5166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10061), + [5169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1969), + [5172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10048), + [5175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4044), + [5178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1951), + [5181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9971), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9818), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8412), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10448), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9266), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11968), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12362), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12653), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9649), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9952), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9956), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9572), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9541), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9305), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12937), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10243), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8729), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12956), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10277), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12968), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12960), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12449), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10220), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12963), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12952), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12924), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10231), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12947), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12943), + [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(250), + [5541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1770), + [5544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1596), + [5547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1596), + [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(269), + [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1610), + [5556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(248), + [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1728), + [5562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1728), + [5565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1619), + [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1729), + [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1436), + [5574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(12654), + [5577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(13025), + [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(13058), + [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10264), + [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7847), + [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11260), + [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10597), + [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8231), + [5598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8166), + [5601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1775), + [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11850), + [5607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1776), + [5610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7802), + [5613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8608), + [5616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(485), + [5619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [5623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [5627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [5639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8397), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [5665] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [5673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(298), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10121), + [5686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [5693] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12181), + [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11663), + [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11663), + [5712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [5714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12400), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12306), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12318), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11932), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12278), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12941), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12819), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9687), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9028), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [5844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [5847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [5850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [5856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [5859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4653), + [5862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1616), + [5865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9984), + [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8917), + [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10551), + [5879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [5882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [5885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(12891), + [5888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(12566), + [5891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(12958), + [5894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9687), + [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10216), + [5900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7246), + [5903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11043), + [5906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10561), + [5909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6753), + [5912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6621), + [5915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(12030), + [5918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10413), + [5921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), + [5924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11769), + [5927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7804), + [5933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8612), + [5936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12260), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11721), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8355), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10965), + [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9583), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12731), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [5996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9570), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12946), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9061), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12904), + [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12908), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11976), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11979), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12457), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12459), + [6070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(316), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10747), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11854), + [6079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12572), + [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12579), + [6085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12620), + [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12630), + [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12642), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9606), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12651), + [6113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12657), + [6116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12532), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12550), + [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12556), + [6125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12559), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12499), + [6145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 84), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 111), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 111), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 200), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 160), + [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12527), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8901), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12639), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12833), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12617), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12659), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9566), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12268), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), + [6245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12503), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12513), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12584), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9950), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9604), + [6261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12514), + [6264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12515), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [6273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12516), + [6276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12517), + [6279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12519), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9961), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [6292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12520), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12679), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12521), + [6304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12522), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12208), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9616), + [6313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12523), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [6318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12525), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9304), + [6325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12526), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9258), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), + [6334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12826), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12698), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12528), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12529), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12424), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12530), + [6378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12531), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [6397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), + [6401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3262), + [6404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3262), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12730), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10494), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12767), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10271), + [6417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5280), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11999), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8719), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11984), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12471), + [6438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12658), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12581), + [6445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3972), + [6448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8719), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12854), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11951), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12434), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13011), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12882), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12222), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12219), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12580), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12007), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12512), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13003), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12316), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12204), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12015), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), + [6497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12662), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9656), + [6508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12671), + [6511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12678), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8895), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8919), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8928), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8922), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8902), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8947), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8951), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8898), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8903), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8887), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8942), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8950), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8923), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8925), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8897), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8894), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8926), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8906), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8932), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8969), + [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8952), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8945), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8939), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8940), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8889), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8890), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8967), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8957), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8955), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8959), + [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8966), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [6606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [6610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 21), + [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 21), + [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [6618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9538), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12709), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10901), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8559), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11145), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9623), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12803), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11184), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11158), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11065), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11297), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11362), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12797), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11392), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9605), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9628), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12785), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9573), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9653), + [6774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), + [6778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), + [6785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(307), + [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [6799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [6803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [6811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [6815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), + [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 18), + [6819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), + [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), + [6824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 18), + [6826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), + [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [6831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12827), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11948), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12428), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12922), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), + [6855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4355), + [6858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4355), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12708), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12708), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10497), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12761), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10271), + [6875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5258), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13013), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), + [6886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5511), + [6889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8685), + [6892] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(312), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12681), + [6902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4452), + [6905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4452), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12788), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12788), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10500), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12806), + [6920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5349), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12252), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), + [6931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2173), + [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [6936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [6938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2153), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [6943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(12737), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [6948] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(302), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12427), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(12730), + [6967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(12730), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12767), + [6972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5359), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11999), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), + [6983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5655), + [6986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8691), + [6989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4525), + [6992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4525), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12796), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12796), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10505), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12807), + [7007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5350), + [7010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5668), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12276), + [7017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8725), + [7020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2159), + [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [7025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [7027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2153), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [7032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(12737), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [7037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3972), + [7040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8719), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8725), + [7047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [7051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), + [7054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12737), + [7057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10645), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11861), + [7069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4767), + [7072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4767), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12766), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12766), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10502), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12801), + [7087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5345), + [7090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6270), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12149), + [7097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8669), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10659), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11862), + [7106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(297), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10679), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11842), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), + [7119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [7123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), + [7126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2180), + [7129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 104), + [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 104), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [7149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), + [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), + [7153] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(310), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12641), + [7163] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(325), + [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12727), + [7173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2132), + [7180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(310), + [7183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(297), + [7192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(313), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10808), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12700), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11853), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7213] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(328), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10680), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12739), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11856), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9638), + [7239] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(331), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10573), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12769), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11858), + [7253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), + [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [7259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [7263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), + [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [7269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), + [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [7275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), + [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), + [7279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), + [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2165), + [7290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 103), + [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 103), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [7296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), + [7298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), + [7300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [7302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [7304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [7306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [7308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), + [7310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), + [7312] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(313), + [7316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), + [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [7322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [7328] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(322), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10741), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12751), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11857), + [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [7346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [7348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [7350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(302), + [7353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2254), + [7356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12767), + [7359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1309), + [7366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [7370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12724), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9046), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9372), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9550), + [7390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9120), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9894), + [7398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [7402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12730), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9646), + [7413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [7417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 102), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 102), + [7421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 50), + [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 50), + [7425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(312), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9632), + [7436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), + [7439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12731), + [7442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), + [7444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), + [7449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 1, 0, 0), + [7451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 1, 0, 0), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10118), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [7462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [7466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2363), + [7469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12725), + [7472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), + [7476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3262), + [7479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3262), + [7482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5280), + [7485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3972), + [7488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8719), + [7491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [7495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9647), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12791), + [7519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12777), + [7543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), + [7545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [7547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [7549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [7553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2423), + [7556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2407), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [7561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(12719), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [7566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_specifier, 3, 0, 0), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_specifier, 3, 0, 0), + [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 152), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 152), + [7574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [7578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4920), + [7585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4920), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12652), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10491), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12755), + [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5356), + [7599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6023), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11920), + [7606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8710), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9531), + [7617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [7619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [7621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), + [7625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5280), + [7628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3972), + [7631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8719), + [7634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 100), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 100), + [7638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2413), + [7641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2407), + [7644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [7646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(12719), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12652), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12755), + [7657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5414), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11920), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), + [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), + [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), + [7672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 105), + [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 105), + [7676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [7680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 108), + [7682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 108), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8710), + [7688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 47), + [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 47), + [7692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 51), + [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 51), + [7696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6023), + [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8714), + [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 7), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 7), + [7706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 151), + [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 151), + [7710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [7714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [7716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [7718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 12), + [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 12), + [7722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2459), + [7725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2442), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [7730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(12798), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [7735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [7739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 12), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 12), + [7747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [7751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 13), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 13), + [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [7759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [7763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 12), + [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 12), + [7771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), [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), + [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [7783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), + [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), + [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), + [7790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [7794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 107), + [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 107), + [7798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 51), + [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 51), + [7802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 7), + [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 7), + [7806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), + [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), + [7810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [7814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), + [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), + [7818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [7822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 100), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 100), + [7826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 102), + [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 102), + [7830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 105), + [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 105), + [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 108), + [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 108), + [7838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [7842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 47), + [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 47), + [7846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 153), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 153), + [7850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), + [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), + [7854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 151), + [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 151), + [7858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 152), + [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 152), + [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [7864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [7866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2490), + [7869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2452), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [7874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(12804), + [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [7879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2448), + [7882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2452), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [7887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(12804), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [7892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2494), + [7895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2442), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [7900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(12798), + [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [7905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), + [7908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12719), + [7911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9637), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9608), + [7933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2442), + [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12798), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [7945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2452), + [7948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12804), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), + [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8297), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8298), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12725), + [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8197), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), + [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), + [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8265), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8266), + [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8267), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8278), + [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8280), + [7995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2393), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), + [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8362), + [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8264), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8286), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8287), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8288), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8317), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8318), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8332), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8194), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8248), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8250), + [8034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2585), + [8037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2549), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [8042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(12787), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [8053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2528), + [8056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2549), + [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [8061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(12787), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8242), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8244), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8292), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8319), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8342), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8284), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8285), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12692), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [8090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4223), + [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [8101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2409), + [8104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2420), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [8109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4207), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [8118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2549), + [8121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12787), + [8124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2426), + [8127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2526), + [8130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2548), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [8139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(12652), + [8142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(12652), + [8145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5354), + [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9086), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9849), + [8156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6833), + [8159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6833), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12780), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12780), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10504), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12805), + [8174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5347), + [8177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7518), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12207), + [8184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8680), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12794), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [8191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6844), + [8194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6844), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12748), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12748), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10499), + [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12799), + [8209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5333), + [8212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7517), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12086), + [8219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8679), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9769), + [8224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), + [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10247), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [8232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2649), + [8235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12608), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [8244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12786), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [8261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2671), + [8264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2649), + [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [8269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(12608), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [8276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), + [8279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), + [8282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2475), + [8285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), + [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), + [8289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5280), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [8296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3972), + [8299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8719), + [8302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2596), + [8305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2597), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [8310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2698), + [8313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2649), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [8318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(12608), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [8329] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(312), + [8333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(310), + [8336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2508), + [8339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9135), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9860), + [8343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [8346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2680), + [8349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12761), + [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9091), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9927), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [8366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2819), + [8369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), + [8372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1316), + [8375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [8377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2542), + [8380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(322), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11607), + [8385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(331), + [8388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2762), + [8391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2762), + [8394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12806), + [8397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), + [8400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), + [8403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12807), + [8406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2827), + [8409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12760), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12708), + [8419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12708), + [8422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12693), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [8442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12796), + [8445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12796), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9084), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9875), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12795), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [8462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1321), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [8471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2885), + [8474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12693), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12802), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [8493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1323), + [8496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2651), + [8499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2859), + [8502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12407), + [8505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12788), + [8508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12788), + [8511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2902), + [8514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2902), + [8517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12801), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [8522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4355), + [8525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4355), + [8528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5258), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [8533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), + [8536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12802), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [8541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2675), + [8544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 155), + [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 155), + [8548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2917), + [8551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12709), + [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [8556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(325), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [8563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 14), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 14), + [8567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2950), + [8570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12795), + [8573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5511), + [8576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8685), + [8579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [8582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12376), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9724), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12404), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8872), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10445), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12406), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12574), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12781), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [8613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4452), + [8616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4452), + [8619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5349), + [8622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), + [8625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(311), + [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [8634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4525), + [8637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4525), + [8640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5350), + [8643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5258), + [8646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5511), + [8649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8685), + [8652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), + [8655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12797), + [8658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(12730), + [8661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(12730), + [8664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5359), + [8667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3089), + [8670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12803), + [8673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5655), + [8676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8691), + [8679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5668), + [8682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8725), + [8685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3972), + [8688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8719), + [8691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12766), + [8694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12766), + [8697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [8701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3056), + [8704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2791), + [8707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(12653), + [8710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3022), + [8713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12755), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12607), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [8722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(12730), + [8725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(12730), + [8728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5359), + [8731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3972), + [8734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8719), + [8737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5350), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11685), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [8746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [8748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2851), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [8753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), + [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [8758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [8760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10781), + [8763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11844), + [8766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12652), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [8771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2863), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9239), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12743), + [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9128), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9920), + [8792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5349), + [8795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11685), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [8802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [8804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), + [8807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12781), + [8810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5655), + [8813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8691), + [8816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5668), + [8819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8725), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [8824] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(310), + [8828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4767), + [8831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4767), + [8834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5345), + [8837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6270), + [8840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8669), + [8843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3369), + [8846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12785), + [8849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 2, 0, 0), + [8851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), + [8854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 2, 0, 0), + [8856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), + [8859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(302), + [8862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(310), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [8867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3025), + [8870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5345), + [8873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(322), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), + [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8812), + [8884] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(322), + [8888] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(331), + [8892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6270), + [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8669), + [8898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8830), + [8908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9949), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), + [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9564), + [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12800), + [8930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9579), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), + [8940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [8943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12632), + [8946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 186), + [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 186), + [8950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 206), + [8952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 206), + [8954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 223), + [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 223), + [8958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 61), + [8960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 61), + [8962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 71), + [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 71), + [8966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 213), + [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 213), + [8970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [8974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 61), + [8976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 61), + [8978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 214), + [8980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 214), + [8982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 223), + [8984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 223), + [8986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 71), + [8988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 71), + [8990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 72), + [8992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 72), + [8994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 71), + [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 71), + [8998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [9000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [9002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), + [9004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), + [9006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [9010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [9012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [9016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3532), + [9019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2870), + [9022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [9024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(12376), + [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [9029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [9033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [9037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(312), + [9040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3679), + [9043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2870), + [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [9048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(12376), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [9053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 133), + [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 133), + [9057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), + [9059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), + [9061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [9063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [9065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 134), + [9067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 134), + [9069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 206), + [9071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 206), + [9073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 192), + [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 192), + [9077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 71), + [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 71), + [9081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 213), + [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 213), + [9085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 192), + [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 192), + [9089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 214), + [9091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 214), + [9093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 193), + [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 193), + [9097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 222), + [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 222), + [9101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 193), + [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 193), + [9105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), + [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12608), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [9125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3815), + [9128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3813), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [9133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(12793), + [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11700), + [9140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5258), + [9143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5511), + [9146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8685), + [9149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3630), + [9152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12749), + [9155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11700), + [9158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11642), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), + [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12749), + [9172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11642), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), + [9181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3803), + [9184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3630), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [9189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(12749), + [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [9194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3811), + [9197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3813), + [9200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [9202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(12793), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [9207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3788), + [9210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3630), + [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [9215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(12749), + [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [9220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [9222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [9224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [9226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [9228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3388), + [9231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(311), + [9234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3813), + [9237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12793), + [9240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12718), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [9244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(12730), + [9247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(12730), + [9250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5359), + [9253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 130), + [9255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 130), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8774), + [9259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), + [9261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), + [9263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [9265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [9267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), + [9269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), + [9271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [9273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [9275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), + [9277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), + [9279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 33), + [9281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 33), + [9283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5349), + [9286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5655), + [9289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8691), + [9292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [9294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [9296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 70), + [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 70), + [9300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [9302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [9304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5350), + [9307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5668), + [9310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8725), + [9313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 77), + [9315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 77), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [9319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [9321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [9323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3972), + [9326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8719), + [9329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 41), + [9331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 41), + [9333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(317), + [9336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), + [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), + [9340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3972), + [9343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8719), + [9346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(3972), + [9349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8719), + [9352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 129), + [9354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 129), + [9356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 78), + [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 78), + [9360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 184), + [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 184), + [9364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [9366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [9368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), + [9370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), + [9372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), + [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 22), + [9380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 22), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12587), + [9386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5280), + [9389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 44), + [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 44), + [9393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [9397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 92), + [9399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 92), + [9401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [9403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [9407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [9410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [9412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [9414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [9416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [9418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 124), + [9420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 124), + [9422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 27), + [9424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 27), + [9426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 182), + [9428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 182), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6631), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12632), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6629), + [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [9442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10494), + [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [9453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), + [9455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), + [9457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), + [9459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 27), + [9461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 27), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [9471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [9473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [9475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(3972), + [9478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3644), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9625), + [9483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [9485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [9489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5345), + [9492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3763), + [9495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [9497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [9499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), + [9501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), + [9503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6626), + [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6625), + [9510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(6628), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), + [9517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [9519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [9521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6270), + [9524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8669), + [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [9531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(303), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12661), + [9538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [9541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [9543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12661), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [9555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3770), + [9558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10659), + [9561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11862), + [9564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4124), + [9567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4127), + [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12736), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [9578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4157), + [9581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4158), + [9584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4920), + [9587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4920), + [9590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5414), + [9593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6023), + [9596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8714), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [9601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), + [9603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), + [9605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5356), + [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [9617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(305), + [9620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [9627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3790), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [9634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(308), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9561), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [9653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(332), + [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [9658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 68), + [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 68), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [9666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 96), + [9668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 96), + [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [9672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 46), + [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 46), + [9676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6023), + [9679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8710), + [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12776), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [9694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), + [9697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 21), + [9699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 21), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9924), + [9703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_qualified_identifier, 2, 0, 34), + [9705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_qualified_identifier, 2, 0, 34), + [9707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [9711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 187), + [9713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 187), + [9715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3844), + [9718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10679), + [9721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11842), + [9724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 124), + [9726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 124), + [9728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), + [9730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12348), + [9734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(9668), + [9737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 23), + [9739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 23), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), + [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8695), + [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8696), + [9749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(311), + [9752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), + [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [9760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [9766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 67), + [9768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 67), + [9770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), + [9772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), + [9774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 39), + [9776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 39), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [9780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 86), + [9782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 86), + [9784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 67), + [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 67), + [9788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 137), + [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 137), + [9792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [9796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [9800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), + [9802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), + [9804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), + [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [9812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [9816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 182), + [9818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 182), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9669), + [9828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 180), + [9830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 180), + [9832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 95), + [9834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 95), + [9836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5356), + [9839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6023), + [9842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8710), + [9845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), + [9847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), + [9849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 117), + [9851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 117), + [9853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), + [9855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), + [9857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 143), + [9859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 143), + [9861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [9863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [9865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 135), + [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 135), + [9869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [9871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9088), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9869), + [9877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(324), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9092), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9850), + [9888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), + [9890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), + [9892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [9898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5414), + [9901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(11659), + [9904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(12348), + [9907] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(9668), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8727), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8727), + [9917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [9919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8726), + [9925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [9929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6023), + [9932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8714), + [9935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), + [9937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), + [9939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [9941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [9943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), + [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), + [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9910), + [9949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(320), + [9952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), + [9955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10573), + [9958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11858), + [9961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), + [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 75), + [9965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(311), + [9968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [9970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [9973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4359), + [9976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4359), + [9979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12799), + [9982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [9984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(327), + [9987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [9990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4007), + [9993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10741), + [9996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11857), + [9999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(328), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [10004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 175), + [10006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 175), + [10008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(313), + [10011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [10013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [10015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(321), + [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [10020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 125), + [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 125), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [10028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4428), + [10031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4428), + [10034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12805), + [10037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), + [10039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), + [10041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(311), + [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [10046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9155), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9155), + [10056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12780), + [10059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12780), + [10062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), + [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 76), + [10066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 58), + [10068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 58), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12773), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), + [10082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 4), + [10084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 4), + [10086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [10088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [10090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), + [10092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), + [10094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), + [10096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 1, 79), + [10098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(311), + [10101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [10103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reflect_expression, 2, 0, 0), + [10105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reflect_expression, 2, 0, 0), + [10107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [10111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), + [10113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 89), + [10115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 89), + [10117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 18), + [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 18), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7597), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9619), + [10129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [10131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [10133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), + [10135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [10139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12789), + [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [10143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 175), + [10145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 175), + [10147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [10149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), + [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7052), + [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [10163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [10165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12748), + [10168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12748), + [10171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4162), + [10174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [10176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [10178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), + [10180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), + [10182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [10184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [10186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), + [10188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), + [10190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 228), + [10192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 228), + [10194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), + [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), + [10198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 166), + [10200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 166), + [10202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 176), + [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 176), + [10206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 1, 8), + [10208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 1, 8), + [10210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 189), + [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 189), + [10214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [10216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [10218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [10222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [10224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [10228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [10230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [10232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 201), + [10234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 201), + [10236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), + [10238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), + [10240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 204), + [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 204), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [10246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4606), + [10249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12789), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [10254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 219), + [10256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 219), + [10258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 220), + [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 220), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [10264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [10266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [10268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 227), + [10270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 227), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [10274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4634), + [10277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12773), + [10280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [10282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [10284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 231), + [10286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 231), + [10288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 29), + [10290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 29), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [10302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), + [10304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), + [10306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 94), + [10308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 94), + [10310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), + [10312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [10316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [10318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [10320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4260), + [10323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10747), + [10326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11854), + [10329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [10331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [10333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), + [10335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), + [10337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 58), + [10339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 58), + [10341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 163), + [10343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 163), + [10345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [10347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [10349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [10351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [10353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 1, 55), + [10355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 1, 55), + [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [10359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [10361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [10363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [10365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [10367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 66), + [10369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 66), + [10371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 46), + [10373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 46), + [10375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 112), + [10377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 112), + [10379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), + [10381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 34), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9095), + [10385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 115), + [10387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 115), + [10389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 116), + [10391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 116), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [10395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [10401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(311), + [10404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 141), + [10406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 141), + [10408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 142), + [10410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 142), + [10412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [10414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [10416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [10422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [10424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), + [10430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6833), + [10433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6833), + [10436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5347), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [10441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), + [10443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8330), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9641), + [10455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7518), + [10458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8680), + [10461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6844), + [10464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6844), + [10467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5333), + [10470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), + [10472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), + [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [10476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(12652), + [10479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(12652), + [10482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5354), + [10485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [10487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [10489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [10491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [10493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4094), + [10496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4399), + [10499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5253), + [10502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(12404), + [10505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10445), + [10508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(12406), + [10511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(12574), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8214), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9600), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8232), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), + [10532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4784), + [10535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12777), + [10538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [10540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12619), + [10552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7517), + [10555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8679), + [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [10560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(308), + [10563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4789), + [10566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12791), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8443), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9565), + [10577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5347), + [10580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7518), + [10583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8680), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8417), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9651), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12672), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12672), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9046), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9372), + [10606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4468), + [10609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5356), + [10612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6023), + [10615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8710), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), + [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [10624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(12652), + [10627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(12652), + [10630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5354), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12745), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12718), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9126), + [10645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5333), + [10648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7517), + [10651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8679), + [10654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5414), + [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [10659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6023), + [10662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8714), + [10665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(321), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12763), + [10676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4564), + [10679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10616), + [10682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11839), + [10685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4565), + [10688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(327), + [10691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [10693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9872), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8482), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8988), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7859), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), + [10725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [10727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10732), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8478), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8989), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8485), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9614), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8513), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8503), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [10765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [10767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8515), + [10775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5359), + [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), + [10782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3972), + [10785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8719), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [10790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 69), + [10792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 69), + [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8493), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8472), + [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), + [10810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), + [10812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), + [10814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [10816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12784), + [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12784), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9113), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12792), + [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12792), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8531), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8536), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [10860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(324), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [10869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5258), + [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12721), + [10880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5511), + [10883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8685), + [10886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [10890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5511), + [10893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8685), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12754), + [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12754), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [10914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5349), + [10917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5655), + [10920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8691), + [10923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5350), + [10926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5668), + [10929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8725), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9030), + [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9030), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [10938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(12573), + [10941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(12573), + [10944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(10486), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12673), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [10953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9372), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12143), + [10960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8740), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8740), + [10965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [10968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(312), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9111), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9848), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8095), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), + [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8566), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9654), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [11035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 136), + [11037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 136), + [11039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5655), + [11042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8691), + [11045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), + [11047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [11053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), + [11055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), + [11057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 127), + [11059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 127), + [11061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), + [11063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), + [11065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 183), + [11067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 183), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [11075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [11077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [11079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), + [11081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), + [11083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10497), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [11088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5668), + [11091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8725), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9887), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9069), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9911), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8572), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8574), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [11146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(12652), + [11149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(12652), + [11152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5354), + [11155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5333), + [11158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7517), + [11161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8679), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [11168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5347), + [11171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7518), + [11174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8680), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [11183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10500), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [11196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [11198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [11200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10505), + [11203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5511), + [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8605), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9645), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12573), + [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12573), + [11220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(10271), + [11223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(10271), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [11230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5345), + [11233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6270), + [11236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8669), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8620), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9591), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9836), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8408), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [11297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6270), + [11300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8669), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9150), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9141), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12023), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [11399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5655), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [11404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5668), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [11409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9906), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10129), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [11424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(305), + [11427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 114), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10486), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9610), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8728), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9114), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [11451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(332), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10110), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10128), + [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10119), + [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [11484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9610), + [11487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8728), + [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [11502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), REDUCE(sym_type_specifier, 1, 0, 1), + [11505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), REDUCE(sym_type_specifier, 1, 0, 1), + [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8525), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9814), + [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8539), + [11514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8739), + [11516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9314), + [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8320), + [11520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8322), + [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), + [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8456), + [11526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12578), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [11532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9829), + [11536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [11538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8366), + [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [11544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [11550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [11552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [11554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [11558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [11562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [11568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [11570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8677), + [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8677), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12277), + [11590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6023), + [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9795), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9232), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), + [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8144), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8145), + [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8390), + [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8014), + [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12756), + [11615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9811), + [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [11621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8428), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8720), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), + [11629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8672), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [11635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12587), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [11645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12385), + [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9755), + [11655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [11657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8384), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), + [11661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9761), + [11665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8399), + [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9817), + [11673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [11675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8372), + [11677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9844), + [11681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8365), + [11685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8416), + [11693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9759), + [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [11699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8432), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9763), + [11709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8403), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [11713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12189), + [11719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10502), + [11722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [11725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [11727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [11729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [11732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [11736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8720), + [11739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(308), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [11744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12001), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [11752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13008), + [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [11760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [11766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [11768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [11770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [11774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [11778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [11780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [11782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9150), + [11790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [11792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [11794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4094), + [11797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), + [11800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5253), + [11803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12404), + [11806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(10445), + [11809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12406), + [11812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12574), + [11815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7131), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [11822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8700), + [11824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8701), + [11826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(297), + [11829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(332), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10549), + [11834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 61), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [11838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [11846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(307), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [11851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8737), + [11853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6270), + [11856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(308), + [11859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(308), + [11862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(321), + [11865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(327), + [11868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8734), + [11874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8734), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [11878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8703), + [11884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8703), + [11887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5745), + [11890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10645), + [11893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11861), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [11898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), + [11901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5767), + [11904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), + [11907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(12311), + [11910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10477), + [11913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(12211), + [11916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(12376), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [11921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(305), + [11924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [11926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [11928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [11932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [11934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [11944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9203), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9203), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [11952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [11954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [11960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [11962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [11964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [11968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [11972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [11978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [11980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [11988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9219), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9219), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [11996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [11998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6641), + [12000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [12002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12733), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12949), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [12010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [12012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [12014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [12018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [12024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [12026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [12028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [12034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [12038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [12040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [12042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [12044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [12046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11987), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11991), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12074), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12366), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12830), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11922), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11963), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11989), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12045), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12093), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12145), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [12086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(310), + [12089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(317), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [12096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [12098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [12100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [12102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [12110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), + [12114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(321), + [12117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(308), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [12122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 145), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [12138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(327), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [12149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(321), + [12152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [12154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [12160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [12162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [12164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [12168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [12172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [12176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [12178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [12188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [12192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(308), + [12195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(327), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [12200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9197), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9197), + [12204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [12206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [12212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [12214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [12216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [12220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [12224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [12228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [12230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [12240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(321), + [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [12245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8699), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), + [12251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(319), + [12254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(321), + [12257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(322), + [12260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(331), + [12263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1, 0, 0), + [12265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 1, 0, 0), + [12267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), REDUCE(aux_sym_sized_type_specifier_repeat1, 1, 0, 0), + [12270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), REDUCE(aux_sym_sized_type_specifier_repeat1, 1, 0, 0), + [12273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6616), + [12275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 0), + [12278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 0), + [12281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(327), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [12286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6262), + [12289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10808), + [12292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11853), + [12295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6273), + [12298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10680), + [12301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11856), + [12304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [12308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(303), + [12311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), + [12313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12631), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [12317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [12321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [12323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [12327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [12329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [12331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [12335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [12339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [12349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6849), + [12352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6857), + [12355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6832), + [12358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6854), + [12361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), + [12363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), + [12366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6023), + [12369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8714), + [12372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6023), + [12375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8714), + [12378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [12380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12631), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [12386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [12388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7885), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [12392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [12394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [12396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [12398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [12404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5414), + [12407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [12409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), + [12411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5356), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [12416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6665), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [12421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6023), + [12424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8710), + [12427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [12429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7943), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [12435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [12437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6023), + [12440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8710), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9870), + [12447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [12449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12714), + [12457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(320), + [12460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9072), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9854), + [12464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12733), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), + [12478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [12480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7929), + [12482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [12484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), + [12486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [12488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7803), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8681), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12772), + [12494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12772), + [12496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7080), + [12499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12800), + [12502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7202), + [12505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7080), + [12508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7122), + [12510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(12800), + [12513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), + [12515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5354), + [12518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7239), + [12521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7080), + [12524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), + [12526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(12800), + [12529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [12531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [12535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [12537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), + [12539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12757), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12742), + [12543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12742), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [12547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9369), + [12555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), + [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9248), + [12563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9264), + [12571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9264), + [12573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [12575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [12579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), + [12587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9346), + [12589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [12591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [12593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8866), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), + [12601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9311), + [12603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [12605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [12607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4094), + [12610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12574), + [12613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9618), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8851), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9267), + [12621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9267), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), + [12629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9277), + [12631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7214), + [12634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7215), + [12637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5333), + [12640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7517), + [12643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8679), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), + [12650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8724), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [12660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5347), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8721), + [12669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8721), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [12673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7255), + [12676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12743), + [12679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7055), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [12692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7518), + [12695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8680), + [12698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [12702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [12708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [12712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [12716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [12724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [12726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [12728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [12730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [12732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10345), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), + [12740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9453), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9929), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [12752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9885), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), + [12758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9514), + [12760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7517), + [12763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8679), + [12766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7179), + [12769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [12773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [12775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7372), + [12778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7372), + [12781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(12673), + [12784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 150), + [12786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 150), + [12788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7518), + [12791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8680), + [12794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [12796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), + [12800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [12804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [12810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [12814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [12818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12311), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [12836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [12838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [12840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [12842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [12846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [12850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10499), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), + [12855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(7226), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [12860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12573), + [12863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12573), + [12866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10504), + [12869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), + [12871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12790), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [12875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(7518), + [12878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [12882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [12888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [12892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [12896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [12918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9071), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9877), + [12922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(7517), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [12927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11366), + [12931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [12935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [12937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [12943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 185), + [12945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 185), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [12961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [12965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [12971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [12975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [12979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [12983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [12997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1535), + [13000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 87), + [13002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [13008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(12573), + [13011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(12573), + [13014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(10486), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [13025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [13029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [13035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [13039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [13043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), + [13071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 120), + [13073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 195), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [13083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9372), + [13086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8740), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10033), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8671), + [13177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [13191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), + [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), + [13205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [13213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 148), SHIFT(1535), + [13216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 148), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [13220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 149), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [13224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [13228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [13234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [13238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [13242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [13258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 158), + [13260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 159), + [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [13266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), + [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [13272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 170), + [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [13276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), + [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [13284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 191), + [13286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 87), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9671), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12055), + [13296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 196), + [13298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 197), + [13300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 199), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [13306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 206), + [13308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9089), + [13310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0), + [13312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [13316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [13322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [13326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [13330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [13354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9106), + [13356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 215), + [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9674), + [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12438), + [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [13366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9702), + [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12151), + [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9703), + [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12038), + [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9705), + [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12091), + [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9706), + [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12046), + [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), + [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12536), + [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [13406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11276), + [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11103), + [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [13424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9815), + [13430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [13432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), + [13434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9347), + [13436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8312), + [13438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), + [13440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8314), + [13442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), + [13444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), + [13446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12732), + [13448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9846), + [13452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [13454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [13456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9246), + [13458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8204), + [13460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8206), + [13462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), + [13464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8377), + [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [13490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 198), + [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9745), + [13496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [13498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [13500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9371), + [13502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8338), + [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8343), + [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8345), + [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8385), + [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), + [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12744), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [13538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9822), + [13542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [13544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9233), + [13548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8146), + [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [13552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8148), + [13554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8426), + [13556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [13558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12762), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10660), + [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [13568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [13575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9760), + [13579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [13581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), + [13583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), + [13585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), + [13587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), + [13589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8155), + [13591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8438), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [13603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6829), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9780), + [13607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [13609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), + [13611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9297), + [13613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8239), + [13615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), + [13617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8241), + [13619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8389), + [13621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), + [13623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12711), + [13625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), + [13629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [13631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [13633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9273), + [13635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), + [13637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8245), + [13639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8247), + [13641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8414), + [13643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [13645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12656), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [13713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9790), + [13717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [13719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), + [13721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9359), + [13723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), + [13725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8177), + [13727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), + [13729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8470), + [13731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [13733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12611), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [13743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(10271), + [13746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(10271), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [13793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 216), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11080), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11114), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11119), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [13845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9816), + [13849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [13851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [13853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9334), + [13855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), + [13857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8260), + [13859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8261), + [13861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8375), + [13863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [13865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12720), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [13869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 58), + [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [13891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 58), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [13895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [13897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [13899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [13901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), + [13903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8393), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [13911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 88), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [13945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), + [13947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [13949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [13951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [13953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [13955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [13957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [13959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [13961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [13963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(12573), + [13966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(12573), + [13969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(10486), + [13972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9372), + [13975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8740), + [13978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9805), + [13982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7863), + [13984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [13986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), + [13988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [13990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), + [13992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [13994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [13996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), + [13998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8427), + [14000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9610), + [14003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8728), + [14006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [14008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [14010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [14012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [14014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), + [14016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), + [14019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10036), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9758), + [14023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9865), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9748), + [14027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8602), + [14029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10246), + [14031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9231), + [14033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), + [14035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), + [14037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8358), + [14039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8433), + [14041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8720), + [14044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8703), + [14047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(10271), + [14050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(10271), + [14053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8585), + [14055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [14057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9610), + [14060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8728), + [14063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8596), + [14066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8594), + [14069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8591), + [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), + [14074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8589), + [14077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8582), + [14080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8592), + [14083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8720), + [14086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(12573), + [14089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(12573), + [14092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(10486), + [14095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9372), + [14098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8740), + [14101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8703), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [14108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [14110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10695), + [14112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), SHIFT(3492), + [14115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(3492), + [14118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), SHIFT(3492), + [14121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), SHIFT(3492), + [14124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), SHIFT(3492), + [14127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10070), + [14129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10078), + [14131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10064), + [14133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), SHIFT(8579), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [14140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [14142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10673), + [14144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), SHIFT(8606), + [14147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), SHIFT(8583), + [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [14154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), + [14156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10550), + [14158] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(3492), + [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [14166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [14168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10798), + [14170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), SHIFT(8586), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [14177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [14179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10631), + [14181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10089), + [14183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8675), + [14185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10084), + [14187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(3492), + [14190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), SHIFT(3492), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [14197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7510), + [14199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10703), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [14205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [14207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10643), + [14209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [14215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [14217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10788), + [14219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 21), + [14221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 21), + [14223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [14225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [14227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(10271), + [14230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(10271), + [14233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [14235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [14237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 21), + [14239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 21), + [14241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9610), + [14244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8728), + [14247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9317), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9789), + [14253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9636), + [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [14257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [14259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9097), + [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9812), + [14265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9390), + [14267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10557), + [14269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9442), + [14271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12039), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8668), + [14277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10366), + [14279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [14285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7526), + [14287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [14291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [14293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [14295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10318), + [14297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), + [14299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10333), + [14301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9830), + [14307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9752), + [14309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10807), + [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [14313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [14315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10083), + [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9832), + [14319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [14321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8720), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [14326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9825), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [14330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [14332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [14334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [14338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [14340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [14342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [14344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9495), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9757), + [14348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9847), + [14350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9800), + [14352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [14354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9428), + [14356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [14358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10436), + [14360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9803), + [14364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [14366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9648), + [14368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [14370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), + [14372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [14374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10311), + [14376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [14378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8865), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), + [14384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8993), + [14386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10797), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [14390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8990), + [14392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [14394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10539), + [14396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(8603), + [14399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9020), + [14401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9729), + [14403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10297), + [14405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9262), + [14407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10292), + [14409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8703), + [14412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10269), + [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12269), + [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9419), + [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8985), + [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [14422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11279), + [14424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12043), + [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), + [14430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10299), + [14432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [14438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12899), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [14444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10327), + [14446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), + [14448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), + [14452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10294), + [14454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10445), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [14461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), + [14465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10339), + [14467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [14473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12249), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8899), + [14479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10391), + [14481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), + [14483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12886), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8900), + [14489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10320), + [14491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [14499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12227), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [14505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10324), + [14507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [14509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), + [14513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10315), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [14517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8907), + [14521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10328), + [14523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8909), + [14527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10310), + [14529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [14533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10325), + [14535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), + [14539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10329), + [14541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [14543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10375), + [14545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8918), + [14549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10306), + [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8920), + [14555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8921), + [14559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10330), + [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [14565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8924), + [14569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10314), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [14577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), + [14581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10344), + [14583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), + [14587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10305), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), + [14593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8934), + [14597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10308), + [14599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), + [14603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10331), + [14605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), + [14609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10334), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [14621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), + [14625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10335), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [14629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10186), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [14639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), + [14643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10337), + [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [14649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), + [14653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10296), + [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [14669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11694), + [14675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9921), + [14677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10321), + [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11628), + [14687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10486), + [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11674), + [14698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10459), + [14700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10362), + [14702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10619), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8987), + [14706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10340), + [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10088), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8736), + [14718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9336), + [14720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10395), + [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [14724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9238), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), + [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [14730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8735), + [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [14744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(9372), + [14747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8740), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [14752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9252), + [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [14756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(9372), + [14759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8740), + [14762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9112), + [14766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), + [14770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11512), + [14772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10818), + [14774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9054), + [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), + [14780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11591), + [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9228), + [14784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9228), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11215), + [14790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [14792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [14794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [14796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), + [14798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6214), + [14800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [14804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [14806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [14816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10216), + [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11863), + [14828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9068), + [14830] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [14832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [14834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12215), + [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), + [14844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9176), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9177), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), + [14850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9179), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9180), + [14854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9181), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9183), + [14858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9184), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9184), + [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9185), + [14864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [14866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [14870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [14872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [14874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [14876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [14878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [14880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [14882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12275), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), + [14888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [14890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [14894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(9372), + [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11586), + [14901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8533), + [14903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8580), + [14905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), + [14907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [14909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6151), + [14911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [14913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [14915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9169), + [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), + [14921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [14923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [14925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9868), + [14927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10086), + [14929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [14931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [14935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [14937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), + [14941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [14943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [14949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11547), + [14957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [14959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [14963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [14965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11595), + [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), + [14979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), + [14981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7032), + [14983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [14985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12835), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), + [14990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10180), + [14992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9083), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9156), + [14996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11828), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9227), + [15000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9227), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9279), + [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11015), + [15006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), + [15008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [15012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), + [15014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), + [15016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [15018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9357), + [15022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9418), + [15026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10141), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), + [15032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [15034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9275), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9254), + [15042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [15044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9290), + [15050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [15052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [15054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [15056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9157), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), + [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9159), + [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9193), + [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9165), + [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), + [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), + [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), + [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9306), + [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9249), + [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), + [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9353), + [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9272), + [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9431), + [15096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10136), + [15098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [15100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), + [15104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), + [15108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10172), + [15110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), + [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9320), + [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9322), + [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9323), + [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), + [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9337), + [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9325), + [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9326), + [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9327), + [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), + [15132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), + [15136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10158), + [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9329), + [15140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [15142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), + [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), + [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), + [15150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9516), + [15152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9470), + [15154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9508), + [15156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), + [15158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9490), + [15160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9513), + [15162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [15164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9478), + [15166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9523), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [15170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9207), + [15172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9208), + [15174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9209), + [15176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), + [15178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9215), + [15180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9216), + [15182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9217), + [15184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9218), + [15186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9222), + [15188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9226), + [15190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9509), + [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [15200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 24), + [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), + [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9443), + [15208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9454), + [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [15212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9463), + [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [15216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 0), + [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [15226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9505), + [15228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9456), + [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [15232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 62), + [15234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 24), + [15236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9460), + [15238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 62), + [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9713), + [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [15244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9469), + [15246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9485), + [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9997), + [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [15252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9452), + [15254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9480), + [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9998), + [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [15262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9486), + [15264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9493), + [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9679), + [15268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), + [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9318), + [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), + [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10006), + [15276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9521), + [15278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9515), + [15280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9462), + [15282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9457), + [15284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9484), + [15286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [15288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(12404), + [15291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [15293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(12574), + [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [15298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10537), + [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9382), + [15302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10131), + [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [15306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [15308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10173), + [15310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(9610), + [15313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(9610), + [15316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8720), + [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), + [15321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(9610), + [15324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8720), + [15327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [15335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [15337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10140), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [15341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [15343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10163), + [15345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10249), + [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [15349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [15351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10192), + [15353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [15355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [15357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10254), + [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [15361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10164), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [15365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10682), + [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11851), + [15371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 0), + [15373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [15375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10480), + [15377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), + [15379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 5), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [15383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9955), + [15385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [15387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9511), + [15390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10682), + [15393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(11851), + [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [15400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10134), + [15402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9749), + [15404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 182), + [15406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 182), + [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [15410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10587), + [15412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9845), + [15414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10137), + [15416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9807), + [15418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8728), + [15421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8728), + [15424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [15426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [15432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9670), + [15434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [15436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [15438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10160), + [15440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9831), + [15442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10617), + [15444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9750), + [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [15450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 42), + [15452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 42), + [15454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 180), + [15456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 180), + [15458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10139), + [15460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9785), + [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [15464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10560), + [15466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9794), + [15468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [15470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [15472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10198), + [15474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9809), + [15476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10637), + [15478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9823), + [15480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [15482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [15484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10185), + [15486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9835), + [15488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10716), + [15490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9841), + [15492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 124), + [15494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 124), + [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [15500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 27), + [15502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 27), + [15504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10734), + [15506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9838), + [15508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 90), + [15510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 90), + [15512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10167), + [15514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9793), + [15516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [15518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [15520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [15522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [15526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 25), + [15528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 25), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [15532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9726), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8663), + [15538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 27), + [15540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 27), + [15542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9685), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [15546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10671), + [15548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9751), + [15550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9716), + [15552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [15554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [15556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), + [15558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), + [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10132), + [15562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 84), + [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10469), + [15566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9188), + [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12912), + [15570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [15572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [15574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 180), + [15576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 180), + [15578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9837), + [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [15584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 10), + [15586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8703), + [15589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), + [15591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), + [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10355), + [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [15597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [15599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10360), + [15603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [15605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10425), + [15607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [15609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10439), + [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9426), + [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11160), + [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10629), + [15619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9876), + [15621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10487), + [15623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10648), + [15625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10685), + [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), + [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11135), + [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10630), + [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11241), + [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10676), + [15641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), + [15643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10402), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11219), + [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10666), + [15651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9494), + [15653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10404), + [15655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [15657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10440), + [15659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), + [15661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10418), + [15663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11035), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10805), + [15671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [15673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10535), + [15675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [15677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [15681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6830), + [15683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8703), + [15686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9271), + [15688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10405), + [15690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [15692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10482), + [15694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11254), + [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10686), + [15700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10588), + [15702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [15704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10430), + [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11192), + [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10652), + [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8708), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [15718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [15720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10409), + [15722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 71), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [15726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [15728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10473), + [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [15732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [15734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10476), + [15736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9087), + [15738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10432), + [15740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), + [15742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), + [15744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [15746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10411), + [15748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [15750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10434), + [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [15756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [15758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10435), + [15760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10662), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), + [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [15768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [15770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10532), + [15772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9483), + [15774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10095), + [15776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8831), + [15778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10422), + [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [15782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), + [15784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [15786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10415), + [15788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10591), + [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [15792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [15794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10441), + [15796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10750), + [15798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [15800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10437), + [15802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10688), + [15804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), + [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), + [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10934), + [15810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9191), + [15812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12555), + [15814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [15816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [15822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [15826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [15828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [15830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [15832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10082), + [15834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [15836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12181), + [15838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [15840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [15842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [15846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [15850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [15852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [15854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 106), + [15856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 106), + [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [15860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [15864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 179), + [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [15870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [15872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [15874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [15878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [15882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [15886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [15892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [15896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [15898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [15900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [15904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [15906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [15908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [15910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [15912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [15914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), + [15916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10088), + [15919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 182), + [15921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 182), + [15923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 27), + [15925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 27), + [15927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 27), + [15929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 27), + [15931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 124), + [15933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 124), + [15935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 25), + [15937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 25), + [15939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 10), + [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10605), + [15943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), + [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12379), + [15947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 10), + [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), + [15951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9187), + [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12454), + [15955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 84), + [15957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 84), + [15959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10543), + [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11592), + [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11024), + [15965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 84), + [15967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), + [15969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 10), + [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10348), + [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10302), + [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12472), + [15977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), + [15979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), + [15981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), + [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10359), + [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11238), + [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11021), + [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9354), + [15991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), + [15993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), + [15995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10934), + [15998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9153), + [16001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11888), + [16004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11440), + [16007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10309), + [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12390), + [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11218), + [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10080), + [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [16019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), + [16021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), + [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10068), + [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10099), + [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10081), + [16031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12203), + [16035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_specifier, 1, 0, 0), + [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10076), + [16039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12299), + [16043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10800), + [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10506), + [16047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12502), + [16049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11008), + [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10614), + [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13051), + [16055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11149), + [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11941), + [16059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10964), + [16061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10756), + [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), + [16065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10744), + [16067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [16069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [16071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11259), + [16073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [16075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [16077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10735), + [16079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10838), + [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11908), + [16083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11107), + [16085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11020), + [16087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10914), + [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12533), + [16091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11681), + [16093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [16095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [16105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11634), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [16115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11652), + [16117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12311), + [16120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(12311), + [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [16127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 62), + [16129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(10132), + [16132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [16134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [16138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [16140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11489), + [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [16144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [16146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [16148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10934), + [16151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [16153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [16163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 62), + [16165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11653), + [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), + [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [16173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 24), + [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), + [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11659), + [16185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(9668), + [16188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [16190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [16192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [16194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 24), + [16196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [16198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [16200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [16202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [16204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [16206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 63), + [16208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9938), + [16210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9933), + [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), + [16214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11658), + [16216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9704), + [16218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10431), + [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9715), + [16222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11500), + [16226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11134), + [16228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11523), + [16230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11198), + [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9720), + [16234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10833), + [16236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9725), + [16238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9730), + [16240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9721), + [16242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 71), + [16244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [16246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [16250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9740), + [16252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11352), + [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), + [16256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11752), + [16258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9643), + [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), + [16262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9691), + [16264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), + [16266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [16268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1580), + [16271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [16273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(13006), + [16276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [16278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10431), + [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9731), + [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9615), + [16285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 61), + [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9737), + [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), + [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9672), + [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9688), + [16299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10358), + [16303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9698), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13006), + [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9738), + [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9712), + [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12730), + [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [16323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11612), + [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9723), + [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [16329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11500), + [16331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12588), + [16333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 0), + [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [16339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), + [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9810), + [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [16359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 133), + [16361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 133), + [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [16365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), + [16367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), + [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [16377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 134), + [16379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 134), + [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [16383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [16385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10493), + [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10533), + [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9942), + [16413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 0), + [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10293), + [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11191), + [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [16453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 186), + [16455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 186), + [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [16463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), + [16465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), + [16467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), + [16469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), + [16471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [16473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10638), + [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10323), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [16539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12936), + [16541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), + [16543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), + [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9229), + [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11465), + [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11643), + [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11576), + [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11770), + [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11836), + [16575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10414), + [16577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12544), + [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [16581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12903), + [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11651), + [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11517), + [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [16593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), SHIFT_REPEAT(9354), + [16596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), + [16598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), + [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11655), + [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11318), + [16604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 2, 0, 0), + [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12482), + [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11838), + [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [16612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [16614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [16616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11507), + [16618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [16620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11536), + [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [16624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11582), + [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11610), + [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), + [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11636), + [16632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 144), + [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12006), + [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11661), + [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11693), + [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11569), + [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10423), + [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [16648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(10412), + [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), + [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [16681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11458), + [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11505), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11728), + [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11423), + [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), + [16705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11163), + [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11456), + [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [16715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), SHIFT_REPEAT(9503), + [16718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), + [16720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), + [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [16728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [16730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), + [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [16734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), + [16736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), SHIFT_REPEAT(12482), + [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [16749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), + [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11826), + [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11549), + [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [16763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), + [16765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), + [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [16769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), + [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9299), + [16777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6853), + [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10583), + [16781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10583), + [16783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10927), + [16787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), + [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11446), + [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11808), + [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11498), + [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11299), + [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), + [16805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), + [16807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [16809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10567), + [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [16813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [16815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10739), + [16817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10739), + [16819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11667), + [16821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11619), + [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [16827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [16829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(10567), + [16832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [16836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [16838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10581), + [16840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10581), + [16842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6828), + [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10717), + [16846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10717), + [16848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [16850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [16852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [16854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [16856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 212), + [16858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 212), + [16860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), + [16862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [16864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(10583), + [16867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(10583), + [16870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 217), SHIFT_REPEAT(10194), + [16873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 217), + [16875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [16877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11302), + [16879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12894), + [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9719), + [16883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 225), + [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [16891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 229), SHIFT_REPEAT(9719), + [16894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 229), + [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [16898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [16900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10543), + [16902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [16904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12902), + [16906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), + [16910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10603), + [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11622), + [16914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11453), + [16916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6842), + [16918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10547), + [16920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10547), + [16922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [16926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [16930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12950), + [16932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), + [16934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 210), + [16936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [16944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12492), + [16946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [16948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10636), + [16950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10636), + [16952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12356), + [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10651), + [16956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10651), + [16958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [16960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10628), + [16964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10628), + [16966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [16968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [16970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11897), + [16972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10857), + [16974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), + [16976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10624), + [16980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10624), + [16982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [16984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8064), + [16986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [16988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7446), + [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [16992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [16994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [16998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12243), + [17000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [17002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [17004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11394), + [17006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), + [17008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10653), + [17012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10653), + [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [17016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9286), + [17018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12577), + [17020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [17022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [17026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [17028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), + [17030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10663), + [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11284), + [17036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [17038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [17040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 34), + [17042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11174), + [17044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), + [17046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [17048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11647), + [17050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11472), + [17052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [17056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11575), + [17058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11611), + [17060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [17062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [17064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10708), + [17066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10708), + [17068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [17070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10699), + [17072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10699), + [17074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [17076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10705), + [17078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10705), + [17080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9802), + [17082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10726), + [17084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10726), + [17086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [17088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12339), + [17090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [17098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12192), + [17100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [17102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [17104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [17106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10170), + [17108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 202), + [17110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [17112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), + [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [17116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [17118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), + [17120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [17122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10194), + [17124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 164), + [17126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10045), + [17128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [17130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [17132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [17134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10548), + [17136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10548), + [17138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [17140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [17142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [17144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9806), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [17148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), + [17152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10752), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), + [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12983), + [17162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10794), + [17166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10794), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), + [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [17172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 20), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [17180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 164), + [17182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [17184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10757), + [17188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10757), + [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [17192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11971), + [17194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10240), + [17196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [17198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10575), + [17200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10575), + [17202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [17204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [17206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [17208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [17210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10211), + [17212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [17214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9602), + [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [17228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [17230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10780), + [17232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10780), + [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [17236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [17238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [17240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [17242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [17244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10795), + [17248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10795), + [17250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11736), + [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11522), + [17256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 217), SHIFT_REPEAT(10170), + [17259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 217), + [17261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 202), + [17263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9199), + [17265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8108), + [17267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [17269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [17271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 218), + [17273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [17275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10205), + [17277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [17279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [17281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [17283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), + [17285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10577), + [17287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10577), + [17289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 97), + [17291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [17293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 71), + [17295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [17297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [17299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [17301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [17303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9064), + [17305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10013), + [17307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [17309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [17311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [17313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10098), + [17315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [17317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [17319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [17321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11417), + [17323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), + [17326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), + [17328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [17330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [17332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [17334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [17336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [17338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [17340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [17342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [17344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [17346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [17348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [17350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [17352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), + [17354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [17356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9093), + [17358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10087), + [17362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), + [17364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [17366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [17368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [17370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [17372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [17374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [17376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [17378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [17380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11463), + [17382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), + [17384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [17386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [17388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [17390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [17392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [17394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [17396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11642), + [17398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [17400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [17402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [17404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [17406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [17408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [17410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11173), + [17412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [17414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [17416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [17418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [17420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [17422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11668), + [17424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [17426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11409), + [17428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [17430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [17432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2550), + [17435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [17437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11792), + [17439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [17441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10046), + [17443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), + [17445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10019), + [17447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9981), + [17449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9982), + [17451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [17453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [17455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [17457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [17459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [17461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [17463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [17465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [17467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [17469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [17471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [17473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [17475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [17477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [17479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [17481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [17483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9425), + [17486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [17488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [17490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [17492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [17494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [17496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [17498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [17500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), + [17503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11430), + [17505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [17507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [17509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [17511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [17513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [17515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [17517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [17519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [17521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [17523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [17525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), + [17527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [17529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [17531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [17533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [17535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [17537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [17539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [17541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), + [17543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [17545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [17547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [17549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [17551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [17553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [17555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [17557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [17559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), + [17561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10485), + [17563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [17565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [17567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [17569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [17571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [17573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [17575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [17577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [17579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [17581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [17583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [17585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [17587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [17589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [17591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [17593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [17595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [17597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [17599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [17601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [17603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [17605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9206), + [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [17618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [17620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(11421), + [17623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [17625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [17627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [17629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [17631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [17633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [17635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [17637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [17639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [17641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [17643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [17645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(9064), + [17648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), + [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [17652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [17654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [17656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [17668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [17672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [17674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [17678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [17680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), + [17682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9365), + [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), + [17686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9367), + [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), + [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [17694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [17696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [17700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10018), + [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [17704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), + [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12892), + [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11408), + [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [17718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10650), + [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9055), + [17722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [17724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [17726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [17730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [17732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 164), + [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), + [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11565), + [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), + [17744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1347), + [17747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [17749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11873), + [17751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11876), + [17753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11877), + [17755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11615), + [17757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [17759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [17761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [17763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12126), + [17765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10675), + [17767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [17769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [17771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [17773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9060), + [17775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [17777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [17779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 62), + [17781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [17783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [17785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [17787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [17789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [17791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10003), + [17793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [17795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [17797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [17799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [17801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [17803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11531), + [17805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [17807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11493), + [17809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), + [17811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), + [17813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [17815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [17817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [17819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [17821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9425), + [17823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [17825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [17827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [17829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 224), + [17831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 164), + [17833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [17835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12188), + [17837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 226), + [17839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [17841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [17843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [17845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [17847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [17849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [17851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [17853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [17855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [17857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [17859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [17861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11556), + [17863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(5294), + [17866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [17868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 224), + [17870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 218), + [17872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 230), + [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [17876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [17882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 232), SHIFT_REPEAT(12188), + [17885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 232), + [17887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), + [17889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [17891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [17893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [17895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [17897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 233), + [17899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5320), + [17902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), + [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), + [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [17908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 233), + [17910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), + [17912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [17914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2495), + [17917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), + [17919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [17921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 24), + [17923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [17925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [17927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [17929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1290), + [17932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [17934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [17936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [17938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12085), + [17940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12159), + [17942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12163), + [17944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [17946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [17948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [17950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [17952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [17954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [17956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11533), + [17958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), + [17960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [17962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [17964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [17966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [17968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [17970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11555), + [17972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10749), + [17974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [17976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [17978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [17980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [17982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12839), + [17984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12884), + [17986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12885), + [17988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11663), + [17990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [17992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), + [17994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [17996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [17998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [18000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [18002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [18004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11603), + [18006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [18008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10704), + [18010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [18012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [18014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [18016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [18018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11421), + [18020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11682), + [18022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11685), + [18024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11539), + [18026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), + [18028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [18030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 64), + [18032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12904), + [18034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12906), + [18036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12908), + [18038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9585), + [18040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(12348), + [18043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), + [18045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [18047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(8994), + [18050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 122), SHIFT_REPEAT(7228), + [18053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 122), + [18055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [18057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [18059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [18061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [18063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [18065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), + [18067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [18069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [18071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [18073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [18075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [18077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [18079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [18081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10791), + [18083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [18085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [18087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11882), + [18089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11891), + [18091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11900), + [18093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [18095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [18097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [18099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [18101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [18103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [18105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [18107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [18109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [18111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [18113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [18115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [18117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), + [18119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [18121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [18123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10627), + [18125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [18127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [18129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [18131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11976), + [18133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11977), + [18135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11979), + [18137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [18139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [18141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [18143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [18145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [18147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [18149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10696), + [18151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12457), + [18153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12458), + [18155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12459), + [18157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [18159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [18161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [18163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10793), + [18165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9160), + [18167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [18169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10710), + [18171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [18173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [18175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10783), + [18177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [18179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [18181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10633), + [18183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10724), + [18185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11451), + [18187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10778), + [18189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10559), + [18191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 211), + [18193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), + [18195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10011), + [18197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [18199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [18201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [18203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11127), + [18205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [18207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [18209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [18211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [18213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [18215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [18217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [18219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [18221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [18223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11700), + [18225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [18227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [18229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), + [18231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11719), + [18233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [18235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [18237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), + [18239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [18241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [18243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11249), + [18245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11253), + [18247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [18249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [18251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [18253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [18255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [18257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [18259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [18261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [18263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [18265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12840), + [18267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [18269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [18271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [18273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11339), + [18275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11340), + [18277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), + [18279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [18281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11367), + [18283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11370), + [18285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11373), + [18287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [18289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [18291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [18293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [18295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [18297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [18299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [18301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [18303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [18305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [18307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9668), + [18309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [18311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11443), + [18313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 106), + [18315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [18317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 73), + [18319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 154), + [18321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [18323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [18325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11497), + [18327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), + [18329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [18331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), + [18333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [18335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [18337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [18339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [18342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), + [18344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11455), + [18346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), + [18348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [18350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [18352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [18354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [18356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [18358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9048), + [18360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11173), + [18363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [18365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [18367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [18369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [18371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [18373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [18375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [18377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [18379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(11668), + [18382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), + [18384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10291), + [18386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [18388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11083), + [18390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [18392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11675), + [18394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [18396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11933), + [18398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [18400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [18402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12973), + [18404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [18406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 144), + [18408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [18410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12087), + [18412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 210), + [18414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 106), + [18416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [18418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [18420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [18422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11909), + [18424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 168), + [18426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [18428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [18430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 169), + [18432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [18434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [18436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [18438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [18440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), + [18442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), + [18444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 28), + [18446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [18448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12254), + [18450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 226), + [18452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [18454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [18456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [18458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [18460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [18462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12818), + [18464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 209), + [18466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [18468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12166), + [18470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [18472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11995), + [18474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [18476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 62), + [18478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [18480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [18482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [18484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [18486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), + [18488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11930), + [18490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [18492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [18494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [18496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [18498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [18500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [18502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [18504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12563), + [18506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [18508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [18510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 28), + [18512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [18514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [18516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12201), + [18518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [18520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12569), + [18522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [18524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [18526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_partition, 2, 0, 0), + [18528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [18530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [18532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [18534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [18536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12716), + [18538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [18540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [18542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_object_parameter_declaration, 2, 0, 0), + [18544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [18546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12477), + [18548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9067), + [18550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [18552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [18554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 205), + [18556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12879), + [18558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12868), + [18560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [18562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [18564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), + [18566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 97), + [18568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [18570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12433), + [18572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13010), + [18574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [18576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12320), + [18578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [18580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [18582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), + [18584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12861), + [18586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12591), + [18588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13017), + [18590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12622), + [18592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13020), + [18594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12644), + [18596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13023), + [18598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12664), + [18600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13026), + [18602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12684), + [18604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13029), + [18606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12701), + [18608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13032), + [18610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12715), + [18612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13034), + [18614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12722), + [18616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13035), + [18618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12728), + [18620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13036), + [18622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12734), + [18624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13037), + [18626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12740), + [18628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13038), + [18630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12746), + [18632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13039), + [18634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12752), + [18636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13040), + [18638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12758), + [18640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13041), + [18642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12764), + [18644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13042), + [18646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12770), + [18648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13043), + [18650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12774), + [18652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13044), + [18654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12778), + [18656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13045), + [18658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12782), + [18660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13046), + [18662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12316), + [18664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [18666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12837), + [18668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [18670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [18672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [18674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [18676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [18678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [18680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [18682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [18684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 134), + [18686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [18688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [18690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12089), + [18692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [18694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10041), + [18696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12471), + [18698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [18700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [18702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 134), + [18704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [18706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12154), + [18708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 186), + [18710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [18712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11925), + [18714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11998), + [18716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [18718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [18720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [18722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [18724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [18726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [18728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [18730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [18732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [18734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12897), + [18736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [18738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [18740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12439), + [18742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [18744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [18746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [18748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [18750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [18752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [18754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [18756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [18758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12604), + [18760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12605), + [18762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12274), + [18764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [18766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [18768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 133), + [18770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [18772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 134), + [18774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [18776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [18778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [18780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [18782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [18784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [18786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [18788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [18790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10585), + [18792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), + [18794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [18796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [18798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), + [18800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), + [18802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [18804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [18806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [18808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12875), + [18810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [18812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [18814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [18816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [18818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [18820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [18822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [18824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [18826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [18828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [18830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [18832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_block, 3, 0, 85), + [18834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [18836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [18838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [18840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [18842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [18844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12991), + [18846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [18848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [18850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [18852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [18854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [18856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [18858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [18860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), + [18862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [18864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [18866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [18868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [18870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), + [18872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [18874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [18876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [18878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [18880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [18882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12554), + [18884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12581), + [18886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [18888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12040), + [18890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [18892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [18894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [18896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(12836), + [18899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 85), + [18901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [18903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [18905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [18907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [18909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [18911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11875), + [18913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [18915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [18917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), + [18919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [18921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [18923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [18925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11978), + [18927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12005), + [18929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [18931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [18933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [18935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [18937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [18939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [18941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [18943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [18945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [18947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [18949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [18951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10743), + [18953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [18955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [18957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [18959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [18961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11953), + [18963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [18965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [18967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [18969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [18971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [18973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [18975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [18977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [18979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [18981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [18983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [18985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [18987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [18989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [18991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [18993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [18995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [18997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [18999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [19001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [19003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [19005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [19007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12064), + [19009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [19011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12854), + [19013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [19015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [19017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12094), + [19019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [19021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [19023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [19025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [19027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [19029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [19031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [19033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 134), + [19035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12251), + [19037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [19039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [19041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [19043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [19045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12298), + [19047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12300), + [19049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [19051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12441), + [19053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [19055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10618), + [19057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [19059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [19061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 7, 0, 62), + [19063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [19065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [19067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [19069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [19071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_block, 4, 0, 133), + [19073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [19075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [19077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [19079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [19081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [19083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [19085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 186), + [19087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 186), + [19089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [19091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [19093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [19095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [19097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [19099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [19101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [19103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12037), + [19105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 186), + [19107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11951), + [19109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [19111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12048), + [19113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [19115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [19117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [19119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [19121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [19123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [19125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11984), + [19127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [19129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12102), + [19131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [19133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [19135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12116), + [19137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12117), + [19139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12857), + [19141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [19143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10683), + [19145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [19147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [19149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [19151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11504), + [19153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [19155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [19157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [19159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [19161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [19163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [19165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [19167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12155), + [19169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [19171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [19173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [19175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12273), + [19177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [19179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [19181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [19183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11990), + [19185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [19187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [19189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12665), + [19191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12511), + [19193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [19195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12434), + [19197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [19199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12538), + [19201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [19203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [19205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), + [19207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12051), + [19209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10300), + [19211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_block, 4, 0, 134), + [19213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [19215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [19217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12594), + [19219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [19221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 24), + [19223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [19225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12614), + [19227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12616), + [19229] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [19231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12419), + [19233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [19235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 133), + [19237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [19239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12221), + [19241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [19243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [19245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [19247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12402), + [19249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [19251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [19253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10612), + [19255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [19257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12500), + [19259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12414), + [19261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13011), + [19263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [19265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12340), + [19267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12929), + [19269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [19271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12105), + [19273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [19275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12134), + [19277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [19279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [19281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11841), + [19283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [19285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [19287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10338), + [19289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9152), + [19291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [19293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [19295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12882), + [19297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12065), + [19299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [19301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [19303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [19305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12543), + [19307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [19309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [19311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12222), + [19313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12598), + [19315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12919), + [19317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [19319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [19321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12668), + [19323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [19325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [19327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12219), + [19329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12282), + [19331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12286), + [19333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [19335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [19337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [19339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11818), + [19341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12580), + [19343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12648), + [19345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12667), + [19347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12000), + [19349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [19351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [19353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [19355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [19357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12007), + [19359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12504), + [19361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12534), + [19363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [19365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [19367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [19369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9265), + [19371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12512), + [19373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12537), + [19375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11880), + [19377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 134), + [19379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [19381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13003), + [19383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11960), + [19385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11962), + [19387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [19389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [19391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [19393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [19395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12451), + [19397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12452), + [19399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [19401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11765), + [19403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [19405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12204), + [19407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12909), + [19409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12966), + [19411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [19413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12015), + [19415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12076), + [19417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12100), + [19419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [19421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 85), + [19423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12341), + [19425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12371), + [19427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [19429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 85), + [19431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12933), + [19433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12934), + [19435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [19437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [19439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11965), + [19441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11966), + [19443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [19445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [19447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [19449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), + [19451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [19453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10307), + [19455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [19457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13000), + [19459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 10), + [19461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [19463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [19465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [19467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [19469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [19471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12682), + [19473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [19475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11405), + [19477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12981), + [19479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [19481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [19483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [19485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [19487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [19489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [19491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [19493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [19495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [19497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [19499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [19501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 133), + [19503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [19505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11428), + [19507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [19509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12123), + [19511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [19513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12172), + [19515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [19517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [19519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [19521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [19523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12223), + [19525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [19527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [19529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [19531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [19533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [19535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [19537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [19539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), + [19541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10343), + [19543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [19545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [19547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [19549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10569), + [19551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12872), + [19553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [19555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [19557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [19559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10004), + [19561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [19563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [19565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [19567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [19569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12114), + [19571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [19573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_block, 5, 0, 186), + [19575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [19577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [19579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [19581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [19583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [19585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [19587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 84), + [19589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [19591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [19593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12560), + [19595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), + [19597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [19599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [19601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [19603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11899), + [19605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10740), + [19607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [19609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9023), + [19611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [19613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [19615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [19617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [19619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [19621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [19623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [19625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [19627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [19629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [19631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [19633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [19635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [19637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12315), + [19639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11190), + [19641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [19643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [19645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [19647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [19649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [19651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [19653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [19655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [19657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [19659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [19661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12834), + [19663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [19665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11820), + [19667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [19669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [19671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), + [19673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [19675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [19677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [19679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12388), + [19681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [19683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [19685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [19687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [19689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [19691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9742), + [19693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [19695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [19697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 186), + [19699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [19701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9024), + [19703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [19705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [19707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [19709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [19711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [19713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [19715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [19717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [19719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11552), + [19721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [19723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [19725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [19727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [19729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [19731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [19733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11564), + [19735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [19737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11886), + [19739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [19741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11889), + [19743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [19745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [19747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [19749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11895), + [19751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [19753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [19755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [19757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11916), + [19759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9819), + [19761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [19763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [19765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11928), + [19767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9025), + [19769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [19771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [19773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [19775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10804), + [19777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11601), + [19779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [19781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [19783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [19785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [19787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [19789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [19791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11614), + [19793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [19795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12012), + [19797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [19799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12014), + [19801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [19803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12019), + [19805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12034), + [19807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11372), + [19809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [19811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [19813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12042), + [19815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [19817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11632), + [19819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [19821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [19823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [19825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [19827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11041), + [19829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11641), + [19831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12095), + [19833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [19835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12097), + [19837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [19839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12101), + [19841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12115), + [19843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [19845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12121), + [19847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [19849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11656), + [19851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [19853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [19855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [19857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [19859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12156), + [19861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [19863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12158), + [19865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [19867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12162), + [19869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12233), + [19871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12174), + [19873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), + [19875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10352), + [19877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12180), + [19879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [19881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11680), + [19883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [19885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [19887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [19889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [19891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [19893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12212), + [19895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12214), + [19897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12901), + [19899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [19901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12218), + [19903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [19905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12229), + [19907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [19909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12235), + [19911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [19913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [19915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11697), + [19917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [19919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [19921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [19923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [19925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12255), + [19927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [19929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12257), + [19931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12259), + [19933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [19935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12263), + [19937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [19939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12265), + [19941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [19943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [19945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11707), + [19947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [19949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [19951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [19953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [19955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12280), + [19957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12281), + [19959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [19961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12285), + [19963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11710), + [19965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [19967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [19969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12292), + [19971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12293), + [19973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12296), + [19975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11715), + [19977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [19979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [19981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12303), + [19983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12304), + [19985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12305), + [19987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11718), + [19989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [19991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [19993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12312), + [19995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12313), + [19997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12314), + [19999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11720), + [20001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [20003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [20005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12321), + [20007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12322), + [20009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12323), + [20011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11723), + [20013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [20015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [20017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12329), + [20019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12330), + [20021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12331), + [20023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11725), + [20025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [20027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [20029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12336), + [20031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12337), + [20033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12338), + [20035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11726), + [20037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [20039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [20041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11872), + [20043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12344), + [20045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12345), + [20047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11730), + [20049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [20051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [20053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12350), + [20055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12351), + [20057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12352), + [20059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11732), + [20061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [20063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [20065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12357), + [20067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12358), + [20069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12359), + [20071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11733), + [20073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [20075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12363), + [20077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12364), + [20079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11734), + [20081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [20083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12368), + [20085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12369), + [20087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11735), + [20089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [20091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12373), + [20093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12374), + [20095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11737), + [20097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [20099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11738), + [20101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [20103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11741), + [20105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [20107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11743), + [20109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [20111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11745), + [20113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [20115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11747), + [20117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [20119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11748), + [20121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [20123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [20125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [20127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [20129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [20131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [20133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [20135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [20137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [20139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [20141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [20143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [20145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 85), + [20147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [20149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [20151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12432), + [20153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [20155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [20157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [20159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [20161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [20163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9502), + [20165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10602), + [20167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [20169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [20171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [20173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 85), + [20175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [20177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [20179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 58), + [20181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [20183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), + [20185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [20187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [20189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [20191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [20193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [20195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [20197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 0), + [20199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [20201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10737), + [20203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [20205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [20207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12481), + [20209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [20211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [20213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12268), + [20215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [20217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [20219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12328), + [20221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10694), + [20223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [20225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), + [20227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [20229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11347), + [20231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12250), + [20233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [20235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [20237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [20239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12712), + [20241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [20243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12873), + [20245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [20247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [20249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12256), + [20251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [20253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [20255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [20257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [20259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [20261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [20263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), + [20265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [20267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [20269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [20271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [20273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [20275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), + [20277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [20279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [20281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [20283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [20285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [20287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [20289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [20291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [20293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12258), + [20295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10810), + [20297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [20299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [20301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [20303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [20305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [20307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [20309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9692), + [20311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10357), + [20313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [20315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [20317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [20319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12590), + [20321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9799), + [20323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [20325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [20327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [20329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10760), + [20331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12601), + [20333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11957), + [20335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [20337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [20339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [20341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12621), + [20343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [20345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [20347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [20349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [20351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), + [20353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12628), + [20355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [20357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [20359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12643), + [20361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12361), + [20363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [20365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12054), + [20367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10765), + [20369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12649), + [20371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [20373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [20375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12663), + [20377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [20379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10768), + [20381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12669), + [20383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [20385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [20387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12683), + [20389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10771), + [20391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12689), + [20393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [20395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [20397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10773), + [20399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12705), + [20401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 133), + [20403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12717), + [20405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [20407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12723), + [20409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [20411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12729), + [20413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [20415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12735), + [20417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 133), + [20419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12741), + [20421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11924), + [20423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12747), + [20425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12490), + [20427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12753), + [20429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [20431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12759), + [20433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [20435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12765), + [20437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [20439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12771), + [20441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [20443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12775), + [20445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [20447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12779), + [20449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12783), + [20451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [20453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [20455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [20457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10438), + [20459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [20461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [20463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [20465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [20467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10877), + [20469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [20471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12853), + [20473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [20475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [20477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [20479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [20481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12925), + [20483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [20485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12938), + [20487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [20489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [20491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12948), + [20493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [20495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12957), + [20497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [20499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [20501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12964), + [20503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [20505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12969), + [20507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [20509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12972), + [20511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12974), + [20513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12976), + [20515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12978), + [20517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12980), + [20519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12982), + [20521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12984), + [20523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12986), + [20525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12988), + [20527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12990), + [20529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12992), + [20531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12994), + [20533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12996), + [20535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [20537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [20539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [20541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [20543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [20545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [20547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [20549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [20551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), }; enum ts_external_scanner_symbol_identifiers { diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index e99918e5..a17a574f 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -52,91 +52,67 @@ extern "C" { /// 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) \ + _array__reserve((Array *)(self), 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) _array__delete((Array *)(self)) /// Push a new `element` onto the end of the array. -#define array_push(self, element) \ - do { \ - (self)->contents = _array__grow( \ - (void *)(self)->contents, (self)->size, &(self)->capacity, \ - 1, array_elem_size(self) \ - ); \ - (self)->contents[(self)->size++] = (element); \ - } while(0) +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) /// Increase the array's size by `count` elements. /// New elements are zero-initialized. -#define array_grow_by(self, count) \ - do { \ - if ((count) == 0) break; \ - (self)->contents = _array__grow( \ - (self)->contents, (self)->size, &(self)->capacity, \ - count, array_elem_size(self) \ - ); \ +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ - (self)->size += (count); \ + (self)->size += (count); \ } while (0) /// Append all elements from one array to the end of another. -#define array_push_all(self, other) \ +#define array_push_all(self, other) \ array_extend((self), (other)->size, (other)->contents) /// 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( \ - (void*)(self)->contents, &(self)->size, &(self)->capacity, \ - array_elem_size(self), (self)->size, 0, count, other_contents \ +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, 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( \ - (void *)(self)->contents, &(self)->size, &(self)->capacity, \ - array_elem_size(self), _index, old_count, new_count, new_contents \ +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), 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( \ - (void *)(self)->contents, &(self)->size, &(self)->capacity, \ - array_elem_size(self), _index, 0, 1, &(element) \ - ) +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ - _array__erase((void *)(self)->contents, &(self)->size, array_elem_size(self), _index) + _array__erase((Array *)(self), array_elem_size(self), _index) /// Pop the last element off the array, returning the element by value. #define array_pop(self) ((self)->contents[--(self)->size]) /// Assign the contents of one array to another, reallocating if necessary. -#define array_assign(self, other) \ - (self)->contents = _array__assign( \ - (void *)(self)->contents, &(self)->size, &(self)->capacity, \ - (const void *)(other)->contents, (other)->size, array_elem_size(self) \ - ) +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), 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; \ - } while (0) +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) /// Get the size of the array contents #define array_elem_size(self) (sizeof *(self)->contents) @@ -181,112 +157,82 @@ extern "C" { // Private -// Pointers to individual `Array` fields (rather than the entire `Array` itself) -// are passed to the various `_array__*` functions below to address strict aliasing -// violations that arises when the _entire_ `Array` struct is passed as `Array(void)*`. -// -// The `Array` type itself was not altered as a solution in order to avoid breakage -// with existing consumers (in particular, parsers with external scanners). +typedef Array(void) Array; /// 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); +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } } /// 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) { - assert(index < *size); - char *contents = (char *)self_contents; +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; memmove(contents + index * element_size, contents + (index + 1) * element_size, - (*size - index - 1) * element_size); - (*size)--; + (self->size - index - 1) * element_size); + self->size--; } /// This is not what you're looking for, see `array_reserve`. -static inline void *_array__reserve(void *contents, uint32_t *capacity, - size_t element_size, uint32_t new_capacity) { - void *new_contents = contents; - if (new_capacity > *capacity) { - if (contents) { - new_contents = ts_realloc(contents, new_capacity * element_size); +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); } else { - new_contents = ts_malloc(new_capacity * element_size); + self->contents = ts_malloc(new_capacity * element_size); } - *capacity = new_capacity; + self->capacity = new_capacity; } - return new_contents; } /// This is not what you're looking for, see `array_assign`. -static inline void *_array__assign(void* self_contents, uint32_t *self_size, uint32_t *self_capacity, - const void *other_contents, uint32_t other_size, size_t element_size) { - void *new_contents = _array__reserve(self_contents, self_capacity, element_size, other_size); - *self_size = other_size; - memcpy(new_contents, other_contents, *self_size * element_size); - return new_contents; +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); } -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(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. -static inline void *_array__grow(void *contents, uint32_t size, uint32_t *capacity, - uint32_t count, size_t element_size) { - void *new_contents = contents; - uint32_t new_size = size + count; - if (new_size > *capacity) { - uint32_t new_capacity = *capacity * 2; +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; if (new_capacity < 8) new_capacity = 8; if (new_capacity < new_size) new_capacity = new_size; - new_contents = _array__reserve(contents, capacity, element_size, new_capacity); + _array__reserve(self, element_size, new_capacity); } - return new_contents; } /// This is not what you're looking for, see `array_splice`. -static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t *capacity, - size_t element_size, +static inline void _array__splice(Array *self, size_t element_size, uint32_t index, uint32_t old_count, uint32_t new_count, const void *elements) { - uint32_t new_size = *size + new_count - old_count; + uint32_t new_size = self->size + new_count - old_count; uint32_t old_end = index + old_count; uint32_t new_end = index + new_count; - assert(old_end <= *size); + assert(old_end <= self->size); - void *new_contents = _array__reserve(self_contents, capacity, element_size, new_size); + _array__reserve(self, element_size, new_size); - char *contents = (char *)new_contents; - if (*size > old_end) { + char *contents = (char *)self->contents; + if (self->size > old_end) { memmove( contents + new_end * element_size, contents + old_end * element_size, - (*size - old_end) * element_size + (self->size - old_end) * element_size ); } if (new_count > 0) { @@ -304,9 +250,7 @@ static inline void *_array__splice(void *self_contents, uint32_t *size, uint32_t ); } } - *size += new_count - old_count; - - return new_contents; + self->size += new_count - old_count; } /// A binary search routine, based on Rust's `std::slice::binary_search_by`. diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 858107de..cdbe64cc 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,7 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata TSLanguageMetadata; typedef struct TSLanguageMetadata { uint8_t major_version; uint8_t minor_version; diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 273afad9..81e9b45b 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -2248,6 +2248,66 @@ int main() { (return_statement (number_literal))))) +================================================================================ +Anonymous pointer-to-member declarators (using, sizeof, cast) +================================================================================ + +struct C; +using F = void (C::*)(int); +auto s = sizeof(void (C::*)(int)); +auto x = (void (C::*)(int))0; + +-------------------------------------------------------------------------------- + +(translation_unit + (struct_specifier + (type_identifier)) + (alias_declaration + (type_identifier) + (type_descriptor + (primitive_type) + (abstract_function_declarator + (abstract_parenthesized_declarator + (qualified_identifier + (namespace_identifier) + (abstract_pointer_declarator))) + (parameter_list + (parameter_declaration + (primitive_type)))))) + (declaration + (placeholder_type_specifier + (auto)) + (init_declarator + (identifier) + (sizeof_expression + (type_descriptor + (primitive_type) + (abstract_function_declarator + (abstract_parenthesized_declarator + (qualified_identifier + (namespace_identifier) + (abstract_pointer_declarator))) + (parameter_list + (parameter_declaration + (primitive_type)))))))) + (declaration + (placeholder_type_specifier + (auto)) + (init_declarator + (identifier) + (cast_expression + (type_descriptor + (primitive_type) + (abstract_function_declarator + (abstract_parenthesized_declarator + (qualified_identifier + (namespace_identifier) + (abstract_pointer_declarator))) + (parameter_list + (parameter_declaration + (primitive_type))))) + (number_literal))))) + ================================================================================ Unnamed default parameter ================================================================================